less copy protection, more size visualization
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

68084 lines
1.7 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. "aquatic"
  235. ]
  236. },
  237. "ram": {
  238. name: "Ram",
  239. parents: [
  240. "mammal"
  241. ]
  242. },
  243. "demon": {
  244. name: "Demon",
  245. parents: [
  246. "supernatural"
  247. ]
  248. },
  249. "cougar": {
  250. name: "Cougar",
  251. parents: [
  252. "cat"
  253. ]
  254. },
  255. "goat": {
  256. name: "Goat",
  257. parents: [
  258. "mammal"
  259. ]
  260. },
  261. "lion": {
  262. name: "Lion",
  263. parents: [
  264. "cat"
  265. ]
  266. },
  267. "harpy-eager": {
  268. name: "Harpy Eagle",
  269. parents: [
  270. "avian"
  271. ]
  272. },
  273. "deer": {
  274. name: "Deer",
  275. parents: [
  276. "mammal"
  277. ]
  278. },
  279. "phoenix": {
  280. name: "Phoenix",
  281. parents: [
  282. "avian"
  283. ]
  284. },
  285. "aeromorph": {
  286. name: "Aeromorph",
  287. parents: [
  288. "machine"
  289. ]
  290. },
  291. "machine": {
  292. name: "Machine",
  293. },
  294. "android": {
  295. name: "Android",
  296. parents: [
  297. "machine"
  298. ]
  299. },
  300. "jackal": {
  301. name: "Jackal",
  302. parents: [
  303. "canine"
  304. ]
  305. },
  306. "corvid": {
  307. name: "Corvid",
  308. parents: [
  309. "passerine"
  310. ]
  311. },
  312. "pharaoh-hound": {
  313. name: "Pharaoh Hound",
  314. parents: [
  315. "dog"
  316. ]
  317. },
  318. "skunk": {
  319. name: "Skunk",
  320. parents: [
  321. "mammal"
  322. ]
  323. },
  324. "shark": {
  325. name: "Shark",
  326. parents: [
  327. "fish"
  328. ]
  329. },
  330. "black-panther": {
  331. name: "Black Panther",
  332. parents: [
  333. "cat"
  334. ]
  335. },
  336. "umbra": {
  337. name: "Umbra",
  338. parents: [
  339. "animal"
  340. ]
  341. },
  342. "raven": {
  343. name: "Raven",
  344. parents: [
  345. "corvid"
  346. ]
  347. },
  348. "snow-leopard": {
  349. name: "Snow Leopard",
  350. parents: [
  351. "cat"
  352. ]
  353. },
  354. "barbary-lion": {
  355. name: "Barbary Lion",
  356. parents: [
  357. "lion"
  358. ]
  359. },
  360. "dra'gal": {
  361. name: "Dra'Gal",
  362. parents: [
  363. "mammal"
  364. ]
  365. },
  366. "german-shepherd": {
  367. name: "German Shepherd",
  368. parents: [
  369. "dog"
  370. ]
  371. },
  372. "bayleef": {
  373. name: "Bayleef",
  374. parents: [
  375. "pokemon",
  376. "plant",
  377. "animal"
  378. ]
  379. },
  380. "mouse": {
  381. name: "Mouse",
  382. parents: [
  383. "rodent"
  384. ]
  385. },
  386. "rat": {
  387. name: "Rat",
  388. parents: [
  389. "mammal"
  390. ]
  391. },
  392. "hoshiko-beast": {
  393. name: "Hoshiko Beast",
  394. parents: ["animal"]
  395. },
  396. "snow-jugani": {
  397. name: "Snow Jugani",
  398. parents: ["cat"]
  399. },
  400. "patamon": {
  401. name: "Patamon",
  402. parents: ["digimon", "guinea-pig"]
  403. },
  404. "digimon": {
  405. name: "Digimon",
  406. parents: [
  407. "video-games"
  408. ]
  409. },
  410. "jugani": {
  411. name: "Jugani",
  412. parents: ["cat"]
  413. },
  414. "luxray": {
  415. name: "Luxray",
  416. parents: ["pokemon", "lion"]
  417. },
  418. "mech": {
  419. name: "Mech",
  420. parents: ["machine"]
  421. },
  422. "zoid": {
  423. name: "Zoid",
  424. parents: ["mech"]
  425. },
  426. "monster": {
  427. name: "Monster",
  428. parents: ["animal"]
  429. },
  430. "foo-dog": {
  431. name: "Foo Dog",
  432. parents: ["mammal"]
  433. },
  434. "elephant": {
  435. name: "Elephant",
  436. parents: ["mammal"]
  437. },
  438. "eagle": {
  439. name: "Eagle",
  440. parents: ["bird-of-prey"]
  441. },
  442. "cow": {
  443. name: "Cow",
  444. parents: ["mammal"]
  445. },
  446. "crocodile": {
  447. name: "Crocodile",
  448. parents: ["reptile"]
  449. },
  450. "borzoi": {
  451. name: "Borzoi",
  452. parents: ["dog"]
  453. },
  454. "snake": {
  455. name: "Snake",
  456. parents: ["reptile"]
  457. },
  458. "horned-bush-viper": {
  459. name: "Horned Bush Viper",
  460. parents: ["viper"]
  461. },
  462. "cobra": {
  463. name: "Cobra",
  464. parents: ["snake"]
  465. },
  466. "harpy-eagle": {
  467. name: "Harpy Eagle",
  468. parents: ["eagle"]
  469. },
  470. "raptor": {
  471. name: "Raptor",
  472. parents: ["dinosaur"]
  473. },
  474. "dinosaur": {
  475. name: "Dinosaur",
  476. parents: ["saurian"]
  477. },
  478. "saurian": {
  479. name: "Saurian",
  480. parents: ["lizard"]
  481. },
  482. "veilhound": {
  483. name: "Veilhound",
  484. parents: ["hellhound"]
  485. },
  486. "hellhound": {
  487. name: "Hellhound",
  488. parents: ["canine", "demon"]
  489. },
  490. "insect": {
  491. name: "Insect",
  492. parents: ["animal"]
  493. },
  494. "beetle": {
  495. name: "Beetle",
  496. parents: ["insect"]
  497. },
  498. "moth": {
  499. name: "Moth",
  500. parents: ["insect"]
  501. },
  502. "eastern-dragon": {
  503. name: "Eastern Dragon",
  504. parents: ["dragon"]
  505. },
  506. "jaguar": {
  507. name: "Jaguar",
  508. parents: ["cat"]
  509. },
  510. "horse": {
  511. name: "Horse",
  512. parents: ["mammal"]
  513. },
  514. "sergal": {
  515. name: "Sergal",
  516. parents: ["mammal", "avian", "vilous"]
  517. },
  518. "gryphon": {
  519. name: "Gryphon",
  520. parents: ["lion", "eagle"]
  521. },
  522. "robot": {
  523. name: "Robot",
  524. parents: ["machine"]
  525. },
  526. "medihound": {
  527. name: "Medihound",
  528. parents: ["robot", "dog"]
  529. },
  530. "sylveon": {
  531. name: "Sylveon",
  532. parents: ["pokemon"]
  533. },
  534. "catgirl": {
  535. name: "Catgirl",
  536. parents: ["mammal"]
  537. },
  538. "cowgirl": {
  539. name: "Cowgirl",
  540. parents: ["mammal"]
  541. },
  542. "pony": {
  543. name: "Pony",
  544. parents: ["horse"]
  545. },
  546. "rabbit": {
  547. name: "Rabbit",
  548. parents: ["leporidae"]
  549. },
  550. "fennec-fox": {
  551. name: "Fennec Fox",
  552. parents: ["fox"]
  553. },
  554. "azodian": {
  555. name: "Azodian",
  556. parents: ["mouse"]
  557. },
  558. "shiba-inu": {
  559. name: "Shiba Inu",
  560. parents: ["dog"]
  561. },
  562. "changeling": {
  563. name: "Changeling",
  564. parents: ["insect"]
  565. },
  566. "cheetah": {
  567. name: "Cheetah",
  568. parents: ["cat"]
  569. },
  570. "golden-jackal": {
  571. name: "Golden Jackal",
  572. parents: ["jackal"]
  573. },
  574. "manectric": {
  575. name: "Manectric",
  576. parents: ["pokemon", "wolf"]
  577. },
  578. "rat": {
  579. name: "Rat",
  580. parents: ["rodent"]
  581. },
  582. "rodent": {
  583. name: "Rodent",
  584. parents: ["mammal"]
  585. },
  586. "octocoon": {
  587. name: "Octocoon",
  588. parents: ["raccoon", "octopus"]
  589. },
  590. "octopus": {
  591. name: "Octopus",
  592. parents: ["fish"]
  593. },
  594. "werewolf": {
  595. name: "Werewolf",
  596. parents: ["wolf", "werebeast"]
  597. },
  598. "werebeast": {
  599. name: "Werebeast",
  600. parents: ["monster"]
  601. },
  602. "meerkat": {
  603. name: "Meerkat",
  604. parents: ["mammal"]
  605. },
  606. "human": {
  607. name: "Human",
  608. parents: ["mammal", "humanoid"]
  609. },
  610. "geth": {
  611. name: "Geth",
  612. parents: ["android"]
  613. },
  614. "husky": {
  615. name: "Husky",
  616. parents: ["dog"]
  617. },
  618. "long-eared-bat": {
  619. name: "Long Eared Bat",
  620. parents: ["bat"]
  621. },
  622. "lizard": {
  623. name: "Lizard",
  624. parents: ["reptile"]
  625. },
  626. "salamander": {
  627. name: "Salamander",
  628. parents: ["lizard"]
  629. },
  630. "chameleon": {
  631. name: "Chameleon",
  632. parents: ["lizard"]
  633. },
  634. "gecko": {
  635. name: "Gecko",
  636. parents: ["lizard"]
  637. },
  638. "kobold": {
  639. name: "Kobold",
  640. parents: ["reptile"]
  641. },
  642. "charizard": {
  643. name: "Charizard",
  644. parents: ["pokemon", "dragon"]
  645. },
  646. "lugia": {
  647. name: "Lugia",
  648. parents: ["pokemon", "avian"]
  649. },
  650. "cerberus": {
  651. name: "Cerberus",
  652. parents: ["dog"]
  653. },
  654. "tyrantrum": {
  655. name: "Tyrantrum",
  656. parents: ["pokemon"]
  657. },
  658. "lemur": {
  659. name: "Lemur",
  660. parents: ["mammal"]
  661. },
  662. "kelpie": {
  663. name: "Kelpie",
  664. parents: ["horse", "monster"]
  665. },
  666. "labrador": {
  667. name: "Labrador",
  668. parents: ["dog"]
  669. },
  670. "sylveon": {
  671. name: "Sylveon",
  672. parents: ["eeveelution"]
  673. },
  674. "eeveelution": {
  675. name: "Eeveelution",
  676. parents: ["pokemon", "cat"]
  677. },
  678. "polar-bear": {
  679. name: "Polar Bear",
  680. parents: ["bear"]
  681. },
  682. "bear": {
  683. name: "Bear",
  684. parents: ["mammal"]
  685. },
  686. "absol": {
  687. name: "Absol",
  688. parents: ["pokemon", "cat"]
  689. },
  690. "wolver": {
  691. name: "Wolver",
  692. parents: ["mammal"]
  693. },
  694. "rottweiler": {
  695. name: "Rottweiler",
  696. parents: ["dog"]
  697. },
  698. "zebra": {
  699. name: "Zebra",
  700. parents: ["horse"]
  701. },
  702. "yoshi": {
  703. name: "Yoshi",
  704. parents: ["dinosaur"]
  705. },
  706. "lynx": {
  707. name: "Lynx",
  708. parents: ["cat"]
  709. },
  710. "unknown": {
  711. name: "Unknown",
  712. parents: []
  713. },
  714. "thylacine": {
  715. name: "Thylacine",
  716. parents: ["mammal"]
  717. },
  718. "gabumon": {
  719. name: "Gabumon",
  720. parents: ["digimon"]
  721. },
  722. "border-collie": {
  723. name: "Border Collie",
  724. parents: ["dog"]
  725. },
  726. "imp": {
  727. name: "Imp",
  728. parents: ["demon"]
  729. },
  730. "kangaroo": {
  731. name: "Kangaroo",
  732. parents: ["marsupial"]
  733. },
  734. "renamon": {
  735. name: "Renamon",
  736. parents: ["digimon", "fox"]
  737. },
  738. "candy-orca-dragon": {
  739. name: "Candy Orca Dragon",
  740. parents: ["fish", "dragon", "candy"]
  741. },
  742. "sabertooth-tiger": {
  743. name: "Sabertooth Tiger",
  744. parents: ["cat"]
  745. },
  746. "espurr": {
  747. name: "Espurr",
  748. parents: ["pokemon", "cat"]
  749. },
  750. "otter": {
  751. name: "Otter",
  752. parents: ["mustelid"]
  753. },
  754. "elemental": {
  755. name: "Elemental",
  756. parents: ["mammal"]
  757. },
  758. "mew": {
  759. name: "Mew",
  760. parents: ["pokemon"]
  761. },
  762. "goodra": {
  763. name: "Goodra",
  764. parents: ["pokemon"]
  765. },
  766. "fairy": {
  767. name: "Fairy",
  768. parents: ["magical"]
  769. },
  770. "typhlosion": {
  771. name: "Typhlosion",
  772. parents: ["pokemon"]
  773. },
  774. "magical": {
  775. name: "Magical",
  776. parents: []
  777. },
  778. "xenomorph": {
  779. name: "Xenomorph",
  780. parents: ["monster", "alien"]
  781. },
  782. "charr": {
  783. name: "Charr",
  784. parents: ["cat"]
  785. },
  786. "siberian-husky": {
  787. name: "Siberian Husky",
  788. parents: ["husky"]
  789. },
  790. "alligator": {
  791. name: "Alligator",
  792. parents: ["reptile"]
  793. },
  794. "bernese-mountain-dog": {
  795. name: "Bernese Mountain Dog",
  796. parents: ["dog"]
  797. },
  798. "reshiram": {
  799. name: "Reshiram",
  800. parents: ["pokemon", "dragon"]
  801. },
  802. "grizzly-bear": {
  803. name: "Grizzly Bear",
  804. parents: ["bear"]
  805. },
  806. "water-monitor": {
  807. name: "Water Monitor",
  808. parents: ["lizard"]
  809. },
  810. "banchofossa": {
  811. name: "Banchofossa",
  812. parents: ["mammal"]
  813. },
  814. "kirin": {
  815. name: "Kirin",
  816. parents: ["monster"]
  817. },
  818. "quilava": {
  819. name: "Quilava",
  820. parents: ["pokemon"]
  821. },
  822. "seviper": {
  823. name: "Seviper",
  824. parents: ["pokemon", "viper"]
  825. },
  826. "flying-fox": {
  827. name: "Flying Fox",
  828. parents: ["bat"]
  829. },
  830. "keynain": {
  831. name: "Keynain",
  832. parents: ["avian"]
  833. },
  834. "lucario": {
  835. name: "Lucario",
  836. parents: ["pokemon", "jackal"]
  837. },
  838. "siamese-cat": {
  839. name: "Siamese Cat",
  840. parents: ["cat"]
  841. },
  842. "spider": {
  843. name: "Spider",
  844. parents: ["insect"]
  845. },
  846. "samurott": {
  847. name: "Samurott",
  848. parents: ["pokemon", "otter"]
  849. },
  850. "megalodon": {
  851. name: "Megalodon",
  852. parents: ["shark"]
  853. },
  854. "unicorn": {
  855. name: "Unicorn",
  856. parents: ["horse"]
  857. },
  858. "greninja": {
  859. name: "Greninja",
  860. parents: ["pokemon", "frog"]
  861. },
  862. "water-dragon": {
  863. name: "Water Dragon",
  864. parents: ["dragon"]
  865. },
  866. "cross-fox": {
  867. name: "Cross Fox",
  868. parents: ["fox"]
  869. },
  870. "synth": {
  871. name: "Synth",
  872. parents: ["machine"]
  873. },
  874. "construct": {
  875. name: "Construct",
  876. parents: []
  877. },
  878. "mexican-wolf": {
  879. name: "Mexican Wolf",
  880. parents: ["wolf"]
  881. },
  882. "leopard": {
  883. name: "Leopard",
  884. parents: ["cat"]
  885. },
  886. "pig": {
  887. name: "Pig",
  888. parents: ["mammal"]
  889. },
  890. "ampharos": {
  891. name: "Ampharos",
  892. parents: ["pokemon", "sheep"]
  893. },
  894. "orca": {
  895. name: "Orca",
  896. parents: ["fish"]
  897. },
  898. "lycanroc": {
  899. name: "Lycanroc",
  900. parents: ["pokemon", "wolf"]
  901. },
  902. "surkanu": {
  903. name: "Surkanu",
  904. parents: ["monster"]
  905. },
  906. "seal": {
  907. name: "Seal",
  908. parents: ["mammal"]
  909. },
  910. "keldeo": {
  911. name: "Keldeo",
  912. parents: ["pokemon"]
  913. },
  914. "great-dane": {
  915. name: "Great Dane",
  916. parents: ["dog"]
  917. },
  918. "black-backed-jackal": {
  919. name: "Black Backed Jackal",
  920. parents: ["jackal"]
  921. },
  922. "sheep": {
  923. name: "Sheep",
  924. parents: ["mammal"]
  925. },
  926. "leopard-seal": {
  927. name: "Leopard Seal",
  928. parents: ["seal"]
  929. },
  930. "zoroark": {
  931. name: "Zoroark",
  932. parents: ["pokemon", "fox"]
  933. },
  934. "maned-wolf": {
  935. name: "Maned Wolf",
  936. parents: ["canine"]
  937. },
  938. "dracha": {
  939. name: "Dracha",
  940. parents: ["dragon"]
  941. },
  942. "wolxi": {
  943. name: "Wolxi",
  944. parents: ["mammal", "alien"]
  945. },
  946. "dratini": {
  947. name: "Dratini",
  948. parents: ["pokemon", "dragon"]
  949. },
  950. "skaven": {
  951. name: "Skaven",
  952. parents: ["rat"]
  953. },
  954. "mongoose": {
  955. name: "Mongoose",
  956. parents: ["mammal"]
  957. },
  958. "lopunny": {
  959. name: "Lopunny",
  960. parents: ["pokemon", "rabbit"]
  961. },
  962. "feraligatr": {
  963. name: "Feraligatr",
  964. parents: ["pokemon", "alligator"]
  965. },
  966. "houndoom": {
  967. name: "Houndoom",
  968. parents: ["pokemon", "dog"]
  969. },
  970. "protogen": {
  971. name: "Protogen",
  972. parents: ["machine"]
  973. },
  974. "saint-bernard": {
  975. name: "Saint Bernard",
  976. parents: ["dog"]
  977. },
  978. "crow": {
  979. name: "Crow",
  980. parents: ["corvid"]
  981. },
  982. "delphox": {
  983. name: "Delphox",
  984. parents: ["pokemon", "fox"]
  985. },
  986. "moose": {
  987. name: "Moose",
  988. parents: ["mammal"]
  989. },
  990. "joraxian": {
  991. name: "Joraxian",
  992. parents: ["monster", "canine", "demon"]
  993. },
  994. "nimbat": {
  995. name: "Nimbat",
  996. parents: ["mammal"]
  997. },
  998. "aardwolf": {
  999. name: "Aardwolf",
  1000. parents: ["canine"]
  1001. },
  1002. "fluudrani": {
  1003. name: "Fluudrani",
  1004. parents: ["animal"]
  1005. },
  1006. "arcanine": {
  1007. name: "Arcanine",
  1008. parents: ["pokemon", "dog"]
  1009. },
  1010. "inteleon": {
  1011. name: "Inteleon",
  1012. parents: ["pokemon", "fish"]
  1013. },
  1014. "ninetales": {
  1015. name: "Ninetales",
  1016. parents: ["pokemon", "kitsune"]
  1017. },
  1018. "tigrex": {
  1019. name: "Tigrex",
  1020. parents: ["wyvern", "monster-hunter"]
  1021. },
  1022. "zorua": {
  1023. name: "Zorua",
  1024. parents: ["pokemon", "fox"]
  1025. },
  1026. "vulpix": {
  1027. name: "Vulpix",
  1028. parents: ["pokemon", "fox"]
  1029. },
  1030. "barghest": {
  1031. name: "Barghest",
  1032. parents: ["monster"]
  1033. },
  1034. "gray-wolf": {
  1035. name: "Gray Wolf",
  1036. parents: ["wolf"]
  1037. },
  1038. "ruppells-fox": {
  1039. name: "Rüppell's Fox",
  1040. parents: ["fox"]
  1041. },
  1042. "bull-terrier": {
  1043. name: "Bull Terrier",
  1044. parents: ["dog"]
  1045. },
  1046. "european-honey-buzzard": {
  1047. name: "European Honey Buzzard",
  1048. parents: ["avian"]
  1049. },
  1050. "t-rex": {
  1051. name: "Tyrannosaurus Rex",
  1052. parents: ["theropod"]
  1053. },
  1054. "mactarian": {
  1055. name: "Mactarian",
  1056. parents: ["shark", "monster"]
  1057. },
  1058. "mewtwo-y": {
  1059. name: "Mewtwo Y",
  1060. parents: ["mewtwo"]
  1061. },
  1062. "mewtwo": {
  1063. name: "Mewtwo",
  1064. parents: ["pokemon"]
  1065. },
  1066. "eevee": {
  1067. name: "Eevee",
  1068. parents: ["eeveelution"]
  1069. },
  1070. "mienshao": {
  1071. name: "Mienshao",
  1072. parents: ["pokemon"]
  1073. },
  1074. "sugar-glider": {
  1075. name: "Sugar Glider",
  1076. parents: ["opossum"]
  1077. },
  1078. "spectral-bat": {
  1079. name: "Spectral Bat",
  1080. parents: ["bat"]
  1081. },
  1082. "scolipede": {
  1083. name: "Scolipede",
  1084. parents: ["pokemon", "insect"]
  1085. },
  1086. "jackalope": {
  1087. name: "Jackalope",
  1088. parents: ["rabbit", "antelope"]
  1089. },
  1090. "caracal": {
  1091. name: "Caracal",
  1092. parents: ["cat"]
  1093. },
  1094. "stoat": {
  1095. name: "Stoat",
  1096. parents: ["mammal"]
  1097. },
  1098. "african-golden-cat": {
  1099. name: "African Golden Cat",
  1100. parents: ["cat"]
  1101. },
  1102. "gigantosaurus": {
  1103. name: "Gigantosaurus",
  1104. parents: ["dinosaur"]
  1105. },
  1106. "zorgoia": {
  1107. name: "Zorgoia",
  1108. parents: ["mammal"]
  1109. },
  1110. "monitor-lizard": {
  1111. name: "Monitor Lizard",
  1112. parents: ["lizard"]
  1113. },
  1114. "ziralkia": {
  1115. name: "Ziralkia",
  1116. parents: ["mammal"]
  1117. },
  1118. "kiiasi": {
  1119. name: "Kiiasi",
  1120. parents: ["animal"]
  1121. },
  1122. "synx": {
  1123. name: "Synx",
  1124. parents: ["monster"]
  1125. },
  1126. "panther": {
  1127. name: "Panther",
  1128. parents: ["cat"]
  1129. },
  1130. "azumarill": {
  1131. name: "Azumarill",
  1132. parents: ["pokemon"]
  1133. },
  1134. "river-snaptail": {
  1135. name: "River Snaptail",
  1136. parents: ["otter", "crocodile"]
  1137. },
  1138. "great-blue-heron": {
  1139. name: "Great Blue Heron",
  1140. parents: ["avian"]
  1141. },
  1142. "smeargle": {
  1143. name: "Smeargle",
  1144. parents: ["pokemon"]
  1145. },
  1146. "vendeilen": {
  1147. name: "Vendeilen",
  1148. parents: ["monster"]
  1149. },
  1150. "ventura": {
  1151. name: "Ventura",
  1152. parents: ["canine"]
  1153. },
  1154. "clouded-leopard": {
  1155. name: "Clouded Leopard",
  1156. parents: ["leopard"]
  1157. },
  1158. "argonian": {
  1159. name: "Argonian",
  1160. parents: ["lizard"]
  1161. },
  1162. "salazzle": {
  1163. name: "Salazzle",
  1164. parents: ["pokemon", "lizard"]
  1165. },
  1166. "je-stoff-drachen": {
  1167. name: "Je-Stoff Drachen",
  1168. parents: ["dragon"]
  1169. },
  1170. "finnish-spitz-dog": {
  1171. name: "Finnish Spitz Dog",
  1172. parents: ["dog"]
  1173. },
  1174. "gray-fox": {
  1175. name: "Gray Fox",
  1176. parents: ["fox"]
  1177. },
  1178. "opossum": {
  1179. name: "Opossum",
  1180. parents: ["mammal"]
  1181. },
  1182. "antelope": {
  1183. name: "Antelope",
  1184. parents: ["mammal"]
  1185. },
  1186. "weavile": {
  1187. name: "Weavile",
  1188. parents: ["pokemon"]
  1189. },
  1190. "pikachu": {
  1191. name: "Pikachu",
  1192. parents: ["pokemon", "mouse"]
  1193. },
  1194. "grovyle": {
  1195. name: "Grovyle",
  1196. parents: ["pokemon", "plant"]
  1197. },
  1198. "sthara": {
  1199. name: "Sthara",
  1200. parents: ["snow-leopard", "reptile"]
  1201. },
  1202. "star-warrior": {
  1203. name: "Star Warrior",
  1204. parents: ["magical"]
  1205. },
  1206. "dragonoid": {
  1207. name: "Dragonoid",
  1208. parents: ["dragon"]
  1209. },
  1210. "suicune": {
  1211. name: "Suicune",
  1212. parents: ["pokemon"]
  1213. },
  1214. "vole": {
  1215. name: "Vole",
  1216. parents: ["mammal"]
  1217. },
  1218. "blaziken": {
  1219. name: "Blaziken",
  1220. parents: ["pokemon", "avian"]
  1221. },
  1222. "buizel": {
  1223. name: "Buizel",
  1224. parents: ["pokemon", "fish"]
  1225. },
  1226. "floatzel": {
  1227. name: "Floatzel",
  1228. parents: ["pokemon", "fish"]
  1229. },
  1230. "umok": {
  1231. name: "Umok",
  1232. parents: ["avian"]
  1233. },
  1234. "sea-monster": {
  1235. name: "Sea Monster",
  1236. parents: ["monster", "fish"]
  1237. },
  1238. "egyptian-vulture": {
  1239. name: "Egyptian Vulture",
  1240. parents: ["avian"]
  1241. },
  1242. "doberman": {
  1243. name: "Doberman",
  1244. parents: ["dog"]
  1245. },
  1246. "zangoose": {
  1247. name: "Zangoose",
  1248. parents: ["pokemon", "mongoose"]
  1249. },
  1250. "mongoose": {
  1251. name: "Mongoose",
  1252. parents: ["mammal"]
  1253. },
  1254. "wickerbeast": {
  1255. name: "Wickerbeast",
  1256. parents: ["monster"]
  1257. },
  1258. "zenari": {
  1259. name: "Zenari",
  1260. parents: ["lizard"]
  1261. },
  1262. "plant": {
  1263. name: "Plant",
  1264. parents: []
  1265. },
  1266. "raskatox": {
  1267. name: "Raskatox",
  1268. parents: ["raccoon", "skunk", "cat", "fox"]
  1269. },
  1270. "mikromare": {
  1271. name: "mikromare",
  1272. parents: ["alien"]
  1273. },
  1274. "alien": {
  1275. name: "Alien",
  1276. parents: ["animal"]
  1277. },
  1278. "deity": {
  1279. name: "Deity",
  1280. parents: []
  1281. },
  1282. "skarlan": {
  1283. name: "Skarlan",
  1284. parents: ["slug", "dragon"]
  1285. },
  1286. "slug": {
  1287. name: "Slug",
  1288. parents: ["mollusk"]
  1289. },
  1290. "mollusk": {
  1291. name: "Mollusk",
  1292. parents: ["animal"]
  1293. },
  1294. "chimera": {
  1295. name: "Chimera",
  1296. parents: ["monster"]
  1297. },
  1298. "gestalt": {
  1299. name: "Gestalt",
  1300. parents: ["construct"]
  1301. },
  1302. "mimic": {
  1303. name: "Mimic",
  1304. parents: ["monster"]
  1305. },
  1306. "calico-rat": {
  1307. name: "Calico Rat",
  1308. parents: ["rat"]
  1309. },
  1310. "panda": {
  1311. name: "Panda",
  1312. parents: ["mammal"]
  1313. },
  1314. "oni": {
  1315. name: "Oni",
  1316. parents: ["monster"]
  1317. },
  1318. "pegasus": {
  1319. name: "Pegasus",
  1320. parents: ["horse"]
  1321. },
  1322. "vulpera": {
  1323. name: "Vulpera",
  1324. parents: ["fennec-fox"]
  1325. },
  1326. "ceratosaurus": {
  1327. name: "Ceratosaurus",
  1328. parents: ["dinosaur"]
  1329. },
  1330. "nykur": {
  1331. name: "Nykur",
  1332. parents: ["horse", "monster"]
  1333. },
  1334. "giraffe": {
  1335. name: "Giraffe",
  1336. parents: ["mammal"]
  1337. },
  1338. "tauren": {
  1339. name: "Tauren",
  1340. parents: ["cow"]
  1341. },
  1342. "draconi": {
  1343. name: "Draconi",
  1344. parents: ["alien", "cat", "cyborg"]
  1345. },
  1346. "dire-wolf": {
  1347. name: "Dire Wolf",
  1348. parents: ["wolf"]
  1349. },
  1350. "ferromorph": {
  1351. name: "Ferromorph",
  1352. parents: ["construct"]
  1353. },
  1354. "meowth": {
  1355. name: "Meowth",
  1356. parents: ["cat", "pokemon"]
  1357. },
  1358. "pavodragon": {
  1359. name: "Pavodragon",
  1360. parents: ["dragon"]
  1361. },
  1362. "aaltranae": {
  1363. name: "Aaltranae",
  1364. parents: ["dragon"]
  1365. },
  1366. "cyborg": {
  1367. name: "Cyborg",
  1368. parents: ["machine"]
  1369. },
  1370. "draptor": {
  1371. name: "Draptor",
  1372. parents: ["dragon"]
  1373. },
  1374. "candy": {
  1375. name: "Candy",
  1376. parents: []
  1377. },
  1378. "drenath": {
  1379. name: "Drenath",
  1380. parents: ["dragon", "snake", "rabbit"]
  1381. },
  1382. "coyju": {
  1383. name: "Coyju",
  1384. parents: ["coyote", "kaiju"]
  1385. },
  1386. "kaiju": {
  1387. name: "Kaiju",
  1388. parents: ["monster"]
  1389. },
  1390. "nickit": {
  1391. name: "Nickit",
  1392. parents: ["pokemon", "cat"]
  1393. },
  1394. "lopunny": {
  1395. name: "Lopunny",
  1396. parents: ["pokemon", "rabbit"]
  1397. },
  1398. "korean-jindo-dog": {
  1399. name: "Korean Jindo Dog",
  1400. parents: ["dog"]
  1401. },
  1402. "naga": {
  1403. name: "Naga",
  1404. parents: ["snake", "monster"]
  1405. },
  1406. "undead": {
  1407. name: "Undead",
  1408. parents: ["monster"]
  1409. },
  1410. "whale": {
  1411. name: "Whale",
  1412. parents: ["fish"]
  1413. },
  1414. "gelato-bee": {
  1415. name: "Gelato Bee",
  1416. parents: ["bee"]
  1417. },
  1418. "bee": {
  1419. name: "Bee",
  1420. parents: ["insect"]
  1421. },
  1422. "gardevoir": {
  1423. name: "Gardevoir",
  1424. parents: ["pokemon"]
  1425. },
  1426. "ant": {
  1427. name: "Ant",
  1428. parents: ["insect"]
  1429. },
  1430. "frog": {
  1431. name: "Frog",
  1432. parents: ["amphibian"]
  1433. },
  1434. "amphibian": {
  1435. name: "Amphibian",
  1436. parents: ["animal", "aquatic"]
  1437. },
  1438. "pangolin": {
  1439. name: "Pangolin",
  1440. parents: ["mammal"]
  1441. },
  1442. "uragi'viidorn": {
  1443. name: "Uragi'viidorn",
  1444. parents: ["avian", "bear"]
  1445. },
  1446. "gryphdelphais": {
  1447. name: "Gryphdelphais",
  1448. parents: ["dolphin", "gryphon"]
  1449. },
  1450. "plush": {
  1451. name: "Plush",
  1452. parents: ["construct"]
  1453. },
  1454. "draiger": {
  1455. name: "Draiger",
  1456. parents: ["dragon","tiger"]
  1457. },
  1458. "foxsky": {
  1459. name: "Foxsky",
  1460. parents: ["fox", "husky"]
  1461. },
  1462. "umbreon": {
  1463. name: "Umbreon",
  1464. parents: ["eeveelution"]
  1465. },
  1466. "slime-dragon": {
  1467. name: "Slime Dragon",
  1468. parents: ["dragon", "goo"]
  1469. },
  1470. "enderman": {
  1471. name: "Enderman",
  1472. parents: ["monster"]
  1473. },
  1474. "gremlin": {
  1475. name: "Gremlin",
  1476. parents: ["monster"]
  1477. },
  1478. "dragonsune": {
  1479. name: "Dragonsune",
  1480. parents: ["dragon", "kitsune"]
  1481. },
  1482. "ghost": {
  1483. name: "Ghost",
  1484. parents: ["supernatural"]
  1485. },
  1486. "false-vampire-bat": {
  1487. name: "False Vampire Bat",
  1488. parents: ["bat"]
  1489. },
  1490. "succubus": {
  1491. name: "Succubus",
  1492. parents: ["demon"]
  1493. },
  1494. "mia": {
  1495. name: "Mia",
  1496. parents: ["canine"]
  1497. },
  1498. "rainbow": {
  1499. name: "Rainbow",
  1500. parents: ["monster"]
  1501. },
  1502. "solgaleo": {
  1503. name: "Solgaleo",
  1504. parents: ["pokemon"]
  1505. },
  1506. "lucent-nargacuga": {
  1507. name: "Lucent Nargacuga",
  1508. parents: ["nargacuga"]
  1509. },
  1510. "monster-hunter": {
  1511. name: "Monster Hunter",
  1512. parents: ["monster", "video-games"]
  1513. },
  1514. "leviathan": {
  1515. "name": "Leviathan",
  1516. "url": "sea-monster"
  1517. },
  1518. "bull": {
  1519. name: "Bull",
  1520. parents: ["mammal"]
  1521. },
  1522. "tanuki": {
  1523. name: "Tanuki",
  1524. parents: ["monster"]
  1525. },
  1526. "chakat": {
  1527. name: "Chakat",
  1528. parents: ["cat"]
  1529. },
  1530. "hydra": {
  1531. name: "Hydra",
  1532. parents: ["monster"]
  1533. },
  1534. "zigzagoon": {
  1535. name: "Zigzagoon",
  1536. parents: ["raccoon", "pokemon"]
  1537. },
  1538. "vulture": {
  1539. name: "Vulture",
  1540. parents: ["avian"]
  1541. },
  1542. "eastern-dragon": {
  1543. name: "Eastern Dragon",
  1544. parents: ["dragon"]
  1545. },
  1546. "gryffon": {
  1547. name: "Gryffon",
  1548. parents: ["phoenix", "red-panda"]
  1549. },
  1550. "amtsvane": {
  1551. name: "Amtsvane",
  1552. parents: ["reptile"]
  1553. },
  1554. "kigavi": {
  1555. name: "Kigavi",
  1556. parents: ["avian"]
  1557. },
  1558. "turian": {
  1559. name: "Turian",
  1560. parents: ["avian"]
  1561. },
  1562. "zeraora": {
  1563. name: "Zeraora",
  1564. parents: ["pokemon", "cat"]
  1565. },
  1566. "sandshrew": {
  1567. name: "Sandshrew",
  1568. parents: ["pokemon", "pangolin"]
  1569. },
  1570. "valais-blacknose-sheep": {
  1571. name: "Valais Blacknose Sheep",
  1572. parents: ["sheep"]
  1573. },
  1574. "novaleit": {
  1575. name: "Novaleit",
  1576. parents: ["mammal"]
  1577. },
  1578. "dunnoh": {
  1579. name: "Dunnoh",
  1580. parents: ["mammal"]
  1581. },
  1582. "lunaral-dragon": {
  1583. name: "Lunaral Dragon",
  1584. parents: ["dragon"]
  1585. },
  1586. "arctic-wolf": {
  1587. name: "Arctic Wolf",
  1588. parents: ["wolf"]
  1589. },
  1590. "donkey": {
  1591. name: "Donkey",
  1592. parents: ["horse"]
  1593. },
  1594. "chinchilla": {
  1595. name: "Chinchilla",
  1596. parents: ["rodent"]
  1597. },
  1598. "felkin": {
  1599. name: "Felkin",
  1600. parents: ["dragon"]
  1601. },
  1602. "tykeriel": {
  1603. name: "Tykeriel",
  1604. parents: ["avian"]
  1605. },
  1606. "folf": {
  1607. name: "Folf",
  1608. parents: ["fox", "wolf"]
  1609. },
  1610. "pooltoy": {
  1611. name: "Pooltoy",
  1612. parents: ["construct"]
  1613. },
  1614. "demi": {
  1615. name: "Demi",
  1616. parents: ["human"]
  1617. },
  1618. "stegosaurus": {
  1619. name: "Stegosaurus",
  1620. parents: ["dinosaur"]
  1621. },
  1622. "computer-virus": {
  1623. name: "Computer Virus",
  1624. parents: ["program"]
  1625. },
  1626. "program": {
  1627. name: "Program",
  1628. parents: ["construct"]
  1629. },
  1630. "space-springhare": {
  1631. name: "Space Springhare",
  1632. parents: ["hare"]
  1633. },
  1634. "river-drake": {
  1635. name: "River Drake",
  1636. parents: ["dragon"]
  1637. },
  1638. "djinn": {
  1639. "name": "Djinn",
  1640. "url": "supernatural"
  1641. },
  1642. "supernatural": {
  1643. name: "Supernatural",
  1644. parents: ["monster"]
  1645. },
  1646. "grasshopper-mouse": {
  1647. name: "Grasshopper Mouse",
  1648. parents: ["mouse"]
  1649. },
  1650. "somali-cat": {
  1651. name: "Somali Cat",
  1652. parents: ["cat"]
  1653. },
  1654. "minccino": {
  1655. name: "Minccino",
  1656. parents: ["pokemon", "chinchilla"]
  1657. },
  1658. "pine-marten": {
  1659. name: "Pine Marten",
  1660. parents: ["marten"]
  1661. },
  1662. "marten": {
  1663. name: "Marten",
  1664. parents: ["mustelid"]
  1665. },
  1666. "mustelid": {
  1667. name: "Mustelid",
  1668. parents: ["mammal"]
  1669. },
  1670. "caribou": {
  1671. name: "Caribou",
  1672. parents: ["deer"]
  1673. },
  1674. "gnoll": {
  1675. name: "Gnoll",
  1676. parents: ["hyena", "monster"]
  1677. },
  1678. "peacekeeper": {
  1679. name: "Peacekeeper",
  1680. parents: ["human"]
  1681. },
  1682. "river-otter": {
  1683. name: "River Otter",
  1684. parents: ["otter"]
  1685. },
  1686. "dhole": {
  1687. name: "Dhole",
  1688. parents: ["canine"]
  1689. },
  1690. "springbok": {
  1691. name: "Springbok",
  1692. parents: ["antelope"]
  1693. },
  1694. "marsupial": {
  1695. name: "Marsupial",
  1696. parents: ["mammal"]
  1697. },
  1698. "townsend-big-eared-bat": {
  1699. name: "Townsend Big-eared Bat",
  1700. parents: ["bat"]
  1701. },
  1702. "squirrel": {
  1703. name: "Squirrel",
  1704. parents: ["rodent"]
  1705. },
  1706. "magpie": {
  1707. name: "Magpie",
  1708. parents: ["corvid"]
  1709. },
  1710. "civet": {
  1711. name: "Civet",
  1712. parents: ["feliform"]
  1713. },
  1714. "feliform": {
  1715. name: "Feliform",
  1716. parents: ["mammal"]
  1717. },
  1718. "tiefling": {
  1719. name: "Tiefling",
  1720. parents: ["devil"]
  1721. },
  1722. "devil": {
  1723. name: "Devil",
  1724. parents: ["supernatural"]
  1725. },
  1726. "sika-deer": {
  1727. name: "Sika Deer",
  1728. parents: ["deer"]
  1729. },
  1730. "vaporeon": {
  1731. name: "Vaporeon",
  1732. parents: ["eeveelution"]
  1733. },
  1734. "leafeon": {
  1735. name: "Leafeon",
  1736. parents: ["eeveelution"]
  1737. },
  1738. "jolteon": {
  1739. name: "Jolteon",
  1740. parents: ["eeveelution"]
  1741. },
  1742. "spireborn": {
  1743. name: "Spireborn",
  1744. parents: ["zorgoia"]
  1745. },
  1746. "vampire": {
  1747. name: "Vampire",
  1748. parents: ["monster"]
  1749. },
  1750. "extraplanar": {
  1751. name: "Extraplanar",
  1752. parents: []
  1753. },
  1754. "goo": {
  1755. name: "Goo",
  1756. parents: []
  1757. },
  1758. "skink": {
  1759. name: "Skink",
  1760. parents: ["lizard"]
  1761. },
  1762. "bat-eared-fox": {
  1763. name: "Bat-eared Fox",
  1764. parents: ["fox"]
  1765. },
  1766. "belted-kingfisher": {
  1767. name: "Belted Kingfisher",
  1768. parents: ["avian"]
  1769. },
  1770. "omnifalcon": {
  1771. name: "Omnifalcon",
  1772. parents: ["gryphon", "falcon", "harpy-eagle"]
  1773. },
  1774. "falcon": {
  1775. name: "Falcon",
  1776. parents: ["bird-of-prey"]
  1777. },
  1778. "avali": {
  1779. name: "Avali",
  1780. parents: ["avian", "alien"]
  1781. },
  1782. "arctic-fox": {
  1783. name: "Arctic Fox",
  1784. parents: ["fox"]
  1785. },
  1786. "snow-tiger": {
  1787. name: "Snow Tiger",
  1788. parents: ["tiger"]
  1789. },
  1790. "marble-fox": {
  1791. name: "Marble Fox",
  1792. parents: ["fox"]
  1793. },
  1794. "king-wickerbeast": {
  1795. name: "King Wickerbeast",
  1796. parents: ["wickerbeast"]
  1797. },
  1798. "wickerbeast": {
  1799. name: "Wickerbeast",
  1800. parents: ["mammal"]
  1801. },
  1802. "european-polecat": {
  1803. name: "European Polecat",
  1804. parents: ["polecat"]
  1805. },
  1806. "polecat": {
  1807. name: "Polecat",
  1808. parents: ["mustelid"]
  1809. },
  1810. "teshari": {
  1811. name: "Teshari",
  1812. parents: ["avian", "raptor"]
  1813. },
  1814. "alicorn": {
  1815. name: "Alicorn",
  1816. parents: ["horse"]
  1817. },
  1818. "atlas-moth": {
  1819. name: "Atlas Moth",
  1820. parents: ["moth"]
  1821. },
  1822. "owlbear": {
  1823. name: "Owlbear",
  1824. parents: ["owl", "bear", "monster"]
  1825. },
  1826. "owl": {
  1827. name: "Owl",
  1828. parents: ["avian"]
  1829. },
  1830. "silvertongue": {
  1831. name: "Silvertongue",
  1832. parents: ["reptile"]
  1833. },
  1834. "ahuizotl": {
  1835. name: "Ahuizotl",
  1836. parents: ["monster"]
  1837. },
  1838. "ender-dragon": {
  1839. name: "Ender Dragon",
  1840. parents: ["dragon"]
  1841. },
  1842. "bruhathkayosaurus": {
  1843. name: "Bruhathkayosaurus",
  1844. parents: ["sauropod"]
  1845. },
  1846. "sauropod": {
  1847. name: "Sauropod",
  1848. parents: ["dinosaur"]
  1849. },
  1850. "black-sable-antelope": {
  1851. name: "Black Sable Antelope",
  1852. parents: ["antelope"]
  1853. },
  1854. "slime": {
  1855. name: "Slime",
  1856. parents: ["goo"]
  1857. },
  1858. "utahraptor": {
  1859. name: "Utahraptor",
  1860. parents: ["raptor"]
  1861. },
  1862. "indian-giant-squirrel": {
  1863. name: "Indian Giant Squirrel",
  1864. parents: ["squirrel"]
  1865. },
  1866. "golden-retriever": {
  1867. name: "Golden Retriever",
  1868. parents: ["dog"]
  1869. },
  1870. "triceratops": {
  1871. name: "Triceratops",
  1872. parents: ["dinosaur"]
  1873. },
  1874. "drake": {
  1875. name: "Drake",
  1876. parents: ["dragon"]
  1877. },
  1878. "okapi": {
  1879. name: "Okapi",
  1880. parents: ["giraffe"]
  1881. },
  1882. "arctic-hare": {
  1883. name: "Arctic Hare",
  1884. parents: ["hare"]
  1885. },
  1886. "hare": {
  1887. name: "Hare",
  1888. parents: ["leporidae"]
  1889. },
  1890. "leporidae": {
  1891. name: "Leporidae",
  1892. parents: ["mammal"]
  1893. },
  1894. "leopard-gecko": {
  1895. name: "Leopard Gecko",
  1896. parents: ["gecko"]
  1897. },
  1898. "dreamspawn": {
  1899. name: "Dreamspawn",
  1900. parents: ["illusion"]
  1901. },
  1902. "illusion": {
  1903. name: "Illusion",
  1904. parents: []
  1905. },
  1906. "purrloin": {
  1907. name: "Purrloin",
  1908. parents: ["cat", "pokemon"]
  1909. },
  1910. "noivern": {
  1911. name: "Noivern",
  1912. parents: ["bat", "dragon", "pokemon"]
  1913. },
  1914. "hedgehog": {
  1915. name: "Hedgehog",
  1916. parents: ["mammal"]
  1917. },
  1918. "liger": {
  1919. name: "Liger",
  1920. parents: ["lion", "tiger", "hybrid"]
  1921. },
  1922. "hybrid": {
  1923. name: "Hybrid",
  1924. parents: []
  1925. },
  1926. "drider": {
  1927. name: "Drider",
  1928. parents: ["spider"]
  1929. },
  1930. "sabresune": {
  1931. name: "Sabresune",
  1932. parents: ["kitsune", "sabertooth-tiger"]
  1933. },
  1934. "ditto": {
  1935. name: "Ditto",
  1936. parents: ["pokemon", "goo"]
  1937. },
  1938. "amogus": {
  1939. name: "Amogus",
  1940. parents: ["deity"]
  1941. },
  1942. "ferret": {
  1943. name: "Ferret",
  1944. parents: ["mustelid"]
  1945. },
  1946. "guinea-pig": {
  1947. name: "Guinea Pig",
  1948. parents: ["rodent"]
  1949. },
  1950. "viper": {
  1951. name: "Viper",
  1952. parents: ["snake"]
  1953. },
  1954. "cinderace": {
  1955. name: "Cinderace",
  1956. parents: ["pokemon", "rabbit"]
  1957. },
  1958. "caudin": {
  1959. name: "Caudin",
  1960. parents: ["dragon"]
  1961. },
  1962. "red-winged-blackbird": {
  1963. name: "Red-Winged Blackbird",
  1964. parents: ["avian"]
  1965. },
  1966. "hooded-wheater": {
  1967. name: "Hooded Wheater",
  1968. parents: ["passerine"]
  1969. },
  1970. "passerine": {
  1971. name: "Passerine",
  1972. parents: ["avian"]
  1973. },
  1974. "gieeg": {
  1975. name: "Gieeg",
  1976. parents: ["alien"]
  1977. },
  1978. "ringtail": {
  1979. name: "Ringtail",
  1980. parents: ["raccoon"]
  1981. },
  1982. "hisuian-zoroark": {
  1983. name: "Hisuian Zoroark",
  1984. parents: ["zoroark", "hisuian"]
  1985. },
  1986. "hisuian": {
  1987. name: "Hisuian",
  1988. parents: ["regional-pokemon"]
  1989. },
  1990. "regional-pokemon": {
  1991. name: "Regional Pokemon",
  1992. parents: ["pokemon"]
  1993. },
  1994. "cybeast": {
  1995. name: "Cybeast",
  1996. parents: ["computer-virus"]
  1997. },
  1998. "javira-dragon": {
  1999. name: "Javira Dragon",
  2000. parents: ["dragon"]
  2001. },
  2002. "koopew": {
  2003. name: "Koopew",
  2004. parents: ["dragon", "alien"]
  2005. },
  2006. "nevrean": {
  2007. name: "Nevrean",
  2008. parents: ["avian", "vilous"]
  2009. },
  2010. "vilous": {
  2011. name: "Vilous Species",
  2012. parents: []
  2013. },
  2014. "titanoboa": {
  2015. name: "Titanoboa",
  2016. parents: ["snake"]
  2017. },
  2018. "raichu": {
  2019. name: "Raichu",
  2020. parents: ["pikachu"]
  2021. },
  2022. "taur": {
  2023. name: "Taur",
  2024. parents: []
  2025. },
  2026. "continental-giant-rabbit": {
  2027. name: "Continental Giant Rabbit",
  2028. parents: ["rabbit"]
  2029. },
  2030. "demigryph": {
  2031. name: "Demigryph",
  2032. parents: ["lion", "eagle"]
  2033. },
  2034. "bald-eagle": {
  2035. name: "Bald Eagle",
  2036. parents: ["eagle"]
  2037. },
  2038. "kestrel": {
  2039. name: "Kestrel",
  2040. parents: ["falcon"]
  2041. },
  2042. "mockingbird": {
  2043. name: "Mockingbird",
  2044. parents: ["songbird"]
  2045. },
  2046. "songbird": {
  2047. name: "Songbird",
  2048. parents: ["avian"]
  2049. },
  2050. "bird-of-prey": {
  2051. name: "Bird of Prey",
  2052. parents: ["avian"]
  2053. },
  2054. "marowak": {
  2055. name: "Marowak",
  2056. parents: ["pokemon", "reptile"]
  2057. },
  2058. "joltik": {
  2059. name: "Joltik",
  2060. parents: ["pokemon", "insect"]
  2061. },
  2062. "mink": {
  2063. name: "Mink",
  2064. parents: ["mustelid"]
  2065. },
  2066. "sandcat": {
  2067. name: "Sandcat",
  2068. parents: ["cat"]
  2069. },
  2070. "hrothgar": {
  2071. name: "Hrothgar",
  2072. parents: ["cat"]
  2073. },
  2074. "garchomp": {
  2075. name: "Garchomp",
  2076. parents: ["dragon", "pokemon"]
  2077. },
  2078. "nargacuga": {
  2079. name: "Nargacuga",
  2080. parents: ["monster-hunter"]
  2081. },
  2082. "sable": {
  2083. name: "Sable",
  2084. parents: ["marten"]
  2085. },
  2086. "deino": {
  2087. name: "Deino",
  2088. parents: ["pokemon", "dinosaur"]
  2089. },
  2090. "housecat": {
  2091. name: "Housecat",
  2092. parents: ["cat"]
  2093. },
  2094. "bombay-cat": {
  2095. name: "Bombay Cat",
  2096. parents: ["housecat"]
  2097. },
  2098. "maine-coon": {
  2099. name: "Maine Coon",
  2100. parents: ["housecat"]
  2101. },
  2102. "coelacanth": {
  2103. name: "Coelacanth",
  2104. parents: ["fish"]
  2105. },
  2106. "silvally": {
  2107. name: "Silvally",
  2108. parents: ["legendary-pokemon"]
  2109. },
  2110. "legendary-pokemon": {
  2111. name: "Legendary Pokemon",
  2112. parents: ["pokemon"]
  2113. },
  2114. "great-maccao": {
  2115. name: "Great Maccao",
  2116. parents: ["monster-hunter", "raptor"]
  2117. },
  2118. "shapeshifter": {
  2119. name: "shapeshifter",
  2120. parents: []
  2121. },
  2122. "obstagoon": {
  2123. name: "Obstagoon",
  2124. parents: ["zigzagoon"]
  2125. },
  2126. "thomsons-gazelle": {
  2127. name: "Thomsons Gazelle",
  2128. parents: ["gazelle"]
  2129. },
  2130. "gazelle": {
  2131. name: "Gazelle",
  2132. parents: ["antelope"]
  2133. },
  2134. "monkey": {
  2135. name: "Monkey",
  2136. parents: ["primate"]
  2137. },
  2138. "serval": {
  2139. name: "Serval",
  2140. parents: ["cat"]
  2141. },
  2142. "swampert": {
  2143. name: "Swampert",
  2144. parents: ["pokemon"]
  2145. },
  2146. "red-fox": {
  2147. name: "Red Fox",
  2148. parents: ["fox"]
  2149. },
  2150. "sliver": {
  2151. name: "Sliver",
  2152. parents: ["alien"]
  2153. },
  2154. "sergix": {
  2155. name: "Sergix",
  2156. parents: ["demon", "sergal", "phoenix"]
  2157. },
  2158. "behemoth": {
  2159. name: "Behemoth",
  2160. parents: ["monster", "dragon", "final-fantasy"]
  2161. },
  2162. "final-fantasy": {
  2163. name: "Final Fantasy",
  2164. parents: ["video-games"]
  2165. },
  2166. "video-games": {
  2167. name: "Video Games",
  2168. parents: []
  2169. },
  2170. "eastern-cottontail-rabbit": {
  2171. name: "Eastern Cottontail Rabbit",
  2172. parents: ["rabbit"]
  2173. },
  2174. "thresher-shark": {
  2175. name: "Thresher Shark",
  2176. parents: ["shark"]
  2177. },
  2178. "ai": {
  2179. name: "AI",
  2180. parents: []
  2181. },
  2182. "black-tip-reef-shark": {
  2183. name: "Black Tip Reef Shark",
  2184. parents: ["shark"]
  2185. },
  2186. "quetzalcoatlus-northropi": {
  2187. name: "Quetzalcoatlus Northropi",
  2188. parents: ["dinosaur"]
  2189. },
  2190. "snivy": {
  2191. name: "Snivy",
  2192. parents: ["pokemon", "snake"]
  2193. },
  2194. "nedynvor": {
  2195. name: "Nedynvor",
  2196. parents: ["avian"]
  2197. },
  2198. "marbled-polecat": {
  2199. name: "Marbled Polecat",
  2200. parents: ["polecat"]
  2201. },
  2202. "ape": {
  2203. name: "Ape",
  2204. parents: ["primate"]
  2205. },
  2206. "primate": {
  2207. name: "Primate",
  2208. parents: ["mammal"]
  2209. },
  2210. "kulve-taroth": {
  2211. name: "Kulve Taroth",
  2212. parents: ["monster-hunter", "dragon"]
  2213. },
  2214. "irthos": {
  2215. name: "Irthos",
  2216. parents: ["dragon"]
  2217. },
  2218. "furred-dragon": {
  2219. name: "Furred Dragon",
  2220. parents: ["dragon"]
  2221. },
  2222. "hippogriff": {
  2223. name: "Hippogriff",
  2224. parents: ["gryphon", "horse"]
  2225. },
  2226. "peregrine-falcon": {
  2227. name: "Peregrine Falcon",
  2228. parents: ["falcon"]
  2229. },
  2230. "deinonychus": {
  2231. name: "Deinonychus",
  2232. parents: ["theropod"]
  2233. },
  2234. "theropod": {
  2235. name: "Theropod",
  2236. parents: ["dinosaur"]
  2237. },
  2238. "chocobo": {
  2239. name: "Chocobo",
  2240. parents: ["avian"]
  2241. },
  2242. "stilio": {
  2243. name: "Stilio",
  2244. parents: ["snake"]
  2245. },
  2246. "kardox": {
  2247. name: "Kardox",
  2248. parents: ["wolf", "dragon", "horse"]
  2249. },
  2250. "food": {
  2251. name: "Food",
  2252. parents: ["object"]
  2253. },
  2254. "object": {
  2255. name: "Object",
  2256. parents: []
  2257. },
  2258. "honey-badger": {
  2259. name: "honey-badger",
  2260. parents: ["badger"]
  2261. },
  2262. "badger": {
  2263. name: "Badger",
  2264. parents: ["mustelid"]
  2265. },
  2266. "rattlesnake": {
  2267. name: "Rattlesnake",
  2268. parents: ["snake"]
  2269. },
  2270. "diamondback": {
  2271. name: "Diamondback",
  2272. parents: ["snake"]
  2273. },
  2274. "spidox": {
  2275. name: "Spidox",
  2276. parents: ["spider", "fox"]
  2277. },
  2278. "kodiak-bear": {
  2279. name: "Kodiak Bear",
  2280. parents: ["bear"]
  2281. },
  2282. "alurean": {
  2283. name: "Alurean",
  2284. parents: ["saurian", "aquatic", "alien"]
  2285. },
  2286. "aquatic": {
  2287. name: "Aquatic",
  2288. parents: []
  2289. },
  2290. "wyvern": {
  2291. name: "Wyvern",
  2292. parents: ["dragon"]
  2293. },
  2294. "catfish": {
  2295. name: "Catfish",
  2296. parents: ["fish"]
  2297. },
  2298. "vesempress": {
  2299. name: "Vesempress",
  2300. parents: ["vespiquen"]
  2301. },
  2302. "vespiquen": {
  2303. name: "Vespiquen",
  2304. parents: ["pokemon", "bee"]
  2305. },
  2306. "gaelterranian": {
  2307. name: "Gaelterranian",
  2308. parents: ["alien"]
  2309. },
  2310. "pistrogre": {
  2311. name: "Pistrogre",
  2312. parents: ["alien", "deity", "insect", "reptile"]
  2313. },
  2314. "komodo-dragon": {
  2315. name: "Komodo Dragon",
  2316. parents: ["lizard"]
  2317. },
  2318. "shiny": {
  2319. name: "Shiny",
  2320. parents: ["pokemon"]
  2321. },
  2322. "latex": {
  2323. name: "Latex",
  2324. parents: []
  2325. },
  2326. "praying-mantis": {
  2327. name: "Praying Mantis",
  2328. parents: ["insect"]
  2329. },
  2330. "espeon": {
  2331. name: "Espeon",
  2332. parents: ["eeveelution"]
  2333. },
  2334. "skullwolf": {
  2335. name: "Skullwolf",
  2336. parents: ["wolf", "skullmonster"]
  2337. },
  2338. "skulldragon": {
  2339. name: "Skulldragon",
  2340. parents: ["dragon", "skullmonster"]
  2341. },
  2342. "skullmonster": {
  2343. name: "Skullmonster",
  2344. parents: ["monster"]
  2345. },
  2346. "ferrin": {
  2347. name: "Ferrin",
  2348. parents: ["dragon"]
  2349. },
  2350. "rusty-spotted-cat": {
  2351. name: "Rusty-Spotted Cat",
  2352. parents: ["cat"]
  2353. },
  2354. "elf": {
  2355. name: "Elf",
  2356. parents: ["humanoid"]
  2357. },
  2358. "humanoid": {
  2359. name: "Humanoid",
  2360. parents: []
  2361. },
  2362. "allusus": {
  2363. name: "Allusus",
  2364. parents: ["humanoid"]
  2365. },
  2366. "saltwater-crocodile": {
  2367. name: "Saltwater Crocodile",
  2368. parents: ["crocodile"]
  2369. },
  2370. "eastern-grey-kangaroo": {
  2371. name: "Eastern Grey Kangaroo",
  2372. parents: ["kangaroo"]
  2373. },
  2374. "latenivenatrix": {
  2375. name: "Latenivenatrix",
  2376. parents: ["troodontidae"]
  2377. },
  2378. "troodontidae": {
  2379. name: "Troodontidae",
  2380. parents: ["theropod", "avian"]
  2381. },
  2382. "duck": {
  2383. name: "Duck",
  2384. parents: ["waterfowl"]
  2385. },
  2386. "waterfowl": {
  2387. name: "Waterfowl",
  2388. parents: ["avian"]
  2389. },
  2390. "earless-monitor-lizard": {
  2391. name: "Earless Monitor Lizard",
  2392. parents: ["monitor-lizard"]
  2393. },
  2394. "aerosynth": {
  2395. name: "Aerosynth",
  2396. parents: ["aeromorph", "synth"]
  2397. },
  2398. "phenx": {
  2399. name: "Phenx",
  2400. parents: ["uragi"]
  2401. },
  2402. "uragi": {
  2403. name: "Uragi",
  2404. parents: ["avian", "bear"]
  2405. },
  2406. "driger": {
  2407. name: "Driger",
  2408. parents: ["dragon", "tiger"]
  2409. },
  2410. "homestuck-troll": {
  2411. name: "Troll (Homestuck)",
  2412. parents: ["humanoid"]
  2413. },
  2414. "riolu": {
  2415. name: "Riolu",
  2416. parents: ["pokemon"]
  2417. },
  2418. "king-cheetah": {
  2419. name: "King Cheetah",
  2420. parents: ["cheetah"]
  2421. },
  2422. "secretary-bird": {
  2423. name: "Secretary Bird",
  2424. parents: ["bird-of-prey"]
  2425. },
  2426. "russian-blue": {
  2427. name: "Russian Blue",
  2428. parents: ["housecat"]
  2429. },
  2430. "wholphin": {
  2431. name: "Wholphin",
  2432. parents: ["whale", "dolphin"]
  2433. },
  2434. "sea-dragon": {
  2435. name: "Sea Dragon",
  2436. parents: ["dragon", "aquatic"]
  2437. },
  2438. "brown-bear": {
  2439. name: "Brown Bear",
  2440. parents: ["bear"]
  2441. },
  2442. "vampire-bat": {
  2443. name: "Vampire Bat",
  2444. parents: ["bat"]
  2445. },
  2446. "dilophosaurus": {
  2447. name: "Dilophosaurus",
  2448. parents: ["theropod"]
  2449. },
  2450. "nagainini": {
  2451. name: "Nagainini",
  2452. parents: ["naga"]
  2453. },
  2454. "kaizleon": {
  2455. name: "Kaizleon",
  2456. parents: ["humanoid"]
  2457. },
  2458. "dragoyle": {
  2459. name: "Dragoyle",
  2460. parents: ["dragon", "gargoyle"]
  2461. },
  2462. "gargoyle": {
  2463. name: "Gargoyle",
  2464. parents: ["construct", "monster"]
  2465. },
  2466. }
  2467. //species
  2468. function getSpeciesInfo(speciesList) {
  2469. let result = new Set();
  2470. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2471. result.add(entry)
  2472. });
  2473. return Array.from(result);
  2474. };
  2475. function getSpeciesInfoHelper(species) {
  2476. if (!speciesData[species]) {
  2477. console.warn(species + " doesn't exist");
  2478. return [];
  2479. }
  2480. if (speciesData[species].parents) {
  2481. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2482. } else {
  2483. return [species];
  2484. }
  2485. }
  2486. characterMakers.push(() => makeCharacter(
  2487. {
  2488. name: "Fen",
  2489. species: ["crux"],
  2490. description: {
  2491. title: "Bio",
  2492. text: "Very furry. Sheds on everything."
  2493. },
  2494. tags: [
  2495. "anthro",
  2496. "goo"
  2497. ]
  2498. },
  2499. {
  2500. front: {
  2501. height: math.unit(12, "feet"),
  2502. weight: math.unit(2400, "lb"),
  2503. preyCapacity: math.unit(1, "people"),
  2504. name: "Front",
  2505. image: {
  2506. source: "./media/characters/fen/front.svg",
  2507. extra: 1804/1562,
  2508. bottom: 205/2009
  2509. },
  2510. extraAttributes: {
  2511. pawSize: {
  2512. name: "Paw Size",
  2513. power: 2,
  2514. type: "area",
  2515. base: math.unit(0.35, "m^2")
  2516. }
  2517. }
  2518. },
  2519. diving: {
  2520. height: math.unit(4.9, "meters"),
  2521. weight: math.unit(2400, "lb"),
  2522. name: "Diving",
  2523. image: {
  2524. source: "./media/characters/fen/diving.svg"
  2525. }
  2526. },
  2527. sleeby: {
  2528. height: math.unit(3.45, "meters"),
  2529. weight: math.unit(2400, "lb"),
  2530. name: "Sleeby",
  2531. image: {
  2532. source: "./media/characters/fen/sleeby.svg"
  2533. }
  2534. },
  2535. goo: {
  2536. height: math.unit(12, "feet"),
  2537. weight: math.unit(3600, "lb"),
  2538. volume: math.unit(1000, "liters"),
  2539. preyCapacity: math.unit(6, "people"),
  2540. name: "Goo",
  2541. image: {
  2542. source: "./media/characters/fen/goo.svg",
  2543. extra: 1307/1071,
  2544. bottom: 134/1441
  2545. }
  2546. },
  2547. horror: {
  2548. height: math.unit(13.6, "feet"),
  2549. weight: math.unit(2400, "lb"),
  2550. preyCapacity: math.unit(1, "people"),
  2551. name: "Horror",
  2552. image: {
  2553. source: "./media/characters/fen/horror.svg",
  2554. extra: 893/797,
  2555. bottom: 0/893
  2556. }
  2557. },
  2558. gooNsfw: {
  2559. height: math.unit(12, "feet"),
  2560. weight: math.unit(3750, "lb"),
  2561. volume: math.unit(1000, "liters"),
  2562. preyCapacity: math.unit(6, "people"),
  2563. name: "Goo (NSFW)",
  2564. image: {
  2565. source: "./media/characters/fen/goo-nsfw.svg",
  2566. extra: 1875/1734,
  2567. bottom: 122/1997
  2568. }
  2569. },
  2570. maw: {
  2571. height: math.unit(5.03, "feet"),
  2572. name: "Maw",
  2573. image: {
  2574. source: "./media/characters/fen/maw.svg"
  2575. }
  2576. },
  2577. gooCeiling: {
  2578. height: math.unit(6.6, "feet"),
  2579. weight: math.unit(3000, "lb"),
  2580. volume: math.unit(1000, "liters"),
  2581. preyCapacity: math.unit(6, "people"),
  2582. name: "Maw (Goo)",
  2583. image: {
  2584. source: "./media/characters/fen/goo-maw.svg"
  2585. }
  2586. },
  2587. paw: {
  2588. height: math.unit(3.77, "feet"),
  2589. name: "Paw",
  2590. image: {
  2591. source: "./media/characters/fen/paw.svg"
  2592. },
  2593. extraAttributes: {
  2594. "toeSize": {
  2595. name: "Toe Size",
  2596. power: 2,
  2597. type: "area",
  2598. base: math.unit(0.02875, "m^2")
  2599. },
  2600. "pawSize": {
  2601. name: "Paw Size",
  2602. power: 2,
  2603. type: "area",
  2604. base: math.unit(0.378, "m^2")
  2605. },
  2606. }
  2607. },
  2608. tail: {
  2609. height: math.unit(12.1, "feet"),
  2610. name: "Tail",
  2611. image: {
  2612. source: "./media/characters/fen/tail.svg"
  2613. }
  2614. },
  2615. tailFull: {
  2616. height: math.unit(12.1, "feet"),
  2617. name: "Full Tail",
  2618. image: {
  2619. source: "./media/characters/fen/tail-full.svg"
  2620. }
  2621. },
  2622. back: {
  2623. height: math.unit(12, "feet"),
  2624. weight: math.unit(2400, "lb"),
  2625. name: "Back",
  2626. image: {
  2627. source: "./media/characters/fen/back.svg",
  2628. },
  2629. info: {
  2630. description: {
  2631. mode: "append",
  2632. text: "\n\nHe is not currently looking at you."
  2633. }
  2634. }
  2635. },
  2636. full: {
  2637. height: math.unit(1.85, "meter"),
  2638. weight: math.unit(3200, "lb"),
  2639. preyCapacity: math.unit(3, "people"),
  2640. name: "Full",
  2641. image: {
  2642. source: "./media/characters/fen/full.svg",
  2643. extra: 1133/859,
  2644. bottom: 145/1278
  2645. },
  2646. info: {
  2647. description: {
  2648. mode: "append",
  2649. text: "\n\nMunch."
  2650. }
  2651. }
  2652. },
  2653. gooLounging: {
  2654. height: math.unit(4.53, "feet"),
  2655. weight: math.unit(3000, "lb"),
  2656. preyCapacity: math.unit(6, "people"),
  2657. name: "Goo (Lounging)",
  2658. image: {
  2659. source: "./media/characters/fen/goo-lounging.svg",
  2660. bottom: 116 / 613
  2661. }
  2662. },
  2663. lounging: {
  2664. height: math.unit(10.52, "feet"),
  2665. weight: math.unit(2400, "lb"),
  2666. name: "Lounging",
  2667. image: {
  2668. source: "./media/characters/fen/lounging.svg"
  2669. }
  2670. },
  2671. },
  2672. [
  2673. {
  2674. name: "Small",
  2675. height: math.unit(2.2428, "meter")
  2676. },
  2677. {
  2678. name: "Normal",
  2679. height: math.unit(12, "feet"),
  2680. default: true,
  2681. },
  2682. {
  2683. name: "Big",
  2684. height: math.unit(20, "feet")
  2685. },
  2686. {
  2687. name: "Minimacro",
  2688. height: math.unit(40, "feet"),
  2689. info: {
  2690. description: {
  2691. mode: "append",
  2692. text: "\n\nTOO DAMN BIG"
  2693. }
  2694. }
  2695. },
  2696. {
  2697. name: "Macro",
  2698. height: math.unit(100, "feet"),
  2699. info: {
  2700. description: {
  2701. mode: "append",
  2702. text: "\n\nTOO DAMN BIG"
  2703. }
  2704. }
  2705. },
  2706. {
  2707. name: "Megamacro",
  2708. height: math.unit(2, "miles")
  2709. },
  2710. {
  2711. name: "Gigamacro",
  2712. height: math.unit(10, "earths")
  2713. },
  2714. ]
  2715. ))
  2716. characterMakers.push(() => makeCharacter(
  2717. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2718. {
  2719. front: {
  2720. height: math.unit(183, "cm"),
  2721. weight: math.unit(80, "kg"),
  2722. name: "Front",
  2723. image: {
  2724. source: "./media/characters/sofia-fluttertail/front.svg",
  2725. bottom: 0.01,
  2726. extra: 2154 / 2081
  2727. }
  2728. },
  2729. frontAlt: {
  2730. height: math.unit(183, "cm"),
  2731. weight: math.unit(80, "kg"),
  2732. name: "Front (alt)",
  2733. image: {
  2734. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2735. }
  2736. },
  2737. back: {
  2738. height: math.unit(183, "cm"),
  2739. weight: math.unit(80, "kg"),
  2740. name: "Back",
  2741. image: {
  2742. source: "./media/characters/sofia-fluttertail/back.svg"
  2743. }
  2744. },
  2745. kneeling: {
  2746. height: math.unit(125, "cm"),
  2747. weight: math.unit(80, "kg"),
  2748. name: "Kneeling",
  2749. image: {
  2750. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2751. extra: 1033 / 977,
  2752. bottom: 23.7 / 1057
  2753. }
  2754. },
  2755. maw: {
  2756. height: math.unit(183 / 5, "cm"),
  2757. name: "Maw",
  2758. image: {
  2759. source: "./media/characters/sofia-fluttertail/maw.svg"
  2760. }
  2761. },
  2762. mawcloseup: {
  2763. height: math.unit(183 / 5 * 0.41, "cm"),
  2764. name: "Maw (Closeup)",
  2765. image: {
  2766. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2767. }
  2768. },
  2769. paws: {
  2770. height: math.unit(1.17, "feet"),
  2771. name: "Paws",
  2772. image: {
  2773. source: "./media/characters/sofia-fluttertail/paws.svg",
  2774. extra: 851 / 851,
  2775. bottom: 17 / 868
  2776. }
  2777. },
  2778. },
  2779. [
  2780. {
  2781. name: "Normal",
  2782. height: math.unit(1.83, "meter")
  2783. },
  2784. {
  2785. name: "Size Thief",
  2786. height: math.unit(18, "feet")
  2787. },
  2788. {
  2789. name: "50 Foot Collie",
  2790. height: math.unit(50, "feet")
  2791. },
  2792. {
  2793. name: "Macro",
  2794. height: math.unit(96, "feet"),
  2795. default: true
  2796. },
  2797. {
  2798. name: "Megamerger",
  2799. height: math.unit(650, "feet")
  2800. },
  2801. ]
  2802. ))
  2803. characterMakers.push(() => makeCharacter(
  2804. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2805. {
  2806. front: {
  2807. height: math.unit(7, "feet"),
  2808. weight: math.unit(100, "kg"),
  2809. name: "Front",
  2810. image: {
  2811. source: "./media/characters/march/front.svg",
  2812. extra: 1992/1851,
  2813. bottom: 39/2031
  2814. }
  2815. },
  2816. foot: {
  2817. height: math.unit(0.9, "feet"),
  2818. name: "Foot",
  2819. image: {
  2820. source: "./media/characters/march/foot.svg"
  2821. }
  2822. },
  2823. },
  2824. [
  2825. {
  2826. name: "Normal",
  2827. height: math.unit(7.9, "feet")
  2828. },
  2829. {
  2830. name: "Macro",
  2831. height: math.unit(220, "meters")
  2832. },
  2833. {
  2834. name: "Megamacro",
  2835. height: math.unit(2.98, "km"),
  2836. default: true
  2837. },
  2838. {
  2839. name: "Gigamacro",
  2840. height: math.unit(15963, "km")
  2841. },
  2842. {
  2843. name: "Teramacro",
  2844. height: math.unit(2980000000, "km")
  2845. },
  2846. {
  2847. name: "Examacro",
  2848. height: math.unit(250, "parsecs")
  2849. },
  2850. ]
  2851. ))
  2852. characterMakers.push(() => makeCharacter(
  2853. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2854. {
  2855. front: {
  2856. height: math.unit(6, "feet"),
  2857. weight: math.unit(60, "kg"),
  2858. name: "Front",
  2859. image: {
  2860. source: "./media/characters/noir/front.svg",
  2861. extra: 1793/1668,
  2862. bottom: 74/1867
  2863. }
  2864. },
  2865. },
  2866. [
  2867. {
  2868. name: "Normal",
  2869. height: math.unit(6.6, "feet")
  2870. },
  2871. {
  2872. name: "Macro",
  2873. height: math.unit(500, "feet")
  2874. },
  2875. {
  2876. name: "Megamacro",
  2877. height: math.unit(2.5, "km"),
  2878. default: true
  2879. },
  2880. {
  2881. name: "Gigamacro",
  2882. height: math.unit(22500, "km")
  2883. },
  2884. {
  2885. name: "Teramacro",
  2886. height: math.unit(2500000000, "km")
  2887. },
  2888. {
  2889. name: "Examacro",
  2890. height: math.unit(200, "parsecs")
  2891. },
  2892. ]
  2893. ))
  2894. characterMakers.push(() => makeCharacter(
  2895. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2896. {
  2897. front: {
  2898. height: math.unit(7, "feet"),
  2899. weight: math.unit(100, "kg"),
  2900. name: "Front",
  2901. image: {
  2902. source: "./media/characters/okuri/front.svg",
  2903. extra: 739/665,
  2904. bottom: 39/778
  2905. }
  2906. },
  2907. back: {
  2908. height: math.unit(7, "feet"),
  2909. weight: math.unit(100, "kg"),
  2910. name: "Back",
  2911. image: {
  2912. source: "./media/characters/okuri/back.svg",
  2913. extra: 734/653,
  2914. bottom: 13/747
  2915. }
  2916. },
  2917. sitting: {
  2918. height: math.unit(2.95, "feet"),
  2919. weight: math.unit(100, "kg"),
  2920. name: "Sitting",
  2921. image: {
  2922. source: "./media/characters/okuri/sitting.svg",
  2923. extra: 370/318,
  2924. bottom: 99/469
  2925. }
  2926. },
  2927. },
  2928. [
  2929. {
  2930. name: "Smallest",
  2931. height: math.unit(5 + 2/12, "feet")
  2932. },
  2933. {
  2934. name: "Smaller",
  2935. height: math.unit(300, "feet")
  2936. },
  2937. {
  2938. name: "Small",
  2939. height: math.unit(1000, "feet")
  2940. },
  2941. {
  2942. name: "Macro",
  2943. height: math.unit(1, "mile")
  2944. },
  2945. {
  2946. name: "Mega Macro (Small)",
  2947. height: math.unit(20, "km")
  2948. },
  2949. {
  2950. name: "Mega Macro (Large)",
  2951. height: math.unit(600, "km")
  2952. },
  2953. {
  2954. name: "Giga Macro",
  2955. height: math.unit(10000, "km")
  2956. },
  2957. {
  2958. name: "Normal",
  2959. height: math.unit(577560, "km"),
  2960. default: true
  2961. },
  2962. {
  2963. name: "Large",
  2964. height: math.unit(4, "galaxies")
  2965. },
  2966. {
  2967. name: "Largest",
  2968. height: math.unit(15, "multiverses")
  2969. },
  2970. ]
  2971. ))
  2972. characterMakers.push(() => makeCharacter(
  2973. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2974. {
  2975. front: {
  2976. height: math.unit(7, "feet"),
  2977. weight: math.unit(100, "kg"),
  2978. name: "Front",
  2979. image: {
  2980. source: "./media/characters/manny/front.svg",
  2981. extra: 1,
  2982. bottom: 0.06
  2983. }
  2984. },
  2985. back: {
  2986. height: math.unit(7, "feet"),
  2987. weight: math.unit(100, "kg"),
  2988. name: "Back",
  2989. image: {
  2990. source: "./media/characters/manny/back.svg",
  2991. extra: 1,
  2992. bottom: 0.014
  2993. }
  2994. },
  2995. },
  2996. [
  2997. {
  2998. name: "Normal",
  2999. height: math.unit(7, "feet"),
  3000. },
  3001. {
  3002. name: "Macro",
  3003. height: math.unit(78, "feet"),
  3004. default: true
  3005. },
  3006. {
  3007. name: "Macro+",
  3008. height: math.unit(300, "meters")
  3009. },
  3010. {
  3011. name: "Macro++",
  3012. height: math.unit(2400, "meters")
  3013. },
  3014. {
  3015. name: "Megamacro",
  3016. height: math.unit(5167, "meters")
  3017. },
  3018. {
  3019. name: "Gigamacro",
  3020. height: math.unit(41769, "miles")
  3021. },
  3022. ]
  3023. ))
  3024. characterMakers.push(() => makeCharacter(
  3025. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  3026. {
  3027. front: {
  3028. height: math.unit(7, "feet"),
  3029. weight: math.unit(100, "kg"),
  3030. name: "Front",
  3031. image: {
  3032. source: "./media/characters/adake/front-1.svg"
  3033. }
  3034. },
  3035. frontAlt: {
  3036. height: math.unit(7, "feet"),
  3037. weight: math.unit(100, "kg"),
  3038. name: "Front (Alt)",
  3039. image: {
  3040. source: "./media/characters/adake/front-2.svg",
  3041. extra: 1,
  3042. bottom: 0.01
  3043. }
  3044. },
  3045. back: {
  3046. height: math.unit(7, "feet"),
  3047. weight: math.unit(100, "kg"),
  3048. name: "Back",
  3049. image: {
  3050. source: "./media/characters/adake/back.svg",
  3051. }
  3052. },
  3053. kneel: {
  3054. height: math.unit(5.385, "feet"),
  3055. weight: math.unit(100, "kg"),
  3056. name: "Kneeling",
  3057. image: {
  3058. source: "./media/characters/adake/kneel.svg",
  3059. bottom: 0.052
  3060. }
  3061. },
  3062. },
  3063. [
  3064. {
  3065. name: "Normal",
  3066. height: math.unit(7, "feet"),
  3067. },
  3068. {
  3069. name: "Macro",
  3070. height: math.unit(78, "feet"),
  3071. default: true
  3072. },
  3073. {
  3074. name: "Macro+",
  3075. height: math.unit(300, "meters")
  3076. },
  3077. {
  3078. name: "Macro++",
  3079. height: math.unit(2400, "meters")
  3080. },
  3081. {
  3082. name: "Megamacro",
  3083. height: math.unit(5167, "meters")
  3084. },
  3085. {
  3086. name: "Gigamacro",
  3087. height: math.unit(41769, "miles")
  3088. },
  3089. ]
  3090. ))
  3091. characterMakers.push(() => makeCharacter(
  3092. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  3093. {
  3094. front: {
  3095. height: math.unit(1.65, "meters"),
  3096. weight: math.unit(50, "kg"),
  3097. name: "Front",
  3098. image: {
  3099. source: "./media/characters/elijah/front.svg",
  3100. extra: 858 / 830,
  3101. bottom: 95.5 / 953.8559
  3102. }
  3103. },
  3104. back: {
  3105. height: math.unit(1.65, "meters"),
  3106. weight: math.unit(50, "kg"),
  3107. name: "Back",
  3108. image: {
  3109. source: "./media/characters/elijah/back.svg",
  3110. extra: 895 / 850,
  3111. bottom: 5.3 / 897.956
  3112. }
  3113. },
  3114. frontNsfw: {
  3115. height: math.unit(1.65, "meters"),
  3116. weight: math.unit(50, "kg"),
  3117. name: "Front (NSFW)",
  3118. image: {
  3119. source: "./media/characters/elijah/front-nsfw.svg",
  3120. extra: 858 / 830,
  3121. bottom: 95.5 / 953.8559
  3122. }
  3123. },
  3124. backNsfw: {
  3125. height: math.unit(1.65, "meters"),
  3126. weight: math.unit(50, "kg"),
  3127. name: "Back (NSFW)",
  3128. image: {
  3129. source: "./media/characters/elijah/back-nsfw.svg",
  3130. extra: 895 / 850,
  3131. bottom: 5.3 / 897.956
  3132. }
  3133. },
  3134. dick: {
  3135. height: math.unit(1, "feet"),
  3136. name: "Dick",
  3137. image: {
  3138. source: "./media/characters/elijah/dick.svg"
  3139. }
  3140. },
  3141. beakOpen: {
  3142. height: math.unit(1.25, "feet"),
  3143. name: "Beak (Open)",
  3144. image: {
  3145. source: "./media/characters/elijah/beak-open.svg"
  3146. }
  3147. },
  3148. beakShut: {
  3149. height: math.unit(1.25, "feet"),
  3150. name: "Beak (Shut)",
  3151. image: {
  3152. source: "./media/characters/elijah/beak-shut.svg"
  3153. }
  3154. },
  3155. footFlexing: {
  3156. height: math.unit(1.61, "feet"),
  3157. name: "Foot (Flexing)",
  3158. image: {
  3159. source: "./media/characters/elijah/foot-flexing.svg"
  3160. }
  3161. },
  3162. footStepping: {
  3163. height: math.unit(1.44, "feet"),
  3164. name: "Foot (Stepping)",
  3165. image: {
  3166. source: "./media/characters/elijah/foot-stepping.svg"
  3167. }
  3168. },
  3169. plantigradeLeg: {
  3170. height: math.unit(2.34, "feet"),
  3171. name: "Plantigrade Leg",
  3172. image: {
  3173. source: "./media/characters/elijah/plantigrade-leg.svg"
  3174. }
  3175. },
  3176. plantigradeFootLeft: {
  3177. height: math.unit(0.9, "feet"),
  3178. name: "Plantigrade Foot (Left)",
  3179. image: {
  3180. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  3181. }
  3182. },
  3183. plantigradeFootRight: {
  3184. height: math.unit(0.9, "feet"),
  3185. name: "Plantigrade Foot (Right)",
  3186. image: {
  3187. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  3188. }
  3189. },
  3190. },
  3191. [
  3192. {
  3193. name: "Normal",
  3194. height: math.unit(1.65, "meters")
  3195. },
  3196. {
  3197. name: "Macro",
  3198. height: math.unit(55, "meters"),
  3199. default: true
  3200. },
  3201. {
  3202. name: "Macro+",
  3203. height: math.unit(105, "meters")
  3204. },
  3205. ]
  3206. ))
  3207. characterMakers.push(() => makeCharacter(
  3208. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  3209. {
  3210. front: {
  3211. height: math.unit(7 + 2/12, "feet"),
  3212. weight: math.unit(320, "kg"),
  3213. preyCapacity: math.unit(0.276549935, "people"),
  3214. name: "Front",
  3215. image: {
  3216. source: "./media/characters/rai/front.svg",
  3217. extra: 1802/1696,
  3218. bottom: 68/1870
  3219. },
  3220. form: "anthro",
  3221. default: true
  3222. },
  3223. frontDressed: {
  3224. height: math.unit(7 + 2/12, "feet"),
  3225. weight: math.unit(320, "kg"),
  3226. preyCapacity: math.unit(0.276549935, "people"),
  3227. name: "Front (Dressed)",
  3228. image: {
  3229. source: "./media/characters/rai/front-dressed.svg",
  3230. extra: 1802/1696,
  3231. bottom: 68/1870
  3232. },
  3233. form: "anthro"
  3234. },
  3235. side: {
  3236. height: math.unit(7 + 2/12, "feet"),
  3237. weight: math.unit(320, "kg"),
  3238. preyCapacity: math.unit(0.276549935, "people"),
  3239. name: "Side",
  3240. image: {
  3241. source: "./media/characters/rai/side.svg",
  3242. extra: 1789/1710,
  3243. bottom: 115/1904
  3244. },
  3245. form: "anthro"
  3246. },
  3247. back: {
  3248. height: math.unit(7 + 2/12, "feet"),
  3249. weight: math.unit(320, "kg"),
  3250. preyCapacity: math.unit(0.276549935, "people"),
  3251. name: "Back",
  3252. image: {
  3253. source: "./media/characters/rai/back.svg",
  3254. extra: 1770/1707,
  3255. bottom: 28/1798
  3256. },
  3257. form: "anthro"
  3258. },
  3259. feral: {
  3260. height: math.unit(9.5, "feet"),
  3261. weight: math.unit(640, "kg"),
  3262. preyCapacity: math.unit(4, "people"),
  3263. name: "Feral",
  3264. image: {
  3265. source: "./media/characters/rai/feral.svg",
  3266. extra: 945/553,
  3267. bottom: 176/1121
  3268. },
  3269. form: "feral",
  3270. default: true
  3271. },
  3272. dragon: {
  3273. height: math.unit(23, "feet"),
  3274. weight: math.unit(50000, "lb"),
  3275. name: "Dragon",
  3276. image: {
  3277. source: "./media/characters/rai/dragon.svg",
  3278. extra: 2498 / 2030,
  3279. bottom: 85.2 / 2584
  3280. },
  3281. form: "dragon",
  3282. default: true
  3283. },
  3284. maw: {
  3285. height: math.unit(1.69, "feet"),
  3286. name: "Maw",
  3287. image: {
  3288. source: "./media/characters/rai/maw.svg"
  3289. },
  3290. form: "anthro"
  3291. },
  3292. },
  3293. [
  3294. {
  3295. name: "Normal",
  3296. height: math.unit(7 + 2/12, "feet"),
  3297. form: "anthro"
  3298. },
  3299. {
  3300. name: "Big",
  3301. height: math.unit(11, "feet"),
  3302. form: "anthro"
  3303. },
  3304. {
  3305. name: "Minimacro",
  3306. height: math.unit(77, "feet"),
  3307. form: "anthro"
  3308. },
  3309. {
  3310. name: "Macro",
  3311. height: math.unit(302, "feet"),
  3312. default: true,
  3313. form: "anthro"
  3314. },
  3315. {
  3316. name: "Normal",
  3317. height: math.unit(9.5, "feet"),
  3318. form: "feral",
  3319. default: true
  3320. },
  3321. {
  3322. name: "Normal",
  3323. height: math.unit(23, "feet"),
  3324. form: "dragon",
  3325. default: true
  3326. }
  3327. ],
  3328. {
  3329. "anthro": {
  3330. name: "Anthro",
  3331. default: true
  3332. },
  3333. "feral": {
  3334. name: "Feral",
  3335. },
  3336. "dragon": {
  3337. name: "Dragon",
  3338. },
  3339. }
  3340. ))
  3341. characterMakers.push(() => makeCharacter(
  3342. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  3343. {
  3344. frontDressed: {
  3345. height: math.unit(216, "feet"),
  3346. weight: math.unit(7000000, "lb"),
  3347. preyCapacity: math.unit(1321, "people"),
  3348. name: "Front (Dressed)",
  3349. image: {
  3350. source: "./media/characters/jazzy/front-dressed.svg",
  3351. extra: 2738 / 2651,
  3352. bottom: 41.8 / 2786
  3353. }
  3354. },
  3355. backDressed: {
  3356. height: math.unit(216, "feet"),
  3357. weight: math.unit(7000000, "lb"),
  3358. preyCapacity: math.unit(1321, "people"),
  3359. name: "Back (Dressed)",
  3360. image: {
  3361. source: "./media/characters/jazzy/back-dressed.svg",
  3362. extra: 2775 / 2673,
  3363. bottom: 36.8 / 2817
  3364. }
  3365. },
  3366. front: {
  3367. height: math.unit(216, "feet"),
  3368. weight: math.unit(7000000, "lb"),
  3369. preyCapacity: math.unit(1321, "people"),
  3370. name: "Front",
  3371. image: {
  3372. source: "./media/characters/jazzy/front.svg",
  3373. extra: 2738 / 2651,
  3374. bottom: 41.8 / 2786
  3375. }
  3376. },
  3377. back: {
  3378. height: math.unit(216, "feet"),
  3379. weight: math.unit(7000000, "lb"),
  3380. preyCapacity: math.unit(1321, "people"),
  3381. name: "Back",
  3382. image: {
  3383. source: "./media/characters/jazzy/back.svg",
  3384. extra: 2775 / 2673,
  3385. bottom: 36.8 / 2817
  3386. }
  3387. },
  3388. maw: {
  3389. height: math.unit(20, "feet"),
  3390. name: "Maw",
  3391. image: {
  3392. source: "./media/characters/jazzy/maw.svg"
  3393. }
  3394. },
  3395. paws: {
  3396. height: math.unit(27.5, "feet"),
  3397. name: "Paws",
  3398. image: {
  3399. source: "./media/characters/jazzy/paws.svg"
  3400. }
  3401. },
  3402. eye: {
  3403. height: math.unit(4.4, "feet"),
  3404. name: "Eye",
  3405. image: {
  3406. source: "./media/characters/jazzy/eye.svg"
  3407. }
  3408. },
  3409. droneOffense: {
  3410. height: math.unit(9.5, "inches"),
  3411. name: "Drone (Offense)",
  3412. image: {
  3413. source: "./media/characters/jazzy/drone-offense.svg"
  3414. }
  3415. },
  3416. droneRecon: {
  3417. height: math.unit(9.5, "inches"),
  3418. name: "Drone (Recon)",
  3419. image: {
  3420. source: "./media/characters/jazzy/drone-recon.svg"
  3421. }
  3422. },
  3423. droneDefense: {
  3424. height: math.unit(9.5, "inches"),
  3425. name: "Drone (Defense)",
  3426. image: {
  3427. source: "./media/characters/jazzy/drone-defense.svg"
  3428. }
  3429. },
  3430. },
  3431. [
  3432. {
  3433. name: "Macro",
  3434. height: math.unit(216, "feet"),
  3435. default: true
  3436. },
  3437. ]
  3438. ))
  3439. characterMakers.push(() => makeCharacter(
  3440. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3441. {
  3442. front: {
  3443. height: math.unit(9 + 6/12, "feet"),
  3444. weight: math.unit(700, "lb"),
  3445. name: "Front",
  3446. image: {
  3447. source: "./media/characters/flamm/front.svg",
  3448. extra: 1736/1596,
  3449. bottom: 93/1829
  3450. }
  3451. },
  3452. buff: {
  3453. height: math.unit(9 + 6/12, "feet"),
  3454. weight: math.unit(950, "lb"),
  3455. name: "Buff",
  3456. image: {
  3457. source: "./media/characters/flamm/buff.svg",
  3458. extra: 3018/2874,
  3459. bottom: 221/3239
  3460. }
  3461. },
  3462. },
  3463. [
  3464. {
  3465. name: "Normal",
  3466. height: math.unit(9.5, "feet")
  3467. },
  3468. {
  3469. name: "Macro",
  3470. height: math.unit(200, "feet"),
  3471. default: true
  3472. },
  3473. ]
  3474. ))
  3475. characterMakers.push(() => makeCharacter(
  3476. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3477. {
  3478. front: {
  3479. height: math.unit(5 + 3/12, "feet"),
  3480. weight: math.unit(60, "kg"),
  3481. name: "Front",
  3482. image: {
  3483. source: "./media/characters/zephiro/front.svg",
  3484. extra: 1873/1761,
  3485. bottom: 147/2020
  3486. }
  3487. },
  3488. side: {
  3489. height: math.unit(5 + 3/12, "feet"),
  3490. weight: math.unit(60, "kg"),
  3491. name: "Side",
  3492. image: {
  3493. source: "./media/characters/zephiro/side.svg",
  3494. extra: 1929/1827,
  3495. bottom: 65/1994
  3496. }
  3497. },
  3498. back: {
  3499. height: math.unit(5 + 3/12, "feet"),
  3500. weight: math.unit(60, "kg"),
  3501. name: "Back",
  3502. image: {
  3503. source: "./media/characters/zephiro/back.svg",
  3504. extra: 1926/1816,
  3505. bottom: 41/1967
  3506. }
  3507. },
  3508. hand: {
  3509. height: math.unit(0.68, "feet"),
  3510. name: "Hand",
  3511. image: {
  3512. source: "./media/characters/zephiro/hand.svg"
  3513. }
  3514. },
  3515. paw: {
  3516. height: math.unit(1, "feet"),
  3517. name: "Paw",
  3518. image: {
  3519. source: "./media/characters/zephiro/paw.svg"
  3520. }
  3521. },
  3522. beans: {
  3523. height: math.unit(0.93, "feet"),
  3524. name: "Beans",
  3525. image: {
  3526. source: "./media/characters/zephiro/beans.svg"
  3527. }
  3528. },
  3529. },
  3530. [
  3531. {
  3532. name: "Micro",
  3533. height: math.unit(3, "inches")
  3534. },
  3535. {
  3536. name: "Normal",
  3537. height: math.unit(5 + 3 / 12, "feet"),
  3538. default: true
  3539. },
  3540. {
  3541. name: "Macro",
  3542. height: math.unit(118, "feet")
  3543. },
  3544. ]
  3545. ))
  3546. characterMakers.push(() => makeCharacter(
  3547. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3548. {
  3549. front: {
  3550. height: math.unit(5, "feet"),
  3551. weight: math.unit(90, "kg"),
  3552. preyCapacity: math.unit(14, "people"),
  3553. name: "Front",
  3554. image: {
  3555. source: "./media/characters/fory/front.svg",
  3556. extra: 2862 / 2674,
  3557. bottom: 180 / 3043.8
  3558. },
  3559. form: "weaselbun",
  3560. default: true,
  3561. extraAttributes: {
  3562. "pawSize": {
  3563. name: "Paw Size",
  3564. power: 2,
  3565. type: "area",
  3566. base: math.unit(0.1596, "m^2")
  3567. },
  3568. "pawLength": {
  3569. name: "Paw Length",
  3570. power: 1,
  3571. type: "length",
  3572. base: math.unit(0.7, "m")
  3573. }
  3574. }
  3575. },
  3576. back: {
  3577. height: math.unit(5, "feet"),
  3578. weight: math.unit(90, "kg"),
  3579. preyCapacity: math.unit(14, "people"),
  3580. name: "Back",
  3581. image: {
  3582. source: "./media/characters/fory/back.svg",
  3583. extra: 1790/1672,
  3584. bottom: 84/1874
  3585. },
  3586. form: "weaselbun",
  3587. extraAttributes: {
  3588. "pawSize": {
  3589. name: "Paw Size",
  3590. power: 2,
  3591. type: "area",
  3592. base: math.unit(0.1596, "m^2")
  3593. },
  3594. "pawLength": {
  3595. name: "Paw Length",
  3596. power: 1,
  3597. type: "length",
  3598. base: math.unit(0.7, "m")
  3599. }
  3600. }
  3601. },
  3602. paw: {
  3603. height: math.unit(2.14, "feet"),
  3604. name: "Paw",
  3605. image: {
  3606. source: "./media/characters/fory/paw.svg"
  3607. },
  3608. form: "weaselbun",
  3609. extraAttributes: {
  3610. "pawSize": {
  3611. name: "Paw Size",
  3612. power: 2,
  3613. type: "area",
  3614. base: math.unit(0.1596, "m^2")
  3615. },
  3616. "pawLength": {
  3617. name: "Paw Length",
  3618. power: 1,
  3619. type: "length",
  3620. base: math.unit(0.48, "m")
  3621. }
  3622. }
  3623. },
  3624. bunBack: {
  3625. height: math.unit(3, "feet"),
  3626. weight: math.unit(20, "kg"),
  3627. preyCapacity: math.unit(3, "people"),
  3628. name: "Back",
  3629. image: {
  3630. source: "./media/characters/fory/bun-back.svg",
  3631. extra: 1749/1564,
  3632. bottom: 246/1995
  3633. },
  3634. form: "bun",
  3635. default: true,
  3636. extraAttributes: {
  3637. "pawSize": {
  3638. name: "Paw Size",
  3639. power: 2,
  3640. type: "area",
  3641. base: math.unit(0.072, "m^2")
  3642. },
  3643. "pawLength": {
  3644. name: "Paw Length",
  3645. power: 1,
  3646. type: "length",
  3647. base: math.unit(0.45, "m")
  3648. }
  3649. }
  3650. },
  3651. },
  3652. [
  3653. {
  3654. name: "Normal",
  3655. height: math.unit(5, "feet"),
  3656. form: "weaselbun"
  3657. },
  3658. {
  3659. name: "Macro",
  3660. height: math.unit(50, "feet"),
  3661. default: true,
  3662. form: "weaselbun"
  3663. },
  3664. {
  3665. name: "Megamacro",
  3666. height: math.unit(10, "miles"),
  3667. form: "weaselbun"
  3668. },
  3669. {
  3670. name: "Gigamacro",
  3671. height: math.unit(5, "earths"),
  3672. form: "weaselbun"
  3673. },
  3674. {
  3675. name: "Normal",
  3676. height: math.unit(3, "feet"),
  3677. default: true,
  3678. form: "bun"
  3679. },
  3680. {
  3681. name: "Fun-Size",
  3682. height: math.unit(12, "feet"),
  3683. form: "bun"
  3684. },
  3685. {
  3686. name: "Macro",
  3687. height: math.unit(100, "feet"),
  3688. form: "bun"
  3689. },
  3690. {
  3691. name: "Planetary",
  3692. height: math.unit(3, "earths"),
  3693. form: "bun"
  3694. },
  3695. ],
  3696. {
  3697. "weaselbun": {
  3698. name: "Weaselbun",
  3699. default: true
  3700. },
  3701. "bun": {
  3702. name: "Bun",
  3703. },
  3704. }
  3705. ))
  3706. characterMakers.push(() => makeCharacter(
  3707. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3708. {
  3709. front: {
  3710. height: math.unit(7, "feet"),
  3711. weight: math.unit(90, "kg"),
  3712. name: "Front",
  3713. image: {
  3714. source: "./media/characters/kurrikage/front.svg",
  3715. extra: 1845/1733,
  3716. bottom: 119/1964
  3717. }
  3718. },
  3719. back: {
  3720. height: math.unit(7, "feet"),
  3721. weight: math.unit(90, "kg"),
  3722. name: "Back",
  3723. image: {
  3724. source: "./media/characters/kurrikage/back.svg",
  3725. extra: 1790/1677,
  3726. bottom: 61/1851
  3727. }
  3728. },
  3729. dressed: {
  3730. height: math.unit(7, "feet"),
  3731. weight: math.unit(90, "kg"),
  3732. name: "Dressed",
  3733. image: {
  3734. source: "./media/characters/kurrikage/dressed.svg",
  3735. extra: 1845/1733,
  3736. bottom: 119/1964
  3737. }
  3738. },
  3739. foot: {
  3740. height: math.unit(1.5, "feet"),
  3741. name: "Foot",
  3742. image: {
  3743. source: "./media/characters/kurrikage/foot.svg"
  3744. }
  3745. },
  3746. staff: {
  3747. height: math.unit(6.7, "feet"),
  3748. name: "Staff",
  3749. image: {
  3750. source: "./media/characters/kurrikage/staff.svg"
  3751. }
  3752. },
  3753. peek: {
  3754. height: math.unit(1.05, "feet"),
  3755. name: "Peeking",
  3756. image: {
  3757. source: "./media/characters/kurrikage/peek.svg",
  3758. bottom: 0.08
  3759. }
  3760. },
  3761. },
  3762. [
  3763. {
  3764. name: "Normal",
  3765. height: math.unit(12, "feet"),
  3766. default: true
  3767. },
  3768. {
  3769. name: "Big",
  3770. height: math.unit(20, "feet")
  3771. },
  3772. {
  3773. name: "Macro",
  3774. height: math.unit(500, "feet")
  3775. },
  3776. {
  3777. name: "Megamacro",
  3778. height: math.unit(20, "miles")
  3779. },
  3780. ]
  3781. ))
  3782. characterMakers.push(() => makeCharacter(
  3783. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3784. {
  3785. front: {
  3786. height: math.unit(6, "feet"),
  3787. weight: math.unit(75, "kg"),
  3788. name: "Front",
  3789. image: {
  3790. source: "./media/characters/shingo/front.svg",
  3791. extra: 1900/1825,
  3792. bottom: 82/1982
  3793. }
  3794. },
  3795. side: {
  3796. height: math.unit(6, "feet"),
  3797. weight: math.unit(75, "kg"),
  3798. name: "Side",
  3799. image: {
  3800. source: "./media/characters/shingo/side.svg",
  3801. extra: 1930/1865,
  3802. bottom: 16/1946
  3803. }
  3804. },
  3805. back: {
  3806. height: math.unit(6, "feet"),
  3807. weight: math.unit(75, "kg"),
  3808. name: "Back",
  3809. image: {
  3810. source: "./media/characters/shingo/back.svg",
  3811. extra: 1922/1852,
  3812. bottom: 16/1938
  3813. }
  3814. },
  3815. frontDressed: {
  3816. height: math.unit(6, "feet"),
  3817. weight: math.unit(150, "lb"),
  3818. name: "Front (Dressed)",
  3819. image: {
  3820. source: "./media/characters/shingo/front-dressed.svg",
  3821. extra: 1900/1825,
  3822. bottom: 82/1982
  3823. }
  3824. },
  3825. paw: {
  3826. height: math.unit(1.29, "feet"),
  3827. name: "Paw",
  3828. image: {
  3829. source: "./media/characters/shingo/paw.svg"
  3830. }
  3831. },
  3832. hand: {
  3833. height: math.unit(1.07, "feet"),
  3834. name: "Hand",
  3835. image: {
  3836. source: "./media/characters/shingo/hand.svg"
  3837. }
  3838. },
  3839. frontAlt: {
  3840. height: math.unit(6, "feet"),
  3841. weight: math.unit(75, "kg"),
  3842. name: "Front (Alt)",
  3843. image: {
  3844. source: "./media/characters/shingo/front-alt.svg",
  3845. extra: 3511 / 3338,
  3846. bottom: 0.005
  3847. }
  3848. },
  3849. frontAlt2: {
  3850. height: math.unit(6, "feet"),
  3851. weight: math.unit(75, "kg"),
  3852. name: "Front (Alt 2)",
  3853. image: {
  3854. source: "./media/characters/shingo/front-alt-2.svg",
  3855. extra: 706/681,
  3856. bottom: 11/717
  3857. }
  3858. },
  3859. pawAlt: {
  3860. height: math.unit(1, "feet"),
  3861. name: "Paw (Alt)",
  3862. image: {
  3863. source: "./media/characters/shingo/paw-alt.svg"
  3864. }
  3865. },
  3866. },
  3867. [
  3868. {
  3869. name: "Micro",
  3870. height: math.unit(4, "inches")
  3871. },
  3872. {
  3873. name: "Normal",
  3874. height: math.unit(6, "feet"),
  3875. default: true
  3876. },
  3877. {
  3878. name: "Macro",
  3879. height: math.unit(108, "feet")
  3880. },
  3881. {
  3882. name: "Macro+",
  3883. height: math.unit(1500, "feet")
  3884. },
  3885. ]
  3886. ))
  3887. characterMakers.push(() => makeCharacter(
  3888. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3889. {
  3890. side: {
  3891. height: math.unit(6, "feet"),
  3892. weight: math.unit(75, "kg"),
  3893. name: "Side",
  3894. image: {
  3895. source: "./media/characters/aigey/side.svg"
  3896. }
  3897. },
  3898. },
  3899. [
  3900. {
  3901. name: "Macro",
  3902. height: math.unit(200, "feet"),
  3903. default: true
  3904. },
  3905. {
  3906. name: "Megamacro",
  3907. height: math.unit(100, "miles")
  3908. },
  3909. ]
  3910. )
  3911. )
  3912. characterMakers.push(() => makeCharacter(
  3913. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3914. {
  3915. front: {
  3916. height: math.unit(13, "feet"),
  3917. weight: math.unit(1036.80, "kg"),
  3918. name: "Front",
  3919. image: {
  3920. source: "./media/characters/natasha/front.svg",
  3921. extra: 1301/1210,
  3922. bottom: 39/1340
  3923. }
  3924. },
  3925. back: {
  3926. height: math.unit(13, "feet"),
  3927. weight: math.unit(1036.80, "kg"),
  3928. name: "Back",
  3929. image: {
  3930. source: "./media/characters/natasha/back.svg",
  3931. extra: 1342/1252,
  3932. bottom: 20/1362
  3933. }
  3934. },
  3935. head: {
  3936. height: math.unit(3.48, "feet"),
  3937. name: "Head",
  3938. image: {
  3939. source: "./media/characters/natasha/head.svg"
  3940. }
  3941. },
  3942. jaws: {
  3943. height: math.unit(3.52, "feet"),
  3944. name: "Jaws",
  3945. image: {
  3946. source: "./media/characters/natasha/jaws.svg"
  3947. }
  3948. },
  3949. paws: {
  3950. height: math.unit(2.7, "feet"),
  3951. name: "Paws",
  3952. image: {
  3953. source: "./media/characters/natasha/paws.svg"
  3954. }
  3955. },
  3956. collar: {
  3957. height: math.unit(0.89, "feet"),
  3958. name: "Collar",
  3959. image: {
  3960. source: "./media/characters/natasha/collar.svg"
  3961. }
  3962. },
  3963. gauge: {
  3964. height: math.unit(0.36, "feet"),
  3965. name: "Gauge",
  3966. image: {
  3967. source: "./media/characters/natasha/gauge.svg"
  3968. }
  3969. },
  3970. },
  3971. [
  3972. {
  3973. name: "Shortstack",
  3974. height: math.unit(3, "feet")
  3975. },
  3976. {
  3977. name: "Normal",
  3978. height: math.unit(13, "feet"),
  3979. default: true
  3980. },
  3981. {
  3982. name: "Macro",
  3983. height: math.unit(100, "feet")
  3984. },
  3985. {
  3986. name: "Macro+",
  3987. height: math.unit(260, "feet")
  3988. },
  3989. {
  3990. name: "Macro++",
  3991. height: math.unit(1, "mile")
  3992. },
  3993. ]
  3994. ))
  3995. characterMakers.push(() => makeCharacter(
  3996. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3997. {
  3998. front: {
  3999. height: math.unit(6, "feet"),
  4000. weight: math.unit(75, "kg"),
  4001. name: "Front",
  4002. image: {
  4003. source: "./media/characters/malik/front.svg",
  4004. extra: 1750/1561,
  4005. bottom: 80/1830
  4006. },
  4007. extraAttributes: {
  4008. "toeSize": {
  4009. name: "Toe Size",
  4010. power: 2,
  4011. type: "area",
  4012. base: math.unit(0.0159, "m^2")
  4013. },
  4014. "pawSize": {
  4015. name: "Paw Size",
  4016. power: 2,
  4017. type: "area",
  4018. base: math.unit(0.09834, "m^2")
  4019. },
  4020. }
  4021. },
  4022. side: {
  4023. height: math.unit(6, "feet"),
  4024. weight: math.unit(75, "kg"),
  4025. name: "Side",
  4026. image: {
  4027. source: "./media/characters/malik/side.svg",
  4028. extra: 1802/1685,
  4029. bottom: 42/1844
  4030. },
  4031. extraAttributes: {
  4032. "toeSize": {
  4033. name: "Toe Size",
  4034. power: 2,
  4035. type: "area",
  4036. base: math.unit(0.0159, "m^2")
  4037. },
  4038. "pawSize": {
  4039. name: "Paw Size",
  4040. power: 2,
  4041. type: "area",
  4042. base: math.unit(0.09834, "m^2")
  4043. },
  4044. }
  4045. },
  4046. back: {
  4047. height: math.unit(6, "feet"),
  4048. weight: math.unit(75, "kg"),
  4049. name: "Back",
  4050. image: {
  4051. source: "./media/characters/malik/back.svg",
  4052. extra: 1803/1607,
  4053. bottom: 33/1836
  4054. },
  4055. extraAttributes: {
  4056. "toeSize": {
  4057. name: "Toe Size",
  4058. power: 2,
  4059. type: "area",
  4060. base: math.unit(0.0159, "m^2")
  4061. },
  4062. "pawSize": {
  4063. name: "Paw Size",
  4064. power: 2,
  4065. type: "area",
  4066. base: math.unit(0.09834, "m^2")
  4067. },
  4068. }
  4069. },
  4070. },
  4071. [
  4072. {
  4073. name: "Macro",
  4074. height: math.unit(156, "feet"),
  4075. default: true
  4076. },
  4077. {
  4078. name: "Macro+",
  4079. height: math.unit(1188, "feet")
  4080. },
  4081. ]
  4082. ))
  4083. characterMakers.push(() => makeCharacter(
  4084. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  4085. {
  4086. front: {
  4087. height: math.unit(6, "feet"),
  4088. weight: math.unit(75, "kg"),
  4089. name: "Front",
  4090. image: {
  4091. source: "./media/characters/sefer/front.svg",
  4092. extra: 848 / 659,
  4093. bottom: 28.3 / 876.442
  4094. }
  4095. },
  4096. back: {
  4097. height: math.unit(6, "feet"),
  4098. weight: math.unit(75, "kg"),
  4099. name: "Back",
  4100. image: {
  4101. source: "./media/characters/sefer/back.svg",
  4102. extra: 864 / 695,
  4103. bottom: 10 / 871
  4104. }
  4105. },
  4106. frontDressed: {
  4107. height: math.unit(6, "feet"),
  4108. weight: math.unit(75, "kg"),
  4109. name: "Dressed",
  4110. image: {
  4111. source: "./media/characters/sefer/dressed.svg",
  4112. extra: 839 / 653,
  4113. bottom: 37.6 / 878
  4114. }
  4115. },
  4116. },
  4117. [
  4118. {
  4119. name: "Normal",
  4120. height: math.unit(6, "feet"),
  4121. default: true
  4122. },
  4123. {
  4124. name: "Big",
  4125. height: math.unit(8, "meters")
  4126. },
  4127. ]
  4128. ))
  4129. characterMakers.push(() => makeCharacter(
  4130. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  4131. {
  4132. body: {
  4133. height: math.unit(2.2428, "meter"),
  4134. weight: math.unit(124.738, "kg"),
  4135. name: "Body",
  4136. image: {
  4137. extra: 1225 / 1050,
  4138. source: "./media/characters/north/front.svg"
  4139. }
  4140. }
  4141. },
  4142. [
  4143. {
  4144. name: "Micro",
  4145. height: math.unit(4, "inches")
  4146. },
  4147. {
  4148. name: "Macro",
  4149. height: math.unit(63, "meters")
  4150. },
  4151. {
  4152. name: "Megamacro",
  4153. height: math.unit(101, "miles"),
  4154. default: true
  4155. }
  4156. ]
  4157. ))
  4158. characterMakers.push(() => makeCharacter(
  4159. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  4160. {
  4161. angled: {
  4162. height: math.unit(4, "meter"),
  4163. weight: math.unit(150, "kg"),
  4164. name: "Angled",
  4165. image: {
  4166. source: "./media/characters/talan/angled-sfw.svg",
  4167. bottom: 29 / 3734
  4168. }
  4169. },
  4170. angledNsfw: {
  4171. height: math.unit(4, "meter"),
  4172. weight: math.unit(150, "kg"),
  4173. name: "Angled (NSFW)",
  4174. image: {
  4175. source: "./media/characters/talan/angled-nsfw.svg",
  4176. bottom: 29 / 3734
  4177. }
  4178. },
  4179. frontNsfw: {
  4180. height: math.unit(4, "meter"),
  4181. weight: math.unit(150, "kg"),
  4182. name: "Front (NSFW)",
  4183. image: {
  4184. source: "./media/characters/talan/front-nsfw.svg",
  4185. bottom: 29 / 3734
  4186. }
  4187. },
  4188. sideNsfw: {
  4189. height: math.unit(4, "meter"),
  4190. weight: math.unit(150, "kg"),
  4191. name: "Side (NSFW)",
  4192. image: {
  4193. source: "./media/characters/talan/side-nsfw.svg",
  4194. bottom: 29 / 3734
  4195. }
  4196. },
  4197. back: {
  4198. height: math.unit(4, "meter"),
  4199. weight: math.unit(150, "kg"),
  4200. name: "Back",
  4201. image: {
  4202. source: "./media/characters/talan/back.svg"
  4203. }
  4204. },
  4205. dickBottom: {
  4206. height: math.unit(0.621, "meter"),
  4207. name: "Dick (Bottom)",
  4208. image: {
  4209. source: "./media/characters/talan/dick-bottom.svg"
  4210. }
  4211. },
  4212. dickTop: {
  4213. height: math.unit(0.621, "meter"),
  4214. name: "Dick (Top)",
  4215. image: {
  4216. source: "./media/characters/talan/dick-top.svg"
  4217. }
  4218. },
  4219. dickSide: {
  4220. height: math.unit(0.305, "meter"),
  4221. name: "Dick (Side)",
  4222. image: {
  4223. source: "./media/characters/talan/dick-side.svg"
  4224. }
  4225. },
  4226. dickFront: {
  4227. height: math.unit(0.305, "meter"),
  4228. name: "Dick (Front)",
  4229. image: {
  4230. source: "./media/characters/talan/dick-front.svg"
  4231. }
  4232. },
  4233. },
  4234. [
  4235. {
  4236. name: "Normal",
  4237. height: math.unit(4, "meters")
  4238. },
  4239. {
  4240. name: "Macro",
  4241. height: math.unit(100, "meters")
  4242. },
  4243. {
  4244. name: "Megamacro",
  4245. height: math.unit(2, "miles"),
  4246. default: true
  4247. },
  4248. {
  4249. name: "Gigamacro",
  4250. height: math.unit(5000, "miles")
  4251. },
  4252. {
  4253. name: "Teramacro",
  4254. height: math.unit(100, "parsecs")
  4255. }
  4256. ]
  4257. ))
  4258. characterMakers.push(() => makeCharacter(
  4259. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  4260. {
  4261. front: {
  4262. height: math.unit(2, "meter"),
  4263. weight: math.unit(90, "kg"),
  4264. name: "Front",
  4265. image: {
  4266. source: "./media/characters/gael'rathus/front.svg"
  4267. }
  4268. },
  4269. frontAlt: {
  4270. height: math.unit(2, "meter"),
  4271. weight: math.unit(90, "kg"),
  4272. name: "Front (alt)",
  4273. image: {
  4274. source: "./media/characters/gael'rathus/front-alt.svg"
  4275. }
  4276. },
  4277. frontAlt2: {
  4278. height: math.unit(2, "meter"),
  4279. weight: math.unit(90, "kg"),
  4280. name: "Front (alt 2)",
  4281. image: {
  4282. source: "./media/characters/gael'rathus/front-alt-2.svg"
  4283. }
  4284. }
  4285. },
  4286. [
  4287. {
  4288. name: "Normal",
  4289. height: math.unit(9, "feet"),
  4290. default: true
  4291. },
  4292. {
  4293. name: "Large",
  4294. height: math.unit(25, "feet")
  4295. },
  4296. {
  4297. name: "Macro",
  4298. height: math.unit(0.25, "miles")
  4299. },
  4300. {
  4301. name: "Megamacro",
  4302. height: math.unit(10, "miles")
  4303. }
  4304. ]
  4305. ))
  4306. characterMakers.push(() => makeCharacter(
  4307. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  4308. {
  4309. side: {
  4310. height: math.unit(2, "meter"),
  4311. weight: math.unit(140, "kg"),
  4312. name: "Side",
  4313. image: {
  4314. source: "./media/characters/sosha/side.svg",
  4315. extra: 1170/1006,
  4316. bottom: 94/1264
  4317. }
  4318. },
  4319. maw: {
  4320. height: math.unit(2.87, "feet"),
  4321. name: "Maw",
  4322. image: {
  4323. source: "./media/characters/sosha/maw.svg",
  4324. extra: 966/865,
  4325. bottom: 0/966
  4326. }
  4327. },
  4328. cooch: {
  4329. height: math.unit(5.6, "feet"),
  4330. name: "Cooch",
  4331. image: {
  4332. source: "./media/characters/sosha/cooch.svg"
  4333. }
  4334. },
  4335. },
  4336. [
  4337. {
  4338. name: "Normal",
  4339. height: math.unit(12, "feet"),
  4340. default: true
  4341. }
  4342. ]
  4343. ))
  4344. characterMakers.push(() => makeCharacter(
  4345. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4346. {
  4347. side: {
  4348. height: math.unit(5 + 5 / 12, "feet"),
  4349. weight: math.unit(170, "kg"),
  4350. name: "Side",
  4351. image: {
  4352. source: "./media/characters/runnola/side.svg",
  4353. extra: 741 / 448,
  4354. bottom: 0.05
  4355. }
  4356. },
  4357. },
  4358. [
  4359. {
  4360. name: "Small",
  4361. height: math.unit(3, "feet")
  4362. },
  4363. {
  4364. name: "Normal",
  4365. height: math.unit(5 + 5 / 12, "feet"),
  4366. default: true
  4367. },
  4368. {
  4369. name: "Big",
  4370. height: math.unit(10, "feet")
  4371. },
  4372. ]
  4373. ))
  4374. characterMakers.push(() => makeCharacter(
  4375. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4376. {
  4377. front: {
  4378. height: math.unit(2, "meter"),
  4379. weight: math.unit(50, "kg"),
  4380. name: "Front",
  4381. image: {
  4382. source: "./media/characters/kurribird/front.svg",
  4383. bottom: 0.015
  4384. }
  4385. },
  4386. frontAlt: {
  4387. height: math.unit(1.5, "meter"),
  4388. weight: math.unit(50, "kg"),
  4389. name: "Front (Alt)",
  4390. image: {
  4391. source: "./media/characters/kurribird/front-alt.svg",
  4392. extra: 1.45
  4393. }
  4394. },
  4395. },
  4396. [
  4397. {
  4398. name: "Normal",
  4399. height: math.unit(7, "feet")
  4400. },
  4401. {
  4402. name: "Big",
  4403. height: math.unit(12, "feet"),
  4404. default: true
  4405. },
  4406. {
  4407. name: "Macro",
  4408. height: math.unit(1500, "feet")
  4409. },
  4410. {
  4411. name: "Megamacro",
  4412. height: math.unit(2, "miles")
  4413. }
  4414. ]
  4415. ))
  4416. characterMakers.push(() => makeCharacter(
  4417. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4418. {
  4419. front: {
  4420. height: math.unit(2, "meter"),
  4421. weight: math.unit(80, "kg"),
  4422. name: "Front",
  4423. image: {
  4424. source: "./media/characters/elbial/front.svg",
  4425. extra: 1643 / 1556,
  4426. bottom: 60.2 / 1696
  4427. }
  4428. },
  4429. side: {
  4430. height: math.unit(2, "meter"),
  4431. weight: math.unit(80, "kg"),
  4432. name: "Side",
  4433. image: {
  4434. source: "./media/characters/elbial/side.svg",
  4435. extra: 1601/1528,
  4436. bottom: 97/1698
  4437. }
  4438. },
  4439. back: {
  4440. height: math.unit(2, "meter"),
  4441. weight: math.unit(80, "kg"),
  4442. name: "Back",
  4443. image: {
  4444. source: "./media/characters/elbial/back.svg",
  4445. extra: 1653/1569,
  4446. bottom: 20/1673
  4447. }
  4448. },
  4449. frontDressed: {
  4450. height: math.unit(2, "meter"),
  4451. weight: math.unit(80, "kg"),
  4452. name: "Front (Dressed)",
  4453. image: {
  4454. source: "./media/characters/elbial/front-dressed.svg",
  4455. extra: 1638/1569,
  4456. bottom: 70/1708
  4457. }
  4458. },
  4459. genitals: {
  4460. height: math.unit(2 / 3.367, "meter"),
  4461. name: "Genitals",
  4462. image: {
  4463. source: "./media/characters/elbial/genitals.svg"
  4464. }
  4465. },
  4466. },
  4467. [
  4468. {
  4469. name: "Large",
  4470. height: math.unit(100, "feet")
  4471. },
  4472. {
  4473. name: "Macro",
  4474. height: math.unit(500, "feet"),
  4475. default: true
  4476. },
  4477. {
  4478. name: "Megamacro",
  4479. height: math.unit(10, "miles")
  4480. },
  4481. {
  4482. name: "Gigamacro",
  4483. height: math.unit(25000, "miles")
  4484. },
  4485. {
  4486. name: "Full-Size",
  4487. height: math.unit(8000000, "gigaparsecs")
  4488. }
  4489. ]
  4490. ))
  4491. characterMakers.push(() => makeCharacter(
  4492. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4493. {
  4494. front: {
  4495. height: math.unit(2, "meter"),
  4496. weight: math.unit(60, "kg"),
  4497. name: "Front",
  4498. image: {
  4499. source: "./media/characters/noah/front.svg",
  4500. extra: 1383/1313,
  4501. bottom: 104/1487
  4502. }
  4503. },
  4504. hand: {
  4505. height: math.unit(0.6, "feet"),
  4506. name: "Hand",
  4507. image: {
  4508. source: "./media/characters/noah/hand.svg"
  4509. }
  4510. },
  4511. talons: {
  4512. height: math.unit(1.385, "feet"),
  4513. name: "Talons",
  4514. image: {
  4515. source: "./media/characters/noah/talons.svg"
  4516. }
  4517. },
  4518. beak: {
  4519. height: math.unit(0.43, "feet"),
  4520. name: "Beak",
  4521. image: {
  4522. source: "./media/characters/noah/beak.svg"
  4523. }
  4524. },
  4525. collar: {
  4526. height: math.unit(0.88, "feet"),
  4527. name: "Collar",
  4528. image: {
  4529. source: "./media/characters/noah/collar.svg"
  4530. }
  4531. },
  4532. eyeNarrow: {
  4533. height: math.unit(0.18, "feet"),
  4534. name: "Eye (Narrow)",
  4535. image: {
  4536. source: "./media/characters/noah/eye-narrow.svg"
  4537. }
  4538. },
  4539. eyeNormal: {
  4540. height: math.unit(0.18, "feet"),
  4541. name: "Eye (Normal)",
  4542. image: {
  4543. source: "./media/characters/noah/eye-normal.svg"
  4544. }
  4545. },
  4546. eyeWide: {
  4547. height: math.unit(0.18, "feet"),
  4548. name: "Eye (Wide)",
  4549. image: {
  4550. source: "./media/characters/noah/eye-wide.svg"
  4551. }
  4552. },
  4553. ear: {
  4554. height: math.unit(0.64, "feet"),
  4555. name: "Ear",
  4556. image: {
  4557. source: "./media/characters/noah/ear.svg"
  4558. }
  4559. },
  4560. },
  4561. [
  4562. {
  4563. name: "Large",
  4564. height: math.unit(50, "feet")
  4565. },
  4566. {
  4567. name: "Macro",
  4568. height: math.unit(750, "feet"),
  4569. default: true
  4570. },
  4571. {
  4572. name: "Megamacro",
  4573. height: math.unit(50, "miles")
  4574. },
  4575. {
  4576. name: "Gigamacro",
  4577. height: math.unit(100000, "miles")
  4578. },
  4579. {
  4580. name: "Full-Size",
  4581. height: math.unit(3000000000, "miles")
  4582. }
  4583. ]
  4584. ))
  4585. characterMakers.push(() => makeCharacter(
  4586. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4587. {
  4588. front: {
  4589. height: math.unit(2, "meter"),
  4590. weight: math.unit(80, "kg"),
  4591. name: "Front",
  4592. image: {
  4593. source: "./media/characters/natalya/front.svg"
  4594. }
  4595. },
  4596. back: {
  4597. height: math.unit(2, "meter"),
  4598. weight: math.unit(80, "kg"),
  4599. name: "Back",
  4600. image: {
  4601. source: "./media/characters/natalya/back.svg"
  4602. }
  4603. }
  4604. },
  4605. [
  4606. {
  4607. name: "Normal",
  4608. height: math.unit(150, "feet"),
  4609. default: true
  4610. },
  4611. {
  4612. name: "Megamacro",
  4613. height: math.unit(5, "miles")
  4614. },
  4615. {
  4616. name: "Full-Size",
  4617. height: math.unit(600, "kiloparsecs")
  4618. }
  4619. ]
  4620. ))
  4621. characterMakers.push(() => makeCharacter(
  4622. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4623. {
  4624. front: {
  4625. height: math.unit(2, "meter"),
  4626. weight: math.unit(50, "kg"),
  4627. name: "Front",
  4628. image: {
  4629. source: "./media/characters/erestrebah/front.svg",
  4630. extra: 1262/1162,
  4631. bottom: 96/1358
  4632. }
  4633. },
  4634. back: {
  4635. height: math.unit(2, "meter"),
  4636. weight: math.unit(50, "kg"),
  4637. name: "Back",
  4638. image: {
  4639. source: "./media/characters/erestrebah/back.svg",
  4640. extra: 1257/1139,
  4641. bottom: 13/1270
  4642. }
  4643. },
  4644. wing: {
  4645. height: math.unit(2, "meter"),
  4646. weight: math.unit(50, "kg"),
  4647. name: "Wing",
  4648. image: {
  4649. source: "./media/characters/erestrebah/wing.svg",
  4650. extra: 1262/1162,
  4651. bottom: 96/1358
  4652. }
  4653. },
  4654. mouth: {
  4655. height: math.unit(0.39, "feet"),
  4656. name: "Mouth",
  4657. image: {
  4658. source: "./media/characters/erestrebah/mouth.svg"
  4659. }
  4660. }
  4661. },
  4662. [
  4663. {
  4664. name: "Normal",
  4665. height: math.unit(10, "feet")
  4666. },
  4667. {
  4668. name: "Large",
  4669. height: math.unit(50, "feet"),
  4670. default: true
  4671. },
  4672. {
  4673. name: "Macro",
  4674. height: math.unit(300, "feet")
  4675. },
  4676. {
  4677. name: "Macro+",
  4678. height: math.unit(750, "feet")
  4679. },
  4680. {
  4681. name: "Megamacro",
  4682. height: math.unit(3, "miles")
  4683. }
  4684. ]
  4685. ))
  4686. characterMakers.push(() => makeCharacter(
  4687. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4688. {
  4689. front: {
  4690. height: math.unit(2, "meter"),
  4691. weight: math.unit(80, "kg"),
  4692. name: "Front",
  4693. image: {
  4694. source: "./media/characters/jennifer/front.svg",
  4695. bottom: 0.11,
  4696. extra: 1.16
  4697. }
  4698. },
  4699. frontAlt: {
  4700. height: math.unit(2, "meter"),
  4701. weight: math.unit(80, "kg"),
  4702. name: "Front (Alt)",
  4703. image: {
  4704. source: "./media/characters/jennifer/front-alt.svg"
  4705. }
  4706. }
  4707. },
  4708. [
  4709. {
  4710. name: "Canon Height",
  4711. height: math.unit(120, "feet"),
  4712. default: true
  4713. },
  4714. {
  4715. name: "Macro+",
  4716. height: math.unit(300, "feet")
  4717. },
  4718. {
  4719. name: "Megamacro",
  4720. height: math.unit(20000, "feet")
  4721. }
  4722. ]
  4723. ))
  4724. characterMakers.push(() => makeCharacter(
  4725. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4726. {
  4727. front: {
  4728. height: math.unit(2, "meter"),
  4729. weight: math.unit(50, "kg"),
  4730. name: "Front",
  4731. image: {
  4732. source: "./media/characters/kalista/front.svg",
  4733. extra: 1314/1145,
  4734. bottom: 101/1415
  4735. }
  4736. },
  4737. back: {
  4738. height: math.unit(2, "meter"),
  4739. weight: math.unit(50, "kg"),
  4740. name: "Back",
  4741. image: {
  4742. source: "./media/characters/kalista/back.svg",
  4743. extra: 1366 / 1156,
  4744. bottom: 33.9 / 1362.78
  4745. }
  4746. }
  4747. },
  4748. [
  4749. {
  4750. name: "Uncomfortably Small",
  4751. height: math.unit(10, "feet")
  4752. },
  4753. {
  4754. name: "Small",
  4755. height: math.unit(30, "feet")
  4756. },
  4757. {
  4758. name: "Macro",
  4759. height: math.unit(100, "feet"),
  4760. default: true
  4761. },
  4762. {
  4763. name: "Macro+",
  4764. height: math.unit(2000, "feet")
  4765. },
  4766. {
  4767. name: "True Form",
  4768. height: math.unit(8924, "miles")
  4769. }
  4770. ]
  4771. ))
  4772. characterMakers.push(() => makeCharacter(
  4773. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4774. {
  4775. front: {
  4776. height: math.unit(2, "meter"),
  4777. weight: math.unit(120, "kg"),
  4778. name: "Front",
  4779. image: {
  4780. source: "./media/characters/ggv/front.svg"
  4781. }
  4782. },
  4783. side: {
  4784. height: math.unit(2, "meter"),
  4785. weight: math.unit(120, "kg"),
  4786. name: "Side",
  4787. image: {
  4788. source: "./media/characters/ggv/side.svg"
  4789. }
  4790. }
  4791. },
  4792. [
  4793. {
  4794. name: "Extremely Puny",
  4795. height: math.unit(9 + 5 / 12, "feet")
  4796. },
  4797. {
  4798. name: "Horribly Small",
  4799. height: math.unit(47.7, "miles"),
  4800. default: true
  4801. },
  4802. {
  4803. name: "Reasonably Sized",
  4804. height: math.unit(25000, "parsecs")
  4805. },
  4806. {
  4807. name: "Slightly Uncompressed",
  4808. height: math.unit(7.77e31, "parsecs")
  4809. },
  4810. {
  4811. name: "Omniversal",
  4812. height: math.unit(1e300, "meters")
  4813. },
  4814. ]
  4815. ))
  4816. characterMakers.push(() => makeCharacter(
  4817. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4818. {
  4819. front: {
  4820. height: math.unit(2, "meter"),
  4821. weight: math.unit(75, "lb"),
  4822. name: "Front",
  4823. image: {
  4824. source: "./media/characters/napalm/front.svg"
  4825. }
  4826. },
  4827. back: {
  4828. height: math.unit(2, "meter"),
  4829. weight: math.unit(75, "lb"),
  4830. name: "Back",
  4831. image: {
  4832. source: "./media/characters/napalm/back.svg"
  4833. }
  4834. }
  4835. },
  4836. [
  4837. {
  4838. name: "Standard",
  4839. height: math.unit(55, "feet"),
  4840. default: true
  4841. }
  4842. ]
  4843. ))
  4844. characterMakers.push(() => makeCharacter(
  4845. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4846. {
  4847. front: {
  4848. height: math.unit(7 + 5 / 6, "feet"),
  4849. weight: math.unit(325, "lb"),
  4850. name: "Front",
  4851. image: {
  4852. source: "./media/characters/asana/front.svg",
  4853. extra: 1133 / 1060,
  4854. bottom: 15.2 / 1148.6
  4855. }
  4856. },
  4857. back: {
  4858. height: math.unit(7 + 5 / 6, "feet"),
  4859. weight: math.unit(325, "lb"),
  4860. name: "Back",
  4861. image: {
  4862. source: "./media/characters/asana/back.svg",
  4863. extra: 1114 / 1043,
  4864. bottom: 5 / 1120
  4865. }
  4866. },
  4867. dressedDark: {
  4868. height: math.unit(7 + 5 / 6, "feet"),
  4869. weight: math.unit(325, "lb"),
  4870. name: "Dressed (Dark)",
  4871. image: {
  4872. source: "./media/characters/asana/dressed-dark.svg",
  4873. extra: 1133 / 1060,
  4874. bottom: 15.2 / 1148.6
  4875. }
  4876. },
  4877. dressedLight: {
  4878. height: math.unit(7 + 5 / 6, "feet"),
  4879. weight: math.unit(325, "lb"),
  4880. name: "Dressed (Light)",
  4881. image: {
  4882. source: "./media/characters/asana/dressed-light.svg",
  4883. extra: 1133 / 1060,
  4884. bottom: 15.2 / 1148.6
  4885. }
  4886. },
  4887. },
  4888. [
  4889. {
  4890. name: "Standard",
  4891. height: math.unit(7 + 5 / 6, "feet"),
  4892. default: true
  4893. },
  4894. {
  4895. name: "Large",
  4896. height: math.unit(10, "meters")
  4897. },
  4898. {
  4899. name: "Macro",
  4900. height: math.unit(2500, "meters")
  4901. },
  4902. {
  4903. name: "Megamacro",
  4904. height: math.unit(5e6, "meters")
  4905. },
  4906. {
  4907. name: "Examacro",
  4908. height: math.unit(5e12, "lightyears")
  4909. },
  4910. {
  4911. name: "Max Size",
  4912. height: math.unit(1e31, "lightyears")
  4913. }
  4914. ]
  4915. ))
  4916. characterMakers.push(() => makeCharacter(
  4917. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4918. {
  4919. front: {
  4920. height: math.unit(2, "meter"),
  4921. weight: math.unit(60, "kg"),
  4922. name: "Front",
  4923. image: {
  4924. source: "./media/characters/ebony/front.svg",
  4925. bottom: 0.03,
  4926. extra: 1045 / 810 + 0.03
  4927. }
  4928. },
  4929. side: {
  4930. height: math.unit(2, "meter"),
  4931. weight: math.unit(60, "kg"),
  4932. name: "Side",
  4933. image: {
  4934. source: "./media/characters/ebony/side.svg",
  4935. bottom: 0.03,
  4936. extra: 1045 / 810 + 0.03
  4937. }
  4938. },
  4939. back: {
  4940. height: math.unit(2, "meter"),
  4941. weight: math.unit(60, "kg"),
  4942. name: "Back",
  4943. image: {
  4944. source: "./media/characters/ebony/back.svg",
  4945. bottom: 0.01,
  4946. extra: 1045 / 810 + 0.01
  4947. }
  4948. },
  4949. },
  4950. [
  4951. // TODO check why I did this lol
  4952. {
  4953. name: "Standard",
  4954. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4955. default: true
  4956. },
  4957. {
  4958. name: "Macro",
  4959. height: math.unit(200, "feet")
  4960. },
  4961. {
  4962. name: "Gigamacro",
  4963. height: math.unit(13000, "km")
  4964. }
  4965. ]
  4966. ))
  4967. characterMakers.push(() => makeCharacter(
  4968. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4969. {
  4970. front: {
  4971. height: math.unit(6, "feet"),
  4972. weight: math.unit(175, "lb"),
  4973. name: "Front",
  4974. image: {
  4975. source: "./media/characters/mountain/front.svg",
  4976. extra: 972 / 955,
  4977. bottom: 64 / 1036.6
  4978. }
  4979. },
  4980. back: {
  4981. height: math.unit(6, "feet"),
  4982. weight: math.unit(175, "lb"),
  4983. name: "Back",
  4984. image: {
  4985. source: "./media/characters/mountain/back.svg",
  4986. extra: 970 / 950,
  4987. bottom: 28.25 / 999
  4988. }
  4989. },
  4990. },
  4991. [
  4992. {
  4993. name: "Large",
  4994. height: math.unit(20, "meters")
  4995. },
  4996. {
  4997. name: "Macro",
  4998. height: math.unit(300, "meters")
  4999. },
  5000. {
  5001. name: "Gigamacro",
  5002. height: math.unit(10000, "km"),
  5003. default: true
  5004. },
  5005. {
  5006. name: "Examacro",
  5007. height: math.unit(10e9, "lightyears")
  5008. }
  5009. ]
  5010. ))
  5011. characterMakers.push(() => makeCharacter(
  5012. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  5013. {
  5014. front: {
  5015. height: math.unit(8, "feet"),
  5016. weight: math.unit(500, "lb"),
  5017. name: "Front",
  5018. image: {
  5019. source: "./media/characters/rick/front.svg"
  5020. }
  5021. }
  5022. },
  5023. [
  5024. {
  5025. name: "Normal",
  5026. height: math.unit(8, "feet"),
  5027. default: true
  5028. },
  5029. {
  5030. name: "Macro",
  5031. height: math.unit(5, "km")
  5032. }
  5033. ]
  5034. ))
  5035. characterMakers.push(() => makeCharacter(
  5036. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  5037. {
  5038. front: {
  5039. height: math.unit(8, "feet"),
  5040. weight: math.unit(120, "lb"),
  5041. name: "Front",
  5042. image: {
  5043. source: "./media/characters/ona/front.svg"
  5044. }
  5045. },
  5046. frontAlt: {
  5047. height: math.unit(8, "feet"),
  5048. weight: math.unit(120, "lb"),
  5049. name: "Front (Alt)",
  5050. image: {
  5051. source: "./media/characters/ona/front-alt.svg"
  5052. }
  5053. },
  5054. back: {
  5055. height: math.unit(8, "feet"),
  5056. weight: math.unit(120, "lb"),
  5057. name: "Back",
  5058. image: {
  5059. source: "./media/characters/ona/back.svg"
  5060. }
  5061. },
  5062. foot: {
  5063. height: math.unit(1.1, "feet"),
  5064. name: "Foot",
  5065. image: {
  5066. source: "./media/characters/ona/foot.svg"
  5067. }
  5068. }
  5069. },
  5070. [
  5071. {
  5072. name: "Megamacro",
  5073. height: math.unit(70, "km"),
  5074. default: true
  5075. },
  5076. {
  5077. name: "Gigamacro",
  5078. height: math.unit(681818, "miles")
  5079. },
  5080. {
  5081. name: "Examacro",
  5082. height: math.unit(3800000, "lightyears")
  5083. },
  5084. ]
  5085. ))
  5086. characterMakers.push(() => makeCharacter(
  5087. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  5088. {
  5089. front: {
  5090. height: math.unit(12, "feet"),
  5091. weight: math.unit(3000, "lb"),
  5092. name: "Front",
  5093. image: {
  5094. source: "./media/characters/mech/front.svg",
  5095. extra: 2900 / 2770,
  5096. bottom: 110 / 3010
  5097. }
  5098. },
  5099. back: {
  5100. height: math.unit(12, "feet"),
  5101. weight: math.unit(3000, "lb"),
  5102. name: "Back",
  5103. image: {
  5104. source: "./media/characters/mech/back.svg",
  5105. extra: 3011 / 2890,
  5106. bottom: 94 / 3105
  5107. }
  5108. },
  5109. maw: {
  5110. height: math.unit(3.07, "feet"),
  5111. name: "Maw",
  5112. image: {
  5113. source: "./media/characters/mech/maw.svg"
  5114. }
  5115. },
  5116. head: {
  5117. height: math.unit(3.07, "feet"),
  5118. name: "Head",
  5119. image: {
  5120. source: "./media/characters/mech/head.svg"
  5121. }
  5122. },
  5123. dick: {
  5124. height: math.unit(1.43, "feet"),
  5125. name: "Dick",
  5126. image: {
  5127. source: "./media/characters/mech/dick.svg"
  5128. }
  5129. },
  5130. },
  5131. [
  5132. {
  5133. name: "Normal",
  5134. height: math.unit(12, "feet")
  5135. },
  5136. {
  5137. name: "Macro",
  5138. height: math.unit(300, "feet"),
  5139. default: true
  5140. },
  5141. {
  5142. name: "Macro+",
  5143. height: math.unit(1500, "feet")
  5144. },
  5145. ]
  5146. ))
  5147. characterMakers.push(() => makeCharacter(
  5148. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  5149. {
  5150. front: {
  5151. height: math.unit(1.3, "meter"),
  5152. weight: math.unit(30, "kg"),
  5153. name: "Front",
  5154. image: {
  5155. source: "./media/characters/gregory/front.svg",
  5156. }
  5157. }
  5158. },
  5159. [
  5160. {
  5161. name: "Normal",
  5162. height: math.unit(1.3, "meter"),
  5163. default: true
  5164. },
  5165. {
  5166. name: "Macro",
  5167. height: math.unit(20, "meter")
  5168. }
  5169. ]
  5170. ))
  5171. characterMakers.push(() => makeCharacter(
  5172. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  5173. {
  5174. front: {
  5175. height: math.unit(2.8, "meter"),
  5176. weight: math.unit(200, "kg"),
  5177. name: "Front",
  5178. image: {
  5179. source: "./media/characters/elory/front.svg",
  5180. }
  5181. }
  5182. },
  5183. [
  5184. {
  5185. name: "Normal",
  5186. height: math.unit(2.8, "meter"),
  5187. default: true
  5188. },
  5189. {
  5190. name: "Macro",
  5191. height: math.unit(38, "meter")
  5192. }
  5193. ]
  5194. ))
  5195. characterMakers.push(() => makeCharacter(
  5196. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  5197. {
  5198. front: {
  5199. height: math.unit(470, "feet"),
  5200. weight: math.unit(924, "tons"),
  5201. name: "Front",
  5202. image: {
  5203. source: "./media/characters/angelpatamon/front.svg",
  5204. }
  5205. }
  5206. },
  5207. [
  5208. {
  5209. name: "Normal",
  5210. height: math.unit(470, "feet"),
  5211. default: true
  5212. },
  5213. {
  5214. name: "Deity Size I",
  5215. height: math.unit(28651.2, "km")
  5216. },
  5217. {
  5218. name: "Deity Size II",
  5219. height: math.unit(171907.2, "km")
  5220. }
  5221. ]
  5222. ))
  5223. characterMakers.push(() => makeCharacter(
  5224. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  5225. {
  5226. side: {
  5227. height: math.unit(7.2, "meter"),
  5228. weight: math.unit(8.2, "tons"),
  5229. name: "Side",
  5230. image: {
  5231. source: "./media/characters/cryae/side.svg",
  5232. extra: 3500 / 1500
  5233. }
  5234. }
  5235. },
  5236. [
  5237. {
  5238. name: "Normal",
  5239. height: math.unit(7.2, "meter"),
  5240. default: true
  5241. }
  5242. ]
  5243. ))
  5244. characterMakers.push(() => makeCharacter(
  5245. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  5246. {
  5247. front: {
  5248. height: math.unit(6, "feet"),
  5249. weight: math.unit(175, "lb"),
  5250. name: "Front",
  5251. image: {
  5252. source: "./media/characters/xera/front.svg",
  5253. extra: 2377 / 1972,
  5254. bottom: 75.5 / 2452
  5255. }
  5256. },
  5257. side: {
  5258. height: math.unit(6, "feet"),
  5259. weight: math.unit(175, "lb"),
  5260. name: "Side",
  5261. image: {
  5262. source: "./media/characters/xera/side.svg",
  5263. extra: 2345 / 2019,
  5264. bottom: 39.7 / 2384
  5265. }
  5266. },
  5267. back: {
  5268. height: math.unit(6, "feet"),
  5269. weight: math.unit(175, "lb"),
  5270. name: "Back",
  5271. image: {
  5272. source: "./media/characters/xera/back.svg",
  5273. extra: 2095 / 1984,
  5274. bottom: 67 / 2166
  5275. }
  5276. },
  5277. },
  5278. [
  5279. {
  5280. name: "Small",
  5281. height: math.unit(10, "feet")
  5282. },
  5283. {
  5284. name: "Macro",
  5285. height: math.unit(500, "meters"),
  5286. default: true
  5287. },
  5288. {
  5289. name: "Macro+",
  5290. height: math.unit(10, "km")
  5291. },
  5292. {
  5293. name: "Gigamacro",
  5294. height: math.unit(25000, "km")
  5295. },
  5296. {
  5297. name: "Teramacro",
  5298. height: math.unit(3e6, "km")
  5299. }
  5300. ]
  5301. ))
  5302. characterMakers.push(() => makeCharacter(
  5303. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  5304. {
  5305. front: {
  5306. height: math.unit(6, "feet"),
  5307. weight: math.unit(175, "lb"),
  5308. name: "Front",
  5309. image: {
  5310. source: "./media/characters/nebula/front.svg",
  5311. extra: 2566 / 2362,
  5312. bottom: 81 / 2644
  5313. }
  5314. }
  5315. },
  5316. [
  5317. {
  5318. name: "Small",
  5319. height: math.unit(4.5, "meters")
  5320. },
  5321. {
  5322. name: "Macro",
  5323. height: math.unit(1500, "meters"),
  5324. default: true
  5325. },
  5326. {
  5327. name: "Megamacro",
  5328. height: math.unit(150, "km")
  5329. },
  5330. {
  5331. name: "Gigamacro",
  5332. height: math.unit(27000, "km")
  5333. }
  5334. ]
  5335. ))
  5336. characterMakers.push(() => makeCharacter(
  5337. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  5338. {
  5339. front: {
  5340. height: math.unit(6, "feet"),
  5341. weight: math.unit(225, "lb"),
  5342. name: "Front",
  5343. image: {
  5344. source: "./media/characters/abysgar/front.svg",
  5345. extra: 1739/1614,
  5346. bottom: 71/1810
  5347. }
  5348. },
  5349. frontNsfw: {
  5350. height: math.unit(6, "feet"),
  5351. weight: math.unit(225, "lb"),
  5352. name: "Front (NSFW)",
  5353. image: {
  5354. source: "./media/characters/abysgar/front-nsfw.svg",
  5355. extra: 1739/1614,
  5356. bottom: 71/1810
  5357. }
  5358. },
  5359. back: {
  5360. height: math.unit(4.6, "feet"),
  5361. weight: math.unit(225, "lb"),
  5362. name: "Back",
  5363. image: {
  5364. source: "./media/characters/abysgar/back.svg",
  5365. extra: 1384/1327,
  5366. bottom: 0/1384
  5367. }
  5368. },
  5369. head: {
  5370. height: math.unit(1.25, "feet"),
  5371. name: "Head",
  5372. image: {
  5373. source: "./media/characters/abysgar/head.svg",
  5374. extra: 669/569,
  5375. bottom: 0/669
  5376. }
  5377. },
  5378. },
  5379. [
  5380. {
  5381. name: "Small",
  5382. height: math.unit(4.5, "meters")
  5383. },
  5384. {
  5385. name: "Macro",
  5386. height: math.unit(1250, "meters"),
  5387. default: true
  5388. },
  5389. {
  5390. name: "Megamacro",
  5391. height: math.unit(125, "km")
  5392. },
  5393. {
  5394. name: "Gigamacro",
  5395. height: math.unit(26000, "km")
  5396. }
  5397. ]
  5398. ))
  5399. characterMakers.push(() => makeCharacter(
  5400. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5401. {
  5402. front: {
  5403. height: math.unit(6, "feet"),
  5404. weight: math.unit(180, "lb"),
  5405. name: "Front",
  5406. image: {
  5407. source: "./media/characters/yakuz/front.svg"
  5408. }
  5409. }
  5410. },
  5411. [
  5412. {
  5413. name: "Small",
  5414. height: math.unit(5, "meters")
  5415. },
  5416. {
  5417. name: "Macro",
  5418. height: math.unit(1500, "meters"),
  5419. default: true
  5420. },
  5421. {
  5422. name: "Megamacro",
  5423. height: math.unit(200, "km")
  5424. },
  5425. {
  5426. name: "Gigamacro",
  5427. height: math.unit(100000, "km")
  5428. }
  5429. ]
  5430. ))
  5431. characterMakers.push(() => makeCharacter(
  5432. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5433. {
  5434. front: {
  5435. height: math.unit(6, "feet"),
  5436. weight: math.unit(175, "lb"),
  5437. name: "Front",
  5438. image: {
  5439. source: "./media/characters/mirova/front.svg",
  5440. extra: 3334 / 3071,
  5441. bottom: 42 / 3375.6
  5442. }
  5443. }
  5444. },
  5445. [
  5446. {
  5447. name: "Small",
  5448. height: math.unit(5, "meters")
  5449. },
  5450. {
  5451. name: "Macro",
  5452. height: math.unit(900, "meters"),
  5453. default: true
  5454. },
  5455. {
  5456. name: "Megamacro",
  5457. height: math.unit(135, "km")
  5458. },
  5459. {
  5460. name: "Gigamacro",
  5461. height: math.unit(20000, "km")
  5462. }
  5463. ]
  5464. ))
  5465. characterMakers.push(() => makeCharacter(
  5466. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5467. {
  5468. side: {
  5469. height: math.unit(28.35, "feet"),
  5470. weight: math.unit(99.75, "tons"),
  5471. name: "Side",
  5472. image: {
  5473. source: "./media/characters/asana-mech/side.svg",
  5474. extra: 923 / 699,
  5475. bottom: 50 / 975
  5476. }
  5477. },
  5478. chaingun: {
  5479. height: math.unit(7, "feet"),
  5480. weight: math.unit(2400, "lb"),
  5481. name: "Chaingun",
  5482. image: {
  5483. source: "./media/characters/asana-mech/chaingun.svg"
  5484. }
  5485. },
  5486. laser: {
  5487. height: math.unit(7.12, "feet"),
  5488. weight: math.unit(2000, "lb"),
  5489. name: "Laser",
  5490. image: {
  5491. source: "./media/characters/asana-mech/laser.svg"
  5492. }
  5493. },
  5494. },
  5495. [
  5496. {
  5497. name: "Normal",
  5498. height: math.unit(28.35, "feet"),
  5499. default: true
  5500. },
  5501. {
  5502. name: "Macro",
  5503. height: math.unit(2500, "feet")
  5504. },
  5505. {
  5506. name: "Megamacro",
  5507. height: math.unit(25, "miles")
  5508. },
  5509. {
  5510. name: "Examacro",
  5511. height: math.unit(6e8, "lightyears")
  5512. },
  5513. ]
  5514. ))
  5515. characterMakers.push(() => makeCharacter(
  5516. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5517. {
  5518. front: {
  5519. height: math.unit(5, "meters"),
  5520. weight: math.unit(1000, "kg"),
  5521. name: "Front",
  5522. image: {
  5523. source: "./media/characters/asche/front.svg",
  5524. extra: 1258 / 1190,
  5525. bottom: 47 / 1305
  5526. }
  5527. },
  5528. frontUnderwear: {
  5529. height: math.unit(5, "meters"),
  5530. weight: math.unit(1000, "kg"),
  5531. name: "Front (Underwear)",
  5532. image: {
  5533. source: "./media/characters/asche/front-underwear.svg",
  5534. extra: 1258 / 1190,
  5535. bottom: 47 / 1305
  5536. }
  5537. },
  5538. frontDressed: {
  5539. height: math.unit(5, "meters"),
  5540. weight: math.unit(1000, "kg"),
  5541. name: "Front (Dressed)",
  5542. image: {
  5543. source: "./media/characters/asche/front-dressed.svg",
  5544. extra: 1258 / 1190,
  5545. bottom: 47 / 1305
  5546. }
  5547. },
  5548. frontArmor: {
  5549. height: math.unit(5, "meters"),
  5550. weight: math.unit(1000, "kg"),
  5551. name: "Front (Armored)",
  5552. image: {
  5553. source: "./media/characters/asche/front-armored.svg",
  5554. extra: 1374 / 1308,
  5555. bottom: 23 / 1397
  5556. }
  5557. },
  5558. mp724: {
  5559. height: math.unit(0.96, "meters"),
  5560. weight: math.unit(38, "kg"),
  5561. name: "H&K MP724",
  5562. image: {
  5563. source: "./media/characters/asche/h&k-mp724.svg"
  5564. }
  5565. },
  5566. side: {
  5567. height: math.unit(5, "meters"),
  5568. weight: math.unit(1000, "kg"),
  5569. name: "Side",
  5570. image: {
  5571. source: "./media/characters/asche/side.svg",
  5572. extra: 1717 / 1609,
  5573. bottom: 0.005
  5574. }
  5575. },
  5576. back: {
  5577. height: math.unit(5, "meters"),
  5578. weight: math.unit(1000, "kg"),
  5579. name: "Back",
  5580. image: {
  5581. source: "./media/characters/asche/back.svg",
  5582. extra: 1570 / 1501
  5583. }
  5584. },
  5585. },
  5586. [
  5587. {
  5588. name: "DEFCON 5",
  5589. height: math.unit(5, "meters")
  5590. },
  5591. {
  5592. name: "DEFCON 4",
  5593. height: math.unit(500, "meters"),
  5594. default: true
  5595. },
  5596. {
  5597. name: "DEFCON 3",
  5598. height: math.unit(5, "km")
  5599. },
  5600. {
  5601. name: "DEFCON 2",
  5602. height: math.unit(500, "km")
  5603. },
  5604. {
  5605. name: "DEFCON 1",
  5606. height: math.unit(500000, "km")
  5607. },
  5608. {
  5609. name: "DEFCON 0",
  5610. height: math.unit(3, "gigaparsecs")
  5611. },
  5612. ]
  5613. ))
  5614. characterMakers.push(() => makeCharacter(
  5615. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5616. {
  5617. front: {
  5618. height: math.unit(7, "feet"),
  5619. weight: math.unit(92.7, "kg"),
  5620. name: "Front",
  5621. image: {
  5622. source: "./media/characters/gale/front.svg",
  5623. extra: 977/919,
  5624. bottom: 105/1082
  5625. }
  5626. },
  5627. side: {
  5628. height: math.unit(6.7, "feet"),
  5629. weight: math.unit(92.7, "kg"),
  5630. name: "Side",
  5631. image: {
  5632. source: "./media/characters/gale/side.svg",
  5633. extra: 978/922,
  5634. bottom: 140/1118
  5635. }
  5636. },
  5637. back: {
  5638. height: math.unit(7, "feet"),
  5639. weight: math.unit(92.7, "kg"),
  5640. name: "Back",
  5641. image: {
  5642. source: "./media/characters/gale/back.svg",
  5643. extra: 966/920,
  5644. bottom: 61/1027
  5645. }
  5646. },
  5647. maw: {
  5648. height: math.unit(2.23, "feet"),
  5649. name: "Maw",
  5650. image: {
  5651. source: "./media/characters/gale/maw.svg"
  5652. }
  5653. },
  5654. foot: {
  5655. height: math.unit(2.1, "feet"),
  5656. name: "Foot",
  5657. image: {
  5658. source: "./media/characters/gale/foot.svg"
  5659. }
  5660. },
  5661. },
  5662. [
  5663. {
  5664. name: "Normal",
  5665. height: math.unit(7, "feet")
  5666. },
  5667. {
  5668. name: "Macro",
  5669. height: math.unit(150, "feet"),
  5670. default: true
  5671. },
  5672. {
  5673. name: "Macro+",
  5674. height: math.unit(300, "feet")
  5675. },
  5676. ]
  5677. ))
  5678. characterMakers.push(() => makeCharacter(
  5679. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5680. {
  5681. front: {
  5682. height: math.unit(5 + 10/12, "feet"),
  5683. weight: math.unit(67, "kg"),
  5684. name: "Front",
  5685. image: {
  5686. source: "./media/characters/draylen/front.svg",
  5687. extra: 832/777,
  5688. bottom: 85/917
  5689. }
  5690. }
  5691. },
  5692. [
  5693. {
  5694. name: "Normal",
  5695. height: math.unit(5 + 10/12, "feet")
  5696. },
  5697. {
  5698. name: "Macro",
  5699. height: math.unit(150, "feet"),
  5700. default: true
  5701. }
  5702. ]
  5703. ))
  5704. characterMakers.push(() => makeCharacter(
  5705. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5706. {
  5707. front: {
  5708. height: math.unit(7 + 9 / 12, "feet"),
  5709. weight: math.unit(379, "lbs"),
  5710. name: "Front",
  5711. image: {
  5712. source: "./media/characters/chez/front.svg"
  5713. }
  5714. },
  5715. side: {
  5716. height: math.unit(7 + 9 / 12, "feet"),
  5717. weight: math.unit(379, "lbs"),
  5718. name: "Side",
  5719. image: {
  5720. source: "./media/characters/chez/side.svg"
  5721. }
  5722. }
  5723. },
  5724. [
  5725. {
  5726. name: "Normal",
  5727. height: math.unit(7 + 9 / 12, "feet"),
  5728. default: true
  5729. },
  5730. {
  5731. name: "God King",
  5732. height: math.unit(9750000, "meters")
  5733. }
  5734. ]
  5735. ))
  5736. characterMakers.push(() => makeCharacter(
  5737. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5738. {
  5739. front: {
  5740. height: math.unit(6, "feet"),
  5741. weight: math.unit(275, "lbs"),
  5742. name: "Front",
  5743. image: {
  5744. source: "./media/characters/kaylum/front.svg",
  5745. bottom: 0.01,
  5746. extra: 1166 / 1031
  5747. }
  5748. },
  5749. frontWingless: {
  5750. height: math.unit(6, "feet"),
  5751. weight: math.unit(275, "lbs"),
  5752. name: "Front (Wingless)",
  5753. image: {
  5754. source: "./media/characters/kaylum/front-wingless.svg",
  5755. bottom: 0.01,
  5756. extra: 1117 / 1031
  5757. }
  5758. }
  5759. },
  5760. [
  5761. {
  5762. name: "Normal",
  5763. height: math.unit(3.05, "meters")
  5764. },
  5765. {
  5766. name: "Master",
  5767. height: math.unit(5.5, "meters")
  5768. },
  5769. {
  5770. name: "Rampage",
  5771. height: math.unit(19, "meters")
  5772. },
  5773. {
  5774. name: "Macro Lite",
  5775. height: math.unit(37, "meters")
  5776. },
  5777. {
  5778. name: "Hyper Predator",
  5779. height: math.unit(61, "meters")
  5780. },
  5781. {
  5782. name: "Macro",
  5783. height: math.unit(138, "meters"),
  5784. default: true
  5785. }
  5786. ]
  5787. ))
  5788. characterMakers.push(() => makeCharacter(
  5789. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5790. {
  5791. front: {
  5792. height: math.unit(5 + 5 / 12, "feet"),
  5793. weight: math.unit(120, "lbs"),
  5794. name: "Front",
  5795. image: {
  5796. source: "./media/characters/geta/front.svg",
  5797. extra: 1003/933,
  5798. bottom: 21/1024
  5799. }
  5800. },
  5801. paw: {
  5802. height: math.unit(0.35, "feet"),
  5803. name: "Paw",
  5804. image: {
  5805. source: "./media/characters/geta/paw.svg"
  5806. }
  5807. },
  5808. },
  5809. [
  5810. {
  5811. name: "Micro",
  5812. height: math.unit(3, "inches"),
  5813. default: true
  5814. },
  5815. {
  5816. name: "Normal",
  5817. height: math.unit(5 + 5 / 12, "feet")
  5818. }
  5819. ]
  5820. ))
  5821. characterMakers.push(() => makeCharacter(
  5822. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5823. {
  5824. front: {
  5825. height: math.unit(6, "feet"),
  5826. weight: math.unit(300, "lbs"),
  5827. name: "Front",
  5828. image: {
  5829. source: "./media/characters/tyrnn/front.svg"
  5830. }
  5831. }
  5832. },
  5833. [
  5834. {
  5835. name: "Main Height",
  5836. height: math.unit(355, "feet"),
  5837. default: true
  5838. },
  5839. {
  5840. name: "Fave. Height",
  5841. height: math.unit(2400, "feet")
  5842. }
  5843. ]
  5844. ))
  5845. characterMakers.push(() => makeCharacter(
  5846. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5847. {
  5848. front: {
  5849. height: math.unit(6, "feet"),
  5850. weight: math.unit(300, "lbs"),
  5851. name: "Front",
  5852. image: {
  5853. source: "./media/characters/appledectomy/front.svg"
  5854. }
  5855. }
  5856. },
  5857. [
  5858. {
  5859. name: "Macro",
  5860. height: math.unit(2500, "feet")
  5861. },
  5862. {
  5863. name: "Megamacro",
  5864. height: math.unit(50, "miles"),
  5865. default: true
  5866. },
  5867. {
  5868. name: "Gigamacro",
  5869. height: math.unit(5000, "miles")
  5870. },
  5871. {
  5872. name: "Teramacro",
  5873. height: math.unit(250000, "miles")
  5874. },
  5875. ]
  5876. ))
  5877. characterMakers.push(() => makeCharacter(
  5878. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5879. {
  5880. front: {
  5881. height: math.unit(6, "feet"),
  5882. weight: math.unit(200, "lbs"),
  5883. name: "Front",
  5884. image: {
  5885. source: "./media/characters/vulpes/front.svg",
  5886. extra: 573 / 543,
  5887. bottom: 0.033
  5888. }
  5889. },
  5890. side: {
  5891. height: math.unit(6, "feet"),
  5892. weight: math.unit(200, "lbs"),
  5893. name: "Side",
  5894. image: {
  5895. source: "./media/characters/vulpes/side.svg",
  5896. extra: 577 / 549,
  5897. bottom: 11 / 588
  5898. }
  5899. },
  5900. back: {
  5901. height: math.unit(6, "feet"),
  5902. weight: math.unit(200, "lbs"),
  5903. name: "Back",
  5904. image: {
  5905. source: "./media/characters/vulpes/back.svg",
  5906. extra: 573 / 549,
  5907. bottom: 20 / 593
  5908. }
  5909. },
  5910. feet: {
  5911. height: math.unit(1.276, "feet"),
  5912. name: "Feet",
  5913. image: {
  5914. source: "./media/characters/vulpes/feet.svg"
  5915. }
  5916. },
  5917. maw: {
  5918. height: math.unit(1.18, "feet"),
  5919. name: "Maw",
  5920. image: {
  5921. source: "./media/characters/vulpes/maw.svg"
  5922. }
  5923. },
  5924. },
  5925. [
  5926. {
  5927. name: "Micro",
  5928. height: math.unit(2, "inches")
  5929. },
  5930. {
  5931. name: "Normal",
  5932. height: math.unit(6.3, "feet")
  5933. },
  5934. {
  5935. name: "Macro",
  5936. height: math.unit(850, "feet")
  5937. },
  5938. {
  5939. name: "Megamacro",
  5940. height: math.unit(7500, "feet"),
  5941. default: true
  5942. },
  5943. {
  5944. name: "Gigamacro",
  5945. height: math.unit(570000, "miles")
  5946. }
  5947. ]
  5948. ))
  5949. characterMakers.push(() => makeCharacter(
  5950. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5951. {
  5952. front: {
  5953. height: math.unit(6, "feet"),
  5954. weight: math.unit(210, "lbs"),
  5955. name: "Front",
  5956. image: {
  5957. source: "./media/characters/rain-fallen/front.svg"
  5958. }
  5959. },
  5960. side: {
  5961. height: math.unit(6, "feet"),
  5962. weight: math.unit(210, "lbs"),
  5963. name: "Side",
  5964. image: {
  5965. source: "./media/characters/rain-fallen/side.svg"
  5966. }
  5967. },
  5968. back: {
  5969. height: math.unit(6, "feet"),
  5970. weight: math.unit(210, "lbs"),
  5971. name: "Back",
  5972. image: {
  5973. source: "./media/characters/rain-fallen/back.svg"
  5974. }
  5975. },
  5976. feral: {
  5977. height: math.unit(9, "feet"),
  5978. weight: math.unit(700, "lbs"),
  5979. name: "Feral",
  5980. image: {
  5981. source: "./media/characters/rain-fallen/feral.svg"
  5982. }
  5983. },
  5984. },
  5985. [
  5986. {
  5987. name: "Meddling with Mortals",
  5988. height: math.unit(8 + 8/12, "feet")
  5989. },
  5990. {
  5991. name: "Normal",
  5992. height: math.unit(5, "meter")
  5993. },
  5994. {
  5995. name: "Macro",
  5996. height: math.unit(150, "meter"),
  5997. default: true
  5998. },
  5999. {
  6000. name: "Megamacro",
  6001. height: math.unit(278e6, "meter")
  6002. },
  6003. {
  6004. name: "Gigamacro",
  6005. height: math.unit(2e9, "meter")
  6006. },
  6007. {
  6008. name: "Teramacro",
  6009. height: math.unit(8e12, "meter")
  6010. },
  6011. {
  6012. name: "Devourer",
  6013. height: math.unit(14, "zettameters")
  6014. },
  6015. {
  6016. name: "Scarlet King",
  6017. height: math.unit(18, "yottameters")
  6018. },
  6019. {
  6020. name: "Void",
  6021. height: math.unit(1e88, "yottameters")
  6022. }
  6023. ]
  6024. ))
  6025. characterMakers.push(() => makeCharacter(
  6026. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  6027. {
  6028. standing: {
  6029. height: math.unit(6, "feet"),
  6030. weight: math.unit(180, "lbs"),
  6031. name: "Standing",
  6032. image: {
  6033. source: "./media/characters/zaakira/standing.svg",
  6034. extra: 1599/1504,
  6035. bottom: 39/1638
  6036. }
  6037. },
  6038. laying: {
  6039. height: math.unit(3.3, "feet"),
  6040. weight: math.unit(180, "lbs"),
  6041. name: "Laying",
  6042. image: {
  6043. source: "./media/characters/zaakira/laying.svg"
  6044. }
  6045. },
  6046. },
  6047. [
  6048. {
  6049. name: "Normal",
  6050. height: math.unit(12, "feet")
  6051. },
  6052. {
  6053. name: "Macro",
  6054. height: math.unit(279, "feet"),
  6055. default: true
  6056. }
  6057. ]
  6058. ))
  6059. characterMakers.push(() => makeCharacter(
  6060. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  6061. {
  6062. femSfw: {
  6063. height: math.unit(8, "feet"),
  6064. weight: math.unit(350, "lb"),
  6065. name: "Fem",
  6066. image: {
  6067. source: "./media/characters/sigvald/fem-sfw.svg",
  6068. extra: 182 / 164,
  6069. bottom: 8.7 / 190.5
  6070. }
  6071. },
  6072. femNsfw: {
  6073. height: math.unit(8, "feet"),
  6074. weight: math.unit(350, "lb"),
  6075. name: "Fem (NSFW)",
  6076. image: {
  6077. source: "./media/characters/sigvald/fem-nsfw.svg",
  6078. extra: 182 / 164,
  6079. bottom: 8.7 / 190.5
  6080. }
  6081. },
  6082. maleNsfw: {
  6083. height: math.unit(8, "feet"),
  6084. weight: math.unit(350, "lb"),
  6085. name: "Male (NSFW)",
  6086. image: {
  6087. source: "./media/characters/sigvald/male-nsfw.svg",
  6088. extra: 182 / 164,
  6089. bottom: 8.7 / 190.5
  6090. }
  6091. },
  6092. hermNsfw: {
  6093. height: math.unit(8, "feet"),
  6094. weight: math.unit(350, "lb"),
  6095. name: "Herm (NSFW)",
  6096. image: {
  6097. source: "./media/characters/sigvald/herm-nsfw.svg",
  6098. extra: 182 / 164,
  6099. bottom: 8.7 / 190.5
  6100. }
  6101. },
  6102. dick: {
  6103. height: math.unit(2.36, "feet"),
  6104. name: "Dick",
  6105. image: {
  6106. source: "./media/characters/sigvald/dick.svg"
  6107. }
  6108. },
  6109. eye: {
  6110. height: math.unit(0.31, "feet"),
  6111. name: "Eye",
  6112. image: {
  6113. source: "./media/characters/sigvald/eye.svg"
  6114. }
  6115. },
  6116. mouth: {
  6117. height: math.unit(0.92, "feet"),
  6118. name: "Mouth",
  6119. image: {
  6120. source: "./media/characters/sigvald/mouth.svg"
  6121. }
  6122. },
  6123. paws: {
  6124. height: math.unit(2.2, "feet"),
  6125. name: "Paws",
  6126. image: {
  6127. source: "./media/characters/sigvald/paws.svg"
  6128. }
  6129. }
  6130. },
  6131. [
  6132. {
  6133. name: "Normal",
  6134. height: math.unit(8, "feet")
  6135. },
  6136. {
  6137. name: "Large",
  6138. height: math.unit(12, "feet")
  6139. },
  6140. {
  6141. name: "Larger",
  6142. height: math.unit(20, "feet")
  6143. },
  6144. {
  6145. name: "Macro",
  6146. height: math.unit(150, "feet")
  6147. },
  6148. {
  6149. name: "Macro+",
  6150. height: math.unit(200, "feet"),
  6151. default: true
  6152. },
  6153. ]
  6154. ))
  6155. characterMakers.push(() => makeCharacter(
  6156. { name: "Scott", species: ["fox"], tags: ["anthro", "taur"] },
  6157. {
  6158. anthro_front: {
  6159. height: math.unit(5 + 11/12, "feet"),
  6160. weight: math.unit(250, "lb"),
  6161. name: "Front",
  6162. image: {
  6163. source: "./media/characters/scott/anthro-front.svg",
  6164. extra: 851/781,
  6165. bottom: 54/905
  6166. },
  6167. form: "anthro",
  6168. default: true
  6169. },
  6170. anthro_side: {
  6171. height: math.unit(5.1, "feet"),
  6172. weight: math.unit(250, "lb"),
  6173. name: "Side",
  6174. image: {
  6175. source: "./media/characters/scott/anthro-side.svg"
  6176. },
  6177. form: "anthro",
  6178. },
  6179. anthro_dick: {
  6180. height: math.unit(1.33, "feet"),
  6181. name: "Dick",
  6182. image: {
  6183. source: "./media/characters/scott/anthro-dick.svg"
  6184. },
  6185. form: "anthro",
  6186. },
  6187. side: {
  6188. height: math.unit(12, "feet"),
  6189. weight: math.unit(2000, "kg"),
  6190. name: "Side",
  6191. image: {
  6192. source: "./media/characters/scott/side.svg",
  6193. extra: 754 / 724,
  6194. bottom: 0.069
  6195. },
  6196. form: "taur",
  6197. default: true
  6198. },
  6199. upright: {
  6200. height: math.unit(12, "feet"),
  6201. weight: math.unit(2000, "kg"),
  6202. name: "Upright",
  6203. image: {
  6204. source: "./media/characters/scott/upright.svg",
  6205. extra: 3881 / 3722,
  6206. bottom: 0.05
  6207. },
  6208. form: "taur",
  6209. },
  6210. },
  6211. [
  6212. {
  6213. name: "Normal",
  6214. height: math.unit(5 + 11/12, "feet"),
  6215. default: true,
  6216. form: "anthro"
  6217. },
  6218. {
  6219. name: "Normal",
  6220. height: math.unit(12, "feet"),
  6221. default: true,
  6222. form: "taur"
  6223. },
  6224. ],
  6225. {
  6226. "anthro": {
  6227. name: "Anthro",
  6228. default: true
  6229. },
  6230. "taur": {
  6231. name: "Taur",
  6232. },
  6233. }
  6234. ))
  6235. characterMakers.push(() => makeCharacter(
  6236. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  6237. {
  6238. side: {
  6239. height: math.unit(8, "meters"),
  6240. weight: math.unit(84755, "lbs"),
  6241. name: "Side",
  6242. image: {
  6243. source: "./media/characters/tobias/side.svg",
  6244. extra: 1474 / 1096,
  6245. bottom: 38.9 / 1513.1235
  6246. }
  6247. },
  6248. maw: {
  6249. height: math.unit(2.3, "meters"),
  6250. name: "Maw",
  6251. image: {
  6252. source: "./media/characters/tobias/maw.svg"
  6253. }
  6254. },
  6255. burp: {
  6256. height: math.unit(2.85, "meters"),
  6257. name: "Burp",
  6258. image: {
  6259. source: "./media/characters/tobias/burp.svg"
  6260. }
  6261. },
  6262. },
  6263. [
  6264. {
  6265. name: "Normal",
  6266. height: math.unit(8, "meters"),
  6267. default: true
  6268. },
  6269. ]
  6270. ))
  6271. characterMakers.push(() => makeCharacter(
  6272. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  6273. {
  6274. front: {
  6275. height: math.unit(5.5, "feet"),
  6276. weight: math.unit(400, "lbs"),
  6277. name: "Front",
  6278. image: {
  6279. source: "./media/characters/kieran/front.svg",
  6280. extra: 2694 / 2364,
  6281. bottom: 217 / 2908
  6282. }
  6283. },
  6284. side: {
  6285. height: math.unit(5.5, "feet"),
  6286. weight: math.unit(400, "lbs"),
  6287. name: "Side",
  6288. image: {
  6289. source: "./media/characters/kieran/side.svg",
  6290. extra: 875 / 777,
  6291. bottom: 84.6 / 959
  6292. }
  6293. },
  6294. },
  6295. [
  6296. {
  6297. name: "Normal",
  6298. height: math.unit(5.5, "feet"),
  6299. default: true
  6300. },
  6301. ]
  6302. ))
  6303. characterMakers.push(() => makeCharacter(
  6304. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  6305. {
  6306. side: {
  6307. height: math.unit(2, "meters"),
  6308. weight: math.unit(70, "kg"),
  6309. name: "Side",
  6310. image: {
  6311. source: "./media/characters/sanya/side.svg",
  6312. bottom: 0.02,
  6313. extra: 1.02
  6314. }
  6315. },
  6316. },
  6317. [
  6318. {
  6319. name: "Small",
  6320. height: math.unit(2, "meters")
  6321. },
  6322. {
  6323. name: "Normal",
  6324. height: math.unit(3, "meters")
  6325. },
  6326. {
  6327. name: "Macro",
  6328. height: math.unit(16, "meters"),
  6329. default: true
  6330. },
  6331. ]
  6332. ))
  6333. characterMakers.push(() => makeCharacter(
  6334. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  6335. {
  6336. front: {
  6337. height: math.unit(2, "meters"),
  6338. weight: math.unit(120, "kg"),
  6339. name: "Front",
  6340. image: {
  6341. source: "./media/characters/miranda/front.svg",
  6342. extra: 195 / 185,
  6343. bottom: 10.9 / 206.5
  6344. }
  6345. },
  6346. back: {
  6347. height: math.unit(2, "meters"),
  6348. weight: math.unit(120, "kg"),
  6349. name: "Back",
  6350. image: {
  6351. source: "./media/characters/miranda/back.svg",
  6352. extra: 201 / 193,
  6353. bottom: 2.3 / 203.7
  6354. }
  6355. },
  6356. },
  6357. [
  6358. {
  6359. name: "Normal",
  6360. height: math.unit(10, "feet"),
  6361. default: true
  6362. }
  6363. ]
  6364. ))
  6365. characterMakers.push(() => makeCharacter(
  6366. { name: "James", species: ["deer"], tags: ["anthro"] },
  6367. {
  6368. side: {
  6369. height: math.unit(2, "meters"),
  6370. weight: math.unit(100, "kg"),
  6371. name: "Front",
  6372. image: {
  6373. source: "./media/characters/james/front.svg",
  6374. extra: 10 / 8.5
  6375. }
  6376. },
  6377. },
  6378. [
  6379. {
  6380. name: "Normal",
  6381. height: math.unit(8.5, "feet"),
  6382. default: true
  6383. }
  6384. ]
  6385. ))
  6386. characterMakers.push(() => makeCharacter(
  6387. { name: "Heather", species: ["cow"], tags: ["taur"] },
  6388. {
  6389. side: {
  6390. height: math.unit(9.5, "feet"),
  6391. weight: math.unit(2500, "lbs"),
  6392. name: "Side",
  6393. image: {
  6394. source: "./media/characters/heather/side.svg"
  6395. }
  6396. },
  6397. },
  6398. [
  6399. {
  6400. name: "Normal",
  6401. height: math.unit(9.5, "feet"),
  6402. default: true
  6403. }
  6404. ]
  6405. ))
  6406. characterMakers.push(() => makeCharacter(
  6407. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  6408. {
  6409. side: {
  6410. height: math.unit(6.5, "feet"),
  6411. weight: math.unit(400, "lbs"),
  6412. name: "Side",
  6413. image: {
  6414. source: "./media/characters/lukas/side.svg",
  6415. extra: 7.25 / 6.5
  6416. }
  6417. },
  6418. },
  6419. [
  6420. {
  6421. name: "Normal",
  6422. height: math.unit(6.5, "feet"),
  6423. default: true
  6424. }
  6425. ]
  6426. ))
  6427. characterMakers.push(() => makeCharacter(
  6428. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  6429. {
  6430. side: {
  6431. height: math.unit(5, "feet"),
  6432. weight: math.unit(3000, "lbs"),
  6433. name: "Side",
  6434. image: {
  6435. source: "./media/characters/louise/side.svg"
  6436. }
  6437. },
  6438. },
  6439. [
  6440. {
  6441. name: "Normal",
  6442. height: math.unit(5, "feet"),
  6443. default: true
  6444. }
  6445. ]
  6446. ))
  6447. characterMakers.push(() => makeCharacter(
  6448. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6449. {
  6450. side: {
  6451. height: math.unit(6, "feet"),
  6452. weight: math.unit(150, "lbs"),
  6453. name: "Side",
  6454. image: {
  6455. source: "./media/characters/ramona/side.svg",
  6456. extra: 871/854,
  6457. bottom: 41/912
  6458. }
  6459. },
  6460. },
  6461. [
  6462. {
  6463. name: "Normal",
  6464. height: math.unit(6 + 4/12, "feet")
  6465. },
  6466. {
  6467. name: "Minimacro",
  6468. height: math.unit(5.3, "meters"),
  6469. default: true
  6470. },
  6471. {
  6472. name: "Macro",
  6473. height: math.unit(20, "stories")
  6474. },
  6475. {
  6476. name: "Macro+",
  6477. height: math.unit(50, "stories")
  6478. },
  6479. ]
  6480. ))
  6481. characterMakers.push(() => makeCharacter(
  6482. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6483. {
  6484. standing: {
  6485. height: math.unit(5.75, "feet"),
  6486. weight: math.unit(160, "lbs"),
  6487. name: "Standing",
  6488. image: {
  6489. source: "./media/characters/deerpuff/standing.svg",
  6490. extra: 682 / 624
  6491. }
  6492. },
  6493. sitting: {
  6494. height: math.unit(5.75 / 1.79, "feet"),
  6495. weight: math.unit(160, "lbs"),
  6496. name: "Sitting",
  6497. image: {
  6498. source: "./media/characters/deerpuff/sitting.svg",
  6499. bottom: 44 / 400,
  6500. extra: 1
  6501. }
  6502. },
  6503. taurLaying: {
  6504. height: math.unit(6, "feet"),
  6505. weight: math.unit(400, "lbs"),
  6506. name: "Taur (Laying)",
  6507. image: {
  6508. source: "./media/characters/deerpuff/taur-laying.svg"
  6509. }
  6510. },
  6511. },
  6512. [
  6513. {
  6514. name: "Puffball",
  6515. height: math.unit(6, "inches")
  6516. },
  6517. {
  6518. name: "Normalpuff",
  6519. height: math.unit(5.75, "feet")
  6520. },
  6521. {
  6522. name: "Macropuff",
  6523. height: math.unit(1500, "feet"),
  6524. default: true
  6525. },
  6526. {
  6527. name: "Megapuff",
  6528. height: math.unit(500, "miles")
  6529. },
  6530. {
  6531. name: "Gigapuff",
  6532. height: math.unit(250000, "miles")
  6533. },
  6534. {
  6535. name: "Omegapuff",
  6536. height: math.unit(1000, "lightyears")
  6537. },
  6538. ]
  6539. ))
  6540. characterMakers.push(() => makeCharacter(
  6541. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6542. {
  6543. stomping: {
  6544. height: math.unit(6, "feet"),
  6545. weight: math.unit(170, "lbs"),
  6546. name: "Stomping",
  6547. image: {
  6548. source: "./media/characters/vivian/stomping.svg"
  6549. }
  6550. },
  6551. sitting: {
  6552. height: math.unit(6 / 1.75, "feet"),
  6553. weight: math.unit(170, "lbs"),
  6554. name: "Sitting",
  6555. image: {
  6556. source: "./media/characters/vivian/sitting.svg",
  6557. bottom: 1 / 6.4,
  6558. extra: 1,
  6559. }
  6560. },
  6561. },
  6562. [
  6563. {
  6564. name: "Normal",
  6565. height: math.unit(7, "feet"),
  6566. default: true
  6567. },
  6568. {
  6569. name: "Macro",
  6570. height: math.unit(10, "stories")
  6571. },
  6572. {
  6573. name: "Macro+",
  6574. height: math.unit(30, "stories")
  6575. },
  6576. {
  6577. name: "Megamacro",
  6578. height: math.unit(10, "miles")
  6579. },
  6580. {
  6581. name: "Megamacro+",
  6582. height: math.unit(2750000, "meters")
  6583. },
  6584. ]
  6585. ))
  6586. characterMakers.push(() => makeCharacter(
  6587. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6588. {
  6589. front: {
  6590. height: math.unit(6, "feet"),
  6591. weight: math.unit(160, "lbs"),
  6592. name: "Front",
  6593. image: {
  6594. source: "./media/characters/prince/front.svg",
  6595. extra: 1938/1682,
  6596. bottom: 45/1983
  6597. }
  6598. },
  6599. back: {
  6600. height: math.unit(6, "feet"),
  6601. weight: math.unit(160, "lbs"),
  6602. name: "Back",
  6603. image: {
  6604. source: "./media/characters/prince/back.svg",
  6605. extra: 1955/1726,
  6606. bottom: 6/1961
  6607. }
  6608. },
  6609. },
  6610. [
  6611. {
  6612. name: "Normal",
  6613. height: math.unit(7.75, "feet"),
  6614. default: true
  6615. },
  6616. {
  6617. name: "Not cute",
  6618. height: math.unit(17, "feet")
  6619. },
  6620. {
  6621. name: "I said NOT",
  6622. height: math.unit(91, "feet")
  6623. },
  6624. {
  6625. name: "Please stop",
  6626. height: math.unit(560, "feet")
  6627. },
  6628. {
  6629. name: "What have you done",
  6630. height: math.unit(2200, "feet")
  6631. },
  6632. {
  6633. name: "Deer God",
  6634. height: math.unit(3.6, "miles")
  6635. },
  6636. ]
  6637. ))
  6638. characterMakers.push(() => makeCharacter(
  6639. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6640. {
  6641. standing: {
  6642. height: math.unit(6, "feet"),
  6643. weight: math.unit(300, "lbs"),
  6644. name: "Standing",
  6645. image: {
  6646. source: "./media/characters/psymon/standing.svg",
  6647. extra: 1888 / 1810,
  6648. bottom: 0.05
  6649. }
  6650. },
  6651. slithering: {
  6652. height: math.unit(6, "feet"),
  6653. weight: math.unit(300, "lbs"),
  6654. name: "Slithering",
  6655. image: {
  6656. source: "./media/characters/psymon/slithering.svg",
  6657. extra: 1330 / 1224
  6658. }
  6659. },
  6660. slitheringAlt: {
  6661. height: math.unit(6, "feet"),
  6662. weight: math.unit(300, "lbs"),
  6663. name: "Slithering (Alt)",
  6664. image: {
  6665. source: "./media/characters/psymon/slithering-alt.svg",
  6666. extra: 1330 / 1224
  6667. }
  6668. },
  6669. },
  6670. [
  6671. {
  6672. name: "Normal",
  6673. height: math.unit(11.25, "feet"),
  6674. default: true
  6675. },
  6676. {
  6677. name: "Large",
  6678. height: math.unit(27, "feet")
  6679. },
  6680. {
  6681. name: "Giant",
  6682. height: math.unit(87, "feet")
  6683. },
  6684. {
  6685. name: "Macro",
  6686. height: math.unit(365, "feet")
  6687. },
  6688. {
  6689. name: "Megamacro",
  6690. height: math.unit(3, "miles")
  6691. },
  6692. {
  6693. name: "World Serpent",
  6694. height: math.unit(8000, "miles")
  6695. },
  6696. ]
  6697. ))
  6698. characterMakers.push(() => makeCharacter(
  6699. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6700. {
  6701. front: {
  6702. height: math.unit(6, "feet"),
  6703. weight: math.unit(180, "lbs"),
  6704. name: "Front",
  6705. image: {
  6706. source: "./media/characters/daimos/front.svg",
  6707. extra: 4160 / 3897,
  6708. bottom: 0.021
  6709. }
  6710. }
  6711. },
  6712. [
  6713. {
  6714. name: "Normal",
  6715. height: math.unit(8, "feet"),
  6716. default: true
  6717. },
  6718. {
  6719. name: "Big Dog",
  6720. height: math.unit(22, "feet")
  6721. },
  6722. {
  6723. name: "Macro",
  6724. height: math.unit(127, "feet")
  6725. },
  6726. {
  6727. name: "Megamacro",
  6728. height: math.unit(3600, "feet")
  6729. },
  6730. ]
  6731. ))
  6732. characterMakers.push(() => makeCharacter(
  6733. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6734. {
  6735. side: {
  6736. height: math.unit(6, "feet"),
  6737. weight: math.unit(180, "lbs"),
  6738. name: "Side",
  6739. image: {
  6740. source: "./media/characters/blake/side.svg",
  6741. extra: 1212 / 1120,
  6742. bottom: 0.05
  6743. }
  6744. },
  6745. crouched: {
  6746. height: math.unit(6 * 0.57, "feet"),
  6747. weight: math.unit(180, "lbs"),
  6748. name: "Crouched",
  6749. image: {
  6750. source: "./media/characters/blake/crouched.svg",
  6751. extra: 840 / 587,
  6752. bottom: 0.04
  6753. }
  6754. },
  6755. bent: {
  6756. height: math.unit(6 * 0.75, "feet"),
  6757. weight: math.unit(180, "lbs"),
  6758. name: "Bent",
  6759. image: {
  6760. source: "./media/characters/blake/bent.svg",
  6761. extra: 592 / 544,
  6762. bottom: 0.035
  6763. }
  6764. },
  6765. },
  6766. [
  6767. {
  6768. name: "Normal",
  6769. height: math.unit(8 + 1 / 6, "feet"),
  6770. default: true
  6771. },
  6772. {
  6773. name: "Big Backside",
  6774. height: math.unit(37, "feet")
  6775. },
  6776. {
  6777. name: "Subway Shredder",
  6778. height: math.unit(72, "feet")
  6779. },
  6780. {
  6781. name: "City Carver",
  6782. height: math.unit(1675, "feet")
  6783. },
  6784. {
  6785. name: "Tectonic Tweaker",
  6786. height: math.unit(2300, "miles")
  6787. },
  6788. ]
  6789. ))
  6790. characterMakers.push(() => makeCharacter(
  6791. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6792. {
  6793. front: {
  6794. height: math.unit(6, "feet"),
  6795. weight: math.unit(180, "lbs"),
  6796. name: "Front",
  6797. image: {
  6798. source: "./media/characters/guisetto/front.svg",
  6799. extra: 856 / 817,
  6800. bottom: 0.06
  6801. }
  6802. },
  6803. airborne: {
  6804. height: math.unit(6, "feet"),
  6805. weight: math.unit(180, "lbs"),
  6806. name: "Airborne",
  6807. image: {
  6808. source: "./media/characters/guisetto/airborne.svg",
  6809. extra: 584 / 525
  6810. }
  6811. },
  6812. },
  6813. [
  6814. {
  6815. name: "Normal",
  6816. height: math.unit(10 + 11 / 12, "feet"),
  6817. default: true
  6818. },
  6819. {
  6820. name: "Large",
  6821. height: math.unit(35, "feet")
  6822. },
  6823. {
  6824. name: "Macro",
  6825. height: math.unit(475, "feet")
  6826. },
  6827. ]
  6828. ))
  6829. characterMakers.push(() => makeCharacter(
  6830. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6831. {
  6832. front: {
  6833. height: math.unit(6, "feet"),
  6834. weight: math.unit(180, "lbs"),
  6835. name: "Front",
  6836. image: {
  6837. source: "./media/characters/luxor/front.svg",
  6838. extra: 2940 / 2152
  6839. }
  6840. },
  6841. back: {
  6842. height: math.unit(6, "feet"),
  6843. weight: math.unit(180, "lbs"),
  6844. name: "Back",
  6845. image: {
  6846. source: "./media/characters/luxor/back.svg",
  6847. extra: 1083 / 960
  6848. }
  6849. },
  6850. },
  6851. [
  6852. {
  6853. name: "Normal",
  6854. height: math.unit(5 + 5 / 6, "feet"),
  6855. default: true
  6856. },
  6857. {
  6858. name: "Lamp",
  6859. height: math.unit(50, "feet")
  6860. },
  6861. {
  6862. name: "Lämp",
  6863. height: math.unit(300, "feet")
  6864. },
  6865. {
  6866. name: "The sun is a lamp",
  6867. height: math.unit(250000, "miles")
  6868. },
  6869. ]
  6870. ))
  6871. characterMakers.push(() => makeCharacter(
  6872. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6873. {
  6874. front: {
  6875. height: math.unit(6, "feet"),
  6876. weight: math.unit(50, "lbs"),
  6877. name: "Front",
  6878. image: {
  6879. source: "./media/characters/huoyan/front.svg"
  6880. }
  6881. },
  6882. side: {
  6883. height: math.unit(6, "feet"),
  6884. weight: math.unit(180, "lbs"),
  6885. name: "Side",
  6886. image: {
  6887. source: "./media/characters/huoyan/side.svg"
  6888. }
  6889. },
  6890. },
  6891. [
  6892. {
  6893. name: "Chef",
  6894. height: math.unit(9, "feet")
  6895. },
  6896. {
  6897. name: "Normal",
  6898. height: math.unit(65, "feet"),
  6899. default: true
  6900. },
  6901. {
  6902. name: "Macro",
  6903. height: math.unit(780, "feet")
  6904. },
  6905. {
  6906. name: "Flaming Mountain",
  6907. height: math.unit(4.8, "miles")
  6908. },
  6909. {
  6910. name: "Celestial",
  6911. height: math.unit(765000, "miles")
  6912. },
  6913. ]
  6914. ))
  6915. characterMakers.push(() => makeCharacter(
  6916. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6917. {
  6918. front: {
  6919. height: math.unit(5 + 3 / 4, "feet"),
  6920. weight: math.unit(120, "lbs"),
  6921. name: "Front",
  6922. image: {
  6923. source: "./media/characters/tails/front.svg"
  6924. }
  6925. }
  6926. },
  6927. [
  6928. {
  6929. name: "Normal",
  6930. height: math.unit(5 + 3 / 4, "feet"),
  6931. default: true
  6932. }
  6933. ]
  6934. ))
  6935. characterMakers.push(() => makeCharacter(
  6936. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6937. {
  6938. front: {
  6939. height: math.unit(4, "feet"),
  6940. weight: math.unit(50, "lbs"),
  6941. name: "Front",
  6942. image: {
  6943. source: "./media/characters/rainy/front.svg"
  6944. }
  6945. }
  6946. },
  6947. [
  6948. {
  6949. name: "Macro",
  6950. height: math.unit(800, "feet"),
  6951. default: true
  6952. }
  6953. ]
  6954. ))
  6955. characterMakers.push(() => makeCharacter(
  6956. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6957. {
  6958. front: {
  6959. height: math.unit(6, "feet"),
  6960. weight: math.unit(150, "lbs"),
  6961. name: "Front",
  6962. image: {
  6963. source: "./media/characters/rainier/front.svg"
  6964. }
  6965. }
  6966. },
  6967. [
  6968. {
  6969. name: "Micro",
  6970. height: math.unit(2, "mm"),
  6971. default: true
  6972. }
  6973. ]
  6974. ))
  6975. characterMakers.push(() => makeCharacter(
  6976. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6977. {
  6978. front: {
  6979. height: math.unit(8 + 4/12, "feet"),
  6980. weight: math.unit(450, "kilograms"),
  6981. name: "Front",
  6982. image: {
  6983. source: "./media/characters/andy-renard/front.svg",
  6984. extra: 862/809,
  6985. bottom: 85/947
  6986. },
  6987. extraAttributes: {
  6988. "pawSize": {
  6989. name: "Paw Size",
  6990. power: 2,
  6991. type: "area",
  6992. base: math.unit(0.45*0.3, "meters^2")
  6993. },
  6994. "handSize": {
  6995. name: "Hand Size",
  6996. power: 2,
  6997. type: "area",
  6998. base: math.unit(0.4 * 0.3, "meters^2")
  6999. },
  7000. "cockSize": {
  7001. name: "Cock Length",
  7002. power: 1,
  7003. type: "length",
  7004. base: math.unit(0.75, "meters")
  7005. },
  7006. "ballDiameter": {
  7007. name: "Ball Diameter",
  7008. power: 1,
  7009. type: "length",
  7010. base: math.unit(0.3, "meters")
  7011. },
  7012. "ballVolume": {
  7013. name: "Ball Volume",
  7014. power: 3,
  7015. type: "volume",
  7016. base: math.unit(0.01413716694, "meters^3")
  7017. },
  7018. }
  7019. },
  7020. back: {
  7021. height: math.unit(8 + 4/12, "feet"),
  7022. weight: math.unit(450, "kilograms"),
  7023. name: "Back",
  7024. image: {
  7025. source: "./media/characters/andy-renard/back.svg",
  7026. extra: 1112/1033,
  7027. bottom: 64/1176
  7028. },
  7029. extraAttributes: {
  7030. "pawSize": {
  7031. name: "Paw Size",
  7032. power: 2,
  7033. type: "area",
  7034. base: math.unit(0.45*0.3, "meters^2")
  7035. },
  7036. "handSize": {
  7037. name: "Hand Size",
  7038. power: 2,
  7039. type: "area",
  7040. base: math.unit(0.4 * 0.3, "meters^2")
  7041. },
  7042. "cockSize": {
  7043. name: "Cock Length",
  7044. power: 1,
  7045. type: "length",
  7046. base: math.unit(0.75, "meters")
  7047. },
  7048. "ballDiameter": {
  7049. name: "Ball Diameter",
  7050. power: 1,
  7051. type: "length",
  7052. base: math.unit(0.3, "meters")
  7053. },
  7054. "ballVolume": {
  7055. name: "Ball Volume",
  7056. power: 3,
  7057. type: "volume",
  7058. base: math.unit(0.01413716694, "meters^3")
  7059. },
  7060. }
  7061. },
  7062. },
  7063. [
  7064. {
  7065. name: "Tall",
  7066. height: math.unit(6 + 8/12, "feet")
  7067. },
  7068. {
  7069. name: "Very Tall",
  7070. height: math.unit(8 + 4/12, "feet")
  7071. },
  7072. {
  7073. name: "Mini Macro",
  7074. height: math.unit(15, "feet"),
  7075. default: true
  7076. },
  7077. {
  7078. name: "Giant",
  7079. height: math.unit(50, "feet")
  7080. },
  7081. {
  7082. name: "Nice",
  7083. height: math.unit(69, "feet")
  7084. },
  7085. {
  7086. name: "Macro",
  7087. height: math.unit(100, "feet")
  7088. },
  7089. {
  7090. name: "Enormous",
  7091. height: math.unit(500, "feet")
  7092. },
  7093. {
  7094. name: "Gargantuan",
  7095. height: math.unit(1000, "feet")
  7096. },
  7097. {
  7098. name: "Mega",
  7099. height: math.unit(1, "mile")
  7100. },
  7101. {
  7102. name: "Giga",
  7103. height: math.unit(50, "miles")
  7104. },
  7105. {
  7106. name: "Tera",
  7107. height: math.unit(1000, "miles")
  7108. },
  7109. {
  7110. name: "Cosmic",
  7111. height: math.unit(1.5, "galaxies")
  7112. },
  7113. {
  7114. name: "God",
  7115. height: math.unit(1.5, "universes")
  7116. },
  7117. {
  7118. name: "Chief Execute God",
  7119. height: math.unit(1.5, "multiverses")
  7120. },
  7121. ]
  7122. ))
  7123. characterMakers.push(() => makeCharacter(
  7124. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  7125. {
  7126. front: {
  7127. height: math.unit(6, "feet"),
  7128. weight: math.unit(210, "lbs"),
  7129. name: "Front",
  7130. image: {
  7131. source: "./media/characters/cimmaron/front-sfw.svg",
  7132. extra: 701 / 676,
  7133. bottom: 0.046
  7134. }
  7135. },
  7136. back: {
  7137. height: math.unit(6, "feet"),
  7138. weight: math.unit(210, "lbs"),
  7139. name: "Back",
  7140. image: {
  7141. source: "./media/characters/cimmaron/back-sfw.svg",
  7142. extra: 701 / 676,
  7143. bottom: 0.046
  7144. }
  7145. },
  7146. frontNsfw: {
  7147. height: math.unit(6, "feet"),
  7148. weight: math.unit(210, "lbs"),
  7149. name: "Front (NSFW)",
  7150. image: {
  7151. source: "./media/characters/cimmaron/front-nsfw.svg",
  7152. extra: 701 / 676,
  7153. bottom: 0.046
  7154. }
  7155. },
  7156. backNsfw: {
  7157. height: math.unit(6, "feet"),
  7158. weight: math.unit(210, "lbs"),
  7159. name: "Back (NSFW)",
  7160. image: {
  7161. source: "./media/characters/cimmaron/back-nsfw.svg",
  7162. extra: 701 / 676,
  7163. bottom: 0.046
  7164. }
  7165. },
  7166. dick: {
  7167. height: math.unit(1.714, "feet"),
  7168. name: "Dick",
  7169. image: {
  7170. source: "./media/characters/cimmaron/dick.svg"
  7171. }
  7172. },
  7173. },
  7174. [
  7175. {
  7176. name: "Normal",
  7177. height: math.unit(6, "feet"),
  7178. default: true
  7179. },
  7180. {
  7181. name: "Macro Mayor",
  7182. height: math.unit(350, "meters")
  7183. },
  7184. ]
  7185. ))
  7186. characterMakers.push(() => makeCharacter(
  7187. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  7188. {
  7189. front: {
  7190. height: math.unit(6, "feet"),
  7191. weight: math.unit(200, "lbs"),
  7192. name: "Front",
  7193. image: {
  7194. source: "./media/characters/akari/front.svg",
  7195. extra: 962 / 901,
  7196. bottom: 0.04
  7197. }
  7198. }
  7199. },
  7200. [
  7201. {
  7202. name: "Micro",
  7203. height: math.unit(5, "inches"),
  7204. default: true
  7205. },
  7206. {
  7207. name: "Normal",
  7208. height: math.unit(7, "feet")
  7209. },
  7210. ]
  7211. ))
  7212. characterMakers.push(() => makeCharacter(
  7213. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  7214. {
  7215. front: {
  7216. height: math.unit(6, "feet"),
  7217. weight: math.unit(140, "lbs"),
  7218. name: "Front",
  7219. image: {
  7220. source: "./media/characters/cynosura/front.svg",
  7221. extra: 437/410,
  7222. bottom: 9/446
  7223. }
  7224. },
  7225. back: {
  7226. height: math.unit(6, "feet"),
  7227. weight: math.unit(140, "lbs"),
  7228. name: "Back",
  7229. image: {
  7230. source: "./media/characters/cynosura/back.svg",
  7231. extra: 1304/1160,
  7232. bottom: 71/1375
  7233. }
  7234. },
  7235. },
  7236. [
  7237. {
  7238. name: "Micro",
  7239. height: math.unit(4, "inches")
  7240. },
  7241. {
  7242. name: "Normal",
  7243. height: math.unit(5.75, "feet"),
  7244. default: true
  7245. },
  7246. {
  7247. name: "Tall",
  7248. height: math.unit(10, "feet")
  7249. },
  7250. {
  7251. name: "Big",
  7252. height: math.unit(20, "feet")
  7253. },
  7254. {
  7255. name: "Macro",
  7256. height: math.unit(50, "feet")
  7257. },
  7258. ]
  7259. ))
  7260. characterMakers.push(() => makeCharacter(
  7261. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  7262. {
  7263. front: {
  7264. height: math.unit(13 + 2/12, "feet"),
  7265. weight: math.unit(800, "kg"),
  7266. name: "Front",
  7267. image: {
  7268. source: "./media/characters/gin/front.svg",
  7269. extra: 1312/1191,
  7270. bottom: 45/1357
  7271. }
  7272. },
  7273. mouth: {
  7274. height: math.unit(2.39 * 1.8, "feet"),
  7275. name: "Mouth",
  7276. image: {
  7277. source: "./media/characters/gin/mouth.svg"
  7278. }
  7279. },
  7280. hand: {
  7281. height: math.unit(1.57 * 2.19, "feet"),
  7282. name: "Hand",
  7283. image: {
  7284. source: "./media/characters/gin/hand.svg"
  7285. }
  7286. },
  7287. foot: {
  7288. height: math.unit(6 / 4.25 * 2.19, "feet"),
  7289. name: "Foot",
  7290. image: {
  7291. source: "./media/characters/gin/foot.svg"
  7292. }
  7293. },
  7294. sole: {
  7295. height: math.unit(6 / 4.40 * 2.19, "feet"),
  7296. name: "Sole",
  7297. image: {
  7298. source: "./media/characters/gin/sole.svg"
  7299. }
  7300. },
  7301. },
  7302. [
  7303. {
  7304. name: "Very Small",
  7305. height: math.unit(13 + 2 / 12, "feet")
  7306. },
  7307. {
  7308. name: "Micro",
  7309. height: math.unit(600, "miles")
  7310. },
  7311. {
  7312. name: "Regular",
  7313. height: math.unit(20, "earths"),
  7314. default: true
  7315. },
  7316. {
  7317. name: "Macro",
  7318. height: math.unit(2.2, "solarradii")
  7319. },
  7320. {
  7321. name: "Teramacro",
  7322. height: math.unit(1.2, "galaxies")
  7323. },
  7324. {
  7325. name: "Omegamacro",
  7326. height: math.unit(200, "universes")
  7327. },
  7328. ]
  7329. ))
  7330. characterMakers.push(() => makeCharacter(
  7331. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  7332. {
  7333. front: {
  7334. height: math.unit(6 + 1 / 6, "feet"),
  7335. weight: math.unit(178, "lbs"),
  7336. name: "Front",
  7337. image: {
  7338. source: "./media/characters/guy/front.svg"
  7339. }
  7340. }
  7341. },
  7342. [
  7343. {
  7344. name: "Normal",
  7345. height: math.unit(6 + 1 / 6, "feet"),
  7346. default: true
  7347. },
  7348. {
  7349. name: "Large",
  7350. height: math.unit(25 + 7 / 12, "feet")
  7351. },
  7352. {
  7353. name: "Macro",
  7354. height: math.unit(60 + 9 / 12, "feet")
  7355. },
  7356. {
  7357. name: "Macro+",
  7358. height: math.unit(246, "feet")
  7359. },
  7360. {
  7361. name: "Macro++",
  7362. height: math.unit(878, "feet")
  7363. }
  7364. ]
  7365. ))
  7366. characterMakers.push(() => makeCharacter(
  7367. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  7368. {
  7369. front: {
  7370. height: math.unit(9, "feet"),
  7371. weight: math.unit(800, "lbs"),
  7372. name: "Front",
  7373. image: {
  7374. source: "./media/characters/tiberius/front.svg",
  7375. extra: 2295 / 2071
  7376. }
  7377. },
  7378. back: {
  7379. height: math.unit(9, "feet"),
  7380. weight: math.unit(800, "lbs"),
  7381. name: "Back",
  7382. image: {
  7383. source: "./media/characters/tiberius/back.svg",
  7384. extra: 2373 / 2160
  7385. }
  7386. },
  7387. },
  7388. [
  7389. {
  7390. name: "Normal",
  7391. height: math.unit(9, "feet"),
  7392. default: true
  7393. }
  7394. ]
  7395. ))
  7396. characterMakers.push(() => makeCharacter(
  7397. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  7398. {
  7399. front: {
  7400. height: math.unit(6, "feet"),
  7401. weight: math.unit(600, "lbs"),
  7402. name: "Front",
  7403. image: {
  7404. source: "./media/characters/surgo/front.svg",
  7405. extra: 3591 / 2227
  7406. }
  7407. },
  7408. back: {
  7409. height: math.unit(6, "feet"),
  7410. weight: math.unit(600, "lbs"),
  7411. name: "Back",
  7412. image: {
  7413. source: "./media/characters/surgo/back.svg",
  7414. extra: 3557 / 2228
  7415. }
  7416. },
  7417. laying: {
  7418. height: math.unit(6 * 0.85, "feet"),
  7419. weight: math.unit(600, "lbs"),
  7420. name: "Laying",
  7421. image: {
  7422. source: "./media/characters/surgo/laying.svg"
  7423. }
  7424. },
  7425. },
  7426. [
  7427. {
  7428. name: "Normal",
  7429. height: math.unit(6, "feet"),
  7430. default: true
  7431. }
  7432. ]
  7433. ))
  7434. characterMakers.push(() => makeCharacter(
  7435. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  7436. {
  7437. side: {
  7438. height: math.unit(6, "feet"),
  7439. weight: math.unit(150, "lbs"),
  7440. name: "Side",
  7441. image: {
  7442. source: "./media/characters/cibus/side.svg",
  7443. extra: 800 / 400
  7444. }
  7445. },
  7446. },
  7447. [
  7448. {
  7449. name: "Normal",
  7450. height: math.unit(6, "feet"),
  7451. default: true
  7452. }
  7453. ]
  7454. ))
  7455. characterMakers.push(() => makeCharacter(
  7456. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  7457. {
  7458. front: {
  7459. height: math.unit(6, "feet"),
  7460. weight: math.unit(240, "lbs"),
  7461. name: "Front",
  7462. image: {
  7463. source: "./media/characters/nibbles/front.svg"
  7464. }
  7465. },
  7466. side: {
  7467. height: math.unit(6, "feet"),
  7468. weight: math.unit(240, "lbs"),
  7469. name: "Side",
  7470. image: {
  7471. source: "./media/characters/nibbles/side.svg"
  7472. }
  7473. },
  7474. },
  7475. [
  7476. {
  7477. name: "Normal",
  7478. height: math.unit(9, "feet"),
  7479. default: true
  7480. }
  7481. ]
  7482. ))
  7483. characterMakers.push(() => makeCharacter(
  7484. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  7485. {
  7486. side: {
  7487. height: math.unit(5 + 1 / 6, "feet"),
  7488. weight: math.unit(130, "lbs"),
  7489. name: "Side",
  7490. image: {
  7491. source: "./media/characters/rikky/side.svg",
  7492. extra: 851 / 801
  7493. }
  7494. },
  7495. },
  7496. [
  7497. {
  7498. name: "Normal",
  7499. height: math.unit(5 + 1 / 6, "feet")
  7500. },
  7501. {
  7502. name: "Macro",
  7503. height: math.unit(152, "feet"),
  7504. default: true
  7505. },
  7506. {
  7507. name: "Megamacro",
  7508. height: math.unit(7, "miles")
  7509. }
  7510. ]
  7511. ))
  7512. characterMakers.push(() => makeCharacter(
  7513. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  7514. {
  7515. side: {
  7516. height: math.unit(370, "cm"),
  7517. weight: math.unit(350, "lbs"),
  7518. name: "Side",
  7519. image: {
  7520. source: "./media/characters/malfressa/side.svg"
  7521. }
  7522. },
  7523. walking: {
  7524. height: math.unit(370, "cm"),
  7525. weight: math.unit(350, "lbs"),
  7526. name: "Walking",
  7527. image: {
  7528. source: "./media/characters/malfressa/walking.svg"
  7529. }
  7530. },
  7531. feral: {
  7532. height: math.unit(2500, "cm"),
  7533. weight: math.unit(100000, "lbs"),
  7534. name: "Feral",
  7535. image: {
  7536. source: "./media/characters/malfressa/feral.svg",
  7537. extra: 2108 / 837,
  7538. bottom: 0.02
  7539. }
  7540. },
  7541. },
  7542. [
  7543. {
  7544. name: "Normal",
  7545. height: math.unit(370, "cm")
  7546. },
  7547. {
  7548. name: "Macro",
  7549. height: math.unit(300, "meters"),
  7550. default: true
  7551. }
  7552. ]
  7553. ))
  7554. characterMakers.push(() => makeCharacter(
  7555. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7556. {
  7557. front: {
  7558. height: math.unit(6, "feet"),
  7559. weight: math.unit(60, "kg"),
  7560. name: "Front",
  7561. image: {
  7562. source: "./media/characters/jaro/front.svg",
  7563. extra: 845/817,
  7564. bottom: 45/890
  7565. }
  7566. },
  7567. back: {
  7568. height: math.unit(6, "feet"),
  7569. weight: math.unit(60, "kg"),
  7570. name: "Back",
  7571. image: {
  7572. source: "./media/characters/jaro/back.svg",
  7573. extra: 847/817,
  7574. bottom: 34/881
  7575. }
  7576. },
  7577. },
  7578. [
  7579. {
  7580. name: "Micro",
  7581. height: math.unit(7, "inches")
  7582. },
  7583. {
  7584. name: "Normal",
  7585. height: math.unit(5.5, "feet"),
  7586. default: true
  7587. },
  7588. {
  7589. name: "Minimacro",
  7590. height: math.unit(20, "feet")
  7591. },
  7592. {
  7593. name: "Macro",
  7594. height: math.unit(200, "meters")
  7595. }
  7596. ]
  7597. ))
  7598. characterMakers.push(() => makeCharacter(
  7599. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7600. {
  7601. front: {
  7602. height: math.unit(6, "feet"),
  7603. weight: math.unit(195, "lb"),
  7604. name: "Front",
  7605. image: {
  7606. source: "./media/characters/rogue/front.svg"
  7607. }
  7608. },
  7609. },
  7610. [
  7611. {
  7612. name: "Macro",
  7613. height: math.unit(90, "feet"),
  7614. default: true
  7615. },
  7616. ]
  7617. ))
  7618. characterMakers.push(() => makeCharacter(
  7619. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7620. {
  7621. standing: {
  7622. height: math.unit(5 + 8 / 12, "feet"),
  7623. weight: math.unit(140, "lb"),
  7624. name: "Standing",
  7625. image: {
  7626. source: "./media/characters/piper/standing.svg",
  7627. extra: 1440/1284,
  7628. bottom: 66/1506
  7629. }
  7630. },
  7631. running: {
  7632. height: math.unit(5 + 8 / 12, "feet"),
  7633. weight: math.unit(140, "lb"),
  7634. name: "Running",
  7635. image: {
  7636. source: "./media/characters/piper/running.svg",
  7637. extra: 3948/3655,
  7638. bottom: 0/3948
  7639. }
  7640. },
  7641. sole: {
  7642. height: math.unit(0.81, "feet"),
  7643. weight: math.unit(2, "kg"),
  7644. name: "Sole",
  7645. image: {
  7646. source: "./media/characters/piper/sole.svg"
  7647. }
  7648. },
  7649. nipple: {
  7650. height: math.unit(0.25, "feet"),
  7651. weight: math.unit(1.5, "lb"),
  7652. name: "Nipple",
  7653. image: {
  7654. source: "./media/characters/piper/nipple.svg"
  7655. }
  7656. },
  7657. head: {
  7658. height: math.unit(1.1, "feet"),
  7659. name: "Head",
  7660. image: {
  7661. source: "./media/characters/piper/head.svg"
  7662. }
  7663. },
  7664. },
  7665. [
  7666. {
  7667. name: "Micro",
  7668. height: math.unit(2, "inches")
  7669. },
  7670. {
  7671. name: "Normal",
  7672. height: math.unit(5 + 8 / 12, "feet")
  7673. },
  7674. {
  7675. name: "Macro",
  7676. height: math.unit(250, "feet"),
  7677. default: true
  7678. },
  7679. {
  7680. name: "Megamacro",
  7681. height: math.unit(7, "miles")
  7682. },
  7683. ]
  7684. ))
  7685. characterMakers.push(() => makeCharacter(
  7686. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7687. {
  7688. front: {
  7689. height: math.unit(6, "feet"),
  7690. weight: math.unit(220, "lb"),
  7691. name: "Front",
  7692. image: {
  7693. source: "./media/characters/gemini/front.svg"
  7694. }
  7695. },
  7696. back: {
  7697. height: math.unit(6, "feet"),
  7698. weight: math.unit(220, "lb"),
  7699. name: "Back",
  7700. image: {
  7701. source: "./media/characters/gemini/back.svg"
  7702. }
  7703. },
  7704. kneeling: {
  7705. height: math.unit(6 / 1.5, "feet"),
  7706. weight: math.unit(220, "lb"),
  7707. name: "Kneeling",
  7708. image: {
  7709. source: "./media/characters/gemini/kneeling.svg",
  7710. bottom: 0.02
  7711. }
  7712. },
  7713. },
  7714. [
  7715. {
  7716. name: "Macro",
  7717. height: math.unit(300, "meters"),
  7718. default: true
  7719. },
  7720. {
  7721. name: "Megamacro",
  7722. height: math.unit(6900, "meters")
  7723. },
  7724. ]
  7725. ))
  7726. characterMakers.push(() => makeCharacter(
  7727. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7728. {
  7729. anthro: {
  7730. height: math.unit(2.35, "meters"),
  7731. weight: math.unit(73, "kg"),
  7732. name: "Anthro",
  7733. image: {
  7734. source: "./media/characters/alicia/anthro.svg",
  7735. extra: 2571 / 2385,
  7736. bottom: 75 / 2648
  7737. }
  7738. },
  7739. paw: {
  7740. height: math.unit(1.32, "feet"),
  7741. name: "Paw",
  7742. image: {
  7743. source: "./media/characters/alicia/paw.svg"
  7744. }
  7745. },
  7746. feral: {
  7747. height: math.unit(1.69, "meters"),
  7748. weight: math.unit(73, "kg"),
  7749. name: "Feral",
  7750. image: {
  7751. source: "./media/characters/alicia/feral.svg",
  7752. extra: 2123 / 1715,
  7753. bottom: 222 / 2349
  7754. }
  7755. },
  7756. },
  7757. [
  7758. {
  7759. name: "Normal",
  7760. height: math.unit(2.35, "meters")
  7761. },
  7762. {
  7763. name: "Macro",
  7764. height: math.unit(60, "meters"),
  7765. default: true
  7766. },
  7767. {
  7768. name: "Megamacro",
  7769. height: math.unit(10000, "kilometers")
  7770. },
  7771. ]
  7772. ))
  7773. characterMakers.push(() => makeCharacter(
  7774. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7775. {
  7776. front: {
  7777. height: math.unit(7, "feet"),
  7778. weight: math.unit(250, "lbs"),
  7779. name: "Front",
  7780. image: {
  7781. source: "./media/characters/archy/front.svg"
  7782. }
  7783. }
  7784. },
  7785. [
  7786. {
  7787. name: "Micro",
  7788. height: math.unit(1, "inch")
  7789. },
  7790. {
  7791. name: "Shorty",
  7792. height: math.unit(5, "feet")
  7793. },
  7794. {
  7795. name: "Normal",
  7796. height: math.unit(7, "feet")
  7797. },
  7798. {
  7799. name: "Macro",
  7800. height: math.unit(600, "meters"),
  7801. default: true
  7802. },
  7803. {
  7804. name: "Megamacro",
  7805. height: math.unit(1, "mile")
  7806. },
  7807. ]
  7808. ))
  7809. characterMakers.push(() => makeCharacter(
  7810. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7811. {
  7812. front: {
  7813. height: math.unit(1.65, "meters"),
  7814. weight: math.unit(74, "kg"),
  7815. name: "Front",
  7816. image: {
  7817. source: "./media/characters/berri/front.svg",
  7818. extra: 857 / 837,
  7819. bottom: 18 / 877
  7820. }
  7821. },
  7822. bum: {
  7823. height: math.unit(1.46, "feet"),
  7824. name: "Bum",
  7825. image: {
  7826. source: "./media/characters/berri/bum.svg"
  7827. }
  7828. },
  7829. mouth: {
  7830. height: math.unit(0.44, "feet"),
  7831. name: "Mouth",
  7832. image: {
  7833. source: "./media/characters/berri/mouth.svg"
  7834. }
  7835. },
  7836. paw: {
  7837. height: math.unit(0.826, "feet"),
  7838. name: "Paw",
  7839. image: {
  7840. source: "./media/characters/berri/paw.svg"
  7841. }
  7842. },
  7843. },
  7844. [
  7845. {
  7846. name: "Normal",
  7847. height: math.unit(1.65, "meters")
  7848. },
  7849. {
  7850. name: "Macro",
  7851. height: math.unit(60, "m"),
  7852. default: true
  7853. },
  7854. {
  7855. name: "Megamacro",
  7856. height: math.unit(9.213, "km")
  7857. },
  7858. {
  7859. name: "Planet Eater",
  7860. height: math.unit(489, "megameters")
  7861. },
  7862. {
  7863. name: "Teramacro",
  7864. height: math.unit(2471635000000, "meters")
  7865. },
  7866. {
  7867. name: "Examacro",
  7868. height: math.unit(8.0624e+26, "meters")
  7869. }
  7870. ]
  7871. ))
  7872. characterMakers.push(() => makeCharacter(
  7873. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7874. {
  7875. front: {
  7876. height: math.unit(1.72, "meters"),
  7877. weight: math.unit(68, "kg"),
  7878. name: "Front",
  7879. image: {
  7880. source: "./media/characters/lexi/front.svg"
  7881. }
  7882. }
  7883. },
  7884. [
  7885. {
  7886. name: "Very Smol",
  7887. height: math.unit(10, "mm")
  7888. },
  7889. {
  7890. name: "Micro",
  7891. height: math.unit(6.8, "cm"),
  7892. default: true
  7893. },
  7894. {
  7895. name: "Normal",
  7896. height: math.unit(1.72, "m")
  7897. }
  7898. ]
  7899. ))
  7900. characterMakers.push(() => makeCharacter(
  7901. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7902. {
  7903. front: {
  7904. height: math.unit(1.69, "meters"),
  7905. weight: math.unit(68, "kg"),
  7906. name: "Front",
  7907. image: {
  7908. source: "./media/characters/martin/front.svg",
  7909. extra: 596 / 581
  7910. }
  7911. }
  7912. },
  7913. [
  7914. {
  7915. name: "Micro",
  7916. height: math.unit(6.85, "cm"),
  7917. default: true
  7918. },
  7919. {
  7920. name: "Normal",
  7921. height: math.unit(1.69, "m")
  7922. }
  7923. ]
  7924. ))
  7925. characterMakers.push(() => makeCharacter(
  7926. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7927. {
  7928. front: {
  7929. height: math.unit(1.69, "meters"),
  7930. weight: math.unit(68, "kg"),
  7931. name: "Front",
  7932. image: {
  7933. source: "./media/characters/juno/front.svg"
  7934. }
  7935. }
  7936. },
  7937. [
  7938. {
  7939. name: "Micro",
  7940. height: math.unit(7, "cm")
  7941. },
  7942. {
  7943. name: "Normal",
  7944. height: math.unit(1.89, "m")
  7945. },
  7946. {
  7947. name: "Macro",
  7948. height: math.unit(353, "meters"),
  7949. default: true
  7950. }
  7951. ]
  7952. ))
  7953. characterMakers.push(() => makeCharacter(
  7954. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7955. {
  7956. front: {
  7957. height: math.unit(1.93, "meters"),
  7958. weight: math.unit(83, "kg"),
  7959. name: "Front",
  7960. image: {
  7961. source: "./media/characters/samantha/front.svg"
  7962. }
  7963. },
  7964. frontClothed: {
  7965. height: math.unit(1.93, "meters"),
  7966. weight: math.unit(83, "kg"),
  7967. name: "Front (Clothed)",
  7968. image: {
  7969. source: "./media/characters/samantha/front-clothed.svg"
  7970. }
  7971. },
  7972. back: {
  7973. height: math.unit(1.93, "meters"),
  7974. weight: math.unit(83, "kg"),
  7975. name: "Back",
  7976. image: {
  7977. source: "./media/characters/samantha/back.svg"
  7978. }
  7979. },
  7980. },
  7981. [
  7982. {
  7983. name: "Normal",
  7984. height: math.unit(1.93, "m")
  7985. },
  7986. {
  7987. name: "Macro",
  7988. height: math.unit(74, "meters"),
  7989. default: true
  7990. },
  7991. {
  7992. name: "Macro+",
  7993. height: math.unit(223, "meters"),
  7994. },
  7995. {
  7996. name: "Megamacro",
  7997. height: math.unit(8381, "meters"),
  7998. },
  7999. {
  8000. name: "Megamacro+",
  8001. height: math.unit(12000, "kilometers")
  8002. },
  8003. ]
  8004. ))
  8005. characterMakers.push(() => makeCharacter(
  8006. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  8007. {
  8008. front: {
  8009. height: math.unit(1.92, "meters"),
  8010. weight: math.unit(80, "kg"),
  8011. name: "Front",
  8012. image: {
  8013. source: "./media/characters/dr-clay/front.svg"
  8014. }
  8015. },
  8016. frontClothed: {
  8017. height: math.unit(1.92, "meters"),
  8018. weight: math.unit(80, "kg"),
  8019. name: "Front (Clothed)",
  8020. image: {
  8021. source: "./media/characters/dr-clay/front-clothed.svg"
  8022. }
  8023. }
  8024. },
  8025. [
  8026. {
  8027. name: "Normal",
  8028. height: math.unit(1.92, "m")
  8029. },
  8030. {
  8031. name: "Macro",
  8032. height: math.unit(214, "meters"),
  8033. default: true
  8034. },
  8035. {
  8036. name: "Macro+",
  8037. height: math.unit(12.237, "meters"),
  8038. },
  8039. {
  8040. name: "Megamacro",
  8041. height: math.unit(557, "megameters"),
  8042. },
  8043. {
  8044. name: "Unimaginable",
  8045. height: math.unit(120e9, "lightyears")
  8046. },
  8047. ]
  8048. ))
  8049. characterMakers.push(() => makeCharacter(
  8050. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  8051. {
  8052. front: {
  8053. height: math.unit(2, "meters"),
  8054. weight: math.unit(80, "kg"),
  8055. name: "Front",
  8056. image: {
  8057. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  8058. }
  8059. }
  8060. },
  8061. [
  8062. {
  8063. name: "Teramacro",
  8064. height: math.unit(500000, "lightyears"),
  8065. default: true
  8066. },
  8067. ]
  8068. ))
  8069. characterMakers.push(() => makeCharacter(
  8070. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  8071. {
  8072. crux: {
  8073. height: math.unit(2, "meters"),
  8074. weight: math.unit(150, "kg"),
  8075. name: "Crux",
  8076. image: {
  8077. source: "./media/characters/vemus/crux.svg",
  8078. extra: 1074/936,
  8079. bottom: 23/1097
  8080. }
  8081. },
  8082. skunkTanuki: {
  8083. height: math.unit(2, "meters"),
  8084. weight: math.unit(150, "kg"),
  8085. name: "Skunk-Tanuki",
  8086. image: {
  8087. source: "./media/characters/vemus/skunk-tanuki.svg",
  8088. extra: 926/893,
  8089. bottom: 20/946
  8090. }
  8091. },
  8092. },
  8093. [
  8094. {
  8095. name: "Normal",
  8096. height: math.unit(4, "meters"),
  8097. default: true
  8098. },
  8099. {
  8100. name: "Big",
  8101. height: math.unit(8, "meters")
  8102. },
  8103. {
  8104. name: "Macro",
  8105. height: math.unit(100, "meters")
  8106. },
  8107. {
  8108. name: "Macro+",
  8109. height: math.unit(1500, "meters")
  8110. },
  8111. {
  8112. name: "Stellar",
  8113. height: math.unit(14e8, "meters")
  8114. },
  8115. ]
  8116. ))
  8117. characterMakers.push(() => makeCharacter(
  8118. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  8119. {
  8120. front: {
  8121. height: math.unit(2, "meters"),
  8122. weight: math.unit(70, "kg"),
  8123. name: "Front",
  8124. image: {
  8125. source: "./media/characters/beherit/front.svg",
  8126. extra: 1234/1109,
  8127. bottom: 55/1289
  8128. }
  8129. }
  8130. },
  8131. [
  8132. {
  8133. name: "Normal",
  8134. height: math.unit(6, "feet")
  8135. },
  8136. {
  8137. name: "Lorg",
  8138. height: math.unit(25, "feet"),
  8139. default: true
  8140. },
  8141. {
  8142. name: "Lorger",
  8143. height: math.unit(75, "feet")
  8144. },
  8145. {
  8146. name: "Macro",
  8147. height: math.unit(200, "meters")
  8148. },
  8149. ]
  8150. ))
  8151. characterMakers.push(() => makeCharacter(
  8152. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  8153. {
  8154. front: {
  8155. height: math.unit(2, "meters"),
  8156. weight: math.unit(150, "kg"),
  8157. name: "Front",
  8158. image: {
  8159. source: "./media/characters/everett/front.svg",
  8160. extra: 1017/866,
  8161. bottom: 86/1103
  8162. }
  8163. },
  8164. paw: {
  8165. height: math.unit(2 / 3.6, "meters"),
  8166. name: "Paw",
  8167. image: {
  8168. source: "./media/characters/everett/paw.svg"
  8169. }
  8170. },
  8171. },
  8172. [
  8173. {
  8174. name: "Normal",
  8175. height: math.unit(15, "feet"),
  8176. default: true
  8177. },
  8178. {
  8179. name: "Lorg",
  8180. height: math.unit(70, "feet"),
  8181. default: true
  8182. },
  8183. {
  8184. name: "Lorger",
  8185. height: math.unit(250, "feet")
  8186. },
  8187. {
  8188. name: "Macro",
  8189. height: math.unit(500, "meters")
  8190. },
  8191. ]
  8192. ))
  8193. characterMakers.push(() => makeCharacter(
  8194. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  8195. {
  8196. front: {
  8197. height: math.unit(2, "meters"),
  8198. weight: math.unit(86, "kg"),
  8199. name: "Front",
  8200. image: {
  8201. source: "./media/characters/rose/front.svg",
  8202. extra: 1785/1636,
  8203. bottom: 30/1815
  8204. },
  8205. form: "liom",
  8206. default: true
  8207. },
  8208. frontSporty: {
  8209. height: math.unit(2, "meters"),
  8210. weight: math.unit(86, "kg"),
  8211. name: "Front (Sporty)",
  8212. image: {
  8213. source: "./media/characters/rose/front-sporty.svg",
  8214. extra: 350/335,
  8215. bottom: 10/360
  8216. },
  8217. form: "liom"
  8218. },
  8219. frontAlt: {
  8220. height: math.unit(1.6, "meters"),
  8221. weight: math.unit(86, "kg"),
  8222. name: "Front (Alt)",
  8223. image: {
  8224. source: "./media/characters/rose/front-alt.svg",
  8225. extra: 299/283,
  8226. bottom: 3/302
  8227. },
  8228. form: "liom"
  8229. },
  8230. plush: {
  8231. height: math.unit(2, "meters"),
  8232. weight: math.unit(86/3, "kg"),
  8233. name: "Plush",
  8234. image: {
  8235. source: "./media/characters/rose/plush.svg",
  8236. extra: 361/337,
  8237. bottom: 11/372
  8238. },
  8239. form: "plush",
  8240. default: true
  8241. },
  8242. faeStanding: {
  8243. height: math.unit(10, "cm"),
  8244. weight: math.unit(10, "grams"),
  8245. name: "Standing",
  8246. image: {
  8247. source: "./media/characters/rose/fae-standing.svg",
  8248. extra: 1189/1060,
  8249. bottom: 27/1216
  8250. },
  8251. form: "fae",
  8252. default: true
  8253. },
  8254. faeSitting: {
  8255. height: math.unit(5, "cm"),
  8256. weight: math.unit(10, "grams"),
  8257. name: "Sitting",
  8258. image: {
  8259. source: "./media/characters/rose/fae-sitting.svg",
  8260. extra: 737/577,
  8261. bottom: 356/1093
  8262. },
  8263. form: "fae"
  8264. },
  8265. faePaw: {
  8266. height: math.unit(1.35, "cm"),
  8267. name: "Paw",
  8268. image: {
  8269. source: "./media/characters/rose/fae-paw.svg"
  8270. },
  8271. form: "fae"
  8272. },
  8273. },
  8274. [
  8275. {
  8276. name: "True Micro",
  8277. height: math.unit(9, "cm"),
  8278. form: "liom"
  8279. },
  8280. {
  8281. name: "Micro",
  8282. height: math.unit(16, "cm"),
  8283. form: "liom"
  8284. },
  8285. {
  8286. name: "Normal",
  8287. height: math.unit(1.85, "meters"),
  8288. default: true,
  8289. form: "liom"
  8290. },
  8291. {
  8292. name: "Mini-Macro",
  8293. height: math.unit(5, "meters"),
  8294. form: "liom"
  8295. },
  8296. {
  8297. name: "Macro",
  8298. height: math.unit(15, "meters"),
  8299. form: "liom"
  8300. },
  8301. {
  8302. name: "True Macro",
  8303. height: math.unit(40, "meters"),
  8304. form: "liom"
  8305. },
  8306. {
  8307. name: "City Scale",
  8308. height: math.unit(1, "km"),
  8309. form: "liom"
  8310. },
  8311. {
  8312. name: "Plushie",
  8313. height: math.unit(9, "cm"),
  8314. form: "plush",
  8315. default: true
  8316. },
  8317. {
  8318. name: "Fae",
  8319. height: math.unit(10, "cm"),
  8320. form: "fae",
  8321. default: true
  8322. },
  8323. ],
  8324. {
  8325. "liom": {
  8326. name: "Liom"
  8327. },
  8328. "plush": {
  8329. name: "Plush"
  8330. },
  8331. "fae": {
  8332. name: "Fae Fox",
  8333. default: true
  8334. }
  8335. }
  8336. ))
  8337. characterMakers.push(() => makeCharacter(
  8338. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  8339. {
  8340. front: {
  8341. height: math.unit(2, "meters"),
  8342. weight: math.unit(350, "lbs"),
  8343. name: "Front",
  8344. image: {
  8345. source: "./media/characters/regal/front.svg"
  8346. }
  8347. },
  8348. back: {
  8349. height: math.unit(2, "meters"),
  8350. weight: math.unit(350, "lbs"),
  8351. name: "Back",
  8352. image: {
  8353. source: "./media/characters/regal/back.svg"
  8354. }
  8355. },
  8356. },
  8357. [
  8358. {
  8359. name: "Macro",
  8360. height: math.unit(350, "feet"),
  8361. default: true
  8362. }
  8363. ]
  8364. ))
  8365. characterMakers.push(() => makeCharacter(
  8366. { name: "Opal", species: ["rabbit", "deity"], tags: ["anthro"] },
  8367. {
  8368. standing: {
  8369. height: math.unit(4 + 11/12, "feet"),
  8370. weight: math.unit(100, "lb"),
  8371. name: "Standing",
  8372. image: {
  8373. source: "./media/characters/opal/standing.svg",
  8374. extra: 1588/1513,
  8375. bottom: 23/1611
  8376. }
  8377. },
  8378. sitting: {
  8379. height: math.unit(2.3, "feet"),
  8380. weight: math.unit(100, "lb"),
  8381. name: "Sitting",
  8382. image: {
  8383. source: "./media/characters/opal/sitting.svg",
  8384. extra: 1031/892,
  8385. bottom: 142/1173
  8386. }
  8387. },
  8388. hand: {
  8389. height: math.unit(0.59, "feet"),
  8390. name: "Hand",
  8391. image: {
  8392. source: "./media/characters/opal/hand.svg"
  8393. }
  8394. },
  8395. foot: {
  8396. height: math.unit(0.61, "feet"),
  8397. name: "Foot",
  8398. image: {
  8399. source: "./media/characters/opal/foot.svg"
  8400. }
  8401. },
  8402. },
  8403. [
  8404. {
  8405. name: "Small",
  8406. height: math.unit(4 + 11 / 12, "feet")
  8407. },
  8408. {
  8409. name: "Normal",
  8410. height: math.unit(20, "feet"),
  8411. default: true
  8412. },
  8413. {
  8414. name: "Macro",
  8415. height: math.unit(120, "feet")
  8416. },
  8417. {
  8418. name: "Megamacro",
  8419. height: math.unit(80, "miles")
  8420. },
  8421. {
  8422. name: "True Size",
  8423. height: math.unit(100000, "lightyears")
  8424. },
  8425. ]
  8426. ))
  8427. characterMakers.push(() => makeCharacter(
  8428. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  8429. {
  8430. front: {
  8431. height: math.unit(6, "feet"),
  8432. weight: math.unit(200, "lbs"),
  8433. name: "Front",
  8434. image: {
  8435. source: "./media/characters/vector-wuff/front.svg"
  8436. }
  8437. }
  8438. },
  8439. [
  8440. {
  8441. name: "Normal",
  8442. height: math.unit(2.8, "meters")
  8443. },
  8444. {
  8445. name: "Macro",
  8446. height: math.unit(450, "meters"),
  8447. default: true
  8448. },
  8449. {
  8450. name: "Megamacro",
  8451. height: math.unit(15, "kilometers")
  8452. }
  8453. ]
  8454. ))
  8455. characterMakers.push(() => makeCharacter(
  8456. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  8457. {
  8458. front: {
  8459. height: math.unit(6, "feet"),
  8460. weight: math.unit(256, "lbs"),
  8461. name: "Front",
  8462. image: {
  8463. source: "./media/characters/dannik/front.svg"
  8464. }
  8465. }
  8466. },
  8467. [
  8468. {
  8469. name: "Macro",
  8470. height: math.unit(69.57, "meters"),
  8471. default: true
  8472. },
  8473. ]
  8474. ))
  8475. characterMakers.push(() => makeCharacter(
  8476. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  8477. {
  8478. front: {
  8479. height: math.unit(6, "feet"),
  8480. weight: math.unit(120, "lbs"),
  8481. name: "Front",
  8482. image: {
  8483. source: "./media/characters/azura-saharah/front.svg"
  8484. }
  8485. },
  8486. back: {
  8487. height: math.unit(6, "feet"),
  8488. weight: math.unit(120, "lbs"),
  8489. name: "Back",
  8490. image: {
  8491. source: "./media/characters/azura-saharah/back.svg"
  8492. }
  8493. },
  8494. },
  8495. [
  8496. {
  8497. name: "Macro",
  8498. height: math.unit(100, "feet"),
  8499. default: true
  8500. },
  8501. ]
  8502. ))
  8503. characterMakers.push(() => makeCharacter(
  8504. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  8505. {
  8506. side: {
  8507. height: math.unit(5 + 4 / 12, "feet"),
  8508. weight: math.unit(163, "lbs"),
  8509. name: "Side",
  8510. image: {
  8511. source: "./media/characters/kennedy/side.svg"
  8512. }
  8513. }
  8514. },
  8515. [
  8516. {
  8517. name: "Standard Doggo",
  8518. height: math.unit(5 + 4 / 12, "feet")
  8519. },
  8520. {
  8521. name: "Big Doggo",
  8522. height: math.unit(25 + 3 / 12, "feet"),
  8523. default: true
  8524. },
  8525. ]
  8526. ))
  8527. characterMakers.push(() => makeCharacter(
  8528. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  8529. {
  8530. front: {
  8531. height: math.unit(5 + 5/12, "feet"),
  8532. weight: math.unit(100, "lbs"),
  8533. name: "Front",
  8534. image: {
  8535. source: "./media/characters/odios-de-lunar/front.svg",
  8536. extra: 1468/1323,
  8537. bottom: 22/1490
  8538. }
  8539. }
  8540. },
  8541. [
  8542. {
  8543. name: "Micro",
  8544. height: math.unit(3, "inches")
  8545. },
  8546. {
  8547. name: "Normal",
  8548. height: math.unit(5.5, "feet"),
  8549. default: true
  8550. },
  8551. {
  8552. name: "Macro",
  8553. height: math.unit(100, "feet")
  8554. },
  8555. ]
  8556. ))
  8557. characterMakers.push(() => makeCharacter(
  8558. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8559. {
  8560. back: {
  8561. height: math.unit(6, "feet"),
  8562. weight: math.unit(220, "lbs"),
  8563. name: "Back",
  8564. image: {
  8565. source: "./media/characters/mandake/back.svg"
  8566. }
  8567. }
  8568. },
  8569. [
  8570. {
  8571. name: "Normal",
  8572. height: math.unit(7, "feet"),
  8573. default: true
  8574. },
  8575. {
  8576. name: "Macro",
  8577. height: math.unit(78, "feet")
  8578. },
  8579. {
  8580. name: "Macro+",
  8581. height: math.unit(300, "meters")
  8582. },
  8583. {
  8584. name: "Macro++",
  8585. height: math.unit(2400, "feet")
  8586. },
  8587. {
  8588. name: "Megamacro",
  8589. height: math.unit(5167, "meters")
  8590. },
  8591. {
  8592. name: "Gigamacro",
  8593. height: math.unit(41769, "miles")
  8594. },
  8595. ]
  8596. ))
  8597. characterMakers.push(() => makeCharacter(
  8598. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8599. {
  8600. front: {
  8601. height: math.unit(6, "feet"),
  8602. weight: math.unit(120, "lbs"),
  8603. name: "Front",
  8604. image: {
  8605. source: "./media/characters/yozey/front.svg"
  8606. }
  8607. },
  8608. frontAlt: {
  8609. height: math.unit(6, "feet"),
  8610. weight: math.unit(120, "lbs"),
  8611. name: "Front (Alt)",
  8612. image: {
  8613. source: "./media/characters/yozey/front-alt.svg"
  8614. }
  8615. },
  8616. side: {
  8617. height: math.unit(6, "feet"),
  8618. weight: math.unit(120, "lbs"),
  8619. name: "Side",
  8620. image: {
  8621. source: "./media/characters/yozey/side.svg"
  8622. }
  8623. },
  8624. },
  8625. [
  8626. {
  8627. name: "Micro",
  8628. height: math.unit(3, "inches"),
  8629. default: true
  8630. },
  8631. {
  8632. name: "Normal",
  8633. height: math.unit(6, "feet")
  8634. }
  8635. ]
  8636. ))
  8637. characterMakers.push(() => makeCharacter(
  8638. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8639. {
  8640. front: {
  8641. height: math.unit(6, "feet"),
  8642. weight: math.unit(103, "lbs"),
  8643. name: "Front",
  8644. image: {
  8645. source: "./media/characters/valeska-voss/front.svg"
  8646. }
  8647. }
  8648. },
  8649. [
  8650. {
  8651. name: "Mini-Sized Sub",
  8652. height: math.unit(3.1, "inches")
  8653. },
  8654. {
  8655. name: "Mid-Sized Sub",
  8656. height: math.unit(6.2, "inches")
  8657. },
  8658. {
  8659. name: "Full-Sized Sub",
  8660. height: math.unit(9.3, "inches")
  8661. },
  8662. {
  8663. name: "Normal",
  8664. height: math.unit(5 + 2 / 12, "foot"),
  8665. default: true
  8666. },
  8667. ]
  8668. ))
  8669. characterMakers.push(() => makeCharacter(
  8670. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8671. {
  8672. front: {
  8673. height: math.unit(6, "feet"),
  8674. weight: math.unit(160, "lbs"),
  8675. name: "Front",
  8676. image: {
  8677. source: "./media/characters/gene-zeta/front.svg",
  8678. extra: 3006 / 2826,
  8679. bottom: 182 / 3188
  8680. }
  8681. }
  8682. },
  8683. [
  8684. {
  8685. name: "Micro",
  8686. height: math.unit(6, "inches")
  8687. },
  8688. {
  8689. name: "Normal",
  8690. height: math.unit(5 + 11 / 12, "foot"),
  8691. default: true
  8692. },
  8693. {
  8694. name: "Macro",
  8695. height: math.unit(140, "feet")
  8696. },
  8697. {
  8698. name: "Supercharged",
  8699. height: math.unit(2500, "feet")
  8700. },
  8701. ]
  8702. ))
  8703. characterMakers.push(() => makeCharacter(
  8704. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8705. {
  8706. front: {
  8707. height: math.unit(6, "feet"),
  8708. weight: math.unit(350, "lbs"),
  8709. name: "Front",
  8710. image: {
  8711. source: "./media/characters/razinox/front.svg",
  8712. extra: 1686 / 1548,
  8713. bottom: 28.2 / 1868
  8714. }
  8715. },
  8716. back: {
  8717. height: math.unit(6, "feet"),
  8718. weight: math.unit(350, "lbs"),
  8719. name: "Back",
  8720. image: {
  8721. source: "./media/characters/razinox/back.svg",
  8722. extra: 1660 / 1590,
  8723. bottom: 15 / 1665
  8724. }
  8725. },
  8726. },
  8727. [
  8728. {
  8729. name: "Normal",
  8730. height: math.unit(10 + 8 / 12, "foot")
  8731. },
  8732. {
  8733. name: "Minimacro",
  8734. height: math.unit(15, "foot")
  8735. },
  8736. {
  8737. name: "Macro",
  8738. height: math.unit(60, "foot"),
  8739. default: true
  8740. },
  8741. {
  8742. name: "Megamacro",
  8743. height: math.unit(5, "miles")
  8744. },
  8745. {
  8746. name: "Gigamacro",
  8747. height: math.unit(6000, "miles")
  8748. },
  8749. ]
  8750. ))
  8751. characterMakers.push(() => makeCharacter(
  8752. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8753. {
  8754. front: {
  8755. height: math.unit(6, "feet"),
  8756. weight: math.unit(150, "lbs"),
  8757. name: "Front",
  8758. image: {
  8759. source: "./media/characters/cobalt/front.svg"
  8760. }
  8761. }
  8762. },
  8763. [
  8764. {
  8765. name: "Normal",
  8766. height: math.unit(8 + 1 / 12, "foot")
  8767. },
  8768. {
  8769. name: "Macro",
  8770. height: math.unit(111, "foot"),
  8771. default: true
  8772. },
  8773. {
  8774. name: "Supracosmic",
  8775. height: math.unit(1e42, "feet")
  8776. },
  8777. ]
  8778. ))
  8779. characterMakers.push(() => makeCharacter(
  8780. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8781. {
  8782. front: {
  8783. height: math.unit(5, "inches"),
  8784. name: "Front",
  8785. image: {
  8786. source: "./media/characters/amanda/front.svg",
  8787. extra: 926/791,
  8788. bottom: 38/964
  8789. }
  8790. },
  8791. back: {
  8792. height: math.unit(5, "inches"),
  8793. name: "Back",
  8794. image: {
  8795. source: "./media/characters/amanda/back.svg",
  8796. extra: 909/805,
  8797. bottom: 43/952
  8798. }
  8799. },
  8800. },
  8801. [
  8802. {
  8803. name: "Micro",
  8804. height: math.unit(5, "inches"),
  8805. default: true
  8806. },
  8807. ]
  8808. ))
  8809. characterMakers.push(() => makeCharacter(
  8810. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8811. {
  8812. front: {
  8813. height: math.unit(2.75, "meters"),
  8814. weight: math.unit(1200, "lb"),
  8815. name: "Front",
  8816. image: {
  8817. source: "./media/characters/teal/front.svg",
  8818. extra: 2463 / 2320,
  8819. bottom: 166 / 2629
  8820. }
  8821. },
  8822. back: {
  8823. height: math.unit(2.75, "meters"),
  8824. weight: math.unit(1200, "lb"),
  8825. name: "Back",
  8826. image: {
  8827. source: "./media/characters/teal/back.svg",
  8828. extra: 2580 / 2489,
  8829. bottom: 151 / 2731
  8830. }
  8831. },
  8832. sitting: {
  8833. height: math.unit(1.9, "meters"),
  8834. weight: math.unit(1200, "lb"),
  8835. name: "Sitting",
  8836. image: {
  8837. source: "./media/characters/teal/sitting.svg",
  8838. extra: 623 / 590,
  8839. bottom: 121 / 744
  8840. }
  8841. },
  8842. standing: {
  8843. height: math.unit(2.75, "meters"),
  8844. weight: math.unit(1200, "lb"),
  8845. name: "Standing",
  8846. image: {
  8847. source: "./media/characters/teal/standing.svg",
  8848. extra: 923 / 893,
  8849. bottom: 60 / 983
  8850. }
  8851. },
  8852. stretching: {
  8853. height: math.unit(3.65, "meters"),
  8854. weight: math.unit(1200, "lb"),
  8855. name: "Stretching",
  8856. image: {
  8857. source: "./media/characters/teal/stretching.svg",
  8858. extra: 1276 / 1244,
  8859. bottom: 0 / 1276
  8860. }
  8861. },
  8862. legged: {
  8863. height: math.unit(1.3, "meters"),
  8864. weight: math.unit(100, "lb"),
  8865. name: "Legged",
  8866. image: {
  8867. source: "./media/characters/teal/legged.svg",
  8868. extra: 462 / 437,
  8869. bottom: 24 / 486
  8870. }
  8871. },
  8872. naga: {
  8873. height: math.unit(5.4, "meters"),
  8874. weight: math.unit(4000, "lb"),
  8875. name: "Naga",
  8876. image: {
  8877. source: "./media/characters/teal/naga.svg",
  8878. extra: 1902 / 1858,
  8879. bottom: 0 / 1902
  8880. }
  8881. },
  8882. hand: {
  8883. height: math.unit(0.52, "meters"),
  8884. name: "Hand",
  8885. image: {
  8886. source: "./media/characters/teal/hand.svg"
  8887. }
  8888. },
  8889. maw: {
  8890. height: math.unit(0.43, "meters"),
  8891. name: "Maw",
  8892. image: {
  8893. source: "./media/characters/teal/maw.svg"
  8894. }
  8895. },
  8896. slit: {
  8897. height: math.unit(0.25, "meters"),
  8898. name: "Slit",
  8899. image: {
  8900. source: "./media/characters/teal/slit.svg"
  8901. }
  8902. },
  8903. },
  8904. [
  8905. {
  8906. name: "Normal",
  8907. height: math.unit(2.75, "meters"),
  8908. default: true
  8909. },
  8910. {
  8911. name: "Macro",
  8912. height: math.unit(300, "feet")
  8913. },
  8914. {
  8915. name: "Macro+",
  8916. height: math.unit(2000, "feet")
  8917. },
  8918. ]
  8919. ))
  8920. characterMakers.push(() => makeCharacter(
  8921. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8922. {
  8923. frontCat: {
  8924. height: math.unit(6, "feet"),
  8925. weight: math.unit(180, "lbs"),
  8926. name: "Front (Cat)",
  8927. image: {
  8928. source: "./media/characters/ravin-amulet/front-cat.svg"
  8929. }
  8930. },
  8931. frontCatAlt: {
  8932. height: math.unit(6, "feet"),
  8933. weight: math.unit(180, "lbs"),
  8934. name: "Front (Alt, Cat)",
  8935. image: {
  8936. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8937. }
  8938. },
  8939. frontWerewolf: {
  8940. height: math.unit(6 * 1.2, "feet"),
  8941. weight: math.unit(225, "lbs"),
  8942. name: "Front (Werewolf)",
  8943. image: {
  8944. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8945. }
  8946. },
  8947. backWerewolf: {
  8948. height: math.unit(6 * 1.2, "feet"),
  8949. weight: math.unit(225, "lbs"),
  8950. name: "Back (Werewolf)",
  8951. image: {
  8952. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8953. }
  8954. },
  8955. },
  8956. [
  8957. {
  8958. name: "Nano",
  8959. height: math.unit(1, "micrometer")
  8960. },
  8961. {
  8962. name: "Micro",
  8963. height: math.unit(1, "inch")
  8964. },
  8965. {
  8966. name: "Normal",
  8967. height: math.unit(6, "feet"),
  8968. default: true
  8969. },
  8970. {
  8971. name: "Macro",
  8972. height: math.unit(60, "feet")
  8973. }
  8974. ]
  8975. ))
  8976. characterMakers.push(() => makeCharacter(
  8977. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8978. {
  8979. front: {
  8980. height: math.unit(6, "feet"),
  8981. weight: math.unit(165, "lbs"),
  8982. name: "Front",
  8983. image: {
  8984. source: "./media/characters/fluoresce/front.svg"
  8985. }
  8986. }
  8987. },
  8988. [
  8989. {
  8990. name: "Micro",
  8991. height: math.unit(6, "cm")
  8992. },
  8993. {
  8994. name: "Normal",
  8995. height: math.unit(5 + 7 / 12, "feet"),
  8996. default: true
  8997. },
  8998. {
  8999. name: "Macro",
  9000. height: math.unit(56, "feet")
  9001. },
  9002. {
  9003. name: "Megamacro",
  9004. height: math.unit(1.9, "miles")
  9005. },
  9006. ]
  9007. ))
  9008. characterMakers.push(() => makeCharacter(
  9009. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  9010. {
  9011. front: {
  9012. height: math.unit(9 + 6 / 12, "feet"),
  9013. weight: math.unit(523, "lbs"),
  9014. name: "Side",
  9015. image: {
  9016. source: "./media/characters/aurora/side.svg",
  9017. extra: 474/393,
  9018. bottom: 5/479
  9019. }
  9020. }
  9021. },
  9022. [
  9023. {
  9024. name: "Normal",
  9025. height: math.unit(9 + 6 / 12, "feet")
  9026. },
  9027. {
  9028. name: "Macro",
  9029. height: math.unit(96, "feet"),
  9030. default: true
  9031. },
  9032. {
  9033. name: "Macro+",
  9034. height: math.unit(243, "feet")
  9035. },
  9036. ]
  9037. ))
  9038. characterMakers.push(() => makeCharacter(
  9039. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  9040. {
  9041. front: {
  9042. height: math.unit(194, "cm"),
  9043. weight: math.unit(90, "kg"),
  9044. name: "Front",
  9045. image: {
  9046. source: "./media/characters/ranek/front.svg",
  9047. extra: 1862/1791,
  9048. bottom: 80/1942
  9049. }
  9050. },
  9051. back: {
  9052. height: math.unit(194, "cm"),
  9053. weight: math.unit(90, "kg"),
  9054. name: "Back",
  9055. image: {
  9056. source: "./media/characters/ranek/back.svg",
  9057. extra: 1853/1787,
  9058. bottom: 74/1927
  9059. }
  9060. },
  9061. feral: {
  9062. height: math.unit(30, "cm"),
  9063. weight: math.unit(1.6, "lbs"),
  9064. name: "Feral",
  9065. image: {
  9066. source: "./media/characters/ranek/feral.svg",
  9067. extra: 990/631,
  9068. bottom: 29/1019
  9069. }
  9070. },
  9071. },
  9072. [
  9073. {
  9074. name: "Normal",
  9075. height: math.unit(194, "cm"),
  9076. default: true
  9077. },
  9078. {
  9079. name: "Macro",
  9080. height: math.unit(100, "meters")
  9081. },
  9082. ]
  9083. ))
  9084. characterMakers.push(() => makeCharacter(
  9085. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  9086. {
  9087. front: {
  9088. height: math.unit(5 + 6 / 12, "feet"),
  9089. weight: math.unit(153, "lbs"),
  9090. name: "Front",
  9091. image: {
  9092. source: "./media/characters/andrew-cooper/front.svg"
  9093. }
  9094. },
  9095. },
  9096. [
  9097. {
  9098. name: "Nano",
  9099. height: math.unit(1, "mm")
  9100. },
  9101. {
  9102. name: "Micro",
  9103. height: math.unit(2, "inches")
  9104. },
  9105. {
  9106. name: "Normal",
  9107. height: math.unit(5 + 6 / 12, "feet"),
  9108. default: true
  9109. }
  9110. ]
  9111. ))
  9112. characterMakers.push(() => makeCharacter(
  9113. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  9114. {
  9115. front: {
  9116. height: math.unit(6, "feet"),
  9117. weight: math.unit(180, "lbs"),
  9118. name: "Front",
  9119. image: {
  9120. source: "./media/characters/akane-sato/front.svg",
  9121. extra: 1219 / 1140
  9122. }
  9123. },
  9124. back: {
  9125. height: math.unit(6, "feet"),
  9126. weight: math.unit(180, "lbs"),
  9127. name: "Back",
  9128. image: {
  9129. source: "./media/characters/akane-sato/back.svg",
  9130. extra: 1219 / 1170
  9131. }
  9132. },
  9133. },
  9134. [
  9135. {
  9136. name: "Normal",
  9137. height: math.unit(2.5, "meters")
  9138. },
  9139. {
  9140. name: "Macro",
  9141. height: math.unit(250, "meters"),
  9142. default: true
  9143. },
  9144. {
  9145. name: "Megamacro",
  9146. height: math.unit(25, "km")
  9147. },
  9148. ]
  9149. ))
  9150. characterMakers.push(() => makeCharacter(
  9151. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  9152. {
  9153. front: {
  9154. height: math.unit(6, "feet"),
  9155. weight: math.unit(65, "kg"),
  9156. name: "Front",
  9157. image: {
  9158. source: "./media/characters/rook/front.svg",
  9159. extra: 960 / 950
  9160. }
  9161. }
  9162. },
  9163. [
  9164. {
  9165. name: "Normal",
  9166. height: math.unit(8.8, "feet")
  9167. },
  9168. {
  9169. name: "Macro",
  9170. height: math.unit(88, "feet"),
  9171. default: true
  9172. },
  9173. {
  9174. name: "Megamacro",
  9175. height: math.unit(8, "miles")
  9176. },
  9177. ]
  9178. ))
  9179. characterMakers.push(() => makeCharacter(
  9180. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  9181. {
  9182. front: {
  9183. height: math.unit(12 + 2 / 12, "feet"),
  9184. weight: math.unit(808, "lbs"),
  9185. name: "Front",
  9186. image: {
  9187. source: "./media/characters/prodigy/front.svg"
  9188. }
  9189. }
  9190. },
  9191. [
  9192. {
  9193. name: "Normal",
  9194. height: math.unit(12 + 2 / 12, "feet"),
  9195. default: true
  9196. },
  9197. {
  9198. name: "Macro",
  9199. height: math.unit(143, "feet")
  9200. },
  9201. {
  9202. name: "Macro+",
  9203. height: math.unit(400, "feet")
  9204. },
  9205. ]
  9206. ))
  9207. characterMakers.push(() => makeCharacter(
  9208. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  9209. {
  9210. front: {
  9211. height: math.unit(6, "feet"),
  9212. weight: math.unit(225, "lbs"),
  9213. name: "Front",
  9214. image: {
  9215. source: "./media/characters/daniel/front.svg"
  9216. }
  9217. },
  9218. leaning: {
  9219. height: math.unit(6, "feet"),
  9220. weight: math.unit(225, "lbs"),
  9221. name: "Leaning",
  9222. image: {
  9223. source: "./media/characters/daniel/leaning.svg"
  9224. }
  9225. },
  9226. },
  9227. [
  9228. {
  9229. name: "Macro",
  9230. height: math.unit(1000, "feet"),
  9231. default: true
  9232. },
  9233. ]
  9234. ))
  9235. characterMakers.push(() => makeCharacter(
  9236. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  9237. {
  9238. front: {
  9239. height: math.unit(6, "feet"),
  9240. weight: math.unit(88, "lbs"),
  9241. name: "Front",
  9242. image: {
  9243. source: "./media/characters/chiros/front.svg",
  9244. extra: 306 / 226
  9245. }
  9246. },
  9247. side: {
  9248. height: math.unit(6, "feet"),
  9249. weight: math.unit(88, "lbs"),
  9250. name: "Side",
  9251. image: {
  9252. source: "./media/characters/chiros/side.svg",
  9253. extra: 306 / 226
  9254. }
  9255. },
  9256. },
  9257. [
  9258. {
  9259. name: "Normal",
  9260. height: math.unit(6, "cm"),
  9261. default: true
  9262. },
  9263. ]
  9264. ))
  9265. characterMakers.push(() => makeCharacter(
  9266. { name: "Selka", species: ["snake"], tags: ["naga"] },
  9267. {
  9268. front: {
  9269. height: math.unit(6, "feet"),
  9270. weight: math.unit(100, "lbs"),
  9271. name: "Front",
  9272. image: {
  9273. source: "./media/characters/selka/front.svg",
  9274. extra: 947 / 887
  9275. }
  9276. }
  9277. },
  9278. [
  9279. {
  9280. name: "Normal",
  9281. height: math.unit(5, "cm"),
  9282. default: true
  9283. },
  9284. ]
  9285. ))
  9286. characterMakers.push(() => makeCharacter(
  9287. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  9288. {
  9289. front: {
  9290. height: math.unit(8 + 3 / 12, "feet"),
  9291. weight: math.unit(424, "lbs"),
  9292. name: "Front",
  9293. image: {
  9294. source: "./media/characters/verin/front.svg",
  9295. extra: 1845 / 1550
  9296. }
  9297. },
  9298. frontArmored: {
  9299. height: math.unit(8 + 3 / 12, "feet"),
  9300. weight: math.unit(424, "lbs"),
  9301. name: "Front (Armored)",
  9302. image: {
  9303. source: "./media/characters/verin/front-armor.svg",
  9304. extra: 1845 / 1550,
  9305. bottom: 0.01
  9306. }
  9307. },
  9308. back: {
  9309. height: math.unit(8 + 3 / 12, "feet"),
  9310. weight: math.unit(424, "lbs"),
  9311. name: "Back",
  9312. image: {
  9313. source: "./media/characters/verin/back.svg",
  9314. bottom: 0.1,
  9315. extra: 1
  9316. }
  9317. },
  9318. foot: {
  9319. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  9320. name: "Foot",
  9321. image: {
  9322. source: "./media/characters/verin/foot.svg"
  9323. }
  9324. },
  9325. },
  9326. [
  9327. {
  9328. name: "Normal",
  9329. height: math.unit(8 + 3 / 12, "feet")
  9330. },
  9331. {
  9332. name: "Minimacro",
  9333. height: math.unit(21, "feet"),
  9334. default: true
  9335. },
  9336. {
  9337. name: "Macro",
  9338. height: math.unit(626, "feet")
  9339. },
  9340. ]
  9341. ))
  9342. characterMakers.push(() => makeCharacter(
  9343. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  9344. {
  9345. front: {
  9346. height: math.unit(2.718, "meters"),
  9347. weight: math.unit(150, "lbs"),
  9348. name: "Front",
  9349. image: {
  9350. source: "./media/characters/sovrim-terraquian/front.svg",
  9351. extra: 1752/1689,
  9352. bottom: 36/1788
  9353. }
  9354. },
  9355. back: {
  9356. height: math.unit(2.718, "meters"),
  9357. weight: math.unit(150, "lbs"),
  9358. name: "Back",
  9359. image: {
  9360. source: "./media/characters/sovrim-terraquian/back.svg",
  9361. extra: 1698/1657,
  9362. bottom: 58/1756
  9363. }
  9364. },
  9365. tongue: {
  9366. height: math.unit(2.865, "feet"),
  9367. name: "Tongue",
  9368. image: {
  9369. source: "./media/characters/sovrim-terraquian/tongue.svg"
  9370. }
  9371. },
  9372. hand: {
  9373. height: math.unit(1.61, "feet"),
  9374. name: "Hand",
  9375. image: {
  9376. source: "./media/characters/sovrim-terraquian/hand.svg"
  9377. }
  9378. },
  9379. foot: {
  9380. height: math.unit(1.05, "feet"),
  9381. name: "Foot",
  9382. image: {
  9383. source: "./media/characters/sovrim-terraquian/foot.svg"
  9384. }
  9385. },
  9386. footAlt: {
  9387. height: math.unit(0.88, "feet"),
  9388. name: "Foot (Alt)",
  9389. image: {
  9390. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  9391. }
  9392. },
  9393. },
  9394. [
  9395. {
  9396. name: "Micro",
  9397. height: math.unit(2, "inches")
  9398. },
  9399. {
  9400. name: "Small",
  9401. height: math.unit(1, "meter")
  9402. },
  9403. {
  9404. name: "Normal",
  9405. height: math.unit(Math.E, "meters"),
  9406. default: true
  9407. },
  9408. {
  9409. name: "Macro",
  9410. height: math.unit(20, "meters")
  9411. },
  9412. {
  9413. name: "Macro+",
  9414. height: math.unit(400, "meters")
  9415. },
  9416. ]
  9417. ))
  9418. characterMakers.push(() => makeCharacter(
  9419. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  9420. {
  9421. front: {
  9422. height: math.unit(7, "feet"),
  9423. weight: math.unit(489, "lbs"),
  9424. name: "Front",
  9425. image: {
  9426. source: "./media/characters/reece-silvermane/front.svg",
  9427. bottom: 0.02,
  9428. extra: 1
  9429. }
  9430. },
  9431. },
  9432. [
  9433. {
  9434. name: "Macro",
  9435. height: math.unit(1.5, "miles"),
  9436. default: true
  9437. },
  9438. ]
  9439. ))
  9440. characterMakers.push(() => makeCharacter(
  9441. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  9442. {
  9443. front: {
  9444. height: math.unit(6, "feet"),
  9445. weight: math.unit(78, "kg"),
  9446. name: "Front",
  9447. image: {
  9448. source: "./media/characters/kane/front.svg",
  9449. extra: 978 / 899
  9450. }
  9451. },
  9452. back: {
  9453. height: math.unit(6, "feet"),
  9454. weight: math.unit(78, "kg"),
  9455. name: "Back",
  9456. image: {
  9457. source: "./media/characters/kane/back.svg",
  9458. extra: 1966/1800,
  9459. bottom: 0/1966
  9460. }
  9461. },
  9462. head: {
  9463. height: math.unit(1.4, "feet"),
  9464. name: "Head",
  9465. image: {
  9466. source: "./media/characters/kane/head.svg"
  9467. }
  9468. },
  9469. },
  9470. [
  9471. {
  9472. name: "Normal",
  9473. height: math.unit(2.1, "m"),
  9474. },
  9475. {
  9476. name: "Macro",
  9477. height: math.unit(1, "km"),
  9478. default: true
  9479. },
  9480. ]
  9481. ))
  9482. characterMakers.push(() => makeCharacter(
  9483. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  9484. {
  9485. frontSfw: {
  9486. name: "Front (SFW)",
  9487. height: math.unit(6 + 3/12, "feet"),
  9488. weight: math.unit(200, "kg"),
  9489. image: {
  9490. source: "./media/characters/tegon/front-sfw.svg",
  9491. extra: 1105/1087,
  9492. bottom: 86/1191
  9493. }
  9494. },
  9495. backSfw: {
  9496. name: "Back (SFW)",
  9497. height: math.unit(6 + 3/12, "feet"),
  9498. weight: math.unit(200, "kg"),
  9499. image: {
  9500. source: "./media/characters/tegon/back-sfw.svg",
  9501. extra: 1107/1087,
  9502. bottom: 21/1128
  9503. }
  9504. },
  9505. frontNsfw: {
  9506. name: "Front (NSFW)",
  9507. height: math.unit(6 + 3/12, "feet"),
  9508. weight: math.unit(200, "kg"),
  9509. image: {
  9510. source: "./media/characters/tegon/front-nsfw.svg",
  9511. extra: 1105/1087,
  9512. bottom: 86/1191
  9513. }
  9514. },
  9515. maw: {
  9516. height: math.unit(1.23, "feet"),
  9517. name: "Maw",
  9518. image: {
  9519. source: "./media/characters/tegon/maw.svg"
  9520. }
  9521. },
  9522. dick: {
  9523. height: math.unit(1.18, "feet"),
  9524. name: "Dick",
  9525. image: {
  9526. source: "./media/characters/tegon/dick.svg"
  9527. }
  9528. },
  9529. },
  9530. [
  9531. {
  9532. name: "Micro",
  9533. height: math.unit(1, "inch")
  9534. },
  9535. {
  9536. name: "Normal",
  9537. height: math.unit(6 + 3 / 12, "feet"),
  9538. default: true
  9539. },
  9540. {
  9541. name: "Macro",
  9542. height: math.unit(300, "feet")
  9543. },
  9544. {
  9545. name: "Megamacro",
  9546. height: math.unit(69, "miles")
  9547. },
  9548. ]
  9549. ))
  9550. characterMakers.push(() => makeCharacter(
  9551. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  9552. {
  9553. side: {
  9554. height: math.unit(6, "feet"),
  9555. weight: math.unit(2304, "lbs"),
  9556. name: "Side",
  9557. image: {
  9558. source: "./media/characters/arcturax/side.svg",
  9559. extra: 790 / 376,
  9560. bottom: 0.01
  9561. }
  9562. },
  9563. },
  9564. [
  9565. {
  9566. name: "Micro",
  9567. height: math.unit(2, "inch")
  9568. },
  9569. {
  9570. name: "Normal",
  9571. height: math.unit(6, "feet")
  9572. },
  9573. {
  9574. name: "Macro",
  9575. height: math.unit(39, "feet"),
  9576. default: true
  9577. },
  9578. {
  9579. name: "Megamacro",
  9580. height: math.unit(7, "miles")
  9581. },
  9582. ]
  9583. ))
  9584. characterMakers.push(() => makeCharacter(
  9585. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  9586. {
  9587. front: {
  9588. height: math.unit(6, "feet"),
  9589. weight: math.unit(50, "lbs"),
  9590. name: "Front",
  9591. image: {
  9592. source: "./media/characters/sentri/front.svg",
  9593. extra: 1750 / 1570,
  9594. bottom: 0.025
  9595. }
  9596. },
  9597. frontAlt: {
  9598. height: math.unit(6, "feet"),
  9599. weight: math.unit(50, "lbs"),
  9600. name: "Front (Alt)",
  9601. image: {
  9602. source: "./media/characters/sentri/front-alt.svg",
  9603. extra: 1750 / 1570,
  9604. bottom: 0.025
  9605. }
  9606. },
  9607. },
  9608. [
  9609. {
  9610. name: "Normal",
  9611. height: math.unit(15, "feet"),
  9612. default: true
  9613. },
  9614. {
  9615. name: "Macro",
  9616. height: math.unit(2500, "feet")
  9617. }
  9618. ]
  9619. ))
  9620. characterMakers.push(() => makeCharacter(
  9621. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9622. {
  9623. front: {
  9624. height: math.unit(5 + 8 / 12, "feet"),
  9625. weight: math.unit(130, "lbs"),
  9626. name: "Front",
  9627. image: {
  9628. source: "./media/characters/corvin/front.svg",
  9629. extra: 1803 / 1629
  9630. }
  9631. },
  9632. frontShirt: {
  9633. height: math.unit(5 + 8 / 12, "feet"),
  9634. weight: math.unit(130, "lbs"),
  9635. name: "Front (Shirt)",
  9636. image: {
  9637. source: "./media/characters/corvin/front-shirt.svg",
  9638. extra: 1803 / 1629
  9639. }
  9640. },
  9641. frontPoncho: {
  9642. height: math.unit(5 + 8 / 12, "feet"),
  9643. weight: math.unit(130, "lbs"),
  9644. name: "Front (Poncho)",
  9645. image: {
  9646. source: "./media/characters/corvin/front-poncho.svg",
  9647. extra: 1803 / 1629
  9648. }
  9649. },
  9650. side: {
  9651. height: math.unit(5 + 8 / 12, "feet"),
  9652. weight: math.unit(130, "lbs"),
  9653. name: "Side",
  9654. image: {
  9655. source: "./media/characters/corvin/side.svg",
  9656. extra: 1012 / 945
  9657. }
  9658. },
  9659. back: {
  9660. height: math.unit(5 + 8 / 12, "feet"),
  9661. weight: math.unit(130, "lbs"),
  9662. name: "Back",
  9663. image: {
  9664. source: "./media/characters/corvin/back.svg",
  9665. extra: 1803 / 1629
  9666. }
  9667. },
  9668. },
  9669. [
  9670. {
  9671. name: "Micro",
  9672. height: math.unit(3, "inches")
  9673. },
  9674. {
  9675. name: "Normal",
  9676. height: math.unit(5 + 8 / 12, "feet")
  9677. },
  9678. {
  9679. name: "Macro",
  9680. height: math.unit(300, "feet"),
  9681. default: true
  9682. },
  9683. {
  9684. name: "Megamacro",
  9685. height: math.unit(500, "miles")
  9686. }
  9687. ]
  9688. ))
  9689. characterMakers.push(() => makeCharacter(
  9690. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9691. {
  9692. front: {
  9693. height: math.unit(6, "feet"),
  9694. weight: math.unit(135, "lbs"),
  9695. name: "Front",
  9696. image: {
  9697. source: "./media/characters/q/front.svg",
  9698. extra: 854 / 752,
  9699. bottom: 0.005
  9700. }
  9701. },
  9702. back: {
  9703. height: math.unit(6, "feet"),
  9704. weight: math.unit(130, "lbs"),
  9705. name: "Back",
  9706. image: {
  9707. source: "./media/characters/q/back.svg",
  9708. extra: 854 / 752
  9709. }
  9710. },
  9711. },
  9712. [
  9713. {
  9714. name: "Macro",
  9715. height: math.unit(90, "feet"),
  9716. default: true
  9717. },
  9718. {
  9719. name: "Extra Macro",
  9720. height: math.unit(300, "feet"),
  9721. },
  9722. {
  9723. name: "BIG WALF",
  9724. height: math.unit(750, "feet"),
  9725. },
  9726. ]
  9727. ))
  9728. characterMakers.push(() => makeCharacter(
  9729. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9730. {
  9731. front: {
  9732. height: math.unit(3, "feet"),
  9733. weight: math.unit(28, "lbs"),
  9734. name: "Front",
  9735. image: {
  9736. source: "./media/characters/citrine/front.svg"
  9737. }
  9738. }
  9739. },
  9740. [
  9741. {
  9742. name: "Normal",
  9743. height: math.unit(3, "feet"),
  9744. default: true
  9745. }
  9746. ]
  9747. ))
  9748. characterMakers.push(() => makeCharacter(
  9749. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9750. {
  9751. front: {
  9752. height: math.unit(14, "feet"),
  9753. weight: math.unit(1450, "kg"),
  9754. preyCapacity: math.unit(15, "people"),
  9755. name: "Front",
  9756. image: {
  9757. source: "./media/characters/aura-starwind/front.svg",
  9758. extra: 1440/1327,
  9759. bottom: 11/1451
  9760. }
  9761. },
  9762. side: {
  9763. height: math.unit(14, "feet"),
  9764. weight: math.unit(1450, "kg"),
  9765. preyCapacity: math.unit(15, "people"),
  9766. name: "Side",
  9767. image: {
  9768. source: "./media/characters/aura-starwind/side.svg",
  9769. extra: 1654 / 1497
  9770. }
  9771. },
  9772. taur: {
  9773. height: math.unit(18, "feet"),
  9774. weight: math.unit(5500, "kg"),
  9775. preyCapacity: math.unit(50, "people"),
  9776. name: "Taur",
  9777. image: {
  9778. source: "./media/characters/aura-starwind/taur.svg",
  9779. extra: 1760 / 1650
  9780. }
  9781. },
  9782. feral: {
  9783. height: math.unit(46, "feet"),
  9784. weight: math.unit(25000, "kg"),
  9785. preyCapacity: math.unit(120, "people"),
  9786. name: "Feral",
  9787. image: {
  9788. source: "./media/characters/aura-starwind/feral.svg"
  9789. }
  9790. },
  9791. },
  9792. [
  9793. {
  9794. name: "Normal",
  9795. height: math.unit(14, "feet"),
  9796. default: true
  9797. },
  9798. {
  9799. name: "Macro",
  9800. height: math.unit(50, "meters")
  9801. },
  9802. {
  9803. name: "Megamacro",
  9804. height: math.unit(5000, "meters")
  9805. },
  9806. {
  9807. name: "Gigamacro",
  9808. height: math.unit(100000, "kilometers")
  9809. },
  9810. ]
  9811. ))
  9812. characterMakers.push(() => makeCharacter(
  9813. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9814. {
  9815. front: {
  9816. height: math.unit(2 + 7 / 12, "feet"),
  9817. weight: math.unit(32, "lbs"),
  9818. name: "Front",
  9819. image: {
  9820. source: "./media/characters/rivet/front.svg",
  9821. extra: 1716 / 1658,
  9822. bottom: 0.03
  9823. }
  9824. },
  9825. foot: {
  9826. height: math.unit(0.551, "feet"),
  9827. name: "Rivet's Foot",
  9828. image: {
  9829. source: "./media/characters/rivet/foot.svg"
  9830. },
  9831. rename: true
  9832. }
  9833. },
  9834. [
  9835. {
  9836. name: "Micro",
  9837. height: math.unit(1.5, "inches"),
  9838. },
  9839. {
  9840. name: "Normal",
  9841. height: math.unit(2 + 7 / 12, "feet"),
  9842. default: true
  9843. },
  9844. {
  9845. name: "Macro",
  9846. height: math.unit(85, "feet")
  9847. },
  9848. {
  9849. name: "Megamacro",
  9850. height: math.unit(2.2, "km")
  9851. }
  9852. ]
  9853. ))
  9854. characterMakers.push(() => makeCharacter(
  9855. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9856. {
  9857. front: {
  9858. height: math.unit(5 + 9 / 12, "feet"),
  9859. weight: math.unit(150, "lbs"),
  9860. name: "Front",
  9861. image: {
  9862. source: "./media/characters/coffee/front.svg",
  9863. extra: 946/880,
  9864. bottom: 66/1012
  9865. }
  9866. },
  9867. foot: {
  9868. height: math.unit(1.29, "feet"),
  9869. name: "Foot",
  9870. image: {
  9871. source: "./media/characters/coffee/foot.svg"
  9872. }
  9873. },
  9874. },
  9875. [
  9876. {
  9877. name: "Micro",
  9878. height: math.unit(2, "inches"),
  9879. },
  9880. {
  9881. name: "Normal",
  9882. height: math.unit(5 + 9 / 12, "feet"),
  9883. default: true
  9884. },
  9885. {
  9886. name: "Macro",
  9887. height: math.unit(800, "feet")
  9888. },
  9889. {
  9890. name: "Megamacro",
  9891. height: math.unit(25, "miles")
  9892. }
  9893. ]
  9894. ))
  9895. characterMakers.push(() => makeCharacter(
  9896. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9897. {
  9898. front: {
  9899. height: math.unit(6, "feet"),
  9900. weight: math.unit(200, "lbs"),
  9901. name: "Front",
  9902. image: {
  9903. source: "./media/characters/chari-gal/front.svg",
  9904. extra: 735/649,
  9905. bottom: 55/790
  9906. },
  9907. form: "normal",
  9908. default: true
  9909. },
  9910. back: {
  9911. height: math.unit(6, "feet"),
  9912. weight: math.unit(200, "lb"),
  9913. name: "Back",
  9914. image: {
  9915. source: "./media/characters/chari-gal/back.svg",
  9916. extra: 762/666,
  9917. bottom: 31/793
  9918. },
  9919. form: "normal"
  9920. },
  9921. mouth: {
  9922. height: math.unit(1.35, "feet"),
  9923. name: "Mouth",
  9924. image: {
  9925. source: "./media/characters/chari-gal/mouth.svg"
  9926. },
  9927. form: "normal"
  9928. },
  9929. gigantamax: {
  9930. height: math.unit(6 * 16, "feet"),
  9931. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9932. name: "Gigantamax",
  9933. image: {
  9934. source: "./media/characters/chari-gal/gigantamax-front.svg",
  9935. extra: 1507/1149,
  9936. bottom: 254/1761
  9937. },
  9938. form: "gigantamax",
  9939. default: true
  9940. },
  9941. },
  9942. [
  9943. {
  9944. name: "Normal",
  9945. height: math.unit(5 + 7 / 12, "feet"),
  9946. form: "normal",
  9947. },
  9948. {
  9949. name: "Macro",
  9950. height: math.unit(200, "feet"),
  9951. default: true,
  9952. form: "normal"
  9953. },
  9954. {
  9955. name: "Normal",
  9956. height: math.unit(16 * (5 + 7 / 12), "feet"),
  9957. form: "gigantamax",
  9958. },
  9959. {
  9960. name: "Macro",
  9961. height: math.unit(16 * 200, "feet"),
  9962. default: true,
  9963. form: "gigantamax"
  9964. },
  9965. ],
  9966. {
  9967. "normal": {
  9968. name: "Normal",
  9969. default: true
  9970. },
  9971. "gigantamax": {
  9972. name: "Gigantamax",
  9973. },
  9974. }
  9975. ))
  9976. characterMakers.push(() => makeCharacter(
  9977. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9978. {
  9979. front: {
  9980. height: math.unit(6, "feet"),
  9981. weight: math.unit(150, "lbs"),
  9982. name: "Front",
  9983. image: {
  9984. source: "./media/characters/nova/front.svg",
  9985. extra: 5000 / 4722,
  9986. bottom: 0.02
  9987. }
  9988. }
  9989. },
  9990. [
  9991. {
  9992. name: "Micro-",
  9993. height: math.unit(0.8, "inches")
  9994. },
  9995. {
  9996. name: "Micro",
  9997. height: math.unit(2, "inches"),
  9998. default: true
  9999. },
  10000. ]
  10001. ))
  10002. characterMakers.push(() => makeCharacter(
  10003. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  10004. {
  10005. koboldFront: {
  10006. height: math.unit(3 + 1 / 12, "feet"),
  10007. weight: math.unit(21.7, "lbs"),
  10008. name: "Front",
  10009. image: {
  10010. source: "./media/characters/argent/kobold-front.svg",
  10011. extra: 1471 / 1331,
  10012. bottom: 100.8 / 1575.5
  10013. },
  10014. form: "kobold",
  10015. default: true
  10016. },
  10017. dragonFront: {
  10018. height: math.unit(75, "inches"),
  10019. name: "Front",
  10020. image: {
  10021. source: "./media/characters/argent/dragon-front.svg",
  10022. extra: 1389/1248,
  10023. bottom: 54/1443
  10024. },
  10025. form: "dragon",
  10026. },
  10027. dragonBack: {
  10028. height: math.unit(75, "inches"),
  10029. name: "Back",
  10030. image: {
  10031. source: "./media/characters/argent/dragon-back.svg",
  10032. extra: 1399/1271,
  10033. bottom: 23/1422
  10034. },
  10035. form: "dragon",
  10036. },
  10037. dragonDressed: {
  10038. height: math.unit(75, "inches"),
  10039. name: "Dressed",
  10040. image: {
  10041. source: "./media/characters/argent/dragon-dressed.svg",
  10042. extra: 1350/1215,
  10043. bottom: 26/1376
  10044. },
  10045. form: "dragon"
  10046. },
  10047. dragonHead: {
  10048. height: math.unit(23.5, "inches"),
  10049. name: "Head",
  10050. image: {
  10051. source: "./media/characters/argent/dragon-head.svg"
  10052. },
  10053. form: "dragon",
  10054. },
  10055. },
  10056. [
  10057. {
  10058. name: "Micro",
  10059. height: math.unit(2, "inches"),
  10060. form: "kobold",
  10061. },
  10062. {
  10063. name: "Normal",
  10064. height: math.unit(3 + 1 / 12, "feet"),
  10065. form: "kobold",
  10066. default: true
  10067. },
  10068. {
  10069. name: "Macro",
  10070. height: math.unit(120, "feet"),
  10071. form: "kobold",
  10072. },
  10073. {
  10074. name: "Speck",
  10075. height: math.unit(1, "mm"),
  10076. form: "dragon",
  10077. },
  10078. {
  10079. name: "Tiny",
  10080. height: math.unit(1, "cm"),
  10081. form: "dragon",
  10082. },
  10083. {
  10084. name: "Micro",
  10085. height: math.unit(5, "cm"),
  10086. form: "dragon",
  10087. },
  10088. {
  10089. name: "Normal",
  10090. height: math.unit(75, "inches"),
  10091. form: "dragon",
  10092. default: true
  10093. },
  10094. {
  10095. name: "Extra Tall",
  10096. height: math.unit(9, "feet"),
  10097. form: "dragon",
  10098. },
  10099. {
  10100. name: "Inconvenient",
  10101. height: math.unit(5, "meters"),
  10102. form: "dragon",
  10103. },
  10104. {
  10105. name: "Macro",
  10106. height: math.unit(70, "meters"),
  10107. form: "dragon",
  10108. },
  10109. {
  10110. name: "Macro+",
  10111. height: math.unit(250, "meters"),
  10112. form: "dragon",
  10113. },
  10114. {
  10115. name: "Megamacro",
  10116. height: math.unit(20, "km"),
  10117. form: "dragon",
  10118. },
  10119. {
  10120. name: "Mountainous",
  10121. height: math.unit(100, "km"),
  10122. form: "dragon",
  10123. },
  10124. {
  10125. name: "Continental",
  10126. height: math.unit(2, "megameters"),
  10127. form: "dragon",
  10128. },
  10129. {
  10130. name: "Too Big",
  10131. height: math.unit(900, "megameters"),
  10132. form: "dragon",
  10133. },
  10134. ],
  10135. {
  10136. "kobold": {
  10137. name: "Kobold",
  10138. default: true
  10139. },
  10140. "dragon": {
  10141. name: "Dragon",
  10142. },
  10143. }
  10144. ))
  10145. characterMakers.push(() => makeCharacter(
  10146. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  10147. {
  10148. lamp: {
  10149. height: math.unit(7 * 1559 / 989, "feet"),
  10150. name: "Magic Lamp",
  10151. image: {
  10152. source: "./media/characters/mira-al-cul/lamp.svg",
  10153. extra: 1617 / 1559
  10154. }
  10155. },
  10156. front: {
  10157. height: math.unit(7, "feet"),
  10158. name: "Front",
  10159. image: {
  10160. source: "./media/characters/mira-al-cul/front.svg",
  10161. extra: 1044 / 990
  10162. }
  10163. },
  10164. },
  10165. [
  10166. {
  10167. name: "Heavily Restricted",
  10168. height: math.unit(7 * 1559 / 989, "feet")
  10169. },
  10170. {
  10171. name: "Freshly Freed",
  10172. height: math.unit(50 * 1559 / 989, "feet")
  10173. },
  10174. {
  10175. name: "World Encompassing",
  10176. height: math.unit(10000 * 1559 / 989, "miles")
  10177. },
  10178. {
  10179. name: "Galactic",
  10180. height: math.unit(1.433 * 1559 / 989, "zettameters")
  10181. },
  10182. {
  10183. name: "Palmed Universe",
  10184. height: math.unit(6000 * 1559 / 989, "yottameters"),
  10185. default: true
  10186. },
  10187. {
  10188. name: "Multiversal Matriarch",
  10189. height: math.unit(8.87e10, "yottameters")
  10190. },
  10191. {
  10192. name: "Void Mother",
  10193. height: math.unit(3.14e110, "yottaparsecs")
  10194. },
  10195. {
  10196. name: "Toying with Transcendence",
  10197. height: math.unit(1e307, "meters")
  10198. },
  10199. ]
  10200. ))
  10201. characterMakers.push(() => makeCharacter(
  10202. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  10203. {
  10204. front: {
  10205. height: math.unit(17 + 1 / 12, "feet"),
  10206. weight: math.unit(476.2 * 5, "lbs"),
  10207. name: "Front",
  10208. image: {
  10209. source: "./media/characters/kuro-shi-uchū/front.svg",
  10210. extra: 2329 / 1835,
  10211. bottom: 0.02
  10212. }
  10213. },
  10214. },
  10215. [
  10216. {
  10217. name: "Micro",
  10218. height: math.unit(2, "inches")
  10219. },
  10220. {
  10221. name: "Normal",
  10222. height: math.unit(12, "meters")
  10223. },
  10224. {
  10225. name: "Planetary",
  10226. height: math.unit(0.00929, "AU"),
  10227. default: true
  10228. },
  10229. {
  10230. name: "Universal",
  10231. height: math.unit(20, "gigaparsecs")
  10232. },
  10233. ]
  10234. ))
  10235. characterMakers.push(() => makeCharacter(
  10236. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  10237. {
  10238. front: {
  10239. height: math.unit(5 + 2 / 12, "feet"),
  10240. weight: math.unit(120, "lbs"),
  10241. name: "Front",
  10242. image: {
  10243. source: "./media/characters/katherine/front.svg",
  10244. extra: 2075 / 1969
  10245. }
  10246. },
  10247. dress: {
  10248. height: math.unit(5 + 2 / 12, "feet"),
  10249. weight: math.unit(120, "lbs"),
  10250. name: "Dress",
  10251. image: {
  10252. source: "./media/characters/katherine/dress.svg",
  10253. extra: 2258 / 2064
  10254. }
  10255. },
  10256. },
  10257. [
  10258. {
  10259. name: "Micro",
  10260. height: math.unit(1, "inches"),
  10261. default: true
  10262. },
  10263. {
  10264. name: "Normal",
  10265. height: math.unit(5 + 2 / 12, "feet")
  10266. },
  10267. {
  10268. name: "Macro",
  10269. height: math.unit(100, "meters")
  10270. },
  10271. {
  10272. name: "Megamacro",
  10273. height: math.unit(80, "miles")
  10274. },
  10275. ]
  10276. ))
  10277. characterMakers.push(() => makeCharacter(
  10278. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  10279. {
  10280. front: {
  10281. height: math.unit(7 + 8 / 12, "feet"),
  10282. weight: math.unit(250, "lbs"),
  10283. name: "Front",
  10284. image: {
  10285. source: "./media/characters/yevis/front.svg",
  10286. extra: 1938 / 1755
  10287. }
  10288. }
  10289. },
  10290. [
  10291. {
  10292. name: "Mortal",
  10293. height: math.unit(7 + 8 / 12, "feet")
  10294. },
  10295. {
  10296. name: "Battle",
  10297. height: math.unit(25 + 11 / 12, "feet")
  10298. },
  10299. {
  10300. name: "Wrath",
  10301. height: math.unit(1654 + 11 / 12, "feet")
  10302. },
  10303. {
  10304. name: "Planet Destroyer",
  10305. height: math.unit(12000, "miles")
  10306. },
  10307. {
  10308. name: "Galaxy Conqueror",
  10309. height: math.unit(1.45, "zettameters"),
  10310. default: true
  10311. },
  10312. {
  10313. name: "Universal War",
  10314. height: math.unit(184, "gigaparsecs")
  10315. },
  10316. {
  10317. name: "Eternity War",
  10318. height: math.unit(1.98e55, "yottaparsecs")
  10319. },
  10320. ]
  10321. ))
  10322. characterMakers.push(() => makeCharacter(
  10323. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  10324. {
  10325. front: {
  10326. height: math.unit(5 + 8 / 12, "feet"),
  10327. weight: math.unit(63, "kg"),
  10328. name: "Front",
  10329. image: {
  10330. source: "./media/characters/xavier/front.svg",
  10331. extra: 944 / 883
  10332. }
  10333. },
  10334. frontStretch: {
  10335. height: math.unit(5 + 8 / 12, "feet"),
  10336. weight: math.unit(63, "kg"),
  10337. name: "Stretching",
  10338. image: {
  10339. source: "./media/characters/xavier/front-stretch.svg",
  10340. extra: 962 / 820
  10341. }
  10342. },
  10343. },
  10344. [
  10345. {
  10346. name: "Normal",
  10347. height: math.unit(5 + 8 / 12, "feet")
  10348. },
  10349. {
  10350. name: "Macro",
  10351. height: math.unit(100, "meters"),
  10352. default: true
  10353. },
  10354. {
  10355. name: "McLargeHuge",
  10356. height: math.unit(10, "miles")
  10357. },
  10358. ]
  10359. ))
  10360. characterMakers.push(() => makeCharacter(
  10361. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  10362. {
  10363. front: {
  10364. height: math.unit(5 + 5 / 12, "feet"),
  10365. weight: math.unit(150, "lb"),
  10366. name: "Front",
  10367. image: {
  10368. source: "./media/characters/joshii/front.svg",
  10369. extra: 765 / 653,
  10370. bottom: 51 / 816
  10371. }
  10372. },
  10373. foot: {
  10374. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  10375. name: "Foot",
  10376. image: {
  10377. source: "./media/characters/joshii/foot.svg"
  10378. }
  10379. },
  10380. },
  10381. [
  10382. {
  10383. name: "Micro",
  10384. height: math.unit(2, "inches")
  10385. },
  10386. {
  10387. name: "Normal",
  10388. height: math.unit(5 + 5 / 12, "feet")
  10389. },
  10390. {
  10391. name: "Macro",
  10392. height: math.unit(785, "feet"),
  10393. default: true
  10394. },
  10395. {
  10396. name: "Megamacro",
  10397. height: math.unit(24.5, "miles")
  10398. },
  10399. ]
  10400. ))
  10401. characterMakers.push(() => makeCharacter(
  10402. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  10403. {
  10404. front: {
  10405. height: math.unit(6, "feet"),
  10406. weight: math.unit(150, "lb"),
  10407. name: "Front",
  10408. image: {
  10409. source: "./media/characters/goddess-elizabeth/front.svg",
  10410. extra: 1800 / 1525,
  10411. bottom: 0.005
  10412. }
  10413. },
  10414. foot: {
  10415. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  10416. name: "Foot",
  10417. image: {
  10418. source: "./media/characters/goddess-elizabeth/foot.svg"
  10419. }
  10420. },
  10421. mouth: {
  10422. height: math.unit(6, "feet"),
  10423. name: "Mouth",
  10424. image: {
  10425. source: "./media/characters/goddess-elizabeth/mouth.svg"
  10426. }
  10427. },
  10428. },
  10429. [
  10430. {
  10431. name: "Micro",
  10432. height: math.unit(12, "feet")
  10433. },
  10434. {
  10435. name: "Normal",
  10436. height: math.unit(80, "miles"),
  10437. default: true
  10438. },
  10439. {
  10440. name: "Macro",
  10441. height: math.unit(15000, "parsecs")
  10442. },
  10443. ]
  10444. ))
  10445. characterMakers.push(() => makeCharacter(
  10446. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  10447. {
  10448. front: {
  10449. height: math.unit(5 + 9 / 12, "feet"),
  10450. weight: math.unit(144, "lb"),
  10451. name: "Front",
  10452. image: {
  10453. source: "./media/characters/kara/front.svg"
  10454. }
  10455. },
  10456. feet: {
  10457. height: math.unit(6 / 6.765, "feet"),
  10458. name: "Kara's Feet",
  10459. rename: true,
  10460. image: {
  10461. source: "./media/characters/kara/feet.svg"
  10462. }
  10463. },
  10464. },
  10465. [
  10466. {
  10467. name: "Normal",
  10468. height: math.unit(5 + 9 / 12, "feet")
  10469. },
  10470. {
  10471. name: "Macro",
  10472. height: math.unit(174, "feet"),
  10473. default: true
  10474. },
  10475. ]
  10476. ))
  10477. characterMakers.push(() => makeCharacter(
  10478. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  10479. {
  10480. front: {
  10481. height: math.unit(18, "feet"),
  10482. weight: math.unit(4050, "lb"),
  10483. name: "Front",
  10484. image: {
  10485. source: "./media/characters/tyrone/front.svg",
  10486. extra: 2405 / 2270,
  10487. bottom: 182 / 2587
  10488. }
  10489. },
  10490. },
  10491. [
  10492. {
  10493. name: "Normal",
  10494. height: math.unit(18, "feet"),
  10495. default: true
  10496. },
  10497. {
  10498. name: "Macro",
  10499. height: math.unit(300, "feet")
  10500. },
  10501. {
  10502. name: "Megamacro",
  10503. height: math.unit(15, "km")
  10504. },
  10505. {
  10506. name: "Gigamacro",
  10507. height: math.unit(500, "km")
  10508. },
  10509. {
  10510. name: "Teramacro",
  10511. height: math.unit(0.5, "gigameters")
  10512. },
  10513. {
  10514. name: "Omnimacro",
  10515. height: math.unit(1e252, "yottauniverse")
  10516. },
  10517. ]
  10518. ))
  10519. characterMakers.push(() => makeCharacter(
  10520. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  10521. {
  10522. front: {
  10523. height: math.unit(7 + 8 / 12, "feet"),
  10524. weight: math.unit(120, "lb"),
  10525. name: "Front",
  10526. image: {
  10527. source: "./media/characters/danny/front.svg",
  10528. extra: 1490 / 1350
  10529. }
  10530. },
  10531. back: {
  10532. height: math.unit(7 + 8 / 12, "feet"),
  10533. weight: math.unit(120, "lb"),
  10534. name: "Back",
  10535. image: {
  10536. source: "./media/characters/danny/back.svg",
  10537. extra: 1490 / 1350
  10538. }
  10539. },
  10540. },
  10541. [
  10542. {
  10543. name: "Normal",
  10544. height: math.unit(7 + 8 / 12, "feet"),
  10545. default: true
  10546. },
  10547. ]
  10548. ))
  10549. characterMakers.push(() => makeCharacter(
  10550. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  10551. {
  10552. front: {
  10553. height: math.unit(3.5, "inches"),
  10554. weight: math.unit(19, "grams"),
  10555. name: "Front",
  10556. image: {
  10557. source: "./media/characters/mallow/front.svg",
  10558. extra: 471 / 431
  10559. }
  10560. },
  10561. back: {
  10562. height: math.unit(3.5, "inches"),
  10563. weight: math.unit(19, "grams"),
  10564. name: "Back",
  10565. image: {
  10566. source: "./media/characters/mallow/back.svg",
  10567. extra: 471 / 431
  10568. }
  10569. },
  10570. },
  10571. [
  10572. {
  10573. name: "Normal",
  10574. height: math.unit(3.5, "inches"),
  10575. default: true
  10576. },
  10577. ]
  10578. ))
  10579. characterMakers.push(() => makeCharacter(
  10580. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  10581. {
  10582. front: {
  10583. height: math.unit(9, "feet"),
  10584. weight: math.unit(230, "kg"),
  10585. name: "Front",
  10586. image: {
  10587. source: "./media/characters/starry-aqua/front.svg"
  10588. }
  10589. },
  10590. back: {
  10591. height: math.unit(9, "feet"),
  10592. weight: math.unit(230, "kg"),
  10593. name: "Back",
  10594. image: {
  10595. source: "./media/characters/starry-aqua/back.svg"
  10596. }
  10597. },
  10598. hand: {
  10599. height: math.unit(9 * 0.1168, "feet"),
  10600. name: "Hand",
  10601. image: {
  10602. source: "./media/characters/starry-aqua/hand.svg"
  10603. }
  10604. },
  10605. foot: {
  10606. height: math.unit(9 * 0.18, "feet"),
  10607. name: "Foot",
  10608. image: {
  10609. source: "./media/characters/starry-aqua/foot.svg"
  10610. }
  10611. }
  10612. },
  10613. [
  10614. {
  10615. name: "Micro",
  10616. height: math.unit(3, "inches")
  10617. },
  10618. {
  10619. name: "Normal",
  10620. height: math.unit(9, "feet")
  10621. },
  10622. {
  10623. name: "Macro",
  10624. height: math.unit(300, "feet"),
  10625. default: true
  10626. },
  10627. {
  10628. name: "Megamacro",
  10629. height: math.unit(3200, "feet")
  10630. }
  10631. ]
  10632. ))
  10633. characterMakers.push(() => makeCharacter(
  10634. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  10635. {
  10636. front: {
  10637. height: math.unit(15, "feet"),
  10638. weight: math.unit(5026, "lb"),
  10639. name: "Front",
  10640. image: {
  10641. source: "./media/characters/luka-towers/front.svg",
  10642. extra: 1269/1133,
  10643. bottom: 51/1320
  10644. }
  10645. },
  10646. },
  10647. [
  10648. {
  10649. name: "Normal",
  10650. height: math.unit(15, "feet"),
  10651. default: true
  10652. },
  10653. {
  10654. name: "Minimacro",
  10655. height: math.unit(25, "feet")
  10656. },
  10657. {
  10658. name: "Macro",
  10659. height: math.unit(320, "feet")
  10660. },
  10661. {
  10662. name: "Megamacro",
  10663. height: math.unit(35000, "feet")
  10664. },
  10665. {
  10666. name: "Gigamacro",
  10667. height: math.unit(4000, "miles")
  10668. },
  10669. {
  10670. name: "Teramacro",
  10671. height: math.unit(15000, "miles")
  10672. },
  10673. ]
  10674. ))
  10675. characterMakers.push(() => makeCharacter(
  10676. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10677. {
  10678. front: {
  10679. height: math.unit(6, "feet"),
  10680. weight: math.unit(150, "lb"),
  10681. name: "Front",
  10682. image: {
  10683. source: "./media/characters/natalie-nightring/front.svg",
  10684. extra: 1,
  10685. bottom: 0.06
  10686. }
  10687. },
  10688. },
  10689. [
  10690. {
  10691. name: "Uh Oh",
  10692. height: math.unit(0.1, "mm")
  10693. },
  10694. {
  10695. name: "Small",
  10696. height: math.unit(3, "inches")
  10697. },
  10698. {
  10699. name: "Human Scale",
  10700. height: math.unit(6, "feet")
  10701. },
  10702. {
  10703. name: "Librarian",
  10704. height: math.unit(50, "feet"),
  10705. default: true
  10706. },
  10707. {
  10708. name: "Immense",
  10709. height: math.unit(200, "miles")
  10710. },
  10711. ]
  10712. ))
  10713. characterMakers.push(() => makeCharacter(
  10714. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10715. {
  10716. front: {
  10717. height: math.unit(6, "feet"),
  10718. weight: math.unit(180, "lbs"),
  10719. name: "Front",
  10720. image: {
  10721. source: "./media/characters/danni-rosie/front.svg",
  10722. extra: 1260 / 1128,
  10723. bottom: 0.022
  10724. }
  10725. },
  10726. },
  10727. [
  10728. {
  10729. name: "Micro",
  10730. height: math.unit(2, "inches"),
  10731. default: true
  10732. },
  10733. ]
  10734. ))
  10735. characterMakers.push(() => makeCharacter(
  10736. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10737. {
  10738. front: {
  10739. height: math.unit(5 + 9 / 12, "feet"),
  10740. weight: math.unit(220, "lb"),
  10741. name: "Front",
  10742. image: {
  10743. source: "./media/characters/samantha-kruse/front.svg",
  10744. extra: (985 / 935),
  10745. bottom: 0.03
  10746. }
  10747. },
  10748. frontUndressed: {
  10749. height: math.unit(5 + 9 / 12, "feet"),
  10750. weight: math.unit(220, "lb"),
  10751. name: "Front (Undressed)",
  10752. image: {
  10753. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10754. extra: (973 / 923),
  10755. bottom: 0.025
  10756. }
  10757. },
  10758. fat: {
  10759. height: math.unit(5 + 9 / 12, "feet"),
  10760. weight: math.unit(900, "lb"),
  10761. name: "Front (Fat)",
  10762. image: {
  10763. source: "./media/characters/samantha-kruse/fat.svg",
  10764. extra: 2688 / 2561
  10765. }
  10766. },
  10767. },
  10768. [
  10769. {
  10770. name: "Normal",
  10771. height: math.unit(5 + 9 / 12, "feet"),
  10772. default: true
  10773. }
  10774. ]
  10775. ))
  10776. characterMakers.push(() => makeCharacter(
  10777. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10778. {
  10779. back: {
  10780. height: math.unit(5 + 4 / 12, "feet"),
  10781. weight: math.unit(4963, "lb"),
  10782. name: "Back",
  10783. image: {
  10784. source: "./media/characters/amelia-rosie/back.svg",
  10785. extra: 1113 / 963,
  10786. bottom: 0.01
  10787. }
  10788. },
  10789. },
  10790. [
  10791. {
  10792. name: "Level 0",
  10793. height: math.unit(5 + 4 / 12, "feet")
  10794. },
  10795. {
  10796. name: "Level 1",
  10797. height: math.unit(164597, "feet"),
  10798. default: true
  10799. },
  10800. {
  10801. name: "Level 2",
  10802. height: math.unit(956243, "miles")
  10803. },
  10804. {
  10805. name: "Level 3",
  10806. height: math.unit(29421709423, "miles")
  10807. },
  10808. {
  10809. name: "Level 4",
  10810. height: math.unit(154, "lightyears")
  10811. },
  10812. {
  10813. name: "Level 5",
  10814. height: math.unit(4738272, "lightyears")
  10815. },
  10816. {
  10817. name: "Level 6",
  10818. height: math.unit(145787152896, "lightyears")
  10819. },
  10820. ]
  10821. ))
  10822. characterMakers.push(() => makeCharacter(
  10823. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10824. {
  10825. front: {
  10826. height: math.unit(5 + 11 / 12, "feet"),
  10827. weight: math.unit(65, "kg"),
  10828. name: "Front",
  10829. image: {
  10830. source: "./media/characters/rook-kitara/front.svg",
  10831. extra: 1347 / 1274,
  10832. bottom: 0.005
  10833. }
  10834. },
  10835. },
  10836. [
  10837. {
  10838. name: "Totally Unfair",
  10839. height: math.unit(1.8, "mm")
  10840. },
  10841. {
  10842. name: "Lap Rookie",
  10843. height: math.unit(1.4, "feet")
  10844. },
  10845. {
  10846. name: "Normal",
  10847. height: math.unit(5 + 11 / 12, "feet"),
  10848. default: true
  10849. },
  10850. {
  10851. name: "How Did This Happen",
  10852. height: math.unit(80, "miles")
  10853. }
  10854. ]
  10855. ))
  10856. characterMakers.push(() => makeCharacter(
  10857. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10858. {
  10859. front: {
  10860. height: math.unit(7, "feet"),
  10861. weight: math.unit(300, "lb"),
  10862. name: "Front",
  10863. image: {
  10864. source: "./media/characters/pisces/front.svg",
  10865. extra: 2255 / 2115,
  10866. bottom: 0.03
  10867. }
  10868. },
  10869. back: {
  10870. height: math.unit(7, "feet"),
  10871. weight: math.unit(300, "lb"),
  10872. name: "Back",
  10873. image: {
  10874. source: "./media/characters/pisces/back.svg",
  10875. extra: 2146 / 2055,
  10876. bottom: 0.04
  10877. }
  10878. },
  10879. },
  10880. [
  10881. {
  10882. name: "Normal",
  10883. height: math.unit(7, "feet"),
  10884. default: true
  10885. },
  10886. {
  10887. name: "Swimming Pool",
  10888. height: math.unit(12.2, "meters")
  10889. },
  10890. {
  10891. name: "Olympic Swimming Pool",
  10892. height: math.unit(56.3, "meters")
  10893. },
  10894. {
  10895. name: "Lake Superior",
  10896. height: math.unit(93900, "meters")
  10897. },
  10898. {
  10899. name: "Mediterranean Sea",
  10900. height: math.unit(644457, "meters")
  10901. },
  10902. {
  10903. name: "World's Oceans",
  10904. height: math.unit(4567491, "meters")
  10905. },
  10906. ]
  10907. ))
  10908. characterMakers.push(() => makeCharacter(
  10909. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10910. {
  10911. front: {
  10912. height: math.unit(2.3, "meters"),
  10913. weight: math.unit(120, "kg"),
  10914. name: "Front",
  10915. image: {
  10916. source: "./media/characters/zelas/front.svg"
  10917. }
  10918. },
  10919. side: {
  10920. height: math.unit(2.3, "meters"),
  10921. weight: math.unit(120, "kg"),
  10922. name: "Side",
  10923. image: {
  10924. source: "./media/characters/zelas/side.svg"
  10925. }
  10926. },
  10927. back: {
  10928. height: math.unit(2.3, "meters"),
  10929. weight: math.unit(120, "kg"),
  10930. name: "Back",
  10931. image: {
  10932. source: "./media/characters/zelas/back.svg"
  10933. }
  10934. },
  10935. foot: {
  10936. height: math.unit(1.116, "feet"),
  10937. name: "Foot",
  10938. image: {
  10939. source: "./media/characters/zelas/foot.svg"
  10940. }
  10941. },
  10942. },
  10943. [
  10944. {
  10945. name: "Normal",
  10946. height: math.unit(2.3, "meters")
  10947. },
  10948. {
  10949. name: "Macro",
  10950. height: math.unit(30, "meters"),
  10951. default: true
  10952. },
  10953. ]
  10954. ))
  10955. characterMakers.push(() => makeCharacter(
  10956. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10957. {
  10958. front: {
  10959. height: math.unit(1, "inch"),
  10960. weight: math.unit(0.21, "grams"),
  10961. name: "Front",
  10962. image: {
  10963. source: "./media/characters/talbot/front.svg",
  10964. extra: 594 / 544
  10965. }
  10966. },
  10967. },
  10968. [
  10969. {
  10970. name: "Micro",
  10971. height: math.unit(1, "inch"),
  10972. default: true
  10973. },
  10974. ]
  10975. ))
  10976. characterMakers.push(() => makeCharacter(
  10977. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10978. {
  10979. front: {
  10980. height: math.unit(3 + 3 / 12, "feet"),
  10981. weight: math.unit(51.8, "lb"),
  10982. name: "Front",
  10983. image: {
  10984. source: "./media/characters/fliss/front.svg",
  10985. extra: 840 / 640
  10986. }
  10987. },
  10988. },
  10989. [
  10990. {
  10991. name: "Teeny Tiny",
  10992. height: math.unit(1, "mm")
  10993. },
  10994. {
  10995. name: "Small",
  10996. height: math.unit(1, "inch"),
  10997. default: true
  10998. },
  10999. {
  11000. name: "Standard Sylveon",
  11001. height: math.unit(3 + 3 / 12, "feet")
  11002. },
  11003. {
  11004. name: "Large Nuisance",
  11005. height: math.unit(33, "feet")
  11006. },
  11007. {
  11008. name: "City Filler",
  11009. height: math.unit(3000, "feet")
  11010. },
  11011. {
  11012. name: "New Horizon",
  11013. height: math.unit(6000, "miles")
  11014. },
  11015. ]
  11016. ))
  11017. characterMakers.push(() => makeCharacter(
  11018. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  11019. {
  11020. front: {
  11021. height: math.unit(5, "cm"),
  11022. weight: math.unit(1.94, "g"),
  11023. name: "Front",
  11024. image: {
  11025. source: "./media/characters/fleta/front.svg",
  11026. extra: 835 / 803
  11027. }
  11028. },
  11029. back: {
  11030. height: math.unit(5, "cm"),
  11031. weight: math.unit(1.94, "g"),
  11032. name: "Back",
  11033. image: {
  11034. source: "./media/characters/fleta/back.svg",
  11035. extra: 835 / 803
  11036. }
  11037. },
  11038. },
  11039. [
  11040. {
  11041. name: "Micro",
  11042. height: math.unit(5, "cm"),
  11043. default: true
  11044. },
  11045. ]
  11046. ))
  11047. characterMakers.push(() => makeCharacter(
  11048. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  11049. {
  11050. front: {
  11051. height: math.unit(6, "feet"),
  11052. weight: math.unit(225, "lb"),
  11053. name: "Front",
  11054. image: {
  11055. source: "./media/characters/dominic/front.svg",
  11056. extra: 1770 / 1620,
  11057. bottom: 0.025
  11058. }
  11059. },
  11060. back: {
  11061. height: math.unit(6, "feet"),
  11062. weight: math.unit(225, "lb"),
  11063. name: "Back",
  11064. image: {
  11065. source: "./media/characters/dominic/back.svg",
  11066. extra: 1745 / 1620,
  11067. bottom: 0.065
  11068. }
  11069. },
  11070. },
  11071. [
  11072. {
  11073. name: "Nano",
  11074. height: math.unit(0.1, "mm")
  11075. },
  11076. {
  11077. name: "Micro-",
  11078. height: math.unit(1, "mm")
  11079. },
  11080. {
  11081. name: "Micro",
  11082. height: math.unit(4, "inches")
  11083. },
  11084. {
  11085. name: "Normal",
  11086. height: math.unit(6 + 4 / 12, "feet"),
  11087. default: true
  11088. },
  11089. {
  11090. name: "Macro",
  11091. height: math.unit(115, "feet")
  11092. },
  11093. {
  11094. name: "Macro+",
  11095. height: math.unit(955, "feet")
  11096. },
  11097. {
  11098. name: "Megamacro",
  11099. height: math.unit(8990, "feet")
  11100. },
  11101. {
  11102. name: "Gigmacro",
  11103. height: math.unit(9310, "miles")
  11104. },
  11105. {
  11106. name: "Teramacro",
  11107. height: math.unit(1567005010, "miles")
  11108. },
  11109. {
  11110. name: "Examacro",
  11111. height: math.unit(1425, "parsecs")
  11112. },
  11113. ]
  11114. ))
  11115. characterMakers.push(() => makeCharacter(
  11116. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  11117. {
  11118. front: {
  11119. height: math.unit(400, "feet"),
  11120. weight: math.unit(44444444, "lb"),
  11121. name: "Front",
  11122. image: {
  11123. source: "./media/characters/major-colonel/front.svg"
  11124. }
  11125. },
  11126. back: {
  11127. height: math.unit(400, "feet"),
  11128. weight: math.unit(44444444, "lb"),
  11129. name: "Back",
  11130. image: {
  11131. source: "./media/characters/major-colonel/back.svg"
  11132. }
  11133. },
  11134. },
  11135. [
  11136. {
  11137. name: "Macro",
  11138. height: math.unit(400, "feet"),
  11139. default: true
  11140. },
  11141. ]
  11142. ))
  11143. characterMakers.push(() => makeCharacter(
  11144. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  11145. {
  11146. catFront: {
  11147. height: math.unit(6, "feet"),
  11148. weight: math.unit(120, "lb"),
  11149. name: "Front (Cat Side)",
  11150. image: {
  11151. source: "./media/characters/axel-lycan/cat-front.svg",
  11152. extra: 430 / 402,
  11153. bottom: 43 / 472.35
  11154. }
  11155. },
  11156. catBack: {
  11157. height: math.unit(6, "feet"),
  11158. weight: math.unit(120, "lb"),
  11159. name: "Back (Cat Side)",
  11160. image: {
  11161. source: "./media/characters/axel-lycan/cat-back.svg",
  11162. extra: 447 / 419,
  11163. bottom: 23.3 / 469
  11164. }
  11165. },
  11166. wolfFront: {
  11167. height: math.unit(6, "feet"),
  11168. weight: math.unit(120, "lb"),
  11169. name: "Front (Wolf Side)",
  11170. image: {
  11171. source: "./media/characters/axel-lycan/wolf-front.svg",
  11172. extra: 485 / 456,
  11173. bottom: 19 / 504
  11174. }
  11175. },
  11176. wolfBack: {
  11177. height: math.unit(6, "feet"),
  11178. weight: math.unit(120, "lb"),
  11179. name: "Back (Wolf Side)",
  11180. image: {
  11181. source: "./media/characters/axel-lycan/wolf-back.svg",
  11182. extra: 475 / 438,
  11183. bottom: 39.2 / 514
  11184. }
  11185. },
  11186. },
  11187. [
  11188. {
  11189. name: "Macro",
  11190. height: math.unit(1, "km"),
  11191. default: true
  11192. },
  11193. ]
  11194. ))
  11195. characterMakers.push(() => makeCharacter(
  11196. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  11197. {
  11198. front: {
  11199. height: math.unit(5 + 9 / 12, "feet"),
  11200. weight: math.unit(175, "lb"),
  11201. name: "Front",
  11202. image: {
  11203. source: "./media/characters/vanrel-hyena/front.svg",
  11204. extra: 1086 / 1010,
  11205. bottom: 0.04
  11206. }
  11207. },
  11208. },
  11209. [
  11210. {
  11211. name: "Normal",
  11212. height: math.unit(5 + 9 / 12, "feet"),
  11213. default: true
  11214. },
  11215. ]
  11216. ))
  11217. characterMakers.push(() => makeCharacter(
  11218. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  11219. {
  11220. front: {
  11221. height: math.unit(6, "feet"),
  11222. weight: math.unit(103, "lb"),
  11223. name: "Front",
  11224. image: {
  11225. source: "./media/characters/abbott-absol/front.svg",
  11226. extra: 765/694,
  11227. bottom: 47/812
  11228. }
  11229. },
  11230. },
  11231. [
  11232. {
  11233. name: "Megamicro",
  11234. height: math.unit(0.1, "mm")
  11235. },
  11236. {
  11237. name: "Micro",
  11238. height: math.unit(1, "inch")
  11239. },
  11240. {
  11241. name: "Normal",
  11242. height: math.unit(6, "feet"),
  11243. default: true
  11244. },
  11245. ]
  11246. ))
  11247. characterMakers.push(() => makeCharacter(
  11248. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  11249. {
  11250. front: {
  11251. height: math.unit(6, "feet"),
  11252. weight: math.unit(264, "lb"),
  11253. name: "Front",
  11254. image: {
  11255. source: "./media/characters/hector/front.svg",
  11256. extra: 2280 / 2130,
  11257. bottom: 0.07
  11258. }
  11259. },
  11260. },
  11261. [
  11262. {
  11263. name: "Normal",
  11264. height: math.unit(12.25, "foot"),
  11265. default: true
  11266. },
  11267. {
  11268. name: "Macro",
  11269. height: math.unit(160, "feet")
  11270. },
  11271. ]
  11272. ))
  11273. characterMakers.push(() => makeCharacter(
  11274. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  11275. {
  11276. front: {
  11277. height: math.unit(6, "feet"),
  11278. weight: math.unit(150, "lb"),
  11279. name: "Front",
  11280. image: {
  11281. source: "./media/characters/sal/front.svg",
  11282. extra: 1846 / 1699,
  11283. bottom: 0.04
  11284. }
  11285. },
  11286. },
  11287. [
  11288. {
  11289. name: "Megamacro",
  11290. height: math.unit(10, "miles"),
  11291. default: true
  11292. },
  11293. ]
  11294. ))
  11295. characterMakers.push(() => makeCharacter(
  11296. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  11297. {
  11298. front: {
  11299. height: math.unit(3, "meters"),
  11300. weight: math.unit(450, "kg"),
  11301. name: "front",
  11302. image: {
  11303. source: "./media/characters/ranger/front.svg",
  11304. extra: 2401 / 2243,
  11305. bottom: 0.05
  11306. }
  11307. },
  11308. },
  11309. [
  11310. {
  11311. name: "Normal",
  11312. height: math.unit(3, "meters"),
  11313. default: true
  11314. },
  11315. ]
  11316. ))
  11317. characterMakers.push(() => makeCharacter(
  11318. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  11319. {
  11320. front: {
  11321. height: math.unit(14, "feet"),
  11322. weight: math.unit(800, "kg"),
  11323. name: "Front",
  11324. image: {
  11325. source: "./media/characters/theresa/front.svg",
  11326. extra: 3575 / 3346,
  11327. bottom: 0.03
  11328. }
  11329. },
  11330. },
  11331. [
  11332. {
  11333. name: "Normal",
  11334. height: math.unit(14, "feet"),
  11335. default: true
  11336. },
  11337. ]
  11338. ))
  11339. characterMakers.push(() => makeCharacter(
  11340. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  11341. {
  11342. front: {
  11343. height: math.unit(6, "feet"),
  11344. weight: math.unit(3, "kg"),
  11345. name: "Front",
  11346. image: {
  11347. source: "./media/characters/ine/front.svg",
  11348. extra: 678 / 539,
  11349. bottom: 0.023
  11350. }
  11351. },
  11352. },
  11353. [
  11354. {
  11355. name: "Normal",
  11356. height: math.unit(2.265, "feet"),
  11357. default: true
  11358. },
  11359. ]
  11360. ))
  11361. characterMakers.push(() => makeCharacter(
  11362. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  11363. {
  11364. front: {
  11365. height: math.unit(5, "feet"),
  11366. weight: math.unit(30, "kg"),
  11367. name: "Front",
  11368. image: {
  11369. source: "./media/characters/vial/front.svg",
  11370. extra: 1365 / 1277,
  11371. bottom: 0.04
  11372. }
  11373. },
  11374. },
  11375. [
  11376. {
  11377. name: "Normal",
  11378. height: math.unit(5, "feet"),
  11379. default: true
  11380. },
  11381. ]
  11382. ))
  11383. characterMakers.push(() => makeCharacter(
  11384. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  11385. {
  11386. side: {
  11387. height: math.unit(3.4, "meters"),
  11388. weight: math.unit(1000, "lb"),
  11389. name: "Side",
  11390. image: {
  11391. source: "./media/characters/rovoska/side.svg",
  11392. extra: 4403 / 1515
  11393. }
  11394. },
  11395. },
  11396. [
  11397. {
  11398. name: "Normal",
  11399. height: math.unit(3.4, "meters"),
  11400. default: true
  11401. },
  11402. ]
  11403. ))
  11404. characterMakers.push(() => makeCharacter(
  11405. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  11406. {
  11407. front: {
  11408. height: math.unit(8, "feet"),
  11409. weight: math.unit(315, "lb"),
  11410. name: "Front",
  11411. image: {
  11412. source: "./media/characters/gunner-rotthbauer/front.svg"
  11413. }
  11414. },
  11415. back: {
  11416. height: math.unit(8, "feet"),
  11417. weight: math.unit(315, "lb"),
  11418. name: "Back",
  11419. image: {
  11420. source: "./media/characters/gunner-rotthbauer/back.svg"
  11421. }
  11422. },
  11423. },
  11424. [
  11425. {
  11426. name: "Micro",
  11427. height: math.unit(3.5, "inches")
  11428. },
  11429. {
  11430. name: "Normal",
  11431. height: math.unit(8, "feet"),
  11432. default: true
  11433. },
  11434. {
  11435. name: "Macro",
  11436. height: math.unit(250, "feet")
  11437. },
  11438. {
  11439. name: "Megamacro",
  11440. height: math.unit(1, "AU")
  11441. },
  11442. ]
  11443. ))
  11444. characterMakers.push(() => makeCharacter(
  11445. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  11446. {
  11447. front: {
  11448. height: math.unit(5 + 5 / 12, "feet"),
  11449. weight: math.unit(140, "lb"),
  11450. name: "Front",
  11451. image: {
  11452. source: "./media/characters/allatia/front.svg",
  11453. extra: 1227 / 1180,
  11454. bottom: 0.027
  11455. }
  11456. },
  11457. },
  11458. [
  11459. {
  11460. name: "Normal",
  11461. height: math.unit(5 + 5 / 12, "feet")
  11462. },
  11463. {
  11464. name: "Macro",
  11465. height: math.unit(250, "feet"),
  11466. default: true
  11467. },
  11468. {
  11469. name: "Megamacro",
  11470. height: math.unit(8, "miles")
  11471. }
  11472. ]
  11473. ))
  11474. characterMakers.push(() => makeCharacter(
  11475. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  11476. {
  11477. front: {
  11478. height: math.unit(6, "feet"),
  11479. weight: math.unit(120, "lb"),
  11480. name: "Front",
  11481. image: {
  11482. source: "./media/characters/tene/front.svg",
  11483. extra: 814/750,
  11484. bottom: 36/850
  11485. }
  11486. },
  11487. stomping: {
  11488. height: math.unit(2.025, "meters"),
  11489. weight: math.unit(120, "lb"),
  11490. name: "Stomping",
  11491. image: {
  11492. source: "./media/characters/tene/stomping.svg",
  11493. extra: 885/821,
  11494. bottom: 15/900
  11495. }
  11496. },
  11497. sitting: {
  11498. height: math.unit(1, "meter"),
  11499. weight: math.unit(120, "lb"),
  11500. name: "Sitting",
  11501. image: {
  11502. source: "./media/characters/tene/sitting.svg",
  11503. extra: 396/366,
  11504. bottom: 79/475
  11505. }
  11506. },
  11507. smiling: {
  11508. height: math.unit(1.2, "feet"),
  11509. name: "Smiling",
  11510. image: {
  11511. source: "./media/characters/tene/smiling.svg",
  11512. extra: 1364/1071,
  11513. bottom: 0/1364
  11514. }
  11515. },
  11516. smug: {
  11517. height: math.unit(1.3, "feet"),
  11518. name: "Smug",
  11519. image: {
  11520. source: "./media/characters/tene/smug.svg",
  11521. extra: 1323/1082,
  11522. bottom: 0/1323
  11523. }
  11524. },
  11525. feral: {
  11526. height: math.unit(3.9, "feet"),
  11527. weight: math.unit(250, "lb"),
  11528. name: "Feral",
  11529. image: {
  11530. source: "./media/characters/tene/feral.svg",
  11531. extra: 717 / 458,
  11532. bottom: 0.179
  11533. }
  11534. },
  11535. },
  11536. [
  11537. {
  11538. name: "Normal",
  11539. height: math.unit(6, "feet")
  11540. },
  11541. {
  11542. name: "Macro",
  11543. height: math.unit(300, "feet"),
  11544. default: true
  11545. },
  11546. {
  11547. name: "Megamacro",
  11548. height: math.unit(5, "miles")
  11549. },
  11550. ]
  11551. ))
  11552. characterMakers.push(() => makeCharacter(
  11553. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  11554. {
  11555. side: {
  11556. height: math.unit(6, "feet"),
  11557. name: "Side",
  11558. image: {
  11559. source: "./media/characters/evander/side.svg",
  11560. extra: 877 / 477
  11561. }
  11562. },
  11563. },
  11564. [
  11565. {
  11566. name: "Normal",
  11567. height: math.unit(0.83, "meters"),
  11568. default: true
  11569. },
  11570. ]
  11571. ))
  11572. characterMakers.push(() => makeCharacter(
  11573. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  11574. {
  11575. front: {
  11576. height: math.unit(12, "feet"),
  11577. weight: math.unit(1000, "lb"),
  11578. name: "Front",
  11579. image: {
  11580. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  11581. extra: 1762 / 1611
  11582. }
  11583. },
  11584. back: {
  11585. height: math.unit(12, "feet"),
  11586. weight: math.unit(1000, "lb"),
  11587. name: "Back",
  11588. image: {
  11589. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  11590. extra: 1762 / 1611
  11591. }
  11592. },
  11593. },
  11594. [
  11595. {
  11596. name: "Normal",
  11597. height: math.unit(12, "feet"),
  11598. default: true
  11599. },
  11600. {
  11601. name: "Kaiju",
  11602. height: math.unit(150, "feet")
  11603. },
  11604. ]
  11605. ))
  11606. characterMakers.push(() => makeCharacter(
  11607. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  11608. {
  11609. front: {
  11610. height: math.unit(5 + 11/12, "feet"),
  11611. weight: math.unit(180, "lb"),
  11612. name: "Front",
  11613. image: {
  11614. source: "./media/characters/zero-alurus/front.svg",
  11615. extra: 1032/957,
  11616. bottom: 10/1042
  11617. }
  11618. },
  11619. back: {
  11620. height: math.unit(5 + 11/12, "feet"),
  11621. weight: math.unit(180, "lb"),
  11622. name: "Back",
  11623. image: {
  11624. source: "./media/characters/zero-alurus/back.svg",
  11625. extra: 1027/950,
  11626. bottom: 12/1039
  11627. }
  11628. },
  11629. },
  11630. [
  11631. {
  11632. name: "Normal",
  11633. height: math.unit(5 + 11 / 12, "feet")
  11634. },
  11635. {
  11636. name: "Mini-Macro",
  11637. height: math.unit(25, "feet")
  11638. },
  11639. {
  11640. name: "Macro",
  11641. height: math.unit(90, "feet"),
  11642. default: true
  11643. },
  11644. {
  11645. name: "Macro+",
  11646. height: math.unit(500, "feet")
  11647. },
  11648. {
  11649. name: "Megamacro",
  11650. height: math.unit(1200, "feet")
  11651. },
  11652. ]
  11653. ))
  11654. characterMakers.push(() => makeCharacter(
  11655. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  11656. {
  11657. front: {
  11658. height: math.unit(6, "feet"),
  11659. weight: math.unit(200, "lb"),
  11660. name: "Front",
  11661. image: {
  11662. source: "./media/characters/mega-shi/front.svg",
  11663. extra: 1279 / 1250,
  11664. bottom: 0.02
  11665. }
  11666. },
  11667. back: {
  11668. height: math.unit(6, "feet"),
  11669. weight: math.unit(200, "lb"),
  11670. name: "Back",
  11671. image: {
  11672. source: "./media/characters/mega-shi/back.svg",
  11673. extra: 1279 / 1250,
  11674. bottom: 0.02
  11675. }
  11676. },
  11677. },
  11678. [
  11679. {
  11680. name: "Micro",
  11681. height: math.unit(16 + 6 / 12, "feet")
  11682. },
  11683. {
  11684. name: "Third Dimension",
  11685. height: math.unit(40, "meters")
  11686. },
  11687. {
  11688. name: "Normal",
  11689. height: math.unit(660, "feet"),
  11690. default: true
  11691. },
  11692. {
  11693. name: "Megamacro",
  11694. height: math.unit(10, "miles")
  11695. },
  11696. {
  11697. name: "Planetary Launch",
  11698. height: math.unit(500, "miles")
  11699. },
  11700. {
  11701. name: "Interstellar",
  11702. height: math.unit(1e9, "miles")
  11703. },
  11704. {
  11705. name: "Leaving the Universe",
  11706. height: math.unit(1, "gigaparsec")
  11707. },
  11708. {
  11709. name: "Travelling Universes",
  11710. height: math.unit(30e15, "parsecs")
  11711. },
  11712. ]
  11713. ))
  11714. characterMakers.push(() => makeCharacter(
  11715. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11716. {
  11717. front: {
  11718. height: math.unit(5 + 4/12, "feet"),
  11719. weight: math.unit(120, "lb"),
  11720. name: "Front",
  11721. image: {
  11722. source: "./media/characters/odyssey/front.svg",
  11723. extra: 1747/1571,
  11724. bottom: 47/1794
  11725. }
  11726. },
  11727. side: {
  11728. height: math.unit(5.1, "feet"),
  11729. weight: math.unit(120, "lb"),
  11730. name: "Side",
  11731. image: {
  11732. source: "./media/characters/odyssey/side.svg",
  11733. extra: 1847/1619,
  11734. bottom: 47/1894
  11735. }
  11736. },
  11737. lounging: {
  11738. height: math.unit(1.464, "feet"),
  11739. weight: math.unit(120, "lb"),
  11740. name: "Lounging",
  11741. image: {
  11742. source: "./media/characters/odyssey/lounging.svg",
  11743. extra: 1235/837,
  11744. bottom: 551/1786
  11745. }
  11746. },
  11747. },
  11748. [
  11749. {
  11750. name: "Normal",
  11751. height: math.unit(5 + 4 / 12, "feet")
  11752. },
  11753. {
  11754. name: "Macro",
  11755. height: math.unit(1, "km")
  11756. },
  11757. {
  11758. name: "Megamacro",
  11759. height: math.unit(3000, "km")
  11760. },
  11761. {
  11762. name: "Gigamacro",
  11763. height: math.unit(1, "AU"),
  11764. default: true
  11765. },
  11766. {
  11767. name: "Omniversal",
  11768. height: math.unit(100e14, "lightyears")
  11769. },
  11770. ]
  11771. ))
  11772. characterMakers.push(() => makeCharacter(
  11773. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11774. {
  11775. front: {
  11776. height: math.unit(5 + 10/12, "feet"),
  11777. name: "Front",
  11778. image: {
  11779. source: "./media/characters/mekuto/front.svg",
  11780. extra: 875/835,
  11781. bottom: 46/921
  11782. }
  11783. },
  11784. },
  11785. [
  11786. {
  11787. name: "Minimicro",
  11788. height: math.unit(0.2, "inches")
  11789. },
  11790. {
  11791. name: "Micro",
  11792. height: math.unit(1.5, "inches")
  11793. },
  11794. {
  11795. name: "Normal",
  11796. height: math.unit(5 + 10 / 12, "feet"),
  11797. default: true
  11798. },
  11799. {
  11800. name: "Minimacro",
  11801. height: math.unit(17 + 9 / 12, "feet")
  11802. },
  11803. {
  11804. name: "Macro",
  11805. height: math.unit(177.5, "feet")
  11806. },
  11807. {
  11808. name: "Megamacro",
  11809. height: math.unit(152, "miles")
  11810. },
  11811. ]
  11812. ))
  11813. characterMakers.push(() => makeCharacter(
  11814. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11815. {
  11816. front: {
  11817. height: math.unit(6.5, "inches"),
  11818. weight: math.unit(13, "oz"),
  11819. name: "Front",
  11820. image: {
  11821. source: "./media/characters/dafydd-tomos/front.svg",
  11822. extra: 2990 / 2603,
  11823. bottom: 0.03
  11824. }
  11825. },
  11826. },
  11827. [
  11828. {
  11829. name: "Micro",
  11830. height: math.unit(6.5, "inches"),
  11831. default: true
  11832. },
  11833. ]
  11834. ))
  11835. characterMakers.push(() => makeCharacter(
  11836. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11837. {
  11838. front: {
  11839. height: math.unit(6, "feet"),
  11840. weight: math.unit(150, "lb"),
  11841. name: "Front",
  11842. image: {
  11843. source: "./media/characters/splinter/front.svg",
  11844. extra: 2990 / 2882,
  11845. bottom: 0.04
  11846. }
  11847. },
  11848. back: {
  11849. height: math.unit(6, "feet"),
  11850. weight: math.unit(150, "lb"),
  11851. name: "Back",
  11852. image: {
  11853. source: "./media/characters/splinter/back.svg",
  11854. extra: 2990 / 2882,
  11855. bottom: 0.04
  11856. }
  11857. },
  11858. },
  11859. [
  11860. {
  11861. name: "Normal",
  11862. height: math.unit(6, "feet")
  11863. },
  11864. {
  11865. name: "Macro",
  11866. height: math.unit(230, "meters"),
  11867. default: true
  11868. },
  11869. ]
  11870. ))
  11871. characterMakers.push(() => makeCharacter(
  11872. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11873. {
  11874. front: {
  11875. height: math.unit(4 + 10 / 12, "feet"),
  11876. weight: math.unit(480, "lb"),
  11877. name: "Front",
  11878. image: {
  11879. source: "./media/characters/snow-gabumon/front.svg",
  11880. extra: 1140 / 963,
  11881. bottom: 0.058
  11882. }
  11883. },
  11884. back: {
  11885. height: math.unit(4 + 10 / 12, "feet"),
  11886. weight: math.unit(480, "lb"),
  11887. name: "Back",
  11888. image: {
  11889. source: "./media/characters/snow-gabumon/back.svg",
  11890. extra: 1115 / 962,
  11891. bottom: 0.041
  11892. }
  11893. },
  11894. frontUndresed: {
  11895. height: math.unit(4 + 10 / 12, "feet"),
  11896. weight: math.unit(480, "lb"),
  11897. name: "Front (Undressed)",
  11898. image: {
  11899. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11900. extra: 1061 / 960,
  11901. bottom: 0.045
  11902. }
  11903. },
  11904. },
  11905. [
  11906. {
  11907. name: "Micro",
  11908. height: math.unit(1, "inch")
  11909. },
  11910. {
  11911. name: "Normal",
  11912. height: math.unit(4 + 10 / 12, "feet"),
  11913. default: true
  11914. },
  11915. {
  11916. name: "Macro",
  11917. height: math.unit(200, "feet")
  11918. },
  11919. {
  11920. name: "Megamacro",
  11921. height: math.unit(120, "miles")
  11922. },
  11923. {
  11924. name: "Gigamacro",
  11925. height: math.unit(9800, "miles")
  11926. },
  11927. ]
  11928. ))
  11929. characterMakers.push(() => makeCharacter(
  11930. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11931. {
  11932. front: {
  11933. height: math.unit(1.7, "meters"),
  11934. weight: math.unit(140, "lb"),
  11935. name: "Front",
  11936. image: {
  11937. source: "./media/characters/moody/front.svg",
  11938. extra: 3226 / 3007,
  11939. bottom: 0.087
  11940. }
  11941. },
  11942. },
  11943. [
  11944. {
  11945. name: "Micro",
  11946. height: math.unit(1, "mm")
  11947. },
  11948. {
  11949. name: "Normal",
  11950. height: math.unit(1.7, "meters"),
  11951. default: true
  11952. },
  11953. {
  11954. name: "Macro",
  11955. height: math.unit(80, "meters")
  11956. },
  11957. {
  11958. name: "Macro+",
  11959. height: math.unit(500, "meters")
  11960. },
  11961. ]
  11962. ))
  11963. characterMakers.push(() => makeCharacter(
  11964. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11965. {
  11966. front: {
  11967. height: math.unit(6, "feet"),
  11968. weight: math.unit(150, "lb"),
  11969. name: "Front",
  11970. image: {
  11971. source: "./media/characters/zyas/front.svg",
  11972. extra: 1180 / 1120,
  11973. bottom: 0.045
  11974. }
  11975. },
  11976. },
  11977. [
  11978. {
  11979. name: "Normal",
  11980. height: math.unit(10, "feet"),
  11981. default: true
  11982. },
  11983. {
  11984. name: "Macro",
  11985. height: math.unit(500, "feet")
  11986. },
  11987. {
  11988. name: "Megamacro",
  11989. height: math.unit(5, "miles")
  11990. },
  11991. {
  11992. name: "Teramacro",
  11993. height: math.unit(150000, "miles")
  11994. },
  11995. ]
  11996. ))
  11997. characterMakers.push(() => makeCharacter(
  11998. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11999. {
  12000. front: {
  12001. height: math.unit(6, "feet"),
  12002. weight: math.unit(150, "lb"),
  12003. name: "Front",
  12004. image: {
  12005. source: "./media/characters/cuon/front.svg",
  12006. extra: 1390 / 1320,
  12007. bottom: 0.008
  12008. }
  12009. },
  12010. },
  12011. [
  12012. {
  12013. name: "Micro",
  12014. height: math.unit(3, "inches")
  12015. },
  12016. {
  12017. name: "Normal",
  12018. height: math.unit(18 + 9 / 12, "feet"),
  12019. default: true
  12020. },
  12021. {
  12022. name: "Macro",
  12023. height: math.unit(360, "feet")
  12024. },
  12025. {
  12026. name: "Megamacro",
  12027. height: math.unit(360, "miles")
  12028. },
  12029. ]
  12030. ))
  12031. characterMakers.push(() => makeCharacter(
  12032. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  12033. {
  12034. front: {
  12035. height: math.unit(2.4, "meters"),
  12036. weight: math.unit(70, "kg"),
  12037. name: "Front",
  12038. image: {
  12039. source: "./media/characters/nyanuxk/front.svg",
  12040. extra: 1172 / 1084,
  12041. bottom: 0.065
  12042. }
  12043. },
  12044. side: {
  12045. height: math.unit(2.4, "meters"),
  12046. weight: math.unit(70, "kg"),
  12047. name: "Side",
  12048. image: {
  12049. source: "./media/characters/nyanuxk/side.svg",
  12050. extra: 1190 / 1132,
  12051. bottom: 0.007
  12052. }
  12053. },
  12054. back: {
  12055. height: math.unit(2.4, "meters"),
  12056. weight: math.unit(70, "kg"),
  12057. name: "Back",
  12058. image: {
  12059. source: "./media/characters/nyanuxk/back.svg",
  12060. extra: 1200 / 1141,
  12061. bottom: 0.015
  12062. }
  12063. },
  12064. foot: {
  12065. height: math.unit(0.52, "meters"),
  12066. name: "Foot",
  12067. image: {
  12068. source: "./media/characters/nyanuxk/foot.svg"
  12069. }
  12070. },
  12071. },
  12072. [
  12073. {
  12074. name: "Micro",
  12075. height: math.unit(2, "cm")
  12076. },
  12077. {
  12078. name: "Normal",
  12079. height: math.unit(2.4, "meters"),
  12080. default: true
  12081. },
  12082. {
  12083. name: "Smaller Macro",
  12084. height: math.unit(120, "meters")
  12085. },
  12086. {
  12087. name: "Bigger Macro",
  12088. height: math.unit(1.2, "km")
  12089. },
  12090. {
  12091. name: "Megamacro",
  12092. height: math.unit(15, "kilometers")
  12093. },
  12094. {
  12095. name: "Gigamacro",
  12096. height: math.unit(2000, "km")
  12097. },
  12098. {
  12099. name: "Teramacro",
  12100. height: math.unit(500000, "km")
  12101. },
  12102. ]
  12103. ))
  12104. characterMakers.push(() => makeCharacter(
  12105. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  12106. {
  12107. side: {
  12108. height: math.unit(6, "feet"),
  12109. name: "Side",
  12110. image: {
  12111. source: "./media/characters/ailbhe/side.svg",
  12112. extra: 757 / 464,
  12113. bottom: 0.041
  12114. }
  12115. },
  12116. },
  12117. [
  12118. {
  12119. name: "Normal",
  12120. height: math.unit(1.07, "meters"),
  12121. default: true
  12122. },
  12123. ]
  12124. ))
  12125. characterMakers.push(() => makeCharacter(
  12126. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  12127. {
  12128. front: {
  12129. height: math.unit(6, "feet"),
  12130. weight: math.unit(120, "kg"),
  12131. name: "Front",
  12132. image: {
  12133. source: "./media/characters/zevulfius/front.svg",
  12134. extra: 965 / 903
  12135. }
  12136. },
  12137. side: {
  12138. height: math.unit(6, "feet"),
  12139. weight: math.unit(120, "kg"),
  12140. name: "Side",
  12141. image: {
  12142. source: "./media/characters/zevulfius/side.svg",
  12143. extra: 939 / 900
  12144. }
  12145. },
  12146. back: {
  12147. height: math.unit(6, "feet"),
  12148. weight: math.unit(120, "kg"),
  12149. name: "Back",
  12150. image: {
  12151. source: "./media/characters/zevulfius/back.svg",
  12152. extra: 918 / 854,
  12153. bottom: 0.005
  12154. }
  12155. },
  12156. foot: {
  12157. height: math.unit(6 / 3.72, "feet"),
  12158. name: "Foot",
  12159. image: {
  12160. source: "./media/characters/zevulfius/foot.svg"
  12161. }
  12162. },
  12163. },
  12164. [
  12165. {
  12166. name: "Macro",
  12167. height: math.unit(750, "meters")
  12168. },
  12169. {
  12170. name: "Megamacro",
  12171. height: math.unit(20, "km"),
  12172. default: true
  12173. },
  12174. {
  12175. name: "Gigamacro",
  12176. height: math.unit(2000, "km")
  12177. },
  12178. {
  12179. name: "Teramacro",
  12180. height: math.unit(250000, "km")
  12181. },
  12182. ]
  12183. ))
  12184. characterMakers.push(() => makeCharacter(
  12185. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  12186. {
  12187. front: {
  12188. height: math.unit(100, "feet"),
  12189. weight: math.unit(350, "kg"),
  12190. name: "Front",
  12191. image: {
  12192. source: "./media/characters/rikes/front.svg",
  12193. extra: 1565 / 1483,
  12194. bottom: 0.017
  12195. }
  12196. },
  12197. },
  12198. [
  12199. {
  12200. name: "Macro",
  12201. height: math.unit(100, "feet"),
  12202. default: true
  12203. },
  12204. ]
  12205. ))
  12206. characterMakers.push(() => makeCharacter(
  12207. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  12208. {
  12209. front: {
  12210. height: math.unit(8, "feet"),
  12211. weight: math.unit(356, "lb"),
  12212. name: "Front",
  12213. image: {
  12214. source: "./media/characters/adam-silver-mane/front.svg",
  12215. extra: 1036/937,
  12216. bottom: 63/1099
  12217. }
  12218. },
  12219. side: {
  12220. height: math.unit(8, "feet"),
  12221. weight: math.unit(356, "lb"),
  12222. name: "Side",
  12223. image: {
  12224. source: "./media/characters/adam-silver-mane/side.svg",
  12225. extra: 997/901,
  12226. bottom: 59/1056
  12227. }
  12228. },
  12229. frontNsfw: {
  12230. height: math.unit(8, "feet"),
  12231. weight: math.unit(356, "lb"),
  12232. name: "Front (NSFW)",
  12233. image: {
  12234. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  12235. extra: 1036/937,
  12236. bottom: 63/1099
  12237. }
  12238. },
  12239. sideNsfw: {
  12240. height: math.unit(8, "feet"),
  12241. weight: math.unit(356, "lb"),
  12242. name: "Side (NSFW)",
  12243. image: {
  12244. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  12245. extra: 997/901,
  12246. bottom: 59/1056
  12247. }
  12248. },
  12249. dick: {
  12250. height: math.unit(2.1, "feet"),
  12251. name: "Dick",
  12252. image: {
  12253. source: "./media/characters/adam-silver-mane/dick.svg"
  12254. }
  12255. },
  12256. taur: {
  12257. height: math.unit(16, "feet"),
  12258. weight: math.unit(1500, "kg"),
  12259. name: "Taur",
  12260. image: {
  12261. source: "./media/characters/adam-silver-mane/taur.svg",
  12262. extra: 1713 / 1571,
  12263. bottom: 0.01
  12264. }
  12265. },
  12266. },
  12267. [
  12268. {
  12269. name: "Normal",
  12270. height: math.unit(8, "feet")
  12271. },
  12272. {
  12273. name: "Minimacro",
  12274. height: math.unit(80, "feet")
  12275. },
  12276. {
  12277. name: "MDA",
  12278. height: math.unit(80, "meters")
  12279. },
  12280. {
  12281. name: "Macro",
  12282. height: math.unit(800, "feet"),
  12283. default: true
  12284. },
  12285. {
  12286. name: "Megamacro",
  12287. height: math.unit(8000, "feet")
  12288. },
  12289. {
  12290. name: "Gigamacro",
  12291. height: math.unit(800, "miles")
  12292. },
  12293. {
  12294. name: "Teramacro",
  12295. height: math.unit(80000, "miles")
  12296. },
  12297. {
  12298. name: "Celestial",
  12299. height: math.unit(8e6, "miles")
  12300. },
  12301. {
  12302. name: "Star Dragon",
  12303. height: math.unit(800000, "parsecs")
  12304. },
  12305. {
  12306. name: "Godly",
  12307. height: math.unit(800, "teraparsecs")
  12308. },
  12309. ]
  12310. ))
  12311. characterMakers.push(() => makeCharacter(
  12312. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  12313. {
  12314. front: {
  12315. height: math.unit(6, "feet"),
  12316. weight: math.unit(150, "lb"),
  12317. name: "Front",
  12318. image: {
  12319. source: "./media/characters/ky'owin/front.svg",
  12320. extra: 3862/3053,
  12321. bottom: 74/3936
  12322. }
  12323. },
  12324. },
  12325. [
  12326. {
  12327. name: "Normal",
  12328. height: math.unit(6 + 8 / 12, "feet")
  12329. },
  12330. {
  12331. name: "Large",
  12332. height: math.unit(68, "feet")
  12333. },
  12334. {
  12335. name: "Macro",
  12336. height: math.unit(132, "feet")
  12337. },
  12338. {
  12339. name: "Macro+",
  12340. height: math.unit(340, "feet")
  12341. },
  12342. {
  12343. name: "Macro++",
  12344. height: math.unit(680, "feet"),
  12345. default: true
  12346. },
  12347. {
  12348. name: "Megamacro",
  12349. height: math.unit(1, "mile")
  12350. },
  12351. {
  12352. name: "Megamacro+",
  12353. height: math.unit(10, "miles")
  12354. },
  12355. ]
  12356. ))
  12357. characterMakers.push(() => makeCharacter(
  12358. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  12359. {
  12360. front: {
  12361. height: math.unit(4, "feet"),
  12362. weight: math.unit(50, "lb"),
  12363. name: "Front",
  12364. image: {
  12365. source: "./media/characters/mal/front.svg",
  12366. extra: 785 / 724,
  12367. bottom: 0.07
  12368. }
  12369. },
  12370. },
  12371. [
  12372. {
  12373. name: "Micro",
  12374. height: math.unit(4, "inches")
  12375. },
  12376. {
  12377. name: "Normal",
  12378. height: math.unit(4, "feet"),
  12379. default: true
  12380. },
  12381. {
  12382. name: "Macro",
  12383. height: math.unit(200, "feet")
  12384. },
  12385. ]
  12386. ))
  12387. characterMakers.push(() => makeCharacter(
  12388. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  12389. {
  12390. front: {
  12391. height: math.unit(6, "feet"),
  12392. weight: math.unit(150, "lb"),
  12393. name: "Front",
  12394. image: {
  12395. source: "./media/characters/jordan-deware/front.svg",
  12396. extra: 1191 / 1012
  12397. }
  12398. },
  12399. },
  12400. [
  12401. {
  12402. name: "Nano",
  12403. height: math.unit(0.01, "mm")
  12404. },
  12405. {
  12406. name: "Minimicro",
  12407. height: math.unit(1, "mm")
  12408. },
  12409. {
  12410. name: "Micro",
  12411. height: math.unit(0.5, "inches")
  12412. },
  12413. {
  12414. name: "Normal",
  12415. height: math.unit(4, "feet"),
  12416. default: true
  12417. },
  12418. {
  12419. name: "Minimacro",
  12420. height: math.unit(40, "meters")
  12421. },
  12422. {
  12423. name: "Small Macro",
  12424. height: math.unit(400, "meters")
  12425. },
  12426. {
  12427. name: "Macro",
  12428. height: math.unit(4, "miles")
  12429. },
  12430. {
  12431. name: "Megamacro",
  12432. height: math.unit(40, "miles")
  12433. },
  12434. {
  12435. name: "Megamacro+",
  12436. height: math.unit(400, "miles")
  12437. },
  12438. {
  12439. name: "Gigamacro",
  12440. height: math.unit(400000, "miles")
  12441. },
  12442. ]
  12443. ))
  12444. characterMakers.push(() => makeCharacter(
  12445. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  12446. {
  12447. front: {
  12448. height: math.unit(15, "feet"),
  12449. weight: math.unit(3000, "kg"),
  12450. preyCapacity: math.unit(450, "people"),
  12451. name: "Front",
  12452. image: {
  12453. source: "./media/characters/kimiko/front.svg",
  12454. extra: 875/832,
  12455. bottom: 36/911
  12456. },
  12457. extraAttributes: {
  12458. "pawSize": {
  12459. name: "Paw Size",
  12460. power: 1,
  12461. type: "length",
  12462. base: math.unit(0.9, "meters")
  12463. },
  12464. }
  12465. },
  12466. side: {
  12467. height: math.unit(15, "feet"),
  12468. weight: math.unit(3000, "kg"),
  12469. preyCapacity: math.unit(400, "people"),
  12470. name: "Side",
  12471. image: {
  12472. source: "./media/characters/kimiko/side.svg",
  12473. extra: 448/270,
  12474. bottom: 7/455
  12475. },
  12476. extraAttributes: {
  12477. "pawSize": {
  12478. name: "Paw Size",
  12479. power: 1,
  12480. type: "length",
  12481. base: math.unit(0.9, "meters")
  12482. },
  12483. }
  12484. },
  12485. maw: {
  12486. height: math.unit(0.81, "feet"),
  12487. name: "Maw",
  12488. image: {
  12489. source: "./media/characters/kimiko/maw.svg"
  12490. }
  12491. },
  12492. },
  12493. [
  12494. {
  12495. name: "Normal",
  12496. height: math.unit(15, "feet"),
  12497. default: true
  12498. },
  12499. {
  12500. name: "Macro",
  12501. height: math.unit(220, "feet")
  12502. },
  12503. {
  12504. name: "Macro+",
  12505. height: math.unit(1450, "feet")
  12506. },
  12507. {
  12508. name: "Megamacro",
  12509. height: math.unit(11500, "feet")
  12510. },
  12511. {
  12512. name: "Gigamacro",
  12513. height: math.unit(9500, "miles")
  12514. },
  12515. {
  12516. name: "Teramacro",
  12517. height: math.unit(2208005005, "miles")
  12518. },
  12519. {
  12520. name: "Examacro",
  12521. height: math.unit(2750, "parsecs")
  12522. },
  12523. {
  12524. name: "Zettamacro",
  12525. height: math.unit(101500, "parsecs")
  12526. },
  12527. ]
  12528. ))
  12529. characterMakers.push(() => makeCharacter(
  12530. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  12531. {
  12532. front: {
  12533. height: math.unit(6, "feet"),
  12534. weight: math.unit(70, "kg"),
  12535. name: "Front",
  12536. image: {
  12537. source: "./media/characters/andrew-sleepy/front.svg"
  12538. }
  12539. },
  12540. side: {
  12541. height: math.unit(6, "feet"),
  12542. weight: math.unit(70, "kg"),
  12543. name: "Side",
  12544. image: {
  12545. source: "./media/characters/andrew-sleepy/side.svg"
  12546. }
  12547. },
  12548. },
  12549. [
  12550. {
  12551. name: "Micro",
  12552. height: math.unit(1, "mm"),
  12553. default: true
  12554. },
  12555. ]
  12556. ))
  12557. characterMakers.push(() => makeCharacter(
  12558. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  12559. {
  12560. front: {
  12561. height: math.unit(6, "feet"),
  12562. weight: math.unit(150, "lb"),
  12563. name: "Front",
  12564. image: {
  12565. source: "./media/characters/judio/front.svg",
  12566. extra: 1258 / 1110
  12567. }
  12568. },
  12569. },
  12570. [
  12571. {
  12572. name: "Normal",
  12573. height: math.unit(5 + 6 / 12, "feet")
  12574. },
  12575. {
  12576. name: "Macro",
  12577. height: math.unit(1000, "feet"),
  12578. default: true
  12579. },
  12580. {
  12581. name: "Megamacro",
  12582. height: math.unit(10, "miles")
  12583. },
  12584. ]
  12585. ))
  12586. characterMakers.push(() => makeCharacter(
  12587. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  12588. {
  12589. frontDressed: {
  12590. height: math.unit(6, "feet"),
  12591. weight: math.unit(68, "kg"),
  12592. name: "Front (Dressed)",
  12593. image: {
  12594. source: "./media/characters/nomaxice/front-dressed.svg",
  12595. extra: 1137/824,
  12596. bottom: 74/1211
  12597. }
  12598. },
  12599. frontShorts: {
  12600. height: math.unit(6, "feet"),
  12601. weight: math.unit(68, "kg"),
  12602. name: "Front (Shorts)",
  12603. image: {
  12604. source: "./media/characters/nomaxice/front-shorts.svg",
  12605. extra: 1137/824,
  12606. bottom: 74/1211
  12607. }
  12608. },
  12609. back: {
  12610. height: math.unit(6, "feet"),
  12611. weight: math.unit(68, "kg"),
  12612. name: "Back",
  12613. image: {
  12614. source: "./media/characters/nomaxice/back.svg",
  12615. extra: 822/786,
  12616. bottom: 39/861
  12617. }
  12618. },
  12619. hand: {
  12620. height: math.unit(0.565, "feet"),
  12621. name: "Hand",
  12622. image: {
  12623. source: "./media/characters/nomaxice/hand.svg"
  12624. }
  12625. },
  12626. foot: {
  12627. height: math.unit(1, "feet"),
  12628. name: "Foot",
  12629. image: {
  12630. source: "./media/characters/nomaxice/foot.svg"
  12631. }
  12632. },
  12633. },
  12634. [
  12635. {
  12636. name: "Micro",
  12637. height: math.unit(8, "cm")
  12638. },
  12639. {
  12640. name: "Norm",
  12641. height: math.unit(1.82, "m")
  12642. },
  12643. {
  12644. name: "Norm+",
  12645. height: math.unit(8.8, "feet"),
  12646. default: true
  12647. },
  12648. {
  12649. name: "Big",
  12650. height: math.unit(8, "meters")
  12651. },
  12652. {
  12653. name: "Macro",
  12654. height: math.unit(18, "meters")
  12655. },
  12656. {
  12657. name: "Macro+",
  12658. height: math.unit(88, "meters")
  12659. },
  12660. ]
  12661. ))
  12662. characterMakers.push(() => makeCharacter(
  12663. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  12664. {
  12665. front: {
  12666. height: math.unit(12, "feet"),
  12667. weight: math.unit(1.5, "tons"),
  12668. name: "Front",
  12669. image: {
  12670. source: "./media/characters/dydros/front.svg",
  12671. extra: 863 / 800,
  12672. bottom: 0.015
  12673. }
  12674. },
  12675. back: {
  12676. height: math.unit(12, "feet"),
  12677. weight: math.unit(1.5, "tons"),
  12678. name: "Back",
  12679. image: {
  12680. source: "./media/characters/dydros/back.svg",
  12681. extra: 900 / 843,
  12682. bottom: 0.005
  12683. }
  12684. },
  12685. },
  12686. [
  12687. {
  12688. name: "Normal",
  12689. height: math.unit(12, "feet"),
  12690. default: true
  12691. },
  12692. ]
  12693. ))
  12694. characterMakers.push(() => makeCharacter(
  12695. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12696. {
  12697. front: {
  12698. height: math.unit(6, "feet"),
  12699. weight: math.unit(100, "kg"),
  12700. name: "Front",
  12701. image: {
  12702. source: "./media/characters/riggi/front.svg",
  12703. extra: 5787 / 5303
  12704. }
  12705. },
  12706. hyper: {
  12707. height: math.unit(6 * 5 / 3, "feet"),
  12708. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12709. name: "Hyper",
  12710. image: {
  12711. source: "./media/characters/riggi/hyper.svg",
  12712. extra: 3595 / 3485
  12713. }
  12714. },
  12715. },
  12716. [
  12717. {
  12718. name: "Small Macro",
  12719. height: math.unit(50, "feet")
  12720. },
  12721. {
  12722. name: "Default",
  12723. height: math.unit(200, "feet"),
  12724. default: true
  12725. },
  12726. {
  12727. name: "Loom",
  12728. height: math.unit(10000, "feet")
  12729. },
  12730. {
  12731. name: "Cruising Altitude",
  12732. height: math.unit(30000, "feet")
  12733. },
  12734. {
  12735. name: "Megamacro",
  12736. height: math.unit(100, "miles")
  12737. },
  12738. {
  12739. name: "Continent Sized",
  12740. height: math.unit(2800, "miles")
  12741. },
  12742. {
  12743. name: "Earth Sized",
  12744. height: math.unit(8000, "miles")
  12745. },
  12746. ]
  12747. ))
  12748. characterMakers.push(() => makeCharacter(
  12749. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12750. {
  12751. front: {
  12752. height: math.unit(6, "feet"),
  12753. weight: math.unit(250, "lb"),
  12754. name: "Front",
  12755. image: {
  12756. source: "./media/characters/alexi/front.svg",
  12757. extra: 3483 / 3291,
  12758. bottom: 0.04
  12759. }
  12760. },
  12761. back: {
  12762. height: math.unit(6, "feet"),
  12763. weight: math.unit(250, "lb"),
  12764. name: "Back",
  12765. image: {
  12766. source: "./media/characters/alexi/back.svg",
  12767. extra: 3533 / 3356,
  12768. bottom: 0.021
  12769. }
  12770. },
  12771. frontTransforming: {
  12772. height: math.unit(8.58, "feet"),
  12773. weight: math.unit(1300, "lb"),
  12774. name: "Transforming",
  12775. image: {
  12776. source: "./media/characters/alexi/front-transforming.svg",
  12777. extra: 437 / 409,
  12778. bottom: 19 / 458.66
  12779. }
  12780. },
  12781. frontTransformed: {
  12782. height: math.unit(12.5, "feet"),
  12783. weight: math.unit(4000, "lb"),
  12784. name: "Transformed",
  12785. image: {
  12786. source: "./media/characters/alexi/front-transformed.svg",
  12787. extra: 639 / 614,
  12788. bottom: 30.55 / 671
  12789. }
  12790. },
  12791. },
  12792. [
  12793. {
  12794. name: "Normal",
  12795. height: math.unit(14, "feet"),
  12796. default: true
  12797. },
  12798. {
  12799. name: "Minimacro",
  12800. height: math.unit(30, "meters")
  12801. },
  12802. {
  12803. name: "Macro",
  12804. height: math.unit(500, "meters")
  12805. },
  12806. {
  12807. name: "Megamacro",
  12808. height: math.unit(9000, "km")
  12809. },
  12810. {
  12811. name: "Teramacro",
  12812. height: math.unit(384000, "km")
  12813. },
  12814. ]
  12815. ))
  12816. characterMakers.push(() => makeCharacter(
  12817. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12818. {
  12819. front: {
  12820. height: math.unit(6, "feet"),
  12821. weight: math.unit(150, "lb"),
  12822. name: "Front",
  12823. image: {
  12824. source: "./media/characters/kayroo/front.svg",
  12825. extra: 1153 / 1038,
  12826. bottom: 0.06
  12827. }
  12828. },
  12829. foot: {
  12830. height: math.unit(6, "feet"),
  12831. weight: math.unit(150, "lb"),
  12832. name: "Foot",
  12833. image: {
  12834. source: "./media/characters/kayroo/foot.svg"
  12835. }
  12836. },
  12837. },
  12838. [
  12839. {
  12840. name: "Normal",
  12841. height: math.unit(8, "feet"),
  12842. default: true
  12843. },
  12844. {
  12845. name: "Minimacro",
  12846. height: math.unit(250, "feet")
  12847. },
  12848. {
  12849. name: "Macro",
  12850. height: math.unit(2800, "feet")
  12851. },
  12852. {
  12853. name: "Megamacro",
  12854. height: math.unit(5200, "feet")
  12855. },
  12856. {
  12857. name: "Gigamacro",
  12858. height: math.unit(27000, "feet")
  12859. },
  12860. {
  12861. name: "Omega",
  12862. height: math.unit(45000, "feet")
  12863. },
  12864. ]
  12865. ))
  12866. characterMakers.push(() => makeCharacter(
  12867. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12868. {
  12869. front: {
  12870. height: math.unit(18, "feet"),
  12871. weight: math.unit(5800, "lb"),
  12872. name: "Front",
  12873. image: {
  12874. source: "./media/characters/rhys/front.svg",
  12875. extra: 3386 / 3090,
  12876. bottom: 0.07
  12877. }
  12878. },
  12879. },
  12880. [
  12881. {
  12882. name: "Normal",
  12883. height: math.unit(18, "feet"),
  12884. default: true
  12885. },
  12886. {
  12887. name: "Working Size",
  12888. height: math.unit(200, "feet")
  12889. },
  12890. {
  12891. name: "Demolition Size",
  12892. height: math.unit(2000, "feet")
  12893. },
  12894. {
  12895. name: "Maximum Licensed Size",
  12896. height: math.unit(5, "miles")
  12897. },
  12898. {
  12899. name: "Maximum Observed Size",
  12900. height: math.unit(10, "yottameters")
  12901. },
  12902. ]
  12903. ))
  12904. characterMakers.push(() => makeCharacter(
  12905. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12906. {
  12907. front: {
  12908. height: math.unit(6, "feet"),
  12909. weight: math.unit(250, "lb"),
  12910. name: "Front",
  12911. image: {
  12912. source: "./media/characters/toto/front.svg",
  12913. extra: 527 / 479,
  12914. bottom: 0.05
  12915. }
  12916. },
  12917. },
  12918. [
  12919. {
  12920. name: "Micro",
  12921. height: math.unit(3, "feet")
  12922. },
  12923. {
  12924. name: "Normal",
  12925. height: math.unit(10, "feet")
  12926. },
  12927. {
  12928. name: "Macro",
  12929. height: math.unit(150, "feet"),
  12930. default: true
  12931. },
  12932. {
  12933. name: "Megamacro",
  12934. height: math.unit(1200, "feet")
  12935. },
  12936. ]
  12937. ))
  12938. characterMakers.push(() => makeCharacter(
  12939. { name: "King", species: ["lion"], tags: ["anthro"] },
  12940. {
  12941. back: {
  12942. height: math.unit(6, "feet"),
  12943. weight: math.unit(150, "lb"),
  12944. name: "Back",
  12945. image: {
  12946. source: "./media/characters/king/back.svg"
  12947. }
  12948. },
  12949. },
  12950. [
  12951. {
  12952. name: "Micro",
  12953. height: math.unit(2, "inches")
  12954. },
  12955. {
  12956. name: "Normal",
  12957. height: math.unit(8, "feet")
  12958. },
  12959. {
  12960. name: "Macro",
  12961. height: math.unit(200, "feet"),
  12962. default: true
  12963. },
  12964. {
  12965. name: "Megamacro",
  12966. height: math.unit(50, "miles")
  12967. },
  12968. ]
  12969. ))
  12970. characterMakers.push(() => makeCharacter(
  12971. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12972. {
  12973. front: {
  12974. height: math.unit(11, "feet"),
  12975. weight: math.unit(1400, "lb"),
  12976. name: "Front",
  12977. image: {
  12978. source: "./media/characters/cordite/front.svg",
  12979. extra: 1919/1827,
  12980. bottom: 40/1959
  12981. }
  12982. },
  12983. side: {
  12984. height: math.unit(11, "feet"),
  12985. weight: math.unit(1400, "lb"),
  12986. name: "Side",
  12987. image: {
  12988. source: "./media/characters/cordite/side.svg",
  12989. extra: 1908/1793,
  12990. bottom: 38/1946
  12991. }
  12992. },
  12993. back: {
  12994. height: math.unit(11, "feet"),
  12995. weight: math.unit(1400, "lb"),
  12996. name: "Back",
  12997. image: {
  12998. source: "./media/characters/cordite/back.svg",
  12999. extra: 1938/1837,
  13000. bottom: 10/1948
  13001. }
  13002. },
  13003. feral: {
  13004. height: math.unit(2, "feet"),
  13005. weight: math.unit(90, "lb"),
  13006. name: "Feral",
  13007. image: {
  13008. source: "./media/characters/cordite/feral.svg",
  13009. extra: 1260 / 755,
  13010. bottom: 0.05
  13011. }
  13012. },
  13013. },
  13014. [
  13015. {
  13016. name: "Normal",
  13017. height: math.unit(11, "feet"),
  13018. default: true
  13019. },
  13020. ]
  13021. ))
  13022. characterMakers.push(() => makeCharacter(
  13023. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  13024. {
  13025. front: {
  13026. height: math.unit(6, "feet"),
  13027. weight: math.unit(150, "lb"),
  13028. name: "Front",
  13029. image: {
  13030. source: "./media/characters/pianostrong/front.svg",
  13031. extra: 6577 / 6254,
  13032. bottom: 0.02
  13033. }
  13034. },
  13035. side: {
  13036. height: math.unit(6, "feet"),
  13037. weight: math.unit(150, "lb"),
  13038. name: "Side",
  13039. image: {
  13040. source: "./media/characters/pianostrong/side.svg",
  13041. extra: 6106 / 5730
  13042. }
  13043. },
  13044. back: {
  13045. height: math.unit(6, "feet"),
  13046. weight: math.unit(150, "lb"),
  13047. name: "Back",
  13048. image: {
  13049. source: "./media/characters/pianostrong/back.svg",
  13050. extra: 6085 / 5733,
  13051. bottom: 0.01
  13052. }
  13053. },
  13054. },
  13055. [
  13056. {
  13057. name: "Macro",
  13058. height: math.unit(100, "feet")
  13059. },
  13060. {
  13061. name: "Macro+",
  13062. height: math.unit(300, "feet"),
  13063. default: true
  13064. },
  13065. {
  13066. name: "Macro++",
  13067. height: math.unit(1000, "feet")
  13068. },
  13069. ]
  13070. ))
  13071. characterMakers.push(() => makeCharacter(
  13072. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  13073. {
  13074. front: {
  13075. height: math.unit(6, "feet"),
  13076. weight: math.unit(150, "lb"),
  13077. name: "Front",
  13078. image: {
  13079. source: "./media/characters/kona/front.svg",
  13080. extra: 2960 / 2629,
  13081. bottom: 0.005
  13082. }
  13083. },
  13084. },
  13085. [
  13086. {
  13087. name: "Normal",
  13088. height: math.unit(11 + 8 / 12, "feet")
  13089. },
  13090. {
  13091. name: "Macro",
  13092. height: math.unit(850, "feet"),
  13093. default: true
  13094. },
  13095. {
  13096. name: "Macro+",
  13097. height: math.unit(1.5, "km"),
  13098. default: true
  13099. },
  13100. {
  13101. name: "Megamacro",
  13102. height: math.unit(80, "miles")
  13103. },
  13104. {
  13105. name: "Gigamacro",
  13106. height: math.unit(3500, "miles")
  13107. },
  13108. ]
  13109. ))
  13110. characterMakers.push(() => makeCharacter(
  13111. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  13112. {
  13113. side: {
  13114. height: math.unit(1.9, "meters"),
  13115. weight: math.unit(326, "kg"),
  13116. name: "Side",
  13117. image: {
  13118. source: "./media/characters/levi/side.svg",
  13119. extra: 1704 / 1334,
  13120. bottom: 0.02
  13121. }
  13122. },
  13123. },
  13124. [
  13125. {
  13126. name: "Normal",
  13127. height: math.unit(1.9, "meters"),
  13128. default: true
  13129. },
  13130. {
  13131. name: "Macro",
  13132. height: math.unit(20, "meters")
  13133. },
  13134. {
  13135. name: "Macro+",
  13136. height: math.unit(200, "meters")
  13137. },
  13138. {
  13139. name: "Megamacro",
  13140. height: math.unit(2, "km")
  13141. },
  13142. {
  13143. name: "Megamacro+",
  13144. height: math.unit(20, "km")
  13145. },
  13146. {
  13147. name: "Gigamacro",
  13148. height: math.unit(2500, "km")
  13149. },
  13150. {
  13151. name: "Gigamacro+",
  13152. height: math.unit(120000, "km")
  13153. },
  13154. {
  13155. name: "Teramacro",
  13156. height: math.unit(7.77e6, "km")
  13157. },
  13158. ]
  13159. ))
  13160. characterMakers.push(() => makeCharacter(
  13161. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  13162. {
  13163. front: {
  13164. height: math.unit(6 + 4/12, "feet"),
  13165. weight: math.unit(190, "lb"),
  13166. name: "Front",
  13167. image: {
  13168. source: "./media/characters/bmc/front.svg",
  13169. extra: 1626/1472,
  13170. bottom: 79/1705
  13171. }
  13172. },
  13173. back: {
  13174. height: math.unit(6 + 4/12, "feet"),
  13175. weight: math.unit(190, "lb"),
  13176. name: "Back",
  13177. image: {
  13178. source: "./media/characters/bmc/back.svg",
  13179. extra: 1640/1479,
  13180. bottom: 45/1685
  13181. }
  13182. },
  13183. frontArmor: {
  13184. height: math.unit(6 + 4/12, "feet"),
  13185. weight: math.unit(190, "lb"),
  13186. name: "Front-armor",
  13187. image: {
  13188. source: "./media/characters/bmc/front-armor.svg",
  13189. extra: 1538/1468,
  13190. bottom: 79/1617
  13191. }
  13192. },
  13193. },
  13194. [
  13195. {
  13196. name: "Human-sized",
  13197. height: math.unit(6 + 4 / 12, "feet")
  13198. },
  13199. {
  13200. name: "Interactive Size",
  13201. height: math.unit(25, "feet")
  13202. },
  13203. {
  13204. name: "Small",
  13205. height: math.unit(250, "feet")
  13206. },
  13207. {
  13208. name: "Normal",
  13209. height: math.unit(1250, "feet"),
  13210. default: true
  13211. },
  13212. {
  13213. name: "Good Day",
  13214. height: math.unit(88, "miles")
  13215. },
  13216. {
  13217. name: "Largest Measured Size",
  13218. height: math.unit(105.960, "galaxies")
  13219. },
  13220. ]
  13221. ))
  13222. characterMakers.push(() => makeCharacter(
  13223. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  13224. {
  13225. front: {
  13226. height: math.unit(20, "feet"),
  13227. weight: math.unit(2016, "kg"),
  13228. name: "Front",
  13229. image: {
  13230. source: "./media/characters/sven-the-kaiju/front.svg",
  13231. extra: 1277/1250,
  13232. bottom: 35/1312
  13233. }
  13234. },
  13235. mouth: {
  13236. height: math.unit(1.85, "feet"),
  13237. name: "Mouth",
  13238. image: {
  13239. source: "./media/characters/sven-the-kaiju/mouth.svg"
  13240. }
  13241. },
  13242. },
  13243. [
  13244. {
  13245. name: "Fairy",
  13246. height: math.unit(6, "inches")
  13247. },
  13248. {
  13249. name: "Normal",
  13250. height: math.unit(20, "feet"),
  13251. default: true
  13252. },
  13253. {
  13254. name: "Rampage",
  13255. height: math.unit(200, "feet")
  13256. },
  13257. {
  13258. name: "Archfey Forest Guardian",
  13259. height: math.unit(1, "mile")
  13260. },
  13261. ]
  13262. ))
  13263. characterMakers.push(() => makeCharacter(
  13264. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  13265. {
  13266. front: {
  13267. height: math.unit(4, "meters"),
  13268. weight: math.unit(2, "tons"),
  13269. name: "Front",
  13270. image: {
  13271. source: "./media/characters/marik/front.svg",
  13272. extra: 1057 / 1003,
  13273. bottom: 0.08
  13274. }
  13275. },
  13276. },
  13277. [
  13278. {
  13279. name: "Normal",
  13280. height: math.unit(4, "meters"),
  13281. default: true
  13282. },
  13283. {
  13284. name: "Macro",
  13285. height: math.unit(20, "meters")
  13286. },
  13287. {
  13288. name: "Megamacro",
  13289. height: math.unit(50, "km")
  13290. },
  13291. {
  13292. name: "Gigamacro",
  13293. height: math.unit(100, "km")
  13294. },
  13295. {
  13296. name: "Alpha Macro",
  13297. height: math.unit(7.88e7, "yottameters")
  13298. },
  13299. ]
  13300. ))
  13301. characterMakers.push(() => makeCharacter(
  13302. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  13303. {
  13304. front: {
  13305. height: math.unit(6, "feet"),
  13306. weight: math.unit(110, "lb"),
  13307. name: "Front",
  13308. image: {
  13309. source: "./media/characters/mel/front.svg",
  13310. extra: 736 / 617,
  13311. bottom: 0.017
  13312. }
  13313. },
  13314. },
  13315. [
  13316. {
  13317. name: "Pico",
  13318. height: math.unit(3, "pm")
  13319. },
  13320. {
  13321. name: "Nano",
  13322. height: math.unit(3, "nm")
  13323. },
  13324. {
  13325. name: "Micro",
  13326. height: math.unit(0.3, "mm"),
  13327. default: true
  13328. },
  13329. {
  13330. name: "Micro+",
  13331. height: math.unit(3, "mm")
  13332. },
  13333. {
  13334. name: "Normal",
  13335. height: math.unit(5 + 10.5 / 12, "feet")
  13336. },
  13337. ]
  13338. ))
  13339. characterMakers.push(() => makeCharacter(
  13340. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  13341. {
  13342. kaiju: {
  13343. height: math.unit(1.75, "meters"),
  13344. weight: math.unit(55, "kg"),
  13345. name: "Kaiju",
  13346. image: {
  13347. source: "./media/characters/lykonous/kaiju.svg",
  13348. extra: 1055 / 946,
  13349. bottom: 0.135
  13350. }
  13351. },
  13352. },
  13353. [
  13354. {
  13355. name: "Normal",
  13356. height: math.unit(2.5, "meters"),
  13357. default: true
  13358. },
  13359. {
  13360. name: "Kaiju Dragon",
  13361. height: math.unit(60, "meters")
  13362. },
  13363. {
  13364. name: "Mega Kaiju",
  13365. height: math.unit(120, "km")
  13366. },
  13367. {
  13368. name: "Giga Kaiju",
  13369. height: math.unit(200, "megameters")
  13370. },
  13371. {
  13372. name: "Terra Kaiju",
  13373. height: math.unit(400, "gigameters")
  13374. },
  13375. {
  13376. name: "Kaiju Dragon God",
  13377. height: math.unit(13000, "exaparsecs")
  13378. },
  13379. ]
  13380. ))
  13381. characterMakers.push(() => makeCharacter(
  13382. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  13383. {
  13384. front: {
  13385. height: math.unit(6, "feet"),
  13386. weight: math.unit(150, "lb"),
  13387. name: "Front",
  13388. image: {
  13389. source: "./media/characters/blü/front.svg",
  13390. extra: 1883 / 1564,
  13391. bottom: 0.031
  13392. }
  13393. },
  13394. },
  13395. [
  13396. {
  13397. name: "Normal",
  13398. height: math.unit(13, "feet"),
  13399. default: true
  13400. },
  13401. {
  13402. name: "Big Boi",
  13403. height: math.unit(150, "meters")
  13404. },
  13405. {
  13406. name: "Mini Stomper",
  13407. height: math.unit(300, "meters")
  13408. },
  13409. {
  13410. name: "Macro",
  13411. height: math.unit(1000, "meters")
  13412. },
  13413. {
  13414. name: "Megamacro",
  13415. height: math.unit(11000, "meters")
  13416. },
  13417. {
  13418. name: "Gigamacro",
  13419. height: math.unit(11000, "km")
  13420. },
  13421. {
  13422. name: "Teramacro",
  13423. height: math.unit(420000, "km")
  13424. },
  13425. {
  13426. name: "Examacro",
  13427. height: math.unit(120, "parsecs")
  13428. },
  13429. {
  13430. name: "God Tho",
  13431. height: math.unit(98000000000, "parsecs")
  13432. },
  13433. ]
  13434. ))
  13435. characterMakers.push(() => makeCharacter(
  13436. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  13437. {
  13438. taurFront: {
  13439. height: math.unit(6, "feet"),
  13440. weight: math.unit(200, "lb"),
  13441. name: "Taur (Front)",
  13442. image: {
  13443. source: "./media/characters/scales/taur-front.svg",
  13444. extra: 1,
  13445. bottom: 0.05
  13446. }
  13447. },
  13448. taurBack: {
  13449. height: math.unit(6, "feet"),
  13450. weight: math.unit(200, "lb"),
  13451. name: "Taur (Back)",
  13452. image: {
  13453. source: "./media/characters/scales/taur-back.svg",
  13454. extra: 1,
  13455. bottom: 0.08
  13456. }
  13457. },
  13458. anthro: {
  13459. height: math.unit(6 * 7 / 12, "feet"),
  13460. weight: math.unit(100, "lb"),
  13461. name: "Anthro",
  13462. image: {
  13463. source: "./media/characters/scales/anthro.svg",
  13464. extra: 1,
  13465. bottom: 0.06
  13466. }
  13467. },
  13468. },
  13469. [
  13470. {
  13471. name: "Normal",
  13472. height: math.unit(12, "feet"),
  13473. default: true
  13474. },
  13475. ]
  13476. ))
  13477. characterMakers.push(() => makeCharacter(
  13478. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  13479. {
  13480. front: {
  13481. height: math.unit(6, "feet"),
  13482. weight: math.unit(150, "lb"),
  13483. name: "Front",
  13484. image: {
  13485. source: "./media/characters/koragos/front.svg",
  13486. extra: 841 / 794,
  13487. bottom: 0.035
  13488. }
  13489. },
  13490. back: {
  13491. height: math.unit(6, "feet"),
  13492. weight: math.unit(150, "lb"),
  13493. name: "Back",
  13494. image: {
  13495. source: "./media/characters/koragos/back.svg",
  13496. extra: 841 / 810,
  13497. bottom: 0.022
  13498. }
  13499. },
  13500. },
  13501. [
  13502. {
  13503. name: "Normal",
  13504. height: math.unit(6 + 11 / 12, "feet"),
  13505. default: true
  13506. },
  13507. {
  13508. name: "Macro",
  13509. height: math.unit(490, "feet")
  13510. },
  13511. {
  13512. name: "Megamacro",
  13513. height: math.unit(10, "miles")
  13514. },
  13515. {
  13516. name: "Gigamacro",
  13517. height: math.unit(50, "miles")
  13518. },
  13519. ]
  13520. ))
  13521. characterMakers.push(() => makeCharacter(
  13522. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  13523. {
  13524. front: {
  13525. height: math.unit(6, "feet"),
  13526. weight: math.unit(250, "lb"),
  13527. name: "Front",
  13528. image: {
  13529. source: "./media/characters/xylrem/front.svg",
  13530. extra: 3323 / 3050,
  13531. bottom: 0.065
  13532. }
  13533. },
  13534. },
  13535. [
  13536. {
  13537. name: "Micro",
  13538. height: math.unit(4, "feet")
  13539. },
  13540. {
  13541. name: "Normal",
  13542. height: math.unit(16, "feet"),
  13543. default: true
  13544. },
  13545. {
  13546. name: "Macro",
  13547. height: math.unit(2720, "feet")
  13548. },
  13549. {
  13550. name: "Megamacro",
  13551. height: math.unit(25000, "miles")
  13552. },
  13553. ]
  13554. ))
  13555. characterMakers.push(() => makeCharacter(
  13556. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  13557. {
  13558. front: {
  13559. height: math.unit(8, "feet"),
  13560. weight: math.unit(250, "kg"),
  13561. name: "Front",
  13562. image: {
  13563. source: "./media/characters/ikideru/front.svg",
  13564. extra: 930 / 870,
  13565. bottom: 0.087
  13566. }
  13567. },
  13568. back: {
  13569. height: math.unit(8, "feet"),
  13570. weight: math.unit(250, "kg"),
  13571. name: "Back",
  13572. image: {
  13573. source: "./media/characters/ikideru/back.svg",
  13574. extra: 919 / 852,
  13575. bottom: 0.055
  13576. }
  13577. },
  13578. },
  13579. [
  13580. {
  13581. name: "Rare",
  13582. height: math.unit(8, "feet"),
  13583. default: true
  13584. },
  13585. {
  13586. name: "Playful Loom",
  13587. height: math.unit(80, "feet")
  13588. },
  13589. {
  13590. name: "City Leaner",
  13591. height: math.unit(230, "feet")
  13592. },
  13593. {
  13594. name: "Megamacro",
  13595. height: math.unit(2500, "feet")
  13596. },
  13597. {
  13598. name: "Gigamacro",
  13599. height: math.unit(26400, "feet")
  13600. },
  13601. {
  13602. name: "Tectonic Shifter",
  13603. height: math.unit(1.7, "megameters")
  13604. },
  13605. {
  13606. name: "Planet Carer",
  13607. height: math.unit(21, "megameters")
  13608. },
  13609. {
  13610. name: "God",
  13611. height: math.unit(11157.22, "parsecs")
  13612. },
  13613. ]
  13614. ))
  13615. characterMakers.push(() => makeCharacter(
  13616. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  13617. {
  13618. front: {
  13619. height: math.unit(6, "feet"),
  13620. weight: math.unit(120, "lb"),
  13621. name: "Front",
  13622. image: {
  13623. source: "./media/characters/neo/front.svg"
  13624. }
  13625. },
  13626. },
  13627. [
  13628. {
  13629. name: "Micro",
  13630. height: math.unit(2, "inches"),
  13631. default: true
  13632. },
  13633. {
  13634. name: "Human Size",
  13635. height: math.unit(5 + 8 / 12, "feet")
  13636. },
  13637. ]
  13638. ))
  13639. characterMakers.push(() => makeCharacter(
  13640. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  13641. {
  13642. front: {
  13643. height: math.unit(13 + 10 / 12, "feet"),
  13644. weight: math.unit(5320, "lb"),
  13645. name: "Front",
  13646. image: {
  13647. source: "./media/characters/chauncey-chantz/front.svg",
  13648. extra: 1587 / 1435,
  13649. bottom: 0.02
  13650. }
  13651. },
  13652. },
  13653. [
  13654. {
  13655. name: "Normal",
  13656. height: math.unit(13 + 10 / 12, "feet"),
  13657. default: true
  13658. },
  13659. {
  13660. name: "Macro",
  13661. height: math.unit(45, "feet")
  13662. },
  13663. {
  13664. name: "Megamacro",
  13665. height: math.unit(250, "miles")
  13666. },
  13667. {
  13668. name: "Planetary",
  13669. height: math.unit(10000, "miles")
  13670. },
  13671. {
  13672. name: "Galactic",
  13673. height: math.unit(40000, "parsecs")
  13674. },
  13675. {
  13676. name: "Universal",
  13677. height: math.unit(1, "yottameter")
  13678. },
  13679. ]
  13680. ))
  13681. characterMakers.push(() => makeCharacter(
  13682. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  13683. {
  13684. front: {
  13685. height: math.unit(6, "feet"),
  13686. weight: math.unit(150, "lb"),
  13687. name: "Front",
  13688. image: {
  13689. source: "./media/characters/epifox/front.svg",
  13690. extra: 1,
  13691. bottom: 0.075
  13692. }
  13693. },
  13694. },
  13695. [
  13696. {
  13697. name: "Micro",
  13698. height: math.unit(6, "inches")
  13699. },
  13700. {
  13701. name: "Normal",
  13702. height: math.unit(12, "feet"),
  13703. default: true
  13704. },
  13705. {
  13706. name: "Macro",
  13707. height: math.unit(3810, "feet")
  13708. },
  13709. {
  13710. name: "Megamacro",
  13711. height: math.unit(500, "miles")
  13712. },
  13713. ]
  13714. ))
  13715. characterMakers.push(() => makeCharacter(
  13716. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13717. {
  13718. front: {
  13719. height: math.unit(1.8796, "m"),
  13720. weight: math.unit(230, "lb"),
  13721. name: "Front",
  13722. image: {
  13723. source: "./media/characters/colin-t/front.svg",
  13724. extra: 1272 / 1193,
  13725. bottom: 0.07
  13726. }
  13727. },
  13728. },
  13729. [
  13730. {
  13731. name: "Micro",
  13732. height: math.unit(0.571, "meters")
  13733. },
  13734. {
  13735. name: "Normal",
  13736. height: math.unit(1.8796, "meters"),
  13737. default: true
  13738. },
  13739. {
  13740. name: "Tall",
  13741. height: math.unit(4, "meters")
  13742. },
  13743. {
  13744. name: "Macro",
  13745. height: math.unit(67.241, "meters")
  13746. },
  13747. {
  13748. name: "Megamacro",
  13749. height: math.unit(371.856, "meters")
  13750. },
  13751. {
  13752. name: "Planetary",
  13753. height: math.unit(12631.5689, "km")
  13754. },
  13755. ]
  13756. ))
  13757. characterMakers.push(() => makeCharacter(
  13758. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13759. {
  13760. front: {
  13761. height: math.unit(1.85, "meters"),
  13762. weight: math.unit(80, "kg"),
  13763. name: "Front",
  13764. image: {
  13765. source: "./media/characters/matvei/front.svg",
  13766. extra: 456/447,
  13767. bottom: 8/464
  13768. }
  13769. },
  13770. back: {
  13771. height: math.unit(1.85, "meters"),
  13772. weight: math.unit(80, "kg"),
  13773. name: "Back",
  13774. image: {
  13775. source: "./media/characters/matvei/back.svg",
  13776. extra: 434/427,
  13777. bottom: 11/445
  13778. }
  13779. },
  13780. },
  13781. [
  13782. {
  13783. name: "Normal",
  13784. height: math.unit(1.85, "meters"),
  13785. default: true
  13786. },
  13787. ]
  13788. ))
  13789. characterMakers.push(() => makeCharacter(
  13790. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13791. {
  13792. front: {
  13793. height: math.unit(5 + 9 / 12, "feet"),
  13794. weight: math.unit(70, "lb"),
  13795. name: "Front",
  13796. image: {
  13797. source: "./media/characters/quincy/front.svg",
  13798. extra: 3041 / 2751
  13799. }
  13800. },
  13801. back: {
  13802. height: math.unit(5 + 9 / 12, "feet"),
  13803. weight: math.unit(70, "lb"),
  13804. name: "Back",
  13805. image: {
  13806. source: "./media/characters/quincy/back.svg",
  13807. extra: 3041 / 2751
  13808. }
  13809. },
  13810. flying: {
  13811. height: math.unit(5 + 4 / 12, "feet"),
  13812. weight: math.unit(70, "lb"),
  13813. name: "Flying",
  13814. image: {
  13815. source: "./media/characters/quincy/flying.svg",
  13816. extra: 1044 / 930
  13817. }
  13818. },
  13819. },
  13820. [
  13821. {
  13822. name: "Micro",
  13823. height: math.unit(3, "cm")
  13824. },
  13825. {
  13826. name: "Normal",
  13827. height: math.unit(5 + 9 / 12, "feet")
  13828. },
  13829. {
  13830. name: "Macro",
  13831. height: math.unit(200, "meters"),
  13832. default: true
  13833. },
  13834. {
  13835. name: "Megamacro",
  13836. height: math.unit(1000, "meters")
  13837. },
  13838. ]
  13839. ))
  13840. characterMakers.push(() => makeCharacter(
  13841. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13842. {
  13843. front: {
  13844. height: math.unit(3 + 11/12, "feet"),
  13845. weight: math.unit(50, "lb"),
  13846. name: "Front",
  13847. image: {
  13848. source: "./media/characters/vanrel/front.svg",
  13849. extra: 1104/949,
  13850. bottom: 52/1156
  13851. }
  13852. },
  13853. back: {
  13854. height: math.unit(3 + 11/12, "feet"),
  13855. weight: math.unit(50, "lb"),
  13856. name: "Back",
  13857. image: {
  13858. source: "./media/characters/vanrel/back.svg",
  13859. extra: 1119/976,
  13860. bottom: 37/1156
  13861. }
  13862. },
  13863. tome: {
  13864. height: math.unit(1.35, "feet"),
  13865. weight: math.unit(10, "lb"),
  13866. name: "Vanrel's Tome",
  13867. rename: true,
  13868. image: {
  13869. source: "./media/characters/vanrel/tome.svg"
  13870. }
  13871. },
  13872. beans: {
  13873. height: math.unit(0.89, "feet"),
  13874. name: "Beans",
  13875. image: {
  13876. source: "./media/characters/vanrel/beans.svg"
  13877. }
  13878. },
  13879. },
  13880. [
  13881. {
  13882. name: "Normal",
  13883. height: math.unit(3 + 11/12, "feet"),
  13884. default: true
  13885. },
  13886. ]
  13887. ))
  13888. characterMakers.push(() => makeCharacter(
  13889. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13890. {
  13891. front: {
  13892. height: math.unit(7 + 5 / 12, "feet"),
  13893. name: "Front",
  13894. image: {
  13895. source: "./media/characters/kuiper-vanrel/front.svg",
  13896. extra: 1219/1169,
  13897. bottom: 69/1288
  13898. }
  13899. },
  13900. back: {
  13901. height: math.unit(7 + 5 / 12, "feet"),
  13902. name: "Back",
  13903. image: {
  13904. source: "./media/characters/kuiper-vanrel/back.svg",
  13905. extra: 1236/1193,
  13906. bottom: 27/1263
  13907. }
  13908. },
  13909. foot: {
  13910. height: math.unit(0.55, "meters"),
  13911. name: "Foot",
  13912. image: {
  13913. source: "./media/characters/kuiper-vanrel/foot.svg",
  13914. }
  13915. },
  13916. battle: {
  13917. height: math.unit(6.824, "feet"),
  13918. name: "Battle",
  13919. image: {
  13920. source: "./media/characters/kuiper-vanrel/battle.svg",
  13921. extra: 1466 / 1327,
  13922. bottom: 29 / 1492.5
  13923. }
  13924. },
  13925. meerkui: {
  13926. height: math.unit(18, "inches"),
  13927. name: "Meerkui",
  13928. image: {
  13929. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13930. extra: 1354/1289,
  13931. bottom: 69/1423
  13932. }
  13933. },
  13934. },
  13935. [
  13936. {
  13937. name: "Normal",
  13938. height: math.unit(7 + 5 / 12, "feet"),
  13939. default: true
  13940. },
  13941. ]
  13942. ))
  13943. characterMakers.push(() => makeCharacter(
  13944. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13945. {
  13946. front: {
  13947. height: math.unit(8 + 5 / 12, "feet"),
  13948. name: "Front",
  13949. image: {
  13950. source: "./media/characters/keset-vanrel/front.svg",
  13951. extra: 1231/1148,
  13952. bottom: 82/1313
  13953. }
  13954. },
  13955. back: {
  13956. height: math.unit(8 + 5 / 12, "feet"),
  13957. name: "Back",
  13958. image: {
  13959. source: "./media/characters/keset-vanrel/back.svg",
  13960. extra: 1240/1174,
  13961. bottom: 33/1273
  13962. }
  13963. },
  13964. hand: {
  13965. height: math.unit(0.6, "meters"),
  13966. name: "Hand",
  13967. image: {
  13968. source: "./media/characters/keset-vanrel/hand.svg"
  13969. }
  13970. },
  13971. foot: {
  13972. height: math.unit(0.94978, "meters"),
  13973. name: "Foot",
  13974. image: {
  13975. source: "./media/characters/keset-vanrel/foot.svg"
  13976. }
  13977. },
  13978. battle: {
  13979. height: math.unit(7.408, "feet"),
  13980. name: "Battle",
  13981. image: {
  13982. source: "./media/characters/keset-vanrel/battle.svg",
  13983. extra: 1890 / 1386,
  13984. bottom: 73.28 / 1970
  13985. }
  13986. },
  13987. },
  13988. [
  13989. {
  13990. name: "Normal",
  13991. height: math.unit(8 + 5 / 12, "feet"),
  13992. default: true
  13993. },
  13994. ]
  13995. ))
  13996. characterMakers.push(() => makeCharacter(
  13997. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13998. {
  13999. front: {
  14000. height: math.unit(6, "feet"),
  14001. weight: math.unit(150, "lb"),
  14002. name: "Front",
  14003. image: {
  14004. source: "./media/characters/neos/front.svg",
  14005. extra: 1696 / 992,
  14006. bottom: 0.14
  14007. }
  14008. },
  14009. },
  14010. [
  14011. {
  14012. name: "Normal",
  14013. height: math.unit(54, "cm"),
  14014. default: true
  14015. },
  14016. {
  14017. name: "Macro",
  14018. height: math.unit(100, "m")
  14019. },
  14020. {
  14021. name: "Megamacro",
  14022. height: math.unit(10, "km")
  14023. },
  14024. {
  14025. name: "Megamacro+",
  14026. height: math.unit(100, "km")
  14027. },
  14028. {
  14029. name: "Gigamacro",
  14030. height: math.unit(100, "Mm")
  14031. },
  14032. {
  14033. name: "Teramacro",
  14034. height: math.unit(100, "Gm")
  14035. },
  14036. {
  14037. name: "Examacro",
  14038. height: math.unit(100, "Em")
  14039. },
  14040. {
  14041. name: "Godly",
  14042. height: math.unit(10000, "Ym")
  14043. },
  14044. {
  14045. name: "Beyond Godly",
  14046. height: math.unit(25, "multiverses")
  14047. },
  14048. ]
  14049. ))
  14050. characterMakers.push(() => makeCharacter(
  14051. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  14052. {
  14053. fluide_tame: {
  14054. height: math.unit(5, "feet"),
  14055. name: "Tame",
  14056. image: {
  14057. source: "./media/characters/sammy-mouse/fluide-tame.svg",
  14058. extra: 1655/1574,
  14059. bottom: 231/1886
  14060. },
  14061. form: "fluide",
  14062. default: true
  14063. },
  14064. fluide_nude: {
  14065. height: math.unit(5, "feet"),
  14066. name: "Nude",
  14067. image: {
  14068. source: "./media/characters/sammy-mouse/fluide-nude.svg",
  14069. extra: 1655/1574,
  14070. bottom: 231/1886
  14071. },
  14072. form: "fluide",
  14073. },
  14074. male_tame: {
  14075. height: math.unit(5, "feet"),
  14076. name: "Tame",
  14077. image: {
  14078. source: "./media/characters/sammy-mouse/male-tame.svg",
  14079. extra: 1655/1574,
  14080. bottom: 231/1886
  14081. },
  14082. form: "male",
  14083. default: true
  14084. },
  14085. male_nude: {
  14086. height: math.unit(5, "feet"),
  14087. name: "Nude",
  14088. image: {
  14089. source: "./media/characters/sammy-mouse/male-nude.svg",
  14090. extra: 1655/1574,
  14091. bottom: 231/1886
  14092. },
  14093. form: "male",
  14094. },
  14095. female_nude: {
  14096. height: math.unit(5, "feet"),
  14097. name: "Nude",
  14098. image: {
  14099. source: "./media/characters/sammy-mouse/female-nude.svg",
  14100. extra: 1655/1574,
  14101. bottom: 231/1886
  14102. },
  14103. form: "female",
  14104. default: true
  14105. },
  14106. mouth: {
  14107. height: math.unit(0.32, "feet"),
  14108. name: "Mouth",
  14109. image: {
  14110. source: "./media/characters/sammy-mouse/mouth.svg"
  14111. },
  14112. allForms: true
  14113. },
  14114. paw: {
  14115. height: math.unit(0.42, "feet"),
  14116. name: "Paw",
  14117. image: {
  14118. source: "./media/characters/sammy-mouse/paw.svg"
  14119. },
  14120. allForms: true
  14121. },
  14122. },
  14123. [
  14124. {
  14125. name: "Micro",
  14126. height: math.unit(5, "inches"),
  14127. allForms: true
  14128. },
  14129. {
  14130. name: "Normal",
  14131. height: math.unit(5, "feet"),
  14132. default: true,
  14133. allForms: true
  14134. },
  14135. {
  14136. name: "Macro",
  14137. height: math.unit(60, "feet"),
  14138. allForms: true
  14139. },
  14140. ],
  14141. {
  14142. "fluide": {
  14143. name: "Fluide",
  14144. default: true
  14145. },
  14146. "male": {
  14147. name: "Male",
  14148. },
  14149. "female": {
  14150. name: "Female",
  14151. },
  14152. }
  14153. ))
  14154. characterMakers.push(() => makeCharacter(
  14155. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  14156. {
  14157. front: {
  14158. height: math.unit(4, "feet"),
  14159. weight: math.unit(50, "lb"),
  14160. name: "Front",
  14161. image: {
  14162. source: "./media/characters/kole/front.svg",
  14163. extra: 1423 / 1303,
  14164. bottom: 0.025
  14165. }
  14166. },
  14167. back: {
  14168. height: math.unit(4, "feet"),
  14169. weight: math.unit(50, "lb"),
  14170. name: "Back",
  14171. image: {
  14172. source: "./media/characters/kole/back.svg",
  14173. extra: 1426 / 1280,
  14174. bottom: 0.02
  14175. }
  14176. },
  14177. },
  14178. [
  14179. {
  14180. name: "Normal",
  14181. height: math.unit(4, "feet"),
  14182. default: true
  14183. },
  14184. ]
  14185. ))
  14186. characterMakers.push(() => makeCharacter(
  14187. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  14188. {
  14189. front: {
  14190. height: math.unit(2.5, "feet"),
  14191. weight: math.unit(32, "lb"),
  14192. name: "Front",
  14193. image: {
  14194. source: "./media/characters/rufran/front.svg",
  14195. extra: 1313/885,
  14196. bottom: 94/1407
  14197. }
  14198. },
  14199. side: {
  14200. height: math.unit(2.5, "feet"),
  14201. weight: math.unit(32, "lb"),
  14202. name: "Side",
  14203. image: {
  14204. source: "./media/characters/rufran/side.svg",
  14205. extra: 1109/852,
  14206. bottom: 118/1227
  14207. }
  14208. },
  14209. back: {
  14210. height: math.unit(2.5, "feet"),
  14211. weight: math.unit(32, "lb"),
  14212. name: "Back",
  14213. image: {
  14214. source: "./media/characters/rufran/back.svg",
  14215. extra: 1280/878,
  14216. bottom: 131/1411
  14217. }
  14218. },
  14219. mouth: {
  14220. height: math.unit(1.13, "feet"),
  14221. name: "Mouth",
  14222. image: {
  14223. source: "./media/characters/rufran/mouth.svg"
  14224. }
  14225. },
  14226. foot: {
  14227. height: math.unit(1.33, "feet"),
  14228. name: "Foot",
  14229. image: {
  14230. source: "./media/characters/rufran/foot.svg"
  14231. }
  14232. },
  14233. koboldFront: {
  14234. height: math.unit(2 + 6 / 12, "feet"),
  14235. weight: math.unit(20, "lb"),
  14236. name: "Front (Kobold)",
  14237. image: {
  14238. source: "./media/characters/rufran/kobold-front.svg",
  14239. extra: 2041 / 1839,
  14240. bottom: 0.055
  14241. }
  14242. },
  14243. koboldBack: {
  14244. height: math.unit(2 + 6 / 12, "feet"),
  14245. weight: math.unit(20, "lb"),
  14246. name: "Back (Kobold)",
  14247. image: {
  14248. source: "./media/characters/rufran/kobold-back.svg",
  14249. extra: 2054 / 1839,
  14250. bottom: 0.01
  14251. }
  14252. },
  14253. koboldHand: {
  14254. height: math.unit(0.2166, "meters"),
  14255. name: "Hand (Kobold)",
  14256. image: {
  14257. source: "./media/characters/rufran/kobold-hand.svg"
  14258. }
  14259. },
  14260. koboldFoot: {
  14261. height: math.unit(0.185, "meters"),
  14262. name: "Foot (Kobold)",
  14263. image: {
  14264. source: "./media/characters/rufran/kobold-foot.svg"
  14265. }
  14266. },
  14267. },
  14268. [
  14269. {
  14270. name: "Micro",
  14271. height: math.unit(1, "inch")
  14272. },
  14273. {
  14274. name: "Normal",
  14275. height: math.unit(2 + 6 / 12, "feet"),
  14276. default: true
  14277. },
  14278. {
  14279. name: "Big",
  14280. height: math.unit(60, "feet")
  14281. },
  14282. {
  14283. name: "Macro",
  14284. height: math.unit(325, "feet")
  14285. },
  14286. ]
  14287. ))
  14288. characterMakers.push(() => makeCharacter(
  14289. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  14290. {
  14291. front: {
  14292. height: math.unit(0.3, "meters"),
  14293. weight: math.unit(3.5, "kg"),
  14294. name: "Front",
  14295. image: {
  14296. source: "./media/characters/chip/front.svg",
  14297. extra: 748 / 674
  14298. }
  14299. },
  14300. },
  14301. [
  14302. {
  14303. name: "Micro",
  14304. height: math.unit(1, "inch"),
  14305. default: true
  14306. },
  14307. ]
  14308. ))
  14309. characterMakers.push(() => makeCharacter(
  14310. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  14311. {
  14312. side: {
  14313. height: math.unit(2.3, "meters"),
  14314. weight: math.unit(3500, "lb"),
  14315. name: "Side",
  14316. image: {
  14317. source: "./media/characters/torvid/side.svg",
  14318. extra: 1972 / 722,
  14319. bottom: 0.035
  14320. }
  14321. },
  14322. },
  14323. [
  14324. {
  14325. name: "Normal",
  14326. height: math.unit(2.3, "meters"),
  14327. default: true
  14328. },
  14329. ]
  14330. ))
  14331. characterMakers.push(() => makeCharacter(
  14332. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  14333. {
  14334. front: {
  14335. height: math.unit(2, "meters"),
  14336. weight: math.unit(150.5, "kg"),
  14337. name: "Front",
  14338. image: {
  14339. source: "./media/characters/susan/front.svg",
  14340. extra: 693 / 635,
  14341. bottom: 0.05
  14342. }
  14343. },
  14344. },
  14345. [
  14346. {
  14347. name: "Megamacro",
  14348. height: math.unit(505, "miles"),
  14349. default: true
  14350. },
  14351. ]
  14352. ))
  14353. characterMakers.push(() => makeCharacter(
  14354. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  14355. {
  14356. front: {
  14357. height: math.unit(6, "feet"),
  14358. weight: math.unit(150, "lb"),
  14359. name: "Front",
  14360. image: {
  14361. source: "./media/characters/raindrops/front.svg",
  14362. extra: 2655 / 2461,
  14363. bottom: 49 / 2705
  14364. }
  14365. },
  14366. back: {
  14367. height: math.unit(6, "feet"),
  14368. weight: math.unit(150, "lb"),
  14369. name: "Back",
  14370. image: {
  14371. source: "./media/characters/raindrops/back.svg",
  14372. extra: 2574 / 2400,
  14373. bottom: 65 / 2634
  14374. }
  14375. },
  14376. },
  14377. [
  14378. {
  14379. name: "Micro",
  14380. height: math.unit(6, "inches")
  14381. },
  14382. {
  14383. name: "Normal",
  14384. height: math.unit(6 + 2 / 12, "feet")
  14385. },
  14386. {
  14387. name: "Macro",
  14388. height: math.unit(131, "feet"),
  14389. default: true
  14390. },
  14391. {
  14392. name: "Megamacro",
  14393. height: math.unit(15, "miles")
  14394. },
  14395. {
  14396. name: "Gigamacro",
  14397. height: math.unit(4000, "miles")
  14398. },
  14399. {
  14400. name: "Teramacro",
  14401. height: math.unit(315000, "miles")
  14402. },
  14403. ]
  14404. ))
  14405. characterMakers.push(() => makeCharacter(
  14406. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  14407. {
  14408. normal_front: {
  14409. height: math.unit(9 + 2/12, "feet"),
  14410. weight: math.unit(325, "kg"),
  14411. name: "Front",
  14412. image: {
  14413. source: "./media/characters/tezwa/normal-front.svg",
  14414. extra: 770/714,
  14415. bottom: 32/802
  14416. },
  14417. form: "normal",
  14418. },
  14419. normal_paw: {
  14420. height: math.unit(2.2, "feet"),
  14421. name: "Paw",
  14422. image: {
  14423. source: "./media/characters/tezwa/paw.svg"
  14424. },
  14425. form: "normal",
  14426. },
  14427. muscled_front: {
  14428. height: math.unit(916 + 8/12, "feet"),
  14429. weight: math.unit(500000, "tons"),
  14430. name: "Front",
  14431. image: {
  14432. source: "./media/characters/tezwa/muscled-front.svg",
  14433. extra: 1840/1697,
  14434. bottom: 29/1869
  14435. },
  14436. form: "muscled",
  14437. },
  14438. muscled_paw: {
  14439. height: math.unit(200, "feet"),
  14440. name: "Paw",
  14441. image: {
  14442. source: "./media/characters/tezwa/paw.svg"
  14443. },
  14444. form: "muscled",
  14445. },
  14446. },
  14447. [
  14448. {
  14449. name: "Normal",
  14450. height: math.unit(9 + 2 / 12, "feet"),
  14451. default: true,
  14452. form: "normal"
  14453. },
  14454. {
  14455. name: "Normal",
  14456. height: math.unit(916 + 8/12, "feet"),
  14457. default: true,
  14458. form: "muscled"
  14459. },
  14460. ],
  14461. {
  14462. "normal": {
  14463. name: "Normal",
  14464. default: true
  14465. },
  14466. "muscled": {
  14467. name: "Muscled",
  14468. },
  14469. }
  14470. ))
  14471. characterMakers.push(() => makeCharacter(
  14472. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  14473. {
  14474. front: {
  14475. height: math.unit(58, "feet"),
  14476. weight: math.unit(89000, "lb"),
  14477. name: "Front",
  14478. image: {
  14479. source: "./media/characters/typhus/front.svg",
  14480. extra: 816 / 800,
  14481. bottom: 0.065
  14482. }
  14483. },
  14484. },
  14485. [
  14486. {
  14487. name: "Macro",
  14488. height: math.unit(58, "feet"),
  14489. default: true
  14490. },
  14491. ]
  14492. ))
  14493. characterMakers.push(() => makeCharacter(
  14494. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  14495. {
  14496. front: {
  14497. height: math.unit(12, "feet"),
  14498. weight: math.unit(6, "tonnes"),
  14499. name: "Front",
  14500. image: {
  14501. source: "./media/characters/lyra-von-wulf/front.svg",
  14502. extra: 1,
  14503. bottom: 0.10
  14504. }
  14505. },
  14506. frontMecha: {
  14507. height: math.unit(12, "feet"),
  14508. weight: math.unit(12, "tonnes"),
  14509. name: "Front (Mecha)",
  14510. image: {
  14511. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  14512. extra: 1,
  14513. bottom: 0.042
  14514. }
  14515. },
  14516. maw: {
  14517. height: math.unit(2.2, "feet"),
  14518. name: "Maw",
  14519. image: {
  14520. source: "./media/characters/lyra-von-wulf/maw.svg"
  14521. }
  14522. },
  14523. },
  14524. [
  14525. {
  14526. name: "Normal",
  14527. height: math.unit(12, "feet"),
  14528. default: true
  14529. },
  14530. {
  14531. name: "Classic",
  14532. height: math.unit(50, "feet")
  14533. },
  14534. {
  14535. name: "Macro",
  14536. height: math.unit(500, "feet")
  14537. },
  14538. {
  14539. name: "Megamacro",
  14540. height: math.unit(1, "mile")
  14541. },
  14542. {
  14543. name: "Gigamacro",
  14544. height: math.unit(400, "miles")
  14545. },
  14546. {
  14547. name: "Teramacro",
  14548. height: math.unit(22000, "miles")
  14549. },
  14550. {
  14551. name: "Solarmacro",
  14552. height: math.unit(8600000, "miles")
  14553. },
  14554. {
  14555. name: "Galactic",
  14556. height: math.unit(1057000, "lightyears")
  14557. },
  14558. ]
  14559. ))
  14560. characterMakers.push(() => makeCharacter(
  14561. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  14562. {
  14563. front: {
  14564. height: math.unit(6 + 10 / 12, "feet"),
  14565. weight: math.unit(150, "lb"),
  14566. name: "Front",
  14567. image: {
  14568. source: "./media/characters/dixon/front.svg",
  14569. extra: 3361 / 3209,
  14570. bottom: 0.01
  14571. }
  14572. },
  14573. },
  14574. [
  14575. {
  14576. name: "Normal",
  14577. height: math.unit(6 + 10 / 12, "feet"),
  14578. default: true
  14579. },
  14580. {
  14581. name: "Big",
  14582. height: math.unit(12, "meters")
  14583. },
  14584. {
  14585. name: "Macro",
  14586. height: math.unit(500, "meters")
  14587. },
  14588. {
  14589. name: "Megamacro",
  14590. height: math.unit(2, "km")
  14591. },
  14592. ]
  14593. ))
  14594. characterMakers.push(() => makeCharacter(
  14595. { name: "Kauko", species: ["wolf", "king-cheetah"], tags: ["anthro"] },
  14596. {
  14597. kingCheetah_front: {
  14598. height: math.unit(1.85, "meters"),
  14599. weight: math.unit(68, "kg"),
  14600. name: "Front",
  14601. image: {
  14602. source: "./media/characters/kauko/king-cheetah-front.svg",
  14603. extra: 1007/972,
  14604. bottom: 35/1042
  14605. },
  14606. form: "king-cheetah",
  14607. default: true
  14608. },
  14609. kingCheetah_back: {
  14610. height: math.unit(1.85, "meters"),
  14611. weight: math.unit(68, "kg"),
  14612. name: "Back",
  14613. image: {
  14614. source: "./media/characters/kauko/king-cheetah-back.svg",
  14615. extra: 1015/980,
  14616. bottom: 11/1026
  14617. },
  14618. form: "king-cheetah",
  14619. },
  14620. kingCheetah_hand: {
  14621. height: math.unit(0.23, "meters"),
  14622. name: "Hand",
  14623. image: {
  14624. source: "./media/characters/kauko/king-cheetah-hand.svg"
  14625. },
  14626. form: "king-cheetah",
  14627. },
  14628. kingCheetah_paw: {
  14629. height: math.unit(0.38, "meters"),
  14630. name: "Paw",
  14631. image: {
  14632. source: "./media/characters/kauko/king-cheetah-paw.svg"
  14633. },
  14634. form: "king-cheetah",
  14635. },
  14636. kingCheetah_nape: {
  14637. height: math.unit(0.23, "meters"),
  14638. name: "Nape",
  14639. image: {
  14640. source: "./media/characters/kauko/king-cheetah-nape.svg"
  14641. },
  14642. form: "king-cheetah",
  14643. },
  14644. wolf_front: {
  14645. height: math.unit(1.88, "meters"),
  14646. weight: math.unit(74, "kg"),
  14647. name: "Front",
  14648. image: {
  14649. source: "./media/characters/kauko/wolf-front.svg",
  14650. extra: 952/908,
  14651. bottom: 64/1016
  14652. },
  14653. form: "wolf",
  14654. default: true
  14655. },
  14656. wolf_dressed: {
  14657. height: math.unit(1.88, "meters"),
  14658. weight: math.unit(74, "kg"),
  14659. name: "Dressed",
  14660. image: {
  14661. source: "./media/characters/kauko/wolf-dressed.svg",
  14662. extra: 963/916,
  14663. bottom: 101/1064
  14664. },
  14665. form: "wolf",
  14666. },
  14667. wolf_hand: {
  14668. height: math.unit(0.3, "meters"),
  14669. name: "Hand",
  14670. image: {
  14671. source: "./media/characters/kauko/wolf-hand.svg"
  14672. },
  14673. form: "wolf",
  14674. },
  14675. wolf_paw: {
  14676. height: math.unit(0.407, "meters"),
  14677. name: "Paw",
  14678. image: {
  14679. source: "./media/characters/kauko/wolf-paw.svg"
  14680. },
  14681. form: "wolf",
  14682. },
  14683. wolf_nape: {
  14684. height: math.unit(0.25, "meters"),
  14685. name: "Nape",
  14686. image: {
  14687. source: "./media/characters/kauko/wolf-nape.svg"
  14688. },
  14689. form: "wolf",
  14690. },
  14691. },
  14692. [
  14693. {
  14694. name: "Normal",
  14695. height: math.unit(1.85, "m"),
  14696. default: true,
  14697. form: "king-cheetah"
  14698. },
  14699. {
  14700. name: "Normal",
  14701. height: math.unit(1.88, "m"),
  14702. default: true,
  14703. form: "wolf"
  14704. },
  14705. ],
  14706. {
  14707. "king-cheetah": {
  14708. name: "King Cheetah",
  14709. default: true
  14710. },
  14711. "wolf": {
  14712. name: "Wolf",
  14713. },
  14714. }
  14715. ))
  14716. characterMakers.push(() => makeCharacter(
  14717. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  14718. {
  14719. frontSfw: {
  14720. height: math.unit(5, "meters"),
  14721. weight: math.unit(4250, "lb"),
  14722. name: "Front",
  14723. image: {
  14724. source: "./media/characters/varg/front-sfw.svg",
  14725. extra: 1103/1010,
  14726. bottom: 50/1153
  14727. },
  14728. form: "anthro",
  14729. default: true
  14730. },
  14731. backSfw: {
  14732. height: math.unit(5, "meters"),
  14733. weight: math.unit(4250, "lb"),
  14734. name: "Back",
  14735. image: {
  14736. source: "./media/characters/varg/back-sfw.svg",
  14737. extra: 1038/1022,
  14738. bottom: 36/1074
  14739. },
  14740. form: "anthro"
  14741. },
  14742. frontNsfw: {
  14743. height: math.unit(5, "meters"),
  14744. weight: math.unit(4250, "lb"),
  14745. name: "Front (NSFW)",
  14746. image: {
  14747. source: "./media/characters/varg/front-nsfw.svg",
  14748. extra: 1103/1010,
  14749. bottom: 50/1153
  14750. },
  14751. form: "anthro"
  14752. },
  14753. sheath: {
  14754. height: math.unit(3.8, "feet"),
  14755. weight: math.unit(90, "kilograms"),
  14756. name: "Sheath",
  14757. image: {
  14758. source: "./media/characters/varg/sheath.svg"
  14759. },
  14760. form: "anthro"
  14761. },
  14762. dick: {
  14763. height: math.unit(4.6, "feet"),
  14764. weight: math.unit(451, "kilograms"),
  14765. name: "Dick",
  14766. image: {
  14767. source: "./media/characters/varg/dick.svg"
  14768. },
  14769. form: "anthro"
  14770. },
  14771. feralSfw: {
  14772. height: math.unit(5, "meters"),
  14773. weight: math.unit(100000, "lb"),
  14774. name: "Side",
  14775. image: {
  14776. source: "./media/characters/varg/feral-sfw.svg",
  14777. extra: 1065/511,
  14778. bottom: 211/1276
  14779. },
  14780. form: "feral",
  14781. default: true
  14782. },
  14783. feralNsfw: {
  14784. height: math.unit(5, "meters"),
  14785. weight: math.unit(100000, "lb"),
  14786. name: "Side (NSFW)",
  14787. image: {
  14788. source: "./media/characters/varg/feral-nsfw.svg",
  14789. extra: 1065/511,
  14790. bottom: 211/1276
  14791. },
  14792. form: "feral",
  14793. },
  14794. feralSheath: {
  14795. height: math.unit(9.8, "feet"),
  14796. weight: math.unit(2000, "kilograms"),
  14797. name: "Sheath",
  14798. image: {
  14799. source: "./media/characters/varg/sheath.svg"
  14800. },
  14801. form: "feral"
  14802. },
  14803. feralDick: {
  14804. height: math.unit(13.11, "feet"),
  14805. weight: math.unit(10440, "kilograms"),
  14806. name: "Dick",
  14807. image: {
  14808. source: "./media/characters/varg/dick.svg"
  14809. },
  14810. form: "feral"
  14811. },
  14812. },
  14813. [
  14814. {
  14815. name: "Normal",
  14816. height: math.unit(5, "meters"),
  14817. form: "anthro"
  14818. },
  14819. {
  14820. name: "Macro",
  14821. height: math.unit(200, "meters"),
  14822. form: "anthro"
  14823. },
  14824. {
  14825. name: "Megamacro",
  14826. height: math.unit(20, "kilometers"),
  14827. form: "anthro"
  14828. },
  14829. {
  14830. name: "True Size",
  14831. height: math.unit(211, "km"),
  14832. form: "anthro",
  14833. default: true
  14834. },
  14835. {
  14836. name: "Gigamacro",
  14837. height: math.unit(1000, "km"),
  14838. form: "anthro"
  14839. },
  14840. {
  14841. name: "Gigamacro+",
  14842. height: math.unit(8000, "km"),
  14843. form: "anthro"
  14844. },
  14845. {
  14846. name: "Teramacro",
  14847. height: math.unit(1000000, "km"),
  14848. form: "anthro"
  14849. },
  14850. {
  14851. name: "Normal",
  14852. height: math.unit(5, "meters"),
  14853. form: "feral"
  14854. },
  14855. {
  14856. name: "Macro",
  14857. height: math.unit(200, "meters"),
  14858. form: "feral"
  14859. },
  14860. {
  14861. name: "Megamacro",
  14862. height: math.unit(20, "kilometers"),
  14863. form: "feral"
  14864. },
  14865. {
  14866. name: "True Size",
  14867. height: math.unit(211, "km"),
  14868. form: "feral",
  14869. default: true
  14870. },
  14871. {
  14872. name: "Gigamacro",
  14873. height: math.unit(1000, "km"),
  14874. form: "feral"
  14875. },
  14876. {
  14877. name: "Gigamacro+",
  14878. height: math.unit(8000, "km"),
  14879. form: "feral"
  14880. },
  14881. {
  14882. name: "Teramacro",
  14883. height: math.unit(1000000, "km"),
  14884. form: "feral"
  14885. },
  14886. ],
  14887. {
  14888. "anthro": {
  14889. name: "Anthro",
  14890. default: true
  14891. },
  14892. "feral": {
  14893. name: "Feral",
  14894. },
  14895. }
  14896. ))
  14897. characterMakers.push(() => makeCharacter(
  14898. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  14899. {
  14900. front: {
  14901. height: math.unit(7 + 7 / 12, "feet"),
  14902. weight: math.unit(267, "lb"),
  14903. name: "Front",
  14904. image: {
  14905. source: "./media/characters/dayza/front.svg",
  14906. extra: 1262 / 1200,
  14907. bottom: 0.035
  14908. }
  14909. },
  14910. side: {
  14911. height: math.unit(7 + 7 / 12, "feet"),
  14912. weight: math.unit(267, "lb"),
  14913. name: "Side",
  14914. image: {
  14915. source: "./media/characters/dayza/side.svg",
  14916. extra: 1295 / 1245,
  14917. bottom: 0.05
  14918. }
  14919. },
  14920. back: {
  14921. height: math.unit(7 + 7 / 12, "feet"),
  14922. weight: math.unit(267, "lb"),
  14923. name: "Back",
  14924. image: {
  14925. source: "./media/characters/dayza/back.svg",
  14926. extra: 1241 / 1170
  14927. }
  14928. },
  14929. },
  14930. [
  14931. {
  14932. name: "Normal",
  14933. height: math.unit(7 + 7 / 12, "feet"),
  14934. default: true
  14935. },
  14936. {
  14937. name: "Macro",
  14938. height: math.unit(155, "feet")
  14939. },
  14940. ]
  14941. ))
  14942. characterMakers.push(() => makeCharacter(
  14943. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14944. {
  14945. front: {
  14946. height: math.unit(6 + 5 / 12, "feet"),
  14947. weight: math.unit(160, "lb"),
  14948. name: "Front",
  14949. image: {
  14950. source: "./media/characters/xanthos/front.svg",
  14951. extra: 1,
  14952. bottom: 0.04
  14953. }
  14954. },
  14955. back: {
  14956. height: math.unit(6 + 5 / 12, "feet"),
  14957. weight: math.unit(160, "lb"),
  14958. name: "Back",
  14959. image: {
  14960. source: "./media/characters/xanthos/back.svg",
  14961. extra: 1,
  14962. bottom: 0.03
  14963. }
  14964. },
  14965. hand: {
  14966. height: math.unit(0.928, "feet"),
  14967. name: "Hand",
  14968. image: {
  14969. source: "./media/characters/xanthos/hand.svg"
  14970. }
  14971. },
  14972. foot: {
  14973. height: math.unit(1.286, "feet"),
  14974. name: "Foot",
  14975. image: {
  14976. source: "./media/characters/xanthos/foot.svg"
  14977. }
  14978. },
  14979. },
  14980. [
  14981. {
  14982. name: "Normal",
  14983. height: math.unit(6 + 5 / 12, "feet"),
  14984. default: true
  14985. },
  14986. {
  14987. name: "Normal+",
  14988. height: math.unit(6, "meters")
  14989. },
  14990. {
  14991. name: "Macro",
  14992. height: math.unit(40, "feet")
  14993. },
  14994. {
  14995. name: "Macro+",
  14996. height: math.unit(200, "meters")
  14997. },
  14998. {
  14999. name: "Megamacro",
  15000. height: math.unit(20, "km")
  15001. },
  15002. {
  15003. name: "Megamacro+",
  15004. height: math.unit(100, "km")
  15005. },
  15006. {
  15007. name: "Gigamacro",
  15008. height: math.unit(200, "megameters")
  15009. },
  15010. {
  15011. name: "Gigamacro+",
  15012. height: math.unit(1.5, "gigameters")
  15013. },
  15014. ]
  15015. ))
  15016. characterMakers.push(() => makeCharacter(
  15017. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  15018. {
  15019. front: {
  15020. height: math.unit(6 + 3 / 12, "feet"),
  15021. weight: math.unit(215, "lb"),
  15022. name: "Front",
  15023. image: {
  15024. source: "./media/characters/grynn/front.svg",
  15025. extra: 4627 / 4209,
  15026. bottom: 0.047
  15027. }
  15028. },
  15029. },
  15030. [
  15031. {
  15032. name: "Micro",
  15033. height: math.unit(6, "inches")
  15034. },
  15035. {
  15036. name: "Normal",
  15037. height: math.unit(6 + 3 / 12, "feet"),
  15038. default: true
  15039. },
  15040. {
  15041. name: "Big",
  15042. height: math.unit(104, "feet")
  15043. },
  15044. {
  15045. name: "Macro",
  15046. height: math.unit(944, "feet")
  15047. },
  15048. {
  15049. name: "Macro+",
  15050. height: math.unit(9480, "feet")
  15051. },
  15052. {
  15053. name: "Megamacro",
  15054. height: math.unit(78752, "feet")
  15055. },
  15056. {
  15057. name: "Megamacro+",
  15058. height: math.unit(630128, "feet")
  15059. },
  15060. {
  15061. name: "Megamacro++",
  15062. height: math.unit(3150695, "feet")
  15063. },
  15064. ]
  15065. ))
  15066. characterMakers.push(() => makeCharacter(
  15067. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  15068. {
  15069. front: {
  15070. height: math.unit(7 + 5 / 12, "feet"),
  15071. weight: math.unit(450, "lb"),
  15072. name: "Front",
  15073. image: {
  15074. source: "./media/characters/mocha-aura/front.svg",
  15075. extra: 1907 / 1817,
  15076. bottom: 0.04
  15077. }
  15078. },
  15079. back: {
  15080. height: math.unit(7 + 5 / 12, "feet"),
  15081. weight: math.unit(450, "lb"),
  15082. name: "Back",
  15083. image: {
  15084. source: "./media/characters/mocha-aura/back.svg",
  15085. extra: 1900 / 1825,
  15086. bottom: 0.045
  15087. }
  15088. },
  15089. },
  15090. [
  15091. {
  15092. name: "Nano",
  15093. height: math.unit(1, "nm")
  15094. },
  15095. {
  15096. name: "Megamicro",
  15097. height: math.unit(1, "mm")
  15098. },
  15099. {
  15100. name: "Micro",
  15101. height: math.unit(3, "inches")
  15102. },
  15103. {
  15104. name: "Normal",
  15105. height: math.unit(7 + 5 / 12, "feet"),
  15106. default: true
  15107. },
  15108. {
  15109. name: "Macro",
  15110. height: math.unit(30, "feet")
  15111. },
  15112. {
  15113. name: "Megamacro",
  15114. height: math.unit(3500, "feet")
  15115. },
  15116. {
  15117. name: "Teramacro",
  15118. height: math.unit(500000, "miles")
  15119. },
  15120. {
  15121. name: "Petamacro",
  15122. height: math.unit(50000000000000000, "parsecs")
  15123. },
  15124. ]
  15125. ))
  15126. characterMakers.push(() => makeCharacter(
  15127. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  15128. {
  15129. front: {
  15130. height: math.unit(6, "feet"),
  15131. weight: math.unit(150, "lb"),
  15132. name: "Front",
  15133. image: {
  15134. source: "./media/characters/ilisha-devya/front.svg",
  15135. extra: 1053/1049,
  15136. bottom: 270/1323
  15137. }
  15138. },
  15139. back: {
  15140. height: math.unit(6, "feet"),
  15141. weight: math.unit(150, "lb"),
  15142. name: "Back",
  15143. image: {
  15144. source: "./media/characters/ilisha-devya/back.svg",
  15145. extra: 1131/1128,
  15146. bottom: 39/1170
  15147. }
  15148. },
  15149. },
  15150. [
  15151. {
  15152. name: "Macro",
  15153. height: math.unit(500, "feet"),
  15154. default: true
  15155. },
  15156. {
  15157. name: "Megamacro",
  15158. height: math.unit(10, "miles")
  15159. },
  15160. {
  15161. name: "Gigamacro",
  15162. height: math.unit(100000, "miles")
  15163. },
  15164. {
  15165. name: "Examacro",
  15166. height: math.unit(1e9, "lightyears")
  15167. },
  15168. {
  15169. name: "Omniversal",
  15170. height: math.unit(1e33, "lightyears")
  15171. },
  15172. {
  15173. name: "Beyond Infinite",
  15174. height: math.unit(1e100, "lightyears")
  15175. },
  15176. ]
  15177. ))
  15178. characterMakers.push(() => makeCharacter(
  15179. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  15180. {
  15181. Side: {
  15182. height: math.unit(6, "feet"),
  15183. weight: math.unit(150, "lb"),
  15184. name: "Side",
  15185. image: {
  15186. source: "./media/characters/mira/side.svg",
  15187. extra: 900 / 799,
  15188. bottom: 0.02
  15189. }
  15190. },
  15191. },
  15192. [
  15193. {
  15194. name: "Human Size",
  15195. height: math.unit(6, "feet")
  15196. },
  15197. {
  15198. name: "Macro",
  15199. height: math.unit(100, "feet"),
  15200. default: true
  15201. },
  15202. {
  15203. name: "Megamacro",
  15204. height: math.unit(10, "miles")
  15205. },
  15206. {
  15207. name: "Gigamacro",
  15208. height: math.unit(25000, "miles")
  15209. },
  15210. {
  15211. name: "Teramacro",
  15212. height: math.unit(300, "AU")
  15213. },
  15214. {
  15215. name: "Full Size",
  15216. height: math.unit(4.5e10, "lightyears")
  15217. },
  15218. ]
  15219. ))
  15220. characterMakers.push(() => makeCharacter(
  15221. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  15222. {
  15223. front: {
  15224. height: math.unit(6, "feet"),
  15225. weight: math.unit(150, "lb"),
  15226. name: "Front",
  15227. image: {
  15228. source: "./media/characters/holly/front.svg",
  15229. extra: 639 / 606
  15230. }
  15231. },
  15232. back: {
  15233. height: math.unit(6, "feet"),
  15234. weight: math.unit(150, "lb"),
  15235. name: "Back",
  15236. image: {
  15237. source: "./media/characters/holly/back.svg",
  15238. extra: 623 / 598
  15239. }
  15240. },
  15241. frontWorking: {
  15242. height: math.unit(6, "feet"),
  15243. weight: math.unit(150, "lb"),
  15244. name: "Front (Working)",
  15245. image: {
  15246. source: "./media/characters/holly/front-working.svg",
  15247. extra: 607 / 577,
  15248. bottom: 0.048
  15249. }
  15250. },
  15251. },
  15252. [
  15253. {
  15254. name: "Normal",
  15255. height: math.unit(12 + 3 / 12, "feet"),
  15256. default: true
  15257. },
  15258. ]
  15259. ))
  15260. characterMakers.push(() => makeCharacter(
  15261. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  15262. {
  15263. front: {
  15264. height: math.unit(6, "feet"),
  15265. weight: math.unit(150, "lb"),
  15266. name: "Front",
  15267. image: {
  15268. source: "./media/characters/porter/front.svg",
  15269. extra: 1,
  15270. bottom: 0.01
  15271. }
  15272. },
  15273. frontRobes: {
  15274. height: math.unit(6, "feet"),
  15275. weight: math.unit(150, "lb"),
  15276. name: "Front (Robes)",
  15277. image: {
  15278. source: "./media/characters/porter/front-robes.svg",
  15279. extra: 1.01,
  15280. bottom: 0.01
  15281. }
  15282. },
  15283. },
  15284. [
  15285. {
  15286. name: "Normal",
  15287. height: math.unit(11 + 9 / 12, "feet"),
  15288. default: true
  15289. },
  15290. ]
  15291. ))
  15292. characterMakers.push(() => makeCharacter(
  15293. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  15294. {
  15295. legendary: {
  15296. height: math.unit(6, "feet"),
  15297. weight: math.unit(150, "lb"),
  15298. name: "Legendary",
  15299. image: {
  15300. source: "./media/characters/lucy/legendary.svg",
  15301. extra: 1355 / 1100,
  15302. bottom: 0.045
  15303. }
  15304. },
  15305. },
  15306. [
  15307. {
  15308. name: "Legendary",
  15309. height: math.unit(86882 * 2, "miles"),
  15310. default: true
  15311. },
  15312. ]
  15313. ))
  15314. characterMakers.push(() => makeCharacter(
  15315. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  15316. {
  15317. front: {
  15318. height: math.unit(6, "feet"),
  15319. weight: math.unit(150, "lb"),
  15320. name: "Front",
  15321. image: {
  15322. source: "./media/characters/drusilla/front.svg",
  15323. extra: 678 / 635,
  15324. bottom: 0.03
  15325. }
  15326. },
  15327. back: {
  15328. height: math.unit(6, "feet"),
  15329. weight: math.unit(150, "lb"),
  15330. name: "Back",
  15331. image: {
  15332. source: "./media/characters/drusilla/back.svg",
  15333. extra: 678 / 635,
  15334. bottom: 0.005
  15335. }
  15336. },
  15337. },
  15338. [
  15339. {
  15340. name: "Macro",
  15341. height: math.unit(100, "feet")
  15342. },
  15343. {
  15344. name: "Canon Height",
  15345. height: math.unit(2000, "feet"),
  15346. default: true
  15347. },
  15348. ]
  15349. ))
  15350. characterMakers.push(() => makeCharacter(
  15351. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  15352. {
  15353. front: {
  15354. height: math.unit(6, "feet"),
  15355. weight: math.unit(180, "lb"),
  15356. name: "Front",
  15357. image: {
  15358. source: "./media/characters/renard-thatch/front.svg",
  15359. extra: 2411 / 2275,
  15360. bottom: 0.01
  15361. }
  15362. },
  15363. frontPosing: {
  15364. height: math.unit(6, "feet"),
  15365. weight: math.unit(180, "lb"),
  15366. name: "Front (Posing)",
  15367. image: {
  15368. source: "./media/characters/renard-thatch/front-posing.svg",
  15369. extra: 2381 / 2261,
  15370. bottom: 0.01
  15371. }
  15372. },
  15373. back: {
  15374. height: math.unit(6, "feet"),
  15375. weight: math.unit(180, "lb"),
  15376. name: "Back",
  15377. image: {
  15378. source: "./media/characters/renard-thatch/back.svg",
  15379. extra: 2428 / 2288
  15380. }
  15381. },
  15382. },
  15383. [
  15384. {
  15385. name: "Micro",
  15386. height: math.unit(3, "inches")
  15387. },
  15388. {
  15389. name: "Default",
  15390. height: math.unit(6, "feet"),
  15391. default: true
  15392. },
  15393. {
  15394. name: "Macro",
  15395. height: math.unit(75, "feet")
  15396. },
  15397. ]
  15398. ))
  15399. characterMakers.push(() => makeCharacter(
  15400. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  15401. {
  15402. front: {
  15403. height: math.unit(1450, "feet"),
  15404. weight: math.unit(1.21e6, "tons"),
  15405. name: "Front",
  15406. image: {
  15407. source: "./media/characters/sekvra/front.svg",
  15408. extra: 1193/1190,
  15409. bottom: 78/1271
  15410. }
  15411. },
  15412. side: {
  15413. height: math.unit(1450, "feet"),
  15414. weight: math.unit(1.21e6, "tons"),
  15415. name: "Side",
  15416. image: {
  15417. source: "./media/characters/sekvra/side.svg",
  15418. extra: 1193/1190,
  15419. bottom: 52/1245
  15420. }
  15421. },
  15422. back: {
  15423. height: math.unit(1450, "feet"),
  15424. weight: math.unit(1.21e6, "tons"),
  15425. name: "Back",
  15426. image: {
  15427. source: "./media/characters/sekvra/back.svg",
  15428. extra: 1219/1216,
  15429. bottom: 21/1240
  15430. }
  15431. },
  15432. frontClothed: {
  15433. height: math.unit(1450, "feet"),
  15434. weight: math.unit(1.21e6, "tons"),
  15435. name: "Front (Clothed)",
  15436. image: {
  15437. source: "./media/characters/sekvra/front-clothed.svg",
  15438. extra: 1192/1189,
  15439. bottom: 79/1271
  15440. }
  15441. },
  15442. },
  15443. [
  15444. {
  15445. name: "Macro",
  15446. height: math.unit(1450, "feet"),
  15447. default: true
  15448. },
  15449. {
  15450. name: "Megamacro",
  15451. height: math.unit(15000, "feet")
  15452. },
  15453. ]
  15454. ))
  15455. characterMakers.push(() => makeCharacter(
  15456. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  15457. {
  15458. front: {
  15459. height: math.unit(6, "feet"),
  15460. weight: math.unit(150, "lb"),
  15461. name: "Front",
  15462. image: {
  15463. source: "./media/characters/carmine/front.svg",
  15464. extra: 1557/1538,
  15465. bottom: 68/1625
  15466. }
  15467. },
  15468. frontArmor: {
  15469. height: math.unit(6, "feet"),
  15470. weight: math.unit(150, "lb"),
  15471. name: "Front (Armor)",
  15472. image: {
  15473. source: "./media/characters/carmine/front-armor.svg",
  15474. extra: 1549/1530,
  15475. bottom: 82/1631
  15476. }
  15477. },
  15478. mouth: {
  15479. height: math.unit(0.55, "feet"),
  15480. name: "Mouth",
  15481. image: {
  15482. source: "./media/characters/carmine/mouth.svg"
  15483. }
  15484. },
  15485. hand: {
  15486. height: math.unit(1.05, "feet"),
  15487. name: "Hand",
  15488. image: {
  15489. source: "./media/characters/carmine/hand.svg"
  15490. }
  15491. },
  15492. foot: {
  15493. height: math.unit(0.6, "feet"),
  15494. name: "Foot",
  15495. image: {
  15496. source: "./media/characters/carmine/foot.svg"
  15497. }
  15498. },
  15499. },
  15500. [
  15501. {
  15502. name: "Large",
  15503. height: math.unit(1, "mile")
  15504. },
  15505. {
  15506. name: "Huge",
  15507. height: math.unit(40, "miles"),
  15508. default: true
  15509. },
  15510. {
  15511. name: "Colossal",
  15512. height: math.unit(2500, "miles")
  15513. },
  15514. ]
  15515. ))
  15516. characterMakers.push(() => makeCharacter(
  15517. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  15518. {
  15519. front: {
  15520. height: math.unit(6, "feet"),
  15521. weight: math.unit(150, "lb"),
  15522. name: "Front",
  15523. image: {
  15524. source: "./media/characters/elyssia/front.svg",
  15525. extra: 2201 / 2035,
  15526. bottom: 0.05
  15527. }
  15528. },
  15529. frontClothed: {
  15530. height: math.unit(6, "feet"),
  15531. weight: math.unit(150, "lb"),
  15532. name: "Front (Clothed)",
  15533. image: {
  15534. source: "./media/characters/elyssia/front-clothed.svg",
  15535. extra: 2201 / 2035,
  15536. bottom: 0.05
  15537. }
  15538. },
  15539. back: {
  15540. height: math.unit(6, "feet"),
  15541. weight: math.unit(150, "lb"),
  15542. name: "Back",
  15543. image: {
  15544. source: "./media/characters/elyssia/back.svg",
  15545. extra: 2201 / 2035,
  15546. bottom: 0.013
  15547. }
  15548. },
  15549. },
  15550. [
  15551. {
  15552. name: "Smaller",
  15553. height: math.unit(150, "feet")
  15554. },
  15555. {
  15556. name: "Standard",
  15557. height: math.unit(1400, "feet"),
  15558. default: true
  15559. },
  15560. {
  15561. name: "Distracted",
  15562. height: math.unit(15000, "feet")
  15563. },
  15564. ]
  15565. ))
  15566. characterMakers.push(() => makeCharacter(
  15567. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  15568. {
  15569. front: {
  15570. height: math.unit(7 + 4/12, "feet"),
  15571. weight: math.unit(690, "lb"),
  15572. name: "Front",
  15573. image: {
  15574. source: "./media/characters/geno-maxwell/front.svg",
  15575. extra: 984/856,
  15576. bottom: 87/1071
  15577. }
  15578. },
  15579. back: {
  15580. height: math.unit(7 + 4/12, "feet"),
  15581. weight: math.unit(690, "lb"),
  15582. name: "Back",
  15583. image: {
  15584. source: "./media/characters/geno-maxwell/back.svg",
  15585. extra: 981/854,
  15586. bottom: 57/1038
  15587. }
  15588. },
  15589. frontCostume: {
  15590. height: math.unit(7 + 4/12, "feet"),
  15591. weight: math.unit(690, "lb"),
  15592. name: "Front (Costume)",
  15593. image: {
  15594. source: "./media/characters/geno-maxwell/front-costume.svg",
  15595. extra: 984/856,
  15596. bottom: 87/1071
  15597. }
  15598. },
  15599. backcostume: {
  15600. height: math.unit(7 + 4/12, "feet"),
  15601. weight: math.unit(690, "lb"),
  15602. name: "Back (Costume)",
  15603. image: {
  15604. source: "./media/characters/geno-maxwell/back-costume.svg",
  15605. extra: 981/854,
  15606. bottom: 57/1038
  15607. }
  15608. },
  15609. },
  15610. [
  15611. {
  15612. name: "Micro",
  15613. height: math.unit(3, "inches")
  15614. },
  15615. {
  15616. name: "Normal",
  15617. height: math.unit(7 + 4 / 12, "feet"),
  15618. default: true
  15619. },
  15620. {
  15621. name: "Macro",
  15622. height: math.unit(220, "feet")
  15623. },
  15624. {
  15625. name: "Megamacro",
  15626. height: math.unit(11, "miles")
  15627. },
  15628. ]
  15629. ))
  15630. characterMakers.push(() => makeCharacter(
  15631. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  15632. {
  15633. front: {
  15634. height: math.unit(7 + 4/12, "feet"),
  15635. weight: math.unit(750, "lb"),
  15636. name: "Front",
  15637. image: {
  15638. source: "./media/characters/regena-maxwell/front.svg",
  15639. extra: 984/856,
  15640. bottom: 87/1071
  15641. }
  15642. },
  15643. back: {
  15644. height: math.unit(7 + 4/12, "feet"),
  15645. weight: math.unit(750, "lb"),
  15646. name: "Back",
  15647. image: {
  15648. source: "./media/characters/regena-maxwell/back.svg",
  15649. extra: 981/854,
  15650. bottom: 57/1038
  15651. }
  15652. },
  15653. frontCostume: {
  15654. height: math.unit(7 + 4/12, "feet"),
  15655. weight: math.unit(750, "lb"),
  15656. name: "Front (Costume)",
  15657. image: {
  15658. source: "./media/characters/regena-maxwell/front-costume.svg",
  15659. extra: 984/856,
  15660. bottom: 87/1071
  15661. }
  15662. },
  15663. backcostume: {
  15664. height: math.unit(7 + 4/12, "feet"),
  15665. weight: math.unit(750, "lb"),
  15666. name: "Back (Costume)",
  15667. image: {
  15668. source: "./media/characters/regena-maxwell/back-costume.svg",
  15669. extra: 981/854,
  15670. bottom: 57/1038
  15671. }
  15672. },
  15673. },
  15674. [
  15675. {
  15676. name: "Normal",
  15677. height: math.unit(7 + 4 / 12, "feet"),
  15678. default: true
  15679. },
  15680. {
  15681. name: "Macro",
  15682. height: math.unit(220, "feet")
  15683. },
  15684. {
  15685. name: "Megamacro",
  15686. height: math.unit(11, "miles")
  15687. },
  15688. ]
  15689. ))
  15690. characterMakers.push(() => makeCharacter(
  15691. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  15692. {
  15693. front: {
  15694. height: math.unit(6, "feet"),
  15695. weight: math.unit(150, "lb"),
  15696. name: "Front",
  15697. image: {
  15698. source: "./media/characters/x-gliding-dragon-x/front.svg",
  15699. extra: 860 / 690,
  15700. bottom: 0.03
  15701. }
  15702. },
  15703. },
  15704. [
  15705. {
  15706. name: "Normal",
  15707. height: math.unit(1.7, "meters"),
  15708. default: true
  15709. },
  15710. ]
  15711. ))
  15712. characterMakers.push(() => makeCharacter(
  15713. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  15714. {
  15715. front: {
  15716. height: math.unit(6, "feet"),
  15717. weight: math.unit(150, "lb"),
  15718. name: "Front",
  15719. image: {
  15720. source: "./media/characters/quilly/front.svg",
  15721. extra: 890 / 776
  15722. }
  15723. },
  15724. },
  15725. [
  15726. {
  15727. name: "Gigamacro",
  15728. height: math.unit(404090, "miles"),
  15729. default: true
  15730. },
  15731. ]
  15732. ))
  15733. characterMakers.push(() => makeCharacter(
  15734. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  15735. {
  15736. front: {
  15737. height: math.unit(7 + 8 / 12, "feet"),
  15738. weight: math.unit(350, "lb"),
  15739. name: "Front",
  15740. image: {
  15741. source: "./media/characters/tempest/front.svg",
  15742. extra: 1175 / 1086,
  15743. bottom: 0.02
  15744. }
  15745. },
  15746. },
  15747. [
  15748. {
  15749. name: "Normal",
  15750. height: math.unit(7 + 8 / 12, "feet"),
  15751. default: true
  15752. },
  15753. ]
  15754. ))
  15755. characterMakers.push(() => makeCharacter(
  15756. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  15757. {
  15758. side: {
  15759. height: math.unit(4 + 5 / 12, "feet"),
  15760. weight: math.unit(80, "lb"),
  15761. name: "Side",
  15762. image: {
  15763. source: "./media/characters/rodger/side.svg",
  15764. extra: 1235 / 1118
  15765. }
  15766. },
  15767. },
  15768. [
  15769. {
  15770. name: "Micro",
  15771. height: math.unit(1, "inch")
  15772. },
  15773. {
  15774. name: "Normal",
  15775. height: math.unit(4 + 5 / 12, "feet"),
  15776. default: true
  15777. },
  15778. {
  15779. name: "Macro",
  15780. height: math.unit(120, "feet")
  15781. },
  15782. ]
  15783. ))
  15784. characterMakers.push(() => makeCharacter(
  15785. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  15786. {
  15787. front: {
  15788. height: math.unit(6, "feet"),
  15789. weight: math.unit(150, "lb"),
  15790. name: "Front",
  15791. image: {
  15792. source: "./media/characters/danyel/front.svg",
  15793. extra: 1185 / 1123,
  15794. bottom: 0.05
  15795. }
  15796. },
  15797. },
  15798. [
  15799. {
  15800. name: "Shrunken",
  15801. height: math.unit(0.5, "mm")
  15802. },
  15803. {
  15804. name: "Micro",
  15805. height: math.unit(1, "mm"),
  15806. default: true
  15807. },
  15808. {
  15809. name: "Upsized",
  15810. height: math.unit(5 + 5 / 12, "feet")
  15811. },
  15812. ]
  15813. ))
  15814. characterMakers.push(() => makeCharacter(
  15815. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  15816. {
  15817. front: {
  15818. height: math.unit(5 + 6 / 12, "feet"),
  15819. weight: math.unit(200, "lb"),
  15820. name: "Front",
  15821. image: {
  15822. source: "./media/characters/vivian-bijoux/front.svg",
  15823. extra: 1217/1209,
  15824. bottom: 76/1293
  15825. }
  15826. },
  15827. back: {
  15828. height: math.unit(5 + 6 / 12, "feet"),
  15829. weight: math.unit(200, "lb"),
  15830. name: "Back",
  15831. image: {
  15832. source: "./media/characters/vivian-bijoux/back.svg",
  15833. extra: 1214/1208,
  15834. bottom: 51/1265
  15835. }
  15836. },
  15837. dressed: {
  15838. height: math.unit(5 + 6 / 12, "feet"),
  15839. weight: math.unit(200, "lb"),
  15840. name: "Dressed",
  15841. image: {
  15842. source: "./media/characters/vivian-bijoux/dressed.svg",
  15843. extra: 1217/1209,
  15844. bottom: 76/1293
  15845. }
  15846. },
  15847. },
  15848. [
  15849. {
  15850. name: "Normal",
  15851. height: math.unit(5 + 6 / 12, "feet"),
  15852. default: true
  15853. },
  15854. {
  15855. name: "Bad Dream",
  15856. height: math.unit(500, "feet")
  15857. },
  15858. {
  15859. name: "Nightmare",
  15860. height: math.unit(500, "miles")
  15861. },
  15862. ]
  15863. ))
  15864. characterMakers.push(() => makeCharacter(
  15865. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  15866. {
  15867. front: {
  15868. height: math.unit(6 + 1 / 12, "feet"),
  15869. weight: math.unit(260, "lb"),
  15870. name: "Front",
  15871. image: {
  15872. source: "./media/characters/zeta/front.svg",
  15873. extra: 1968 / 1889,
  15874. bottom: 0.06
  15875. }
  15876. },
  15877. back: {
  15878. height: math.unit(6 + 1 / 12, "feet"),
  15879. weight: math.unit(260, "lb"),
  15880. name: "Back",
  15881. image: {
  15882. source: "./media/characters/zeta/back.svg",
  15883. extra: 1944 / 1858,
  15884. bottom: 0.03
  15885. }
  15886. },
  15887. hand: {
  15888. height: math.unit(1.112, "feet"),
  15889. name: "Hand",
  15890. image: {
  15891. source: "./media/characters/zeta/hand.svg"
  15892. }
  15893. },
  15894. foot: {
  15895. height: math.unit(1.48, "feet"),
  15896. name: "Foot",
  15897. image: {
  15898. source: "./media/characters/zeta/foot.svg"
  15899. }
  15900. },
  15901. },
  15902. [
  15903. {
  15904. name: "Micro",
  15905. height: math.unit(6, "inches")
  15906. },
  15907. {
  15908. name: "Normal",
  15909. height: math.unit(6 + 1 / 12, "feet"),
  15910. default: true
  15911. },
  15912. {
  15913. name: "Macro",
  15914. height: math.unit(20, "feet")
  15915. },
  15916. ]
  15917. ))
  15918. characterMakers.push(() => makeCharacter(
  15919. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  15920. {
  15921. front: {
  15922. height: math.unit(6, "feet"),
  15923. weight: math.unit(150, "lb"),
  15924. name: "Front",
  15925. image: {
  15926. source: "./media/characters/jamie-larsen/front.svg",
  15927. extra: 962 / 933,
  15928. bottom: 0.02
  15929. }
  15930. },
  15931. back: {
  15932. height: math.unit(6, "feet"),
  15933. weight: math.unit(150, "lb"),
  15934. name: "Back",
  15935. image: {
  15936. source: "./media/characters/jamie-larsen/back.svg",
  15937. extra: 997 / 946
  15938. }
  15939. },
  15940. },
  15941. [
  15942. {
  15943. name: "Macro",
  15944. height: math.unit(28 + 7 / 12, "feet"),
  15945. default: true
  15946. },
  15947. {
  15948. name: "Macro+",
  15949. height: math.unit(180, "feet")
  15950. },
  15951. {
  15952. name: "Megamacro",
  15953. height: math.unit(10, "miles")
  15954. },
  15955. {
  15956. name: "Gigamacro",
  15957. height: math.unit(200000, "miles")
  15958. },
  15959. ]
  15960. ))
  15961. characterMakers.push(() => makeCharacter(
  15962. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15963. {
  15964. front: {
  15965. height: math.unit(6, "feet"),
  15966. weight: math.unit(120, "lb"),
  15967. name: "Front",
  15968. image: {
  15969. source: "./media/characters/vance/front.svg",
  15970. extra: 1980 / 1890,
  15971. bottom: 0.09
  15972. }
  15973. },
  15974. back: {
  15975. height: math.unit(6, "feet"),
  15976. weight: math.unit(120, "lb"),
  15977. name: "Back",
  15978. image: {
  15979. source: "./media/characters/vance/back.svg",
  15980. extra: 2081 / 1994,
  15981. bottom: 0.014
  15982. }
  15983. },
  15984. hand: {
  15985. height: math.unit(0.88, "feet"),
  15986. name: "Hand",
  15987. image: {
  15988. source: "./media/characters/vance/hand.svg"
  15989. }
  15990. },
  15991. foot: {
  15992. height: math.unit(0.64, "feet"),
  15993. name: "Foot",
  15994. image: {
  15995. source: "./media/characters/vance/foot.svg"
  15996. }
  15997. },
  15998. },
  15999. [
  16000. {
  16001. name: "Small",
  16002. height: math.unit(90, "feet"),
  16003. default: true
  16004. },
  16005. {
  16006. name: "Macro",
  16007. height: math.unit(100, "meters")
  16008. },
  16009. {
  16010. name: "Megamacro",
  16011. height: math.unit(15, "miles")
  16012. },
  16013. ]
  16014. ))
  16015. characterMakers.push(() => makeCharacter(
  16016. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  16017. {
  16018. front: {
  16019. height: math.unit(6, "feet"),
  16020. weight: math.unit(180, "lb"),
  16021. name: "Front",
  16022. image: {
  16023. source: "./media/characters/xochitl/front.svg",
  16024. extra: 2297 / 2261,
  16025. bottom: 0.065
  16026. }
  16027. },
  16028. back: {
  16029. height: math.unit(6, "feet"),
  16030. weight: math.unit(180, "lb"),
  16031. name: "Back",
  16032. image: {
  16033. source: "./media/characters/xochitl/back.svg",
  16034. extra: 2386 / 2354,
  16035. bottom: 0.01
  16036. }
  16037. },
  16038. foot: {
  16039. height: math.unit(6 / 5 * 1.15, "feet"),
  16040. weight: math.unit(150, "lb"),
  16041. name: "Foot",
  16042. image: {
  16043. source: "./media/characters/xochitl/foot.svg"
  16044. }
  16045. },
  16046. },
  16047. [
  16048. {
  16049. name: "Macro",
  16050. height: math.unit(80, "feet")
  16051. },
  16052. {
  16053. name: "Macro+",
  16054. height: math.unit(400, "feet"),
  16055. default: true
  16056. },
  16057. {
  16058. name: "Gigamacro",
  16059. height: math.unit(80000, "miles")
  16060. },
  16061. {
  16062. name: "Gigamacro+",
  16063. height: math.unit(400000, "miles")
  16064. },
  16065. {
  16066. name: "Teramacro",
  16067. height: math.unit(300, "AU")
  16068. },
  16069. ]
  16070. ))
  16071. characterMakers.push(() => makeCharacter(
  16072. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  16073. {
  16074. front: {
  16075. height: math.unit(6, "feet"),
  16076. weight: math.unit(150, "lb"),
  16077. name: "Front",
  16078. image: {
  16079. source: "./media/characters/vincent/front.svg",
  16080. extra: 1130 / 1080,
  16081. bottom: 0.055
  16082. }
  16083. },
  16084. beak: {
  16085. height: math.unit(6 * 0.1, "feet"),
  16086. name: "Beak",
  16087. image: {
  16088. source: "./media/characters/vincent/beak.svg"
  16089. }
  16090. },
  16091. hand: {
  16092. height: math.unit(6 * 0.85, "feet"),
  16093. weight: math.unit(150, "lb"),
  16094. name: "Hand",
  16095. image: {
  16096. source: "./media/characters/vincent/hand.svg"
  16097. }
  16098. },
  16099. foot: {
  16100. height: math.unit(6 * 0.19, "feet"),
  16101. weight: math.unit(150, "lb"),
  16102. name: "Foot",
  16103. image: {
  16104. source: "./media/characters/vincent/foot.svg"
  16105. }
  16106. },
  16107. },
  16108. [
  16109. {
  16110. name: "Base",
  16111. height: math.unit(6 + 5 / 12, "feet"),
  16112. default: true
  16113. },
  16114. {
  16115. name: "Macro",
  16116. height: math.unit(300, "feet")
  16117. },
  16118. {
  16119. name: "Megamacro",
  16120. height: math.unit(2, "miles")
  16121. },
  16122. {
  16123. name: "Gigamacro",
  16124. height: math.unit(1000, "miles")
  16125. },
  16126. ]
  16127. ))
  16128. characterMakers.push(() => makeCharacter(
  16129. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  16130. {
  16131. front: {
  16132. height: math.unit(2, "meters"),
  16133. weight: math.unit(500, "kg"),
  16134. name: "Front",
  16135. image: {
  16136. source: "./media/characters/coatl/front.svg",
  16137. extra: 3948 / 3500,
  16138. bottom: 0.082
  16139. }
  16140. },
  16141. },
  16142. [
  16143. {
  16144. name: "Normal",
  16145. height: math.unit(4, "meters")
  16146. },
  16147. {
  16148. name: "Macro",
  16149. height: math.unit(100, "meters"),
  16150. default: true
  16151. },
  16152. {
  16153. name: "Macro+",
  16154. height: math.unit(300, "meters")
  16155. },
  16156. {
  16157. name: "Megamacro",
  16158. height: math.unit(3, "gigameters")
  16159. },
  16160. {
  16161. name: "Megamacro+",
  16162. height: math.unit(300, "terameters")
  16163. },
  16164. {
  16165. name: "Megamacro++",
  16166. height: math.unit(3, "lightyears")
  16167. },
  16168. ]
  16169. ))
  16170. characterMakers.push(() => makeCharacter(
  16171. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  16172. {
  16173. front: {
  16174. height: math.unit(6, "feet"),
  16175. weight: math.unit(50, "kg"),
  16176. name: "front",
  16177. image: {
  16178. source: "./media/characters/shiroryu/front.svg",
  16179. extra: 1990 / 1935
  16180. }
  16181. },
  16182. },
  16183. [
  16184. {
  16185. name: "Mortal Mingling",
  16186. height: math.unit(3, "meters")
  16187. },
  16188. {
  16189. name: "Kaiju-ish",
  16190. height: math.unit(250, "meters")
  16191. },
  16192. {
  16193. name: "Somewhat Godly",
  16194. height: math.unit(400, "km"),
  16195. default: true
  16196. },
  16197. {
  16198. name: "Planetary",
  16199. height: math.unit(300, "megameters")
  16200. },
  16201. {
  16202. name: "Galaxy-dwarfing",
  16203. height: math.unit(450, "kiloparsecs")
  16204. },
  16205. {
  16206. name: "Universe Eater",
  16207. height: math.unit(150, "gigaparsecs")
  16208. },
  16209. {
  16210. name: "Almost Immeasurable",
  16211. height: math.unit(1.3e266, "yottaparsecs")
  16212. },
  16213. ]
  16214. ))
  16215. characterMakers.push(() => makeCharacter(
  16216. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  16217. {
  16218. front: {
  16219. height: math.unit(6, "feet"),
  16220. weight: math.unit(150, "lb"),
  16221. name: "Front",
  16222. image: {
  16223. source: "./media/characters/umeko/front.svg",
  16224. extra: 1,
  16225. bottom: 0.019
  16226. }
  16227. },
  16228. frontArmored: {
  16229. height: math.unit(6, "feet"),
  16230. weight: math.unit(150, "lb"),
  16231. name: "Front (Armored)",
  16232. image: {
  16233. source: "./media/characters/umeko/front-armored.svg",
  16234. extra: 1,
  16235. bottom: 0.021
  16236. }
  16237. },
  16238. },
  16239. [
  16240. {
  16241. name: "Macro",
  16242. height: math.unit(220, "feet"),
  16243. default: true
  16244. },
  16245. {
  16246. name: "Guardian Dragon",
  16247. height: math.unit(50, "miles")
  16248. },
  16249. {
  16250. name: "Cosmic",
  16251. height: math.unit(800000, "miles")
  16252. },
  16253. ]
  16254. ))
  16255. characterMakers.push(() => makeCharacter(
  16256. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  16257. {
  16258. front: {
  16259. height: math.unit(6, "feet"),
  16260. weight: math.unit(150, "lb"),
  16261. name: "Front",
  16262. image: {
  16263. source: "./media/characters/cassidy/front.svg",
  16264. extra: 810/808,
  16265. bottom: 41/851
  16266. }
  16267. },
  16268. },
  16269. [
  16270. {
  16271. name: "Canon Height",
  16272. height: math.unit(120, "feet"),
  16273. default: true
  16274. },
  16275. {
  16276. name: "Macro+",
  16277. height: math.unit(400, "feet")
  16278. },
  16279. {
  16280. name: "Macro++",
  16281. height: math.unit(4000, "feet")
  16282. },
  16283. {
  16284. name: "Megamacro",
  16285. height: math.unit(3, "miles")
  16286. },
  16287. ]
  16288. ))
  16289. characterMakers.push(() => makeCharacter(
  16290. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  16291. {
  16292. front: {
  16293. height: math.unit(6, "feet"),
  16294. weight: math.unit(150, "lb"),
  16295. name: "Front",
  16296. image: {
  16297. source: "./media/characters/isaac/front.svg",
  16298. extra: 896 / 815,
  16299. bottom: 0.11
  16300. }
  16301. },
  16302. },
  16303. [
  16304. {
  16305. name: "Human Size",
  16306. height: math.unit(8, "feet"),
  16307. default: true
  16308. },
  16309. {
  16310. name: "Macro",
  16311. height: math.unit(400, "feet")
  16312. },
  16313. {
  16314. name: "Megamacro",
  16315. height: math.unit(50, "miles")
  16316. },
  16317. {
  16318. name: "Canon Height",
  16319. height: math.unit(200, "AU")
  16320. },
  16321. ]
  16322. ))
  16323. characterMakers.push(() => makeCharacter(
  16324. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  16325. {
  16326. front: {
  16327. height: math.unit(6, "feet"),
  16328. weight: math.unit(72, "kg"),
  16329. name: "Front",
  16330. image: {
  16331. source: "./media/characters/sleekit/front.svg",
  16332. extra: 4693 / 4487,
  16333. bottom: 0.012
  16334. }
  16335. },
  16336. },
  16337. [
  16338. {
  16339. name: "Minimum Height",
  16340. height: math.unit(10, "meters")
  16341. },
  16342. {
  16343. name: "Smaller",
  16344. height: math.unit(25, "meters")
  16345. },
  16346. {
  16347. name: "Larger",
  16348. height: math.unit(38, "meters"),
  16349. default: true
  16350. },
  16351. {
  16352. name: "Maximum height",
  16353. height: math.unit(100, "meters")
  16354. },
  16355. ]
  16356. ))
  16357. characterMakers.push(() => makeCharacter(
  16358. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  16359. {
  16360. front: {
  16361. height: math.unit(6, "feet"),
  16362. weight: math.unit(150, "lb"),
  16363. name: "Front",
  16364. image: {
  16365. source: "./media/characters/nillia/front.svg",
  16366. extra: 719/665,
  16367. bottom: 6/725
  16368. }
  16369. },
  16370. back: {
  16371. height: math.unit(6, "feet"),
  16372. weight: math.unit(150, "lb"),
  16373. name: "Back",
  16374. image: {
  16375. source: "./media/characters/nillia/back.svg",
  16376. extra: 705/651,
  16377. bottom: 5/710
  16378. }
  16379. },
  16380. },
  16381. [
  16382. {
  16383. name: "Canon Height",
  16384. height: math.unit(489, "feet"),
  16385. default: true
  16386. }
  16387. ]
  16388. ))
  16389. characterMakers.push(() => makeCharacter(
  16390. { name: "Mesmyriza", species: ["shark", "dragon", "robot", "deity"], tags: ["anthro"] },
  16391. {
  16392. front: {
  16393. height: math.unit(6, "feet"),
  16394. weight: math.unit(150, "lb"),
  16395. name: "Front",
  16396. image: {
  16397. source: "./media/characters/mesmyriza/front.svg",
  16398. extra: 1541/1291,
  16399. bottom: 87/1628
  16400. }
  16401. },
  16402. foot: {
  16403. height: math.unit(6 / (250 / 35), "feet"),
  16404. name: "Foot",
  16405. image: {
  16406. source: "./media/characters/mesmyriza/foot.svg"
  16407. }
  16408. },
  16409. },
  16410. [
  16411. {
  16412. name: "Macro",
  16413. height: math.unit(457, "meters"),
  16414. default: true
  16415. },
  16416. {
  16417. name: "Megamacro",
  16418. height: math.unit(8, "megameters")
  16419. },
  16420. ]
  16421. ))
  16422. characterMakers.push(() => makeCharacter(
  16423. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  16424. {
  16425. front: {
  16426. height: math.unit(6, "feet"),
  16427. weight: math.unit(250, "lb"),
  16428. name: "Front",
  16429. image: {
  16430. source: "./media/characters/saudade/front.svg",
  16431. extra: 1172 / 1139,
  16432. bottom: 0.035
  16433. }
  16434. },
  16435. },
  16436. [
  16437. {
  16438. name: "Micro",
  16439. height: math.unit(3, "inches")
  16440. },
  16441. {
  16442. name: "Normal",
  16443. height: math.unit(6, "feet"),
  16444. default: true
  16445. },
  16446. {
  16447. name: "Macro",
  16448. height: math.unit(50, "feet")
  16449. },
  16450. {
  16451. name: "Megamacro",
  16452. height: math.unit(2800, "feet")
  16453. },
  16454. ]
  16455. ))
  16456. characterMakers.push(() => makeCharacter(
  16457. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  16458. {
  16459. front: {
  16460. height: math.unit(5 + 4 / 12, "feet"),
  16461. weight: math.unit(100, "lb"),
  16462. name: "Front",
  16463. image: {
  16464. source: "./media/characters/keireer/front.svg",
  16465. extra: 716 / 666,
  16466. bottom: 0.05
  16467. }
  16468. },
  16469. },
  16470. [
  16471. {
  16472. name: "Normal",
  16473. height: math.unit(5 + 4 / 12, "feet"),
  16474. default: true
  16475. },
  16476. ]
  16477. ))
  16478. characterMakers.push(() => makeCharacter(
  16479. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  16480. {
  16481. front: {
  16482. height: math.unit(5.5, "feet"),
  16483. weight: math.unit(90, "kg"),
  16484. name: "Front",
  16485. image: {
  16486. source: "./media/characters/mirja/front.svg",
  16487. extra: 1452/1262,
  16488. bottom: 67/1519
  16489. }
  16490. },
  16491. frontDressed: {
  16492. height: math.unit(5.5, "feet"),
  16493. weight: math.unit(90, "lb"),
  16494. name: "Front (Dressed)",
  16495. image: {
  16496. source: "./media/characters/mirja/dressed.svg",
  16497. extra: 1452/1262,
  16498. bottom: 67/1519
  16499. }
  16500. },
  16501. back: {
  16502. height: math.unit(6, "feet"),
  16503. weight: math.unit(90, "lb"),
  16504. name: "Back",
  16505. image: {
  16506. source: "./media/characters/mirja/back.svg",
  16507. extra: 1892/1795,
  16508. bottom: 48/1940
  16509. }
  16510. },
  16511. maw: {
  16512. height: math.unit(1.312, "feet"),
  16513. name: "Maw",
  16514. image: {
  16515. source: "./media/characters/mirja/maw.svg"
  16516. }
  16517. },
  16518. paw: {
  16519. height: math.unit(1.15, "feet"),
  16520. name: "Paw",
  16521. image: {
  16522. source: "./media/characters/mirja/paw.svg"
  16523. }
  16524. },
  16525. },
  16526. [
  16527. {
  16528. name: "\"Incognito\"",
  16529. height: math.unit(3, "meters")
  16530. },
  16531. {
  16532. name: "Strolling Size",
  16533. height: math.unit(15, "km")
  16534. },
  16535. {
  16536. name: "Larger Strolling Size",
  16537. height: math.unit(400, "km")
  16538. },
  16539. {
  16540. name: "Preferred Size",
  16541. height: math.unit(5000, "km"),
  16542. default: true
  16543. },
  16544. {
  16545. name: "True Size",
  16546. height: math.unit(30657809462086840000000000000000, "parsecs"),
  16547. },
  16548. ]
  16549. ))
  16550. characterMakers.push(() => makeCharacter(
  16551. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  16552. {
  16553. front: {
  16554. height: math.unit(15, "feet"),
  16555. weight: math.unit(880, "kg"),
  16556. name: "Front",
  16557. image: {
  16558. source: "./media/characters/nightraver/front.svg",
  16559. extra: 2444 / 2160,
  16560. bottom: 0.027
  16561. }
  16562. },
  16563. back: {
  16564. height: math.unit(15, "feet"),
  16565. weight: math.unit(880, "kg"),
  16566. name: "Back",
  16567. image: {
  16568. source: "./media/characters/nightraver/back.svg",
  16569. extra: 2309 / 2180,
  16570. bottom: 0.005
  16571. }
  16572. },
  16573. sole: {
  16574. height: math.unit(2.878, "feet"),
  16575. name: "Sole",
  16576. image: {
  16577. source: "./media/characters/nightraver/sole.svg"
  16578. }
  16579. },
  16580. foot: {
  16581. height: math.unit(2.285, "feet"),
  16582. name: "Foot",
  16583. image: {
  16584. source: "./media/characters/nightraver/foot.svg"
  16585. }
  16586. },
  16587. maw: {
  16588. height: math.unit(2.67, "feet"),
  16589. name: "Maw",
  16590. image: {
  16591. source: "./media/characters/nightraver/maw.svg"
  16592. }
  16593. },
  16594. },
  16595. [
  16596. {
  16597. name: "Micro",
  16598. height: math.unit(1, "cm")
  16599. },
  16600. {
  16601. name: "Normal",
  16602. height: math.unit(15, "feet"),
  16603. default: true
  16604. },
  16605. {
  16606. name: "Macro",
  16607. height: math.unit(300, "feet")
  16608. },
  16609. {
  16610. name: "Megamacro",
  16611. height: math.unit(300, "miles")
  16612. },
  16613. {
  16614. name: "Gigamacro",
  16615. height: math.unit(10000, "miles")
  16616. },
  16617. ]
  16618. ))
  16619. characterMakers.push(() => makeCharacter(
  16620. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  16621. {
  16622. side: {
  16623. height: math.unit(2, "inches"),
  16624. weight: math.unit(5, "grams"),
  16625. name: "Side",
  16626. image: {
  16627. source: "./media/characters/arc/side.svg"
  16628. }
  16629. },
  16630. },
  16631. [
  16632. {
  16633. name: "Micro",
  16634. height: math.unit(2, "inches"),
  16635. default: true
  16636. },
  16637. ]
  16638. ))
  16639. characterMakers.push(() => makeCharacter(
  16640. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  16641. {
  16642. front: {
  16643. height: math.unit(1.1938, "meters"),
  16644. weight: math.unit(54, "kg"),
  16645. name: "Front",
  16646. image: {
  16647. source: "./media/characters/nebula-shahar/front.svg",
  16648. extra: 1642 / 1436,
  16649. bottom: 0.06
  16650. }
  16651. },
  16652. },
  16653. [
  16654. {
  16655. name: "Megamicro",
  16656. height: math.unit(0.3, "mm")
  16657. },
  16658. {
  16659. name: "Micro",
  16660. height: math.unit(3, "cm")
  16661. },
  16662. {
  16663. name: "Normal",
  16664. height: math.unit(138, "cm"),
  16665. default: true
  16666. },
  16667. {
  16668. name: "Macro",
  16669. height: math.unit(30, "m")
  16670. },
  16671. ]
  16672. ))
  16673. characterMakers.push(() => makeCharacter(
  16674. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  16675. {
  16676. front: {
  16677. height: math.unit(5.24, "feet"),
  16678. weight: math.unit(150, "lb"),
  16679. name: "Front",
  16680. image: {
  16681. source: "./media/characters/shayla/front.svg",
  16682. extra: 1512 / 1414,
  16683. bottom: 0.01
  16684. }
  16685. },
  16686. back: {
  16687. height: math.unit(5.24, "feet"),
  16688. weight: math.unit(150, "lb"),
  16689. name: "Back",
  16690. image: {
  16691. source: "./media/characters/shayla/back.svg",
  16692. extra: 1512 / 1414
  16693. }
  16694. },
  16695. hand: {
  16696. height: math.unit(0.7781496062992126, "feet"),
  16697. name: "Hand",
  16698. image: {
  16699. source: "./media/characters/shayla/hand.svg"
  16700. }
  16701. },
  16702. foot: {
  16703. height: math.unit(1.4206036745406823, "feet"),
  16704. name: "Foot",
  16705. image: {
  16706. source: "./media/characters/shayla/foot.svg"
  16707. }
  16708. },
  16709. },
  16710. [
  16711. {
  16712. name: "Micro",
  16713. height: math.unit(0.32, "feet")
  16714. },
  16715. {
  16716. name: "Normal",
  16717. height: math.unit(5.24, "feet"),
  16718. default: true
  16719. },
  16720. {
  16721. name: "Macro",
  16722. height: math.unit(492.12, "feet")
  16723. },
  16724. {
  16725. name: "Megamacro",
  16726. height: math.unit(186.41, "miles")
  16727. },
  16728. ]
  16729. ))
  16730. characterMakers.push(() => makeCharacter(
  16731. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  16732. {
  16733. front: {
  16734. height: math.unit(2.2, "m"),
  16735. weight: math.unit(120, "kg"),
  16736. name: "Front",
  16737. image: {
  16738. source: "./media/characters/pia-jr/front.svg",
  16739. extra: 1000 / 970,
  16740. bottom: 0.035
  16741. }
  16742. },
  16743. hand: {
  16744. height: math.unit(0.759 * 7.21 / 6, "feet"),
  16745. name: "Hand",
  16746. image: {
  16747. source: "./media/characters/pia-jr/hand.svg"
  16748. }
  16749. },
  16750. paw: {
  16751. height: math.unit(1.185 * 7.21 / 6, "feet"),
  16752. name: "Paw",
  16753. image: {
  16754. source: "./media/characters/pia-jr/paw.svg"
  16755. }
  16756. },
  16757. },
  16758. [
  16759. {
  16760. name: "Micro",
  16761. height: math.unit(1.2, "cm")
  16762. },
  16763. {
  16764. name: "Normal",
  16765. height: math.unit(2.2, "m"),
  16766. default: true
  16767. },
  16768. {
  16769. name: "Macro",
  16770. height: math.unit(180, "m")
  16771. },
  16772. {
  16773. name: "Megamacro",
  16774. height: math.unit(420, "km")
  16775. },
  16776. ]
  16777. ))
  16778. characterMakers.push(() => makeCharacter(
  16779. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  16780. {
  16781. front: {
  16782. height: math.unit(2, "m"),
  16783. weight: math.unit(115, "kg"),
  16784. name: "Front",
  16785. image: {
  16786. source: "./media/characters/pia-sr/front.svg",
  16787. extra: 760 / 730,
  16788. bottom: 0.015
  16789. }
  16790. },
  16791. back: {
  16792. height: math.unit(2, "m"),
  16793. weight: math.unit(115, "kg"),
  16794. name: "Back",
  16795. image: {
  16796. source: "./media/characters/pia-sr/back.svg",
  16797. extra: 760 / 730,
  16798. bottom: 0.01
  16799. }
  16800. },
  16801. hand: {
  16802. height: math.unit(0.89 * 6.56 / 6, "feet"),
  16803. name: "Hand",
  16804. image: {
  16805. source: "./media/characters/pia-sr/hand.svg"
  16806. }
  16807. },
  16808. foot: {
  16809. height: math.unit(1.83, "feet"),
  16810. name: "Foot",
  16811. image: {
  16812. source: "./media/characters/pia-sr/foot.svg"
  16813. }
  16814. },
  16815. },
  16816. [
  16817. {
  16818. name: "Micro",
  16819. height: math.unit(88, "mm")
  16820. },
  16821. {
  16822. name: "Normal",
  16823. height: math.unit(2, "m"),
  16824. default: true
  16825. },
  16826. {
  16827. name: "Macro",
  16828. height: math.unit(200, "m")
  16829. },
  16830. {
  16831. name: "Megamacro",
  16832. height: math.unit(420, "km")
  16833. },
  16834. ]
  16835. ))
  16836. characterMakers.push(() => makeCharacter(
  16837. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  16838. {
  16839. front: {
  16840. height: math.unit(8 + 2 / 12, "feet"),
  16841. weight: math.unit(300, "lb"),
  16842. name: "Front",
  16843. image: {
  16844. source: "./media/characters/kibibyte/front.svg",
  16845. extra: 2221 / 2098,
  16846. bottom: 0.04
  16847. }
  16848. },
  16849. },
  16850. [
  16851. {
  16852. name: "Normal",
  16853. height: math.unit(8 + 2 / 12, "feet"),
  16854. default: true
  16855. },
  16856. {
  16857. name: "Socialable Macro",
  16858. height: math.unit(50, "feet")
  16859. },
  16860. {
  16861. name: "Macro",
  16862. height: math.unit(300, "feet")
  16863. },
  16864. {
  16865. name: "Megamacro",
  16866. height: math.unit(500, "miles")
  16867. },
  16868. ]
  16869. ))
  16870. characterMakers.push(() => makeCharacter(
  16871. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  16872. {
  16873. front: {
  16874. height: math.unit(6, "feet"),
  16875. weight: math.unit(150, "lb"),
  16876. name: "Front",
  16877. image: {
  16878. source: "./media/characters/felix/front.svg",
  16879. extra: 762 / 722,
  16880. bottom: 0.02
  16881. }
  16882. },
  16883. frontClothed: {
  16884. height: math.unit(6, "feet"),
  16885. weight: math.unit(150, "lb"),
  16886. name: "Front (Clothed)",
  16887. image: {
  16888. source: "./media/characters/felix/front-clothed.svg",
  16889. extra: 762 / 722,
  16890. bottom: 0.02
  16891. }
  16892. },
  16893. },
  16894. [
  16895. {
  16896. name: "Normal",
  16897. height: math.unit(6 + 8 / 12, "feet"),
  16898. default: true
  16899. },
  16900. {
  16901. name: "Macro",
  16902. height: math.unit(2600, "feet")
  16903. },
  16904. {
  16905. name: "Megamacro",
  16906. height: math.unit(450, "miles")
  16907. },
  16908. ]
  16909. ))
  16910. characterMakers.push(() => makeCharacter(
  16911. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  16912. {
  16913. front: {
  16914. height: math.unit(6 + 1 / 12, "feet"),
  16915. weight: math.unit(250, "lb"),
  16916. name: "Front",
  16917. image: {
  16918. source: "./media/characters/tobo/front.svg",
  16919. extra: 608 / 586,
  16920. bottom: 0.023
  16921. }
  16922. },
  16923. back: {
  16924. height: math.unit(6 + 1 / 12, "feet"),
  16925. weight: math.unit(250, "lb"),
  16926. name: "Back",
  16927. image: {
  16928. source: "./media/characters/tobo/back.svg",
  16929. extra: 608 / 586
  16930. }
  16931. },
  16932. },
  16933. [
  16934. {
  16935. name: "Nano",
  16936. height: math.unit(2, "nm")
  16937. },
  16938. {
  16939. name: "Megamicro",
  16940. height: math.unit(0.1, "mm")
  16941. },
  16942. {
  16943. name: "Micro",
  16944. height: math.unit(1, "inch"),
  16945. default: true
  16946. },
  16947. {
  16948. name: "Human-sized",
  16949. height: math.unit(6 + 1 / 12, "feet")
  16950. },
  16951. {
  16952. name: "Macro",
  16953. height: math.unit(250, "feet")
  16954. },
  16955. {
  16956. name: "Megamacro",
  16957. height: math.unit(75, "miles")
  16958. },
  16959. {
  16960. name: "Texas-sized",
  16961. height: math.unit(750, "miles")
  16962. },
  16963. {
  16964. name: "Teramacro",
  16965. height: math.unit(50000, "miles")
  16966. },
  16967. ]
  16968. ))
  16969. characterMakers.push(() => makeCharacter(
  16970. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  16971. {
  16972. front: {
  16973. height: math.unit(6, "feet"),
  16974. weight: math.unit(269, "lb"),
  16975. name: "Front",
  16976. image: {
  16977. source: "./media/characters/danny-kapowsky/front.svg",
  16978. extra: 766 / 736,
  16979. bottom: 0.044
  16980. }
  16981. },
  16982. back: {
  16983. height: math.unit(6, "feet"),
  16984. weight: math.unit(269, "lb"),
  16985. name: "Back",
  16986. image: {
  16987. source: "./media/characters/danny-kapowsky/back.svg",
  16988. extra: 797 / 760,
  16989. bottom: 0.025
  16990. }
  16991. },
  16992. },
  16993. [
  16994. {
  16995. name: "Macro",
  16996. height: math.unit(150, "feet"),
  16997. default: true
  16998. },
  16999. {
  17000. name: "Macro+",
  17001. height: math.unit(200, "feet")
  17002. },
  17003. {
  17004. name: "Macro++",
  17005. height: math.unit(300, "feet")
  17006. },
  17007. {
  17008. name: "Macro+++",
  17009. height: math.unit(400, "feet")
  17010. },
  17011. ]
  17012. ))
  17013. characterMakers.push(() => makeCharacter(
  17014. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  17015. {
  17016. side: {
  17017. height: math.unit(6, "feet"),
  17018. weight: math.unit(170, "lb"),
  17019. name: "Side",
  17020. image: {
  17021. source: "./media/characters/finn/side.svg",
  17022. extra: 1953 / 1807,
  17023. bottom: 0.057
  17024. }
  17025. },
  17026. },
  17027. [
  17028. {
  17029. name: "Megamacro",
  17030. height: math.unit(14445, "feet"),
  17031. default: true
  17032. },
  17033. ]
  17034. ))
  17035. characterMakers.push(() => makeCharacter(
  17036. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  17037. {
  17038. front: {
  17039. height: math.unit(5 + 6 / 12, "feet"),
  17040. weight: math.unit(125, "lb"),
  17041. name: "Front",
  17042. image: {
  17043. source: "./media/characters/roy/front.svg",
  17044. extra: 1,
  17045. bottom: 0.11
  17046. }
  17047. },
  17048. },
  17049. [
  17050. {
  17051. name: "Micro",
  17052. height: math.unit(3, "inches"),
  17053. default: true
  17054. },
  17055. {
  17056. name: "Normal",
  17057. height: math.unit(5 + 6 / 12, "feet")
  17058. },
  17059. {
  17060. name: "Lesser Macro",
  17061. height: math.unit(60, "feet")
  17062. },
  17063. {
  17064. name: "Greater Macro",
  17065. height: math.unit(120, "feet")
  17066. },
  17067. ]
  17068. ))
  17069. characterMakers.push(() => makeCharacter(
  17070. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  17071. {
  17072. front: {
  17073. height: math.unit(6, "feet"),
  17074. weight: math.unit(100, "lb"),
  17075. name: "Front",
  17076. image: {
  17077. source: "./media/characters/aevsivs/front.svg",
  17078. extra: 1,
  17079. bottom: 0.03
  17080. }
  17081. },
  17082. back: {
  17083. height: math.unit(6, "feet"),
  17084. weight: math.unit(100, "lb"),
  17085. name: "Back",
  17086. image: {
  17087. source: "./media/characters/aevsivs/back.svg"
  17088. }
  17089. },
  17090. },
  17091. [
  17092. {
  17093. name: "Micro",
  17094. height: math.unit(2, "inches"),
  17095. default: true
  17096. },
  17097. {
  17098. name: "Normal",
  17099. height: math.unit(5, "feet")
  17100. },
  17101. ]
  17102. ))
  17103. characterMakers.push(() => makeCharacter(
  17104. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  17105. {
  17106. front: {
  17107. height: math.unit(5 + 7 / 12, "feet"),
  17108. weight: math.unit(159, "lb"),
  17109. name: "Front",
  17110. image: {
  17111. source: "./media/characters/hildegard/front.svg",
  17112. extra: 289 / 269,
  17113. bottom: 7.63 / 297.8
  17114. }
  17115. },
  17116. back: {
  17117. height: math.unit(5 + 7 / 12, "feet"),
  17118. weight: math.unit(159, "lb"),
  17119. name: "Back",
  17120. image: {
  17121. source: "./media/characters/hildegard/back.svg",
  17122. extra: 280 / 260,
  17123. bottom: 2.3 / 282
  17124. }
  17125. },
  17126. },
  17127. [
  17128. {
  17129. name: "Normal",
  17130. height: math.unit(5 + 7 / 12, "feet"),
  17131. default: true
  17132. },
  17133. ]
  17134. ))
  17135. characterMakers.push(() => makeCharacter(
  17136. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  17137. {
  17138. bernard: {
  17139. height: math.unit(2 + 7 / 12, "feet"),
  17140. weight: math.unit(66, "lb"),
  17141. name: "Bernard",
  17142. rename: true,
  17143. image: {
  17144. source: "./media/characters/bernard-wilder/bernard.svg",
  17145. extra: 192 / 128,
  17146. bottom: 0.05
  17147. }
  17148. },
  17149. wilder: {
  17150. height: math.unit(5 + 8 / 12, "feet"),
  17151. weight: math.unit(143, "lb"),
  17152. name: "Wilder",
  17153. rename: true,
  17154. image: {
  17155. source: "./media/characters/bernard-wilder/wilder.svg",
  17156. extra: 361 / 312,
  17157. bottom: 0.02
  17158. }
  17159. },
  17160. },
  17161. [
  17162. {
  17163. name: "Normal",
  17164. height: math.unit(2 + 7 / 12, "feet"),
  17165. default: true
  17166. },
  17167. ]
  17168. ))
  17169. characterMakers.push(() => makeCharacter(
  17170. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  17171. {
  17172. anthro: {
  17173. height: math.unit(6 + 1 / 12, "feet"),
  17174. weight: math.unit(155, "lb"),
  17175. name: "Anthro",
  17176. image: {
  17177. source: "./media/characters/hearth/anthro.svg",
  17178. extra: 1178/1136,
  17179. bottom: 28/1206
  17180. }
  17181. },
  17182. feral: {
  17183. height: math.unit(3.78, "feet"),
  17184. weight: math.unit(35, "kg"),
  17185. name: "Feral",
  17186. image: {
  17187. source: "./media/characters/hearth/feral.svg",
  17188. extra: 153 / 135,
  17189. bottom: 0.03
  17190. }
  17191. },
  17192. },
  17193. [
  17194. {
  17195. name: "Normal",
  17196. height: math.unit(6 + 1 / 12, "feet"),
  17197. default: true
  17198. },
  17199. ]
  17200. ))
  17201. characterMakers.push(() => makeCharacter(
  17202. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  17203. {
  17204. front: {
  17205. height: math.unit(6, "feet"),
  17206. weight: math.unit(182, "lb"),
  17207. name: "Front",
  17208. image: {
  17209. source: "./media/characters/ingrid/front.svg",
  17210. extra: 294 / 268,
  17211. bottom: 0.027
  17212. }
  17213. },
  17214. },
  17215. [
  17216. {
  17217. name: "Normal",
  17218. height: math.unit(6, "feet"),
  17219. default: true
  17220. },
  17221. ]
  17222. ))
  17223. characterMakers.push(() => makeCharacter(
  17224. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  17225. {
  17226. eevee: {
  17227. height: math.unit(2 + 10 / 12, "feet"),
  17228. weight: math.unit(86, "lb"),
  17229. name: "Malgam",
  17230. image: {
  17231. source: "./media/characters/malgam/eevee.svg",
  17232. extra: 952/784,
  17233. bottom: 38/990
  17234. }
  17235. },
  17236. sylveon: {
  17237. height: math.unit(4, "feet"),
  17238. weight: math.unit(101, "lb"),
  17239. name: "Future Malgam",
  17240. rename: true,
  17241. image: {
  17242. source: "./media/characters/malgam/sylveon.svg",
  17243. extra: 371 / 325,
  17244. bottom: 0.015
  17245. }
  17246. },
  17247. gigantamax: {
  17248. height: math.unit(50, "feet"),
  17249. name: "Gigantamax Malgam",
  17250. rename: true,
  17251. image: {
  17252. source: "./media/characters/malgam/gigantamax.svg"
  17253. }
  17254. },
  17255. },
  17256. [
  17257. {
  17258. name: "Normal",
  17259. height: math.unit(2 + 10 / 12, "feet"),
  17260. default: true
  17261. },
  17262. ]
  17263. ))
  17264. characterMakers.push(() => makeCharacter(
  17265. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  17266. {
  17267. front: {
  17268. height: math.unit(5 + 11 / 12, "feet"),
  17269. weight: math.unit(188, "lb"),
  17270. name: "Front",
  17271. image: {
  17272. source: "./media/characters/fleur/front.svg",
  17273. extra: 309 / 283,
  17274. bottom: 0.007
  17275. }
  17276. },
  17277. },
  17278. [
  17279. {
  17280. name: "Normal",
  17281. height: math.unit(5 + 11 / 12, "feet"),
  17282. default: true
  17283. },
  17284. ]
  17285. ))
  17286. characterMakers.push(() => makeCharacter(
  17287. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  17288. {
  17289. front: {
  17290. height: math.unit(5 + 4 / 12, "feet"),
  17291. weight: math.unit(122, "lb"),
  17292. name: "Front",
  17293. image: {
  17294. source: "./media/characters/jude/front.svg",
  17295. extra: 288 / 273,
  17296. bottom: 0.03
  17297. }
  17298. },
  17299. },
  17300. [
  17301. {
  17302. name: "Normal",
  17303. height: math.unit(5 + 4 / 12, "feet"),
  17304. default: true
  17305. },
  17306. ]
  17307. ))
  17308. characterMakers.push(() => makeCharacter(
  17309. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  17310. {
  17311. front: {
  17312. height: math.unit(5 + 11 / 12, "feet"),
  17313. weight: math.unit(190, "lb"),
  17314. name: "Front",
  17315. image: {
  17316. source: "./media/characters/seara/front.svg",
  17317. extra: 1,
  17318. bottom: 0.05
  17319. }
  17320. },
  17321. },
  17322. [
  17323. {
  17324. name: "Normal",
  17325. height: math.unit(5 + 11 / 12, "feet"),
  17326. default: true
  17327. },
  17328. ]
  17329. ))
  17330. characterMakers.push(() => makeCharacter(
  17331. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  17332. {
  17333. front: {
  17334. height: math.unit(16 + 5 / 12, "feet"),
  17335. weight: math.unit(524, "lb"),
  17336. name: "Front",
  17337. image: {
  17338. source: "./media/characters/caspian-lugia/front.svg",
  17339. extra: 1,
  17340. bottom: 0.04
  17341. }
  17342. },
  17343. },
  17344. [
  17345. {
  17346. name: "Normal",
  17347. height: math.unit(16 + 5 / 12, "feet"),
  17348. default: true
  17349. },
  17350. ]
  17351. ))
  17352. characterMakers.push(() => makeCharacter(
  17353. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  17354. {
  17355. front: {
  17356. height: math.unit(5 + 7 / 12, "feet"),
  17357. weight: math.unit(170, "lb"),
  17358. name: "Front",
  17359. image: {
  17360. source: "./media/characters/mika/front.svg",
  17361. extra: 1,
  17362. bottom: 0.016
  17363. }
  17364. },
  17365. },
  17366. [
  17367. {
  17368. name: "Normal",
  17369. height: math.unit(5 + 7 / 12, "feet"),
  17370. default: true
  17371. },
  17372. ]
  17373. ))
  17374. characterMakers.push(() => makeCharacter(
  17375. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  17376. {
  17377. front: {
  17378. height: math.unit(6 + 2 / 12, "feet"),
  17379. weight: math.unit(268, "lb"),
  17380. name: "Front",
  17381. image: {
  17382. source: "./media/characters/sol/front.svg",
  17383. extra: 247 / 231,
  17384. bottom: 0.05
  17385. }
  17386. },
  17387. },
  17388. [
  17389. {
  17390. name: "Normal",
  17391. height: math.unit(6 + 2 / 12, "feet"),
  17392. default: true
  17393. },
  17394. ]
  17395. ))
  17396. characterMakers.push(() => makeCharacter(
  17397. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  17398. {
  17399. buizel: {
  17400. height: math.unit(2 + 5 / 12, "feet"),
  17401. weight: math.unit(87, "lb"),
  17402. name: "Front",
  17403. image: {
  17404. source: "./media/characters/umiko/buizel.svg",
  17405. extra: 172 / 157,
  17406. bottom: 0.01
  17407. },
  17408. form: "buizel",
  17409. default: true
  17410. },
  17411. floatzel: {
  17412. height: math.unit(5 + 9 / 12, "feet"),
  17413. weight: math.unit(250, "lb"),
  17414. name: "Front",
  17415. image: {
  17416. source: "./media/characters/umiko/floatzel.svg",
  17417. extra: 1076/1006,
  17418. bottom: 15/1091
  17419. },
  17420. form: "floatzel",
  17421. default: true
  17422. },
  17423. },
  17424. [
  17425. {
  17426. name: "Normal",
  17427. height: math.unit(2 + 5 / 12, "feet"),
  17428. form: "buizel",
  17429. default: true
  17430. },
  17431. {
  17432. name: "Normal",
  17433. height: math.unit(5 + 9 / 12, "feet"),
  17434. form: "floatzel",
  17435. default: true
  17436. },
  17437. ],
  17438. {
  17439. "buizel": {
  17440. name: "Buizel"
  17441. },
  17442. "floatzel": {
  17443. name: "Floatzel",
  17444. default: true
  17445. }
  17446. }
  17447. ))
  17448. characterMakers.push(() => makeCharacter(
  17449. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  17450. {
  17451. front: {
  17452. height: math.unit(6 + 2 / 12, "feet"),
  17453. weight: math.unit(146, "lb"),
  17454. name: "Front",
  17455. image: {
  17456. source: "./media/characters/iliac/front.svg",
  17457. extra: 389 / 365,
  17458. bottom: 0.035
  17459. }
  17460. },
  17461. },
  17462. [
  17463. {
  17464. name: "Normal",
  17465. height: math.unit(6 + 2 / 12, "feet"),
  17466. default: true
  17467. },
  17468. ]
  17469. ))
  17470. characterMakers.push(() => makeCharacter(
  17471. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  17472. {
  17473. front: {
  17474. height: math.unit(6, "feet"),
  17475. weight: math.unit(170, "lb"),
  17476. name: "Front",
  17477. image: {
  17478. source: "./media/characters/topaz/front.svg",
  17479. extra: 317 / 303,
  17480. bottom: 0.055
  17481. }
  17482. },
  17483. },
  17484. [
  17485. {
  17486. name: "Normal",
  17487. height: math.unit(6, "feet"),
  17488. default: true
  17489. },
  17490. ]
  17491. ))
  17492. characterMakers.push(() => makeCharacter(
  17493. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  17494. {
  17495. front: {
  17496. height: math.unit(5 + 11 / 12, "feet"),
  17497. weight: math.unit(144, "lb"),
  17498. name: "Front",
  17499. image: {
  17500. source: "./media/characters/gabriel/front.svg",
  17501. extra: 285 / 262,
  17502. bottom: 0.004
  17503. }
  17504. },
  17505. },
  17506. [
  17507. {
  17508. name: "Normal",
  17509. height: math.unit(5 + 11 / 12, "feet"),
  17510. default: true
  17511. },
  17512. ]
  17513. ))
  17514. characterMakers.push(() => makeCharacter(
  17515. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  17516. {
  17517. side: {
  17518. height: math.unit(6 + 5 / 12, "feet"),
  17519. weight: math.unit(300, "lb"),
  17520. name: "Side",
  17521. image: {
  17522. source: "./media/characters/tempest-suicune/side.svg",
  17523. extra: 195 / 154,
  17524. bottom: 0.04
  17525. }
  17526. },
  17527. },
  17528. [
  17529. {
  17530. name: "Normal",
  17531. height: math.unit(6 + 5 / 12, "feet"),
  17532. default: true
  17533. },
  17534. ]
  17535. ))
  17536. characterMakers.push(() => makeCharacter(
  17537. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  17538. {
  17539. front: {
  17540. height: math.unit(7 + 2 / 12, "feet"),
  17541. weight: math.unit(322, "lb"),
  17542. name: "Front",
  17543. image: {
  17544. source: "./media/characters/vulcan/front.svg",
  17545. extra: 154 / 147,
  17546. bottom: 0.04
  17547. }
  17548. },
  17549. },
  17550. [
  17551. {
  17552. name: "Normal",
  17553. height: math.unit(7 + 2 / 12, "feet"),
  17554. default: true
  17555. },
  17556. ]
  17557. ))
  17558. characterMakers.push(() => makeCharacter(
  17559. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  17560. {
  17561. front: {
  17562. height: math.unit(5 + 10 / 12, "feet"),
  17563. weight: math.unit(264, "lb"),
  17564. name: "Front",
  17565. image: {
  17566. source: "./media/characters/gault/front.svg",
  17567. extra: 161 / 140,
  17568. bottom: 0.028
  17569. }
  17570. },
  17571. },
  17572. [
  17573. {
  17574. name: "Normal",
  17575. height: math.unit(5 + 10 / 12, "feet"),
  17576. default: true
  17577. },
  17578. ]
  17579. ))
  17580. characterMakers.push(() => makeCharacter(
  17581. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  17582. {
  17583. front: {
  17584. height: math.unit(6, "feet"),
  17585. weight: math.unit(150, "lb"),
  17586. name: "Front",
  17587. image: {
  17588. source: "./media/characters/shard/front.svg",
  17589. extra: 273 / 238,
  17590. bottom: 0.02
  17591. }
  17592. },
  17593. },
  17594. [
  17595. {
  17596. name: "Normal",
  17597. height: math.unit(3 + 6 / 12, "feet"),
  17598. default: true
  17599. },
  17600. ]
  17601. ))
  17602. characterMakers.push(() => makeCharacter(
  17603. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  17604. {
  17605. front: {
  17606. height: math.unit(5 + 11 / 12, "feet"),
  17607. weight: math.unit(146, "lb"),
  17608. name: "Front",
  17609. image: {
  17610. source: "./media/characters/ashe/front.svg",
  17611. extra: 400 / 373,
  17612. bottom: 0.01
  17613. }
  17614. },
  17615. },
  17616. [
  17617. {
  17618. name: "Normal",
  17619. height: math.unit(5 + 11 / 12, "feet"),
  17620. default: true
  17621. },
  17622. ]
  17623. ))
  17624. characterMakers.push(() => makeCharacter(
  17625. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  17626. {
  17627. front: {
  17628. height: math.unit(5 + 5 / 12, "feet"),
  17629. weight: math.unit(135, "lb"),
  17630. name: "Front",
  17631. image: {
  17632. source: "./media/characters/beatrix/front.svg",
  17633. extra: 392 / 379,
  17634. bottom: 0.01
  17635. }
  17636. },
  17637. },
  17638. [
  17639. {
  17640. name: "Normal",
  17641. height: math.unit(6, "feet"),
  17642. default: true
  17643. },
  17644. ]
  17645. ))
  17646. characterMakers.push(() => makeCharacter(
  17647. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  17648. {
  17649. front: {
  17650. height: math.unit(6 + 2/12, "feet"),
  17651. weight: math.unit(135, "lb"),
  17652. name: "Front",
  17653. image: {
  17654. source: "./media/characters/ignatius/front.svg",
  17655. extra: 1380/1259,
  17656. bottom: 27/1407
  17657. }
  17658. },
  17659. },
  17660. [
  17661. {
  17662. name: "Normal",
  17663. height: math.unit(6 + 2/12, "feet"),
  17664. default: true
  17665. },
  17666. ]
  17667. ))
  17668. characterMakers.push(() => makeCharacter(
  17669. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  17670. {
  17671. front: {
  17672. height: math.unit(6 + 2 / 12, "feet"),
  17673. weight: math.unit(138, "lb"),
  17674. name: "Front",
  17675. image: {
  17676. source: "./media/characters/mei-li/front.svg",
  17677. extra: 237 / 229,
  17678. bottom: 0.03
  17679. }
  17680. },
  17681. },
  17682. [
  17683. {
  17684. name: "Normal",
  17685. height: math.unit(6 + 2 / 12, "feet"),
  17686. default: true
  17687. },
  17688. ]
  17689. ))
  17690. characterMakers.push(() => makeCharacter(
  17691. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  17692. {
  17693. front: {
  17694. height: math.unit(2 + 4 / 12, "feet"),
  17695. weight: math.unit(62, "lb"),
  17696. name: "Front",
  17697. image: {
  17698. source: "./media/characters/puru/front.svg",
  17699. extra: 206 / 149,
  17700. bottom: 0.06
  17701. }
  17702. },
  17703. },
  17704. [
  17705. {
  17706. name: "Normal",
  17707. height: math.unit(2 + 4 / 12, "feet"),
  17708. default: true
  17709. },
  17710. ]
  17711. ))
  17712. characterMakers.push(() => makeCharacter(
  17713. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  17714. {
  17715. anthro: {
  17716. height: math.unit(5 + 8/12, "feet"),
  17717. weight: math.unit(200, "lb"),
  17718. energyNeed: math.unit(2000, "kcal"),
  17719. name: "Anthro",
  17720. image: {
  17721. source: "./media/characters/kee/anthro.svg",
  17722. extra: 3251/3184,
  17723. bottom: 250/3501
  17724. }
  17725. },
  17726. taur: {
  17727. height: math.unit(11, "feet"),
  17728. weight: math.unit(500, "lb"),
  17729. energyNeed: math.unit(5000, "kcal"),
  17730. name: "Taur",
  17731. image: {
  17732. source: "./media/characters/kee/taur.svg",
  17733. extra: 1362/1320,
  17734. bottom: 83/1445
  17735. }
  17736. },
  17737. },
  17738. [
  17739. {
  17740. name: "Normal",
  17741. height: math.unit(5 + 8/12, "feet"),
  17742. default: true
  17743. },
  17744. {
  17745. name: "Macro",
  17746. height: math.unit(35, "feet")
  17747. },
  17748. ]
  17749. ))
  17750. characterMakers.push(() => makeCharacter(
  17751. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  17752. {
  17753. anthro: {
  17754. height: math.unit(7, "feet"),
  17755. weight: math.unit(190, "lb"),
  17756. name: "Anthro",
  17757. image: {
  17758. source: "./media/characters/cobalt-dracha/anthro.svg",
  17759. extra: 231 / 225,
  17760. bottom: 0.04
  17761. }
  17762. },
  17763. feral: {
  17764. height: math.unit(9 + 7 / 12, "feet"),
  17765. weight: math.unit(294, "lb"),
  17766. name: "Feral",
  17767. image: {
  17768. source: "./media/characters/cobalt-dracha/feral.svg",
  17769. extra: 692 / 633,
  17770. bottom: 0.05
  17771. }
  17772. },
  17773. },
  17774. [
  17775. {
  17776. name: "Normal",
  17777. height: math.unit(7, "feet"),
  17778. default: true
  17779. },
  17780. ]
  17781. ))
  17782. characterMakers.push(() => makeCharacter(
  17783. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  17784. {
  17785. fallen: {
  17786. height: math.unit(11 + 8 / 12, "feet"),
  17787. weight: math.unit(485, "lb"),
  17788. name: "Java (Fallen)",
  17789. rename: true,
  17790. image: {
  17791. source: "./media/characters/java/fallen.svg",
  17792. extra: 226 / 208,
  17793. bottom: 0.005
  17794. }
  17795. },
  17796. godkin: {
  17797. height: math.unit(10 + 6 / 12, "feet"),
  17798. weight: math.unit(328, "lb"),
  17799. name: "Java (Godkin)",
  17800. rename: true,
  17801. image: {
  17802. source: "./media/characters/java/godkin.svg",
  17803. extra: 1104/1068,
  17804. bottom: 36/1140
  17805. }
  17806. },
  17807. },
  17808. [
  17809. {
  17810. name: "Normal",
  17811. height: math.unit(11 + 8 / 12, "feet"),
  17812. default: true
  17813. },
  17814. ]
  17815. ))
  17816. characterMakers.push(() => makeCharacter(
  17817. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  17818. {
  17819. front: {
  17820. height: math.unit(5 + 9 / 12, "feet"),
  17821. weight: math.unit(170, "lb"),
  17822. name: "Front",
  17823. image: {
  17824. source: "./media/characters/purna/front.svg",
  17825. extra: 239 / 229,
  17826. bottom: 0.01
  17827. }
  17828. },
  17829. },
  17830. [
  17831. {
  17832. name: "Normal",
  17833. height: math.unit(5 + 9 / 12, "feet"),
  17834. default: true
  17835. },
  17836. ]
  17837. ))
  17838. characterMakers.push(() => makeCharacter(
  17839. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  17840. {
  17841. front: {
  17842. height: math.unit(5 + 9 / 12, "feet"),
  17843. weight: math.unit(142, "lb"),
  17844. name: "Front",
  17845. image: {
  17846. source: "./media/characters/kuva/front.svg",
  17847. extra: 281 / 271,
  17848. bottom: 0.006
  17849. }
  17850. },
  17851. },
  17852. [
  17853. {
  17854. name: "Normal",
  17855. height: math.unit(5 + 9 / 12, "feet"),
  17856. default: true
  17857. },
  17858. ]
  17859. ))
  17860. characterMakers.push(() => makeCharacter(
  17861. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  17862. {
  17863. anthro: {
  17864. height: math.unit(9 + 2 / 12, "feet"),
  17865. weight: math.unit(270, "lb"),
  17866. name: "Anthro",
  17867. image: {
  17868. source: "./media/characters/embra/anthro.svg",
  17869. extra: 200 / 187,
  17870. bottom: 0.02
  17871. }
  17872. },
  17873. feral: {
  17874. height: math.unit(18 + 8 / 12, "feet"),
  17875. weight: math.unit(576, "lb"),
  17876. name: "Feral",
  17877. image: {
  17878. source: "./media/characters/embra/feral.svg",
  17879. extra: 152 / 137,
  17880. bottom: 0.037
  17881. }
  17882. },
  17883. },
  17884. [
  17885. {
  17886. name: "Normal",
  17887. height: math.unit(9 + 2 / 12, "feet"),
  17888. default: true
  17889. },
  17890. ]
  17891. ))
  17892. characterMakers.push(() => makeCharacter(
  17893. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  17894. {
  17895. anthro: {
  17896. height: math.unit(10 + 9 / 12, "feet"),
  17897. weight: math.unit(224, "lb"),
  17898. name: "Anthro",
  17899. image: {
  17900. source: "./media/characters/grottos/anthro.svg",
  17901. extra: 350 / 332,
  17902. bottom: 0.045
  17903. }
  17904. },
  17905. feral: {
  17906. height: math.unit(20 + 7 / 12, "feet"),
  17907. weight: math.unit(629, "lb"),
  17908. name: "Feral",
  17909. image: {
  17910. source: "./media/characters/grottos/feral.svg",
  17911. extra: 207 / 190,
  17912. bottom: 0.05
  17913. }
  17914. },
  17915. },
  17916. [
  17917. {
  17918. name: "Normal",
  17919. height: math.unit(10 + 9 / 12, "feet"),
  17920. default: true
  17921. },
  17922. ]
  17923. ))
  17924. characterMakers.push(() => makeCharacter(
  17925. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17926. {
  17927. anthro: {
  17928. height: math.unit(9 + 6 / 12, "feet"),
  17929. weight: math.unit(298, "lb"),
  17930. name: "Anthro",
  17931. image: {
  17932. source: "./media/characters/frifna/anthro.svg",
  17933. extra: 282 / 269,
  17934. bottom: 0.015
  17935. }
  17936. },
  17937. feral: {
  17938. height: math.unit(16 + 2 / 12, "feet"),
  17939. weight: math.unit(624, "lb"),
  17940. name: "Feral",
  17941. image: {
  17942. source: "./media/characters/frifna/feral.svg"
  17943. }
  17944. },
  17945. },
  17946. [
  17947. {
  17948. name: "Normal",
  17949. height: math.unit(9 + 6 / 12, "feet"),
  17950. default: true
  17951. },
  17952. ]
  17953. ))
  17954. characterMakers.push(() => makeCharacter(
  17955. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17956. {
  17957. front: {
  17958. height: math.unit(6 + 2 / 12, "feet"),
  17959. weight: math.unit(168, "lb"),
  17960. name: "Front",
  17961. image: {
  17962. source: "./media/characters/elise/front.svg",
  17963. extra: 276 / 271
  17964. }
  17965. },
  17966. },
  17967. [
  17968. {
  17969. name: "Normal",
  17970. height: math.unit(6 + 2 / 12, "feet"),
  17971. default: true
  17972. },
  17973. ]
  17974. ))
  17975. characterMakers.push(() => makeCharacter(
  17976. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  17977. {
  17978. front: {
  17979. height: math.unit(5 + 10 / 12, "feet"),
  17980. weight: math.unit(210, "lb"),
  17981. name: "Front",
  17982. image: {
  17983. source: "./media/characters/glade/front.svg",
  17984. extra: 258 / 247,
  17985. bottom: 0.008
  17986. }
  17987. },
  17988. },
  17989. [
  17990. {
  17991. name: "Normal",
  17992. height: math.unit(5 + 10 / 12, "feet"),
  17993. default: true
  17994. },
  17995. ]
  17996. ))
  17997. characterMakers.push(() => makeCharacter(
  17998. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  17999. {
  18000. front: {
  18001. height: math.unit(5 + 10 / 12, "feet"),
  18002. weight: math.unit(129, "lb"),
  18003. name: "Front",
  18004. image: {
  18005. source: "./media/characters/rina/front.svg",
  18006. extra: 266 / 255,
  18007. bottom: 0.005
  18008. }
  18009. },
  18010. },
  18011. [
  18012. {
  18013. name: "Normal",
  18014. height: math.unit(5 + 10 / 12, "feet"),
  18015. default: true
  18016. },
  18017. ]
  18018. ))
  18019. characterMakers.push(() => makeCharacter(
  18020. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  18021. {
  18022. front: {
  18023. height: math.unit(6 + 1 / 12, "feet"),
  18024. weight: math.unit(192, "lb"),
  18025. name: "Front",
  18026. image: {
  18027. source: "./media/characters/veronica/front.svg",
  18028. extra: 319 / 309,
  18029. bottom: 0.005
  18030. }
  18031. },
  18032. },
  18033. [
  18034. {
  18035. name: "Normal",
  18036. height: math.unit(6 + 1 / 12, "feet"),
  18037. default: true
  18038. },
  18039. ]
  18040. ))
  18041. characterMakers.push(() => makeCharacter(
  18042. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  18043. {
  18044. front: {
  18045. height: math.unit(9 + 3 / 12, "feet"),
  18046. weight: math.unit(1100, "lb"),
  18047. name: "Front",
  18048. image: {
  18049. source: "./media/characters/braxton/front.svg",
  18050. extra: 1057 / 984,
  18051. bottom: 0.05
  18052. }
  18053. },
  18054. },
  18055. [
  18056. {
  18057. name: "Normal",
  18058. height: math.unit(9 + 3 / 12, "feet")
  18059. },
  18060. {
  18061. name: "Giant",
  18062. height: math.unit(300, "feet"),
  18063. default: true
  18064. },
  18065. {
  18066. name: "Macro",
  18067. height: math.unit(700, "feet")
  18068. },
  18069. {
  18070. name: "Megamacro",
  18071. height: math.unit(6000, "feet")
  18072. },
  18073. ]
  18074. ))
  18075. characterMakers.push(() => makeCharacter(
  18076. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  18077. {
  18078. front: {
  18079. height: math.unit(6 + 7 / 12, "feet"),
  18080. weight: math.unit(150, "lb"),
  18081. name: "Front",
  18082. image: {
  18083. source: "./media/characters/blue-feyonics/front.svg",
  18084. extra: 1403 / 1306,
  18085. bottom: 0.047
  18086. }
  18087. },
  18088. },
  18089. [
  18090. {
  18091. name: "Normal",
  18092. height: math.unit(6 + 7 / 12, "feet"),
  18093. default: true
  18094. },
  18095. ]
  18096. ))
  18097. characterMakers.push(() => makeCharacter(
  18098. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  18099. {
  18100. front: {
  18101. height: math.unit(1.8, "meters"),
  18102. weight: math.unit(60, "kg"),
  18103. name: "Front",
  18104. image: {
  18105. source: "./media/characters/maxwell/front.svg",
  18106. extra: 2060 / 1873
  18107. }
  18108. },
  18109. },
  18110. [
  18111. {
  18112. name: "Micro",
  18113. height: math.unit(1, "mm")
  18114. },
  18115. {
  18116. name: "Normal",
  18117. height: math.unit(1.8, "meter"),
  18118. default: true
  18119. },
  18120. {
  18121. name: "Macro",
  18122. height: math.unit(30, "meters")
  18123. },
  18124. {
  18125. name: "Megamacro",
  18126. height: math.unit(10, "km")
  18127. },
  18128. ]
  18129. ))
  18130. characterMakers.push(() => makeCharacter(
  18131. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  18132. {
  18133. front: {
  18134. height: math.unit(6, "feet"),
  18135. weight: math.unit(150, "lb"),
  18136. name: "Front",
  18137. image: {
  18138. source: "./media/characters/jack/front.svg",
  18139. extra: 1754 / 1640,
  18140. bottom: 0.01
  18141. }
  18142. },
  18143. },
  18144. [
  18145. {
  18146. name: "Normal",
  18147. height: math.unit(80000, "feet"),
  18148. default: true
  18149. },
  18150. {
  18151. name: "Max size",
  18152. height: math.unit(10, "lightyears")
  18153. },
  18154. ]
  18155. ))
  18156. characterMakers.push(() => makeCharacter(
  18157. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  18158. {
  18159. urban: {
  18160. height: math.unit(5, "feet"),
  18161. weight: math.unit(240, "lb"),
  18162. name: "Urban",
  18163. image: {
  18164. source: "./media/characters/cafat/urban.svg",
  18165. extra: 1223/1126,
  18166. bottom: 205/1428
  18167. }
  18168. },
  18169. summer: {
  18170. height: math.unit(5, "feet"),
  18171. weight: math.unit(240, "lb"),
  18172. name: "Summer",
  18173. image: {
  18174. source: "./media/characters/cafat/summer.svg",
  18175. extra: 1223/1126,
  18176. bottom: 205/1428
  18177. }
  18178. },
  18179. winter: {
  18180. height: math.unit(5, "feet"),
  18181. weight: math.unit(240, "lb"),
  18182. name: "Winter",
  18183. image: {
  18184. source: "./media/characters/cafat/winter.svg",
  18185. extra: 1223/1126,
  18186. bottom: 205/1428
  18187. }
  18188. },
  18189. lingerie: {
  18190. height: math.unit(5, "feet"),
  18191. weight: math.unit(240, "lb"),
  18192. name: "Lingerie",
  18193. image: {
  18194. source: "./media/characters/cafat/lingerie.svg",
  18195. extra: 1223/1126,
  18196. bottom: 205/1428
  18197. }
  18198. },
  18199. upright: {
  18200. height: math.unit(6.3, "feet"),
  18201. weight: math.unit(240, "lb"),
  18202. name: "Upright",
  18203. image: {
  18204. source: "./media/characters/cafat/upright.svg",
  18205. bottom: 0.01
  18206. }
  18207. },
  18208. uprightFull: {
  18209. height: math.unit(6.3, "feet"),
  18210. weight: math.unit(240, "lb"),
  18211. name: "Upright (Full)",
  18212. image: {
  18213. source: "./media/characters/cafat/upright-full.svg",
  18214. bottom: 0.01
  18215. }
  18216. },
  18217. },
  18218. [
  18219. {
  18220. name: "Small",
  18221. height: math.unit(5, "feet"),
  18222. default: true
  18223. },
  18224. {
  18225. name: "Large",
  18226. height: math.unit(13, "feet")
  18227. },
  18228. ]
  18229. ))
  18230. characterMakers.push(() => makeCharacter(
  18231. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  18232. {
  18233. front: {
  18234. height: math.unit(6, "feet"),
  18235. weight: math.unit(150, "lb"),
  18236. name: "Front",
  18237. image: {
  18238. source: "./media/characters/verin-raharra/front.svg",
  18239. extra: 5019 / 4835,
  18240. bottom: 0.023
  18241. }
  18242. },
  18243. },
  18244. [
  18245. {
  18246. name: "Normal",
  18247. height: math.unit(7 + 5 / 12, "feet"),
  18248. default: true
  18249. },
  18250. {
  18251. name: "Upsized",
  18252. height: math.unit(20, "feet")
  18253. },
  18254. ]
  18255. ))
  18256. characterMakers.push(() => makeCharacter(
  18257. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  18258. {
  18259. front: {
  18260. height: math.unit(7, "feet"),
  18261. weight: math.unit(230, "lb"),
  18262. name: "Front",
  18263. image: {
  18264. source: "./media/characters/nakata/front.svg",
  18265. extra: 1.005,
  18266. bottom: 0.01
  18267. }
  18268. },
  18269. },
  18270. [
  18271. {
  18272. name: "Normal",
  18273. height: math.unit(7, "feet"),
  18274. default: true
  18275. },
  18276. {
  18277. name: "Big",
  18278. height: math.unit(14, "feet")
  18279. },
  18280. {
  18281. name: "Macro",
  18282. height: math.unit(400, "feet")
  18283. },
  18284. ]
  18285. ))
  18286. characterMakers.push(() => makeCharacter(
  18287. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  18288. {
  18289. front: {
  18290. height: math.unit(4.91, "feet"),
  18291. weight: math.unit(100, "lb"),
  18292. name: "Front",
  18293. image: {
  18294. source: "./media/characters/lily/front.svg",
  18295. extra: 1585 / 1415,
  18296. bottom: 0.02
  18297. }
  18298. },
  18299. },
  18300. [
  18301. {
  18302. name: "Normal",
  18303. height: math.unit(4.91, "feet"),
  18304. default: true
  18305. },
  18306. ]
  18307. ))
  18308. characterMakers.push(() => makeCharacter(
  18309. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  18310. {
  18311. laying: {
  18312. height: math.unit(4 + 4 / 12, "feet"),
  18313. weight: math.unit(600, "lb"),
  18314. name: "Laying",
  18315. image: {
  18316. source: "./media/characters/sheila/laying.svg",
  18317. extra: 1333 / 1265,
  18318. bottom: 0.16
  18319. }
  18320. },
  18321. },
  18322. [
  18323. {
  18324. name: "Normal",
  18325. height: math.unit(4 + 4 / 12, "feet"),
  18326. default: true
  18327. },
  18328. ]
  18329. ))
  18330. characterMakers.push(() => makeCharacter(
  18331. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  18332. {
  18333. front: {
  18334. height: math.unit(6, "feet"),
  18335. weight: math.unit(190, "lb"),
  18336. name: "Front",
  18337. image: {
  18338. source: "./media/characters/sax/front.svg",
  18339. extra: 1187 / 973,
  18340. bottom: 0.042
  18341. }
  18342. },
  18343. },
  18344. [
  18345. {
  18346. name: "Micro",
  18347. height: math.unit(4, "inches"),
  18348. default: true
  18349. },
  18350. ]
  18351. ))
  18352. characterMakers.push(() => makeCharacter(
  18353. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  18354. {
  18355. front: {
  18356. height: math.unit(6, "feet"),
  18357. weight: math.unit(150, "lb"),
  18358. name: "Front",
  18359. image: {
  18360. source: "./media/characters/pandora/front.svg",
  18361. extra: 2720 / 2556,
  18362. bottom: 0.015
  18363. }
  18364. },
  18365. back: {
  18366. height: math.unit(6, "feet"),
  18367. weight: math.unit(150, "lb"),
  18368. name: "Back",
  18369. image: {
  18370. source: "./media/characters/pandora/back.svg",
  18371. extra: 2720 / 2556,
  18372. bottom: 0.01
  18373. }
  18374. },
  18375. beans: {
  18376. height: math.unit(6 / 8, "feet"),
  18377. name: "Beans",
  18378. image: {
  18379. source: "./media/characters/pandora/beans.svg"
  18380. }
  18381. },
  18382. collar: {
  18383. height: math.unit(0.31, "feet"),
  18384. name: "Collar",
  18385. image: {
  18386. source: "./media/characters/pandora/collar.svg"
  18387. }
  18388. },
  18389. skirt: {
  18390. height: math.unit(6, "feet"),
  18391. weight: math.unit(150, "lb"),
  18392. name: "Skirt",
  18393. image: {
  18394. source: "./media/characters/pandora/skirt.svg",
  18395. extra: 1622 / 1525,
  18396. bottom: 0.015
  18397. }
  18398. },
  18399. hoodie: {
  18400. height: math.unit(6, "feet"),
  18401. weight: math.unit(150, "lb"),
  18402. name: "Hoodie",
  18403. image: {
  18404. source: "./media/characters/pandora/hoodie.svg",
  18405. extra: 1622 / 1525,
  18406. bottom: 0.015
  18407. }
  18408. },
  18409. casual: {
  18410. height: math.unit(6, "feet"),
  18411. weight: math.unit(150, "lb"),
  18412. name: "Casual",
  18413. image: {
  18414. source: "./media/characters/pandora/casual.svg",
  18415. extra: 1622 / 1525,
  18416. bottom: 0.015
  18417. }
  18418. },
  18419. },
  18420. [
  18421. {
  18422. name: "Normal",
  18423. height: math.unit(6, "feet")
  18424. },
  18425. {
  18426. name: "Big Steppy",
  18427. height: math.unit(1, "km"),
  18428. default: true
  18429. },
  18430. {
  18431. name: "Galactic Steppy",
  18432. height: math.unit(2, "gigameters")
  18433. },
  18434. ]
  18435. ))
  18436. characterMakers.push(() => makeCharacter(
  18437. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  18438. {
  18439. side: {
  18440. height: math.unit(10, "feet"),
  18441. weight: math.unit(800, "kg"),
  18442. name: "Side",
  18443. image: {
  18444. source: "./media/characters/venio-darcony/side.svg",
  18445. extra: 1373 / 1003,
  18446. bottom: 0.037
  18447. }
  18448. },
  18449. front: {
  18450. height: math.unit(19, "feet"),
  18451. weight: math.unit(800, "kg"),
  18452. name: "Front",
  18453. image: {
  18454. source: "./media/characters/venio-darcony/front.svg"
  18455. }
  18456. },
  18457. back: {
  18458. height: math.unit(19, "feet"),
  18459. weight: math.unit(800, "kg"),
  18460. name: "Back",
  18461. image: {
  18462. source: "./media/characters/venio-darcony/back.svg"
  18463. }
  18464. },
  18465. sideNsfw: {
  18466. height: math.unit(10, "feet"),
  18467. weight: math.unit(800, "kg"),
  18468. name: "Side (NSFW)",
  18469. image: {
  18470. source: "./media/characters/venio-darcony/side-nsfw.svg",
  18471. extra: 1373 / 1003,
  18472. bottom: 0.037
  18473. }
  18474. },
  18475. frontNsfw: {
  18476. height: math.unit(19, "feet"),
  18477. weight: math.unit(800, "kg"),
  18478. name: "Front (NSFW)",
  18479. image: {
  18480. source: "./media/characters/venio-darcony/front-nsfw.svg"
  18481. }
  18482. },
  18483. backNsfw: {
  18484. height: math.unit(19, "feet"),
  18485. weight: math.unit(800, "kg"),
  18486. name: "Back (NSFW)",
  18487. image: {
  18488. source: "./media/characters/venio-darcony/back-nsfw.svg"
  18489. }
  18490. },
  18491. sideArmored: {
  18492. height: math.unit(10, "feet"),
  18493. weight: math.unit(800, "kg"),
  18494. name: "Side (Armored)",
  18495. image: {
  18496. source: "./media/characters/venio-darcony/side-armored.svg",
  18497. extra: 1373 / 1003,
  18498. bottom: 0.037
  18499. }
  18500. },
  18501. frontArmored: {
  18502. height: math.unit(19, "feet"),
  18503. weight: math.unit(900, "kg"),
  18504. name: "Front (Armored)",
  18505. image: {
  18506. source: "./media/characters/venio-darcony/front-armored.svg"
  18507. }
  18508. },
  18509. backArmored: {
  18510. height: math.unit(19, "feet"),
  18511. weight: math.unit(900, "kg"),
  18512. name: "Back (Armored)",
  18513. image: {
  18514. source: "./media/characters/venio-darcony/back-armored.svg"
  18515. }
  18516. },
  18517. sword: {
  18518. height: math.unit(10, "feet"),
  18519. weight: math.unit(50, "lb"),
  18520. name: "Sword",
  18521. image: {
  18522. source: "./media/characters/venio-darcony/sword.svg"
  18523. }
  18524. },
  18525. },
  18526. [
  18527. {
  18528. name: "Normal",
  18529. height: math.unit(10, "feet")
  18530. },
  18531. {
  18532. name: "Macro",
  18533. height: math.unit(130, "feet"),
  18534. default: true
  18535. },
  18536. {
  18537. name: "Macro+",
  18538. height: math.unit(240, "feet")
  18539. },
  18540. ]
  18541. ))
  18542. characterMakers.push(() => makeCharacter(
  18543. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  18544. {
  18545. front: {
  18546. height: math.unit(6, "feet"),
  18547. weight: math.unit(150, "lb"),
  18548. name: "Front",
  18549. image: {
  18550. source: "./media/characters/veski/front.svg",
  18551. extra: 1299 / 1225,
  18552. bottom: 0.04
  18553. }
  18554. },
  18555. back: {
  18556. height: math.unit(6, "feet"),
  18557. weight: math.unit(150, "lb"),
  18558. name: "Back",
  18559. image: {
  18560. source: "./media/characters/veski/back.svg",
  18561. extra: 1299 / 1225,
  18562. bottom: 0.008
  18563. }
  18564. },
  18565. maw: {
  18566. height: math.unit(1.5 * 1.21, "feet"),
  18567. name: "Maw",
  18568. image: {
  18569. source: "./media/characters/veski/maw.svg"
  18570. }
  18571. },
  18572. },
  18573. [
  18574. {
  18575. name: "Macro",
  18576. height: math.unit(2, "km"),
  18577. default: true
  18578. },
  18579. ]
  18580. ))
  18581. characterMakers.push(() => makeCharacter(
  18582. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  18583. {
  18584. front: {
  18585. height: math.unit(5 + 7 / 12, "feet"),
  18586. name: "Front",
  18587. image: {
  18588. source: "./media/characters/isabelle/front.svg",
  18589. extra: 2130 / 1976,
  18590. bottom: 0.05
  18591. }
  18592. },
  18593. },
  18594. [
  18595. {
  18596. name: "Supermicro",
  18597. height: math.unit(10, "micrometers")
  18598. },
  18599. {
  18600. name: "Micro",
  18601. height: math.unit(1, "inch")
  18602. },
  18603. {
  18604. name: "Tiny",
  18605. height: math.unit(5, "inches")
  18606. },
  18607. {
  18608. name: "Standard",
  18609. height: math.unit(5 + 7 / 12, "inches")
  18610. },
  18611. {
  18612. name: "Macro",
  18613. height: math.unit(80, "meters"),
  18614. default: true
  18615. },
  18616. {
  18617. name: "Megamacro",
  18618. height: math.unit(250, "meters")
  18619. },
  18620. {
  18621. name: "Gigamacro",
  18622. height: math.unit(5, "km")
  18623. },
  18624. {
  18625. name: "Cosmic",
  18626. height: math.unit(2.5e6, "miles")
  18627. },
  18628. ]
  18629. ))
  18630. characterMakers.push(() => makeCharacter(
  18631. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  18632. {
  18633. front: {
  18634. height: math.unit(6, "feet"),
  18635. weight: math.unit(150, "lb"),
  18636. name: "Front",
  18637. image: {
  18638. source: "./media/characters/hanzo/front.svg",
  18639. extra: 374 / 344,
  18640. bottom: 0.02
  18641. }
  18642. },
  18643. },
  18644. [
  18645. {
  18646. name: "Normal",
  18647. height: math.unit(8, "feet"),
  18648. default: true
  18649. },
  18650. ]
  18651. ))
  18652. characterMakers.push(() => makeCharacter(
  18653. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  18654. {
  18655. front: {
  18656. height: math.unit(7, "feet"),
  18657. weight: math.unit(130, "lb"),
  18658. name: "Front",
  18659. image: {
  18660. source: "./media/characters/anna/front.svg",
  18661. extra: 169 / 145,
  18662. bottom: 0.06
  18663. }
  18664. },
  18665. full: {
  18666. height: math.unit(4.96, "feet"),
  18667. weight: math.unit(220, "lb"),
  18668. name: "Full",
  18669. image: {
  18670. source: "./media/characters/anna/full.svg",
  18671. extra: 138 / 114,
  18672. bottom: 0.15
  18673. }
  18674. },
  18675. tongue: {
  18676. height: math.unit(2.53, "feet"),
  18677. name: "Tongue",
  18678. image: {
  18679. source: "./media/characters/anna/tongue.svg"
  18680. }
  18681. },
  18682. },
  18683. [
  18684. {
  18685. name: "Normal",
  18686. height: math.unit(7, "feet"),
  18687. default: true
  18688. },
  18689. ]
  18690. ))
  18691. characterMakers.push(() => makeCharacter(
  18692. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  18693. {
  18694. front: {
  18695. height: math.unit(7 + 1/12, "feet"),
  18696. weight: math.unit(150, "lb"),
  18697. name: "Front",
  18698. image: {
  18699. source: "./media/characters/ian-corvid/front.svg",
  18700. extra: 621/591,
  18701. bottom: 14/635
  18702. }
  18703. },
  18704. back: {
  18705. height: math.unit(7 + 1/12, "feet"),
  18706. weight: math.unit(150, "lb"),
  18707. name: "Back",
  18708. image: {
  18709. source: "./media/characters/ian-corvid/back.svg",
  18710. extra: 621/600,
  18711. bottom: 10/631
  18712. }
  18713. },
  18714. stomping: {
  18715. height: math.unit(7 + 1/12, "feet"),
  18716. weight: math.unit(150, "lb"),
  18717. name: "Stomping",
  18718. image: {
  18719. source: "./media/characters/ian-corvid/stomping.svg",
  18720. extra: 309/291,
  18721. bottom: 7/316
  18722. }
  18723. },
  18724. tongue: {
  18725. height: math.unit(3.9, "feet"),
  18726. name: "Tongue",
  18727. image: {
  18728. source: "./media/characters/ian-corvid/tongue.svg"
  18729. }
  18730. },
  18731. beak: {
  18732. height: math.unit(0.9, "feet"),
  18733. name: "Beak",
  18734. image: {
  18735. source: "./media/characters/ian-corvid/beak.svg"
  18736. }
  18737. },
  18738. sitting: {
  18739. height: math.unit(7 / 1.8, "feet"),
  18740. weight: math.unit(150, "lb"),
  18741. name: "Sitting",
  18742. image: {
  18743. source: "./media/characters/ian-corvid/sitting.svg",
  18744. extra: 1400 / 1269,
  18745. bottom: 0.15
  18746. }
  18747. },
  18748. },
  18749. [
  18750. {
  18751. name: "Tiny Microw",
  18752. height: math.unit(1, "inch")
  18753. },
  18754. {
  18755. name: "Microw",
  18756. height: math.unit(6, "inches")
  18757. },
  18758. {
  18759. name: "Crow",
  18760. height: math.unit(7 + 1 / 12, "feet"),
  18761. default: true
  18762. },
  18763. {
  18764. name: "Macrow",
  18765. height: math.unit(176, "feet")
  18766. },
  18767. ]
  18768. ))
  18769. characterMakers.push(() => makeCharacter(
  18770. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  18771. {
  18772. front: {
  18773. height: math.unit(5 + 7 / 12, "feet"),
  18774. weight: math.unit(147, "lb"),
  18775. name: "Front",
  18776. image: {
  18777. source: "./media/characters/natalie-kellon/front.svg",
  18778. extra: 1214 / 1141,
  18779. bottom: 0.02
  18780. }
  18781. },
  18782. },
  18783. [
  18784. {
  18785. name: "Micro",
  18786. height: math.unit(1 / 16, "inch")
  18787. },
  18788. {
  18789. name: "Tiny",
  18790. height: math.unit(4, "inches")
  18791. },
  18792. {
  18793. name: "Normal",
  18794. height: math.unit(5 + 7 / 12, "feet"),
  18795. default: true
  18796. },
  18797. {
  18798. name: "Amazon",
  18799. height: math.unit(12, "feet")
  18800. },
  18801. {
  18802. name: "Giantess",
  18803. height: math.unit(160, "meters")
  18804. },
  18805. {
  18806. name: "Titaness",
  18807. height: math.unit(800, "meters")
  18808. },
  18809. ]
  18810. ))
  18811. characterMakers.push(() => makeCharacter(
  18812. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  18813. {
  18814. front: {
  18815. height: math.unit(6, "feet"),
  18816. weight: math.unit(150, "lb"),
  18817. name: "Front",
  18818. image: {
  18819. source: "./media/characters/alluria/front.svg",
  18820. extra: 806 / 738,
  18821. bottom: 0.01
  18822. }
  18823. },
  18824. side: {
  18825. height: math.unit(6, "feet"),
  18826. weight: math.unit(150, "lb"),
  18827. name: "Side",
  18828. image: {
  18829. source: "./media/characters/alluria/side.svg",
  18830. extra: 800 / 750,
  18831. }
  18832. },
  18833. back: {
  18834. height: math.unit(6, "feet"),
  18835. weight: math.unit(150, "lb"),
  18836. name: "Back",
  18837. image: {
  18838. source: "./media/characters/alluria/back.svg",
  18839. extra: 806 / 738,
  18840. }
  18841. },
  18842. frontMaid: {
  18843. height: math.unit(6, "feet"),
  18844. weight: math.unit(150, "lb"),
  18845. name: "Front (Maid)",
  18846. image: {
  18847. source: "./media/characters/alluria/front-maid.svg",
  18848. extra: 806 / 738,
  18849. bottom: 0.01
  18850. }
  18851. },
  18852. sideMaid: {
  18853. height: math.unit(6, "feet"),
  18854. weight: math.unit(150, "lb"),
  18855. name: "Side (Maid)",
  18856. image: {
  18857. source: "./media/characters/alluria/side-maid.svg",
  18858. extra: 800 / 750,
  18859. bottom: 0.005
  18860. }
  18861. },
  18862. backMaid: {
  18863. height: math.unit(6, "feet"),
  18864. weight: math.unit(150, "lb"),
  18865. name: "Back (Maid)",
  18866. image: {
  18867. source: "./media/characters/alluria/back-maid.svg",
  18868. extra: 806 / 738,
  18869. }
  18870. },
  18871. },
  18872. [
  18873. {
  18874. name: "Micro",
  18875. height: math.unit(6, "inches"),
  18876. default: true
  18877. },
  18878. ]
  18879. ))
  18880. characterMakers.push(() => makeCharacter(
  18881. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  18882. {
  18883. front: {
  18884. height: math.unit(6, "feet"),
  18885. weight: math.unit(150, "lb"),
  18886. name: "Front",
  18887. image: {
  18888. source: "./media/characters/kyle/front.svg",
  18889. extra: 1069 / 962,
  18890. bottom: 77.228 / 1727.45
  18891. }
  18892. },
  18893. },
  18894. [
  18895. {
  18896. name: "Macro",
  18897. height: math.unit(150, "feet"),
  18898. default: true
  18899. },
  18900. ]
  18901. ))
  18902. characterMakers.push(() => makeCharacter(
  18903. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  18904. {
  18905. front: {
  18906. height: math.unit(6, "feet"),
  18907. weight: math.unit(300, "lb"),
  18908. name: "Front",
  18909. image: {
  18910. source: "./media/characters/duncan/front.svg",
  18911. extra: 1650 / 1482,
  18912. bottom: 0.05
  18913. }
  18914. },
  18915. },
  18916. [
  18917. {
  18918. name: "Macro",
  18919. height: math.unit(100, "feet"),
  18920. default: true
  18921. },
  18922. ]
  18923. ))
  18924. characterMakers.push(() => makeCharacter(
  18925. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  18926. {
  18927. front: {
  18928. height: math.unit(5 + 4 / 12, "feet"),
  18929. weight: math.unit(220, "lb"),
  18930. name: "Front",
  18931. image: {
  18932. source: "./media/characters/memory/front.svg",
  18933. extra: 3641 / 3545,
  18934. bottom: 0.03
  18935. }
  18936. },
  18937. back: {
  18938. height: math.unit(5 + 4 / 12, "feet"),
  18939. weight: math.unit(220, "lb"),
  18940. name: "Back",
  18941. image: {
  18942. source: "./media/characters/memory/back.svg",
  18943. extra: 3641 / 3545,
  18944. bottom: 0.025
  18945. }
  18946. },
  18947. frontSkirt: {
  18948. height: math.unit(5 + 4 / 12, "feet"),
  18949. weight: math.unit(220, "lb"),
  18950. name: "Front (Skirt)",
  18951. image: {
  18952. source: "./media/characters/memory/front-skirt.svg",
  18953. extra: 3641 / 3545,
  18954. bottom: 0.03
  18955. }
  18956. },
  18957. frontDress: {
  18958. height: math.unit(5 + 4 / 12, "feet"),
  18959. weight: math.unit(220, "lb"),
  18960. name: "Front (Dress)",
  18961. image: {
  18962. source: "./media/characters/memory/front-dress.svg",
  18963. extra: 3641 / 3545,
  18964. bottom: 0.03
  18965. }
  18966. },
  18967. },
  18968. [
  18969. {
  18970. name: "Micro",
  18971. height: math.unit(6, "inches"),
  18972. default: true
  18973. },
  18974. {
  18975. name: "Normal",
  18976. height: math.unit(5 + 4 / 12, "feet")
  18977. },
  18978. ]
  18979. ))
  18980. characterMakers.push(() => makeCharacter(
  18981. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  18982. {
  18983. front: {
  18984. height: math.unit(4 + 11 / 12, "feet"),
  18985. weight: math.unit(100, "lb"),
  18986. name: "Front",
  18987. image: {
  18988. source: "./media/characters/luno/front.svg",
  18989. extra: 1535 / 1487,
  18990. bottom: 0.03
  18991. }
  18992. },
  18993. },
  18994. [
  18995. {
  18996. name: "Micro",
  18997. height: math.unit(3, "inches")
  18998. },
  18999. {
  19000. name: "Normal",
  19001. height: math.unit(4 + 11 / 12, "feet"),
  19002. default: true
  19003. },
  19004. {
  19005. name: "Macro",
  19006. height: math.unit(300, "feet")
  19007. },
  19008. {
  19009. name: "Megamacro",
  19010. height: math.unit(700, "miles")
  19011. },
  19012. ]
  19013. ))
  19014. characterMakers.push(() => makeCharacter(
  19015. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  19016. {
  19017. front: {
  19018. height: math.unit(6 + 2 / 12, "feet"),
  19019. weight: math.unit(170, "lb"),
  19020. name: "Front",
  19021. image: {
  19022. source: "./media/characters/jamesy/front.svg",
  19023. extra: 440 / 382,
  19024. bottom: 0.005
  19025. }
  19026. },
  19027. },
  19028. [
  19029. {
  19030. name: "Micro",
  19031. height: math.unit(3, "inches")
  19032. },
  19033. {
  19034. name: "Normal",
  19035. height: math.unit(6 + 2 / 12, "feet"),
  19036. default: true
  19037. },
  19038. {
  19039. name: "Macro",
  19040. height: math.unit(300, "feet")
  19041. },
  19042. {
  19043. name: "Megamacro",
  19044. height: math.unit(700, "miles")
  19045. },
  19046. ]
  19047. ))
  19048. characterMakers.push(() => makeCharacter(
  19049. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  19050. {
  19051. front: {
  19052. height: math.unit(6, "feet"),
  19053. weight: math.unit(160, "lb"),
  19054. name: "Front",
  19055. image: {
  19056. source: "./media/characters/mark/front.svg",
  19057. extra: 3300 / 3100,
  19058. bottom: 136.42 / 3440.47
  19059. }
  19060. },
  19061. },
  19062. [
  19063. {
  19064. name: "Macro",
  19065. height: math.unit(120, "meters")
  19066. },
  19067. {
  19068. name: "Bigger Macro",
  19069. height: math.unit(350, "meters")
  19070. },
  19071. {
  19072. name: "Megamacro",
  19073. height: math.unit(8, "km"),
  19074. default: true
  19075. },
  19076. {
  19077. name: "Continental",
  19078. height: math.unit(4550, "km")
  19079. },
  19080. {
  19081. name: "Planetary",
  19082. height: math.unit(65000, "km")
  19083. },
  19084. ]
  19085. ))
  19086. characterMakers.push(() => makeCharacter(
  19087. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  19088. {
  19089. front: {
  19090. height: math.unit(6, "feet"),
  19091. weight: math.unit(400, "lb"),
  19092. name: "Front",
  19093. image: {
  19094. source: "./media/characters/mac/front.svg",
  19095. extra: 1048 / 987.7,
  19096. bottom: 60 / 1107.6,
  19097. }
  19098. },
  19099. },
  19100. [
  19101. {
  19102. name: "Macro",
  19103. height: math.unit(500, "feet"),
  19104. default: true
  19105. },
  19106. ]
  19107. ))
  19108. characterMakers.push(() => makeCharacter(
  19109. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  19110. {
  19111. front: {
  19112. height: math.unit(5 + 2 / 12, "feet"),
  19113. weight: math.unit(190, "lb"),
  19114. name: "Front",
  19115. image: {
  19116. source: "./media/characters/bari/front.svg",
  19117. extra: 3156 / 2880,
  19118. bottom: 0.03
  19119. }
  19120. },
  19121. back: {
  19122. height: math.unit(5 + 2 / 12, "feet"),
  19123. weight: math.unit(190, "lb"),
  19124. name: "Back",
  19125. image: {
  19126. source: "./media/characters/bari/back.svg",
  19127. extra: 3260 / 2834,
  19128. bottom: 0.025
  19129. }
  19130. },
  19131. frontPlush: {
  19132. height: math.unit(5 + 2 / 12, "feet"),
  19133. weight: math.unit(190, "lb"),
  19134. name: "Front (Plush)",
  19135. image: {
  19136. source: "./media/characters/bari/front-plush.svg",
  19137. extra: 1112 / 1061,
  19138. bottom: 0.002
  19139. }
  19140. },
  19141. },
  19142. [
  19143. {
  19144. name: "Micro",
  19145. height: math.unit(3, "inches")
  19146. },
  19147. {
  19148. name: "Normal",
  19149. height: math.unit(5 + 2 / 12, "feet"),
  19150. default: true
  19151. },
  19152. {
  19153. name: "Macro",
  19154. height: math.unit(20, "feet")
  19155. },
  19156. ]
  19157. ))
  19158. characterMakers.push(() => makeCharacter(
  19159. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  19160. {
  19161. front: {
  19162. height: math.unit(6 + 1 / 12, "feet"),
  19163. weight: math.unit(275, "lb"),
  19164. name: "Front",
  19165. image: {
  19166. source: "./media/characters/hunter-misha-raven/front.svg"
  19167. }
  19168. },
  19169. },
  19170. [
  19171. {
  19172. name: "Mortal",
  19173. height: math.unit(6 + 1 / 12, "feet")
  19174. },
  19175. {
  19176. name: "Divine",
  19177. height: math.unit(1.12134e34, "parsecs"),
  19178. default: true
  19179. },
  19180. ]
  19181. ))
  19182. characterMakers.push(() => makeCharacter(
  19183. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  19184. {
  19185. front: {
  19186. height: math.unit(6 + 3 / 12, "feet"),
  19187. weight: math.unit(220, "lb"),
  19188. name: "Front",
  19189. image: {
  19190. source: "./media/characters/max-calore/front.svg",
  19191. extra: 1700 / 1648,
  19192. bottom: 0.01
  19193. }
  19194. },
  19195. back: {
  19196. height: math.unit(6 + 3 / 12, "feet"),
  19197. weight: math.unit(220, "lb"),
  19198. name: "Back",
  19199. image: {
  19200. source: "./media/characters/max-calore/back.svg",
  19201. extra: 1700 / 1648,
  19202. bottom: 0.01
  19203. }
  19204. },
  19205. },
  19206. [
  19207. {
  19208. name: "Normal",
  19209. height: math.unit(6 + 3 / 12, "feet"),
  19210. default: true
  19211. },
  19212. ]
  19213. ))
  19214. characterMakers.push(() => makeCharacter(
  19215. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  19216. {
  19217. side: {
  19218. height: math.unit(2 + 8 / 12, "feet"),
  19219. weight: math.unit(99, "lb"),
  19220. name: "Side",
  19221. image: {
  19222. source: "./media/characters/aspen/side.svg",
  19223. extra: 152 / 138,
  19224. bottom: 0.032
  19225. }
  19226. },
  19227. },
  19228. [
  19229. {
  19230. name: "Normal",
  19231. height: math.unit(2 + 8 / 12, "feet"),
  19232. default: true
  19233. },
  19234. ]
  19235. ))
  19236. characterMakers.push(() => makeCharacter(
  19237. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  19238. {
  19239. side: {
  19240. height: math.unit(3 + 2 / 12, "feet"),
  19241. weight: math.unit(224, "lb"),
  19242. name: "Side",
  19243. image: {
  19244. source: "./media/characters/sheila-feral-wolf/side.svg",
  19245. extra: 179 / 166,
  19246. bottom: 0.03
  19247. }
  19248. },
  19249. },
  19250. [
  19251. {
  19252. name: "Normal",
  19253. height: math.unit(3 + 2 / 12, "feet"),
  19254. default: true
  19255. },
  19256. ]
  19257. ))
  19258. characterMakers.push(() => makeCharacter(
  19259. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  19260. {
  19261. side: {
  19262. height: math.unit(1 + 9 / 12, "feet"),
  19263. weight: math.unit(38, "lb"),
  19264. name: "Side",
  19265. image: {
  19266. source: "./media/characters/michelle/side.svg",
  19267. extra: 147 / 136.7,
  19268. bottom: 0.03
  19269. }
  19270. },
  19271. },
  19272. [
  19273. {
  19274. name: "Normal",
  19275. height: math.unit(1 + 9 / 12, "feet"),
  19276. default: true
  19277. },
  19278. ]
  19279. ))
  19280. characterMakers.push(() => makeCharacter(
  19281. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  19282. {
  19283. front: {
  19284. height: math.unit(1.54, "feet"),
  19285. weight: math.unit(50, "lb"),
  19286. name: "Front",
  19287. image: {
  19288. source: "./media/characters/nino/front.svg"
  19289. }
  19290. },
  19291. },
  19292. [
  19293. {
  19294. name: "Normal",
  19295. height: math.unit(1.54, "feet"),
  19296. default: true
  19297. },
  19298. ]
  19299. ))
  19300. characterMakers.push(() => makeCharacter(
  19301. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  19302. {
  19303. front: {
  19304. height: math.unit(1.49, "feet"),
  19305. weight: math.unit(45, "lb"),
  19306. name: "Front",
  19307. image: {
  19308. source: "./media/characters/viola/front.svg"
  19309. }
  19310. },
  19311. },
  19312. [
  19313. {
  19314. name: "Normal",
  19315. height: math.unit(1.49, "feet"),
  19316. default: true
  19317. },
  19318. ]
  19319. ))
  19320. characterMakers.push(() => makeCharacter(
  19321. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  19322. {
  19323. front: {
  19324. height: math.unit(6 + 5 / 12, "feet"),
  19325. weight: math.unit(580, "lb"),
  19326. name: "Front",
  19327. image: {
  19328. source: "./media/characters/atlas/front.svg",
  19329. extra: 298.5 / 290,
  19330. bottom: 0.015
  19331. }
  19332. },
  19333. },
  19334. [
  19335. {
  19336. name: "Normal",
  19337. height: math.unit(6 + 5 / 12, "feet"),
  19338. default: true
  19339. },
  19340. ]
  19341. ))
  19342. characterMakers.push(() => makeCharacter(
  19343. { name: "Davy", species: ["cat"], tags: ["feral"] },
  19344. {
  19345. side: {
  19346. height: math.unit(15.6, "inches"),
  19347. weight: math.unit(10, "lb"),
  19348. name: "Side",
  19349. image: {
  19350. source: "./media/characters/davy/side.svg",
  19351. extra: 200 / 170,
  19352. bottom: 0.01
  19353. }
  19354. },
  19355. },
  19356. [
  19357. {
  19358. name: "Normal",
  19359. height: math.unit(15.6, "inches"),
  19360. default: true
  19361. },
  19362. ]
  19363. ))
  19364. characterMakers.push(() => makeCharacter(
  19365. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  19366. {
  19367. side: {
  19368. height: math.unit(4 + 8 / 12, "feet"),
  19369. weight: math.unit(166, "lb"),
  19370. name: "Side",
  19371. image: {
  19372. source: "./media/characters/fiona/side.svg",
  19373. extra: 232 / 220,
  19374. bottom: 0.03
  19375. }
  19376. },
  19377. },
  19378. [
  19379. {
  19380. name: "Normal",
  19381. height: math.unit(4 + 8 / 12, "feet"),
  19382. default: true
  19383. },
  19384. ]
  19385. ))
  19386. characterMakers.push(() => makeCharacter(
  19387. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  19388. {
  19389. front: {
  19390. height: math.unit(26, "inches"),
  19391. weight: math.unit(35, "lb"),
  19392. name: "Front",
  19393. image: {
  19394. source: "./media/characters/lyla/front.svg",
  19395. bottom: 0.1
  19396. }
  19397. },
  19398. },
  19399. [
  19400. {
  19401. name: "Normal",
  19402. height: math.unit(3, "feet"),
  19403. default: true
  19404. },
  19405. ]
  19406. ))
  19407. characterMakers.push(() => makeCharacter(
  19408. { name: "Perseus", species: ["monitor-lizard", "deity"], tags: ["feral"] },
  19409. {
  19410. side: {
  19411. height: math.unit(1.8, "feet"),
  19412. weight: math.unit(44, "lb"),
  19413. name: "Side",
  19414. image: {
  19415. source: "./media/characters/perseus/side.svg",
  19416. bottom: 0.21
  19417. }
  19418. },
  19419. },
  19420. [
  19421. {
  19422. name: "Normal",
  19423. height: math.unit(1.8, "feet"),
  19424. default: true
  19425. },
  19426. ]
  19427. ))
  19428. characterMakers.push(() => makeCharacter(
  19429. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  19430. {
  19431. side: {
  19432. height: math.unit(4 + 2 / 12, "feet"),
  19433. weight: math.unit(20, "lb"),
  19434. name: "Side",
  19435. image: {
  19436. source: "./media/characters/remus/side.svg"
  19437. }
  19438. },
  19439. },
  19440. [
  19441. {
  19442. name: "Normal",
  19443. height: math.unit(4 + 2 / 12, "feet"),
  19444. default: true
  19445. },
  19446. ]
  19447. ))
  19448. characterMakers.push(() => makeCharacter(
  19449. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  19450. {
  19451. front: {
  19452. height: math.unit(4 + 11 / 12, "feet"),
  19453. weight: math.unit(114, "lb"),
  19454. name: "Front",
  19455. image: {
  19456. source: "./media/characters/raf/front.svg",
  19457. extra: 1504/1339,
  19458. bottom: 26/1530
  19459. }
  19460. },
  19461. side: {
  19462. height: math.unit(4 + 11 / 12, "feet"),
  19463. weight: math.unit(114, "lb"),
  19464. name: "Side",
  19465. image: {
  19466. source: "./media/characters/raf/side.svg",
  19467. extra: 1466/1316,
  19468. bottom: 29/1495
  19469. }
  19470. },
  19471. paw: {
  19472. height: math.unit(1.45, "feet"),
  19473. name: "Paw",
  19474. image: {
  19475. source: "./media/characters/raf/paw.svg"
  19476. },
  19477. extraAttributes: {
  19478. "toeSize": {
  19479. name: "Toe Size",
  19480. power: 2,
  19481. type: "area",
  19482. base: math.unit(0.004, "m^2")
  19483. },
  19484. "padSize": {
  19485. name: "Pad Size",
  19486. power: 2,
  19487. type: "area",
  19488. base: math.unit(0.04, "m^2")
  19489. },
  19490. "footSize": {
  19491. name: "Foot Size",
  19492. power: 2,
  19493. type: "area",
  19494. base: math.unit(0.08, "m^2")
  19495. },
  19496. }
  19497. },
  19498. },
  19499. [
  19500. {
  19501. name: "Micro",
  19502. height: math.unit(2, "inches")
  19503. },
  19504. {
  19505. name: "Normal",
  19506. height: math.unit(4 + 11 / 12, "feet"),
  19507. default: true
  19508. },
  19509. {
  19510. name: "Macro",
  19511. height: math.unit(70, "feet")
  19512. },
  19513. ]
  19514. ))
  19515. characterMakers.push(() => makeCharacter(
  19516. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  19517. {
  19518. front: {
  19519. height: math.unit(1.5, "meters"),
  19520. weight: math.unit(68, "kg"),
  19521. name: "Front",
  19522. image: {
  19523. source: "./media/characters/liam-einarr/front.svg",
  19524. extra: 2822 / 2666
  19525. }
  19526. },
  19527. back: {
  19528. height: math.unit(1.5, "meters"),
  19529. weight: math.unit(68, "kg"),
  19530. name: "Back",
  19531. image: {
  19532. source: "./media/characters/liam-einarr/back.svg",
  19533. extra: 2822 / 2666,
  19534. bottom: 0.015
  19535. }
  19536. },
  19537. },
  19538. [
  19539. {
  19540. name: "Normal",
  19541. height: math.unit(1.5, "meters"),
  19542. default: true
  19543. },
  19544. {
  19545. name: "Macro",
  19546. height: math.unit(150, "meters")
  19547. },
  19548. {
  19549. name: "Megamacro",
  19550. height: math.unit(35, "km")
  19551. },
  19552. ]
  19553. ))
  19554. characterMakers.push(() => makeCharacter(
  19555. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  19556. {
  19557. front: {
  19558. height: math.unit(6, "feet"),
  19559. weight: math.unit(75, "kg"),
  19560. name: "Front",
  19561. image: {
  19562. source: "./media/characters/linda/front.svg",
  19563. extra: 930 / 874,
  19564. bottom: 0.004
  19565. }
  19566. },
  19567. },
  19568. [
  19569. {
  19570. name: "Normal",
  19571. height: math.unit(6, "feet"),
  19572. default: true
  19573. },
  19574. ]
  19575. ))
  19576. characterMakers.push(() => makeCharacter(
  19577. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  19578. {
  19579. front: {
  19580. height: math.unit(6 + 8 / 12, "feet"),
  19581. weight: math.unit(220, "lb"),
  19582. name: "Front",
  19583. image: {
  19584. source: "./media/characters/caylex/front.svg",
  19585. extra: 821 / 772,
  19586. bottom: 0.07
  19587. }
  19588. },
  19589. back: {
  19590. height: math.unit(6 + 8 / 12, "feet"),
  19591. weight: math.unit(220, "lb"),
  19592. name: "Back",
  19593. image: {
  19594. source: "./media/characters/caylex/back.svg",
  19595. extra: 821 / 772,
  19596. bottom: 0.022
  19597. }
  19598. },
  19599. hand: {
  19600. height: math.unit(1.25, "feet"),
  19601. name: "Hand",
  19602. image: {
  19603. source: "./media/characters/caylex/hand.svg"
  19604. }
  19605. },
  19606. foot: {
  19607. height: math.unit(1.6, "feet"),
  19608. name: "Foot",
  19609. image: {
  19610. source: "./media/characters/caylex/foot.svg"
  19611. }
  19612. },
  19613. armored: {
  19614. height: math.unit(6 + 8 / 12, "feet"),
  19615. weight: math.unit(250, "lb"),
  19616. name: "Armored",
  19617. image: {
  19618. source: "./media/characters/caylex/armored.svg",
  19619. extra: 1420 / 1310,
  19620. bottom: 0.045
  19621. }
  19622. },
  19623. },
  19624. [
  19625. {
  19626. name: "Normal",
  19627. height: math.unit(6 + 8 / 12, "feet"),
  19628. default: true
  19629. },
  19630. {
  19631. name: "Normal+",
  19632. height: math.unit(12, "feet")
  19633. },
  19634. ]
  19635. ))
  19636. characterMakers.push(() => makeCharacter(
  19637. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  19638. {
  19639. front: {
  19640. height: math.unit(7 + 6 / 12, "feet"),
  19641. weight: math.unit(288, "lb"),
  19642. name: "Front",
  19643. image: {
  19644. source: "./media/characters/alana/front.svg",
  19645. extra: 679 / 653,
  19646. bottom: 22.5 / 701
  19647. }
  19648. },
  19649. },
  19650. [
  19651. {
  19652. name: "Normal",
  19653. height: math.unit(7 + 6 / 12, "feet")
  19654. },
  19655. {
  19656. name: "Large",
  19657. height: math.unit(50, "feet")
  19658. },
  19659. {
  19660. name: "Macro",
  19661. height: math.unit(100, "feet"),
  19662. default: true
  19663. },
  19664. {
  19665. name: "Macro+",
  19666. height: math.unit(200, "feet")
  19667. },
  19668. ]
  19669. ))
  19670. characterMakers.push(() => makeCharacter(
  19671. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  19672. {
  19673. front: {
  19674. height: math.unit(6 + 1 / 12, "feet"),
  19675. weight: math.unit(210, "lb"),
  19676. name: "Front",
  19677. image: {
  19678. source: "./media/characters/hasani/front.svg",
  19679. extra: 244 / 232,
  19680. bottom: 0.01
  19681. }
  19682. },
  19683. back: {
  19684. height: math.unit(6 + 1 / 12, "feet"),
  19685. weight: math.unit(210, "lb"),
  19686. name: "Back",
  19687. image: {
  19688. source: "./media/characters/hasani/back.svg",
  19689. extra: 244 / 232,
  19690. bottom: 0.01
  19691. }
  19692. },
  19693. },
  19694. [
  19695. {
  19696. name: "Normal",
  19697. height: math.unit(6 + 1 / 12, "feet")
  19698. },
  19699. {
  19700. name: "Macro",
  19701. height: math.unit(175, "feet"),
  19702. default: true
  19703. },
  19704. ]
  19705. ))
  19706. characterMakers.push(() => makeCharacter(
  19707. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  19708. {
  19709. front: {
  19710. height: math.unit(1.82, "meters"),
  19711. weight: math.unit(140, "lb"),
  19712. name: "Front",
  19713. image: {
  19714. source: "./media/characters/nita/front.svg",
  19715. extra: 2473 / 2363,
  19716. bottom: 0.01
  19717. }
  19718. },
  19719. },
  19720. [
  19721. {
  19722. name: "Normal",
  19723. height: math.unit(1.82, "m")
  19724. },
  19725. {
  19726. name: "Macro",
  19727. height: math.unit(300, "m")
  19728. },
  19729. {
  19730. name: "Mistake Canon",
  19731. height: math.unit(0.5, "miles"),
  19732. default: true
  19733. },
  19734. {
  19735. name: "Big Mistake",
  19736. height: math.unit(13, "miles")
  19737. },
  19738. {
  19739. name: "Playing God",
  19740. height: math.unit(2450, "miles")
  19741. },
  19742. ]
  19743. ))
  19744. characterMakers.push(() => makeCharacter(
  19745. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  19746. {
  19747. front: {
  19748. height: math.unit(4, "feet"),
  19749. weight: math.unit(120, "lb"),
  19750. name: "Front",
  19751. image: {
  19752. source: "./media/characters/shiriko/front.svg",
  19753. extra: 970/934,
  19754. bottom: 5/975
  19755. }
  19756. },
  19757. },
  19758. [
  19759. {
  19760. name: "Normal",
  19761. height: math.unit(4, "feet"),
  19762. default: true
  19763. },
  19764. ]
  19765. ))
  19766. characterMakers.push(() => makeCharacter(
  19767. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  19768. {
  19769. front: {
  19770. height: math.unit(6, "feet"),
  19771. name: "front",
  19772. image: {
  19773. source: "./media/characters/deja/front.svg",
  19774. extra: 926 / 840,
  19775. bottom: 0.07
  19776. }
  19777. },
  19778. },
  19779. [
  19780. {
  19781. name: "Planck Length",
  19782. height: math.unit(1.6e-35, "meters")
  19783. },
  19784. {
  19785. name: "Normal",
  19786. height: math.unit(30.48, "meters"),
  19787. default: true
  19788. },
  19789. {
  19790. name: "Universal",
  19791. height: math.unit(8.8e26, "meters")
  19792. },
  19793. ]
  19794. ))
  19795. characterMakers.push(() => makeCharacter(
  19796. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  19797. {
  19798. side: {
  19799. height: math.unit(8, "feet"),
  19800. weight: math.unit(6300, "lb"),
  19801. name: "Side",
  19802. image: {
  19803. source: "./media/characters/anima/side.svg",
  19804. bottom: 0.035
  19805. }
  19806. },
  19807. },
  19808. [
  19809. {
  19810. name: "Normal",
  19811. height: math.unit(8, "feet"),
  19812. default: true
  19813. },
  19814. ]
  19815. ))
  19816. characterMakers.push(() => makeCharacter(
  19817. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  19818. {
  19819. front: {
  19820. height: math.unit(8, "feet"),
  19821. weight: math.unit(350, "lb"),
  19822. name: "Front",
  19823. image: {
  19824. source: "./media/characters/bianca/front.svg",
  19825. extra: 234 / 225,
  19826. bottom: 0.03
  19827. }
  19828. },
  19829. },
  19830. [
  19831. {
  19832. name: "Normal",
  19833. height: math.unit(8, "feet"),
  19834. default: true
  19835. },
  19836. ]
  19837. ))
  19838. characterMakers.push(() => makeCharacter(
  19839. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  19840. {
  19841. front: {
  19842. height: math.unit(11 + 5/12, "feet"),
  19843. weight: math.unit(1200, "lb"),
  19844. name: "Front",
  19845. image: {
  19846. source: "./media/characters/adinia/front.svg",
  19847. extra: 1767/1641,
  19848. bottom: 44/1811
  19849. },
  19850. extraAttributes: {
  19851. "energyIntake": {
  19852. name: "Energy Intake",
  19853. power: 3,
  19854. type: "energy",
  19855. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19856. },
  19857. }
  19858. },
  19859. back: {
  19860. height: math.unit(11 + 5/12, "feet"),
  19861. weight: math.unit(1200, "lb"),
  19862. name: "Back",
  19863. image: {
  19864. source: "./media/characters/adinia/back.svg",
  19865. extra: 1834/1684,
  19866. bottom: 14/1848
  19867. },
  19868. extraAttributes: {
  19869. "energyIntake": {
  19870. name: "Energy Intake",
  19871. power: 3,
  19872. type: "energy",
  19873. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19874. },
  19875. }
  19876. },
  19877. maw: {
  19878. height: math.unit(3.79, "feet"),
  19879. name: "Maw",
  19880. image: {
  19881. source: "./media/characters/adinia/maw.svg"
  19882. }
  19883. },
  19884. rump: {
  19885. height: math.unit(4.6, "feet"),
  19886. name: "Rump",
  19887. image: {
  19888. source: "./media/characters/adinia/rump.svg"
  19889. }
  19890. },
  19891. },
  19892. [
  19893. {
  19894. name: "Normal",
  19895. height: math.unit(11 + 5 / 12, "feet"),
  19896. default: true
  19897. },
  19898. ]
  19899. ))
  19900. characterMakers.push(() => makeCharacter(
  19901. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  19902. {
  19903. front: {
  19904. height: math.unit(3, "meters"),
  19905. weight: math.unit(200, "kg"),
  19906. name: "Front",
  19907. image: {
  19908. source: "./media/characters/lykasa/front.svg",
  19909. extra: 1076 / 976,
  19910. bottom: 0.06
  19911. }
  19912. },
  19913. },
  19914. [
  19915. {
  19916. name: "Normal",
  19917. height: math.unit(3, "meters")
  19918. },
  19919. {
  19920. name: "Kaiju",
  19921. height: math.unit(120, "meters"),
  19922. default: true
  19923. },
  19924. {
  19925. name: "Mega Kaiju",
  19926. height: math.unit(240, "km")
  19927. },
  19928. {
  19929. name: "Giga Kaiju",
  19930. height: math.unit(400, "megameters")
  19931. },
  19932. {
  19933. name: "Tera Kaiju",
  19934. height: math.unit(800, "gigameters")
  19935. },
  19936. {
  19937. name: "Kaiju Dragon Goddess",
  19938. height: math.unit(26, "zettaparsecs")
  19939. },
  19940. ]
  19941. ))
  19942. characterMakers.push(() => makeCharacter(
  19943. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  19944. {
  19945. side: {
  19946. height: math.unit(283 / 124 * 6, "feet"),
  19947. weight: math.unit(35000, "lb"),
  19948. name: "Side",
  19949. image: {
  19950. source: "./media/characters/malfaren/side.svg",
  19951. extra: 1310/529,
  19952. bottom: 24/1334
  19953. }
  19954. },
  19955. front: {
  19956. height: math.unit(22.36, "feet"),
  19957. weight: math.unit(35000, "lb"),
  19958. name: "Front",
  19959. image: {
  19960. source: "./media/characters/malfaren/front.svg",
  19961. extra: 1237/1115,
  19962. bottom: 32/1269
  19963. }
  19964. },
  19965. maw: {
  19966. height: math.unit(6.9, "feet"),
  19967. name: "Maw",
  19968. image: {
  19969. source: "./media/characters/malfaren/maw.svg"
  19970. }
  19971. },
  19972. dick: {
  19973. height: math.unit(6.19, "feet"),
  19974. name: "Dick",
  19975. image: {
  19976. source: "./media/characters/malfaren/dick.svg"
  19977. }
  19978. },
  19979. eye: {
  19980. height: math.unit(0.69, "feet"),
  19981. name: "Eye",
  19982. image: {
  19983. source: "./media/characters/malfaren/eye.svg"
  19984. }
  19985. },
  19986. },
  19987. [
  19988. {
  19989. name: "Big",
  19990. height: math.unit(283 / 162 * 6, "feet"),
  19991. },
  19992. {
  19993. name: "Bigger",
  19994. height: math.unit(283 / 124 * 6, "feet")
  19995. },
  19996. {
  19997. name: "Massive",
  19998. height: math.unit(283 / 92 * 6, "feet"),
  19999. default: true
  20000. },
  20001. {
  20002. name: "👀💦",
  20003. height: math.unit(283 / 73 * 6, "feet"),
  20004. },
  20005. ]
  20006. ))
  20007. characterMakers.push(() => makeCharacter(
  20008. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  20009. {
  20010. front: {
  20011. height: math.unit(1.7, "m"),
  20012. weight: math.unit(70, "kg"),
  20013. name: "Front",
  20014. image: {
  20015. source: "./media/characters/kernel/front.svg",
  20016. extra: 1960/1821,
  20017. bottom: 17/1977
  20018. }
  20019. },
  20020. },
  20021. [
  20022. {
  20023. name: "Nano",
  20024. height: math.unit(17, "micrometers")
  20025. },
  20026. {
  20027. name: "Micro",
  20028. height: math.unit(1.7, "mm")
  20029. },
  20030. {
  20031. name: "Small",
  20032. height: math.unit(1.7, "cm")
  20033. },
  20034. {
  20035. name: "Normal",
  20036. height: math.unit(1.7, "m"),
  20037. default: true
  20038. },
  20039. ]
  20040. ))
  20041. characterMakers.push(() => makeCharacter(
  20042. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  20043. {
  20044. front: {
  20045. height: math.unit(1.75, "meters"),
  20046. weight: math.unit(65, "kg"),
  20047. name: "Front",
  20048. image: {
  20049. source: "./media/characters/jayne-folest/front.svg",
  20050. extra: 2115 / 2007,
  20051. bottom: 0.02
  20052. }
  20053. },
  20054. back: {
  20055. height: math.unit(1.75, "meters"),
  20056. weight: math.unit(65, "kg"),
  20057. name: "Back",
  20058. image: {
  20059. source: "./media/characters/jayne-folest/back.svg",
  20060. extra: 2115 / 2007,
  20061. bottom: 0.005
  20062. }
  20063. },
  20064. frontClothed: {
  20065. height: math.unit(1.75, "meters"),
  20066. weight: math.unit(65, "kg"),
  20067. name: "Front (Clothed)",
  20068. image: {
  20069. source: "./media/characters/jayne-folest/front-clothed.svg",
  20070. extra: 2115 / 2007,
  20071. bottom: 0.035
  20072. }
  20073. },
  20074. hand: {
  20075. height: math.unit(1 / 1.260, "feet"),
  20076. name: "Hand",
  20077. image: {
  20078. source: "./media/characters/jayne-folest/hand.svg"
  20079. }
  20080. },
  20081. foot: {
  20082. height: math.unit(1 / 0.918, "feet"),
  20083. name: "Foot",
  20084. image: {
  20085. source: "./media/characters/jayne-folest/foot.svg"
  20086. }
  20087. },
  20088. },
  20089. [
  20090. {
  20091. name: "Micro",
  20092. height: math.unit(4, "cm")
  20093. },
  20094. {
  20095. name: "Normal",
  20096. height: math.unit(1.75, "meters")
  20097. },
  20098. {
  20099. name: "Macro",
  20100. height: math.unit(47.5, "meters"),
  20101. default: true
  20102. },
  20103. ]
  20104. ))
  20105. characterMakers.push(() => makeCharacter(
  20106. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  20107. {
  20108. front: {
  20109. height: math.unit(180, "cm"),
  20110. weight: math.unit(70, "kg"),
  20111. name: "Front",
  20112. image: {
  20113. source: "./media/characters/algier/front.svg",
  20114. extra: 596 / 572,
  20115. bottom: 0.04
  20116. }
  20117. },
  20118. back: {
  20119. height: math.unit(180, "cm"),
  20120. weight: math.unit(70, "kg"),
  20121. name: "Back",
  20122. image: {
  20123. source: "./media/characters/algier/back.svg",
  20124. extra: 596 / 572,
  20125. bottom: 0.025
  20126. }
  20127. },
  20128. frontdressed: {
  20129. height: math.unit(180, "cm"),
  20130. weight: math.unit(150, "kg"),
  20131. name: "Front-dressed",
  20132. image: {
  20133. source: "./media/characters/algier/front-dressed.svg",
  20134. extra: 596 / 572,
  20135. bottom: 0.038
  20136. }
  20137. },
  20138. },
  20139. [
  20140. {
  20141. name: "Micro",
  20142. height: math.unit(5, "cm")
  20143. },
  20144. {
  20145. name: "Normal",
  20146. height: math.unit(180, "cm"),
  20147. default: true
  20148. },
  20149. {
  20150. name: "Macro",
  20151. height: math.unit(64, "m")
  20152. },
  20153. ]
  20154. ))
  20155. characterMakers.push(() => makeCharacter(
  20156. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  20157. {
  20158. upright: {
  20159. height: math.unit(7, "feet"),
  20160. weight: math.unit(300, "lb"),
  20161. name: "Upright",
  20162. image: {
  20163. source: "./media/characters/pretzel/upright.svg",
  20164. extra: 534 / 522,
  20165. bottom: 0.065
  20166. }
  20167. },
  20168. sprawling: {
  20169. height: math.unit(3.75, "feet"),
  20170. weight: math.unit(300, "lb"),
  20171. name: "Sprawling",
  20172. image: {
  20173. source: "./media/characters/pretzel/sprawling.svg",
  20174. extra: 314 / 281,
  20175. bottom: 0.1
  20176. }
  20177. },
  20178. tongue: {
  20179. height: math.unit(2, "feet"),
  20180. name: "Tongue",
  20181. image: {
  20182. source: "./media/characters/pretzel/tongue.svg"
  20183. }
  20184. },
  20185. },
  20186. [
  20187. {
  20188. name: "Normal",
  20189. height: math.unit(7, "feet"),
  20190. default: true
  20191. },
  20192. {
  20193. name: "Oversized",
  20194. height: math.unit(15, "feet")
  20195. },
  20196. {
  20197. name: "Huge",
  20198. height: math.unit(30, "feet")
  20199. },
  20200. {
  20201. name: "Macro",
  20202. height: math.unit(250, "feet")
  20203. },
  20204. ]
  20205. ))
  20206. characterMakers.push(() => makeCharacter(
  20207. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  20208. {
  20209. sideFront: {
  20210. height: math.unit(5 + 2 / 12, "feet"),
  20211. weight: math.unit(120, "lb"),
  20212. name: "Front Side",
  20213. image: {
  20214. source: "./media/characters/roxi/side-front.svg",
  20215. extra: 2924 / 2717,
  20216. bottom: 0.08
  20217. }
  20218. },
  20219. sideBack: {
  20220. height: math.unit(5 + 2 / 12, "feet"),
  20221. weight: math.unit(120, "lb"),
  20222. name: "Back Side",
  20223. image: {
  20224. source: "./media/characters/roxi/side-back.svg",
  20225. extra: 2904 / 2693,
  20226. bottom: 0.06
  20227. }
  20228. },
  20229. front: {
  20230. height: math.unit(5 + 2 / 12, "feet"),
  20231. weight: math.unit(120, "lb"),
  20232. name: "Front",
  20233. image: {
  20234. source: "./media/characters/roxi/front.svg",
  20235. extra: 2028 / 1907,
  20236. bottom: 0.01
  20237. }
  20238. },
  20239. frontAlt: {
  20240. height: math.unit(5 + 2 / 12, "feet"),
  20241. weight: math.unit(120, "lb"),
  20242. name: "Front (Alt)",
  20243. image: {
  20244. source: "./media/characters/roxi/front-alt.svg",
  20245. extra: 1828 / 1798,
  20246. bottom: 0.01
  20247. }
  20248. },
  20249. sitting: {
  20250. height: math.unit(2.8, "feet"),
  20251. weight: math.unit(120, "lb"),
  20252. name: "Sitting",
  20253. image: {
  20254. source: "./media/characters/roxi/sitting.svg",
  20255. extra: 2660 / 2462,
  20256. bottom: 0.1
  20257. }
  20258. },
  20259. },
  20260. [
  20261. {
  20262. name: "Normal",
  20263. height: math.unit(5 + 2 / 12, "feet"),
  20264. default: true
  20265. },
  20266. ]
  20267. ))
  20268. characterMakers.push(() => makeCharacter(
  20269. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  20270. {
  20271. side: {
  20272. height: math.unit(55, "feet"),
  20273. weight: math.unit(153, "tons"),
  20274. name: "Side",
  20275. image: {
  20276. source: "./media/characters/shadow/side.svg",
  20277. extra: 701 / 628,
  20278. bottom: 0.02
  20279. }
  20280. },
  20281. flying: {
  20282. height: math.unit(145, "feet"),
  20283. weight: math.unit(153, "tons"),
  20284. name: "Flying",
  20285. image: {
  20286. source: "./media/characters/shadow/flying.svg"
  20287. }
  20288. },
  20289. },
  20290. [
  20291. {
  20292. name: "Normal",
  20293. height: math.unit(55, "feet"),
  20294. default: true
  20295. },
  20296. ]
  20297. ))
  20298. characterMakers.push(() => makeCharacter(
  20299. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  20300. {
  20301. front: {
  20302. height: math.unit(6, "feet"),
  20303. weight: math.unit(200, "lb"),
  20304. name: "Front",
  20305. image: {
  20306. source: "./media/characters/marcie/front.svg",
  20307. extra: 960 / 876,
  20308. bottom: 58 / 1017.87
  20309. }
  20310. },
  20311. },
  20312. [
  20313. {
  20314. name: "Macro",
  20315. height: math.unit(1, "mile"),
  20316. default: true
  20317. },
  20318. ]
  20319. ))
  20320. characterMakers.push(() => makeCharacter(
  20321. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  20322. {
  20323. front: {
  20324. height: math.unit(7, "feet"),
  20325. weight: math.unit(200, "lb"),
  20326. name: "Front",
  20327. image: {
  20328. source: "./media/characters/kachina/front.svg",
  20329. extra: 3206/2764,
  20330. bottom: 140/3346
  20331. }
  20332. },
  20333. },
  20334. [
  20335. {
  20336. name: "Normal",
  20337. height: math.unit(7, "feet"),
  20338. default: true
  20339. },
  20340. ]
  20341. ))
  20342. characterMakers.push(() => makeCharacter(
  20343. { name: "Kash", species: ["canine"], tags: ["feral"] },
  20344. {
  20345. looking: {
  20346. height: math.unit(2, "meters"),
  20347. weight: math.unit(300, "kg"),
  20348. name: "Looking",
  20349. image: {
  20350. source: "./media/characters/kash/looking.svg",
  20351. extra: 474 / 344,
  20352. bottom: 0.03
  20353. }
  20354. },
  20355. side: {
  20356. height: math.unit(2, "meters"),
  20357. weight: math.unit(300, "kg"),
  20358. name: "Side",
  20359. image: {
  20360. source: "./media/characters/kash/side.svg",
  20361. extra: 302 / 251,
  20362. bottom: 0.03
  20363. }
  20364. },
  20365. front: {
  20366. height: math.unit(2, "meters"),
  20367. weight: math.unit(300, "kg"),
  20368. name: "Front",
  20369. image: {
  20370. source: "./media/characters/kash/front.svg",
  20371. extra: 495 / 360,
  20372. bottom: 0.015
  20373. }
  20374. },
  20375. },
  20376. [
  20377. {
  20378. name: "Normal",
  20379. height: math.unit(2, "meters"),
  20380. default: true
  20381. },
  20382. {
  20383. name: "Big",
  20384. height: math.unit(3, "meters")
  20385. },
  20386. {
  20387. name: "Large",
  20388. height: math.unit(5, "meters")
  20389. },
  20390. ]
  20391. ))
  20392. characterMakers.push(() => makeCharacter(
  20393. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  20394. {
  20395. feeding: {
  20396. height: math.unit(6.7, "feet"),
  20397. weight: math.unit(350, "lb"),
  20398. name: "Feeding",
  20399. image: {
  20400. source: "./media/characters/lalim/feeding.svg",
  20401. }
  20402. },
  20403. },
  20404. [
  20405. {
  20406. name: "Normal",
  20407. height: math.unit(6.7, "feet"),
  20408. default: true
  20409. },
  20410. ]
  20411. ))
  20412. characterMakers.push(() => makeCharacter(
  20413. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  20414. {
  20415. front: {
  20416. height: math.unit(9.5, "feet"),
  20417. weight: math.unit(600, "lb"),
  20418. name: "Front",
  20419. image: {
  20420. source: "./media/characters/de'vout/front.svg",
  20421. extra: 1443 / 1328,
  20422. bottom: 0.025
  20423. }
  20424. },
  20425. back: {
  20426. height: math.unit(9.5, "feet"),
  20427. weight: math.unit(600, "lb"),
  20428. name: "Back",
  20429. image: {
  20430. source: "./media/characters/de'vout/back.svg",
  20431. extra: 1443 / 1328
  20432. }
  20433. },
  20434. frontDressed: {
  20435. height: math.unit(9.5, "feet"),
  20436. weight: math.unit(600, "lb"),
  20437. name: "Front (Dressed",
  20438. image: {
  20439. source: "./media/characters/de'vout/front-dressed.svg",
  20440. extra: 1443 / 1328,
  20441. bottom: 0.025
  20442. }
  20443. },
  20444. backDressed: {
  20445. height: math.unit(9.5, "feet"),
  20446. weight: math.unit(600, "lb"),
  20447. name: "Back (Dressed",
  20448. image: {
  20449. source: "./media/characters/de'vout/back-dressed.svg",
  20450. extra: 1443 / 1328
  20451. }
  20452. },
  20453. },
  20454. [
  20455. {
  20456. name: "Normal",
  20457. height: math.unit(9.5, "feet"),
  20458. default: true
  20459. },
  20460. ]
  20461. ))
  20462. characterMakers.push(() => makeCharacter(
  20463. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  20464. {
  20465. front: {
  20466. height: math.unit(8, "feet"),
  20467. weight: math.unit(225, "lb"),
  20468. name: "Front",
  20469. image: {
  20470. source: "./media/characters/talana/front.svg",
  20471. extra: 1410 / 1300,
  20472. bottom: 0.015
  20473. }
  20474. },
  20475. frontDressed: {
  20476. height: math.unit(8, "feet"),
  20477. weight: math.unit(225, "lb"),
  20478. name: "Front (Dressed",
  20479. image: {
  20480. source: "./media/characters/talana/front-dressed.svg",
  20481. extra: 1410 / 1300,
  20482. bottom: 0.015
  20483. }
  20484. },
  20485. },
  20486. [
  20487. {
  20488. name: "Normal",
  20489. height: math.unit(8, "feet"),
  20490. default: true
  20491. },
  20492. ]
  20493. ))
  20494. characterMakers.push(() => makeCharacter(
  20495. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  20496. {
  20497. side: {
  20498. height: math.unit(7.2, "feet"),
  20499. weight: math.unit(150, "lb"),
  20500. name: "Side",
  20501. image: {
  20502. source: "./media/characters/xeauvok/side.svg",
  20503. extra: 1975 / 1523,
  20504. bottom: 0.07
  20505. }
  20506. },
  20507. },
  20508. [
  20509. {
  20510. name: "Normal",
  20511. height: math.unit(7.2, "feet"),
  20512. default: true
  20513. },
  20514. ]
  20515. ))
  20516. characterMakers.push(() => makeCharacter(
  20517. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  20518. {
  20519. side: {
  20520. height: math.unit(4, "meters"),
  20521. weight: math.unit(2200, "kg"),
  20522. name: "Side",
  20523. image: {
  20524. source: "./media/characters/zara/side.svg",
  20525. extra: 765/744,
  20526. bottom: 156/921
  20527. }
  20528. },
  20529. },
  20530. [
  20531. {
  20532. name: "Normal",
  20533. height: math.unit(4, "meters"),
  20534. default: true
  20535. },
  20536. ]
  20537. ))
  20538. characterMakers.push(() => makeCharacter(
  20539. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  20540. {
  20541. side: {
  20542. height: math.unit(6, "feet"),
  20543. weight: math.unit(150, "lb"),
  20544. name: "Side",
  20545. image: {
  20546. source: "./media/characters/richard-dragon/side.svg",
  20547. extra: 845 / 340,
  20548. bottom: 0.017
  20549. }
  20550. },
  20551. maw: {
  20552. height: math.unit(2.97, "feet"),
  20553. name: "Maw",
  20554. image: {
  20555. source: "./media/characters/richard-dragon/maw.svg"
  20556. }
  20557. },
  20558. },
  20559. [
  20560. ]
  20561. ))
  20562. characterMakers.push(() => makeCharacter(
  20563. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  20564. {
  20565. front: {
  20566. height: math.unit(4, "feet"),
  20567. weight: math.unit(100, "lb"),
  20568. name: "Front",
  20569. image: {
  20570. source: "./media/characters/richard-smeargle/front.svg",
  20571. extra: 2952 / 2820,
  20572. bottom: 0.028
  20573. }
  20574. },
  20575. },
  20576. [
  20577. {
  20578. name: "Normal",
  20579. height: math.unit(4, "feet"),
  20580. default: true
  20581. },
  20582. {
  20583. name: "Dynamax",
  20584. height: math.unit(20, "meters")
  20585. },
  20586. ]
  20587. ))
  20588. characterMakers.push(() => makeCharacter(
  20589. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  20590. {
  20591. front: {
  20592. height: math.unit(6, "feet"),
  20593. weight: math.unit(110, "lb"),
  20594. name: "Front",
  20595. image: {
  20596. source: "./media/characters/klay/front.svg",
  20597. extra: 962 / 883,
  20598. bottom: 0.04
  20599. }
  20600. },
  20601. back: {
  20602. height: math.unit(6, "feet"),
  20603. weight: math.unit(110, "lb"),
  20604. name: "Back",
  20605. image: {
  20606. source: "./media/characters/klay/back.svg",
  20607. extra: 962 / 883
  20608. }
  20609. },
  20610. beans: {
  20611. height: math.unit(1.15, "feet"),
  20612. name: "Beans",
  20613. image: {
  20614. source: "./media/characters/klay/beans.svg"
  20615. }
  20616. },
  20617. },
  20618. [
  20619. {
  20620. name: "Micro",
  20621. height: math.unit(6, "inches")
  20622. },
  20623. {
  20624. name: "Mini",
  20625. height: math.unit(3, "feet")
  20626. },
  20627. {
  20628. name: "Normal",
  20629. height: math.unit(6, "feet"),
  20630. default: true
  20631. },
  20632. {
  20633. name: "Big",
  20634. height: math.unit(25, "feet")
  20635. },
  20636. {
  20637. name: "Macro",
  20638. height: math.unit(100, "feet")
  20639. },
  20640. {
  20641. name: "Megamacro",
  20642. height: math.unit(400, "feet")
  20643. },
  20644. ]
  20645. ))
  20646. characterMakers.push(() => makeCharacter(
  20647. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  20648. {
  20649. front: {
  20650. height: math.unit(6, "feet"),
  20651. weight: math.unit(160, "lb"),
  20652. name: "Front",
  20653. image: {
  20654. source: "./media/characters/marcus/front.svg",
  20655. extra: 734 / 676,
  20656. bottom: 0.03
  20657. }
  20658. },
  20659. },
  20660. [
  20661. {
  20662. name: "Little",
  20663. height: math.unit(6, "feet")
  20664. },
  20665. {
  20666. name: "Normal",
  20667. height: math.unit(110, "feet"),
  20668. default: true
  20669. },
  20670. {
  20671. name: "Macro",
  20672. height: math.unit(250, "feet")
  20673. },
  20674. {
  20675. name: "Megamacro",
  20676. height: math.unit(1000, "feet")
  20677. },
  20678. ]
  20679. ))
  20680. characterMakers.push(() => makeCharacter(
  20681. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  20682. {
  20683. front: {
  20684. height: math.unit(7, "feet"),
  20685. weight: math.unit(275, "lb"),
  20686. name: "Front",
  20687. image: {
  20688. source: "./media/characters/claude-delroute/front.svg",
  20689. extra: 902/827,
  20690. bottom: 26/928
  20691. }
  20692. },
  20693. side: {
  20694. height: math.unit(7, "feet"),
  20695. weight: math.unit(275, "lb"),
  20696. name: "Side",
  20697. image: {
  20698. source: "./media/characters/claude-delroute/side.svg",
  20699. extra: 908/853,
  20700. bottom: 16/924
  20701. }
  20702. },
  20703. back: {
  20704. height: math.unit(7, "feet"),
  20705. weight: math.unit(275, "lb"),
  20706. name: "Back",
  20707. image: {
  20708. source: "./media/characters/claude-delroute/back.svg",
  20709. extra: 911/829,
  20710. bottom: 18/929
  20711. }
  20712. },
  20713. maw: {
  20714. height: math.unit(0.6407, "meters"),
  20715. name: "Maw",
  20716. image: {
  20717. source: "./media/characters/claude-delroute/maw.svg"
  20718. }
  20719. },
  20720. },
  20721. [
  20722. {
  20723. name: "Normal",
  20724. height: math.unit(7, "feet"),
  20725. default: true
  20726. },
  20727. {
  20728. name: "Lorge",
  20729. height: math.unit(20, "feet")
  20730. },
  20731. ]
  20732. ))
  20733. characterMakers.push(() => makeCharacter(
  20734. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  20735. {
  20736. front: {
  20737. height: math.unit(8 + 4 / 12, "feet"),
  20738. weight: math.unit(600, "lb"),
  20739. name: "Front",
  20740. image: {
  20741. source: "./media/characters/dragonien/front.svg",
  20742. extra: 100 / 94,
  20743. bottom: 3.3 / 103.3445
  20744. }
  20745. },
  20746. back: {
  20747. height: math.unit(8 + 4 / 12, "feet"),
  20748. weight: math.unit(600, "lb"),
  20749. name: "Back",
  20750. image: {
  20751. source: "./media/characters/dragonien/back.svg",
  20752. extra: 776 / 746,
  20753. bottom: 6.4 / 782.0616
  20754. }
  20755. },
  20756. foot: {
  20757. height: math.unit(1.54, "feet"),
  20758. name: "Foot",
  20759. image: {
  20760. source: "./media/characters/dragonien/foot.svg",
  20761. }
  20762. },
  20763. },
  20764. [
  20765. {
  20766. name: "Normal",
  20767. height: math.unit(8 + 4 / 12, "feet"),
  20768. default: true
  20769. },
  20770. {
  20771. name: "Macro",
  20772. height: math.unit(200, "feet")
  20773. },
  20774. {
  20775. name: "Megamacro",
  20776. height: math.unit(1, "mile")
  20777. },
  20778. {
  20779. name: "Gigamacro",
  20780. height: math.unit(1000, "miles")
  20781. },
  20782. ]
  20783. ))
  20784. characterMakers.push(() => makeCharacter(
  20785. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  20786. {
  20787. front: {
  20788. height: math.unit(5 + 2 / 12, "feet"),
  20789. weight: math.unit(110, "lb"),
  20790. name: "Front",
  20791. image: {
  20792. source: "./media/characters/desta/front.svg",
  20793. extra: 767 / 726,
  20794. bottom: 11.7 / 779
  20795. }
  20796. },
  20797. back: {
  20798. height: math.unit(5 + 2 / 12, "feet"),
  20799. weight: math.unit(110, "lb"),
  20800. name: "Back",
  20801. image: {
  20802. source: "./media/characters/desta/back.svg",
  20803. extra: 777 / 728,
  20804. bottom: 6 / 784
  20805. }
  20806. },
  20807. frontAlt: {
  20808. height: math.unit(5 + 2 / 12, "feet"),
  20809. weight: math.unit(110, "lb"),
  20810. name: "Front",
  20811. image: {
  20812. source: "./media/characters/desta/front-alt.svg",
  20813. extra: 1482 / 1417
  20814. }
  20815. },
  20816. side: {
  20817. height: math.unit(5 + 2 / 12, "feet"),
  20818. weight: math.unit(110, "lb"),
  20819. name: "Side",
  20820. image: {
  20821. source: "./media/characters/desta/side.svg",
  20822. extra: 2579 / 2491,
  20823. bottom: 0.053
  20824. }
  20825. },
  20826. },
  20827. [
  20828. {
  20829. name: "Micro",
  20830. height: math.unit(6, "inches")
  20831. },
  20832. {
  20833. name: "Normal",
  20834. height: math.unit(5 + 2 / 12, "feet"),
  20835. default: true
  20836. },
  20837. {
  20838. name: "Macro",
  20839. height: math.unit(62, "feet")
  20840. },
  20841. {
  20842. name: "Megamacro",
  20843. height: math.unit(1800, "feet")
  20844. },
  20845. ]
  20846. ))
  20847. characterMakers.push(() => makeCharacter(
  20848. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  20849. {
  20850. front: {
  20851. height: math.unit(10, "feet"),
  20852. weight: math.unit(700, "lb"),
  20853. name: "Front",
  20854. image: {
  20855. source: "./media/characters/storm-alystar/front.svg",
  20856. extra: 2112 / 1898,
  20857. bottom: 0.034
  20858. }
  20859. },
  20860. },
  20861. [
  20862. {
  20863. name: "Micro",
  20864. height: math.unit(3.5, "inches")
  20865. },
  20866. {
  20867. name: "Normal",
  20868. height: math.unit(10, "feet"),
  20869. default: true
  20870. },
  20871. {
  20872. name: "Macro",
  20873. height: math.unit(400, "feet")
  20874. },
  20875. {
  20876. name: "Deific",
  20877. height: math.unit(60, "miles")
  20878. },
  20879. ]
  20880. ))
  20881. characterMakers.push(() => makeCharacter(
  20882. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  20883. {
  20884. front: {
  20885. height: math.unit(2.35, "meters"),
  20886. weight: math.unit(119, "kg"),
  20887. name: "Front",
  20888. image: {
  20889. source: "./media/characters/ilia/front.svg",
  20890. extra: 1285 / 1255,
  20891. bottom: 0.06
  20892. }
  20893. },
  20894. },
  20895. [
  20896. {
  20897. name: "Normal",
  20898. height: math.unit(2.35, "meters")
  20899. },
  20900. {
  20901. name: "Macro",
  20902. height: math.unit(140, "meters"),
  20903. default: true
  20904. },
  20905. {
  20906. name: "Megamacro",
  20907. height: math.unit(100, "miles")
  20908. },
  20909. ]
  20910. ))
  20911. characterMakers.push(() => makeCharacter(
  20912. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  20913. {
  20914. front: {
  20915. height: math.unit(6 + 5 / 12, "feet"),
  20916. weight: math.unit(190, "lb"),
  20917. name: "Front",
  20918. image: {
  20919. source: "./media/characters/kingdead/front.svg",
  20920. extra: 1228 / 1177
  20921. }
  20922. },
  20923. },
  20924. [
  20925. {
  20926. name: "Micro",
  20927. height: math.unit(7, "inches")
  20928. },
  20929. {
  20930. name: "Normal",
  20931. height: math.unit(6 + 5 / 12, "feet")
  20932. },
  20933. {
  20934. name: "Macro",
  20935. height: math.unit(150, "feet"),
  20936. default: true
  20937. },
  20938. {
  20939. name: "Megamacro",
  20940. height: math.unit(200, "miles")
  20941. },
  20942. ]
  20943. ))
  20944. characterMakers.push(() => makeCharacter(
  20945. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  20946. {
  20947. front: {
  20948. height: math.unit(8, "feet"),
  20949. weight: math.unit(600, "lb"),
  20950. name: "Front",
  20951. image: {
  20952. source: "./media/characters/kyrehx/front.svg",
  20953. extra: 1195 / 1095,
  20954. bottom: 0.034
  20955. }
  20956. },
  20957. },
  20958. [
  20959. {
  20960. name: "Micro",
  20961. height: math.unit(2, "inches")
  20962. },
  20963. {
  20964. name: "Normal",
  20965. height: math.unit(8, "feet"),
  20966. default: true
  20967. },
  20968. {
  20969. name: "Macro",
  20970. height: math.unit(255, "feet")
  20971. },
  20972. ]
  20973. ))
  20974. characterMakers.push(() => makeCharacter(
  20975. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  20976. {
  20977. front: {
  20978. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20979. weight: math.unit(184, "lb"),
  20980. name: "Front",
  20981. image: {
  20982. source: "./media/characters/xang/front.svg",
  20983. extra: 845 / 755
  20984. }
  20985. },
  20986. },
  20987. [
  20988. {
  20989. name: "Normal",
  20990. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20991. default: true
  20992. },
  20993. {
  20994. name: "Macro",
  20995. height: math.unit(0.935 * 146, "feet")
  20996. },
  20997. {
  20998. name: "Megamacro",
  20999. height: math.unit(0.935 * 3, "miles")
  21000. },
  21001. ]
  21002. ))
  21003. characterMakers.push(() => makeCharacter(
  21004. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  21005. {
  21006. frontDressed: {
  21007. height: math.unit(5 + 7 / 12, "feet"),
  21008. weight: math.unit(140, "lb"),
  21009. name: "Front (Dressed)",
  21010. image: {
  21011. source: "./media/characters/doc-weardno/front-dressed.svg",
  21012. extra: 263 / 234
  21013. }
  21014. },
  21015. backDressed: {
  21016. height: math.unit(5 + 7 / 12, "feet"),
  21017. weight: math.unit(140, "lb"),
  21018. name: "Back (Dressed)",
  21019. image: {
  21020. source: "./media/characters/doc-weardno/back-dressed.svg",
  21021. extra: 266 / 238
  21022. }
  21023. },
  21024. front: {
  21025. height: math.unit(5 + 7 / 12, "feet"),
  21026. weight: math.unit(140, "lb"),
  21027. name: "Front",
  21028. image: {
  21029. source: "./media/characters/doc-weardno/front.svg",
  21030. extra: 254 / 233
  21031. }
  21032. },
  21033. },
  21034. [
  21035. {
  21036. name: "Micro",
  21037. height: math.unit(3, "inches")
  21038. },
  21039. {
  21040. name: "Normal",
  21041. height: math.unit(5 + 7 / 12, "feet"),
  21042. default: true
  21043. },
  21044. {
  21045. name: "Macro",
  21046. height: math.unit(25, "feet")
  21047. },
  21048. {
  21049. name: "Megamacro",
  21050. height: math.unit(2, "miles")
  21051. },
  21052. ]
  21053. ))
  21054. characterMakers.push(() => makeCharacter(
  21055. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  21056. {
  21057. front: {
  21058. height: math.unit(6 + 2 / 12, "feet"),
  21059. weight: math.unit(153, "lb"),
  21060. name: "Front",
  21061. image: {
  21062. source: "./media/characters/seth-whilst/front.svg",
  21063. bottom: 0.07
  21064. }
  21065. },
  21066. },
  21067. [
  21068. {
  21069. name: "Micro",
  21070. height: math.unit(5, "inches")
  21071. },
  21072. {
  21073. name: "Normal",
  21074. height: math.unit(6 + 2 / 12, "feet"),
  21075. default: true
  21076. },
  21077. ]
  21078. ))
  21079. characterMakers.push(() => makeCharacter(
  21080. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  21081. {
  21082. front: {
  21083. height: math.unit(3, "inches"),
  21084. weight: math.unit(8, "grams"),
  21085. name: "Front",
  21086. image: {
  21087. source: "./media/characters/pocket-jabari/front.svg",
  21088. extra: 1024 / 974,
  21089. bottom: 0.039
  21090. }
  21091. },
  21092. },
  21093. [
  21094. {
  21095. name: "Minimicro",
  21096. height: math.unit(8, "mm")
  21097. },
  21098. {
  21099. name: "Micro",
  21100. height: math.unit(3, "inches"),
  21101. default: true
  21102. },
  21103. {
  21104. name: "Normal",
  21105. height: math.unit(3, "feet")
  21106. },
  21107. ]
  21108. ))
  21109. characterMakers.push(() => makeCharacter(
  21110. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  21111. {
  21112. frontDressed: {
  21113. height: math.unit(15, "feet"),
  21114. weight: math.unit(3280, "lb"),
  21115. name: "Front (Dressed)",
  21116. image: {
  21117. source: "./media/characters/sapphy/front-dressed.svg",
  21118. extra: 1951/1654,
  21119. bottom: 194/2145
  21120. },
  21121. form: "anthro",
  21122. default: true
  21123. },
  21124. backDressed: {
  21125. height: math.unit(15, "feet"),
  21126. weight: math.unit(3280, "lb"),
  21127. name: "Back (Dressed)",
  21128. image: {
  21129. source: "./media/characters/sapphy/back-dressed.svg",
  21130. extra: 2058/1918,
  21131. bottom: 125/2183
  21132. },
  21133. form: "anthro"
  21134. },
  21135. frontNude: {
  21136. height: math.unit(15, "feet"),
  21137. weight: math.unit(3280, "lb"),
  21138. name: "Front (Nude)",
  21139. image: {
  21140. source: "./media/characters/sapphy/front-nude.svg",
  21141. extra: 1951/1654,
  21142. bottom: 194/2145
  21143. },
  21144. form: "anthro"
  21145. },
  21146. backNude: {
  21147. height: math.unit(15, "feet"),
  21148. weight: math.unit(3280, "lb"),
  21149. name: "Back (Nude)",
  21150. image: {
  21151. source: "./media/characters/sapphy/back-nude.svg",
  21152. extra: 2058/1918,
  21153. bottom: 125/2183
  21154. },
  21155. form: "anthro"
  21156. },
  21157. full: {
  21158. height: math.unit(15, "feet"),
  21159. weight: math.unit(3280, "lb"),
  21160. name: "Full",
  21161. image: {
  21162. source: "./media/characters/sapphy/full.svg",
  21163. extra: 1396/1317,
  21164. bottom: 44/1440
  21165. },
  21166. form: "anthro"
  21167. },
  21168. dick: {
  21169. height: math.unit(3.8, "feet"),
  21170. name: "Dick",
  21171. image: {
  21172. source: "./media/characters/sapphy/dick.svg"
  21173. },
  21174. form: "anthro"
  21175. },
  21176. feral: {
  21177. height: math.unit(35, "feet"),
  21178. weight: math.unit(160, "tons"),
  21179. name: "Feral",
  21180. image: {
  21181. source: "./media/characters/sapphy/feral.svg",
  21182. extra: 1050/573,
  21183. bottom: 60/1110
  21184. },
  21185. form: "feral",
  21186. default: true
  21187. },
  21188. },
  21189. [
  21190. {
  21191. name: "Normal",
  21192. height: math.unit(15, "feet"),
  21193. form: "anthro"
  21194. },
  21195. {
  21196. name: "Casual Macro",
  21197. height: math.unit(120, "feet"),
  21198. form: "anthro"
  21199. },
  21200. {
  21201. name: "Macro",
  21202. height: math.unit(2150, "feet"),
  21203. default: true,
  21204. form: "anthro"
  21205. },
  21206. {
  21207. name: "Megamacro",
  21208. height: math.unit(8, "miles"),
  21209. form: "anthro"
  21210. },
  21211. {
  21212. name: "Galaxy Mom",
  21213. height: math.unit(6, "megalightyears"),
  21214. form: "anthro"
  21215. },
  21216. {
  21217. name: "Normal",
  21218. height: math.unit(35, "feet"),
  21219. form: "feral",
  21220. default: true
  21221. },
  21222. {
  21223. name: "Macro",
  21224. height: math.unit(300, "feet"),
  21225. form: "feral"
  21226. },
  21227. {
  21228. name: "Galaxy Mom",
  21229. height: math.unit(10, "megalightyears"),
  21230. form: "feral"
  21231. },
  21232. ],
  21233. {
  21234. "anthro": {
  21235. name: "Anthro",
  21236. default: true
  21237. },
  21238. "feral": {
  21239. name: "Feral"
  21240. }
  21241. }
  21242. ))
  21243. characterMakers.push(() => makeCharacter(
  21244. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  21245. {
  21246. hyenaFront: {
  21247. height: math.unit(6, "feet"),
  21248. weight: math.unit(190, "lb"),
  21249. name: "Front",
  21250. image: {
  21251. source: "./media/characters/kiro/hyena-front.svg",
  21252. extra: 927/839,
  21253. bottom: 91/1018
  21254. },
  21255. form: "hyena",
  21256. default: true
  21257. },
  21258. front: {
  21259. height: math.unit(6, "feet"),
  21260. weight: math.unit(170, "lb"),
  21261. name: "Front",
  21262. image: {
  21263. source: "./media/characters/kiro/front.svg",
  21264. extra: 1064 / 1012,
  21265. bottom: 0.052
  21266. },
  21267. form: "folf",
  21268. default: true
  21269. },
  21270. },
  21271. [
  21272. {
  21273. name: "Micro",
  21274. height: math.unit(6, "inches"),
  21275. form: "folf"
  21276. },
  21277. {
  21278. name: "Normal",
  21279. height: math.unit(6, "feet"),
  21280. form: "folf",
  21281. default: true
  21282. },
  21283. {
  21284. name: "Macro",
  21285. height: math.unit(72, "feet"),
  21286. form: "folf"
  21287. },
  21288. {
  21289. name: "Micro",
  21290. height: math.unit(6, "inches"),
  21291. form: "hyena"
  21292. },
  21293. {
  21294. name: "Normal",
  21295. height: math.unit(6, "feet"),
  21296. form: "hyena",
  21297. default: true
  21298. },
  21299. {
  21300. name: "Macro",
  21301. height: math.unit(72, "feet"),
  21302. form: "hyena"
  21303. },
  21304. ],
  21305. {
  21306. "hyena": {
  21307. name: "Hyena",
  21308. default: true
  21309. },
  21310. "folf": {
  21311. name: "Folf",
  21312. },
  21313. }
  21314. ))
  21315. characterMakers.push(() => makeCharacter(
  21316. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  21317. {
  21318. front: {
  21319. height: math.unit(5 + 9 / 12, "feet"),
  21320. weight: math.unit(175, "lb"),
  21321. name: "Front",
  21322. image: {
  21323. source: "./media/characters/irishfox/front.svg",
  21324. extra: 1912 / 1680,
  21325. bottom: 0.02
  21326. }
  21327. },
  21328. },
  21329. [
  21330. {
  21331. name: "Nano",
  21332. height: math.unit(1, "mm")
  21333. },
  21334. {
  21335. name: "Micro",
  21336. height: math.unit(2, "inches")
  21337. },
  21338. {
  21339. name: "Normal",
  21340. height: math.unit(5 + 9 / 12, "feet"),
  21341. default: true
  21342. },
  21343. {
  21344. name: "Macro",
  21345. height: math.unit(45, "feet")
  21346. },
  21347. ]
  21348. ))
  21349. characterMakers.push(() => makeCharacter(
  21350. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  21351. {
  21352. front: {
  21353. height: math.unit(6 + 1 / 12, "feet"),
  21354. weight: math.unit(75, "lb"),
  21355. name: "Front",
  21356. image: {
  21357. source: "./media/characters/aronai-sieyes/front.svg",
  21358. extra: 1532/1450,
  21359. bottom: 42/1574
  21360. }
  21361. },
  21362. side: {
  21363. height: math.unit(6 + 1 / 12, "feet"),
  21364. weight: math.unit(75, "lb"),
  21365. name: "Side",
  21366. image: {
  21367. source: "./media/characters/aronai-sieyes/side.svg",
  21368. extra: 1422/1365,
  21369. bottom: 148/1570
  21370. }
  21371. },
  21372. back: {
  21373. height: math.unit(6 + 1 / 12, "feet"),
  21374. weight: math.unit(75, "lb"),
  21375. name: "Back",
  21376. image: {
  21377. source: "./media/characters/aronai-sieyes/back.svg",
  21378. extra: 1526/1464,
  21379. bottom: 51/1577
  21380. }
  21381. },
  21382. dressed: {
  21383. height: math.unit(6 + 1 / 12, "feet"),
  21384. weight: math.unit(75, "lb"),
  21385. name: "Dressed",
  21386. image: {
  21387. source: "./media/characters/aronai-sieyes/dressed.svg",
  21388. extra: 1559/1483,
  21389. bottom: 39/1598
  21390. }
  21391. },
  21392. slit: {
  21393. height: math.unit(1.3, "feet"),
  21394. name: "Slit",
  21395. image: {
  21396. source: "./media/characters/aronai-sieyes/slit.svg"
  21397. }
  21398. },
  21399. slitSpread: {
  21400. height: math.unit(0.9, "feet"),
  21401. name: "Slit (Spread)",
  21402. image: {
  21403. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  21404. }
  21405. },
  21406. rump: {
  21407. height: math.unit(1.3, "feet"),
  21408. name: "Rump",
  21409. image: {
  21410. source: "./media/characters/aronai-sieyes/rump.svg"
  21411. }
  21412. },
  21413. maw: {
  21414. height: math.unit(1.25, "feet"),
  21415. name: "Maw",
  21416. image: {
  21417. source: "./media/characters/aronai-sieyes/maw.svg"
  21418. }
  21419. },
  21420. feral: {
  21421. height: math.unit(18, "feet"),
  21422. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  21423. name: "Feral",
  21424. image: {
  21425. source: "./media/characters/aronai-sieyes/feral.svg",
  21426. extra: 1530 / 1240,
  21427. bottom: 0.035
  21428. }
  21429. },
  21430. },
  21431. [
  21432. {
  21433. name: "Micro",
  21434. height: math.unit(2, "inches")
  21435. },
  21436. {
  21437. name: "Normal",
  21438. height: math.unit(6 + 1 / 12, "feet"),
  21439. default: true
  21440. }
  21441. ]
  21442. ))
  21443. characterMakers.push(() => makeCharacter(
  21444. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  21445. {
  21446. front: {
  21447. height: math.unit(12, "feet"),
  21448. weight: math.unit(410, "kg"),
  21449. name: "Front",
  21450. image: {
  21451. source: "./media/characters/xuna/front.svg",
  21452. extra: 2184 / 1980
  21453. }
  21454. },
  21455. side: {
  21456. height: math.unit(12, "feet"),
  21457. weight: math.unit(410, "kg"),
  21458. name: "Side",
  21459. image: {
  21460. source: "./media/characters/xuna/side.svg",
  21461. extra: 2184 / 1980
  21462. }
  21463. },
  21464. back: {
  21465. height: math.unit(12, "feet"),
  21466. weight: math.unit(410, "kg"),
  21467. name: "Back",
  21468. image: {
  21469. source: "./media/characters/xuna/back.svg",
  21470. extra: 2184 / 1980
  21471. }
  21472. },
  21473. },
  21474. [
  21475. {
  21476. name: "Nano glow",
  21477. height: math.unit(10, "nm")
  21478. },
  21479. {
  21480. name: "Micro floof",
  21481. height: math.unit(0.3, "m")
  21482. },
  21483. {
  21484. name: "Huggable softy boi",
  21485. height: math.unit(3.6576, "m"),
  21486. default: true
  21487. },
  21488. {
  21489. name: "Admirable floof",
  21490. height: math.unit(80, "meters")
  21491. },
  21492. {
  21493. name: "Gentle macro",
  21494. height: math.unit(300, "meters")
  21495. },
  21496. {
  21497. name: "Very careful floof",
  21498. height: math.unit(3200, "meters")
  21499. },
  21500. {
  21501. name: "The mega floof",
  21502. height: math.unit(36000, "meters")
  21503. },
  21504. {
  21505. name: "Giga-fur-Wicker",
  21506. height: math.unit(4800000, "meters")
  21507. },
  21508. {
  21509. name: "Licky world",
  21510. height: math.unit(20000000, "meters")
  21511. },
  21512. {
  21513. name: "Floofy cyan sun",
  21514. height: math.unit(1500000000, "meters")
  21515. },
  21516. {
  21517. name: "Milky Wicker",
  21518. height: math.unit(1000000000000000000000, "meters")
  21519. },
  21520. {
  21521. name: "The observing Wicker",
  21522. height: math.unit(999999999999999999999999999, "meters")
  21523. },
  21524. ]
  21525. ))
  21526. characterMakers.push(() => makeCharacter(
  21527. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21528. {
  21529. front: {
  21530. height: math.unit(5 + 9 / 12, "feet"),
  21531. weight: math.unit(150, "lb"),
  21532. name: "Front",
  21533. image: {
  21534. source: "./media/characters/arokha-sieyes/front.svg",
  21535. extra: 1425 / 1284,
  21536. bottom: 0.05
  21537. }
  21538. },
  21539. },
  21540. [
  21541. {
  21542. name: "Normal",
  21543. height: math.unit(5 + 9 / 12, "feet")
  21544. },
  21545. {
  21546. name: "Macro",
  21547. height: math.unit(30, "meters"),
  21548. default: true
  21549. },
  21550. ]
  21551. ))
  21552. characterMakers.push(() => makeCharacter(
  21553. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21554. {
  21555. front: {
  21556. height: math.unit(6, "feet"),
  21557. weight: math.unit(180, "lb"),
  21558. name: "Front",
  21559. image: {
  21560. source: "./media/characters/arokh-sieyes/front.svg",
  21561. extra: 1830 / 1769,
  21562. bottom: 0.01
  21563. }
  21564. },
  21565. },
  21566. [
  21567. {
  21568. name: "Normal",
  21569. height: math.unit(6, "feet")
  21570. },
  21571. {
  21572. name: "Macro",
  21573. height: math.unit(30, "meters"),
  21574. default: true
  21575. },
  21576. ]
  21577. ))
  21578. characterMakers.push(() => makeCharacter(
  21579. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  21580. {
  21581. side: {
  21582. height: math.unit(13 + 1 / 12, "feet"),
  21583. weight: math.unit(8.5, "tonnes"),
  21584. preyCapacity: math.unit(36, "people"),
  21585. name: "Side",
  21586. image: {
  21587. source: "./media/characters/goldeneye/side.svg",
  21588. extra: 1139/741,
  21589. bottom: 98/1237
  21590. }
  21591. },
  21592. front: {
  21593. height: math.unit(5.1, "feet"),
  21594. weight: math.unit(8.5, "tonnes"),
  21595. preyCapacity: math.unit(36, "people"),
  21596. name: "Front",
  21597. image: {
  21598. source: "./media/characters/goldeneye/front.svg",
  21599. extra: 635/365,
  21600. bottom: 598/1233
  21601. }
  21602. },
  21603. maw: {
  21604. height: math.unit(6.6, "feet"),
  21605. name: "Maw",
  21606. image: {
  21607. source: "./media/characters/goldeneye/maw.svg"
  21608. }
  21609. },
  21610. headFront: {
  21611. height: math.unit(8, "feet"),
  21612. name: "Head (Front)",
  21613. image: {
  21614. source: "./media/characters/goldeneye/head-front.svg"
  21615. }
  21616. },
  21617. headSide: {
  21618. height: math.unit(6, "feet"),
  21619. name: "Head (Side)",
  21620. image: {
  21621. source: "./media/characters/goldeneye/head-side.svg"
  21622. }
  21623. },
  21624. headBack: {
  21625. height: math.unit(8, "feet"),
  21626. name: "Head (Back)",
  21627. image: {
  21628. source: "./media/characters/goldeneye/head-back.svg"
  21629. }
  21630. },
  21631. paw: {
  21632. height: math.unit(3.4, "feet"),
  21633. name: "Paw",
  21634. image: {
  21635. source: "./media/characters/goldeneye/paw.svg"
  21636. }
  21637. },
  21638. toering: {
  21639. height: math.unit(0.45, "feet"),
  21640. name: "Toering",
  21641. image: {
  21642. source: "./media/characters/goldeneye/toering.svg"
  21643. }
  21644. },
  21645. eyes: {
  21646. height: math.unit(0.5, "feet"),
  21647. name: "Eyes",
  21648. image: {
  21649. source: "./media/characters/goldeneye/eyes.svg"
  21650. }
  21651. },
  21652. },
  21653. [
  21654. {
  21655. name: "Normal",
  21656. height: math.unit(13 + 1 / 12, "feet"),
  21657. default: true
  21658. },
  21659. ]
  21660. ))
  21661. characterMakers.push(() => makeCharacter(
  21662. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  21663. {
  21664. front: {
  21665. height: math.unit(6 + 1 / 12, "feet"),
  21666. weight: math.unit(210, "lb"),
  21667. name: "Front",
  21668. image: {
  21669. source: "./media/characters/leonardo-lycheborne/front.svg",
  21670. extra: 776/723,
  21671. bottom: 34/810
  21672. }
  21673. },
  21674. side: {
  21675. height: math.unit(6 + 1 / 12, "feet"),
  21676. weight: math.unit(210, "lb"),
  21677. name: "Side",
  21678. image: {
  21679. source: "./media/characters/leonardo-lycheborne/side.svg",
  21680. extra: 780/728,
  21681. bottom: 12/792
  21682. }
  21683. },
  21684. back: {
  21685. height: math.unit(6 + 1 / 12, "feet"),
  21686. weight: math.unit(210, "lb"),
  21687. name: "Back",
  21688. image: {
  21689. source: "./media/characters/leonardo-lycheborne/back.svg",
  21690. extra: 775/721,
  21691. bottom: 17/792
  21692. }
  21693. },
  21694. hand: {
  21695. height: math.unit(1.08, "feet"),
  21696. name: "Hand",
  21697. image: {
  21698. source: "./media/characters/leonardo-lycheborne/hand.svg"
  21699. }
  21700. },
  21701. foot: {
  21702. height: math.unit(1.32, "feet"),
  21703. name: "Foot",
  21704. image: {
  21705. source: "./media/characters/leonardo-lycheborne/foot.svg"
  21706. }
  21707. },
  21708. maw: {
  21709. height: math.unit(1, "feet"),
  21710. name: "Maw",
  21711. image: {
  21712. source: "./media/characters/leonardo-lycheborne/maw.svg"
  21713. }
  21714. },
  21715. were: {
  21716. height: math.unit(20, "feet"),
  21717. weight: math.unit(7800, "lb"),
  21718. name: "Were",
  21719. image: {
  21720. source: "./media/characters/leonardo-lycheborne/were.svg",
  21721. extra: 1224/1165,
  21722. bottom: 72/1296
  21723. }
  21724. },
  21725. feral: {
  21726. height: math.unit(7.5, "feet"),
  21727. weight: math.unit(600, "lb"),
  21728. name: "Feral",
  21729. image: {
  21730. source: "./media/characters/leonardo-lycheborne/feral.svg",
  21731. extra: 797/702,
  21732. bottom: 139/936
  21733. }
  21734. },
  21735. taur: {
  21736. height: math.unit(11, "feet"),
  21737. weight: math.unit(3300, "lb"),
  21738. name: "Taur",
  21739. image: {
  21740. source: "./media/characters/leonardo-lycheborne/taur.svg",
  21741. extra: 1271/1197,
  21742. bottom: 47/1318
  21743. }
  21744. },
  21745. barghest: {
  21746. height: math.unit(11, "feet"),
  21747. weight: math.unit(1300, "lb"),
  21748. name: "Barghest",
  21749. image: {
  21750. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  21751. extra: 1291/1204,
  21752. bottom: 37/1328
  21753. }
  21754. },
  21755. dick: {
  21756. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  21757. name: "Dick",
  21758. image: {
  21759. source: "./media/characters/leonardo-lycheborne/dick.svg"
  21760. }
  21761. },
  21762. dickWere: {
  21763. height: math.unit((20) / 3.8, "feet"),
  21764. name: "Dick (Were)",
  21765. image: {
  21766. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  21767. }
  21768. },
  21769. },
  21770. [
  21771. {
  21772. name: "Normal",
  21773. height: math.unit(6 + 1 / 12, "feet"),
  21774. default: true
  21775. },
  21776. ]
  21777. ))
  21778. characterMakers.push(() => makeCharacter(
  21779. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  21780. {
  21781. front: {
  21782. height: math.unit(10, "feet"),
  21783. weight: math.unit(350, "lb"),
  21784. name: "Front",
  21785. image: {
  21786. source: "./media/characters/jet/front.svg",
  21787. extra: 2050 / 1980,
  21788. bottom: 0.013
  21789. }
  21790. },
  21791. back: {
  21792. height: math.unit(10, "feet"),
  21793. weight: math.unit(350, "lb"),
  21794. name: "Back",
  21795. image: {
  21796. source: "./media/characters/jet/back.svg",
  21797. extra: 2050 / 1980,
  21798. bottom: 0.013
  21799. }
  21800. },
  21801. },
  21802. [
  21803. {
  21804. name: "Micro",
  21805. height: math.unit(6, "inches")
  21806. },
  21807. {
  21808. name: "Normal",
  21809. height: math.unit(10, "feet"),
  21810. default: true
  21811. },
  21812. {
  21813. name: "Macro",
  21814. height: math.unit(100, "feet")
  21815. },
  21816. ]
  21817. ))
  21818. characterMakers.push(() => makeCharacter(
  21819. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  21820. {
  21821. front: {
  21822. height: math.unit(15, "feet"),
  21823. weight: math.unit(2800, "lb"),
  21824. name: "Front",
  21825. image: {
  21826. source: "./media/characters/tanarath/front.svg",
  21827. extra: 2392 / 2220,
  21828. bottom: 0.03
  21829. }
  21830. },
  21831. back: {
  21832. height: math.unit(15, "feet"),
  21833. weight: math.unit(2800, "lb"),
  21834. name: "Back",
  21835. image: {
  21836. source: "./media/characters/tanarath/back.svg",
  21837. extra: 2392 / 2220,
  21838. bottom: 0.03
  21839. }
  21840. },
  21841. },
  21842. [
  21843. {
  21844. name: "Normal",
  21845. height: math.unit(15, "feet"),
  21846. default: true
  21847. },
  21848. ]
  21849. ))
  21850. characterMakers.push(() => makeCharacter(
  21851. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  21852. {
  21853. front: {
  21854. height: math.unit(7 + 1 / 12, "feet"),
  21855. weight: math.unit(175, "lb"),
  21856. name: "Front",
  21857. image: {
  21858. source: "./media/characters/patty-cattybatty/front.svg",
  21859. extra: 908 / 874,
  21860. bottom: 0.025
  21861. }
  21862. },
  21863. },
  21864. [
  21865. {
  21866. name: "Micro",
  21867. height: math.unit(1, "inch")
  21868. },
  21869. {
  21870. name: "Normal",
  21871. height: math.unit(7 + 1 / 12, "feet")
  21872. },
  21873. {
  21874. name: "Mini Macro",
  21875. height: math.unit(155, "feet")
  21876. },
  21877. {
  21878. name: "Macro",
  21879. height: math.unit(1077, "feet")
  21880. },
  21881. {
  21882. name: "Mega Macro",
  21883. height: math.unit(47650, "feet"),
  21884. default: true
  21885. },
  21886. {
  21887. name: "Giga Macro",
  21888. height: math.unit(440, "miles")
  21889. },
  21890. {
  21891. name: "Tera Macro",
  21892. height: math.unit(8700, "miles")
  21893. },
  21894. {
  21895. name: "Planetary Macro",
  21896. height: math.unit(32700, "miles")
  21897. },
  21898. {
  21899. name: "Solar Macro",
  21900. height: math.unit(550000, "miles")
  21901. },
  21902. {
  21903. name: "Celestial Macro",
  21904. height: math.unit(2.5, "AU")
  21905. },
  21906. ]
  21907. ))
  21908. characterMakers.push(() => makeCharacter(
  21909. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  21910. {
  21911. front: {
  21912. height: math.unit(4 + 5 / 12, "feet"),
  21913. weight: math.unit(90, "lb"),
  21914. name: "Front",
  21915. image: {
  21916. source: "./media/characters/cappu/front.svg",
  21917. extra: 1247 / 1152,
  21918. bottom: 0.012
  21919. }
  21920. },
  21921. },
  21922. [
  21923. {
  21924. name: "Normal",
  21925. height: math.unit(4 + 5 / 12, "feet"),
  21926. default: true
  21927. },
  21928. ]
  21929. ))
  21930. characterMakers.push(() => makeCharacter(
  21931. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  21932. {
  21933. frontDressed: {
  21934. height: math.unit(70, "cm"),
  21935. weight: math.unit(6, "kg"),
  21936. name: "Front (Dressed)",
  21937. image: {
  21938. source: "./media/characters/sebi/front-dressed.svg",
  21939. extra: 713.5 / 686.5,
  21940. bottom: 0.003
  21941. }
  21942. },
  21943. front: {
  21944. height: math.unit(70, "cm"),
  21945. weight: math.unit(5, "kg"),
  21946. name: "Front",
  21947. image: {
  21948. source: "./media/characters/sebi/front.svg",
  21949. extra: 713.5 / 686.5,
  21950. bottom: 0.003
  21951. }
  21952. }
  21953. },
  21954. [
  21955. {
  21956. name: "Normal",
  21957. height: math.unit(70, "cm"),
  21958. default: true
  21959. },
  21960. {
  21961. name: "Macro",
  21962. height: math.unit(8, "meters")
  21963. },
  21964. ]
  21965. ))
  21966. characterMakers.push(() => makeCharacter(
  21967. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21968. {
  21969. front: {
  21970. height: math.unit(6, "feet"),
  21971. weight: math.unit(150, "lb"),
  21972. name: "Front",
  21973. image: {
  21974. source: "./media/characters/typhek/front.svg",
  21975. extra: 1948 / 1929,
  21976. bottom: 0.025
  21977. }
  21978. },
  21979. side: {
  21980. height: math.unit(6, "feet"),
  21981. weight: math.unit(150, "lb"),
  21982. name: "Side",
  21983. image: {
  21984. source: "./media/characters/typhek/side.svg",
  21985. extra: 2034 / 2010,
  21986. bottom: 0.003
  21987. }
  21988. },
  21989. back: {
  21990. height: math.unit(6, "feet"),
  21991. weight: math.unit(150, "lb"),
  21992. name: "Back",
  21993. image: {
  21994. source: "./media/characters/typhek/back.svg",
  21995. extra: 2005 / 1978,
  21996. bottom: 0.004
  21997. }
  21998. },
  21999. palm: {
  22000. height: math.unit(1.2, "feet"),
  22001. name: "Palm",
  22002. image: {
  22003. source: "./media/characters/typhek/palm.svg"
  22004. }
  22005. },
  22006. fist: {
  22007. height: math.unit(1.1, "feet"),
  22008. name: "Fist",
  22009. image: {
  22010. source: "./media/characters/typhek/fist.svg"
  22011. }
  22012. },
  22013. foot: {
  22014. height: math.unit(1.57, "feet"),
  22015. name: "Foot",
  22016. image: {
  22017. source: "./media/characters/typhek/foot.svg"
  22018. }
  22019. },
  22020. sole: {
  22021. height: math.unit(2.05, "feet"),
  22022. name: "Sole",
  22023. image: {
  22024. source: "./media/characters/typhek/sole.svg"
  22025. }
  22026. },
  22027. },
  22028. [
  22029. {
  22030. name: "Macro",
  22031. height: math.unit(40, "stories"),
  22032. default: true
  22033. },
  22034. {
  22035. name: "Megamacro",
  22036. height: math.unit(1, "mile")
  22037. },
  22038. {
  22039. name: "Gigamacro",
  22040. height: math.unit(4000, "solarradii")
  22041. },
  22042. {
  22043. name: "Universal",
  22044. height: math.unit(1.1, "universes")
  22045. }
  22046. ]
  22047. ))
  22048. characterMakers.push(() => makeCharacter(
  22049. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  22050. {
  22051. side: {
  22052. height: math.unit(5 + 7 / 12, "feet"),
  22053. weight: math.unit(150, "lb"),
  22054. name: "Side",
  22055. image: {
  22056. source: "./media/characters/kassy/side.svg",
  22057. extra: 1280 / 1225,
  22058. bottom: 0.002
  22059. }
  22060. },
  22061. front: {
  22062. height: math.unit(5 + 7 / 12, "feet"),
  22063. weight: math.unit(150, "lb"),
  22064. name: "Front",
  22065. image: {
  22066. source: "./media/characters/kassy/front.svg",
  22067. extra: 1280 / 1225,
  22068. bottom: 0.025
  22069. }
  22070. },
  22071. back: {
  22072. height: math.unit(5 + 7 / 12, "feet"),
  22073. weight: math.unit(150, "lb"),
  22074. name: "Back",
  22075. image: {
  22076. source: "./media/characters/kassy/back.svg",
  22077. extra: 1280 / 1225,
  22078. bottom: 0.002
  22079. }
  22080. },
  22081. foot: {
  22082. height: math.unit(1.266, "feet"),
  22083. name: "Foot",
  22084. image: {
  22085. source: "./media/characters/kassy/foot.svg"
  22086. }
  22087. },
  22088. },
  22089. [
  22090. {
  22091. name: "Normal",
  22092. height: math.unit(5 + 7 / 12, "feet")
  22093. },
  22094. {
  22095. name: "Macro",
  22096. height: math.unit(137, "feet"),
  22097. default: true
  22098. },
  22099. {
  22100. name: "Megamacro",
  22101. height: math.unit(1, "mile")
  22102. },
  22103. ]
  22104. ))
  22105. characterMakers.push(() => makeCharacter(
  22106. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  22107. {
  22108. front: {
  22109. height: math.unit(6 + 1 / 12, "feet"),
  22110. weight: math.unit(200, "lb"),
  22111. name: "Front",
  22112. image: {
  22113. source: "./media/characters/neil/front.svg",
  22114. extra: 1326 / 1250,
  22115. bottom: 0.023
  22116. }
  22117. },
  22118. },
  22119. [
  22120. {
  22121. name: "Normal",
  22122. height: math.unit(6 + 1 / 12, "feet"),
  22123. default: true
  22124. },
  22125. {
  22126. name: "Macro",
  22127. height: math.unit(200, "feet")
  22128. },
  22129. ]
  22130. ))
  22131. characterMakers.push(() => makeCharacter(
  22132. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  22133. {
  22134. front: {
  22135. height: math.unit(5 + 9 / 12, "feet"),
  22136. weight: math.unit(190, "lb"),
  22137. name: "Front",
  22138. image: {
  22139. source: "./media/characters/atticus/front.svg",
  22140. extra: 2934 / 2785,
  22141. bottom: 0.025
  22142. }
  22143. },
  22144. },
  22145. [
  22146. {
  22147. name: "Normal",
  22148. height: math.unit(5 + 9 / 12, "feet"),
  22149. default: true
  22150. },
  22151. {
  22152. name: "Macro",
  22153. height: math.unit(180, "feet")
  22154. },
  22155. ]
  22156. ))
  22157. characterMakers.push(() => makeCharacter(
  22158. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  22159. {
  22160. side: {
  22161. height: math.unit(9, "feet"),
  22162. weight: math.unit(650, "lb"),
  22163. name: "Side",
  22164. image: {
  22165. source: "./media/characters/milo/side.svg",
  22166. extra: 2644 / 2310,
  22167. bottom: 0.032
  22168. }
  22169. },
  22170. },
  22171. [
  22172. {
  22173. name: "Normal",
  22174. height: math.unit(9, "feet"),
  22175. default: true
  22176. },
  22177. {
  22178. name: "Macro",
  22179. height: math.unit(300, "feet")
  22180. },
  22181. ]
  22182. ))
  22183. characterMakers.push(() => makeCharacter(
  22184. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  22185. {
  22186. side: {
  22187. height: math.unit(8, "meters"),
  22188. weight: math.unit(90000, "kg"),
  22189. name: "Side",
  22190. image: {
  22191. source: "./media/characters/ijzer/side.svg",
  22192. extra: 2756 / 1600,
  22193. bottom: 0.01
  22194. }
  22195. },
  22196. },
  22197. [
  22198. {
  22199. name: "Small",
  22200. height: math.unit(3, "meters")
  22201. },
  22202. {
  22203. name: "Normal",
  22204. height: math.unit(8, "meters"),
  22205. default: true
  22206. },
  22207. {
  22208. name: "Normal+",
  22209. height: math.unit(10, "meters")
  22210. },
  22211. {
  22212. name: "Bigger",
  22213. height: math.unit(24, "meters")
  22214. },
  22215. {
  22216. name: "Huge",
  22217. height: math.unit(80, "meters")
  22218. },
  22219. ]
  22220. ))
  22221. characterMakers.push(() => makeCharacter(
  22222. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  22223. {
  22224. front: {
  22225. height: math.unit(6 + 2 / 12, "feet"),
  22226. weight: math.unit(153, "lb"),
  22227. name: "Front",
  22228. image: {
  22229. source: "./media/characters/luca-cervicum/front.svg",
  22230. extra: 370 / 327,
  22231. bottom: 0.015
  22232. }
  22233. },
  22234. back: {
  22235. height: math.unit(6 + 2 / 12, "feet"),
  22236. weight: math.unit(153, "lb"),
  22237. name: "Back",
  22238. image: {
  22239. source: "./media/characters/luca-cervicum/back.svg",
  22240. extra: 367 / 333,
  22241. bottom: 0.005
  22242. }
  22243. },
  22244. frontGear: {
  22245. height: math.unit(6 + 2 / 12, "feet"),
  22246. weight: math.unit(173, "lb"),
  22247. name: "Front (Gear)",
  22248. image: {
  22249. source: "./media/characters/luca-cervicum/front-gear.svg",
  22250. extra: 377 / 333,
  22251. bottom: 0.006
  22252. }
  22253. },
  22254. },
  22255. [
  22256. {
  22257. name: "Normal",
  22258. height: math.unit(6 + 2 / 12, "feet"),
  22259. default: true
  22260. },
  22261. ]
  22262. ))
  22263. characterMakers.push(() => makeCharacter(
  22264. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  22265. {
  22266. front: {
  22267. height: math.unit(6 + 1 / 12, "feet"),
  22268. weight: math.unit(304, "lb"),
  22269. name: "Front",
  22270. image: {
  22271. source: "./media/characters/oliver/front.svg",
  22272. extra: 157 / 143,
  22273. bottom: 0.08
  22274. }
  22275. },
  22276. },
  22277. [
  22278. {
  22279. name: "Normal",
  22280. height: math.unit(6 + 1 / 12, "feet"),
  22281. default: true
  22282. },
  22283. ]
  22284. ))
  22285. characterMakers.push(() => makeCharacter(
  22286. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  22287. {
  22288. front: {
  22289. height: math.unit(5 + 7 / 12, "feet"),
  22290. weight: math.unit(140, "lb"),
  22291. name: "Front",
  22292. image: {
  22293. source: "./media/characters/shane/front.svg",
  22294. extra: 304 / 289,
  22295. bottom: 0.005
  22296. }
  22297. },
  22298. },
  22299. [
  22300. {
  22301. name: "Normal",
  22302. height: math.unit(5 + 7 / 12, "feet"),
  22303. default: true
  22304. },
  22305. ]
  22306. ))
  22307. characterMakers.push(() => makeCharacter(
  22308. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  22309. {
  22310. front: {
  22311. height: math.unit(5 + 9 / 12, "feet"),
  22312. weight: math.unit(178, "lb"),
  22313. name: "Front",
  22314. image: {
  22315. source: "./media/characters/shin/front.svg",
  22316. extra: 159 / 151,
  22317. bottom: 0.015
  22318. }
  22319. },
  22320. },
  22321. [
  22322. {
  22323. name: "Normal",
  22324. height: math.unit(5 + 9 / 12, "feet"),
  22325. default: true
  22326. },
  22327. ]
  22328. ))
  22329. characterMakers.push(() => makeCharacter(
  22330. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  22331. {
  22332. front: {
  22333. height: math.unit(5 + 10 / 12, "feet"),
  22334. weight: math.unit(168, "lb"),
  22335. name: "Front",
  22336. image: {
  22337. source: "./media/characters/xerxes/front.svg",
  22338. extra: 282 / 260,
  22339. bottom: 0.045
  22340. }
  22341. },
  22342. },
  22343. [
  22344. {
  22345. name: "Normal",
  22346. height: math.unit(5 + 10 / 12, "feet"),
  22347. default: true
  22348. },
  22349. ]
  22350. ))
  22351. characterMakers.push(() => makeCharacter(
  22352. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  22353. {
  22354. front: {
  22355. height: math.unit(6 + 7 / 12, "feet"),
  22356. weight: math.unit(208, "lb"),
  22357. name: "Front",
  22358. image: {
  22359. source: "./media/characters/chaska/front.svg",
  22360. extra: 332 / 319,
  22361. bottom: 0.015
  22362. }
  22363. },
  22364. },
  22365. [
  22366. {
  22367. name: "Normal",
  22368. height: math.unit(6 + 7 / 12, "feet"),
  22369. default: true
  22370. },
  22371. ]
  22372. ))
  22373. characterMakers.push(() => makeCharacter(
  22374. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  22375. {
  22376. front: {
  22377. height: math.unit(5 + 8 / 12, "feet"),
  22378. weight: math.unit(208, "lb"),
  22379. name: "Front",
  22380. image: {
  22381. source: "./media/characters/enuk/front.svg",
  22382. extra: 437 / 406,
  22383. bottom: 0.02
  22384. }
  22385. },
  22386. },
  22387. [
  22388. {
  22389. name: "Normal",
  22390. height: math.unit(5 + 8 / 12, "feet"),
  22391. default: true
  22392. },
  22393. ]
  22394. ))
  22395. characterMakers.push(() => makeCharacter(
  22396. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  22397. {
  22398. front: {
  22399. height: math.unit(5 + 10 / 12, "feet"),
  22400. weight: math.unit(252, "lb"),
  22401. name: "Front",
  22402. image: {
  22403. source: "./media/characters/bruun/front.svg",
  22404. extra: 197 / 187,
  22405. bottom: 0.012
  22406. }
  22407. },
  22408. },
  22409. [
  22410. {
  22411. name: "Normal",
  22412. height: math.unit(5 + 10 / 12, "feet"),
  22413. default: true
  22414. },
  22415. ]
  22416. ))
  22417. characterMakers.push(() => makeCharacter(
  22418. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  22419. {
  22420. front: {
  22421. height: math.unit(6 + 10 / 12, "feet"),
  22422. weight: math.unit(255, "lb"),
  22423. name: "Front",
  22424. image: {
  22425. source: "./media/characters/alexeev/front.svg",
  22426. extra: 213 / 200,
  22427. bottom: 0.05
  22428. }
  22429. },
  22430. },
  22431. [
  22432. {
  22433. name: "Normal",
  22434. height: math.unit(6 + 10 / 12, "feet"),
  22435. default: true
  22436. },
  22437. ]
  22438. ))
  22439. characterMakers.push(() => makeCharacter(
  22440. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  22441. {
  22442. front: {
  22443. height: math.unit(2 + 8 / 12, "feet"),
  22444. weight: math.unit(22, "lb"),
  22445. name: "Front",
  22446. image: {
  22447. source: "./media/characters/evelyn/front.svg",
  22448. extra: 208 / 180
  22449. }
  22450. },
  22451. },
  22452. [
  22453. {
  22454. name: "Normal",
  22455. height: math.unit(2 + 8 / 12, "feet"),
  22456. default: true
  22457. },
  22458. ]
  22459. ))
  22460. characterMakers.push(() => makeCharacter(
  22461. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  22462. {
  22463. front: {
  22464. height: math.unit(5 + 9 / 12, "feet"),
  22465. weight: math.unit(139, "lb"),
  22466. name: "Front",
  22467. image: {
  22468. source: "./media/characters/inca/front.svg",
  22469. extra: 294 / 291,
  22470. bottom: 0.03
  22471. }
  22472. },
  22473. },
  22474. [
  22475. {
  22476. name: "Normal",
  22477. height: math.unit(5 + 9 / 12, "feet"),
  22478. default: true
  22479. },
  22480. ]
  22481. ))
  22482. characterMakers.push(() => makeCharacter(
  22483. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  22484. {
  22485. front: {
  22486. height: math.unit(6 + 3 / 12, "feet"),
  22487. weight: math.unit(185, "lb"),
  22488. name: "Front",
  22489. image: {
  22490. source: "./media/characters/mera/front.svg",
  22491. extra: 291 / 277,
  22492. bottom: 0.03
  22493. }
  22494. },
  22495. },
  22496. [
  22497. {
  22498. name: "Normal",
  22499. height: math.unit(6 + 3 / 12, "feet"),
  22500. default: true
  22501. },
  22502. ]
  22503. ))
  22504. characterMakers.push(() => makeCharacter(
  22505. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  22506. {
  22507. front: {
  22508. height: math.unit(6 + 7 / 12, "feet"),
  22509. weight: math.unit(160, "lb"),
  22510. name: "Front",
  22511. image: {
  22512. source: "./media/characters/ceres/front.svg",
  22513. extra: 1023 / 950,
  22514. bottom: 0.027
  22515. }
  22516. },
  22517. back: {
  22518. height: math.unit(6 + 7 / 12, "feet"),
  22519. weight: math.unit(160, "lb"),
  22520. name: "Back",
  22521. image: {
  22522. source: "./media/characters/ceres/back.svg",
  22523. extra: 1023 / 950
  22524. }
  22525. },
  22526. },
  22527. [
  22528. {
  22529. name: "Normal",
  22530. height: math.unit(6 + 7 / 12, "feet"),
  22531. default: true
  22532. },
  22533. ]
  22534. ))
  22535. characterMakers.push(() => makeCharacter(
  22536. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  22537. {
  22538. front: {
  22539. height: math.unit(5 + 10 / 12, "feet"),
  22540. weight: math.unit(150, "lb"),
  22541. name: "Front",
  22542. image: {
  22543. source: "./media/characters/kris/front.svg",
  22544. extra: 885 / 803,
  22545. bottom: 0.03
  22546. }
  22547. },
  22548. },
  22549. [
  22550. {
  22551. name: "Normal",
  22552. height: math.unit(5 + 10 / 12, "feet"),
  22553. default: true
  22554. },
  22555. ]
  22556. ))
  22557. characterMakers.push(() => makeCharacter(
  22558. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  22559. {
  22560. dragon_front: {
  22561. height: math.unit(5, "feet"),
  22562. name: "Front",
  22563. image: {
  22564. source: "./media/characters/taluthus/dragon-front.svg",
  22565. extra: 1203/1098,
  22566. bottom: 46/1249
  22567. },
  22568. form: "dragon",
  22569. default: true
  22570. },
  22571. dragon_maw: {
  22572. height: math.unit(2.35, "feet"),
  22573. name: "Maw",
  22574. image: {
  22575. source: "./media/characters/taluthus/dragon-maw.svg"
  22576. },
  22577. form: "dragon",
  22578. },
  22579. kitsune_front: {
  22580. height: math.unit(7, "feet"),
  22581. name: "Front",
  22582. image: {
  22583. source: "./media/characters/taluthus/kitsune-front.svg",
  22584. extra: 900/841,
  22585. bottom: 65/965
  22586. },
  22587. form: "kitsune",
  22588. default: true
  22589. },
  22590. },
  22591. [
  22592. {
  22593. name: "Normal",
  22594. height: math.unit(5, "feet"),
  22595. form: "dragon",
  22596. default: true,
  22597. },
  22598. {
  22599. name: "Normal",
  22600. height: math.unit(7, "feet"),
  22601. form: "kitsune",
  22602. default: true
  22603. },
  22604. {
  22605. name: "Macro",
  22606. height: math.unit(300, "feet"),
  22607. allForms: true
  22608. },
  22609. ],
  22610. {
  22611. "dragon": {
  22612. name: "Dragon",
  22613. default: true
  22614. },
  22615. "kitsune": {
  22616. name: "Kitsune",
  22617. },
  22618. }
  22619. ))
  22620. characterMakers.push(() => makeCharacter(
  22621. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  22622. {
  22623. front: {
  22624. height: math.unit(5 + 9 / 12, "feet"),
  22625. weight: math.unit(145, "lb"),
  22626. name: "Front",
  22627. image: {
  22628. source: "./media/characters/dawn/front.svg",
  22629. extra: 2094 / 2016,
  22630. bottom: 0.025
  22631. }
  22632. },
  22633. back: {
  22634. height: math.unit(5 + 9 / 12, "feet"),
  22635. weight: math.unit(160, "lb"),
  22636. name: "Back",
  22637. image: {
  22638. source: "./media/characters/dawn/back.svg",
  22639. extra: 2112 / 2080,
  22640. bottom: 0.005
  22641. }
  22642. },
  22643. },
  22644. [
  22645. {
  22646. name: "Normal",
  22647. height: math.unit(6 + 7 / 12, "feet"),
  22648. default: true
  22649. },
  22650. ]
  22651. ))
  22652. characterMakers.push(() => makeCharacter(
  22653. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  22654. {
  22655. anthro: {
  22656. height: math.unit(8 + 3 / 12, "feet"),
  22657. weight: math.unit(450, "lb"),
  22658. name: "Anthro",
  22659. image: {
  22660. source: "./media/characters/arador/anthro.svg",
  22661. extra: 1835 / 1718,
  22662. bottom: 0.025
  22663. }
  22664. },
  22665. feral: {
  22666. height: math.unit(4, "feet"),
  22667. weight: math.unit(200, "lb"),
  22668. name: "Feral",
  22669. image: {
  22670. source: "./media/characters/arador/feral.svg",
  22671. extra: 1683 / 1514,
  22672. bottom: 0.07
  22673. }
  22674. },
  22675. },
  22676. [
  22677. {
  22678. name: "Normal",
  22679. height: math.unit(8 + 3 / 12, "feet")
  22680. },
  22681. {
  22682. name: "Macro",
  22683. height: math.unit(82.5, "feet"),
  22684. default: true
  22685. },
  22686. ]
  22687. ))
  22688. characterMakers.push(() => makeCharacter(
  22689. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  22690. {
  22691. front: {
  22692. height: math.unit(5 + 10 / 12, "feet"),
  22693. weight: math.unit(125, "lb"),
  22694. name: "Front",
  22695. image: {
  22696. source: "./media/characters/dharsi/front.svg",
  22697. extra: 716 / 630,
  22698. bottom: 0.035
  22699. }
  22700. },
  22701. },
  22702. [
  22703. {
  22704. name: "Nano",
  22705. height: math.unit(100, "nm")
  22706. },
  22707. {
  22708. name: "Micro",
  22709. height: math.unit(2, "inches")
  22710. },
  22711. {
  22712. name: "Normal",
  22713. height: math.unit(5 + 10 / 12, "feet"),
  22714. default: true
  22715. },
  22716. {
  22717. name: "Macro",
  22718. height: math.unit(1000, "feet")
  22719. },
  22720. {
  22721. name: "Megamacro",
  22722. height: math.unit(10, "miles")
  22723. },
  22724. {
  22725. name: "Gigamacro",
  22726. height: math.unit(3000, "miles")
  22727. },
  22728. {
  22729. name: "Teramacro",
  22730. height: math.unit(500000, "miles")
  22731. },
  22732. {
  22733. name: "Teramacro+",
  22734. height: math.unit(30, "galaxies")
  22735. },
  22736. ]
  22737. ))
  22738. characterMakers.push(() => makeCharacter(
  22739. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  22740. {
  22741. front: {
  22742. height: math.unit(6, "feet"),
  22743. weight: math.unit(150, "lb"),
  22744. name: "Front",
  22745. image: {
  22746. source: "./media/characters/deathy/front.svg",
  22747. extra: 1552 / 1463,
  22748. bottom: 0.025
  22749. }
  22750. },
  22751. side: {
  22752. height: math.unit(6, "feet"),
  22753. weight: math.unit(150, "lb"),
  22754. name: "Side",
  22755. image: {
  22756. source: "./media/characters/deathy/side.svg",
  22757. extra: 1604 / 1455,
  22758. bottom: 0.025
  22759. }
  22760. },
  22761. back: {
  22762. height: math.unit(6, "feet"),
  22763. weight: math.unit(150, "lb"),
  22764. name: "Back",
  22765. image: {
  22766. source: "./media/characters/deathy/back.svg",
  22767. extra: 1580 / 1463,
  22768. bottom: 0.005
  22769. }
  22770. },
  22771. },
  22772. [
  22773. {
  22774. name: "Micro",
  22775. height: math.unit(5, "millimeters")
  22776. },
  22777. {
  22778. name: "Normal",
  22779. height: math.unit(6 + 5 / 12, "feet"),
  22780. default: true
  22781. },
  22782. ]
  22783. ))
  22784. characterMakers.push(() => makeCharacter(
  22785. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  22786. {
  22787. front: {
  22788. height: math.unit(16, "feet"),
  22789. weight: math.unit(4000, "lb"),
  22790. name: "Front",
  22791. image: {
  22792. source: "./media/characters/juniper/front.svg",
  22793. bottom: 0.04
  22794. }
  22795. },
  22796. },
  22797. [
  22798. {
  22799. name: "Normal",
  22800. height: math.unit(16, "feet"),
  22801. default: true
  22802. },
  22803. ]
  22804. ))
  22805. characterMakers.push(() => makeCharacter(
  22806. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  22807. {
  22808. front: {
  22809. height: math.unit(6, "feet"),
  22810. weight: math.unit(150, "lb"),
  22811. name: "Front",
  22812. image: {
  22813. source: "./media/characters/hipster/front.svg",
  22814. extra: 1312 / 1209,
  22815. bottom: 0.025
  22816. }
  22817. },
  22818. back: {
  22819. height: math.unit(6, "feet"),
  22820. weight: math.unit(150, "lb"),
  22821. name: "Back",
  22822. image: {
  22823. source: "./media/characters/hipster/back.svg",
  22824. extra: 1281 / 1196,
  22825. bottom: 0.01
  22826. }
  22827. },
  22828. },
  22829. [
  22830. {
  22831. name: "Micro",
  22832. height: math.unit(1, "mm")
  22833. },
  22834. {
  22835. name: "Normal",
  22836. height: math.unit(4, "inches"),
  22837. default: true
  22838. },
  22839. {
  22840. name: "Macro",
  22841. height: math.unit(500, "feet")
  22842. },
  22843. {
  22844. name: "Megamacro",
  22845. height: math.unit(1000, "miles")
  22846. },
  22847. ]
  22848. ))
  22849. characterMakers.push(() => makeCharacter(
  22850. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  22851. {
  22852. front: {
  22853. height: math.unit(6, "feet"),
  22854. weight: math.unit(150, "lb"),
  22855. name: "Front",
  22856. image: {
  22857. source: "./media/characters/tendirmuldr/front.svg",
  22858. extra: 1878 / 1772,
  22859. bottom: 0.015
  22860. }
  22861. },
  22862. },
  22863. [
  22864. {
  22865. name: "Megamacro",
  22866. height: math.unit(1500, "miles"),
  22867. default: true
  22868. },
  22869. ]
  22870. ))
  22871. characterMakers.push(() => makeCharacter(
  22872. { name: "Mort", species: ["demon"], tags: ["feral"] },
  22873. {
  22874. front: {
  22875. height: math.unit(14, "feet"),
  22876. weight: math.unit(12000, "lb"),
  22877. name: "Front",
  22878. image: {
  22879. source: "./media/characters/mort/front.svg",
  22880. extra: 365 / 318,
  22881. bottom: 0.01
  22882. }
  22883. },
  22884. side: {
  22885. height: math.unit(14, "feet"),
  22886. weight: math.unit(12000, "lb"),
  22887. name: "Side",
  22888. image: {
  22889. source: "./media/characters/mort/side.svg",
  22890. extra: 365 / 318,
  22891. bottom: 0.052
  22892. },
  22893. default: true
  22894. },
  22895. back: {
  22896. height: math.unit(14, "feet"),
  22897. weight: math.unit(12000, "lb"),
  22898. name: "Back",
  22899. image: {
  22900. source: "./media/characters/mort/back.svg",
  22901. extra: 371 / 332,
  22902. bottom: 0.18
  22903. }
  22904. },
  22905. },
  22906. [
  22907. {
  22908. name: "Normal",
  22909. height: math.unit(14, "feet"),
  22910. default: true
  22911. },
  22912. ]
  22913. ))
  22914. characterMakers.push(() => makeCharacter(
  22915. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  22916. {
  22917. front: {
  22918. height: math.unit(8, "feet"),
  22919. weight: math.unit(1, "ton"),
  22920. name: "Front",
  22921. image: {
  22922. source: "./media/characters/lycoa/front.svg",
  22923. extra: 1836/1728,
  22924. bottom: 81/1917
  22925. }
  22926. },
  22927. back: {
  22928. height: math.unit(8, "feet"),
  22929. weight: math.unit(1, "ton"),
  22930. name: "Back",
  22931. image: {
  22932. source: "./media/characters/lycoa/back.svg",
  22933. extra: 1785/1720,
  22934. bottom: 91/1876
  22935. }
  22936. },
  22937. head: {
  22938. height: math.unit(1.6243, "feet"),
  22939. name: "Head",
  22940. image: {
  22941. source: "./media/characters/lycoa/head.svg",
  22942. extra: 1011/782,
  22943. bottom: 0/1011
  22944. }
  22945. },
  22946. tailmaw: {
  22947. height: math.unit(1.9, "feet"),
  22948. name: "Tailmaw",
  22949. image: {
  22950. source: "./media/characters/lycoa/tailmaw.svg"
  22951. }
  22952. },
  22953. tentacles: {
  22954. height: math.unit(2.1, "feet"),
  22955. name: "Tentacles",
  22956. image: {
  22957. source: "./media/characters/lycoa/tentacles.svg"
  22958. }
  22959. },
  22960. dick: {
  22961. height: math.unit(1.73, "feet"),
  22962. name: "Dick",
  22963. image: {
  22964. source: "./media/characters/lycoa/dick.svg"
  22965. }
  22966. },
  22967. },
  22968. [
  22969. {
  22970. name: "Normal",
  22971. height: math.unit(8, "feet"),
  22972. default: true
  22973. },
  22974. {
  22975. name: "Macro",
  22976. height: math.unit(30, "feet")
  22977. },
  22978. ]
  22979. ))
  22980. characterMakers.push(() => makeCharacter(
  22981. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  22982. {
  22983. front: {
  22984. height: math.unit(4 + 2 / 12, "feet"),
  22985. weight: math.unit(70, "lb"),
  22986. name: "Front",
  22987. image: {
  22988. source: "./media/characters/naldara/front.svg",
  22989. extra: 1664/1387,
  22990. bottom: 81/1745
  22991. },
  22992. form: "anthro",
  22993. default: true
  22994. },
  22995. naga: {
  22996. height: math.unit(20, "feet"),
  22997. weight: math.unit(15000, "kg"),
  22998. name: "Front",
  22999. image: {
  23000. source: "./media/characters/naldara/naga.svg",
  23001. extra: 1590/1396,
  23002. bottom: 285/1875
  23003. },
  23004. form: "naga",
  23005. default: true
  23006. },
  23007. },
  23008. [
  23009. {
  23010. name: "Normal",
  23011. height: math.unit(4 + 2 / 12, "feet"),
  23012. form: "anthro",
  23013. default: true
  23014. },
  23015. {
  23016. name: "Normal",
  23017. height: math.unit(20, "feet"),
  23018. form: "naga",
  23019. default: true
  23020. },
  23021. ],
  23022. {
  23023. "anthro": {
  23024. name: "Anthro",
  23025. default: true
  23026. },
  23027. "naga": {
  23028. name: "Naga"
  23029. }
  23030. }
  23031. ))
  23032. characterMakers.push(() => makeCharacter(
  23033. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  23034. {
  23035. front: {
  23036. height: math.unit(13 + 7 / 12, "feet"),
  23037. weight: math.unit(1500, "lb"),
  23038. name: "Front",
  23039. image: {
  23040. source: "./media/characters/briar/front.svg",
  23041. extra: 1223/1157,
  23042. bottom: 123/1346
  23043. }
  23044. },
  23045. },
  23046. [
  23047. {
  23048. name: "Normal",
  23049. height: math.unit(13 + 7 / 12, "feet"),
  23050. default: true
  23051. },
  23052. ]
  23053. ))
  23054. characterMakers.push(() => makeCharacter(
  23055. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  23056. {
  23057. side: {
  23058. height: math.unit(16, "feet"),
  23059. weight: math.unit(500, "lb"),
  23060. name: "Side",
  23061. image: {
  23062. source: "./media/characters/vanguard/side.svg",
  23063. extra: 1022/914,
  23064. bottom: 30/1052
  23065. }
  23066. },
  23067. sideAlt: {
  23068. height: math.unit(10, "feet"),
  23069. weight: math.unit(500, "lb"),
  23070. name: "Side (Alt)",
  23071. image: {
  23072. source: "./media/characters/vanguard/side-alt.svg",
  23073. extra: 502 / 425,
  23074. bottom: 0.087
  23075. }
  23076. },
  23077. },
  23078. [
  23079. {
  23080. name: "Normal",
  23081. height: math.unit(17.71, "feet"),
  23082. default: true
  23083. },
  23084. ]
  23085. ))
  23086. characterMakers.push(() => makeCharacter(
  23087. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  23088. {
  23089. front: {
  23090. height: math.unit(7.5, "feet"),
  23091. weight: math.unit(2, "lb"),
  23092. name: "Front",
  23093. image: {
  23094. source: "./media/characters/artemis/work-safe-front.svg",
  23095. extra: 1192 / 1075,
  23096. bottom: 0.07
  23097. },
  23098. form: "work-safe",
  23099. default: true
  23100. },
  23101. frontNsfw: {
  23102. height: math.unit(7.5, "feet"),
  23103. weight: math.unit(2, "lb"),
  23104. name: "Front",
  23105. image: {
  23106. source: "./media/characters/artemis/calibrating-front.svg",
  23107. extra: 1192 / 1075,
  23108. bottom: 0.07
  23109. },
  23110. form: "calibrating",
  23111. default: true
  23112. },
  23113. frontNsfwer: {
  23114. height: math.unit(7.5, "feet"),
  23115. weight: math.unit(2, "lb"),
  23116. name: "Front",
  23117. image: {
  23118. source: "./media/characters/artemis/oversize-load-front.svg",
  23119. extra: 1192 / 1075,
  23120. bottom: 0.07
  23121. },
  23122. form: "oversize-load",
  23123. default: true
  23124. },
  23125. side: {
  23126. height: math.unit(7.5, "feet"),
  23127. weight: math.unit(2, "lb"),
  23128. name: "Side",
  23129. image: {
  23130. source: "./media/characters/artemis/work-safe-side.svg",
  23131. extra: 1192 / 1075,
  23132. bottom: 0.07
  23133. },
  23134. form: "work-safe"
  23135. },
  23136. sideNsfw: {
  23137. height: math.unit(7.5, "feet"),
  23138. weight: math.unit(2, "lb"),
  23139. name: "Side",
  23140. image: {
  23141. source: "./media/characters/artemis/calibrating-side.svg",
  23142. extra: 1192 / 1075,
  23143. bottom: 0.07
  23144. },
  23145. form: "calibrating"
  23146. },
  23147. sideNsfwer: {
  23148. height: math.unit(7.5, "feet"),
  23149. weight: math.unit(2, "lb"),
  23150. name: "Side",
  23151. image: {
  23152. source: "./media/characters/artemis/oversize-load-side.svg",
  23153. extra: 1192 / 1075,
  23154. bottom: 0.07
  23155. },
  23156. form: "oversize-load"
  23157. },
  23158. maw: {
  23159. height: math.unit(1.1, "feet"),
  23160. name: "Maw",
  23161. image: {
  23162. source: "./media/characters/artemis/maw.svg"
  23163. },
  23164. form: "work-safe"
  23165. },
  23166. stomach: {
  23167. height: math.unit(0.95, "feet"),
  23168. name: "Stomach",
  23169. image: {
  23170. source: "./media/characters/artemis/stomach.svg"
  23171. },
  23172. form: "work-safe"
  23173. },
  23174. dickCanine: {
  23175. height: math.unit(1, "feet"),
  23176. name: "Dick (Canine)",
  23177. image: {
  23178. source: "./media/characters/artemis/dick-canine.svg"
  23179. },
  23180. form: "calibrating"
  23181. },
  23182. dickEquine: {
  23183. height: math.unit(0.85, "feet"),
  23184. name: "Dick (Equine)",
  23185. image: {
  23186. source: "./media/characters/artemis/dick-equine.svg"
  23187. },
  23188. form: "calibrating"
  23189. },
  23190. dickExotic: {
  23191. height: math.unit(0.85, "feet"),
  23192. name: "Dick (Exotic)",
  23193. image: {
  23194. source: "./media/characters/artemis/dick-exotic.svg"
  23195. },
  23196. form: "calibrating"
  23197. },
  23198. dickCanineBigger: {
  23199. height: math.unit(1 * 1.33, "feet"),
  23200. name: "Dick (Canine)",
  23201. image: {
  23202. source: "./media/characters/artemis/dick-canine.svg"
  23203. },
  23204. form: "oversize-load"
  23205. },
  23206. dickEquineBigger: {
  23207. height: math.unit(0.85 * 1.33, "feet"),
  23208. name: "Dick (Equine)",
  23209. image: {
  23210. source: "./media/characters/artemis/dick-equine.svg"
  23211. },
  23212. form: "oversize-load"
  23213. },
  23214. dickExoticBigger: {
  23215. height: math.unit(0.85 * 1.33, "feet"),
  23216. name: "Dick (Exotic)",
  23217. image: {
  23218. source: "./media/characters/artemis/dick-exotic.svg"
  23219. },
  23220. form: "oversize-load"
  23221. },
  23222. },
  23223. [
  23224. {
  23225. name: "Normal",
  23226. height: math.unit(7.5, "feet"),
  23227. form: "work-safe",
  23228. default: true
  23229. },
  23230. {
  23231. name: "Normal",
  23232. height: math.unit(7.5, "feet"),
  23233. form: "calibrating",
  23234. default: true
  23235. },
  23236. {
  23237. name: "Normal",
  23238. height: math.unit(7.5, "feet"),
  23239. form: "oversize-load",
  23240. default: true
  23241. },
  23242. {
  23243. name: "Enlarged",
  23244. height: math.unit(12, "feet"),
  23245. form: "work-safe",
  23246. },
  23247. {
  23248. name: "Enlarged",
  23249. height: math.unit(12, "feet"),
  23250. form: "calibrating",
  23251. },
  23252. {
  23253. name: "Enlarged",
  23254. height: math.unit(12, "feet"),
  23255. form: "oversize-load",
  23256. },
  23257. ],
  23258. {
  23259. "work-safe": {
  23260. name: "Work-Safe",
  23261. default: true
  23262. },
  23263. "calibrating": {
  23264. name: "Calibrating"
  23265. },
  23266. "oversize-load": {
  23267. name: "Oversize Load"
  23268. }
  23269. }
  23270. ))
  23271. characterMakers.push(() => makeCharacter(
  23272. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  23273. {
  23274. front: {
  23275. height: math.unit(5 + 3 / 12, "feet"),
  23276. weight: math.unit(160, "lb"),
  23277. name: "Front",
  23278. image: {
  23279. source: "./media/characters/kira/front.svg",
  23280. extra: 906 / 786,
  23281. bottom: 0.01
  23282. }
  23283. },
  23284. back: {
  23285. height: math.unit(5 + 3 / 12, "feet"),
  23286. weight: math.unit(160, "lb"),
  23287. name: "Back",
  23288. image: {
  23289. source: "./media/characters/kira/back.svg",
  23290. extra: 882 / 757,
  23291. bottom: 0.005
  23292. }
  23293. },
  23294. frontDressed: {
  23295. height: math.unit(5 + 3 / 12, "feet"),
  23296. weight: math.unit(160, "lb"),
  23297. name: "Front (Dressed)",
  23298. image: {
  23299. source: "./media/characters/kira/front-dressed.svg",
  23300. extra: 906 / 786,
  23301. bottom: 0.01
  23302. }
  23303. },
  23304. beans: {
  23305. height: math.unit(0.92, "feet"),
  23306. name: "Beans",
  23307. image: {
  23308. source: "./media/characters/kira/beans.svg"
  23309. }
  23310. },
  23311. },
  23312. [
  23313. {
  23314. name: "Normal",
  23315. height: math.unit(5 + 3 / 12, "feet"),
  23316. default: true
  23317. },
  23318. ]
  23319. ))
  23320. characterMakers.push(() => makeCharacter(
  23321. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  23322. {
  23323. front: {
  23324. height: math.unit(5 + 4 / 12, "feet"),
  23325. weight: math.unit(145, "lb"),
  23326. name: "Front",
  23327. image: {
  23328. source: "./media/characters/scramble/front.svg",
  23329. extra: 763 / 727,
  23330. bottom: 0.05
  23331. }
  23332. },
  23333. back: {
  23334. height: math.unit(5 + 4 / 12, "feet"),
  23335. weight: math.unit(145, "lb"),
  23336. name: "Back",
  23337. image: {
  23338. source: "./media/characters/scramble/back.svg",
  23339. extra: 826 / 737,
  23340. bottom: 0.002
  23341. }
  23342. },
  23343. },
  23344. [
  23345. {
  23346. name: "Normal",
  23347. height: math.unit(5 + 4 / 12, "feet"),
  23348. default: true
  23349. },
  23350. ]
  23351. ))
  23352. characterMakers.push(() => makeCharacter(
  23353. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  23354. {
  23355. side: {
  23356. height: math.unit(6 + 2 / 12, "feet"),
  23357. weight: math.unit(190, "lb"),
  23358. name: "Side",
  23359. image: {
  23360. source: "./media/characters/biscuit/side.svg",
  23361. extra: 858 / 791,
  23362. bottom: 0.044
  23363. }
  23364. },
  23365. },
  23366. [
  23367. {
  23368. name: "Normal",
  23369. height: math.unit(6 + 2 / 12, "feet"),
  23370. default: true
  23371. },
  23372. ]
  23373. ))
  23374. characterMakers.push(() => makeCharacter(
  23375. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  23376. {
  23377. front: {
  23378. height: math.unit(5 + 2 / 12, "feet"),
  23379. weight: math.unit(120, "lb"),
  23380. name: "Front",
  23381. image: {
  23382. source: "./media/characters/poffin/front.svg",
  23383. extra: 786 / 680,
  23384. bottom: 0.005
  23385. }
  23386. },
  23387. },
  23388. [
  23389. {
  23390. name: "Normal",
  23391. height: math.unit(5 + 2 / 12, "feet"),
  23392. default: true
  23393. },
  23394. ]
  23395. ))
  23396. characterMakers.push(() => makeCharacter(
  23397. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  23398. {
  23399. front: {
  23400. height: math.unit(6 + 3 / 12, "feet"),
  23401. weight: math.unit(519, "lb"),
  23402. name: "Front",
  23403. image: {
  23404. source: "./media/characters/dhari/front.svg",
  23405. extra: 1048 / 946,
  23406. bottom: 0.015
  23407. }
  23408. },
  23409. back: {
  23410. height: math.unit(6 + 3 / 12, "feet"),
  23411. weight: math.unit(519, "lb"),
  23412. name: "Back",
  23413. image: {
  23414. source: "./media/characters/dhari/back.svg",
  23415. extra: 1048 / 931,
  23416. bottom: 0.005
  23417. }
  23418. },
  23419. frontDressed: {
  23420. height: math.unit(6 + 3 / 12, "feet"),
  23421. weight: math.unit(519, "lb"),
  23422. name: "Front (Dressed)",
  23423. image: {
  23424. source: "./media/characters/dhari/front-dressed.svg",
  23425. extra: 1713 / 1546,
  23426. bottom: 0.02
  23427. }
  23428. },
  23429. backDressed: {
  23430. height: math.unit(6 + 3 / 12, "feet"),
  23431. weight: math.unit(519, "lb"),
  23432. name: "Back (Dressed)",
  23433. image: {
  23434. source: "./media/characters/dhari/back-dressed.svg",
  23435. extra: 1699 / 1537,
  23436. bottom: 0.01
  23437. }
  23438. },
  23439. maw: {
  23440. height: math.unit(0.95, "feet"),
  23441. name: "Maw",
  23442. image: {
  23443. source: "./media/characters/dhari/maw.svg"
  23444. }
  23445. },
  23446. wereFront: {
  23447. height: math.unit(12 + 8 / 12, "feet"),
  23448. weight: math.unit(4000, "lb"),
  23449. name: "Front (Were)",
  23450. image: {
  23451. source: "./media/characters/dhari/were-front.svg",
  23452. extra: 1065 / 969,
  23453. bottom: 0.015
  23454. }
  23455. },
  23456. wereBack: {
  23457. height: math.unit(12 + 8 / 12, "feet"),
  23458. weight: math.unit(4000, "lb"),
  23459. name: "Back (Were)",
  23460. image: {
  23461. source: "./media/characters/dhari/were-back.svg",
  23462. extra: 1065 / 969,
  23463. bottom: 0.012
  23464. }
  23465. },
  23466. wereMaw: {
  23467. height: math.unit(0.625, "meters"),
  23468. name: "Maw (Were)",
  23469. image: {
  23470. source: "./media/characters/dhari/were-maw.svg"
  23471. }
  23472. },
  23473. },
  23474. [
  23475. {
  23476. name: "Normal",
  23477. height: math.unit(6 + 3 / 12, "feet"),
  23478. default: true
  23479. },
  23480. ]
  23481. ))
  23482. characterMakers.push(() => makeCharacter(
  23483. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  23484. {
  23485. anthro: {
  23486. height: math.unit(5 + 7 / 12, "feet"),
  23487. weight: math.unit(175, "lb"),
  23488. name: "Anthro",
  23489. image: {
  23490. source: "./media/characters/rena-dyne/anthro.svg",
  23491. extra: 1849 / 1785,
  23492. bottom: 0.005
  23493. }
  23494. },
  23495. taur: {
  23496. height: math.unit(15 + 6 / 12, "feet"),
  23497. weight: math.unit(8000, "lb"),
  23498. name: "Taur",
  23499. image: {
  23500. source: "./media/characters/rena-dyne/taur.svg",
  23501. extra: 2315 / 2234,
  23502. bottom: 0.033
  23503. }
  23504. },
  23505. },
  23506. [
  23507. {
  23508. name: "Normal",
  23509. height: math.unit(5 + 7 / 12, "feet"),
  23510. default: true
  23511. },
  23512. ]
  23513. ))
  23514. characterMakers.push(() => makeCharacter(
  23515. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  23516. {
  23517. front: {
  23518. height: math.unit(8, "feet"),
  23519. weight: math.unit(600, "lb"),
  23520. name: "Front",
  23521. image: {
  23522. source: "./media/characters/weremeep/front.svg",
  23523. extra: 970/849,
  23524. bottom: 7/977
  23525. }
  23526. },
  23527. },
  23528. [
  23529. {
  23530. name: "Normal",
  23531. height: math.unit(8, "feet"),
  23532. default: true
  23533. },
  23534. {
  23535. name: "Lorg",
  23536. height: math.unit(12, "feet")
  23537. },
  23538. {
  23539. name: "Oh Lawd She Comin'",
  23540. height: math.unit(20, "feet")
  23541. },
  23542. ]
  23543. ))
  23544. characterMakers.push(() => makeCharacter(
  23545. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  23546. {
  23547. front: {
  23548. height: math.unit(4, "feet"),
  23549. weight: math.unit(90, "lb"),
  23550. name: "Front",
  23551. image: {
  23552. source: "./media/characters/reza/front.svg",
  23553. extra: 1183 / 1111,
  23554. bottom: 0.017
  23555. }
  23556. },
  23557. back: {
  23558. height: math.unit(4, "feet"),
  23559. weight: math.unit(90, "lb"),
  23560. name: "Back",
  23561. image: {
  23562. source: "./media/characters/reza/back.svg",
  23563. extra: 1183 / 1111,
  23564. bottom: 0.01
  23565. }
  23566. },
  23567. drake: {
  23568. height: math.unit(30, "feet"),
  23569. weight: math.unit(246960, "lb"),
  23570. name: "Drake",
  23571. image: {
  23572. source: "./media/characters/reza/drake.svg",
  23573. extra: 2350 / 2024,
  23574. bottom: 60.7 / 2403
  23575. }
  23576. },
  23577. },
  23578. [
  23579. {
  23580. name: "Normal",
  23581. height: math.unit(4, "feet"),
  23582. default: true
  23583. },
  23584. ]
  23585. ))
  23586. characterMakers.push(() => makeCharacter(
  23587. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  23588. {
  23589. side: {
  23590. height: math.unit(15, "feet"),
  23591. weight: math.unit(14, "tons"),
  23592. name: "Side",
  23593. image: {
  23594. source: "./media/characters/athea/side.svg",
  23595. extra: 960 / 540,
  23596. bottom: 0.003
  23597. }
  23598. },
  23599. sitting: {
  23600. height: math.unit(6 * 2.85, "feet"),
  23601. weight: math.unit(14, "tons"),
  23602. name: "Sitting",
  23603. image: {
  23604. source: "./media/characters/athea/sitting.svg",
  23605. extra: 621 / 581,
  23606. bottom: 0.075
  23607. }
  23608. },
  23609. maw: {
  23610. height: math.unit(7.59498031496063, "feet"),
  23611. name: "Maw",
  23612. image: {
  23613. source: "./media/characters/athea/maw.svg"
  23614. }
  23615. },
  23616. },
  23617. [
  23618. {
  23619. name: "Lap Cat",
  23620. height: math.unit(2.5, "feet")
  23621. },
  23622. {
  23623. name: "Minimacro",
  23624. height: math.unit(15, "feet"),
  23625. default: true
  23626. },
  23627. {
  23628. name: "Macro",
  23629. height: math.unit(120, "feet")
  23630. },
  23631. {
  23632. name: "Macro+",
  23633. height: math.unit(640, "feet")
  23634. },
  23635. {
  23636. name: "Colossus",
  23637. height: math.unit(2.2, "miles")
  23638. },
  23639. ]
  23640. ))
  23641. characterMakers.push(() => makeCharacter(
  23642. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  23643. {
  23644. front: {
  23645. height: math.unit(8 + 8 / 12, "feet"),
  23646. weight: math.unit(130, "kg"),
  23647. name: "Front",
  23648. image: {
  23649. source: "./media/characters/seroko/front.svg",
  23650. extra: 1385 / 1280,
  23651. bottom: 0.025
  23652. }
  23653. },
  23654. back: {
  23655. height: math.unit(8 + 8 / 12, "feet"),
  23656. weight: math.unit(130, "kg"),
  23657. name: "Back",
  23658. image: {
  23659. source: "./media/characters/seroko/back.svg",
  23660. extra: 1369 / 1238,
  23661. bottom: 0.018
  23662. }
  23663. },
  23664. frontDressed: {
  23665. height: math.unit(8 + 8 / 12, "feet"),
  23666. weight: math.unit(130, "kg"),
  23667. name: "Front (Dressed)",
  23668. image: {
  23669. source: "./media/characters/seroko/front-dressed.svg",
  23670. extra: 1366 / 1275,
  23671. bottom: 0.03
  23672. }
  23673. },
  23674. },
  23675. [
  23676. {
  23677. name: "Normal",
  23678. height: math.unit(8 + 8 / 12, "feet"),
  23679. default: true
  23680. },
  23681. ]
  23682. ))
  23683. characterMakers.push(() => makeCharacter(
  23684. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  23685. {
  23686. front: {
  23687. height: math.unit(5.5, "feet"),
  23688. weight: math.unit(160, "lb"),
  23689. name: "Front",
  23690. image: {
  23691. source: "./media/characters/quatzi/front.svg",
  23692. extra: 2346 / 2242,
  23693. bottom: 0.015
  23694. }
  23695. },
  23696. },
  23697. [
  23698. {
  23699. name: "Normal",
  23700. height: math.unit(5.5, "feet"),
  23701. default: true
  23702. },
  23703. {
  23704. name: "Big",
  23705. height: math.unit(7.7, "feet")
  23706. },
  23707. ]
  23708. ))
  23709. characterMakers.push(() => makeCharacter(
  23710. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  23711. {
  23712. front: {
  23713. height: math.unit(5 + 11 / 12, "feet"),
  23714. weight: math.unit(180, "lb"),
  23715. name: "Front",
  23716. image: {
  23717. source: "./media/characters/sen/front.svg",
  23718. extra: 1321 / 1254,
  23719. bottom: 0.015
  23720. }
  23721. },
  23722. side: {
  23723. height: math.unit(5 + 11 / 12, "feet"),
  23724. weight: math.unit(180, "lb"),
  23725. name: "Side",
  23726. image: {
  23727. source: "./media/characters/sen/side.svg",
  23728. extra: 1321 / 1254,
  23729. bottom: 0.007
  23730. }
  23731. },
  23732. back: {
  23733. height: math.unit(5 + 11 / 12, "feet"),
  23734. weight: math.unit(180, "lb"),
  23735. name: "Back",
  23736. image: {
  23737. source: "./media/characters/sen/back.svg",
  23738. extra: 1321 / 1254
  23739. }
  23740. },
  23741. },
  23742. [
  23743. {
  23744. name: "Normal",
  23745. height: math.unit(5 + 11 / 12, "feet"),
  23746. default: true
  23747. },
  23748. ]
  23749. ))
  23750. characterMakers.push(() => makeCharacter(
  23751. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  23752. {
  23753. front: {
  23754. height: math.unit(166.6, "cm"),
  23755. weight: math.unit(66.6, "kg"),
  23756. name: "Front",
  23757. image: {
  23758. source: "./media/characters/fruity/front.svg",
  23759. extra: 1510 / 1386,
  23760. bottom: 0.04
  23761. }
  23762. },
  23763. back: {
  23764. height: math.unit(166.6, "cm"),
  23765. weight: math.unit(66.6, "lb"),
  23766. name: "Back",
  23767. image: {
  23768. source: "./media/characters/fruity/back.svg",
  23769. extra: 1563 / 1435,
  23770. bottom: 0.005
  23771. }
  23772. },
  23773. },
  23774. [
  23775. {
  23776. name: "Normal",
  23777. height: math.unit(166.6, "cm"),
  23778. default: true
  23779. },
  23780. {
  23781. name: "Demonic",
  23782. height: math.unit(166.6, "feet")
  23783. },
  23784. ]
  23785. ))
  23786. characterMakers.push(() => makeCharacter(
  23787. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  23788. {
  23789. side: {
  23790. height: math.unit(10, "feet"),
  23791. weight: math.unit(500, "lb"),
  23792. name: "Side",
  23793. image: {
  23794. source: "./media/characters/zost/side.svg",
  23795. extra: 2870/2533,
  23796. bottom: 252/3122
  23797. }
  23798. },
  23799. mawFront: {
  23800. height: math.unit(1.08, "meters"),
  23801. name: "Maw (Front)",
  23802. image: {
  23803. source: "./media/characters/zost/maw-front.svg"
  23804. }
  23805. },
  23806. mawSide: {
  23807. height: math.unit(2.66, "feet"),
  23808. name: "Maw (Side)",
  23809. image: {
  23810. source: "./media/characters/zost/maw-side.svg"
  23811. }
  23812. },
  23813. wingspan: {
  23814. height: math.unit(7.4, "feet"),
  23815. name: "Wingspan",
  23816. image: {
  23817. source: "./media/characters/zost/wingspan.svg"
  23818. }
  23819. },
  23820. },
  23821. [
  23822. {
  23823. name: "Normal",
  23824. height: math.unit(10, "feet"),
  23825. default: true
  23826. },
  23827. ]
  23828. ))
  23829. characterMakers.push(() => makeCharacter(
  23830. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  23831. {
  23832. front: {
  23833. height: math.unit(5 + 4 / 12, "feet"),
  23834. weight: math.unit(120, "lb"),
  23835. name: "Front",
  23836. image: {
  23837. source: "./media/characters/luci/front.svg",
  23838. extra: 1985 / 1884,
  23839. bottom: 0.04
  23840. }
  23841. },
  23842. back: {
  23843. height: math.unit(5 + 4 / 12, "feet"),
  23844. weight: math.unit(120, "lb"),
  23845. name: "Back",
  23846. image: {
  23847. source: "./media/characters/luci/back.svg",
  23848. extra: 1892 / 1791,
  23849. bottom: 0.002
  23850. }
  23851. },
  23852. },
  23853. [
  23854. {
  23855. name: "Normal",
  23856. height: math.unit(5 + 4 / 12, "feet"),
  23857. default: true
  23858. },
  23859. ]
  23860. ))
  23861. characterMakers.push(() => makeCharacter(
  23862. { name: "2th", species: ["monster"], tags: ["anthro"] },
  23863. {
  23864. front: {
  23865. height: math.unit(1500, "feet"),
  23866. weight: math.unit(3.8e6, "tons"),
  23867. name: "Front",
  23868. image: {
  23869. source: "./media/characters/2th/front.svg",
  23870. extra: 3489 / 3350,
  23871. bottom: 0.1
  23872. }
  23873. },
  23874. foot: {
  23875. height: math.unit(461, "feet"),
  23876. name: "Foot",
  23877. image: {
  23878. source: "./media/characters/2th/foot.svg"
  23879. }
  23880. },
  23881. },
  23882. [
  23883. {
  23884. name: "\"Micro\"",
  23885. height: math.unit(15 + 7 / 12, "feet")
  23886. },
  23887. {
  23888. name: "Normal",
  23889. height: math.unit(1500, "feet"),
  23890. default: true
  23891. },
  23892. {
  23893. name: "Macro",
  23894. height: math.unit(5000, "feet")
  23895. },
  23896. {
  23897. name: "Megamacro",
  23898. height: math.unit(15, "miles")
  23899. },
  23900. {
  23901. name: "Gigamacro",
  23902. height: math.unit(4000, "miles")
  23903. },
  23904. {
  23905. name: "Galactic",
  23906. height: math.unit(50, "AU")
  23907. },
  23908. ]
  23909. ))
  23910. characterMakers.push(() => makeCharacter(
  23911. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  23912. {
  23913. front: {
  23914. height: math.unit(5 + 6 / 12, "feet"),
  23915. weight: math.unit(220, "lb"),
  23916. name: "Front",
  23917. image: {
  23918. source: "./media/characters/amethyst/front.svg",
  23919. extra: 2078 / 2040,
  23920. bottom: 0.045
  23921. }
  23922. },
  23923. back: {
  23924. height: math.unit(5 + 6 / 12, "feet"),
  23925. weight: math.unit(220, "lb"),
  23926. name: "Back",
  23927. image: {
  23928. source: "./media/characters/amethyst/back.svg",
  23929. extra: 2021 / 1989,
  23930. bottom: 0.02
  23931. }
  23932. },
  23933. },
  23934. [
  23935. {
  23936. name: "Normal",
  23937. height: math.unit(5 + 6 / 12, "feet"),
  23938. default: true
  23939. },
  23940. ]
  23941. ))
  23942. characterMakers.push(() => makeCharacter(
  23943. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  23944. {
  23945. front: {
  23946. height: math.unit(4 + 11 / 12, "feet"),
  23947. weight: math.unit(120, "lb"),
  23948. name: "Front",
  23949. image: {
  23950. source: "./media/characters/yumi-akiyama/front.svg",
  23951. extra: 2638/2432,
  23952. bottom: 70/2708
  23953. }
  23954. },
  23955. back: {
  23956. height: math.unit(4 + 11 / 12, "feet"),
  23957. weight: math.unit(120, "lb"),
  23958. name: "Back",
  23959. image: {
  23960. source: "./media/characters/yumi-akiyama/back.svg",
  23961. extra: 2502/2397,
  23962. bottom: 80/2582
  23963. }
  23964. },
  23965. casual: {
  23966. height: math.unit(4 + 11 / 12, "feet"),
  23967. weight: math.unit(120, "lb"),
  23968. name: "Casual",
  23969. image: {
  23970. source: "./media/characters/yumi-akiyama/casual.svg",
  23971. extra: 958/887,
  23972. bottom: 41/999
  23973. }
  23974. },
  23975. jammies: {
  23976. height: math.unit(4 + 11 / 12, "feet"),
  23977. weight: math.unit(120, "lb"),
  23978. name: "Jammies",
  23979. image: {
  23980. source: "./media/characters/yumi-akiyama/jammies.svg",
  23981. extra: 958/894,
  23982. bottom: 37/995
  23983. }
  23984. },
  23985. warmWeather: {
  23986. height: math.unit(4 + 11 / 12, "feet"),
  23987. weight: math.unit(120, "lb"),
  23988. name: "Warm Weather",
  23989. image: {
  23990. source: "./media/characters/yumi-akiyama/warm-weather.svg",
  23991. extra: 929/865,
  23992. bottom: 76/1005
  23993. }
  23994. },
  23995. mouth: {
  23996. height: math.unit(0.35, "feet"),
  23997. name: "Mouth",
  23998. image: {
  23999. source: "./media/characters/yumi-akiyama/mouth.svg"
  24000. }
  24001. },
  24002. paws: {
  24003. height: math.unit(1.05, "feet"),
  24004. name: "Paws",
  24005. image: {
  24006. source: "./media/characters/yumi-akiyama/paws.svg"
  24007. }
  24008. },
  24009. cockRing: {
  24010. height: math.unit(0.225, "feet"),
  24011. name: "Cock Ring",
  24012. image: {
  24013. source: "./media/characters/yumi-akiyama/cock-ring.svg"
  24014. }
  24015. },
  24016. },
  24017. [
  24018. {
  24019. name: "Galactic",
  24020. height: math.unit(50, "galaxies"),
  24021. default: true
  24022. },
  24023. {
  24024. name: "Universal",
  24025. height: math.unit(100, "universes")
  24026. },
  24027. ]
  24028. ))
  24029. characterMakers.push(() => makeCharacter(
  24030. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  24031. {
  24032. front: {
  24033. height: math.unit(8, "feet"),
  24034. weight: math.unit(500, "lb"),
  24035. name: "Front",
  24036. image: {
  24037. source: "./media/characters/rifter-yrmori/front.svg",
  24038. extra: 1180 / 1125,
  24039. bottom: 0.02
  24040. }
  24041. },
  24042. back: {
  24043. height: math.unit(8, "feet"),
  24044. weight: math.unit(500, "lb"),
  24045. name: "Back",
  24046. image: {
  24047. source: "./media/characters/rifter-yrmori/back.svg",
  24048. extra: 1190 / 1145,
  24049. bottom: 0.001
  24050. }
  24051. },
  24052. wings: {
  24053. height: math.unit(7.75, "feet"),
  24054. weight: math.unit(500, "lb"),
  24055. name: "Wings",
  24056. image: {
  24057. source: "./media/characters/rifter-yrmori/wings.svg",
  24058. extra: 1357 / 1285
  24059. }
  24060. },
  24061. maw: {
  24062. height: math.unit(0.8, "feet"),
  24063. name: "Maw",
  24064. image: {
  24065. source: "./media/characters/rifter-yrmori/maw.svg"
  24066. }
  24067. },
  24068. mawfront: {
  24069. height: math.unit(1.45, "feet"),
  24070. name: "Maw (Front)",
  24071. image: {
  24072. source: "./media/characters/rifter-yrmori/maw-front.svg"
  24073. }
  24074. },
  24075. },
  24076. [
  24077. {
  24078. name: "Normal",
  24079. height: math.unit(8, "feet"),
  24080. default: true
  24081. },
  24082. {
  24083. name: "Macro",
  24084. height: math.unit(42, "meters")
  24085. },
  24086. ]
  24087. ))
  24088. characterMakers.push(() => makeCharacter(
  24089. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  24090. {
  24091. were: {
  24092. height: math.unit(25 + 6 / 12, "feet"),
  24093. weight: math.unit(10000, "lb"),
  24094. name: "Were",
  24095. image: {
  24096. source: "./media/characters/tahajin/were.svg",
  24097. extra: 801 / 770,
  24098. bottom: 0.042
  24099. }
  24100. },
  24101. aquatic: {
  24102. height: math.unit(6 + 4 / 12, "feet"),
  24103. weight: math.unit(160, "lb"),
  24104. name: "Aquatic",
  24105. image: {
  24106. source: "./media/characters/tahajin/aquatic.svg",
  24107. extra: 572 / 542,
  24108. bottom: 0.04
  24109. }
  24110. },
  24111. chow: {
  24112. height: math.unit(8 + 11 / 12, "feet"),
  24113. weight: math.unit(450, "lb"),
  24114. name: "Chow",
  24115. image: {
  24116. source: "./media/characters/tahajin/chow.svg",
  24117. extra: 660 / 640,
  24118. bottom: 0.015
  24119. }
  24120. },
  24121. demiNaga: {
  24122. height: math.unit(6 + 8 / 12, "feet"),
  24123. weight: math.unit(300, "lb"),
  24124. name: "Demi Naga",
  24125. image: {
  24126. source: "./media/characters/tahajin/demi-naga.svg",
  24127. extra: 643 / 615,
  24128. bottom: 0.1
  24129. }
  24130. },
  24131. data: {
  24132. height: math.unit(5, "inches"),
  24133. weight: math.unit(0.1, "lb"),
  24134. name: "Data",
  24135. image: {
  24136. source: "./media/characters/tahajin/data.svg"
  24137. }
  24138. },
  24139. fluu: {
  24140. height: math.unit(5 + 7 / 12, "feet"),
  24141. weight: math.unit(140, "lb"),
  24142. name: "Fluu",
  24143. image: {
  24144. source: "./media/characters/tahajin/fluu.svg",
  24145. extra: 628 / 592,
  24146. bottom: 0.02
  24147. }
  24148. },
  24149. starWarrior: {
  24150. height: math.unit(4 + 5 / 12, "feet"),
  24151. weight: math.unit(50, "lb"),
  24152. name: "Star Warrior",
  24153. image: {
  24154. source: "./media/characters/tahajin/star-warrior.svg"
  24155. }
  24156. },
  24157. },
  24158. [
  24159. {
  24160. name: "Normal",
  24161. height: math.unit(25 + 6 / 12, "feet"),
  24162. default: true
  24163. },
  24164. ]
  24165. ))
  24166. characterMakers.push(() => makeCharacter(
  24167. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  24168. {
  24169. front: {
  24170. height: math.unit(8, "feet"),
  24171. weight: math.unit(350, "lb"),
  24172. name: "Front",
  24173. image: {
  24174. source: "./media/characters/gabira/front.svg",
  24175. extra: 1261/1154,
  24176. bottom: 51/1312
  24177. }
  24178. },
  24179. back: {
  24180. height: math.unit(8, "feet"),
  24181. weight: math.unit(350, "lb"),
  24182. name: "Back",
  24183. image: {
  24184. source: "./media/characters/gabira/back.svg",
  24185. extra: 1265/1163,
  24186. bottom: 46/1311
  24187. }
  24188. },
  24189. head: {
  24190. height: math.unit(2.85, "feet"),
  24191. name: "Head",
  24192. image: {
  24193. source: "./media/characters/gabira/head.svg"
  24194. }
  24195. },
  24196. },
  24197. [
  24198. {
  24199. name: "Normal",
  24200. height: math.unit(8, "feet"),
  24201. default: true
  24202. },
  24203. ]
  24204. ))
  24205. characterMakers.push(() => makeCharacter(
  24206. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  24207. {
  24208. front: {
  24209. height: math.unit(5 + 3 / 12, "feet"),
  24210. weight: math.unit(137, "lb"),
  24211. name: "Front",
  24212. image: {
  24213. source: "./media/characters/sasha-katraine/front.svg",
  24214. extra: 1745/1694,
  24215. bottom: 37/1782
  24216. }
  24217. },
  24218. back: {
  24219. height: math.unit(5 + 3 / 12, "feet"),
  24220. weight: math.unit(137, "lb"),
  24221. name: "Back",
  24222. image: {
  24223. source: "./media/characters/sasha-katraine/back.svg",
  24224. extra: 1776/1699,
  24225. bottom: 26/1802
  24226. }
  24227. },
  24228. },
  24229. [
  24230. {
  24231. name: "Micro",
  24232. height: math.unit(5, "inches")
  24233. },
  24234. {
  24235. name: "Normal",
  24236. height: math.unit(5 + 3 / 12, "feet"),
  24237. default: true
  24238. },
  24239. ]
  24240. ))
  24241. characterMakers.push(() => makeCharacter(
  24242. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  24243. {
  24244. side: {
  24245. height: math.unit(4, "inches"),
  24246. weight: math.unit(200, "grams"),
  24247. name: "Side",
  24248. image: {
  24249. source: "./media/characters/der/side.svg",
  24250. extra: 719 / 400,
  24251. bottom: 30.6 / 749.9187
  24252. }
  24253. },
  24254. },
  24255. [
  24256. {
  24257. name: "Micro",
  24258. height: math.unit(4, "inches"),
  24259. default: true
  24260. },
  24261. ]
  24262. ))
  24263. characterMakers.push(() => makeCharacter(
  24264. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  24265. {
  24266. side: {
  24267. height: math.unit(30, "meters"),
  24268. weight: math.unit(700, "tonnes"),
  24269. name: "Side",
  24270. image: {
  24271. source: "./media/characters/fixerdragon/side.svg",
  24272. extra: (1293.0514 - 116.03) / 1106.86,
  24273. bottom: 116.03 / 1293.0514
  24274. }
  24275. },
  24276. },
  24277. [
  24278. {
  24279. name: "Planck",
  24280. height: math.unit(1.6e-35, "meters")
  24281. },
  24282. {
  24283. name: "Micro",
  24284. height: math.unit(0.4, "meters")
  24285. },
  24286. {
  24287. name: "Normal",
  24288. height: math.unit(30, "meters"),
  24289. default: true
  24290. },
  24291. {
  24292. name: "Megamacro",
  24293. height: math.unit(1.2, "megameters")
  24294. },
  24295. {
  24296. name: "Teramacro",
  24297. height: math.unit(130, "terameters")
  24298. },
  24299. {
  24300. name: "Yottamacro",
  24301. height: math.unit(6200, "yottameters")
  24302. },
  24303. ]
  24304. ));
  24305. characterMakers.push(() => makeCharacter(
  24306. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  24307. {
  24308. front: {
  24309. height: math.unit(8, "feet"),
  24310. weight: math.unit(250, "lb"),
  24311. name: "Front",
  24312. image: {
  24313. source: "./media/characters/kite/front.svg",
  24314. extra: 456/414,
  24315. bottom: 24/480
  24316. }
  24317. },
  24318. },
  24319. [
  24320. {
  24321. name: "Normal",
  24322. height: math.unit(8, "feet"),
  24323. default: true
  24324. },
  24325. {
  24326. name: "Macro",
  24327. height: math.unit(360, "feet")
  24328. },
  24329. {
  24330. name: "Megamacro",
  24331. height: math.unit(1500, "feet")
  24332. },
  24333. ]
  24334. ))
  24335. characterMakers.push(() => makeCharacter(
  24336. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  24337. {
  24338. anthro_front: {
  24339. height: math.unit(5 + 11/12, "feet"),
  24340. weight: math.unit(170, "lb"),
  24341. name: "Front",
  24342. image: {
  24343. source: "./media/characters/poojawa-vynar/anthro-front.svg",
  24344. extra: 1735/1585,
  24345. bottom: 96/1831
  24346. },
  24347. form: "anthro",
  24348. default: true
  24349. },
  24350. anthro_back: {
  24351. height: math.unit(5 + 11/12, "feet"),
  24352. weight: math.unit(170, "lb"),
  24353. name: "Back",
  24354. image: {
  24355. source: "./media/characters/poojawa-vynar/anthro-back.svg",
  24356. extra: 1749/1607,
  24357. bottom: 28/1777
  24358. },
  24359. form: "anthro"
  24360. },
  24361. anthro_male: {
  24362. height: math.unit(5 + 11/12, "feet"),
  24363. weight: math.unit(170, "lb"),
  24364. name: "Male",
  24365. image: {
  24366. source: "./media/characters/poojawa-vynar/anthro-front-male.svg",
  24367. extra: 1855/1713,
  24368. bottom: 63/1918
  24369. },
  24370. form: "anthro"
  24371. },
  24372. taur_front: {
  24373. height: math.unit(5 + 7/12, "feet"),
  24374. weight: math.unit(170, "lb"),
  24375. name: "Front",
  24376. image: {
  24377. source: "./media/characters/poojawa-vynar/taur-front.svg",
  24378. extra: 1151/1059,
  24379. bottom: 356/1507
  24380. },
  24381. form: "taur",
  24382. default: true
  24383. },
  24384. anthro_frontDressed: {
  24385. height: math.unit(5 + 11/12, "feet"),
  24386. weight: math.unit(170, "lb"),
  24387. name: "Front (Dressed)",
  24388. image: {
  24389. source: "./media/characters/poojawa-vynar/anthro-front-dressed.svg",
  24390. extra: 1735/1585,
  24391. bottom: 96/1831
  24392. },
  24393. form: "anthro"
  24394. },
  24395. anthro_backDressed: {
  24396. height: math.unit(5 + 11/12, "feet"),
  24397. weight: math.unit(170, "lb"),
  24398. name: "Back (Dressed)",
  24399. image: {
  24400. source: "./media/characters/poojawa-vynar/anthro-back-dressed.svg",
  24401. extra: 1749/1607,
  24402. bottom: 28/1777
  24403. },
  24404. form: "anthro"
  24405. },
  24406. anthro_maleDressed: {
  24407. height: math.unit(5 + 11/12, "feet"),
  24408. weight: math.unit(170, "lb"),
  24409. name: "Male (Dressed)",
  24410. image: {
  24411. source: "./media/characters/poojawa-vynar/anthro-front-male-dressed.svg",
  24412. extra: 1855/1713,
  24413. bottom: 63/1918
  24414. },
  24415. form: "anthro"
  24416. },
  24417. taur_frontDressed: {
  24418. height: math.unit(5 + 7/12, "feet"),
  24419. weight: math.unit(170, "lb"),
  24420. name: "Front (Dressed)",
  24421. image: {
  24422. source: "./media/characters/poojawa-vynar/taur-front-dressed.svg",
  24423. extra: 1151/1059,
  24424. bottom: 356/1507
  24425. },
  24426. form: "taur"
  24427. },
  24428. maw: {
  24429. height: math.unit(1.46, "feet"),
  24430. name: "Maw",
  24431. image: {
  24432. source: "./media/characters/poojawa-vynar/maw.svg"
  24433. },
  24434. allForms: true
  24435. },
  24436. head: {
  24437. height: math.unit(2.34, "feet"),
  24438. name: "Head",
  24439. image: {
  24440. source: "./media/characters/poojawa-vynar/head.svg"
  24441. },
  24442. allForms: true
  24443. },
  24444. leftPaw: {
  24445. height: math.unit(1.72, "feet"),
  24446. name: "Left Paw",
  24447. image: {
  24448. source: "./media/characters/poojawa-vynar/paw-left.svg"
  24449. },
  24450. allForms: true
  24451. },
  24452. rightPaw: {
  24453. height: math.unit(1.61, "feet"),
  24454. name: "Right Paw",
  24455. image: {
  24456. source: "./media/characters/poojawa-vynar/paw-right.svg"
  24457. },
  24458. allForms: true
  24459. },
  24460. toering: {
  24461. height: math.unit(2.9, "inches"),
  24462. name: "Toering",
  24463. image: {
  24464. source: "./media/characters/poojawa-vynar/toering.svg"
  24465. },
  24466. allForms: true
  24467. },
  24468. shaft: {
  24469. height: math.unit(0.625, "feet"),
  24470. name: "Shaft",
  24471. image: {
  24472. source: "./media/characters/poojawa-vynar/shaft.svg"
  24473. },
  24474. allForms: true
  24475. },
  24476. spade: {
  24477. height: math.unit(0.42, "feet"),
  24478. name: "Spade",
  24479. image: {
  24480. source: "./media/characters/poojawa-vynar/spade.svg"
  24481. },
  24482. allForms: true
  24483. },
  24484. },
  24485. [
  24486. {
  24487. name: "Shortstack",
  24488. height: math.unit(4, "feet"),
  24489. form: "anthro"
  24490. },
  24491. {
  24492. name: "Normal",
  24493. height: math.unit(5 + 11 / 12, "feet"),
  24494. form: "anthro",
  24495. default: true
  24496. },
  24497. {
  24498. name: "Tauric",
  24499. height: math.unit(4, "meters"),
  24500. form: "taur",
  24501. default: true
  24502. },
  24503. ],
  24504. {
  24505. "anthro": {
  24506. name: "Anthro",
  24507. default: true
  24508. },
  24509. "taur": {
  24510. name: "Taur",
  24511. },
  24512. }
  24513. ))
  24514. characterMakers.push(() => makeCharacter(
  24515. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  24516. {
  24517. front: {
  24518. height: math.unit(293, "meters"),
  24519. weight: math.unit(70400, "tons"),
  24520. name: "Front",
  24521. image: {
  24522. source: "./media/characters/violette/front.svg",
  24523. extra: 1227 / 1180,
  24524. bottom: 0.005
  24525. }
  24526. },
  24527. back: {
  24528. height: math.unit(293, "meters"),
  24529. weight: math.unit(70400, "tons"),
  24530. name: "Back",
  24531. image: {
  24532. source: "./media/characters/violette/back.svg",
  24533. extra: 1227 / 1180,
  24534. bottom: 0.005
  24535. }
  24536. },
  24537. },
  24538. [
  24539. {
  24540. name: "Macro",
  24541. height: math.unit(293, "meters"),
  24542. default: true
  24543. },
  24544. ]
  24545. ))
  24546. characterMakers.push(() => makeCharacter(
  24547. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  24548. {
  24549. front: {
  24550. height: math.unit(1050, "feet"),
  24551. weight: math.unit(200000, "tons"),
  24552. name: "Front",
  24553. image: {
  24554. source: "./media/characters/alessandra/front.svg",
  24555. extra: 960 / 912,
  24556. bottom: 0.06
  24557. }
  24558. },
  24559. },
  24560. [
  24561. {
  24562. name: "Macro",
  24563. height: math.unit(1050, "feet")
  24564. },
  24565. {
  24566. name: "Macro+",
  24567. height: math.unit(900, "meters"),
  24568. default: true
  24569. },
  24570. ]
  24571. ))
  24572. characterMakers.push(() => makeCharacter(
  24573. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  24574. {
  24575. front: {
  24576. height: math.unit(5, "feet"),
  24577. weight: math.unit(187, "lb"),
  24578. name: "Front",
  24579. image: {
  24580. source: "./media/characters/person/front.svg",
  24581. extra: 3087 / 2945,
  24582. bottom: 91 / 3181
  24583. }
  24584. },
  24585. },
  24586. [
  24587. {
  24588. name: "Micro",
  24589. height: math.unit(3, "inches")
  24590. },
  24591. {
  24592. name: "Normal",
  24593. height: math.unit(5, "feet"),
  24594. default: true
  24595. },
  24596. {
  24597. name: "Macro",
  24598. height: math.unit(90, "feet")
  24599. },
  24600. {
  24601. name: "Max Size",
  24602. height: math.unit(280, "feet")
  24603. },
  24604. ]
  24605. ))
  24606. characterMakers.push(() => makeCharacter(
  24607. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  24608. {
  24609. front: {
  24610. height: math.unit(12, "feet"),
  24611. weight: math.unit(3200, "lb"),
  24612. name: "Front",
  24613. image: {
  24614. source: "./media/characters/ty/front.svg",
  24615. extra: 753/703,
  24616. bottom: 61/814
  24617. }
  24618. },
  24619. back: {
  24620. height: math.unit(12, "feet"),
  24621. weight: math.unit(3200, "lb"),
  24622. name: "Back",
  24623. image: {
  24624. source: "./media/characters/ty/back.svg",
  24625. extra: 757/707,
  24626. bottom: 16/773
  24627. }
  24628. },
  24629. head: {
  24630. height: math.unit(3.7, "feet"),
  24631. name: "Head",
  24632. image: {
  24633. source: "./media/characters/ty/head.svg"
  24634. }
  24635. },
  24636. hand: {
  24637. height: math.unit(2.38, "feet"),
  24638. name: "Hand",
  24639. image: {
  24640. source: "./media/characters/ty/hand.svg"
  24641. }
  24642. },
  24643. tail: {
  24644. height: math.unit(8.01096641535, "feet"),
  24645. name: "Tail",
  24646. image: {
  24647. source: "./media/characters/ty/tail.svg"
  24648. }
  24649. },
  24650. },
  24651. [
  24652. {
  24653. name: "Normal",
  24654. height: math.unit(12, "feet"),
  24655. default: true
  24656. },
  24657. ]
  24658. ))
  24659. characterMakers.push(() => makeCharacter(
  24660. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  24661. {
  24662. front: {
  24663. height: math.unit(5 + 4 / 12, "feet"),
  24664. weight: math.unit(115, "lb"),
  24665. name: "Front",
  24666. image: {
  24667. source: "./media/characters/rocky/front.svg",
  24668. extra: 1012 / 975,
  24669. bottom: 54 / 1066
  24670. }
  24671. },
  24672. },
  24673. [
  24674. {
  24675. name: "Normal",
  24676. height: math.unit(5 + 4 / 12, "feet"),
  24677. default: true
  24678. },
  24679. ]
  24680. ))
  24681. characterMakers.push(() => makeCharacter(
  24682. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  24683. {
  24684. upright: {
  24685. height: math.unit(6, "meters"),
  24686. weight: math.unit(4000, "kg"),
  24687. name: "Upright",
  24688. image: {
  24689. source: "./media/characters/ruin/upright.svg",
  24690. extra: 668 / 661,
  24691. bottom: 42 / 799.8396
  24692. }
  24693. },
  24694. },
  24695. [
  24696. {
  24697. name: "Normal",
  24698. height: math.unit(6, "meters"),
  24699. default: true
  24700. },
  24701. ]
  24702. ))
  24703. characterMakers.push(() => makeCharacter(
  24704. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  24705. {
  24706. front: {
  24707. height: math.unit(5, "feet"),
  24708. weight: math.unit(106, "lb"),
  24709. name: "Front",
  24710. image: {
  24711. source: "./media/characters/robin/front.svg",
  24712. extra: 862 / 799,
  24713. bottom: 42.4 / 914.8856
  24714. }
  24715. },
  24716. },
  24717. [
  24718. {
  24719. name: "Normal",
  24720. height: math.unit(5, "feet"),
  24721. default: true
  24722. },
  24723. ]
  24724. ))
  24725. characterMakers.push(() => makeCharacter(
  24726. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  24727. {
  24728. side: {
  24729. height: math.unit(3, "feet"),
  24730. weight: math.unit(225, "lb"),
  24731. name: "Side",
  24732. image: {
  24733. source: "./media/characters/saian/side.svg",
  24734. extra: 566 / 356,
  24735. bottom: 79.7 / 643
  24736. }
  24737. },
  24738. maw: {
  24739. height: math.unit(2.85, "feet"),
  24740. name: "Maw",
  24741. image: {
  24742. source: "./media/characters/saian/maw.svg"
  24743. }
  24744. },
  24745. },
  24746. [
  24747. {
  24748. name: "Normal",
  24749. height: math.unit(3, "feet"),
  24750. default: true
  24751. },
  24752. ]
  24753. ))
  24754. characterMakers.push(() => makeCharacter(
  24755. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  24756. {
  24757. side: {
  24758. height: math.unit(8, "feet"),
  24759. weight: math.unit(300, "lb"),
  24760. name: "Side",
  24761. image: {
  24762. source: "./media/characters/equus-silvermane/side.svg",
  24763. extra: 2176 / 2050,
  24764. bottom: 65.7 / 2245
  24765. }
  24766. },
  24767. front: {
  24768. height: math.unit(8, "feet"),
  24769. weight: math.unit(300, "lb"),
  24770. name: "Front",
  24771. image: {
  24772. source: "./media/characters/equus-silvermane/front.svg",
  24773. extra: 4633 / 4400,
  24774. bottom: 71.3 / 4706.915
  24775. }
  24776. },
  24777. sideStepping: {
  24778. height: math.unit(8, "feet"),
  24779. weight: math.unit(300, "lb"),
  24780. name: "Side (Stepping)",
  24781. image: {
  24782. source: "./media/characters/equus-silvermane/side-stepping.svg",
  24783. extra: 1968 / 1860,
  24784. bottom: 16.4 / 1989
  24785. }
  24786. },
  24787. },
  24788. [
  24789. {
  24790. name: "Normal",
  24791. height: math.unit(8, "feet")
  24792. },
  24793. {
  24794. name: "Minimacro",
  24795. height: math.unit(75, "feet"),
  24796. default: true
  24797. },
  24798. {
  24799. name: "Macro",
  24800. height: math.unit(150, "feet")
  24801. },
  24802. {
  24803. name: "Macro+",
  24804. height: math.unit(1000, "feet")
  24805. },
  24806. {
  24807. name: "Megamacro",
  24808. height: math.unit(1, "mile")
  24809. },
  24810. ]
  24811. ))
  24812. characterMakers.push(() => makeCharacter(
  24813. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  24814. {
  24815. side: {
  24816. height: math.unit(20, "feet"),
  24817. weight: math.unit(30000, "kg"),
  24818. name: "Side",
  24819. image: {
  24820. source: "./media/characters/windar/side.svg",
  24821. extra: 1491 / 1248,
  24822. bottom: 82.56 / 1568
  24823. }
  24824. },
  24825. },
  24826. [
  24827. {
  24828. name: "Normal",
  24829. height: math.unit(20, "feet"),
  24830. default: true
  24831. },
  24832. ]
  24833. ))
  24834. characterMakers.push(() => makeCharacter(
  24835. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  24836. {
  24837. side: {
  24838. height: math.unit(15.66, "feet"),
  24839. weight: math.unit(150, "lb"),
  24840. name: "Side",
  24841. image: {
  24842. source: "./media/characters/melody/side.svg",
  24843. extra: 1097 / 944,
  24844. bottom: 11.8 / 1109
  24845. }
  24846. },
  24847. sideOutfit: {
  24848. height: math.unit(15.66, "feet"),
  24849. weight: math.unit(150, "lb"),
  24850. name: "Side (Outfit)",
  24851. image: {
  24852. source: "./media/characters/melody/side-outfit.svg",
  24853. extra: 1097 / 944,
  24854. bottom: 11.8 / 1109
  24855. }
  24856. },
  24857. },
  24858. [
  24859. {
  24860. name: "Normal",
  24861. height: math.unit(15.66, "feet"),
  24862. default: true
  24863. },
  24864. ]
  24865. ))
  24866. characterMakers.push(() => makeCharacter(
  24867. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  24868. {
  24869. armoredFront: {
  24870. height: math.unit(8, "feet"),
  24871. weight: math.unit(325, "lb"),
  24872. name: "Front",
  24873. image: {
  24874. source: "./media/characters/windera/armored-front.svg",
  24875. extra: 1830/1598,
  24876. bottom: 151/1981
  24877. },
  24878. form: "armored",
  24879. default: true
  24880. },
  24881. macroFront: {
  24882. height: math.unit(70, "feet"),
  24883. weight: math.unit(315453, "lb"),
  24884. name: "Front",
  24885. image: {
  24886. source: "./media/characters/windera/macro-front.svg",
  24887. extra: 963/883,
  24888. bottom: 23/986
  24889. },
  24890. form: "macro",
  24891. default: true
  24892. },
  24893. },
  24894. [
  24895. {
  24896. name: "Normal",
  24897. height: math.unit(8, "feet"),
  24898. default: true,
  24899. form: "armored"
  24900. },
  24901. {
  24902. name: "Normal",
  24903. height: math.unit(70, "feet"),
  24904. default: true,
  24905. form: "macro"
  24906. },
  24907. ],
  24908. {
  24909. "armored": {
  24910. name: "Armored",
  24911. default: true
  24912. },
  24913. "macro": {
  24914. name: "Macro",
  24915. },
  24916. }
  24917. ))
  24918. characterMakers.push(() => makeCharacter(
  24919. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  24920. {
  24921. front: {
  24922. height: math.unit(28.75, "feet"),
  24923. weight: math.unit(2000, "kg"),
  24924. name: "Front",
  24925. image: {
  24926. source: "./media/characters/sonear/front.svg",
  24927. extra: 1041.1 / 964.9,
  24928. bottom: 53.7 / 1096.6
  24929. }
  24930. },
  24931. },
  24932. [
  24933. {
  24934. name: "Normal",
  24935. height: math.unit(28.75, "feet"),
  24936. default: true
  24937. },
  24938. ]
  24939. ))
  24940. characterMakers.push(() => makeCharacter(
  24941. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  24942. {
  24943. side: {
  24944. height: math.unit(25.5, "feet"),
  24945. weight: math.unit(23000, "kg"),
  24946. name: "Side",
  24947. image: {
  24948. source: "./media/characters/kanara/side.svg"
  24949. }
  24950. },
  24951. },
  24952. [
  24953. {
  24954. name: "Normal",
  24955. height: math.unit(25.5, "feet"),
  24956. default: true
  24957. },
  24958. ]
  24959. ))
  24960. characterMakers.push(() => makeCharacter(
  24961. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  24962. {
  24963. side: {
  24964. height: math.unit(10, "feet"),
  24965. weight: math.unit(1000, "kg"),
  24966. name: "Side",
  24967. image: {
  24968. source: "./media/characters/ereus/side.svg",
  24969. extra: 1157 / 959,
  24970. bottom: 153 / 1312.5
  24971. }
  24972. },
  24973. },
  24974. [
  24975. {
  24976. name: "Normal",
  24977. height: math.unit(10, "feet"),
  24978. default: true
  24979. },
  24980. ]
  24981. ))
  24982. characterMakers.push(() => makeCharacter(
  24983. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  24984. {
  24985. side: {
  24986. height: math.unit(4.5, "feet"),
  24987. weight: math.unit(500, "lb"),
  24988. name: "Side",
  24989. image: {
  24990. source: "./media/characters/e-ter/side.svg",
  24991. extra: 1550 / 1248,
  24992. bottom: 146 / 1694
  24993. }
  24994. },
  24995. },
  24996. [
  24997. {
  24998. name: "Normal",
  24999. height: math.unit(4.5, "feet"),
  25000. default: true
  25001. },
  25002. ]
  25003. ))
  25004. characterMakers.push(() => makeCharacter(
  25005. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  25006. {
  25007. side: {
  25008. height: math.unit(9.7, "feet"),
  25009. weight: math.unit(4000, "kg"),
  25010. name: "Side",
  25011. image: {
  25012. source: "./media/characters/yamie/side.svg"
  25013. }
  25014. },
  25015. },
  25016. [
  25017. {
  25018. name: "Normal",
  25019. height: math.unit(9.7, "feet"),
  25020. default: true
  25021. },
  25022. ]
  25023. ))
  25024. characterMakers.push(() => makeCharacter(
  25025. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  25026. {
  25027. front: {
  25028. height: math.unit(50, "feet"),
  25029. weight: math.unit(50000, "kg"),
  25030. name: "Front",
  25031. image: {
  25032. source: "./media/characters/anders/front.svg",
  25033. extra: 570 / 539,
  25034. bottom: 14.7 / 586.7
  25035. }
  25036. },
  25037. },
  25038. [
  25039. {
  25040. name: "Large",
  25041. height: math.unit(50, "feet")
  25042. },
  25043. {
  25044. name: "Macro",
  25045. height: math.unit(2000, "feet"),
  25046. default: true
  25047. },
  25048. {
  25049. name: "Megamacro",
  25050. height: math.unit(12, "miles")
  25051. },
  25052. ]
  25053. ))
  25054. characterMakers.push(() => makeCharacter(
  25055. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  25056. {
  25057. front: {
  25058. height: math.unit(7 + 2 / 12, "feet"),
  25059. weight: math.unit(300, "lb"),
  25060. name: "Front",
  25061. image: {
  25062. source: "./media/characters/reban/front.svg",
  25063. extra: 1287/1212,
  25064. bottom: 148/1435
  25065. }
  25066. },
  25067. head: {
  25068. height: math.unit(1.95, "feet"),
  25069. name: "Head",
  25070. image: {
  25071. source: "./media/characters/reban/head.svg"
  25072. }
  25073. },
  25074. maw: {
  25075. height: math.unit(0.95, "feet"),
  25076. name: "Maw",
  25077. image: {
  25078. source: "./media/characters/reban/maw.svg"
  25079. }
  25080. },
  25081. foot: {
  25082. height: math.unit(1.65, "feet"),
  25083. name: "Foot",
  25084. image: {
  25085. source: "./media/characters/reban/foot.svg"
  25086. }
  25087. },
  25088. dick: {
  25089. height: math.unit(7 / 5, "feet"),
  25090. name: "Dick",
  25091. image: {
  25092. source: "./media/characters/reban/dick.svg"
  25093. }
  25094. },
  25095. },
  25096. [
  25097. {
  25098. name: "Natural Height",
  25099. height: math.unit(7 + 2 / 12, "feet")
  25100. },
  25101. {
  25102. name: "Macro",
  25103. height: math.unit(500, "feet"),
  25104. default: true
  25105. },
  25106. {
  25107. name: "Canon Height",
  25108. height: math.unit(50, "AU")
  25109. },
  25110. ]
  25111. ))
  25112. characterMakers.push(() => makeCharacter(
  25113. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  25114. {
  25115. front: {
  25116. height: math.unit(6, "feet"),
  25117. weight: math.unit(150, "lb"),
  25118. name: "Front",
  25119. image: {
  25120. source: "./media/characters/terrance-keayes/front.svg",
  25121. extra: 1.005,
  25122. bottom: 151 / 1615
  25123. }
  25124. },
  25125. side: {
  25126. height: math.unit(6, "feet"),
  25127. weight: math.unit(150, "lb"),
  25128. name: "Side",
  25129. image: {
  25130. source: "./media/characters/terrance-keayes/side.svg",
  25131. extra: 1.005,
  25132. bottom: 129.4 / 1544
  25133. }
  25134. },
  25135. back: {
  25136. height: math.unit(6, "feet"),
  25137. weight: math.unit(150, "lb"),
  25138. name: "Back",
  25139. image: {
  25140. source: "./media/characters/terrance-keayes/back.svg",
  25141. extra: 1.005,
  25142. bottom: 58.4 / 1557.3
  25143. }
  25144. },
  25145. dick: {
  25146. height: math.unit(6 * 0.208, "feet"),
  25147. name: "Dick",
  25148. image: {
  25149. source: "./media/characters/terrance-keayes/dick.svg"
  25150. }
  25151. },
  25152. },
  25153. [
  25154. {
  25155. name: "Canon Height",
  25156. height: math.unit(35, "miles"),
  25157. default: true
  25158. },
  25159. ]
  25160. ))
  25161. characterMakers.push(() => makeCharacter(
  25162. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  25163. {
  25164. front: {
  25165. height: math.unit(6, "feet"),
  25166. weight: math.unit(150, "lb"),
  25167. name: "Front",
  25168. image: {
  25169. source: "./media/characters/ofelia/front.svg",
  25170. extra: 1130/1117,
  25171. bottom: 91/1221
  25172. }
  25173. },
  25174. back: {
  25175. height: math.unit(6, "feet"),
  25176. weight: math.unit(150, "lb"),
  25177. name: "Back",
  25178. image: {
  25179. source: "./media/characters/ofelia/back.svg",
  25180. extra: 1172/1159,
  25181. bottom: 28/1200
  25182. }
  25183. },
  25184. maw: {
  25185. height: math.unit(1, "feet"),
  25186. name: "Maw",
  25187. image: {
  25188. source: "./media/characters/ofelia/maw.svg"
  25189. }
  25190. },
  25191. foot: {
  25192. height: math.unit(1.949, "feet"),
  25193. name: "Foot",
  25194. image: {
  25195. source: "./media/characters/ofelia/foot.svg"
  25196. }
  25197. },
  25198. },
  25199. [
  25200. {
  25201. name: "Canon Height",
  25202. height: math.unit(2000, "miles"),
  25203. default: true
  25204. },
  25205. ]
  25206. ))
  25207. characterMakers.push(() => makeCharacter(
  25208. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  25209. {
  25210. front: {
  25211. height: math.unit(6, "feet"),
  25212. weight: math.unit(150, "lb"),
  25213. name: "Front",
  25214. image: {
  25215. source: "./media/characters/samuel/front.svg",
  25216. extra: 265 / 258,
  25217. bottom: 2 / 266.1566
  25218. }
  25219. },
  25220. },
  25221. [
  25222. {
  25223. name: "Macro",
  25224. height: math.unit(100, "feet"),
  25225. default: true
  25226. },
  25227. {
  25228. name: "Full Size",
  25229. height: math.unit(1000, "miles")
  25230. },
  25231. ]
  25232. ))
  25233. characterMakers.push(() => makeCharacter(
  25234. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  25235. {
  25236. front: {
  25237. height: math.unit(6, "feet"),
  25238. weight: math.unit(300, "lb"),
  25239. name: "Front",
  25240. image: {
  25241. source: "./media/characters/beishir-kiel/front.svg",
  25242. extra: 569 / 547,
  25243. bottom: 41.9 / 609
  25244. }
  25245. },
  25246. maw: {
  25247. height: math.unit(6 * 0.202, "feet"),
  25248. name: "Maw",
  25249. image: {
  25250. source: "./media/characters/beishir-kiel/maw.svg"
  25251. }
  25252. },
  25253. },
  25254. [
  25255. {
  25256. name: "Macro",
  25257. height: math.unit(300, "feet"),
  25258. default: true
  25259. },
  25260. ]
  25261. ))
  25262. characterMakers.push(() => makeCharacter(
  25263. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  25264. {
  25265. front: {
  25266. height: math.unit(5 + 7/12, "feet"),
  25267. weight: math.unit(120, "lb"),
  25268. name: "Front",
  25269. image: {
  25270. source: "./media/characters/logan-grey/front.svg",
  25271. extra: 1836/1738,
  25272. bottom: 108/1944
  25273. }
  25274. },
  25275. back: {
  25276. height: math.unit(5 + 7/12, "feet"),
  25277. weight: math.unit(120, "lb"),
  25278. name: "Back",
  25279. image: {
  25280. source: "./media/characters/logan-grey/back.svg",
  25281. extra: 1880/1794,
  25282. bottom: 24/1904
  25283. }
  25284. },
  25285. frontSfw: {
  25286. height: math.unit(5 + 7/12, "feet"),
  25287. weight: math.unit(120, "lb"),
  25288. name: "Front (SFW)",
  25289. image: {
  25290. source: "./media/characters/logan-grey/front-sfw.svg",
  25291. extra: 1836/1738,
  25292. bottom: 108/1944
  25293. }
  25294. },
  25295. backSfw: {
  25296. height: math.unit(5 + 7/12, "feet"),
  25297. weight: math.unit(120, "lb"),
  25298. name: "Back (SFW)",
  25299. image: {
  25300. source: "./media/characters/logan-grey/back-sfw.svg",
  25301. extra: 1880/1794,
  25302. bottom: 24/1904
  25303. }
  25304. },
  25305. hands: {
  25306. height: math.unit(0.84, "feet"),
  25307. name: "Hands",
  25308. image: {
  25309. source: "./media/characters/logan-grey/hands.svg"
  25310. }
  25311. },
  25312. paws: {
  25313. height: math.unit(0.72, "feet"),
  25314. name: "Paws",
  25315. image: {
  25316. source: "./media/characters/logan-grey/paws.svg"
  25317. }
  25318. },
  25319. cock: {
  25320. height: math.unit(1.45, "feet"),
  25321. name: "Cock",
  25322. image: {
  25323. source: "./media/characters/logan-grey/cock.svg"
  25324. }
  25325. },
  25326. cockAlt: {
  25327. height: math.unit(1.437, "feet"),
  25328. name: "Cock (alt)",
  25329. image: {
  25330. source: "./media/characters/logan-grey/cock-alt.svg"
  25331. }
  25332. },
  25333. },
  25334. [
  25335. {
  25336. name: "Normal",
  25337. height: math.unit(5 + 8 / 12, "feet")
  25338. },
  25339. {
  25340. name: "The 500 Foot Femboy",
  25341. height: math.unit(500, "feet"),
  25342. default: true
  25343. },
  25344. {
  25345. name: "Megmacro",
  25346. height: math.unit(20, "miles")
  25347. },
  25348. ]
  25349. ))
  25350. characterMakers.push(() => makeCharacter(
  25351. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  25352. {
  25353. front: {
  25354. height: math.unit(8 + 2 / 12, "feet"),
  25355. weight: math.unit(275, "lb"),
  25356. name: "Front",
  25357. image: {
  25358. source: "./media/characters/draganta/front.svg",
  25359. extra: 1177 / 1135,
  25360. bottom: 33.46 / 1212.1
  25361. }
  25362. },
  25363. },
  25364. [
  25365. {
  25366. name: "Normal",
  25367. height: math.unit(8 + 6 / 12, "feet"),
  25368. default: true
  25369. },
  25370. {
  25371. name: "Macro",
  25372. height: math.unit(150, "feet")
  25373. },
  25374. {
  25375. name: "Megamacro",
  25376. height: math.unit(1000, "miles")
  25377. },
  25378. ]
  25379. ))
  25380. characterMakers.push(() => makeCharacter(
  25381. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  25382. {
  25383. front: {
  25384. height: math.unit(1.72, "m"),
  25385. weight: math.unit(80, "lb"),
  25386. name: "Front",
  25387. image: {
  25388. source: "./media/characters/voski/front.svg",
  25389. extra: 2076.22 / 2022.4,
  25390. bottom: 102.7 / 2177.3866
  25391. }
  25392. },
  25393. frontFlaccid: {
  25394. height: math.unit(1.72, "m"),
  25395. weight: math.unit(80, "lb"),
  25396. name: "Front (Flaccid)",
  25397. image: {
  25398. source: "./media/characters/voski/front-flaccid.svg",
  25399. extra: 2076.22 / 2022.4,
  25400. bottom: 102.7 / 2177.3866
  25401. }
  25402. },
  25403. frontErect: {
  25404. height: math.unit(1.72, "m"),
  25405. weight: math.unit(80, "lb"),
  25406. name: "Front (Erect)",
  25407. image: {
  25408. source: "./media/characters/voski/front-erect.svg",
  25409. extra: 2076.22 / 2022.4,
  25410. bottom: 102.7 / 2177.3866
  25411. }
  25412. },
  25413. back: {
  25414. height: math.unit(1.72, "m"),
  25415. weight: math.unit(80, "lb"),
  25416. name: "Back",
  25417. image: {
  25418. source: "./media/characters/voski/back.svg",
  25419. extra: 2104 / 2051,
  25420. bottom: 10.45 / 2113.63
  25421. }
  25422. },
  25423. },
  25424. [
  25425. {
  25426. name: "Normal",
  25427. height: math.unit(1.72, "m")
  25428. },
  25429. {
  25430. name: "Macro",
  25431. height: math.unit(55, "m"),
  25432. default: true
  25433. },
  25434. {
  25435. name: "Macro+",
  25436. height: math.unit(300, "m")
  25437. },
  25438. {
  25439. name: "Macro++",
  25440. height: math.unit(700, "m")
  25441. },
  25442. {
  25443. name: "Macro+++",
  25444. height: math.unit(4500, "m")
  25445. },
  25446. {
  25447. name: "Macro++++",
  25448. height: math.unit(45, "km")
  25449. },
  25450. {
  25451. name: "Macro+++++",
  25452. height: math.unit(1220, "km")
  25453. },
  25454. ]
  25455. ))
  25456. characterMakers.push(() => makeCharacter(
  25457. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  25458. {
  25459. front: {
  25460. height: math.unit(2.3, "m"),
  25461. weight: math.unit(304, "kg"),
  25462. name: "Front",
  25463. image: {
  25464. source: "./media/characters/icowom-lee/front.svg",
  25465. extra: 985 / 955,
  25466. bottom: 25.4 / 1012
  25467. }
  25468. },
  25469. fronttentacles: {
  25470. height: math.unit(2.3, "m"),
  25471. weight: math.unit(304, "kg"),
  25472. name: "Front-tentacles",
  25473. image: {
  25474. source: "./media/characters/icowom-lee/front-tentacles.svg",
  25475. extra: 985 / 955,
  25476. bottom: 25.4 / 1012
  25477. }
  25478. },
  25479. back: {
  25480. height: math.unit(2.3, "m"),
  25481. weight: math.unit(304, "kg"),
  25482. name: "Back",
  25483. image: {
  25484. source: "./media/characters/icowom-lee/back.svg",
  25485. extra: 975 / 954,
  25486. bottom: 9.5 / 985
  25487. }
  25488. },
  25489. backtentacles: {
  25490. height: math.unit(2.3, "m"),
  25491. weight: math.unit(304, "kg"),
  25492. name: "Back-tentacles",
  25493. image: {
  25494. source: "./media/characters/icowom-lee/back-tentacles.svg",
  25495. extra: 975 / 954,
  25496. bottom: 9.5 / 985
  25497. }
  25498. },
  25499. frontDressed: {
  25500. height: math.unit(2.3, "m"),
  25501. weight: math.unit(304, "kg"),
  25502. name: "Front (Dressed)",
  25503. image: {
  25504. source: "./media/characters/icowom-lee/front-dressed.svg",
  25505. extra: 3076 / 2933,
  25506. bottom: 51.4 / 3125.1889
  25507. }
  25508. },
  25509. rump: {
  25510. height: math.unit(0.776, "meters"),
  25511. name: "Rump",
  25512. image: {
  25513. source: "./media/characters/icowom-lee/rump.svg"
  25514. }
  25515. },
  25516. genitals: {
  25517. height: math.unit(0.78, "meters"),
  25518. name: "Genitals",
  25519. image: {
  25520. source: "./media/characters/icowom-lee/genitals.svg"
  25521. }
  25522. },
  25523. },
  25524. [
  25525. {
  25526. name: "Normal",
  25527. height: math.unit(2.3, "meters"),
  25528. default: true
  25529. },
  25530. {
  25531. name: "Macro",
  25532. height: math.unit(94, "meters"),
  25533. default: true
  25534. },
  25535. ]
  25536. ))
  25537. characterMakers.push(() => makeCharacter(
  25538. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  25539. {
  25540. front: {
  25541. height: math.unit(22, "meters"),
  25542. weight: math.unit(21000, "kg"),
  25543. name: "Front",
  25544. image: {
  25545. source: "./media/characters/shock-diamond/front.svg",
  25546. extra: 2204 / 2053,
  25547. bottom: 65 / 2239.47
  25548. }
  25549. },
  25550. frontNude: {
  25551. height: math.unit(22, "meters"),
  25552. weight: math.unit(21000, "kg"),
  25553. name: "Front (Nude)",
  25554. image: {
  25555. source: "./media/characters/shock-diamond/front-nude.svg",
  25556. extra: 2514 / 2285,
  25557. bottom: 13 / 2527.56
  25558. }
  25559. },
  25560. },
  25561. [
  25562. {
  25563. name: "Normal",
  25564. height: math.unit(3, "meters")
  25565. },
  25566. {
  25567. name: "Macro",
  25568. height: math.unit(22, "meters"),
  25569. default: true
  25570. },
  25571. ]
  25572. ))
  25573. characterMakers.push(() => makeCharacter(
  25574. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  25575. {
  25576. front: {
  25577. height: math.unit(5 + 4/12, "feet"),
  25578. weight: math.unit(125, "lb"),
  25579. name: "Front",
  25580. image: {
  25581. source: "./media/characters/rory/front.svg",
  25582. extra: 1790/1681,
  25583. bottom: 66/1856
  25584. },
  25585. form: "normal",
  25586. default: true
  25587. },
  25588. back: {
  25589. height: math.unit(5 + 4/12, "feet"),
  25590. weight: math.unit(125, "lb"),
  25591. name: "Back",
  25592. image: {
  25593. source: "./media/characters/rory/back.svg",
  25594. extra: 1805/1690,
  25595. bottom: 56/1861
  25596. },
  25597. form: "normal"
  25598. },
  25599. frontDressed: {
  25600. height: math.unit(5 + 4/12, "feet"),
  25601. weight: math.unit(125, "lb"),
  25602. name: "Front (Dressed)",
  25603. image: {
  25604. source: "./media/characters/rory/front-dressed.svg",
  25605. extra: 1790/1681,
  25606. bottom: 66/1856
  25607. },
  25608. form: "normal"
  25609. },
  25610. backDressed: {
  25611. height: math.unit(5 + 4/12, "feet"),
  25612. weight: math.unit(125, "lb"),
  25613. name: "Back (Dressed)",
  25614. image: {
  25615. source: "./media/characters/rory/back-dressed.svg",
  25616. extra: 1805/1690,
  25617. bottom: 56/1861
  25618. },
  25619. form: "normal"
  25620. },
  25621. frontNsfw: {
  25622. height: math.unit(5 + 4/12, "feet"),
  25623. weight: math.unit(125, "lb"),
  25624. name: "Front (NSFW)",
  25625. image: {
  25626. source: "./media/characters/rory/front-nsfw.svg",
  25627. extra: 1790/1681,
  25628. bottom: 66/1856
  25629. },
  25630. form: "normal"
  25631. },
  25632. backNsfw: {
  25633. height: math.unit(5 + 4/12, "feet"),
  25634. weight: math.unit(125, "lb"),
  25635. name: "Back (NSFW)",
  25636. image: {
  25637. source: "./media/characters/rory/back-nsfw.svg",
  25638. extra: 1805/1690,
  25639. bottom: 56/1861
  25640. },
  25641. form: "normal"
  25642. },
  25643. dick: {
  25644. height: math.unit(0.8, "feet"),
  25645. name: "Dick",
  25646. image: {
  25647. source: "./media/characters/rory/dick.svg"
  25648. },
  25649. form: "normal"
  25650. },
  25651. thicc_front: {
  25652. height: math.unit(5 + 4/12, "feet"),
  25653. weight: math.unit(195, "lb"),
  25654. name: "Front",
  25655. image: {
  25656. source: "./media/characters/rory/thicc-front.svg",
  25657. extra: 1220/1100,
  25658. bottom: 103/1323
  25659. },
  25660. form: "thicc",
  25661. default: true
  25662. },
  25663. thicc_back: {
  25664. height: math.unit(5 + 4/12, "feet"),
  25665. weight: math.unit(195, "lb"),
  25666. name: "Back",
  25667. image: {
  25668. source: "./media/characters/rory/thicc-back.svg",
  25669. extra: 1166/1086,
  25670. bottom: 35/1201
  25671. },
  25672. form: "thicc"
  25673. },
  25674. },
  25675. [
  25676. {
  25677. name: "Micro",
  25678. height: math.unit(3, "inches"),
  25679. allForms: true
  25680. },
  25681. {
  25682. name: "Normal",
  25683. height: math.unit(5 + 4/12, "feet"),
  25684. allForms: true,
  25685. default: true
  25686. },
  25687. {
  25688. name: "Macro",
  25689. height: math.unit(90, "feet"),
  25690. allForms: true
  25691. },
  25692. {
  25693. name: "Supercharged",
  25694. height: math.unit(270, "feet"),
  25695. allForms: true
  25696. },
  25697. ],
  25698. {
  25699. "normal": {
  25700. name: "Normal",
  25701. default: true
  25702. },
  25703. "thicc": {
  25704. name: "Thicc",
  25705. },
  25706. }
  25707. ))
  25708. characterMakers.push(() => makeCharacter(
  25709. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  25710. {
  25711. front: {
  25712. height: math.unit(5 + 9 / 12, "feet"),
  25713. weight: math.unit(190, "lb"),
  25714. name: "Front",
  25715. image: {
  25716. source: "./media/characters/sprisk/front.svg",
  25717. extra: 1225 / 1180,
  25718. bottom: 42.7 / 1266.4
  25719. }
  25720. },
  25721. frontNsfw: {
  25722. height: math.unit(5 + 9 / 12, "feet"),
  25723. weight: math.unit(190, "lb"),
  25724. name: "Front (NSFW)",
  25725. image: {
  25726. source: "./media/characters/sprisk/front-nsfw.svg",
  25727. extra: 1225 / 1180,
  25728. bottom: 42.7 / 1266.4
  25729. }
  25730. },
  25731. back: {
  25732. height: math.unit(5 + 9 / 12, "feet"),
  25733. weight: math.unit(190, "lb"),
  25734. name: "Back",
  25735. image: {
  25736. source: "./media/characters/sprisk/back.svg",
  25737. extra: 1247 / 1200,
  25738. bottom: 5.6 / 1253.04
  25739. }
  25740. },
  25741. },
  25742. [
  25743. {
  25744. name: "Tiny",
  25745. height: math.unit(2, "inches")
  25746. },
  25747. {
  25748. name: "Normal",
  25749. height: math.unit(5 + 9 / 12, "feet"),
  25750. default: true
  25751. },
  25752. {
  25753. name: "Mini Macro",
  25754. height: math.unit(18, "feet")
  25755. },
  25756. {
  25757. name: "Macro",
  25758. height: math.unit(100, "feet")
  25759. },
  25760. {
  25761. name: "MACRO",
  25762. height: math.unit(50, "miles")
  25763. },
  25764. {
  25765. name: "M A C R O",
  25766. height: math.unit(300, "miles")
  25767. },
  25768. ]
  25769. ))
  25770. characterMakers.push(() => makeCharacter(
  25771. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  25772. {
  25773. side: {
  25774. height: math.unit(15.6, "meters"),
  25775. weight: math.unit(700000, "kg"),
  25776. name: "Side",
  25777. image: {
  25778. source: "./media/characters/bunsen/side.svg",
  25779. extra: 1644 / 358
  25780. }
  25781. },
  25782. foot: {
  25783. height: math.unit(1.611 * 1644 / 358, "meter"),
  25784. name: "Foot",
  25785. image: {
  25786. source: "./media/characters/bunsen/foot.svg"
  25787. }
  25788. },
  25789. },
  25790. [
  25791. {
  25792. name: "Small",
  25793. height: math.unit(10, "feet")
  25794. },
  25795. {
  25796. name: "Normal",
  25797. height: math.unit(15.6, "meters"),
  25798. default: true
  25799. },
  25800. ]
  25801. ))
  25802. characterMakers.push(() => makeCharacter(
  25803. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  25804. {
  25805. front: {
  25806. height: math.unit(4 + 11 / 12, "feet"),
  25807. weight: math.unit(140, "lb"),
  25808. name: "Front",
  25809. image: {
  25810. source: "./media/characters/sesh/front.svg",
  25811. extra: 3420 / 3231,
  25812. bottom: 72 / 3949.5
  25813. }
  25814. },
  25815. },
  25816. [
  25817. {
  25818. name: "Normal",
  25819. height: math.unit(4 + 11 / 12, "feet")
  25820. },
  25821. {
  25822. name: "Grown",
  25823. height: math.unit(15, "feet"),
  25824. default: true
  25825. },
  25826. {
  25827. name: "Macro",
  25828. height: math.unit(1500, "feet")
  25829. },
  25830. {
  25831. name: "Megamacro",
  25832. height: math.unit(30, "miles")
  25833. },
  25834. {
  25835. name: "Continental",
  25836. height: math.unit(3000, "miles")
  25837. },
  25838. {
  25839. name: "Gravity Mass",
  25840. height: math.unit(300000, "miles")
  25841. },
  25842. {
  25843. name: "Planet Buster",
  25844. height: math.unit(30000000, "miles")
  25845. },
  25846. {
  25847. name: "Big",
  25848. height: math.unit(3000000000, "miles")
  25849. },
  25850. ]
  25851. ))
  25852. characterMakers.push(() => makeCharacter(
  25853. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  25854. {
  25855. front: {
  25856. height: math.unit(9, "feet"),
  25857. weight: math.unit(350, "lb"),
  25858. name: "Front",
  25859. image: {
  25860. source: "./media/characters/pepper/front.svg",
  25861. extra: 1448 / 1312,
  25862. bottom: 9.4 / 1457.88
  25863. }
  25864. },
  25865. back: {
  25866. height: math.unit(9, "feet"),
  25867. weight: math.unit(350, "lb"),
  25868. name: "Back",
  25869. image: {
  25870. source: "./media/characters/pepper/back.svg",
  25871. extra: 1423 / 1300,
  25872. bottom: 4.6 / 1429
  25873. }
  25874. },
  25875. maw: {
  25876. height: math.unit(0.932, "feet"),
  25877. name: "Maw",
  25878. image: {
  25879. source: "./media/characters/pepper/maw.svg"
  25880. }
  25881. },
  25882. },
  25883. [
  25884. {
  25885. name: "Normal",
  25886. height: math.unit(9, "feet"),
  25887. default: true
  25888. },
  25889. ]
  25890. ))
  25891. characterMakers.push(() => makeCharacter(
  25892. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  25893. {
  25894. front: {
  25895. height: math.unit(6, "feet"),
  25896. weight: math.unit(150, "lb"),
  25897. name: "Front",
  25898. image: {
  25899. source: "./media/characters/maelstrom/front.svg",
  25900. extra: 2100 / 1883,
  25901. bottom: 94 / 2196.7
  25902. }
  25903. },
  25904. },
  25905. [
  25906. {
  25907. name: "Less Kaiju",
  25908. height: math.unit(200, "feet")
  25909. },
  25910. {
  25911. name: "Kaiju",
  25912. height: math.unit(400, "feet"),
  25913. default: true
  25914. },
  25915. {
  25916. name: "Kaiju-er",
  25917. height: math.unit(600, "feet")
  25918. },
  25919. ]
  25920. ))
  25921. characterMakers.push(() => makeCharacter(
  25922. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  25923. {
  25924. front: {
  25925. height: math.unit(6 + 5 / 12, "feet"),
  25926. weight: math.unit(180, "lb"),
  25927. name: "Front",
  25928. image: {
  25929. source: "./media/characters/lexir/front.svg",
  25930. extra: 180 / 172,
  25931. bottom: 12 / 192
  25932. }
  25933. },
  25934. back: {
  25935. height: math.unit(6 + 5 / 12, "feet"),
  25936. weight: math.unit(180, "lb"),
  25937. name: "Back",
  25938. image: {
  25939. source: "./media/characters/lexir/back.svg",
  25940. extra: 1273/1201,
  25941. bottom: 39/1312
  25942. }
  25943. },
  25944. },
  25945. [
  25946. {
  25947. name: "Very Smal",
  25948. height: math.unit(1, "nm")
  25949. },
  25950. {
  25951. name: "Normal",
  25952. height: math.unit(6 + 5 / 12, "feet"),
  25953. default: true
  25954. },
  25955. {
  25956. name: "Macro",
  25957. height: math.unit(1, "mile")
  25958. },
  25959. {
  25960. name: "Megamacro",
  25961. height: math.unit(50, "miles")
  25962. },
  25963. ]
  25964. ))
  25965. characterMakers.push(() => makeCharacter(
  25966. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  25967. {
  25968. front: {
  25969. height: math.unit(1.5, "meters"),
  25970. weight: math.unit(100, "lb"),
  25971. name: "Front",
  25972. image: {
  25973. source: "./media/characters/maksio/front.svg",
  25974. extra: 1549 / 1531,
  25975. bottom: 123.7 / 1674.5429
  25976. }
  25977. },
  25978. back: {
  25979. height: math.unit(1.5, "meters"),
  25980. weight: math.unit(100, "lb"),
  25981. name: "Back",
  25982. image: {
  25983. source: "./media/characters/maksio/back.svg",
  25984. extra: 1541 / 1509,
  25985. bottom: 97 / 1639
  25986. }
  25987. },
  25988. hand: {
  25989. height: math.unit(0.621, "feet"),
  25990. name: "Hand",
  25991. image: {
  25992. source: "./media/characters/maksio/hand.svg"
  25993. }
  25994. },
  25995. foot: {
  25996. height: math.unit(1.611, "feet"),
  25997. name: "Foot",
  25998. image: {
  25999. source: "./media/characters/maksio/foot.svg"
  26000. }
  26001. },
  26002. },
  26003. [
  26004. {
  26005. name: "Shrunken",
  26006. height: math.unit(10, "cm")
  26007. },
  26008. {
  26009. name: "Normal",
  26010. height: math.unit(150, "cm"),
  26011. default: true
  26012. },
  26013. ]
  26014. ))
  26015. characterMakers.push(() => makeCharacter(
  26016. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  26017. {
  26018. front: {
  26019. height: math.unit(100, "feet"),
  26020. name: "Front",
  26021. image: {
  26022. source: "./media/characters/erza-bear/front.svg",
  26023. extra: 2449 / 2390,
  26024. bottom: 46 / 2494
  26025. }
  26026. },
  26027. back: {
  26028. height: math.unit(100, "feet"),
  26029. name: "Back",
  26030. image: {
  26031. source: "./media/characters/erza-bear/back.svg",
  26032. extra: 2489 / 2430,
  26033. bottom: 85.4 / 2480
  26034. }
  26035. },
  26036. tail: {
  26037. height: math.unit(42, "feet"),
  26038. name: "Tail",
  26039. image: {
  26040. source: "./media/characters/erza-bear/tail.svg"
  26041. }
  26042. },
  26043. tongue: {
  26044. height: math.unit(8, "feet"),
  26045. name: "Tongue",
  26046. image: {
  26047. source: "./media/characters/erza-bear/tongue.svg"
  26048. }
  26049. },
  26050. dick: {
  26051. height: math.unit(10.5, "feet"),
  26052. name: "Dick",
  26053. image: {
  26054. source: "./media/characters/erza-bear/dick.svg"
  26055. }
  26056. },
  26057. dickVertical: {
  26058. height: math.unit(16.9, "feet"),
  26059. name: "Dick (Vertical)",
  26060. image: {
  26061. source: "./media/characters/erza-bear/dick-vertical.svg"
  26062. }
  26063. },
  26064. },
  26065. [
  26066. {
  26067. name: "Macro",
  26068. height: math.unit(100, "feet"),
  26069. default: true
  26070. },
  26071. ]
  26072. ))
  26073. characterMakers.push(() => makeCharacter(
  26074. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  26075. {
  26076. front: {
  26077. height: math.unit(172, "cm"),
  26078. weight: math.unit(73, "kg"),
  26079. name: "Front",
  26080. image: {
  26081. source: "./media/characters/violet-flor/front.svg",
  26082. extra: 1474/1379,
  26083. bottom: 113/1587
  26084. }
  26085. },
  26086. back: {
  26087. height: math.unit(180, "cm"),
  26088. weight: math.unit(73, "kg"),
  26089. name: "Back",
  26090. image: {
  26091. source: "./media/characters/violet-flor/back.svg",
  26092. extra: 1660/1567,
  26093. bottom: 49/1709
  26094. }
  26095. },
  26096. },
  26097. [
  26098. {
  26099. name: "Normal",
  26100. height: math.unit(172, "cm"),
  26101. default: true
  26102. },
  26103. ]
  26104. ))
  26105. characterMakers.push(() => makeCharacter(
  26106. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  26107. {
  26108. front: {
  26109. height: math.unit(6, "feet"),
  26110. weight: math.unit(220, "lb"),
  26111. name: "Front",
  26112. image: {
  26113. source: "./media/characters/lynn-rhea/front.svg",
  26114. extra: 310 / 273
  26115. }
  26116. },
  26117. back: {
  26118. height: math.unit(6, "feet"),
  26119. weight: math.unit(220, "lb"),
  26120. name: "Back",
  26121. image: {
  26122. source: "./media/characters/lynn-rhea/back.svg",
  26123. extra: 310 / 273
  26124. }
  26125. },
  26126. dicks: {
  26127. height: math.unit(0.9, "feet"),
  26128. name: "Dicks",
  26129. image: {
  26130. source: "./media/characters/lynn-rhea/dicks.svg"
  26131. }
  26132. },
  26133. slit: {
  26134. height: math.unit(0.4, "feet"),
  26135. name: "Slit",
  26136. image: {
  26137. source: "./media/characters/lynn-rhea/slit.svg"
  26138. }
  26139. },
  26140. },
  26141. [
  26142. {
  26143. name: "Micro",
  26144. height: math.unit(1, "inch")
  26145. },
  26146. {
  26147. name: "Macro",
  26148. height: math.unit(60, "feet"),
  26149. default: true
  26150. },
  26151. {
  26152. name: "Megamacro",
  26153. height: math.unit(2, "miles")
  26154. },
  26155. {
  26156. name: "Gigamacro",
  26157. height: math.unit(3, "earths")
  26158. },
  26159. {
  26160. name: "Galactic",
  26161. height: math.unit(0.8, "galaxies")
  26162. },
  26163. ]
  26164. ))
  26165. characterMakers.push(() => makeCharacter(
  26166. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  26167. {
  26168. front: {
  26169. height: math.unit(1600, "feet"),
  26170. weight: math.unit(85758785169, "kg"),
  26171. name: "Front",
  26172. image: {
  26173. source: "./media/characters/valathos/front.svg",
  26174. extra: 1451 / 1339
  26175. }
  26176. },
  26177. },
  26178. [
  26179. {
  26180. name: "Macro",
  26181. height: math.unit(1600, "feet"),
  26182. default: true
  26183. },
  26184. ]
  26185. ))
  26186. characterMakers.push(() => makeCharacter(
  26187. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  26188. {
  26189. front: {
  26190. height: math.unit(7 + 5 / 12, "feet"),
  26191. weight: math.unit(300, "lb"),
  26192. name: "Front",
  26193. image: {
  26194. source: "./media/characters/azula/front.svg",
  26195. extra: 3208 / 2880,
  26196. bottom: 80.2 / 3277
  26197. }
  26198. },
  26199. back: {
  26200. height: math.unit(7 + 5 / 12, "feet"),
  26201. weight: math.unit(300, "lb"),
  26202. name: "Back",
  26203. image: {
  26204. source: "./media/characters/azula/back.svg",
  26205. extra: 3169 / 2822,
  26206. bottom: 150.6 / 3321
  26207. }
  26208. },
  26209. },
  26210. [
  26211. {
  26212. name: "Normal",
  26213. height: math.unit(7 + 5 / 12, "feet"),
  26214. default: true
  26215. },
  26216. {
  26217. name: "Big",
  26218. height: math.unit(20, "feet")
  26219. },
  26220. ]
  26221. ))
  26222. characterMakers.push(() => makeCharacter(
  26223. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  26224. {
  26225. front: {
  26226. height: math.unit(5 + 1 / 12, "feet"),
  26227. weight: math.unit(110, "lb"),
  26228. name: "Front",
  26229. image: {
  26230. source: "./media/characters/rupert/front.svg",
  26231. extra: 1549 / 1495,
  26232. bottom: 54.2 / 1604.4
  26233. }
  26234. },
  26235. },
  26236. [
  26237. {
  26238. name: "Normal",
  26239. height: math.unit(5 + 1 / 12, "feet"),
  26240. default: true
  26241. },
  26242. ]
  26243. ))
  26244. characterMakers.push(() => makeCharacter(
  26245. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  26246. {
  26247. front: {
  26248. height: math.unit(8 + 4 / 12, "feet"),
  26249. weight: math.unit(350, "lb"),
  26250. name: "Front",
  26251. image: {
  26252. source: "./media/characters/sheera-castellar/front.svg",
  26253. extra: 1957 / 1894,
  26254. bottom: 26.97 / 1975.017
  26255. }
  26256. },
  26257. side: {
  26258. height: math.unit(8 + 4 / 12, "feet"),
  26259. weight: math.unit(350, "lb"),
  26260. name: "Side",
  26261. image: {
  26262. source: "./media/characters/sheera-castellar/side.svg",
  26263. extra: 1957 / 1894
  26264. }
  26265. },
  26266. back: {
  26267. height: math.unit(8 + 4 / 12, "feet"),
  26268. weight: math.unit(350, "lb"),
  26269. name: "Back",
  26270. image: {
  26271. source: "./media/characters/sheera-castellar/back.svg",
  26272. extra: 1957 / 1894
  26273. }
  26274. },
  26275. angled: {
  26276. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  26277. weight: math.unit(350, "lb"),
  26278. name: "Angled",
  26279. image: {
  26280. source: "./media/characters/sheera-castellar/angled.svg",
  26281. extra: 1807 / 1707,
  26282. bottom: 68 / 1875
  26283. }
  26284. },
  26285. genitals: {
  26286. height: math.unit(2.2, "feet"),
  26287. name: "Genitals",
  26288. image: {
  26289. source: "./media/characters/sheera-castellar/genitals.svg"
  26290. }
  26291. },
  26292. taur: {
  26293. height: math.unit(10 + 6/12, "feet"),
  26294. name: "Taur",
  26295. image: {
  26296. source: "./media/characters/sheera-castellar/taur.svg",
  26297. extra: 2017/1909,
  26298. bottom: 185/2202
  26299. }
  26300. },
  26301. },
  26302. [
  26303. {
  26304. name: "Normal",
  26305. height: math.unit(8 + 4 / 12, "feet")
  26306. },
  26307. {
  26308. name: "Macro",
  26309. height: math.unit(150, "feet"),
  26310. default: true
  26311. },
  26312. {
  26313. name: "Macro+",
  26314. height: math.unit(800, "feet")
  26315. },
  26316. ]
  26317. ))
  26318. characterMakers.push(() => makeCharacter(
  26319. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  26320. {
  26321. front: {
  26322. height: math.unit(6, "feet"),
  26323. weight: math.unit(150, "lb"),
  26324. name: "Front",
  26325. image: {
  26326. source: "./media/characters/jaipur/front.svg",
  26327. extra: 3860 / 3731,
  26328. bottom: 287 / 4140
  26329. }
  26330. },
  26331. back: {
  26332. height: math.unit(6, "feet"),
  26333. weight: math.unit(150, "lb"),
  26334. name: "Back",
  26335. image: {
  26336. source: "./media/characters/jaipur/back.svg",
  26337. extra: 1637/1561,
  26338. bottom: 154/1791
  26339. }
  26340. },
  26341. },
  26342. [
  26343. {
  26344. name: "Normal",
  26345. height: math.unit(1.85, "meters"),
  26346. default: true
  26347. },
  26348. {
  26349. name: "Macro",
  26350. height: math.unit(150, "meters")
  26351. },
  26352. {
  26353. name: "Macro+",
  26354. height: math.unit(0.5, "miles")
  26355. },
  26356. {
  26357. name: "Macro++",
  26358. height: math.unit(2.5, "miles")
  26359. },
  26360. {
  26361. name: "Macro+++",
  26362. height: math.unit(12, "miles")
  26363. },
  26364. {
  26365. name: "Macro++++",
  26366. height: math.unit(120, "miles")
  26367. },
  26368. {
  26369. name: "Macro+++++",
  26370. height: math.unit(1200, "miles")
  26371. },
  26372. ]
  26373. ))
  26374. characterMakers.push(() => makeCharacter(
  26375. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  26376. {
  26377. front: {
  26378. height: math.unit(6, "feet"),
  26379. weight: math.unit(150, "lb"),
  26380. name: "Front",
  26381. image: {
  26382. source: "./media/characters/sheila-wolf/front.svg",
  26383. extra: 1931 / 1808,
  26384. bottom: 29.5 / 1960
  26385. }
  26386. },
  26387. dick: {
  26388. height: math.unit(1.464, "feet"),
  26389. name: "Dick",
  26390. image: {
  26391. source: "./media/characters/sheila-wolf/dick.svg"
  26392. }
  26393. },
  26394. muzzle: {
  26395. height: math.unit(0.513, "feet"),
  26396. name: "Muzzle",
  26397. image: {
  26398. source: "./media/characters/sheila-wolf/muzzle.svg"
  26399. }
  26400. },
  26401. },
  26402. [
  26403. {
  26404. name: "Macro",
  26405. height: math.unit(70, "feet"),
  26406. default: true
  26407. },
  26408. ]
  26409. ))
  26410. characterMakers.push(() => makeCharacter(
  26411. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  26412. {
  26413. front: {
  26414. height: math.unit(32, "meters"),
  26415. weight: math.unit(300000, "kg"),
  26416. name: "Front",
  26417. image: {
  26418. source: "./media/characters/almor/front.svg",
  26419. extra: 1408 / 1322,
  26420. bottom: 94.6 / 1506.5
  26421. }
  26422. },
  26423. },
  26424. [
  26425. {
  26426. name: "Macro",
  26427. height: math.unit(32, "meters"),
  26428. default: true
  26429. },
  26430. ]
  26431. ))
  26432. characterMakers.push(() => makeCharacter(
  26433. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  26434. {
  26435. front: {
  26436. height: math.unit(7, "feet"),
  26437. weight: math.unit(200, "lb"),
  26438. name: "Front",
  26439. image: {
  26440. source: "./media/characters/silver/front.svg",
  26441. extra: 472.1 / 450.5,
  26442. bottom: 26.5 / 499.424
  26443. }
  26444. },
  26445. },
  26446. [
  26447. {
  26448. name: "Normal",
  26449. height: math.unit(7, "feet"),
  26450. default: true
  26451. },
  26452. {
  26453. name: "Macro",
  26454. height: math.unit(800, "feet")
  26455. },
  26456. {
  26457. name: "Megamacro",
  26458. height: math.unit(250, "miles")
  26459. },
  26460. ]
  26461. ))
  26462. characterMakers.push(() => makeCharacter(
  26463. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  26464. {
  26465. front: {
  26466. height: math.unit(6, "feet"),
  26467. weight: math.unit(150, "lb"),
  26468. name: "Front",
  26469. image: {
  26470. source: "./media/characters/pliskin/front.svg",
  26471. extra: 1469 / 1359,
  26472. bottom: 70 / 1540
  26473. }
  26474. },
  26475. },
  26476. [
  26477. {
  26478. name: "Micro",
  26479. height: math.unit(3, "inches")
  26480. },
  26481. {
  26482. name: "Normal",
  26483. height: math.unit(5 + 11 / 12, "feet"),
  26484. default: true
  26485. },
  26486. {
  26487. name: "Macro",
  26488. height: math.unit(120, "feet")
  26489. },
  26490. ]
  26491. ))
  26492. characterMakers.push(() => makeCharacter(
  26493. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  26494. {
  26495. front: {
  26496. height: math.unit(6, "feet"),
  26497. weight: math.unit(150, "lb"),
  26498. name: "Front",
  26499. image: {
  26500. source: "./media/characters/sammy/front.svg",
  26501. extra: 1193 / 1089,
  26502. bottom: 30.5 / 1226
  26503. }
  26504. },
  26505. },
  26506. [
  26507. {
  26508. name: "Macro",
  26509. height: math.unit(1700, "feet"),
  26510. default: true
  26511. },
  26512. {
  26513. name: "Examacro",
  26514. height: math.unit(2.5e9, "lightyears")
  26515. },
  26516. ]
  26517. ))
  26518. characterMakers.push(() => makeCharacter(
  26519. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  26520. {
  26521. front: {
  26522. height: math.unit(21, "meters"),
  26523. weight: math.unit(12, "tonnes"),
  26524. name: "Front",
  26525. image: {
  26526. source: "./media/characters/kuru/front.svg",
  26527. extra: 4301 / 3785,
  26528. bottom: 371.3 / 4691
  26529. }
  26530. },
  26531. },
  26532. [
  26533. {
  26534. name: "Macro",
  26535. height: math.unit(21, "meters"),
  26536. default: true
  26537. },
  26538. ]
  26539. ))
  26540. characterMakers.push(() => makeCharacter(
  26541. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  26542. {
  26543. front: {
  26544. height: math.unit(23, "meters"),
  26545. weight: math.unit(12.2, "tonnes"),
  26546. name: "Front",
  26547. image: {
  26548. source: "./media/characters/rakka/front.svg",
  26549. extra: 4670 / 4169,
  26550. bottom: 301 / 4968.7
  26551. }
  26552. },
  26553. },
  26554. [
  26555. {
  26556. name: "Macro",
  26557. height: math.unit(23, "meters"),
  26558. default: true
  26559. },
  26560. ]
  26561. ))
  26562. characterMakers.push(() => makeCharacter(
  26563. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  26564. {
  26565. front: {
  26566. height: math.unit(6, "feet"),
  26567. weight: math.unit(150, "lb"),
  26568. name: "Front",
  26569. image: {
  26570. source: "./media/characters/rhys-feline/front.svg",
  26571. extra: 2488 / 2308,
  26572. bottom: 35.67 / 2519.19
  26573. }
  26574. },
  26575. },
  26576. [
  26577. {
  26578. name: "Really Small",
  26579. height: math.unit(1, "nm")
  26580. },
  26581. {
  26582. name: "Micro",
  26583. height: math.unit(4, "inches")
  26584. },
  26585. {
  26586. name: "Normal",
  26587. height: math.unit(4 + 10 / 12, "feet"),
  26588. default: true
  26589. },
  26590. {
  26591. name: "Macro",
  26592. height: math.unit(100, "feet")
  26593. },
  26594. {
  26595. name: "Megamacto",
  26596. height: math.unit(50, "miles")
  26597. },
  26598. ]
  26599. ))
  26600. characterMakers.push(() => makeCharacter(
  26601. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  26602. {
  26603. side: {
  26604. height: math.unit(30, "feet"),
  26605. weight: math.unit(35000, "kg"),
  26606. name: "Side",
  26607. image: {
  26608. source: "./media/characters/alydar/side.svg",
  26609. extra: 234 / 222,
  26610. bottom: 6.5 / 241
  26611. }
  26612. },
  26613. front: {
  26614. height: math.unit(30, "feet"),
  26615. weight: math.unit(35000, "kg"),
  26616. name: "Front",
  26617. image: {
  26618. source: "./media/characters/alydar/front.svg",
  26619. extra: 223.37 / 210.2,
  26620. bottom: 22.3 / 246.76
  26621. }
  26622. },
  26623. top: {
  26624. height: math.unit(64.54, "feet"),
  26625. weight: math.unit(35000, "kg"),
  26626. name: "Top",
  26627. image: {
  26628. source: "./media/characters/alydar/top.svg"
  26629. }
  26630. },
  26631. anthro: {
  26632. height: math.unit(30, "feet"),
  26633. weight: math.unit(9000, "kg"),
  26634. name: "Anthro",
  26635. image: {
  26636. source: "./media/characters/alydar/anthro.svg",
  26637. extra: 432 / 421,
  26638. bottom: 7.18 / 440
  26639. }
  26640. },
  26641. maw: {
  26642. height: math.unit(11.693, "feet"),
  26643. name: "Maw",
  26644. image: {
  26645. source: "./media/characters/alydar/maw.svg"
  26646. }
  26647. },
  26648. head: {
  26649. height: math.unit(11.693, "feet"),
  26650. name: "Head",
  26651. image: {
  26652. source: "./media/characters/alydar/head.svg"
  26653. }
  26654. },
  26655. headAlt: {
  26656. height: math.unit(12.861, "feet"),
  26657. name: "Head (Alt)",
  26658. image: {
  26659. source: "./media/characters/alydar/head-alt.svg"
  26660. }
  26661. },
  26662. wing: {
  26663. height: math.unit(20.712, "feet"),
  26664. name: "Wing",
  26665. image: {
  26666. source: "./media/characters/alydar/wing.svg"
  26667. }
  26668. },
  26669. wingFeather: {
  26670. height: math.unit(9.662, "feet"),
  26671. name: "Wing Feather",
  26672. image: {
  26673. source: "./media/characters/alydar/wing-feather.svg"
  26674. }
  26675. },
  26676. countourFeather: {
  26677. height: math.unit(4.154, "feet"),
  26678. name: "Contour Feather",
  26679. image: {
  26680. source: "./media/characters/alydar/contour-feather.svg"
  26681. }
  26682. },
  26683. },
  26684. [
  26685. {
  26686. name: "Diplomatic",
  26687. height: math.unit(13, "feet"),
  26688. default: true
  26689. },
  26690. {
  26691. name: "Small",
  26692. height: math.unit(30, "feet")
  26693. },
  26694. {
  26695. name: "Normal",
  26696. height: math.unit(95, "feet"),
  26697. default: true
  26698. },
  26699. {
  26700. name: "Large",
  26701. height: math.unit(285, "feet")
  26702. },
  26703. {
  26704. name: "Incomprehensible",
  26705. height: math.unit(450, "megameters")
  26706. },
  26707. ]
  26708. ))
  26709. characterMakers.push(() => makeCharacter(
  26710. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  26711. {
  26712. side: {
  26713. height: math.unit(11, "feet"),
  26714. weight: math.unit(1750, "kg"),
  26715. name: "Side",
  26716. image: {
  26717. source: "./media/characters/selicia/side.svg",
  26718. extra: 440 / 396,
  26719. bottom: 24.8 / 465.979
  26720. }
  26721. },
  26722. maw: {
  26723. height: math.unit(4.665, "feet"),
  26724. name: "Maw",
  26725. image: {
  26726. source: "./media/characters/selicia/maw.svg"
  26727. }
  26728. },
  26729. },
  26730. [
  26731. {
  26732. name: "Normal",
  26733. height: math.unit(11, "feet"),
  26734. default: true
  26735. },
  26736. ]
  26737. ))
  26738. characterMakers.push(() => makeCharacter(
  26739. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  26740. {
  26741. side: {
  26742. height: math.unit(2 + 6 / 12, "feet"),
  26743. weight: math.unit(30, "lb"),
  26744. name: "Side",
  26745. image: {
  26746. source: "./media/characters/layla/side.svg",
  26747. extra: 244 / 188,
  26748. bottom: 18.2 / 262.1
  26749. }
  26750. },
  26751. back: {
  26752. height: math.unit(2 + 6 / 12, "feet"),
  26753. weight: math.unit(30, "lb"),
  26754. name: "Back",
  26755. image: {
  26756. source: "./media/characters/layla/back.svg",
  26757. extra: 308 / 241.5,
  26758. bottom: 8.9 / 316.8
  26759. }
  26760. },
  26761. cumming: {
  26762. height: math.unit(2 + 6 / 12, "feet"),
  26763. weight: math.unit(30, "lb"),
  26764. name: "Cumming",
  26765. image: {
  26766. source: "./media/characters/layla/cumming.svg",
  26767. extra: 342 / 279,
  26768. bottom: 595 / 938
  26769. }
  26770. },
  26771. dickFlaccid: {
  26772. height: math.unit(2.595, "feet"),
  26773. name: "Flaccid Genitals",
  26774. image: {
  26775. source: "./media/characters/layla/dick-flaccid.svg"
  26776. }
  26777. },
  26778. dickErect: {
  26779. height: math.unit(2.359, "feet"),
  26780. name: "Erect Genitals",
  26781. image: {
  26782. source: "./media/characters/layla/dick-erect.svg"
  26783. }
  26784. },
  26785. dragon: {
  26786. height: math.unit(40, "feet"),
  26787. name: "Dragon",
  26788. image: {
  26789. source: "./media/characters/layla/dragon.svg",
  26790. extra: 610/535,
  26791. bottom: 367/977
  26792. }
  26793. },
  26794. taur: {
  26795. height: math.unit(30, "feet"),
  26796. name: "Taur",
  26797. image: {
  26798. source: "./media/characters/layla/taur.svg",
  26799. extra: 1268/1199,
  26800. bottom: 112/1380
  26801. }
  26802. },
  26803. },
  26804. [
  26805. {
  26806. name: "Micro",
  26807. height: math.unit(1, "inch")
  26808. },
  26809. {
  26810. name: "Small",
  26811. height: math.unit(1, "foot")
  26812. },
  26813. {
  26814. name: "Normal",
  26815. height: math.unit(2 + 6 / 12, "feet"),
  26816. default: true
  26817. },
  26818. {
  26819. name: "Macro",
  26820. height: math.unit(200, "feet")
  26821. },
  26822. {
  26823. name: "Megamacro",
  26824. height: math.unit(1000, "miles")
  26825. },
  26826. {
  26827. name: "Planetary",
  26828. height: math.unit(8000, "miles")
  26829. },
  26830. {
  26831. name: "True Layla",
  26832. height: math.unit(200000 * 7, "multiverses")
  26833. },
  26834. ]
  26835. ))
  26836. characterMakers.push(() => makeCharacter(
  26837. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  26838. {
  26839. back: {
  26840. height: math.unit(10.5, "feet"),
  26841. weight: math.unit(800, "lb"),
  26842. name: "Back",
  26843. image: {
  26844. source: "./media/characters/knox/back.svg",
  26845. extra: 1486 / 1089,
  26846. bottom: 107 / 1601.4
  26847. }
  26848. },
  26849. side: {
  26850. height: math.unit(10.5, "feet"),
  26851. weight: math.unit(800, "lb"),
  26852. name: "Side",
  26853. image: {
  26854. source: "./media/characters/knox/side.svg",
  26855. extra: 244 / 218,
  26856. bottom: 14 / 260
  26857. }
  26858. },
  26859. },
  26860. [
  26861. {
  26862. name: "Compact",
  26863. height: math.unit(10.5, "feet"),
  26864. default: true
  26865. },
  26866. {
  26867. name: "Dynamax",
  26868. height: math.unit(210, "feet")
  26869. },
  26870. {
  26871. name: "Full Macro",
  26872. height: math.unit(850, "feet")
  26873. },
  26874. ]
  26875. ))
  26876. characterMakers.push(() => makeCharacter(
  26877. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  26878. {
  26879. front: {
  26880. height: math.unit(28, "feet"),
  26881. weight: math.unit(10500, "lb"),
  26882. name: "Front",
  26883. image: {
  26884. source: "./media/characters/kayda/front.svg",
  26885. extra: 1536 / 1428,
  26886. bottom: 68.7 / 1603
  26887. }
  26888. },
  26889. back: {
  26890. height: math.unit(28, "feet"),
  26891. weight: math.unit(10500, "lb"),
  26892. name: "Back",
  26893. image: {
  26894. source: "./media/characters/kayda/back.svg",
  26895. extra: 1557 / 1464,
  26896. bottom: 39.5 / 1597.49
  26897. }
  26898. },
  26899. dick: {
  26900. height: math.unit(3.858, "feet"),
  26901. name: "Dick",
  26902. image: {
  26903. source: "./media/characters/kayda/dick.svg"
  26904. }
  26905. },
  26906. },
  26907. [
  26908. {
  26909. name: "Macro",
  26910. height: math.unit(28, "feet"),
  26911. default: true
  26912. },
  26913. ]
  26914. ))
  26915. characterMakers.push(() => makeCharacter(
  26916. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  26917. {
  26918. front: {
  26919. height: math.unit(10 + 11 / 12, "feet"),
  26920. weight: math.unit(1400, "lb"),
  26921. name: "Front",
  26922. image: {
  26923. source: "./media/characters/brian/front.svg",
  26924. extra: 737 / 692,
  26925. bottom: 55.4 / 785
  26926. }
  26927. },
  26928. },
  26929. [
  26930. {
  26931. name: "Normal",
  26932. height: math.unit(10 + 11 / 12, "feet"),
  26933. default: true
  26934. },
  26935. ]
  26936. ))
  26937. characterMakers.push(() => makeCharacter(
  26938. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  26939. {
  26940. front: {
  26941. height: math.unit(5 + 8 / 12, "feet"),
  26942. weight: math.unit(140, "lb"),
  26943. name: "Front",
  26944. image: {
  26945. source: "./media/characters/khemri/front.svg",
  26946. extra: 4780 / 4059,
  26947. bottom: 80.1 / 4859.25
  26948. }
  26949. },
  26950. },
  26951. [
  26952. {
  26953. name: "Micro",
  26954. height: math.unit(6, "inches")
  26955. },
  26956. {
  26957. name: "Normal",
  26958. height: math.unit(5 + 8 / 12, "feet"),
  26959. default: true
  26960. },
  26961. ]
  26962. ))
  26963. characterMakers.push(() => makeCharacter(
  26964. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  26965. {
  26966. front: {
  26967. height: math.unit(13, "feet"),
  26968. weight: math.unit(1700, "lb"),
  26969. name: "Front",
  26970. image: {
  26971. source: "./media/characters/felix-braveheart/front.svg",
  26972. extra: 1222 / 1157,
  26973. bottom: 53.2 / 1280
  26974. }
  26975. },
  26976. back: {
  26977. height: math.unit(13, "feet"),
  26978. weight: math.unit(1700, "lb"),
  26979. name: "Back",
  26980. image: {
  26981. source: "./media/characters/felix-braveheart/back.svg",
  26982. extra: 1277 / 1203,
  26983. bottom: 50.2 / 1327
  26984. }
  26985. },
  26986. feral: {
  26987. height: math.unit(6, "feet"),
  26988. weight: math.unit(400, "lb"),
  26989. name: "Feral",
  26990. image: {
  26991. source: "./media/characters/felix-braveheart/feral.svg",
  26992. extra: 682 / 625,
  26993. bottom: 6.9 / 688
  26994. }
  26995. },
  26996. },
  26997. [
  26998. {
  26999. name: "Normal",
  27000. height: math.unit(13, "feet"),
  27001. default: true
  27002. },
  27003. ]
  27004. ))
  27005. characterMakers.push(() => makeCharacter(
  27006. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  27007. {
  27008. side: {
  27009. height: math.unit(5 + 11 / 12, "feet"),
  27010. weight: math.unit(1400, "lb"),
  27011. name: "Side",
  27012. image: {
  27013. source: "./media/characters/shadow-blade/side.svg",
  27014. extra: 1726 / 1267,
  27015. bottom: 58.4 / 1785
  27016. }
  27017. },
  27018. },
  27019. [
  27020. {
  27021. name: "Normal",
  27022. height: math.unit(5 + 11 / 12, "feet"),
  27023. default: true
  27024. },
  27025. ]
  27026. ))
  27027. characterMakers.push(() => makeCharacter(
  27028. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  27029. {
  27030. front: {
  27031. height: math.unit(1 + 6 / 12, "feet"),
  27032. weight: math.unit(25, "lb"),
  27033. name: "Front",
  27034. image: {
  27035. source: "./media/characters/karla-halldor/front.svg",
  27036. extra: 1459 / 1383,
  27037. bottom: 12 / 1472
  27038. }
  27039. },
  27040. },
  27041. [
  27042. {
  27043. name: "Normal",
  27044. height: math.unit(1 + 6 / 12, "feet"),
  27045. default: true
  27046. },
  27047. ]
  27048. ))
  27049. characterMakers.push(() => makeCharacter(
  27050. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  27051. {
  27052. front: {
  27053. height: math.unit(6 + 2 / 12, "feet"),
  27054. weight: math.unit(160, "lb"),
  27055. name: "Front",
  27056. image: {
  27057. source: "./media/characters/ariam/front.svg",
  27058. extra: 1073/976,
  27059. bottom: 52/1125
  27060. }
  27061. },
  27062. back: {
  27063. height: math.unit(6 + 2/12, "feet"),
  27064. weight: math.unit(160, "lb"),
  27065. name: "Back",
  27066. image: {
  27067. source: "./media/characters/ariam/back.svg",
  27068. extra: 1103/1023,
  27069. bottom: 9/1112
  27070. }
  27071. },
  27072. dressed: {
  27073. height: math.unit(6 + 2/12, "feet"),
  27074. weight: math.unit(160, "lb"),
  27075. name: "Dressed",
  27076. image: {
  27077. source: "./media/characters/ariam/dressed.svg",
  27078. extra: 1099/1009,
  27079. bottom: 25/1124
  27080. }
  27081. },
  27082. squatting: {
  27083. height: math.unit(4.1, "feet"),
  27084. weight: math.unit(160, "lb"),
  27085. name: "Squatting",
  27086. image: {
  27087. source: "./media/characters/ariam/squatting.svg",
  27088. extra: 2617 / 2112,
  27089. bottom: 61.2 / 2681,
  27090. }
  27091. },
  27092. },
  27093. [
  27094. {
  27095. name: "Normal",
  27096. height: math.unit(6 + 2 / 12, "feet"),
  27097. default: true
  27098. },
  27099. {
  27100. name: "Normal+",
  27101. height: math.unit(4, "meters")
  27102. },
  27103. {
  27104. name: "Macro",
  27105. height: math.unit(50, "meters")
  27106. },
  27107. {
  27108. name: "Macro+",
  27109. height: math.unit(100, "meters")
  27110. },
  27111. {
  27112. name: "Megamacro",
  27113. height: math.unit(20, "km")
  27114. },
  27115. {
  27116. name: "Caretaker",
  27117. height: math.unit(444, "megameters")
  27118. },
  27119. ]
  27120. ))
  27121. characterMakers.push(() => makeCharacter(
  27122. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  27123. {
  27124. front: {
  27125. height: math.unit(1.67, "meters"),
  27126. weight: math.unit(140, "lb"),
  27127. name: "Front",
  27128. image: {
  27129. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  27130. extra: 438 / 410,
  27131. bottom: 0.75 / 439
  27132. }
  27133. },
  27134. },
  27135. [
  27136. {
  27137. name: "Shrunken",
  27138. height: math.unit(7.6, "cm")
  27139. },
  27140. {
  27141. name: "Human Scale",
  27142. height: math.unit(1.67, "meters")
  27143. },
  27144. {
  27145. name: "Wolxi Scale",
  27146. height: math.unit(36.7, "meters"),
  27147. default: true
  27148. },
  27149. ]
  27150. ))
  27151. characterMakers.push(() => makeCharacter(
  27152. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  27153. {
  27154. front: {
  27155. height: math.unit(1.73, "meters"),
  27156. weight: math.unit(240, "lb"),
  27157. name: "Front",
  27158. image: {
  27159. source: "./media/characters/izue-two-mothers/front.svg",
  27160. extra: 469 / 437,
  27161. bottom: 1.24 / 470.6
  27162. }
  27163. },
  27164. },
  27165. [
  27166. {
  27167. name: "Shrunken",
  27168. height: math.unit(7.86, "cm")
  27169. },
  27170. {
  27171. name: "Human Scale",
  27172. height: math.unit(1.73, "meters")
  27173. },
  27174. {
  27175. name: "Wolxi Scale",
  27176. height: math.unit(38, "meters"),
  27177. default: true
  27178. },
  27179. ]
  27180. ))
  27181. characterMakers.push(() => makeCharacter(
  27182. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  27183. {
  27184. front: {
  27185. height: math.unit(1.55, "meters"),
  27186. weight: math.unit(120, "lb"),
  27187. name: "Front",
  27188. image: {
  27189. source: "./media/characters/teeku-love-shack/front.svg",
  27190. extra: 387 / 362,
  27191. bottom: 1.51 / 388
  27192. }
  27193. },
  27194. },
  27195. [
  27196. {
  27197. name: "Shrunken",
  27198. height: math.unit(7, "cm")
  27199. },
  27200. {
  27201. name: "Human Scale",
  27202. height: math.unit(1.55, "meters")
  27203. },
  27204. {
  27205. name: "Wolxi Scale",
  27206. height: math.unit(34.1, "meters"),
  27207. default: true
  27208. },
  27209. ]
  27210. ))
  27211. characterMakers.push(() => makeCharacter(
  27212. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  27213. {
  27214. front: {
  27215. height: math.unit(1.83, "meters"),
  27216. weight: math.unit(135, "lb"),
  27217. name: "Front",
  27218. image: {
  27219. source: "./media/characters/dejma-the-red/front.svg",
  27220. extra: 480 / 458,
  27221. bottom: 1.8 / 482
  27222. }
  27223. },
  27224. },
  27225. [
  27226. {
  27227. name: "Shrunken",
  27228. height: math.unit(8.3, "cm")
  27229. },
  27230. {
  27231. name: "Human Scale",
  27232. height: math.unit(1.83, "meters")
  27233. },
  27234. {
  27235. name: "Wolxi Scale",
  27236. height: math.unit(40, "meters"),
  27237. default: true
  27238. },
  27239. ]
  27240. ))
  27241. characterMakers.push(() => makeCharacter(
  27242. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  27243. {
  27244. front: {
  27245. height: math.unit(1.78, "meters"),
  27246. weight: math.unit(65, "kg"),
  27247. name: "Front",
  27248. image: {
  27249. source: "./media/characters/aki/front.svg",
  27250. extra: 452 / 415
  27251. }
  27252. },
  27253. frontNsfw: {
  27254. height: math.unit(1.78, "meters"),
  27255. weight: math.unit(65, "kg"),
  27256. name: "Front (NSFW)",
  27257. image: {
  27258. source: "./media/characters/aki/front-nsfw.svg",
  27259. extra: 452 / 415
  27260. }
  27261. },
  27262. back: {
  27263. height: math.unit(1.78, "meters"),
  27264. weight: math.unit(65, "kg"),
  27265. name: "Back",
  27266. image: {
  27267. source: "./media/characters/aki/back.svg",
  27268. extra: 452 / 415
  27269. }
  27270. },
  27271. rump: {
  27272. height: math.unit(2.05, "feet"),
  27273. name: "Rump",
  27274. image: {
  27275. source: "./media/characters/aki/rump.svg"
  27276. }
  27277. },
  27278. dick: {
  27279. height: math.unit(0.95, "feet"),
  27280. name: "Dick",
  27281. image: {
  27282. source: "./media/characters/aki/dick.svg"
  27283. }
  27284. },
  27285. },
  27286. [
  27287. {
  27288. name: "Micro",
  27289. height: math.unit(15, "cm")
  27290. },
  27291. {
  27292. name: "Normal",
  27293. height: math.unit(178, "cm"),
  27294. default: true
  27295. },
  27296. {
  27297. name: "Macro",
  27298. height: math.unit(214, "m")
  27299. },
  27300. {
  27301. name: "Macro+",
  27302. height: math.unit(534, "m")
  27303. },
  27304. ]
  27305. ))
  27306. characterMakers.push(() => makeCharacter(
  27307. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  27308. {
  27309. front: {
  27310. height: math.unit(5 + 5 / 12, "feet"),
  27311. weight: math.unit(120, "lb"),
  27312. name: "Front",
  27313. image: {
  27314. source: "./media/characters/ari/front.svg",
  27315. extra: 1550/1471,
  27316. bottom: 39/1589
  27317. }
  27318. },
  27319. },
  27320. [
  27321. {
  27322. name: "Normal",
  27323. height: math.unit(5 + 5 / 12, "feet")
  27324. },
  27325. {
  27326. name: "Macro",
  27327. height: math.unit(100, "feet"),
  27328. default: true
  27329. },
  27330. {
  27331. name: "Megamacro",
  27332. height: math.unit(100, "miles")
  27333. },
  27334. {
  27335. name: "Gigamacro",
  27336. height: math.unit(80000, "miles")
  27337. },
  27338. ]
  27339. ))
  27340. characterMakers.push(() => makeCharacter(
  27341. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  27342. {
  27343. side: {
  27344. height: math.unit(9, "feet"),
  27345. weight: math.unit(400, "kg"),
  27346. name: "Side",
  27347. image: {
  27348. source: "./media/characters/bolt/side.svg",
  27349. extra: 1126 / 896,
  27350. bottom: 60 / 1187.3,
  27351. }
  27352. },
  27353. },
  27354. [
  27355. {
  27356. name: "Micro",
  27357. height: math.unit(5, "inches")
  27358. },
  27359. {
  27360. name: "Normal",
  27361. height: math.unit(9, "feet"),
  27362. default: true
  27363. },
  27364. {
  27365. name: "Macro",
  27366. height: math.unit(700, "feet")
  27367. },
  27368. {
  27369. name: "Max Size",
  27370. height: math.unit(1.52e22, "yottameters")
  27371. },
  27372. ]
  27373. ))
  27374. characterMakers.push(() => makeCharacter(
  27375. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  27376. {
  27377. front: {
  27378. height: math.unit(4.3, "meters"),
  27379. weight: math.unit(3, "tons"),
  27380. name: "Front",
  27381. image: {
  27382. source: "./media/characters/draekon-sylviar/front.svg",
  27383. extra: 2072/1512,
  27384. bottom: 74/2146
  27385. }
  27386. },
  27387. back: {
  27388. height: math.unit(4.3, "meters"),
  27389. weight: math.unit(3, "tons"),
  27390. name: "Back",
  27391. image: {
  27392. source: "./media/characters/draekon-sylviar/back.svg",
  27393. extra: 1639/1483,
  27394. bottom: 41/1680
  27395. }
  27396. },
  27397. feral: {
  27398. height: math.unit(1.15, "meters"),
  27399. weight: math.unit(3, "tons"),
  27400. name: "Feral",
  27401. image: {
  27402. source: "./media/characters/draekon-sylviar/feral.svg",
  27403. extra: 1033/395,
  27404. bottom: 130/1163
  27405. }
  27406. },
  27407. maw: {
  27408. height: math.unit(1.3, "meters"),
  27409. name: "Maw",
  27410. image: {
  27411. source: "./media/characters/draekon-sylviar/maw.svg"
  27412. }
  27413. },
  27414. mawSeparated: {
  27415. height: math.unit(1.53, "meters"),
  27416. name: "Separated Maw",
  27417. image: {
  27418. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  27419. }
  27420. },
  27421. tail: {
  27422. height: math.unit(1.15, "meters"),
  27423. name: "Tail",
  27424. image: {
  27425. source: "./media/characters/draekon-sylviar/tail.svg"
  27426. }
  27427. },
  27428. tailDick: {
  27429. height: math.unit(1.15, "meters"),
  27430. name: "Tail (Dick)",
  27431. image: {
  27432. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  27433. }
  27434. },
  27435. tailDickSeparated: {
  27436. height: math.unit(1.19, "meters"),
  27437. name: "Tail (Separated Dick)",
  27438. image: {
  27439. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  27440. }
  27441. },
  27442. slit: {
  27443. height: math.unit(1, "meters"),
  27444. name: "Slit",
  27445. image: {
  27446. source: "./media/characters/draekon-sylviar/slit.svg"
  27447. }
  27448. },
  27449. dick: {
  27450. height: math.unit(1.15, "meters"),
  27451. name: "Dick",
  27452. image: {
  27453. source: "./media/characters/draekon-sylviar/dick.svg"
  27454. }
  27455. },
  27456. dickSeparated: {
  27457. height: math.unit(1.1, "meters"),
  27458. name: "Separated Dick",
  27459. image: {
  27460. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  27461. }
  27462. },
  27463. sheath: {
  27464. height: math.unit(1.15, "meters"),
  27465. name: "Sheath",
  27466. image: {
  27467. source: "./media/characters/draekon-sylviar/sheath.svg"
  27468. }
  27469. },
  27470. },
  27471. [
  27472. {
  27473. name: "Small",
  27474. height: math.unit(4.53 / 2, "meters"),
  27475. default: true
  27476. },
  27477. {
  27478. name: "Normal",
  27479. height: math.unit(4.53, "meters"),
  27480. default: true
  27481. },
  27482. {
  27483. name: "Large",
  27484. height: math.unit(4.53 * 2, "meters"),
  27485. },
  27486. ]
  27487. ))
  27488. characterMakers.push(() => makeCharacter(
  27489. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  27490. {
  27491. front: {
  27492. height: math.unit(6 + 2 / 12, "feet"),
  27493. weight: math.unit(180, "lb"),
  27494. name: "Front",
  27495. image: {
  27496. source: "./media/characters/brawler/front.svg",
  27497. extra: 3301 / 3027,
  27498. bottom: 138 / 3439
  27499. }
  27500. },
  27501. },
  27502. [
  27503. {
  27504. name: "Normal",
  27505. height: math.unit(6 + 2 / 12, "feet"),
  27506. default: true
  27507. },
  27508. ]
  27509. ))
  27510. characterMakers.push(() => makeCharacter(
  27511. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  27512. {
  27513. front: {
  27514. height: math.unit(11, "feet"),
  27515. weight: math.unit(1000, "lb"),
  27516. name: "Front",
  27517. image: {
  27518. source: "./media/characters/alex/front.svg",
  27519. bottom: 44.5 / 620
  27520. }
  27521. },
  27522. },
  27523. [
  27524. {
  27525. name: "Micro",
  27526. height: math.unit(5, "inches")
  27527. },
  27528. {
  27529. name: "Normal",
  27530. height: math.unit(11, "feet"),
  27531. default: true
  27532. },
  27533. {
  27534. name: "Macro",
  27535. height: math.unit(9.5e9, "feet")
  27536. },
  27537. {
  27538. name: "Max Size",
  27539. height: math.unit(1.4e283, "yottameters")
  27540. },
  27541. ]
  27542. ))
  27543. characterMakers.push(() => makeCharacter(
  27544. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  27545. {
  27546. female: {
  27547. height: math.unit(29.9, "m"),
  27548. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  27549. name: "Female",
  27550. image: {
  27551. source: "./media/characters/zenari/female.svg",
  27552. extra: 3281.6 / 3217,
  27553. bottom: 72.2 / 3353
  27554. }
  27555. },
  27556. male: {
  27557. height: math.unit(27.7, "m"),
  27558. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  27559. name: "Male",
  27560. image: {
  27561. source: "./media/characters/zenari/male.svg",
  27562. extra: 3008 / 2991,
  27563. bottom: 54.6 / 3069
  27564. }
  27565. },
  27566. },
  27567. [
  27568. {
  27569. name: "Macro",
  27570. height: math.unit(29.7, "meters"),
  27571. default: true
  27572. },
  27573. ]
  27574. ))
  27575. characterMakers.push(() => makeCharacter(
  27576. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  27577. {
  27578. female: {
  27579. height: math.unit(23.8, "m"),
  27580. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  27581. name: "Female",
  27582. image: {
  27583. source: "./media/characters/mactarian/female.svg",
  27584. extra: 2662 / 2569,
  27585. bottom: 73 / 2736
  27586. }
  27587. },
  27588. male: {
  27589. height: math.unit(23.8, "m"),
  27590. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  27591. name: "Male",
  27592. image: {
  27593. source: "./media/characters/mactarian/male.svg",
  27594. extra: 2673 / 2600,
  27595. bottom: 76 / 2750
  27596. }
  27597. },
  27598. },
  27599. [
  27600. {
  27601. name: "Macro",
  27602. height: math.unit(23.8, "meters"),
  27603. default: true
  27604. },
  27605. ]
  27606. ))
  27607. characterMakers.push(() => makeCharacter(
  27608. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  27609. {
  27610. female: {
  27611. height: math.unit(19.3, "m"),
  27612. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  27613. name: "Female",
  27614. image: {
  27615. source: "./media/characters/umok/female.svg",
  27616. extra: 2186 / 2078,
  27617. bottom: 87 / 2277
  27618. }
  27619. },
  27620. male: {
  27621. height: math.unit(19.5, "m"),
  27622. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  27623. name: "Male",
  27624. image: {
  27625. source: "./media/characters/umok/male.svg",
  27626. extra: 2233 / 2140,
  27627. bottom: 24.4 / 2258
  27628. }
  27629. },
  27630. },
  27631. [
  27632. {
  27633. name: "Macro",
  27634. height: math.unit(19.3, "meters"),
  27635. default: true
  27636. },
  27637. ]
  27638. ))
  27639. characterMakers.push(() => makeCharacter(
  27640. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  27641. {
  27642. female: {
  27643. height: math.unit(26.15, "m"),
  27644. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  27645. name: "Female",
  27646. image: {
  27647. source: "./media/characters/joraxian/female.svg",
  27648. extra: 2912 / 2824,
  27649. bottom: 36 / 2956
  27650. }
  27651. },
  27652. male: {
  27653. height: math.unit(25.4, "m"),
  27654. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  27655. name: "Male",
  27656. image: {
  27657. source: "./media/characters/joraxian/male.svg",
  27658. extra: 2877 / 2721,
  27659. bottom: 82 / 2967
  27660. }
  27661. },
  27662. },
  27663. [
  27664. {
  27665. name: "Macro",
  27666. height: math.unit(26.15, "meters"),
  27667. default: true
  27668. },
  27669. ]
  27670. ))
  27671. characterMakers.push(() => makeCharacter(
  27672. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  27673. {
  27674. female: {
  27675. height: math.unit(21.6, "m"),
  27676. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  27677. name: "Female",
  27678. image: {
  27679. source: "./media/characters/sthara/female.svg",
  27680. extra: 2516 / 2347,
  27681. bottom: 21.5 / 2537
  27682. }
  27683. },
  27684. male: {
  27685. height: math.unit(24, "m"),
  27686. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  27687. name: "Male",
  27688. image: {
  27689. source: "./media/characters/sthara/male.svg",
  27690. extra: 2732 / 2607,
  27691. bottom: 23 / 2732
  27692. }
  27693. },
  27694. },
  27695. [
  27696. {
  27697. name: "Macro",
  27698. height: math.unit(21.6, "meters"),
  27699. default: true
  27700. },
  27701. ]
  27702. ))
  27703. characterMakers.push(() => makeCharacter(
  27704. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  27705. {
  27706. front: {
  27707. height: math.unit(6 + 4 / 12, "feet"),
  27708. weight: math.unit(175, "lb"),
  27709. name: "Front",
  27710. image: {
  27711. source: "./media/characters/luka-bryzant/front.svg",
  27712. extra: 311 / 289,
  27713. bottom: 4 / 315
  27714. }
  27715. },
  27716. back: {
  27717. height: math.unit(6 + 4 / 12, "feet"),
  27718. weight: math.unit(175, "lb"),
  27719. name: "Back",
  27720. image: {
  27721. source: "./media/characters/luka-bryzant/back.svg",
  27722. extra: 311 / 289,
  27723. bottom: 3.8 / 313.7
  27724. }
  27725. },
  27726. },
  27727. [
  27728. {
  27729. name: "Micro",
  27730. height: math.unit(10, "inches")
  27731. },
  27732. {
  27733. name: "Normal",
  27734. height: math.unit(6 + 4 / 12, "feet"),
  27735. default: true
  27736. },
  27737. {
  27738. name: "Large",
  27739. height: math.unit(12, "feet")
  27740. },
  27741. ]
  27742. ))
  27743. characterMakers.push(() => makeCharacter(
  27744. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  27745. {
  27746. front: {
  27747. height: math.unit(5 + 7 / 12, "feet"),
  27748. weight: math.unit(185, "lb"),
  27749. name: "Front",
  27750. image: {
  27751. source: "./media/characters/aman-aquila/front.svg",
  27752. extra: 1013 / 976,
  27753. bottom: 45.6 / 1057
  27754. }
  27755. },
  27756. side: {
  27757. height: math.unit(5 + 7 / 12, "feet"),
  27758. weight: math.unit(185, "lb"),
  27759. name: "Side",
  27760. image: {
  27761. source: "./media/characters/aman-aquila/side.svg",
  27762. extra: 1054 / 1011,
  27763. bottom: 15 / 1070
  27764. }
  27765. },
  27766. back: {
  27767. height: math.unit(5 + 7 / 12, "feet"),
  27768. weight: math.unit(185, "lb"),
  27769. name: "Back",
  27770. image: {
  27771. source: "./media/characters/aman-aquila/back.svg",
  27772. extra: 1026 / 970,
  27773. bottom: 12 / 1039
  27774. }
  27775. },
  27776. head: {
  27777. height: math.unit(1.211, "feet"),
  27778. name: "Head",
  27779. image: {
  27780. source: "./media/characters/aman-aquila/head.svg",
  27781. }
  27782. },
  27783. },
  27784. [
  27785. {
  27786. name: "Minimicro",
  27787. height: math.unit(0.057, "inches")
  27788. },
  27789. {
  27790. name: "Micro",
  27791. height: math.unit(7, "inches")
  27792. },
  27793. {
  27794. name: "Mini",
  27795. height: math.unit(3 + 7 / 12, "feet")
  27796. },
  27797. {
  27798. name: "Normal",
  27799. height: math.unit(5 + 7 / 12, "feet"),
  27800. default: true
  27801. },
  27802. {
  27803. name: "Macro",
  27804. height: math.unit(157 + 7 / 12, "feet")
  27805. },
  27806. {
  27807. name: "Megamacro",
  27808. height: math.unit(1557 + 7 / 12, "feet")
  27809. },
  27810. {
  27811. name: "Gigamacro",
  27812. height: math.unit(15557 + 7 / 12, "feet")
  27813. },
  27814. ]
  27815. ))
  27816. characterMakers.push(() => makeCharacter(
  27817. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  27818. {
  27819. front: {
  27820. height: math.unit(3 + 2 / 12, "inches"),
  27821. weight: math.unit(0.3, "ounces"),
  27822. name: "Front",
  27823. image: {
  27824. source: "./media/characters/hiphae/front.svg",
  27825. extra: 1931 / 1683,
  27826. bottom: 24 / 1955
  27827. }
  27828. },
  27829. },
  27830. [
  27831. {
  27832. name: "Normal",
  27833. height: math.unit(3 + 1 / 2, "inches"),
  27834. default: true
  27835. },
  27836. ]
  27837. ))
  27838. characterMakers.push(() => makeCharacter(
  27839. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  27840. {
  27841. front: {
  27842. height: math.unit(5 + 10 / 12, "feet"),
  27843. weight: math.unit(165, "lb"),
  27844. name: "Front",
  27845. image: {
  27846. source: "./media/characters/nicky/front.svg",
  27847. extra: 3144 / 2886,
  27848. bottom: 45.6 / 3192
  27849. }
  27850. },
  27851. back: {
  27852. height: math.unit(5 + 10 / 12, "feet"),
  27853. weight: math.unit(165, "lb"),
  27854. name: "Back",
  27855. image: {
  27856. source: "./media/characters/nicky/back.svg",
  27857. extra: 3055 / 2804,
  27858. bottom: 28.4 / 3087
  27859. }
  27860. },
  27861. frontclothed: {
  27862. height: math.unit(5 + 10 / 12, "feet"),
  27863. weight: math.unit(165, "lb"),
  27864. name: "Front-clothed",
  27865. image: {
  27866. source: "./media/characters/nicky/front-clothed.svg",
  27867. extra: 3184.9 / 2926.9,
  27868. bottom: 86.5 / 3239.9
  27869. }
  27870. },
  27871. foot: {
  27872. height: math.unit(1.16, "feet"),
  27873. name: "Foot",
  27874. image: {
  27875. source: "./media/characters/nicky/foot.svg"
  27876. }
  27877. },
  27878. feet: {
  27879. height: math.unit(1.34, "feet"),
  27880. name: "Feet",
  27881. image: {
  27882. source: "./media/characters/nicky/feet.svg"
  27883. }
  27884. },
  27885. maw: {
  27886. height: math.unit(0.9, "feet"),
  27887. name: "Maw",
  27888. image: {
  27889. source: "./media/characters/nicky/maw.svg"
  27890. }
  27891. },
  27892. },
  27893. [
  27894. {
  27895. name: "Normal",
  27896. height: math.unit(5 + 10 / 12, "feet"),
  27897. default: true
  27898. },
  27899. {
  27900. name: "Macro",
  27901. height: math.unit(60, "feet")
  27902. },
  27903. {
  27904. name: "Megamacro",
  27905. height: math.unit(1, "mile")
  27906. },
  27907. ]
  27908. ))
  27909. characterMakers.push(() => makeCharacter(
  27910. { name: "Blair", species: ["seal"], tags: ["taur"] },
  27911. {
  27912. side: {
  27913. height: math.unit(10, "feet"),
  27914. weight: math.unit(600, "lb"),
  27915. name: "Side",
  27916. image: {
  27917. source: "./media/characters/blair/side.svg",
  27918. bottom: 16.6 / 475,
  27919. extra: 458 / 431
  27920. }
  27921. },
  27922. },
  27923. [
  27924. {
  27925. name: "Micro",
  27926. height: math.unit(8, "inches")
  27927. },
  27928. {
  27929. name: "Normal",
  27930. height: math.unit(10, "feet"),
  27931. default: true
  27932. },
  27933. {
  27934. name: "Macro",
  27935. height: math.unit(180, "feet")
  27936. },
  27937. ]
  27938. ))
  27939. characterMakers.push(() => makeCharacter(
  27940. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  27941. {
  27942. front: {
  27943. height: math.unit(5 + 4 / 12, "feet"),
  27944. weight: math.unit(125, "lb"),
  27945. name: "Front",
  27946. image: {
  27947. source: "./media/characters/fisher/front.svg",
  27948. extra: 444 / 390,
  27949. bottom: 2 / 444.8
  27950. }
  27951. },
  27952. },
  27953. [
  27954. {
  27955. name: "Micro",
  27956. height: math.unit(4, "inches")
  27957. },
  27958. {
  27959. name: "Normal",
  27960. height: math.unit(5 + 4 / 12, "feet"),
  27961. default: true
  27962. },
  27963. {
  27964. name: "Macro",
  27965. height: math.unit(100, "feet")
  27966. },
  27967. ]
  27968. ))
  27969. characterMakers.push(() => makeCharacter(
  27970. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  27971. {
  27972. front: {
  27973. height: math.unit(6.71, "feet"),
  27974. weight: math.unit(200, "lb"),
  27975. preyCapacity: math.unit(1000000, "people"),
  27976. name: "Front",
  27977. image: {
  27978. source: "./media/characters/gliss/front.svg",
  27979. extra: 2347 / 2231,
  27980. bottom: 113 / 2462
  27981. }
  27982. },
  27983. hammerspaceSize: {
  27984. height: math.unit(6.71 * 717, "feet"),
  27985. weight: math.unit(200, "lb"),
  27986. preyCapacity: math.unit(1000000, "people"),
  27987. name: "Hammerspace Size",
  27988. image: {
  27989. source: "./media/characters/gliss/front.svg",
  27990. extra: 2347 / 2231,
  27991. bottom: 113 / 2462
  27992. }
  27993. },
  27994. },
  27995. [
  27996. {
  27997. name: "Normal",
  27998. height: math.unit(6.71, "feet"),
  27999. default: true
  28000. },
  28001. ]
  28002. ))
  28003. characterMakers.push(() => makeCharacter(
  28004. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  28005. {
  28006. side: {
  28007. height: math.unit(1.44, "m"),
  28008. weight: math.unit(80, "kg"),
  28009. name: "Side",
  28010. image: {
  28011. source: "./media/characters/dune-anderson/side.svg",
  28012. bottom: 49 / 1426
  28013. }
  28014. },
  28015. },
  28016. [
  28017. {
  28018. name: "Wolf-sized",
  28019. height: math.unit(1.44, "meters")
  28020. },
  28021. {
  28022. name: "Normal",
  28023. height: math.unit(5.05, "meters"),
  28024. default: true
  28025. },
  28026. {
  28027. name: "Big",
  28028. height: math.unit(14.4, "meters")
  28029. },
  28030. {
  28031. name: "Huge",
  28032. height: math.unit(144, "meters")
  28033. },
  28034. ]
  28035. ))
  28036. characterMakers.push(() => makeCharacter(
  28037. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  28038. {
  28039. front: {
  28040. height: math.unit(6, "feet"),
  28041. weight: math.unit(220, "lb"),
  28042. name: "Front",
  28043. image: {
  28044. source: "./media/characters/hind/front.svg",
  28045. extra: 1912/1787,
  28046. bottom: 52/1964
  28047. }
  28048. },
  28049. back: {
  28050. height: math.unit(6, "feet"),
  28051. weight: math.unit(220, "lb"),
  28052. name: "Back",
  28053. image: {
  28054. source: "./media/characters/hind/back.svg",
  28055. extra: 1901/1794,
  28056. bottom: 26/1927
  28057. }
  28058. },
  28059. },
  28060. [
  28061. {
  28062. name: "Normal",
  28063. height: math.unit(6, "feet"),
  28064. default: true
  28065. },
  28066. ]
  28067. ))
  28068. characterMakers.push(() => makeCharacter(
  28069. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  28070. {
  28071. front: {
  28072. height: math.unit(2.1, "meters"),
  28073. weight: math.unit(150, "lb"),
  28074. name: "Front",
  28075. image: {
  28076. source: "./media/characters/tharquench-sizestealer/front.svg",
  28077. extra: 1605/1470,
  28078. bottom: 36/1641
  28079. }
  28080. },
  28081. frontAlt: {
  28082. height: math.unit(2.1, "meters"),
  28083. weight: math.unit(150, "lb"),
  28084. name: "Front (Alt)",
  28085. image: {
  28086. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  28087. extra: 2318 / 2063,
  28088. bottom: 93.4 / 2410
  28089. }
  28090. },
  28091. },
  28092. [
  28093. {
  28094. name: "Nano",
  28095. height: math.unit(1, "mm")
  28096. },
  28097. {
  28098. name: "Micro",
  28099. height: math.unit(1, "cm")
  28100. },
  28101. {
  28102. name: "Normal",
  28103. height: math.unit(2.1, "meters"),
  28104. default: true
  28105. },
  28106. ]
  28107. ))
  28108. characterMakers.push(() => makeCharacter(
  28109. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  28110. {
  28111. front: {
  28112. height: math.unit(7 + 5 / 12, "feet"),
  28113. weight: math.unit(357, "lb"),
  28114. name: "Front",
  28115. image: {
  28116. source: "./media/characters/solex-draconov/front.svg",
  28117. extra: 1993 / 1865,
  28118. bottom: 117 / 2111
  28119. }
  28120. },
  28121. },
  28122. [
  28123. {
  28124. name: "Natural Height",
  28125. height: math.unit(7 + 5 / 12, "feet"),
  28126. default: true
  28127. },
  28128. {
  28129. name: "Macro",
  28130. height: math.unit(350, "feet")
  28131. },
  28132. {
  28133. name: "Macro+",
  28134. height: math.unit(1000, "feet")
  28135. },
  28136. {
  28137. name: "Megamacro",
  28138. height: math.unit(20, "km")
  28139. },
  28140. {
  28141. name: "Megamacro+",
  28142. height: math.unit(1000, "km")
  28143. },
  28144. {
  28145. name: "Gigamacro",
  28146. height: math.unit(2.5, "Gm")
  28147. },
  28148. {
  28149. name: "Teramacro",
  28150. height: math.unit(15, "Tm")
  28151. },
  28152. {
  28153. name: "Galactic",
  28154. height: math.unit(30, "Zm")
  28155. },
  28156. {
  28157. name: "Universal",
  28158. height: math.unit(21000, "Ym")
  28159. },
  28160. {
  28161. name: "Omniversal",
  28162. height: math.unit(9.861e50, "Ym")
  28163. },
  28164. {
  28165. name: "Existential",
  28166. height: math.unit(1e300, "meters")
  28167. },
  28168. ]
  28169. ))
  28170. characterMakers.push(() => makeCharacter(
  28171. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  28172. {
  28173. side: {
  28174. height: math.unit(25, "feet"),
  28175. weight: math.unit(90000, "lb"),
  28176. name: "Side",
  28177. image: {
  28178. source: "./media/characters/mandarax/side.svg",
  28179. extra: 614 / 332,
  28180. bottom: 55 / 630
  28181. }
  28182. },
  28183. lounging: {
  28184. height: math.unit(15.4, "feet"),
  28185. weight: math.unit(90000, "lb"),
  28186. name: "Lounging",
  28187. image: {
  28188. source: "./media/characters/mandarax/lounging.svg",
  28189. extra: 817/609,
  28190. bottom: 685/1502
  28191. }
  28192. },
  28193. head: {
  28194. height: math.unit(11.4, "feet"),
  28195. name: "Head",
  28196. image: {
  28197. source: "./media/characters/mandarax/head.svg"
  28198. }
  28199. },
  28200. belly: {
  28201. height: math.unit(33, "feet"),
  28202. name: "Belly",
  28203. preyCapacity: math.unit(500, "people"),
  28204. image: {
  28205. source: "./media/characters/mandarax/belly.svg"
  28206. }
  28207. },
  28208. dick: {
  28209. height: math.unit(8.46, "feet"),
  28210. name: "Dick",
  28211. image: {
  28212. source: "./media/characters/mandarax/dick.svg"
  28213. }
  28214. },
  28215. top: {
  28216. height: math.unit(28, "meters"),
  28217. name: "Top",
  28218. image: {
  28219. source: "./media/characters/mandarax/top.svg"
  28220. }
  28221. },
  28222. },
  28223. [
  28224. {
  28225. name: "Normal",
  28226. height: math.unit(25, "feet"),
  28227. default: true
  28228. },
  28229. ]
  28230. ))
  28231. characterMakers.push(() => makeCharacter(
  28232. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  28233. {
  28234. front: {
  28235. height: math.unit(5, "feet"),
  28236. weight: math.unit(90, "lb"),
  28237. name: "Front",
  28238. image: {
  28239. source: "./media/characters/pixil/front.svg",
  28240. extra: 2000 / 1618,
  28241. bottom: 12.3 / 2011
  28242. }
  28243. },
  28244. },
  28245. [
  28246. {
  28247. name: "Normal",
  28248. height: math.unit(5, "feet"),
  28249. default: true
  28250. },
  28251. {
  28252. name: "Megamacro",
  28253. height: math.unit(10, "miles"),
  28254. },
  28255. ]
  28256. ))
  28257. characterMakers.push(() => makeCharacter(
  28258. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  28259. {
  28260. front: {
  28261. height: math.unit(7 + 2 / 12, "feet"),
  28262. weight: math.unit(200, "lb"),
  28263. name: "Front",
  28264. image: {
  28265. source: "./media/characters/angel/front.svg",
  28266. extra: 1946/1840,
  28267. bottom: 30/1976
  28268. }
  28269. },
  28270. },
  28271. [
  28272. {
  28273. name: "Normal",
  28274. height: math.unit(7 + 2 / 12, "feet"),
  28275. default: true
  28276. },
  28277. {
  28278. name: "Macro",
  28279. height: math.unit(1000, "feet")
  28280. },
  28281. {
  28282. name: "Megamacro",
  28283. height: math.unit(2, "miles")
  28284. },
  28285. {
  28286. name: "Gigamacro",
  28287. height: math.unit(20, "earths")
  28288. },
  28289. ]
  28290. ))
  28291. characterMakers.push(() => makeCharacter(
  28292. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  28293. {
  28294. front: {
  28295. height: math.unit(5, "feet"),
  28296. weight: math.unit(180, "lb"),
  28297. name: "Front",
  28298. image: {
  28299. source: "./media/characters/mekana/front.svg",
  28300. extra: 1671 / 1605,
  28301. bottom: 3.5 / 1691
  28302. }
  28303. },
  28304. side: {
  28305. height: math.unit(5, "feet"),
  28306. weight: math.unit(180, "lb"),
  28307. name: "Side",
  28308. image: {
  28309. source: "./media/characters/mekana/side.svg",
  28310. extra: 1671 / 1605,
  28311. bottom: 3.5 / 1691
  28312. }
  28313. },
  28314. back: {
  28315. height: math.unit(5, "feet"),
  28316. weight: math.unit(180, "lb"),
  28317. name: "Back",
  28318. image: {
  28319. source: "./media/characters/mekana/back.svg",
  28320. extra: 1671 / 1605,
  28321. bottom: 3.5 / 1691
  28322. }
  28323. },
  28324. },
  28325. [
  28326. {
  28327. name: "Normal",
  28328. height: math.unit(5, "feet"),
  28329. default: true
  28330. },
  28331. ]
  28332. ))
  28333. characterMakers.push(() => makeCharacter(
  28334. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  28335. {
  28336. front: {
  28337. height: math.unit(4 + 6 / 12, "feet"),
  28338. weight: math.unit(80, "lb"),
  28339. name: "Front",
  28340. image: {
  28341. source: "./media/characters/pixie/front.svg",
  28342. extra: 1924 / 1825,
  28343. bottom: 22.4 / 1946
  28344. }
  28345. },
  28346. },
  28347. [
  28348. {
  28349. name: "Normal",
  28350. height: math.unit(4 + 6 / 12, "feet"),
  28351. default: true
  28352. },
  28353. {
  28354. name: "Macro",
  28355. height: math.unit(40, "feet")
  28356. },
  28357. ]
  28358. ))
  28359. characterMakers.push(() => makeCharacter(
  28360. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  28361. {
  28362. front: {
  28363. height: math.unit(2.1, "meters"),
  28364. weight: math.unit(200, "lb"),
  28365. name: "Front",
  28366. image: {
  28367. source: "./media/characters/the-lascivious/front.svg",
  28368. extra: 1 / 0.893,
  28369. bottom: 3.5 / 573.7
  28370. }
  28371. },
  28372. },
  28373. [
  28374. {
  28375. name: "Human Scale",
  28376. height: math.unit(2.1, "meters")
  28377. },
  28378. {
  28379. name: "Wolxi Scale",
  28380. height: math.unit(46.2, "m"),
  28381. default: true
  28382. },
  28383. {
  28384. name: "Boinker of Buildings",
  28385. height: math.unit(10, "km")
  28386. },
  28387. {
  28388. name: "Shagger of Skyscrapers",
  28389. height: math.unit(40, "km")
  28390. },
  28391. {
  28392. name: "Banger of Boroughs",
  28393. height: math.unit(4000, "km")
  28394. },
  28395. {
  28396. name: "Screwer of States",
  28397. height: math.unit(100000, "km")
  28398. },
  28399. {
  28400. name: "Pounder of Planets",
  28401. height: math.unit(2000000, "km")
  28402. },
  28403. ]
  28404. ))
  28405. characterMakers.push(() => makeCharacter(
  28406. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  28407. {
  28408. front: {
  28409. height: math.unit(6, "feet"),
  28410. weight: math.unit(150, "lb"),
  28411. name: "Front",
  28412. image: {
  28413. source: "./media/characters/aj/front.svg",
  28414. extra: 2039 / 1562,
  28415. bottom: 40 / 2079
  28416. }
  28417. },
  28418. },
  28419. [
  28420. {
  28421. name: "Normal",
  28422. height: math.unit(11 + 6 / 12, "feet"),
  28423. default: true
  28424. },
  28425. {
  28426. name: "Megamacro",
  28427. height: math.unit(60, "megameters")
  28428. },
  28429. ]
  28430. ))
  28431. characterMakers.push(() => makeCharacter(
  28432. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  28433. {
  28434. side: {
  28435. height: math.unit(31 + 8 / 12, "feet"),
  28436. weight: math.unit(75000, "kg"),
  28437. name: "Side",
  28438. image: {
  28439. source: "./media/characters/koros/side.svg",
  28440. extra: 1442 / 1297,
  28441. bottom: 122.7 / 1562
  28442. }
  28443. },
  28444. dicksKingsCrown: {
  28445. height: math.unit(6, "feet"),
  28446. name: "Dicks (King's Crown)",
  28447. image: {
  28448. source: "./media/characters/koros/dicks-kings-crown.svg"
  28449. }
  28450. },
  28451. dicksTailSet: {
  28452. height: math.unit(3, "feet"),
  28453. name: "Dicks (Tail Set)",
  28454. image: {
  28455. source: "./media/characters/koros/dicks-tail-set.svg"
  28456. }
  28457. },
  28458. dickCumming: {
  28459. height: math.unit(7.98, "feet"),
  28460. name: "Dick (Cumming)",
  28461. image: {
  28462. source: "./media/characters/koros/dick-cumming.svg"
  28463. }
  28464. },
  28465. dicksBack: {
  28466. height: math.unit(5.9, "feet"),
  28467. name: "Dicks (Back)",
  28468. image: {
  28469. source: "./media/characters/koros/dicks-back.svg"
  28470. }
  28471. },
  28472. dicksFront: {
  28473. height: math.unit(3.72, "feet"),
  28474. name: "Dicks (Front)",
  28475. image: {
  28476. source: "./media/characters/koros/dicks-front.svg"
  28477. }
  28478. },
  28479. dicksPeeking: {
  28480. height: math.unit(3.0, "feet"),
  28481. name: "Dicks (Peeking)",
  28482. image: {
  28483. source: "./media/characters/koros/dicks-peeking.svg"
  28484. }
  28485. },
  28486. eye: {
  28487. height: math.unit(1.7, "feet"),
  28488. name: "Eye",
  28489. image: {
  28490. source: "./media/characters/koros/eye.svg"
  28491. }
  28492. },
  28493. headFront: {
  28494. height: math.unit(11.69, "feet"),
  28495. name: "Head (Front)",
  28496. image: {
  28497. source: "./media/characters/koros/head-front.svg"
  28498. }
  28499. },
  28500. headSide: {
  28501. height: math.unit(14, "feet"),
  28502. name: "Head (Side)",
  28503. image: {
  28504. source: "./media/characters/koros/head-side.svg"
  28505. }
  28506. },
  28507. leg: {
  28508. height: math.unit(17, "feet"),
  28509. name: "Leg",
  28510. image: {
  28511. source: "./media/characters/koros/leg.svg"
  28512. }
  28513. },
  28514. mawSide: {
  28515. height: math.unit(12.8, "feet"),
  28516. name: "Maw (Side)",
  28517. image: {
  28518. source: "./media/characters/koros/maw-side.svg"
  28519. }
  28520. },
  28521. mawSpitting: {
  28522. height: math.unit(17, "feet"),
  28523. name: "Maw (Spitting)",
  28524. image: {
  28525. source: "./media/characters/koros/maw-spitting.svg"
  28526. }
  28527. },
  28528. slit: {
  28529. height: math.unit(2.8, "feet"),
  28530. name: "Slit",
  28531. image: {
  28532. source: "./media/characters/koros/slit.svg"
  28533. }
  28534. },
  28535. stomach: {
  28536. height: math.unit(6.8, "feet"),
  28537. preyCapacity: math.unit(20, "people"),
  28538. name: "Stomach",
  28539. image: {
  28540. source: "./media/characters/koros/stomach.svg"
  28541. }
  28542. },
  28543. wingspanBottom: {
  28544. height: math.unit(114, "feet"),
  28545. name: "Wingspan (Bottom)",
  28546. image: {
  28547. source: "./media/characters/koros/wingspan-bottom.svg"
  28548. }
  28549. },
  28550. wingspanTop: {
  28551. height: math.unit(104, "feet"),
  28552. name: "Wingspan (Top)",
  28553. image: {
  28554. source: "./media/characters/koros/wingspan-top.svg"
  28555. }
  28556. },
  28557. },
  28558. [
  28559. {
  28560. name: "Normal",
  28561. height: math.unit(31 + 8 / 12, "feet"),
  28562. default: true
  28563. },
  28564. ]
  28565. ))
  28566. characterMakers.push(() => makeCharacter(
  28567. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  28568. {
  28569. front: {
  28570. height: math.unit(18 + 5 / 12, "feet"),
  28571. weight: math.unit(3750, "kg"),
  28572. name: "Front",
  28573. image: {
  28574. source: "./media/characters/vexx/front.svg",
  28575. extra: 426 / 396,
  28576. bottom: 31.5 / 458
  28577. }
  28578. },
  28579. maw: {
  28580. height: math.unit(6, "feet"),
  28581. name: "Maw",
  28582. image: {
  28583. source: "./media/characters/vexx/maw.svg"
  28584. }
  28585. },
  28586. },
  28587. [
  28588. {
  28589. name: "Normal",
  28590. height: math.unit(18 + 5 / 12, "feet"),
  28591. default: true
  28592. },
  28593. ]
  28594. ))
  28595. characterMakers.push(() => makeCharacter(
  28596. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  28597. {
  28598. front: {
  28599. height: math.unit(17 + 6 / 12, "feet"),
  28600. weight: math.unit(150, "lb"),
  28601. name: "Front",
  28602. image: {
  28603. source: "./media/characters/baadra/front.svg",
  28604. extra: 1694/1553,
  28605. bottom: 179/1873
  28606. }
  28607. },
  28608. frontAlt: {
  28609. height: math.unit(17 + 6 / 12, "feet"),
  28610. weight: math.unit(150, "lb"),
  28611. name: "Front (Alt)",
  28612. image: {
  28613. source: "./media/characters/baadra/front-alt.svg",
  28614. extra: 3137 / 2890,
  28615. bottom: 168.4 / 3305
  28616. }
  28617. },
  28618. back: {
  28619. height: math.unit(17 + 6 / 12, "feet"),
  28620. weight: math.unit(150, "lb"),
  28621. name: "Back",
  28622. image: {
  28623. source: "./media/characters/baadra/back.svg",
  28624. extra: 3142 / 2890,
  28625. bottom: 220 / 3371
  28626. }
  28627. },
  28628. head: {
  28629. height: math.unit(5.45, "feet"),
  28630. name: "Head",
  28631. image: {
  28632. source: "./media/characters/baadra/head.svg"
  28633. }
  28634. },
  28635. headAngry: {
  28636. height: math.unit(4.95, "feet"),
  28637. name: "Head (Angry)",
  28638. image: {
  28639. source: "./media/characters/baadra/head-angry.svg"
  28640. }
  28641. },
  28642. headOpen: {
  28643. height: math.unit(6, "feet"),
  28644. name: "Head (Open)",
  28645. image: {
  28646. source: "./media/characters/baadra/head-open.svg"
  28647. }
  28648. },
  28649. },
  28650. [
  28651. {
  28652. name: "Normal",
  28653. height: math.unit(17 + 6 / 12, "feet"),
  28654. default: true
  28655. },
  28656. ]
  28657. ))
  28658. characterMakers.push(() => makeCharacter(
  28659. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  28660. {
  28661. front: {
  28662. height: math.unit(7 + 3 / 12, "feet"),
  28663. weight: math.unit(180, "lb"),
  28664. name: "Front",
  28665. image: {
  28666. source: "./media/characters/juri/front.svg",
  28667. extra: 1401 / 1237,
  28668. bottom: 18.5 / 1418
  28669. }
  28670. },
  28671. side: {
  28672. height: math.unit(7 + 3 / 12, "feet"),
  28673. weight: math.unit(180, "lb"),
  28674. name: "Side",
  28675. image: {
  28676. source: "./media/characters/juri/side.svg",
  28677. extra: 1424 / 1242,
  28678. bottom: 18.5 / 1447
  28679. }
  28680. },
  28681. sitting: {
  28682. height: math.unit(6, "feet"),
  28683. weight: math.unit(180, "lb"),
  28684. name: "Sitting",
  28685. image: {
  28686. source: "./media/characters/juri/sitting.svg",
  28687. extra: 1270 / 1143,
  28688. bottom: 100 / 1343
  28689. }
  28690. },
  28691. back: {
  28692. height: math.unit(7 + 3 / 12, "feet"),
  28693. weight: math.unit(180, "lb"),
  28694. name: "Back",
  28695. image: {
  28696. source: "./media/characters/juri/back.svg",
  28697. extra: 1377 / 1240,
  28698. bottom: 23.7 / 1405
  28699. }
  28700. },
  28701. maw: {
  28702. height: math.unit(2.8, "feet"),
  28703. name: "Maw",
  28704. image: {
  28705. source: "./media/characters/juri/maw.svg"
  28706. }
  28707. },
  28708. stomach: {
  28709. height: math.unit(0.89, "feet"),
  28710. preyCapacity: math.unit(4, "liters"),
  28711. name: "Stomach",
  28712. image: {
  28713. source: "./media/characters/juri/stomach.svg"
  28714. }
  28715. },
  28716. },
  28717. [
  28718. {
  28719. name: "Normal",
  28720. height: math.unit(7 + 3 / 12, "feet"),
  28721. default: true
  28722. },
  28723. ]
  28724. ))
  28725. characterMakers.push(() => makeCharacter(
  28726. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  28727. {
  28728. fox: {
  28729. height: math.unit(5 + 6 / 12, "feet"),
  28730. weight: math.unit(140, "lb"),
  28731. name: "Fox",
  28732. image: {
  28733. source: "./media/characters/maxene-sita/fox.svg",
  28734. extra: 146 / 138,
  28735. bottom: 2.1 / 148.19
  28736. }
  28737. },
  28738. foxLaying: {
  28739. height: math.unit(1.70, "feet"),
  28740. weight: math.unit(140, "lb"),
  28741. name: "Fox (Laying)",
  28742. image: {
  28743. source: "./media/characters/maxene-sita/fox-laying.svg",
  28744. extra: 910 / 572,
  28745. bottom: 71 / 981
  28746. }
  28747. },
  28748. kitsune: {
  28749. height: math.unit(10, "feet"),
  28750. weight: math.unit(800, "lb"),
  28751. name: "Kitsune",
  28752. image: {
  28753. source: "./media/characters/maxene-sita/kitsune.svg",
  28754. extra: 185 / 176,
  28755. bottom: 4.7 / 189.9
  28756. }
  28757. },
  28758. hellhound: {
  28759. height: math.unit(10, "feet"),
  28760. weight: math.unit(700, "lb"),
  28761. name: "Hellhound",
  28762. image: {
  28763. source: "./media/characters/maxene-sita/hellhound.svg",
  28764. extra: 1600 / 1545,
  28765. bottom: 81 / 1681
  28766. }
  28767. },
  28768. },
  28769. [
  28770. {
  28771. name: "Normal",
  28772. height: math.unit(5 + 6 / 12, "feet"),
  28773. default: true
  28774. },
  28775. ]
  28776. ))
  28777. characterMakers.push(() => makeCharacter(
  28778. { name: "Maia", species: ["mew"], tags: ["feral"] },
  28779. {
  28780. front: {
  28781. height: math.unit(3 + 4 / 12, "feet"),
  28782. weight: math.unit(70, "lb"),
  28783. name: "Front",
  28784. image: {
  28785. source: "./media/characters/maia/front.svg",
  28786. extra: 227 / 219.5,
  28787. bottom: 40 / 267
  28788. }
  28789. },
  28790. back: {
  28791. height: math.unit(3 + 4 / 12, "feet"),
  28792. weight: math.unit(70, "lb"),
  28793. name: "Back",
  28794. image: {
  28795. source: "./media/characters/maia/back.svg",
  28796. extra: 237 / 225
  28797. }
  28798. },
  28799. },
  28800. [
  28801. {
  28802. name: "Normal",
  28803. height: math.unit(3 + 4 / 12, "feet"),
  28804. default: true
  28805. },
  28806. ]
  28807. ))
  28808. characterMakers.push(() => makeCharacter(
  28809. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  28810. {
  28811. front: {
  28812. height: math.unit(5 + 10 / 12, "feet"),
  28813. weight: math.unit(197, "lb"),
  28814. name: "Front",
  28815. image: {
  28816. source: "./media/characters/jabaro/front.svg",
  28817. extra: 225 / 216,
  28818. bottom: 5.06 / 230
  28819. }
  28820. },
  28821. back: {
  28822. height: math.unit(5 + 10 / 12, "feet"),
  28823. weight: math.unit(197, "lb"),
  28824. name: "Back",
  28825. image: {
  28826. source: "./media/characters/jabaro/back.svg",
  28827. extra: 225 / 219,
  28828. bottom: 1.9 / 227
  28829. }
  28830. },
  28831. },
  28832. [
  28833. {
  28834. name: "Normal",
  28835. height: math.unit(5 + 10 / 12, "feet"),
  28836. default: true
  28837. },
  28838. ]
  28839. ))
  28840. characterMakers.push(() => makeCharacter(
  28841. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  28842. {
  28843. front: {
  28844. height: math.unit(5 + 8 / 12, "feet"),
  28845. weight: math.unit(139, "lb"),
  28846. name: "Front",
  28847. image: {
  28848. source: "./media/characters/risa/front.svg",
  28849. extra: 270 / 260,
  28850. bottom: 11.2 / 282
  28851. }
  28852. },
  28853. back: {
  28854. height: math.unit(5 + 8 / 12, "feet"),
  28855. weight: math.unit(139, "lb"),
  28856. name: "Back",
  28857. image: {
  28858. source: "./media/characters/risa/back.svg",
  28859. extra: 264 / 255,
  28860. bottom: 4 / 268
  28861. }
  28862. },
  28863. },
  28864. [
  28865. {
  28866. name: "Normal",
  28867. height: math.unit(5 + 8 / 12, "feet"),
  28868. default: true
  28869. },
  28870. ]
  28871. ))
  28872. characterMakers.push(() => makeCharacter(
  28873. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  28874. {
  28875. front: {
  28876. height: math.unit(2 + 11 / 12, "feet"),
  28877. weight: math.unit(30, "lb"),
  28878. name: "Front",
  28879. image: {
  28880. source: "./media/characters/weatley/front.svg",
  28881. bottom: 10.7 / 414,
  28882. extra: 403.5 / 362
  28883. }
  28884. },
  28885. back: {
  28886. height: math.unit(2 + 11 / 12, "feet"),
  28887. weight: math.unit(30, "lb"),
  28888. name: "Back",
  28889. image: {
  28890. source: "./media/characters/weatley/back.svg",
  28891. bottom: 10.7 / 414,
  28892. extra: 403.5 / 362
  28893. }
  28894. },
  28895. },
  28896. [
  28897. {
  28898. name: "Normal",
  28899. height: math.unit(2 + 11 / 12, "feet"),
  28900. default: true
  28901. },
  28902. ]
  28903. ))
  28904. characterMakers.push(() => makeCharacter(
  28905. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  28906. {
  28907. front: {
  28908. height: math.unit(5 + 2 / 12, "feet"),
  28909. weight: math.unit(50, "kg"),
  28910. name: "Front",
  28911. image: {
  28912. source: "./media/characters/mercury-crescent/front.svg",
  28913. extra: 1088 / 1033,
  28914. bottom: 18.9 / 1109
  28915. }
  28916. },
  28917. },
  28918. [
  28919. {
  28920. name: "Normal",
  28921. height: math.unit(5 + 2 / 12, "feet"),
  28922. default: true
  28923. },
  28924. ]
  28925. ))
  28926. characterMakers.push(() => makeCharacter(
  28927. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  28928. {
  28929. front: {
  28930. height: math.unit(2, "feet"),
  28931. weight: math.unit(15, "kg"),
  28932. name: "Front",
  28933. image: {
  28934. source: "./media/characters/diamond-jones/front.svg",
  28935. extra: 727/723,
  28936. bottom: 46/773
  28937. }
  28938. },
  28939. },
  28940. [
  28941. {
  28942. name: "Normal",
  28943. height: math.unit(2, "feet"),
  28944. default: true
  28945. },
  28946. ]
  28947. ))
  28948. characterMakers.push(() => makeCharacter(
  28949. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  28950. {
  28951. front: {
  28952. height: math.unit(3, "feet"),
  28953. weight: math.unit(30, "kg"),
  28954. name: "Front",
  28955. image: {
  28956. source: "./media/characters/sweet-bit/front.svg",
  28957. extra: 675 / 567,
  28958. bottom: 27.7 / 703
  28959. }
  28960. },
  28961. },
  28962. [
  28963. {
  28964. name: "Normal",
  28965. height: math.unit(3, "feet"),
  28966. default: true
  28967. },
  28968. ]
  28969. ))
  28970. characterMakers.push(() => makeCharacter(
  28971. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  28972. {
  28973. side: {
  28974. height: math.unit(9.178, "feet"),
  28975. weight: math.unit(500, "lb"),
  28976. name: "Side",
  28977. image: {
  28978. source: "./media/characters/umbrazen/side.svg",
  28979. extra: 1730 / 1473,
  28980. bottom: 34.6 / 1765
  28981. }
  28982. },
  28983. },
  28984. [
  28985. {
  28986. name: "Normal",
  28987. height: math.unit(9.178, "feet"),
  28988. default: true
  28989. },
  28990. ]
  28991. ))
  28992. characterMakers.push(() => makeCharacter(
  28993. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  28994. {
  28995. front: {
  28996. height: math.unit(10, "feet"),
  28997. weight: math.unit(750, "lb"),
  28998. name: "Front",
  28999. image: {
  29000. source: "./media/characters/arlist/front.svg",
  29001. extra: 961 / 778,
  29002. bottom: 6.2 / 986
  29003. }
  29004. },
  29005. },
  29006. [
  29007. {
  29008. name: "Normal",
  29009. height: math.unit(10, "feet"),
  29010. default: true
  29011. },
  29012. ]
  29013. ))
  29014. characterMakers.push(() => makeCharacter(
  29015. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  29016. {
  29017. front: {
  29018. height: math.unit(5 + 1 / 12, "feet"),
  29019. weight: math.unit(110, "lb"),
  29020. name: "Front",
  29021. image: {
  29022. source: "./media/characters/aradel/front.svg",
  29023. extra: 324 / 303,
  29024. bottom: 3.6 / 329.4
  29025. }
  29026. },
  29027. },
  29028. [
  29029. {
  29030. name: "Normal",
  29031. height: math.unit(5 + 1 / 12, "feet"),
  29032. default: true
  29033. },
  29034. ]
  29035. ))
  29036. characterMakers.push(() => makeCharacter(
  29037. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  29038. {
  29039. dressed: {
  29040. height: math.unit(3 + 8 / 12, "feet"),
  29041. weight: math.unit(50, "lb"),
  29042. name: "Dressed",
  29043. image: {
  29044. source: "./media/characters/serryn/dressed.svg",
  29045. extra: 1792 / 1656,
  29046. bottom: 43.5 / 1840
  29047. }
  29048. },
  29049. nude: {
  29050. height: math.unit(3 + 8 / 12, "feet"),
  29051. weight: math.unit(50, "lb"),
  29052. name: "Nude",
  29053. image: {
  29054. source: "./media/characters/serryn/nude.svg",
  29055. extra: 1792 / 1656,
  29056. bottom: 43.5 / 1840
  29057. }
  29058. },
  29059. },
  29060. [
  29061. {
  29062. name: "Normal",
  29063. height: math.unit(3 + 8 / 12, "feet"),
  29064. default: true
  29065. },
  29066. ]
  29067. ))
  29068. characterMakers.push(() => makeCharacter(
  29069. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  29070. {
  29071. front: {
  29072. height: math.unit(7 + 10 / 12, "feet"),
  29073. weight: math.unit(255, "lb"),
  29074. name: "Front",
  29075. image: {
  29076. source: "./media/characters/xavier-thyme/front.svg",
  29077. extra: 3733 / 3642,
  29078. bottom: 131 / 3869
  29079. }
  29080. },
  29081. frontRaven: {
  29082. height: math.unit(7 + 10 / 12, "feet"),
  29083. weight: math.unit(255, "lb"),
  29084. name: "Front (Raven)",
  29085. image: {
  29086. source: "./media/characters/xavier-thyme/front-raven.svg",
  29087. extra: 4385 / 3642,
  29088. bottom: 131 / 4517
  29089. }
  29090. },
  29091. },
  29092. [
  29093. {
  29094. name: "Normal",
  29095. height: math.unit(7 + 10 / 12, "feet"),
  29096. default: true
  29097. },
  29098. ]
  29099. ))
  29100. characterMakers.push(() => makeCharacter(
  29101. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  29102. {
  29103. front: {
  29104. height: math.unit(1.6, "m"),
  29105. weight: math.unit(50, "kg"),
  29106. name: "Front",
  29107. image: {
  29108. source: "./media/characters/kiki/front.svg",
  29109. extra: 4682 / 3610,
  29110. bottom: 115 / 4777
  29111. }
  29112. },
  29113. },
  29114. [
  29115. {
  29116. name: "Normal",
  29117. height: math.unit(1.6, "meters"),
  29118. default: true
  29119. },
  29120. ]
  29121. ))
  29122. characterMakers.push(() => makeCharacter(
  29123. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  29124. {
  29125. front: {
  29126. height: math.unit(50, "m"),
  29127. weight: math.unit(500, "tonnes"),
  29128. name: "Front",
  29129. image: {
  29130. source: "./media/characters/ryoko/front.svg",
  29131. extra: 4632 / 3926,
  29132. bottom: 193 / 4823
  29133. }
  29134. },
  29135. },
  29136. [
  29137. {
  29138. name: "Normal",
  29139. height: math.unit(50, "meters"),
  29140. default: true
  29141. },
  29142. ]
  29143. ))
  29144. characterMakers.push(() => makeCharacter(
  29145. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  29146. {
  29147. front: {
  29148. height: math.unit(30, "m"),
  29149. weight: math.unit(22, "tonnes"),
  29150. name: "Front",
  29151. image: {
  29152. source: "./media/characters/elio/front.svg",
  29153. extra: 4582 / 3720,
  29154. bottom: 236 / 4828
  29155. }
  29156. },
  29157. },
  29158. [
  29159. {
  29160. name: "Normal",
  29161. height: math.unit(30, "meters"),
  29162. default: true
  29163. },
  29164. ]
  29165. ))
  29166. characterMakers.push(() => makeCharacter(
  29167. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  29168. {
  29169. front: {
  29170. height: math.unit(6 + 3 / 12, "feet"),
  29171. weight: math.unit(120, "lb"),
  29172. name: "Front",
  29173. image: {
  29174. source: "./media/characters/azura/front.svg",
  29175. extra: 1149 / 1135,
  29176. bottom: 45 / 1194
  29177. }
  29178. },
  29179. frontClothed: {
  29180. height: math.unit(6 + 3 / 12, "feet"),
  29181. weight: math.unit(120, "lb"),
  29182. name: "Front (Clothed)",
  29183. image: {
  29184. source: "./media/characters/azura/front-clothed.svg",
  29185. extra: 1149 / 1135,
  29186. bottom: 45 / 1194
  29187. }
  29188. },
  29189. },
  29190. [
  29191. {
  29192. name: "Normal",
  29193. height: math.unit(6 + 3 / 12, "feet"),
  29194. default: true
  29195. },
  29196. {
  29197. name: "Macro",
  29198. height: math.unit(20 + 6 / 12, "feet")
  29199. },
  29200. {
  29201. name: "Megamacro",
  29202. height: math.unit(12, "miles")
  29203. },
  29204. {
  29205. name: "Gigamacro",
  29206. height: math.unit(10000, "miles")
  29207. },
  29208. {
  29209. name: "Teramacro",
  29210. height: math.unit(900000, "miles")
  29211. },
  29212. ]
  29213. ))
  29214. characterMakers.push(() => makeCharacter(
  29215. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  29216. {
  29217. front: {
  29218. height: math.unit(12, "feet"),
  29219. weight: math.unit(1, "ton"),
  29220. capacity: math.unit(660000, "gallons"),
  29221. name: "Front",
  29222. image: {
  29223. source: "./media/characters/zeus/front.svg",
  29224. extra: 5005 / 4717,
  29225. bottom: 363 / 5388
  29226. }
  29227. },
  29228. },
  29229. [
  29230. {
  29231. name: "Normal",
  29232. height: math.unit(12, "feet")
  29233. },
  29234. {
  29235. name: "Preferred Size",
  29236. height: math.unit(0.5, "miles"),
  29237. default: true
  29238. },
  29239. {
  29240. name: "Giga Horse",
  29241. height: math.unit(300, "miles")
  29242. },
  29243. {
  29244. name: "Riding Planets",
  29245. height: math.unit(30, "megameters")
  29246. },
  29247. {
  29248. name: "Cosmic Giant",
  29249. height: math.unit(3, "zettameters")
  29250. },
  29251. {
  29252. name: "Breeding God",
  29253. height: math.unit(9.92e22, "yottameters")
  29254. },
  29255. ]
  29256. ))
  29257. characterMakers.push(() => makeCharacter(
  29258. { name: "Fang", species: ["monster"], tags: ["feral"] },
  29259. {
  29260. side: {
  29261. height: math.unit(9, "feet"),
  29262. weight: math.unit(1500, "kg"),
  29263. name: "Side",
  29264. image: {
  29265. source: "./media/characters/fang/side.svg",
  29266. extra: 924 / 866,
  29267. bottom: 47.5 / 972.3
  29268. }
  29269. },
  29270. },
  29271. [
  29272. {
  29273. name: "Normal",
  29274. height: math.unit(9, "feet"),
  29275. default: true
  29276. },
  29277. {
  29278. name: "Macro",
  29279. height: math.unit(75 + 6 / 12, "feet")
  29280. },
  29281. {
  29282. name: "Teramacro",
  29283. height: math.unit(50000, "miles")
  29284. },
  29285. ]
  29286. ))
  29287. characterMakers.push(() => makeCharacter(
  29288. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  29289. {
  29290. front: {
  29291. height: math.unit(10, "feet"),
  29292. weight: math.unit(2, "tons"),
  29293. name: "Front",
  29294. image: {
  29295. source: "./media/characters/rekhit/front.svg",
  29296. extra: 2796 / 2590,
  29297. bottom: 225 / 3022
  29298. }
  29299. },
  29300. },
  29301. [
  29302. {
  29303. name: "Normal",
  29304. height: math.unit(10, "feet"),
  29305. default: true
  29306. },
  29307. {
  29308. name: "Macro",
  29309. height: math.unit(500, "feet")
  29310. },
  29311. ]
  29312. ))
  29313. characterMakers.push(() => makeCharacter(
  29314. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  29315. {
  29316. front: {
  29317. height: math.unit(7 + 6.451 / 12, "feet"),
  29318. weight: math.unit(310, "lb"),
  29319. name: "Front",
  29320. image: {
  29321. source: "./media/characters/dahlia-verrick/front.svg",
  29322. extra: 1488 / 1365,
  29323. bottom: 6.2 / 1495
  29324. }
  29325. },
  29326. back: {
  29327. height: math.unit(7 + 6.451 / 12, "feet"),
  29328. weight: math.unit(310, "lb"),
  29329. name: "Back",
  29330. image: {
  29331. source: "./media/characters/dahlia-verrick/back.svg",
  29332. extra: 1472 / 1351,
  29333. bottom: 5.28 / 1477
  29334. }
  29335. },
  29336. frontBusiness: {
  29337. height: math.unit(7 + 6.451 / 12, "feet"),
  29338. weight: math.unit(200, "lb"),
  29339. name: "Front (Business)",
  29340. image: {
  29341. source: "./media/characters/dahlia-verrick/front-business.svg",
  29342. extra: 1478 / 1381,
  29343. bottom: 5.5 / 1484
  29344. }
  29345. },
  29346. frontCasual: {
  29347. height: math.unit(7 + 6.451 / 12, "feet"),
  29348. weight: math.unit(200, "lb"),
  29349. name: "Front (Casual)",
  29350. image: {
  29351. source: "./media/characters/dahlia-verrick/front-casual.svg",
  29352. extra: 1478 / 1381,
  29353. bottom: 5.5 / 1484
  29354. }
  29355. },
  29356. },
  29357. [
  29358. {
  29359. name: "Travel-Sized",
  29360. height: math.unit(7.45, "inches")
  29361. },
  29362. {
  29363. name: "Normal",
  29364. height: math.unit(7 + 6.451 / 12, "feet"),
  29365. default: true
  29366. },
  29367. {
  29368. name: "Hitting the Town",
  29369. height: math.unit(37 + 8 / 12, "feet")
  29370. },
  29371. {
  29372. name: "Stomp in the Suburbs",
  29373. height: math.unit(964 + 9.728 / 12, "feet")
  29374. },
  29375. {
  29376. name: "Sit on the City",
  29377. height: math.unit(61747 + 10.592 / 12, "feet")
  29378. },
  29379. {
  29380. name: "Glomp the Globe",
  29381. height: math.unit(252919327 + 4.832 / 12, "feet")
  29382. },
  29383. ]
  29384. ))
  29385. characterMakers.push(() => makeCharacter(
  29386. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  29387. {
  29388. front: {
  29389. height: math.unit(6 + 4 / 12, "feet"),
  29390. weight: math.unit(320, "lb"),
  29391. name: "Front",
  29392. image: {
  29393. source: "./media/characters/balina-mahigan/front.svg",
  29394. extra: 447 / 428,
  29395. bottom: 18 / 466
  29396. }
  29397. },
  29398. back: {
  29399. height: math.unit(6 + 4 / 12, "feet"),
  29400. weight: math.unit(320, "lb"),
  29401. name: "Back",
  29402. image: {
  29403. source: "./media/characters/balina-mahigan/back.svg",
  29404. extra: 445 / 428,
  29405. bottom: 4.07 / 448
  29406. }
  29407. },
  29408. arm: {
  29409. height: math.unit(1.88, "feet"),
  29410. name: "Arm",
  29411. image: {
  29412. source: "./media/characters/balina-mahigan/arm.svg"
  29413. }
  29414. },
  29415. backPort: {
  29416. height: math.unit(0.685, "feet"),
  29417. name: "Back Port",
  29418. image: {
  29419. source: "./media/characters/balina-mahigan/back-port.svg"
  29420. }
  29421. },
  29422. hoofpaw: {
  29423. height: math.unit(1.41, "feet"),
  29424. name: "Hoofpaw",
  29425. image: {
  29426. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  29427. }
  29428. },
  29429. leftHandBack: {
  29430. height: math.unit(0.938, "feet"),
  29431. name: "Left Hand (Back)",
  29432. image: {
  29433. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  29434. }
  29435. },
  29436. leftHandFront: {
  29437. height: math.unit(0.938, "feet"),
  29438. name: "Left Hand (Front)",
  29439. image: {
  29440. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  29441. }
  29442. },
  29443. rightHandBack: {
  29444. height: math.unit(0.95, "feet"),
  29445. name: "Right Hand (Back)",
  29446. image: {
  29447. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  29448. }
  29449. },
  29450. rightHandFront: {
  29451. height: math.unit(0.95, "feet"),
  29452. name: "Right Hand (Front)",
  29453. image: {
  29454. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  29455. }
  29456. },
  29457. },
  29458. [
  29459. {
  29460. name: "Normal",
  29461. height: math.unit(6 + 4 / 12, "feet"),
  29462. default: true
  29463. },
  29464. ]
  29465. ))
  29466. characterMakers.push(() => makeCharacter(
  29467. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  29468. {
  29469. front: {
  29470. height: math.unit(6, "feet"),
  29471. weight: math.unit(320, "lb"),
  29472. name: "Front",
  29473. image: {
  29474. source: "./media/characters/balina-mejeri/front.svg",
  29475. extra: 517 / 488,
  29476. bottom: 44.2 / 561
  29477. }
  29478. },
  29479. },
  29480. [
  29481. {
  29482. name: "Normal",
  29483. height: math.unit(6 + 4 / 12, "feet")
  29484. },
  29485. {
  29486. name: "Business",
  29487. height: math.unit(155, "feet"),
  29488. default: true
  29489. },
  29490. ]
  29491. ))
  29492. characterMakers.push(() => makeCharacter(
  29493. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  29494. {
  29495. kneeling: {
  29496. height: math.unit(6 + 4 / 12, "feet"),
  29497. weight: math.unit(300 * 20, "lb"),
  29498. name: "Kneeling",
  29499. image: {
  29500. source: "./media/characters/balbarian/kneeling.svg",
  29501. extra: 922 / 862,
  29502. bottom: 42.4 / 965
  29503. }
  29504. },
  29505. },
  29506. [
  29507. {
  29508. name: "Normal",
  29509. height: math.unit(6 + 4 / 12, "feet")
  29510. },
  29511. {
  29512. name: "Treasured",
  29513. height: math.unit(18 + 9 / 12, "feet"),
  29514. default: true
  29515. },
  29516. {
  29517. name: "Macro",
  29518. height: math.unit(900, "feet")
  29519. },
  29520. ]
  29521. ))
  29522. characterMakers.push(() => makeCharacter(
  29523. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  29524. {
  29525. front: {
  29526. height: math.unit(6 + 4 / 12, "feet"),
  29527. weight: math.unit(325, "lb"),
  29528. name: "Front",
  29529. image: {
  29530. source: "./media/characters/balina-amarini/front.svg",
  29531. extra: 415 / 403,
  29532. bottom: 19 / 433.4
  29533. }
  29534. },
  29535. back: {
  29536. height: math.unit(6 + 4 / 12, "feet"),
  29537. weight: math.unit(325, "lb"),
  29538. name: "Back",
  29539. image: {
  29540. source: "./media/characters/balina-amarini/back.svg",
  29541. extra: 415 / 403,
  29542. bottom: 13.5 / 432
  29543. }
  29544. },
  29545. overdrive: {
  29546. height: math.unit(6 + 4 / 12, "feet"),
  29547. weight: math.unit(400, "lb"),
  29548. name: "Overdrive",
  29549. image: {
  29550. source: "./media/characters/balina-amarini/overdrive.svg",
  29551. extra: 269 / 259,
  29552. bottom: 12 / 282
  29553. }
  29554. },
  29555. },
  29556. [
  29557. {
  29558. name: "Boom",
  29559. height: math.unit(9 + 10 / 12, "feet"),
  29560. default: true
  29561. },
  29562. {
  29563. name: "Macro",
  29564. height: math.unit(280, "feet")
  29565. },
  29566. ]
  29567. ))
  29568. characterMakers.push(() => makeCharacter(
  29569. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  29570. {
  29571. goddess: {
  29572. height: math.unit(600, "feet"),
  29573. weight: math.unit(2000000, "tons"),
  29574. name: "Goddess",
  29575. image: {
  29576. source: "./media/characters/lady-kubwa/goddess.svg",
  29577. extra: 1240.5 / 1223,
  29578. bottom: 22 / 1263
  29579. }
  29580. },
  29581. goddesser: {
  29582. height: math.unit(900, "feet"),
  29583. weight: math.unit(20000000, "lb"),
  29584. name: "Goddess-er",
  29585. image: {
  29586. source: "./media/characters/lady-kubwa/goddess-er.svg",
  29587. extra: 899 / 888,
  29588. bottom: 12.6 / 912
  29589. }
  29590. },
  29591. },
  29592. [
  29593. {
  29594. name: "Macro",
  29595. height: math.unit(600, "feet"),
  29596. default: true
  29597. },
  29598. {
  29599. name: "Megamacro",
  29600. height: math.unit(250, "miles")
  29601. },
  29602. ]
  29603. ))
  29604. characterMakers.push(() => makeCharacter(
  29605. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  29606. {
  29607. front: {
  29608. height: math.unit(7 + 7 / 12, "feet"),
  29609. weight: math.unit(250, "lb"),
  29610. name: "Front",
  29611. image: {
  29612. source: "./media/characters/tala-grovehorn/front.svg",
  29613. extra: 2636 / 2525,
  29614. bottom: 147 / 2781
  29615. }
  29616. },
  29617. back: {
  29618. height: math.unit(7 + 7 / 12, "feet"),
  29619. weight: math.unit(250, "lb"),
  29620. name: "Back",
  29621. image: {
  29622. source: "./media/characters/tala-grovehorn/back.svg",
  29623. extra: 2635 / 2539,
  29624. bottom: 100 / 2732.8
  29625. }
  29626. },
  29627. mouth: {
  29628. height: math.unit(1.15, "feet"),
  29629. name: "Mouth",
  29630. image: {
  29631. source: "./media/characters/tala-grovehorn/mouth.svg"
  29632. }
  29633. },
  29634. dick: {
  29635. height: math.unit(2.36, "feet"),
  29636. name: "Dick",
  29637. image: {
  29638. source: "./media/characters/tala-grovehorn/dick.svg"
  29639. }
  29640. },
  29641. slit: {
  29642. height: math.unit(0.61, "feet"),
  29643. name: "Slit",
  29644. image: {
  29645. source: "./media/characters/tala-grovehorn/slit.svg"
  29646. }
  29647. },
  29648. },
  29649. [
  29650. ]
  29651. ))
  29652. characterMakers.push(() => makeCharacter(
  29653. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  29654. {
  29655. front: {
  29656. height: math.unit(7 + 7 / 12, "feet"),
  29657. weight: math.unit(225, "lb"),
  29658. name: "Front",
  29659. image: {
  29660. source: "./media/characters/epona/front.svg",
  29661. extra: 2445 / 2290,
  29662. bottom: 251 / 2696
  29663. }
  29664. },
  29665. back: {
  29666. height: math.unit(7 + 7 / 12, "feet"),
  29667. weight: math.unit(225, "lb"),
  29668. name: "Back",
  29669. image: {
  29670. source: "./media/characters/epona/back.svg",
  29671. extra: 2546 / 2408,
  29672. bottom: 44 / 2589
  29673. }
  29674. },
  29675. genitals: {
  29676. height: math.unit(1.5, "feet"),
  29677. name: "Genitals",
  29678. image: {
  29679. source: "./media/characters/epona/genitals.svg"
  29680. }
  29681. },
  29682. },
  29683. [
  29684. {
  29685. name: "Normal",
  29686. height: math.unit(7 + 7 / 12, "feet"),
  29687. default: true
  29688. },
  29689. ]
  29690. ))
  29691. characterMakers.push(() => makeCharacter(
  29692. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  29693. {
  29694. front: {
  29695. height: math.unit(7, "feet"),
  29696. weight: math.unit(518, "lb"),
  29697. name: "Front",
  29698. image: {
  29699. source: "./media/characters/avia-bloodbourn/front.svg",
  29700. extra: 1466 / 1350,
  29701. bottom: 65 / 1527
  29702. }
  29703. },
  29704. },
  29705. [
  29706. ]
  29707. ))
  29708. characterMakers.push(() => makeCharacter(
  29709. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  29710. {
  29711. front: {
  29712. height: math.unit(9.35, "feet"),
  29713. weight: math.unit(600, "lb"),
  29714. name: "Front",
  29715. image: {
  29716. source: "./media/characters/amera/front.svg",
  29717. extra: 891 / 818,
  29718. bottom: 30 / 922.7
  29719. }
  29720. },
  29721. back: {
  29722. height: math.unit(9.35, "feet"),
  29723. weight: math.unit(600, "lb"),
  29724. name: "Back",
  29725. image: {
  29726. source: "./media/characters/amera/back.svg",
  29727. extra: 876 / 824,
  29728. bottom: 6.8 / 884
  29729. }
  29730. },
  29731. dick: {
  29732. height: math.unit(2.14, "feet"),
  29733. name: "Dick",
  29734. image: {
  29735. source: "./media/characters/amera/dick.svg"
  29736. }
  29737. },
  29738. },
  29739. [
  29740. {
  29741. name: "Normal",
  29742. height: math.unit(9.35, "feet"),
  29743. default: true
  29744. },
  29745. ]
  29746. ))
  29747. characterMakers.push(() => makeCharacter(
  29748. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  29749. {
  29750. kneeling: {
  29751. height: math.unit(3 + 4 / 12, "feet"),
  29752. weight: math.unit(90, "lb"),
  29753. name: "Kneeling",
  29754. image: {
  29755. source: "./media/characters/rosewen/kneeling.svg",
  29756. extra: 1835 / 1571,
  29757. bottom: 27.7 / 1862
  29758. }
  29759. },
  29760. },
  29761. [
  29762. {
  29763. name: "Normal",
  29764. height: math.unit(3 + 4 / 12, "feet"),
  29765. default: true
  29766. },
  29767. ]
  29768. ))
  29769. characterMakers.push(() => makeCharacter(
  29770. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  29771. {
  29772. front: {
  29773. height: math.unit(5 + 10 / 12, "feet"),
  29774. weight: math.unit(200, "lb"),
  29775. name: "Front",
  29776. image: {
  29777. source: "./media/characters/sabah/front.svg",
  29778. extra: 849 / 763,
  29779. bottom: 33.9 / 881
  29780. }
  29781. },
  29782. },
  29783. [
  29784. {
  29785. name: "Normal",
  29786. height: math.unit(5 + 10 / 12, "feet"),
  29787. default: true
  29788. },
  29789. ]
  29790. ))
  29791. characterMakers.push(() => makeCharacter(
  29792. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  29793. {
  29794. front: {
  29795. height: math.unit(3 + 5 / 12, "feet"),
  29796. weight: math.unit(40, "kg"),
  29797. name: "Front",
  29798. image: {
  29799. source: "./media/characters/purple-flame/front.svg",
  29800. extra: 1577 / 1412,
  29801. bottom: 97 / 1694
  29802. }
  29803. },
  29804. frontDressed: {
  29805. height: math.unit(3 + 5 / 12, "feet"),
  29806. weight: math.unit(40, "kg"),
  29807. name: "Front (Dressed)",
  29808. image: {
  29809. source: "./media/characters/purple-flame/front-dressed.svg",
  29810. extra: 1577 / 1412,
  29811. bottom: 97 / 1694
  29812. }
  29813. },
  29814. headphones: {
  29815. height: math.unit(0.85, "feet"),
  29816. name: "Headphones",
  29817. image: {
  29818. source: "./media/characters/purple-flame/headphones.svg"
  29819. }
  29820. },
  29821. },
  29822. [
  29823. {
  29824. name: "Really Small",
  29825. height: math.unit(5, "cm")
  29826. },
  29827. {
  29828. name: "Micro",
  29829. height: math.unit(1 + 5 / 12, "feet")
  29830. },
  29831. {
  29832. name: "Normal",
  29833. height: math.unit(3 + 5 / 12, "feet"),
  29834. default: true
  29835. },
  29836. {
  29837. name: "Minimacro",
  29838. height: math.unit(125, "feet")
  29839. },
  29840. {
  29841. name: "Macro",
  29842. height: math.unit(0.5, "miles")
  29843. },
  29844. {
  29845. name: "Megamacro",
  29846. height: math.unit(50, "miles")
  29847. },
  29848. {
  29849. name: "Gigantic",
  29850. height: math.unit(750, "miles")
  29851. },
  29852. {
  29853. name: "Planetary",
  29854. height: math.unit(15000, "miles")
  29855. },
  29856. ]
  29857. ))
  29858. characterMakers.push(() => makeCharacter(
  29859. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  29860. {
  29861. front: {
  29862. height: math.unit(14, "feet"),
  29863. weight: math.unit(959, "lb"),
  29864. name: "Front",
  29865. image: {
  29866. source: "./media/characters/arsenal/front.svg",
  29867. extra: 2357 / 2157,
  29868. bottom: 93 / 2458
  29869. }
  29870. },
  29871. },
  29872. [
  29873. {
  29874. name: "Normal",
  29875. height: math.unit(14, "feet"),
  29876. default: true
  29877. },
  29878. ]
  29879. ))
  29880. characterMakers.push(() => makeCharacter(
  29881. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  29882. {
  29883. front: {
  29884. height: math.unit(6, "feet"),
  29885. weight: math.unit(150, "lb"),
  29886. name: "Front",
  29887. image: {
  29888. source: "./media/characters/adira/front.svg",
  29889. extra: 2121/2013,
  29890. bottom: 206/2327
  29891. }
  29892. },
  29893. },
  29894. [
  29895. {
  29896. name: "Micro",
  29897. height: math.unit(4, "inches"),
  29898. default: true
  29899. },
  29900. {
  29901. name: "Macro",
  29902. height: math.unit(50, "feet")
  29903. },
  29904. ]
  29905. ))
  29906. characterMakers.push(() => makeCharacter(
  29907. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  29908. {
  29909. front: {
  29910. height: math.unit(16, "feet"),
  29911. weight: math.unit(1000, "lb"),
  29912. name: "Front",
  29913. image: {
  29914. source: "./media/characters/grim/front.svg",
  29915. extra: 622 / 614,
  29916. bottom: 18.1 / 642
  29917. }
  29918. },
  29919. back: {
  29920. height: math.unit(16, "feet"),
  29921. weight: math.unit(1000, "lb"),
  29922. name: "Back",
  29923. image: {
  29924. source: "./media/characters/grim/back.svg",
  29925. extra: 610.6 / 602,
  29926. bottom: 40.8 / 652
  29927. }
  29928. },
  29929. hunched: {
  29930. height: math.unit(9.75, "feet"),
  29931. weight: math.unit(1000, "lb"),
  29932. name: "Hunched",
  29933. image: {
  29934. source: "./media/characters/grim/hunched.svg",
  29935. extra: 304 / 297,
  29936. bottom: 35.4 / 394
  29937. }
  29938. },
  29939. },
  29940. [
  29941. {
  29942. name: "Normal",
  29943. height: math.unit(16, "feet"),
  29944. default: true
  29945. },
  29946. ]
  29947. ))
  29948. characterMakers.push(() => makeCharacter(
  29949. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  29950. {
  29951. front: {
  29952. height: math.unit(2.3, "meters"),
  29953. weight: math.unit(300, "lb"),
  29954. name: "Front",
  29955. image: {
  29956. source: "./media/characters/sinja/front-sfw.svg",
  29957. extra: 1393 / 1294,
  29958. bottom: 70 / 1463
  29959. }
  29960. },
  29961. frontNsfw: {
  29962. height: math.unit(2.3, "meters"),
  29963. weight: math.unit(300, "lb"),
  29964. name: "Front (NSFW)",
  29965. image: {
  29966. source: "./media/characters/sinja/front-nsfw.svg",
  29967. extra: 1393 / 1294,
  29968. bottom: 70 / 1463
  29969. }
  29970. },
  29971. back: {
  29972. height: math.unit(2.3, "meters"),
  29973. weight: math.unit(300, "lb"),
  29974. name: "Back",
  29975. image: {
  29976. source: "./media/characters/sinja/back.svg",
  29977. extra: 1393 / 1294,
  29978. bottom: 70 / 1463
  29979. }
  29980. },
  29981. head: {
  29982. height: math.unit(1.771, "feet"),
  29983. name: "Head",
  29984. image: {
  29985. source: "./media/characters/sinja/head.svg"
  29986. }
  29987. },
  29988. slit: {
  29989. height: math.unit(0.8, "feet"),
  29990. name: "Slit",
  29991. image: {
  29992. source: "./media/characters/sinja/slit.svg"
  29993. }
  29994. },
  29995. },
  29996. [
  29997. {
  29998. name: "Normal",
  29999. height: math.unit(2.3, "meters")
  30000. },
  30001. {
  30002. name: "Macro",
  30003. height: math.unit(91, "meters"),
  30004. default: true
  30005. },
  30006. {
  30007. name: "Megamacro",
  30008. height: math.unit(91440, "meters")
  30009. },
  30010. {
  30011. name: "Gigamacro",
  30012. height: math.unit(60960000, "meters")
  30013. },
  30014. {
  30015. name: "Teramacro",
  30016. height: math.unit(9144000000, "meters")
  30017. },
  30018. ]
  30019. ))
  30020. characterMakers.push(() => makeCharacter(
  30021. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  30022. {
  30023. front: {
  30024. height: math.unit(1.7, "meters"),
  30025. weight: math.unit(130, "lb"),
  30026. name: "Front",
  30027. image: {
  30028. source: "./media/characters/kyu/front.svg",
  30029. extra: 415 / 395,
  30030. bottom: 5 / 420
  30031. }
  30032. },
  30033. head: {
  30034. height: math.unit(1.75, "feet"),
  30035. name: "Head",
  30036. image: {
  30037. source: "./media/characters/kyu/head.svg"
  30038. }
  30039. },
  30040. foot: {
  30041. height: math.unit(0.81, "feet"),
  30042. name: "Foot",
  30043. image: {
  30044. source: "./media/characters/kyu/foot.svg"
  30045. }
  30046. },
  30047. },
  30048. [
  30049. {
  30050. name: "Normal",
  30051. height: math.unit(1.7, "meters")
  30052. },
  30053. {
  30054. name: "Macro",
  30055. height: math.unit(131, "feet"),
  30056. default: true
  30057. },
  30058. {
  30059. name: "Megamacro",
  30060. height: math.unit(91440, "meters")
  30061. },
  30062. {
  30063. name: "Gigamacro",
  30064. height: math.unit(60960000, "meters")
  30065. },
  30066. {
  30067. name: "Teramacro",
  30068. height: math.unit(9144000000, "meters")
  30069. },
  30070. ]
  30071. ))
  30072. characterMakers.push(() => makeCharacter(
  30073. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  30074. {
  30075. front: {
  30076. height: math.unit(7 + 1 / 12, "feet"),
  30077. weight: math.unit(250, "lb"),
  30078. name: "Front",
  30079. image: {
  30080. source: "./media/characters/joey/front.svg",
  30081. extra: 1791 / 1537,
  30082. bottom: 28 / 1816
  30083. }
  30084. },
  30085. },
  30086. [
  30087. {
  30088. name: "Micro",
  30089. height: math.unit(3, "inches")
  30090. },
  30091. {
  30092. name: "Normal",
  30093. height: math.unit(7 + 1 / 12, "feet"),
  30094. default: true
  30095. },
  30096. ]
  30097. ))
  30098. characterMakers.push(() => makeCharacter(
  30099. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  30100. {
  30101. front: {
  30102. height: math.unit(165, "cm"),
  30103. weight: math.unit(140, "lb"),
  30104. name: "Front",
  30105. image: {
  30106. source: "./media/characters/sam-evans/front.svg",
  30107. extra: 3417 / 3230,
  30108. bottom: 41.3 / 3417
  30109. }
  30110. },
  30111. frontSixTails: {
  30112. height: math.unit(165, "cm"),
  30113. weight: math.unit(140, "lb"),
  30114. name: "Front-six-tails",
  30115. image: {
  30116. source: "./media/characters/sam-evans/front-six-tails.svg",
  30117. extra: 3417 / 3230,
  30118. bottom: 41.3 / 3417
  30119. }
  30120. },
  30121. back: {
  30122. height: math.unit(165, "cm"),
  30123. weight: math.unit(140, "lb"),
  30124. name: "Back",
  30125. image: {
  30126. source: "./media/characters/sam-evans/back.svg",
  30127. extra: 3227 / 3032,
  30128. bottom: 6.8 / 3234
  30129. }
  30130. },
  30131. face: {
  30132. height: math.unit(0.68, "feet"),
  30133. name: "Face",
  30134. image: {
  30135. source: "./media/characters/sam-evans/face.svg"
  30136. }
  30137. },
  30138. },
  30139. [
  30140. {
  30141. name: "Normal",
  30142. height: math.unit(165, "cm"),
  30143. default: true
  30144. },
  30145. {
  30146. name: "Macro",
  30147. height: math.unit(100, "meters")
  30148. },
  30149. {
  30150. name: "Macro+",
  30151. height: math.unit(800, "meters")
  30152. },
  30153. {
  30154. name: "Macro++",
  30155. height: math.unit(3, "km")
  30156. },
  30157. {
  30158. name: "Macro+++",
  30159. height: math.unit(30, "km")
  30160. },
  30161. ]
  30162. ))
  30163. characterMakers.push(() => makeCharacter(
  30164. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  30165. {
  30166. front: {
  30167. height: math.unit(10, "feet"),
  30168. weight: math.unit(750, "lb"),
  30169. name: "Front",
  30170. image: {
  30171. source: "./media/characters/juliet-a/front.svg",
  30172. extra: 1766 / 1720,
  30173. bottom: 43 / 1809
  30174. }
  30175. },
  30176. back: {
  30177. height: math.unit(10, "feet"),
  30178. weight: math.unit(750, "lb"),
  30179. name: "Back",
  30180. image: {
  30181. source: "./media/characters/juliet-a/back.svg",
  30182. extra: 1781 / 1734,
  30183. bottom: 35 / 1810,
  30184. }
  30185. },
  30186. },
  30187. [
  30188. {
  30189. name: "Normal",
  30190. height: math.unit(10, "feet"),
  30191. default: true
  30192. },
  30193. {
  30194. name: "Dragon Form",
  30195. height: math.unit(250, "feet")
  30196. },
  30197. {
  30198. name: "Macro",
  30199. height: math.unit(1000, "feet")
  30200. },
  30201. {
  30202. name: "Megamacro",
  30203. height: math.unit(10000, "feet")
  30204. }
  30205. ]
  30206. ))
  30207. characterMakers.push(() => makeCharacter(
  30208. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  30209. {
  30210. regular: {
  30211. height: math.unit(7 + 3 / 12, "feet"),
  30212. weight: math.unit(260, "lb"),
  30213. name: "Regular",
  30214. image: {
  30215. source: "./media/characters/wild/regular.svg",
  30216. extra: 97.45 / 92,
  30217. bottom: 6.8 / 104.3
  30218. }
  30219. },
  30220. biggums: {
  30221. height: math.unit(8 + 6 / 12, "feet"),
  30222. weight: math.unit(425, "lb"),
  30223. name: "Biggums",
  30224. image: {
  30225. source: "./media/characters/wild/biggums.svg",
  30226. extra: 97.45 / 92,
  30227. bottom: 7.5 / 132.34
  30228. }
  30229. },
  30230. mawRegular: {
  30231. height: math.unit(1.24, "feet"),
  30232. name: "Maw (Regular)",
  30233. image: {
  30234. source: "./media/characters/wild/maw.svg"
  30235. }
  30236. },
  30237. mawBiggums: {
  30238. height: math.unit(1.47, "feet"),
  30239. name: "Maw (Biggums)",
  30240. image: {
  30241. source: "./media/characters/wild/maw.svg"
  30242. }
  30243. },
  30244. },
  30245. [
  30246. {
  30247. name: "Normal",
  30248. height: math.unit(7 + 3 / 12, "feet"),
  30249. default: true
  30250. },
  30251. ]
  30252. ))
  30253. characterMakers.push(() => makeCharacter(
  30254. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  30255. {
  30256. front: {
  30257. height: math.unit(2.5, "meters"),
  30258. weight: math.unit(200, "kg"),
  30259. name: "Front",
  30260. image: {
  30261. source: "./media/characters/vidar/front.svg",
  30262. extra: 2994 / 2795,
  30263. bottom: 56 / 3061
  30264. }
  30265. },
  30266. back: {
  30267. height: math.unit(2.5, "meters"),
  30268. weight: math.unit(200, "kg"),
  30269. name: "Back",
  30270. image: {
  30271. source: "./media/characters/vidar/back.svg",
  30272. extra: 3131 / 2928,
  30273. bottom: 13.5 / 3141.5
  30274. }
  30275. },
  30276. feral: {
  30277. height: math.unit(2.5, "meters"),
  30278. weight: math.unit(2000, "kg"),
  30279. name: "Feral",
  30280. image: {
  30281. source: "./media/characters/vidar/feral.svg",
  30282. extra: 2790 / 1765,
  30283. bottom: 6 / 2796
  30284. }
  30285. },
  30286. },
  30287. [
  30288. {
  30289. name: "Normal",
  30290. height: math.unit(2.5, "meters"),
  30291. default: true
  30292. },
  30293. {
  30294. name: "Macro",
  30295. height: math.unit(100, "meters")
  30296. },
  30297. ]
  30298. ))
  30299. characterMakers.push(() => makeCharacter(
  30300. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  30301. {
  30302. front: {
  30303. height: math.unit(5 + 9 / 12, "feet"),
  30304. weight: math.unit(120, "lb"),
  30305. name: "Front",
  30306. image: {
  30307. source: "./media/characters/ash/front.svg",
  30308. extra: 2189 / 1961,
  30309. bottom: 5.2 / 2194
  30310. }
  30311. },
  30312. },
  30313. [
  30314. {
  30315. name: "Normal",
  30316. height: math.unit(5 + 9 / 12, "feet"),
  30317. default: true
  30318. },
  30319. ]
  30320. ))
  30321. characterMakers.push(() => makeCharacter(
  30322. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  30323. {
  30324. front: {
  30325. height: math.unit(9, "feet"),
  30326. weight: math.unit(10000, "lb"),
  30327. name: "Front",
  30328. image: {
  30329. source: "./media/characters/gygabite/front.svg",
  30330. bottom: 31.7 / 537.8,
  30331. extra: 505 / 370
  30332. }
  30333. },
  30334. },
  30335. [
  30336. {
  30337. name: "Normal",
  30338. height: math.unit(9, "feet"),
  30339. default: true
  30340. },
  30341. ]
  30342. ))
  30343. characterMakers.push(() => makeCharacter(
  30344. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  30345. {
  30346. front: {
  30347. height: math.unit(12, "feet"),
  30348. weight: math.unit(4000, "lb"),
  30349. name: "Front",
  30350. image: {
  30351. source: "./media/characters/p0tat0/front.svg",
  30352. extra: 1065 / 921,
  30353. bottom: 55.7 / 1121.25
  30354. }
  30355. },
  30356. },
  30357. [
  30358. {
  30359. name: "Normal",
  30360. height: math.unit(12, "feet"),
  30361. default: true
  30362. },
  30363. ]
  30364. ))
  30365. characterMakers.push(() => makeCharacter(
  30366. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  30367. {
  30368. side: {
  30369. height: math.unit(6.5, "feet"),
  30370. weight: math.unit(800, "lb"),
  30371. name: "Side",
  30372. image: {
  30373. source: "./media/characters/dusk/side.svg",
  30374. extra: 615 / 373,
  30375. bottom: 53 / 664
  30376. }
  30377. },
  30378. sitting: {
  30379. height: math.unit(7, "feet"),
  30380. weight: math.unit(800, "lb"),
  30381. name: "Sitting",
  30382. image: {
  30383. source: "./media/characters/dusk/sitting.svg",
  30384. extra: 753 / 425,
  30385. bottom: 33 / 774
  30386. }
  30387. },
  30388. head: {
  30389. height: math.unit(6.1, "feet"),
  30390. name: "Head",
  30391. image: {
  30392. source: "./media/characters/dusk/head.svg"
  30393. }
  30394. },
  30395. },
  30396. [
  30397. {
  30398. name: "Normal",
  30399. height: math.unit(7, "feet"),
  30400. default: true
  30401. },
  30402. ]
  30403. ))
  30404. characterMakers.push(() => makeCharacter(
  30405. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  30406. {
  30407. front: {
  30408. height: math.unit(15, "feet"),
  30409. weight: math.unit(7000, "lb"),
  30410. name: "Front",
  30411. image: {
  30412. source: "./media/characters/jay-direwolf/front.svg",
  30413. extra: 1810 / 1732,
  30414. bottom: 66 / 1892
  30415. }
  30416. },
  30417. },
  30418. [
  30419. {
  30420. name: "Normal",
  30421. height: math.unit(15, "feet"),
  30422. default: true
  30423. },
  30424. ]
  30425. ))
  30426. characterMakers.push(() => makeCharacter(
  30427. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  30428. {
  30429. front: {
  30430. height: math.unit(4 + 9 / 12, "feet"),
  30431. weight: math.unit(130, "lb"),
  30432. name: "Front",
  30433. image: {
  30434. source: "./media/characters/anchovie/front.svg",
  30435. extra: 382 / 350,
  30436. bottom: 25 / 409
  30437. }
  30438. },
  30439. back: {
  30440. height: math.unit(4 + 9 / 12, "feet"),
  30441. weight: math.unit(130, "lb"),
  30442. name: "Back",
  30443. image: {
  30444. source: "./media/characters/anchovie/back.svg",
  30445. extra: 385 / 352,
  30446. bottom: 16.6 / 402
  30447. }
  30448. },
  30449. frontDressed: {
  30450. height: math.unit(4 + 9 / 12, "feet"),
  30451. weight: math.unit(130, "lb"),
  30452. name: "Front (Dressed)",
  30453. image: {
  30454. source: "./media/characters/anchovie/front-dressed.svg",
  30455. extra: 382 / 350,
  30456. bottom: 25 / 409
  30457. }
  30458. },
  30459. backDressed: {
  30460. height: math.unit(4 + 9 / 12, "feet"),
  30461. weight: math.unit(130, "lb"),
  30462. name: "Back (Dressed)",
  30463. image: {
  30464. source: "./media/characters/anchovie/back-dressed.svg",
  30465. extra: 385 / 352,
  30466. bottom: 16.6 / 402
  30467. }
  30468. },
  30469. },
  30470. [
  30471. {
  30472. name: "Micro",
  30473. height: math.unit(6.4, "inches")
  30474. },
  30475. {
  30476. name: "Normal",
  30477. height: math.unit(4 + 9 / 12, "feet"),
  30478. default: true
  30479. },
  30480. ]
  30481. ))
  30482. characterMakers.push(() => makeCharacter(
  30483. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  30484. {
  30485. front: {
  30486. height: math.unit(2, "meters"),
  30487. weight: math.unit(180, "lb"),
  30488. name: "Front",
  30489. image: {
  30490. source: "./media/characters/acidrenamon/front.svg",
  30491. extra: 987 / 890,
  30492. bottom: 22.8 / 1009
  30493. }
  30494. },
  30495. back: {
  30496. height: math.unit(2, "meters"),
  30497. weight: math.unit(180, "lb"),
  30498. name: "Back",
  30499. image: {
  30500. source: "./media/characters/acidrenamon/back.svg",
  30501. extra: 983 / 891,
  30502. bottom: 8.4 / 992
  30503. }
  30504. },
  30505. head: {
  30506. height: math.unit(1.92, "feet"),
  30507. name: "Head",
  30508. image: {
  30509. source: "./media/characters/acidrenamon/head.svg"
  30510. }
  30511. },
  30512. rump: {
  30513. height: math.unit(1.72, "feet"),
  30514. name: "Rump",
  30515. image: {
  30516. source: "./media/characters/acidrenamon/rump.svg"
  30517. }
  30518. },
  30519. tail: {
  30520. height: math.unit(4.2, "feet"),
  30521. name: "Tail",
  30522. image: {
  30523. source: "./media/characters/acidrenamon/tail.svg"
  30524. }
  30525. },
  30526. },
  30527. [
  30528. {
  30529. name: "Normal",
  30530. height: math.unit(2, "meters"),
  30531. default: true
  30532. },
  30533. {
  30534. name: "Minimacro",
  30535. height: math.unit(7, "meters")
  30536. },
  30537. {
  30538. name: "Macro",
  30539. height: math.unit(200, "meters")
  30540. },
  30541. {
  30542. name: "Gigamacro",
  30543. height: math.unit(0.2, "earths")
  30544. },
  30545. ]
  30546. ))
  30547. characterMakers.push(() => makeCharacter(
  30548. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  30549. {
  30550. front: {
  30551. height: math.unit(152, "feet"),
  30552. name: "Front",
  30553. image: {
  30554. source: "./media/characters/kenzie-lee/front.svg",
  30555. extra: 1869/1774,
  30556. bottom: 128/1997
  30557. }
  30558. },
  30559. side: {
  30560. height: math.unit(86, "feet"),
  30561. name: "Side",
  30562. image: {
  30563. source: "./media/characters/kenzie-lee/side.svg",
  30564. extra: 930/815,
  30565. bottom: 177/1107
  30566. }
  30567. },
  30568. paw: {
  30569. height: math.unit(15, "feet"),
  30570. name: "Paw",
  30571. image: {
  30572. source: "./media/characters/kenzie-lee/paw.svg"
  30573. }
  30574. },
  30575. },
  30576. [
  30577. {
  30578. name: "Kenzie Flea",
  30579. height: math.unit(2, "mm"),
  30580. default: true
  30581. },
  30582. {
  30583. name: "Micro",
  30584. height: math.unit(2, "inches")
  30585. },
  30586. {
  30587. name: "Normal",
  30588. height: math.unit(152, "feet")
  30589. },
  30590. {
  30591. name: "Megamacro",
  30592. height: math.unit(7, "miles")
  30593. },
  30594. {
  30595. name: "Gigamacro",
  30596. height: math.unit(8000, "miles")
  30597. },
  30598. ]
  30599. ))
  30600. characterMakers.push(() => makeCharacter(
  30601. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  30602. {
  30603. front: {
  30604. height: math.unit(6, "feet"),
  30605. name: "Front",
  30606. image: {
  30607. source: "./media/characters/withers/front.svg",
  30608. extra: 1935/1760,
  30609. bottom: 72/2007
  30610. }
  30611. },
  30612. back: {
  30613. height: math.unit(6, "feet"),
  30614. name: "Back",
  30615. image: {
  30616. source: "./media/characters/withers/back.svg",
  30617. extra: 1944/1792,
  30618. bottom: 12/1956
  30619. }
  30620. },
  30621. dressed: {
  30622. height: math.unit(6, "feet"),
  30623. name: "Dressed",
  30624. image: {
  30625. source: "./media/characters/withers/dressed.svg",
  30626. extra: 1937/1765,
  30627. bottom: 73/2010
  30628. }
  30629. },
  30630. phase1: {
  30631. height: math.unit(1.1, "feet"),
  30632. name: "Phase 1",
  30633. image: {
  30634. source: "./media/characters/withers/phase-1.svg",
  30635. extra: 1885/1232,
  30636. bottom: 0/1885
  30637. }
  30638. },
  30639. phase2: {
  30640. height: math.unit(1.05, "feet"),
  30641. name: "Phase 2",
  30642. image: {
  30643. source: "./media/characters/withers/phase-2.svg",
  30644. extra: 1792/1090,
  30645. bottom: 0/1792
  30646. }
  30647. },
  30648. partyWipe: {
  30649. height: math.unit(1.1, "feet"),
  30650. name: "Party Wipe",
  30651. image: {
  30652. source: "./media/characters/withers/party-wipe.svg",
  30653. extra: 1864/1207,
  30654. bottom: 0/1864
  30655. }
  30656. },
  30657. },
  30658. [
  30659. {
  30660. name: "Macro",
  30661. height: math.unit(167, "feet"),
  30662. default: true
  30663. },
  30664. {
  30665. name: "Megamacro",
  30666. height: math.unit(15, "miles")
  30667. }
  30668. ]
  30669. ))
  30670. characterMakers.push(() => makeCharacter(
  30671. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  30672. {
  30673. front: {
  30674. height: math.unit(6 + 7 / 12, "feet"),
  30675. weight: math.unit(250, "lb"),
  30676. name: "Front",
  30677. image: {
  30678. source: "./media/characters/nemoskii/front.svg",
  30679. extra: 2270 / 1734,
  30680. bottom: 86 / 2354
  30681. }
  30682. },
  30683. back: {
  30684. height: math.unit(6 + 7 / 12, "feet"),
  30685. weight: math.unit(250, "lb"),
  30686. name: "Back",
  30687. image: {
  30688. source: "./media/characters/nemoskii/back.svg",
  30689. extra: 1845 / 1788,
  30690. bottom: 10.5 / 1852
  30691. }
  30692. },
  30693. head: {
  30694. height: math.unit(1.31, "feet"),
  30695. name: "Head",
  30696. image: {
  30697. source: "./media/characters/nemoskii/head.svg"
  30698. }
  30699. },
  30700. },
  30701. [
  30702. {
  30703. name: "Micro",
  30704. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  30705. },
  30706. {
  30707. name: "Normal",
  30708. height: math.unit(6 + 7 / 12, "feet"),
  30709. default: true
  30710. },
  30711. {
  30712. name: "Macro",
  30713. height: math.unit((6 + 7 / 12) * 150, "feet")
  30714. },
  30715. {
  30716. name: "Macro+",
  30717. height: math.unit((6 + 7 / 12) * 500, "feet")
  30718. },
  30719. {
  30720. name: "Megamacro",
  30721. height: math.unit((6 + 7 / 12) * 100000, "feet")
  30722. },
  30723. ]
  30724. ))
  30725. characterMakers.push(() => makeCharacter(
  30726. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  30727. {
  30728. front: {
  30729. height: math.unit(1, "mile"),
  30730. weight: math.unit(265261.9, "lb"),
  30731. name: "Front",
  30732. image: {
  30733. source: "./media/characters/shui/front.svg",
  30734. extra: 1633 / 1564,
  30735. bottom: 91.5 / 1726
  30736. }
  30737. },
  30738. },
  30739. [
  30740. {
  30741. name: "Macro",
  30742. height: math.unit(1, "mile"),
  30743. default: true
  30744. },
  30745. ]
  30746. ))
  30747. characterMakers.push(() => makeCharacter(
  30748. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  30749. {
  30750. front: {
  30751. height: math.unit(12 + 6 / 12, "feet"),
  30752. weight: math.unit(1342, "lb"),
  30753. name: "Front",
  30754. image: {
  30755. source: "./media/characters/arokh-takakura/front.svg",
  30756. extra: 1089 / 1043,
  30757. bottom: 77.4 / 1176.7
  30758. }
  30759. },
  30760. back: {
  30761. height: math.unit(12 + 6 / 12, "feet"),
  30762. weight: math.unit(1342, "lb"),
  30763. name: "Back",
  30764. image: {
  30765. source: "./media/characters/arokh-takakura/back.svg",
  30766. extra: 1046 / 1019,
  30767. bottom: 102 / 1150
  30768. }
  30769. },
  30770. },
  30771. [
  30772. {
  30773. name: "Big",
  30774. height: math.unit(12 + 6 / 12, "feet"),
  30775. default: true
  30776. },
  30777. ]
  30778. ))
  30779. characterMakers.push(() => makeCharacter(
  30780. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  30781. {
  30782. front: {
  30783. height: math.unit(5 + 6 / 12, "feet"),
  30784. weight: math.unit(150, "lb"),
  30785. name: "Front",
  30786. image: {
  30787. source: "./media/characters/theo/front.svg",
  30788. extra: 1184 / 1131,
  30789. bottom: 7.4 / 1191
  30790. }
  30791. },
  30792. },
  30793. [
  30794. {
  30795. name: "Micro",
  30796. height: math.unit(5, "inches")
  30797. },
  30798. {
  30799. name: "Normal",
  30800. height: math.unit(5 + 6 / 12, "feet"),
  30801. default: true
  30802. },
  30803. ]
  30804. ))
  30805. characterMakers.push(() => makeCharacter(
  30806. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  30807. {
  30808. front: {
  30809. height: math.unit(5 + 9 / 12, "feet"),
  30810. weight: math.unit(130, "lb"),
  30811. name: "Front",
  30812. image: {
  30813. source: "./media/characters/cecelia-swift/front.svg",
  30814. extra: 502 / 484,
  30815. bottom: 23 / 523
  30816. }
  30817. },
  30818. back: {
  30819. height: math.unit(5 + 9 / 12, "feet"),
  30820. weight: math.unit(130, "lb"),
  30821. name: "Back",
  30822. image: {
  30823. source: "./media/characters/cecelia-swift/back.svg",
  30824. extra: 499 / 485,
  30825. bottom: 12 / 511
  30826. }
  30827. },
  30828. head: {
  30829. height: math.unit(0.90, "feet"),
  30830. name: "Head",
  30831. image: {
  30832. source: "./media/characters/cecelia-swift/head.svg"
  30833. }
  30834. },
  30835. rump: {
  30836. height: math.unit(1.75, "feet"),
  30837. name: "Rump",
  30838. image: {
  30839. source: "./media/characters/cecelia-swift/rump.svg"
  30840. }
  30841. },
  30842. },
  30843. [
  30844. {
  30845. name: "Normal",
  30846. height: math.unit(5 + 9 / 12, "feet"),
  30847. default: true
  30848. },
  30849. {
  30850. name: "Big",
  30851. height: math.unit(50, "feet")
  30852. },
  30853. {
  30854. name: "Macro",
  30855. height: math.unit(100, "feet")
  30856. },
  30857. {
  30858. name: "Macro+",
  30859. height: math.unit(500, "feet")
  30860. },
  30861. {
  30862. name: "Macro++",
  30863. height: math.unit(1000, "feet")
  30864. },
  30865. ]
  30866. ))
  30867. characterMakers.push(() => makeCharacter(
  30868. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  30869. {
  30870. front: {
  30871. height: math.unit(6, "feet"),
  30872. weight: math.unit(150, "lb"),
  30873. name: "Front",
  30874. image: {
  30875. source: "./media/characters/kaunan/front.svg",
  30876. extra: 2890 / 2523,
  30877. bottom: 49 / 2939
  30878. }
  30879. },
  30880. },
  30881. [
  30882. {
  30883. name: "Macro",
  30884. height: math.unit(150, "feet"),
  30885. default: true
  30886. },
  30887. ]
  30888. ))
  30889. characterMakers.push(() => makeCharacter(
  30890. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  30891. {
  30892. dressed: {
  30893. height: math.unit(175, "cm"),
  30894. weight: math.unit(60, "kg"),
  30895. name: "Dressed",
  30896. image: {
  30897. source: "./media/characters/fei/dressed.svg",
  30898. extra: 1402/1278,
  30899. bottom: 27/1429
  30900. }
  30901. },
  30902. nude: {
  30903. height: math.unit(175, "cm"),
  30904. weight: math.unit(60, "kg"),
  30905. name: "Nude",
  30906. image: {
  30907. source: "./media/characters/fei/nude.svg",
  30908. extra: 1402/1278,
  30909. bottom: 27/1429
  30910. }
  30911. },
  30912. heels: {
  30913. height: math.unit(0.466, "feet"),
  30914. name: "Heels",
  30915. image: {
  30916. source: "./media/characters/fei/heels.svg",
  30917. extra: 156/152,
  30918. bottom: 28/184
  30919. }
  30920. },
  30921. },
  30922. [
  30923. {
  30924. name: "Mortal",
  30925. height: math.unit(175, "cm")
  30926. },
  30927. {
  30928. name: "Normal",
  30929. height: math.unit(3500, "m")
  30930. },
  30931. {
  30932. name: "Stroll",
  30933. height: math.unit(18.4, "km"),
  30934. default: true
  30935. },
  30936. {
  30937. name: "Showoff",
  30938. height: math.unit(175, "km")
  30939. },
  30940. ]
  30941. ))
  30942. characterMakers.push(() => makeCharacter(
  30943. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  30944. {
  30945. front: {
  30946. height: math.unit(7, "feet"),
  30947. weight: math.unit(1000, "kg"),
  30948. name: "Front",
  30949. image: {
  30950. source: "./media/characters/edrax/front.svg",
  30951. extra: 2838 / 2550,
  30952. bottom: 130 / 2968
  30953. }
  30954. },
  30955. },
  30956. [
  30957. {
  30958. name: "Small",
  30959. height: math.unit(7, "feet")
  30960. },
  30961. {
  30962. name: "Normal",
  30963. height: math.unit(1500, "meters")
  30964. },
  30965. {
  30966. name: "Mega",
  30967. height: math.unit(12000000, "km"),
  30968. default: true
  30969. },
  30970. {
  30971. name: "Megamacro",
  30972. height: math.unit(10600000, "lightyears")
  30973. },
  30974. {
  30975. name: "Hypermacro",
  30976. height: math.unit(256, "yottameters")
  30977. },
  30978. ]
  30979. ))
  30980. characterMakers.push(() => makeCharacter(
  30981. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  30982. {
  30983. front: {
  30984. height: math.unit(10, "feet"),
  30985. weight: math.unit(750, "lb"),
  30986. name: "Front",
  30987. image: {
  30988. source: "./media/characters/clove/front.svg",
  30989. extra: 1918/1751,
  30990. bottom: 52/1970
  30991. }
  30992. },
  30993. back: {
  30994. height: math.unit(10, "feet"),
  30995. weight: math.unit(750, "lb"),
  30996. name: "Back",
  30997. image: {
  30998. source: "./media/characters/clove/back.svg",
  30999. extra: 1912/1747,
  31000. bottom: 50/1962
  31001. }
  31002. },
  31003. },
  31004. [
  31005. {
  31006. name: "Normal",
  31007. height: math.unit(10, "feet"),
  31008. default: true
  31009. },
  31010. ]
  31011. ))
  31012. characterMakers.push(() => makeCharacter(
  31013. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  31014. {
  31015. front: {
  31016. height: math.unit(4, "feet"),
  31017. weight: math.unit(50, "lb"),
  31018. name: "Front",
  31019. image: {
  31020. source: "./media/characters/alex-rabbit/front.svg",
  31021. extra: 507 / 458,
  31022. bottom: 18.5 / 527
  31023. }
  31024. },
  31025. back: {
  31026. height: math.unit(4, "feet"),
  31027. weight: math.unit(50, "lb"),
  31028. name: "Back",
  31029. image: {
  31030. source: "./media/characters/alex-rabbit/back.svg",
  31031. extra: 502 / 460,
  31032. bottom: 18.9 / 521
  31033. }
  31034. },
  31035. },
  31036. [
  31037. {
  31038. name: "Normal",
  31039. height: math.unit(4, "feet"),
  31040. default: true
  31041. },
  31042. ]
  31043. ))
  31044. characterMakers.push(() => makeCharacter(
  31045. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  31046. {
  31047. front: {
  31048. height: math.unit(1 + 3 / 12, "feet"),
  31049. weight: math.unit(80, "lb"),
  31050. name: "Front",
  31051. image: {
  31052. source: "./media/characters/zander-rose/front.svg",
  31053. extra: 916 / 797,
  31054. bottom: 17 / 933
  31055. }
  31056. },
  31057. back: {
  31058. height: math.unit(1 + 3 / 12, "feet"),
  31059. weight: math.unit(80, "lb"),
  31060. name: "Back",
  31061. image: {
  31062. source: "./media/characters/zander-rose/back.svg",
  31063. extra: 903 / 779,
  31064. bottom: 31 / 934
  31065. }
  31066. },
  31067. },
  31068. [
  31069. {
  31070. name: "Normal",
  31071. height: math.unit(1 + 3 / 12, "feet"),
  31072. default: true
  31073. },
  31074. ]
  31075. ))
  31076. characterMakers.push(() => makeCharacter(
  31077. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  31078. {
  31079. anthro: {
  31080. height: math.unit(6, "feet"),
  31081. weight: math.unit(150, "lb"),
  31082. name: "Anthro",
  31083. image: {
  31084. source: "./media/characters/razz/anthro.svg",
  31085. extra: 1437 / 1343,
  31086. bottom: 48 / 1485
  31087. }
  31088. },
  31089. feral: {
  31090. height: math.unit(6, "feet"),
  31091. weight: math.unit(150, "lb"),
  31092. name: "Feral",
  31093. image: {
  31094. source: "./media/characters/razz/feral.svg",
  31095. extra: 2569 / 1385,
  31096. bottom: 95 / 2664
  31097. }
  31098. },
  31099. },
  31100. [
  31101. {
  31102. name: "Normal",
  31103. height: math.unit(6, "feet"),
  31104. default: true
  31105. },
  31106. ]
  31107. ))
  31108. characterMakers.push(() => makeCharacter(
  31109. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  31110. {
  31111. front: {
  31112. height: math.unit(9 + 4 / 12, "feet"),
  31113. weight: math.unit(500, "lb"),
  31114. name: "Front",
  31115. image: {
  31116. source: "./media/characters/morrigan/front.svg",
  31117. extra: 2707 / 2579,
  31118. bottom: 156 / 2863
  31119. }
  31120. },
  31121. },
  31122. [
  31123. {
  31124. name: "Normal",
  31125. height: math.unit(9 + 4 / 12, "feet"),
  31126. default: true
  31127. },
  31128. ]
  31129. ))
  31130. characterMakers.push(() => makeCharacter(
  31131. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  31132. {
  31133. front: {
  31134. height: math.unit(5, "stories"),
  31135. weight: math.unit(4000, "lb"),
  31136. name: "Front",
  31137. image: {
  31138. source: "./media/characters/jenene/front.svg",
  31139. extra: 1780 / 1710,
  31140. bottom: 57 / 1837
  31141. }
  31142. },
  31143. },
  31144. [
  31145. {
  31146. name: "Normal",
  31147. height: math.unit(5, "stories"),
  31148. default: true
  31149. },
  31150. ]
  31151. ))
  31152. characterMakers.push(() => makeCharacter(
  31153. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  31154. {
  31155. taurSfw: {
  31156. height: math.unit(10, "meters"),
  31157. weight: math.unit(17500, "kg"),
  31158. name: "Taur",
  31159. image: {
  31160. source: "./media/characters/faey/taur-sfw.svg",
  31161. extra: 1200 / 968,
  31162. bottom: 41 / 1241
  31163. }
  31164. },
  31165. chestmaw: {
  31166. height: math.unit(2.01, "meters"),
  31167. name: "Chestmaw",
  31168. image: {
  31169. source: "./media/characters/faey/chestmaw.svg"
  31170. }
  31171. },
  31172. foot: {
  31173. height: math.unit(2.43, "meters"),
  31174. name: "Foot",
  31175. image: {
  31176. source: "./media/characters/faey/foot.svg"
  31177. }
  31178. },
  31179. jaws: {
  31180. height: math.unit(1.66, "meters"),
  31181. name: "Jaws",
  31182. image: {
  31183. source: "./media/characters/faey/jaws.svg"
  31184. }
  31185. },
  31186. tongues: {
  31187. height: math.unit(2.01, "meters"),
  31188. name: "Tongues",
  31189. image: {
  31190. source: "./media/characters/faey/tongues.svg"
  31191. }
  31192. },
  31193. },
  31194. [
  31195. {
  31196. name: "Small",
  31197. height: math.unit(10, "meters"),
  31198. default: true
  31199. },
  31200. {
  31201. name: "Big",
  31202. height: math.unit(500000, "km")
  31203. },
  31204. ]
  31205. ))
  31206. characterMakers.push(() => makeCharacter(
  31207. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  31208. {
  31209. front: {
  31210. height: math.unit(7, "feet"),
  31211. weight: math.unit(275, "lb"),
  31212. name: "Front",
  31213. image: {
  31214. source: "./media/characters/roku/front.svg",
  31215. extra: 903 / 878,
  31216. bottom: 37 / 940
  31217. }
  31218. },
  31219. },
  31220. [
  31221. {
  31222. name: "Normal",
  31223. height: math.unit(7, "feet"),
  31224. default: true
  31225. },
  31226. {
  31227. name: "Macro",
  31228. height: math.unit(500, "feet")
  31229. },
  31230. {
  31231. name: "Megamacro",
  31232. height: math.unit(200, "miles")
  31233. },
  31234. ]
  31235. ))
  31236. characterMakers.push(() => makeCharacter(
  31237. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  31238. {
  31239. front: {
  31240. height: math.unit(6 + 2 / 12, "feet"),
  31241. weight: math.unit(150, "lb"),
  31242. name: "Front",
  31243. image: {
  31244. source: "./media/characters/lira/front.svg",
  31245. extra: 1727 / 1605,
  31246. bottom: 26 / 1753
  31247. }
  31248. },
  31249. back: {
  31250. height: math.unit(6 + 2 / 12, "feet"),
  31251. weight: math.unit(150, "lb"),
  31252. name: "Back",
  31253. image: {
  31254. source: "./media/characters/lira/back.svg",
  31255. extra: 1713/1621,
  31256. bottom: 20/1733
  31257. }
  31258. },
  31259. hand: {
  31260. height: math.unit(0.75, "feet"),
  31261. name: "Hand",
  31262. image: {
  31263. source: "./media/characters/lira/hand.svg"
  31264. }
  31265. },
  31266. maw: {
  31267. height: math.unit(0.65, "feet"),
  31268. name: "Maw",
  31269. image: {
  31270. source: "./media/characters/lira/maw.svg"
  31271. }
  31272. },
  31273. pawDigi: {
  31274. height: math.unit(1.6, "feet"),
  31275. name: "Paw Digi",
  31276. image: {
  31277. source: "./media/characters/lira/paw-digi.svg"
  31278. }
  31279. },
  31280. pawPlanti: {
  31281. height: math.unit(1.4, "feet"),
  31282. name: "Paw Planti",
  31283. image: {
  31284. source: "./media/characters/lira/paw-planti.svg"
  31285. }
  31286. },
  31287. },
  31288. [
  31289. {
  31290. name: "Normal",
  31291. height: math.unit(6 + 2 / 12, "feet"),
  31292. default: true
  31293. },
  31294. {
  31295. name: "Macro",
  31296. height: math.unit(100, "feet")
  31297. },
  31298. {
  31299. name: "Macro²",
  31300. height: math.unit(1600, "feet")
  31301. },
  31302. {
  31303. name: "Planetary",
  31304. height: math.unit(20, "earths")
  31305. },
  31306. ]
  31307. ))
  31308. characterMakers.push(() => makeCharacter(
  31309. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  31310. {
  31311. front: {
  31312. height: math.unit(6, "feet"),
  31313. weight: math.unit(150, "lb"),
  31314. name: "Front",
  31315. image: {
  31316. source: "./media/characters/hadjet/front.svg",
  31317. extra: 1480 / 1346,
  31318. bottom: 26 / 1506
  31319. }
  31320. },
  31321. frontNsfw: {
  31322. height: math.unit(6, "feet"),
  31323. weight: math.unit(150, "lb"),
  31324. name: "Front (NSFW)",
  31325. image: {
  31326. source: "./media/characters/hadjet/front-nsfw.svg",
  31327. extra: 1440 / 1358,
  31328. bottom: 52 / 1492
  31329. }
  31330. },
  31331. },
  31332. [
  31333. {
  31334. name: "Macro",
  31335. height: math.unit(10, "stories"),
  31336. default: true
  31337. },
  31338. {
  31339. name: "Megamacro",
  31340. height: math.unit(1.5, "miles")
  31341. },
  31342. {
  31343. name: "Megamacro+",
  31344. height: math.unit(5, "miles")
  31345. },
  31346. ]
  31347. ))
  31348. characterMakers.push(() => makeCharacter(
  31349. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  31350. {
  31351. side: {
  31352. height: math.unit(106, "feet"),
  31353. weight: math.unit(500, "tonnes"),
  31354. name: "Side",
  31355. image: {
  31356. source: "./media/characters/kodran/side.svg",
  31357. extra: 553 / 480,
  31358. bottom: 33 / 586
  31359. }
  31360. },
  31361. front: {
  31362. height: math.unit(132, "feet"),
  31363. weight: math.unit(500, "tonnes"),
  31364. name: "Front",
  31365. image: {
  31366. source: "./media/characters/kodran/front.svg",
  31367. extra: 667 / 643,
  31368. bottom: 42 / 709
  31369. }
  31370. },
  31371. flying: {
  31372. height: math.unit(350, "feet"),
  31373. weight: math.unit(500, "tonnes"),
  31374. name: "Flying",
  31375. image: {
  31376. source: "./media/characters/kodran/flying.svg"
  31377. }
  31378. },
  31379. foot: {
  31380. height: math.unit(33, "feet"),
  31381. name: "Foot",
  31382. image: {
  31383. source: "./media/characters/kodran/foot.svg"
  31384. }
  31385. },
  31386. footFront: {
  31387. height: math.unit(19, "feet"),
  31388. name: "Foot (Front)",
  31389. image: {
  31390. source: "./media/characters/kodran/foot-front.svg",
  31391. extra: 261 / 261,
  31392. bottom: 91 / 352
  31393. }
  31394. },
  31395. headFront: {
  31396. height: math.unit(53, "feet"),
  31397. name: "Head (Front)",
  31398. image: {
  31399. source: "./media/characters/kodran/head-front.svg"
  31400. }
  31401. },
  31402. headSide: {
  31403. height: math.unit(65, "feet"),
  31404. name: "Head (Side)",
  31405. image: {
  31406. source: "./media/characters/kodran/head-side.svg"
  31407. }
  31408. },
  31409. throat: {
  31410. height: math.unit(79, "feet"),
  31411. name: "Throat",
  31412. image: {
  31413. source: "./media/characters/kodran/throat.svg"
  31414. }
  31415. },
  31416. },
  31417. [
  31418. {
  31419. name: "Large",
  31420. height: math.unit(106, "feet"),
  31421. default: true
  31422. },
  31423. ]
  31424. ))
  31425. characterMakers.push(() => makeCharacter(
  31426. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  31427. {
  31428. side: {
  31429. height: math.unit(11, "feet"),
  31430. weight: math.unit(150, "lb"),
  31431. name: "Side",
  31432. image: {
  31433. source: "./media/characters/pyxaron/side.svg",
  31434. extra: 305 / 195,
  31435. bottom: 17 / 322
  31436. }
  31437. },
  31438. },
  31439. [
  31440. {
  31441. name: "Normal",
  31442. height: math.unit(11, "feet"),
  31443. default: true
  31444. },
  31445. ]
  31446. ))
  31447. characterMakers.push(() => makeCharacter(
  31448. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  31449. {
  31450. front: {
  31451. height: math.unit(6, "feet"),
  31452. weight: math.unit(150, "lb"),
  31453. name: "Front",
  31454. image: {
  31455. source: "./media/characters/meep/front.svg",
  31456. extra: 88 / 80,
  31457. bottom: 6 / 94
  31458. }
  31459. },
  31460. },
  31461. [
  31462. {
  31463. name: "Fun Sized",
  31464. height: math.unit(2, "inches"),
  31465. default: true
  31466. },
  31467. {
  31468. name: "Friend Sized",
  31469. height: math.unit(8, "inches")
  31470. },
  31471. ]
  31472. ))
  31473. characterMakers.push(() => makeCharacter(
  31474. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  31475. {
  31476. front: {
  31477. height: math.unit(15, "feet"),
  31478. weight: math.unit(2500, "lb"),
  31479. name: "Front",
  31480. image: {
  31481. source: "./media/characters/holly-rabbit/front.svg",
  31482. extra: 1433 / 1233,
  31483. bottom: 125 / 1558
  31484. }
  31485. },
  31486. dick: {
  31487. height: math.unit(4.6, "feet"),
  31488. name: "Dick",
  31489. image: {
  31490. source: "./media/characters/holly-rabbit/dick.svg"
  31491. }
  31492. },
  31493. },
  31494. [
  31495. {
  31496. name: "Normal",
  31497. height: math.unit(15, "feet"),
  31498. default: true
  31499. },
  31500. {
  31501. name: "Macro",
  31502. height: math.unit(250, "feet")
  31503. },
  31504. {
  31505. name: "Macro+",
  31506. height: math.unit(2500, "feet")
  31507. },
  31508. ]
  31509. ))
  31510. characterMakers.push(() => makeCharacter(
  31511. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  31512. {
  31513. front: {
  31514. height: math.unit(3.02, "meters"),
  31515. weight: math.unit(500, "kg"),
  31516. name: "Front",
  31517. image: {
  31518. source: "./media/characters/drena/front.svg",
  31519. extra: 282 / 243,
  31520. bottom: 8 / 290
  31521. }
  31522. },
  31523. side: {
  31524. height: math.unit(3.02, "meters"),
  31525. weight: math.unit(500, "kg"),
  31526. name: "Side",
  31527. image: {
  31528. source: "./media/characters/drena/side.svg",
  31529. extra: 280 / 245,
  31530. bottom: 10 / 290
  31531. }
  31532. },
  31533. back: {
  31534. height: math.unit(3.02, "meters"),
  31535. weight: math.unit(500, "kg"),
  31536. name: "Back",
  31537. image: {
  31538. source: "./media/characters/drena/back.svg",
  31539. extra: 278 / 243,
  31540. bottom: 2 / 280
  31541. }
  31542. },
  31543. foot: {
  31544. height: math.unit(0.75, "meters"),
  31545. name: "Foot",
  31546. image: {
  31547. source: "./media/characters/drena/foot.svg"
  31548. }
  31549. },
  31550. maw: {
  31551. height: math.unit(0.82, "meters"),
  31552. name: "Maw",
  31553. image: {
  31554. source: "./media/characters/drena/maw.svg"
  31555. }
  31556. },
  31557. eating: {
  31558. height: math.unit(0.75, "meters"),
  31559. name: "Eating",
  31560. image: {
  31561. source: "./media/characters/drena/eating.svg"
  31562. }
  31563. },
  31564. rump: {
  31565. height: math.unit(0.93, "meters"),
  31566. name: "Rump",
  31567. image: {
  31568. source: "./media/characters/drena/rump.svg"
  31569. }
  31570. },
  31571. },
  31572. [
  31573. {
  31574. name: "Normal",
  31575. height: math.unit(3.02, "meters"),
  31576. default: true
  31577. },
  31578. ]
  31579. ))
  31580. characterMakers.push(() => makeCharacter(
  31581. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  31582. {
  31583. front: {
  31584. height: math.unit(6 + 4 / 12, "feet"),
  31585. weight: math.unit(250, "lb"),
  31586. name: "Front",
  31587. image: {
  31588. source: "./media/characters/remmyzilla/front.svg",
  31589. extra: 4033 / 3588,
  31590. bottom: 123 / 4156
  31591. }
  31592. },
  31593. back: {
  31594. height: math.unit(6 + 4 / 12, "feet"),
  31595. weight: math.unit(250, "lb"),
  31596. name: "Back",
  31597. image: {
  31598. source: "./media/characters/remmyzilla/back.svg",
  31599. extra: 1696/1602,
  31600. bottom: 63/1759
  31601. }
  31602. },
  31603. paw: {
  31604. height: math.unit(1.73, "feet"),
  31605. name: "Paw",
  31606. image: {
  31607. source: "./media/characters/remmyzilla/paw.svg"
  31608. },
  31609. extraAttributes: {
  31610. "toeSize": {
  31611. name: "Toe Size",
  31612. power: 2,
  31613. type: "area",
  31614. base: math.unit(0.0035, "m^2")
  31615. },
  31616. "padSize": {
  31617. name: "Pad Size",
  31618. power: 2,
  31619. type: "area",
  31620. base: math.unit(0.015, "m^2")
  31621. },
  31622. "pawsize": {
  31623. name: "Paw Size",
  31624. power: 2,
  31625. type: "area",
  31626. base: math.unit(0.072, "m^2")
  31627. },
  31628. }
  31629. },
  31630. maw: {
  31631. height: math.unit(1.73, "feet"),
  31632. name: "Maw",
  31633. image: {
  31634. source: "./media/characters/remmyzilla/maw.svg"
  31635. }
  31636. },
  31637. },
  31638. [
  31639. {
  31640. name: "Normal",
  31641. height: math.unit(6 + 4 / 12, "feet")
  31642. },
  31643. {
  31644. name: "Minimacro",
  31645. height: math.unit(12 + 8 / 12, "feet")
  31646. },
  31647. {
  31648. name: "Normal",
  31649. height: math.unit(640, "feet"),
  31650. default: true
  31651. },
  31652. {
  31653. name: "Megamacro",
  31654. height: math.unit(6400, "feet")
  31655. },
  31656. {
  31657. name: "Gigamacro",
  31658. height: math.unit(64000, "miles")
  31659. },
  31660. ]
  31661. ))
  31662. characterMakers.push(() => makeCharacter(
  31663. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  31664. {
  31665. front: {
  31666. height: math.unit(2.5, "meters"),
  31667. weight: math.unit(300, "lb"),
  31668. name: "Front",
  31669. image: {
  31670. source: "./media/characters/lawrence/front.svg",
  31671. extra: 357 / 335,
  31672. bottom: 30 / 387
  31673. }
  31674. },
  31675. back: {
  31676. height: math.unit(2.5, "meters"),
  31677. weight: math.unit(300, "lb"),
  31678. name: "Back",
  31679. image: {
  31680. source: "./media/characters/lawrence/back.svg",
  31681. extra: 357 / 338,
  31682. bottom: 16 / 373
  31683. }
  31684. },
  31685. head: {
  31686. height: math.unit(0.9, "meter"),
  31687. name: "Head",
  31688. image: {
  31689. source: "./media/characters/lawrence/head.svg"
  31690. }
  31691. },
  31692. maw: {
  31693. height: math.unit(0.7, "meter"),
  31694. name: "Maw",
  31695. image: {
  31696. source: "./media/characters/lawrence/maw.svg"
  31697. }
  31698. },
  31699. footBottom: {
  31700. height: math.unit(0.5, "meter"),
  31701. name: "Foot (Bottom)",
  31702. image: {
  31703. source: "./media/characters/lawrence/foot-bottom.svg"
  31704. }
  31705. },
  31706. footTop: {
  31707. height: math.unit(0.5, "meter"),
  31708. name: "Foot (Top)",
  31709. image: {
  31710. source: "./media/characters/lawrence/foot-top.svg"
  31711. }
  31712. },
  31713. },
  31714. [
  31715. {
  31716. name: "Normal",
  31717. height: math.unit(2.5, "meters"),
  31718. default: true
  31719. },
  31720. {
  31721. name: "Macro",
  31722. height: math.unit(95, "meters")
  31723. },
  31724. {
  31725. name: "Megamacro",
  31726. height: math.unit(150, "km")
  31727. },
  31728. ]
  31729. ))
  31730. characterMakers.push(() => makeCharacter(
  31731. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  31732. {
  31733. front: {
  31734. height: math.unit(4.2, "meters"),
  31735. preyCapacity: math.unit(50, "m^3"),
  31736. weight: math.unit(30, "tonnes"),
  31737. name: "Front",
  31738. image: {
  31739. source: "./media/characters/sydney/front.svg",
  31740. extra: 1177/1129,
  31741. bottom: 197/1374
  31742. },
  31743. extraAttributes: {
  31744. "length": {
  31745. name: "Length",
  31746. power: 1,
  31747. type: "length",
  31748. base: math.unit(21, "meters")
  31749. },
  31750. }
  31751. },
  31752. },
  31753. [
  31754. {
  31755. name: "Normal",
  31756. height: math.unit(4.2, "meters"),
  31757. default: true
  31758. },
  31759. ]
  31760. ))
  31761. characterMakers.push(() => makeCharacter(
  31762. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  31763. {
  31764. back: {
  31765. height: math.unit(201, "feet"),
  31766. name: "Back",
  31767. image: {
  31768. source: "./media/characters/jessica/back.svg",
  31769. extra: 273 / 259,
  31770. bottom: 7 / 280
  31771. }
  31772. },
  31773. },
  31774. [
  31775. {
  31776. name: "Normal",
  31777. height: math.unit(201, "feet"),
  31778. default: true
  31779. },
  31780. {
  31781. name: "Megamacro",
  31782. height: math.unit(8, "miles")
  31783. },
  31784. ]
  31785. ))
  31786. characterMakers.push(() => makeCharacter(
  31787. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  31788. {
  31789. side: {
  31790. height: math.unit(5.6, "m"),
  31791. weight: math.unit(8000, "kg"),
  31792. name: "Side",
  31793. image: {
  31794. source: "./media/characters/victoria/side.svg",
  31795. extra: 1542/1229,
  31796. bottom: 124/1666
  31797. }
  31798. },
  31799. maw: {
  31800. height: math.unit(7.14, "feet"),
  31801. name: "Maw",
  31802. image: {
  31803. source: "./media/characters/victoria/maw.svg"
  31804. }
  31805. },
  31806. },
  31807. [
  31808. {
  31809. name: "Normal",
  31810. height: math.unit(5.6, "m"),
  31811. default: true
  31812. },
  31813. ]
  31814. ))
  31815. characterMakers.push(() => makeCharacter(
  31816. { name: "Cat", species: ["cat", "nickit", "lucario", "riolu", "lopunny", "dog", "pikachu"], tags: ["anthro", "feral", "taur"] },
  31817. {
  31818. front: {
  31819. height: math.unit(5 + 6 / 12, "feet"),
  31820. name: "Front",
  31821. image: {
  31822. source: "./media/characters/cat/cat-front.svg",
  31823. extra: 1422/1262,
  31824. bottom: 61/1483
  31825. },
  31826. form: "cat",
  31827. default: true
  31828. },
  31829. back: {
  31830. height: math.unit(5 + 6 / 12, "feet"),
  31831. name: "Back",
  31832. image: {
  31833. source: "./media/characters/cat/cat-back.svg",
  31834. extra: 1466/1301,
  31835. bottom: 19/1485
  31836. },
  31837. form: "cat"
  31838. },
  31839. taur: {
  31840. height: math.unit(7, "feet"),
  31841. name: "Side",
  31842. image: {
  31843. source: "./media/characters/cat/taur-side.svg",
  31844. extra: 1389/1233,
  31845. bottom: 83/1472
  31846. },
  31847. form: "taur",
  31848. default: true
  31849. },
  31850. lucarioFront: {
  31851. height: math.unit(4, "feet"),
  31852. name: "Front",
  31853. image: {
  31854. source: "./media/characters/cat/lucario-front.svg",
  31855. extra: 1149/1019,
  31856. bottom: 84/1233
  31857. },
  31858. form: "lucario",
  31859. default: true
  31860. },
  31861. lucarioBack: {
  31862. height: math.unit(4, "feet"),
  31863. name: "Back",
  31864. image: {
  31865. source: "./media/characters/cat/lucario-back.svg",
  31866. extra: 1190/1059,
  31867. bottom: 33/1223
  31868. },
  31869. form: "lucario"
  31870. },
  31871. riolu_front: {
  31872. height: math.unit(2 + 4/12, "feet"),
  31873. name: "Front",
  31874. image: {
  31875. source: "./media/characters/cat/riolu-front.svg",
  31876. extra: 1104/956,
  31877. bottom: 70/1174
  31878. },
  31879. form: "riolu",
  31880. default: true
  31881. },
  31882. nickit: {
  31883. height: math.unit(2, "feet"),
  31884. name: "Side",
  31885. image: {
  31886. source: "./media/characters/cat/nickit-side.svg",
  31887. extra: 1087/852,
  31888. bottom: 67/1154
  31889. },
  31890. form: "nickit",
  31891. default: true
  31892. },
  31893. lopunnyFront: {
  31894. height: math.unit(5, "feet"),
  31895. name: "Front",
  31896. image: {
  31897. source: "./media/characters/cat/lopunny-front.svg",
  31898. extra: 1217/1078,
  31899. bottom: 23/1240
  31900. },
  31901. form: "lopunny",
  31902. default: true
  31903. },
  31904. lopunnyBack: {
  31905. height: math.unit(5, "feet"),
  31906. name: "Back",
  31907. image: {
  31908. source: "./media/characters/cat/lopunny-back.svg",
  31909. extra: 1205/1057,
  31910. bottom: 33/1238
  31911. },
  31912. form: "lopunny"
  31913. },
  31914. dog_front: {
  31915. height: math.unit(5 + 9/12, "feet"),
  31916. name: "Front",
  31917. image: {
  31918. source: "./media/characters/cat/dog-front.svg",
  31919. extra: 1403/1309,
  31920. bottom: 31/1434
  31921. },
  31922. form: "dog",
  31923. default: true
  31924. },
  31925. dog_back: {
  31926. height: math.unit(5 + 9/12, "feet"),
  31927. name: "Back",
  31928. image: {
  31929. source: "./media/characters/cat/dog-back.svg",
  31930. extra: 1393/1297,
  31931. bottom: 38/1431
  31932. },
  31933. form: "dog",
  31934. },
  31935. pikachu_front: {
  31936. height: math.unit(2.64, "feet"),
  31937. name: "Front",
  31938. image: {
  31939. source: "./media/characters/cat/pikachu-front.svg",
  31940. extra: 1224/958,
  31941. bottom: 34/1258
  31942. },
  31943. form: "pikachu",
  31944. default: true
  31945. },
  31946. pikachu_back: {
  31947. height: math.unit(2.64, "feet"),
  31948. name: "Back",
  31949. image: {
  31950. source: "./media/characters/cat/pikachu-back.svg",
  31951. extra: 1228/958,
  31952. bottom: 16/1244
  31953. },
  31954. form: "pikachu",
  31955. },
  31956. gigachuFront: {
  31957. height: math.unit(75, "feet"),
  31958. name: "Front",
  31959. image: {
  31960. source: "./media/characters/cat/gigachu-front.svg",
  31961. extra: 1239/1027,
  31962. bottom: 32/1271
  31963. },
  31964. form: "gigachu",
  31965. default: true
  31966. },
  31967. gigachuBack: {
  31968. height: math.unit(75, "feet"),
  31969. name: "Back",
  31970. image: {
  31971. source: "./media/characters/cat/gigachu-back.svg",
  31972. extra: 1229/1030,
  31973. bottom: 9/1238
  31974. },
  31975. form: "gigachu"
  31976. },
  31977. },
  31978. [
  31979. {
  31980. name: "Really small",
  31981. height: math.unit(1, "nm"),
  31982. allForms: true
  31983. },
  31984. {
  31985. name: "Micro",
  31986. height: math.unit(5, "inches"),
  31987. allForms: true
  31988. },
  31989. {
  31990. name: "Normal",
  31991. height: math.unit(5 + 6 / 12, "feet"),
  31992. default: true,
  31993. form: "cat"
  31994. },
  31995. {
  31996. name: "Normal",
  31997. height: math.unit(7, "feet"),
  31998. default: true,
  31999. form: "taur"
  32000. },
  32001. {
  32002. name: "Normal",
  32003. height: math.unit(4, "feet"),
  32004. default: true,
  32005. form: "lucario"
  32006. },
  32007. {
  32008. name: "Normal",
  32009. height: math.unit(2, "feet"),
  32010. default: true,
  32011. form: "nickit"
  32012. },
  32013. {
  32014. name: "Normal",
  32015. height: math.unit(5, "feet"),
  32016. default: true,
  32017. form: "lopunny"
  32018. },
  32019. {
  32020. name: "Normal",
  32021. height: math.unit(2 + 4/12, "feet"),
  32022. default: true,
  32023. form: "riolu"
  32024. },
  32025. {
  32026. name: "Normal",
  32027. height: math.unit(5 + 6 / 12, "feet"),
  32028. default: true,
  32029. form: "dog"
  32030. },
  32031. {
  32032. name: "Macro",
  32033. height: math.unit(50, "feet"),
  32034. allForms: true
  32035. },
  32036. {
  32037. name: "Normal",
  32038. height: math.unit(2.64, "feet"),
  32039. default: true,
  32040. form: "pikachu"
  32041. },
  32042. {
  32043. name: "Dynamax",
  32044. height: math.unit(75, "feet"),
  32045. form: "gigachu",
  32046. default: true
  32047. },
  32048. {
  32049. name: "Macro+",
  32050. height: math.unit(150, "feet"),
  32051. allForms: true
  32052. },
  32053. {
  32054. name: "Megamacro",
  32055. height: math.unit(100, "miles"),
  32056. allForms: true
  32057. },
  32058. ],
  32059. {
  32060. "cat": {
  32061. name: "Cat",
  32062. default: true
  32063. },
  32064. "taur": {
  32065. name: "Taur",
  32066. },
  32067. "lucario": {
  32068. name: "Lucario",
  32069. },
  32070. "riolu": {
  32071. name: "Riolu",
  32072. },
  32073. "nickit": {
  32074. name: "Nickit",
  32075. },
  32076. "lopunny": {
  32077. name: "Lopunny",
  32078. },
  32079. "dog": {
  32080. name: "Dog",
  32081. },
  32082. "pikachu": {
  32083. name: "Pikachu",
  32084. },
  32085. "gigachu": {
  32086. name: "Gigachu",
  32087. ignoreAllFormSizes: true
  32088. }
  32089. }
  32090. ))
  32091. characterMakers.push(() => makeCharacter(
  32092. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  32093. {
  32094. front: {
  32095. height: math.unit(63.4, "meters"),
  32096. weight: math.unit(3.28349e+6, "kilograms"),
  32097. name: "Front",
  32098. image: {
  32099. source: "./media/characters/kirina-violet/front.svg",
  32100. extra: 2812 / 2725,
  32101. bottom: 0 / 2812
  32102. }
  32103. },
  32104. back: {
  32105. height: math.unit(63.4, "meters"),
  32106. weight: math.unit(3.28349e+6, "kilograms"),
  32107. name: "Back",
  32108. image: {
  32109. source: "./media/characters/kirina-violet/back.svg",
  32110. extra: 2812 / 2725,
  32111. bottom: 0 / 2812
  32112. }
  32113. },
  32114. mouth: {
  32115. height: math.unit(4.35, "meters"),
  32116. name: "Mouth",
  32117. image: {
  32118. source: "./media/characters/kirina-violet/mouth.svg"
  32119. }
  32120. },
  32121. paw: {
  32122. height: math.unit(5.6, "meters"),
  32123. name: "Paw",
  32124. image: {
  32125. source: "./media/characters/kirina-violet/paw.svg"
  32126. }
  32127. },
  32128. tail: {
  32129. height: math.unit(18, "meters"),
  32130. name: "Tail",
  32131. image: {
  32132. source: "./media/characters/kirina-violet/tail.svg"
  32133. }
  32134. },
  32135. },
  32136. [
  32137. {
  32138. name: "Macro",
  32139. height: math.unit(63.4, "meters"),
  32140. default: true
  32141. },
  32142. ]
  32143. ))
  32144. characterMakers.push(() => makeCharacter(
  32145. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  32146. {
  32147. front: {
  32148. height: math.unit(6, "feet"),
  32149. weight: math.unit(150, "lb"),
  32150. name: "Front",
  32151. image: {
  32152. source: "./media/characters/sfaiyan/front.svg",
  32153. extra: 999 / 978,
  32154. bottom: 5 / 1004
  32155. }
  32156. },
  32157. },
  32158. [
  32159. {
  32160. name: "Normal",
  32161. height: math.unit(1.82, "meters")
  32162. },
  32163. {
  32164. name: "Giant",
  32165. height: math.unit(2.27, "km"),
  32166. default: true
  32167. },
  32168. ]
  32169. ))
  32170. characterMakers.push(() => makeCharacter(
  32171. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  32172. {
  32173. front: {
  32174. height: math.unit(179, "cm"),
  32175. weight: math.unit(100, "kg"),
  32176. name: "Front",
  32177. image: {
  32178. source: "./media/characters/raunehkeli/front.svg",
  32179. extra: 1934 / 1926,
  32180. bottom: 0 / 1934
  32181. }
  32182. },
  32183. },
  32184. [
  32185. {
  32186. name: "Normal",
  32187. height: math.unit(179, "cm")
  32188. },
  32189. {
  32190. name: "Maximum",
  32191. height: math.unit(575, "meters"),
  32192. default: true
  32193. },
  32194. ]
  32195. ))
  32196. characterMakers.push(() => makeCharacter(
  32197. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  32198. {
  32199. dressed: {
  32200. height: math.unit(6 + 2/12, "feet"),
  32201. weight: math.unit(150, "lb"),
  32202. name: "Dressed",
  32203. image: {
  32204. source: "./media/characters/beatrice-the-behemoth-heathers/dressed.svg",
  32205. extra: 2620/2496,
  32206. bottom: 66/2686
  32207. }
  32208. },
  32209. nude: {
  32210. height: math.unit(6 + 2/12, "feet"),
  32211. weight: math.unit(150, "lb"),
  32212. name: "Nude",
  32213. image: {
  32214. source: "./media/characters/beatrice-the-behemoth-heathers/nude.svg",
  32215. extra: 2620/2496,
  32216. bottom: 66/2686
  32217. }
  32218. },
  32219. },
  32220. [
  32221. {
  32222. name: "Normal",
  32223. height: math.unit(6 + 2 / 12, "feet")
  32224. },
  32225. {
  32226. name: "Max Height",
  32227. height: math.unit(1181, "feet"),
  32228. default: true
  32229. },
  32230. ]
  32231. ))
  32232. characterMakers.push(() => makeCharacter(
  32233. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  32234. {
  32235. front: {
  32236. height: math.unit(5 + 6 / 12, "feet"),
  32237. weight: math.unit(108, "lb"),
  32238. name: "Front",
  32239. image: {
  32240. source: "./media/characters/lilith-zott/front.svg",
  32241. extra: 2415/2133,
  32242. bottom: 193/2608
  32243. }
  32244. },
  32245. },
  32246. [
  32247. {
  32248. name: "Base Height",
  32249. height: math.unit(5 + 6 / 12, "feet")
  32250. },
  32251. {
  32252. name: "Preferred Height",
  32253. height: math.unit(200, "feet")
  32254. },
  32255. {
  32256. name: "Max Height",
  32257. height: math.unit(1030, "feet"),
  32258. default: true
  32259. },
  32260. ]
  32261. ))
  32262. characterMakers.push(() => makeCharacter(
  32263. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  32264. {
  32265. super: {
  32266. height: math.unit(6 + 2/12, "feet"),
  32267. weight: math.unit(150, "lb"),
  32268. name: "Super",
  32269. image: {
  32270. source: "./media/characters/holly-the-mega-mousky-heathers/super.svg",
  32271. extra: 2555/2387,
  32272. bottom: 50/2605
  32273. }
  32274. },
  32275. casual: {
  32276. height: math.unit(6 + 2/12, "feet"),
  32277. weight: math.unit(150, "lb"),
  32278. name: "Casual",
  32279. image: {
  32280. source: "./media/characters/holly-the-mega-mousky-heathers/casual.svg",
  32281. extra: 2555/2387,
  32282. bottom: 50/2605
  32283. }
  32284. },
  32285. hand: {
  32286. height: math.unit(1.08, "feet"),
  32287. name: "Hand",
  32288. image: {
  32289. source: "./media/characters/holly-the-mega-mousky-heathers/hand.svg"
  32290. }
  32291. },
  32292. paw: {
  32293. height: math.unit(1.33, "feet"),
  32294. name: "Paw",
  32295. image: {
  32296. source: "./media/characters/holly-the-mega-mousky-heathers/paw.svg"
  32297. }
  32298. },
  32299. },
  32300. [
  32301. {
  32302. name: "Normal",
  32303. height: math.unit(6 + 2/12, "feet")
  32304. },
  32305. {
  32306. name: "Preferred Height",
  32307. height: math.unit(220, "feet")
  32308. },
  32309. {
  32310. name: "Max Height",
  32311. height: math.unit(1100, "feet"),
  32312. default: true
  32313. },
  32314. ]
  32315. ))
  32316. characterMakers.push(() => makeCharacter(
  32317. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  32318. {
  32319. front: {
  32320. height: math.unit(100, "miles"),
  32321. name: "Front",
  32322. image: {
  32323. source: "./media/characters/sona/front.svg",
  32324. extra: 2433 / 2201,
  32325. bottom: 53 / 2486
  32326. }
  32327. },
  32328. foot: {
  32329. height: math.unit(16.1, "miles"),
  32330. name: "Foot",
  32331. image: {
  32332. source: "./media/characters/sona/foot.svg"
  32333. }
  32334. },
  32335. },
  32336. [
  32337. {
  32338. name: "Macro",
  32339. height: math.unit(100, "miles"),
  32340. default: true
  32341. },
  32342. ]
  32343. ))
  32344. characterMakers.push(() => makeCharacter(
  32345. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  32346. {
  32347. front: {
  32348. height: math.unit(6, "feet"),
  32349. weight: math.unit(150, "lb"),
  32350. name: "Front",
  32351. image: {
  32352. source: "./media/characters/bailey/front.svg",
  32353. extra: 1778 / 1724,
  32354. bottom: 30 / 1808
  32355. }
  32356. },
  32357. },
  32358. [
  32359. {
  32360. name: "Micro",
  32361. height: math.unit(4, "inches")
  32362. },
  32363. {
  32364. name: "Normal",
  32365. height: math.unit(5 + 5 / 12, "feet"),
  32366. default: true
  32367. },
  32368. {
  32369. name: "Macro",
  32370. height: math.unit(250, "feet")
  32371. },
  32372. {
  32373. name: "Megamacro",
  32374. height: math.unit(100, "miles")
  32375. },
  32376. ]
  32377. ))
  32378. characterMakers.push(() => makeCharacter(
  32379. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  32380. {
  32381. front: {
  32382. height: math.unit(5 + 2 / 12, "feet"),
  32383. weight: math.unit(120, "lb"),
  32384. name: "Front",
  32385. image: {
  32386. source: "./media/characters/snaps/front.svg",
  32387. extra: 2370 / 2177,
  32388. bottom: 48 / 2418
  32389. }
  32390. },
  32391. back: {
  32392. height: math.unit(5 + 2 / 12, "feet"),
  32393. weight: math.unit(120, "lb"),
  32394. name: "Back",
  32395. image: {
  32396. source: "./media/characters/snaps/back.svg",
  32397. extra: 2408 / 2258,
  32398. bottom: 15 / 2423
  32399. }
  32400. },
  32401. },
  32402. [
  32403. {
  32404. name: "Micro",
  32405. height: math.unit(9, "inches")
  32406. },
  32407. {
  32408. name: "Normal",
  32409. height: math.unit(5 + 2 / 12, "feet"),
  32410. default: true
  32411. },
  32412. {
  32413. name: "Mini Macro",
  32414. height: math.unit(10, "feet")
  32415. },
  32416. ]
  32417. ))
  32418. characterMakers.push(() => makeCharacter(
  32419. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  32420. {
  32421. front: {
  32422. height: math.unit(1.8, "meters"),
  32423. weight: math.unit(85, "kg"),
  32424. name: "Front",
  32425. image: {
  32426. source: "./media/characters/azteck/front.svg",
  32427. extra: 2815 / 2625,
  32428. bottom: 89 / 2904
  32429. }
  32430. },
  32431. back: {
  32432. height: math.unit(1.8, "meters"),
  32433. weight: math.unit(85, "kg"),
  32434. name: "Back",
  32435. image: {
  32436. source: "./media/characters/azteck/back.svg",
  32437. extra: 2856 / 2648,
  32438. bottom: 85 / 2941
  32439. }
  32440. },
  32441. frontDressed: {
  32442. height: math.unit(1.8, "meters"),
  32443. weight: math.unit(85, "kg"),
  32444. name: "Front (Dressed)",
  32445. image: {
  32446. source: "./media/characters/azteck/front-dressed.svg",
  32447. extra: 2147 / 2003,
  32448. bottom: 68 / 2215
  32449. }
  32450. },
  32451. head: {
  32452. height: math.unit(0.47, "meters"),
  32453. weight: math.unit(85, "kg"),
  32454. name: "Head",
  32455. image: {
  32456. source: "./media/characters/azteck/head.svg"
  32457. }
  32458. },
  32459. },
  32460. [
  32461. {
  32462. name: "Bite sized",
  32463. height: math.unit(16, "cm")
  32464. },
  32465. {
  32466. name: "Normal",
  32467. height: math.unit(1.8, "meters"),
  32468. default: true
  32469. },
  32470. ]
  32471. ))
  32472. characterMakers.push(() => makeCharacter(
  32473. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  32474. {
  32475. front: {
  32476. height: math.unit(6, "feet"),
  32477. weight: math.unit(150, "lb"),
  32478. name: "Front",
  32479. image: {
  32480. source: "./media/characters/pidge/front.svg",
  32481. extra: 1936/1820,
  32482. bottom: 0/1936
  32483. }
  32484. },
  32485. back: {
  32486. height: math.unit(6, "feet"),
  32487. weight: math.unit(150, "lb"),
  32488. name: "Back",
  32489. image: {
  32490. source: "./media/characters/pidge/back.svg",
  32491. extra: 1938/1843,
  32492. bottom: 0/1938
  32493. }
  32494. },
  32495. casual: {
  32496. height: math.unit(6, "feet"),
  32497. weight: math.unit(150, "lb"),
  32498. name: "Casual",
  32499. image: {
  32500. source: "./media/characters/pidge/casual.svg",
  32501. extra: 1936/1820,
  32502. bottom: 0/1936
  32503. }
  32504. },
  32505. tech: {
  32506. height: math.unit(6, "feet"),
  32507. weight: math.unit(150, "lb"),
  32508. name: "Tech",
  32509. image: {
  32510. source: "./media/characters/pidge/tech.svg",
  32511. extra: 1802/1682,
  32512. bottom: 0/1802
  32513. }
  32514. },
  32515. head: {
  32516. height: math.unit(1.61, "feet"),
  32517. name: "Head",
  32518. image: {
  32519. source: "./media/characters/pidge/head.svg"
  32520. }
  32521. },
  32522. collar: {
  32523. height: math.unit(0.82, "feet"),
  32524. name: "Collar",
  32525. image: {
  32526. source: "./media/characters/pidge/collar.svg"
  32527. }
  32528. },
  32529. },
  32530. [
  32531. {
  32532. name: "Macro",
  32533. height: math.unit(2, "mile"),
  32534. default: true
  32535. },
  32536. {
  32537. name: "PUPPY",
  32538. height: math.unit(20, "miles")
  32539. },
  32540. ]
  32541. ))
  32542. characterMakers.push(() => makeCharacter(
  32543. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  32544. {
  32545. front: {
  32546. height: math.unit(6, "feet"),
  32547. weight: math.unit(150, "lb"),
  32548. name: "Front",
  32549. image: {
  32550. source: "./media/characters/en/front.svg",
  32551. extra: 1697 / 1563,
  32552. bottom: 103 / 1800
  32553. }
  32554. },
  32555. back: {
  32556. height: math.unit(6, "feet"),
  32557. weight: math.unit(150, "lb"),
  32558. name: "Back",
  32559. image: {
  32560. source: "./media/characters/en/back.svg",
  32561. extra: 1700 / 1570,
  32562. bottom: 51 / 1751
  32563. }
  32564. },
  32565. frontDressed: {
  32566. height: math.unit(6, "feet"),
  32567. weight: math.unit(150, "lb"),
  32568. name: "Front (Dressed)",
  32569. image: {
  32570. source: "./media/characters/en/front-dressed.svg",
  32571. extra: 1697 / 1563,
  32572. bottom: 103 / 1800
  32573. }
  32574. },
  32575. backDressed: {
  32576. height: math.unit(6, "feet"),
  32577. weight: math.unit(150, "lb"),
  32578. name: "Back (Dressed)",
  32579. image: {
  32580. source: "./media/characters/en/back-dressed.svg",
  32581. extra: 1700 / 1570,
  32582. bottom: 51 / 1751
  32583. }
  32584. },
  32585. },
  32586. [
  32587. {
  32588. name: "Macro",
  32589. height: math.unit(210, "feet"),
  32590. default: true
  32591. },
  32592. ]
  32593. ))
  32594. characterMakers.push(() => makeCharacter(
  32595. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  32596. {
  32597. front: {
  32598. height: math.unit(6, "feet"),
  32599. weight: math.unit(150, "lb"),
  32600. name: "Front",
  32601. image: {
  32602. source: "./media/characters/haze-orris/front.svg",
  32603. extra: 3975 / 3525,
  32604. bottom: 137 / 4112
  32605. }
  32606. },
  32607. },
  32608. [
  32609. {
  32610. name: "Micro",
  32611. height: math.unit(150, "mm"),
  32612. default: true
  32613. },
  32614. ]
  32615. ))
  32616. characterMakers.push(() => makeCharacter(
  32617. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  32618. {
  32619. front: {
  32620. height: math.unit(6, "feet"),
  32621. weight: math.unit(150, "lb"),
  32622. name: "Front",
  32623. image: {
  32624. source: "./media/characters/casselene-yaro/front.svg",
  32625. extra: 4721 / 4541,
  32626. bottom: 82 / 4803
  32627. }
  32628. },
  32629. back: {
  32630. height: math.unit(6, "feet"),
  32631. weight: math.unit(150, "lb"),
  32632. name: "Back",
  32633. image: {
  32634. source: "./media/characters/casselene-yaro/back.svg",
  32635. extra: 4569 / 4377,
  32636. bottom: 69 / 4638
  32637. }
  32638. },
  32639. dressed: {
  32640. height: math.unit(6, "feet"),
  32641. weight: math.unit(150, "lb"),
  32642. name: "Dressed",
  32643. image: {
  32644. source: "./media/characters/casselene-yaro/dressed.svg",
  32645. extra: 4721 / 4541,
  32646. bottom: 82 / 4803
  32647. }
  32648. },
  32649. maw: {
  32650. height: math.unit(1, "feet"),
  32651. name: "Maw",
  32652. image: {
  32653. source: "./media/characters/casselene-yaro/maw.svg"
  32654. }
  32655. },
  32656. },
  32657. [
  32658. {
  32659. name: "Macro",
  32660. height: math.unit(190, "feet"),
  32661. default: true
  32662. },
  32663. ]
  32664. ))
  32665. characterMakers.push(() => makeCharacter(
  32666. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  32667. {
  32668. front: {
  32669. height: math.unit(10, "feet"),
  32670. weight: math.unit(15015, "lb"),
  32671. name: "Front",
  32672. image: {
  32673. source: "./media/characters/platine/front.svg",
  32674. extra: 1741/1650,
  32675. bottom: 84/1825
  32676. }
  32677. },
  32678. side: {
  32679. height: math.unit(10, "feet"),
  32680. weight: math.unit(15015, "lb"),
  32681. name: "Side",
  32682. image: {
  32683. source: "./media/characters/platine/side.svg",
  32684. extra: 1790/1705,
  32685. bottom: 29/1819
  32686. }
  32687. },
  32688. },
  32689. [
  32690. {
  32691. name: "Normal",
  32692. height: math.unit(10, "feet"),
  32693. default: true
  32694. },
  32695. {
  32696. name: "Macro",
  32697. height: math.unit(100, "feet")
  32698. },
  32699. {
  32700. name: "Megamacro",
  32701. height: math.unit(1000, "feet")
  32702. },
  32703. ]
  32704. ))
  32705. characterMakers.push(() => makeCharacter(
  32706. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  32707. {
  32708. front: {
  32709. height: math.unit(15 + 5 / 12, "feet"),
  32710. weight: math.unit(4600, "lb"),
  32711. name: "Front",
  32712. image: {
  32713. source: "./media/characters/neapolitan-ananassa/front.svg",
  32714. extra: 2903 / 2736,
  32715. bottom: 0 / 2903
  32716. }
  32717. },
  32718. side: {
  32719. height: math.unit(15 + 5 / 12, "feet"),
  32720. weight: math.unit(4600, "lb"),
  32721. name: "Side",
  32722. image: {
  32723. source: "./media/characters/neapolitan-ananassa/side.svg",
  32724. extra: 2925 / 2719,
  32725. bottom: 0 / 2925
  32726. }
  32727. },
  32728. back: {
  32729. height: math.unit(15 + 5 / 12, "feet"),
  32730. weight: math.unit(4600, "lb"),
  32731. name: "Back",
  32732. image: {
  32733. source: "./media/characters/neapolitan-ananassa/back.svg",
  32734. extra: 2903 / 2736,
  32735. bottom: 0 / 2903
  32736. }
  32737. },
  32738. },
  32739. [
  32740. {
  32741. name: "Normal",
  32742. height: math.unit(15 + 5 / 12, "feet"),
  32743. default: true
  32744. },
  32745. {
  32746. name: "Post-Millenium",
  32747. height: math.unit(35 + 5 / 12, "feet")
  32748. },
  32749. {
  32750. name: "Post-Era",
  32751. height: math.unit(450 + 5 / 12, "feet")
  32752. },
  32753. ]
  32754. ))
  32755. characterMakers.push(() => makeCharacter(
  32756. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  32757. {
  32758. front: {
  32759. height: math.unit(300, "meters"),
  32760. weight: math.unit(125000, "tonnes"),
  32761. name: "Front",
  32762. image: {
  32763. source: "./media/characters/pazuzu/front.svg",
  32764. extra: 877 / 794,
  32765. bottom: 47 / 924
  32766. }
  32767. },
  32768. },
  32769. [
  32770. {
  32771. name: "Macro",
  32772. height: math.unit(300, "meters"),
  32773. default: true
  32774. },
  32775. ]
  32776. ))
  32777. characterMakers.push(() => makeCharacter(
  32778. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  32779. {
  32780. side: {
  32781. height: math.unit(10 + 7 / 12, "feet"),
  32782. weight: math.unit(2.5, "tons"),
  32783. name: "Side",
  32784. image: {
  32785. source: "./media/characters/aasha/side.svg",
  32786. extra: 1345 / 1245,
  32787. bottom: 111 / 1456
  32788. }
  32789. },
  32790. back: {
  32791. height: math.unit(10 + 7 / 12, "feet"),
  32792. weight: math.unit(2.5, "tons"),
  32793. name: "Back",
  32794. image: {
  32795. source: "./media/characters/aasha/back.svg",
  32796. extra: 1133 / 1057,
  32797. bottom: 257 / 1390
  32798. }
  32799. },
  32800. },
  32801. [
  32802. {
  32803. name: "Normal",
  32804. height: math.unit(10 + 7 / 12, "feet"),
  32805. default: true
  32806. },
  32807. ]
  32808. ))
  32809. characterMakers.push(() => makeCharacter(
  32810. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  32811. {
  32812. front: {
  32813. height: math.unit(6 + 3 / 12, "feet"),
  32814. name: "Front",
  32815. image: {
  32816. source: "./media/characters/nevan/front.svg",
  32817. extra: 704 / 704,
  32818. bottom: 28 / 732
  32819. }
  32820. },
  32821. back: {
  32822. height: math.unit(6 + 3 / 12, "feet"),
  32823. name: "Back",
  32824. image: {
  32825. source: "./media/characters/nevan/back.svg",
  32826. extra: 714 / 714,
  32827. bottom: 21 / 735
  32828. }
  32829. },
  32830. frontFlaccid: {
  32831. height: math.unit(6 + 3 / 12, "feet"),
  32832. name: "Front (Flaccid)",
  32833. image: {
  32834. source: "./media/characters/nevan/front-flaccid.svg",
  32835. extra: 704 / 704,
  32836. bottom: 28 / 732
  32837. }
  32838. },
  32839. frontErect: {
  32840. height: math.unit(6 + 3 / 12, "feet"),
  32841. name: "Front (Erect)",
  32842. image: {
  32843. source: "./media/characters/nevan/front-erect.svg",
  32844. extra: 704 / 704,
  32845. bottom: 28 / 732
  32846. }
  32847. },
  32848. backFlaccid: {
  32849. height: math.unit(6 + 3 / 12, "feet"),
  32850. name: "Back (Flaccid)",
  32851. image: {
  32852. source: "./media/characters/nevan/back-flaccid.svg",
  32853. extra: 714 / 714,
  32854. bottom: 21 / 735
  32855. }
  32856. },
  32857. },
  32858. [
  32859. {
  32860. name: "Normal",
  32861. height: math.unit(6 + 3 / 12, "feet"),
  32862. default: true
  32863. },
  32864. ]
  32865. ))
  32866. characterMakers.push(() => makeCharacter(
  32867. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  32868. {
  32869. front: {
  32870. height: math.unit(4, "feet"),
  32871. name: "Front",
  32872. image: {
  32873. source: "./media/characters/arhan/front.svg",
  32874. extra: 3368 / 3133,
  32875. bottom: 0 / 3368
  32876. }
  32877. },
  32878. side: {
  32879. height: math.unit(4, "feet"),
  32880. name: "Side",
  32881. image: {
  32882. source: "./media/characters/arhan/side.svg",
  32883. extra: 3347 / 3105,
  32884. bottom: 0 / 3347
  32885. }
  32886. },
  32887. tongue: {
  32888. height: math.unit(1.42, "feet"),
  32889. name: "Tongue",
  32890. image: {
  32891. source: "./media/characters/arhan/tongue.svg"
  32892. }
  32893. },
  32894. head: {
  32895. height: math.unit(0.85, "feet"),
  32896. name: "Head",
  32897. image: {
  32898. source: "./media/characters/arhan/head.svg"
  32899. }
  32900. },
  32901. },
  32902. [
  32903. {
  32904. name: "Normal",
  32905. height: math.unit(4, "feet"),
  32906. default: true
  32907. },
  32908. ]
  32909. ))
  32910. characterMakers.push(() => makeCharacter(
  32911. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  32912. {
  32913. front: {
  32914. height: math.unit(5 + 7.5 / 12, "feet"),
  32915. weight: math.unit(120, "lb"),
  32916. name: "Front",
  32917. image: {
  32918. source: "./media/characters/digi-duncan/front.svg",
  32919. extra: 330 / 326,
  32920. bottom: 16 / 346
  32921. }
  32922. },
  32923. side: {
  32924. height: math.unit(5 + 7.5 / 12, "feet"),
  32925. weight: math.unit(120, "lb"),
  32926. name: "Side",
  32927. image: {
  32928. source: "./media/characters/digi-duncan/side.svg",
  32929. extra: 341 / 337,
  32930. bottom: 1 / 342
  32931. }
  32932. },
  32933. back: {
  32934. height: math.unit(5 + 7.5 / 12, "feet"),
  32935. weight: math.unit(120, "lb"),
  32936. name: "Back",
  32937. image: {
  32938. source: "./media/characters/digi-duncan/back.svg",
  32939. extra: 330 / 326,
  32940. bottom: 12 / 342
  32941. }
  32942. },
  32943. },
  32944. [
  32945. {
  32946. name: "Speck",
  32947. height: math.unit(0.25, "mm")
  32948. },
  32949. {
  32950. name: "Micro",
  32951. height: math.unit(5, "mm")
  32952. },
  32953. {
  32954. name: "Tiny",
  32955. height: math.unit(0.5, "inches"),
  32956. default: true
  32957. },
  32958. {
  32959. name: "Human",
  32960. height: math.unit(5 + 7.5 / 12, "feet")
  32961. },
  32962. {
  32963. name: "Minigiant",
  32964. height: math.unit(8 + 5.25, "feet")
  32965. },
  32966. {
  32967. name: "Giant",
  32968. height: math.unit(2000, "feet")
  32969. },
  32970. {
  32971. name: "Mega",
  32972. height: math.unit(371.1, "miles")
  32973. },
  32974. ]
  32975. ))
  32976. characterMakers.push(() => makeCharacter(
  32977. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  32978. {
  32979. front: {
  32980. height: math.unit(2, "meters"),
  32981. weight: math.unit(350, "kg"),
  32982. name: "Front",
  32983. image: {
  32984. source: "./media/characters/jagaz-soulbreaker/front.svg",
  32985. extra: 898 / 838,
  32986. bottom: 9 / 907
  32987. }
  32988. },
  32989. },
  32990. [
  32991. {
  32992. name: "Micro",
  32993. height: math.unit(8, "meters")
  32994. },
  32995. {
  32996. name: "Normal",
  32997. height: math.unit(50, "meters"),
  32998. default: true
  32999. },
  33000. {
  33001. name: "Macro",
  33002. height: math.unit(500, "meters")
  33003. },
  33004. ]
  33005. ))
  33006. characterMakers.push(() => makeCharacter(
  33007. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  33008. {
  33009. front: {
  33010. height: math.unit(6 + 6 / 12, "feet"),
  33011. name: "Front",
  33012. image: {
  33013. source: "./media/characters/khardesh/front.svg",
  33014. extra: 1788/1596,
  33015. bottom: 66/1854
  33016. }
  33017. },
  33018. back: {
  33019. height: math.unit(6 + 6 / 12, "feet"),
  33020. name: "Back",
  33021. image: {
  33022. source: "./media/characters/khardesh/back.svg",
  33023. extra: 1781/1584,
  33024. bottom: 68/1849
  33025. }
  33026. },
  33027. },
  33028. [
  33029. {
  33030. name: "Normal",
  33031. height: math.unit(6 + 6 / 12, "feet"),
  33032. default: true
  33033. },
  33034. {
  33035. name: "Normal+",
  33036. height: math.unit(4, "meters")
  33037. },
  33038. {
  33039. name: "Macro",
  33040. height: math.unit(50, "meters")
  33041. },
  33042. {
  33043. name: "Macro+",
  33044. height: math.unit(100, "meters")
  33045. },
  33046. {
  33047. name: "Megamacro",
  33048. height: math.unit(20, "km")
  33049. },
  33050. ]
  33051. ))
  33052. characterMakers.push(() => makeCharacter(
  33053. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  33054. {
  33055. front: {
  33056. height: math.unit(6, "feet"),
  33057. weight: math.unit(150, "lb"),
  33058. name: "Front",
  33059. image: {
  33060. source: "./media/characters/kosho/front.svg",
  33061. extra: 1847 / 1847,
  33062. bottom: 86 / 1933
  33063. }
  33064. },
  33065. },
  33066. [
  33067. {
  33068. name: "Second-stage micro",
  33069. height: math.unit(0.5, "inches")
  33070. },
  33071. {
  33072. name: "First-stage micro",
  33073. height: math.unit(6, "inches")
  33074. },
  33075. {
  33076. name: "Normal",
  33077. height: math.unit(6, "feet"),
  33078. default: true
  33079. },
  33080. {
  33081. name: "First-stage macro",
  33082. height: math.unit(72, "feet")
  33083. },
  33084. {
  33085. name: "Second-stage macro",
  33086. height: math.unit(864, "feet")
  33087. },
  33088. ]
  33089. ))
  33090. characterMakers.push(() => makeCharacter(
  33091. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  33092. {
  33093. normal: {
  33094. height: math.unit(4 + 6 / 12, "feet"),
  33095. name: "Normal",
  33096. image: {
  33097. source: "./media/characters/hydra/normal.svg",
  33098. extra: 2833 / 2634,
  33099. bottom: 68 / 2901
  33100. }
  33101. },
  33102. smol: {
  33103. height: math.unit(0.705, "inches"),
  33104. name: "Smol",
  33105. image: {
  33106. source: "./media/characters/hydra/smol.svg",
  33107. extra: 2715 / 2540,
  33108. bottom: 0 / 2715
  33109. }
  33110. },
  33111. },
  33112. [
  33113. {
  33114. name: "Normal",
  33115. height: math.unit(4 + 6 / 12, "feet"),
  33116. default: true
  33117. }
  33118. ]
  33119. ))
  33120. characterMakers.push(() => makeCharacter(
  33121. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  33122. {
  33123. front: {
  33124. height: math.unit(0.6, "cm"),
  33125. name: "Front",
  33126. image: {
  33127. source: "./media/characters/daz/front.svg",
  33128. extra: 1682 / 1164,
  33129. bottom: 42 / 1724
  33130. }
  33131. },
  33132. },
  33133. [
  33134. {
  33135. name: "Normal",
  33136. height: math.unit(0.6, "cm"),
  33137. default: true
  33138. },
  33139. ]
  33140. ))
  33141. characterMakers.push(() => makeCharacter(
  33142. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  33143. {
  33144. front: {
  33145. height: math.unit(6, "feet"),
  33146. weight: math.unit(235, "lb"),
  33147. name: "Front",
  33148. image: {
  33149. source: "./media/characters/theo-pangolin/front.svg",
  33150. extra: 1996 / 1969,
  33151. bottom: 115 / 2111
  33152. }
  33153. },
  33154. back: {
  33155. height: math.unit(6, "feet"),
  33156. weight: math.unit(235, "lb"),
  33157. name: "Back",
  33158. image: {
  33159. source: "./media/characters/theo-pangolin/back.svg",
  33160. extra: 1979 / 1979,
  33161. bottom: 40 / 2019
  33162. }
  33163. },
  33164. feral: {
  33165. height: math.unit(2, "feet"),
  33166. weight: math.unit(30, "lb"),
  33167. name: "Feral",
  33168. image: {
  33169. source: "./media/characters/theo-pangolin/feral.svg",
  33170. extra: 803 / 791,
  33171. bottom: 181 / 984
  33172. }
  33173. },
  33174. footFive: {
  33175. height: math.unit(1.43, "feet"),
  33176. name: "Foot (Five Toes)",
  33177. image: {
  33178. source: "./media/characters/theo-pangolin/foot-five.svg"
  33179. }
  33180. },
  33181. footFour: {
  33182. height: math.unit(1.43, "feet"),
  33183. name: "Foot (Four Toes)",
  33184. image: {
  33185. source: "./media/characters/theo-pangolin/foot-four.svg"
  33186. }
  33187. },
  33188. handFour: {
  33189. height: math.unit(0.81, "feet"),
  33190. name: "Hand (Four Fingers)",
  33191. image: {
  33192. source: "./media/characters/theo-pangolin/hand-four.svg"
  33193. }
  33194. },
  33195. handThree: {
  33196. height: math.unit(0.81, "feet"),
  33197. name: "Hand (Three Fingers)",
  33198. image: {
  33199. source: "./media/characters/theo-pangolin/hand-three.svg"
  33200. }
  33201. },
  33202. headFront: {
  33203. height: math.unit(1.37, "feet"),
  33204. name: "Head (Front)",
  33205. image: {
  33206. source: "./media/characters/theo-pangolin/head-front.svg"
  33207. }
  33208. },
  33209. headSide: {
  33210. height: math.unit(1.43, "feet"),
  33211. name: "Head (Side)",
  33212. image: {
  33213. source: "./media/characters/theo-pangolin/head-side.svg"
  33214. }
  33215. },
  33216. tongue: {
  33217. height: math.unit(2.29, "feet"),
  33218. name: "Tongue",
  33219. image: {
  33220. source: "./media/characters/theo-pangolin/tongue.svg"
  33221. }
  33222. },
  33223. },
  33224. [
  33225. {
  33226. name: "Normal",
  33227. height: math.unit(6, "feet")
  33228. },
  33229. {
  33230. name: "Macro",
  33231. height: math.unit(400, "feet"),
  33232. default: true
  33233. },
  33234. ]
  33235. ))
  33236. characterMakers.push(() => makeCharacter(
  33237. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  33238. {
  33239. front: {
  33240. height: math.unit(6, "inches"),
  33241. weight: math.unit(0.036, "kg"),
  33242. name: "Front",
  33243. image: {
  33244. source: "./media/characters/renée/front.svg",
  33245. extra: 900 / 886,
  33246. bottom: 8 / 908
  33247. }
  33248. },
  33249. },
  33250. [
  33251. {
  33252. name: "Nano",
  33253. height: math.unit(1, "nm")
  33254. },
  33255. {
  33256. name: "Micro",
  33257. height: math.unit(1, "mm")
  33258. },
  33259. {
  33260. name: "Normal",
  33261. height: math.unit(6, "inches")
  33262. },
  33263. {
  33264. name: "Macro",
  33265. height: math.unit(2000, "feet"),
  33266. default: true
  33267. },
  33268. {
  33269. name: "Megamacro",
  33270. height: math.unit(2, "km")
  33271. },
  33272. {
  33273. name: "Gigamacro",
  33274. height: math.unit(2000, "km")
  33275. },
  33276. {
  33277. name: "Teramacro",
  33278. height: math.unit(250000, "km")
  33279. },
  33280. ]
  33281. ))
  33282. characterMakers.push(() => makeCharacter(
  33283. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  33284. {
  33285. front: {
  33286. height: math.unit(4, "meters"),
  33287. weight: math.unit(150, "kg"),
  33288. name: "Front",
  33289. image: {
  33290. source: "./media/characters/caledvwlch/front.svg",
  33291. extra: 1757/1537,
  33292. bottom: 31/1788
  33293. }
  33294. },
  33295. side: {
  33296. height: math.unit(4, "meters"),
  33297. weight: math.unit(150, "kg"),
  33298. name: "Side",
  33299. image: {
  33300. source: "./media/characters/caledvwlch/side.svg",
  33301. extra: 1605 / 1536,
  33302. bottom: 31 / 1636
  33303. }
  33304. },
  33305. back: {
  33306. height: math.unit(4, "meters"),
  33307. weight: math.unit(150, "kg"),
  33308. name: "Back",
  33309. image: {
  33310. source: "./media/characters/caledvwlch/back.svg",
  33311. extra: 1635 / 1565,
  33312. bottom: 27 / 1662
  33313. }
  33314. },
  33315. },
  33316. [
  33317. {
  33318. name: "\"Incognito\"",
  33319. height: math.unit(4, "meters")
  33320. },
  33321. {
  33322. name: "Small rampage",
  33323. height: math.unit(600, "meters")
  33324. },
  33325. {
  33326. name: "Mega",
  33327. height: math.unit(30, "km")
  33328. },
  33329. {
  33330. name: "Home-size",
  33331. height: math.unit(50, "km"),
  33332. default: true
  33333. },
  33334. {
  33335. name: "Giga",
  33336. height: math.unit(300, "km")
  33337. },
  33338. {
  33339. name: "Lounging",
  33340. height: math.unit(11000, "km")
  33341. },
  33342. {
  33343. name: "Planet snacking",
  33344. height: math.unit(2000000, "km")
  33345. },
  33346. ]
  33347. ))
  33348. characterMakers.push(() => makeCharacter(
  33349. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  33350. {
  33351. front: {
  33352. height: math.unit(6, "feet"),
  33353. weight: math.unit(215, "lb"),
  33354. name: "Front",
  33355. image: {
  33356. source: "./media/characters/sapphire-svell/front.svg",
  33357. extra: 495 / 455,
  33358. bottom: 20 / 515
  33359. }
  33360. },
  33361. back: {
  33362. height: math.unit(6, "feet"),
  33363. weight: math.unit(216, "lb"),
  33364. name: "Back",
  33365. image: {
  33366. source: "./media/characters/sapphire-svell/back.svg",
  33367. extra: 497 / 477,
  33368. bottom: 7 / 504
  33369. }
  33370. },
  33371. maw: {
  33372. height: math.unit(1.57, "feet"),
  33373. name: "Maw",
  33374. image: {
  33375. source: "./media/characters/sapphire-svell/maw.svg"
  33376. }
  33377. },
  33378. foot: {
  33379. height: math.unit(1.07, "feet"),
  33380. name: "Foot",
  33381. image: {
  33382. source: "./media/characters/sapphire-svell/foot.svg"
  33383. }
  33384. },
  33385. toering: {
  33386. height: math.unit(1.7, "inch"),
  33387. name: "Toering",
  33388. image: {
  33389. source: "./media/characters/sapphire-svell/toering.svg"
  33390. }
  33391. },
  33392. },
  33393. [
  33394. {
  33395. name: "Normal",
  33396. height: math.unit(300, "feet"),
  33397. default: true
  33398. },
  33399. {
  33400. name: "Augmented",
  33401. height: math.unit(1250, "feet")
  33402. },
  33403. {
  33404. name: "Unleashed",
  33405. height: math.unit(3000, "feet")
  33406. },
  33407. ]
  33408. ))
  33409. characterMakers.push(() => makeCharacter(
  33410. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  33411. {
  33412. side: {
  33413. height: math.unit(2 + 3 / 12, "feet"),
  33414. weight: math.unit(110, "lb"),
  33415. name: "Side",
  33416. image: {
  33417. source: "./media/characters/glitch-flux/side.svg",
  33418. extra: 997 / 805,
  33419. bottom: 20 / 1017
  33420. }
  33421. },
  33422. },
  33423. [
  33424. {
  33425. name: "Normal",
  33426. height: math.unit(2 + 3 / 12, "feet"),
  33427. default: true
  33428. },
  33429. ]
  33430. ))
  33431. characterMakers.push(() => makeCharacter(
  33432. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  33433. {
  33434. front: {
  33435. height: math.unit(4, "meters"),
  33436. name: "Front",
  33437. image: {
  33438. source: "./media/characters/mid/front.svg",
  33439. extra: 507 / 476,
  33440. bottom: 17 / 524
  33441. }
  33442. },
  33443. back: {
  33444. height: math.unit(4, "meters"),
  33445. name: "Back",
  33446. image: {
  33447. source: "./media/characters/mid/back.svg",
  33448. extra: 519 / 487,
  33449. bottom: 7 / 526
  33450. }
  33451. },
  33452. stuck: {
  33453. height: math.unit(2.2, "meters"),
  33454. name: "Stuck",
  33455. image: {
  33456. source: "./media/characters/mid/stuck.svg",
  33457. extra: 1951 / 1869,
  33458. bottom: 88 / 2039
  33459. }
  33460. }
  33461. },
  33462. [
  33463. {
  33464. name: "Normal",
  33465. height: math.unit(4, "meters"),
  33466. default: true
  33467. },
  33468. {
  33469. name: "Big",
  33470. height: math.unit(10, "meters")
  33471. },
  33472. {
  33473. name: "Macro",
  33474. height: math.unit(800, "meters")
  33475. },
  33476. {
  33477. name: "Megamacro",
  33478. height: math.unit(100, "km")
  33479. },
  33480. {
  33481. name: "Overgrown",
  33482. height: math.unit(1, "parsec")
  33483. },
  33484. ]
  33485. ))
  33486. characterMakers.push(() => makeCharacter(
  33487. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  33488. {
  33489. front: {
  33490. height: math.unit(2.5, "meters"),
  33491. weight: math.unit(225, "kg"),
  33492. name: "Front",
  33493. image: {
  33494. source: "./media/characters/iris/front.svg",
  33495. extra: 3348 / 3251,
  33496. bottom: 205 / 3553
  33497. }
  33498. },
  33499. maw: {
  33500. height: math.unit(0.56, "meter"),
  33501. name: "Maw",
  33502. image: {
  33503. source: "./media/characters/iris/maw.svg"
  33504. }
  33505. },
  33506. },
  33507. [
  33508. {
  33509. name: "Mewter cat",
  33510. height: math.unit(1.2, "meters")
  33511. },
  33512. {
  33513. name: "Normal",
  33514. height: math.unit(2.5, "meters"),
  33515. default: true
  33516. },
  33517. {
  33518. name: "Minimacro",
  33519. height: math.unit(18, "feet")
  33520. },
  33521. {
  33522. name: "Macro",
  33523. height: math.unit(140, "feet")
  33524. },
  33525. {
  33526. name: "Macro+",
  33527. height: math.unit(180, "meters")
  33528. },
  33529. {
  33530. name: "Megamacro",
  33531. height: math.unit(2746, "meters")
  33532. },
  33533. ]
  33534. ))
  33535. characterMakers.push(() => makeCharacter(
  33536. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  33537. {
  33538. front: {
  33539. height: math.unit(6, "feet"),
  33540. weight: math.unit(135, "lb"),
  33541. name: "Front",
  33542. image: {
  33543. source: "./media/characters/axel/front.svg",
  33544. extra: 908 / 908,
  33545. bottom: 58 / 966
  33546. }
  33547. },
  33548. side: {
  33549. height: math.unit(6, "feet"),
  33550. weight: math.unit(135, "lb"),
  33551. name: "Side",
  33552. image: {
  33553. source: "./media/characters/axel/side.svg",
  33554. extra: 958 / 958,
  33555. bottom: 11 / 969
  33556. }
  33557. },
  33558. back: {
  33559. height: math.unit(6, "feet"),
  33560. weight: math.unit(135, "lb"),
  33561. name: "Back",
  33562. image: {
  33563. source: "./media/characters/axel/back.svg",
  33564. extra: 887 / 887,
  33565. bottom: 34 / 921
  33566. }
  33567. },
  33568. head: {
  33569. height: math.unit(1.07, "feet"),
  33570. name: "Head",
  33571. image: {
  33572. source: "./media/characters/axel/head.svg"
  33573. }
  33574. },
  33575. beak: {
  33576. height: math.unit(1.4, "feet"),
  33577. name: "Beak",
  33578. image: {
  33579. source: "./media/characters/axel/beak.svg"
  33580. }
  33581. },
  33582. beakSide: {
  33583. height: math.unit(1.4, "feet"),
  33584. name: "Beak Side",
  33585. image: {
  33586. source: "./media/characters/axel/beak-side.svg"
  33587. }
  33588. },
  33589. sheath: {
  33590. height: math.unit(0.5, "feet"),
  33591. name: "Sheath",
  33592. image: {
  33593. source: "./media/characters/axel/sheath.svg"
  33594. }
  33595. },
  33596. dick: {
  33597. height: math.unit(0.98, "feet"),
  33598. name: "Dick",
  33599. image: {
  33600. source: "./media/characters/axel/dick.svg"
  33601. }
  33602. },
  33603. },
  33604. [
  33605. {
  33606. name: "Macro",
  33607. height: math.unit(68, "meters"),
  33608. default: true
  33609. },
  33610. ]
  33611. ))
  33612. characterMakers.push(() => makeCharacter(
  33613. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  33614. {
  33615. front: {
  33616. height: math.unit(3.5, "meters"),
  33617. weight: math.unit(1200, "kg"),
  33618. name: "Front",
  33619. image: {
  33620. source: "./media/characters/joanna/front.svg",
  33621. extra: 1596 / 1488,
  33622. bottom: 29 / 1625
  33623. }
  33624. },
  33625. back: {
  33626. height: math.unit(3.5, "meters"),
  33627. weight: math.unit(1200, "kg"),
  33628. name: "Back",
  33629. image: {
  33630. source: "./media/characters/joanna/back.svg",
  33631. extra: 1594 / 1495,
  33632. bottom: 26 / 1620
  33633. }
  33634. },
  33635. frontShorts: {
  33636. height: math.unit(3.5, "meters"),
  33637. weight: math.unit(1200, "kg"),
  33638. name: "Front (Shorts)",
  33639. image: {
  33640. source: "./media/characters/joanna/front-shorts.svg",
  33641. extra: 1596 / 1488,
  33642. bottom: 29 / 1625
  33643. }
  33644. },
  33645. frontBiker: {
  33646. height: math.unit(3.5, "meters"),
  33647. weight: math.unit(1200, "kg"),
  33648. name: "Front (Biker)",
  33649. image: {
  33650. source: "./media/characters/joanna/front-biker.svg",
  33651. extra: 1596 / 1488,
  33652. bottom: 29 / 1625
  33653. }
  33654. },
  33655. backBiker: {
  33656. height: math.unit(3.5, "meters"),
  33657. weight: math.unit(1200, "kg"),
  33658. name: "Back (Biker)",
  33659. image: {
  33660. source: "./media/characters/joanna/back-biker.svg",
  33661. extra: 1594 / 1495,
  33662. bottom: 88 / 1682
  33663. }
  33664. },
  33665. bikeLeft: {
  33666. height: math.unit(2.4, "meters"),
  33667. weight: math.unit(1600, "kg"),
  33668. name: "Bike (Left)",
  33669. image: {
  33670. source: "./media/characters/joanna/bike-left.svg",
  33671. extra: 720 / 720,
  33672. bottom: 8 / 728
  33673. }
  33674. },
  33675. bikeRight: {
  33676. height: math.unit(2.4, "meters"),
  33677. weight: math.unit(1600, "kg"),
  33678. name: "Bike (Right)",
  33679. image: {
  33680. source: "./media/characters/joanna/bike-right.svg",
  33681. extra: 720 / 720,
  33682. bottom: 8 / 728
  33683. }
  33684. },
  33685. },
  33686. [
  33687. {
  33688. name: "Incognito",
  33689. height: math.unit(3.5, "meters")
  33690. },
  33691. {
  33692. name: "Casual Big",
  33693. height: math.unit(200, "meters")
  33694. },
  33695. {
  33696. name: "Macro",
  33697. height: math.unit(600, "meters")
  33698. },
  33699. {
  33700. name: "Original",
  33701. height: math.unit(20, "km"),
  33702. default: true
  33703. },
  33704. {
  33705. name: "Giga",
  33706. height: math.unit(400, "km")
  33707. },
  33708. {
  33709. name: "Lounging",
  33710. height: math.unit(1500, "km")
  33711. },
  33712. {
  33713. name: "Planetary",
  33714. height: math.unit(200000, "km")
  33715. },
  33716. ]
  33717. ))
  33718. characterMakers.push(() => makeCharacter(
  33719. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  33720. {
  33721. front: {
  33722. height: math.unit(6, "feet"),
  33723. weight: math.unit(150, "lb"),
  33724. name: "Front",
  33725. image: {
  33726. source: "./media/characters/hugo-sigil/front.svg",
  33727. extra: 522 / 500,
  33728. bottom: 2 / 524
  33729. }
  33730. },
  33731. back: {
  33732. height: math.unit(6, "feet"),
  33733. weight: math.unit(150, "lb"),
  33734. name: "Back",
  33735. image: {
  33736. source: "./media/characters/hugo-sigil/back.svg",
  33737. extra: 519 / 495,
  33738. bottom: 5 / 524
  33739. }
  33740. },
  33741. maw: {
  33742. height: math.unit(1.4, "feet"),
  33743. weight: math.unit(150, "lb"),
  33744. name: "Maw",
  33745. image: {
  33746. source: "./media/characters/hugo-sigil/maw.svg"
  33747. }
  33748. },
  33749. feet: {
  33750. height: math.unit(1.56, "feet"),
  33751. weight: math.unit(150, "lb"),
  33752. name: "Feet",
  33753. image: {
  33754. source: "./media/characters/hugo-sigil/feet.svg",
  33755. extra: 177 / 177,
  33756. bottom: 12 / 189
  33757. }
  33758. },
  33759. },
  33760. [
  33761. {
  33762. name: "Normal",
  33763. height: math.unit(6, "feet")
  33764. },
  33765. {
  33766. name: "Macro",
  33767. height: math.unit(200, "feet"),
  33768. default: true
  33769. },
  33770. ]
  33771. ))
  33772. characterMakers.push(() => makeCharacter(
  33773. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  33774. {
  33775. front: {
  33776. height: math.unit(6, "feet"),
  33777. weight: math.unit(150, "lb"),
  33778. name: "Front",
  33779. image: {
  33780. source: "./media/characters/peri/front.svg",
  33781. extra: 2354 / 2233,
  33782. bottom: 49 / 2403
  33783. }
  33784. },
  33785. },
  33786. [
  33787. {
  33788. name: "Really Small",
  33789. height: math.unit(1, "nm")
  33790. },
  33791. {
  33792. name: "Micro",
  33793. height: math.unit(4, "inches")
  33794. },
  33795. {
  33796. name: "Normal",
  33797. height: math.unit(7, "inches"),
  33798. default: true
  33799. },
  33800. {
  33801. name: "Macro",
  33802. height: math.unit(400, "feet")
  33803. },
  33804. {
  33805. name: "Megamacro",
  33806. height: math.unit(100, "miles")
  33807. },
  33808. ]
  33809. ))
  33810. characterMakers.push(() => makeCharacter(
  33811. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  33812. {
  33813. frontSlim: {
  33814. height: math.unit(7, "feet"),
  33815. name: "Front (Slim)",
  33816. image: {
  33817. source: "./media/characters/issilora/front-slim.svg",
  33818. extra: 529 / 449,
  33819. bottom: 53 / 582
  33820. }
  33821. },
  33822. sideSlim: {
  33823. height: math.unit(7, "feet"),
  33824. name: "Side (Slim)",
  33825. image: {
  33826. source: "./media/characters/issilora/side-slim.svg",
  33827. extra: 570 / 480,
  33828. bottom: 30 / 600
  33829. }
  33830. },
  33831. backSlim: {
  33832. height: math.unit(7, "feet"),
  33833. name: "Back (Slim)",
  33834. image: {
  33835. source: "./media/characters/issilora/back-slim.svg",
  33836. extra: 537 / 455,
  33837. bottom: 46 / 583
  33838. }
  33839. },
  33840. frontBuff: {
  33841. height: math.unit(7, "feet"),
  33842. name: "Front (Buff)",
  33843. image: {
  33844. source: "./media/characters/issilora/front-buff.svg",
  33845. extra: 2310 / 2035,
  33846. bottom: 335 / 2645
  33847. }
  33848. },
  33849. head: {
  33850. height: math.unit(1.94, "feet"),
  33851. name: "Head",
  33852. image: {
  33853. source: "./media/characters/issilora/head.svg"
  33854. }
  33855. },
  33856. },
  33857. [
  33858. {
  33859. name: "Minimum",
  33860. height: math.unit(7, "feet")
  33861. },
  33862. {
  33863. name: "Comfortable",
  33864. height: math.unit(17, "feet")
  33865. },
  33866. {
  33867. name: "Fun Size",
  33868. height: math.unit(47, "feet")
  33869. },
  33870. {
  33871. name: "Natural Macro",
  33872. height: math.unit(137, "feet"),
  33873. default: true
  33874. },
  33875. {
  33876. name: "Maximum Kaiju",
  33877. height: math.unit(397, "feet")
  33878. },
  33879. ]
  33880. ))
  33881. characterMakers.push(() => makeCharacter(
  33882. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  33883. {
  33884. front: {
  33885. height: math.unit(50 + 9/12, "feet"),
  33886. weight: math.unit(32.8, "tons"),
  33887. name: "Front",
  33888. image: {
  33889. source: "./media/characters/irb'iiritaahn/front.svg",
  33890. extra: 1878/1826,
  33891. bottom: 326/2204
  33892. }
  33893. },
  33894. back: {
  33895. height: math.unit(50 + 9/12, "feet"),
  33896. weight: math.unit(32.8, "tons"),
  33897. name: "Back",
  33898. image: {
  33899. source: "./media/characters/irb'iiritaahn/back.svg",
  33900. extra: 2052/2018,
  33901. bottom: 152/2204
  33902. }
  33903. },
  33904. head: {
  33905. height: math.unit(12.86, "feet"),
  33906. name: "Head",
  33907. image: {
  33908. source: "./media/characters/irb'iiritaahn/head.svg"
  33909. }
  33910. },
  33911. maw: {
  33912. height: math.unit(9.66, "feet"),
  33913. name: "Maw",
  33914. image: {
  33915. source: "./media/characters/irb'iiritaahn/maw.svg"
  33916. }
  33917. },
  33918. frontDick: {
  33919. height: math.unit(8.78461, "feet"),
  33920. name: "Front Dick",
  33921. image: {
  33922. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  33923. }
  33924. },
  33925. rearDick: {
  33926. height: math.unit(8.78461, "feet"),
  33927. name: "Rear Dick",
  33928. image: {
  33929. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  33930. }
  33931. },
  33932. rearDickUnfolded: {
  33933. height: math.unit(8.78, "feet"),
  33934. name: "Rear Dick (Unfolded)",
  33935. image: {
  33936. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  33937. }
  33938. },
  33939. wings: {
  33940. height: math.unit(43, "feet"),
  33941. name: "Wings",
  33942. image: {
  33943. source: "./media/characters/irb'iiritaahn/wings.svg"
  33944. }
  33945. },
  33946. },
  33947. [
  33948. {
  33949. name: "Macro",
  33950. height: math.unit(50 + 9/12, "feet"),
  33951. default: true
  33952. },
  33953. ]
  33954. ))
  33955. characterMakers.push(() => makeCharacter(
  33956. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  33957. {
  33958. front: {
  33959. height: math.unit(205, "cm"),
  33960. weight: math.unit(102, "kg"),
  33961. name: "Front",
  33962. image: {
  33963. source: "./media/characters/irbisgreif/front.svg",
  33964. extra: 785/706,
  33965. bottom: 13/798
  33966. }
  33967. },
  33968. back: {
  33969. height: math.unit(205, "cm"),
  33970. weight: math.unit(102, "kg"),
  33971. name: "Back",
  33972. image: {
  33973. source: "./media/characters/irbisgreif/back.svg",
  33974. extra: 713/701,
  33975. bottom: 26/739
  33976. }
  33977. },
  33978. frontDressed: {
  33979. height: math.unit(216, "cm"),
  33980. weight: math.unit(102, "kg"),
  33981. name: "Front-dressed",
  33982. image: {
  33983. source: "./media/characters/irbisgreif/front-dressed.svg",
  33984. extra: 902/776,
  33985. bottom: 14/916
  33986. }
  33987. },
  33988. sideDressed: {
  33989. height: math.unit(195, "cm"),
  33990. weight: math.unit(102, "kg"),
  33991. name: "Side-dressed",
  33992. image: {
  33993. source: "./media/characters/irbisgreif/side-dressed.svg",
  33994. extra: 788/688,
  33995. bottom: 21/809
  33996. }
  33997. },
  33998. backDressed: {
  33999. height: math.unit(216, "cm"),
  34000. weight: math.unit(102, "kg"),
  34001. name: "Back-dressed",
  34002. image: {
  34003. source: "./media/characters/irbisgreif/back-dressed.svg",
  34004. extra: 901/783,
  34005. bottom: 10/911
  34006. }
  34007. },
  34008. dick: {
  34009. height: math.unit(0.49, "feet"),
  34010. name: "Dick",
  34011. image: {
  34012. source: "./media/characters/irbisgreif/dick.svg"
  34013. }
  34014. },
  34015. wingTop: {
  34016. height: math.unit(1.93 , "feet"),
  34017. name: "Wing-top",
  34018. image: {
  34019. source: "./media/characters/irbisgreif/wing-top.svg"
  34020. }
  34021. },
  34022. wingBottom: {
  34023. height: math.unit(1.93 , "feet"),
  34024. name: "Wing-bottom",
  34025. image: {
  34026. source: "./media/characters/irbisgreif/wing-bottom.svg"
  34027. }
  34028. },
  34029. },
  34030. [
  34031. {
  34032. name: "Normal",
  34033. height: math.unit(216, "cm"),
  34034. default: true
  34035. },
  34036. ]
  34037. ))
  34038. characterMakers.push(() => makeCharacter(
  34039. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  34040. {
  34041. front: {
  34042. height: math.unit(6, "feet"),
  34043. weight: math.unit(150, "lb"),
  34044. name: "Front",
  34045. image: {
  34046. source: "./media/characters/pride/front.svg",
  34047. extra: 1299/1230,
  34048. bottom: 18/1317
  34049. }
  34050. },
  34051. },
  34052. [
  34053. {
  34054. name: "Normal",
  34055. height: math.unit(7, "feet")
  34056. },
  34057. {
  34058. name: "Mini-macro",
  34059. height: math.unit(11, "feet")
  34060. },
  34061. {
  34062. name: "Macro",
  34063. height: math.unit(15, "meters"),
  34064. default: true
  34065. },
  34066. {
  34067. name: "Macro+",
  34068. height: math.unit(40, "meters")
  34069. },
  34070. ]
  34071. ))
  34072. characterMakers.push(() => makeCharacter(
  34073. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  34074. {
  34075. front: {
  34076. height: math.unit(4 + 2 / 12, "feet"),
  34077. weight: math.unit(95, "lb"),
  34078. name: "Front",
  34079. image: {
  34080. source: "./media/characters/vaelophis-nyx/front.svg",
  34081. extra: 2532/2330,
  34082. bottom: 0/2532
  34083. }
  34084. },
  34085. back: {
  34086. height: math.unit(4 + 2 / 12, "feet"),
  34087. weight: math.unit(95, "lb"),
  34088. name: "Back",
  34089. image: {
  34090. source: "./media/characters/vaelophis-nyx/back.svg",
  34091. extra: 2484/2361,
  34092. bottom: 0/2484
  34093. }
  34094. },
  34095. feralSide: {
  34096. height: math.unit(2 + 1/12, "feet"),
  34097. weight: math.unit(20, "lb"),
  34098. name: "Feral (Side)",
  34099. image: {
  34100. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  34101. extra: 1721/1581,
  34102. bottom: 70/1791
  34103. }
  34104. },
  34105. feralLazing: {
  34106. height: math.unit(1.08, "feet"),
  34107. weight: math.unit(20, "lb"),
  34108. name: "Feral (Lazing)",
  34109. image: {
  34110. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  34111. extra: 822/822,
  34112. bottom: 248/1070
  34113. }
  34114. },
  34115. ear: {
  34116. height: math.unit(0.416, "feet"),
  34117. name: "Ear",
  34118. image: {
  34119. source: "./media/characters/vaelophis-nyx/ear.svg"
  34120. }
  34121. },
  34122. eye: {
  34123. height: math.unit(0.0748, "feet"),
  34124. name: "Eye",
  34125. image: {
  34126. source: "./media/characters/vaelophis-nyx/eye.svg"
  34127. }
  34128. },
  34129. mouth: {
  34130. height: math.unit(0.378, "feet"),
  34131. name: "Mouth",
  34132. image: {
  34133. source: "./media/characters/vaelophis-nyx/mouth.svg"
  34134. }
  34135. },
  34136. spade: {
  34137. height: math.unit(0.55, "feet"),
  34138. name: "Spade",
  34139. image: {
  34140. source: "./media/characters/vaelophis-nyx/spade.svg"
  34141. }
  34142. },
  34143. },
  34144. [
  34145. {
  34146. name: "Normal",
  34147. height: math.unit(4 + 2/12, "feet"),
  34148. default: true
  34149. },
  34150. ]
  34151. ))
  34152. characterMakers.push(() => makeCharacter(
  34153. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  34154. {
  34155. front: {
  34156. height: math.unit(7, "feet"),
  34157. weight: math.unit(231, "lb"),
  34158. name: "Front",
  34159. image: {
  34160. source: "./media/characters/flux/front.svg",
  34161. extra: 919/871,
  34162. bottom: 0/919
  34163. }
  34164. },
  34165. back: {
  34166. height: math.unit(7, "feet"),
  34167. weight: math.unit(231, "lb"),
  34168. name: "Back",
  34169. image: {
  34170. source: "./media/characters/flux/back.svg",
  34171. extra: 1040/992,
  34172. bottom: 0/1040
  34173. }
  34174. },
  34175. frontDressed: {
  34176. height: math.unit(7, "feet"),
  34177. weight: math.unit(231, "lb"),
  34178. name: "Front (Dressed)",
  34179. image: {
  34180. source: "./media/characters/flux/front-dressed.svg",
  34181. extra: 919/871,
  34182. bottom: 0/919
  34183. }
  34184. },
  34185. feralSide: {
  34186. height: math.unit(5, "feet"),
  34187. weight: math.unit(150, "lb"),
  34188. name: "Feral (Side)",
  34189. image: {
  34190. source: "./media/characters/flux/feral-side.svg",
  34191. extra: 598/528,
  34192. bottom: 28/626
  34193. }
  34194. },
  34195. head: {
  34196. height: math.unit(1.585, "feet"),
  34197. name: "Head",
  34198. image: {
  34199. source: "./media/characters/flux/head.svg"
  34200. }
  34201. },
  34202. headSide: {
  34203. height: math.unit(1.74, "feet"),
  34204. name: "Head (Side)",
  34205. image: {
  34206. source: "./media/characters/flux/head-side.svg"
  34207. }
  34208. },
  34209. headSideFire: {
  34210. height: math.unit(1.76, "feet"),
  34211. name: "Head (Side, Fire)",
  34212. image: {
  34213. source: "./media/characters/flux/head-side-fire.svg"
  34214. }
  34215. },
  34216. },
  34217. [
  34218. {
  34219. name: "Normal",
  34220. height: math.unit(7, "feet"),
  34221. default: true
  34222. },
  34223. ]
  34224. ))
  34225. characterMakers.push(() => makeCharacter(
  34226. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  34227. {
  34228. front: {
  34229. height: math.unit(9, "feet"),
  34230. weight: math.unit(1012, "lb"),
  34231. name: "Front",
  34232. image: {
  34233. source: "./media/characters/ulfra-lupae/front.svg",
  34234. extra: 1083/1011,
  34235. bottom: 67/1150
  34236. }
  34237. },
  34238. },
  34239. [
  34240. {
  34241. name: "Micro",
  34242. height: math.unit(6, "inches")
  34243. },
  34244. {
  34245. name: "Socializing",
  34246. height: math.unit(6 + 5/12, "feet")
  34247. },
  34248. {
  34249. name: "Normal",
  34250. height: math.unit(9, "feet"),
  34251. default: true
  34252. },
  34253. {
  34254. name: "Macro",
  34255. height: math.unit(150, "feet")
  34256. },
  34257. ]
  34258. ))
  34259. characterMakers.push(() => makeCharacter(
  34260. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  34261. {
  34262. front: {
  34263. height: math.unit(5 + 2/12, "feet"),
  34264. weight: math.unit(120, "lb"),
  34265. name: "Front",
  34266. image: {
  34267. source: "./media/characters/timber/front.svg",
  34268. extra: 2814/2705,
  34269. bottom: 181/2995
  34270. }
  34271. },
  34272. },
  34273. [
  34274. {
  34275. name: "Normal",
  34276. height: math.unit(5 + 2/12, "feet"),
  34277. default: true
  34278. },
  34279. ]
  34280. ))
  34281. characterMakers.push(() => makeCharacter(
  34282. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  34283. {
  34284. front: {
  34285. height: math.unit(9, "feet"),
  34286. name: "Front",
  34287. image: {
  34288. source: "./media/characters/nicki/front.svg",
  34289. extra: 1240/990,
  34290. bottom: 45/1285
  34291. },
  34292. form: "anthro",
  34293. default: true
  34294. },
  34295. side: {
  34296. height: math.unit(9, "feet"),
  34297. name: "Side",
  34298. image: {
  34299. source: "./media/characters/nicki/side.svg",
  34300. extra: 1047/973,
  34301. bottom: 61/1108
  34302. },
  34303. form: "anthro"
  34304. },
  34305. back: {
  34306. height: math.unit(9, "feet"),
  34307. name: "Back",
  34308. image: {
  34309. source: "./media/characters/nicki/back.svg",
  34310. extra: 1006/965,
  34311. bottom: 39/1045
  34312. },
  34313. form: "anthro"
  34314. },
  34315. taur: {
  34316. height: math.unit(15, "feet"),
  34317. name: "Taur",
  34318. image: {
  34319. source: "./media/characters/nicki/taur.svg",
  34320. extra: 1592/1347,
  34321. bottom: 0/1592
  34322. },
  34323. form: "taur",
  34324. default: true
  34325. },
  34326. },
  34327. [
  34328. {
  34329. name: "Normal",
  34330. height: math.unit(9, "feet"),
  34331. form: "anthro",
  34332. default: true
  34333. },
  34334. {
  34335. name: "Normal",
  34336. height: math.unit(15, "feet"),
  34337. form: "taur",
  34338. default: true
  34339. }
  34340. ],
  34341. {
  34342. "anthro": {
  34343. name: "Anthro",
  34344. default: true
  34345. },
  34346. "taur": {
  34347. name: "Taur"
  34348. }
  34349. }
  34350. ))
  34351. characterMakers.push(() => makeCharacter(
  34352. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  34353. {
  34354. front: {
  34355. height: math.unit(7 + 10/12, "feet"),
  34356. weight: math.unit(3.5, "tons"),
  34357. name: "Front",
  34358. image: {
  34359. source: "./media/characters/lee/front.svg",
  34360. extra: 1773/1615,
  34361. bottom: 86/1859
  34362. }
  34363. },
  34364. hand: {
  34365. height: math.unit(1.78, "feet"),
  34366. name: "Hand",
  34367. image: {
  34368. source: "./media/characters/lee/hand.svg"
  34369. }
  34370. },
  34371. maw: {
  34372. height: math.unit(1.18, "feet"),
  34373. name: "Maw",
  34374. image: {
  34375. source: "./media/characters/lee/maw.svg"
  34376. }
  34377. },
  34378. },
  34379. [
  34380. {
  34381. name: "Normal",
  34382. height: math.unit(7 + 10/12, "feet"),
  34383. default: true
  34384. },
  34385. ]
  34386. ))
  34387. characterMakers.push(() => makeCharacter(
  34388. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  34389. {
  34390. front: {
  34391. height: math.unit(9, "feet"),
  34392. name: "Front",
  34393. image: {
  34394. source: "./media/characters/guti/front.svg",
  34395. extra: 4551/4355,
  34396. bottom: 123/4674
  34397. }
  34398. },
  34399. tongue: {
  34400. height: math.unit(1, "feet"),
  34401. name: "Tongue",
  34402. image: {
  34403. source: "./media/characters/guti/tongue.svg"
  34404. }
  34405. },
  34406. paw: {
  34407. height: math.unit(1.18, "feet"),
  34408. name: "Paw",
  34409. image: {
  34410. source: "./media/characters/guti/paw.svg"
  34411. }
  34412. },
  34413. },
  34414. [
  34415. {
  34416. name: "Normal",
  34417. height: math.unit(9, "feet"),
  34418. default: true
  34419. },
  34420. ]
  34421. ))
  34422. characterMakers.push(() => makeCharacter(
  34423. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  34424. {
  34425. side: {
  34426. height: math.unit(5, "meters"),
  34427. name: "Side",
  34428. image: {
  34429. source: "./media/characters/vesper/side.svg",
  34430. extra: 1605/1518,
  34431. bottom: 0/1605
  34432. }
  34433. },
  34434. },
  34435. [
  34436. {
  34437. name: "Small",
  34438. height: math.unit(5, "meters")
  34439. },
  34440. {
  34441. name: "Sage",
  34442. height: math.unit(100, "meters"),
  34443. default: true
  34444. },
  34445. {
  34446. name: "Fun Size",
  34447. height: math.unit(600, "meters")
  34448. },
  34449. {
  34450. name: "Goddess",
  34451. height: math.unit(20000, "km")
  34452. },
  34453. {
  34454. name: "Maximum",
  34455. height: math.unit(5, "galaxies")
  34456. },
  34457. ]
  34458. ))
  34459. characterMakers.push(() => makeCharacter(
  34460. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  34461. {
  34462. front: {
  34463. height: math.unit(6 + 3/12, "feet"),
  34464. weight: math.unit(190, "lb"),
  34465. name: "Front",
  34466. image: {
  34467. source: "./media/characters/gawain/front.svg",
  34468. extra: 2222/2139,
  34469. bottom: 90/2312
  34470. }
  34471. },
  34472. back: {
  34473. height: math.unit(6 + 3/12, "feet"),
  34474. weight: math.unit(190, "lb"),
  34475. name: "Back",
  34476. image: {
  34477. source: "./media/characters/gawain/back.svg",
  34478. extra: 2199/2111,
  34479. bottom: 73/2272
  34480. }
  34481. },
  34482. },
  34483. [
  34484. {
  34485. name: "Normal",
  34486. height: math.unit(6 + 3/12, "feet"),
  34487. default: true
  34488. },
  34489. ]
  34490. ))
  34491. characterMakers.push(() => makeCharacter(
  34492. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  34493. {
  34494. side: {
  34495. height: math.unit(3.5, "meters"),
  34496. weight: math.unit(16000, "lb"),
  34497. name: "Side",
  34498. image: {
  34499. source: "./media/characters/dascalti/side.svg",
  34500. extra: 392/273,
  34501. bottom: 47/439
  34502. }
  34503. },
  34504. breath: {
  34505. height: math.unit(7.4, "feet"),
  34506. name: "Breath",
  34507. image: {
  34508. source: "./media/characters/dascalti/breath.svg"
  34509. }
  34510. },
  34511. fed: {
  34512. height: math.unit(3.6, "meters"),
  34513. weight: math.unit(16000, "lb"),
  34514. name: "Fed",
  34515. image: {
  34516. source: "./media/characters/dascalti/fed.svg",
  34517. extra: 1419/820,
  34518. bottom: 95/1514
  34519. }
  34520. },
  34521. },
  34522. [
  34523. {
  34524. name: "Normal",
  34525. height: math.unit(3.5, "meters"),
  34526. default: true
  34527. },
  34528. ]
  34529. ))
  34530. characterMakers.push(() => makeCharacter(
  34531. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  34532. {
  34533. front: {
  34534. height: math.unit(3 + 5/12, "feet"),
  34535. name: "Front",
  34536. image: {
  34537. source: "./media/characters/mauve/front.svg",
  34538. extra: 1126/1033,
  34539. bottom: 65/1191
  34540. }
  34541. },
  34542. side: {
  34543. height: math.unit(3 + 5/12, "feet"),
  34544. name: "Side",
  34545. image: {
  34546. source: "./media/characters/mauve/side.svg",
  34547. extra: 1089/1001,
  34548. bottom: 29/1118
  34549. }
  34550. },
  34551. back: {
  34552. height: math.unit(3 + 5/12, "feet"),
  34553. name: "Back",
  34554. image: {
  34555. source: "./media/characters/mauve/back.svg",
  34556. extra: 1173/1053,
  34557. bottom: 109/1282
  34558. }
  34559. },
  34560. },
  34561. [
  34562. {
  34563. name: "Normal",
  34564. height: math.unit(3 + 5/12, "feet"),
  34565. default: true
  34566. },
  34567. ]
  34568. ))
  34569. characterMakers.push(() => makeCharacter(
  34570. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  34571. {
  34572. front: {
  34573. height: math.unit(6 + 3/12, "feet"),
  34574. weight: math.unit(450, "lb"),
  34575. name: "Front",
  34576. image: {
  34577. source: "./media/characters/carlos/front.svg",
  34578. extra: 444/423,
  34579. bottom: 27/471
  34580. }
  34581. },
  34582. },
  34583. [
  34584. {
  34585. name: "Normal",
  34586. height: math.unit(6 + 3/12, "feet"),
  34587. default: true
  34588. },
  34589. ]
  34590. ))
  34591. characterMakers.push(() => makeCharacter(
  34592. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  34593. {
  34594. back: {
  34595. height: math.unit(5 + 10/12, "feet"),
  34596. weight: math.unit(200, "lb"),
  34597. name: "Back",
  34598. image: {
  34599. source: "./media/characters/jax/back.svg",
  34600. extra: 764/739,
  34601. bottom: 25/789
  34602. }
  34603. },
  34604. },
  34605. [
  34606. {
  34607. name: "Normal",
  34608. height: math.unit(5 + 10/12, "feet"),
  34609. default: true
  34610. },
  34611. ]
  34612. ))
  34613. characterMakers.push(() => makeCharacter(
  34614. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  34615. {
  34616. front: {
  34617. height: math.unit(8, "feet"),
  34618. weight: math.unit(250, "lb"),
  34619. name: "Front",
  34620. image: {
  34621. source: "./media/characters/eikthynir/front.svg",
  34622. extra: 1332/1166,
  34623. bottom: 82/1414
  34624. }
  34625. },
  34626. back: {
  34627. height: math.unit(8, "feet"),
  34628. weight: math.unit(250, "lb"),
  34629. name: "Back",
  34630. image: {
  34631. source: "./media/characters/eikthynir/back.svg",
  34632. extra: 1342/1190,
  34633. bottom: 19/1361
  34634. }
  34635. },
  34636. dick: {
  34637. height: math.unit(2.35, "feet"),
  34638. name: "Dick",
  34639. image: {
  34640. source: "./media/characters/eikthynir/dick.svg"
  34641. }
  34642. },
  34643. },
  34644. [
  34645. {
  34646. name: "Normal",
  34647. height: math.unit(8, "feet"),
  34648. default: true
  34649. },
  34650. ]
  34651. ))
  34652. characterMakers.push(() => makeCharacter(
  34653. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  34654. {
  34655. front: {
  34656. height: math.unit(99, "meters"),
  34657. weight: math.unit(13000, "tons"),
  34658. name: "Front",
  34659. image: {
  34660. source: "./media/characters/zlmos/front.svg",
  34661. extra: 2202/1992,
  34662. bottom: 315/2517
  34663. }
  34664. },
  34665. },
  34666. [
  34667. {
  34668. name: "Macro",
  34669. height: math.unit(99, "meters"),
  34670. default: true
  34671. },
  34672. ]
  34673. ))
  34674. characterMakers.push(() => makeCharacter(
  34675. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  34676. {
  34677. front: {
  34678. height: math.unit(6 + 5/12, "feet"),
  34679. name: "Front",
  34680. image: {
  34681. source: "./media/characters/purri/front.svg",
  34682. extra: 1698/1610,
  34683. bottom: 32/1730
  34684. }
  34685. },
  34686. frontAlt: {
  34687. height: math.unit(6 + 5/12, "feet"),
  34688. name: "Front (Alt)",
  34689. image: {
  34690. source: "./media/characters/purri/front-alt.svg",
  34691. extra: 450/420,
  34692. bottom: 26/476
  34693. }
  34694. },
  34695. boots: {
  34696. height: math.unit(5.5, "feet"),
  34697. name: "Boots",
  34698. image: {
  34699. source: "./media/characters/purri/boots.svg",
  34700. extra: 905/853,
  34701. bottom: 18/923
  34702. },
  34703. extraAttributes: {
  34704. "shoeSize": {
  34705. name: "Shoe Size",
  34706. power: 1,
  34707. type: "length",
  34708. base: math.unit(12, "ShoeSizeMensUS")
  34709. },
  34710. "platformHeight": {
  34711. name: "Platform Height",
  34712. power: 1,
  34713. type: "length",
  34714. base: math.unit(2, "inches")
  34715. },
  34716. }
  34717. },
  34718. lying: {
  34719. height: math.unit(2, "feet"),
  34720. name: "Lying",
  34721. image: {
  34722. source: "./media/characters/purri/lying.svg",
  34723. extra: 940/843,
  34724. bottom: 146/1086
  34725. }
  34726. },
  34727. devious: {
  34728. height: math.unit(1.77, "feet"),
  34729. name: "Devious",
  34730. image: {
  34731. source: "./media/characters/purri/devious.svg",
  34732. extra: 1440/1155,
  34733. bottom: 147/1587
  34734. }
  34735. },
  34736. bean: {
  34737. height: math.unit(1.94, "feet"),
  34738. name: "Bean",
  34739. image: {
  34740. source: "./media/characters/purri/bean.svg"
  34741. }
  34742. },
  34743. },
  34744. [
  34745. {
  34746. name: "Micro",
  34747. height: math.unit(1, "mm")
  34748. },
  34749. {
  34750. name: "Normal",
  34751. height: math.unit(6 + 5/12, "feet"),
  34752. default: true
  34753. },
  34754. {
  34755. name: "Macro :3c",
  34756. height: math.unit(2, "miles")
  34757. },
  34758. ]
  34759. ))
  34760. characterMakers.push(() => makeCharacter(
  34761. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  34762. {
  34763. front: {
  34764. height: math.unit(6 + 2/12, "feet"),
  34765. weight: math.unit(250, "lb"),
  34766. name: "Front",
  34767. image: {
  34768. source: "./media/characters/moonlight/front.svg",
  34769. extra: 1044/908,
  34770. bottom: 56/1100
  34771. }
  34772. },
  34773. feral: {
  34774. height: math.unit(3 + 1/12, "feet"),
  34775. weight: math.unit(50, "kg"),
  34776. name: "Feral",
  34777. image: {
  34778. source: "./media/characters/moonlight/feral.svg",
  34779. extra: 3705/2791,
  34780. bottom: 145/3850
  34781. }
  34782. },
  34783. paw: {
  34784. height: math.unit(1, "feet"),
  34785. name: "Paw",
  34786. image: {
  34787. source: "./media/characters/moonlight/paw.svg"
  34788. }
  34789. },
  34790. paws: {
  34791. height: math.unit(0.98, "feet"),
  34792. name: "Paws",
  34793. image: {
  34794. source: "./media/characters/moonlight/paws.svg",
  34795. extra: 939/939,
  34796. bottom: 50/989
  34797. }
  34798. },
  34799. mouth: {
  34800. height: math.unit(0.48, "feet"),
  34801. name: "Mouth",
  34802. image: {
  34803. source: "./media/characters/moonlight/mouth.svg"
  34804. }
  34805. },
  34806. dick: {
  34807. height: math.unit(1.46, "feet"),
  34808. name: "Dick",
  34809. image: {
  34810. source: "./media/characters/moonlight/dick.svg"
  34811. }
  34812. },
  34813. },
  34814. [
  34815. {
  34816. name: "Normal",
  34817. height: math.unit(6 + 2/12, "feet"),
  34818. default: true
  34819. },
  34820. {
  34821. name: "Macro",
  34822. height: math.unit(300, "feet")
  34823. },
  34824. {
  34825. name: "Macro+",
  34826. height: math.unit(1, "mile")
  34827. },
  34828. {
  34829. name: "Mt. Moon",
  34830. height: math.unit(5, "miles")
  34831. },
  34832. {
  34833. name: "Megamacro",
  34834. height: math.unit(15, "miles")
  34835. },
  34836. ]
  34837. ))
  34838. characterMakers.push(() => makeCharacter(
  34839. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  34840. {
  34841. back: {
  34842. height: math.unit(6, "feet"),
  34843. weight: math.unit(150, "lb"),
  34844. name: "Back",
  34845. image: {
  34846. source: "./media/characters/sylen/back.svg",
  34847. extra: 1335/1273,
  34848. bottom: 107/1442
  34849. }
  34850. },
  34851. },
  34852. [
  34853. {
  34854. name: "Normal",
  34855. height: math.unit(5 + 5/12, "feet")
  34856. },
  34857. {
  34858. name: "Megamacro",
  34859. height: math.unit(3, "miles"),
  34860. default: true
  34861. },
  34862. ]
  34863. ))
  34864. characterMakers.push(() => makeCharacter(
  34865. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  34866. {
  34867. front: {
  34868. height: math.unit(6, "feet"),
  34869. weight: math.unit(190, "lb"),
  34870. name: "Front",
  34871. image: {
  34872. source: "./media/characters/huttser/front.svg",
  34873. extra: 1152/1058,
  34874. bottom: 23/1175
  34875. }
  34876. },
  34877. side: {
  34878. height: math.unit(6, "feet"),
  34879. weight: math.unit(190, "lb"),
  34880. name: "Side",
  34881. image: {
  34882. source: "./media/characters/huttser/side.svg",
  34883. extra: 1174/1065,
  34884. bottom: 18/1192
  34885. }
  34886. },
  34887. back: {
  34888. height: math.unit(6, "feet"),
  34889. weight: math.unit(190, "lb"),
  34890. name: "Back",
  34891. image: {
  34892. source: "./media/characters/huttser/back.svg",
  34893. extra: 1158/1056,
  34894. bottom: 12/1170
  34895. }
  34896. },
  34897. },
  34898. [
  34899. ]
  34900. ))
  34901. characterMakers.push(() => makeCharacter(
  34902. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  34903. {
  34904. side: {
  34905. height: math.unit(12 + 9/12, "feet"),
  34906. weight: math.unit(15000, "lb"),
  34907. name: "Side",
  34908. image: {
  34909. source: "./media/characters/faan/side.svg",
  34910. extra: 2747/2697,
  34911. bottom: 0/2747
  34912. }
  34913. },
  34914. front: {
  34915. height: math.unit(12 + 9/12, "feet"),
  34916. weight: math.unit(15000, "lb"),
  34917. name: "Front",
  34918. image: {
  34919. source: "./media/characters/faan/front.svg",
  34920. extra: 607/571,
  34921. bottom: 24/631
  34922. }
  34923. },
  34924. head: {
  34925. height: math.unit(2.85, "feet"),
  34926. name: "Head",
  34927. image: {
  34928. source: "./media/characters/faan/head.svg"
  34929. }
  34930. },
  34931. headAlt: {
  34932. height: math.unit(3.13, "feet"),
  34933. name: "Head-alt",
  34934. image: {
  34935. source: "./media/characters/faan/head-alt.svg"
  34936. }
  34937. },
  34938. },
  34939. [
  34940. {
  34941. name: "Normal",
  34942. height: math.unit(12 + 9/12, "feet"),
  34943. default: true
  34944. },
  34945. ]
  34946. ))
  34947. characterMakers.push(() => makeCharacter(
  34948. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  34949. {
  34950. front: {
  34951. height: math.unit(6, "feet"),
  34952. weight: math.unit(300, "lb"),
  34953. name: "Front",
  34954. image: {
  34955. source: "./media/characters/tanio/front.svg",
  34956. extra: 711/673,
  34957. bottom: 25/736
  34958. }
  34959. },
  34960. },
  34961. [
  34962. {
  34963. name: "Normal",
  34964. height: math.unit(6, "feet"),
  34965. default: true
  34966. },
  34967. ]
  34968. ))
  34969. characterMakers.push(() => makeCharacter(
  34970. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  34971. {
  34972. front: {
  34973. height: math.unit(3, "inches"),
  34974. name: "Front",
  34975. image: {
  34976. source: "./media/characters/noboru/front.svg",
  34977. extra: 1039/932,
  34978. bottom: 18/1057
  34979. }
  34980. },
  34981. },
  34982. [
  34983. {
  34984. name: "Micro",
  34985. height: math.unit(3, "inches"),
  34986. default: true
  34987. },
  34988. ]
  34989. ))
  34990. characterMakers.push(() => makeCharacter(
  34991. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  34992. {
  34993. front: {
  34994. height: math.unit(1.85, "meters"),
  34995. weight: math.unit(80, "kg"),
  34996. name: "Front",
  34997. image: {
  34998. source: "./media/characters/daniel-barrett/front.svg",
  34999. extra: 355/337,
  35000. bottom: 9/364
  35001. }
  35002. },
  35003. },
  35004. [
  35005. {
  35006. name: "Pico",
  35007. height: math.unit(0.0433, "mm")
  35008. },
  35009. {
  35010. name: "Nano",
  35011. height: math.unit(1.5, "mm")
  35012. },
  35013. {
  35014. name: "Micro",
  35015. height: math.unit(5.3, "cm"),
  35016. default: true
  35017. },
  35018. {
  35019. name: "Normal",
  35020. height: math.unit(1.85, "meters")
  35021. },
  35022. {
  35023. name: "Macro",
  35024. height: math.unit(64.7, "meters")
  35025. },
  35026. {
  35027. name: "Megamacro",
  35028. height: math.unit(2.26, "km")
  35029. },
  35030. {
  35031. name: "Gigamacro",
  35032. height: math.unit(79, "km")
  35033. },
  35034. {
  35035. name: "Teramacro",
  35036. height: math.unit(2765, "km")
  35037. },
  35038. {
  35039. name: "Petamacro",
  35040. height: math.unit(96678, "km")
  35041. },
  35042. ]
  35043. ))
  35044. characterMakers.push(() => makeCharacter(
  35045. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  35046. {
  35047. front: {
  35048. height: math.unit(30, "meters"),
  35049. weight: math.unit(400, "tons"),
  35050. name: "Front",
  35051. image: {
  35052. source: "./media/characters/zeel/front.svg",
  35053. extra: 2599/2599,
  35054. bottom: 226/2825
  35055. }
  35056. },
  35057. },
  35058. [
  35059. {
  35060. name: "Macro",
  35061. height: math.unit(30, "meters"),
  35062. default: true
  35063. },
  35064. ]
  35065. ))
  35066. characterMakers.push(() => makeCharacter(
  35067. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  35068. {
  35069. front: {
  35070. height: math.unit(6 + 7/12, "feet"),
  35071. weight: math.unit(210, "lb"),
  35072. name: "Front",
  35073. image: {
  35074. source: "./media/characters/tarn/front.svg",
  35075. extra: 3517/3220,
  35076. bottom: 91/3608
  35077. }
  35078. },
  35079. back: {
  35080. height: math.unit(6 + 7/12, "feet"),
  35081. weight: math.unit(210, "lb"),
  35082. name: "Back",
  35083. image: {
  35084. source: "./media/characters/tarn/back.svg",
  35085. extra: 3566/3241,
  35086. bottom: 34/3600
  35087. }
  35088. },
  35089. dick: {
  35090. height: math.unit(1.65, "feet"),
  35091. name: "Dick",
  35092. image: {
  35093. source: "./media/characters/tarn/dick.svg"
  35094. }
  35095. },
  35096. paw: {
  35097. height: math.unit(1.80, "feet"),
  35098. name: "Paw",
  35099. image: {
  35100. source: "./media/characters/tarn/paw.svg"
  35101. }
  35102. },
  35103. tongue: {
  35104. height: math.unit(0.97, "feet"),
  35105. name: "Tongue",
  35106. image: {
  35107. source: "./media/characters/tarn/tongue.svg"
  35108. }
  35109. },
  35110. },
  35111. [
  35112. {
  35113. name: "Micro",
  35114. height: math.unit(4, "inches")
  35115. },
  35116. {
  35117. name: "Normal",
  35118. height: math.unit(6 + 7/12, "feet"),
  35119. default: true
  35120. },
  35121. {
  35122. name: "Macro",
  35123. height: math.unit(300, "feet")
  35124. },
  35125. ]
  35126. ))
  35127. characterMakers.push(() => makeCharacter(
  35128. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  35129. {
  35130. front: {
  35131. height: math.unit(5 + 7/12, "feet"),
  35132. weight: math.unit(80, "kg"),
  35133. name: "Front",
  35134. image: {
  35135. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  35136. extra: 3023/2865,
  35137. bottom: 33/3056
  35138. }
  35139. },
  35140. back: {
  35141. height: math.unit(5 + 7/12, "feet"),
  35142. weight: math.unit(80, "kg"),
  35143. name: "Back",
  35144. image: {
  35145. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  35146. extra: 3020/2886,
  35147. bottom: 30/3050
  35148. }
  35149. },
  35150. dick: {
  35151. height: math.unit(0.98, "feet"),
  35152. name: "Dick",
  35153. image: {
  35154. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  35155. }
  35156. },
  35157. anatomy: {
  35158. height: math.unit(2.86, "feet"),
  35159. name: "Anatomy",
  35160. image: {
  35161. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  35162. }
  35163. },
  35164. },
  35165. [
  35166. {
  35167. name: "Really Small",
  35168. height: math.unit(2, "inches")
  35169. },
  35170. {
  35171. name: "Micro",
  35172. height: math.unit(5.583, "inches")
  35173. },
  35174. {
  35175. name: "Normal",
  35176. height: math.unit(5 + 7/12, "feet"),
  35177. default: true
  35178. },
  35179. {
  35180. name: "Macro",
  35181. height: math.unit(67, "feet")
  35182. },
  35183. {
  35184. name: "Megamacro",
  35185. height: math.unit(134, "feet")
  35186. },
  35187. ]
  35188. ))
  35189. characterMakers.push(() => makeCharacter(
  35190. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  35191. {
  35192. front: {
  35193. height: math.unit(9, "feet"),
  35194. weight: math.unit(120, "lb"),
  35195. name: "Front",
  35196. image: {
  35197. source: "./media/characters/sally/front.svg",
  35198. extra: 1506/1349,
  35199. bottom: 66/1572
  35200. }
  35201. },
  35202. },
  35203. [
  35204. {
  35205. name: "Normal",
  35206. height: math.unit(9, "feet"),
  35207. default: true
  35208. },
  35209. ]
  35210. ))
  35211. characterMakers.push(() => makeCharacter(
  35212. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  35213. {
  35214. front: {
  35215. height: math.unit(8, "feet"),
  35216. weight: math.unit(900, "lb"),
  35217. name: "Front",
  35218. image: {
  35219. source: "./media/characters/owen/front.svg",
  35220. extra: 1761/1657,
  35221. bottom: 74/1835
  35222. }
  35223. },
  35224. side: {
  35225. height: math.unit(8, "feet"),
  35226. weight: math.unit(900, "lb"),
  35227. name: "Side",
  35228. image: {
  35229. source: "./media/characters/owen/side.svg",
  35230. extra: 1797/1734,
  35231. bottom: 30/1827
  35232. }
  35233. },
  35234. back: {
  35235. height: math.unit(8, "feet"),
  35236. weight: math.unit(900, "lb"),
  35237. name: "Back",
  35238. image: {
  35239. source: "./media/characters/owen/back.svg",
  35240. extra: 1796/1706,
  35241. bottom: 59/1855
  35242. }
  35243. },
  35244. maw: {
  35245. height: math.unit(1.76, "feet"),
  35246. name: "Maw",
  35247. image: {
  35248. source: "./media/characters/owen/maw.svg"
  35249. }
  35250. },
  35251. },
  35252. [
  35253. {
  35254. name: "Normal",
  35255. height: math.unit(8, "feet"),
  35256. default: true
  35257. },
  35258. ]
  35259. ))
  35260. characterMakers.push(() => makeCharacter(
  35261. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  35262. {
  35263. front: {
  35264. height: math.unit(4, "feet"),
  35265. weight: math.unit(400, "lb"),
  35266. name: "Front",
  35267. image: {
  35268. source: "./media/characters/ryth/front.svg",
  35269. extra: 1920/1748,
  35270. bottom: 42/1962
  35271. }
  35272. },
  35273. back: {
  35274. height: math.unit(4, "feet"),
  35275. weight: math.unit(400, "lb"),
  35276. name: "Back",
  35277. image: {
  35278. source: "./media/characters/ryth/back.svg",
  35279. extra: 1897/1690,
  35280. bottom: 89/1986
  35281. }
  35282. },
  35283. mouth: {
  35284. height: math.unit(1.39, "feet"),
  35285. name: "Mouth",
  35286. image: {
  35287. source: "./media/characters/ryth/mouth.svg"
  35288. }
  35289. },
  35290. tailmaw: {
  35291. height: math.unit(1.23, "feet"),
  35292. name: "Tailmaw",
  35293. image: {
  35294. source: "./media/characters/ryth/tailmaw.svg"
  35295. }
  35296. },
  35297. goia: {
  35298. height: math.unit(4, "meters"),
  35299. weight: math.unit(10800, "lb"),
  35300. name: "Goia",
  35301. image: {
  35302. source: "./media/characters/ryth/goia.svg",
  35303. extra: 745/640,
  35304. bottom: 107/852
  35305. }
  35306. },
  35307. goiaFront: {
  35308. height: math.unit(4, "meters"),
  35309. weight: math.unit(10800, "lb"),
  35310. name: "Goia (Front)",
  35311. image: {
  35312. source: "./media/characters/ryth/goia-front.svg",
  35313. extra: 750/586,
  35314. bottom: 114/864
  35315. }
  35316. },
  35317. goiaMaw: {
  35318. height: math.unit(5.55, "feet"),
  35319. name: "Goia Maw",
  35320. image: {
  35321. source: "./media/characters/ryth/goia-maw.svg"
  35322. }
  35323. },
  35324. goiaForepaw: {
  35325. height: math.unit(3.5, "feet"),
  35326. name: "Goia Forepaw",
  35327. image: {
  35328. source: "./media/characters/ryth/goia-forepaw.svg"
  35329. }
  35330. },
  35331. goiaHindpaw: {
  35332. height: math.unit(5.55, "feet"),
  35333. name: "Goia Hindpaw",
  35334. image: {
  35335. source: "./media/characters/ryth/goia-hindpaw.svg"
  35336. }
  35337. },
  35338. },
  35339. [
  35340. {
  35341. name: "Normal",
  35342. height: math.unit(4, "feet"),
  35343. default: true
  35344. },
  35345. ]
  35346. ))
  35347. characterMakers.push(() => makeCharacter(
  35348. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  35349. {
  35350. front: {
  35351. height: math.unit(7, "feet"),
  35352. weight: math.unit(180, "lb"),
  35353. name: "Front",
  35354. image: {
  35355. source: "./media/characters/necrolance/front.svg",
  35356. extra: 1062/947,
  35357. bottom: 41/1103
  35358. }
  35359. },
  35360. back: {
  35361. height: math.unit(7, "feet"),
  35362. weight: math.unit(180, "lb"),
  35363. name: "Back",
  35364. image: {
  35365. source: "./media/characters/necrolance/back.svg",
  35366. extra: 1045/984,
  35367. bottom: 14/1059
  35368. }
  35369. },
  35370. wing: {
  35371. height: math.unit(2.67, "feet"),
  35372. name: "Wing",
  35373. image: {
  35374. source: "./media/characters/necrolance/wing.svg"
  35375. }
  35376. },
  35377. },
  35378. [
  35379. {
  35380. name: "Normal",
  35381. height: math.unit(7, "feet"),
  35382. default: true
  35383. },
  35384. ]
  35385. ))
  35386. characterMakers.push(() => makeCharacter(
  35387. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  35388. {
  35389. front: {
  35390. height: math.unit(76, "meters"),
  35391. weight: math.unit(30000, "tons"),
  35392. name: "Front",
  35393. image: {
  35394. source: "./media/characters/tyler/front.svg",
  35395. extra: 1640/1640,
  35396. bottom: 114/1754
  35397. }
  35398. },
  35399. },
  35400. [
  35401. {
  35402. name: "Macro",
  35403. height: math.unit(76, "meters"),
  35404. default: true
  35405. },
  35406. ]
  35407. ))
  35408. characterMakers.push(() => makeCharacter(
  35409. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  35410. {
  35411. front: {
  35412. height: math.unit(4 + 11/12, "feet"),
  35413. weight: math.unit(132, "lb"),
  35414. name: "Front",
  35415. image: {
  35416. source: "./media/characters/icey/front.svg",
  35417. extra: 2750/2550,
  35418. bottom: 33/2783
  35419. }
  35420. },
  35421. back: {
  35422. height: math.unit(4 + 11/12, "feet"),
  35423. weight: math.unit(132, "lb"),
  35424. name: "Back",
  35425. image: {
  35426. source: "./media/characters/icey/back.svg",
  35427. extra: 2624/2481,
  35428. bottom: 35/2659
  35429. }
  35430. },
  35431. },
  35432. [
  35433. {
  35434. name: "Normal",
  35435. height: math.unit(4 + 11/12, "feet"),
  35436. default: true
  35437. },
  35438. ]
  35439. ))
  35440. characterMakers.push(() => makeCharacter(
  35441. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  35442. {
  35443. front: {
  35444. height: math.unit(100, "feet"),
  35445. weight: math.unit(0, "lb"),
  35446. name: "Front",
  35447. image: {
  35448. source: "./media/characters/smile/front.svg",
  35449. extra: 2983/2912,
  35450. bottom: 162/3145
  35451. }
  35452. },
  35453. back: {
  35454. height: math.unit(100, "feet"),
  35455. weight: math.unit(0, "lb"),
  35456. name: "Back",
  35457. image: {
  35458. source: "./media/characters/smile/back.svg",
  35459. extra: 3143/3031,
  35460. bottom: 91/3234
  35461. }
  35462. },
  35463. head: {
  35464. height: math.unit(26.3, "feet"),
  35465. weight: math.unit(0, "lb"),
  35466. name: "Head",
  35467. image: {
  35468. source: "./media/characters/smile/head.svg"
  35469. }
  35470. },
  35471. collar: {
  35472. height: math.unit(5.3, "feet"),
  35473. weight: math.unit(0, "lb"),
  35474. name: "Collar",
  35475. image: {
  35476. source: "./media/characters/smile/collar.svg"
  35477. }
  35478. },
  35479. },
  35480. [
  35481. {
  35482. name: "Macro",
  35483. height: math.unit(100, "feet"),
  35484. default: true
  35485. },
  35486. ]
  35487. ))
  35488. characterMakers.push(() => makeCharacter(
  35489. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  35490. {
  35491. dragon: {
  35492. height: math.unit(26, "feet"),
  35493. weight: math.unit(36, "tons"),
  35494. name: "Dragon",
  35495. image: {
  35496. source: "./media/characters/arimphae/dragon.svg",
  35497. extra: 1574/983,
  35498. bottom: 357/1931
  35499. }
  35500. },
  35501. drake: {
  35502. height: math.unit(9, "feet"),
  35503. weight: math.unit(1.5, "tons"),
  35504. name: "Drake",
  35505. image: {
  35506. source: "./media/characters/arimphae/drake.svg",
  35507. extra: 1120/925,
  35508. bottom: 435/1555
  35509. }
  35510. },
  35511. },
  35512. [
  35513. {
  35514. name: "Small",
  35515. height: math.unit(26*5/9, "feet")
  35516. },
  35517. {
  35518. name: "Normal",
  35519. height: math.unit(26, "feet"),
  35520. default: true
  35521. },
  35522. ]
  35523. ))
  35524. characterMakers.push(() => makeCharacter(
  35525. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  35526. {
  35527. front: {
  35528. height: math.unit(8 + 9/12, "feet"),
  35529. name: "Front",
  35530. image: {
  35531. source: "./media/characters/xander/front.svg",
  35532. extra: 1237/974,
  35533. bottom: 94/1331
  35534. }
  35535. },
  35536. },
  35537. [
  35538. {
  35539. name: "Normal",
  35540. height: math.unit(8 + 9/12, "feet"),
  35541. default: true
  35542. },
  35543. {
  35544. name: "Gaze Grabber",
  35545. height: math.unit(13 + 8/12, "feet")
  35546. },
  35547. {
  35548. name: "Jaw Dropper",
  35549. height: math.unit(27, "feet")
  35550. },
  35551. {
  35552. name: "Show Stopper",
  35553. height: math.unit(136, "feet")
  35554. },
  35555. {
  35556. name: "Superstar",
  35557. height: math.unit(1.9e6, "miles")
  35558. },
  35559. ]
  35560. ))
  35561. characterMakers.push(() => makeCharacter(
  35562. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  35563. {
  35564. side: {
  35565. height: math.unit(2100, "feet"),
  35566. name: "Side",
  35567. image: {
  35568. source: "./media/characters/osiris/side.svg",
  35569. extra: 1105/939,
  35570. bottom: 167/1272
  35571. }
  35572. },
  35573. },
  35574. [
  35575. {
  35576. name: "Macro",
  35577. height: math.unit(2100, "feet"),
  35578. default: true
  35579. },
  35580. ]
  35581. ))
  35582. characterMakers.push(() => makeCharacter(
  35583. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  35584. {
  35585. front: {
  35586. height: math.unit(6 + 8/12, "feet"),
  35587. weight: math.unit(225, "lb"),
  35588. name: "Front",
  35589. image: {
  35590. source: "./media/characters/rhys-londe/front.svg",
  35591. extra: 2258/2141,
  35592. bottom: 188/2446
  35593. }
  35594. },
  35595. back: {
  35596. height: math.unit(6 + 8/12, "feet"),
  35597. weight: math.unit(225, "lb"),
  35598. name: "Back",
  35599. image: {
  35600. source: "./media/characters/rhys-londe/back.svg",
  35601. extra: 2237/2137,
  35602. bottom: 63/2300
  35603. }
  35604. },
  35605. frontNsfw: {
  35606. height: math.unit(6 + 8/12, "feet"),
  35607. weight: math.unit(225, "lb"),
  35608. name: "Front (NSFW)",
  35609. image: {
  35610. source: "./media/characters/rhys-londe/front-nsfw.svg",
  35611. extra: 2258/2141,
  35612. bottom: 188/2446
  35613. }
  35614. },
  35615. backNsfw: {
  35616. height: math.unit(6 + 8/12, "feet"),
  35617. weight: math.unit(225, "lb"),
  35618. name: "Back (NSFW)",
  35619. image: {
  35620. source: "./media/characters/rhys-londe/back-nsfw.svg",
  35621. extra: 2237/2137,
  35622. bottom: 63/2300
  35623. }
  35624. },
  35625. dick: {
  35626. height: math.unit(30, "inches"),
  35627. name: "Dick",
  35628. image: {
  35629. source: "./media/characters/rhys-londe/dick.svg"
  35630. }
  35631. },
  35632. maw: {
  35633. height: math.unit(1.6, "feet"),
  35634. name: "Maw",
  35635. image: {
  35636. source: "./media/characters/rhys-londe/maw.svg"
  35637. }
  35638. },
  35639. },
  35640. [
  35641. {
  35642. name: "Normal",
  35643. height: math.unit(6 + 8/12, "feet"),
  35644. default: true
  35645. },
  35646. ]
  35647. ))
  35648. characterMakers.push(() => makeCharacter(
  35649. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  35650. {
  35651. front: {
  35652. height: math.unit(3 + 10/12, "feet"),
  35653. weight: math.unit(90, "lb"),
  35654. name: "Front",
  35655. image: {
  35656. source: "./media/characters/taivas-ensim/front.svg",
  35657. extra: 1327/1216,
  35658. bottom: 96/1423
  35659. }
  35660. },
  35661. back: {
  35662. height: math.unit(3 + 10/12, "feet"),
  35663. weight: math.unit(90, "lb"),
  35664. name: "Back",
  35665. image: {
  35666. source: "./media/characters/taivas-ensim/back.svg",
  35667. extra: 1355/1247,
  35668. bottom: 11/1366
  35669. }
  35670. },
  35671. frontNsfw: {
  35672. height: math.unit(3 + 10/12, "feet"),
  35673. weight: math.unit(90, "lb"),
  35674. name: "Front (NSFW)",
  35675. image: {
  35676. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  35677. extra: 1327/1216,
  35678. bottom: 96/1423
  35679. }
  35680. },
  35681. backNsfw: {
  35682. height: math.unit(3 + 10/12, "feet"),
  35683. weight: math.unit(90, "lb"),
  35684. name: "Back (NSFW)",
  35685. image: {
  35686. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  35687. extra: 1355/1247,
  35688. bottom: 11/1366
  35689. }
  35690. },
  35691. },
  35692. [
  35693. {
  35694. name: "Normal",
  35695. height: math.unit(3 + 10/12, "feet"),
  35696. default: true
  35697. },
  35698. ]
  35699. ))
  35700. characterMakers.push(() => makeCharacter(
  35701. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  35702. {
  35703. front: {
  35704. height: math.unit(9 + 6/12, "feet"),
  35705. weight: math.unit(940, "lb"),
  35706. name: "Front",
  35707. image: {
  35708. source: "./media/characters/byliss/front.svg",
  35709. extra: 1327/1290,
  35710. bottom: 82/1409
  35711. }
  35712. },
  35713. back: {
  35714. height: math.unit(9 + 6/12, "feet"),
  35715. weight: math.unit(940, "lb"),
  35716. name: "Back",
  35717. image: {
  35718. source: "./media/characters/byliss/back.svg",
  35719. extra: 1376/1349,
  35720. bottom: 9/1385
  35721. }
  35722. },
  35723. frontNsfw: {
  35724. height: math.unit(9 + 6/12, "feet"),
  35725. weight: math.unit(940, "lb"),
  35726. name: "Front (NSFW)",
  35727. image: {
  35728. source: "./media/characters/byliss/front-nsfw.svg",
  35729. extra: 1327/1290,
  35730. bottom: 82/1409
  35731. }
  35732. },
  35733. backNsfw: {
  35734. height: math.unit(9 + 6/12, "feet"),
  35735. weight: math.unit(940, "lb"),
  35736. name: "Back (NSFW)",
  35737. image: {
  35738. source: "./media/characters/byliss/back-nsfw.svg",
  35739. extra: 1376/1349,
  35740. bottom: 9/1385
  35741. }
  35742. },
  35743. },
  35744. [
  35745. {
  35746. name: "Normal",
  35747. height: math.unit(9 + 6/12, "feet"),
  35748. default: true
  35749. },
  35750. ]
  35751. ))
  35752. characterMakers.push(() => makeCharacter(
  35753. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  35754. {
  35755. front: {
  35756. height: math.unit(5 + 2/12, "feet"),
  35757. weight: math.unit(200, "lb"),
  35758. name: "Front",
  35759. image: {
  35760. source: "./media/characters/noraly/front.svg",
  35761. extra: 4985/4773,
  35762. bottom: 150/5135
  35763. }
  35764. },
  35765. full: {
  35766. height: math.unit(5 + 2/12, "feet"),
  35767. weight: math.unit(164, "lb"),
  35768. name: "Full",
  35769. image: {
  35770. source: "./media/characters/noraly/full.svg",
  35771. extra: 1114/1059,
  35772. bottom: 35/1149
  35773. }
  35774. },
  35775. fuller: {
  35776. height: math.unit(5 + 2/12, "feet"),
  35777. weight: math.unit(230, "lb"),
  35778. name: "Fuller",
  35779. image: {
  35780. source: "./media/characters/noraly/fuller.svg",
  35781. extra: 1114/1059,
  35782. bottom: 35/1149
  35783. }
  35784. },
  35785. fullest: {
  35786. height: math.unit(5 + 2/12, "feet"),
  35787. weight: math.unit(300, "lb"),
  35788. name: "Fullest",
  35789. image: {
  35790. source: "./media/characters/noraly/fullest.svg",
  35791. extra: 1114/1059,
  35792. bottom: 35/1149
  35793. }
  35794. },
  35795. },
  35796. [
  35797. {
  35798. name: "Normal",
  35799. height: math.unit(5 + 2/12, "feet"),
  35800. default: true
  35801. },
  35802. ]
  35803. ))
  35804. characterMakers.push(() => makeCharacter(
  35805. { name: "Pera", species: ["snake"], tags: ["naga"] },
  35806. {
  35807. front: {
  35808. height: math.unit(5 + 2/12, "feet"),
  35809. weight: math.unit(210, "lb"),
  35810. name: "Front",
  35811. image: {
  35812. source: "./media/characters/pera/front.svg",
  35813. extra: 1560/1531,
  35814. bottom: 165/1725
  35815. }
  35816. },
  35817. back: {
  35818. height: math.unit(5 + 2/12, "feet"),
  35819. weight: math.unit(210, "lb"),
  35820. name: "Back",
  35821. image: {
  35822. source: "./media/characters/pera/back.svg",
  35823. extra: 1523/1493,
  35824. bottom: 152/1675
  35825. }
  35826. },
  35827. dick: {
  35828. height: math.unit(2.4, "feet"),
  35829. name: "Dick",
  35830. image: {
  35831. source: "./media/characters/pera/dick.svg"
  35832. }
  35833. },
  35834. },
  35835. [
  35836. {
  35837. name: "Normal",
  35838. height: math.unit(5 + 2/12, "feet"),
  35839. default: true
  35840. },
  35841. ]
  35842. ))
  35843. characterMakers.push(() => makeCharacter(
  35844. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  35845. {
  35846. front: {
  35847. height: math.unit(12, "feet"),
  35848. weight: math.unit(3200, "lb"),
  35849. name: "Front",
  35850. image: {
  35851. source: "./media/characters/julian/front.svg",
  35852. extra: 2962/2701,
  35853. bottom: 184/3146
  35854. }
  35855. },
  35856. maw: {
  35857. height: math.unit(5.35, "feet"),
  35858. name: "Maw",
  35859. image: {
  35860. source: "./media/characters/julian/maw.svg"
  35861. }
  35862. },
  35863. paw: {
  35864. height: math.unit(3.07, "feet"),
  35865. name: "Paw",
  35866. image: {
  35867. source: "./media/characters/julian/paw.svg"
  35868. }
  35869. },
  35870. },
  35871. [
  35872. {
  35873. name: "Default",
  35874. height: math.unit(12, "feet"),
  35875. default: true
  35876. },
  35877. {
  35878. name: "Big",
  35879. height: math.unit(50, "feet")
  35880. },
  35881. {
  35882. name: "Really Big",
  35883. height: math.unit(1, "mile")
  35884. },
  35885. {
  35886. name: "Extremely Big",
  35887. height: math.unit(100, "miles")
  35888. },
  35889. {
  35890. name: "Planet Hugger",
  35891. height: math.unit(200, "megameters")
  35892. },
  35893. {
  35894. name: "Unreasonably Big",
  35895. height: math.unit(1e300, "meters")
  35896. },
  35897. ]
  35898. ))
  35899. characterMakers.push(() => makeCharacter(
  35900. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  35901. {
  35902. solgooleo: {
  35903. height: math.unit(4, "meters"),
  35904. weight: math.unit(6000*1.5, "kg"),
  35905. volume: math.unit(6000, "liters"),
  35906. name: "Solgooleo",
  35907. image: {
  35908. source: "./media/characters/pi/solgooleo.svg",
  35909. extra: 388/331,
  35910. bottom: 29/417
  35911. }
  35912. },
  35913. },
  35914. [
  35915. {
  35916. name: "Normal",
  35917. height: math.unit(4, "meters"),
  35918. default: true
  35919. },
  35920. ]
  35921. ))
  35922. characterMakers.push(() => makeCharacter(
  35923. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  35924. {
  35925. front: {
  35926. height: math.unit(8, "feet"),
  35927. weight: math.unit(4, "tons"),
  35928. name: "Front",
  35929. image: {
  35930. source: "./media/characters/shaun/front.svg",
  35931. extra: 503/495,
  35932. bottom: 20/523
  35933. }
  35934. },
  35935. back: {
  35936. height: math.unit(8, "feet"),
  35937. weight: math.unit(4, "tons"),
  35938. name: "Back",
  35939. image: {
  35940. source: "./media/characters/shaun/back.svg",
  35941. extra: 487/480,
  35942. bottom: 20/507
  35943. }
  35944. },
  35945. },
  35946. [
  35947. {
  35948. name: "Lorg",
  35949. height: math.unit(8, "feet"),
  35950. default: true
  35951. },
  35952. ]
  35953. ))
  35954. characterMakers.push(() => makeCharacter(
  35955. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  35956. {
  35957. frontAnthro: {
  35958. height: math.unit(7, "feet"),
  35959. name: "Front",
  35960. image: {
  35961. source: "./media/characters/sini/front-anthro.svg",
  35962. extra: 726/678,
  35963. bottom: 35/761
  35964. },
  35965. form: "anthro",
  35966. default: true
  35967. },
  35968. backAnthro: {
  35969. height: math.unit(7, "feet"),
  35970. name: "Back",
  35971. image: {
  35972. source: "./media/characters/sini/back-anthro.svg",
  35973. extra: 743/701,
  35974. bottom: 12/755
  35975. },
  35976. form: "anthro",
  35977. },
  35978. frontAnthroNsfw: {
  35979. height: math.unit(7, "feet"),
  35980. name: "Front (NSFW)",
  35981. image: {
  35982. source: "./media/characters/sini/front-anthro-nsfw.svg",
  35983. extra: 726/678,
  35984. bottom: 35/761
  35985. },
  35986. form: "anthro"
  35987. },
  35988. backAnthroNsfw: {
  35989. height: math.unit(7, "feet"),
  35990. name: "Back (NSFW)",
  35991. image: {
  35992. source: "./media/characters/sini/back-anthro-nsfw.svg",
  35993. extra: 743/701,
  35994. bottom: 12/755
  35995. },
  35996. form: "anthro",
  35997. },
  35998. mawAnthro: {
  35999. height: math.unit(2.14, "feet"),
  36000. name: "Maw",
  36001. image: {
  36002. source: "./media/characters/sini/maw-anthro.svg"
  36003. },
  36004. form: "anthro"
  36005. },
  36006. dick: {
  36007. height: math.unit(1.45, "feet"),
  36008. name: "Dick",
  36009. image: {
  36010. source: "./media/characters/sini/dick-anthro.svg"
  36011. },
  36012. form: "anthro"
  36013. },
  36014. feral: {
  36015. height: math.unit(16, "feet"),
  36016. name: "Feral",
  36017. image: {
  36018. source: "./media/characters/sini/feral.svg",
  36019. extra: 814/605,
  36020. bottom: 11/825
  36021. },
  36022. form: "feral",
  36023. default: true
  36024. },
  36025. feralNsfw: {
  36026. height: math.unit(16, "feet"),
  36027. name: "Feral (NSFW)",
  36028. image: {
  36029. source: "./media/characters/sini/feral-nsfw.svg",
  36030. extra: 814/605,
  36031. bottom: 11/825
  36032. },
  36033. form: "feral"
  36034. },
  36035. mawFeral: {
  36036. height: math.unit(5.66, "feet"),
  36037. name: "Maw",
  36038. image: {
  36039. source: "./media/characters/sini/maw-feral.svg"
  36040. },
  36041. form: "feral",
  36042. },
  36043. pawFeral: {
  36044. height: math.unit(5.17, "feet"),
  36045. name: "Paw",
  36046. image: {
  36047. source: "./media/characters/sini/paw-feral.svg"
  36048. },
  36049. form: "feral",
  36050. },
  36051. rumpFeral: {
  36052. height: math.unit(13.11, "feet"),
  36053. name: "Rump",
  36054. image: {
  36055. source: "./media/characters/sini/rump-feral.svg"
  36056. },
  36057. form: "feral",
  36058. },
  36059. dickFeral: {
  36060. height: math.unit(1, "feet"),
  36061. name: "Dick",
  36062. image: {
  36063. source: "./media/characters/sini/dick-feral.svg"
  36064. },
  36065. form: "feral",
  36066. },
  36067. eyeFeral: {
  36068. height: math.unit(1.23, "feet"),
  36069. name: "Eye",
  36070. image: {
  36071. source: "./media/characters/sini/eye-feral.svg"
  36072. },
  36073. form: "feral",
  36074. },
  36075. },
  36076. [
  36077. {
  36078. name: "Normal",
  36079. height: math.unit(7, "feet"),
  36080. default: true,
  36081. form: "anthro"
  36082. },
  36083. {
  36084. name: "Normal",
  36085. height: math.unit(16, "feet"),
  36086. default: true,
  36087. form: "feral"
  36088. },
  36089. ],
  36090. {
  36091. "anthro": {
  36092. name: "Anthro",
  36093. default: true
  36094. },
  36095. "feral": {
  36096. name: "Feral",
  36097. }
  36098. }
  36099. ))
  36100. characterMakers.push(() => makeCharacter(
  36101. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  36102. {
  36103. side: {
  36104. height: math.unit(47.2, "meters"),
  36105. weight: math.unit(10000, "tons"),
  36106. name: "Side",
  36107. image: {
  36108. source: "./media/characters/raylldo/side.svg",
  36109. extra: 2363/642,
  36110. bottom: 221/2584
  36111. }
  36112. },
  36113. top: {
  36114. height: math.unit(240, "meters"),
  36115. weight: math.unit(10000, "tons"),
  36116. name: "Top",
  36117. image: {
  36118. source: "./media/characters/raylldo/top.svg"
  36119. }
  36120. },
  36121. bottom: {
  36122. height: math.unit(240, "meters"),
  36123. weight: math.unit(10000, "tons"),
  36124. name: "Bottom",
  36125. image: {
  36126. source: "./media/characters/raylldo/bottom.svg"
  36127. }
  36128. },
  36129. head: {
  36130. height: math.unit(38.6, "meters"),
  36131. name: "Head",
  36132. image: {
  36133. source: "./media/characters/raylldo/head.svg",
  36134. extra: 1335/1112,
  36135. bottom: 0/1335
  36136. }
  36137. },
  36138. maw: {
  36139. height: math.unit(16.37, "meters"),
  36140. name: "Maw",
  36141. image: {
  36142. source: "./media/characters/raylldo/maw.svg",
  36143. extra: 883/660,
  36144. bottom: 0/883
  36145. },
  36146. extraAttributes: {
  36147. preyCapacity: {
  36148. name: "Capacity",
  36149. power: 3,
  36150. type: "volume",
  36151. base: math.unit(1000, "people")
  36152. },
  36153. tongueSize: {
  36154. name: "Tongue Size",
  36155. power: 2,
  36156. type: "area",
  36157. base: math.unit(21, "m^2")
  36158. }
  36159. }
  36160. },
  36161. forepaw: {
  36162. height: math.unit(18, "meters"),
  36163. name: "Forepaw",
  36164. image: {
  36165. source: "./media/characters/raylldo/forepaw.svg"
  36166. }
  36167. },
  36168. hindpaw: {
  36169. height: math.unit(23, "meters"),
  36170. name: "Hindpaw",
  36171. image: {
  36172. source: "./media/characters/raylldo/hindpaw.svg"
  36173. }
  36174. },
  36175. genitals: {
  36176. height: math.unit(42, "meters"),
  36177. name: "Genitals",
  36178. image: {
  36179. source: "./media/characters/raylldo/genitals.svg"
  36180. }
  36181. },
  36182. },
  36183. [
  36184. {
  36185. name: "Normal",
  36186. height: math.unit(47.2, "meters"),
  36187. default: true
  36188. },
  36189. ]
  36190. ))
  36191. characterMakers.push(() => makeCharacter(
  36192. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  36193. {
  36194. anthroFront: {
  36195. height: math.unit(9, "feet"),
  36196. weight: math.unit(600, "lb"),
  36197. name: "Anthro (Front)",
  36198. image: {
  36199. source: "./media/characters/glint/anthro-front.svg",
  36200. extra: 1097/1018,
  36201. bottom: 28/1125
  36202. }
  36203. },
  36204. anthroBack: {
  36205. height: math.unit(9, "feet"),
  36206. weight: math.unit(600, "lb"),
  36207. name: "Anthro (Back)",
  36208. image: {
  36209. source: "./media/characters/glint/anthro-back.svg",
  36210. extra: 1154/997,
  36211. bottom: 36/1190
  36212. }
  36213. },
  36214. feral: {
  36215. height: math.unit(11, "feet"),
  36216. weight: math.unit(50000, "lb"),
  36217. name: "Feral",
  36218. image: {
  36219. source: "./media/characters/glint/feral.svg",
  36220. extra: 3035/1585,
  36221. bottom: 1169/4204
  36222. }
  36223. },
  36224. dickAnthro: {
  36225. height: math.unit(0.7, "meters"),
  36226. name: "Dick (Anthro)",
  36227. image: {
  36228. source: "./media/characters/glint/dick-anthro.svg"
  36229. }
  36230. },
  36231. dickFeral: {
  36232. height: math.unit(2.65, "meters"),
  36233. name: "Dick (Feral)",
  36234. image: {
  36235. source: "./media/characters/glint/dick-feral.svg"
  36236. }
  36237. },
  36238. slitHidden: {
  36239. height: math.unit(5.85, "meters"),
  36240. name: "Slit (Hidden)",
  36241. image: {
  36242. source: "./media/characters/glint/slit-hidden.svg"
  36243. }
  36244. },
  36245. slitErect: {
  36246. height: math.unit(5.85, "meters"),
  36247. name: "Slit (Erect)",
  36248. image: {
  36249. source: "./media/characters/glint/slit-erect.svg"
  36250. }
  36251. },
  36252. mawAnthro: {
  36253. height: math.unit(0.63, "meters"),
  36254. name: "Maw (Anthro)",
  36255. image: {
  36256. source: "./media/characters/glint/maw.svg"
  36257. }
  36258. },
  36259. mawFeral: {
  36260. height: math.unit(2.89, "meters"),
  36261. name: "Maw (Feral)",
  36262. image: {
  36263. source: "./media/characters/glint/maw.svg"
  36264. }
  36265. },
  36266. },
  36267. [
  36268. {
  36269. name: "Normal",
  36270. height: math.unit(9, "feet"),
  36271. default: true
  36272. },
  36273. ]
  36274. ))
  36275. characterMakers.push(() => makeCharacter(
  36276. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  36277. {
  36278. side: {
  36279. height: math.unit(15, "feet"),
  36280. weight: math.unit(5000, "kg"),
  36281. name: "Side",
  36282. image: {
  36283. source: "./media/characters/kairne/side.svg",
  36284. extra: 979/811,
  36285. bottom: 13/992
  36286. }
  36287. },
  36288. front: {
  36289. height: math.unit(15, "feet"),
  36290. weight: math.unit(5000, "kg"),
  36291. name: "Front",
  36292. image: {
  36293. source: "./media/characters/kairne/front.svg",
  36294. extra: 908/814,
  36295. bottom: 26/934
  36296. }
  36297. },
  36298. sideNsfw: {
  36299. height: math.unit(15, "feet"),
  36300. weight: math.unit(5000, "kg"),
  36301. name: "Side (NSFW)",
  36302. image: {
  36303. source: "./media/characters/kairne/side-nsfw.svg",
  36304. extra: 979/811,
  36305. bottom: 13/992
  36306. }
  36307. },
  36308. frontNsfw: {
  36309. height: math.unit(15, "feet"),
  36310. weight: math.unit(5000, "kg"),
  36311. name: "Front (NSFW)",
  36312. image: {
  36313. source: "./media/characters/kairne/front-nsfw.svg",
  36314. extra: 908/814,
  36315. bottom: 26/934
  36316. }
  36317. },
  36318. dickCaged: {
  36319. height: math.unit(0.65, "meters"),
  36320. name: "Dick-caged",
  36321. image: {
  36322. source: "./media/characters/kairne/dick-caged.svg"
  36323. }
  36324. },
  36325. dick: {
  36326. height: math.unit(0.79, "meters"),
  36327. name: "Dick",
  36328. image: {
  36329. source: "./media/characters/kairne/dick.svg"
  36330. }
  36331. },
  36332. genitals: {
  36333. height: math.unit(1.29, "meters"),
  36334. name: "Genitals",
  36335. image: {
  36336. source: "./media/characters/kairne/genitals.svg"
  36337. }
  36338. },
  36339. maw: {
  36340. height: math.unit(1.73, "meters"),
  36341. name: "Maw",
  36342. image: {
  36343. source: "./media/characters/kairne/maw.svg"
  36344. }
  36345. },
  36346. },
  36347. [
  36348. {
  36349. name: "Normal",
  36350. height: math.unit(15, "feet"),
  36351. default: true
  36352. },
  36353. ]
  36354. ))
  36355. characterMakers.push(() => makeCharacter(
  36356. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  36357. {
  36358. front: {
  36359. height: math.unit(5 + 8/12, "feet"),
  36360. weight: math.unit(139, "lb"),
  36361. name: "Front",
  36362. image: {
  36363. source: "./media/characters/biscuit-jackal/front.svg",
  36364. extra: 2106/1961,
  36365. bottom: 58/2164
  36366. }
  36367. },
  36368. back: {
  36369. height: math.unit(5 + 8/12, "feet"),
  36370. weight: math.unit(139, "lb"),
  36371. name: "Back",
  36372. image: {
  36373. source: "./media/characters/biscuit-jackal/back.svg",
  36374. extra: 2132/1976,
  36375. bottom: 57/2189
  36376. }
  36377. },
  36378. werejackal: {
  36379. height: math.unit(6 + 3/12, "feet"),
  36380. weight: math.unit(188, "lb"),
  36381. name: "Werejackal",
  36382. image: {
  36383. source: "./media/characters/biscuit-jackal/werejackal.svg",
  36384. extra: 2373/2178,
  36385. bottom: 53/2426
  36386. }
  36387. },
  36388. },
  36389. [
  36390. {
  36391. name: "Normal",
  36392. height: math.unit(5 + 8/12, "feet"),
  36393. default: true
  36394. },
  36395. ]
  36396. ))
  36397. characterMakers.push(() => makeCharacter(
  36398. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  36399. {
  36400. front: {
  36401. height: math.unit(140, "cm"),
  36402. weight: math.unit(45, "kg"),
  36403. name: "Front",
  36404. image: {
  36405. source: "./media/characters/tayra-white/front.svg",
  36406. extra: 2229/2192,
  36407. bottom: 75/2304
  36408. }
  36409. },
  36410. },
  36411. [
  36412. {
  36413. name: "Normal",
  36414. height: math.unit(140, "cm"),
  36415. default: true
  36416. },
  36417. ]
  36418. ))
  36419. characterMakers.push(() => makeCharacter(
  36420. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  36421. {
  36422. front: {
  36423. height: math.unit(4 + 5/12, "feet"),
  36424. name: "Front",
  36425. image: {
  36426. source: "./media/characters/scoop/front.svg",
  36427. extra: 1257/1136,
  36428. bottom: 69/1326
  36429. }
  36430. },
  36431. back: {
  36432. height: math.unit(4 + 5/12, "feet"),
  36433. name: "Back",
  36434. image: {
  36435. source: "./media/characters/scoop/back.svg",
  36436. extra: 1321/1152,
  36437. bottom: 32/1353
  36438. }
  36439. },
  36440. maw: {
  36441. height: math.unit(0.68, "feet"),
  36442. name: "Maw",
  36443. image: {
  36444. source: "./media/characters/scoop/maw.svg"
  36445. }
  36446. },
  36447. },
  36448. [
  36449. {
  36450. name: "Really Small",
  36451. height: math.unit(1, "mm")
  36452. },
  36453. {
  36454. name: "Micro",
  36455. height: math.unit(1, "inch")
  36456. },
  36457. {
  36458. name: "Normal",
  36459. height: math.unit(4 + 5/12, "feet"),
  36460. default: true
  36461. },
  36462. {
  36463. name: "Macro",
  36464. height: math.unit(200, "feet")
  36465. },
  36466. {
  36467. name: "Megamacro",
  36468. height: math.unit(3240, "feet")
  36469. },
  36470. {
  36471. name: "Teramacro",
  36472. height: math.unit(2500, "miles")
  36473. },
  36474. ]
  36475. ))
  36476. characterMakers.push(() => makeCharacter(
  36477. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  36478. {
  36479. front: {
  36480. height: math.unit(15 + 7/12, "feet"),
  36481. weight: math.unit(1150, "tons"),
  36482. name: "Front",
  36483. image: {
  36484. source: "./media/characters/saphinara/front.svg",
  36485. extra: 1837/1643,
  36486. bottom: 84/1921
  36487. },
  36488. form: "normal",
  36489. default: true
  36490. },
  36491. side: {
  36492. height: math.unit(15 + 7/12, "feet"),
  36493. weight: math.unit(1150, "tons"),
  36494. name: "Side",
  36495. image: {
  36496. source: "./media/characters/saphinara/side.svg",
  36497. extra: 605/547,
  36498. bottom: 6/611
  36499. },
  36500. form: "normal"
  36501. },
  36502. back: {
  36503. height: math.unit(15 + 7/12, "feet"),
  36504. weight: math.unit(1150, "tons"),
  36505. name: "Back",
  36506. image: {
  36507. source: "./media/characters/saphinara/back.svg",
  36508. extra: 591/531,
  36509. bottom: 13/604
  36510. },
  36511. form: "normal"
  36512. },
  36513. frontTail: {
  36514. height: math.unit(15 + 7/12, "feet"),
  36515. weight: math.unit(1150, "tons"),
  36516. name: "Front (Full Tail)",
  36517. image: {
  36518. source: "./media/characters/saphinara/front-tail.svg",
  36519. extra: 2256/1630,
  36520. bottom: 261/2517
  36521. },
  36522. form: "normal"
  36523. },
  36524. insides: {
  36525. height: math.unit(11.92, "feet"),
  36526. name: "Insides",
  36527. image: {
  36528. source: "./media/characters/saphinara/insides.svg"
  36529. },
  36530. form: "normal"
  36531. },
  36532. head: {
  36533. height: math.unit(4.17, "feet"),
  36534. name: "Head",
  36535. image: {
  36536. source: "./media/characters/saphinara/head.svg"
  36537. },
  36538. form: "normal"
  36539. },
  36540. tongue: {
  36541. height: math.unit(4.60, "feet"),
  36542. name: "Tongue",
  36543. image: {
  36544. source: "./media/characters/saphinara/tongue.svg"
  36545. },
  36546. form: "normal"
  36547. },
  36548. headEnraged: {
  36549. height: math.unit(5.55, "feet"),
  36550. name: "Head (Enraged)",
  36551. image: {
  36552. source: "./media/characters/saphinara/head-enraged.svg"
  36553. },
  36554. form: "normal"
  36555. },
  36556. wings: {
  36557. height: math.unit(11.95, "feet"),
  36558. name: "Wings",
  36559. image: {
  36560. source: "./media/characters/saphinara/wings.svg"
  36561. },
  36562. form: "normal"
  36563. },
  36564. feathers: {
  36565. height: math.unit(8.92, "feet"),
  36566. name: "Feathers",
  36567. image: {
  36568. source: "./media/characters/saphinara/feathers.svg"
  36569. },
  36570. form: "normal"
  36571. },
  36572. shackles: {
  36573. height: math.unit(2, "feet"),
  36574. name: "Shackles",
  36575. image: {
  36576. source: "./media/characters/saphinara/shackles.svg"
  36577. },
  36578. form: "normal"
  36579. },
  36580. eyes: {
  36581. height: math.unit(1.331, "feet"),
  36582. name: "Eyes",
  36583. image: {
  36584. source: "./media/characters/saphinara/eyes.svg"
  36585. },
  36586. form: "normal"
  36587. },
  36588. eyesEnraged: {
  36589. height: math.unit(1.331, "feet"),
  36590. name: "Eyes (Enraged)",
  36591. image: {
  36592. source: "./media/characters/saphinara/eyes-enraged.svg"
  36593. },
  36594. form: "normal"
  36595. },
  36596. trueFormSide: {
  36597. height: math.unit(200, "feet"),
  36598. weight: math.unit(1e7, "tons"),
  36599. name: "Side",
  36600. image: {
  36601. source: "./media/characters/saphinara/true-form-side.svg",
  36602. extra: 1399/770,
  36603. bottom: 97/1496
  36604. },
  36605. form: "true-form",
  36606. default: true
  36607. },
  36608. trueFormMaw: {
  36609. height: math.unit(71.5, "feet"),
  36610. name: "Maw",
  36611. image: {
  36612. source: "./media/characters/saphinara/true-form-maw.svg",
  36613. extra: 2302/1453,
  36614. bottom: 0/2302
  36615. },
  36616. form: "true-form"
  36617. },
  36618. meowberusSide: {
  36619. height: math.unit(75, "feet"),
  36620. weight: math.unit(180000, "kg"),
  36621. preyCapacity: math.unit(50000, "people"),
  36622. name: "Side",
  36623. image: {
  36624. source: "./media/characters/saphinara/meowberus-side.svg",
  36625. extra: 1400/711,
  36626. bottom: 126/1526
  36627. },
  36628. form: "meowberus",
  36629. extraAttributes: {
  36630. "pawArea": {
  36631. name: "Paw Size",
  36632. power: 2,
  36633. type: "area",
  36634. base: math.unit(35, "m^2")
  36635. }
  36636. }
  36637. },
  36638. },
  36639. [
  36640. {
  36641. name: "Normal",
  36642. height: math.unit(15 + 7/12, "feet"),
  36643. default: true,
  36644. form: "normal"
  36645. },
  36646. {
  36647. name: "Angry",
  36648. height: math.unit(30 + 6/12, "feet"),
  36649. form: "normal"
  36650. },
  36651. {
  36652. name: "Enraged",
  36653. height: math.unit(102 + 1/12, "feet"),
  36654. form: "normal"
  36655. },
  36656. {
  36657. name: "True",
  36658. height: math.unit(200, "feet"),
  36659. default: true,
  36660. form: "true-form"
  36661. },
  36662. {
  36663. name: "Normal",
  36664. height: math.unit(75, "feet"),
  36665. default: true,
  36666. form: "meowberus"
  36667. },
  36668. ],
  36669. {
  36670. "normal": {
  36671. name: "Normal",
  36672. default: true
  36673. },
  36674. "true-form": {
  36675. name: "True Form"
  36676. },
  36677. "meowberus": {
  36678. name: "Meowberus",
  36679. },
  36680. }
  36681. ))
  36682. characterMakers.push(() => makeCharacter(
  36683. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  36684. {
  36685. front: {
  36686. height: math.unit(6 + 8/12, "feet"),
  36687. weight: math.unit(300, "lb"),
  36688. name: "Front",
  36689. image: {
  36690. source: "./media/characters/jrain/front.svg",
  36691. extra: 3039/2865,
  36692. bottom: 399/3438
  36693. }
  36694. },
  36695. back: {
  36696. height: math.unit(6 + 8/12, "feet"),
  36697. weight: math.unit(300, "lb"),
  36698. name: "Back",
  36699. image: {
  36700. source: "./media/characters/jrain/back.svg",
  36701. extra: 3089/2938,
  36702. bottom: 172/3261
  36703. }
  36704. },
  36705. head: {
  36706. height: math.unit(2.14, "feet"),
  36707. name: "Head",
  36708. image: {
  36709. source: "./media/characters/jrain/head.svg"
  36710. }
  36711. },
  36712. maw: {
  36713. height: math.unit(1.77, "feet"),
  36714. name: "Maw",
  36715. image: {
  36716. source: "./media/characters/jrain/maw.svg"
  36717. }
  36718. },
  36719. leftHand: {
  36720. height: math.unit(1.1, "feet"),
  36721. name: "Left Hand",
  36722. image: {
  36723. source: "./media/characters/jrain/left-hand.svg"
  36724. }
  36725. },
  36726. rightHand: {
  36727. height: math.unit(1.1, "feet"),
  36728. name: "Right Hand",
  36729. image: {
  36730. source: "./media/characters/jrain/right-hand.svg"
  36731. }
  36732. },
  36733. eye: {
  36734. height: math.unit(0.35, "feet"),
  36735. name: "Eye",
  36736. image: {
  36737. source: "./media/characters/jrain/eye.svg"
  36738. }
  36739. },
  36740. },
  36741. [
  36742. {
  36743. name: "Normal",
  36744. height: math.unit(6 + 8/12, "feet"),
  36745. default: true
  36746. },
  36747. {
  36748. name: "Casually Large",
  36749. height: math.unit(25, "feet")
  36750. },
  36751. {
  36752. name: "Giant",
  36753. height: math.unit(100, "feet")
  36754. },
  36755. {
  36756. name: "Kaiju",
  36757. height: math.unit(300, "feet")
  36758. },
  36759. ]
  36760. ))
  36761. characterMakers.push(() => makeCharacter(
  36762. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  36763. {
  36764. dragon: {
  36765. height: math.unit(5, "meters"),
  36766. name: "Dragon",
  36767. image: {
  36768. source: "./media/characters/sabrina/dragon.svg",
  36769. extra: 3670 / 2365,
  36770. bottom: 333 / 4003
  36771. }
  36772. },
  36773. gryphon: {
  36774. height: math.unit(3, "meters"),
  36775. name: "Gryphon",
  36776. image: {
  36777. source: "./media/characters/sabrina/gryphon.svg",
  36778. extra: 1576 / 945,
  36779. bottom: 71 / 1647
  36780. }
  36781. },
  36782. snake: {
  36783. height: math.unit(12, "meters"),
  36784. name: "Snake",
  36785. image: {
  36786. source: "./media/characters/sabrina/snake.svg",
  36787. extra: 1758 / 1320,
  36788. bottom: 186 / 1944
  36789. }
  36790. },
  36791. collar: {
  36792. height: math.unit(1.86, "meters"),
  36793. name: "Collar",
  36794. image: {
  36795. source: "./media/characters/sabrina/collar.svg"
  36796. }
  36797. },
  36798. eye: {
  36799. height: math.unit(0.53, "meters"),
  36800. name: "Eye",
  36801. image: {
  36802. source: "./media/characters/sabrina/eye.svg"
  36803. }
  36804. },
  36805. foot: {
  36806. height: math.unit(1.86, "meters"),
  36807. name: "Foot",
  36808. image: {
  36809. source: "./media/characters/sabrina/foot.svg"
  36810. }
  36811. },
  36812. hand: {
  36813. height: math.unit(1.32, "meters"),
  36814. name: "Hand",
  36815. image: {
  36816. source: "./media/characters/sabrina/hand.svg"
  36817. }
  36818. },
  36819. head: {
  36820. height: math.unit(2.44, "meters"),
  36821. name: "Head",
  36822. image: {
  36823. source: "./media/characters/sabrina/head.svg"
  36824. }
  36825. },
  36826. headAngry: {
  36827. height: math.unit(2.44, "meters"),
  36828. name: "Head (Angry))",
  36829. image: {
  36830. source: "./media/characters/sabrina/head-angry.svg"
  36831. }
  36832. },
  36833. maw: {
  36834. height: math.unit(1.65, "meters"),
  36835. name: "Maw",
  36836. image: {
  36837. source: "./media/characters/sabrina/maw.svg"
  36838. }
  36839. },
  36840. spikes: {
  36841. height: math.unit(1.69, "meters"),
  36842. name: "Spikes",
  36843. image: {
  36844. source: "./media/characters/sabrina/spikes.svg"
  36845. }
  36846. },
  36847. stomach: {
  36848. height: math.unit(1.15, "meters"),
  36849. name: "Stomach",
  36850. image: {
  36851. source: "./media/characters/sabrina/stomach.svg"
  36852. }
  36853. },
  36854. tongue: {
  36855. height: math.unit(1.27, "meters"),
  36856. name: "Tongue",
  36857. image: {
  36858. source: "./media/characters/sabrina/tongue.svg"
  36859. }
  36860. },
  36861. wingDorsal: {
  36862. height: math.unit(4.85, "meters"),
  36863. name: "Wing (Dorsal)",
  36864. image: {
  36865. source: "./media/characters/sabrina/wing-dorsal.svg"
  36866. }
  36867. },
  36868. wingVentral: {
  36869. height: math.unit(4.85, "meters"),
  36870. name: "Wing (Ventral)",
  36871. image: {
  36872. source: "./media/characters/sabrina/wing-ventral.svg"
  36873. }
  36874. },
  36875. },
  36876. [
  36877. {
  36878. name: "Normal",
  36879. height: math.unit(5, "meters"),
  36880. default: true
  36881. },
  36882. ]
  36883. ))
  36884. characterMakers.push(() => makeCharacter(
  36885. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  36886. {
  36887. frontMaid: {
  36888. height: math.unit(5 + 5/12, "feet"),
  36889. weight: math.unit(130, "lb"),
  36890. name: "Front (Maid)",
  36891. image: {
  36892. source: "./media/characters/midnight-tales/front-maid.svg",
  36893. extra: 489/454,
  36894. bottom: 61/550
  36895. }
  36896. },
  36897. frontFormal: {
  36898. height: math.unit(5 + 5/12, "feet"),
  36899. weight: math.unit(130, "lb"),
  36900. name: "Front (Formal)",
  36901. image: {
  36902. source: "./media/characters/midnight-tales/front-formal.svg",
  36903. extra: 489/454,
  36904. bottom: 61/550
  36905. }
  36906. },
  36907. back: {
  36908. height: math.unit(5 + 5/12, "feet"),
  36909. weight: math.unit(130, "lb"),
  36910. name: "Back",
  36911. image: {
  36912. source: "./media/characters/midnight-tales/back.svg",
  36913. extra: 498/456,
  36914. bottom: 33/531
  36915. }
  36916. },
  36917. frontBeast: {
  36918. height: math.unit(40, "feet"),
  36919. weight: math.unit(64000, "lb"),
  36920. name: "Front (Beast)",
  36921. image: {
  36922. source: "./media/characters/midnight-tales/front-beast.svg",
  36923. extra: 927/860,
  36924. bottom: 53/980
  36925. }
  36926. },
  36927. backBeast: {
  36928. height: math.unit(40, "feet"),
  36929. weight: math.unit(64000, "lb"),
  36930. name: "Back (Beast)",
  36931. image: {
  36932. source: "./media/characters/midnight-tales/back-beast.svg",
  36933. extra: 929/855,
  36934. bottom: 16/945
  36935. }
  36936. },
  36937. footBeast: {
  36938. height: math.unit(6.7, "feet"),
  36939. name: "Foot (Beast)",
  36940. image: {
  36941. source: "./media/characters/midnight-tales/foot-beast.svg"
  36942. }
  36943. },
  36944. headBeast: {
  36945. height: math.unit(8, "feet"),
  36946. name: "Head (Beast)",
  36947. image: {
  36948. source: "./media/characters/midnight-tales/head-beast.svg"
  36949. }
  36950. },
  36951. },
  36952. [
  36953. {
  36954. name: "Normal",
  36955. height: math.unit(5 + 5 / 12, "feet"),
  36956. default: true
  36957. },
  36958. {
  36959. name: "Macro",
  36960. height: math.unit(25, "feet")
  36961. },
  36962. ]
  36963. ))
  36964. characterMakers.push(() => makeCharacter(
  36965. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  36966. {
  36967. front: {
  36968. height: math.unit(6 + 2/12, "feet"),
  36969. weight: math.unit(115, "kg"),
  36970. preyCapacity: math.unit(3, "people"),
  36971. name: "Front",
  36972. image: {
  36973. source: "./media/characters/argon/front.svg",
  36974. extra: 2009/1935,
  36975. bottom: 118/2127
  36976. },
  36977. extraAttributes: {
  36978. "tailLength": {
  36979. name: "Tail Length",
  36980. power: 1,
  36981. type: "length",
  36982. base: math.unit(6, "feet")
  36983. },
  36984. "tailWeight": {
  36985. name: "Tail Weight",
  36986. power: 3,
  36987. type: "mass",
  36988. base: math.unit(40, "kg")
  36989. },
  36990. }
  36991. },
  36992. back: {
  36993. height: math.unit(6 + 2/12, "feet"),
  36994. weight: math.unit(115, "kg"),
  36995. preyCapacity: math.unit(3, "people"),
  36996. name: "Back",
  36997. image: {
  36998. source: "./media/characters/argon/back.svg",
  36999. extra: 2047/1992,
  37000. bottom: 20/2067
  37001. },
  37002. extraAttributes: {
  37003. "tailLength": {
  37004. name: "Tail Length",
  37005. power: 1,
  37006. type: "length",
  37007. base: math.unit(6, "feet")
  37008. },
  37009. "tailWeight": {
  37010. name: "Tail Weight",
  37011. power: 3,
  37012. type: "mass",
  37013. base: math.unit(40, "kg")
  37014. },
  37015. }
  37016. },
  37017. frontDressed: {
  37018. height: math.unit(6 + 2/12, "feet"),
  37019. weight: math.unit(115, "kg"),
  37020. preyCapacity: math.unit(3, "people"),
  37021. name: "Front (Dressed)",
  37022. image: {
  37023. source: "./media/characters/argon/front-dressed.svg",
  37024. extra: 2009/1935,
  37025. bottom: 118/2127
  37026. },
  37027. extraAttributes: {
  37028. "tailLength": {
  37029. name: "Tail Length",
  37030. power: 1,
  37031. type: "length",
  37032. base: math.unit(6, "feet")
  37033. },
  37034. "tailWeight": {
  37035. name: "Tail Weight",
  37036. power: 3,
  37037. type: "mass",
  37038. base: math.unit(40, "kg")
  37039. },
  37040. }
  37041. },
  37042. },
  37043. [
  37044. {
  37045. name: "Minimum",
  37046. height: math.unit(2 + 8/12, "feet")
  37047. },
  37048. {
  37049. name: "Normal",
  37050. height: math.unit(6 + 2/12, "feet"),
  37051. default: true
  37052. },
  37053. {
  37054. name: "Maximum",
  37055. height: math.unit(20, "feet")
  37056. },
  37057. ]
  37058. ))
  37059. characterMakers.push(() => makeCharacter(
  37060. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  37061. {
  37062. front: {
  37063. height: math.unit(8 + 6/12, "feet"),
  37064. weight: math.unit(1150, "lb"),
  37065. name: "Front",
  37066. image: {
  37067. source: "./media/characters/kichi/front.svg",
  37068. extra: 1267/1164,
  37069. bottom: 61/1328
  37070. }
  37071. },
  37072. back: {
  37073. height: math.unit(8 + 6/12, "feet"),
  37074. weight: math.unit(1150, "lb"),
  37075. name: "Back",
  37076. image: {
  37077. source: "./media/characters/kichi/back.svg",
  37078. extra: 1273/1166,
  37079. bottom: 33/1306
  37080. }
  37081. },
  37082. },
  37083. [
  37084. {
  37085. name: "Normal",
  37086. height: math.unit(8 + 6/12, "feet"),
  37087. default: true
  37088. },
  37089. ]
  37090. ))
  37091. characterMakers.push(() => makeCharacter(
  37092. { name: "Manetel Greyscale", species: ["dragoyle"], tags: ["anthro"] },
  37093. {
  37094. front: {
  37095. height: math.unit(6, "feet"),
  37096. weight: math.unit(210, "lb"),
  37097. name: "Front",
  37098. image: {
  37099. source: "./media/characters/manetel-greyscale/front.svg",
  37100. extra: 483/444,
  37101. bottom: 22/505
  37102. },
  37103. extraAttributes: {
  37104. "tailLength": {
  37105. name: "Tail Length",
  37106. power: 1,
  37107. type: "length",
  37108. base: math.unit(6.5, "meters")
  37109. },
  37110. }
  37111. },
  37112. side: {
  37113. height: math.unit(6, "feet"),
  37114. weight: math.unit(210, "lb"),
  37115. name: "Side",
  37116. image: {
  37117. source: "./media/characters/manetel-greyscale/side.svg",
  37118. extra: 478/426,
  37119. bottom: 20/498
  37120. },
  37121. extraAttributes: {
  37122. "tailLength": {
  37123. name: "Tail Length",
  37124. power: 1,
  37125. type: "length",
  37126. base: math.unit(6.5, "meters")
  37127. },
  37128. }
  37129. },
  37130. back: {
  37131. height: math.unit(6, "feet"),
  37132. weight: math.unit(210, "lb"),
  37133. name: "Back",
  37134. image: {
  37135. source: "./media/characters/manetel-greyscale/back.svg",
  37136. extra: 482/445,
  37137. bottom: 12/494
  37138. },
  37139. extraAttributes: {
  37140. "tailLength": {
  37141. name: "Tail Length",
  37142. power: 1,
  37143. type: "length",
  37144. base: math.unit(6.5, "meters")
  37145. },
  37146. }
  37147. },
  37148. },
  37149. [
  37150. {
  37151. name: "Micro",
  37152. height: math.unit(2, "inches")
  37153. },
  37154. {
  37155. name: "Normal",
  37156. height: math.unit(6, "feet"),
  37157. default: true
  37158. },
  37159. {
  37160. name: "Macro",
  37161. height: math.unit(117, "feet")
  37162. },
  37163. ]
  37164. ))
  37165. characterMakers.push(() => makeCharacter(
  37166. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  37167. {
  37168. side: {
  37169. height: math.unit(5 + 1/12, "feet"),
  37170. weight: math.unit(418, "lb"),
  37171. name: "Side",
  37172. image: {
  37173. source: "./media/characters/softpurr/side.svg",
  37174. extra: 1993/1945,
  37175. bottom: 134/2127
  37176. }
  37177. },
  37178. front: {
  37179. height: math.unit(5 + 1/12, "feet"),
  37180. weight: math.unit(418, "lb"),
  37181. name: "Front",
  37182. image: {
  37183. source: "./media/characters/softpurr/front.svg",
  37184. extra: 1950/1856,
  37185. bottom: 174/2124
  37186. }
  37187. },
  37188. paw: {
  37189. height: math.unit(1, "feet"),
  37190. name: "Paw",
  37191. image: {
  37192. source: "./media/characters/softpurr/paw.svg"
  37193. }
  37194. },
  37195. },
  37196. [
  37197. {
  37198. name: "Normal",
  37199. height: math.unit(5 + 1/12, "feet"),
  37200. default: true
  37201. },
  37202. ]
  37203. ))
  37204. characterMakers.push(() => makeCharacter(
  37205. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  37206. {
  37207. front: {
  37208. height: math.unit(260, "meters"),
  37209. name: "Front",
  37210. image: {
  37211. source: "./media/characters/anahita/front.svg",
  37212. extra: 665/635,
  37213. bottom: 89/754
  37214. }
  37215. },
  37216. },
  37217. [
  37218. {
  37219. name: "Macro",
  37220. height: math.unit(260, "meters"),
  37221. default: true
  37222. },
  37223. ]
  37224. ))
  37225. characterMakers.push(() => makeCharacter(
  37226. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  37227. {
  37228. front: {
  37229. height: math.unit(4 + 10/12, "feet"),
  37230. weight: math.unit(160, "lb"),
  37231. name: "Front",
  37232. image: {
  37233. source: "./media/characters/chip-mouse/front.svg",
  37234. extra: 3528/3408,
  37235. bottom: 0/3528
  37236. }
  37237. },
  37238. frontNsfw: {
  37239. height: math.unit(4 + 10/12, "feet"),
  37240. weight: math.unit(160, "lb"),
  37241. name: "Front (NSFW)",
  37242. image: {
  37243. source: "./media/characters/chip-mouse/front-nsfw.svg",
  37244. extra: 3528/3408,
  37245. bottom: 0/3528
  37246. }
  37247. },
  37248. },
  37249. [
  37250. {
  37251. name: "Normal",
  37252. height: math.unit(4 + 10/12, "feet"),
  37253. default: true
  37254. },
  37255. ]
  37256. ))
  37257. characterMakers.push(() => makeCharacter(
  37258. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  37259. {
  37260. side: {
  37261. height: math.unit(10, "feet"),
  37262. weight: math.unit(14000, "lb"),
  37263. name: "Side",
  37264. image: {
  37265. source: "./media/characters/kremm/side.svg",
  37266. extra: 1390/1053,
  37267. bottom: 90/1480
  37268. }
  37269. },
  37270. gut: {
  37271. height: math.unit(5.8, "feet"),
  37272. name: "Gut",
  37273. image: {
  37274. source: "./media/characters/kremm/gut.svg"
  37275. }
  37276. },
  37277. ass: {
  37278. height: math.unit(6.1, "feet"),
  37279. name: "Ass",
  37280. image: {
  37281. source: "./media/characters/kremm/ass.svg"
  37282. }
  37283. },
  37284. jaws: {
  37285. height: math.unit(2.2, "feet"),
  37286. name: "Jaws",
  37287. image: {
  37288. source: "./media/characters/kremm/jaws.svg"
  37289. }
  37290. },
  37291. dick: {
  37292. height: math.unit(4.26, "feet"),
  37293. name: "Dick",
  37294. image: {
  37295. source: "./media/characters/kremm/dick.svg"
  37296. }
  37297. },
  37298. },
  37299. [
  37300. {
  37301. name: "Normal",
  37302. height: math.unit(10, "feet"),
  37303. default: true
  37304. },
  37305. ]
  37306. ))
  37307. characterMakers.push(() => makeCharacter(
  37308. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  37309. {
  37310. front: {
  37311. height: math.unit(30, "stories"),
  37312. name: "Front",
  37313. image: {
  37314. source: "./media/characters/kai/front.svg",
  37315. extra: 1892/1718,
  37316. bottom: 162/2054
  37317. }
  37318. },
  37319. },
  37320. [
  37321. {
  37322. name: "Macro",
  37323. height: math.unit(30, "stories"),
  37324. default: true
  37325. },
  37326. ]
  37327. ))
  37328. characterMakers.push(() => makeCharacter(
  37329. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  37330. {
  37331. front: {
  37332. height: math.unit(6 + 4/12, "feet"),
  37333. weight: math.unit(145, "lb"),
  37334. name: "Front",
  37335. image: {
  37336. source: "./media/characters/sykes/front.svg",
  37337. extra: 1321 / 1187,
  37338. bottom: 66 / 1387
  37339. }
  37340. },
  37341. back: {
  37342. height: math.unit(6 + 4/12, "feet"),
  37343. weight: math.unit(145, "lb"),
  37344. name: "Back",
  37345. image: {
  37346. source: "./media/characters/sykes/back.svg",
  37347. extra: 1326/1181,
  37348. bottom: 31/1357
  37349. }
  37350. },
  37351. traditionalOutfit: {
  37352. height: math.unit(6 + 4/12, "feet"),
  37353. weight: math.unit(145, "lb"),
  37354. name: "Traditional Outfit",
  37355. image: {
  37356. source: "./media/characters/sykes/traditional-outfit.svg",
  37357. extra: 1321 / 1187,
  37358. bottom: 66 / 1387
  37359. }
  37360. },
  37361. adventureOutfit: {
  37362. height: math.unit(6 + 4/12, "feet"),
  37363. weight: math.unit(145, "lb"),
  37364. name: "Adventure Outfit",
  37365. image: {
  37366. source: "./media/characters/sykes/adventure-outfit.svg",
  37367. extra: 1321 / 1187,
  37368. bottom: 66 / 1387
  37369. }
  37370. },
  37371. handLeft: {
  37372. height: math.unit(0.9, "feet"),
  37373. name: "Hand (Left)",
  37374. image: {
  37375. source: "./media/characters/sykes/hand-left.svg"
  37376. }
  37377. },
  37378. handRight: {
  37379. height: math.unit(0.839, "feet"),
  37380. name: "Hand (Right)",
  37381. image: {
  37382. source: "./media/characters/sykes/hand-right.svg"
  37383. }
  37384. },
  37385. leftFoot: {
  37386. height: math.unit(1.2, "feet"),
  37387. name: "Foot (Left)",
  37388. image: {
  37389. source: "./media/characters/sykes/foot-left.svg"
  37390. }
  37391. },
  37392. rightFoot: {
  37393. height: math.unit(1.2, "feet"),
  37394. name: "Foot (Right)",
  37395. image: {
  37396. source: "./media/characters/sykes/foot-right.svg"
  37397. }
  37398. },
  37399. maw: {
  37400. height: math.unit(1.93, "feet"),
  37401. name: "Maw",
  37402. image: {
  37403. source: "./media/characters/sykes/maw.svg"
  37404. }
  37405. },
  37406. teeth: {
  37407. height: math.unit(0.51, "feet"),
  37408. name: "Teeth",
  37409. image: {
  37410. source: "./media/characters/sykes/teeth.svg"
  37411. }
  37412. },
  37413. tongue: {
  37414. height: math.unit(2.13, "feet"),
  37415. name: "Tongue",
  37416. image: {
  37417. source: "./media/characters/sykes/tongue.svg"
  37418. }
  37419. },
  37420. uvula: {
  37421. height: math.unit(0.16, "feet"),
  37422. name: "Uvula",
  37423. image: {
  37424. source: "./media/characters/sykes/uvula.svg"
  37425. }
  37426. },
  37427. collar: {
  37428. height: math.unit(0.287, "feet"),
  37429. name: "Collar",
  37430. image: {
  37431. source: "./media/characters/sykes/collar.svg"
  37432. }
  37433. },
  37434. tail: {
  37435. height: math.unit(3.8, "feet"),
  37436. name: "Tail",
  37437. image: {
  37438. source: "./media/characters/sykes/tail.svg"
  37439. }
  37440. },
  37441. },
  37442. [
  37443. {
  37444. name: "Shrunken",
  37445. height: math.unit(5, "inches")
  37446. },
  37447. {
  37448. name: "Normal",
  37449. height: math.unit(6 + 4 / 12, "feet"),
  37450. default: true
  37451. },
  37452. {
  37453. name: "Big",
  37454. height: math.unit(15, "feet")
  37455. },
  37456. ]
  37457. ))
  37458. characterMakers.push(() => makeCharacter(
  37459. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  37460. {
  37461. front: {
  37462. height: math.unit(5 + 8/12, "feet"),
  37463. weight: math.unit(190, "lb"),
  37464. name: "Front",
  37465. image: {
  37466. source: "./media/characters/oven-otter/front.svg",
  37467. extra: 1809/1740,
  37468. bottom: 181/1990
  37469. }
  37470. },
  37471. back: {
  37472. height: math.unit(5 + 8/12, "feet"),
  37473. weight: math.unit(190, "lb"),
  37474. name: "Back",
  37475. image: {
  37476. source: "./media/characters/oven-otter/back.svg",
  37477. extra: 1709/1635,
  37478. bottom: 118/1827
  37479. }
  37480. },
  37481. hand: {
  37482. height: math.unit(1.07, "feet"),
  37483. name: "Hand",
  37484. image: {
  37485. source: "./media/characters/oven-otter/hand.svg"
  37486. }
  37487. },
  37488. beans: {
  37489. height: math.unit(1.74, "feet"),
  37490. name: "Beans",
  37491. image: {
  37492. source: "./media/characters/oven-otter/beans.svg"
  37493. }
  37494. },
  37495. },
  37496. [
  37497. {
  37498. name: "Micro",
  37499. height: math.unit(0.5, "inches")
  37500. },
  37501. {
  37502. name: "Normal",
  37503. height: math.unit(5 + 8/12, "feet"),
  37504. default: true
  37505. },
  37506. {
  37507. name: "Macro",
  37508. height: math.unit(250, "feet")
  37509. },
  37510. {
  37511. name: "Really High",
  37512. height: math.unit(420, "feet")
  37513. },
  37514. ]
  37515. ))
  37516. characterMakers.push(() => makeCharacter(
  37517. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  37518. {
  37519. front: {
  37520. height: math.unit(5, "meters"),
  37521. weight: math.unit(292000000000000, "kg"),
  37522. name: "Front",
  37523. image: {
  37524. source: "./media/characters/devourer/front.svg",
  37525. extra: 1800/1733,
  37526. bottom: 211/2011
  37527. }
  37528. },
  37529. maw: {
  37530. height: math.unit(1.1, "meter"),
  37531. name: "Maw",
  37532. image: {
  37533. source: "./media/characters/devourer/maw.svg"
  37534. }
  37535. },
  37536. },
  37537. [
  37538. {
  37539. name: "Small",
  37540. height: math.unit(3, "meters")
  37541. },
  37542. {
  37543. name: "Large",
  37544. height: math.unit(5, "meters"),
  37545. default: true
  37546. },
  37547. {
  37548. name: "Macro",
  37549. height: math.unit(20, "meters")
  37550. },
  37551. ]
  37552. ))
  37553. characterMakers.push(() => makeCharacter(
  37554. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  37555. {
  37556. front: {
  37557. height: math.unit(6, "feet"),
  37558. weight: math.unit(400, "lb"),
  37559. name: "Front",
  37560. image: {
  37561. source: "./media/characters/ellarby/front.svg",
  37562. extra: 1909/1763,
  37563. bottom: 80/1989
  37564. }
  37565. },
  37566. back: {
  37567. height: math.unit(6, "feet"),
  37568. weight: math.unit(400, "lb"),
  37569. name: "Back",
  37570. image: {
  37571. source: "./media/characters/ellarby/back.svg",
  37572. extra: 1914/1784,
  37573. bottom: 172/2086
  37574. }
  37575. },
  37576. },
  37577. [
  37578. {
  37579. name: "Mischief",
  37580. height: math.unit(18, "inches")
  37581. },
  37582. {
  37583. name: "Trouble",
  37584. height: math.unit(12, "feet")
  37585. },
  37586. {
  37587. name: "Havoc",
  37588. height: math.unit(200, "feet"),
  37589. default: true
  37590. },
  37591. {
  37592. name: "Pandemonium",
  37593. height: math.unit(1, "mile")
  37594. },
  37595. {
  37596. name: "Catastrophe",
  37597. height: math.unit(100, "miles")
  37598. },
  37599. ]
  37600. ))
  37601. characterMakers.push(() => makeCharacter(
  37602. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  37603. {
  37604. front: {
  37605. height: math.unit(4.7, "meters"),
  37606. weight: math.unit(6500, "kg"),
  37607. name: "Front",
  37608. image: {
  37609. source: "./media/characters/vex/front.svg",
  37610. extra: 1288/1140,
  37611. bottom: 100/1388
  37612. }
  37613. },
  37614. },
  37615. [
  37616. {
  37617. name: "Normal",
  37618. height: math.unit(4.7, "meters"),
  37619. default: true
  37620. },
  37621. ]
  37622. ))
  37623. characterMakers.push(() => makeCharacter(
  37624. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  37625. {
  37626. normal: {
  37627. height: math.unit(6, "feet"),
  37628. weight: math.unit(350, "lb"),
  37629. name: "Normal",
  37630. image: {
  37631. source: "./media/characters/teshy/normal.svg",
  37632. extra: 1795/1735,
  37633. bottom: 16/1811
  37634. }
  37635. },
  37636. monsterFront: {
  37637. height: math.unit(12, "feet"),
  37638. weight: math.unit(4700, "lb"),
  37639. name: "Monster (Front)",
  37640. image: {
  37641. source: "./media/characters/teshy/monster-front.svg",
  37642. extra: 2042/2034,
  37643. bottom: 128/2170
  37644. }
  37645. },
  37646. monsterSide: {
  37647. height: math.unit(12, "feet"),
  37648. weight: math.unit(4700, "lb"),
  37649. name: "Monster (Side)",
  37650. image: {
  37651. source: "./media/characters/teshy/monster-side.svg",
  37652. extra: 2067/2056,
  37653. bottom: 70/2137
  37654. }
  37655. },
  37656. monsterBack: {
  37657. height: math.unit(12, "feet"),
  37658. weight: math.unit(4700, "lb"),
  37659. name: "Monster (Back)",
  37660. image: {
  37661. source: "./media/characters/teshy/monster-back.svg",
  37662. extra: 1921/1914,
  37663. bottom: 171/2092
  37664. }
  37665. },
  37666. },
  37667. [
  37668. {
  37669. name: "Normal",
  37670. height: math.unit(6, "feet"),
  37671. default: true
  37672. },
  37673. ]
  37674. ))
  37675. characterMakers.push(() => makeCharacter(
  37676. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  37677. {
  37678. front: {
  37679. height: math.unit(6, "feet"),
  37680. name: "Front",
  37681. image: {
  37682. source: "./media/characters/ramey/front.svg",
  37683. extra: 790/787,
  37684. bottom: 27/817
  37685. }
  37686. },
  37687. },
  37688. [
  37689. {
  37690. name: "Normal",
  37691. height: math.unit(6, "feet"),
  37692. default: true
  37693. },
  37694. ]
  37695. ))
  37696. characterMakers.push(() => makeCharacter(
  37697. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  37698. {
  37699. front: {
  37700. height: math.unit(5 + 5/12, "feet"),
  37701. weight: math.unit(120, "lb"),
  37702. name: "Front",
  37703. image: {
  37704. source: "./media/characters/phirae/front.svg",
  37705. extra: 2491/2436,
  37706. bottom: 38/2529
  37707. }
  37708. },
  37709. },
  37710. [
  37711. {
  37712. name: "Normal",
  37713. height: math.unit(5 + 5/12, "feet"),
  37714. default: true
  37715. },
  37716. ]
  37717. ))
  37718. characterMakers.push(() => makeCharacter(
  37719. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  37720. {
  37721. front: {
  37722. height: math.unit(5 + 3/12, "feet"),
  37723. name: "Front",
  37724. image: {
  37725. source: "./media/characters/stagglas/front.svg",
  37726. extra: 962/882,
  37727. bottom: 53/1015
  37728. }
  37729. },
  37730. feral: {
  37731. height: math.unit(335, "cm"),
  37732. name: "Feral",
  37733. image: {
  37734. source: "./media/characters/stagglas/feral.svg",
  37735. extra: 1732/1090,
  37736. bottom: 48/1780
  37737. }
  37738. },
  37739. },
  37740. [
  37741. {
  37742. name: "Normal",
  37743. height: math.unit(5 + 3/12, "feet"),
  37744. default: true
  37745. },
  37746. ]
  37747. ))
  37748. characterMakers.push(() => makeCharacter(
  37749. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  37750. {
  37751. front: {
  37752. height: math.unit(5 + 4/12, "feet"),
  37753. weight: math.unit(145, "lb"),
  37754. name: "Front",
  37755. image: {
  37756. source: "./media/characters/starra/front.svg",
  37757. extra: 1790/1691,
  37758. bottom: 91/1881
  37759. }
  37760. },
  37761. },
  37762. [
  37763. {
  37764. name: "Normal",
  37765. height: math.unit(5 + 4/12, "feet"),
  37766. default: true
  37767. },
  37768. ]
  37769. ))
  37770. characterMakers.push(() => makeCharacter(
  37771. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  37772. {
  37773. front: {
  37774. height: math.unit(3.5, "meters"),
  37775. name: "Front",
  37776. image: {
  37777. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  37778. extra: 1248/972,
  37779. bottom: 38/1286
  37780. }
  37781. },
  37782. },
  37783. [
  37784. {
  37785. name: "Normal",
  37786. height: math.unit(3.5, "meters"),
  37787. default: true
  37788. },
  37789. ]
  37790. ))
  37791. characterMakers.push(() => makeCharacter(
  37792. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  37793. {
  37794. side: {
  37795. height: math.unit(8 + 2/12, "feet"),
  37796. weight: math.unit(1240, "lb"),
  37797. name: "Side",
  37798. image: {
  37799. source: "./media/characters/mika-valentine/side.svg",
  37800. extra: 2670/2501,
  37801. bottom: 250/2920
  37802. }
  37803. },
  37804. },
  37805. [
  37806. {
  37807. name: "Normal",
  37808. height: math.unit(8 + 2/12, "feet"),
  37809. default: true
  37810. },
  37811. ]
  37812. ))
  37813. characterMakers.push(() => makeCharacter(
  37814. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  37815. {
  37816. front: {
  37817. height: math.unit(7 + 2/12, "feet"),
  37818. name: "Front",
  37819. image: {
  37820. source: "./media/characters/xoltol/front.svg",
  37821. extra: 2212/2124,
  37822. bottom: 84/2296
  37823. }
  37824. },
  37825. side: {
  37826. height: math.unit(7 + 2/12, "feet"),
  37827. name: "Side",
  37828. image: {
  37829. source: "./media/characters/xoltol/side.svg",
  37830. extra: 2273/2197,
  37831. bottom: 26/2299
  37832. }
  37833. },
  37834. hand: {
  37835. height: math.unit(2.5, "feet"),
  37836. name: "Hand",
  37837. image: {
  37838. source: "./media/characters/xoltol/hand.svg"
  37839. }
  37840. },
  37841. },
  37842. [
  37843. {
  37844. name: "Small-ish",
  37845. height: math.unit(5 + 11/12, "feet")
  37846. },
  37847. {
  37848. name: "Normal",
  37849. height: math.unit(7 + 2/12, "feet")
  37850. },
  37851. {
  37852. name: "\"Macro\"",
  37853. height: math.unit(14 + 9/12, "feet"),
  37854. default: true
  37855. },
  37856. {
  37857. name: "Alternate Height",
  37858. height: math.unit(20, "feet")
  37859. },
  37860. {
  37861. name: "Actually Macro",
  37862. height: math.unit(100, "feet")
  37863. },
  37864. ]
  37865. ))
  37866. characterMakers.push(() => makeCharacter(
  37867. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  37868. {
  37869. front: {
  37870. height: math.unit(5 + 2/12, "feet"),
  37871. weight: math.unit(75, "kg"),
  37872. name: "Front",
  37873. image: {
  37874. source: "./media/characters/kotetsu-redwood/front.svg",
  37875. extra: 1053/942,
  37876. bottom: 60/1113
  37877. }
  37878. },
  37879. },
  37880. [
  37881. {
  37882. name: "Normal",
  37883. height: math.unit(5 + 2/12, "feet"),
  37884. default: true
  37885. },
  37886. ]
  37887. ))
  37888. characterMakers.push(() => makeCharacter(
  37889. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  37890. {
  37891. front: {
  37892. height: math.unit(2.4, "meters"),
  37893. weight: math.unit(125, "kg"),
  37894. name: "Front",
  37895. image: {
  37896. source: "./media/characters/lilith/front.svg",
  37897. extra: 1590/1513,
  37898. bottom: 203/1793
  37899. }
  37900. },
  37901. },
  37902. [
  37903. {
  37904. name: "Humanoid",
  37905. height: math.unit(2.4, "meters")
  37906. },
  37907. {
  37908. name: "Normal",
  37909. height: math.unit(6, "meters"),
  37910. default: true
  37911. },
  37912. {
  37913. name: "Largest",
  37914. height: math.unit(55, "meters")
  37915. },
  37916. ]
  37917. ))
  37918. characterMakers.push(() => makeCharacter(
  37919. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  37920. {
  37921. front: {
  37922. height: math.unit(8 + 4/12, "feet"),
  37923. weight: math.unit(535, "lb"),
  37924. name: "Front",
  37925. image: {
  37926. source: "./media/characters/beh'kah-bolger/front.svg",
  37927. extra: 1660/1603,
  37928. bottom: 37/1697
  37929. }
  37930. },
  37931. },
  37932. [
  37933. {
  37934. name: "Normal",
  37935. height: math.unit(8 + 4/12, "feet"),
  37936. default: true
  37937. },
  37938. {
  37939. name: "Kaiju",
  37940. height: math.unit(250, "feet")
  37941. },
  37942. {
  37943. name: "Still Growing",
  37944. height: math.unit(10, "miles")
  37945. },
  37946. {
  37947. name: "Continental",
  37948. height: math.unit(5000, "miles")
  37949. },
  37950. {
  37951. name: "Final Form",
  37952. height: math.unit(2500000, "miles")
  37953. },
  37954. ]
  37955. ))
  37956. characterMakers.push(() => makeCharacter(
  37957. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  37958. {
  37959. front: {
  37960. height: math.unit(7 + 2/12, "feet"),
  37961. weight: math.unit(230, "kg"),
  37962. name: "Front",
  37963. image: {
  37964. source: "./media/characters/tatyana-milewska/front.svg",
  37965. extra: 1199/1150,
  37966. bottom: 86/1285
  37967. }
  37968. },
  37969. },
  37970. [
  37971. {
  37972. name: "Normal",
  37973. height: math.unit(7 + 2/12, "feet"),
  37974. default: true
  37975. },
  37976. {
  37977. name: "Big",
  37978. height: math.unit(12, "feet")
  37979. },
  37980. {
  37981. name: "Minimacro",
  37982. height: math.unit(20, "feet")
  37983. },
  37984. {
  37985. name: "Macro",
  37986. height: math.unit(120, "feet")
  37987. },
  37988. ]
  37989. ))
  37990. characterMakers.push(() => makeCharacter(
  37991. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  37992. {
  37993. front: {
  37994. height: math.unit(7 + 8/12, "feet"),
  37995. weight: math.unit(152, "kg"),
  37996. name: "Front",
  37997. image: {
  37998. source: "./media/characters/helen-arri/front.svg",
  37999. extra: 440/423,
  38000. bottom: 14/454
  38001. }
  38002. },
  38003. back: {
  38004. height: math.unit(7 + 8/12, "feet"),
  38005. weight: math.unit(152, "kg"),
  38006. name: "Back",
  38007. image: {
  38008. source: "./media/characters/helen-arri/back.svg",
  38009. extra: 443/426,
  38010. bottom: 8/451
  38011. }
  38012. },
  38013. },
  38014. [
  38015. {
  38016. name: "Normal",
  38017. height: math.unit(7 + 8/12, "feet"),
  38018. default: true
  38019. },
  38020. {
  38021. name: "Big",
  38022. height: math.unit(14, "feet")
  38023. },
  38024. {
  38025. name: "Minimacro",
  38026. height: math.unit(24, "feet")
  38027. },
  38028. {
  38029. name: "Macro",
  38030. height: math.unit(140, "feet")
  38031. },
  38032. ]
  38033. ))
  38034. characterMakers.push(() => makeCharacter(
  38035. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  38036. {
  38037. front: {
  38038. height: math.unit(6, "meters"),
  38039. name: "Front",
  38040. image: {
  38041. source: "./media/characters/ehanu-rehu/front.svg",
  38042. extra: 1800/1800,
  38043. bottom: 59/1859
  38044. }
  38045. },
  38046. },
  38047. [
  38048. {
  38049. name: "Normal",
  38050. height: math.unit(6, "meters"),
  38051. default: true
  38052. },
  38053. ]
  38054. ))
  38055. characterMakers.push(() => makeCharacter(
  38056. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  38057. {
  38058. front: {
  38059. height: math.unit(7 + 3/12, "feet"),
  38060. name: "Front",
  38061. image: {
  38062. source: "./media/characters/renholder/front.svg",
  38063. extra: 3096/2960,
  38064. bottom: 250/3346
  38065. }
  38066. },
  38067. },
  38068. [
  38069. {
  38070. name: "Normal Bat",
  38071. height: math.unit(7 + 3/12, "feet"),
  38072. default: true
  38073. },
  38074. {
  38075. name: "Slightly Tall Bat",
  38076. height: math.unit(100, "feet")
  38077. },
  38078. {
  38079. name: "Big Bat",
  38080. height: math.unit(1000, "feet")
  38081. },
  38082. {
  38083. name: "City-Sized Bat",
  38084. height: math.unit(200000, "feet")
  38085. },
  38086. {
  38087. name: "Bigger Bat",
  38088. height: math.unit(10000, "miles")
  38089. },
  38090. {
  38091. name: "Solar Sized Bat",
  38092. height: math.unit(100, "AU")
  38093. },
  38094. {
  38095. name: "Galactic Bat",
  38096. height: math.unit(200000, "lightyears")
  38097. },
  38098. {
  38099. name: "Universally Known Bat",
  38100. height: math.unit(1, "universe")
  38101. },
  38102. ]
  38103. ))
  38104. characterMakers.push(() => makeCharacter(
  38105. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  38106. {
  38107. front: {
  38108. height: math.unit(6 + 11/12, "feet"),
  38109. weight: math.unit(250, "lb"),
  38110. name: "Front",
  38111. image: {
  38112. source: "./media/characters/cookiecat/front.svg",
  38113. extra: 893/827,
  38114. bottom: 14/907
  38115. }
  38116. },
  38117. },
  38118. [
  38119. {
  38120. name: "Micro",
  38121. height: math.unit(3, "inches")
  38122. },
  38123. {
  38124. name: "Normal",
  38125. height: math.unit(6 + 11/12, "feet"),
  38126. default: true
  38127. },
  38128. {
  38129. name: "Macro",
  38130. height: math.unit(100, "feet")
  38131. },
  38132. {
  38133. name: "Macro+",
  38134. height: math.unit(404, "feet")
  38135. },
  38136. {
  38137. name: "Megamacro",
  38138. height: math.unit(165, "miles")
  38139. },
  38140. {
  38141. name: "Planetary",
  38142. height: math.unit(4600, "miles")
  38143. },
  38144. ]
  38145. ))
  38146. characterMakers.push(() => makeCharacter(
  38147. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  38148. {
  38149. front: {
  38150. height: math.unit(10 + 3/12, "feet"),
  38151. weight: math.unit(1500, "lb"),
  38152. name: "Front",
  38153. image: {
  38154. source: "./media/characters/tux-kusanagi/front.svg",
  38155. extra: 944/840,
  38156. bottom: 39/983
  38157. }
  38158. },
  38159. back: {
  38160. height: math.unit(10 + 3/12, "feet"),
  38161. weight: math.unit(1500, "lb"),
  38162. name: "Back",
  38163. image: {
  38164. source: "./media/characters/tux-kusanagi/back.svg",
  38165. extra: 941/842,
  38166. bottom: 28/969
  38167. }
  38168. },
  38169. rump: {
  38170. height: math.unit(5.25, "feet"),
  38171. name: "Rump",
  38172. image: {
  38173. source: "./media/characters/tux-kusanagi/rump.svg"
  38174. }
  38175. },
  38176. beak: {
  38177. height: math.unit(1.54, "feet"),
  38178. name: "Beak",
  38179. image: {
  38180. source: "./media/characters/tux-kusanagi/beak.svg"
  38181. }
  38182. },
  38183. },
  38184. [
  38185. {
  38186. name: "Normal",
  38187. height: math.unit(10 + 3/12, "feet"),
  38188. default: true
  38189. },
  38190. ]
  38191. ))
  38192. characterMakers.push(() => makeCharacter(
  38193. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  38194. {
  38195. front: {
  38196. height: math.unit(58, "feet"),
  38197. weight: math.unit(200, "tons"),
  38198. name: "Front",
  38199. image: {
  38200. source: "./media/characters/uzarmazari/front.svg",
  38201. extra: 1575/1455,
  38202. bottom: 152/1727
  38203. }
  38204. },
  38205. back: {
  38206. height: math.unit(58, "feet"),
  38207. weight: math.unit(200, "tons"),
  38208. name: "Back",
  38209. image: {
  38210. source: "./media/characters/uzarmazari/back.svg",
  38211. extra: 1585/1510,
  38212. bottom: 157/1742
  38213. }
  38214. },
  38215. head: {
  38216. height: math.unit(26, "feet"),
  38217. name: "Head",
  38218. image: {
  38219. source: "./media/characters/uzarmazari/head.svg"
  38220. }
  38221. },
  38222. },
  38223. [
  38224. {
  38225. name: "Normal",
  38226. height: math.unit(58, "feet"),
  38227. default: true
  38228. },
  38229. ]
  38230. ))
  38231. characterMakers.push(() => makeCharacter(
  38232. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  38233. {
  38234. side: {
  38235. height: math.unit(15, "feet"),
  38236. name: "Side",
  38237. image: {
  38238. source: "./media/characters/akitu/side.svg",
  38239. extra: 1421/1321,
  38240. bottom: 157/1578
  38241. }
  38242. },
  38243. front: {
  38244. height: math.unit(15, "feet"),
  38245. name: "Front",
  38246. image: {
  38247. source: "./media/characters/akitu/front.svg",
  38248. extra: 1435/1326,
  38249. bottom: 232/1667
  38250. }
  38251. },
  38252. },
  38253. [
  38254. {
  38255. name: "Normal",
  38256. height: math.unit(15, "feet"),
  38257. default: true
  38258. },
  38259. ]
  38260. ))
  38261. characterMakers.push(() => makeCharacter(
  38262. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  38263. {
  38264. front: {
  38265. height: math.unit(10 + 8/12, "feet"),
  38266. name: "Front",
  38267. image: {
  38268. source: "./media/characters/azalie-croixland/front.svg",
  38269. extra: 1972/1856,
  38270. bottom: 31/2003
  38271. }
  38272. },
  38273. },
  38274. [
  38275. {
  38276. name: "Original Height",
  38277. height: math.unit(5 + 4/12, "feet")
  38278. },
  38279. {
  38280. name: "Normal Height",
  38281. height: math.unit(10 + 8/12, "feet"),
  38282. default: true
  38283. },
  38284. ]
  38285. ))
  38286. characterMakers.push(() => makeCharacter(
  38287. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  38288. {
  38289. side: {
  38290. height: math.unit(7 + 1/12, "feet"),
  38291. weight: math.unit(245, "lb"),
  38292. name: "Side",
  38293. image: {
  38294. source: "./media/characters/kavus-kazian/side.svg",
  38295. extra: 349/342,
  38296. bottom: 15/364
  38297. }
  38298. },
  38299. },
  38300. [
  38301. {
  38302. name: "Normal",
  38303. height: math.unit(7 + 1/12, "feet"),
  38304. default: true
  38305. },
  38306. ]
  38307. ))
  38308. characterMakers.push(() => makeCharacter(
  38309. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  38310. {
  38311. normalFront: {
  38312. height: math.unit(5 + 11/12, "feet"),
  38313. name: "Front",
  38314. image: {
  38315. source: "./media/characters/moonlight-rose/normal-front.svg",
  38316. extra: 1980/1825,
  38317. bottom: 18/1998
  38318. },
  38319. form: "normal",
  38320. default: true
  38321. },
  38322. normalBack: {
  38323. height: math.unit(5 + 11/12, "feet"),
  38324. name: "Back",
  38325. image: {
  38326. source: "./media/characters/moonlight-rose/normal-back.svg",
  38327. extra: 2010/1839,
  38328. bottom: 10/2020
  38329. },
  38330. form: "normal"
  38331. },
  38332. demonFront: {
  38333. height: math.unit(1.5, "earths"),
  38334. name: "Front",
  38335. image: {
  38336. source: "./media/characters/moonlight-rose/demon.svg",
  38337. extra: 1400/1294,
  38338. bottom: 45/1445
  38339. },
  38340. form: "demon",
  38341. default: true
  38342. },
  38343. terraFront: {
  38344. height: math.unit(1.5, "earths"),
  38345. name: "Front",
  38346. image: {
  38347. source: "./media/characters/moonlight-rose/terra.svg"
  38348. },
  38349. form: "terra",
  38350. default: true
  38351. },
  38352. jupiterFront: {
  38353. height: math.unit(69911*2, "km"),
  38354. name: "Front",
  38355. image: {
  38356. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  38357. extra: 1367/1286,
  38358. bottom: 55/1422
  38359. },
  38360. form: "jupiter",
  38361. default: true
  38362. },
  38363. neptuneFront: {
  38364. height: math.unit(24622*2, "feet"),
  38365. name: "Front",
  38366. image: {
  38367. source: "./media/characters/moonlight-rose/neptune-front.svg",
  38368. extra: 1851/1712,
  38369. bottom: 0/1851
  38370. },
  38371. form: "neptune",
  38372. default: true
  38373. },
  38374. },
  38375. [
  38376. {
  38377. name: "\"Natural\" Height",
  38378. height: math.unit(5 + 11/12, "feet"),
  38379. form: "normal"
  38380. },
  38381. {
  38382. name: "Smallest comfortable size",
  38383. height: math.unit(40, "meters"),
  38384. form: "normal"
  38385. },
  38386. {
  38387. name: "Common size",
  38388. height: math.unit(50, "km"),
  38389. form: "normal",
  38390. default: true
  38391. },
  38392. {
  38393. name: "Normal",
  38394. height: math.unit(1.5, "earths"),
  38395. form: "demon",
  38396. default: true
  38397. },
  38398. {
  38399. name: "Universal",
  38400. height: math.unit(15, "universes"),
  38401. form: "demon"
  38402. },
  38403. {
  38404. name: "Earth",
  38405. height: math.unit(1.5, "earths"),
  38406. form: "terra",
  38407. default: true
  38408. },
  38409. {
  38410. name: "Super Earth",
  38411. height: math.unit(67.5, "earths"),
  38412. form: "terra"
  38413. },
  38414. {
  38415. name: "Doesn't fit in a solar system...",
  38416. height: math.unit(1, "galaxy"),
  38417. form: "terra"
  38418. },
  38419. {
  38420. name: "Saturn",
  38421. height: math.unit(58232*2, "km"),
  38422. form: "jupiter"
  38423. },
  38424. {
  38425. name: "Jupiter",
  38426. height: math.unit(69911*2, "km"),
  38427. form: "jupiter",
  38428. default: true
  38429. },
  38430. {
  38431. name: "HD 100546 b",
  38432. height: math.unit(482938, "km"),
  38433. form: "jupiter"
  38434. },
  38435. {
  38436. name: "Enceladus",
  38437. height: math.unit(513*2, "km"),
  38438. form: "neptune"
  38439. },
  38440. {
  38441. name: "Europe",
  38442. height: math.unit(1560*2, "km"),
  38443. form: "neptune"
  38444. },
  38445. {
  38446. name: "Neptune",
  38447. height: math.unit(24622*2, "km"),
  38448. form: "neptune",
  38449. default: true
  38450. },
  38451. {
  38452. name: "CoRoT-9b",
  38453. height: math.unit(75067*2, "km"),
  38454. form: "neptune"
  38455. },
  38456. ],
  38457. {
  38458. "normal": {
  38459. name: "Normal",
  38460. default: true
  38461. },
  38462. "demon": {
  38463. name: "Demon"
  38464. },
  38465. "terra": {
  38466. name: "Terra"
  38467. },
  38468. "jupiter": {
  38469. name: "Jupiter"
  38470. },
  38471. "neptune": {
  38472. name: "Neptune"
  38473. }
  38474. }
  38475. ))
  38476. characterMakers.push(() => makeCharacter(
  38477. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  38478. {
  38479. front: {
  38480. height: math.unit(16, "feet"),
  38481. weight: math.unit(610, "kg"),
  38482. name: "Front",
  38483. image: {
  38484. source: "./media/characters/huckle/front.svg",
  38485. extra: 1731/1625,
  38486. bottom: 33/1764
  38487. }
  38488. },
  38489. back: {
  38490. height: math.unit(16, "feet"),
  38491. weight: math.unit(610, "kg"),
  38492. name: "Back",
  38493. image: {
  38494. source: "./media/characters/huckle/back.svg",
  38495. extra: 1738/1651,
  38496. bottom: 37/1775
  38497. }
  38498. },
  38499. laughing: {
  38500. height: math.unit(3.75, "feet"),
  38501. name: "Laughing",
  38502. image: {
  38503. source: "./media/characters/huckle/laughing.svg"
  38504. }
  38505. },
  38506. angry: {
  38507. height: math.unit(4.15, "feet"),
  38508. name: "Angry",
  38509. image: {
  38510. source: "./media/characters/huckle/angry.svg"
  38511. }
  38512. },
  38513. },
  38514. [
  38515. {
  38516. name: "Normal",
  38517. height: math.unit(16, "feet"),
  38518. default: true
  38519. },
  38520. {
  38521. name: "Mini Macro",
  38522. height: math.unit(463, "feet")
  38523. },
  38524. {
  38525. name: "Macro",
  38526. height: math.unit(1680, "meters")
  38527. },
  38528. {
  38529. name: "Mega Macro",
  38530. height: math.unit(175, "km")
  38531. },
  38532. {
  38533. name: "Terra Macro",
  38534. height: math.unit(32, "gigameters")
  38535. },
  38536. {
  38537. name: "Multiverse+",
  38538. height: math.unit(2.56e23, "yottameters")
  38539. },
  38540. ]
  38541. ))
  38542. characterMakers.push(() => makeCharacter(
  38543. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  38544. {
  38545. front: {
  38546. height: math.unit(6 + 9/12, "feet"),
  38547. weight: math.unit(280, "lb"),
  38548. name: "Front",
  38549. image: {
  38550. source: "./media/characters/candy/front.svg",
  38551. extra: 234/217,
  38552. bottom: 11/245
  38553. }
  38554. },
  38555. },
  38556. [
  38557. {
  38558. name: "Really Small",
  38559. height: math.unit(0.1, "nm")
  38560. },
  38561. {
  38562. name: "Micro",
  38563. height: math.unit(2, "inches")
  38564. },
  38565. {
  38566. name: "Normal",
  38567. height: math.unit(6 + 9/12, "feet"),
  38568. default: true
  38569. },
  38570. {
  38571. name: "Small Macro",
  38572. height: math.unit(69, "feet")
  38573. },
  38574. {
  38575. name: "Macro",
  38576. height: math.unit(160, "feet")
  38577. },
  38578. {
  38579. name: "Megamacro",
  38580. height: math.unit(22000, "miles")
  38581. },
  38582. {
  38583. name: "Gigamacro",
  38584. height: math.unit(50000, "miles")
  38585. },
  38586. ]
  38587. ))
  38588. characterMakers.push(() => makeCharacter(
  38589. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  38590. {
  38591. front: {
  38592. height: math.unit(4, "feet"),
  38593. weight: math.unit(90, "lb"),
  38594. name: "Front",
  38595. image: {
  38596. source: "./media/characters/joey-mcdonald/front.svg",
  38597. extra: 1059/852,
  38598. bottom: 33/1092
  38599. }
  38600. },
  38601. back: {
  38602. height: math.unit(4, "feet"),
  38603. weight: math.unit(90, "lb"),
  38604. name: "Back",
  38605. image: {
  38606. source: "./media/characters/joey-mcdonald/back.svg",
  38607. extra: 1077/879,
  38608. bottom: 5/1082
  38609. }
  38610. },
  38611. frontKobold: {
  38612. height: math.unit(4, "feet"),
  38613. weight: math.unit(100, "lb"),
  38614. name: "Front-kobold",
  38615. image: {
  38616. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  38617. extra: 1480/1367,
  38618. bottom: 0/1480
  38619. }
  38620. },
  38621. backKobold: {
  38622. height: math.unit(4, "feet"),
  38623. weight: math.unit(100, "lb"),
  38624. name: "Back-kobold",
  38625. image: {
  38626. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  38627. extra: 1449/1361,
  38628. bottom: 0/1449
  38629. }
  38630. },
  38631. },
  38632. [
  38633. {
  38634. name: "Normal",
  38635. height: math.unit(4, "feet"),
  38636. default: true
  38637. },
  38638. ]
  38639. ))
  38640. characterMakers.push(() => makeCharacter(
  38641. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  38642. {
  38643. front: {
  38644. height: math.unit(12 + 6/12, "feet"),
  38645. name: "Front",
  38646. image: {
  38647. source: "./media/characters/kass-lockheed/front.svg",
  38648. extra: 354/343,
  38649. bottom: 9/363
  38650. }
  38651. },
  38652. back: {
  38653. height: math.unit(12 + 6/12, "feet"),
  38654. name: "Back",
  38655. image: {
  38656. source: "./media/characters/kass-lockheed/back.svg",
  38657. extra: 364/352,
  38658. bottom: 3/367
  38659. }
  38660. },
  38661. dick: {
  38662. height: math.unit(3.12, "feet"),
  38663. name: "Dick",
  38664. image: {
  38665. source: "./media/characters/kass-lockheed/dick.svg"
  38666. }
  38667. },
  38668. head: {
  38669. height: math.unit(2.6, "feet"),
  38670. name: "Head",
  38671. image: {
  38672. source: "./media/characters/kass-lockheed/head.svg"
  38673. }
  38674. },
  38675. bleh: {
  38676. height: math.unit(2.85, "feet"),
  38677. name: "Bleh",
  38678. image: {
  38679. source: "./media/characters/kass-lockheed/bleh.svg"
  38680. }
  38681. },
  38682. smug: {
  38683. height: math.unit(2.85, "feet"),
  38684. name: "Smug",
  38685. image: {
  38686. source: "./media/characters/kass-lockheed/smug.svg"
  38687. }
  38688. },
  38689. },
  38690. [
  38691. {
  38692. name: "Normal",
  38693. height: math.unit(12 + 6/12, "feet"),
  38694. default: true
  38695. },
  38696. ]
  38697. ))
  38698. characterMakers.push(() => makeCharacter(
  38699. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  38700. {
  38701. front: {
  38702. height: math.unit(6 + 2/12, "feet"),
  38703. name: "Front",
  38704. image: {
  38705. source: "./media/characters/taylor/front.svg",
  38706. extra: 639/495,
  38707. bottom: 12/651
  38708. }
  38709. },
  38710. },
  38711. [
  38712. {
  38713. name: "Normal",
  38714. height: math.unit(6 + 2/12, "feet"),
  38715. default: true
  38716. },
  38717. {
  38718. name: "Big",
  38719. height: math.unit(15, "feet")
  38720. },
  38721. {
  38722. name: "Lorg",
  38723. height: math.unit(80, "feet")
  38724. },
  38725. {
  38726. name: "Too Lorg",
  38727. height: math.unit(120, "feet")
  38728. },
  38729. ]
  38730. ))
  38731. characterMakers.push(() => makeCharacter(
  38732. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  38733. {
  38734. front: {
  38735. height: math.unit(15, "feet"),
  38736. name: "Front",
  38737. image: {
  38738. source: "./media/characters/kaizer/front.svg",
  38739. extra: 1612/1436,
  38740. bottom: 43/1655
  38741. }
  38742. },
  38743. },
  38744. [
  38745. {
  38746. name: "Normal",
  38747. height: math.unit(15, "feet"),
  38748. default: true
  38749. },
  38750. ]
  38751. ))
  38752. characterMakers.push(() => makeCharacter(
  38753. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  38754. {
  38755. front: {
  38756. height: math.unit(2, "feet"),
  38757. weight: math.unit(30, "lb"),
  38758. name: "Front",
  38759. image: {
  38760. source: "./media/characters/sandy/front.svg",
  38761. extra: 1439/1307,
  38762. bottom: 194/1633
  38763. }
  38764. },
  38765. },
  38766. [
  38767. {
  38768. name: "Normal",
  38769. height: math.unit(2, "feet"),
  38770. default: true
  38771. },
  38772. ]
  38773. ))
  38774. characterMakers.push(() => makeCharacter(
  38775. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  38776. {
  38777. front: {
  38778. height: math.unit(3, "feet"),
  38779. name: "Front",
  38780. image: {
  38781. source: "./media/characters/mellvi/front.svg",
  38782. extra: 1831/1630,
  38783. bottom: 58/1889
  38784. }
  38785. },
  38786. },
  38787. [
  38788. {
  38789. name: "Normal",
  38790. height: math.unit(3, "feet"),
  38791. default: true
  38792. },
  38793. ]
  38794. ))
  38795. characterMakers.push(() => makeCharacter(
  38796. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  38797. {
  38798. front: {
  38799. height: math.unit(5 + 11/12, "feet"),
  38800. weight: math.unit(200, "lb"),
  38801. name: "Front",
  38802. image: {
  38803. source: "./media/characters/shirou/front.svg",
  38804. extra: 2491/2383,
  38805. bottom: 189/2680
  38806. }
  38807. },
  38808. back: {
  38809. height: math.unit(5 + 11/12, "feet"),
  38810. weight: math.unit(200, "lb"),
  38811. name: "Back",
  38812. image: {
  38813. source: "./media/characters/shirou/back.svg",
  38814. extra: 2554/2450,
  38815. bottom: 76/2630
  38816. }
  38817. },
  38818. },
  38819. [
  38820. {
  38821. name: "Normal",
  38822. height: math.unit(5 + 11/12, "feet"),
  38823. default: true
  38824. },
  38825. ]
  38826. ))
  38827. characterMakers.push(() => makeCharacter(
  38828. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  38829. {
  38830. front: {
  38831. height: math.unit(6 + 3/12, "feet"),
  38832. weight: math.unit(177, "lb"),
  38833. name: "Front",
  38834. image: {
  38835. source: "./media/characters/noryu/front.svg",
  38836. extra: 973/885,
  38837. bottom: 10/983
  38838. }
  38839. },
  38840. },
  38841. [
  38842. {
  38843. name: "Normal",
  38844. height: math.unit(6 + 3/12, "feet"),
  38845. default: true
  38846. },
  38847. ]
  38848. ))
  38849. characterMakers.push(() => makeCharacter(
  38850. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  38851. {
  38852. front: {
  38853. height: math.unit(5 + 6/12, "feet"),
  38854. weight: math.unit(170, "lb"),
  38855. name: "Front",
  38856. image: {
  38857. source: "./media/characters/mevolas-rubenido/front.svg",
  38858. extra: 2109/1901,
  38859. bottom: 96/2205
  38860. }
  38861. },
  38862. },
  38863. [
  38864. {
  38865. name: "Normal",
  38866. height: math.unit(5 + 6/12, "feet"),
  38867. default: true
  38868. },
  38869. ]
  38870. ))
  38871. characterMakers.push(() => makeCharacter(
  38872. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  38873. {
  38874. front: {
  38875. height: math.unit(100, "feet"),
  38876. name: "Front",
  38877. image: {
  38878. source: "./media/characters/dee/front.svg",
  38879. extra: 2153/2036,
  38880. bottom: 59/2212
  38881. }
  38882. },
  38883. back: {
  38884. height: math.unit(100, "feet"),
  38885. name: "Back",
  38886. image: {
  38887. source: "./media/characters/dee/back.svg",
  38888. extra: 2183/2058,
  38889. bottom: 75/2258
  38890. }
  38891. },
  38892. foot: {
  38893. height: math.unit(19.43, "feet"),
  38894. name: "Foot",
  38895. image: {
  38896. source: "./media/characters/dee/foot.svg"
  38897. }
  38898. },
  38899. hoof: {
  38900. height: math.unit(20.6, "feet"),
  38901. name: "Hoof",
  38902. image: {
  38903. source: "./media/characters/dee/hoof.svg"
  38904. }
  38905. },
  38906. },
  38907. [
  38908. {
  38909. name: "Macro",
  38910. height: math.unit(100, "feet"),
  38911. default: true
  38912. },
  38913. ]
  38914. ))
  38915. characterMakers.push(() => makeCharacter(
  38916. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  38917. {
  38918. front: {
  38919. height: math.unit(5 + 6/12, "feet"),
  38920. name: "Front",
  38921. image: {
  38922. source: "./media/characters/teh/front.svg",
  38923. extra: 1002/847,
  38924. bottom: 62/1064
  38925. }
  38926. },
  38927. },
  38928. [
  38929. {
  38930. name: "Normal",
  38931. height: math.unit(5 + 6/12, "feet"),
  38932. default: true
  38933. },
  38934. ]
  38935. ))
  38936. characterMakers.push(() => makeCharacter(
  38937. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  38938. {
  38939. side: {
  38940. height: math.unit(6 + 1/12, "feet"),
  38941. weight: math.unit(204, "lb"),
  38942. name: "Side",
  38943. image: {
  38944. source: "./media/characters/quicksilver-ayukoti/side.svg",
  38945. extra: 974/775,
  38946. bottom: 169/1143
  38947. }
  38948. },
  38949. sitting: {
  38950. height: math.unit(6 + 2/12, "feet"),
  38951. weight: math.unit(204, "lb"),
  38952. name: "Sitting",
  38953. image: {
  38954. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  38955. extra: 1175/964,
  38956. bottom: 378/1553
  38957. }
  38958. },
  38959. },
  38960. [
  38961. {
  38962. name: "Normal",
  38963. height: math.unit(6 + 1/12, "feet"),
  38964. default: true
  38965. },
  38966. ]
  38967. ))
  38968. characterMakers.push(() => makeCharacter(
  38969. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  38970. {
  38971. front: {
  38972. height: math.unit(6, "inches"),
  38973. name: "Front",
  38974. image: {
  38975. source: "./media/characters/tululi/front.svg",
  38976. extra: 1997/1876,
  38977. bottom: 20/2017
  38978. }
  38979. },
  38980. },
  38981. [
  38982. {
  38983. name: "Normal",
  38984. height: math.unit(6, "inches"),
  38985. default: true
  38986. },
  38987. ]
  38988. ))
  38989. characterMakers.push(() => makeCharacter(
  38990. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  38991. {
  38992. front: {
  38993. height: math.unit(4 + 1/12, "feet"),
  38994. name: "Front",
  38995. image: {
  38996. source: "./media/characters/star/front.svg",
  38997. extra: 1493/1189,
  38998. bottom: 48/1541
  38999. }
  39000. },
  39001. },
  39002. [
  39003. {
  39004. name: "Normal",
  39005. height: math.unit(4 + 1/12, "feet"),
  39006. default: true
  39007. },
  39008. ]
  39009. ))
  39010. characterMakers.push(() => makeCharacter(
  39011. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  39012. {
  39013. front: {
  39014. height: math.unit(6 + 3/12, "feet"),
  39015. name: "Front",
  39016. image: {
  39017. source: "./media/characters/comet/front.svg",
  39018. extra: 1681/1462,
  39019. bottom: 26/1707
  39020. }
  39021. },
  39022. },
  39023. [
  39024. {
  39025. name: "Normal",
  39026. height: math.unit(6 + 3/12, "feet"),
  39027. default: true
  39028. },
  39029. ]
  39030. ))
  39031. characterMakers.push(() => makeCharacter(
  39032. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  39033. {
  39034. front: {
  39035. height: math.unit(950, "feet"),
  39036. name: "Front",
  39037. image: {
  39038. source: "./media/characters/vortex/front.svg",
  39039. extra: 1497/1434,
  39040. bottom: 56/1553
  39041. }
  39042. },
  39043. maw: {
  39044. height: math.unit(285, "feet"),
  39045. name: "Maw",
  39046. image: {
  39047. source: "./media/characters/vortex/maw.svg"
  39048. }
  39049. },
  39050. },
  39051. [
  39052. {
  39053. name: "Macro",
  39054. height: math.unit(950, "feet"),
  39055. default: true
  39056. },
  39057. ]
  39058. ))
  39059. characterMakers.push(() => makeCharacter(
  39060. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  39061. {
  39062. front: {
  39063. height: math.unit(600, "feet"),
  39064. weight: math.unit(0.02, "grams"),
  39065. name: "Front",
  39066. image: {
  39067. source: "./media/characters/doodle/front.svg",
  39068. extra: 1578/1413,
  39069. bottom: 37/1615
  39070. }
  39071. },
  39072. },
  39073. [
  39074. {
  39075. name: "Macro",
  39076. height: math.unit(600, "feet"),
  39077. default: true
  39078. },
  39079. ]
  39080. ))
  39081. characterMakers.push(() => makeCharacter(
  39082. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  39083. {
  39084. front: {
  39085. height: math.unit(6 + 6/12, "feet"),
  39086. name: "Front",
  39087. image: {
  39088. source: "./media/characters/jai/front.svg",
  39089. extra: 1645/1534,
  39090. bottom: 115/1760
  39091. }
  39092. },
  39093. },
  39094. [
  39095. {
  39096. name: "Normal",
  39097. height: math.unit(6 + 6/12, "feet"),
  39098. default: true
  39099. },
  39100. ]
  39101. ))
  39102. characterMakers.push(() => makeCharacter(
  39103. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  39104. {
  39105. front: {
  39106. height: math.unit(6 + 8/12, "feet"),
  39107. name: "Front",
  39108. image: {
  39109. source: "./media/characters/pixel/front.svg",
  39110. extra: 1900/1735,
  39111. bottom: 63/1963
  39112. }
  39113. },
  39114. },
  39115. [
  39116. {
  39117. name: "Normal",
  39118. height: math.unit(6 + 8/12, "feet"),
  39119. default: true
  39120. },
  39121. ]
  39122. ))
  39123. characterMakers.push(() => makeCharacter(
  39124. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  39125. {
  39126. back: {
  39127. height: math.unit(4 + 1/12, "feet"),
  39128. weight: math.unit(75, "lb"),
  39129. name: "Back",
  39130. image: {
  39131. source: "./media/characters/rhett/back.svg",
  39132. extra: 930/878,
  39133. bottom: 25/955
  39134. }
  39135. },
  39136. front: {
  39137. height: math.unit(4 + 1/12, "feet"),
  39138. weight: math.unit(75, "lb"),
  39139. name: "Front",
  39140. image: {
  39141. source: "./media/characters/rhett/front.svg",
  39142. extra: 1682/1586,
  39143. bottom: 92/1774
  39144. }
  39145. },
  39146. },
  39147. [
  39148. {
  39149. name: "Micro",
  39150. height: math.unit(8, "inches")
  39151. },
  39152. {
  39153. name: "Tiny",
  39154. height: math.unit(2, "feet")
  39155. },
  39156. {
  39157. name: "Normal",
  39158. height: math.unit(4 + 1/12, "feet"),
  39159. default: true
  39160. },
  39161. ]
  39162. ))
  39163. characterMakers.push(() => makeCharacter(
  39164. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  39165. {
  39166. front: {
  39167. height: math.unit(3 + 3/12, "feet"),
  39168. name: "Front",
  39169. image: {
  39170. source: "./media/characters/penny/front.svg",
  39171. extra: 1406/1311,
  39172. bottom: 26/1432
  39173. }
  39174. },
  39175. },
  39176. [
  39177. {
  39178. name: "Normal",
  39179. height: math.unit(3 + 3/12, "feet"),
  39180. default: true
  39181. },
  39182. ]
  39183. ))
  39184. characterMakers.push(() => makeCharacter(
  39185. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  39186. {
  39187. front: {
  39188. height: math.unit(4 + 11/12, "feet"),
  39189. name: "Front",
  39190. image: {
  39191. source: "./media/characters/monty/front.svg",
  39192. extra: 1479/1209,
  39193. bottom: 0/1479
  39194. }
  39195. },
  39196. },
  39197. [
  39198. {
  39199. name: "Normal",
  39200. height: math.unit(4 + 11/12, "feet"),
  39201. default: true
  39202. },
  39203. ]
  39204. ))
  39205. characterMakers.push(() => makeCharacter(
  39206. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  39207. {
  39208. front: {
  39209. height: math.unit(8 + 4/12, "feet"),
  39210. name: "Front",
  39211. image: {
  39212. source: "./media/characters/sterling/front.svg",
  39213. extra: 1420/1236,
  39214. bottom: 27/1447
  39215. }
  39216. },
  39217. },
  39218. [
  39219. {
  39220. name: "Normal",
  39221. height: math.unit(8 + 4/12, "feet"),
  39222. default: true
  39223. },
  39224. ]
  39225. ))
  39226. characterMakers.push(() => makeCharacter(
  39227. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  39228. {
  39229. front: {
  39230. height: math.unit(15, "feet"),
  39231. name: "Front",
  39232. image: {
  39233. source: "./media/characters/marble/front.svg",
  39234. extra: 973/937,
  39235. bottom: 32/1005
  39236. }
  39237. },
  39238. },
  39239. [
  39240. {
  39241. name: "Normal",
  39242. height: math.unit(15, "feet"),
  39243. default: true
  39244. },
  39245. ]
  39246. ))
  39247. characterMakers.push(() => makeCharacter(
  39248. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  39249. {
  39250. front: {
  39251. height: math.unit(3, "inches"),
  39252. name: "Front",
  39253. image: {
  39254. source: "./media/characters/powder/front.svg",
  39255. extra: 1504/1334,
  39256. bottom: 518/2022
  39257. }
  39258. },
  39259. },
  39260. [
  39261. {
  39262. name: "Normal",
  39263. height: math.unit(3, "inches"),
  39264. default: true
  39265. },
  39266. ]
  39267. ))
  39268. characterMakers.push(() => makeCharacter(
  39269. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  39270. {
  39271. front: {
  39272. height: math.unit(4 + 5/12, "feet"),
  39273. name: "Front",
  39274. image: {
  39275. source: "./media/characters/joey-raccoon/front.svg",
  39276. extra: 1273/1197,
  39277. bottom: 0/1273
  39278. }
  39279. },
  39280. },
  39281. [
  39282. {
  39283. name: "Normal",
  39284. height: math.unit(4 + 5/12, "feet"),
  39285. default: true
  39286. },
  39287. ]
  39288. ))
  39289. characterMakers.push(() => makeCharacter(
  39290. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  39291. {
  39292. front: {
  39293. height: math.unit(8 + 4/12, "feet"),
  39294. name: "Front",
  39295. image: {
  39296. source: "./media/characters/vick/front.svg",
  39297. extra: 2187/2118,
  39298. bottom: 47/2234
  39299. }
  39300. },
  39301. },
  39302. [
  39303. {
  39304. name: "Normal",
  39305. height: math.unit(8 + 4/12, "feet"),
  39306. default: true
  39307. },
  39308. ]
  39309. ))
  39310. characterMakers.push(() => makeCharacter(
  39311. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  39312. {
  39313. front: {
  39314. height: math.unit(5 + 5/12, "feet"),
  39315. name: "Front",
  39316. image: {
  39317. source: "./media/characters/mitsy/front.svg",
  39318. extra: 1842/1695,
  39319. bottom: 0/1842
  39320. }
  39321. },
  39322. },
  39323. [
  39324. {
  39325. name: "Normal",
  39326. height: math.unit(5 + 5/12, "feet"),
  39327. default: true
  39328. },
  39329. ]
  39330. ))
  39331. characterMakers.push(() => makeCharacter(
  39332. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  39333. {
  39334. front: {
  39335. height: math.unit(6 + 3/12, "feet"),
  39336. name: "Front",
  39337. image: {
  39338. source: "./media/characters/silvy/front.svg",
  39339. extra: 1995/1836,
  39340. bottom: 225/2220
  39341. }
  39342. },
  39343. },
  39344. [
  39345. {
  39346. name: "Normal",
  39347. height: math.unit(6 + 3/12, "feet"),
  39348. default: true
  39349. },
  39350. ]
  39351. ))
  39352. characterMakers.push(() => makeCharacter(
  39353. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  39354. {
  39355. front: {
  39356. height: math.unit(3 + 8/12, "feet"),
  39357. name: "Front",
  39358. image: {
  39359. source: "./media/characters/rodney/front.svg",
  39360. extra: 1956/1747,
  39361. bottom: 31/1987
  39362. }
  39363. },
  39364. frontDressed: {
  39365. height: math.unit(2.9, "feet"),
  39366. name: "Front (Dressed)",
  39367. image: {
  39368. source: "./media/characters/rodney/front-dressed.svg",
  39369. extra: 1382/1241,
  39370. bottom: 385/1767
  39371. }
  39372. },
  39373. },
  39374. [
  39375. {
  39376. name: "Normal",
  39377. height: math.unit(3 + 8/12, "feet"),
  39378. default: true
  39379. },
  39380. ]
  39381. ))
  39382. characterMakers.push(() => makeCharacter(
  39383. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  39384. {
  39385. front: {
  39386. height: math.unit(5 + 9/12, "feet"),
  39387. weight: math.unit(194, "lbs"),
  39388. name: "Front",
  39389. image: {
  39390. source: "./media/characters/zakail-sudekai/front.svg",
  39391. extra: 2696/2533,
  39392. bottom: 248/2944
  39393. }
  39394. },
  39395. maw: {
  39396. height: math.unit(1.35, "feet"),
  39397. name: "Maw",
  39398. image: {
  39399. source: "./media/characters/zakail-sudekai/maw.svg"
  39400. }
  39401. },
  39402. },
  39403. [
  39404. {
  39405. name: "Normal",
  39406. height: math.unit(5 + 9/12, "feet"),
  39407. default: true
  39408. },
  39409. ]
  39410. ))
  39411. characterMakers.push(() => makeCharacter(
  39412. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  39413. {
  39414. front: {
  39415. height: math.unit(8 + 4/12, "feet"),
  39416. weight: math.unit(1200, "lb"),
  39417. name: "Front",
  39418. image: {
  39419. source: "./media/characters/eleanor/front.svg",
  39420. extra: 1226/1192,
  39421. bottom: 52/1278
  39422. }
  39423. },
  39424. back: {
  39425. height: math.unit(8 + 4/12, "feet"),
  39426. weight: math.unit(1200, "lb"),
  39427. name: "Back",
  39428. image: {
  39429. source: "./media/characters/eleanor/back.svg",
  39430. extra: 1242/1184,
  39431. bottom: 60/1302
  39432. }
  39433. },
  39434. head: {
  39435. height: math.unit(2.62, "feet"),
  39436. name: "Head",
  39437. image: {
  39438. source: "./media/characters/eleanor/head.svg"
  39439. }
  39440. },
  39441. },
  39442. [
  39443. {
  39444. name: "Normal",
  39445. height: math.unit(8 + 4/12, "feet"),
  39446. default: true
  39447. },
  39448. ]
  39449. ))
  39450. characterMakers.push(() => makeCharacter(
  39451. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  39452. {
  39453. front: {
  39454. height: math.unit(8 + 4/12, "feet"),
  39455. weight: math.unit(750, "lb"),
  39456. name: "Front",
  39457. image: {
  39458. source: "./media/characters/tanya/front.svg",
  39459. extra: 1749/1615,
  39460. bottom: 33/1782
  39461. }
  39462. },
  39463. },
  39464. [
  39465. {
  39466. name: "Normal",
  39467. height: math.unit(8 + 4/12, "feet"),
  39468. default: true
  39469. },
  39470. ]
  39471. ))
  39472. characterMakers.push(() => makeCharacter(
  39473. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  39474. {
  39475. front: {
  39476. height: math.unit(5, "feet"),
  39477. weight: math.unit(225, "lb"),
  39478. name: "Front",
  39479. image: {
  39480. source: "./media/characters/cindy/front.svg",
  39481. extra: 1320/1250,
  39482. bottom: 42/1362
  39483. }
  39484. },
  39485. frontDressed: {
  39486. height: math.unit(5, "feet"),
  39487. weight: math.unit(225, "lb"),
  39488. name: "Front (Dressed)",
  39489. image: {
  39490. source: "./media/characters/cindy/front-dressed.svg",
  39491. extra: 1320/1250,
  39492. bottom: 42/1362
  39493. }
  39494. },
  39495. back: {
  39496. height: math.unit(5, "feet"),
  39497. weight: math.unit(225, "lb"),
  39498. name: "Back",
  39499. image: {
  39500. source: "./media/characters/cindy/back.svg",
  39501. extra: 1384/1346,
  39502. bottom: 14/1398
  39503. }
  39504. },
  39505. },
  39506. [
  39507. {
  39508. name: "Normal",
  39509. height: math.unit(5, "feet"),
  39510. default: true
  39511. },
  39512. ]
  39513. ))
  39514. characterMakers.push(() => makeCharacter(
  39515. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  39516. {
  39517. front: {
  39518. height: math.unit(6 + 9/12, "feet"),
  39519. weight: math.unit(440, "lb"),
  39520. name: "Front",
  39521. image: {
  39522. source: "./media/characters/wilbur-owen/front.svg",
  39523. extra: 1575/1448,
  39524. bottom: 72/1647
  39525. }
  39526. },
  39527. back: {
  39528. height: math.unit(6 + 9/12, "feet"),
  39529. weight: math.unit(440, "lb"),
  39530. name: "Back",
  39531. image: {
  39532. source: "./media/characters/wilbur-owen/back.svg",
  39533. extra: 1578/1445,
  39534. bottom: 36/1614
  39535. }
  39536. },
  39537. },
  39538. [
  39539. {
  39540. name: "Normal",
  39541. height: math.unit(6 + 9/12, "feet"),
  39542. default: true
  39543. },
  39544. ]
  39545. ))
  39546. characterMakers.push(() => makeCharacter(
  39547. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  39548. {
  39549. front: {
  39550. height: math.unit(6 + 5/12, "feet"),
  39551. weight: math.unit(650, "lb"),
  39552. name: "Front",
  39553. image: {
  39554. source: "./media/characters/keegan/front.svg",
  39555. extra: 2387/2198,
  39556. bottom: 33/2420
  39557. }
  39558. },
  39559. side: {
  39560. height: math.unit(6 + 5/12, "feet"),
  39561. weight: math.unit(650, "lb"),
  39562. name: "Side",
  39563. image: {
  39564. source: "./media/characters/keegan/side.svg",
  39565. extra: 2390/2202,
  39566. bottom: 47/2437
  39567. }
  39568. },
  39569. back: {
  39570. height: math.unit(6 + 5/12, "feet"),
  39571. weight: math.unit(650, "lb"),
  39572. name: "Back",
  39573. image: {
  39574. source: "./media/characters/keegan/back.svg",
  39575. extra: 2418/2268,
  39576. bottom: 15/2433
  39577. }
  39578. },
  39579. frontSfw: {
  39580. height: math.unit(6 + 5/12, "feet"),
  39581. weight: math.unit(650, "lb"),
  39582. name: "Front (SFW)",
  39583. image: {
  39584. source: "./media/characters/keegan/front-sfw.svg",
  39585. extra: 2387/2198,
  39586. bottom: 33/2420
  39587. }
  39588. },
  39589. beans: {
  39590. height: math.unit(1.85, "feet"),
  39591. name: "Beans",
  39592. image: {
  39593. source: "./media/characters/keegan/beans.svg"
  39594. }
  39595. },
  39596. },
  39597. [
  39598. {
  39599. name: "Normal",
  39600. height: math.unit(6 + 5/12, "feet"),
  39601. default: true
  39602. },
  39603. ]
  39604. ))
  39605. characterMakers.push(() => makeCharacter(
  39606. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  39607. {
  39608. front: {
  39609. height: math.unit(9, "feet"),
  39610. name: "Front",
  39611. image: {
  39612. source: "./media/characters/colton/front.svg",
  39613. extra: 1589/1326,
  39614. bottom: 139/1728
  39615. }
  39616. },
  39617. },
  39618. [
  39619. {
  39620. name: "Normal",
  39621. height: math.unit(9, "feet"),
  39622. default: true
  39623. },
  39624. ]
  39625. ))
  39626. characterMakers.push(() => makeCharacter(
  39627. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  39628. {
  39629. front: {
  39630. height: math.unit(2 + 9/12, "feet"),
  39631. name: "Front",
  39632. image: {
  39633. source: "./media/characters/bora/front.svg",
  39634. extra: 1265/1250,
  39635. bottom: 24/1289
  39636. }
  39637. },
  39638. },
  39639. [
  39640. {
  39641. name: "Normal",
  39642. height: math.unit(2 + 9/12, "feet"),
  39643. default: true
  39644. },
  39645. ]
  39646. ))
  39647. characterMakers.push(() => makeCharacter(
  39648. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  39649. {
  39650. front: {
  39651. height: math.unit(8, "feet"),
  39652. name: "Front",
  39653. image: {
  39654. source: "./media/characters/myu-myu/front.svg",
  39655. extra: 1949/1857,
  39656. bottom: 90/2039
  39657. }
  39658. },
  39659. },
  39660. [
  39661. {
  39662. name: "Normal",
  39663. height: math.unit(8, "feet"),
  39664. default: true
  39665. },
  39666. {
  39667. name: "Big",
  39668. height: math.unit(15, "feet")
  39669. },
  39670. {
  39671. name: "BIG",
  39672. height: math.unit(25, "feet")
  39673. },
  39674. ]
  39675. ))
  39676. characterMakers.push(() => makeCharacter(
  39677. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  39678. {
  39679. side: {
  39680. height: math.unit(7 + 5/12, "feet"),
  39681. weight: math.unit(2800, "lb"),
  39682. name: "Side",
  39683. image: {
  39684. source: "./media/characters/haloren/side.svg",
  39685. extra: 1793/409,
  39686. bottom: 59/1852
  39687. }
  39688. },
  39689. frontPaw: {
  39690. height: math.unit(2.36, "feet"),
  39691. name: "Front paw",
  39692. image: {
  39693. source: "./media/characters/haloren/front-paw.svg"
  39694. }
  39695. },
  39696. hindPaw: {
  39697. height: math.unit(3.18, "feet"),
  39698. name: "Hind paw",
  39699. image: {
  39700. source: "./media/characters/haloren/hind-paw.svg"
  39701. }
  39702. },
  39703. maw: {
  39704. height: math.unit(5.05, "feet"),
  39705. name: "Maw",
  39706. image: {
  39707. source: "./media/characters/haloren/maw.svg"
  39708. }
  39709. },
  39710. dick: {
  39711. height: math.unit(2.90, "feet"),
  39712. name: "Dick",
  39713. image: {
  39714. source: "./media/characters/haloren/dick.svg"
  39715. }
  39716. },
  39717. },
  39718. [
  39719. {
  39720. name: "Normal",
  39721. height: math.unit(7 + 5/12, "feet"),
  39722. default: true
  39723. },
  39724. {
  39725. name: "Enhanced",
  39726. height: math.unit(14 + 3/12, "feet")
  39727. },
  39728. ]
  39729. ))
  39730. characterMakers.push(() => makeCharacter(
  39731. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  39732. {
  39733. front: {
  39734. height: math.unit(171, "cm"),
  39735. name: "Front",
  39736. image: {
  39737. source: "./media/characters/kimmy/front.svg",
  39738. extra: 1491/1435,
  39739. bottom: 53/1544
  39740. }
  39741. },
  39742. },
  39743. [
  39744. {
  39745. name: "Small",
  39746. height: math.unit(9, "cm")
  39747. },
  39748. {
  39749. name: "Normal",
  39750. height: math.unit(171, "cm"),
  39751. default: true
  39752. },
  39753. ]
  39754. ))
  39755. characterMakers.push(() => makeCharacter(
  39756. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  39757. {
  39758. front: {
  39759. height: math.unit(8, "feet"),
  39760. weight: math.unit(300, "lb"),
  39761. name: "Front",
  39762. image: {
  39763. source: "./media/characters/galeboomer/front.svg",
  39764. extra: 4651/4415,
  39765. bottom: 162/4813
  39766. }
  39767. },
  39768. back: {
  39769. height: math.unit(8, "feet"),
  39770. weight: math.unit(300, "lb"),
  39771. name: "Back",
  39772. image: {
  39773. source: "./media/characters/galeboomer/back.svg",
  39774. extra: 4544/4314,
  39775. bottom: 16/4560
  39776. }
  39777. },
  39778. frontAlt: {
  39779. height: math.unit(8, "feet"),
  39780. weight: math.unit(300, "lb"),
  39781. name: "Front (Alt)",
  39782. image: {
  39783. source: "./media/characters/galeboomer/front-alt.svg",
  39784. extra: 4458/4228,
  39785. bottom: 68/4526
  39786. }
  39787. },
  39788. maw: {
  39789. height: math.unit(1.2, "feet"),
  39790. name: "Maw",
  39791. image: {
  39792. source: "./media/characters/galeboomer/maw.svg"
  39793. }
  39794. },
  39795. },
  39796. [
  39797. {
  39798. name: "Normal",
  39799. height: math.unit(8, "feet"),
  39800. default: true
  39801. },
  39802. ]
  39803. ))
  39804. characterMakers.push(() => makeCharacter(
  39805. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  39806. {
  39807. front: {
  39808. height: math.unit(5 + 9/12, "feet"),
  39809. weight: math.unit(120, "lb"),
  39810. name: "Front",
  39811. image: {
  39812. source: "./media/characters/chyr/front.svg",
  39813. extra: 1323/1254,
  39814. bottom: 63/1386
  39815. }
  39816. },
  39817. back: {
  39818. height: math.unit(5 + 9/12, "feet"),
  39819. weight: math.unit(120, "lb"),
  39820. name: "Back",
  39821. image: {
  39822. source: "./media/characters/chyr/back.svg",
  39823. extra: 1323/1252,
  39824. bottom: 48/1371
  39825. }
  39826. },
  39827. },
  39828. [
  39829. {
  39830. name: "Normal",
  39831. height: math.unit(5 + 9/12, "feet"),
  39832. default: true
  39833. },
  39834. ]
  39835. ))
  39836. characterMakers.push(() => makeCharacter(
  39837. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  39838. {
  39839. front: {
  39840. height: math.unit(7, "feet"),
  39841. weight: math.unit(310, "lb"),
  39842. name: "Front",
  39843. image: {
  39844. source: "./media/characters/solarus/front.svg",
  39845. extra: 2415/2021,
  39846. bottom: 103/2518
  39847. }
  39848. },
  39849. back: {
  39850. height: math.unit(7, "feet"),
  39851. weight: math.unit(310, "lb"),
  39852. name: "Back",
  39853. image: {
  39854. source: "./media/characters/solarus/back.svg",
  39855. extra: 2463/2089,
  39856. bottom: 79/2542
  39857. }
  39858. },
  39859. },
  39860. [
  39861. {
  39862. name: "Normal",
  39863. height: math.unit(7, "feet"),
  39864. default: true
  39865. },
  39866. ]
  39867. ))
  39868. characterMakers.push(() => makeCharacter(
  39869. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  39870. {
  39871. front: {
  39872. height: math.unit(16, "feet"),
  39873. name: "Front",
  39874. image: {
  39875. source: "./media/characters/mutsuju-koizaemon/front.svg",
  39876. extra: 1844/1780,
  39877. bottom: 58/1902
  39878. }
  39879. },
  39880. winterCoat: {
  39881. height: math.unit(16, "feet"),
  39882. name: "Winter Coat",
  39883. image: {
  39884. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  39885. extra: 1807/1775,
  39886. bottom: 69/1876
  39887. }
  39888. },
  39889. },
  39890. [
  39891. {
  39892. name: "Normal",
  39893. height: math.unit(16, "feet"),
  39894. default: true
  39895. },
  39896. {
  39897. name: "Chicago Size",
  39898. height: math.unit(560, "feet")
  39899. },
  39900. ]
  39901. ))
  39902. characterMakers.push(() => makeCharacter(
  39903. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  39904. {
  39905. front: {
  39906. height: math.unit(11 + 6/12, "feet"),
  39907. weight: math.unit(1366, "lb"),
  39908. name: "Front",
  39909. image: {
  39910. source: "./media/characters/lexor/front.svg",
  39911. extra: 1560/1481,
  39912. bottom: 211/1771
  39913. }
  39914. },
  39915. back: {
  39916. height: math.unit(11 + 6/12, "feet"),
  39917. weight: math.unit(1366, "lb"),
  39918. name: "Back",
  39919. image: {
  39920. source: "./media/characters/lexor/back.svg",
  39921. extra: 1614/1533,
  39922. bottom: 76/1690
  39923. }
  39924. },
  39925. maw: {
  39926. height: math.unit(3, "feet"),
  39927. name: "Maw",
  39928. image: {
  39929. source: "./media/characters/lexor/maw.svg"
  39930. }
  39931. },
  39932. dick: {
  39933. height: math.unit(2.59, "feet"),
  39934. name: "Dick",
  39935. image: {
  39936. source: "./media/characters/lexor/dick.svg"
  39937. }
  39938. },
  39939. },
  39940. [
  39941. {
  39942. name: "Normal",
  39943. height: math.unit(11 + 6/12, "feet"),
  39944. default: true
  39945. },
  39946. ]
  39947. ))
  39948. characterMakers.push(() => makeCharacter(
  39949. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  39950. {
  39951. front: {
  39952. height: math.unit(5 + 8/12, "feet"),
  39953. name: "Front",
  39954. image: {
  39955. source: "./media/characters/magnum/front.svg",
  39956. extra: 942/855,
  39957. bottom: 26/968
  39958. }
  39959. },
  39960. },
  39961. [
  39962. {
  39963. name: "Normal",
  39964. height: math.unit(5 + 8/12, "feet"),
  39965. default: true
  39966. },
  39967. ]
  39968. ))
  39969. characterMakers.push(() => makeCharacter(
  39970. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  39971. {
  39972. front: {
  39973. height: math.unit(18 + 4/12, "feet"),
  39974. weight: math.unit(1500, "kg"),
  39975. name: "Front",
  39976. image: {
  39977. source: "./media/characters/solas-sharpsman/front.svg",
  39978. extra: 1698/1589,
  39979. bottom: 0/1698
  39980. }
  39981. },
  39982. },
  39983. [
  39984. {
  39985. name: "Normal",
  39986. height: math.unit(18 + 4/12, "feet"),
  39987. default: true
  39988. },
  39989. ]
  39990. ))
  39991. characterMakers.push(() => makeCharacter(
  39992. { name: "October", species: ["tiger"], tags: ["anthro"] },
  39993. {
  39994. front: {
  39995. height: math.unit(5 + 5/12, "feet"),
  39996. weight: math.unit(180, "lb"),
  39997. name: "Front",
  39998. image: {
  39999. source: "./media/characters/october/front.svg",
  40000. extra: 1800/1650,
  40001. bottom: 0/1800
  40002. }
  40003. },
  40004. frontNsfw: {
  40005. height: math.unit(5 + 5/12, "feet"),
  40006. weight: math.unit(180, "lb"),
  40007. name: "Front (NSFW)",
  40008. image: {
  40009. source: "./media/characters/october/front-nsfw.svg",
  40010. extra: 1392/1307,
  40011. bottom: 42/1434
  40012. }
  40013. },
  40014. },
  40015. [
  40016. {
  40017. name: "Normal",
  40018. height: math.unit(5 + 5/12, "feet"),
  40019. default: true
  40020. },
  40021. ]
  40022. ))
  40023. characterMakers.push(() => makeCharacter(
  40024. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  40025. {
  40026. front: {
  40027. height: math.unit(8 + 6/12, "feet"),
  40028. name: "Front",
  40029. image: {
  40030. source: "./media/characters/essynkardi/front.svg",
  40031. extra: 1541/1457,
  40032. bottom: 47/1588
  40033. }
  40034. },
  40035. },
  40036. [
  40037. {
  40038. name: "Normal",
  40039. height: math.unit(8 + 6/12, "feet"),
  40040. default: true
  40041. },
  40042. ]
  40043. ))
  40044. characterMakers.push(() => makeCharacter(
  40045. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  40046. {
  40047. front: {
  40048. height: math.unit(6 + 6/12, "feet"),
  40049. weight: math.unit(7, "lb"),
  40050. name: "Front",
  40051. image: {
  40052. source: "./media/characters/icky/front.svg",
  40053. extra: 813/782,
  40054. bottom: 66/879
  40055. }
  40056. },
  40057. back: {
  40058. height: math.unit(6 + 6/12, "feet"),
  40059. weight: math.unit(7, "lb"),
  40060. name: "Back",
  40061. image: {
  40062. source: "./media/characters/icky/back.svg",
  40063. extra: 754/735,
  40064. bottom: 56/810
  40065. }
  40066. },
  40067. },
  40068. [
  40069. {
  40070. name: "Normal",
  40071. height: math.unit(6 + 6/12, "feet"),
  40072. default: true
  40073. },
  40074. ]
  40075. ))
  40076. characterMakers.push(() => makeCharacter(
  40077. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  40078. {
  40079. front: {
  40080. height: math.unit(15, "feet"),
  40081. name: "Front",
  40082. image: {
  40083. source: "./media/characters/rojas/front.svg",
  40084. extra: 1462/1408,
  40085. bottom: 95/1557
  40086. }
  40087. },
  40088. back: {
  40089. height: math.unit(15, "feet"),
  40090. name: "Back",
  40091. image: {
  40092. source: "./media/characters/rojas/back.svg",
  40093. extra: 1023/954,
  40094. bottom: 28/1051
  40095. }
  40096. },
  40097. },
  40098. [
  40099. {
  40100. name: "Normal",
  40101. height: math.unit(15, "feet"),
  40102. default: true
  40103. },
  40104. ]
  40105. ))
  40106. characterMakers.push(() => makeCharacter(
  40107. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  40108. {
  40109. frontHuman: {
  40110. height: math.unit(5 + 7/12, "feet"),
  40111. name: "Front (Human)",
  40112. image: {
  40113. source: "./media/characters/alek-dryagan/front-human.svg",
  40114. extra: 1687/1667,
  40115. bottom: 69/1756
  40116. }
  40117. },
  40118. backHuman: {
  40119. height: math.unit(5 + 7/12, "feet"),
  40120. name: "Back (Human)",
  40121. image: {
  40122. source: "./media/characters/alek-dryagan/back-human.svg",
  40123. extra: 1670/1649,
  40124. bottom: 65/1735
  40125. }
  40126. },
  40127. frontDemi: {
  40128. height: math.unit(65, "feet"),
  40129. name: "Front (Demi)",
  40130. image: {
  40131. source: "./media/characters/alek-dryagan/front-demi.svg",
  40132. extra: 1669/1642,
  40133. bottom: 49/1718
  40134. }
  40135. },
  40136. backDemi: {
  40137. height: math.unit(65, "feet"),
  40138. name: "Back (Demi)",
  40139. image: {
  40140. source: "./media/characters/alek-dryagan/back-demi.svg",
  40141. extra: 1658/1637,
  40142. bottom: 40/1698
  40143. }
  40144. },
  40145. mawHuman: {
  40146. height: math.unit(0.3, "feet"),
  40147. name: "Maw (Human)",
  40148. image: {
  40149. source: "./media/characters/alek-dryagan/maw-human.svg"
  40150. }
  40151. },
  40152. mawDemi: {
  40153. height: math.unit(3.8, "feet"),
  40154. name: "Maw (Demi)",
  40155. image: {
  40156. source: "./media/characters/alek-dryagan/maw-demi.svg"
  40157. }
  40158. },
  40159. },
  40160. [
  40161. {
  40162. name: "Normal",
  40163. height: math.unit(5 + 7/12, "feet"),
  40164. default: true
  40165. },
  40166. ]
  40167. ))
  40168. characterMakers.push(() => makeCharacter(
  40169. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  40170. {
  40171. frontHuman: {
  40172. height: math.unit(5 + 2/12, "feet"),
  40173. name: "Front (Human)",
  40174. image: {
  40175. source: "./media/characters/gen/front-human.svg",
  40176. extra: 1627/1538,
  40177. bottom: 71/1698
  40178. }
  40179. },
  40180. backHuman: {
  40181. height: math.unit(5 + 2/12, "feet"),
  40182. name: "Back (Human)",
  40183. image: {
  40184. source: "./media/characters/gen/back-human.svg",
  40185. extra: 1638/1548,
  40186. bottom: 69/1707
  40187. }
  40188. },
  40189. frontDemi: {
  40190. height: math.unit(5 + 2/12, "feet"),
  40191. name: "Front (Demi)",
  40192. image: {
  40193. source: "./media/characters/gen/front-demi.svg",
  40194. extra: 1627/1538,
  40195. bottom: 71/1698
  40196. }
  40197. },
  40198. backDemi: {
  40199. height: math.unit(5 + 2/12, "feet"),
  40200. name: "Back (Demi)",
  40201. image: {
  40202. source: "./media/characters/gen/back-demi.svg",
  40203. extra: 1638/1548,
  40204. bottom: 69/1707
  40205. }
  40206. },
  40207. },
  40208. [
  40209. {
  40210. name: "Normal",
  40211. height: math.unit(5 + 2/12, "feet"),
  40212. default: true
  40213. },
  40214. ]
  40215. ))
  40216. characterMakers.push(() => makeCharacter(
  40217. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  40218. {
  40219. frontImp: {
  40220. height: math.unit(1 + 11/12, "feet"),
  40221. name: "Front (Imp)",
  40222. image: {
  40223. source: "./media/characters/max-kobold/front-imp.svg",
  40224. extra: 1238/1134,
  40225. bottom: 81/1319
  40226. }
  40227. },
  40228. backImp: {
  40229. height: math.unit(1 + 11/12, "feet"),
  40230. name: "Back (Imp)",
  40231. image: {
  40232. source: "./media/characters/max-kobold/back-imp.svg",
  40233. extra: 1334/1175,
  40234. bottom: 34/1368
  40235. }
  40236. },
  40237. frontDemi: {
  40238. height: math.unit(5 + 9/12, "feet"),
  40239. name: "Front (Demi)",
  40240. image: {
  40241. source: "./media/characters/max-kobold/front-demi.svg",
  40242. extra: 1715/1685,
  40243. bottom: 54/1769
  40244. }
  40245. },
  40246. backDemi: {
  40247. height: math.unit(5 + 9/12, "feet"),
  40248. name: "Back (Demi)",
  40249. image: {
  40250. source: "./media/characters/max-kobold/back-demi.svg",
  40251. extra: 1752/1729,
  40252. bottom: 41/1793
  40253. }
  40254. },
  40255. handImp: {
  40256. height: math.unit(0.45, "feet"),
  40257. name: "Hand (Imp)",
  40258. image: {
  40259. source: "./media/characters/max-kobold/hand.svg"
  40260. }
  40261. },
  40262. pawImp: {
  40263. height: math.unit(0.46, "feet"),
  40264. name: "Paw (Imp)",
  40265. image: {
  40266. source: "./media/characters/max-kobold/paw.svg"
  40267. }
  40268. },
  40269. handDemi: {
  40270. height: math.unit(0.80, "feet"),
  40271. name: "Hand (Demi)",
  40272. image: {
  40273. source: "./media/characters/max-kobold/hand.svg"
  40274. }
  40275. },
  40276. pawDemi: {
  40277. height: math.unit(1.1, "feet"),
  40278. name: "Paw (Demi)",
  40279. image: {
  40280. source: "./media/characters/max-kobold/paw.svg"
  40281. }
  40282. },
  40283. headImp: {
  40284. height: math.unit(1.33, "feet"),
  40285. name: "Head (Imp)",
  40286. image: {
  40287. source: "./media/characters/max-kobold/head-imp.svg"
  40288. }
  40289. },
  40290. mawImp: {
  40291. height: math.unit(0.75, "feet"),
  40292. name: "Maw (Imp)",
  40293. image: {
  40294. source: "./media/characters/max-kobold/maw-imp.svg"
  40295. }
  40296. },
  40297. mawDemi: {
  40298. height: math.unit(0.42, "feet"),
  40299. name: "Maw (Demi)",
  40300. image: {
  40301. source: "./media/characters/max-kobold/maw-demi.svg"
  40302. }
  40303. },
  40304. },
  40305. [
  40306. {
  40307. name: "Normal",
  40308. height: math.unit(1 + 11/12, "feet"),
  40309. default: true
  40310. },
  40311. ]
  40312. ))
  40313. characterMakers.push(() => makeCharacter(
  40314. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  40315. {
  40316. front: {
  40317. height: math.unit(7 + 5/12, "feet"),
  40318. name: "Front",
  40319. image: {
  40320. source: "./media/characters/carbon/front.svg",
  40321. extra: 1754/1689,
  40322. bottom: 65/1819
  40323. }
  40324. },
  40325. back: {
  40326. height: math.unit(7 + 5/12, "feet"),
  40327. name: "Back",
  40328. image: {
  40329. source: "./media/characters/carbon/back.svg",
  40330. extra: 1762/1695,
  40331. bottom: 24/1786
  40332. }
  40333. },
  40334. frontGigantamax: {
  40335. height: math.unit(150, "feet"),
  40336. name: "Front (Gigantamax)",
  40337. image: {
  40338. source: "./media/characters/carbon/front-gigantamax.svg",
  40339. extra: 1826/1669,
  40340. bottom: 59/1885
  40341. }
  40342. },
  40343. backGigantamax: {
  40344. height: math.unit(150, "feet"),
  40345. name: "Back (Gigantamax)",
  40346. image: {
  40347. source: "./media/characters/carbon/back-gigantamax.svg",
  40348. extra: 1796/1653,
  40349. bottom: 53/1849
  40350. }
  40351. },
  40352. maw: {
  40353. height: math.unit(0.48, "feet"),
  40354. name: "Maw",
  40355. image: {
  40356. source: "./media/characters/carbon/maw.svg"
  40357. }
  40358. },
  40359. mawGigantamax: {
  40360. height: math.unit(7.5, "feet"),
  40361. name: "Maw (Gigantamax)",
  40362. image: {
  40363. source: "./media/characters/carbon/maw-gigantamax.svg"
  40364. }
  40365. },
  40366. },
  40367. [
  40368. {
  40369. name: "Normal",
  40370. height: math.unit(7 + 5/12, "feet"),
  40371. default: true
  40372. },
  40373. ]
  40374. ))
  40375. characterMakers.push(() => makeCharacter(
  40376. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  40377. {
  40378. front: {
  40379. height: math.unit(6, "feet"),
  40380. name: "Front",
  40381. image: {
  40382. source: "./media/characters/maverick/front.svg",
  40383. extra: 1672/1661,
  40384. bottom: 85/1757
  40385. }
  40386. },
  40387. back: {
  40388. height: math.unit(6, "feet"),
  40389. name: "Back",
  40390. image: {
  40391. source: "./media/characters/maverick/back.svg",
  40392. extra: 1642/1631,
  40393. bottom: 38/1680
  40394. }
  40395. },
  40396. },
  40397. [
  40398. {
  40399. name: "Normal",
  40400. height: math.unit(6, "feet"),
  40401. default: true
  40402. },
  40403. ]
  40404. ))
  40405. characterMakers.push(() => makeCharacter(
  40406. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  40407. {
  40408. front: {
  40409. height: math.unit(15, "feet"),
  40410. weight: math.unit(615, "lb"),
  40411. name: "Front",
  40412. image: {
  40413. source: "./media/characters/grockle/front.svg",
  40414. extra: 1535/1427,
  40415. bottom: 56/1591
  40416. }
  40417. },
  40418. },
  40419. [
  40420. {
  40421. name: "Normal",
  40422. height: math.unit(15, "feet"),
  40423. default: true
  40424. },
  40425. {
  40426. name: "Large",
  40427. height: math.unit(150, "feet")
  40428. },
  40429. {
  40430. name: "Macro",
  40431. height: math.unit(1876, "feet")
  40432. },
  40433. {
  40434. name: "Mega Macro",
  40435. height: math.unit(121940, "feet")
  40436. },
  40437. {
  40438. name: "Giga Macro",
  40439. height: math.unit(750, "km")
  40440. },
  40441. {
  40442. name: "Tera Macro",
  40443. height: math.unit(750000, "km")
  40444. },
  40445. {
  40446. name: "Galactic",
  40447. height: math.unit(1.4e5, "km")
  40448. },
  40449. {
  40450. name: "Godlike",
  40451. height: math.unit(9.8e280, "galaxies")
  40452. },
  40453. ]
  40454. ))
  40455. characterMakers.push(() => makeCharacter(
  40456. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  40457. {
  40458. front: {
  40459. height: math.unit(11, "meters"),
  40460. weight: math.unit(20, "tonnes"),
  40461. name: "Front",
  40462. image: {
  40463. source: "./media/characters/alistair/front.svg",
  40464. extra: 1265/1009,
  40465. bottom: 93/1358
  40466. }
  40467. },
  40468. },
  40469. [
  40470. {
  40471. name: "Normal",
  40472. height: math.unit(11, "meters"),
  40473. default: true
  40474. },
  40475. ]
  40476. ))
  40477. characterMakers.push(() => makeCharacter(
  40478. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  40479. {
  40480. front: {
  40481. height: math.unit(5 + 8/12, "feet"),
  40482. name: "Front",
  40483. image: {
  40484. source: "./media/characters/haruka/front.svg",
  40485. extra: 2012/1952,
  40486. bottom: 0/2012
  40487. }
  40488. },
  40489. },
  40490. [
  40491. {
  40492. name: "Normal",
  40493. height: math.unit(5 + 8/12, "feet"),
  40494. default: true
  40495. },
  40496. ]
  40497. ))
  40498. characterMakers.push(() => makeCharacter(
  40499. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  40500. {
  40501. back: {
  40502. height: math.unit(9, "feet"),
  40503. name: "Back",
  40504. image: {
  40505. source: "./media/characters/vivian-sylveon/back.svg",
  40506. extra: 1853/1714,
  40507. bottom: 0/1853
  40508. }
  40509. },
  40510. hyper: {
  40511. height: math.unit(5.58, "feet"),
  40512. name: "Hyper",
  40513. preyCapacity: math.unit(2.80616218797, "m^3"),
  40514. image: {
  40515. source: "./media/characters/vivian-sylveon/hyper.svg",
  40516. extra: 999/676,
  40517. bottom: 697/1696
  40518. },
  40519. },
  40520. paw: {
  40521. height: math.unit(1.8, "feet"),
  40522. name: "Paw",
  40523. image: {
  40524. source: "./media/characters/vivian-sylveon/paw.svg"
  40525. }
  40526. },
  40527. danger: {
  40528. height: math.unit(7.5, "feet"),
  40529. name: "DANGER",
  40530. image: {
  40531. source: "./media/characters/vivian-sylveon/danger.svg"
  40532. }
  40533. },
  40534. },
  40535. [
  40536. {
  40537. name: "Normal",
  40538. height: math.unit(9, "feet"),
  40539. default: true
  40540. },
  40541. {
  40542. name: "Macro",
  40543. height: math.unit(500, "feet")
  40544. },
  40545. {
  40546. name: "Megamacro",
  40547. height: math.unit(600, "miles")
  40548. },
  40549. {
  40550. name: "Gigamacro",
  40551. height: math.unit(30000, "miles")
  40552. },
  40553. ]
  40554. ))
  40555. characterMakers.push(() => makeCharacter(
  40556. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  40557. {
  40558. anthro: {
  40559. height: math.unit(5 + 10/12, "feet"),
  40560. weight: math.unit(100, "lb"),
  40561. name: "Anthro",
  40562. image: {
  40563. source: "./media/characters/daiki/anthro.svg",
  40564. extra: 1115/1027,
  40565. bottom: 69/1184
  40566. }
  40567. },
  40568. feral: {
  40569. height: math.unit(200, "feet"),
  40570. name: "Feral",
  40571. image: {
  40572. source: "./media/characters/daiki/feral.svg",
  40573. extra: 1256/313,
  40574. bottom: 39/1295
  40575. }
  40576. },
  40577. feralHead: {
  40578. height: math.unit(171, "feet"),
  40579. name: "Feral Head",
  40580. image: {
  40581. source: "./media/characters/daiki/feral-head.svg"
  40582. }
  40583. },
  40584. manaDragon: {
  40585. height: math.unit(170, "meters"),
  40586. name: "Mana-dragon",
  40587. image: {
  40588. source: "./media/characters/daiki/mana-dragon.svg",
  40589. extra: 763/420,
  40590. bottom: 97/860
  40591. }
  40592. },
  40593. },
  40594. [
  40595. {
  40596. name: "Normal",
  40597. height: math.unit(5 + 10/12, "feet"),
  40598. default: true
  40599. },
  40600. ]
  40601. ))
  40602. characterMakers.push(() => makeCharacter(
  40603. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  40604. {
  40605. fullyEquippedFront: {
  40606. height: math.unit(3 + 1/12, "feet"),
  40607. weight: math.unit(24, "lb"),
  40608. name: "Fully Equipped (Front)",
  40609. image: {
  40610. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  40611. extra: 687/605,
  40612. bottom: 18/705
  40613. }
  40614. },
  40615. fullyEquippedBack: {
  40616. height: math.unit(3 + 1/12, "feet"),
  40617. weight: math.unit(24, "lb"),
  40618. name: "Fully Equipped (Back)",
  40619. image: {
  40620. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  40621. extra: 689/590,
  40622. bottom: 18/707
  40623. }
  40624. },
  40625. dailyWear: {
  40626. height: math.unit(3 + 1/12, "feet"),
  40627. weight: math.unit(24, "lb"),
  40628. name: "Daily Wear",
  40629. image: {
  40630. source: "./media/characters/tea-spot/daily-wear.svg",
  40631. extra: 701/620,
  40632. bottom: 21/722
  40633. }
  40634. },
  40635. maidWork: {
  40636. height: math.unit(3 + 1/12, "feet"),
  40637. weight: math.unit(24, "lb"),
  40638. name: "Maid Work",
  40639. image: {
  40640. source: "./media/characters/tea-spot/maid-work.svg",
  40641. extra: 693/609,
  40642. bottom: 15/708
  40643. }
  40644. },
  40645. },
  40646. [
  40647. {
  40648. name: "Normal",
  40649. height: math.unit(3 + 1/12, "feet"),
  40650. default: true
  40651. },
  40652. ]
  40653. ))
  40654. characterMakers.push(() => makeCharacter(
  40655. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  40656. {
  40657. front: {
  40658. height: math.unit(175, "cm"),
  40659. weight: math.unit(75, "kg"),
  40660. name: "Front",
  40661. image: {
  40662. source: "./media/characters/chee/front.svg",
  40663. extra: 1796/1740,
  40664. bottom: 40/1836
  40665. }
  40666. },
  40667. },
  40668. [
  40669. {
  40670. name: "Micro-Micro",
  40671. height: math.unit(1, "nm")
  40672. },
  40673. {
  40674. name: "Micro-erst",
  40675. height: math.unit(1, "micrometer")
  40676. },
  40677. {
  40678. name: "Micro-er",
  40679. height: math.unit(1, "cm")
  40680. },
  40681. {
  40682. name: "Normal",
  40683. height: math.unit(175, "cm"),
  40684. default: true
  40685. },
  40686. {
  40687. name: "Macro",
  40688. height: math.unit(100, "m")
  40689. },
  40690. {
  40691. name: "Macro-er",
  40692. height: math.unit(1, "km")
  40693. },
  40694. {
  40695. name: "Macro-erst",
  40696. height: math.unit(10, "km")
  40697. },
  40698. {
  40699. name: "Macro-Macro",
  40700. height: math.unit(100, "km")
  40701. },
  40702. ]
  40703. ))
  40704. characterMakers.push(() => makeCharacter(
  40705. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  40706. {
  40707. front: {
  40708. height: math.unit(11 + 9/12, "feet"),
  40709. weight: math.unit(935, "lb"),
  40710. name: "Front",
  40711. image: {
  40712. source: "./media/characters/kingsley/front.svg",
  40713. extra: 1803/1674,
  40714. bottom: 127/1930
  40715. }
  40716. },
  40717. frontNude: {
  40718. height: math.unit(11 + 9/12, "feet"),
  40719. weight: math.unit(935, "lb"),
  40720. name: "Front (Nude)",
  40721. image: {
  40722. source: "./media/characters/kingsley/front-nude.svg",
  40723. extra: 1803/1674,
  40724. bottom: 127/1930
  40725. }
  40726. },
  40727. },
  40728. [
  40729. {
  40730. name: "Normal",
  40731. height: math.unit(11 + 9/12, "feet"),
  40732. default: true
  40733. },
  40734. ]
  40735. ))
  40736. characterMakers.push(() => makeCharacter(
  40737. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  40738. {
  40739. side: {
  40740. height: math.unit(9, "feet"),
  40741. name: "Side",
  40742. image: {
  40743. source: "./media/characters/rymel/side.svg",
  40744. extra: 792/469,
  40745. bottom: 121/913
  40746. }
  40747. },
  40748. maw: {
  40749. height: math.unit(2.4, "meters"),
  40750. name: "Maw",
  40751. image: {
  40752. source: "./media/characters/rymel/maw.svg"
  40753. }
  40754. },
  40755. },
  40756. [
  40757. {
  40758. name: "House Drake",
  40759. height: math.unit(2, "feet")
  40760. },
  40761. {
  40762. name: "Reduced",
  40763. height: math.unit(4.5, "feet")
  40764. },
  40765. {
  40766. name: "Normal",
  40767. height: math.unit(9, "feet"),
  40768. default: true
  40769. },
  40770. ]
  40771. ))
  40772. characterMakers.push(() => makeCharacter(
  40773. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  40774. {
  40775. front: {
  40776. height: math.unit(1.74, "meters"),
  40777. weight: math.unit(55, "kg"),
  40778. name: "Front",
  40779. image: {
  40780. source: "./media/characters/rubus/front.svg",
  40781. extra: 1894/1742,
  40782. bottom: 44/1938
  40783. }
  40784. },
  40785. },
  40786. [
  40787. {
  40788. name: "Normal",
  40789. height: math.unit(1.74, "meters"),
  40790. default: true
  40791. },
  40792. ]
  40793. ))
  40794. characterMakers.push(() => makeCharacter(
  40795. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  40796. {
  40797. front: {
  40798. height: math.unit(5 + 2/12, "feet"),
  40799. weight: math.unit(112, "lb"),
  40800. name: "Front",
  40801. image: {
  40802. source: "./media/characters/cassie-kingston/front.svg",
  40803. extra: 1438/1390,
  40804. bottom: 47/1485
  40805. }
  40806. },
  40807. },
  40808. [
  40809. {
  40810. name: "Normal",
  40811. height: math.unit(5 + 2/12, "feet"),
  40812. default: true
  40813. },
  40814. {
  40815. name: "Macro",
  40816. height: math.unit(128, "feet")
  40817. },
  40818. {
  40819. name: "Megamacro",
  40820. height: math.unit(2.56, "miles")
  40821. },
  40822. ]
  40823. ))
  40824. characterMakers.push(() => makeCharacter(
  40825. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  40826. {
  40827. front: {
  40828. height: math.unit(7, "feet"),
  40829. name: "Front",
  40830. image: {
  40831. source: "./media/characters/fox/front.svg",
  40832. extra: 1798/1703,
  40833. bottom: 55/1853
  40834. }
  40835. },
  40836. back: {
  40837. height: math.unit(7, "feet"),
  40838. name: "Back",
  40839. image: {
  40840. source: "./media/characters/fox/back.svg",
  40841. extra: 1748/1649,
  40842. bottom: 32/1780
  40843. }
  40844. },
  40845. head: {
  40846. height: math.unit(1.95, "feet"),
  40847. name: "Head",
  40848. image: {
  40849. source: "./media/characters/fox/head.svg"
  40850. }
  40851. },
  40852. dick: {
  40853. height: math.unit(1.33, "feet"),
  40854. name: "Dick",
  40855. image: {
  40856. source: "./media/characters/fox/dick.svg"
  40857. }
  40858. },
  40859. foot: {
  40860. height: math.unit(1, "feet"),
  40861. name: "Foot",
  40862. image: {
  40863. source: "./media/characters/fox/foot.svg"
  40864. }
  40865. },
  40866. paw: {
  40867. height: math.unit(0.92, "feet"),
  40868. name: "Paw",
  40869. image: {
  40870. source: "./media/characters/fox/paw.svg"
  40871. }
  40872. },
  40873. },
  40874. [
  40875. {
  40876. name: "Small",
  40877. height: math.unit(3, "inches")
  40878. },
  40879. {
  40880. name: "\"Realistic\"",
  40881. height: math.unit(7, "feet")
  40882. },
  40883. {
  40884. name: "Normal",
  40885. height: math.unit(150, "feet"),
  40886. default: true
  40887. },
  40888. {
  40889. name: "BIG",
  40890. height: math.unit(1200, "feet")
  40891. },
  40892. {
  40893. name: "👀",
  40894. height: math.unit(5, "miles")
  40895. },
  40896. {
  40897. name: "👀👀👀",
  40898. height: math.unit(64, "miles")
  40899. },
  40900. ]
  40901. ))
  40902. characterMakers.push(() => makeCharacter(
  40903. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  40904. {
  40905. front: {
  40906. height: math.unit(625, "feet"),
  40907. name: "Front",
  40908. image: {
  40909. source: "./media/characters/asonja-rossa/front.svg",
  40910. extra: 1833/1686,
  40911. bottom: 24/1857
  40912. }
  40913. },
  40914. back: {
  40915. height: math.unit(625, "feet"),
  40916. name: "Back",
  40917. image: {
  40918. source: "./media/characters/asonja-rossa/back.svg",
  40919. extra: 1852/1753,
  40920. bottom: 26/1878
  40921. }
  40922. },
  40923. },
  40924. [
  40925. {
  40926. name: "Macro",
  40927. height: math.unit(625, "feet"),
  40928. default: true
  40929. },
  40930. ]
  40931. ))
  40932. characterMakers.push(() => makeCharacter(
  40933. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  40934. {
  40935. side: {
  40936. height: math.unit(8, "feet"),
  40937. name: "Side",
  40938. image: {
  40939. source: "./media/characters/rezukii/side.svg",
  40940. extra: 979/542,
  40941. bottom: 87/1066
  40942. }
  40943. },
  40944. sitting: {
  40945. height: math.unit(14.6, "feet"),
  40946. name: "Sitting",
  40947. image: {
  40948. source: "./media/characters/rezukii/sitting.svg",
  40949. extra: 1023/813,
  40950. bottom: 45/1068
  40951. }
  40952. },
  40953. },
  40954. [
  40955. {
  40956. name: "Tiny",
  40957. height: math.unit(2, "feet")
  40958. },
  40959. {
  40960. name: "Smol",
  40961. height: math.unit(4, "feet")
  40962. },
  40963. {
  40964. name: "Normal",
  40965. height: math.unit(8, "feet"),
  40966. default: true
  40967. },
  40968. {
  40969. name: "Big",
  40970. height: math.unit(12, "feet")
  40971. },
  40972. {
  40973. name: "Macro",
  40974. height: math.unit(30, "feet")
  40975. },
  40976. ]
  40977. ))
  40978. characterMakers.push(() => makeCharacter(
  40979. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  40980. {
  40981. front: {
  40982. height: math.unit(14, "feet"),
  40983. weight: math.unit(9.5, "tonnes"),
  40984. name: "Front",
  40985. image: {
  40986. source: "./media/characters/dawnheart/front.svg",
  40987. extra: 2792/2675,
  40988. bottom: 64/2856
  40989. }
  40990. },
  40991. },
  40992. [
  40993. {
  40994. name: "Normal",
  40995. height: math.unit(14, "feet"),
  40996. default: true
  40997. },
  40998. ]
  40999. ))
  41000. characterMakers.push(() => makeCharacter(
  41001. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  41002. {
  41003. front: {
  41004. height: math.unit(1.7, "m"),
  41005. name: "Front",
  41006. image: {
  41007. source: "./media/characters/gladi/front.svg",
  41008. extra: 1460/1362,
  41009. bottom: 19/1479
  41010. }
  41011. },
  41012. back: {
  41013. height: math.unit(1.7, "m"),
  41014. name: "Back",
  41015. image: {
  41016. source: "./media/characters/gladi/back.svg",
  41017. extra: 1459/1357,
  41018. bottom: 12/1471
  41019. }
  41020. },
  41021. feral: {
  41022. height: math.unit(2.05, "m"),
  41023. name: "Feral",
  41024. image: {
  41025. source: "./media/characters/gladi/feral.svg",
  41026. extra: 821/557,
  41027. bottom: 91/912
  41028. }
  41029. },
  41030. },
  41031. [
  41032. {
  41033. name: "Shortest",
  41034. height: math.unit(70, "cm")
  41035. },
  41036. {
  41037. name: "Normal",
  41038. height: math.unit(1.7, "m")
  41039. },
  41040. {
  41041. name: "Macro",
  41042. height: math.unit(10, "m"),
  41043. default: true
  41044. },
  41045. {
  41046. name: "Tallest",
  41047. height: math.unit(200, "m")
  41048. },
  41049. ]
  41050. ))
  41051. characterMakers.push(() => makeCharacter(
  41052. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  41053. {
  41054. front: {
  41055. height: math.unit(5 + 7/12, "feet"),
  41056. weight: math.unit(2, "tons"),
  41057. name: "Front",
  41058. image: {
  41059. source: "./media/characters/erdno/front.svg",
  41060. extra: 1234/1129,
  41061. bottom: 35/1269
  41062. }
  41063. },
  41064. angled: {
  41065. height: math.unit(5 + 7/12, "feet"),
  41066. weight: math.unit(2, "tons"),
  41067. name: "Angled",
  41068. image: {
  41069. source: "./media/characters/erdno/angled.svg",
  41070. extra: 1185/1139,
  41071. bottom: 36/1221
  41072. }
  41073. },
  41074. side: {
  41075. height: math.unit(5 + 7/12, "feet"),
  41076. weight: math.unit(2, "tons"),
  41077. name: "Side",
  41078. image: {
  41079. source: "./media/characters/erdno/side.svg",
  41080. extra: 1191/1144,
  41081. bottom: 40/1231
  41082. }
  41083. },
  41084. back: {
  41085. height: math.unit(5 + 7/12, "feet"),
  41086. weight: math.unit(2, "tons"),
  41087. name: "Back",
  41088. image: {
  41089. source: "./media/characters/erdno/back.svg",
  41090. extra: 1202/1146,
  41091. bottom: 17/1219
  41092. }
  41093. },
  41094. frontNsfw: {
  41095. height: math.unit(5 + 7/12, "feet"),
  41096. weight: math.unit(2, "tons"),
  41097. name: "Front (NSFW)",
  41098. image: {
  41099. source: "./media/characters/erdno/front-nsfw.svg",
  41100. extra: 1234/1129,
  41101. bottom: 35/1269
  41102. }
  41103. },
  41104. angledNsfw: {
  41105. height: math.unit(5 + 7/12, "feet"),
  41106. weight: math.unit(2, "tons"),
  41107. name: "Angled (NSFW)",
  41108. image: {
  41109. source: "./media/characters/erdno/angled-nsfw.svg",
  41110. extra: 1185/1139,
  41111. bottom: 36/1221
  41112. }
  41113. },
  41114. sideNsfw: {
  41115. height: math.unit(5 + 7/12, "feet"),
  41116. weight: math.unit(2, "tons"),
  41117. name: "Side (NSFW)",
  41118. image: {
  41119. source: "./media/characters/erdno/side-nsfw.svg",
  41120. extra: 1191/1144,
  41121. bottom: 40/1231
  41122. }
  41123. },
  41124. backNsfw: {
  41125. height: math.unit(5 + 7/12, "feet"),
  41126. weight: math.unit(2, "tons"),
  41127. name: "Back (NSFW)",
  41128. image: {
  41129. source: "./media/characters/erdno/back-nsfw.svg",
  41130. extra: 1202/1146,
  41131. bottom: 17/1219
  41132. }
  41133. },
  41134. frontHyper: {
  41135. height: math.unit(5 + 7/12, "feet"),
  41136. weight: math.unit(2, "tons"),
  41137. name: "Front (Hyper)",
  41138. image: {
  41139. source: "./media/characters/erdno/front-hyper.svg",
  41140. extra: 1298/1136,
  41141. bottom: 35/1333
  41142. }
  41143. },
  41144. },
  41145. [
  41146. {
  41147. name: "Normal",
  41148. height: math.unit(5 + 7/12, "feet"),
  41149. default: true
  41150. },
  41151. {
  41152. name: "Big",
  41153. height: math.unit(5.7, "meters")
  41154. },
  41155. {
  41156. name: "Macro",
  41157. height: math.unit(5.7, "kilometers")
  41158. },
  41159. {
  41160. name: "Megamacro",
  41161. height: math.unit(5.7, "earths")
  41162. },
  41163. ]
  41164. ))
  41165. characterMakers.push(() => makeCharacter(
  41166. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  41167. {
  41168. front: {
  41169. height: math.unit(5 + 10/12, "feet"),
  41170. weight: math.unit(150, "lb"),
  41171. name: "Front",
  41172. image: {
  41173. source: "./media/characters/jamie/front.svg",
  41174. extra: 1908/1768,
  41175. bottom: 19/1927
  41176. }
  41177. },
  41178. },
  41179. [
  41180. {
  41181. name: "Minimum",
  41182. height: math.unit(2, "cm")
  41183. },
  41184. {
  41185. name: "Micro",
  41186. height: math.unit(3, "inches")
  41187. },
  41188. {
  41189. name: "Normal",
  41190. height: math.unit(5 + 10/12, "feet"),
  41191. default: true
  41192. },
  41193. {
  41194. name: "Macro",
  41195. height: math.unit(150, "feet")
  41196. },
  41197. {
  41198. name: "Megamacro",
  41199. height: math.unit(10000, "m")
  41200. },
  41201. ]
  41202. ))
  41203. characterMakers.push(() => makeCharacter(
  41204. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  41205. {
  41206. front: {
  41207. height: math.unit(2, "meters"),
  41208. weight: math.unit(100, "kg"),
  41209. name: "Front",
  41210. image: {
  41211. source: "./media/characters/shiron/front.svg",
  41212. extra: 2103/1985,
  41213. bottom: 98/2201
  41214. }
  41215. },
  41216. back: {
  41217. height: math.unit(2, "meters"),
  41218. weight: math.unit(100, "kg"),
  41219. name: "Back",
  41220. image: {
  41221. source: "./media/characters/shiron/back.svg",
  41222. extra: 2110/2015,
  41223. bottom: 89/2199
  41224. }
  41225. },
  41226. hand: {
  41227. height: math.unit(0.96, "feet"),
  41228. name: "Hand",
  41229. image: {
  41230. source: "./media/characters/shiron/hand.svg"
  41231. }
  41232. },
  41233. foot: {
  41234. height: math.unit(1.464, "feet"),
  41235. name: "Foot",
  41236. image: {
  41237. source: "./media/characters/shiron/foot.svg"
  41238. }
  41239. },
  41240. },
  41241. [
  41242. {
  41243. name: "Normal",
  41244. height: math.unit(2, "meters")
  41245. },
  41246. {
  41247. name: "Macro",
  41248. height: math.unit(500, "meters"),
  41249. default: true
  41250. },
  41251. {
  41252. name: "Megamacro",
  41253. height: math.unit(20, "km")
  41254. },
  41255. ]
  41256. ))
  41257. characterMakers.push(() => makeCharacter(
  41258. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  41259. {
  41260. front: {
  41261. height: math.unit(6, "feet"),
  41262. name: "Front",
  41263. image: {
  41264. source: "./media/characters/sam/front.svg",
  41265. extra: 849/826,
  41266. bottom: 19/868
  41267. }
  41268. },
  41269. },
  41270. [
  41271. {
  41272. name: "Normal",
  41273. height: math.unit(6, "feet"),
  41274. default: true
  41275. },
  41276. ]
  41277. ))
  41278. characterMakers.push(() => makeCharacter(
  41279. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  41280. {
  41281. front: {
  41282. height: math.unit(8 + 4/12, "feet"),
  41283. weight: math.unit(122, "kg"),
  41284. name: "Front",
  41285. image: {
  41286. source: "./media/characters/namori-kurogawa/front.svg",
  41287. extra: 1894/1576,
  41288. bottom: 34/1928
  41289. }
  41290. },
  41291. },
  41292. [
  41293. {
  41294. name: "Normal",
  41295. height: math.unit(8 + 4/12, "feet"),
  41296. default: true
  41297. },
  41298. ]
  41299. ))
  41300. characterMakers.push(() => makeCharacter(
  41301. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  41302. {
  41303. front: {
  41304. height: math.unit(9, "feet"),
  41305. weight: math.unit(621, "lb"),
  41306. name: "Front",
  41307. image: {
  41308. source: "./media/characters/unmru/front.svg",
  41309. extra: 1853/1747,
  41310. bottom: 73/1926
  41311. }
  41312. },
  41313. side: {
  41314. height: math.unit(9, "feet"),
  41315. weight: math.unit(621, "lb"),
  41316. name: "Side",
  41317. image: {
  41318. source: "./media/characters/unmru/side.svg",
  41319. extra: 1781/1671,
  41320. bottom: 127/1908
  41321. }
  41322. },
  41323. back: {
  41324. height: math.unit(9, "feet"),
  41325. weight: math.unit(621, "lb"),
  41326. name: "Back",
  41327. image: {
  41328. source: "./media/characters/unmru/back.svg",
  41329. extra: 1894/1765,
  41330. bottom: 75/1969
  41331. }
  41332. },
  41333. dick: {
  41334. height: math.unit(3, "feet"),
  41335. weight: math.unit(35, "lb"),
  41336. name: "Dick",
  41337. image: {
  41338. source: "./media/characters/unmru/dick.svg"
  41339. }
  41340. },
  41341. },
  41342. [
  41343. {
  41344. name: "Normal",
  41345. height: math.unit(9, "feet")
  41346. },
  41347. {
  41348. name: "Natural",
  41349. height: math.unit(27, "feet"),
  41350. default: true
  41351. },
  41352. {
  41353. name: "Giant",
  41354. height: math.unit(90, "feet")
  41355. },
  41356. {
  41357. name: "Kaiju",
  41358. height: math.unit(270, "feet")
  41359. },
  41360. {
  41361. name: "Macro",
  41362. height: math.unit(900, "feet")
  41363. },
  41364. {
  41365. name: "Macro+",
  41366. height: math.unit(2700, "feet")
  41367. },
  41368. {
  41369. name: "Megamacro",
  41370. height: math.unit(9000, "feet")
  41371. },
  41372. {
  41373. name: "City-Crushing",
  41374. height: math.unit(27000, "feet")
  41375. },
  41376. {
  41377. name: "Mountain-Mashing",
  41378. height: math.unit(90000, "feet")
  41379. },
  41380. {
  41381. name: "Earth-Eclipsing",
  41382. height: math.unit(2.7e8, "feet")
  41383. },
  41384. {
  41385. name: "Sol-Swallowing",
  41386. height: math.unit(9e10, "feet")
  41387. },
  41388. {
  41389. name: "Majoris-Munching",
  41390. height: math.unit(2.7e13, "feet")
  41391. },
  41392. ]
  41393. ))
  41394. characterMakers.push(() => makeCharacter(
  41395. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  41396. {
  41397. front: {
  41398. height: math.unit(1, "inch"),
  41399. name: "Front",
  41400. image: {
  41401. source: "./media/characters/squeaks-mouse/front.svg",
  41402. extra: 352/308,
  41403. bottom: 25/377
  41404. }
  41405. },
  41406. },
  41407. [
  41408. {
  41409. name: "Micro",
  41410. height: math.unit(1, "inch"),
  41411. default: true
  41412. },
  41413. ]
  41414. ))
  41415. characterMakers.push(() => makeCharacter(
  41416. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  41417. {
  41418. side: {
  41419. height: math.unit(35, "feet"),
  41420. name: "Side",
  41421. image: {
  41422. source: "./media/characters/sayko/side.svg",
  41423. extra: 1697/1021,
  41424. bottom: 82/1779
  41425. }
  41426. },
  41427. head: {
  41428. height: math.unit(16, "feet"),
  41429. name: "Head",
  41430. image: {
  41431. source: "./media/characters/sayko/head.svg"
  41432. }
  41433. },
  41434. forepaw: {
  41435. height: math.unit(7.85, "feet"),
  41436. name: "Forepaw",
  41437. image: {
  41438. source: "./media/characters/sayko/forepaw.svg"
  41439. }
  41440. },
  41441. hindpaw: {
  41442. height: math.unit(8.8, "feet"),
  41443. name: "Hindpaw",
  41444. image: {
  41445. source: "./media/characters/sayko/hindpaw.svg"
  41446. }
  41447. },
  41448. },
  41449. [
  41450. {
  41451. name: "Normal",
  41452. height: math.unit(35, "feet"),
  41453. default: true
  41454. },
  41455. {
  41456. name: "Colossus",
  41457. height: math.unit(100, "meters")
  41458. },
  41459. {
  41460. name: "\"Small\" Deity",
  41461. height: math.unit(1, "km")
  41462. },
  41463. {
  41464. name: "\"Large\" Deity",
  41465. height: math.unit(15, "km")
  41466. },
  41467. ]
  41468. ))
  41469. characterMakers.push(() => makeCharacter(
  41470. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  41471. {
  41472. front: {
  41473. height: math.unit(6, "feet"),
  41474. weight: math.unit(250, "lb"),
  41475. name: "Front",
  41476. image: {
  41477. source: "./media/characters/mukiro/front.svg",
  41478. extra: 1368/1310,
  41479. bottom: 34/1402
  41480. }
  41481. },
  41482. },
  41483. [
  41484. {
  41485. name: "Normal",
  41486. height: math.unit(6, "feet"),
  41487. default: true
  41488. },
  41489. ]
  41490. ))
  41491. characterMakers.push(() => makeCharacter(
  41492. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  41493. {
  41494. front: {
  41495. height: math.unit(12 + 4/12, "feet"),
  41496. name: "Front",
  41497. image: {
  41498. source: "./media/characters/zeph-the-tiger-god/front.svg",
  41499. extra: 1346/1311,
  41500. bottom: 65/1411
  41501. }
  41502. },
  41503. },
  41504. [
  41505. {
  41506. name: "Base",
  41507. height: math.unit(12 + 4/12, "feet"),
  41508. default: true
  41509. },
  41510. {
  41511. name: "Macro",
  41512. height: math.unit(150, "feet")
  41513. },
  41514. {
  41515. name: "Mega",
  41516. height: math.unit(2, "miles")
  41517. },
  41518. {
  41519. name: "Demi God",
  41520. height: math.unit(4, "AU")
  41521. },
  41522. {
  41523. name: "God Size",
  41524. height: math.unit(1, "universe")
  41525. },
  41526. ]
  41527. ))
  41528. characterMakers.push(() => makeCharacter(
  41529. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  41530. {
  41531. front: {
  41532. height: math.unit(3 + 3/12, "feet"),
  41533. weight: math.unit(88, "lb"),
  41534. name: "Front",
  41535. image: {
  41536. source: "./media/characters/trey/front.svg",
  41537. extra: 1815/1509,
  41538. bottom: 60/1875
  41539. }
  41540. },
  41541. },
  41542. [
  41543. {
  41544. name: "Normal",
  41545. height: math.unit(3 + 3/12, "feet"),
  41546. default: true
  41547. },
  41548. ]
  41549. ))
  41550. characterMakers.push(() => makeCharacter(
  41551. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  41552. {
  41553. front: {
  41554. height: math.unit(4, "meters"),
  41555. name: "Front",
  41556. image: {
  41557. source: "./media/characters/adelonda/front.svg",
  41558. extra: 1077/982,
  41559. bottom: 39/1116
  41560. }
  41561. },
  41562. back: {
  41563. height: math.unit(4, "meters"),
  41564. name: "Back",
  41565. image: {
  41566. source: "./media/characters/adelonda/back.svg",
  41567. extra: 1105/1003,
  41568. bottom: 25/1130
  41569. }
  41570. },
  41571. feral: {
  41572. height: math.unit(40/1.5, "meters"),
  41573. name: "Feral",
  41574. image: {
  41575. source: "./media/characters/adelonda/feral.svg",
  41576. extra: 597/271,
  41577. bottom: 387/984
  41578. }
  41579. },
  41580. },
  41581. [
  41582. {
  41583. name: "Normal",
  41584. height: math.unit(4, "meters"),
  41585. default: true
  41586. },
  41587. ]
  41588. ))
  41589. characterMakers.push(() => makeCharacter(
  41590. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  41591. {
  41592. front: {
  41593. height: math.unit(8 + 4/12, "feet"),
  41594. weight: math.unit(670, "lb"),
  41595. name: "Front",
  41596. image: {
  41597. source: "./media/characters/acadiel/front.svg",
  41598. extra: 1901/1595,
  41599. bottom: 142/2043
  41600. }
  41601. },
  41602. },
  41603. [
  41604. {
  41605. name: "Normal",
  41606. height: math.unit(8 + 4/12, "feet"),
  41607. default: true
  41608. },
  41609. {
  41610. name: "Macro",
  41611. height: math.unit(200, "feet")
  41612. },
  41613. ]
  41614. ))
  41615. characterMakers.push(() => makeCharacter(
  41616. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  41617. {
  41618. front: {
  41619. height: math.unit(6 + 2/12, "feet"),
  41620. weight: math.unit(185, "lb"),
  41621. name: "Front",
  41622. image: {
  41623. source: "./media/characters/kayne-ein/front.svg",
  41624. extra: 1780/1560,
  41625. bottom: 81/1861
  41626. }
  41627. },
  41628. },
  41629. [
  41630. {
  41631. name: "Normal",
  41632. height: math.unit(6 + 2/12, "feet"),
  41633. default: true
  41634. },
  41635. {
  41636. name: "Transformation Stage",
  41637. height: math.unit(15, "feet")
  41638. },
  41639. {
  41640. name: "Macro",
  41641. height: math.unit(150, "feet")
  41642. },
  41643. {
  41644. name: "Earth's Shadow",
  41645. height: math.unit(6200, "miles")
  41646. },
  41647. {
  41648. name: "Universal Demon",
  41649. height: math.unit(28e9, "parsecs")
  41650. },
  41651. {
  41652. name: "Multiverse God",
  41653. height: math.unit(3, "multiverses")
  41654. },
  41655. ]
  41656. ))
  41657. characterMakers.push(() => makeCharacter(
  41658. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  41659. {
  41660. front: {
  41661. height: math.unit(5 + 5/12, "feet"),
  41662. name: "Front",
  41663. image: {
  41664. source: "./media/characters/fawn/front.svg",
  41665. extra: 1873/1731,
  41666. bottom: 95/1968
  41667. }
  41668. },
  41669. back: {
  41670. height: math.unit(5 + 5/12, "feet"),
  41671. name: "Back",
  41672. image: {
  41673. source: "./media/characters/fawn/back.svg",
  41674. extra: 1813/1700,
  41675. bottom: 14/1827
  41676. }
  41677. },
  41678. hoof: {
  41679. height: math.unit(1.45, "feet"),
  41680. name: "Hoof",
  41681. image: {
  41682. source: "./media/characters/fawn/hoof.svg"
  41683. }
  41684. },
  41685. },
  41686. [
  41687. {
  41688. name: "Normal",
  41689. height: math.unit(5 + 5/12, "feet"),
  41690. default: true
  41691. },
  41692. ]
  41693. ))
  41694. characterMakers.push(() => makeCharacter(
  41695. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  41696. {
  41697. front: {
  41698. height: math.unit(2 + 5/12, "feet"),
  41699. name: "Front",
  41700. image: {
  41701. source: "./media/characters/orion/front.svg",
  41702. extra: 1366/1304,
  41703. bottom: 43/1409
  41704. }
  41705. },
  41706. paw: {
  41707. height: math.unit(0.52, "feet"),
  41708. name: "Paw",
  41709. image: {
  41710. source: "./media/characters/orion/paw.svg"
  41711. }
  41712. },
  41713. },
  41714. [
  41715. {
  41716. name: "Normal",
  41717. height: math.unit(2 + 5/12, "feet"),
  41718. default: true
  41719. },
  41720. ]
  41721. ))
  41722. characterMakers.push(() => makeCharacter(
  41723. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  41724. {
  41725. front: {
  41726. height: math.unit(5 + 10/12, "feet"),
  41727. name: "Front",
  41728. image: {
  41729. source: "./media/characters/vera/front.svg",
  41730. extra: 1680/1575,
  41731. bottom: 49/1729
  41732. }
  41733. },
  41734. back: {
  41735. height: math.unit(5 + 10/12, "feet"),
  41736. name: "Back",
  41737. image: {
  41738. source: "./media/characters/vera/back.svg",
  41739. extra: 1700/1588,
  41740. bottom: 18/1718
  41741. }
  41742. },
  41743. arcanine: {
  41744. height: math.unit(6 + 8/12, "feet"),
  41745. name: "Arcanine",
  41746. image: {
  41747. source: "./media/characters/vera/arcanine.svg",
  41748. extra: 1590/1511,
  41749. bottom: 71/1661
  41750. }
  41751. },
  41752. maw: {
  41753. height: math.unit(0.82, "feet"),
  41754. name: "Maw",
  41755. image: {
  41756. source: "./media/characters/vera/maw.svg"
  41757. }
  41758. },
  41759. mawArcanine: {
  41760. height: math.unit(0.97, "feet"),
  41761. name: "Maw (Arcanine)",
  41762. image: {
  41763. source: "./media/characters/vera/maw-arcanine.svg"
  41764. }
  41765. },
  41766. paw: {
  41767. height: math.unit(0.75, "feet"),
  41768. name: "Paw",
  41769. image: {
  41770. source: "./media/characters/vera/paw.svg"
  41771. }
  41772. },
  41773. pawprint: {
  41774. height: math.unit(0.52, "feet"),
  41775. name: "Pawprint",
  41776. image: {
  41777. source: "./media/characters/vera/pawprint.svg"
  41778. }
  41779. },
  41780. },
  41781. [
  41782. {
  41783. name: "Normal",
  41784. height: math.unit(5 + 10/12, "feet"),
  41785. default: true
  41786. },
  41787. {
  41788. name: "Macro",
  41789. height: math.unit(75, "feet")
  41790. },
  41791. ]
  41792. ))
  41793. characterMakers.push(() => makeCharacter(
  41794. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  41795. {
  41796. front: {
  41797. height: math.unit(4, "feet"),
  41798. weight: math.unit(40, "lb"),
  41799. name: "Front",
  41800. image: {
  41801. source: "./media/characters/orvan-rabbit/front.svg",
  41802. extra: 1896/1642,
  41803. bottom: 29/1925
  41804. }
  41805. },
  41806. },
  41807. [
  41808. {
  41809. name: "Normal",
  41810. height: math.unit(4, "feet"),
  41811. default: true
  41812. },
  41813. ]
  41814. ))
  41815. characterMakers.push(() => makeCharacter(
  41816. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  41817. {
  41818. front: {
  41819. height: math.unit(6, "feet"),
  41820. weight: math.unit(168, "lb"),
  41821. name: "Front",
  41822. image: {
  41823. source: "./media/characters/lisa/front.svg",
  41824. extra: 2065/1867,
  41825. bottom: 46/2111
  41826. }
  41827. },
  41828. back: {
  41829. height: math.unit(6, "feet"),
  41830. weight: math.unit(168, "lb"),
  41831. name: "Back",
  41832. image: {
  41833. source: "./media/characters/lisa/back.svg",
  41834. extra: 1982/1838,
  41835. bottom: 29/2011
  41836. }
  41837. },
  41838. maw: {
  41839. height: math.unit(0.81, "feet"),
  41840. name: "Maw",
  41841. image: {
  41842. source: "./media/characters/lisa/maw.svg"
  41843. }
  41844. },
  41845. paw: {
  41846. height: math.unit(0.9, "feet"),
  41847. name: "Paw",
  41848. image: {
  41849. source: "./media/characters/lisa/paw.svg"
  41850. }
  41851. },
  41852. caribousune: {
  41853. height: math.unit(7 + 2/12, "feet"),
  41854. weight: math.unit(268, "lb"),
  41855. name: "Caribousune",
  41856. image: {
  41857. source: "./media/characters/lisa/caribousune.svg",
  41858. extra: 1843/1633,
  41859. bottom: 29/1872
  41860. }
  41861. },
  41862. frontCaribousune: {
  41863. height: math.unit(7 + 2/12, "feet"),
  41864. weight: math.unit(268, "lb"),
  41865. name: "Front (Caribousune)",
  41866. image: {
  41867. source: "./media/characters/lisa/front-caribousune.svg",
  41868. extra: 1818/1638,
  41869. bottom: 52/1870
  41870. }
  41871. },
  41872. sideCaribousune: {
  41873. height: math.unit(7 + 2/12, "feet"),
  41874. weight: math.unit(268, "lb"),
  41875. name: "Side (Caribousune)",
  41876. image: {
  41877. source: "./media/characters/lisa/side-caribousune.svg",
  41878. extra: 1851/1635,
  41879. bottom: 16/1867
  41880. }
  41881. },
  41882. backCaribousune: {
  41883. height: math.unit(7 + 2/12, "feet"),
  41884. weight: math.unit(268, "lb"),
  41885. name: "Back (Caribousune)",
  41886. image: {
  41887. source: "./media/characters/lisa/back-caribousune.svg",
  41888. extra: 1801/1604,
  41889. bottom: 44/1845
  41890. }
  41891. },
  41892. caribou: {
  41893. height: math.unit(7 + 2/12, "feet"),
  41894. weight: math.unit(268, "lb"),
  41895. name: "Caribou",
  41896. image: {
  41897. source: "./media/characters/lisa/caribou.svg",
  41898. extra: 1843/1633,
  41899. bottom: 29/1872
  41900. }
  41901. },
  41902. frontCaribou: {
  41903. height: math.unit(7 + 2/12, "feet"),
  41904. weight: math.unit(268, "lb"),
  41905. name: "Front (Caribou)",
  41906. image: {
  41907. source: "./media/characters/lisa/front-caribou.svg",
  41908. extra: 1818/1638,
  41909. bottom: 52/1870
  41910. }
  41911. },
  41912. sideCaribou: {
  41913. height: math.unit(7 + 2/12, "feet"),
  41914. weight: math.unit(268, "lb"),
  41915. name: "Side (Caribou)",
  41916. image: {
  41917. source: "./media/characters/lisa/side-caribou.svg",
  41918. extra: 1851/1635,
  41919. bottom: 16/1867
  41920. }
  41921. },
  41922. backCaribou: {
  41923. height: math.unit(7 + 2/12, "feet"),
  41924. weight: math.unit(268, "lb"),
  41925. name: "Back (Caribou)",
  41926. image: {
  41927. source: "./media/characters/lisa/back-caribou.svg",
  41928. extra: 1801/1604,
  41929. bottom: 44/1845
  41930. }
  41931. },
  41932. mawCaribou: {
  41933. height: math.unit(1.45, "feet"),
  41934. name: "Maw (Caribou)",
  41935. image: {
  41936. source: "./media/characters/lisa/maw-caribou.svg"
  41937. }
  41938. },
  41939. mawCaribousune: {
  41940. height: math.unit(1.45, "feet"),
  41941. name: "Maw (Caribousune)",
  41942. image: {
  41943. source: "./media/characters/lisa/maw-caribousune.svg"
  41944. }
  41945. },
  41946. pawCaribousune: {
  41947. height: math.unit(1.61, "feet"),
  41948. name: "Paw (Caribou)",
  41949. image: {
  41950. source: "./media/characters/lisa/paw-caribousune.svg"
  41951. }
  41952. },
  41953. },
  41954. [
  41955. {
  41956. name: "Normal",
  41957. height: math.unit(6, "feet")
  41958. },
  41959. {
  41960. name: "God Size",
  41961. height: math.unit(72, "feet"),
  41962. default: true
  41963. },
  41964. {
  41965. name: "Towering",
  41966. height: math.unit(288, "feet")
  41967. },
  41968. {
  41969. name: "City Size",
  41970. height: math.unit(48384, "feet")
  41971. },
  41972. {
  41973. name: "Continental",
  41974. height: math.unit(4200, "miles")
  41975. },
  41976. {
  41977. name: "Planet Eater",
  41978. height: math.unit(42, "earths")
  41979. },
  41980. {
  41981. name: "Star Swallower",
  41982. height: math.unit(42, "solarradii")
  41983. },
  41984. {
  41985. name: "System Swallower",
  41986. height: math.unit(84000, "AU")
  41987. },
  41988. {
  41989. name: "Galaxy Gobbler",
  41990. height: math.unit(42, "galaxies")
  41991. },
  41992. {
  41993. name: "Universe Devourer",
  41994. height: math.unit(42, "universes")
  41995. },
  41996. {
  41997. name: "Multiverse Muncher",
  41998. height: math.unit(42, "multiverses")
  41999. },
  42000. ]
  42001. ))
  42002. characterMakers.push(() => makeCharacter(
  42003. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  42004. {
  42005. front: {
  42006. height: math.unit(36, "feet"),
  42007. name: "Front",
  42008. image: {
  42009. source: "./media/characters/shadow-rat/front.svg",
  42010. extra: 1845/1758,
  42011. bottom: 83/1928
  42012. }
  42013. },
  42014. },
  42015. [
  42016. {
  42017. name: "Macro",
  42018. height: math.unit(36, "feet"),
  42019. default: true
  42020. },
  42021. ]
  42022. ))
  42023. characterMakers.push(() => makeCharacter(
  42024. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  42025. {
  42026. side: {
  42027. height: math.unit(8, "feet"),
  42028. weight: math.unit(2630, "lb"),
  42029. name: "Side",
  42030. image: {
  42031. source: "./media/characters/torallia/side.svg",
  42032. extra: 2164/2021,
  42033. bottom: 371/2535
  42034. }
  42035. },
  42036. },
  42037. [
  42038. {
  42039. name: "Mortal Interaction",
  42040. height: math.unit(8, "feet")
  42041. },
  42042. {
  42043. name: "Natural",
  42044. height: math.unit(24, "feet"),
  42045. default: true
  42046. },
  42047. {
  42048. name: "Giant",
  42049. height: math.unit(80, "feet")
  42050. },
  42051. {
  42052. name: "Kaiju",
  42053. height: math.unit(240, "feet")
  42054. },
  42055. {
  42056. name: "Macro",
  42057. height: math.unit(800, "feet")
  42058. },
  42059. {
  42060. name: "Macro+",
  42061. height: math.unit(2400, "feet")
  42062. },
  42063. {
  42064. name: "Macro++",
  42065. height: math.unit(8000, "feet")
  42066. },
  42067. {
  42068. name: "City-Crushing",
  42069. height: math.unit(24000, "feet")
  42070. },
  42071. {
  42072. name: "Mountain-Mashing",
  42073. height: math.unit(80000, "feet")
  42074. },
  42075. {
  42076. name: "District Demolisher",
  42077. height: math.unit(240000, "feet")
  42078. },
  42079. {
  42080. name: "Tri-County Terror",
  42081. height: math.unit(800000, "feet")
  42082. },
  42083. {
  42084. name: "State Smasher",
  42085. height: math.unit(2.4e6, "feet")
  42086. },
  42087. {
  42088. name: "Nation Nemesis",
  42089. height: math.unit(8e6, "feet")
  42090. },
  42091. {
  42092. name: "Continent Cracker",
  42093. height: math.unit(2.4e7, "feet")
  42094. },
  42095. {
  42096. name: "Planet-Pillaging",
  42097. height: math.unit(8e7, "feet")
  42098. },
  42099. {
  42100. name: "Earth-Eclipsing",
  42101. height: math.unit(2.4e8, "feet")
  42102. },
  42103. {
  42104. name: "Jovian-Jostling",
  42105. height: math.unit(8e8, "feet")
  42106. },
  42107. {
  42108. name: "Gas Giant Gulper",
  42109. height: math.unit(2.4e9, "feet")
  42110. },
  42111. {
  42112. name: "Astral Annihilator",
  42113. height: math.unit(8e9, "feet")
  42114. },
  42115. {
  42116. name: "Celestial Conqueror",
  42117. height: math.unit(2.4e10, "feet")
  42118. },
  42119. {
  42120. name: "Sol-Swallowing",
  42121. height: math.unit(8e10, "feet")
  42122. },
  42123. {
  42124. name: "Hunter of the Heavens",
  42125. height: math.unit(2.4e13, "feet")
  42126. },
  42127. ]
  42128. ))
  42129. characterMakers.push(() => makeCharacter(
  42130. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  42131. {
  42132. front: {
  42133. height: math.unit(10, "feet"),
  42134. weight: math.unit(844, "kilograms"),
  42135. name: "Front",
  42136. image: {
  42137. source: "./media/characters/rebecca-pawlson/front.svg",
  42138. extra: 1196/1099,
  42139. bottom: 81/1277
  42140. },
  42141. extraAttributes: {
  42142. "pawSize": {
  42143. name: "Paw Size",
  42144. power: 2,
  42145. type: "area",
  42146. base: math.unit(0.2 * 0.375, "meters^2")
  42147. },
  42148. "handSize": {
  42149. name: "Hand Size",
  42150. power: 2,
  42151. type: "area",
  42152. base: math.unit(0.2 * 0.35, "meters^2")
  42153. },
  42154. "breastDiameter": {
  42155. name: "Breast Diameter",
  42156. power: 1,
  42157. type: "length",
  42158. base: math.unit(0.5, "meters")
  42159. },
  42160. "breastVolume": {
  42161. name: "Breast Volume",
  42162. power: 3,
  42163. type: "volume",
  42164. base: math.unit(0.065, "m^3")
  42165. },
  42166. "breastMass": {
  42167. name: "Breast Mass",
  42168. power: 3,
  42169. type: "mass",
  42170. base: math.unit(65, "kg")
  42171. },
  42172. "nippleDiameter": {
  42173. name: "Nipple Diameter",
  42174. power: 1,
  42175. type: "length",
  42176. base: math.unit(0.1, "meters")
  42177. },
  42178. }
  42179. },
  42180. back: {
  42181. height: math.unit(10, "feet"),
  42182. weight: math.unit(844, "kilograms"),
  42183. name: "Back",
  42184. image: {
  42185. source: "./media/characters/rebecca-pawlson/back.svg",
  42186. extra: 879/776,
  42187. bottom: 43/922
  42188. },
  42189. extraAttributes: {
  42190. "pawSize": {
  42191. name: "Paw Size",
  42192. power: 2,
  42193. type: "area",
  42194. base: math.unit(0.2 * 0.375, "meters^2")
  42195. },
  42196. "handSize": {
  42197. name: "Hand Size",
  42198. power: 2,
  42199. type: "area",
  42200. base: math.unit(0.2 * 0.35, "meters^2")
  42201. },
  42202. "breastDiameter": {
  42203. name: "Breast Diameter",
  42204. power: 1,
  42205. type: "length",
  42206. base: math.unit(0.5, "meters")
  42207. },
  42208. "breastVolume": {
  42209. name: "Breast Volume",
  42210. power: 3,
  42211. type: "volume",
  42212. base: math.unit(0.065, "m^3")
  42213. },
  42214. "breastMass": {
  42215. name: "Breast Mass",
  42216. power: 3,
  42217. type: "mass",
  42218. base: math.unit(65, "kg")
  42219. },
  42220. "nippleDiameter": {
  42221. name: "Nipple Diameter",
  42222. power: 1,
  42223. type: "length",
  42224. base: math.unit(0.1, "meters")
  42225. },
  42226. }
  42227. },
  42228. },
  42229. [
  42230. {
  42231. name: "Normal",
  42232. height: math.unit(6 + 8/12, "feet")
  42233. },
  42234. {
  42235. name: "Mini Macro",
  42236. height: math.unit(10, "feet"),
  42237. default: true
  42238. },
  42239. {
  42240. name: "Macro",
  42241. height: math.unit(100, "feet")
  42242. },
  42243. {
  42244. name: "Mega Macro",
  42245. height: math.unit(2500, "feet")
  42246. },
  42247. {
  42248. name: "Giga Macro",
  42249. height: math.unit(50, "miles")
  42250. },
  42251. ]
  42252. ))
  42253. characterMakers.push(() => makeCharacter(
  42254. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  42255. {
  42256. front: {
  42257. height: math.unit(7 + 6/12, "feet"),
  42258. weight: math.unit(600, "lb"),
  42259. name: "Front",
  42260. image: {
  42261. source: "./media/characters/moxie-nova/front.svg",
  42262. extra: 1734/1652,
  42263. bottom: 41/1775
  42264. }
  42265. },
  42266. },
  42267. [
  42268. {
  42269. name: "Normal",
  42270. height: math.unit(7 + 6/12, "feet"),
  42271. default: true
  42272. },
  42273. ]
  42274. ))
  42275. characterMakers.push(() => makeCharacter(
  42276. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  42277. {
  42278. goat: {
  42279. height: math.unit(4, "feet"),
  42280. weight: math.unit(180, "lb"),
  42281. name: "Goat",
  42282. image: {
  42283. source: "./media/characters/tiffany/goat.svg",
  42284. extra: 1845/1595,
  42285. bottom: 106/1951
  42286. }
  42287. },
  42288. front: {
  42289. height: math.unit(5, "feet"),
  42290. weight: math.unit(150, "lb"),
  42291. name: "Foxcoon",
  42292. image: {
  42293. source: "./media/characters/tiffany/foxcoon.svg",
  42294. extra: 1941/1845,
  42295. bottom: 58/1999
  42296. }
  42297. },
  42298. },
  42299. [
  42300. {
  42301. name: "Normal",
  42302. height: math.unit(5, "feet"),
  42303. default: true
  42304. },
  42305. ]
  42306. ))
  42307. characterMakers.push(() => makeCharacter(
  42308. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  42309. {
  42310. front: {
  42311. height: math.unit(8, "feet"),
  42312. weight: math.unit(300, "lb"),
  42313. name: "Front",
  42314. image: {
  42315. source: "./media/characters/raxinath/front.svg",
  42316. extra: 1407/1309,
  42317. bottom: 39/1446
  42318. }
  42319. },
  42320. back: {
  42321. height: math.unit(8, "feet"),
  42322. weight: math.unit(300, "lb"),
  42323. name: "Back",
  42324. image: {
  42325. source: "./media/characters/raxinath/back.svg",
  42326. extra: 1405/1315,
  42327. bottom: 9/1414
  42328. }
  42329. },
  42330. },
  42331. [
  42332. {
  42333. name: "Speck",
  42334. height: math.unit(0.5, "nm")
  42335. },
  42336. {
  42337. name: "Micro",
  42338. height: math.unit(3, "inches")
  42339. },
  42340. {
  42341. name: "Kobold",
  42342. height: math.unit(3, "feet")
  42343. },
  42344. {
  42345. name: "Normal",
  42346. height: math.unit(8, "feet"),
  42347. default: true
  42348. },
  42349. {
  42350. name: "Giant",
  42351. height: math.unit(50, "feet")
  42352. },
  42353. {
  42354. name: "Macro",
  42355. height: math.unit(1000, "feet")
  42356. },
  42357. {
  42358. name: "Megamacro",
  42359. height: math.unit(1, "mile")
  42360. },
  42361. ]
  42362. ))
  42363. characterMakers.push(() => makeCharacter(
  42364. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  42365. {
  42366. front: {
  42367. height: math.unit(10, "feet"),
  42368. weight: math.unit(1442, "lb"),
  42369. name: "Front",
  42370. image: {
  42371. source: "./media/characters/mal-dragon/front.svg",
  42372. extra: 1515/1444,
  42373. bottom: 113/1628
  42374. }
  42375. },
  42376. back: {
  42377. height: math.unit(10, "feet"),
  42378. weight: math.unit(1442, "lb"),
  42379. name: "Back",
  42380. image: {
  42381. source: "./media/characters/mal-dragon/back.svg",
  42382. extra: 1527/1434,
  42383. bottom: 25/1552
  42384. }
  42385. },
  42386. },
  42387. [
  42388. {
  42389. name: "Mortal Interaction",
  42390. height: math.unit(10, "feet"),
  42391. default: true
  42392. },
  42393. {
  42394. name: "Large",
  42395. height: math.unit(30, "feet")
  42396. },
  42397. {
  42398. name: "Kaiju",
  42399. height: math.unit(300, "feet")
  42400. },
  42401. {
  42402. name: "Megamacro",
  42403. height: math.unit(10000, "feet")
  42404. },
  42405. {
  42406. name: "Continent Cracker",
  42407. height: math.unit(30000000, "feet")
  42408. },
  42409. {
  42410. name: "Sol-Swallowing",
  42411. height: math.unit(1e11, "feet")
  42412. },
  42413. {
  42414. name: "Light Universal",
  42415. height: math.unit(5, "universes")
  42416. },
  42417. {
  42418. name: "Universe Atoms",
  42419. height: math.unit(1.829e9, "universes")
  42420. },
  42421. {
  42422. name: "Light Multiversal",
  42423. height: math.unit(5, "multiverses")
  42424. },
  42425. {
  42426. name: "Multiverse Atoms",
  42427. height: math.unit(1.829e9, "multiverses")
  42428. },
  42429. {
  42430. name: "Fabric of Time",
  42431. height: math.unit(1e262, "multiverses")
  42432. },
  42433. ]
  42434. ))
  42435. characterMakers.push(() => makeCharacter(
  42436. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  42437. {
  42438. front: {
  42439. height: math.unit(9, "feet"),
  42440. weight: math.unit(1050, "lb"),
  42441. name: "Front",
  42442. image: {
  42443. source: "./media/characters/tabitha/front.svg",
  42444. extra: 2083/1994,
  42445. bottom: 68/2151
  42446. }
  42447. },
  42448. },
  42449. [
  42450. {
  42451. name: "Baseline",
  42452. height: math.unit(9, "feet"),
  42453. default: true
  42454. },
  42455. {
  42456. name: "Giant",
  42457. height: math.unit(90, "feet")
  42458. },
  42459. {
  42460. name: "Macro",
  42461. height: math.unit(900, "feet")
  42462. },
  42463. {
  42464. name: "Megamacro",
  42465. height: math.unit(9000, "feet")
  42466. },
  42467. {
  42468. name: "City-Crushing",
  42469. height: math.unit(27000, "feet")
  42470. },
  42471. {
  42472. name: "Mountain-Mashing",
  42473. height: math.unit(90000, "feet")
  42474. },
  42475. {
  42476. name: "Nation Nemesis",
  42477. height: math.unit(9e6, "feet")
  42478. },
  42479. {
  42480. name: "Continent Cracker",
  42481. height: math.unit(27e6, "feet")
  42482. },
  42483. {
  42484. name: "Earth-Eclipsing",
  42485. height: math.unit(2.7e8, "feet")
  42486. },
  42487. {
  42488. name: "Gas Giant Gulper",
  42489. height: math.unit(2.7e9, "feet")
  42490. },
  42491. {
  42492. name: "Sol-Swallowing",
  42493. height: math.unit(9e10, "feet")
  42494. },
  42495. {
  42496. name: "Galaxy Gulper",
  42497. height: math.unit(9, "galaxies")
  42498. },
  42499. {
  42500. name: "Cosmos Churner",
  42501. height: math.unit(9, "universes")
  42502. },
  42503. ]
  42504. ))
  42505. characterMakers.push(() => makeCharacter(
  42506. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  42507. {
  42508. front: {
  42509. height: math.unit(160, "cm"),
  42510. weight: math.unit(55, "kg"),
  42511. name: "Front",
  42512. image: {
  42513. source: "./media/characters/tow/front.svg",
  42514. extra: 1751/1722,
  42515. bottom: 74/1825
  42516. }
  42517. },
  42518. },
  42519. [
  42520. {
  42521. name: "Norm",
  42522. height: math.unit(160, "cm")
  42523. },
  42524. {
  42525. name: "Casual",
  42526. height: math.unit(3200, "m"),
  42527. default: true
  42528. },
  42529. {
  42530. name: "Show-Off",
  42531. height: math.unit(160, "km")
  42532. },
  42533. ]
  42534. ))
  42535. characterMakers.push(() => makeCharacter(
  42536. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  42537. {
  42538. front: {
  42539. height: math.unit(7 + 11/12, "feet"),
  42540. weight: math.unit(342.8, "lb"),
  42541. name: "Front",
  42542. image: {
  42543. source: "./media/characters/vivian-orca-dragon/front.svg",
  42544. extra: 1890/1865,
  42545. bottom: 28/1918
  42546. }
  42547. },
  42548. },
  42549. [
  42550. {
  42551. name: "Micro",
  42552. height: math.unit(5, "inches")
  42553. },
  42554. {
  42555. name: "Normal",
  42556. height: math.unit(7 + 11/12, "feet"),
  42557. default: true
  42558. },
  42559. {
  42560. name: "Macro",
  42561. height: math.unit(395 + 7/12, "feet")
  42562. },
  42563. ]
  42564. ))
  42565. characterMakers.push(() => makeCharacter(
  42566. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  42567. {
  42568. side: {
  42569. height: math.unit(10, "feet"),
  42570. weight: math.unit(1442, "lb"),
  42571. name: "Side",
  42572. image: {
  42573. source: "./media/characters/lotherakon/side.svg",
  42574. extra: 1604/1497,
  42575. bottom: 89/1693
  42576. }
  42577. },
  42578. },
  42579. [
  42580. {
  42581. name: "Mortal Interaction",
  42582. height: math.unit(10, "feet")
  42583. },
  42584. {
  42585. name: "Large",
  42586. height: math.unit(30, "feet"),
  42587. default: true
  42588. },
  42589. {
  42590. name: "Giant",
  42591. height: math.unit(100, "feet")
  42592. },
  42593. {
  42594. name: "Kaiju",
  42595. height: math.unit(300, "feet")
  42596. },
  42597. {
  42598. name: "Macro",
  42599. height: math.unit(1000, "feet")
  42600. },
  42601. {
  42602. name: "Macro+",
  42603. height: math.unit(3000, "feet")
  42604. },
  42605. {
  42606. name: "Megamacro",
  42607. height: math.unit(10000, "feet")
  42608. },
  42609. {
  42610. name: "City-Crushing",
  42611. height: math.unit(30000, "feet")
  42612. },
  42613. {
  42614. name: "Continent Cracker",
  42615. height: math.unit(30e6, "feet")
  42616. },
  42617. {
  42618. name: "Earth Eclipsing",
  42619. height: math.unit(3e8, "feet")
  42620. },
  42621. {
  42622. name: "Gas Giant Gulper",
  42623. height: math.unit(3e9, "feet")
  42624. },
  42625. {
  42626. name: "Sol-Swallowing",
  42627. height: math.unit(1e11, "feet")
  42628. },
  42629. {
  42630. name: "System Swallower",
  42631. height: math.unit(3e14, "feet")
  42632. },
  42633. {
  42634. name: "Galaxy Gulper",
  42635. height: math.unit(10, "galaxies")
  42636. },
  42637. {
  42638. name: "Light Universal",
  42639. height: math.unit(5, "universes")
  42640. },
  42641. {
  42642. name: "Universe Palm",
  42643. height: math.unit(20, "universes")
  42644. },
  42645. {
  42646. name: "Light Multiversal",
  42647. height: math.unit(5, "multiverses")
  42648. },
  42649. {
  42650. name: "Multiverse Palm",
  42651. height: math.unit(20, "multiverses")
  42652. },
  42653. {
  42654. name: "Inferno Incarnate",
  42655. height: math.unit(1e7, "multiverses")
  42656. },
  42657. ]
  42658. ))
  42659. characterMakers.push(() => makeCharacter(
  42660. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  42661. {
  42662. front: {
  42663. height: math.unit(8, "feet"),
  42664. weight: math.unit(1200, "lb"),
  42665. name: "Front",
  42666. image: {
  42667. source: "./media/characters/malithee/front.svg",
  42668. extra: 1675/1640,
  42669. bottom: 162/1837
  42670. }
  42671. },
  42672. },
  42673. [
  42674. {
  42675. name: "Mortal Interaction",
  42676. height: math.unit(8, "feet"),
  42677. default: true
  42678. },
  42679. {
  42680. name: "Large",
  42681. height: math.unit(24, "feet")
  42682. },
  42683. {
  42684. name: "Kaiju",
  42685. height: math.unit(240, "feet")
  42686. },
  42687. {
  42688. name: "Megamacro",
  42689. height: math.unit(8000, "feet")
  42690. },
  42691. {
  42692. name: "Continent Cracker",
  42693. height: math.unit(24e6, "feet")
  42694. },
  42695. {
  42696. name: "Earth-Eclipsing",
  42697. height: math.unit(2.4e8, "feet")
  42698. },
  42699. {
  42700. name: "Sol-Swallowing",
  42701. height: math.unit(8e10, "feet")
  42702. },
  42703. {
  42704. name: "Galaxy Gulper",
  42705. height: math.unit(8, "galaxies")
  42706. },
  42707. {
  42708. name: "Light Universal",
  42709. height: math.unit(4, "universes")
  42710. },
  42711. {
  42712. name: "Universe Atoms",
  42713. height: math.unit(1.829e9, "universes")
  42714. },
  42715. {
  42716. name: "Light Multiversal",
  42717. height: math.unit(4, "multiverses")
  42718. },
  42719. {
  42720. name: "Multiverse Atoms",
  42721. height: math.unit(1.829e9, "multiverses")
  42722. },
  42723. {
  42724. name: "Nigh-Omnipresence",
  42725. height: math.unit(8e261, "multiverses")
  42726. },
  42727. ]
  42728. ))
  42729. characterMakers.push(() => makeCharacter(
  42730. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  42731. {
  42732. front: {
  42733. height: math.unit(10, "feet"),
  42734. weight: math.unit(1500, "lb"),
  42735. name: "Front",
  42736. image: {
  42737. source: "./media/characters/miles-thestia/front.svg",
  42738. extra: 1812/1727,
  42739. bottom: 86/1898
  42740. }
  42741. },
  42742. back: {
  42743. height: math.unit(10, "feet"),
  42744. weight: math.unit(1500, "lb"),
  42745. name: "Back",
  42746. image: {
  42747. source: "./media/characters/miles-thestia/back.svg",
  42748. extra: 1799/1690,
  42749. bottom: 47/1846
  42750. }
  42751. },
  42752. frontNsfw: {
  42753. height: math.unit(10, "feet"),
  42754. weight: math.unit(1500, "lb"),
  42755. name: "Front (NSFW)",
  42756. image: {
  42757. source: "./media/characters/miles-thestia/front-nsfw.svg",
  42758. extra: 1812/1727,
  42759. bottom: 86/1898
  42760. }
  42761. },
  42762. },
  42763. [
  42764. {
  42765. name: "Mini-Macro",
  42766. height: math.unit(10, "feet"),
  42767. default: true
  42768. },
  42769. ]
  42770. ))
  42771. characterMakers.push(() => makeCharacter(
  42772. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  42773. {
  42774. front: {
  42775. height: math.unit(25, "feet"),
  42776. name: "Front",
  42777. image: {
  42778. source: "./media/characters/titan-s-wulf/front.svg",
  42779. extra: 1560/1484,
  42780. bottom: 76/1636
  42781. }
  42782. },
  42783. },
  42784. [
  42785. {
  42786. name: "Smallest",
  42787. height: math.unit(25, "feet"),
  42788. default: true
  42789. },
  42790. {
  42791. name: "Normal",
  42792. height: math.unit(200, "feet")
  42793. },
  42794. {
  42795. name: "Macro",
  42796. height: math.unit(200000, "feet")
  42797. },
  42798. {
  42799. name: "Multiversal Original",
  42800. height: math.unit(10000, "multiverses")
  42801. },
  42802. ]
  42803. ))
  42804. characterMakers.push(() => makeCharacter(
  42805. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  42806. {
  42807. front: {
  42808. height: math.unit(8, "feet"),
  42809. weight: math.unit(553, "lb"),
  42810. name: "Front",
  42811. image: {
  42812. source: "./media/characters/tawendeh/front.svg",
  42813. extra: 2365/2268,
  42814. bottom: 83/2448
  42815. }
  42816. },
  42817. frontClothed: {
  42818. height: math.unit(8, "feet"),
  42819. weight: math.unit(553, "lb"),
  42820. name: "Front (Clothed)",
  42821. image: {
  42822. source: "./media/characters/tawendeh/front-clothed.svg",
  42823. extra: 2365/2268,
  42824. bottom: 83/2448
  42825. }
  42826. },
  42827. back: {
  42828. height: math.unit(8, "feet"),
  42829. weight: math.unit(553, "lb"),
  42830. name: "Back",
  42831. image: {
  42832. source: "./media/characters/tawendeh/back.svg",
  42833. extra: 2397/2294,
  42834. bottom: 42/2439
  42835. }
  42836. },
  42837. },
  42838. [
  42839. {
  42840. name: "Mortal Interaction",
  42841. height: math.unit(8, "feet"),
  42842. default: true
  42843. },
  42844. {
  42845. name: "Giant",
  42846. height: math.unit(80, "feet")
  42847. },
  42848. {
  42849. name: "Macro",
  42850. height: math.unit(800, "feet")
  42851. },
  42852. {
  42853. name: "Megamacro",
  42854. height: math.unit(8000, "feet")
  42855. },
  42856. {
  42857. name: "City-Crushing",
  42858. height: math.unit(24000, "feet")
  42859. },
  42860. {
  42861. name: "Mountain-Mashing",
  42862. height: math.unit(80000, "feet")
  42863. },
  42864. {
  42865. name: "Nation Nemesis",
  42866. height: math.unit(8e6, "feet")
  42867. },
  42868. {
  42869. name: "Continent Cracker",
  42870. height: math.unit(24e6, "feet")
  42871. },
  42872. {
  42873. name: "Earth-Eclipsing",
  42874. height: math.unit(2.4e8, "feet")
  42875. },
  42876. {
  42877. name: "Gas Giant Gulper",
  42878. height: math.unit(2.4e9, "feet")
  42879. },
  42880. {
  42881. name: "Sol-Swallowing",
  42882. height: math.unit(8e10, "feet")
  42883. },
  42884. {
  42885. name: "Galaxy Gulper",
  42886. height: math.unit(8, "galaxies")
  42887. },
  42888. {
  42889. name: "Cosmos Churner",
  42890. height: math.unit(8, "universes")
  42891. },
  42892. {
  42893. name: "Omnipotent Otter",
  42894. height: math.unit(80, "universes")
  42895. },
  42896. ]
  42897. ))
  42898. characterMakers.push(() => makeCharacter(
  42899. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  42900. {
  42901. front: {
  42902. height: math.unit(2.6, "meters"),
  42903. weight: math.unit(900, "kg"),
  42904. name: "Front",
  42905. image: {
  42906. source: "./media/characters/neesha/front.svg",
  42907. extra: 1803/1653,
  42908. bottom: 128/1931
  42909. }
  42910. },
  42911. },
  42912. [
  42913. {
  42914. name: "Normal",
  42915. height: math.unit(2.6, "meters"),
  42916. default: true
  42917. },
  42918. {
  42919. name: "Macro",
  42920. height: math.unit(50, "meters")
  42921. },
  42922. ]
  42923. ))
  42924. characterMakers.push(() => makeCharacter(
  42925. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  42926. {
  42927. front: {
  42928. height: math.unit(5, "feet"),
  42929. weight: math.unit(185, "lb"),
  42930. name: "Front",
  42931. image: {
  42932. source: "./media/characters/kyera/front.svg",
  42933. extra: 1875/1790,
  42934. bottom: 96/1971
  42935. }
  42936. },
  42937. },
  42938. [
  42939. {
  42940. name: "Normal",
  42941. height: math.unit(5, "feet"),
  42942. default: true
  42943. },
  42944. ]
  42945. ))
  42946. characterMakers.push(() => makeCharacter(
  42947. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  42948. {
  42949. front: {
  42950. height: math.unit(7 + 6/12, "feet"),
  42951. weight: math.unit(540, "lb"),
  42952. name: "Front",
  42953. image: {
  42954. source: "./media/characters/yuko/front.svg",
  42955. extra: 1282/1222,
  42956. bottom: 101/1383
  42957. }
  42958. },
  42959. frontClothed: {
  42960. height: math.unit(7 + 6/12, "feet"),
  42961. weight: math.unit(540, "lb"),
  42962. name: "Front (Clothed)",
  42963. image: {
  42964. source: "./media/characters/yuko/front-clothed.svg",
  42965. extra: 1282/1222,
  42966. bottom: 101/1383
  42967. }
  42968. },
  42969. },
  42970. [
  42971. {
  42972. name: "Normal",
  42973. height: math.unit(7 + 6/12, "feet"),
  42974. default: true
  42975. },
  42976. {
  42977. name: "Macro",
  42978. height: math.unit(26 + 9/12, "feet")
  42979. },
  42980. {
  42981. name: "Megamacro",
  42982. height: math.unit(300, "feet")
  42983. },
  42984. {
  42985. name: "Gigamacro",
  42986. height: math.unit(5000, "feet")
  42987. },
  42988. {
  42989. name: "Planetary",
  42990. height: math.unit(10000, "miles")
  42991. },
  42992. ]
  42993. ))
  42994. characterMakers.push(() => makeCharacter(
  42995. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  42996. {
  42997. front: {
  42998. height: math.unit(8 + 2/12, "feet"),
  42999. weight: math.unit(600, "lb"),
  43000. name: "Front",
  43001. image: {
  43002. source: "./media/characters/deam-nitrel/front.svg",
  43003. extra: 1308/1234,
  43004. bottom: 125/1433
  43005. }
  43006. },
  43007. },
  43008. [
  43009. {
  43010. name: "Normal",
  43011. height: math.unit(8 + 2/12, "feet"),
  43012. default: true
  43013. },
  43014. ]
  43015. ))
  43016. characterMakers.push(() => makeCharacter(
  43017. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  43018. {
  43019. front: {
  43020. height: math.unit(6.1, "feet"),
  43021. weight: math.unit(180, "lb"),
  43022. name: "Front",
  43023. image: {
  43024. source: "./media/characters/skyress/front.svg",
  43025. extra: 1045/915,
  43026. bottom: 28/1073
  43027. }
  43028. },
  43029. maw: {
  43030. height: math.unit(1, "feet"),
  43031. name: "Maw",
  43032. image: {
  43033. source: "./media/characters/skyress/maw.svg"
  43034. }
  43035. },
  43036. },
  43037. [
  43038. {
  43039. name: "Normal",
  43040. height: math.unit(6.1, "feet"),
  43041. default: true
  43042. },
  43043. {
  43044. name: "Macro",
  43045. height: math.unit(200, "feet")
  43046. },
  43047. ]
  43048. ))
  43049. characterMakers.push(() => makeCharacter(
  43050. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  43051. {
  43052. front: {
  43053. height: math.unit(4 + 2/12, "feet"),
  43054. weight: math.unit(40, "kg"),
  43055. name: "Front",
  43056. image: {
  43057. source: "./media/characters/amethyst-jones/front.svg",
  43058. extra: 1220/1150,
  43059. bottom: 101/1321
  43060. }
  43061. },
  43062. },
  43063. [
  43064. {
  43065. name: "Normal",
  43066. height: math.unit(4 + 2/12, "feet"),
  43067. default: true
  43068. },
  43069. ]
  43070. ))
  43071. characterMakers.push(() => makeCharacter(
  43072. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  43073. {
  43074. front: {
  43075. height: math.unit(1.7, "m"),
  43076. weight: math.unit(135, "lb"),
  43077. name: "Front",
  43078. image: {
  43079. source: "./media/characters/jade/front.svg",
  43080. extra: 1818/1767,
  43081. bottom: 32/1850
  43082. }
  43083. },
  43084. back: {
  43085. height: math.unit(1.7, "m"),
  43086. weight: math.unit(135, "lb"),
  43087. name: "Back",
  43088. image: {
  43089. source: "./media/characters/jade/back.svg",
  43090. extra: 1869/1809,
  43091. bottom: 35/1904
  43092. }
  43093. },
  43094. hand: {
  43095. height: math.unit(0.24, "m"),
  43096. name: "Hand",
  43097. image: {
  43098. source: "./media/characters/jade/hand.svg"
  43099. }
  43100. },
  43101. foot: {
  43102. height: math.unit(0.263, "m"),
  43103. name: "Foot",
  43104. image: {
  43105. source: "./media/characters/jade/foot.svg"
  43106. }
  43107. },
  43108. dick: {
  43109. height: math.unit(0.47, "m"),
  43110. name: "Dick",
  43111. image: {
  43112. source: "./media/characters/jade/dick.svg"
  43113. }
  43114. },
  43115. },
  43116. [
  43117. {
  43118. name: "Micro",
  43119. height: math.unit(22, "cm")
  43120. },
  43121. {
  43122. name: "Normal",
  43123. height: math.unit(1.7, "m"),
  43124. default: true
  43125. },
  43126. {
  43127. name: "Macro",
  43128. height: math.unit(152, "m")
  43129. },
  43130. ]
  43131. ))
  43132. characterMakers.push(() => makeCharacter(
  43133. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  43134. {
  43135. front: {
  43136. height: math.unit(100, "miles"),
  43137. weight: math.unit(20000, "tons"),
  43138. name: "Front",
  43139. image: {
  43140. source: "./media/characters/cookie/front.svg",
  43141. extra: 1125/1070,
  43142. bottom: 30/1155
  43143. }
  43144. },
  43145. },
  43146. [
  43147. {
  43148. name: "Big",
  43149. height: math.unit(50, "feet")
  43150. },
  43151. {
  43152. name: "Macro",
  43153. height: math.unit(100, "miles"),
  43154. default: true
  43155. },
  43156. {
  43157. name: "Megamacro",
  43158. height: math.unit(90000, "miles")
  43159. },
  43160. ]
  43161. ))
  43162. characterMakers.push(() => makeCharacter(
  43163. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  43164. {
  43165. front: {
  43166. height: math.unit(6, "feet"),
  43167. weight: math.unit(145, "lb"),
  43168. name: "Front",
  43169. image: {
  43170. source: "./media/characters/farzian/front.svg",
  43171. extra: 1902/1693,
  43172. bottom: 108/2010
  43173. }
  43174. },
  43175. },
  43176. [
  43177. {
  43178. name: "Macro",
  43179. height: math.unit(500, "feet"),
  43180. default: true
  43181. },
  43182. ]
  43183. ))
  43184. characterMakers.push(() => makeCharacter(
  43185. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  43186. {
  43187. front: {
  43188. height: math.unit(3 + 6/12, "feet"),
  43189. weight: math.unit(50, "lb"),
  43190. name: "Front",
  43191. image: {
  43192. source: "./media/characters/kimberly-tilson/front.svg",
  43193. extra: 1400/1322,
  43194. bottom: 36/1436
  43195. }
  43196. },
  43197. back: {
  43198. height: math.unit(3 + 6/12, "feet"),
  43199. weight: math.unit(50, "lb"),
  43200. name: "Back",
  43201. image: {
  43202. source: "./media/characters/kimberly-tilson/back.svg",
  43203. extra: 1370/1307,
  43204. bottom: 20/1390
  43205. }
  43206. },
  43207. },
  43208. [
  43209. {
  43210. name: "Normal",
  43211. height: math.unit(3 + 6/12, "feet"),
  43212. default: true
  43213. },
  43214. ]
  43215. ))
  43216. characterMakers.push(() => makeCharacter(
  43217. { name: "Harthos", species: ["peacekeeper", "allusus"], tags: ["anthro"] },
  43218. {
  43219. front: {
  43220. height: math.unit(350, "meters"),
  43221. weight: math.unit(7.57059e+8, "lb"),
  43222. name: "Front",
  43223. image: {
  43224. source: "./media/characters/harthos/front.svg",
  43225. extra: 455/446,
  43226. bottom: 15/470
  43227. },
  43228. form: "peacekeeper",
  43229. default: true
  43230. },
  43231. allusus_front: {
  43232. height: math.unit(270, "meters"),
  43233. weight: math.unit(3.47550e+8, "lb"),
  43234. name: "Front",
  43235. image: {
  43236. source: "./media/characters/harthos/allusus-front.svg",
  43237. extra: 455/446,
  43238. bottom: 15/470
  43239. },
  43240. form: "allusus",
  43241. },
  43242. },
  43243. [
  43244. {
  43245. name: "Macro",
  43246. height: math.unit(350, "meters"),
  43247. default: true,
  43248. form: "peacekeeper"
  43249. },
  43250. {
  43251. name: "Macro",
  43252. height: math.unit(270, "meters"),
  43253. default: true,
  43254. form: "allusus"
  43255. },
  43256. ],
  43257. {
  43258. "peacekeeper": {
  43259. name: "Peacekeeper",
  43260. default: true
  43261. },
  43262. "allusus": {
  43263. name: "Allusus",
  43264. },
  43265. }
  43266. ))
  43267. characterMakers.push(() => makeCharacter(
  43268. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  43269. {
  43270. front: {
  43271. height: math.unit(15, "feet"),
  43272. name: "Front",
  43273. image: {
  43274. source: "./media/characters/hypatia/front.svg",
  43275. extra: 1653/1591,
  43276. bottom: 79/1732
  43277. }
  43278. },
  43279. },
  43280. [
  43281. {
  43282. name: "Normal",
  43283. height: math.unit(15, "feet")
  43284. },
  43285. {
  43286. name: "Small",
  43287. height: math.unit(300, "feet")
  43288. },
  43289. {
  43290. name: "Macro",
  43291. height: math.unit(2500, "feet"),
  43292. default: true
  43293. },
  43294. {
  43295. name: "Mega Macro",
  43296. height: math.unit(1500, "miles")
  43297. },
  43298. {
  43299. name: "Giga Macro",
  43300. height: math.unit(1.5e6, "miles")
  43301. },
  43302. ]
  43303. ))
  43304. characterMakers.push(() => makeCharacter(
  43305. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  43306. {
  43307. front: {
  43308. height: math.unit(6, "feet"),
  43309. weight: math.unit(200, "lb"),
  43310. name: "Front",
  43311. image: {
  43312. source: "./media/characters/wulver/front.svg",
  43313. extra: 1724/1632,
  43314. bottom: 130/1854
  43315. }
  43316. },
  43317. frontNsfw: {
  43318. height: math.unit(6, "feet"),
  43319. weight: math.unit(200, "lb"),
  43320. name: "Front (NSFW)",
  43321. image: {
  43322. source: "./media/characters/wulver/front-nsfw.svg",
  43323. extra: 1724/1632,
  43324. bottom: 130/1854
  43325. }
  43326. },
  43327. },
  43328. [
  43329. {
  43330. name: "Human-Sized",
  43331. height: math.unit(6, "feet")
  43332. },
  43333. {
  43334. name: "Normal",
  43335. height: math.unit(4, "meters"),
  43336. default: true
  43337. },
  43338. {
  43339. name: "Large",
  43340. height: math.unit(6, "m")
  43341. },
  43342. ]
  43343. ))
  43344. characterMakers.push(() => makeCharacter(
  43345. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  43346. {
  43347. front: {
  43348. height: math.unit(7, "feet"),
  43349. name: "Front",
  43350. image: {
  43351. source: "./media/characters/maru/front.svg",
  43352. extra: 1595/1570,
  43353. bottom: 0/1595
  43354. }
  43355. },
  43356. },
  43357. [
  43358. {
  43359. name: "Normal",
  43360. height: math.unit(7, "feet"),
  43361. default: true
  43362. },
  43363. {
  43364. name: "Macro",
  43365. height: math.unit(700, "feet")
  43366. },
  43367. {
  43368. name: "Mega Macro",
  43369. height: math.unit(25, "miles")
  43370. },
  43371. ]
  43372. ))
  43373. characterMakers.push(() => makeCharacter(
  43374. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  43375. {
  43376. front: {
  43377. height: math.unit(6, "feet"),
  43378. weight: math.unit(170, "lb"),
  43379. name: "Front",
  43380. image: {
  43381. source: "./media/characters/xenon/front.svg",
  43382. extra: 1376/1305,
  43383. bottom: 56/1432
  43384. }
  43385. },
  43386. back: {
  43387. height: math.unit(6, "feet"),
  43388. weight: math.unit(170, "lb"),
  43389. name: "Back",
  43390. image: {
  43391. source: "./media/characters/xenon/back.svg",
  43392. extra: 1328/1259,
  43393. bottom: 95/1423
  43394. }
  43395. },
  43396. maw: {
  43397. height: math.unit(0.52, "feet"),
  43398. name: "Maw",
  43399. image: {
  43400. source: "./media/characters/xenon/maw.svg"
  43401. }
  43402. },
  43403. handLeft: {
  43404. height: math.unit(0.82 * 169 / 153, "feet"),
  43405. name: "Hand (Left)",
  43406. image: {
  43407. source: "./media/characters/xenon/hand-left.svg"
  43408. }
  43409. },
  43410. handRight: {
  43411. height: math.unit(0.82, "feet"),
  43412. name: "Hand (Right)",
  43413. image: {
  43414. source: "./media/characters/xenon/hand-right.svg"
  43415. }
  43416. },
  43417. footLeft: {
  43418. height: math.unit(1.13, "feet"),
  43419. name: "Foot (Left)",
  43420. image: {
  43421. source: "./media/characters/xenon/foot-left.svg"
  43422. }
  43423. },
  43424. footRight: {
  43425. height: math.unit(1.13 * 194 / 196, "feet"),
  43426. name: "Foot (Right)",
  43427. image: {
  43428. source: "./media/characters/xenon/foot-right.svg"
  43429. }
  43430. },
  43431. },
  43432. [
  43433. {
  43434. name: "Micro",
  43435. height: math.unit(0.8, "inches")
  43436. },
  43437. {
  43438. name: "Normal",
  43439. height: math.unit(6, "feet")
  43440. },
  43441. {
  43442. name: "Macro",
  43443. height: math.unit(50, "feet"),
  43444. default: true
  43445. },
  43446. {
  43447. name: "Macro+",
  43448. height: math.unit(250, "feet")
  43449. },
  43450. {
  43451. name: "Megamacro",
  43452. height: math.unit(1500, "feet")
  43453. },
  43454. ]
  43455. ))
  43456. characterMakers.push(() => makeCharacter(
  43457. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  43458. {
  43459. front: {
  43460. height: math.unit(7 + 5/12, "feet"),
  43461. name: "Front",
  43462. image: {
  43463. source: "./media/characters/zane/front.svg",
  43464. extra: 1260/1203,
  43465. bottom: 94/1354
  43466. }
  43467. },
  43468. back: {
  43469. height: math.unit(5.05, "feet"),
  43470. name: "Back",
  43471. image: {
  43472. source: "./media/characters/zane/back.svg",
  43473. extra: 893/829,
  43474. bottom: 30/923
  43475. }
  43476. },
  43477. werewolf: {
  43478. height: math.unit(11, "feet"),
  43479. name: "Werewolf",
  43480. image: {
  43481. source: "./media/characters/zane/werewolf.svg",
  43482. extra: 1383/1323,
  43483. bottom: 89/1472
  43484. }
  43485. },
  43486. foot: {
  43487. height: math.unit(1.46, "feet"),
  43488. name: "Foot",
  43489. image: {
  43490. source: "./media/characters/zane/foot.svg"
  43491. }
  43492. },
  43493. footFront: {
  43494. height: math.unit(0.784, "feet"),
  43495. name: "Foot (Front)",
  43496. image: {
  43497. source: "./media/characters/zane/foot-front.svg"
  43498. }
  43499. },
  43500. dick: {
  43501. height: math.unit(1.95, "feet"),
  43502. name: "Dick",
  43503. image: {
  43504. source: "./media/characters/zane/dick.svg"
  43505. }
  43506. },
  43507. dickWerewolf: {
  43508. height: math.unit(3.77, "feet"),
  43509. name: "Dick (Werewolf)",
  43510. image: {
  43511. source: "./media/characters/zane/dick.svg"
  43512. }
  43513. },
  43514. },
  43515. [
  43516. {
  43517. name: "Normal",
  43518. height: math.unit(7 + 5/12, "feet"),
  43519. default: true
  43520. },
  43521. ]
  43522. ))
  43523. characterMakers.push(() => makeCharacter(
  43524. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  43525. {
  43526. front: {
  43527. height: math.unit(6 + 2/12, "feet"),
  43528. weight: math.unit(284, "lb"),
  43529. name: "Front",
  43530. image: {
  43531. source: "./media/characters/benni-desparque/front.svg",
  43532. extra: 878/729,
  43533. bottom: 58/936
  43534. }
  43535. },
  43536. back: {
  43537. height: math.unit(6 + 2/12, "feet"),
  43538. weight: math.unit(284, "lb"),
  43539. name: "Back",
  43540. image: {
  43541. source: "./media/characters/benni-desparque/back.svg",
  43542. extra: 901/756,
  43543. bottom: 51/952
  43544. }
  43545. },
  43546. dressed: {
  43547. height: math.unit(6 + 2/12 + 0.5/12, "feet"),
  43548. weight: math.unit(284, "lb"),
  43549. name: "Dressed",
  43550. image: {
  43551. source: "./media/characters/benni-desparque/dressed.svg",
  43552. extra: 1514/1276,
  43553. bottom: 65/1579
  43554. }
  43555. },
  43556. hand: {
  43557. height: math.unit(1.28, "feet"),
  43558. name: "Hand",
  43559. image: {
  43560. source: "./media/characters/benni-desparque/hand.svg"
  43561. }
  43562. },
  43563. foot: {
  43564. height: math.unit(1.53, "feet"),
  43565. name: "Foot",
  43566. image: {
  43567. source: "./media/characters/benni-desparque/foot.svg"
  43568. }
  43569. },
  43570. aiControlUnit: {
  43571. height: math.unit(0.175, "feet"),
  43572. name: "AI Control Unit",
  43573. image: {
  43574. source: "./media/characters/benni-desparque/ai-control-unit.svg"
  43575. }
  43576. },
  43577. },
  43578. [
  43579. {
  43580. name: "Civilian",
  43581. height: math.unit(6 + 2/12, "feet")
  43582. },
  43583. {
  43584. name: "Normal",
  43585. height: math.unit(98, "feet"),
  43586. default: true
  43587. },
  43588. {
  43589. name: "Kaiju Fighter",
  43590. height: math.unit(268, "feet")
  43591. },
  43592. ]
  43593. ))
  43594. characterMakers.push(() => makeCharacter(
  43595. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  43596. {
  43597. front: {
  43598. height: math.unit(5, "feet"),
  43599. weight: math.unit(105, "lb"),
  43600. name: "Front",
  43601. image: {
  43602. source: "./media/characters/maxine/front.svg",
  43603. extra: 1386/1250,
  43604. bottom: 71/1457
  43605. }
  43606. },
  43607. },
  43608. [
  43609. {
  43610. name: "Normal",
  43611. height: math.unit(5, "feet"),
  43612. default: true
  43613. },
  43614. ]
  43615. ))
  43616. characterMakers.push(() => makeCharacter(
  43617. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  43618. {
  43619. front: {
  43620. height: math.unit(11 + 7/12, "feet"),
  43621. weight: math.unit(9576, "lb"),
  43622. name: "Front",
  43623. image: {
  43624. source: "./media/characters/scaly/front.svg",
  43625. extra: 888/867,
  43626. bottom: 36/924
  43627. }
  43628. },
  43629. },
  43630. [
  43631. {
  43632. name: "Normal",
  43633. height: math.unit(11 + 7/12, "feet"),
  43634. default: true
  43635. },
  43636. ]
  43637. ))
  43638. characterMakers.push(() => makeCharacter(
  43639. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  43640. {
  43641. front: {
  43642. height: math.unit(6 + 3/12, "feet"),
  43643. name: "Front",
  43644. image: {
  43645. source: "./media/characters/saelria/front.svg",
  43646. extra: 1243/1138,
  43647. bottom: 46/1289
  43648. }
  43649. },
  43650. },
  43651. [
  43652. {
  43653. name: "Micro",
  43654. height: math.unit(6, "inches"),
  43655. },
  43656. {
  43657. name: "Normal",
  43658. height: math.unit(6 + 3/12, "feet"),
  43659. default: true
  43660. },
  43661. {
  43662. name: "Macro",
  43663. height: math.unit(25, "feet")
  43664. },
  43665. ]
  43666. ))
  43667. characterMakers.push(() => makeCharacter(
  43668. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  43669. {
  43670. front: {
  43671. height: math.unit(80, "meters"),
  43672. weight: math.unit(7000, "tonnes"),
  43673. name: "Front",
  43674. image: {
  43675. source: "./media/characters/tef/front.svg",
  43676. extra: 2036/1991,
  43677. bottom: 54/2090
  43678. }
  43679. },
  43680. back: {
  43681. height: math.unit(80, "meters"),
  43682. weight: math.unit(7000, "tonnes"),
  43683. name: "Back",
  43684. image: {
  43685. source: "./media/characters/tef/back.svg",
  43686. extra: 2036/1991,
  43687. bottom: 54/2090
  43688. }
  43689. },
  43690. },
  43691. [
  43692. {
  43693. name: "Macro",
  43694. height: math.unit(80, "meters"),
  43695. default: true
  43696. },
  43697. ]
  43698. ))
  43699. characterMakers.push(() => makeCharacter(
  43700. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  43701. {
  43702. front: {
  43703. height: math.unit(13, "feet"),
  43704. weight: math.unit(6, "tons"),
  43705. name: "Front",
  43706. image: {
  43707. source: "./media/characters/rover/front.svg",
  43708. extra: 1233/1156,
  43709. bottom: 50/1283
  43710. }
  43711. },
  43712. back: {
  43713. height: math.unit(13, "feet"),
  43714. weight: math.unit(6, "tons"),
  43715. name: "Back",
  43716. image: {
  43717. source: "./media/characters/rover/back.svg",
  43718. extra: 1327/1258,
  43719. bottom: 39/1366
  43720. }
  43721. },
  43722. },
  43723. [
  43724. {
  43725. name: "Normal",
  43726. height: math.unit(13, "feet"),
  43727. default: true
  43728. },
  43729. {
  43730. name: "Macro",
  43731. height: math.unit(1300, "feet")
  43732. },
  43733. {
  43734. name: "Megamacro",
  43735. height: math.unit(1300, "miles")
  43736. },
  43737. {
  43738. name: "Gigamacro",
  43739. height: math.unit(1300000, "miles")
  43740. },
  43741. ]
  43742. ))
  43743. characterMakers.push(() => makeCharacter(
  43744. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  43745. {
  43746. front: {
  43747. height: math.unit(10, "feet"),
  43748. weight: math.unit(500, "lb"),
  43749. name: "Front",
  43750. image: {
  43751. source: "./media/characters/ariz/front.svg",
  43752. extra: 461/450,
  43753. bottom: 16/477
  43754. }
  43755. },
  43756. },
  43757. [
  43758. {
  43759. name: "MiniMacro",
  43760. height: math.unit(10, "feet"),
  43761. default: true
  43762. },
  43763. ]
  43764. ))
  43765. characterMakers.push(() => makeCharacter(
  43766. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  43767. {
  43768. front: {
  43769. height: math.unit(6, "feet"),
  43770. weight: math.unit(140, "lb"),
  43771. name: "Front",
  43772. image: {
  43773. source: "./media/characters/sigrun/front.svg",
  43774. extra: 1418/1359,
  43775. bottom: 27/1445
  43776. }
  43777. },
  43778. },
  43779. [
  43780. {
  43781. name: "Macro",
  43782. height: math.unit(35, "feet"),
  43783. default: true
  43784. },
  43785. ]
  43786. ))
  43787. characterMakers.push(() => makeCharacter(
  43788. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  43789. {
  43790. front: {
  43791. height: math.unit(6, "feet"),
  43792. weight: math.unit(150, "lb"),
  43793. name: "Front",
  43794. image: {
  43795. source: "./media/characters/numin/front.svg",
  43796. extra: 1433/1388,
  43797. bottom: 12/1445
  43798. }
  43799. },
  43800. },
  43801. [
  43802. {
  43803. name: "Macro",
  43804. height: math.unit(21.5, "km"),
  43805. default: true
  43806. },
  43807. ]
  43808. ))
  43809. characterMakers.push(() => makeCharacter(
  43810. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  43811. {
  43812. front: {
  43813. height: math.unit(6, "feet"),
  43814. weight: math.unit(463, "lb"),
  43815. name: "Front",
  43816. image: {
  43817. source: "./media/characters/melwa/front.svg",
  43818. extra: 1307/1248,
  43819. bottom: 93/1400
  43820. }
  43821. },
  43822. },
  43823. [
  43824. {
  43825. name: "Macro",
  43826. height: math.unit(50, "meters"),
  43827. default: true
  43828. },
  43829. ]
  43830. ))
  43831. characterMakers.push(() => makeCharacter(
  43832. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  43833. {
  43834. front: {
  43835. height: math.unit(325, "feet"),
  43836. name: "Front",
  43837. image: {
  43838. source: "./media/characters/zorkaiju/front.svg",
  43839. extra: 1955/1814,
  43840. bottom: 40/1995
  43841. }
  43842. },
  43843. frontExtended: {
  43844. height: math.unit(325, "feet"),
  43845. name: "Front (Extended)",
  43846. image: {
  43847. source: "./media/characters/zorkaiju/front-extended.svg",
  43848. extra: 1955/1814,
  43849. bottom: 40/1995
  43850. }
  43851. },
  43852. side: {
  43853. height: math.unit(325, "feet"),
  43854. name: "Side",
  43855. image: {
  43856. source: "./media/characters/zorkaiju/side.svg",
  43857. extra: 1495/1396,
  43858. bottom: 17/1512
  43859. }
  43860. },
  43861. sideExtended: {
  43862. height: math.unit(325, "feet"),
  43863. name: "Side (Extended)",
  43864. image: {
  43865. source: "./media/characters/zorkaiju/side-extended.svg",
  43866. extra: 1495/1396,
  43867. bottom: 17/1512
  43868. }
  43869. },
  43870. back: {
  43871. height: math.unit(325, "feet"),
  43872. name: "Back",
  43873. image: {
  43874. source: "./media/characters/zorkaiju/back.svg",
  43875. extra: 1959/1821,
  43876. bottom: 31/1990
  43877. }
  43878. },
  43879. backExtended: {
  43880. height: math.unit(325, "feet"),
  43881. name: "Back (Extended)",
  43882. image: {
  43883. source: "./media/characters/zorkaiju/back-extended.svg",
  43884. extra: 1959/1821,
  43885. bottom: 31/1990
  43886. }
  43887. },
  43888. hand: {
  43889. height: math.unit(58.4, "feet"),
  43890. name: "Hand",
  43891. image: {
  43892. source: "./media/characters/zorkaiju/hand.svg"
  43893. }
  43894. },
  43895. handExtended: {
  43896. height: math.unit(61.4, "feet"),
  43897. name: "Hand (Extended)",
  43898. image: {
  43899. source: "./media/characters/zorkaiju/hand-extended.svg"
  43900. }
  43901. },
  43902. foot: {
  43903. height: math.unit(95, "feet"),
  43904. name: "Foot",
  43905. image: {
  43906. source: "./media/characters/zorkaiju/foot.svg"
  43907. }
  43908. },
  43909. leftArm: {
  43910. height: math.unit(59, "feet"),
  43911. name: "Left Arm",
  43912. image: {
  43913. source: "./media/characters/zorkaiju/left-arm.svg"
  43914. }
  43915. },
  43916. rightArm: {
  43917. height: math.unit(59, "feet"),
  43918. name: "Right Arm",
  43919. image: {
  43920. source: "./media/characters/zorkaiju/right-arm.svg"
  43921. }
  43922. },
  43923. leftArmExtended: {
  43924. height: math.unit(59 * 1.033546, "feet"),
  43925. name: "Left Arm (Extended)",
  43926. image: {
  43927. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  43928. }
  43929. },
  43930. rightArmExtended: {
  43931. height: math.unit(59 * 1.0496, "feet"),
  43932. name: "Right Arm (Extended)",
  43933. image: {
  43934. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  43935. }
  43936. },
  43937. tail: {
  43938. height: math.unit(104, "feet"),
  43939. name: "Tail",
  43940. image: {
  43941. source: "./media/characters/zorkaiju/tail.svg"
  43942. }
  43943. },
  43944. tailExtended: {
  43945. height: math.unit(104, "feet"),
  43946. name: "Tail (Extended)",
  43947. image: {
  43948. source: "./media/characters/zorkaiju/tail-extended.svg"
  43949. }
  43950. },
  43951. tailBottom: {
  43952. height: math.unit(104, "feet"),
  43953. name: "Tail Bottom",
  43954. image: {
  43955. source: "./media/characters/zorkaiju/tail-bottom.svg"
  43956. }
  43957. },
  43958. crystal: {
  43959. height: math.unit(27.54, "feet"),
  43960. name: "Crystal",
  43961. image: {
  43962. source: "./media/characters/zorkaiju/crystal.svg"
  43963. }
  43964. },
  43965. },
  43966. [
  43967. {
  43968. name: "Kaiju",
  43969. height: math.unit(325, "feet"),
  43970. default: true
  43971. },
  43972. ]
  43973. ))
  43974. characterMakers.push(() => makeCharacter(
  43975. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  43976. {
  43977. front: {
  43978. height: math.unit(6 + 1/12, "feet"),
  43979. weight: math.unit(115, "lb"),
  43980. name: "Front",
  43981. image: {
  43982. source: "./media/characters/bailey-belfry/front.svg",
  43983. extra: 1240/1121,
  43984. bottom: 101/1341
  43985. }
  43986. },
  43987. },
  43988. [
  43989. {
  43990. name: "Normal",
  43991. height: math.unit(6 + 1/12, "feet"),
  43992. default: true
  43993. },
  43994. ]
  43995. ))
  43996. characterMakers.push(() => makeCharacter(
  43997. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  43998. {
  43999. side: {
  44000. height: math.unit(4, "meters"),
  44001. weight: math.unit(250, "kg"),
  44002. name: "Side",
  44003. image: {
  44004. source: "./media/characters/blacky/side.svg",
  44005. extra: 1027/919,
  44006. bottom: 43/1070
  44007. }
  44008. },
  44009. maw: {
  44010. height: math.unit(1, "meters"),
  44011. name: "Maw",
  44012. image: {
  44013. source: "./media/characters/blacky/maw.svg"
  44014. }
  44015. },
  44016. paw: {
  44017. height: math.unit(1, "meters"),
  44018. name: "Paw",
  44019. image: {
  44020. source: "./media/characters/blacky/paw.svg"
  44021. }
  44022. },
  44023. },
  44024. [
  44025. {
  44026. name: "Normal",
  44027. height: math.unit(4, "meters"),
  44028. default: true
  44029. },
  44030. ]
  44031. ))
  44032. characterMakers.push(() => makeCharacter(
  44033. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  44034. {
  44035. front: {
  44036. height: math.unit(170, "cm"),
  44037. weight: math.unit(66, "kg"),
  44038. name: "Front",
  44039. image: {
  44040. source: "./media/characters/thux-ei/front.svg",
  44041. extra: 1109/1011,
  44042. bottom: 8/1117
  44043. }
  44044. },
  44045. },
  44046. [
  44047. {
  44048. name: "Normal",
  44049. height: math.unit(170, "cm"),
  44050. default: true
  44051. },
  44052. ]
  44053. ))
  44054. characterMakers.push(() => makeCharacter(
  44055. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  44056. {
  44057. front: {
  44058. height: math.unit(5, "feet"),
  44059. weight: math.unit(120, "lb"),
  44060. name: "Front",
  44061. image: {
  44062. source: "./media/characters/roxanne-voltaire/front.svg",
  44063. extra: 1901/1779,
  44064. bottom: 53/1954
  44065. }
  44066. },
  44067. },
  44068. [
  44069. {
  44070. name: "Normal",
  44071. height: math.unit(5, "feet"),
  44072. default: true
  44073. },
  44074. {
  44075. name: "Giant",
  44076. height: math.unit(50, "feet")
  44077. },
  44078. {
  44079. name: "Titan",
  44080. height: math.unit(500, "feet")
  44081. },
  44082. {
  44083. name: "Macro",
  44084. height: math.unit(5000, "feet")
  44085. },
  44086. {
  44087. name: "Megamacro",
  44088. height: math.unit(50000, "feet")
  44089. },
  44090. {
  44091. name: "Gigamacro",
  44092. height: math.unit(500000, "feet")
  44093. },
  44094. {
  44095. name: "Teramacro",
  44096. height: math.unit(5e6, "feet")
  44097. },
  44098. ]
  44099. ))
  44100. characterMakers.push(() => makeCharacter(
  44101. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  44102. {
  44103. front: {
  44104. height: math.unit(6 + 2/12, "feet"),
  44105. name: "Front",
  44106. image: {
  44107. source: "./media/characters/squeaks/front.svg",
  44108. extra: 1823/1768,
  44109. bottom: 138/1961
  44110. }
  44111. },
  44112. },
  44113. [
  44114. {
  44115. name: "Micro",
  44116. height: math.unit(0.5, "inches")
  44117. },
  44118. {
  44119. name: "Normal",
  44120. height: math.unit(6 + 2/12, "feet"),
  44121. default: true
  44122. },
  44123. {
  44124. name: "Macro",
  44125. height: math.unit(600, "feet")
  44126. },
  44127. ]
  44128. ))
  44129. characterMakers.push(() => makeCharacter(
  44130. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  44131. {
  44132. front: {
  44133. height: math.unit(1.72, "meters"),
  44134. name: "Front",
  44135. image: {
  44136. source: "./media/characters/archinger/front.svg",
  44137. extra: 1861/1675,
  44138. bottom: 125/1986
  44139. }
  44140. },
  44141. back: {
  44142. height: math.unit(1.72, "meters"),
  44143. name: "Back",
  44144. image: {
  44145. source: "./media/characters/archinger/back.svg",
  44146. extra: 1844/1701,
  44147. bottom: 104/1948
  44148. }
  44149. },
  44150. cock: {
  44151. height: math.unit(0.59, "feet"),
  44152. name: "Cock",
  44153. image: {
  44154. source: "./media/characters/archinger/cock.svg"
  44155. }
  44156. },
  44157. },
  44158. [
  44159. {
  44160. name: "Normal",
  44161. height: math.unit(1.72, "meters"),
  44162. default: true
  44163. },
  44164. {
  44165. name: "Macro",
  44166. height: math.unit(84, "meters")
  44167. },
  44168. {
  44169. name: "Macro+",
  44170. height: math.unit(112, "meters")
  44171. },
  44172. {
  44173. name: "Macro++",
  44174. height: math.unit(960, "meters")
  44175. },
  44176. {
  44177. name: "Macro+++",
  44178. height: math.unit(4, "km")
  44179. },
  44180. {
  44181. name: "Macro++++",
  44182. height: math.unit(48, "km")
  44183. },
  44184. {
  44185. name: "Macro+++++",
  44186. height: math.unit(4500, "km")
  44187. },
  44188. ]
  44189. ))
  44190. characterMakers.push(() => makeCharacter(
  44191. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  44192. {
  44193. front: {
  44194. height: math.unit(5 + 5/12, "feet"),
  44195. name: "Front",
  44196. image: {
  44197. source: "./media/characters/alsnapz/front.svg",
  44198. extra: 1157/1065,
  44199. bottom: 42/1199
  44200. }
  44201. },
  44202. },
  44203. [
  44204. {
  44205. name: "Normal",
  44206. height: math.unit(5 + 5/12, "feet"),
  44207. default: true
  44208. },
  44209. ]
  44210. ))
  44211. characterMakers.push(() => makeCharacter(
  44212. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  44213. {
  44214. side: {
  44215. height: math.unit(3.2, "earths"),
  44216. name: "Side",
  44217. image: {
  44218. source: "./media/characters/mag/side.svg",
  44219. extra: 1331/1008,
  44220. bottom: 52/1383
  44221. }
  44222. },
  44223. wing: {
  44224. height: math.unit(1.94, "earths"),
  44225. name: "Wing",
  44226. image: {
  44227. source: "./media/characters/mag/wing.svg"
  44228. }
  44229. },
  44230. dick: {
  44231. height: math.unit(1.8, "earths"),
  44232. name: "Dick",
  44233. image: {
  44234. source: "./media/characters/mag/dick.svg"
  44235. }
  44236. },
  44237. ass: {
  44238. height: math.unit(1.33, "earths"),
  44239. name: "Ass",
  44240. image: {
  44241. source: "./media/characters/mag/ass.svg"
  44242. }
  44243. },
  44244. head: {
  44245. height: math.unit(1.1, "earths"),
  44246. name: "Head",
  44247. image: {
  44248. source: "./media/characters/mag/head.svg"
  44249. }
  44250. },
  44251. maw: {
  44252. height: math.unit(1.62, "earths"),
  44253. name: "Maw",
  44254. image: {
  44255. source: "./media/characters/mag/maw.svg"
  44256. }
  44257. },
  44258. },
  44259. [
  44260. {
  44261. name: "Small",
  44262. height: math.unit(162, "feet")
  44263. },
  44264. {
  44265. name: "Normal",
  44266. height: math.unit(3.2, "earths"),
  44267. default: true
  44268. },
  44269. ]
  44270. ))
  44271. characterMakers.push(() => makeCharacter(
  44272. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  44273. {
  44274. front: {
  44275. height: math.unit(512, "feet"),
  44276. weight: math.unit(63509, "tonnes"),
  44277. name: "Front",
  44278. image: {
  44279. source: "./media/characters/vorrel-harroc/front.svg",
  44280. extra: 1075/1063,
  44281. bottom: 62/1137
  44282. }
  44283. },
  44284. },
  44285. [
  44286. {
  44287. name: "Normal",
  44288. height: math.unit(10, "feet")
  44289. },
  44290. {
  44291. name: "Macro",
  44292. height: math.unit(512, "feet"),
  44293. default: true
  44294. },
  44295. {
  44296. name: "Megamacro",
  44297. height: math.unit(256, "miles")
  44298. },
  44299. {
  44300. name: "Gigamacro",
  44301. height: math.unit(4096, "miles")
  44302. },
  44303. ]
  44304. ))
  44305. characterMakers.push(() => makeCharacter(
  44306. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  44307. {
  44308. side: {
  44309. height: math.unit(50, "feet"),
  44310. name: "Side",
  44311. image: {
  44312. source: "./media/characters/froimar/side.svg",
  44313. extra: 855/638,
  44314. bottom: 99/954
  44315. }
  44316. },
  44317. },
  44318. [
  44319. {
  44320. name: "Macro",
  44321. height: math.unit(50, "feet"),
  44322. default: true
  44323. },
  44324. ]
  44325. ))
  44326. characterMakers.push(() => makeCharacter(
  44327. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  44328. {
  44329. front: {
  44330. height: math.unit(210, "miles"),
  44331. name: "Front",
  44332. image: {
  44333. source: "./media/characters/timothy/front.svg",
  44334. extra: 1007/943,
  44335. bottom: 62/1069
  44336. }
  44337. },
  44338. frontSkirt: {
  44339. height: math.unit(210, "miles"),
  44340. name: "Front (Skirt)",
  44341. image: {
  44342. source: "./media/characters/timothy/front-skirt.svg",
  44343. extra: 1007/943,
  44344. bottom: 62/1069
  44345. }
  44346. },
  44347. frontCoat: {
  44348. height: math.unit(210, "miles"),
  44349. name: "Front (Coat)",
  44350. image: {
  44351. source: "./media/characters/timothy/front-coat.svg",
  44352. extra: 1007/943,
  44353. bottom: 62/1069
  44354. }
  44355. },
  44356. },
  44357. [
  44358. {
  44359. name: "Macro",
  44360. height: math.unit(210, "miles"),
  44361. default: true
  44362. },
  44363. {
  44364. name: "Megamacro",
  44365. height: math.unit(210000, "miles")
  44366. },
  44367. ]
  44368. ))
  44369. characterMakers.push(() => makeCharacter(
  44370. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  44371. {
  44372. front: {
  44373. height: math.unit(188, "feet"),
  44374. name: "Front",
  44375. image: {
  44376. source: "./media/characters/pyotr/front.svg",
  44377. extra: 1912/1826,
  44378. bottom: 18/1930
  44379. }
  44380. },
  44381. },
  44382. [
  44383. {
  44384. name: "Macro",
  44385. height: math.unit(188, "feet"),
  44386. default: true
  44387. },
  44388. {
  44389. name: "Megamacro",
  44390. height: math.unit(8, "miles")
  44391. },
  44392. ]
  44393. ))
  44394. characterMakers.push(() => makeCharacter(
  44395. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  44396. {
  44397. side: {
  44398. height: math.unit(10, "feet"),
  44399. weight: math.unit(4500, "lb"),
  44400. name: "Side",
  44401. image: {
  44402. source: "./media/characters/ackart/side.svg",
  44403. extra: 1776/1668,
  44404. bottom: 116/1892
  44405. }
  44406. },
  44407. },
  44408. [
  44409. {
  44410. name: "Normal",
  44411. height: math.unit(10, "feet"),
  44412. default: true
  44413. },
  44414. ]
  44415. ))
  44416. characterMakers.push(() => makeCharacter(
  44417. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  44418. {
  44419. side: {
  44420. height: math.unit(21, "feet"),
  44421. name: "Side",
  44422. image: {
  44423. source: "./media/characters/nolow/side.svg",
  44424. extra: 1484/1434,
  44425. bottom: 85/1569
  44426. }
  44427. },
  44428. sideErect: {
  44429. height: math.unit(21, "feet"),
  44430. name: "Side-erect",
  44431. image: {
  44432. source: "./media/characters/nolow/side-erect.svg",
  44433. extra: 1484/1434,
  44434. bottom: 85/1569
  44435. }
  44436. },
  44437. },
  44438. [
  44439. {
  44440. name: "Regular",
  44441. height: math.unit(12, "feet")
  44442. },
  44443. {
  44444. name: "Big Chee",
  44445. height: math.unit(21, "feet"),
  44446. default: true
  44447. },
  44448. ]
  44449. ))
  44450. characterMakers.push(() => makeCharacter(
  44451. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  44452. {
  44453. front: {
  44454. height: math.unit(7, "feet"),
  44455. weight: math.unit(250, "lb"),
  44456. name: "Front",
  44457. image: {
  44458. source: "./media/characters/nines/front.svg",
  44459. extra: 1741/1607,
  44460. bottom: 41/1782
  44461. }
  44462. },
  44463. side: {
  44464. height: math.unit(7, "feet"),
  44465. weight: math.unit(250, "lb"),
  44466. name: "Side",
  44467. image: {
  44468. source: "./media/characters/nines/side.svg",
  44469. extra: 1854/1735,
  44470. bottom: 93/1947
  44471. }
  44472. },
  44473. back: {
  44474. height: math.unit(7, "feet"),
  44475. weight: math.unit(250, "lb"),
  44476. name: "Back",
  44477. image: {
  44478. source: "./media/characters/nines/back.svg",
  44479. extra: 1748/1615,
  44480. bottom: 20/1768
  44481. }
  44482. },
  44483. },
  44484. [
  44485. {
  44486. name: "Megamacro",
  44487. height: math.unit(99, "km"),
  44488. default: true
  44489. },
  44490. ]
  44491. ))
  44492. characterMakers.push(() => makeCharacter(
  44493. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  44494. {
  44495. front: {
  44496. height: math.unit(5 + 10/12, "feet"),
  44497. weight: math.unit(210, "lb"),
  44498. name: "Front",
  44499. image: {
  44500. source: "./media/characters/zenith/front.svg",
  44501. extra: 1531/1452,
  44502. bottom: 198/1729
  44503. }
  44504. },
  44505. back: {
  44506. height: math.unit(5 + 10/12, "feet"),
  44507. weight: math.unit(210, "lb"),
  44508. name: "Back",
  44509. image: {
  44510. source: "./media/characters/zenith/back.svg",
  44511. extra: 1571/1487,
  44512. bottom: 75/1646
  44513. }
  44514. },
  44515. },
  44516. [
  44517. {
  44518. name: "Normal",
  44519. height: math.unit(5 + 10/12, "feet"),
  44520. default: true
  44521. }
  44522. ]
  44523. ))
  44524. characterMakers.push(() => makeCharacter(
  44525. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  44526. {
  44527. front: {
  44528. height: math.unit(4, "feet"),
  44529. weight: math.unit(60, "lb"),
  44530. name: "Front",
  44531. image: {
  44532. source: "./media/characters/jasper/front.svg",
  44533. extra: 1450/1379,
  44534. bottom: 19/1469
  44535. }
  44536. },
  44537. },
  44538. [
  44539. {
  44540. name: "Normal",
  44541. height: math.unit(4, "feet"),
  44542. default: true
  44543. },
  44544. ]
  44545. ))
  44546. characterMakers.push(() => makeCharacter(
  44547. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  44548. {
  44549. front: {
  44550. height: math.unit(6 + 5/12, "feet"),
  44551. weight: math.unit(290, "lb"),
  44552. name: "Front",
  44553. image: {
  44554. source: "./media/characters/tiberius-thyben/front.svg",
  44555. extra: 757/739,
  44556. bottom: 39/796
  44557. }
  44558. },
  44559. },
  44560. [
  44561. {
  44562. name: "Micro",
  44563. height: math.unit(1.5, "inches")
  44564. },
  44565. {
  44566. name: "Normal",
  44567. height: math.unit(6 + 5/12, "feet"),
  44568. default: true
  44569. },
  44570. {
  44571. name: "Macro",
  44572. height: math.unit(300, "feet")
  44573. },
  44574. ]
  44575. ))
  44576. characterMakers.push(() => makeCharacter(
  44577. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  44578. {
  44579. front: {
  44580. height: math.unit(5 + 6/12, "feet"),
  44581. weight: math.unit(60, "kg"),
  44582. name: "Front",
  44583. image: {
  44584. source: "./media/characters/sabre/front.svg",
  44585. extra: 738/671,
  44586. bottom: 27/765
  44587. }
  44588. },
  44589. },
  44590. [
  44591. {
  44592. name: "Teeny",
  44593. height: math.unit(2, "inches")
  44594. },
  44595. {
  44596. name: "Smol",
  44597. height: math.unit(8, "inches")
  44598. },
  44599. {
  44600. name: "Normal",
  44601. height: math.unit(5 + 6/12, "feet"),
  44602. default: true
  44603. },
  44604. {
  44605. name: "Mini-Macro",
  44606. height: math.unit(15, "feet")
  44607. },
  44608. {
  44609. name: "Macro",
  44610. height: math.unit(50, "feet")
  44611. },
  44612. ]
  44613. ))
  44614. characterMakers.push(() => makeCharacter(
  44615. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  44616. {
  44617. front: {
  44618. height: math.unit(6 + 4/12, "feet"),
  44619. weight: math.unit(170, "lb"),
  44620. name: "Front",
  44621. image: {
  44622. source: "./media/characters/charlie/front.svg",
  44623. extra: 1348/1228,
  44624. bottom: 15/1363
  44625. }
  44626. },
  44627. },
  44628. [
  44629. {
  44630. name: "Macro",
  44631. height: math.unit(1700, "meters"),
  44632. default: true
  44633. },
  44634. {
  44635. name: "MegaMacro",
  44636. height: math.unit(20400, "meters")
  44637. },
  44638. ]
  44639. ))
  44640. characterMakers.push(() => makeCharacter(
  44641. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  44642. {
  44643. front: {
  44644. height: math.unit(1.96, "meters"),
  44645. weight: math.unit(220, "lb"),
  44646. name: "Front",
  44647. image: {
  44648. source: "./media/characters/susan-grant/front.svg",
  44649. extra: 482/478,
  44650. bottom: 7/489
  44651. }
  44652. },
  44653. },
  44654. [
  44655. {
  44656. name: "Normal",
  44657. height: math.unit(1.96, "meters"),
  44658. default: true
  44659. },
  44660. {
  44661. name: "Macro",
  44662. height: math.unit(76.2, "meters")
  44663. },
  44664. {
  44665. name: "MegaMacro",
  44666. height: math.unit(305, "meters")
  44667. },
  44668. {
  44669. name: "GigaMacro",
  44670. height: math.unit(1220, "meters")
  44671. },
  44672. {
  44673. name: "SuperMacro",
  44674. height: math.unit(4878, "meters")
  44675. },
  44676. ]
  44677. ))
  44678. characterMakers.push(() => makeCharacter(
  44679. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  44680. {
  44681. front: {
  44682. height: math.unit(5 + 4/12, "feet"),
  44683. weight: math.unit(110, "lb"),
  44684. name: "Front",
  44685. image: {
  44686. source: "./media/characters/axel-isanov/front.svg",
  44687. extra: 1096/1065,
  44688. bottom: 13/1109
  44689. }
  44690. },
  44691. },
  44692. [
  44693. {
  44694. name: "Normal",
  44695. height: math.unit(5 + 4/12, "feet"),
  44696. default: true
  44697. },
  44698. ]
  44699. ))
  44700. characterMakers.push(() => makeCharacter(
  44701. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  44702. {
  44703. front: {
  44704. height: math.unit(9, "feet"),
  44705. weight: math.unit(467, "lb"),
  44706. name: "Front",
  44707. image: {
  44708. source: "./media/characters/necahual/front.svg",
  44709. extra: 920/873,
  44710. bottom: 26/946
  44711. }
  44712. },
  44713. back: {
  44714. height: math.unit(9, "feet"),
  44715. weight: math.unit(467, "lb"),
  44716. name: "Back",
  44717. image: {
  44718. source: "./media/characters/necahual/back.svg",
  44719. extra: 930/884,
  44720. bottom: 16/946
  44721. }
  44722. },
  44723. frontUnderwear: {
  44724. height: math.unit(9, "feet"),
  44725. weight: math.unit(467, "lb"),
  44726. name: "Front (Underwear)",
  44727. image: {
  44728. source: "./media/characters/necahual/front-underwear.svg",
  44729. extra: 920/873,
  44730. bottom: 26/946
  44731. }
  44732. },
  44733. frontDressed: {
  44734. height: math.unit(9, "feet"),
  44735. weight: math.unit(467, "lb"),
  44736. name: "Front (Dressed)",
  44737. image: {
  44738. source: "./media/characters/necahual/front-dressed.svg",
  44739. extra: 920/873,
  44740. bottom: 26/946
  44741. }
  44742. },
  44743. },
  44744. [
  44745. {
  44746. name: "Comprsesed",
  44747. height: math.unit(9, "feet")
  44748. },
  44749. {
  44750. name: "Natural",
  44751. height: math.unit(15, "feet"),
  44752. default: true
  44753. },
  44754. {
  44755. name: "Boosted",
  44756. height: math.unit(50, "feet")
  44757. },
  44758. {
  44759. name: "Boosted+",
  44760. height: math.unit(150, "feet")
  44761. },
  44762. {
  44763. name: "Max",
  44764. height: math.unit(500, "feet")
  44765. },
  44766. ]
  44767. ))
  44768. characterMakers.push(() => makeCharacter(
  44769. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  44770. {
  44771. front: {
  44772. height: math.unit(22 + 1/12, "feet"),
  44773. weight: math.unit(3200, "lb"),
  44774. name: "Front",
  44775. image: {
  44776. source: "./media/characters/theo-acacia/front.svg",
  44777. extra: 1796/1741,
  44778. bottom: 83/1879
  44779. }
  44780. },
  44781. frontUnderwear: {
  44782. height: math.unit(22 + 1/12, "feet"),
  44783. weight: math.unit(3200, "lb"),
  44784. name: "Front (Underwear)",
  44785. image: {
  44786. source: "./media/characters/theo-acacia/front-underwear.svg",
  44787. extra: 1796/1741,
  44788. bottom: 83/1879
  44789. }
  44790. },
  44791. frontNude: {
  44792. height: math.unit(22 + 1/12, "feet"),
  44793. weight: math.unit(3200, "lb"),
  44794. name: "Front (Nude)",
  44795. image: {
  44796. source: "./media/characters/theo-acacia/front-nude.svg",
  44797. extra: 1796/1741,
  44798. bottom: 83/1879
  44799. }
  44800. },
  44801. },
  44802. [
  44803. {
  44804. name: "Normal",
  44805. height: math.unit(22 + 1/12, "feet"),
  44806. default: true
  44807. },
  44808. ]
  44809. ))
  44810. characterMakers.push(() => makeCharacter(
  44811. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  44812. {
  44813. front: {
  44814. height: math.unit(20, "feet"),
  44815. name: "Front",
  44816. image: {
  44817. source: "./media/characters/astra/front.svg",
  44818. extra: 1850/1714,
  44819. bottom: 106/1956
  44820. }
  44821. },
  44822. frontUndressed: {
  44823. height: math.unit(20, "feet"),
  44824. name: "Front (Undressed)",
  44825. image: {
  44826. source: "./media/characters/astra/front-undressed.svg",
  44827. extra: 1926/1749,
  44828. bottom: 0/1926
  44829. }
  44830. },
  44831. hand: {
  44832. height: math.unit(1.53, "feet"),
  44833. name: "Hand",
  44834. image: {
  44835. source: "./media/characters/astra/hand.svg"
  44836. }
  44837. },
  44838. paw: {
  44839. height: math.unit(1.53, "feet"),
  44840. name: "Paw",
  44841. image: {
  44842. source: "./media/characters/astra/paw.svg"
  44843. }
  44844. },
  44845. },
  44846. [
  44847. {
  44848. name: "Smallest",
  44849. height: math.unit(20, "feet")
  44850. },
  44851. {
  44852. name: "Normal",
  44853. height: math.unit(1e9, "miles"),
  44854. default: true
  44855. },
  44856. {
  44857. name: "Larger",
  44858. height: math.unit(5, "multiverses")
  44859. },
  44860. {
  44861. name: "Largest",
  44862. height: math.unit(1e9, "multiverses")
  44863. },
  44864. ]
  44865. ))
  44866. characterMakers.push(() => makeCharacter(
  44867. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  44868. {
  44869. front: {
  44870. height: math.unit(8, "feet"),
  44871. name: "Front",
  44872. image: {
  44873. source: "./media/characters/breanna/front.svg",
  44874. extra: 1912/1632,
  44875. bottom: 33/1945
  44876. }
  44877. },
  44878. },
  44879. [
  44880. {
  44881. name: "Smallest",
  44882. height: math.unit(8, "feet")
  44883. },
  44884. {
  44885. name: "Normal",
  44886. height: math.unit(1, "mile"),
  44887. default: true
  44888. },
  44889. {
  44890. name: "Maximum",
  44891. height: math.unit(1500000000000, "lightyears")
  44892. },
  44893. ]
  44894. ))
  44895. characterMakers.push(() => makeCharacter(
  44896. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  44897. {
  44898. front: {
  44899. height: math.unit(5 + 11/12, "feet"),
  44900. weight: math.unit(155, "lb"),
  44901. name: "Front",
  44902. image: {
  44903. source: "./media/characters/cai/front.svg",
  44904. extra: 1823/1702,
  44905. bottom: 32/1855
  44906. }
  44907. },
  44908. back: {
  44909. height: math.unit(5 + 11/12, "feet"),
  44910. weight: math.unit(155, "lb"),
  44911. name: "Back",
  44912. image: {
  44913. source: "./media/characters/cai/back.svg",
  44914. extra: 1809/1708,
  44915. bottom: 31/1840
  44916. }
  44917. },
  44918. },
  44919. [
  44920. {
  44921. name: "Normal",
  44922. height: math.unit(5 + 11/12, "feet"),
  44923. default: true
  44924. },
  44925. {
  44926. name: "Big",
  44927. height: math.unit(15, "feet")
  44928. },
  44929. {
  44930. name: "Macro",
  44931. height: math.unit(200, "feet")
  44932. },
  44933. ]
  44934. ))
  44935. characterMakers.push(() => makeCharacter(
  44936. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  44937. {
  44938. front: {
  44939. height: math.unit(5 + 6/12, "feet"),
  44940. weight: math.unit(160, "lb"),
  44941. name: "Front",
  44942. image: {
  44943. source: "./media/characters/zanna-virtuedòttir/front.svg",
  44944. extra: 1227/1174,
  44945. bottom: 37/1264
  44946. }
  44947. },
  44948. },
  44949. [
  44950. {
  44951. name: "Macro",
  44952. height: math.unit(444, "meters"),
  44953. default: true
  44954. },
  44955. ]
  44956. ))
  44957. characterMakers.push(() => makeCharacter(
  44958. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  44959. {
  44960. front: {
  44961. height: math.unit(18 + 7/12, "feet"),
  44962. name: "Front",
  44963. image: {
  44964. source: "./media/characters/rex/front.svg",
  44965. extra: 1941/1807,
  44966. bottom: 66/2007
  44967. }
  44968. },
  44969. back: {
  44970. height: math.unit(18 + 7/12, "feet"),
  44971. name: "Back",
  44972. image: {
  44973. source: "./media/characters/rex/back.svg",
  44974. extra: 1937/1822,
  44975. bottom: 42/1979
  44976. }
  44977. },
  44978. boot: {
  44979. height: math.unit(3.45, "feet"),
  44980. name: "Boot",
  44981. image: {
  44982. source: "./media/characters/rex/boot.svg"
  44983. }
  44984. },
  44985. paw: {
  44986. height: math.unit(4.17, "feet"),
  44987. name: "Paw",
  44988. image: {
  44989. source: "./media/characters/rex/paw.svg"
  44990. }
  44991. },
  44992. head: {
  44993. height: math.unit(6.728, "feet"),
  44994. name: "Head",
  44995. image: {
  44996. source: "./media/characters/rex/head.svg"
  44997. }
  44998. },
  44999. },
  45000. [
  45001. {
  45002. name: "Nano",
  45003. height: math.unit(18 + 7/12, "feet")
  45004. },
  45005. {
  45006. name: "Micro",
  45007. height: math.unit(1.5, "megameters")
  45008. },
  45009. {
  45010. name: "Normal",
  45011. height: math.unit(440, "megameters"),
  45012. default: true
  45013. },
  45014. {
  45015. name: "Macro",
  45016. height: math.unit(2.5, "gigameters")
  45017. },
  45018. {
  45019. name: "Gigamacro",
  45020. height: math.unit(2, "galaxies")
  45021. },
  45022. ]
  45023. ))
  45024. characterMakers.push(() => makeCharacter(
  45025. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  45026. {
  45027. side: {
  45028. height: math.unit(32, "feet"),
  45029. weight: math.unit(250000, "lb"),
  45030. name: "Side",
  45031. image: {
  45032. source: "./media/characters/silverwing/side.svg",
  45033. extra: 1100/1019,
  45034. bottom: 204/1304
  45035. }
  45036. },
  45037. },
  45038. [
  45039. {
  45040. name: "Normal",
  45041. height: math.unit(32, "feet"),
  45042. default: true
  45043. },
  45044. ]
  45045. ))
  45046. characterMakers.push(() => makeCharacter(
  45047. { name: "Tristan Hawthorne", species: ["skunk", "raichu", "umbreon"], tags: ["anthro"] },
  45048. {
  45049. skunkFront: {
  45050. height: math.unit(4 + 6/12, "feet"),
  45051. weight: math.unit(120, "lb"),
  45052. name: "Front",
  45053. image: {
  45054. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  45055. extra: 330/318,
  45056. bottom: 25/355
  45057. },
  45058. form: "skunk",
  45059. default: true
  45060. },
  45061. alolanUmbraichu_front: {
  45062. height: math.unit(2 + 6/12, "feet"),
  45063. name: "Front",
  45064. image: {
  45065. source: "./media/characters/tristan-hawthorne/alolan-umbraichu-front.svg",
  45066. extra: 389/350,
  45067. bottom: 33/422
  45068. },
  45069. form: "alolan-umbraichu",
  45070. default: true
  45071. },
  45072. },
  45073. [
  45074. {
  45075. name: "Normal",
  45076. height: math.unit(4 + 6/12, "feet"),
  45077. form: "skunk",
  45078. default: true
  45079. },
  45080. {
  45081. name: "Normal",
  45082. height: math.unit(2 + 6/12, "feet"),
  45083. form: "alolan-umbraichu",
  45084. default: true
  45085. },
  45086. ],
  45087. {
  45088. "skunk": {
  45089. name: "Skunk",
  45090. default: true
  45091. },
  45092. "alolan-umbraichu": {
  45093. name: "Alolan Umbraichu",
  45094. },
  45095. }
  45096. ))
  45097. characterMakers.push(() => makeCharacter(
  45098. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  45099. {
  45100. front: {
  45101. height: math.unit(5 + 11/12, "feet"),
  45102. weight: math.unit(190, "lb"),
  45103. name: "Front",
  45104. image: {
  45105. source: "./media/characters/mizu/front.svg",
  45106. extra: 1988/1788,
  45107. bottom: 14/2002
  45108. }
  45109. },
  45110. },
  45111. [
  45112. {
  45113. name: "Normal",
  45114. height: math.unit(5 + 11/12, "feet"),
  45115. default: true
  45116. },
  45117. ]
  45118. ))
  45119. characterMakers.push(() => makeCharacter(
  45120. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  45121. {
  45122. front: {
  45123. height: math.unit(1.7, "feet"),
  45124. weight: math.unit(50, "lb"),
  45125. name: "Front",
  45126. image: {
  45127. source: "./media/characters/dechroma/front.svg",
  45128. extra: 1095/859,
  45129. bottom: 64/1159
  45130. }
  45131. },
  45132. },
  45133. [
  45134. {
  45135. name: "Normal",
  45136. height: math.unit(1.7, "feet"),
  45137. default: true
  45138. },
  45139. ]
  45140. ))
  45141. characterMakers.push(() => makeCharacter(
  45142. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  45143. {
  45144. side: {
  45145. height: math.unit(30, "feet"),
  45146. name: "Side",
  45147. image: {
  45148. source: "./media/characters/veluren-thanazel/side.svg",
  45149. extra: 1611/633,
  45150. bottom: 118/1729
  45151. }
  45152. },
  45153. front: {
  45154. height: math.unit(30, "feet"),
  45155. name: "Front",
  45156. image: {
  45157. source: "./media/characters/veluren-thanazel/front.svg",
  45158. extra: 1486/636,
  45159. bottom: 238/1724
  45160. }
  45161. },
  45162. head: {
  45163. height: math.unit(21.4, "feet"),
  45164. name: "Head",
  45165. image: {
  45166. source: "./media/characters/veluren-thanazel/head.svg"
  45167. }
  45168. },
  45169. genitals: {
  45170. height: math.unit(19.4, "feet"),
  45171. name: "Genitals",
  45172. image: {
  45173. source: "./media/characters/veluren-thanazel/genitals.svg"
  45174. }
  45175. },
  45176. },
  45177. [
  45178. {
  45179. name: "Social",
  45180. height: math.unit(6, "feet")
  45181. },
  45182. {
  45183. name: "Play",
  45184. height: math.unit(12, "feet")
  45185. },
  45186. {
  45187. name: "True",
  45188. height: math.unit(30, "feet"),
  45189. default: true
  45190. },
  45191. ]
  45192. ))
  45193. characterMakers.push(() => makeCharacter(
  45194. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  45195. {
  45196. front: {
  45197. height: math.unit(7 + 6/12, "feet"),
  45198. weight: math.unit(500, "kg"),
  45199. name: "Front",
  45200. image: {
  45201. source: "./media/characters/arcturas/front.svg",
  45202. extra: 1700/1500,
  45203. bottom: 145/1845
  45204. }
  45205. },
  45206. },
  45207. [
  45208. {
  45209. name: "Normal",
  45210. height: math.unit(7 + 6/12, "feet"),
  45211. default: true
  45212. },
  45213. ]
  45214. ))
  45215. characterMakers.push(() => makeCharacter(
  45216. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  45217. {
  45218. side: {
  45219. height: math.unit(6, "feet"),
  45220. weight: math.unit(2, "tons"),
  45221. name: "Side",
  45222. image: {
  45223. source: "./media/characters/vitaen/side.svg",
  45224. extra: 1157/617,
  45225. bottom: 122/1279
  45226. }
  45227. },
  45228. },
  45229. [
  45230. {
  45231. name: "Normal",
  45232. height: math.unit(6, "feet"),
  45233. default: true
  45234. },
  45235. ]
  45236. ))
  45237. characterMakers.push(() => makeCharacter(
  45238. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  45239. {
  45240. front: {
  45241. height: math.unit(19, "feet"),
  45242. name: "Front",
  45243. image: {
  45244. source: "./media/characters/fia-dreamweaver/front.svg",
  45245. extra: 1630/1504,
  45246. bottom: 25/1655
  45247. }
  45248. },
  45249. },
  45250. [
  45251. {
  45252. name: "Normal",
  45253. height: math.unit(19, "feet"),
  45254. default: true
  45255. },
  45256. ]
  45257. ))
  45258. characterMakers.push(() => makeCharacter(
  45259. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  45260. {
  45261. front: {
  45262. height: math.unit(5 + 4/12, "feet"),
  45263. name: "Front",
  45264. image: {
  45265. source: "./media/characters/artan/front.svg",
  45266. extra: 1618/1535,
  45267. bottom: 46/1664
  45268. }
  45269. },
  45270. back: {
  45271. height: math.unit(5 + 4/12, "feet"),
  45272. name: "Back",
  45273. image: {
  45274. source: "./media/characters/artan/back.svg",
  45275. extra: 1618/1543,
  45276. bottom: 31/1649
  45277. }
  45278. },
  45279. },
  45280. [
  45281. {
  45282. name: "Normal",
  45283. height: math.unit(5 + 4/12, "feet"),
  45284. default: true
  45285. },
  45286. ]
  45287. ))
  45288. characterMakers.push(() => makeCharacter(
  45289. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  45290. {
  45291. side: {
  45292. height: math.unit(182, "cm"),
  45293. weight: math.unit(1000, "lb"),
  45294. name: "Side",
  45295. image: {
  45296. source: "./media/characters/silver-dragon/side.svg",
  45297. extra: 710/287,
  45298. bottom: 88/798
  45299. }
  45300. },
  45301. },
  45302. [
  45303. {
  45304. name: "Normal",
  45305. height: math.unit(182, "cm"),
  45306. default: true
  45307. },
  45308. ]
  45309. ))
  45310. characterMakers.push(() => makeCharacter(
  45311. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  45312. {
  45313. side: {
  45314. height: math.unit(6 + 6/12, "feet"),
  45315. weight: math.unit(1.5, "tons"),
  45316. name: "Side",
  45317. image: {
  45318. source: "./media/characters/zephyr/side.svg",
  45319. extra: 1436/603,
  45320. bottom: 105/1541
  45321. }
  45322. },
  45323. },
  45324. [
  45325. {
  45326. name: "Normal",
  45327. height: math.unit(6 + 6/12, "feet"),
  45328. default: true
  45329. },
  45330. ]
  45331. ))
  45332. characterMakers.push(() => makeCharacter(
  45333. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  45334. {
  45335. side: {
  45336. height: math.unit(1, "feet"),
  45337. name: "Side",
  45338. image: {
  45339. source: "./media/characters/vixye/side.svg",
  45340. extra: 632/541,
  45341. bottom: 0/632
  45342. }
  45343. },
  45344. },
  45345. [
  45346. {
  45347. name: "Normal",
  45348. height: math.unit(1, "feet"),
  45349. default: true
  45350. },
  45351. {
  45352. name: "True",
  45353. height: math.unit(1e15, "multiverses")
  45354. },
  45355. ]
  45356. ))
  45357. characterMakers.push(() => makeCharacter(
  45358. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  45359. {
  45360. front: {
  45361. height: math.unit(8 + 2/12, "feet"),
  45362. weight: math.unit(650, "lb"),
  45363. name: "Front",
  45364. image: {
  45365. source: "./media/characters/darla-mac-lochlainn/front.svg",
  45366. extra: 1174/1137,
  45367. bottom: 82/1256
  45368. }
  45369. },
  45370. back: {
  45371. height: math.unit(8 + 2/12, "feet"),
  45372. weight: math.unit(650, "lb"),
  45373. name: "Back",
  45374. image: {
  45375. source: "./media/characters/darla-mac-lochlainn/back.svg",
  45376. extra: 1204/1157,
  45377. bottom: 46/1250
  45378. }
  45379. },
  45380. },
  45381. [
  45382. {
  45383. name: "Wildform",
  45384. height: math.unit(8 + 2/12, "feet"),
  45385. default: true
  45386. },
  45387. ]
  45388. ))
  45389. characterMakers.push(() => makeCharacter(
  45390. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  45391. {
  45392. front: {
  45393. height: math.unit(18, "feet"),
  45394. name: "Front",
  45395. image: {
  45396. source: "./media/characters/cyphin/front.svg",
  45397. extra: 970/886,
  45398. bottom: 42/1012
  45399. }
  45400. },
  45401. back: {
  45402. height: math.unit(18, "feet"),
  45403. name: "Back",
  45404. image: {
  45405. source: "./media/characters/cyphin/back.svg",
  45406. extra: 1009/894,
  45407. bottom: 24/1033
  45408. }
  45409. },
  45410. head: {
  45411. height: math.unit(5.05, "feet"),
  45412. name: "Head",
  45413. image: {
  45414. source: "./media/characters/cyphin/head.svg"
  45415. }
  45416. },
  45417. tailbud: {
  45418. height: math.unit(5, "feet"),
  45419. name: "Tailbud",
  45420. image: {
  45421. source: "./media/characters/cyphin/tailbud.svg"
  45422. }
  45423. },
  45424. },
  45425. [
  45426. ]
  45427. ))
  45428. characterMakers.push(() => makeCharacter(
  45429. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  45430. {
  45431. side: {
  45432. height: math.unit(10, "feet"),
  45433. weight: math.unit(6, "tons"),
  45434. name: "Side",
  45435. image: {
  45436. source: "./media/characters/raijin/side.svg",
  45437. extra: 1529/613,
  45438. bottom: 337/1866
  45439. }
  45440. },
  45441. },
  45442. [
  45443. {
  45444. name: "Normal",
  45445. height: math.unit(10, "feet"),
  45446. default: true
  45447. },
  45448. ]
  45449. ))
  45450. characterMakers.push(() => makeCharacter(
  45451. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  45452. {
  45453. side: {
  45454. height: math.unit(9, "feet"),
  45455. name: "Side",
  45456. image: {
  45457. source: "./media/characters/nilghais/side.svg",
  45458. extra: 1047/744,
  45459. bottom: 91/1138
  45460. }
  45461. },
  45462. head: {
  45463. height: math.unit(3.14, "feet"),
  45464. name: "Head",
  45465. image: {
  45466. source: "./media/characters/nilghais/head.svg"
  45467. }
  45468. },
  45469. mouth: {
  45470. height: math.unit(4.6, "feet"),
  45471. name: "Mouth",
  45472. image: {
  45473. source: "./media/characters/nilghais/mouth.svg"
  45474. }
  45475. },
  45476. wings: {
  45477. height: math.unit(24, "feet"),
  45478. name: "Wings",
  45479. image: {
  45480. source: "./media/characters/nilghais/wings.svg"
  45481. }
  45482. },
  45483. ass: {
  45484. height: math.unit(6.12, "feet"),
  45485. name: "Ass",
  45486. image: {
  45487. source: "./media/characters/nilghais/ass.svg"
  45488. }
  45489. },
  45490. },
  45491. [
  45492. {
  45493. name: "Normal",
  45494. height: math.unit(9, "feet"),
  45495. default: true
  45496. },
  45497. ]
  45498. ))
  45499. characterMakers.push(() => makeCharacter(
  45500. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  45501. {
  45502. regular: {
  45503. height: math.unit(16 + 2/12, "feet"),
  45504. weight: math.unit(2300, "lb"),
  45505. name: "Regular",
  45506. image: {
  45507. source: "./media/characters/zolgar/regular.svg",
  45508. extra: 1246/1004,
  45509. bottom: 124/1370
  45510. }
  45511. },
  45512. boxers: {
  45513. height: math.unit(16 + 2/12, "feet"),
  45514. weight: math.unit(2300, "lb"),
  45515. name: "Boxers",
  45516. image: {
  45517. source: "./media/characters/zolgar/boxers.svg",
  45518. extra: 1246/1004,
  45519. bottom: 124/1370
  45520. }
  45521. },
  45522. armored: {
  45523. height: math.unit(16 + 2/12, "feet"),
  45524. weight: math.unit(2300, "lb"),
  45525. name: "Armored",
  45526. image: {
  45527. source: "./media/characters/zolgar/armored.svg",
  45528. extra: 1246/1004,
  45529. bottom: 124/1370
  45530. }
  45531. },
  45532. goth: {
  45533. height: math.unit(16 + 2/12, "feet"),
  45534. weight: math.unit(2300, "lb"),
  45535. name: "Goth",
  45536. image: {
  45537. source: "./media/characters/zolgar/goth.svg",
  45538. extra: 1246/1004,
  45539. bottom: 124/1370
  45540. }
  45541. },
  45542. },
  45543. [
  45544. {
  45545. name: "Shrunken Down",
  45546. height: math.unit(9 + 2/12, "feet")
  45547. },
  45548. {
  45549. name: "Normal",
  45550. height: math.unit(16 + 2/12, "feet"),
  45551. default: true
  45552. },
  45553. ]
  45554. ))
  45555. characterMakers.push(() => makeCharacter(
  45556. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  45557. {
  45558. front: {
  45559. height: math.unit(6, "feet"),
  45560. weight: math.unit(168, "lb"),
  45561. name: "Front",
  45562. image: {
  45563. source: "./media/characters/luca/front.svg",
  45564. extra: 841/667,
  45565. bottom: 102/943
  45566. }
  45567. },
  45568. },
  45569. [
  45570. {
  45571. name: "Normal",
  45572. height: math.unit(6, "feet"),
  45573. default: true
  45574. },
  45575. ]
  45576. ))
  45577. characterMakers.push(() => makeCharacter(
  45578. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  45579. {
  45580. side: {
  45581. height: math.unit(7 + 3/12, "feet"),
  45582. weight: math.unit(312, "lb"),
  45583. name: "Side",
  45584. image: {
  45585. source: "./media/characters/zezo/side.svg",
  45586. extra: 1192/1067,
  45587. bottom: 63/1255
  45588. }
  45589. },
  45590. },
  45591. [
  45592. {
  45593. name: "Normal",
  45594. height: math.unit(7 + 3/12, "feet"),
  45595. default: true
  45596. },
  45597. ]
  45598. ))
  45599. characterMakers.push(() => makeCharacter(
  45600. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  45601. {
  45602. front: {
  45603. height: math.unit(5 + 5/12, "feet"),
  45604. weight: math.unit(170, "lb"),
  45605. name: "Front",
  45606. image: {
  45607. source: "./media/characters/mayso/front.svg",
  45608. extra: 1215/1108,
  45609. bottom: 16/1231
  45610. }
  45611. },
  45612. },
  45613. [
  45614. {
  45615. name: "Normal",
  45616. height: math.unit(5 + 5/12, "feet"),
  45617. default: true
  45618. },
  45619. ]
  45620. ))
  45621. characterMakers.push(() => makeCharacter(
  45622. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  45623. {
  45624. front: {
  45625. height: math.unit(4 + 3/12, "feet"),
  45626. weight: math.unit(80, "lb"),
  45627. name: "Front",
  45628. image: {
  45629. source: "./media/characters/hess/front.svg",
  45630. extra: 1200/1123,
  45631. bottom: 16/1216
  45632. }
  45633. },
  45634. },
  45635. [
  45636. {
  45637. name: "Normal",
  45638. height: math.unit(4 + 3/12, "feet"),
  45639. default: true
  45640. },
  45641. ]
  45642. ))
  45643. characterMakers.push(() => makeCharacter(
  45644. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  45645. {
  45646. front: {
  45647. height: math.unit(1.9, "meters"),
  45648. name: "Front",
  45649. image: {
  45650. source: "./media/characters/ashgar/front.svg",
  45651. extra: 1177/1146,
  45652. bottom: 99/1276
  45653. }
  45654. },
  45655. back: {
  45656. height: math.unit(1.9, "meters"),
  45657. name: "Back",
  45658. image: {
  45659. source: "./media/characters/ashgar/back.svg",
  45660. extra: 1201/1183,
  45661. bottom: 53/1254
  45662. }
  45663. },
  45664. feral: {
  45665. height: math.unit(1.4, "meters"),
  45666. name: "Feral",
  45667. image: {
  45668. source: "./media/characters/ashgar/feral.svg",
  45669. extra: 370/345,
  45670. bottom: 45/415
  45671. }
  45672. },
  45673. },
  45674. [
  45675. {
  45676. name: "Normal",
  45677. height: math.unit(1.9, "meters"),
  45678. default: true
  45679. },
  45680. ]
  45681. ))
  45682. characterMakers.push(() => makeCharacter(
  45683. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  45684. {
  45685. regular: {
  45686. height: math.unit(6, "feet"),
  45687. weight: math.unit(220, "lb"),
  45688. name: "Regular",
  45689. image: {
  45690. source: "./media/characters/phillip/regular.svg",
  45691. extra: 1373/1277,
  45692. bottom: 75/1448
  45693. }
  45694. },
  45695. dressed: {
  45696. height: math.unit(6, "feet"),
  45697. weight: math.unit(220, "lb"),
  45698. name: "Dressed",
  45699. image: {
  45700. source: "./media/characters/phillip/dressed.svg",
  45701. extra: 1373/1277,
  45702. bottom: 75/1448
  45703. }
  45704. },
  45705. paw: {
  45706. height: math.unit(1.44, "feet"),
  45707. name: "Paw",
  45708. image: {
  45709. source: "./media/characters/phillip/paw.svg"
  45710. }
  45711. },
  45712. },
  45713. [
  45714. {
  45715. name: "Normal",
  45716. height: math.unit(6, "feet"),
  45717. default: true
  45718. },
  45719. ]
  45720. ))
  45721. characterMakers.push(() => makeCharacter(
  45722. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  45723. {
  45724. side: {
  45725. height: math.unit(42, "feet"),
  45726. name: "Side",
  45727. image: {
  45728. source: "./media/characters/uvula/side.svg",
  45729. extra: 683/586,
  45730. bottom: 60/743
  45731. }
  45732. },
  45733. front: {
  45734. height: math.unit(42, "feet"),
  45735. name: "Front",
  45736. image: {
  45737. source: "./media/characters/uvula/front.svg",
  45738. extra: 705/613,
  45739. bottom: 54/759
  45740. }
  45741. },
  45742. maw: {
  45743. height: math.unit(23.5, "feet"),
  45744. name: "Maw",
  45745. image: {
  45746. source: "./media/characters/uvula/maw.svg"
  45747. }
  45748. },
  45749. },
  45750. [
  45751. {
  45752. name: "Original Size",
  45753. height: math.unit(14, "inches")
  45754. },
  45755. {
  45756. name: "Human Size",
  45757. height: math.unit(6, "feet")
  45758. },
  45759. {
  45760. name: "Big",
  45761. height: math.unit(42, "feet"),
  45762. default: true
  45763. },
  45764. {
  45765. name: "Bigger",
  45766. height: math.unit(100, "feet")
  45767. },
  45768. ]
  45769. ))
  45770. characterMakers.push(() => makeCharacter(
  45771. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  45772. {
  45773. front: {
  45774. height: math.unit(5 + 11/12, "feet"),
  45775. name: "Front",
  45776. image: {
  45777. source: "./media/characters/lannah/front.svg",
  45778. extra: 1208/1113,
  45779. bottom: 97/1305
  45780. }
  45781. },
  45782. },
  45783. [
  45784. {
  45785. name: "Normal",
  45786. height: math.unit(5 + 11/12, "feet"),
  45787. default: true
  45788. },
  45789. ]
  45790. ))
  45791. characterMakers.push(() => makeCharacter(
  45792. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  45793. {
  45794. front: {
  45795. height: math.unit(6 + 3/12, "feet"),
  45796. weight: math.unit(3.5, "tons"),
  45797. name: "Front",
  45798. image: {
  45799. source: "./media/characters/emberflame/front.svg",
  45800. extra: 1198/672,
  45801. bottom: 82/1280
  45802. }
  45803. },
  45804. side: {
  45805. height: math.unit(6 + 3/12, "feet"),
  45806. weight: math.unit(3.5, "tons"),
  45807. name: "Side",
  45808. image: {
  45809. source: "./media/characters/emberflame/side.svg",
  45810. extra: 938/527,
  45811. bottom: 56/994
  45812. }
  45813. },
  45814. },
  45815. [
  45816. {
  45817. name: "Normal",
  45818. height: math.unit(6 + 3/12, "feet"),
  45819. default: true
  45820. },
  45821. ]
  45822. ))
  45823. characterMakers.push(() => makeCharacter(
  45824. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  45825. {
  45826. side: {
  45827. height: math.unit(17.5, "feet"),
  45828. weight: math.unit(35, "tons"),
  45829. name: "Side",
  45830. image: {
  45831. source: "./media/characters/sophie-ambrose/side.svg",
  45832. extra: 1573/1242,
  45833. bottom: 71/1644
  45834. }
  45835. },
  45836. maw: {
  45837. height: math.unit(7.4, "feet"),
  45838. name: "Maw",
  45839. image: {
  45840. source: "./media/characters/sophie-ambrose/maw.svg"
  45841. }
  45842. },
  45843. },
  45844. [
  45845. {
  45846. name: "Normal",
  45847. height: math.unit(17.5, "feet"),
  45848. default: true
  45849. },
  45850. ]
  45851. ))
  45852. characterMakers.push(() => makeCharacter(
  45853. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  45854. {
  45855. front: {
  45856. height: math.unit(280, "feet"),
  45857. weight: math.unit(550, "tons"),
  45858. name: "Front",
  45859. image: {
  45860. source: "./media/characters/king-mugi/front.svg",
  45861. extra: 1102/947,
  45862. bottom: 104/1206
  45863. }
  45864. },
  45865. },
  45866. [
  45867. {
  45868. name: "King Mugi",
  45869. height: math.unit(280, "feet"),
  45870. default: true
  45871. },
  45872. ]
  45873. ))
  45874. characterMakers.push(() => makeCharacter(
  45875. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  45876. {
  45877. female: {
  45878. height: math.unit(300, "meters"),
  45879. name: "Front",
  45880. image: {
  45881. source: "./media/characters/nova-fox/female.svg",
  45882. extra: 664/632,
  45883. bottom: 51/715
  45884. },
  45885. form: "female",
  45886. default: true
  45887. },
  45888. male: {
  45889. height: math.unit(300, "meters"),
  45890. name: "Front",
  45891. image: {
  45892. source: "./media/characters/nova-fox/male.svg",
  45893. extra: 663/631,
  45894. bottom: 30/693
  45895. },
  45896. form: "male",
  45897. default: true
  45898. },
  45899. },
  45900. [
  45901. {
  45902. name: "Macro",
  45903. height: math.unit(300, "meters"),
  45904. default: true,
  45905. allForms: true
  45906. },
  45907. ],
  45908. {
  45909. "female": {
  45910. name: "Female",
  45911. default: true
  45912. },
  45913. "male": {
  45914. name: "Male",
  45915. },
  45916. }
  45917. ))
  45918. characterMakers.push(() => makeCharacter(
  45919. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  45920. {
  45921. front: {
  45922. height: math.unit(6 + 3/12, "feet"),
  45923. weight: math.unit(170, "lb"),
  45924. name: "Front",
  45925. image: {
  45926. source: "./media/characters/sam-bat/front.svg",
  45927. extra: 1601/1411,
  45928. bottom: 125/1726
  45929. }
  45930. },
  45931. back: {
  45932. height: math.unit(6 + 3/12, "feet"),
  45933. weight: math.unit(170, "lb"),
  45934. name: "Back",
  45935. image: {
  45936. source: "./media/characters/sam-bat/back.svg",
  45937. extra: 1577/1405,
  45938. bottom: 58/1635
  45939. }
  45940. },
  45941. },
  45942. [
  45943. {
  45944. name: "Normal",
  45945. height: math.unit(6 + 3/12, "feet"),
  45946. default: true
  45947. },
  45948. ]
  45949. ))
  45950. characterMakers.push(() => makeCharacter(
  45951. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  45952. {
  45953. front: {
  45954. height: math.unit(59, "feet"),
  45955. weight: math.unit(40000, "lb"),
  45956. name: "Front",
  45957. image: {
  45958. source: "./media/characters/inari/front.svg",
  45959. extra: 1884/1350,
  45960. bottom: 95/1979
  45961. }
  45962. },
  45963. },
  45964. [
  45965. {
  45966. name: "Gigantamax",
  45967. height: math.unit(59, "feet"),
  45968. default: true
  45969. },
  45970. ]
  45971. ))
  45972. characterMakers.push(() => makeCharacter(
  45973. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  45974. {
  45975. front: {
  45976. height: math.unit(5 + 8/12, "feet"),
  45977. name: "Front",
  45978. image: {
  45979. source: "./media/characters/elizabeth/front.svg",
  45980. extra: 1395/1298,
  45981. bottom: 54/1449
  45982. }
  45983. },
  45984. mouth: {
  45985. height: math.unit(1.97, "feet"),
  45986. name: "Mouth",
  45987. image: {
  45988. source: "./media/characters/elizabeth/mouth.svg"
  45989. }
  45990. },
  45991. foot: {
  45992. height: math.unit(1.17, "feet"),
  45993. name: "Foot",
  45994. image: {
  45995. source: "./media/characters/elizabeth/foot.svg"
  45996. }
  45997. },
  45998. },
  45999. [
  46000. {
  46001. name: "Normal",
  46002. height: math.unit(5 + 8/12, "feet"),
  46003. default: true
  46004. },
  46005. {
  46006. name: "Minimacro",
  46007. height: math.unit(18, "feet")
  46008. },
  46009. {
  46010. name: "Macro",
  46011. height: math.unit(180, "feet")
  46012. },
  46013. ]
  46014. ))
  46015. characterMakers.push(() => makeCharacter(
  46016. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  46017. {
  46018. front: {
  46019. height: math.unit(5 + 2/12, "feet"),
  46020. name: "Front",
  46021. image: {
  46022. source: "./media/characters/october-gossamer/front.svg",
  46023. extra: 505/454,
  46024. bottom: 7/512
  46025. }
  46026. },
  46027. back: {
  46028. height: math.unit(5 + 2/12, "feet"),
  46029. name: "Back",
  46030. image: {
  46031. source: "./media/characters/october-gossamer/back.svg",
  46032. extra: 501/454,
  46033. bottom: 11/512
  46034. }
  46035. },
  46036. },
  46037. [
  46038. {
  46039. name: "Normal",
  46040. height: math.unit(5 + 2/12, "feet"),
  46041. default: true
  46042. },
  46043. ]
  46044. ))
  46045. characterMakers.push(() => makeCharacter(
  46046. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  46047. {
  46048. front: {
  46049. height: math.unit(5, "feet"),
  46050. name: "Front",
  46051. image: {
  46052. source: "./media/characters/epiglottis/front.svg",
  46053. extra: 923/849,
  46054. bottom: 17/940
  46055. }
  46056. },
  46057. },
  46058. [
  46059. {
  46060. name: "Original Size",
  46061. height: math.unit(10, "inches")
  46062. },
  46063. {
  46064. name: "Human Size",
  46065. height: math.unit(5, "feet"),
  46066. default: true
  46067. },
  46068. {
  46069. name: "Big",
  46070. height: math.unit(25, "feet")
  46071. },
  46072. {
  46073. name: "Bigger",
  46074. height: math.unit(50, "feet")
  46075. },
  46076. {
  46077. name: "oh lawd",
  46078. height: math.unit(75, "feet")
  46079. },
  46080. ]
  46081. ))
  46082. characterMakers.push(() => makeCharacter(
  46083. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  46084. {
  46085. front: {
  46086. height: math.unit(2 + 4/12, "feet"),
  46087. weight: math.unit(60, "lb"),
  46088. name: "Front",
  46089. image: {
  46090. source: "./media/characters/lerm/front.svg",
  46091. extra: 796/790,
  46092. bottom: 79/875
  46093. }
  46094. },
  46095. },
  46096. [
  46097. {
  46098. name: "Normal",
  46099. height: math.unit(2 + 4/12, "feet"),
  46100. default: true
  46101. },
  46102. ]
  46103. ))
  46104. characterMakers.push(() => makeCharacter(
  46105. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  46106. {
  46107. front: {
  46108. height: math.unit(5.5, "feet"),
  46109. weight: math.unit(130, "lb"),
  46110. name: "Front",
  46111. image: {
  46112. source: "./media/characters/xena-nebadon/front.svg",
  46113. extra: 1828/1730,
  46114. bottom: 79/1907
  46115. }
  46116. },
  46117. },
  46118. [
  46119. {
  46120. name: "Tiny Puppy",
  46121. height: math.unit(3, "inches")
  46122. },
  46123. {
  46124. name: "Normal",
  46125. height: math.unit(5.5, "feet"),
  46126. default: true
  46127. },
  46128. {
  46129. name: "Lotta Lady",
  46130. height: math.unit(12, "feet")
  46131. },
  46132. {
  46133. name: "Pretty Big",
  46134. height: math.unit(100, "feet")
  46135. },
  46136. {
  46137. name: "Big",
  46138. height: math.unit(500, "feet")
  46139. },
  46140. {
  46141. name: "Skyscraper Toys",
  46142. height: math.unit(2500, "feet")
  46143. },
  46144. {
  46145. name: "Plane Catcher",
  46146. height: math.unit(8, "miles")
  46147. },
  46148. {
  46149. name: "Planet Toys",
  46150. height: math.unit(15, "earths")
  46151. },
  46152. {
  46153. name: "Stardust",
  46154. height: math.unit(0.25, "galaxies")
  46155. },
  46156. {
  46157. name: "Snacks",
  46158. height: math.unit(70, "universes")
  46159. },
  46160. ]
  46161. ))
  46162. characterMakers.push(() => makeCharacter(
  46163. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  46164. {
  46165. front: {
  46166. height: math.unit(1.6, "meters"),
  46167. weight: math.unit(60, "kg"),
  46168. name: "Front",
  46169. image: {
  46170. source: "./media/characters/bounty/front.svg",
  46171. extra: 1426/1308,
  46172. bottom: 15/1441
  46173. }
  46174. },
  46175. back: {
  46176. height: math.unit(1.6, "meters"),
  46177. weight: math.unit(60, "kg"),
  46178. name: "Back",
  46179. image: {
  46180. source: "./media/characters/bounty/back.svg",
  46181. extra: 1417/1307,
  46182. bottom: 8/1425
  46183. }
  46184. },
  46185. },
  46186. [
  46187. {
  46188. name: "Normal",
  46189. height: math.unit(1.6, "meters"),
  46190. default: true
  46191. },
  46192. {
  46193. name: "Macro",
  46194. height: math.unit(300, "meters")
  46195. },
  46196. ]
  46197. ))
  46198. characterMakers.push(() => makeCharacter(
  46199. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  46200. {
  46201. front: {
  46202. height: math.unit(2 + 8/12, "feet"),
  46203. weight: math.unit(15, "lb"),
  46204. name: "Front",
  46205. image: {
  46206. source: "./media/characters/mochi/front.svg",
  46207. extra: 1022/852,
  46208. bottom: 435/1457
  46209. }
  46210. },
  46211. back: {
  46212. height: math.unit(2 + 8/12, "feet"),
  46213. weight: math.unit(15, "lb"),
  46214. name: "Back",
  46215. image: {
  46216. source: "./media/characters/mochi/back.svg",
  46217. extra: 1335/1119,
  46218. bottom: 39/1374
  46219. }
  46220. },
  46221. bird: {
  46222. height: math.unit(2 + 8/12, "feet"),
  46223. weight: math.unit(15, "lb"),
  46224. name: "Bird",
  46225. image: {
  46226. source: "./media/characters/mochi/bird.svg",
  46227. extra: 1251/1113,
  46228. bottom: 178/1429
  46229. }
  46230. },
  46231. kaiju: {
  46232. height: math.unit(154, "feet"),
  46233. weight: math.unit(1e7, "lb"),
  46234. name: "Kaiju",
  46235. image: {
  46236. source: "./media/characters/mochi/kaiju.svg",
  46237. extra: 460/324,
  46238. bottom: 40/500
  46239. }
  46240. },
  46241. head: {
  46242. height: math.unit(1.21, "feet"),
  46243. name: "Head",
  46244. image: {
  46245. source: "./media/characters/mochi/head.svg"
  46246. }
  46247. },
  46248. alternateTail: {
  46249. height: math.unit(2 + 8/12, "feet"),
  46250. weight: math.unit(45, "lb"),
  46251. name: "Alternate Tail",
  46252. image: {
  46253. source: "./media/characters/mochi/alternate-tail.svg",
  46254. extra: 139/76,
  46255. bottom: 45/184
  46256. }
  46257. },
  46258. },
  46259. [
  46260. {
  46261. name: "Micro",
  46262. height: math.unit(2, "inches")
  46263. },
  46264. {
  46265. name: "Normal",
  46266. height: math.unit(2 + 8/12, "feet"),
  46267. default: true
  46268. },
  46269. {
  46270. name: "Macro",
  46271. height: math.unit(106, "feet")
  46272. },
  46273. ]
  46274. ))
  46275. characterMakers.push(() => makeCharacter(
  46276. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  46277. {
  46278. front: {
  46279. height: math.unit(5.67, "feet"),
  46280. weight: math.unit(135, "lb"),
  46281. name: "Front",
  46282. image: {
  46283. source: "./media/characters/sarel/front.svg",
  46284. extra: 865/788,
  46285. bottom: 97/962
  46286. }
  46287. },
  46288. back: {
  46289. height: math.unit(5.67, "feet"),
  46290. weight: math.unit(135, "lb"),
  46291. name: "Back",
  46292. image: {
  46293. source: "./media/characters/sarel/back.svg",
  46294. extra: 857/777,
  46295. bottom: 32/889
  46296. }
  46297. },
  46298. chozoan: {
  46299. height: math.unit(5.67, "feet"),
  46300. weight: math.unit(135, "lb"),
  46301. name: "Chozoan",
  46302. image: {
  46303. source: "./media/characters/sarel/chozoan.svg",
  46304. extra: 865/788,
  46305. bottom: 97/962
  46306. }
  46307. },
  46308. current: {
  46309. height: math.unit(5.67, "feet"),
  46310. weight: math.unit(135, "lb"),
  46311. name: "Current",
  46312. image: {
  46313. source: "./media/characters/sarel/current.svg",
  46314. extra: 865/788,
  46315. bottom: 97/962
  46316. }
  46317. },
  46318. head: {
  46319. height: math.unit(1.77, "feet"),
  46320. name: "Head",
  46321. image: {
  46322. source: "./media/characters/sarel/head.svg"
  46323. }
  46324. },
  46325. claws: {
  46326. height: math.unit(1.8, "feet"),
  46327. name: "Claws",
  46328. image: {
  46329. source: "./media/characters/sarel/claws.svg"
  46330. }
  46331. },
  46332. clawsAlt: {
  46333. height: math.unit(1.8, "feet"),
  46334. name: "Claws-alt",
  46335. image: {
  46336. source: "./media/characters/sarel/claws-alt.svg"
  46337. }
  46338. },
  46339. },
  46340. [
  46341. {
  46342. name: "Normal",
  46343. height: math.unit(5.67, "feet"),
  46344. default: true
  46345. },
  46346. ]
  46347. ))
  46348. characterMakers.push(() => makeCharacter(
  46349. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  46350. {
  46351. front: {
  46352. height: math.unit(5500, "feet"),
  46353. name: "Front",
  46354. image: {
  46355. source: "./media/characters/alyonia/front.svg",
  46356. extra: 1200/1135,
  46357. bottom: 29/1229
  46358. }
  46359. },
  46360. back: {
  46361. height: math.unit(5500, "feet"),
  46362. name: "Back",
  46363. image: {
  46364. source: "./media/characters/alyonia/back.svg",
  46365. extra: 1205/1138,
  46366. bottom: 10/1215
  46367. }
  46368. },
  46369. },
  46370. [
  46371. {
  46372. name: "Small",
  46373. height: math.unit(10, "feet")
  46374. },
  46375. {
  46376. name: "Macro",
  46377. height: math.unit(500, "feet")
  46378. },
  46379. {
  46380. name: "Mega Macro",
  46381. height: math.unit(5500, "feet"),
  46382. default: true
  46383. },
  46384. {
  46385. name: "Mega Macro+",
  46386. height: math.unit(500000, "feet")
  46387. },
  46388. {
  46389. name: "Giga Macro",
  46390. height: math.unit(3000, "miles")
  46391. },
  46392. {
  46393. name: "Tera Macro",
  46394. height: math.unit(2.8e6, "miles")
  46395. },
  46396. {
  46397. name: "Galactic",
  46398. height: math.unit(120000, "lightyears")
  46399. },
  46400. ]
  46401. ))
  46402. characterMakers.push(() => makeCharacter(
  46403. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  46404. {
  46405. werewolf: {
  46406. height: math.unit(8, "feet"),
  46407. weight: math.unit(425, "lb"),
  46408. name: "Werewolf",
  46409. image: {
  46410. source: "./media/characters/autumn/werewolf.svg",
  46411. extra: 2154/2031,
  46412. bottom: 160/2314
  46413. }
  46414. },
  46415. human: {
  46416. height: math.unit(5 + 8/12, "feet"),
  46417. weight: math.unit(150, "lb"),
  46418. name: "Human",
  46419. image: {
  46420. source: "./media/characters/autumn/human.svg",
  46421. extra: 1200/1149,
  46422. bottom: 30/1230
  46423. }
  46424. },
  46425. },
  46426. [
  46427. {
  46428. name: "Normal",
  46429. height: math.unit(8, "feet"),
  46430. default: true
  46431. },
  46432. ]
  46433. ))
  46434. characterMakers.push(() => makeCharacter(
  46435. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  46436. {
  46437. front: {
  46438. height: math.unit(8 + 5/12, "feet"),
  46439. weight: math.unit(825, "lb"),
  46440. name: "Front",
  46441. image: {
  46442. source: "./media/characters/cobalt-charizard/front.svg",
  46443. extra: 1268/1155,
  46444. bottom: 122/1390
  46445. }
  46446. },
  46447. side: {
  46448. height: math.unit(8 + 5/12, "feet"),
  46449. weight: math.unit(825, "lb"),
  46450. name: "Side",
  46451. image: {
  46452. source: "./media/characters/cobalt-charizard/side.svg",
  46453. extra: 1348/1257,
  46454. bottom: 58/1406
  46455. }
  46456. },
  46457. gMax: {
  46458. height: math.unit(134 + 11/12, "feet"),
  46459. name: "G-Max",
  46460. image: {
  46461. source: "./media/characters/cobalt-charizard/g-max.svg",
  46462. extra: 1835/1541,
  46463. bottom: 151/1986
  46464. }
  46465. },
  46466. },
  46467. [
  46468. {
  46469. name: "Normal",
  46470. height: math.unit(8 + 5/12, "feet"),
  46471. default: true
  46472. },
  46473. ]
  46474. ))
  46475. characterMakers.push(() => makeCharacter(
  46476. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  46477. {
  46478. front: {
  46479. height: math.unit(6 + 3/12, "feet"),
  46480. weight: math.unit(210, "lb"),
  46481. name: "Front",
  46482. image: {
  46483. source: "./media/characters/stella/front.svg",
  46484. extra: 3549/3335,
  46485. bottom: 51/3600
  46486. }
  46487. },
  46488. },
  46489. [
  46490. {
  46491. name: "Normal",
  46492. height: math.unit(6 + 3/12, "feet"),
  46493. default: true
  46494. },
  46495. ]
  46496. ))
  46497. characterMakers.push(() => makeCharacter(
  46498. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  46499. {
  46500. front: {
  46501. height: math.unit(5, "feet"),
  46502. weight: math.unit(90, "lb"),
  46503. name: "Front",
  46504. image: {
  46505. source: "./media/characters/riley-bishop/front.svg",
  46506. extra: 1450/1428,
  46507. bottom: 152/1602
  46508. }
  46509. },
  46510. },
  46511. [
  46512. {
  46513. name: "Normal",
  46514. height: math.unit(5, "feet"),
  46515. default: true
  46516. },
  46517. ]
  46518. ))
  46519. characterMakers.push(() => makeCharacter(
  46520. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  46521. {
  46522. side: {
  46523. height: math.unit(8 + 2/12, "feet"),
  46524. weight: math.unit(500, "kg"),
  46525. name: "Side",
  46526. image: {
  46527. source: "./media/characters/theo-arcanine/side.svg",
  46528. extra: 1342/1074,
  46529. bottom: 111/1453
  46530. }
  46531. },
  46532. },
  46533. [
  46534. {
  46535. name: "Normal",
  46536. height: math.unit(8 + 2/12, "feet"),
  46537. default: true
  46538. },
  46539. ]
  46540. ))
  46541. characterMakers.push(() => makeCharacter(
  46542. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  46543. {
  46544. front: {
  46545. height: math.unit(4, "feet"),
  46546. name: "Front",
  46547. image: {
  46548. source: "./media/characters/kali/front.svg",
  46549. extra: 1074/867,
  46550. bottom: 34/1108
  46551. }
  46552. },
  46553. back: {
  46554. height: math.unit(4, "feet"),
  46555. name: "Back",
  46556. image: {
  46557. source: "./media/characters/kali/back.svg",
  46558. extra: 1068/863,
  46559. bottom: 26/1094
  46560. }
  46561. },
  46562. frontAlt: {
  46563. height: math.unit(4, "feet"),
  46564. name: "Front (Alt)",
  46565. image: {
  46566. source: "./media/characters/kali/front-alt.svg",
  46567. extra: 1921/1357,
  46568. bottom: 70/1991
  46569. }
  46570. },
  46571. },
  46572. [
  46573. {
  46574. name: "Normal",
  46575. height: math.unit(4, "feet"),
  46576. default: true
  46577. },
  46578. {
  46579. name: "Big'vali",
  46580. height: math.unit(11, "feet")
  46581. },
  46582. {
  46583. name: "Macro",
  46584. height: math.unit(32, "meters")
  46585. },
  46586. {
  46587. name: "Macro+",
  46588. height: math.unit(150, "meters")
  46589. },
  46590. {
  46591. name: "Megamacro",
  46592. height: math.unit(7500, "meters")
  46593. },
  46594. {
  46595. name: "Megamacro+",
  46596. height: math.unit(80, "kilometers")
  46597. },
  46598. ]
  46599. ))
  46600. characterMakers.push(() => makeCharacter(
  46601. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  46602. {
  46603. side: {
  46604. height: math.unit(5 + 11/12, "feet"),
  46605. weight: math.unit(236, "lb"),
  46606. name: "Side",
  46607. image: {
  46608. source: "./media/characters/gapp/side.svg",
  46609. extra: 775/340,
  46610. bottom: 58/833
  46611. }
  46612. },
  46613. mouth: {
  46614. height: math.unit(2.98, "feet"),
  46615. name: "Mouth",
  46616. image: {
  46617. source: "./media/characters/gapp/mouth.svg"
  46618. }
  46619. },
  46620. },
  46621. [
  46622. {
  46623. name: "Normal",
  46624. height: math.unit(5 + 1/12, "feet"),
  46625. default: true
  46626. },
  46627. ]
  46628. ))
  46629. characterMakers.push(() => makeCharacter(
  46630. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  46631. {
  46632. front: {
  46633. height: math.unit(6, "feet"),
  46634. name: "Front",
  46635. image: {
  46636. source: "./media/characters/persephone/front.svg",
  46637. extra: 1895/1717,
  46638. bottom: 96/1991
  46639. }
  46640. },
  46641. back: {
  46642. height: math.unit(6, "feet"),
  46643. name: "Back",
  46644. image: {
  46645. source: "./media/characters/persephone/back.svg",
  46646. extra: 1868/1679,
  46647. bottom: 26/1894
  46648. }
  46649. },
  46650. casual: {
  46651. height: math.unit(6, "feet"),
  46652. name: "Casual",
  46653. image: {
  46654. source: "./media/characters/persephone/casual.svg",
  46655. extra: 1713/1541,
  46656. bottom: 76/1789
  46657. }
  46658. },
  46659. gaming: {
  46660. height: math.unit(3.55, "feet"),
  46661. name: "Gaming",
  46662. image: {
  46663. source: "./media/characters/persephone/gaming.svg",
  46664. extra: 1242/1038,
  46665. bottom: 66/1308
  46666. }
  46667. },
  46668. head: {
  46669. height: math.unit(2.15, "feet"),
  46670. name: "😐",
  46671. image: {
  46672. source: "./media/characters/persephone/head.svg"
  46673. }
  46674. },
  46675. talking: {
  46676. height: math.unit(2.5, "feet"),
  46677. name: "💬",
  46678. image: {
  46679. source: "./media/characters/persephone/talking.svg"
  46680. }
  46681. },
  46682. hmm: {
  46683. height: math.unit(2.28, "feet"),
  46684. name: "🤨",
  46685. image: {
  46686. source: "./media/characters/persephone/hmm.svg"
  46687. }
  46688. },
  46689. },
  46690. [
  46691. {
  46692. name: "Human Size",
  46693. height: math.unit(6, "feet")
  46694. },
  46695. {
  46696. name: "Big Steppy",
  46697. height: math.unit(600, "meters"),
  46698. default: true
  46699. },
  46700. {
  46701. name: "Galaxy Brain",
  46702. height: math.unit(1, "zettameter")
  46703. },
  46704. ]
  46705. ))
  46706. characterMakers.push(() => makeCharacter(
  46707. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  46708. {
  46709. front: {
  46710. height: math.unit(1.85, "meters"),
  46711. name: "Front",
  46712. image: {
  46713. source: "./media/characters/riley-foxthing/front.svg",
  46714. extra: 1495/1354,
  46715. bottom: 122/1617
  46716. }
  46717. },
  46718. frontAlt: {
  46719. height: math.unit(1.85, "meters"),
  46720. name: "Front (Alt)",
  46721. image: {
  46722. source: "./media/characters/riley-foxthing/front-alt.svg",
  46723. extra: 1572/1389,
  46724. bottom: 116/1688
  46725. }
  46726. },
  46727. },
  46728. [
  46729. {
  46730. name: "Normal Sized",
  46731. height: math.unit(1.85, "meters"),
  46732. default: true
  46733. },
  46734. {
  46735. name: "Quite Sizable",
  46736. height: math.unit(5, "meters")
  46737. },
  46738. {
  46739. name: "Rather Large",
  46740. height: math.unit(20, "meters")
  46741. },
  46742. {
  46743. name: "Macro",
  46744. height: math.unit(450, "meters")
  46745. },
  46746. {
  46747. name: "Giga",
  46748. height: math.unit(5, "km")
  46749. },
  46750. ]
  46751. ))
  46752. characterMakers.push(() => makeCharacter(
  46753. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  46754. {
  46755. front: {
  46756. height: math.unit(6, "feet"),
  46757. weight: math.unit(200, "lb"),
  46758. name: "Front",
  46759. image: {
  46760. source: "./media/characters/blizzard/front.svg",
  46761. extra: 1136/990,
  46762. bottom: 136/1272
  46763. }
  46764. },
  46765. back: {
  46766. height: math.unit(6, "feet"),
  46767. weight: math.unit(200, "lb"),
  46768. name: "Back",
  46769. image: {
  46770. source: "./media/characters/blizzard/back.svg",
  46771. extra: 1175/1034,
  46772. bottom: 97/1272
  46773. }
  46774. },
  46775. sitting: {
  46776. height: math.unit(3.725, "feet"),
  46777. weight: math.unit(200, "lb"),
  46778. name: "Sitting",
  46779. image: {
  46780. source: "./media/characters/blizzard/sitting.svg",
  46781. extra: 581/485,
  46782. bottom: 90/671
  46783. }
  46784. },
  46785. frontWizard: {
  46786. height: math.unit(7.9, "feet"),
  46787. weight: math.unit(200, "lb"),
  46788. name: "Front (Wizard)",
  46789. image: {
  46790. source: "./media/characters/blizzard/front-wizard.svg"
  46791. }
  46792. },
  46793. backWizard: {
  46794. height: math.unit(7.9, "feet"),
  46795. weight: math.unit(200, "lb"),
  46796. name: "Back (Wizard)",
  46797. image: {
  46798. source: "./media/characters/blizzard/back-wizard.svg"
  46799. }
  46800. },
  46801. frontNsfw: {
  46802. height: math.unit(6, "feet"),
  46803. weight: math.unit(200, "lb"),
  46804. name: "Front (NSFW)",
  46805. image: {
  46806. source: "./media/characters/blizzard/front-nsfw.svg",
  46807. extra: 1136/990,
  46808. bottom: 136/1272
  46809. }
  46810. },
  46811. backNsfw: {
  46812. height: math.unit(6, "feet"),
  46813. weight: math.unit(200, "lb"),
  46814. name: "Back (NSFW)",
  46815. image: {
  46816. source: "./media/characters/blizzard/back-nsfw.svg",
  46817. extra: 1175/1034,
  46818. bottom: 97/1272
  46819. }
  46820. },
  46821. sittingNsfw: {
  46822. height: math.unit(3.725, "feet"),
  46823. weight: math.unit(200, "lb"),
  46824. name: "Sitting (NSFW)",
  46825. image: {
  46826. source: "./media/characters/blizzard/sitting-nsfw.svg",
  46827. extra: 581/485,
  46828. bottom: 90/671
  46829. }
  46830. },
  46831. wizardFrontNsfw: {
  46832. height: math.unit(7.9, "feet"),
  46833. weight: math.unit(200, "lb"),
  46834. name: "Wizard (Front, NSFW)",
  46835. image: {
  46836. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  46837. }
  46838. },
  46839. },
  46840. [
  46841. {
  46842. name: "Normal",
  46843. height: math.unit(6, "feet"),
  46844. default: true
  46845. },
  46846. ]
  46847. ))
  46848. characterMakers.push(() => makeCharacter(
  46849. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  46850. {
  46851. front: {
  46852. height: math.unit(5 + 2/12, "feet"),
  46853. name: "Front",
  46854. image: {
  46855. source: "./media/characters/lumi/front.svg",
  46856. extra: 1328/1268,
  46857. bottom: 103/1431
  46858. }
  46859. },
  46860. back: {
  46861. height: math.unit(5 + 2/12, "feet"),
  46862. name: "Back",
  46863. image: {
  46864. source: "./media/characters/lumi/back.svg",
  46865. extra: 1381/1327,
  46866. bottom: 43/1424
  46867. }
  46868. },
  46869. },
  46870. [
  46871. {
  46872. name: "Normal",
  46873. height: math.unit(5 + 2/12, "feet"),
  46874. default: true
  46875. },
  46876. ]
  46877. ))
  46878. characterMakers.push(() => makeCharacter(
  46879. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  46880. {
  46881. front: {
  46882. height: math.unit(5 + 9/12, "feet"),
  46883. name: "Front",
  46884. image: {
  46885. source: "./media/characters/aliya-cotton/front.svg",
  46886. extra: 577/564,
  46887. bottom: 29/606
  46888. }
  46889. },
  46890. },
  46891. [
  46892. {
  46893. name: "Normal",
  46894. height: math.unit(5 + 9/12, "feet"),
  46895. default: true
  46896. },
  46897. ]
  46898. ))
  46899. characterMakers.push(() => makeCharacter(
  46900. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  46901. {
  46902. front: {
  46903. height: math.unit(2.7, "meters"),
  46904. weight: math.unit(25000, "lb"),
  46905. name: "Front",
  46906. image: {
  46907. source: "./media/characters/noah-luxray/front.svg",
  46908. extra: 1644/825,
  46909. bottom: 339/1983
  46910. }
  46911. },
  46912. side: {
  46913. height: math.unit(2.97, "meters"),
  46914. weight: math.unit(25000, "lb"),
  46915. name: "Side",
  46916. image: {
  46917. source: "./media/characters/noah-luxray/side.svg",
  46918. extra: 1319/650,
  46919. bottom: 163/1482
  46920. }
  46921. },
  46922. dick: {
  46923. height: math.unit(7.4, "feet"),
  46924. weight: math.unit(2500, "lb"),
  46925. name: "Dick",
  46926. image: {
  46927. source: "./media/characters/noah-luxray/dick.svg"
  46928. }
  46929. },
  46930. dickAlt: {
  46931. height: math.unit(10.83, "feet"),
  46932. weight: math.unit(2500, "lb"),
  46933. name: "Dick-alt",
  46934. image: {
  46935. source: "./media/characters/noah-luxray/dick-alt.svg"
  46936. }
  46937. },
  46938. },
  46939. [
  46940. {
  46941. name: "BIG",
  46942. height: math.unit(2.7, "meters"),
  46943. default: true
  46944. },
  46945. ]
  46946. ))
  46947. characterMakers.push(() => makeCharacter(
  46948. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  46949. {
  46950. standing: {
  46951. height: math.unit(183, "cm"),
  46952. weight: math.unit(68, "kg"),
  46953. name: "Standing",
  46954. image: {
  46955. source: "./media/characters/arion/standing.svg",
  46956. extra: 1869/1807,
  46957. bottom: 93/1962
  46958. }
  46959. },
  46960. reclining: {
  46961. height: math.unit(70.5, "cm"),
  46962. weight: math.unit(68, "lb"),
  46963. name: "Reclining",
  46964. image: {
  46965. source: "./media/characters/arion/reclining.svg",
  46966. extra: 937/870,
  46967. bottom: 63/1000
  46968. }
  46969. },
  46970. },
  46971. [
  46972. {
  46973. name: "Colossus Size, Low",
  46974. height: math.unit(33, "meters"),
  46975. default: true
  46976. },
  46977. {
  46978. name: "Colossus Size, Mid",
  46979. height: math.unit(52, "meters")
  46980. },
  46981. {
  46982. name: "Colossus Size, High",
  46983. height: math.unit(60, "meters")
  46984. },
  46985. {
  46986. name: "Titan Size, Low",
  46987. height: math.unit(91, "meters"),
  46988. },
  46989. {
  46990. name: "Titan Size, Mid",
  46991. height: math.unit(122, "meters")
  46992. },
  46993. {
  46994. name: "Titan Size, High",
  46995. height: math.unit(162, "meters")
  46996. },
  46997. ]
  46998. ))
  46999. characterMakers.push(() => makeCharacter(
  47000. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  47001. {
  47002. front: {
  47003. height: math.unit(53, "meters"),
  47004. name: "Front",
  47005. image: {
  47006. source: "./media/characters/stellar-marbey/front.svg",
  47007. extra: 1913/1805,
  47008. bottom: 92/2005
  47009. }
  47010. },
  47011. back: {
  47012. height: math.unit(53, "meters"),
  47013. name: "Back",
  47014. image: {
  47015. source: "./media/characters/stellar-marbey/back.svg",
  47016. extra: 1960/1851,
  47017. bottom: 28/1988
  47018. }
  47019. },
  47020. mouth: {
  47021. height: math.unit(3.5, "meters"),
  47022. name: "Mouth",
  47023. image: {
  47024. source: "./media/characters/stellar-marbey/mouth.svg"
  47025. }
  47026. },
  47027. },
  47028. [
  47029. {
  47030. name: "Macro",
  47031. height: math.unit(53, "meters"),
  47032. default: true
  47033. },
  47034. ]
  47035. ))
  47036. characterMakers.push(() => makeCharacter(
  47037. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  47038. {
  47039. front: {
  47040. height: math.unit(8 + 1/12, "feet"),
  47041. weight: math.unit(233, "lb"),
  47042. name: "Front",
  47043. image: {
  47044. source: "./media/characters/matsu/front.svg",
  47045. extra: 832/772,
  47046. bottom: 40/872
  47047. }
  47048. },
  47049. back: {
  47050. height: math.unit(8 + 1/12, "feet"),
  47051. weight: math.unit(233, "lb"),
  47052. name: "Back",
  47053. image: {
  47054. source: "./media/characters/matsu/back.svg",
  47055. extra: 839/780,
  47056. bottom: 47/886
  47057. }
  47058. },
  47059. },
  47060. [
  47061. {
  47062. name: "Normal",
  47063. height: math.unit(8 + 1/12, "feet"),
  47064. default: true
  47065. },
  47066. ]
  47067. ))
  47068. characterMakers.push(() => makeCharacter(
  47069. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  47070. {
  47071. front: {
  47072. height: math.unit(4, "feet"),
  47073. weight: math.unit(148, "lb"),
  47074. name: "Front",
  47075. image: {
  47076. source: "./media/characters/thiz/front.svg",
  47077. extra: 1913/1748,
  47078. bottom: 62/1975
  47079. }
  47080. },
  47081. },
  47082. [
  47083. {
  47084. name: "Normal",
  47085. height: math.unit(4, "feet"),
  47086. default: true
  47087. },
  47088. ]
  47089. ))
  47090. characterMakers.push(() => makeCharacter(
  47091. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  47092. {
  47093. front: {
  47094. height: math.unit(7 + 6/12, "feet"),
  47095. weight: math.unit(267, "lb"),
  47096. name: "Front",
  47097. image: {
  47098. source: "./media/characters/marcel/front.svg",
  47099. extra: 1221/1096,
  47100. bottom: 76/1297
  47101. }
  47102. },
  47103. },
  47104. [
  47105. {
  47106. name: "Normal",
  47107. height: math.unit(7 + 6/12, "feet"),
  47108. default: true
  47109. },
  47110. ]
  47111. ))
  47112. characterMakers.push(() => makeCharacter(
  47113. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  47114. {
  47115. side: {
  47116. height: math.unit(42, "meters"),
  47117. name: "Side",
  47118. image: {
  47119. source: "./media/characters/flake/side.svg",
  47120. extra: 1525/1306,
  47121. bottom: 209/1734
  47122. }
  47123. },
  47124. },
  47125. [
  47126. {
  47127. name: "Normal",
  47128. height: math.unit(42, "meters"),
  47129. default: true
  47130. },
  47131. ]
  47132. ))
  47133. characterMakers.push(() => makeCharacter(
  47134. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  47135. {
  47136. dressed: {
  47137. height: math.unit(6 + 4/12, "feet"),
  47138. weight: math.unit(520, "lb"),
  47139. name: "Dressed",
  47140. image: {
  47141. source: "./media/characters/someonne/dressed.svg",
  47142. extra: 1020/1010,
  47143. bottom: 178/1198
  47144. }
  47145. },
  47146. undressed: {
  47147. height: math.unit(6 + 4/12, "feet"),
  47148. weight: math.unit(520, "lb"),
  47149. name: "Undressed",
  47150. image: {
  47151. source: "./media/characters/someonne/undressed.svg",
  47152. extra: 1019/1014,
  47153. bottom: 169/1188
  47154. }
  47155. },
  47156. },
  47157. [
  47158. {
  47159. name: "Normal",
  47160. height: math.unit(6 + 4/12, "feet"),
  47161. default: true
  47162. },
  47163. ]
  47164. ))
  47165. characterMakers.push(() => makeCharacter(
  47166. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  47167. {
  47168. front: {
  47169. height: math.unit(3, "feet"),
  47170. weight: math.unit(30, "lb"),
  47171. name: "Front",
  47172. image: {
  47173. source: "./media/characters/till/front.svg",
  47174. extra: 892/823,
  47175. bottom: 55/947
  47176. }
  47177. },
  47178. },
  47179. [
  47180. {
  47181. name: "Normal",
  47182. height: math.unit(3, "feet"),
  47183. default: true
  47184. },
  47185. ]
  47186. ))
  47187. characterMakers.push(() => makeCharacter(
  47188. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  47189. {
  47190. front: {
  47191. height: math.unit(9 + 8/12, "feet"),
  47192. weight: math.unit(800, "lb"),
  47193. name: "Front",
  47194. image: {
  47195. source: "./media/characters/sydney-heki/front.svg",
  47196. extra: 1360/1300,
  47197. bottom: 22/1382
  47198. }
  47199. },
  47200. back: {
  47201. height: math.unit(9 + 8/12, "feet"),
  47202. weight: math.unit(800, "lb"),
  47203. name: "Back",
  47204. image: {
  47205. source: "./media/characters/sydney-heki/back.svg",
  47206. extra: 1356/1293,
  47207. bottom: 12/1368
  47208. }
  47209. },
  47210. frontDressed: {
  47211. height: math.unit(9 + 8/12, "feet"),
  47212. weight: math.unit(800, "lb"),
  47213. name: "Front-dressed",
  47214. image: {
  47215. source: "./media/characters/sydney-heki/front-dressed.svg",
  47216. extra: 1360/1300,
  47217. bottom: 22/1382
  47218. }
  47219. },
  47220. },
  47221. [
  47222. {
  47223. name: "Normal",
  47224. height: math.unit(9 + 8/12, "feet"),
  47225. default: true
  47226. },
  47227. {
  47228. name: "Macro",
  47229. height: math.unit(500, "feet")
  47230. },
  47231. {
  47232. name: "Megamacro",
  47233. height: math.unit(3.6, "miles")
  47234. },
  47235. ]
  47236. ))
  47237. characterMakers.push(() => makeCharacter(
  47238. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  47239. {
  47240. front: {
  47241. height: math.unit(200, "cm"),
  47242. weight: math.unit(250, "lb"),
  47243. name: "Front",
  47244. image: {
  47245. source: "./media/characters/fowler-karlsson/front.svg",
  47246. extra: 897/845,
  47247. bottom: 123/1020
  47248. }
  47249. },
  47250. back: {
  47251. height: math.unit(200, "cm"),
  47252. weight: math.unit(250, "lb"),
  47253. name: "Back",
  47254. image: {
  47255. source: "./media/characters/fowler-karlsson/back.svg",
  47256. extra: 999/944,
  47257. bottom: 26/1025
  47258. }
  47259. },
  47260. dick: {
  47261. height: math.unit(1.92, "feet"),
  47262. weight: math.unit(150, "lb"),
  47263. name: "Dick",
  47264. image: {
  47265. source: "./media/characters/fowler-karlsson/dick.svg"
  47266. }
  47267. },
  47268. },
  47269. [
  47270. {
  47271. name: "Normal",
  47272. height: math.unit(200, "cm"),
  47273. default: true
  47274. },
  47275. {
  47276. name: "Smaller Macro",
  47277. height: math.unit(90, "m")
  47278. },
  47279. {
  47280. name: "Macro",
  47281. height: math.unit(150, "m")
  47282. },
  47283. {
  47284. name: "Bigger Macro",
  47285. height: math.unit(300, "m")
  47286. },
  47287. ]
  47288. ))
  47289. characterMakers.push(() => makeCharacter(
  47290. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  47291. {
  47292. side: {
  47293. height: math.unit(8 + 2/12, "feet"),
  47294. weight: math.unit(1, "tonne"),
  47295. name: "Side",
  47296. image: {
  47297. source: "./media/characters/rylide/side.svg",
  47298. extra: 1318/1034,
  47299. bottom: 106/1424
  47300. }
  47301. },
  47302. sitting: {
  47303. height: math.unit(303, "cm"),
  47304. weight: math.unit(1, "tonne"),
  47305. name: "Sitting",
  47306. image: {
  47307. source: "./media/characters/rylide/sitting.svg",
  47308. extra: 1303/1103,
  47309. bottom: 36/1339
  47310. }
  47311. },
  47312. },
  47313. [
  47314. {
  47315. name: "Normal",
  47316. height: math.unit(8 + 2/12, "feet"),
  47317. default: true
  47318. },
  47319. ]
  47320. ))
  47321. characterMakers.push(() => makeCharacter(
  47322. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  47323. {
  47324. front: {
  47325. height: math.unit(5 + 10/12, "feet"),
  47326. weight: math.unit(160, "lb"),
  47327. name: "Front",
  47328. image: {
  47329. source: "./media/characters/pudask/front.svg",
  47330. extra: 1616/1590,
  47331. bottom: 161/1777
  47332. }
  47333. },
  47334. },
  47335. [
  47336. {
  47337. name: "Ferret Height",
  47338. height: math.unit(2 + 5/12, "feet")
  47339. },
  47340. {
  47341. name: "Canon Height",
  47342. height: math.unit(5 + 10/12, "feet"),
  47343. default: true
  47344. },
  47345. ]
  47346. ))
  47347. characterMakers.push(() => makeCharacter(
  47348. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  47349. {
  47350. front: {
  47351. height: math.unit(3 + 6/12, "feet"),
  47352. weight: math.unit(60, "lb"),
  47353. name: "Front",
  47354. image: {
  47355. source: "./media/characters/ramita/front.svg",
  47356. extra: 1402/1232,
  47357. bottom: 62/1464
  47358. }
  47359. },
  47360. dressed: {
  47361. height: math.unit(3 + 6/12, "feet"),
  47362. weight: math.unit(60, "lb"),
  47363. name: "Dressed",
  47364. image: {
  47365. source: "./media/characters/ramita/dressed.svg",
  47366. extra: 1534/1249,
  47367. bottom: 50/1584
  47368. }
  47369. },
  47370. },
  47371. [
  47372. {
  47373. name: "Normal",
  47374. height: math.unit(3 + 6/12, "feet"),
  47375. default: true
  47376. },
  47377. ]
  47378. ))
  47379. characterMakers.push(() => makeCharacter(
  47380. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  47381. {
  47382. front: {
  47383. height: math.unit(8, "feet"),
  47384. name: "Front",
  47385. image: {
  47386. source: "./media/characters/ark/front.svg",
  47387. extra: 772/693,
  47388. bottom: 45/817
  47389. }
  47390. },
  47391. },
  47392. [
  47393. {
  47394. name: "Normal",
  47395. height: math.unit(8, "feet"),
  47396. default: true
  47397. },
  47398. ]
  47399. ))
  47400. characterMakers.push(() => makeCharacter(
  47401. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  47402. {
  47403. front: {
  47404. height: math.unit(6, "feet"),
  47405. weight: math.unit(250, "lb"),
  47406. volume: math.unit(5/8, "gallons"),
  47407. name: "Front",
  47408. image: {
  47409. source: "./media/characters/ludwig-horn/front.svg",
  47410. extra: 1782/1635,
  47411. bottom: 96/1878
  47412. }
  47413. },
  47414. back: {
  47415. height: math.unit(6, "feet"),
  47416. weight: math.unit(250, "lb"),
  47417. volume: math.unit(5/8, "gallons"),
  47418. name: "Back",
  47419. image: {
  47420. source: "./media/characters/ludwig-horn/back.svg",
  47421. extra: 1874/1729,
  47422. bottom: 27/1901
  47423. }
  47424. },
  47425. dick: {
  47426. height: math.unit(1.05, "feet"),
  47427. weight: math.unit(15, "lb"),
  47428. volume: math.unit(5/8, "gallons"),
  47429. name: "Dick",
  47430. image: {
  47431. source: "./media/characters/ludwig-horn/dick.svg"
  47432. }
  47433. },
  47434. },
  47435. [
  47436. {
  47437. name: "Small",
  47438. height: math.unit(6, "feet")
  47439. },
  47440. {
  47441. name: "Typical",
  47442. height: math.unit(12, "feet"),
  47443. default: true
  47444. },
  47445. {
  47446. name: "Building",
  47447. height: math.unit(80, "feet")
  47448. },
  47449. {
  47450. name: "Town",
  47451. height: math.unit(800, "feet")
  47452. },
  47453. {
  47454. name: "Kingdom",
  47455. height: math.unit(80000, "feet")
  47456. },
  47457. {
  47458. name: "Planet",
  47459. height: math.unit(8000000, "feet")
  47460. },
  47461. {
  47462. name: "Universe",
  47463. height: math.unit(8000000000, "feet")
  47464. },
  47465. {
  47466. name: "Transcended",
  47467. height: math.unit(8e27, "feet")
  47468. },
  47469. ]
  47470. ))
  47471. characterMakers.push(() => makeCharacter(
  47472. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  47473. {
  47474. front: {
  47475. height: math.unit(5, "feet"),
  47476. weight: math.unit(50, "kg"),
  47477. name: "Front",
  47478. image: {
  47479. source: "./media/characters/biot-avery/front.svg",
  47480. extra: 1295/1232,
  47481. bottom: 86/1381
  47482. }
  47483. },
  47484. },
  47485. [
  47486. {
  47487. name: "Normal",
  47488. height: math.unit(5, "feet"),
  47489. default: true
  47490. },
  47491. ]
  47492. ))
  47493. characterMakers.push(() => makeCharacter(
  47494. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  47495. {
  47496. front: {
  47497. height: math.unit(6, "feet"),
  47498. name: "Front",
  47499. image: {
  47500. source: "./media/characters/kitsune-kiro/front.svg",
  47501. extra: 1270/1158,
  47502. bottom: 42/1312
  47503. }
  47504. },
  47505. frontAlt: {
  47506. height: math.unit(6, "feet"),
  47507. name: "Front-alt",
  47508. image: {
  47509. source: "./media/characters/kitsune-kiro/front-alt.svg",
  47510. extra: 1130/1081,
  47511. bottom: 36/1166
  47512. }
  47513. },
  47514. },
  47515. [
  47516. {
  47517. name: "Smol",
  47518. height: math.unit(3, "feet")
  47519. },
  47520. {
  47521. name: "Normal",
  47522. height: math.unit(6, "feet"),
  47523. default: true
  47524. },
  47525. ]
  47526. ))
  47527. characterMakers.push(() => makeCharacter(
  47528. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  47529. {
  47530. front: {
  47531. height: math.unit(6, "feet"),
  47532. weight: math.unit(125, "lb"),
  47533. name: "Front",
  47534. image: {
  47535. source: "./media/characters/jack-thatcher/front.svg",
  47536. extra: 1474/1370,
  47537. bottom: 26/1500
  47538. }
  47539. },
  47540. back: {
  47541. height: math.unit(6, "feet"),
  47542. weight: math.unit(125, "lb"),
  47543. name: "Back",
  47544. image: {
  47545. source: "./media/characters/jack-thatcher/back.svg",
  47546. extra: 1489/1384,
  47547. bottom: 18/1507
  47548. }
  47549. },
  47550. },
  47551. [
  47552. {
  47553. name: "Normal",
  47554. height: math.unit(6, "feet"),
  47555. default: true
  47556. },
  47557. {
  47558. name: "Macro",
  47559. height: math.unit(75, "feet")
  47560. },
  47561. {
  47562. name: "Macro-er",
  47563. height: math.unit(250, "feet")
  47564. },
  47565. ]
  47566. ))
  47567. characterMakers.push(() => makeCharacter(
  47568. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  47569. {
  47570. front: {
  47571. height: math.unit(7, "feet"),
  47572. weight: math.unit(110, "kg"),
  47573. name: "Front",
  47574. image: {
  47575. source: "./media/characters/max-hyper/front.svg",
  47576. extra: 1969/1881,
  47577. bottom: 49/2018
  47578. }
  47579. },
  47580. },
  47581. [
  47582. {
  47583. name: "Normal",
  47584. height: math.unit(7, "feet"),
  47585. default: true
  47586. },
  47587. ]
  47588. ))
  47589. characterMakers.push(() => makeCharacter(
  47590. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  47591. {
  47592. front: {
  47593. height: math.unit(5 + 5/12, "feet"),
  47594. weight: math.unit(160, "lb"),
  47595. name: "Front",
  47596. image: {
  47597. source: "./media/characters/spook/front.svg",
  47598. extra: 794/791,
  47599. bottom: 54/848
  47600. }
  47601. },
  47602. back: {
  47603. height: math.unit(5 + 5/12, "feet"),
  47604. weight: math.unit(160, "lb"),
  47605. name: "Back",
  47606. image: {
  47607. source: "./media/characters/spook/back.svg",
  47608. extra: 812/798,
  47609. bottom: 32/844
  47610. }
  47611. },
  47612. },
  47613. [
  47614. {
  47615. name: "Normal",
  47616. height: math.unit(5 + 5/12, "feet"),
  47617. default: true
  47618. },
  47619. ]
  47620. ))
  47621. characterMakers.push(() => makeCharacter(
  47622. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  47623. {
  47624. front: {
  47625. height: math.unit(18, "feet"),
  47626. name: "Front",
  47627. image: {
  47628. source: "./media/characters/xeaduulix/front.svg",
  47629. extra: 1380/1166,
  47630. bottom: 110/1490
  47631. }
  47632. },
  47633. back: {
  47634. height: math.unit(18, "feet"),
  47635. name: "Back",
  47636. image: {
  47637. source: "./media/characters/xeaduulix/back.svg",
  47638. extra: 1592/1170,
  47639. bottom: 128/1720
  47640. }
  47641. },
  47642. frontNsfw: {
  47643. height: math.unit(18, "feet"),
  47644. name: "Front (NSFW)",
  47645. image: {
  47646. source: "./media/characters/xeaduulix/front-nsfw.svg",
  47647. extra: 1380/1166,
  47648. bottom: 110/1490
  47649. }
  47650. },
  47651. backNsfw: {
  47652. height: math.unit(18, "feet"),
  47653. name: "Back (NSFW)",
  47654. image: {
  47655. source: "./media/characters/xeaduulix/back-nsfw.svg",
  47656. extra: 1592/1170,
  47657. bottom: 128/1720
  47658. }
  47659. },
  47660. },
  47661. [
  47662. {
  47663. name: "Normal",
  47664. height: math.unit(18, "feet"),
  47665. default: true
  47666. },
  47667. ]
  47668. ))
  47669. characterMakers.push(() => makeCharacter(
  47670. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  47671. {
  47672. spreadWings: {
  47673. height: math.unit(20, "feet"),
  47674. name: "Spread Wings",
  47675. image: {
  47676. source: "./media/characters/fledge/spread-wings.svg",
  47677. extra: 693/635,
  47678. bottom: 26/719
  47679. }
  47680. },
  47681. front: {
  47682. height: math.unit(20, "feet"),
  47683. name: "Front",
  47684. image: {
  47685. source: "./media/characters/fledge/front.svg",
  47686. extra: 684/637,
  47687. bottom: 18/702
  47688. }
  47689. },
  47690. frontAlt: {
  47691. height: math.unit(20, "feet"),
  47692. name: "Front (Alt)",
  47693. image: {
  47694. source: "./media/characters/fledge/front-alt.svg",
  47695. extra: 708/664,
  47696. bottom: 13/721
  47697. }
  47698. },
  47699. back: {
  47700. height: math.unit(20, "feet"),
  47701. name: "Back",
  47702. image: {
  47703. source: "./media/characters/fledge/back.svg",
  47704. extra: 718/634,
  47705. bottom: 22/740
  47706. }
  47707. },
  47708. head: {
  47709. height: math.unit(5.55, "feet"),
  47710. name: "Head",
  47711. image: {
  47712. source: "./media/characters/fledge/head.svg"
  47713. }
  47714. },
  47715. headAlt: {
  47716. height: math.unit(5.1, "feet"),
  47717. name: "Head (Alt)",
  47718. image: {
  47719. source: "./media/characters/fledge/head-alt.svg"
  47720. }
  47721. },
  47722. },
  47723. [
  47724. {
  47725. name: "Small",
  47726. height: math.unit(6 + 2/12, "feet")
  47727. },
  47728. {
  47729. name: "Big",
  47730. height: math.unit(20, "feet"),
  47731. default: true
  47732. },
  47733. {
  47734. name: "Giant",
  47735. height: math.unit(100, "feet")
  47736. },
  47737. {
  47738. name: "Macro",
  47739. height: math.unit(200, "feet")
  47740. },
  47741. ]
  47742. ))
  47743. characterMakers.push(() => makeCharacter(
  47744. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  47745. {
  47746. front: {
  47747. height: math.unit(1, "meter"),
  47748. name: "Front",
  47749. image: {
  47750. source: "./media/characters/atlas-morenai/front.svg",
  47751. extra: 1275/1043,
  47752. bottom: 19/1294
  47753. }
  47754. },
  47755. back: {
  47756. height: math.unit(1, "meter"),
  47757. name: "Back",
  47758. image: {
  47759. source: "./media/characters/atlas-morenai/back.svg",
  47760. extra: 1141/1001,
  47761. bottom: 25/1166
  47762. }
  47763. },
  47764. },
  47765. [
  47766. {
  47767. name: "Normal",
  47768. height: math.unit(1, "meter"),
  47769. default: true
  47770. },
  47771. {
  47772. name: "Magic-Infused",
  47773. height: math.unit(5, "meters")
  47774. },
  47775. ]
  47776. ))
  47777. characterMakers.push(() => makeCharacter(
  47778. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  47779. {
  47780. front: {
  47781. height: math.unit(5, "meters"),
  47782. name: "Front",
  47783. image: {
  47784. source: "./media/characters/cintia/front.svg",
  47785. extra: 1312/1228,
  47786. bottom: 38/1350
  47787. }
  47788. },
  47789. back: {
  47790. height: math.unit(5, "meters"),
  47791. name: "Back",
  47792. image: {
  47793. source: "./media/characters/cintia/back.svg",
  47794. extra: 1260/1166,
  47795. bottom: 98/1358
  47796. }
  47797. },
  47798. frontDick: {
  47799. height: math.unit(5, "meters"),
  47800. name: "Front (Dick)",
  47801. image: {
  47802. source: "./media/characters/cintia/front-dick.svg",
  47803. extra: 1312/1228,
  47804. bottom: 38/1350
  47805. }
  47806. },
  47807. backDick: {
  47808. height: math.unit(5, "meters"),
  47809. name: "Back (Dick)",
  47810. image: {
  47811. source: "./media/characters/cintia/back-dick.svg",
  47812. extra: 1260/1166,
  47813. bottom: 98/1358
  47814. }
  47815. },
  47816. bust: {
  47817. height: math.unit(1.97, "meters"),
  47818. name: "Bust",
  47819. image: {
  47820. source: "./media/characters/cintia/bust.svg",
  47821. extra: 617/565,
  47822. bottom: 0/617
  47823. }
  47824. },
  47825. },
  47826. [
  47827. {
  47828. name: "Normal",
  47829. height: math.unit(5, "meters"),
  47830. default: true
  47831. },
  47832. ]
  47833. ))
  47834. characterMakers.push(() => makeCharacter(
  47835. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  47836. {
  47837. side: {
  47838. height: math.unit(100, "feet"),
  47839. name: "Side",
  47840. image: {
  47841. source: "./media/characters/denora/side.svg",
  47842. extra: 875/803,
  47843. bottom: 9/884
  47844. }
  47845. },
  47846. },
  47847. [
  47848. {
  47849. name: "Standard",
  47850. height: math.unit(100, "feet"),
  47851. default: true
  47852. },
  47853. {
  47854. name: "Grand",
  47855. height: math.unit(1000, "feet")
  47856. },
  47857. {
  47858. name: "Conquering",
  47859. height: math.unit(10000, "feet")
  47860. },
  47861. ]
  47862. ))
  47863. characterMakers.push(() => makeCharacter(
  47864. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  47865. {
  47866. dressed: {
  47867. height: math.unit(8 + 5/12, "feet"),
  47868. weight: math.unit(700, "lb"),
  47869. name: "Dressed",
  47870. image: {
  47871. source: "./media/characters/kiva/dressed.svg",
  47872. extra: 1102/1055,
  47873. bottom: 60/1162
  47874. }
  47875. },
  47876. nude: {
  47877. height: math.unit(8 + 5/12, "feet"),
  47878. weight: math.unit(700, "lb"),
  47879. name: "Nude",
  47880. image: {
  47881. source: "./media/characters/kiva/nude.svg",
  47882. extra: 1102/1055,
  47883. bottom: 60/1162
  47884. }
  47885. },
  47886. },
  47887. [
  47888. {
  47889. name: "Base Height",
  47890. height: math.unit(8 + 5/12, "feet"),
  47891. default: true
  47892. },
  47893. {
  47894. name: "Macro",
  47895. height: math.unit(100, "feet")
  47896. },
  47897. {
  47898. name: "Max",
  47899. height: math.unit(3280, "feet")
  47900. },
  47901. ]
  47902. ))
  47903. characterMakers.push(() => makeCharacter(
  47904. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  47905. {
  47906. front: {
  47907. height: math.unit(6 + 8/12, "feet"),
  47908. weight: math.unit(250, "lb"),
  47909. name: "Front",
  47910. image: {
  47911. source: "./media/characters/ztragon/front.svg",
  47912. extra: 1825/1684,
  47913. bottom: 98/1923
  47914. }
  47915. },
  47916. },
  47917. [
  47918. {
  47919. name: "Normal",
  47920. height: math.unit(6 + 8/12, "feet"),
  47921. default: true
  47922. },
  47923. {
  47924. name: "Macro",
  47925. height: math.unit(80, "feet")
  47926. },
  47927. ]
  47928. ))
  47929. characterMakers.push(() => makeCharacter(
  47930. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  47931. {
  47932. front: {
  47933. height: math.unit(10.4, "feet"),
  47934. weight: math.unit(2, "tons"),
  47935. name: "Front",
  47936. image: {
  47937. source: "./media/characters/yesenia/front.svg",
  47938. extra: 1479/1474,
  47939. bottom: 233/1712
  47940. }
  47941. },
  47942. },
  47943. [
  47944. {
  47945. name: "Normal",
  47946. height: math.unit(10.4, "feet"),
  47947. default: true
  47948. },
  47949. ]
  47950. ))
  47951. characterMakers.push(() => makeCharacter(
  47952. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  47953. {
  47954. normal: {
  47955. height: math.unit(6 + 1/12, "feet"),
  47956. weight: math.unit(180, "lb"),
  47957. name: "Normal",
  47958. image: {
  47959. source: "./media/characters/leanne-lycheborne/normal.svg",
  47960. extra: 1748/1660,
  47961. bottom: 98/1846
  47962. }
  47963. },
  47964. were: {
  47965. height: math.unit(12, "feet"),
  47966. weight: math.unit(1600, "lb"),
  47967. name: "Were",
  47968. image: {
  47969. source: "./media/characters/leanne-lycheborne/were.svg",
  47970. extra: 1485/1432,
  47971. bottom: 66/1551
  47972. }
  47973. },
  47974. },
  47975. [
  47976. {
  47977. name: "Normal",
  47978. height: math.unit(6 + 1/12, "feet"),
  47979. default: true
  47980. },
  47981. ]
  47982. ))
  47983. characterMakers.push(() => makeCharacter(
  47984. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  47985. {
  47986. side: {
  47987. height: math.unit(13, "feet"),
  47988. name: "Side",
  47989. image: {
  47990. source: "./media/characters/kira-tyler/side.svg",
  47991. extra: 693/393,
  47992. bottom: 58/751
  47993. }
  47994. },
  47995. },
  47996. [
  47997. {
  47998. name: "Normal",
  47999. height: math.unit(13, "feet"),
  48000. default: true
  48001. },
  48002. ]
  48003. ))
  48004. characterMakers.push(() => makeCharacter(
  48005. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  48006. {
  48007. front: {
  48008. height: math.unit(10.3, "feet"),
  48009. weight: math.unit(150, "lb"),
  48010. name: "Front",
  48011. image: {
  48012. source: "./media/characters/blaze/front.svg",
  48013. extra: 1378/1286,
  48014. bottom: 172/1550
  48015. }
  48016. },
  48017. },
  48018. [
  48019. {
  48020. name: "Normal",
  48021. height: math.unit(10.3, "feet"),
  48022. default: true
  48023. },
  48024. ]
  48025. ))
  48026. characterMakers.push(() => makeCharacter(
  48027. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  48028. {
  48029. side: {
  48030. height: math.unit(2, "meters"),
  48031. weight: math.unit(400, "kg"),
  48032. name: "Side",
  48033. image: {
  48034. source: "./media/characters/anu/side.svg",
  48035. extra: 506/394,
  48036. bottom: 18/524
  48037. }
  48038. },
  48039. },
  48040. [
  48041. {
  48042. name: "Humanoid",
  48043. height: math.unit(2, "meters")
  48044. },
  48045. {
  48046. name: "Normal",
  48047. height: math.unit(5, "meters"),
  48048. default: true
  48049. },
  48050. ]
  48051. ))
  48052. characterMakers.push(() => makeCharacter(
  48053. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  48054. {
  48055. front: {
  48056. height: math.unit(5 + 5/12, "feet"),
  48057. weight: math.unit(170, "lb"),
  48058. name: "Front",
  48059. image: {
  48060. source: "./media/characters/synx-the-lynx/front.svg",
  48061. extra: 1893/1745,
  48062. bottom: 17/1910
  48063. }
  48064. },
  48065. side: {
  48066. height: math.unit(5 + 5/12, "feet"),
  48067. weight: math.unit(170, "lb"),
  48068. name: "Side",
  48069. image: {
  48070. source: "./media/characters/synx-the-lynx/side.svg",
  48071. extra: 1884/1740,
  48072. bottom: 39/1923
  48073. }
  48074. },
  48075. back: {
  48076. height: math.unit(5 + 5/12, "feet"),
  48077. weight: math.unit(170, "lb"),
  48078. name: "Back",
  48079. image: {
  48080. source: "./media/characters/synx-the-lynx/back.svg",
  48081. extra: 1903/1755,
  48082. bottom: 14/1917
  48083. }
  48084. },
  48085. },
  48086. [
  48087. {
  48088. name: "Normal",
  48089. height: math.unit(5 + 5/12, "feet"),
  48090. default: true
  48091. },
  48092. ]
  48093. ))
  48094. characterMakers.push(() => makeCharacter(
  48095. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  48096. {
  48097. back: {
  48098. height: math.unit(15, "feet"),
  48099. name: "Back",
  48100. image: {
  48101. source: "./media/characters/nadezda-fex/back.svg",
  48102. extra: 1695/1481,
  48103. bottom: 25/1720
  48104. }
  48105. },
  48106. },
  48107. [
  48108. {
  48109. name: "Normal",
  48110. height: math.unit(15, "feet"),
  48111. default: true
  48112. },
  48113. {
  48114. name: "Macro",
  48115. height: math.unit(2.5, "miles")
  48116. },
  48117. {
  48118. name: "Goddess",
  48119. height: math.unit(2, "multiverses")
  48120. },
  48121. ]
  48122. ))
  48123. characterMakers.push(() => makeCharacter(
  48124. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  48125. {
  48126. front: {
  48127. height: math.unit(216, "cm"),
  48128. name: "Front",
  48129. image: {
  48130. source: "./media/characters/lev/front.svg",
  48131. extra: 1728/1670,
  48132. bottom: 82/1810
  48133. }
  48134. },
  48135. back: {
  48136. height: math.unit(216, "cm"),
  48137. name: "Back",
  48138. image: {
  48139. source: "./media/characters/lev/back.svg",
  48140. extra: 1738/1675,
  48141. bottom: 24/1762
  48142. }
  48143. },
  48144. dressed: {
  48145. height: math.unit(216, "cm"),
  48146. name: "Dressed",
  48147. image: {
  48148. source: "./media/characters/lev/dressed.svg",
  48149. extra: 1397/1351,
  48150. bottom: 73/1470
  48151. }
  48152. },
  48153. head: {
  48154. height: math.unit(0.51, "meter"),
  48155. name: "Head",
  48156. image: {
  48157. source: "./media/characters/lev/head.svg"
  48158. }
  48159. },
  48160. },
  48161. [
  48162. {
  48163. name: "Normal",
  48164. height: math.unit(216, "cm"),
  48165. default: true
  48166. },
  48167. {
  48168. name: "Relatively Macro",
  48169. height: math.unit(80, "meters")
  48170. },
  48171. {
  48172. name: "Megamacro",
  48173. height: math.unit(21600, "meters")
  48174. },
  48175. {
  48176. name: "Megamacro+",
  48177. height: math.unit(64800, "meters")
  48178. },
  48179. ]
  48180. ))
  48181. characterMakers.push(() => makeCharacter(
  48182. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  48183. {
  48184. front: {
  48185. height: math.unit(2, "meters"),
  48186. weight: math.unit(80, "kg"),
  48187. name: "Front",
  48188. image: {
  48189. source: "./media/characters/moka/front.svg",
  48190. extra: 1337/1255,
  48191. bottom: 58/1395
  48192. }
  48193. },
  48194. },
  48195. [
  48196. {
  48197. name: "Micro",
  48198. height: math.unit(15, "cm")
  48199. },
  48200. {
  48201. name: "Normal",
  48202. height: math.unit(2, "meters"),
  48203. default: true
  48204. },
  48205. {
  48206. name: "Macro",
  48207. height: math.unit(20, "meters"),
  48208. },
  48209. ]
  48210. ))
  48211. characterMakers.push(() => makeCharacter(
  48212. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  48213. {
  48214. front: {
  48215. height: math.unit(9, "feet"),
  48216. weight: math.unit(240, "lb"),
  48217. name: "Front",
  48218. image: {
  48219. source: "./media/characters/kuzco/front.svg",
  48220. extra: 1593/1487,
  48221. bottom: 32/1625
  48222. }
  48223. },
  48224. side: {
  48225. height: math.unit(9, "feet"),
  48226. weight: math.unit(240, "lb"),
  48227. name: "Side",
  48228. image: {
  48229. source: "./media/characters/kuzco/side.svg",
  48230. extra: 1575/1485,
  48231. bottom: 30/1605
  48232. }
  48233. },
  48234. back: {
  48235. height: math.unit(9, "feet"),
  48236. weight: math.unit(240, "lb"),
  48237. name: "Back",
  48238. image: {
  48239. source: "./media/characters/kuzco/back.svg",
  48240. extra: 1603/1514,
  48241. bottom: 14/1617
  48242. }
  48243. },
  48244. },
  48245. [
  48246. {
  48247. name: "Normal",
  48248. height: math.unit(9, "feet"),
  48249. default: true
  48250. },
  48251. ]
  48252. ))
  48253. characterMakers.push(() => makeCharacter(
  48254. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  48255. {
  48256. side: {
  48257. height: math.unit(2, "meters"),
  48258. weight: math.unit(300, "kg"),
  48259. name: "Side",
  48260. image: {
  48261. source: "./media/characters/ceruleus/side.svg",
  48262. extra: 1068/974,
  48263. bottom: 126/1194
  48264. }
  48265. },
  48266. maw: {
  48267. height: math.unit(0.8125, "meter"),
  48268. name: "Maw",
  48269. image: {
  48270. source: "./media/characters/ceruleus/maw.svg"
  48271. }
  48272. },
  48273. },
  48274. [
  48275. {
  48276. name: "Normal",
  48277. height: math.unit(16, "meters"),
  48278. default: true
  48279. },
  48280. ]
  48281. ))
  48282. characterMakers.push(() => makeCharacter(
  48283. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  48284. {
  48285. front: {
  48286. height: math.unit(9, "feet"),
  48287. weight: math.unit(500, "kg"),
  48288. name: "Front",
  48289. image: {
  48290. source: "./media/characters/acouya/front.svg",
  48291. extra: 1660/1473,
  48292. bottom: 28/1688
  48293. }
  48294. },
  48295. },
  48296. [
  48297. {
  48298. name: "Normal",
  48299. height: math.unit(9, "feet"),
  48300. default: true
  48301. },
  48302. ]
  48303. ))
  48304. characterMakers.push(() => makeCharacter(
  48305. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  48306. {
  48307. front: {
  48308. height: math.unit(5 + 6/12, "feet"),
  48309. weight: math.unit(195, "lb"),
  48310. name: "Front",
  48311. image: {
  48312. source: "./media/characters/vant/front.svg",
  48313. extra: 1396/1320,
  48314. bottom: 20/1416
  48315. }
  48316. },
  48317. back: {
  48318. height: math.unit(5 + 6/12, "feet"),
  48319. weight: math.unit(195, "lb"),
  48320. name: "Back",
  48321. image: {
  48322. source: "./media/characters/vant/back.svg",
  48323. extra: 1396/1320,
  48324. bottom: 20/1416
  48325. }
  48326. },
  48327. maw: {
  48328. height: math.unit(0.75, "feet"),
  48329. name: "Maw",
  48330. image: {
  48331. source: "./media/characters/vant/maw.svg"
  48332. }
  48333. },
  48334. paw: {
  48335. height: math.unit(1.07, "feet"),
  48336. name: "Paw",
  48337. image: {
  48338. source: "./media/characters/vant/paw.svg"
  48339. }
  48340. },
  48341. },
  48342. [
  48343. {
  48344. name: "Micro",
  48345. height: math.unit(0.25, "inches")
  48346. },
  48347. {
  48348. name: "Normal",
  48349. height: math.unit(5 + 6/12, "feet"),
  48350. default: true
  48351. },
  48352. {
  48353. name: "Macro",
  48354. height: math.unit(75, "feet")
  48355. },
  48356. ]
  48357. ))
  48358. characterMakers.push(() => makeCharacter(
  48359. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  48360. {
  48361. front: {
  48362. height: math.unit(30, "meters"),
  48363. weight: math.unit(363, "tons"),
  48364. name: "Front",
  48365. image: {
  48366. source: "./media/characters/ahra/front.svg",
  48367. extra: 1914/1814,
  48368. bottom: 46/1960
  48369. }
  48370. },
  48371. },
  48372. [
  48373. {
  48374. name: "Macro",
  48375. height: math.unit(30, "meters"),
  48376. default: true
  48377. },
  48378. ]
  48379. ))
  48380. characterMakers.push(() => makeCharacter(
  48381. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  48382. {
  48383. undressed: {
  48384. height: math.unit(2, "m"),
  48385. weight: math.unit(250, "kg"),
  48386. name: "Undressed",
  48387. image: {
  48388. source: "./media/characters/coriander/undressed.svg",
  48389. extra: 1757/1606,
  48390. bottom: 107/1864
  48391. }
  48392. },
  48393. dressed: {
  48394. height: math.unit(2, "m"),
  48395. weight: math.unit(250, "kg"),
  48396. name: "Dressed",
  48397. image: {
  48398. source: "./media/characters/coriander/dressed.svg",
  48399. extra: 1757/1606,
  48400. bottom: 107/1864
  48401. }
  48402. },
  48403. },
  48404. [
  48405. {
  48406. name: "Normal",
  48407. height: math.unit(4, "meters"),
  48408. default: true
  48409. },
  48410. {
  48411. name: "XL",
  48412. height: math.unit(6, "meters")
  48413. },
  48414. {
  48415. name: "XXL",
  48416. height: math.unit(8, "meters")
  48417. },
  48418. ]
  48419. ))
  48420. characterMakers.push(() => makeCharacter(
  48421. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  48422. {
  48423. front: {
  48424. height: math.unit(6, "feet"),
  48425. name: "Front",
  48426. image: {
  48427. source: "./media/characters/syrinx/front.svg",
  48428. extra: 1557/1259,
  48429. bottom: 171/1728
  48430. }
  48431. },
  48432. },
  48433. [
  48434. {
  48435. name: "Normal",
  48436. height: math.unit(6 + 3/12, "feet"),
  48437. default: true
  48438. },
  48439. ]
  48440. ))
  48441. characterMakers.push(() => makeCharacter(
  48442. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  48443. {
  48444. front: {
  48445. height: math.unit(11 + 6/12, "feet"),
  48446. weight: math.unit(1.5, "tons"),
  48447. name: "Front",
  48448. image: {
  48449. source: "./media/characters/bor/front.svg",
  48450. extra: 1189/1109,
  48451. bottom: 170/1359
  48452. }
  48453. },
  48454. },
  48455. [
  48456. {
  48457. name: "Normal",
  48458. height: math.unit(11 + 6/12, "feet"),
  48459. default: true
  48460. },
  48461. {
  48462. name: "Macro",
  48463. height: math.unit(32 + 9/12, "feet")
  48464. },
  48465. ]
  48466. ))
  48467. characterMakers.push(() => makeCharacter(
  48468. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  48469. {
  48470. anthro: {
  48471. height: math.unit(9, "feet"),
  48472. weight: math.unit(2076, "lb"),
  48473. name: "Anthro",
  48474. image: {
  48475. source: "./media/characters/abacus/anthro.svg",
  48476. extra: 1540/1494,
  48477. bottom: 233/1773
  48478. }
  48479. },
  48480. pigeon: {
  48481. height: math.unit(1, "feet"),
  48482. name: "Pigeon",
  48483. image: {
  48484. source: "./media/characters/abacus/pigeon.svg",
  48485. extra: 528/525,
  48486. bottom: 46/574
  48487. }
  48488. },
  48489. },
  48490. [
  48491. {
  48492. name: "Normal",
  48493. height: math.unit(9, "feet"),
  48494. default: true
  48495. },
  48496. ]
  48497. ))
  48498. characterMakers.push(() => makeCharacter(
  48499. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  48500. {
  48501. side: {
  48502. height: math.unit(6, "feet"),
  48503. name: "Side",
  48504. image: {
  48505. source: "./media/characters/delkhan/side.svg",
  48506. extra: 1884/1786,
  48507. bottom: 308/2192
  48508. }
  48509. },
  48510. head: {
  48511. height: math.unit(3.38, "feet"),
  48512. name: "Head",
  48513. image: {
  48514. source: "./media/characters/delkhan/head.svg"
  48515. }
  48516. },
  48517. },
  48518. [
  48519. {
  48520. name: "Normal",
  48521. height: math.unit(72, "feet"),
  48522. default: true
  48523. },
  48524. {
  48525. name: "Giant",
  48526. height: math.unit(172, "feet")
  48527. },
  48528. ]
  48529. ))
  48530. characterMakers.push(() => makeCharacter(
  48531. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  48532. {
  48533. standing: {
  48534. height: math.unit(6, "feet"),
  48535. name: "Standing",
  48536. image: {
  48537. source: "./media/characters/euchidat/standing.svg",
  48538. extra: 1612/1553,
  48539. bottom: 116/1728
  48540. }
  48541. },
  48542. leaning: {
  48543. height: math.unit(6, "feet"),
  48544. name: "Leaning",
  48545. image: {
  48546. source: "./media/characters/euchidat/leaning.svg",
  48547. extra: 1719/1674,
  48548. bottom: 27/1746
  48549. }
  48550. },
  48551. },
  48552. [
  48553. {
  48554. name: "Normal",
  48555. height: math.unit(175, "feet"),
  48556. default: true
  48557. },
  48558. {
  48559. name: "Megamacro",
  48560. height: math.unit(190, "miles")
  48561. },
  48562. {
  48563. name: "Gigamacro",
  48564. height: math.unit(190000, "miles")
  48565. },
  48566. ]
  48567. ))
  48568. characterMakers.push(() => makeCharacter(
  48569. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  48570. {
  48571. front: {
  48572. height: math.unit(6, "feet"),
  48573. weight: math.unit(150, "lb"),
  48574. name: "Front",
  48575. image: {
  48576. source: "./media/characters/rebecca-stack/front.svg",
  48577. extra: 1256/1201,
  48578. bottom: 18/1274
  48579. }
  48580. },
  48581. },
  48582. [
  48583. {
  48584. name: "Normal",
  48585. height: math.unit(5 + 8/12, "feet"),
  48586. default: true
  48587. },
  48588. {
  48589. name: "Demolitionist",
  48590. height: math.unit(200, "feet")
  48591. },
  48592. {
  48593. name: "Out of Control",
  48594. height: math.unit(2, "miles")
  48595. },
  48596. {
  48597. name: "Giga",
  48598. height: math.unit(7200, "miles")
  48599. },
  48600. ]
  48601. ))
  48602. characterMakers.push(() => makeCharacter(
  48603. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  48604. {
  48605. front: {
  48606. height: math.unit(6, "feet"),
  48607. weight: math.unit(150, "lb"),
  48608. name: "Front",
  48609. image: {
  48610. source: "./media/characters/jenny-cartwright/front.svg",
  48611. extra: 1384/1376,
  48612. bottom: 58/1442
  48613. }
  48614. },
  48615. },
  48616. [
  48617. {
  48618. name: "Normal",
  48619. height: math.unit(6 + 7/12, "feet"),
  48620. default: true
  48621. },
  48622. {
  48623. name: "Librarian",
  48624. height: math.unit(55, "feet")
  48625. },
  48626. {
  48627. name: "Sightseer",
  48628. height: math.unit(50, "miles")
  48629. },
  48630. {
  48631. name: "Giga",
  48632. height: math.unit(30000, "miles")
  48633. },
  48634. ]
  48635. ))
  48636. characterMakers.push(() => makeCharacter(
  48637. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  48638. {
  48639. nude: {
  48640. height: math.unit(8, "feet"),
  48641. weight: math.unit(225, "lb"),
  48642. name: "Nude",
  48643. image: {
  48644. source: "./media/characters/marvy/nude.svg",
  48645. extra: 1900/1683,
  48646. bottom: 89/1989
  48647. }
  48648. },
  48649. dressed: {
  48650. height: math.unit(8, "feet"),
  48651. weight: math.unit(225, "lb"),
  48652. name: "Dressed",
  48653. image: {
  48654. source: "./media/characters/marvy/dressed.svg",
  48655. extra: 1900/1683,
  48656. bottom: 89/1989
  48657. }
  48658. },
  48659. head: {
  48660. height: math.unit(2.85, "feet"),
  48661. name: "Head",
  48662. image: {
  48663. source: "./media/characters/marvy/head.svg"
  48664. }
  48665. },
  48666. },
  48667. [
  48668. {
  48669. name: "Normal",
  48670. height: math.unit(8, "feet"),
  48671. default: true
  48672. },
  48673. ]
  48674. ))
  48675. characterMakers.push(() => makeCharacter(
  48676. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  48677. {
  48678. front: {
  48679. height: math.unit(8, "feet"),
  48680. weight: math.unit(250, "lb"),
  48681. name: "Front",
  48682. image: {
  48683. source: "./media/characters/leah/front.svg",
  48684. extra: 1257/1149,
  48685. bottom: 109/1366
  48686. }
  48687. },
  48688. },
  48689. [
  48690. {
  48691. name: "Normal",
  48692. height: math.unit(8, "feet"),
  48693. default: true
  48694. },
  48695. {
  48696. name: "Minimacro",
  48697. height: math.unit(40, "feet")
  48698. },
  48699. {
  48700. name: "Macro",
  48701. height: math.unit(124, "feet")
  48702. },
  48703. {
  48704. name: "Megamacro",
  48705. height: math.unit(850, "feet")
  48706. },
  48707. ]
  48708. ))
  48709. characterMakers.push(() => makeCharacter(
  48710. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  48711. {
  48712. side: {
  48713. height: math.unit(13 + 6/12, "feet"),
  48714. weight: math.unit(3200, "lb"),
  48715. name: "Side",
  48716. image: {
  48717. source: "./media/characters/alvir/side.svg",
  48718. extra: 896/589,
  48719. bottom: 26/922
  48720. }
  48721. },
  48722. },
  48723. [
  48724. {
  48725. name: "Normal",
  48726. height: math.unit(13 + 6/12, "feet"),
  48727. default: true
  48728. },
  48729. ]
  48730. ))
  48731. characterMakers.push(() => makeCharacter(
  48732. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  48733. {
  48734. front: {
  48735. height: math.unit(5 + 4/12, "feet"),
  48736. weight: math.unit(236, "lb"),
  48737. name: "Front",
  48738. image: {
  48739. source: "./media/characters/zaina-khalil/front.svg",
  48740. extra: 1533/1485,
  48741. bottom: 94/1627
  48742. }
  48743. },
  48744. side: {
  48745. height: math.unit(5 + 4/12, "feet"),
  48746. weight: math.unit(236, "lb"),
  48747. name: "Side",
  48748. image: {
  48749. source: "./media/characters/zaina-khalil/side.svg",
  48750. extra: 1537/1498,
  48751. bottom: 66/1603
  48752. }
  48753. },
  48754. back: {
  48755. height: math.unit(5 + 4/12, "feet"),
  48756. weight: math.unit(236, "lb"),
  48757. name: "Back",
  48758. image: {
  48759. source: "./media/characters/zaina-khalil/back.svg",
  48760. extra: 1546/1494,
  48761. bottom: 89/1635
  48762. }
  48763. },
  48764. },
  48765. [
  48766. {
  48767. name: "Normal",
  48768. height: math.unit(5 + 4/12, "feet"),
  48769. default: true
  48770. },
  48771. ]
  48772. ))
  48773. characterMakers.push(() => makeCharacter(
  48774. { name: "Terry", species: ["husky"], tags: ["taur"] },
  48775. {
  48776. side: {
  48777. height: math.unit(12, "feet"),
  48778. weight: math.unit(4000, "lb"),
  48779. name: "Side",
  48780. image: {
  48781. source: "./media/characters/terry/side.svg",
  48782. extra: 1518/1439,
  48783. bottom: 149/1667
  48784. }
  48785. },
  48786. },
  48787. [
  48788. {
  48789. name: "Normal",
  48790. height: math.unit(12, "feet"),
  48791. default: true
  48792. },
  48793. ]
  48794. ))
  48795. characterMakers.push(() => makeCharacter(
  48796. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  48797. {
  48798. front: {
  48799. height: math.unit(12, "feet"),
  48800. weight: math.unit(1500, "lb"),
  48801. name: "Front",
  48802. image: {
  48803. source: "./media/characters/kahea/front.svg",
  48804. extra: 1722/1617,
  48805. bottom: 179/1901
  48806. }
  48807. },
  48808. },
  48809. [
  48810. {
  48811. name: "Normal",
  48812. height: math.unit(12, "feet"),
  48813. default: true
  48814. },
  48815. ]
  48816. ))
  48817. characterMakers.push(() => makeCharacter(
  48818. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  48819. {
  48820. demonFront: {
  48821. height: math.unit(36, "feet"),
  48822. name: "Front",
  48823. image: {
  48824. source: "./media/characters/alex-xuria/demon-front.svg",
  48825. extra: 1705/1673,
  48826. bottom: 198/1903
  48827. },
  48828. form: "demon",
  48829. default: true
  48830. },
  48831. demonBack: {
  48832. height: math.unit(36, "feet"),
  48833. name: "Back",
  48834. image: {
  48835. source: "./media/characters/alex-xuria/demon-back.svg",
  48836. extra: 1725/1693,
  48837. bottom: 70/1795
  48838. },
  48839. form: "demon"
  48840. },
  48841. demonHead: {
  48842. height: math.unit(2.14, "meters"),
  48843. name: "Head",
  48844. image: {
  48845. source: "./media/characters/alex-xuria/demon-head.svg"
  48846. },
  48847. form: "demon"
  48848. },
  48849. demonHand: {
  48850. height: math.unit(1.61, "meters"),
  48851. name: "Hand",
  48852. image: {
  48853. source: "./media/characters/alex-xuria/demon-hand.svg"
  48854. },
  48855. form: "demon"
  48856. },
  48857. demonPaw: {
  48858. height: math.unit(1.35, "meters"),
  48859. name: "Paw",
  48860. image: {
  48861. source: "./media/characters/alex-xuria/demon-paw.svg"
  48862. },
  48863. form: "demon"
  48864. },
  48865. demonFoot: {
  48866. height: math.unit(2.2, "meters"),
  48867. name: "Foot",
  48868. image: {
  48869. source: "./media/characters/alex-xuria/demon-foot.svg"
  48870. },
  48871. form: "demon"
  48872. },
  48873. demonCock: {
  48874. height: math.unit(1.74, "meters"),
  48875. name: "Cock",
  48876. image: {
  48877. source: "./media/characters/alex-xuria/demon-cock.svg"
  48878. },
  48879. form: "demon"
  48880. },
  48881. demonTailClosed: {
  48882. height: math.unit(1.47, "meters"),
  48883. name: "Tail (Closed)",
  48884. image: {
  48885. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  48886. },
  48887. form: "demon"
  48888. },
  48889. demonTailOpen: {
  48890. height: math.unit(2.85, "meters"),
  48891. name: "Tail (Open)",
  48892. image: {
  48893. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  48894. },
  48895. form: "demon"
  48896. },
  48897. incubusFront: {
  48898. height: math.unit(12, "feet"),
  48899. name: "Front",
  48900. image: {
  48901. source: "./media/characters/alex-xuria/incubus-front.svg",
  48902. extra: 1754/1677,
  48903. bottom: 125/1879
  48904. },
  48905. form: "incubus",
  48906. default: true
  48907. },
  48908. incubusBack: {
  48909. height: math.unit(12, "feet"),
  48910. name: "Back",
  48911. image: {
  48912. source: "./media/characters/alex-xuria/incubus-back.svg",
  48913. extra: 1702/1647,
  48914. bottom: 30/1732
  48915. },
  48916. form: "incubus"
  48917. },
  48918. incubusHead: {
  48919. height: math.unit(3.45, "feet"),
  48920. name: "Head",
  48921. image: {
  48922. source: "./media/characters/alex-xuria/incubus-head.svg"
  48923. },
  48924. form: "incubus"
  48925. },
  48926. rabbitFront: {
  48927. height: math.unit(6, "feet"),
  48928. name: "Front",
  48929. image: {
  48930. source: "./media/characters/alex-xuria/rabbit-front.svg",
  48931. extra: 1369/1349,
  48932. bottom: 45/1414
  48933. },
  48934. form: "rabbit",
  48935. default: true
  48936. },
  48937. rabbitSide: {
  48938. height: math.unit(6, "feet"),
  48939. name: "Side",
  48940. image: {
  48941. source: "./media/characters/alex-xuria/rabbit-side.svg",
  48942. extra: 1370/1356,
  48943. bottom: 37/1407
  48944. },
  48945. form: "rabbit"
  48946. },
  48947. rabbitBack: {
  48948. height: math.unit(6, "feet"),
  48949. name: "Back",
  48950. image: {
  48951. source: "./media/characters/alex-xuria/rabbit-back.svg",
  48952. extra: 1375/1358,
  48953. bottom: 43/1418
  48954. },
  48955. form: "rabbit"
  48956. },
  48957. },
  48958. [
  48959. {
  48960. name: "Normal",
  48961. height: math.unit(6, "feet"),
  48962. default: true,
  48963. form: "rabbit"
  48964. },
  48965. {
  48966. name: "Incubus",
  48967. height: math.unit(12, "feet"),
  48968. default: true,
  48969. form: "incubus"
  48970. },
  48971. {
  48972. name: "Demon",
  48973. height: math.unit(36, "feet"),
  48974. default: true,
  48975. form: "demon"
  48976. }
  48977. ],
  48978. {
  48979. "demon": {
  48980. name: "Demon",
  48981. default: true
  48982. },
  48983. "incubus": {
  48984. name: "Incubus",
  48985. },
  48986. "rabbit": {
  48987. name: "Rabbit"
  48988. }
  48989. }
  48990. ))
  48991. characterMakers.push(() => makeCharacter(
  48992. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  48993. {
  48994. front: {
  48995. height: math.unit(7 + 5/12, "feet"),
  48996. weight: math.unit(510, "lb"),
  48997. name: "Front",
  48998. image: {
  48999. source: "./media/characters/syrup/front.svg",
  49000. extra: 932/916,
  49001. bottom: 26/958
  49002. }
  49003. },
  49004. },
  49005. [
  49006. {
  49007. name: "Normal",
  49008. height: math.unit(7 + 5/12, "feet"),
  49009. default: true
  49010. },
  49011. {
  49012. name: "Big",
  49013. height: math.unit(50, "feet")
  49014. },
  49015. {
  49016. name: "Macro",
  49017. height: math.unit(300, "feet")
  49018. },
  49019. {
  49020. name: "Megamacro",
  49021. height: math.unit(1, "mile")
  49022. },
  49023. ]
  49024. ))
  49025. characterMakers.push(() => makeCharacter(
  49026. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  49027. {
  49028. front: {
  49029. height: math.unit(6 + 9/12, "feet"),
  49030. name: "Front",
  49031. image: {
  49032. source: "./media/characters/zeimne/front.svg",
  49033. extra: 1969/1806,
  49034. bottom: 53/2022
  49035. }
  49036. },
  49037. },
  49038. [
  49039. {
  49040. name: "Normal",
  49041. height: math.unit(6 + 9/12, "feet"),
  49042. default: true
  49043. },
  49044. {
  49045. name: "Giant",
  49046. height: math.unit(550, "feet")
  49047. },
  49048. {
  49049. name: "Mega",
  49050. height: math.unit(3, "miles")
  49051. },
  49052. {
  49053. name: "Giga",
  49054. height: math.unit(250, "miles")
  49055. },
  49056. {
  49057. name: "Tera",
  49058. height: math.unit(1, "AU")
  49059. },
  49060. ]
  49061. ))
  49062. characterMakers.push(() => makeCharacter(
  49063. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  49064. {
  49065. front: {
  49066. height: math.unit(5 + 2/12, "feet"),
  49067. name: "Front",
  49068. image: {
  49069. source: "./media/characters/grar/front.svg",
  49070. extra: 1331/1119,
  49071. bottom: 60/1391
  49072. }
  49073. },
  49074. back: {
  49075. height: math.unit(5 + 2/12, "feet"),
  49076. name: "Back",
  49077. image: {
  49078. source: "./media/characters/grar/back.svg",
  49079. extra: 1385/1169,
  49080. bottom: 23/1408
  49081. }
  49082. },
  49083. },
  49084. [
  49085. {
  49086. name: "Normal",
  49087. height: math.unit(5 + 2/12, "feet"),
  49088. default: true
  49089. },
  49090. ]
  49091. ))
  49092. characterMakers.push(() => makeCharacter(
  49093. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  49094. {
  49095. front: {
  49096. height: math.unit(13 + 7/12, "feet"),
  49097. weight: math.unit(2200, "lb"),
  49098. name: "Front",
  49099. image: {
  49100. source: "./media/characters/endraya/front.svg",
  49101. extra: 1289/1215,
  49102. bottom: 50/1339
  49103. }
  49104. },
  49105. nude: {
  49106. height: math.unit(13 + 7/12, "feet"),
  49107. weight: math.unit(2200, "lb"),
  49108. name: "Nude",
  49109. image: {
  49110. source: "./media/characters/endraya/nude.svg",
  49111. extra: 1247/1171,
  49112. bottom: 40/1287
  49113. }
  49114. },
  49115. head: {
  49116. height: math.unit(2.6, "feet"),
  49117. name: "Head",
  49118. image: {
  49119. source: "./media/characters/endraya/head.svg"
  49120. }
  49121. },
  49122. slit: {
  49123. height: math.unit(3.4, "feet"),
  49124. name: "Slit",
  49125. image: {
  49126. source: "./media/characters/endraya/slit.svg"
  49127. }
  49128. },
  49129. },
  49130. [
  49131. {
  49132. name: "Normal",
  49133. height: math.unit(13 + 7/12, "feet"),
  49134. default: true
  49135. },
  49136. {
  49137. name: "Macro",
  49138. height: math.unit(200, "feet")
  49139. },
  49140. ]
  49141. ))
  49142. characterMakers.push(() => makeCharacter(
  49143. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  49144. {
  49145. front: {
  49146. height: math.unit(1.81, "meters"),
  49147. weight: math.unit(69, "kg"),
  49148. name: "Front",
  49149. image: {
  49150. source: "./media/characters/rodryana/front.svg",
  49151. extra: 2002/1921,
  49152. bottom: 53/2055
  49153. }
  49154. },
  49155. back: {
  49156. height: math.unit(1.81, "meters"),
  49157. weight: math.unit(69, "kg"),
  49158. name: "Back",
  49159. image: {
  49160. source: "./media/characters/rodryana/back.svg",
  49161. extra: 1993/1926,
  49162. bottom: 48/2041
  49163. }
  49164. },
  49165. maw: {
  49166. height: math.unit(0.19769417475, "meters"),
  49167. name: "Maw",
  49168. image: {
  49169. source: "./media/characters/rodryana/maw.svg"
  49170. }
  49171. },
  49172. slit: {
  49173. height: math.unit(0.31631067961, "meters"),
  49174. name: "Slit",
  49175. image: {
  49176. source: "./media/characters/rodryana/slit.svg"
  49177. }
  49178. },
  49179. },
  49180. [
  49181. {
  49182. name: "Normal",
  49183. height: math.unit(1.81, "meters")
  49184. },
  49185. {
  49186. name: "Mini Macro",
  49187. height: math.unit(181, "meters")
  49188. },
  49189. {
  49190. name: "Macro",
  49191. height: math.unit(452, "meters"),
  49192. default: true
  49193. },
  49194. {
  49195. name: "Mega Macro",
  49196. height: math.unit(1.375, "km")
  49197. },
  49198. {
  49199. name: "Giga Macro",
  49200. height: math.unit(13.575, "km")
  49201. },
  49202. ]
  49203. ))
  49204. characterMakers.push(() => makeCharacter(
  49205. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  49206. {
  49207. front: {
  49208. height: math.unit(6, "feet"),
  49209. weight: math.unit(1000, "lb"),
  49210. name: "Front",
  49211. image: {
  49212. source: "./media/characters/asaya/front.svg",
  49213. extra: 1460/1200,
  49214. bottom: 71/1531
  49215. }
  49216. },
  49217. },
  49218. [
  49219. {
  49220. name: "Normal",
  49221. height: math.unit(8, "km"),
  49222. default: true
  49223. },
  49224. ]
  49225. ))
  49226. characterMakers.push(() => makeCharacter(
  49227. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  49228. {
  49229. front: {
  49230. height: math.unit(3.5, "meters"),
  49231. name: "Front",
  49232. image: {
  49233. source: "./media/characters/sarzu-and-israz/front.svg",
  49234. extra: 1570/1558,
  49235. bottom: 150/1720
  49236. },
  49237. },
  49238. back: {
  49239. height: math.unit(3.5, "meters"),
  49240. name: "Back",
  49241. image: {
  49242. source: "./media/characters/sarzu-and-israz/back.svg",
  49243. extra: 1523/1509,
  49244. bottom: 132/1655
  49245. },
  49246. },
  49247. frontFemale: {
  49248. height: math.unit(3.5, "meters"),
  49249. name: "Front (Female)",
  49250. image: {
  49251. source: "./media/characters/sarzu-and-israz/front-female.svg",
  49252. extra: 1570/1558,
  49253. bottom: 150/1720
  49254. },
  49255. },
  49256. frontHerm: {
  49257. height: math.unit(3.5, "meters"),
  49258. name: "Front (Herm)",
  49259. image: {
  49260. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  49261. extra: 1570/1558,
  49262. bottom: 150/1720
  49263. },
  49264. },
  49265. },
  49266. [
  49267. {
  49268. name: "Normal",
  49269. height: math.unit(3.5, "meters"),
  49270. default: true,
  49271. },
  49272. {
  49273. name: "Macro",
  49274. height: math.unit(65.5, "meters"),
  49275. },
  49276. ],
  49277. ))
  49278. characterMakers.push(() => makeCharacter(
  49279. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  49280. {
  49281. front: {
  49282. height: math.unit(6, "feet"),
  49283. weight: math.unit(250, "lb"),
  49284. name: "Front",
  49285. image: {
  49286. source: "./media/characters/zenimma/front.svg",
  49287. extra: 1346/1320,
  49288. bottom: 58/1404
  49289. }
  49290. },
  49291. back: {
  49292. height: math.unit(6, "feet"),
  49293. weight: math.unit(250, "lb"),
  49294. name: "Back",
  49295. image: {
  49296. source: "./media/characters/zenimma/back.svg",
  49297. extra: 1324/1308,
  49298. bottom: 44/1368
  49299. }
  49300. },
  49301. dick: {
  49302. height: math.unit(1.44, "feet"),
  49303. name: "Dick",
  49304. image: {
  49305. source: "./media/characters/zenimma/dick.svg"
  49306. }
  49307. },
  49308. },
  49309. [
  49310. {
  49311. name: "Canon Height",
  49312. height: math.unit(66, "miles"),
  49313. default: true
  49314. },
  49315. ]
  49316. ))
  49317. characterMakers.push(() => makeCharacter(
  49318. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  49319. {
  49320. nude: {
  49321. height: math.unit(6, "feet"),
  49322. weight: math.unit(150, "lb"),
  49323. name: "Nude",
  49324. image: {
  49325. source: "./media/characters/shavon/nude.svg",
  49326. extra: 1242/1096,
  49327. bottom: 98/1340
  49328. }
  49329. },
  49330. dressed: {
  49331. height: math.unit(6, "feet"),
  49332. weight: math.unit(150, "lb"),
  49333. name: "Dressed",
  49334. image: {
  49335. source: "./media/characters/shavon/dressed.svg",
  49336. extra: 1242/1096,
  49337. bottom: 98/1340
  49338. }
  49339. },
  49340. },
  49341. [
  49342. {
  49343. name: "Macro",
  49344. height: math.unit(255, "feet"),
  49345. default: true
  49346. },
  49347. ]
  49348. ))
  49349. characterMakers.push(() => makeCharacter(
  49350. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  49351. {
  49352. front: {
  49353. height: math.unit(6, "feet"),
  49354. name: "Front",
  49355. image: {
  49356. source: "./media/characters/steph/front.svg",
  49357. extra: 1430/1330,
  49358. bottom: 54/1484
  49359. }
  49360. },
  49361. },
  49362. [
  49363. {
  49364. name: "Normal",
  49365. height: math.unit(6, "feet"),
  49366. default: true
  49367. },
  49368. ]
  49369. ))
  49370. characterMakers.push(() => makeCharacter(
  49371. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  49372. {
  49373. front: {
  49374. height: math.unit(9, "feet"),
  49375. weight: math.unit(400, "lb"),
  49376. name: "Front",
  49377. image: {
  49378. source: "./media/characters/kil'aman/front.svg",
  49379. extra: 1210/1159,
  49380. bottom: 109/1319
  49381. }
  49382. },
  49383. head: {
  49384. height: math.unit(2.14, "feet"),
  49385. name: "Head",
  49386. image: {
  49387. source: "./media/characters/kil'aman/head.svg"
  49388. }
  49389. },
  49390. maw: {
  49391. height: math.unit(1.21, "feet"),
  49392. name: "Maw",
  49393. image: {
  49394. source: "./media/characters/kil'aman/maw.svg"
  49395. }
  49396. },
  49397. foot: {
  49398. height: math.unit(1.7, "feet"),
  49399. name: "Foot",
  49400. image: {
  49401. source: "./media/characters/kil'aman/foot.svg"
  49402. }
  49403. },
  49404. dick: {
  49405. height: math.unit(2.1, "feet"),
  49406. name: "Dick",
  49407. image: {
  49408. source: "./media/characters/kil'aman/dick.svg"
  49409. }
  49410. },
  49411. },
  49412. [
  49413. {
  49414. name: "Normal",
  49415. height: math.unit(9, "feet")
  49416. },
  49417. {
  49418. name: "Canon Height",
  49419. height: math.unit(10, "miles"),
  49420. default: true
  49421. },
  49422. {
  49423. name: "Maximum",
  49424. height: math.unit(6e9, "miles")
  49425. },
  49426. ]
  49427. ))
  49428. characterMakers.push(() => makeCharacter(
  49429. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  49430. {
  49431. front: {
  49432. height: math.unit(90, "feet"),
  49433. weight: math.unit(675000, "lb"),
  49434. name: "Front",
  49435. image: {
  49436. source: "./media/characters/qadan/front.svg",
  49437. extra: 1012/1004,
  49438. bottom: 78/1090
  49439. }
  49440. },
  49441. back: {
  49442. height: math.unit(90, "feet"),
  49443. weight: math.unit(675000, "lb"),
  49444. name: "Back",
  49445. image: {
  49446. source: "./media/characters/qadan/back.svg",
  49447. extra: 1042/1031,
  49448. bottom: 55/1097
  49449. }
  49450. },
  49451. armored: {
  49452. height: math.unit(90, "feet"),
  49453. weight: math.unit(675000, "lb"),
  49454. name: "Armored",
  49455. image: {
  49456. source: "./media/characters/qadan/armored.svg",
  49457. extra: 1047/1037,
  49458. bottom: 48/1095
  49459. }
  49460. },
  49461. },
  49462. [
  49463. {
  49464. name: "Normal",
  49465. height: math.unit(90, "feet"),
  49466. default: true
  49467. },
  49468. ]
  49469. ))
  49470. characterMakers.push(() => makeCharacter(
  49471. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  49472. {
  49473. front: {
  49474. height: math.unit(6, "feet"),
  49475. weight: math.unit(225, "lb"),
  49476. name: "Front",
  49477. image: {
  49478. source: "./media/characters/brooke/front.svg",
  49479. extra: 1050/1010,
  49480. bottom: 66/1116
  49481. }
  49482. },
  49483. back: {
  49484. height: math.unit(6, "feet"),
  49485. weight: math.unit(225, "lb"),
  49486. name: "Back",
  49487. image: {
  49488. source: "./media/characters/brooke/back.svg",
  49489. extra: 1053/1013,
  49490. bottom: 41/1094
  49491. }
  49492. },
  49493. dressed: {
  49494. height: math.unit(6, "feet"),
  49495. weight: math.unit(225, "lb"),
  49496. name: "Dressed",
  49497. image: {
  49498. source: "./media/characters/brooke/dressed.svg",
  49499. extra: 1050/1010,
  49500. bottom: 66/1116
  49501. }
  49502. },
  49503. },
  49504. [
  49505. {
  49506. name: "Canon Height",
  49507. height: math.unit(500, "miles"),
  49508. default: true
  49509. },
  49510. ]
  49511. ))
  49512. characterMakers.push(() => makeCharacter(
  49513. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  49514. {
  49515. front: {
  49516. height: math.unit(6 + 2/12, "feet"),
  49517. weight: math.unit(210, "lb"),
  49518. name: "Front",
  49519. image: {
  49520. source: "./media/characters/wubs/front.svg",
  49521. extra: 1345/1325,
  49522. bottom: 70/1415
  49523. }
  49524. },
  49525. back: {
  49526. height: math.unit(6 + 2/12, "feet"),
  49527. weight: math.unit(210, "lb"),
  49528. name: "Back",
  49529. image: {
  49530. source: "./media/characters/wubs/back.svg",
  49531. extra: 1296/1275,
  49532. bottom: 58/1354
  49533. }
  49534. },
  49535. },
  49536. [
  49537. {
  49538. name: "Normal",
  49539. height: math.unit(6 + 2/12, "feet"),
  49540. default: true
  49541. },
  49542. {
  49543. name: "Macro",
  49544. height: math.unit(1000, "feet")
  49545. },
  49546. {
  49547. name: "Megamacro",
  49548. height: math.unit(1, "mile")
  49549. },
  49550. ]
  49551. ))
  49552. characterMakers.push(() => makeCharacter(
  49553. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  49554. {
  49555. front: {
  49556. height: math.unit(4, "feet"),
  49557. weight: math.unit(120, "lb"),
  49558. name: "Front",
  49559. image: {
  49560. source: "./media/characters/blue/front.svg",
  49561. extra: 1636/1525,
  49562. bottom: 43/1679
  49563. }
  49564. },
  49565. back: {
  49566. height: math.unit(4, "feet"),
  49567. weight: math.unit(120, "lb"),
  49568. name: "Back",
  49569. image: {
  49570. source: "./media/characters/blue/back.svg",
  49571. extra: 1660/1560,
  49572. bottom: 57/1717
  49573. }
  49574. },
  49575. paws: {
  49576. height: math.unit(0.826, "feet"),
  49577. name: "Paws",
  49578. image: {
  49579. source: "./media/characters/blue/paws.svg"
  49580. }
  49581. },
  49582. },
  49583. [
  49584. {
  49585. name: "Micro",
  49586. height: math.unit(3, "inches")
  49587. },
  49588. {
  49589. name: "Normal",
  49590. height: math.unit(4, "feet"),
  49591. default: true
  49592. },
  49593. {
  49594. name: "Femenine Form",
  49595. height: math.unit(14, "feet")
  49596. },
  49597. {
  49598. name: "Werebat Form",
  49599. height: math.unit(18, "feet")
  49600. },
  49601. ]
  49602. ))
  49603. characterMakers.push(() => makeCharacter(
  49604. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  49605. {
  49606. female: {
  49607. height: math.unit(7 + 4/12, "feet"),
  49608. weight: math.unit(243, "lb"),
  49609. name: "Female",
  49610. image: {
  49611. source: "./media/characters/kaya/female.svg",
  49612. extra: 975/898,
  49613. bottom: 34/1009
  49614. }
  49615. },
  49616. herm: {
  49617. height: math.unit(7 + 4/12, "feet"),
  49618. weight: math.unit(243, "lb"),
  49619. name: "Herm",
  49620. image: {
  49621. source: "./media/characters/kaya/herm.svg",
  49622. extra: 975/898,
  49623. bottom: 34/1009
  49624. }
  49625. },
  49626. },
  49627. [
  49628. {
  49629. name: "Normal",
  49630. height: math.unit(7 + 4/12, "feet"),
  49631. default: true
  49632. },
  49633. ]
  49634. ))
  49635. characterMakers.push(() => makeCharacter(
  49636. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  49637. {
  49638. female: {
  49639. height: math.unit(9 + 4/12, "feet"),
  49640. weight: math.unit(398, "lb"),
  49641. name: "Female",
  49642. image: {
  49643. source: "./media/characters/kassandra/female.svg",
  49644. extra: 908/839,
  49645. bottom: 61/969
  49646. }
  49647. },
  49648. intersex: {
  49649. height: math.unit(9 + 4/12, "feet"),
  49650. weight: math.unit(398, "lb"),
  49651. name: "Intersex",
  49652. image: {
  49653. source: "./media/characters/kassandra/intersex.svg",
  49654. extra: 908/839,
  49655. bottom: 61/969
  49656. }
  49657. },
  49658. },
  49659. [
  49660. {
  49661. name: "Normal",
  49662. height: math.unit(9 + 4/12, "feet"),
  49663. default: true
  49664. },
  49665. ]
  49666. ))
  49667. characterMakers.push(() => makeCharacter(
  49668. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  49669. {
  49670. front: {
  49671. height: math.unit(3, "meters"),
  49672. name: "Front",
  49673. image: {
  49674. source: "./media/characters/amy/front.svg",
  49675. extra: 1380/1343,
  49676. bottom: 70/1450
  49677. }
  49678. },
  49679. back: {
  49680. height: math.unit(3, "meters"),
  49681. name: "Back",
  49682. image: {
  49683. source: "./media/characters/amy/back.svg",
  49684. extra: 1380/1347,
  49685. bottom: 66/1446
  49686. }
  49687. },
  49688. },
  49689. [
  49690. {
  49691. name: "Normal",
  49692. height: math.unit(3, "meters"),
  49693. default: true
  49694. },
  49695. ]
  49696. ))
  49697. characterMakers.push(() => makeCharacter(
  49698. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  49699. {
  49700. side: {
  49701. height: math.unit(47, "cm"),
  49702. weight: math.unit(10.8, "kg"),
  49703. name: "Side",
  49704. image: {
  49705. source: "./media/characters/alphaschakal/side.svg",
  49706. extra: 1058/568,
  49707. bottom: 62/1120
  49708. }
  49709. },
  49710. back: {
  49711. height: math.unit(78, "cm"),
  49712. weight: math.unit(10.8, "kg"),
  49713. name: "Back",
  49714. image: {
  49715. source: "./media/characters/alphaschakal/back.svg",
  49716. extra: 1102/942,
  49717. bottom: 185/1287
  49718. }
  49719. },
  49720. head: {
  49721. height: math.unit(28, "cm"),
  49722. name: "Head",
  49723. image: {
  49724. source: "./media/characters/alphaschakal/head.svg",
  49725. extra: 696/508,
  49726. bottom: 0/696
  49727. }
  49728. },
  49729. paw: {
  49730. height: math.unit(16, "cm"),
  49731. name: "Paw",
  49732. image: {
  49733. source: "./media/characters/alphaschakal/paw.svg"
  49734. }
  49735. },
  49736. },
  49737. [
  49738. {
  49739. name: "Normal",
  49740. height: math.unit(47, "cm"),
  49741. default: true
  49742. },
  49743. {
  49744. name: "Macro",
  49745. height: math.unit(340, "cm")
  49746. },
  49747. ]
  49748. ))
  49749. characterMakers.push(() => makeCharacter(
  49750. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  49751. {
  49752. front: {
  49753. height: math.unit(36, "earths"),
  49754. name: "Front",
  49755. image: {
  49756. source: "./media/characters/ecobyss/front.svg",
  49757. extra: 1282/1215,
  49758. bottom: 11/1293
  49759. }
  49760. },
  49761. back: {
  49762. height: math.unit(36, "earths"),
  49763. name: "Back",
  49764. image: {
  49765. source: "./media/characters/ecobyss/back.svg",
  49766. extra: 1291/1222,
  49767. bottom: 8/1299
  49768. }
  49769. },
  49770. },
  49771. [
  49772. {
  49773. name: "Normal",
  49774. height: math.unit(36, "earths"),
  49775. default: true
  49776. },
  49777. ]
  49778. ))
  49779. characterMakers.push(() => makeCharacter(
  49780. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  49781. {
  49782. front: {
  49783. height: math.unit(12, "feet"),
  49784. name: "Front",
  49785. image: {
  49786. source: "./media/characters/vasuk/front.svg",
  49787. extra: 1326/1207,
  49788. bottom: 64/1390
  49789. }
  49790. },
  49791. },
  49792. [
  49793. {
  49794. name: "Normal",
  49795. height: math.unit(12, "feet"),
  49796. default: true
  49797. },
  49798. ]
  49799. ))
  49800. characterMakers.push(() => makeCharacter(
  49801. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  49802. {
  49803. side: {
  49804. height: math.unit(100, "feet"),
  49805. name: "Side",
  49806. image: {
  49807. source: "./media/characters/linneaus/side.svg",
  49808. extra: 987/807,
  49809. bottom: 47/1034
  49810. }
  49811. },
  49812. },
  49813. [
  49814. {
  49815. name: "Macro",
  49816. height: math.unit(100, "feet"),
  49817. default: true
  49818. },
  49819. ]
  49820. ))
  49821. characterMakers.push(() => makeCharacter(
  49822. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  49823. {
  49824. front: {
  49825. height: math.unit(8, "feet"),
  49826. weight: math.unit(1200, "lb"),
  49827. name: "Front",
  49828. image: {
  49829. source: "./media/characters/nyterious-daligdig/front.svg",
  49830. extra: 1284/1094,
  49831. bottom: 84/1368
  49832. }
  49833. },
  49834. back: {
  49835. height: math.unit(8, "feet"),
  49836. weight: math.unit(1200, "lb"),
  49837. name: "Back",
  49838. image: {
  49839. source: "./media/characters/nyterious-daligdig/back.svg",
  49840. extra: 1301/1121,
  49841. bottom: 129/1430
  49842. }
  49843. },
  49844. mouth: {
  49845. height: math.unit(1.464, "feet"),
  49846. name: "Mouth",
  49847. image: {
  49848. source: "./media/characters/nyterious-daligdig/mouth.svg"
  49849. }
  49850. },
  49851. },
  49852. [
  49853. {
  49854. name: "Small",
  49855. height: math.unit(8, "feet"),
  49856. default: true
  49857. },
  49858. {
  49859. name: "Normal",
  49860. height: math.unit(15, "feet")
  49861. },
  49862. {
  49863. name: "Macro",
  49864. height: math.unit(90, "feet")
  49865. },
  49866. ]
  49867. ))
  49868. characterMakers.push(() => makeCharacter(
  49869. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  49870. {
  49871. front: {
  49872. height: math.unit(7 + 4/12, "feet"),
  49873. weight: math.unit(252, "lb"),
  49874. name: "Front",
  49875. image: {
  49876. source: "./media/characters/bandel/front.svg",
  49877. extra: 1946/1775,
  49878. bottom: 26/1972
  49879. }
  49880. },
  49881. back: {
  49882. height: math.unit(7 + 4/12, "feet"),
  49883. weight: math.unit(252, "lb"),
  49884. name: "Back",
  49885. image: {
  49886. source: "./media/characters/bandel/back.svg",
  49887. extra: 1940/1770,
  49888. bottom: 25/1965
  49889. }
  49890. },
  49891. maw: {
  49892. height: math.unit(2.15, "feet"),
  49893. name: "Maw",
  49894. image: {
  49895. source: "./media/characters/bandel/maw.svg"
  49896. }
  49897. },
  49898. stomach: {
  49899. height: math.unit(1.95, "feet"),
  49900. name: "Stomach",
  49901. image: {
  49902. source: "./media/characters/bandel/stomach.svg"
  49903. }
  49904. },
  49905. },
  49906. [
  49907. {
  49908. name: "Normal",
  49909. height: math.unit(7 + 4/12, "feet"),
  49910. default: true
  49911. },
  49912. ]
  49913. ))
  49914. characterMakers.push(() => makeCharacter(
  49915. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  49916. {
  49917. front: {
  49918. height: math.unit(10 + 5/12, "feet"),
  49919. weight: math.unit(773.5, "kg"),
  49920. name: "Front",
  49921. image: {
  49922. source: "./media/characters/zed/front.svg",
  49923. extra: 987/941,
  49924. bottom: 52/1039
  49925. }
  49926. },
  49927. },
  49928. [
  49929. {
  49930. name: "Short",
  49931. height: math.unit(5 + 4/12, "feet")
  49932. },
  49933. {
  49934. name: "Average",
  49935. height: math.unit(10 + 5/12, "feet"),
  49936. default: true
  49937. },
  49938. {
  49939. name: "Mini-Macro",
  49940. height: math.unit(24 + 9/12, "feet")
  49941. },
  49942. {
  49943. name: "Macro",
  49944. height: math.unit(249, "feet")
  49945. },
  49946. {
  49947. name: "Mega-Macro",
  49948. height: math.unit(12490, "feet")
  49949. },
  49950. {
  49951. name: "Giga-Macro",
  49952. height: math.unit(24.9, "miles")
  49953. },
  49954. {
  49955. name: "Tera-Macro",
  49956. height: math.unit(24900, "miles")
  49957. },
  49958. {
  49959. name: "Cosmic Scale",
  49960. height: math.unit(38.9, "lightyears")
  49961. },
  49962. {
  49963. name: "Universal Scale",
  49964. height: math.unit(138e12, "lightyears")
  49965. },
  49966. ]
  49967. ))
  49968. characterMakers.push(() => makeCharacter(
  49969. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  49970. {
  49971. front: {
  49972. height: math.unit(1561, "inches"),
  49973. name: "Front",
  49974. image: {
  49975. source: "./media/characters/ivan/front.svg",
  49976. extra: 1126/1071,
  49977. bottom: 26/1152
  49978. }
  49979. },
  49980. back: {
  49981. height: math.unit(1561, "inches"),
  49982. name: "Back",
  49983. image: {
  49984. source: "./media/characters/ivan/back.svg",
  49985. extra: 1134/1079,
  49986. bottom: 30/1164
  49987. }
  49988. },
  49989. },
  49990. [
  49991. {
  49992. name: "Normal",
  49993. height: math.unit(1561, "inches"),
  49994. default: true
  49995. },
  49996. ]
  49997. ))
  49998. characterMakers.push(() => makeCharacter(
  49999. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  50000. {
  50001. front: {
  50002. height: math.unit(5 + 7/12, "feet"),
  50003. weight: math.unit(150, "lb"),
  50004. name: "Front",
  50005. image: {
  50006. source: "./media/characters/robin-arctic-hare/front.svg",
  50007. extra: 1148/974,
  50008. bottom: 20/1168
  50009. }
  50010. },
  50011. },
  50012. [
  50013. {
  50014. name: "Normal",
  50015. height: math.unit(5 + 7/12, "feet"),
  50016. default: true
  50017. },
  50018. ]
  50019. ))
  50020. characterMakers.push(() => makeCharacter(
  50021. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  50022. {
  50023. side: {
  50024. height: math.unit(5, "feet"),
  50025. name: "Side",
  50026. image: {
  50027. source: "./media/characters/birch/side.svg",
  50028. extra: 985/796,
  50029. bottom: 111/1096
  50030. }
  50031. },
  50032. },
  50033. [
  50034. {
  50035. name: "Normal",
  50036. height: math.unit(5, "feet"),
  50037. default: true
  50038. },
  50039. ]
  50040. ))
  50041. characterMakers.push(() => makeCharacter(
  50042. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  50043. {
  50044. front: {
  50045. height: math.unit(4, "feet"),
  50046. name: "Front",
  50047. image: {
  50048. source: "./media/characters/rasp/front.svg",
  50049. extra: 561/478,
  50050. bottom: 74/635
  50051. }
  50052. },
  50053. },
  50054. [
  50055. {
  50056. name: "Normal",
  50057. height: math.unit(4, "feet"),
  50058. default: true
  50059. },
  50060. ]
  50061. ))
  50062. characterMakers.push(() => makeCharacter(
  50063. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  50064. {
  50065. front: {
  50066. height: math.unit(4 + 6/12, "feet"),
  50067. name: "Front",
  50068. image: {
  50069. source: "./media/characters/agatha/front.svg",
  50070. extra: 947/933,
  50071. bottom: 42/989
  50072. }
  50073. },
  50074. back: {
  50075. height: math.unit(4 + 6/12, "feet"),
  50076. name: "Back",
  50077. image: {
  50078. source: "./media/characters/agatha/back.svg",
  50079. extra: 935/922,
  50080. bottom: 48/983
  50081. }
  50082. },
  50083. },
  50084. [
  50085. {
  50086. name: "Normal",
  50087. height: math.unit(4 + 6 /12, "feet"),
  50088. default: true
  50089. },
  50090. {
  50091. name: "Max Size",
  50092. height: math.unit(500, "feet")
  50093. },
  50094. ]
  50095. ))
  50096. characterMakers.push(() => makeCharacter(
  50097. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  50098. {
  50099. side: {
  50100. height: math.unit(30, "feet"),
  50101. name: "Side",
  50102. image: {
  50103. source: "./media/characters/roggy/side.svg",
  50104. extra: 909/643,
  50105. bottom: 63/972
  50106. }
  50107. },
  50108. lounging: {
  50109. height: math.unit(20, "feet"),
  50110. name: "Lounging",
  50111. image: {
  50112. source: "./media/characters/roggy/lounging.svg",
  50113. extra: 643/479,
  50114. bottom: 145/788
  50115. }
  50116. },
  50117. handpaw: {
  50118. height: math.unit(13.1, "feet"),
  50119. name: "Handpaw",
  50120. image: {
  50121. source: "./media/characters/roggy/handpaw.svg"
  50122. }
  50123. },
  50124. footpaw: {
  50125. height: math.unit(15.8, "feet"),
  50126. name: "Footpaw",
  50127. image: {
  50128. source: "./media/characters/roggy/footpaw.svg"
  50129. }
  50130. },
  50131. },
  50132. [
  50133. {
  50134. name: "Menacing",
  50135. height: math.unit(30, "feet"),
  50136. default: true
  50137. },
  50138. ]
  50139. ))
  50140. characterMakers.push(() => makeCharacter(
  50141. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  50142. {
  50143. front: {
  50144. height: math.unit(5 + 7/12, "feet"),
  50145. weight: math.unit(135, "lb"),
  50146. name: "Front",
  50147. image: {
  50148. source: "./media/characters/naomi/front.svg",
  50149. extra: 1209/1154,
  50150. bottom: 129/1338
  50151. }
  50152. },
  50153. back: {
  50154. height: math.unit(5 + 7/12, "feet"),
  50155. weight: math.unit(135, "lb"),
  50156. name: "Back",
  50157. image: {
  50158. source: "./media/characters/naomi/back.svg",
  50159. extra: 1252/1190,
  50160. bottom: 23/1275
  50161. }
  50162. },
  50163. },
  50164. [
  50165. {
  50166. name: "Normal",
  50167. height: math.unit(5 + 7 /12, "feet"),
  50168. default: true
  50169. },
  50170. ]
  50171. ))
  50172. characterMakers.push(() => makeCharacter(
  50173. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  50174. {
  50175. side: {
  50176. height: math.unit(35, "meters"),
  50177. name: "Side",
  50178. image: {
  50179. source: "./media/characters/kimpi/side.svg",
  50180. extra: 419/382,
  50181. bottom: 63/482
  50182. }
  50183. },
  50184. hand: {
  50185. height: math.unit(8.96, "meters"),
  50186. name: "Hand",
  50187. image: {
  50188. source: "./media/characters/kimpi/hand.svg"
  50189. }
  50190. },
  50191. },
  50192. [
  50193. {
  50194. name: "Normal",
  50195. height: math.unit(35, "meters"),
  50196. default: true
  50197. },
  50198. ]
  50199. ))
  50200. characterMakers.push(() => makeCharacter(
  50201. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  50202. {
  50203. front: {
  50204. height: math.unit(4 + 4/12, "feet"),
  50205. name: "Front",
  50206. image: {
  50207. source: "./media/characters/pepper-purrloin/front.svg",
  50208. extra: 1141/1024,
  50209. bottom: 21/1162
  50210. }
  50211. },
  50212. },
  50213. [
  50214. {
  50215. name: "Normal",
  50216. height: math.unit(4 + 4/12, "feet"),
  50217. default: true
  50218. },
  50219. ]
  50220. ))
  50221. characterMakers.push(() => makeCharacter(
  50222. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  50223. {
  50224. front: {
  50225. height: math.unit(6 + 2/12, "feet"),
  50226. name: "Front",
  50227. image: {
  50228. source: "./media/characters/raphael/front.svg",
  50229. extra: 1101/962,
  50230. bottom: 59/1160
  50231. }
  50232. },
  50233. },
  50234. [
  50235. {
  50236. name: "Normal",
  50237. height: math.unit(6 + 2/12, "feet"),
  50238. default: true
  50239. },
  50240. ]
  50241. ))
  50242. characterMakers.push(() => makeCharacter(
  50243. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  50244. {
  50245. front: {
  50246. height: math.unit(6, "feet"),
  50247. weight: math.unit(150, "lb"),
  50248. name: "Front",
  50249. image: {
  50250. source: "./media/characters/victor-williams/front.svg",
  50251. extra: 1894/1825,
  50252. bottom: 67/1961
  50253. }
  50254. },
  50255. },
  50256. [
  50257. {
  50258. name: "Normal",
  50259. height: math.unit(6, "feet"),
  50260. default: true
  50261. },
  50262. ]
  50263. ))
  50264. characterMakers.push(() => makeCharacter(
  50265. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  50266. {
  50267. front: {
  50268. height: math.unit(5 + 8/12, "feet"),
  50269. weight: math.unit(150, "lb"),
  50270. name: "Front",
  50271. image: {
  50272. source: "./media/characters/rachel/front.svg",
  50273. extra: 1902/1787,
  50274. bottom: 46/1948
  50275. }
  50276. },
  50277. },
  50278. [
  50279. {
  50280. name: "Base Height",
  50281. height: math.unit(5 + 8/12, "feet"),
  50282. default: true
  50283. },
  50284. {
  50285. name: "Macro",
  50286. height: math.unit(200, "feet")
  50287. },
  50288. {
  50289. name: "Mega Macro",
  50290. height: math.unit(1, "mile")
  50291. },
  50292. {
  50293. name: "Giga Macro",
  50294. height: math.unit(1500, "miles")
  50295. },
  50296. {
  50297. name: "Tera Macro",
  50298. height: math.unit(8000, "miles")
  50299. },
  50300. {
  50301. name: "Tera Macro+",
  50302. height: math.unit(2e5, "miles")
  50303. },
  50304. ]
  50305. ))
  50306. characterMakers.push(() => makeCharacter(
  50307. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  50308. {
  50309. front: {
  50310. height: math.unit(6.5, "feet"),
  50311. name: "Front",
  50312. image: {
  50313. source: "./media/characters/svetlana-rozovskaya/front.svg",
  50314. extra: 860/819,
  50315. bottom: 307/1167
  50316. }
  50317. },
  50318. back: {
  50319. height: math.unit(6.5, "feet"),
  50320. name: "Back",
  50321. image: {
  50322. source: "./media/characters/svetlana-rozovskaya/back.svg",
  50323. extra: 880/837,
  50324. bottom: 395/1275
  50325. }
  50326. },
  50327. sleeping: {
  50328. height: math.unit(2.79, "feet"),
  50329. name: "Sleeping",
  50330. image: {
  50331. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  50332. extra: 465/383,
  50333. bottom: 263/728
  50334. }
  50335. },
  50336. maw: {
  50337. height: math.unit(2.52, "feet"),
  50338. name: "Maw",
  50339. image: {
  50340. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  50341. }
  50342. },
  50343. },
  50344. [
  50345. {
  50346. name: "Normal",
  50347. height: math.unit(6.5, "feet"),
  50348. default: true
  50349. },
  50350. ]
  50351. ))
  50352. characterMakers.push(() => makeCharacter(
  50353. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  50354. {
  50355. front: {
  50356. height: math.unit(5, "feet"),
  50357. name: "Front",
  50358. image: {
  50359. source: "./media/characters/nova-nerium/front.svg",
  50360. extra: 1548/1392,
  50361. bottom: 374/1922
  50362. }
  50363. },
  50364. back: {
  50365. height: math.unit(5, "feet"),
  50366. name: "Back",
  50367. image: {
  50368. source: "./media/characters/nova-nerium/back.svg",
  50369. extra: 1658/1468,
  50370. bottom: 257/1915
  50371. }
  50372. },
  50373. },
  50374. [
  50375. {
  50376. name: "Normal",
  50377. height: math.unit(5, "feet"),
  50378. default: true
  50379. },
  50380. ]
  50381. ))
  50382. characterMakers.push(() => makeCharacter(
  50383. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  50384. {
  50385. front: {
  50386. height: math.unit(5 + 4/12, "feet"),
  50387. name: "Front",
  50388. image: {
  50389. source: "./media/characters/ashe-pyriph/front.svg",
  50390. extra: 1935/1747,
  50391. bottom: 60/1995
  50392. }
  50393. },
  50394. },
  50395. [
  50396. {
  50397. name: "Normal",
  50398. height: math.unit(5 + 4/12, "feet"),
  50399. default: true
  50400. },
  50401. ]
  50402. ))
  50403. characterMakers.push(() => makeCharacter(
  50404. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  50405. {
  50406. front: {
  50407. height: math.unit(8.7, "feet"),
  50408. name: "Front",
  50409. image: {
  50410. source: "./media/characters/flicker-wisp/front.svg",
  50411. extra: 1835/1613,
  50412. bottom: 449/2284
  50413. }
  50414. },
  50415. side: {
  50416. height: math.unit(8.7, "feet"),
  50417. name: "Side",
  50418. image: {
  50419. source: "./media/characters/flicker-wisp/side.svg",
  50420. extra: 1841/1642,
  50421. bottom: 336/2177
  50422. },
  50423. default: true
  50424. },
  50425. maw: {
  50426. height: math.unit(3.35, "feet"),
  50427. name: "Maw",
  50428. image: {
  50429. source: "./media/characters/flicker-wisp/maw.svg",
  50430. extra: 2338/1506,
  50431. bottom: 0/2338
  50432. }
  50433. },
  50434. ovipositor: {
  50435. height: math.unit(4.95, "feet"),
  50436. name: "Ovipositor",
  50437. image: {
  50438. source: "./media/characters/flicker-wisp/ovipositor.svg"
  50439. }
  50440. },
  50441. egg: {
  50442. height: math.unit(0.385, "feet"),
  50443. weight: math.unit(2, "lb"),
  50444. name: "Egg",
  50445. image: {
  50446. source: "./media/characters/flicker-wisp/egg.svg"
  50447. }
  50448. },
  50449. },
  50450. [
  50451. {
  50452. name: "Normal",
  50453. height: math.unit(8.7, "feet"),
  50454. default: true
  50455. },
  50456. ]
  50457. ))
  50458. characterMakers.push(() => makeCharacter(
  50459. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  50460. {
  50461. side: {
  50462. height: math.unit(11, "feet"),
  50463. name: "Side",
  50464. image: {
  50465. source: "./media/characters/faefnul/side.svg",
  50466. extra: 1100/1007,
  50467. bottom: 0/1100
  50468. }
  50469. },
  50470. },
  50471. [
  50472. {
  50473. name: "Normal",
  50474. height: math.unit(11, "feet"),
  50475. default: true
  50476. },
  50477. ]
  50478. ))
  50479. characterMakers.push(() => makeCharacter(
  50480. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  50481. {
  50482. front: {
  50483. height: math.unit(6 + 2/12, "feet"),
  50484. name: "Front",
  50485. image: {
  50486. source: "./media/characters/shady/front.svg",
  50487. extra: 502/461,
  50488. bottom: 9/511
  50489. }
  50490. },
  50491. kneeling: {
  50492. height: math.unit(4.6, "feet"),
  50493. name: "Kneeling",
  50494. image: {
  50495. source: "./media/characters/shady/kneeling.svg",
  50496. extra: 1328/1219,
  50497. bottom: 117/1445
  50498. }
  50499. },
  50500. maw: {
  50501. height: math.unit(2, "feet"),
  50502. name: "Maw",
  50503. image: {
  50504. source: "./media/characters/shady/maw.svg"
  50505. }
  50506. },
  50507. },
  50508. [
  50509. {
  50510. name: "Nano",
  50511. height: math.unit(1, "mm")
  50512. },
  50513. {
  50514. name: "Micro",
  50515. height: math.unit(12, "mm")
  50516. },
  50517. {
  50518. name: "Tiny",
  50519. height: math.unit(3, "inches")
  50520. },
  50521. {
  50522. name: "Normal",
  50523. height: math.unit(6 + 2/12, "feet"),
  50524. default: true
  50525. },
  50526. {
  50527. name: "Big",
  50528. height: math.unit(15, "feet")
  50529. },
  50530. {
  50531. name: "Macro",
  50532. height: math.unit(150, "feet")
  50533. },
  50534. {
  50535. name: "Titanic",
  50536. height: math.unit(500, "feet")
  50537. },
  50538. ]
  50539. ))
  50540. characterMakers.push(() => makeCharacter(
  50541. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  50542. {
  50543. front: {
  50544. height: math.unit(12, "feet"),
  50545. name: "Front",
  50546. image: {
  50547. source: "./media/characters/fenrir/front.svg",
  50548. extra: 968/875,
  50549. bottom: 22/990
  50550. }
  50551. },
  50552. },
  50553. [
  50554. {
  50555. name: "Big",
  50556. height: math.unit(12, "feet"),
  50557. default: true
  50558. },
  50559. ]
  50560. ))
  50561. characterMakers.push(() => makeCharacter(
  50562. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  50563. {
  50564. front: {
  50565. height: math.unit(5 + 4/12, "feet"),
  50566. name: "Front",
  50567. image: {
  50568. source: "./media/characters/makar/front.svg",
  50569. extra: 1181/1112,
  50570. bottom: 78/1259
  50571. }
  50572. },
  50573. },
  50574. [
  50575. {
  50576. name: "Normal",
  50577. height: math.unit(5 + 4/12, "feet"),
  50578. default: true
  50579. },
  50580. ]
  50581. ))
  50582. characterMakers.push(() => makeCharacter(
  50583. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  50584. {
  50585. front: {
  50586. height: math.unit(5 + 7/12, "feet"),
  50587. name: "Front",
  50588. image: {
  50589. source: "./media/characters/callow/front.svg",
  50590. extra: 1482/1304,
  50591. bottom: 23/1505
  50592. }
  50593. },
  50594. back: {
  50595. height: math.unit(5 + 7/12, "feet"),
  50596. name: "Back",
  50597. image: {
  50598. source: "./media/characters/callow/back.svg",
  50599. extra: 1484/1296,
  50600. bottom: 25/1509
  50601. }
  50602. },
  50603. },
  50604. [
  50605. {
  50606. name: "Micro",
  50607. height: math.unit(3, "inches"),
  50608. default: true
  50609. },
  50610. {
  50611. name: "Normal",
  50612. height: math.unit(5 + 7/12, "feet")
  50613. },
  50614. ]
  50615. ))
  50616. characterMakers.push(() => makeCharacter(
  50617. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  50618. {
  50619. front: {
  50620. height: math.unit(6 + 2/12, "feet"),
  50621. name: "Front",
  50622. image: {
  50623. source: "./media/characters/natel/front.svg",
  50624. extra: 1833/1692,
  50625. bottom: 166/1999
  50626. }
  50627. },
  50628. },
  50629. [
  50630. {
  50631. name: "Normal",
  50632. height: math.unit(6 + 2/12, "feet"),
  50633. default: true
  50634. },
  50635. ]
  50636. ))
  50637. characterMakers.push(() => makeCharacter(
  50638. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  50639. {
  50640. front: {
  50641. height: math.unit(1.75, "meters"),
  50642. name: "Front",
  50643. image: {
  50644. source: "./media/characters/misu/front.svg",
  50645. extra: 1690/1558,
  50646. bottom: 234/1924
  50647. }
  50648. },
  50649. back: {
  50650. height: math.unit(1.75, "meters"),
  50651. name: "Back",
  50652. image: {
  50653. source: "./media/characters/misu/back.svg",
  50654. extra: 1762/1618,
  50655. bottom: 146/1908
  50656. }
  50657. },
  50658. frontNude: {
  50659. height: math.unit(1.75, "meters"),
  50660. name: "Front (Nude)",
  50661. image: {
  50662. source: "./media/characters/misu/front-nude.svg",
  50663. extra: 1690/1558,
  50664. bottom: 234/1924
  50665. }
  50666. },
  50667. backNude: {
  50668. height: math.unit(1.75, "meters"),
  50669. name: "Back (Nude)",
  50670. image: {
  50671. source: "./media/characters/misu/back-nude.svg",
  50672. extra: 1762/1618,
  50673. bottom: 146/1908
  50674. }
  50675. },
  50676. frontErect: {
  50677. height: math.unit(1.75, "meters"),
  50678. name: "Front (Erect)",
  50679. image: {
  50680. source: "./media/characters/misu/front-erect.svg",
  50681. extra: 1690/1558,
  50682. bottom: 234/1924
  50683. }
  50684. },
  50685. maw: {
  50686. height: math.unit(0.47, "meters"),
  50687. name: "Maw",
  50688. image: {
  50689. source: "./media/characters/misu/maw.svg"
  50690. }
  50691. },
  50692. head: {
  50693. height: math.unit(0.35, "meters"),
  50694. name: "Head",
  50695. image: {
  50696. source: "./media/characters/misu/head.svg"
  50697. }
  50698. },
  50699. rear: {
  50700. height: math.unit(0.47, "meters"),
  50701. name: "Rear",
  50702. image: {
  50703. source: "./media/characters/misu/rear.svg"
  50704. }
  50705. },
  50706. },
  50707. [
  50708. {
  50709. name: "Normal",
  50710. height: math.unit(1.75, "meters")
  50711. },
  50712. {
  50713. name: "Not good for the people",
  50714. height: math.unit(42, "meters")
  50715. },
  50716. {
  50717. name: "Not good for the neighborhood",
  50718. height: math.unit(135, "meters")
  50719. },
  50720. {
  50721. name: "Bit bigger problem",
  50722. height: math.unit(380, "meters"),
  50723. default: true
  50724. },
  50725. {
  50726. name: "Not good for the city",
  50727. height: math.unit(1.5, "km")
  50728. },
  50729. {
  50730. name: "Not good for the county",
  50731. height: math.unit(5.5, "km")
  50732. },
  50733. {
  50734. name: "Not good for the state",
  50735. height: math.unit(25, "km")
  50736. },
  50737. {
  50738. name: "Not good for the country",
  50739. height: math.unit(125, "km")
  50740. },
  50741. {
  50742. name: "Not good for the continent",
  50743. height: math.unit(2100, "km")
  50744. },
  50745. {
  50746. name: "Not good for the planet",
  50747. height: math.unit(35000, "km")
  50748. },
  50749. {
  50750. name: "Just no",
  50751. height: math.unit(8.5e18, "km")
  50752. },
  50753. ]
  50754. ))
  50755. characterMakers.push(() => makeCharacter(
  50756. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  50757. {
  50758. front: {
  50759. height: math.unit(6.5, "feet"),
  50760. name: "Front",
  50761. image: {
  50762. source: "./media/characters/poppy/front.svg",
  50763. extra: 1878/1812,
  50764. bottom: 43/1921
  50765. }
  50766. },
  50767. feet: {
  50768. height: math.unit(1.06, "feet"),
  50769. name: "Feet",
  50770. image: {
  50771. source: "./media/characters/poppy/feet.svg",
  50772. extra: 1083/1083,
  50773. bottom: 87/1170
  50774. }
  50775. },
  50776. },
  50777. [
  50778. {
  50779. name: "Human",
  50780. height: math.unit(6.5, "feet")
  50781. },
  50782. {
  50783. name: "Default",
  50784. height: math.unit(300, "feet"),
  50785. default: true
  50786. },
  50787. {
  50788. name: "Huge",
  50789. height: math.unit(850, "feet")
  50790. },
  50791. {
  50792. name: "Mega",
  50793. height: math.unit(8000, "feet")
  50794. },
  50795. {
  50796. name: "Giga",
  50797. height: math.unit(300, "miles")
  50798. },
  50799. ]
  50800. ))
  50801. characterMakers.push(() => makeCharacter(
  50802. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  50803. {
  50804. bipedal: {
  50805. height: math.unit(7, "feet"),
  50806. name: "Bipedal",
  50807. image: {
  50808. source: "./media/characters/zener/bipedal.svg",
  50809. extra: 874/805,
  50810. bottom: 109/983
  50811. }
  50812. },
  50813. quadrupedal: {
  50814. height: math.unit(4.64, "feet"),
  50815. name: "Quadrupedal",
  50816. image: {
  50817. source: "./media/characters/zener/quadrupedal.svg",
  50818. extra: 638/507,
  50819. bottom: 190/828
  50820. }
  50821. },
  50822. cock: {
  50823. height: math.unit(18, "inches"),
  50824. name: "Cock",
  50825. image: {
  50826. source: "./media/characters/zener/cock.svg"
  50827. }
  50828. },
  50829. },
  50830. [
  50831. {
  50832. name: "Normal",
  50833. height: math.unit(7, "feet"),
  50834. default: true
  50835. },
  50836. ]
  50837. ))
  50838. characterMakers.push(() => makeCharacter(
  50839. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  50840. {
  50841. nude: {
  50842. height: math.unit(5 + 6/12, "feet"),
  50843. name: "Nude",
  50844. image: {
  50845. source: "./media/characters/charlie-dog/nude.svg",
  50846. extra: 768/734,
  50847. bottom: 26/794
  50848. }
  50849. },
  50850. dressed: {
  50851. height: math.unit(5 + 6/12, "feet"),
  50852. name: "Dressed",
  50853. image: {
  50854. source: "./media/characters/charlie-dog/dressed.svg",
  50855. extra: 768/734,
  50856. bottom: 26/794
  50857. }
  50858. },
  50859. },
  50860. [
  50861. {
  50862. name: "Normal",
  50863. height: math.unit(5 + 6/12, "feet"),
  50864. default: true
  50865. },
  50866. ]
  50867. ))
  50868. characterMakers.push(() => makeCharacter(
  50869. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  50870. {
  50871. front: {
  50872. height: math.unit(6 + 4/12, "feet"),
  50873. name: "Front",
  50874. image: {
  50875. source: "./media/characters/ir'istrasz/front.svg",
  50876. extra: 1014/977,
  50877. bottom: 65/1079
  50878. }
  50879. },
  50880. back: {
  50881. height: math.unit(6 + 4/12, "feet"),
  50882. name: "Back",
  50883. image: {
  50884. source: "./media/characters/ir'istrasz/back.svg",
  50885. extra: 1024/992,
  50886. bottom: 34/1058
  50887. }
  50888. },
  50889. },
  50890. [
  50891. {
  50892. name: "Normal",
  50893. height: math.unit(6 + 4/12, "feet"),
  50894. default: true
  50895. },
  50896. ]
  50897. ))
  50898. characterMakers.push(() => makeCharacter(
  50899. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  50900. {
  50901. front: {
  50902. height: math.unit(5 + 8/12, "feet"),
  50903. name: "Front",
  50904. image: {
  50905. source: "./media/characters/dee-ditto/front.svg",
  50906. extra: 1874/1785,
  50907. bottom: 68/1942
  50908. }
  50909. },
  50910. back: {
  50911. height: math.unit(5 + 8/12, "feet"),
  50912. name: "Back",
  50913. image: {
  50914. source: "./media/characters/dee-ditto/back.svg",
  50915. extra: 1870/1783,
  50916. bottom: 77/1947
  50917. }
  50918. },
  50919. },
  50920. [
  50921. {
  50922. name: "Normal",
  50923. height: math.unit(5 + 8/12, "feet"),
  50924. default: true
  50925. },
  50926. ]
  50927. ))
  50928. characterMakers.push(() => makeCharacter(
  50929. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  50930. {
  50931. front: {
  50932. height: math.unit(7 + 6/12, "feet"),
  50933. name: "Front",
  50934. image: {
  50935. source: "./media/characters/fey/front.svg",
  50936. extra: 995/979,
  50937. bottom: 30/1025
  50938. }
  50939. },
  50940. back: {
  50941. height: math.unit(7 + 6/12, "feet"),
  50942. name: "Back",
  50943. image: {
  50944. source: "./media/characters/fey/back.svg",
  50945. extra: 1079/1008,
  50946. bottom: 5/1084
  50947. }
  50948. },
  50949. dressed: {
  50950. height: math.unit(7 + 6/12, "feet"),
  50951. name: "Dressed",
  50952. image: {
  50953. source: "./media/characters/fey/dressed.svg",
  50954. extra: 995/979,
  50955. bottom: 30/1025
  50956. }
  50957. },
  50958. },
  50959. [
  50960. {
  50961. name: "Normal",
  50962. height: math.unit(7 + 6/12, "feet"),
  50963. default: true
  50964. },
  50965. ]
  50966. ))
  50967. characterMakers.push(() => makeCharacter(
  50968. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  50969. {
  50970. standing: {
  50971. height: math.unit(17, "feet"),
  50972. name: "Standing",
  50973. image: {
  50974. source: "./media/characters/aster/standing.svg",
  50975. extra: 1798/1598,
  50976. bottom: 117/1915
  50977. }
  50978. },
  50979. },
  50980. [
  50981. {
  50982. name: "Normal",
  50983. height: math.unit(17, "feet"),
  50984. default: true
  50985. },
  50986. {
  50987. name: "Homewrecker",
  50988. height: math.unit(95, "feet")
  50989. },
  50990. {
  50991. name: "Planet Devourer",
  50992. height: math.unit(1008000, "miles")
  50993. },
  50994. ]
  50995. ))
  50996. characterMakers.push(() => makeCharacter(
  50997. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  50998. {
  50999. front: {
  51000. height: math.unit(6 + 5/12, "feet"),
  51001. weight: math.unit(265, "lb"),
  51002. name: "Front",
  51003. image: {
  51004. source: "./media/characters/devon-childs/front.svg",
  51005. extra: 1795/1721,
  51006. bottom: 41/1836
  51007. }
  51008. },
  51009. side: {
  51010. height: math.unit(6 + 5/12, "feet"),
  51011. weight: math.unit(265, "lb"),
  51012. name: "Side",
  51013. image: {
  51014. source: "./media/characters/devon-childs/side.svg",
  51015. extra: 1812/1738,
  51016. bottom: 30/1842
  51017. }
  51018. },
  51019. back: {
  51020. height: math.unit(6 + 5/12, "feet"),
  51021. weight: math.unit(265, "lb"),
  51022. name: "Back",
  51023. image: {
  51024. source: "./media/characters/devon-childs/back.svg",
  51025. extra: 1808/1735,
  51026. bottom: 23/1831
  51027. }
  51028. },
  51029. hand: {
  51030. height: math.unit(1.464, "feet"),
  51031. name: "Hand",
  51032. image: {
  51033. source: "./media/characters/devon-childs/hand.svg"
  51034. }
  51035. },
  51036. foot: {
  51037. height: math.unit(1.6, "feet"),
  51038. name: "Foot",
  51039. image: {
  51040. source: "./media/characters/devon-childs/foot.svg"
  51041. }
  51042. },
  51043. },
  51044. [
  51045. {
  51046. name: "Micro",
  51047. height: math.unit(7, "cm")
  51048. },
  51049. {
  51050. name: "Normal",
  51051. height: math.unit(6 + 5/12, "feet"),
  51052. default: true
  51053. },
  51054. {
  51055. name: "Macro",
  51056. height: math.unit(154, "feet")
  51057. },
  51058. ]
  51059. ))
  51060. characterMakers.push(() => makeCharacter(
  51061. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  51062. {
  51063. front: {
  51064. height: math.unit(6, "feet"),
  51065. weight: math.unit(180, "lb"),
  51066. name: "Front",
  51067. image: {
  51068. source: "./media/characters/lydemox-vir/front.svg",
  51069. extra: 1632/1435,
  51070. bottom: 58/1690
  51071. }
  51072. },
  51073. frontSFW: {
  51074. height: math.unit(6, "feet"),
  51075. weight: math.unit(180, "lb"),
  51076. name: "Front (SFW)",
  51077. image: {
  51078. source: "./media/characters/lydemox-vir/front-sfw.svg",
  51079. extra: 1632/1435,
  51080. bottom: 58/1690
  51081. }
  51082. },
  51083. back: {
  51084. height: math.unit(6, "feet"),
  51085. weight: math.unit(180, "lb"),
  51086. name: "Back",
  51087. image: {
  51088. source: "./media/characters/lydemox-vir/back.svg",
  51089. extra: 1593/1408,
  51090. bottom: 31/1624
  51091. }
  51092. },
  51093. paw: {
  51094. height: math.unit(1.85, "feet"),
  51095. name: "Paw",
  51096. image: {
  51097. source: "./media/characters/lydemox-vir/paw.svg"
  51098. }
  51099. },
  51100. dick: {
  51101. height: math.unit(1.8, "feet"),
  51102. name: "Dick",
  51103. image: {
  51104. source: "./media/characters/lydemox-vir/dick.svg"
  51105. }
  51106. },
  51107. },
  51108. [
  51109. {
  51110. name: "Macro",
  51111. height: math.unit(100, "feet"),
  51112. default: true
  51113. },
  51114. {
  51115. name: "Teramacro",
  51116. height: math.unit(1, "earth")
  51117. },
  51118. {
  51119. name: "Planetary",
  51120. height: math.unit(20, "earths")
  51121. },
  51122. ]
  51123. ))
  51124. characterMakers.push(() => makeCharacter(
  51125. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  51126. {
  51127. front: {
  51128. height: math.unit(15 + 8/12, "feet"),
  51129. weight: math.unit(1237, "kg"),
  51130. name: "Front",
  51131. image: {
  51132. source: "./media/characters/mia/front.svg",
  51133. extra: 1573/1446,
  51134. bottom: 58/1631
  51135. }
  51136. },
  51137. },
  51138. [
  51139. {
  51140. name: "Small",
  51141. height: math.unit(9 + 5/12, "feet")
  51142. },
  51143. {
  51144. name: "Normal",
  51145. height: math.unit(15 + 8/12, "feet"),
  51146. default: true
  51147. },
  51148. ]
  51149. ))
  51150. characterMakers.push(() => makeCharacter(
  51151. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  51152. {
  51153. front: {
  51154. height: math.unit(10 + 6/12, "feet"),
  51155. weight: math.unit(1.3, "tons"),
  51156. name: "Front",
  51157. image: {
  51158. source: "./media/characters/mr-graves/front.svg",
  51159. extra: 1779/1695,
  51160. bottom: 198/1977
  51161. }
  51162. },
  51163. },
  51164. [
  51165. {
  51166. name: "Normal",
  51167. height: math.unit(10 + 6 /12, "feet"),
  51168. default: true
  51169. },
  51170. ]
  51171. ))
  51172. characterMakers.push(() => makeCharacter(
  51173. { name: "Jess", species: ["human"], tags: ["anthro"] },
  51174. {
  51175. dressedFront: {
  51176. height: math.unit(5 + 8/12, "feet"),
  51177. weight: math.unit(125, "lb"),
  51178. name: "Dressed (Front)",
  51179. image: {
  51180. source: "./media/characters/jess/dressed-front.svg",
  51181. extra: 1176/1152,
  51182. bottom: 42/1218
  51183. }
  51184. },
  51185. dressedSide: {
  51186. height: math.unit(5 + 8/12, "feet"),
  51187. weight: math.unit(125, "lb"),
  51188. name: "Dressed (Side)",
  51189. image: {
  51190. source: "./media/characters/jess/dressed-side.svg",
  51191. extra: 1204/1190,
  51192. bottom: 6/1210
  51193. }
  51194. },
  51195. nudeFront: {
  51196. height: math.unit(5 + 8/12, "feet"),
  51197. weight: math.unit(125, "lb"),
  51198. name: "Nude (Front)",
  51199. image: {
  51200. source: "./media/characters/jess/nude-front.svg",
  51201. extra: 1176/1152,
  51202. bottom: 42/1218
  51203. }
  51204. },
  51205. nudeSide: {
  51206. height: math.unit(5 + 8/12, "feet"),
  51207. weight: math.unit(125, "lb"),
  51208. name: "Nude (Side)",
  51209. image: {
  51210. source: "./media/characters/jess/nude-side.svg",
  51211. extra: 1204/1190,
  51212. bottom: 6/1210
  51213. }
  51214. },
  51215. organsFront: {
  51216. height: math.unit(2.83799342105, "feet"),
  51217. name: "Organs (Front)",
  51218. image: {
  51219. source: "./media/characters/jess/organs-front.svg"
  51220. }
  51221. },
  51222. organsSide: {
  51223. height: math.unit(2.64225290474, "feet"),
  51224. name: "Organs (Side)",
  51225. image: {
  51226. source: "./media/characters/jess/organs-side.svg"
  51227. }
  51228. },
  51229. digestiveTractFront: {
  51230. height: math.unit(2.8106580871, "feet"),
  51231. name: "Digestive Tract (Front)",
  51232. image: {
  51233. source: "./media/characters/jess/digestive-tract-front.svg"
  51234. }
  51235. },
  51236. digestiveTractSide: {
  51237. height: math.unit(2.54365045014, "feet"),
  51238. name: "Digestive Tract (Side)",
  51239. image: {
  51240. source: "./media/characters/jess/digestive-tract-side.svg"
  51241. }
  51242. },
  51243. respiratorySystemFront: {
  51244. height: math.unit(1.11196233456, "feet"),
  51245. name: "Respiratory System (Front)",
  51246. image: {
  51247. source: "./media/characters/jess/respiratory-system-front.svg"
  51248. }
  51249. },
  51250. respiratorySystemSide: {
  51251. height: math.unit(0.89327966297, "feet"),
  51252. name: "Respiratory System (Side)",
  51253. image: {
  51254. source: "./media/characters/jess/respiratory-system-side.svg"
  51255. }
  51256. },
  51257. urinaryTractFront: {
  51258. height: math.unit(1.16126356186, "feet"),
  51259. name: "Urinary Tract (Front)",
  51260. image: {
  51261. source: "./media/characters/jess/urinary-tract-front.svg"
  51262. }
  51263. },
  51264. urinaryTractSide: {
  51265. height: math.unit(1.20910039627, "feet"),
  51266. name: "Urinary Tract (Side)",
  51267. image: {
  51268. source: "./media/characters/jess/urinary-tract-side.svg"
  51269. }
  51270. },
  51271. reproductiveOrgansFront: {
  51272. height: math.unit(0.48422591566, "feet"),
  51273. name: "Reproductive Organs (Front)",
  51274. image: {
  51275. source: "./media/characters/jess/reproductive-organs-front.svg"
  51276. }
  51277. },
  51278. reproductiveOrgansSide: {
  51279. height: math.unit(0.61553314481, "feet"),
  51280. name: "Reproductive Organs (Side)",
  51281. image: {
  51282. source: "./media/characters/jess/reproductive-organs-side.svg"
  51283. }
  51284. },
  51285. breastsFront: {
  51286. height: math.unit(0.47690395121, "feet"),
  51287. name: "Breasts (Front)",
  51288. image: {
  51289. source: "./media/characters/jess/breasts-front.svg"
  51290. }
  51291. },
  51292. breastsSide: {
  51293. height: math.unit(0.30556998307, "feet"),
  51294. name: "Breasts (Side)",
  51295. image: {
  51296. source: "./media/characters/jess/breasts-side.svg"
  51297. }
  51298. },
  51299. heartFront: {
  51300. height: math.unit(0.53011022622, "feet"),
  51301. name: "Heart (Front)",
  51302. image: {
  51303. source: "./media/characters/jess/heart-front.svg"
  51304. }
  51305. },
  51306. heartSide: {
  51307. height: math.unit(0.51790695213, "feet"),
  51308. name: "Heart (Side)",
  51309. image: {
  51310. source: "./media/characters/jess/heart-side.svg"
  51311. }
  51312. },
  51313. earsAndNoseFront: {
  51314. height: math.unit(0.29385483995, "feet"),
  51315. name: "Ears and Nose (Front)",
  51316. image: {
  51317. source: "./media/characters/jess/ears-and-nose-front.svg"
  51318. }
  51319. },
  51320. earsAndNoseSide: {
  51321. height: math.unit(0.18109658741, "feet"),
  51322. name: "Ears and Nose (Side)",
  51323. image: {
  51324. source: "./media/characters/jess/ears-and-nose-side.svg"
  51325. }
  51326. },
  51327. },
  51328. [
  51329. {
  51330. name: "Normal",
  51331. height: math.unit(5 + 8/12, "feet"),
  51332. default: true
  51333. },
  51334. ]
  51335. ))
  51336. characterMakers.push(() => makeCharacter(
  51337. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  51338. {
  51339. front: {
  51340. height: math.unit(6, "feet"),
  51341. weight: math.unit(6.64467e-7, "grams"),
  51342. name: "Front",
  51343. image: {
  51344. source: "./media/characters/wimpering/front.svg",
  51345. extra: 597/587,
  51346. bottom: 34/631
  51347. }
  51348. },
  51349. },
  51350. [
  51351. {
  51352. name: "Micro",
  51353. height: math.unit(0.4, "mm"),
  51354. default: true
  51355. },
  51356. ]
  51357. ))
  51358. characterMakers.push(() => makeCharacter(
  51359. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  51360. {
  51361. front: {
  51362. height: math.unit(5 + 2/12, "feet"),
  51363. weight: math.unit(110, "lb"),
  51364. name: "Front",
  51365. image: {
  51366. source: "./media/characters/keltre/front.svg",
  51367. extra: 1099/1057,
  51368. bottom: 22/1121
  51369. }
  51370. },
  51371. back: {
  51372. height: math.unit(5 + 2/12, "feet"),
  51373. weight: math.unit(110, "lb"),
  51374. name: "Back",
  51375. image: {
  51376. source: "./media/characters/keltre/back.svg",
  51377. extra: 1095/1053,
  51378. bottom: 17/1112
  51379. }
  51380. },
  51381. dressed: {
  51382. height: math.unit(5 + 2/12, "feet"),
  51383. weight: math.unit(110, "lb"),
  51384. name: "Dressed",
  51385. image: {
  51386. source: "./media/characters/keltre/dressed.svg",
  51387. extra: 1099/1057,
  51388. bottom: 22/1121
  51389. }
  51390. },
  51391. winter: {
  51392. height: math.unit(5 + 2/12, "feet"),
  51393. weight: math.unit(110, "lb"),
  51394. name: "Winter",
  51395. image: {
  51396. source: "./media/characters/keltre/winter.svg",
  51397. extra: 1099/1057,
  51398. bottom: 22/1121
  51399. }
  51400. },
  51401. head: {
  51402. height: math.unit(1.61 * 0.86, "feet"),
  51403. name: "Head",
  51404. image: {
  51405. source: "./media/characters/keltre/head.svg",
  51406. extra: 534/421,
  51407. bottom: 0/534
  51408. }
  51409. },
  51410. hand: {
  51411. height: math.unit(1.3 * 0.86, "feet"),
  51412. name: "Hand",
  51413. image: {
  51414. source: "./media/characters/keltre/hand.svg"
  51415. }
  51416. },
  51417. foot: {
  51418. height: math.unit(1.8 * 0.86, "feet"),
  51419. name: "Foot",
  51420. image: {
  51421. source: "./media/characters/keltre/foot.svg"
  51422. }
  51423. },
  51424. },
  51425. [
  51426. {
  51427. name: "Fine",
  51428. height: math.unit(1, "inch")
  51429. },
  51430. {
  51431. name: "Dimnutive",
  51432. height: math.unit(4, "inches")
  51433. },
  51434. {
  51435. name: "Tiny",
  51436. height: math.unit(1, "foot")
  51437. },
  51438. {
  51439. name: "Small",
  51440. height: math.unit(3, "feet")
  51441. },
  51442. {
  51443. name: "Normal",
  51444. height: math.unit(5 + 2/12, "feet"),
  51445. default: true
  51446. },
  51447. ]
  51448. ))
  51449. characterMakers.push(() => makeCharacter(
  51450. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  51451. {
  51452. front: {
  51453. height: math.unit(6 + 2/12, "feet"),
  51454. name: "Front",
  51455. image: {
  51456. source: "./media/characters/nox/front.svg",
  51457. extra: 1917/1830,
  51458. bottom: 74/1991
  51459. }
  51460. },
  51461. back: {
  51462. height: math.unit(6 + 2/12, "feet"),
  51463. name: "Back",
  51464. image: {
  51465. source: "./media/characters/nox/back.svg",
  51466. extra: 1896/1815,
  51467. bottom: 21/1917
  51468. }
  51469. },
  51470. head: {
  51471. height: math.unit(1.1, "feet"),
  51472. name: "Head",
  51473. image: {
  51474. source: "./media/characters/nox/head.svg",
  51475. extra: 874/704,
  51476. bottom: 0/874
  51477. }
  51478. },
  51479. tattoo: {
  51480. height: math.unit(0.729, "feet"),
  51481. name: "Tattoo",
  51482. image: {
  51483. source: "./media/characters/nox/tattoo.svg"
  51484. }
  51485. },
  51486. },
  51487. [
  51488. {
  51489. name: "Normal",
  51490. height: math.unit(6 + 2/12, "feet")
  51491. },
  51492. {
  51493. name: "Gigamacro",
  51494. height: math.unit(2, "earths"),
  51495. default: true
  51496. },
  51497. {
  51498. name: "Cosmic",
  51499. height: math.unit(867, "yottameters")
  51500. },
  51501. ]
  51502. ))
  51503. characterMakers.push(() => makeCharacter(
  51504. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  51505. {
  51506. front: {
  51507. height: math.unit(6, "feet"),
  51508. weight: math.unit(150, "lb"),
  51509. name: "Front",
  51510. image: {
  51511. source: "./media/characters/caspian/front.svg",
  51512. extra: 1443/1359,
  51513. bottom: 0/1443
  51514. }
  51515. },
  51516. back: {
  51517. height: math.unit(6, "feet"),
  51518. weight: math.unit(150, "lb"),
  51519. name: "Back",
  51520. image: {
  51521. source: "./media/characters/caspian/back.svg",
  51522. extra: 1379/1309,
  51523. bottom: 0/1379
  51524. }
  51525. },
  51526. head: {
  51527. height: math.unit(0.9, "feet"),
  51528. name: "Head",
  51529. image: {
  51530. source: "./media/characters/caspian/head.svg",
  51531. extra: 692/492,
  51532. bottom: 0/692
  51533. }
  51534. },
  51535. headAlt: {
  51536. height: math.unit(0.95, "feet"),
  51537. name: "Head (Alt)",
  51538. image: {
  51539. source: "./media/characters/caspian/head-alt.svg",
  51540. extra: 668/508,
  51541. bottom: 0/668
  51542. }
  51543. },
  51544. hand: {
  51545. height: math.unit(0.8, "feet"),
  51546. name: "Hand",
  51547. image: {
  51548. source: "./media/characters/caspian/hand.svg"
  51549. }
  51550. },
  51551. paw: {
  51552. height: math.unit(0.95, "feet"),
  51553. name: "Paw",
  51554. image: {
  51555. source: "./media/characters/caspian/paw.svg"
  51556. }
  51557. },
  51558. },
  51559. [
  51560. {
  51561. name: "Normal",
  51562. height: math.unit(162, "feet"),
  51563. default: true
  51564. },
  51565. ]
  51566. ))
  51567. characterMakers.push(() => makeCharacter(
  51568. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  51569. {
  51570. front: {
  51571. height: math.unit(6, "feet"),
  51572. name: "Front",
  51573. image: {
  51574. source: "./media/characters/myra-aisling/front.svg",
  51575. extra: 1268/1166,
  51576. bottom: 73/1341
  51577. }
  51578. },
  51579. back: {
  51580. height: math.unit(6, "feet"),
  51581. name: "Back",
  51582. image: {
  51583. source: "./media/characters/myra-aisling/back.svg",
  51584. extra: 1249/1149,
  51585. bottom: 79/1328
  51586. }
  51587. },
  51588. dressed: {
  51589. height: math.unit(6, "feet"),
  51590. name: "Dressed",
  51591. image: {
  51592. source: "./media/characters/myra-aisling/dressed.svg",
  51593. extra: 1290/1189,
  51594. bottom: 47/1337
  51595. }
  51596. },
  51597. hand: {
  51598. height: math.unit(1.1, "feet"),
  51599. name: "Hand",
  51600. image: {
  51601. source: "./media/characters/myra-aisling/hand.svg"
  51602. }
  51603. },
  51604. paw: {
  51605. height: math.unit(1.23, "feet"),
  51606. name: "Paw",
  51607. image: {
  51608. source: "./media/characters/myra-aisling/paw.svg"
  51609. }
  51610. },
  51611. },
  51612. [
  51613. {
  51614. name: "Normal",
  51615. height: math.unit(160, "feet"),
  51616. default: true
  51617. },
  51618. ]
  51619. ))
  51620. characterMakers.push(() => makeCharacter(
  51621. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  51622. {
  51623. front: {
  51624. height: math.unit(6, "feet"),
  51625. name: "Front",
  51626. image: {
  51627. source: "./media/characters/tenley-sidero/front.svg",
  51628. extra: 1365/1276,
  51629. bottom: 47/1412
  51630. }
  51631. },
  51632. back: {
  51633. height: math.unit(6, "feet"),
  51634. name: "Back",
  51635. image: {
  51636. source: "./media/characters/tenley-sidero/back.svg",
  51637. extra: 1383/1283,
  51638. bottom: 35/1418
  51639. }
  51640. },
  51641. dressed: {
  51642. height: math.unit(6, "feet"),
  51643. name: "Dressed",
  51644. image: {
  51645. source: "./media/characters/tenley-sidero/dressed.svg",
  51646. extra: 1364/1275,
  51647. bottom: 42/1406
  51648. }
  51649. },
  51650. head: {
  51651. height: math.unit(1.47, "feet"),
  51652. name: "Head",
  51653. image: {
  51654. source: "./media/characters/tenley-sidero/head.svg",
  51655. extra: 610/490,
  51656. bottom: 0/610
  51657. }
  51658. },
  51659. },
  51660. [
  51661. {
  51662. name: "Normal",
  51663. height: math.unit(154, "feet"),
  51664. default: true
  51665. },
  51666. ]
  51667. ))
  51668. characterMakers.push(() => makeCharacter(
  51669. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  51670. {
  51671. front: {
  51672. height: math.unit(5, "inches"),
  51673. name: "Front",
  51674. image: {
  51675. source: "./media/characters/mallory/front.svg",
  51676. extra: 1919/1678,
  51677. bottom: 29/1948
  51678. }
  51679. },
  51680. hand: {
  51681. height: math.unit(0.73, "inches"),
  51682. name: "Hand",
  51683. image: {
  51684. source: "./media/characters/mallory/hand.svg"
  51685. }
  51686. },
  51687. paw: {
  51688. height: math.unit(0.68, "inches"),
  51689. name: "Paw",
  51690. image: {
  51691. source: "./media/characters/mallory/paw.svg"
  51692. }
  51693. },
  51694. },
  51695. [
  51696. {
  51697. name: "Small",
  51698. height: math.unit(5, "inches"),
  51699. default: true
  51700. },
  51701. ]
  51702. ))
  51703. characterMakers.push(() => makeCharacter(
  51704. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  51705. {
  51706. naked: {
  51707. height: math.unit(6, "feet"),
  51708. name: "Naked",
  51709. image: {
  51710. source: "./media/characters/mab/naked.svg",
  51711. extra: 1855/1757,
  51712. bottom: 208/2063
  51713. }
  51714. },
  51715. outside: {
  51716. height: math.unit(6, "feet"),
  51717. name: "Outside",
  51718. image: {
  51719. source: "./media/characters/mab/outside.svg",
  51720. extra: 1855/1757,
  51721. bottom: 208/2063
  51722. }
  51723. },
  51724. party: {
  51725. height: math.unit(6, "feet"),
  51726. name: "Party",
  51727. image: {
  51728. source: "./media/characters/mab/party.svg",
  51729. extra: 1855/1757,
  51730. bottom: 208/2063
  51731. }
  51732. },
  51733. },
  51734. [
  51735. {
  51736. name: "Normal",
  51737. height: math.unit(165, "feet"),
  51738. default: true
  51739. },
  51740. ]
  51741. ))
  51742. characterMakers.push(() => makeCharacter(
  51743. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  51744. {
  51745. feral: {
  51746. height: math.unit(12, "feet"),
  51747. weight: math.unit(20000, "lb"),
  51748. name: "Side",
  51749. image: {
  51750. source: "./media/characters/winter/feral.svg",
  51751. extra: 1286/943,
  51752. bottom: 112/1398
  51753. },
  51754. form: "feral",
  51755. default: true
  51756. },
  51757. feralNsfw: {
  51758. height: math.unit(12, "feet"),
  51759. weight: math.unit(20000, "lb"),
  51760. name: "Side (NSFW)",
  51761. image: {
  51762. source: "./media/characters/winter/feral-nsfw.svg",
  51763. extra: 1286/943,
  51764. bottom: 112/1398
  51765. },
  51766. form: "feral"
  51767. },
  51768. dick: {
  51769. height: math.unit(3.79, "feet"),
  51770. name: "Dick",
  51771. image: {
  51772. source: "./media/characters/winter/dick.svg"
  51773. },
  51774. form: "feral"
  51775. },
  51776. anthro: {
  51777. height: math.unit(12, "feet"),
  51778. weight: math.unit(10, "tons"),
  51779. name: "Anthro",
  51780. image: {
  51781. source: "./media/characters/winter/anthro.svg",
  51782. extra: 1701/1553,
  51783. bottom: 64/1765
  51784. },
  51785. form: "anthro",
  51786. default: true
  51787. },
  51788. },
  51789. [
  51790. {
  51791. name: "Big",
  51792. height: math.unit(12, "feet"),
  51793. default: true,
  51794. form: "feral"
  51795. },
  51796. {
  51797. name: "Big",
  51798. height: math.unit(12, "feet"),
  51799. default: true,
  51800. form: "anthro"
  51801. },
  51802. ],
  51803. {
  51804. "feral": {
  51805. name: "Feral",
  51806. default: true
  51807. },
  51808. "anthro": {
  51809. name: "Anthro"
  51810. }
  51811. }
  51812. ))
  51813. characterMakers.push(() => makeCharacter(
  51814. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  51815. {
  51816. front: {
  51817. height: math.unit(4.1, "inches"),
  51818. name: "Front",
  51819. image: {
  51820. source: "./media/characters/alto/front.svg",
  51821. extra: 736/627,
  51822. bottom: 90/826
  51823. }
  51824. },
  51825. },
  51826. [
  51827. {
  51828. name: "Normal",
  51829. height: math.unit(4.1, "inches"),
  51830. default: true
  51831. },
  51832. ]
  51833. ))
  51834. characterMakers.push(() => makeCharacter(
  51835. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  51836. {
  51837. sitting: {
  51838. height: math.unit(3, "feet"),
  51839. name: "Sitting",
  51840. image: {
  51841. source: "./media/characters/ratstrid-v/sitting.svg",
  51842. extra: 355/310,
  51843. bottom: 136/491
  51844. }
  51845. },
  51846. },
  51847. [
  51848. {
  51849. name: "Normal",
  51850. height: math.unit(3, "feet"),
  51851. default: true
  51852. },
  51853. ]
  51854. ))
  51855. characterMakers.push(() => makeCharacter(
  51856. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  51857. {
  51858. back: {
  51859. height: math.unit(6, "feet"),
  51860. weight: math.unit(450, "lb"),
  51861. name: "Back",
  51862. image: {
  51863. source: "./media/characters/siz/back.svg",
  51864. extra: 1449/1274,
  51865. bottom: 13/1462
  51866. }
  51867. },
  51868. },
  51869. [
  51870. {
  51871. name: "Smallest",
  51872. height: math.unit(18 + 3/12, "feet")
  51873. },
  51874. {
  51875. name: "Modest",
  51876. height: math.unit(56 + 8/12, "feet"),
  51877. default: true
  51878. },
  51879. {
  51880. name: "Largest",
  51881. height: math.unit(3590, "feet")
  51882. },
  51883. ]
  51884. ))
  51885. characterMakers.push(() => makeCharacter(
  51886. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  51887. {
  51888. front: {
  51889. height: math.unit(5 + 9/12, "feet"),
  51890. weight: math.unit(150, "lb"),
  51891. name: "Front",
  51892. image: {
  51893. source: "./media/characters/ven/front.svg",
  51894. extra: 1372/1320,
  51895. bottom: 73/1445
  51896. }
  51897. },
  51898. side: {
  51899. height: math.unit(5 + 9/12, "feet"),
  51900. weight: math.unit(1150, "lb"),
  51901. name: "Side",
  51902. image: {
  51903. source: "./media/characters/ven/side.svg",
  51904. extra: 1119/1070,
  51905. bottom: 42/1161
  51906. },
  51907. default: true
  51908. },
  51909. },
  51910. [
  51911. {
  51912. name: "Normal",
  51913. height: math.unit(5 + 9/12, "feet"),
  51914. default: true
  51915. },
  51916. ]
  51917. ))
  51918. characterMakers.push(() => makeCharacter(
  51919. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  51920. {
  51921. front: {
  51922. height: math.unit(12, "feet"),
  51923. weight: math.unit(1000, "kg"),
  51924. name: "Front",
  51925. image: {
  51926. source: "./media/characters/maple/front.svg",
  51927. extra: 1193/1081,
  51928. bottom: 22/1215
  51929. }
  51930. },
  51931. },
  51932. [
  51933. {
  51934. name: "Compressed",
  51935. height: math.unit(7, "feet")
  51936. },
  51937. {
  51938. name: "Normal",
  51939. height: math.unit(12, "feet"),
  51940. default: true
  51941. },
  51942. ]
  51943. ))
  51944. characterMakers.push(() => makeCharacter(
  51945. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  51946. {
  51947. front: {
  51948. height: math.unit(9, "feet"),
  51949. weight: math.unit(1500, "lb"),
  51950. name: "Front",
  51951. image: {
  51952. source: "./media/characters/nora/front.svg",
  51953. extra: 1348/1286,
  51954. bottom: 218/1566
  51955. }
  51956. },
  51957. erect: {
  51958. height: math.unit(9, "feet"),
  51959. weight: math.unit(11500, "lb"),
  51960. name: "Erect",
  51961. image: {
  51962. source: "./media/characters/nora/erect.svg",
  51963. extra: 1488/1433,
  51964. bottom: 133/1621
  51965. }
  51966. },
  51967. },
  51968. [
  51969. {
  51970. name: "Normal",
  51971. height: math.unit(9, "feet"),
  51972. default: true
  51973. },
  51974. ]
  51975. ))
  51976. characterMakers.push(() => makeCharacter(
  51977. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  51978. {
  51979. front: {
  51980. height: math.unit(25, "feet"),
  51981. weight: math.unit(27500, "lb"),
  51982. name: "Front",
  51983. image: {
  51984. source: "./media/characters/north-caudin/front.svg",
  51985. extra: 1184/1082,
  51986. bottom: 23/1207
  51987. }
  51988. },
  51989. },
  51990. [
  51991. {
  51992. name: "Compressed",
  51993. height: math.unit(10, "feet")
  51994. },
  51995. {
  51996. name: "Normal",
  51997. height: math.unit(25, "feet"),
  51998. default: true
  51999. },
  52000. ]
  52001. ))
  52002. characterMakers.push(() => makeCharacter(
  52003. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  52004. {
  52005. front: {
  52006. height: math.unit(9, "feet"),
  52007. weight: math.unit(1250, "lb"),
  52008. name: "Front",
  52009. image: {
  52010. source: "./media/characters/merrian/front.svg",
  52011. extra: 2393/2304,
  52012. bottom: 40/2433
  52013. }
  52014. },
  52015. },
  52016. [
  52017. {
  52018. name: "Normal",
  52019. height: math.unit(9, "feet"),
  52020. default: true
  52021. },
  52022. ]
  52023. ))
  52024. characterMakers.push(() => makeCharacter(
  52025. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  52026. {
  52027. front: {
  52028. height: math.unit(9, "feet"),
  52029. weight: math.unit(1000, "lb"),
  52030. name: "Front",
  52031. image: {
  52032. source: "./media/characters/hazel/front.svg",
  52033. extra: 2351/2298,
  52034. bottom: 38/2389
  52035. }
  52036. },
  52037. },
  52038. [
  52039. {
  52040. name: "Normal",
  52041. height: math.unit(9, "feet"),
  52042. default: true
  52043. },
  52044. ]
  52045. ))
  52046. characterMakers.push(() => makeCharacter(
  52047. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  52048. {
  52049. front: {
  52050. height: math.unit(13, "feet"),
  52051. weight: math.unit(3200, "lb"),
  52052. name: "Front",
  52053. image: {
  52054. source: "./media/characters/emma/front.svg",
  52055. extra: 2263/2029,
  52056. bottom: 68/2331
  52057. }
  52058. },
  52059. },
  52060. [
  52061. {
  52062. name: "Normal",
  52063. height: math.unit(13, "feet"),
  52064. default: true
  52065. },
  52066. ]
  52067. ))
  52068. characterMakers.push(() => makeCharacter(
  52069. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  52070. {
  52071. front: {
  52072. height: math.unit(11 + 9/12, "feet"),
  52073. weight: math.unit(2500, "lb"),
  52074. name: "Front",
  52075. image: {
  52076. source: "./media/characters/ilumina/front.svg",
  52077. extra: 2248/2209,
  52078. bottom: 164/2412
  52079. }
  52080. },
  52081. },
  52082. [
  52083. {
  52084. name: "Normal",
  52085. height: math.unit(11 + 9/12, "feet"),
  52086. default: true
  52087. },
  52088. ]
  52089. ))
  52090. characterMakers.push(() => makeCharacter(
  52091. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  52092. {
  52093. front: {
  52094. height: math.unit(8 + 10/12, "feet"),
  52095. weight: math.unit(1350, "lb"),
  52096. name: "Front",
  52097. image: {
  52098. source: "./media/characters/moonshine/front.svg",
  52099. extra: 2395/2288,
  52100. bottom: 40/2435
  52101. }
  52102. },
  52103. },
  52104. [
  52105. {
  52106. name: "Normal",
  52107. height: math.unit(8 + 10/12, "feet"),
  52108. default: true
  52109. },
  52110. ]
  52111. ))
  52112. characterMakers.push(() => makeCharacter(
  52113. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  52114. {
  52115. front: {
  52116. height: math.unit(14, "feet"),
  52117. weight: math.unit(3400, "lb"),
  52118. name: "Front",
  52119. image: {
  52120. source: "./media/characters/aletia/front.svg",
  52121. extra: 1185/1052,
  52122. bottom: 21/1206
  52123. }
  52124. },
  52125. },
  52126. [
  52127. {
  52128. name: "Compressed",
  52129. height: math.unit(8, "feet")
  52130. },
  52131. {
  52132. name: "Normal",
  52133. height: math.unit(14, "feet"),
  52134. default: true
  52135. },
  52136. ]
  52137. ))
  52138. characterMakers.push(() => makeCharacter(
  52139. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  52140. {
  52141. front: {
  52142. height: math.unit(17, "feet"),
  52143. weight: math.unit(6500, "lb"),
  52144. name: "Front",
  52145. image: {
  52146. source: "./media/characters/deidra/front.svg",
  52147. extra: 1201/1081,
  52148. bottom: 16/1217
  52149. }
  52150. },
  52151. },
  52152. [
  52153. {
  52154. name: "Compressed",
  52155. height: math.unit(9 + 6/12, "feet")
  52156. },
  52157. {
  52158. name: "Normal",
  52159. height: math.unit(17, "feet"),
  52160. default: true
  52161. },
  52162. ]
  52163. ))
  52164. characterMakers.push(() => makeCharacter(
  52165. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  52166. {
  52167. front: {
  52168. height: math.unit(7 + 4/12, "feet"),
  52169. weight: math.unit(280, "lb"),
  52170. name: "Front",
  52171. image: {
  52172. source: "./media/characters/freki-yrmori/front.svg",
  52173. extra: 1286/1182,
  52174. bottom: 29/1315
  52175. }
  52176. },
  52177. maw: {
  52178. height: math.unit(0.9, "feet"),
  52179. name: "Maw",
  52180. image: {
  52181. source: "./media/characters/freki-yrmori/maw.svg"
  52182. }
  52183. },
  52184. },
  52185. [
  52186. {
  52187. name: "Normal",
  52188. height: math.unit(7 + 4/12, "feet"),
  52189. default: true
  52190. },
  52191. {
  52192. name: "Macro",
  52193. height: math.unit(38.5, "meters")
  52194. },
  52195. ]
  52196. ))
  52197. characterMakers.push(() => makeCharacter(
  52198. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  52199. {
  52200. side: {
  52201. height: math.unit(47.2, "meters"),
  52202. weight: math.unit(10000, "tons"),
  52203. name: "Side",
  52204. image: {
  52205. source: "./media/characters/aetherios/side.svg",
  52206. extra: 2363/642,
  52207. bottom: 221/2584
  52208. }
  52209. },
  52210. top: {
  52211. height: math.unit(240, "meters"),
  52212. weight: math.unit(10000, "tons"),
  52213. name: "Top",
  52214. image: {
  52215. source: "./media/characters/aetherios/top.svg"
  52216. }
  52217. },
  52218. bottom: {
  52219. height: math.unit(240, "meters"),
  52220. weight: math.unit(10000, "tons"),
  52221. name: "Bottom",
  52222. image: {
  52223. source: "./media/characters/aetherios/bottom.svg"
  52224. }
  52225. },
  52226. head: {
  52227. height: math.unit(38.6, "meters"),
  52228. name: "Head",
  52229. image: {
  52230. source: "./media/characters/aetherios/head.svg",
  52231. extra: 1335/1112,
  52232. bottom: 0/1335
  52233. }
  52234. },
  52235. front: {
  52236. height: math.unit(29, "meters"),
  52237. name: "Front",
  52238. image: {
  52239. source: "./media/characters/aetherios/front.svg",
  52240. extra: 1266/953,
  52241. bottom: 158/1424
  52242. }
  52243. },
  52244. maw: {
  52245. height: math.unit(16.37, "meters"),
  52246. name: "Maw",
  52247. image: {
  52248. source: "./media/characters/aetherios/maw.svg",
  52249. extra: 748/637,
  52250. bottom: 0/748
  52251. },
  52252. extraAttributes: {
  52253. preyCapacity: {
  52254. name: "Capacity",
  52255. power: 3,
  52256. type: "volume",
  52257. base: math.unit(1000, "people")
  52258. },
  52259. tongueSize: {
  52260. name: "Tongue Size",
  52261. power: 2,
  52262. type: "area",
  52263. base: math.unit(21, "m^2")
  52264. }
  52265. }
  52266. },
  52267. forepaw: {
  52268. height: math.unit(18, "meters"),
  52269. name: "Forepaw",
  52270. image: {
  52271. source: "./media/characters/aetherios/forepaw.svg"
  52272. }
  52273. },
  52274. hindpaw: {
  52275. height: math.unit(23, "meters"),
  52276. name: "Hindpaw",
  52277. image: {
  52278. source: "./media/characters/aetherios/hindpaw.svg"
  52279. }
  52280. },
  52281. genitals: {
  52282. height: math.unit(42, "meters"),
  52283. name: "Genitals",
  52284. image: {
  52285. source: "./media/characters/aetherios/genitals.svg"
  52286. }
  52287. },
  52288. },
  52289. [
  52290. {
  52291. name: "Normal",
  52292. height: math.unit(47.2, "meters"),
  52293. default: true
  52294. },
  52295. {
  52296. name: "Macro",
  52297. height: math.unit(160, "meters")
  52298. },
  52299. {
  52300. name: "Mega",
  52301. height: math.unit(1.87, "km")
  52302. },
  52303. {
  52304. name: "Giga",
  52305. height: math.unit(40000, "km")
  52306. },
  52307. {
  52308. name: "Stellar",
  52309. height: math.unit(158000000, "km")
  52310. },
  52311. {
  52312. name: "Cosmic",
  52313. height: math.unit(9.46e12, "km")
  52314. },
  52315. ]
  52316. ))
  52317. characterMakers.push(() => makeCharacter(
  52318. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  52319. {
  52320. front: {
  52321. height: math.unit(5 + 4/12, "feet"),
  52322. weight: math.unit(80, "lb"),
  52323. name: "Front",
  52324. image: {
  52325. source: "./media/characters/mizu-gieeg/front.svg",
  52326. extra: 850/709,
  52327. bottom: 52/902
  52328. }
  52329. },
  52330. back: {
  52331. height: math.unit(5 + 4/12, "feet"),
  52332. weight: math.unit(80, "lb"),
  52333. name: "Back",
  52334. image: {
  52335. source: "./media/characters/mizu-gieeg/back.svg",
  52336. extra: 882/745,
  52337. bottom: 25/907
  52338. }
  52339. },
  52340. },
  52341. [
  52342. {
  52343. name: "Normal",
  52344. height: math.unit(5 + 4/12, "feet"),
  52345. default: true
  52346. },
  52347. ]
  52348. ))
  52349. characterMakers.push(() => makeCharacter(
  52350. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  52351. {
  52352. front: {
  52353. height: math.unit(6, "feet"),
  52354. name: "Front",
  52355. image: {
  52356. source: "./media/characters/roselle-st-papier/front.svg",
  52357. extra: 1430/1280,
  52358. bottom: 37/1467
  52359. }
  52360. },
  52361. back: {
  52362. height: math.unit(6, "feet"),
  52363. name: "Back",
  52364. image: {
  52365. source: "./media/characters/roselle-st-papier/back.svg",
  52366. extra: 1491/1296,
  52367. bottom: 23/1514
  52368. }
  52369. },
  52370. ear: {
  52371. height: math.unit(1.26, "feet"),
  52372. name: "Ear",
  52373. image: {
  52374. source: "./media/characters/roselle-st-papier/ear.svg"
  52375. }
  52376. },
  52377. },
  52378. [
  52379. {
  52380. name: "Normal",
  52381. height: math.unit(150, "feet"),
  52382. default: true
  52383. },
  52384. ]
  52385. ))
  52386. characterMakers.push(() => makeCharacter(
  52387. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  52388. {
  52389. front: {
  52390. height: math.unit(1, "inches"),
  52391. name: "Front",
  52392. image: {
  52393. source: "./media/characters/valargent/front.svg",
  52394. extra: 1825/1694,
  52395. bottom: 62/1887
  52396. }
  52397. },
  52398. back: {
  52399. height: math.unit(1, "inches"),
  52400. name: "Back",
  52401. image: {
  52402. source: "./media/characters/valargent/back.svg",
  52403. extra: 1775/1682,
  52404. bottom: 88/1863
  52405. }
  52406. },
  52407. },
  52408. [
  52409. {
  52410. name: "Micro",
  52411. height: math.unit(1, "inch"),
  52412. default: true
  52413. },
  52414. ]
  52415. ))
  52416. characterMakers.push(() => makeCharacter(
  52417. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  52418. {
  52419. front: {
  52420. height: math.unit(3.4, "meters"),
  52421. name: "Front",
  52422. image: {
  52423. source: "./media/characters/zarina/front.svg",
  52424. extra: 1733/1425,
  52425. bottom: 93/1826
  52426. }
  52427. },
  52428. squatting: {
  52429. height: math.unit(2.14, "meters"),
  52430. name: "Squatting",
  52431. image: {
  52432. source: "./media/characters/zarina/squatting.svg",
  52433. extra: 1073/788,
  52434. bottom: 63/1136
  52435. }
  52436. },
  52437. back: {
  52438. height: math.unit(2.14, "meters"),
  52439. name: "Back",
  52440. image: {
  52441. source: "./media/characters/zarina/back.svg",
  52442. extra: 1128/885,
  52443. bottom: 0/1128
  52444. }
  52445. },
  52446. },
  52447. [
  52448. {
  52449. name: "Normal",
  52450. height: math.unit(3.4, "meters"),
  52451. default: true
  52452. },
  52453. {
  52454. name: "Big",
  52455. height: math.unit(5, "meters")
  52456. },
  52457. {
  52458. name: "Macro",
  52459. height: math.unit(110, "meters")
  52460. },
  52461. ]
  52462. ))
  52463. characterMakers.push(() => makeCharacter(
  52464. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  52465. {
  52466. front: {
  52467. height: math.unit(7, "feet"),
  52468. name: "Front",
  52469. image: {
  52470. source: "./media/characters/ventus-astro-fox/front.svg",
  52471. extra: 1792/1623,
  52472. bottom: 28/1820
  52473. }
  52474. },
  52475. back: {
  52476. height: math.unit(7, "feet"),
  52477. name: "Back",
  52478. image: {
  52479. source: "./media/characters/ventus-astro-fox/back.svg",
  52480. extra: 1789/1620,
  52481. bottom: 31/1820
  52482. }
  52483. },
  52484. outfit: {
  52485. height: math.unit(7, "feet"),
  52486. name: "Outfit",
  52487. image: {
  52488. source: "./media/characters/ventus-astro-fox/outfit.svg",
  52489. extra: 1054/925,
  52490. bottom: 15/1069
  52491. }
  52492. },
  52493. head: {
  52494. height: math.unit(1.12, "feet"),
  52495. name: "Head",
  52496. image: {
  52497. source: "./media/characters/ventus-astro-fox/head.svg",
  52498. extra: 866/504,
  52499. bottom: 0/866
  52500. }
  52501. },
  52502. hand: {
  52503. height: math.unit(1, "feet"),
  52504. name: "Hand",
  52505. image: {
  52506. source: "./media/characters/ventus-astro-fox/hand.svg"
  52507. }
  52508. },
  52509. paw: {
  52510. height: math.unit(1.5, "feet"),
  52511. name: "Paw",
  52512. image: {
  52513. source: "./media/characters/ventus-astro-fox/paw.svg"
  52514. }
  52515. },
  52516. },
  52517. [
  52518. {
  52519. name: "Normal",
  52520. height: math.unit(7, "feet"),
  52521. default: true
  52522. },
  52523. {
  52524. name: "Macro",
  52525. height: math.unit(200, "feet")
  52526. },
  52527. {
  52528. name: "Cosmic",
  52529. height: math.unit(3, "universes")
  52530. },
  52531. ]
  52532. ))
  52533. characterMakers.push(() => makeCharacter(
  52534. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  52535. {
  52536. front: {
  52537. height: math.unit(3, "meters"),
  52538. weight: math.unit(7000, "lb"),
  52539. name: "Front",
  52540. image: {
  52541. source: "./media/characters/core-t/front.svg",
  52542. extra: 5729/4941,
  52543. bottom: 1129/6858
  52544. }
  52545. },
  52546. },
  52547. [
  52548. {
  52549. name: "Big",
  52550. height: math.unit(3, "meters"),
  52551. default: true
  52552. },
  52553. ]
  52554. ))
  52555. characterMakers.push(() => makeCharacter(
  52556. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  52557. {
  52558. normal: {
  52559. height: math.unit(6 + 6/12, "feet"),
  52560. weight: math.unit(275, "lb"),
  52561. name: "Front",
  52562. image: {
  52563. source: "./media/characters/cadbunny/normal.svg",
  52564. extra: 1129/947,
  52565. bottom: 93/1222
  52566. },
  52567. default: true,
  52568. form: "normal"
  52569. },
  52570. gigantamax: {
  52571. height: math.unit(26, "feet"),
  52572. weight: math.unit(16000, "lb"),
  52573. name: "Front",
  52574. image: {
  52575. source: "./media/characters/cadbunny/gigantamax.svg",
  52576. extra: 1133/944,
  52577. bottom: 90/1223
  52578. },
  52579. default: true,
  52580. form: "gigantamax"
  52581. },
  52582. },
  52583. [
  52584. {
  52585. name: "Normal",
  52586. height: math.unit(6 + 6/12, "feet"),
  52587. default: true,
  52588. form: "normal"
  52589. },
  52590. {
  52591. name: "Small",
  52592. height: math.unit(26, "feet"),
  52593. default: true,
  52594. form: "gigantamax"
  52595. },
  52596. {
  52597. name: "Large",
  52598. height: math.unit(78, "feet"),
  52599. form: "gigantamax"
  52600. },
  52601. ],
  52602. {
  52603. "normal": {
  52604. name: "Normal",
  52605. default: true
  52606. },
  52607. "gigantamax": {
  52608. name: "Gigantamax"
  52609. }
  52610. }
  52611. ))
  52612. characterMakers.push(() => makeCharacter(
  52613. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  52614. {
  52615. anthroFront: {
  52616. height: math.unit(8, "feet"),
  52617. weight: math.unit(300, "lb"),
  52618. name: "Front",
  52619. image: {
  52620. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  52621. extra: 1272/1176,
  52622. bottom: 53/1325
  52623. },
  52624. form: "anthro",
  52625. default: true
  52626. },
  52627. feralSide: {
  52628. height: math.unit(4, "feet"),
  52629. weight: math.unit(250, "lb"),
  52630. name: "Side",
  52631. image: {
  52632. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  52633. extra: 731/621,
  52634. bottom: 0/731
  52635. },
  52636. form: "feral",
  52637. default: true
  52638. },
  52639. },
  52640. [
  52641. {
  52642. name: "Regular",
  52643. height: math.unit(8, "feet"),
  52644. form: "anthro"
  52645. },
  52646. {
  52647. name: "Macro",
  52648. height: math.unit(250, "feet"),
  52649. form: "anthro",
  52650. default: true
  52651. },
  52652. {
  52653. name: "Regular",
  52654. height: math.unit(4, "feet"),
  52655. form: "feral"
  52656. },
  52657. {
  52658. name: "Macro",
  52659. height: math.unit(125, "feet"),
  52660. form: "feral",
  52661. default: true
  52662. },
  52663. ],
  52664. {
  52665. "anthro": {
  52666. name: "Anthro",
  52667. default: true
  52668. },
  52669. "feral": {
  52670. name: "Feral",
  52671. },
  52672. }
  52673. ))
  52674. characterMakers.push(() => makeCharacter(
  52675. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  52676. {
  52677. front: {
  52678. height: math.unit(11 + 10/12, "feet"),
  52679. weight: math.unit(1587, "kg"),
  52680. name: "Front",
  52681. image: {
  52682. source: "./media/characters/maple-javira-dragon/front.svg",
  52683. extra: 1136/744,
  52684. bottom: 73/1209
  52685. }
  52686. },
  52687. side: {
  52688. height: math.unit(11 + 10/12, "feet"),
  52689. weight: math.unit(1587, "kg"),
  52690. name: "Side",
  52691. image: {
  52692. source: "./media/characters/maple-javira-dragon/side.svg",
  52693. extra: 712/505,
  52694. bottom: 17/729
  52695. }
  52696. },
  52697. head: {
  52698. height: math.unit(8.05, "feet"),
  52699. name: "Head",
  52700. image: {
  52701. source: "./media/characters/maple-javira-dragon/head.svg",
  52702. extra: 1420/1344,
  52703. bottom: 0/1420
  52704. }
  52705. },
  52706. },
  52707. [
  52708. {
  52709. name: "Normal",
  52710. height: math.unit(11 + 10/12, "feet"),
  52711. default: true
  52712. },
  52713. ]
  52714. ))
  52715. characterMakers.push(() => makeCharacter(
  52716. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  52717. {
  52718. front: {
  52719. height: math.unit(117, "cm"),
  52720. weight: math.unit(50, "kg"),
  52721. name: "Front",
  52722. image: {
  52723. source: "./media/characters/sonia-wyverntail/front.svg",
  52724. extra: 708/592,
  52725. bottom: 25/733
  52726. }
  52727. },
  52728. },
  52729. [
  52730. {
  52731. name: "Normal",
  52732. height: math.unit(117, "cm"),
  52733. default: true
  52734. },
  52735. ]
  52736. ))
  52737. characterMakers.push(() => makeCharacter(
  52738. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  52739. {
  52740. front: {
  52741. height: math.unit(6 + 5/12, "feet"),
  52742. name: "Front",
  52743. image: {
  52744. source: "./media/characters/micah/front.svg",
  52745. extra: 1758/1546,
  52746. bottom: 214/1972
  52747. }
  52748. },
  52749. },
  52750. [
  52751. {
  52752. name: "Normal",
  52753. height: math.unit(6 + 5/12, "feet"),
  52754. default: true
  52755. },
  52756. ]
  52757. ))
  52758. characterMakers.push(() => makeCharacter(
  52759. { name: "Zarya", species: ["skunk"], tags: ["anthro"] },
  52760. {
  52761. front: {
  52762. height: math.unit(1.75, "meters"),
  52763. weight: math.unit(100, "kg"),
  52764. name: "Front",
  52765. image: {
  52766. source: "./media/characters/zarya/front.svg",
  52767. extra: 741/735,
  52768. bottom: 44/785
  52769. },
  52770. extraAttributes: {
  52771. "tailLength": {
  52772. name: "Tail Length",
  52773. power: 1,
  52774. type: "length",
  52775. base: math.unit(180, "cm")
  52776. },
  52777. "pawLength": {
  52778. name: "Paw Length",
  52779. power: 1,
  52780. type: "length",
  52781. base: math.unit(31, "cm")
  52782. },
  52783. }
  52784. },
  52785. side: {
  52786. height: math.unit(1.75, "meters"),
  52787. weight: math.unit(100, "kg"),
  52788. name: "Side",
  52789. image: {
  52790. source: "./media/characters/zarya/side.svg",
  52791. extra: 776/770,
  52792. bottom: 17/793
  52793. },
  52794. extraAttributes: {
  52795. "tailLength": {
  52796. name: "Tail Length",
  52797. power: 1,
  52798. type: "length",
  52799. base: math.unit(180, "cm")
  52800. },
  52801. "pawLength": {
  52802. name: "Paw Length",
  52803. power: 1,
  52804. type: "length",
  52805. base: math.unit(31, "cm")
  52806. },
  52807. }
  52808. },
  52809. back: {
  52810. height: math.unit(1.75, "meters"),
  52811. weight: math.unit(100, "kg"),
  52812. name: "Back",
  52813. image: {
  52814. source: "./media/characters/zarya/back.svg",
  52815. extra: 741/735,
  52816. bottom: 44/785
  52817. },
  52818. extraAttributes: {
  52819. "tailLength": {
  52820. name: "Tail Length",
  52821. power: 1,
  52822. type: "length",
  52823. base: math.unit(180, "cm")
  52824. },
  52825. "pawLength": {
  52826. name: "Paw Length",
  52827. power: 1,
  52828. type: "length",
  52829. base: math.unit(31, "cm")
  52830. },
  52831. }
  52832. },
  52833. frontNoTail: {
  52834. height: math.unit(1.75, "meters"),
  52835. weight: math.unit(100, "kg"),
  52836. name: "Front (No Tail)",
  52837. image: {
  52838. source: "./media/characters/zarya/front-no-tail.svg",
  52839. extra: 741/735,
  52840. bottom: 44/785
  52841. },
  52842. extraAttributes: {
  52843. "tailLength": {
  52844. name: "Tail Length",
  52845. power: 1,
  52846. type: "length",
  52847. base: math.unit(180, "cm")
  52848. },
  52849. "pawLength": {
  52850. name: "Paw Length",
  52851. power: 1,
  52852. type: "length",
  52853. base: math.unit(31, "cm")
  52854. },
  52855. }
  52856. },
  52857. dressed: {
  52858. height: math.unit(1.75, "meters"),
  52859. weight: math.unit(100, "kg"),
  52860. name: "Dressed",
  52861. image: {
  52862. source: "./media/characters/zarya/dressed.svg",
  52863. extra: 683/672,
  52864. bottom: 79/762
  52865. },
  52866. extraAttributes: {
  52867. "tailLength": {
  52868. name: "Tail Length",
  52869. power: 1,
  52870. type: "length",
  52871. base: math.unit(180, "cm")
  52872. },
  52873. "pawLength": {
  52874. name: "Paw Length",
  52875. power: 1,
  52876. type: "length",
  52877. base: math.unit(31, "cm")
  52878. },
  52879. }
  52880. },
  52881. },
  52882. [
  52883. {
  52884. name: "Micro",
  52885. height: math.unit(5, "cm")
  52886. },
  52887. {
  52888. name: "Normal",
  52889. height: math.unit(1.75, "meters"),
  52890. default: true
  52891. },
  52892. {
  52893. name: "Macro",
  52894. height: math.unit(122, "meters")
  52895. },
  52896. ]
  52897. ))
  52898. characterMakers.push(() => makeCharacter(
  52899. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  52900. {
  52901. front: {
  52902. height: math.unit(7.5, "feet"),
  52903. name: "Front",
  52904. image: {
  52905. source: "./media/characters/sven-hatisson/front.svg",
  52906. extra: 917/857,
  52907. bottom: 42/959
  52908. }
  52909. },
  52910. back: {
  52911. height: math.unit(7.5, "feet"),
  52912. name: "Back",
  52913. image: {
  52914. source: "./media/characters/sven-hatisson/back.svg",
  52915. extra: 903/856,
  52916. bottom: 15/918
  52917. }
  52918. },
  52919. },
  52920. [
  52921. {
  52922. name: "Base Height",
  52923. height: math.unit(7.5, "feet")
  52924. },
  52925. {
  52926. name: "Usual Height",
  52927. height: math.unit(13.5, "feet"),
  52928. default: true
  52929. },
  52930. {
  52931. name: "Smaller Macro",
  52932. height: math.unit(85, "feet")
  52933. },
  52934. {
  52935. name: "Moderate Macro",
  52936. height: math.unit(320, "feet")
  52937. },
  52938. {
  52939. name: "Large Macro",
  52940. height: math.unit(1000, "feet")
  52941. },
  52942. {
  52943. name: "Largest Size",
  52944. height: math.unit(2, "miles")
  52945. },
  52946. ]
  52947. ))
  52948. characterMakers.push(() => makeCharacter(
  52949. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  52950. {
  52951. side: {
  52952. height: math.unit(1.8, "meters"),
  52953. weight: math.unit(275, "kg"),
  52954. name: "Side",
  52955. image: {
  52956. source: "./media/characters/terra/side.svg",
  52957. extra: 1273/1147,
  52958. bottom: 0/1273
  52959. }
  52960. },
  52961. },
  52962. [
  52963. {
  52964. name: "Normal",
  52965. height: math.unit(16.2, "meters"),
  52966. default: true
  52967. },
  52968. ]
  52969. ))
  52970. characterMakers.push(() => makeCharacter(
  52971. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  52972. {
  52973. borzoiFront: {
  52974. height: math.unit(6 + 9/12, "feet"),
  52975. name: "Front",
  52976. image: {
  52977. source: "./media/characters/rae/borzoi-front.svg",
  52978. extra: 1161/1098,
  52979. bottom: 31/1192
  52980. },
  52981. form: "borzoi",
  52982. default: true
  52983. },
  52984. werewolfFront: {
  52985. height: math.unit(8 + 7/12, "feet"),
  52986. name: "Front",
  52987. image: {
  52988. source: "./media/characters/rae/werewolf-front.svg",
  52989. extra: 1411/1334,
  52990. bottom: 127/1538
  52991. },
  52992. form: "werewolf",
  52993. default: true
  52994. },
  52995. },
  52996. [
  52997. {
  52998. name: "Normal",
  52999. height: math.unit(6 + 9/12, "feet"),
  53000. default: true,
  53001. form: "borzoi"
  53002. },
  53003. {
  53004. name: "Normal",
  53005. height: math.unit(8 + 7/12, "feet"),
  53006. default: true,
  53007. form: "werewolf"
  53008. },
  53009. ],
  53010. {
  53011. "borzoi": {
  53012. name: "Borzoi",
  53013. default: true
  53014. },
  53015. "werewolf": {
  53016. name: "Werewolf",
  53017. },
  53018. }
  53019. ))
  53020. characterMakers.push(() => makeCharacter(
  53021. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  53022. {
  53023. front: {
  53024. height: math.unit(8 + 7/12, "feet"),
  53025. weight: math.unit(482, "lb"),
  53026. name: "Front",
  53027. image: {
  53028. source: "./media/characters/kit/front.svg",
  53029. extra: 1247/1103,
  53030. bottom: 41/1288
  53031. }
  53032. },
  53033. back: {
  53034. height: math.unit(8 + 7/12, "feet"),
  53035. weight: math.unit(482, "lb"),
  53036. name: "Back",
  53037. image: {
  53038. source: "./media/characters/kit/back.svg",
  53039. extra: 1252/1123,
  53040. bottom: 21/1273
  53041. }
  53042. },
  53043. paw: {
  53044. height: math.unit(1.46, "feet"),
  53045. name: "Paw",
  53046. image: {
  53047. source: "./media/characters/kit/paw.svg"
  53048. }
  53049. },
  53050. },
  53051. [
  53052. {
  53053. name: "Normal",
  53054. height: math.unit(2.61, "meters"),
  53055. default: true
  53056. },
  53057. {
  53058. name: "\"Tall\"",
  53059. height: math.unit(8.21, "meters")
  53060. },
  53061. {
  53062. name: "Tall",
  53063. height: math.unit(19.6, "meters")
  53064. },
  53065. {
  53066. name: "Very Tall",
  53067. height: math.unit(57.91, "meters")
  53068. },
  53069. {
  53070. name: "Semi-Macro",
  53071. height: math.unit(138.64, "meters")
  53072. },
  53073. {
  53074. name: "Macro",
  53075. height: math.unit(831.99, "meters")
  53076. },
  53077. {
  53078. name: "EX-Macro",
  53079. height: math.unit(96451121, "meters")
  53080. },
  53081. {
  53082. name: "S1-Omnipotent",
  53083. height: math.unit(4.42074e+9, "meters")
  53084. },
  53085. {
  53086. name: "S2-Omnipotent",
  53087. height: math.unit(9.42074e+17, "meters")
  53088. },
  53089. {
  53090. name: "Omnipotent",
  53091. height: math.unit(4.23112e+24, "meters")
  53092. },
  53093. {
  53094. name: "Hypergod",
  53095. height: math.unit(5.05176e+27, "meters")
  53096. },
  53097. {
  53098. name: "Hypergod-EX",
  53099. height: math.unit(9.45532e+49, "meters")
  53100. },
  53101. {
  53102. name: "Hypergod-SP",
  53103. height: math.unit(9.45532e+195, "meters")
  53104. },
  53105. ]
  53106. ))
  53107. characterMakers.push(() => makeCharacter(
  53108. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  53109. {
  53110. side: {
  53111. height: math.unit(0.6, "meters"),
  53112. weight: math.unit(24, "kg"),
  53113. name: "Side",
  53114. image: {
  53115. source: "./media/characters/celeste/side.svg",
  53116. extra: 810/517,
  53117. bottom: 53/863
  53118. }
  53119. },
  53120. },
  53121. [
  53122. {
  53123. name: "Velociraptor",
  53124. height: math.unit(0.6, "meters"),
  53125. default: true
  53126. },
  53127. {
  53128. name: "Utahraptor",
  53129. height: math.unit(1.8, "meters")
  53130. },
  53131. {
  53132. name: "Gallimimus",
  53133. height: math.unit(4.0, "meters")
  53134. },
  53135. {
  53136. name: "Large",
  53137. height: math.unit(20, "meters")
  53138. },
  53139. {
  53140. name: "Planetary",
  53141. height: math.unit(50, "megameters")
  53142. },
  53143. {
  53144. name: "Stellar",
  53145. height: math.unit(1.5, "gigameters")
  53146. },
  53147. {
  53148. name: "Galactic",
  53149. height: math.unit(100, "exameters")
  53150. },
  53151. ]
  53152. ))
  53153. characterMakers.push(() => makeCharacter(
  53154. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  53155. {
  53156. front: {
  53157. height: math.unit(6, "feet"),
  53158. weight: math.unit(210, "lb"),
  53159. name: "Front",
  53160. image: {
  53161. source: "./media/characters/glacia/front.svg",
  53162. extra: 958/901,
  53163. bottom: 45/1003
  53164. }
  53165. },
  53166. },
  53167. [
  53168. {
  53169. name: "Macro",
  53170. height: math.unit(1000, "meters"),
  53171. default: true
  53172. },
  53173. ]
  53174. ))
  53175. characterMakers.push(() => makeCharacter(
  53176. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  53177. {
  53178. front: {
  53179. height: math.unit(4, "meters"),
  53180. name: "Front",
  53181. image: {
  53182. source: "./media/characters/giri/front.svg",
  53183. extra: 966/894,
  53184. bottom: 21/987
  53185. }
  53186. },
  53187. },
  53188. [
  53189. {
  53190. name: "Normal",
  53191. height: math.unit(4, "meters"),
  53192. default: true
  53193. },
  53194. ]
  53195. ))
  53196. characterMakers.push(() => makeCharacter(
  53197. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  53198. {
  53199. back: {
  53200. height: math.unit(4, "feet"),
  53201. weight: math.unit(37, "lb"),
  53202. name: "Back",
  53203. image: {
  53204. source: "./media/characters/tin/back.svg",
  53205. extra: 845/780,
  53206. bottom: 28/873
  53207. }
  53208. },
  53209. },
  53210. [
  53211. {
  53212. name: "Normal",
  53213. height: math.unit(4, "feet"),
  53214. default: true
  53215. },
  53216. ]
  53217. ))
  53218. characterMakers.push(() => makeCharacter(
  53219. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  53220. {
  53221. front: {
  53222. height: math.unit(25, "feet"),
  53223. name: "Front",
  53224. image: {
  53225. source: "./media/characters/cadenza-vivace/front.svg",
  53226. extra: 1842/1578,
  53227. bottom: 30/1872
  53228. }
  53229. },
  53230. },
  53231. [
  53232. {
  53233. name: "Macro",
  53234. height: math.unit(25, "feet"),
  53235. default: true
  53236. },
  53237. ]
  53238. ))
  53239. characterMakers.push(() => makeCharacter(
  53240. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  53241. {
  53242. front: {
  53243. height: math.unit(10, "feet"),
  53244. weight: math.unit(625, "kg"),
  53245. name: "Front",
  53246. image: {
  53247. source: "./media/characters/zain/front.svg",
  53248. extra: 1682/1498,
  53249. bottom: 223/1905
  53250. }
  53251. },
  53252. back: {
  53253. height: math.unit(10, "feet"),
  53254. weight: math.unit(625, "kg"),
  53255. name: "Back",
  53256. image: {
  53257. source: "./media/characters/zain/back.svg",
  53258. extra: 1814/1657,
  53259. bottom: 152/1966
  53260. }
  53261. },
  53262. head: {
  53263. height: math.unit(10, "feet"),
  53264. weight: math.unit(625, "kg"),
  53265. name: "Head",
  53266. image: {
  53267. source: "./media/characters/zain/head.svg",
  53268. extra: 1059/762,
  53269. bottom: 0/1059
  53270. }
  53271. },
  53272. },
  53273. [
  53274. {
  53275. name: "Normal",
  53276. height: math.unit(10, "feet"),
  53277. default: true
  53278. },
  53279. ]
  53280. ))
  53281. characterMakers.push(() => makeCharacter(
  53282. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  53283. {
  53284. front: {
  53285. height: math.unit(6 + 5/12, "feet"),
  53286. weight: math.unit(750, "lb"),
  53287. name: "Front",
  53288. image: {
  53289. source: "./media/characters/ruchex/front.svg",
  53290. extra: 877/820,
  53291. bottom: 17/894
  53292. },
  53293. extraAttributes: {
  53294. "width": {
  53295. name: "Width",
  53296. power: 1,
  53297. type: "length",
  53298. base: math.unit(4.757, "feet")
  53299. },
  53300. }
  53301. },
  53302. },
  53303. [
  53304. {
  53305. name: "Normal",
  53306. height: math.unit(6 + 5/12, "feet"),
  53307. default: true
  53308. },
  53309. ]
  53310. ))
  53311. characterMakers.push(() => makeCharacter(
  53312. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  53313. {
  53314. dressedFront: {
  53315. height: math.unit(191, "cm"),
  53316. weight: math.unit(80, "kg"),
  53317. name: "Front",
  53318. image: {
  53319. source: "./media/characters/buster/dressed-front.svg",
  53320. extra: 1022/973,
  53321. bottom: 69/1091
  53322. }
  53323. },
  53324. dressedBack: {
  53325. height: math.unit(191, "cm"),
  53326. weight: math.unit(80, "kg"),
  53327. name: "Back",
  53328. image: {
  53329. source: "./media/characters/buster/dressed-back.svg",
  53330. extra: 1018/970,
  53331. bottom: 55/1073
  53332. }
  53333. },
  53334. nudeFront: {
  53335. height: math.unit(191, "cm"),
  53336. weight: math.unit(80, "kg"),
  53337. name: "Front (Nude)",
  53338. image: {
  53339. source: "./media/characters/buster/nude-front.svg",
  53340. extra: 1022/973,
  53341. bottom: 69/1091
  53342. }
  53343. },
  53344. nudeBack: {
  53345. height: math.unit(191, "cm"),
  53346. weight: math.unit(80, "kg"),
  53347. name: "Back (Nude)",
  53348. image: {
  53349. source: "./media/characters/buster/nude-back.svg",
  53350. extra: 1018/970,
  53351. bottom: 55/1073
  53352. }
  53353. },
  53354. dick: {
  53355. height: math.unit(2.59, "feet"),
  53356. name: "Dick",
  53357. image: {
  53358. source: "./media/characters/buster/dick.svg"
  53359. }
  53360. },
  53361. ass: {
  53362. height: math.unit(1.2, "feet"),
  53363. name: "Ass",
  53364. image: {
  53365. source: "./media/characters/buster/ass.svg"
  53366. }
  53367. },
  53368. },
  53369. [
  53370. {
  53371. name: "Normal",
  53372. height: math.unit(191, "cm"),
  53373. default: true
  53374. },
  53375. ]
  53376. ))
  53377. characterMakers.push(() => makeCharacter(
  53378. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  53379. {
  53380. side: {
  53381. height: math.unit(8.1, "feet"),
  53382. weight: math.unit(3500, "lb"),
  53383. name: "Side",
  53384. image: {
  53385. source: "./media/characters/sonya/side.svg",
  53386. extra: 1730/1317,
  53387. bottom: 86/1816
  53388. }
  53389. },
  53390. },
  53391. [
  53392. {
  53393. name: "Normal",
  53394. height: math.unit(8.1, "feet"),
  53395. default: true
  53396. },
  53397. ]
  53398. ))
  53399. characterMakers.push(() => makeCharacter(
  53400. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  53401. {
  53402. front: {
  53403. height: math.unit(6, "feet"),
  53404. weight: math.unit(150, "lb"),
  53405. name: "Front",
  53406. image: {
  53407. source: "./media/characters/cadence-andrysiak/front.svg",
  53408. extra: 1164/1121,
  53409. bottom: 60/1224
  53410. }
  53411. },
  53412. back: {
  53413. height: math.unit(6, "feet"),
  53414. weight: math.unit(150, "lb"),
  53415. name: "Back",
  53416. image: {
  53417. source: "./media/characters/cadence-andrysiak/back.svg",
  53418. extra: 1200/1165,
  53419. bottom: 9/1209
  53420. }
  53421. },
  53422. dressed: {
  53423. height: math.unit(6, "feet"),
  53424. weight: math.unit(150, "lb"),
  53425. name: "Dressed",
  53426. image: {
  53427. source: "./media/characters/cadence-andrysiak/dressed.svg",
  53428. extra: 1164/1121,
  53429. bottom: 60/1224
  53430. }
  53431. },
  53432. },
  53433. [
  53434. {
  53435. name: "Micro",
  53436. height: math.unit(1, "mm")
  53437. },
  53438. {
  53439. name: "Normal",
  53440. height: math.unit(6, "feet"),
  53441. default: true
  53442. },
  53443. ]
  53444. ))
  53445. characterMakers.push(() => makeCharacter(
  53446. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  53447. {
  53448. front: {
  53449. height: math.unit(60, "inches"),
  53450. weight: math.unit(16, "lb"),
  53451. preyCapacity: math.unit(80, "liters"),
  53452. name: "Front",
  53453. image: {
  53454. source: "./media/characters/penny-lynx/front.svg",
  53455. extra: 1959/1769,
  53456. bottom: 49/2008
  53457. }
  53458. },
  53459. },
  53460. [
  53461. {
  53462. name: "Nokia",
  53463. height: math.unit(2, "inches")
  53464. },
  53465. {
  53466. name: "Desktop",
  53467. height: math.unit(24, "inches")
  53468. },
  53469. {
  53470. name: "TV",
  53471. height: math.unit(60, "inches")
  53472. },
  53473. {
  53474. name: "Jumbotron",
  53475. height: math.unit(12, "feet")
  53476. },
  53477. {
  53478. name: "Billboard",
  53479. height: math.unit(48, "feet"),
  53480. default: true
  53481. },
  53482. {
  53483. name: "IMAX",
  53484. height: math.unit(96, "feet")
  53485. },
  53486. {
  53487. name: "SINGULARITY",
  53488. height: math.unit(864938, "miles")
  53489. },
  53490. ]
  53491. ))
  53492. characterMakers.push(() => makeCharacter(
  53493. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  53494. {
  53495. front: {
  53496. height: math.unit(5 + 4/12, "feet"),
  53497. weight: math.unit(230, "lb"),
  53498. name: "Front",
  53499. image: {
  53500. source: "./media/characters/sukebe/front.svg",
  53501. extra: 2130/2038,
  53502. bottom: 90/2220
  53503. }
  53504. },
  53505. back: {
  53506. height: math.unit(3.48, "feet"),
  53507. weight: math.unit(230, "lb"),
  53508. name: "Back",
  53509. image: {
  53510. source: "./media/characters/sukebe/back.svg",
  53511. extra: 1670/1604,
  53512. bottom: 0/1670
  53513. }
  53514. },
  53515. },
  53516. [
  53517. {
  53518. name: "Normal",
  53519. height: math.unit(5 + 4/12, "feet"),
  53520. default: true
  53521. },
  53522. ]
  53523. ))
  53524. characterMakers.push(() => makeCharacter(
  53525. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  53526. {
  53527. front: {
  53528. height: math.unit(6, "feet"),
  53529. name: "Front",
  53530. image: {
  53531. source: "./media/characters/nylla/front.svg",
  53532. extra: 1868/1699,
  53533. bottom: 97/1965
  53534. }
  53535. },
  53536. back: {
  53537. height: math.unit(6, "feet"),
  53538. name: "Back",
  53539. image: {
  53540. source: "./media/characters/nylla/back.svg",
  53541. extra: 1889/1712,
  53542. bottom: 93/1982
  53543. }
  53544. },
  53545. frontNsfw: {
  53546. height: math.unit(6, "feet"),
  53547. name: "Front (NSFW)",
  53548. image: {
  53549. source: "./media/characters/nylla/front-nsfw.svg",
  53550. extra: 1868/1699,
  53551. bottom: 97/1965
  53552. },
  53553. extraAttributes: {
  53554. "dickLength": {
  53555. name: "Dick Length",
  53556. power: 1,
  53557. type: "length",
  53558. base: math.unit(1.4, "feet")
  53559. },
  53560. "cumVolume": {
  53561. name: "Cum Volume",
  53562. power: 3,
  53563. type: "volume",
  53564. base: math.unit(100, "mL")
  53565. },
  53566. }
  53567. },
  53568. backNsfw: {
  53569. height: math.unit(6, "feet"),
  53570. name: "Back (NSFW)",
  53571. image: {
  53572. source: "./media/characters/nylla/back-nsfw.svg",
  53573. extra: 1889/1712,
  53574. bottom: 93/1982
  53575. }
  53576. },
  53577. maw: {
  53578. height: math.unit(2.10, "feet"),
  53579. name: "Maw",
  53580. image: {
  53581. source: "./media/characters/nylla/maw.svg"
  53582. }
  53583. },
  53584. paws: {
  53585. height: math.unit(2.06, "feet"),
  53586. name: "Paws",
  53587. image: {
  53588. source: "./media/characters/nylla/paws.svg"
  53589. }
  53590. },
  53591. muzzle: {
  53592. height: math.unit(0.61, "feet"),
  53593. name: "Muzzle",
  53594. image: {
  53595. source: "./media/characters/nylla/muzzle.svg"
  53596. }
  53597. },
  53598. sheath: {
  53599. height: math.unit(1.305, "feet"),
  53600. name: "Sheath",
  53601. image: {
  53602. source: "./media/characters/nylla/sheath.svg"
  53603. }
  53604. },
  53605. },
  53606. [
  53607. {
  53608. name: "Micro",
  53609. height: math.unit(7.5, "inches")
  53610. },
  53611. {
  53612. name: "Normal",
  53613. height: math.unit(7, "feet"),
  53614. default: true
  53615. },
  53616. {
  53617. name: "Macro",
  53618. height: math.unit(60, "feet")
  53619. },
  53620. {
  53621. name: "Mega",
  53622. height: math.unit(200, "feet")
  53623. },
  53624. ]
  53625. ))
  53626. characterMakers.push(() => makeCharacter(
  53627. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  53628. {
  53629. front: {
  53630. height: math.unit(10, "feet"),
  53631. weight: math.unit(2300, "lb"),
  53632. name: "Front",
  53633. image: {
  53634. source: "./media/characters/hunt3r/front.svg",
  53635. extra: 1909/1742,
  53636. bottom: 46/1955
  53637. }
  53638. },
  53639. },
  53640. [
  53641. {
  53642. name: "Normal",
  53643. height: math.unit(10, "feet"),
  53644. default: true
  53645. },
  53646. ]
  53647. ))
  53648. characterMakers.push(() => makeCharacter(
  53649. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  53650. {
  53651. dressed: {
  53652. height: math.unit(11, "feet"),
  53653. weight: math.unit(18500, "lb"),
  53654. preyCapacity: math.unit(9, "people"),
  53655. name: "Dressed",
  53656. image: {
  53657. source: "./media/characters/cylphis/dressed.svg",
  53658. extra: 1028/1003,
  53659. bottom: 75/1103
  53660. },
  53661. },
  53662. undressed: {
  53663. height: math.unit(11, "feet"),
  53664. weight: math.unit(18500, "lb"),
  53665. preyCapacity: math.unit(9, "people"),
  53666. name: "Undressed",
  53667. image: {
  53668. source: "./media/characters/cylphis/undressed.svg",
  53669. extra: 1028/1003,
  53670. bottom: 75/1103
  53671. }
  53672. },
  53673. full: {
  53674. height: math.unit(11, "feet"),
  53675. weight: math.unit(18500 + 150*9, "lb"),
  53676. preyCapacity: math.unit(9, "people"),
  53677. name: "Full",
  53678. image: {
  53679. source: "./media/characters/cylphis/full.svg",
  53680. extra: 1028/1003,
  53681. bottom: 75/1103
  53682. }
  53683. },
  53684. },
  53685. [
  53686. {
  53687. name: "Small",
  53688. height: math.unit(8, "feet")
  53689. },
  53690. {
  53691. name: "Normal",
  53692. height: math.unit(11, "feet"),
  53693. default: true
  53694. },
  53695. ]
  53696. ))
  53697. characterMakers.push(() => makeCharacter(
  53698. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  53699. {
  53700. front: {
  53701. height: math.unit(2 + 7/12, "feet"),
  53702. name: "Front",
  53703. image: {
  53704. source: "./media/characters/orishan/front.svg",
  53705. extra: 1058/1023,
  53706. bottom: 23/1081
  53707. }
  53708. },
  53709. back: {
  53710. height: math.unit(2 + 7/12, "feet"),
  53711. name: "Back",
  53712. image: {
  53713. source: "./media/characters/orishan/back.svg",
  53714. extra: 1058/1023,
  53715. bottom: 23/1081
  53716. }
  53717. },
  53718. },
  53719. [
  53720. {
  53721. name: "Micro",
  53722. height: math.unit(2, "cm")
  53723. },
  53724. {
  53725. name: "Normal",
  53726. height: math.unit(2 + 7/12, "feet"),
  53727. default: true
  53728. },
  53729. ]
  53730. ))
  53731. characterMakers.push(() => makeCharacter(
  53732. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  53733. {
  53734. front: {
  53735. height: math.unit(3, "meters"),
  53736. weight: math.unit(508, "kg"),
  53737. name: "Front",
  53738. image: {
  53739. source: "./media/characters/seranis/front.svg",
  53740. extra: 1478/1454,
  53741. bottom: 41/1519
  53742. }
  53743. },
  53744. },
  53745. [
  53746. {
  53747. name: "Normal",
  53748. height: math.unit(3, "meters"),
  53749. default: true
  53750. },
  53751. {
  53752. name: "Macro",
  53753. height: math.unit(108, "meters")
  53754. },
  53755. {
  53756. name: "Megamacro",
  53757. height: math.unit(1250, "meters")
  53758. },
  53759. ]
  53760. ))
  53761. characterMakers.push(() => makeCharacter(
  53762. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  53763. {
  53764. undressed: {
  53765. height: math.unit(5 + 3/12, "feet"),
  53766. name: "Undressed",
  53767. image: {
  53768. source: "./media/characters/ankou/undressed.svg",
  53769. extra: 1301/1213,
  53770. bottom: 87/1388
  53771. }
  53772. },
  53773. dressed: {
  53774. height: math.unit(5 + 3/12, "feet"),
  53775. name: "Dressed",
  53776. image: {
  53777. source: "./media/characters/ankou/dressed.svg",
  53778. extra: 1301/1213,
  53779. bottom: 87/1388
  53780. }
  53781. },
  53782. head: {
  53783. height: math.unit(1.61, "feet"),
  53784. name: "Head",
  53785. image: {
  53786. source: "./media/characters/ankou/head.svg"
  53787. }
  53788. },
  53789. },
  53790. [
  53791. {
  53792. name: "Normal",
  53793. height: math.unit(5 + 3/12, "feet"),
  53794. default: true
  53795. },
  53796. ]
  53797. ))
  53798. characterMakers.push(() => makeCharacter(
  53799. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  53800. {
  53801. side: {
  53802. height: math.unit(6 + 3/12, "feet"),
  53803. weight: math.unit(200, "kg"),
  53804. name: "Side",
  53805. image: {
  53806. source: "./media/characters/juniper-skunktaur/side.svg",
  53807. extra: 1574/1229,
  53808. bottom: 38/1612
  53809. }
  53810. },
  53811. front: {
  53812. height: math.unit(6 + 3/12, "feet"),
  53813. weight: math.unit(200, "kg"),
  53814. name: "Front",
  53815. image: {
  53816. source: "./media/characters/juniper-skunktaur/front.svg",
  53817. extra: 1337/1278,
  53818. bottom: 22/1359
  53819. }
  53820. },
  53821. back: {
  53822. height: math.unit(6 + 3/12, "feet"),
  53823. weight: math.unit(200, "kg"),
  53824. name: "Back",
  53825. image: {
  53826. source: "./media/characters/juniper-skunktaur/back.svg",
  53827. extra: 1618/1273,
  53828. bottom: 13/1631
  53829. }
  53830. },
  53831. top: {
  53832. height: math.unit(2.62, "feet"),
  53833. weight: math.unit(200, "kg"),
  53834. name: "Top",
  53835. image: {
  53836. source: "./media/characters/juniper-skunktaur/top.svg"
  53837. }
  53838. },
  53839. },
  53840. [
  53841. {
  53842. name: "Normal",
  53843. height: math.unit(6 + 3/12, "feet"),
  53844. default: true
  53845. },
  53846. ]
  53847. ))
  53848. characterMakers.push(() => makeCharacter(
  53849. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  53850. {
  53851. front: {
  53852. height: math.unit(20.5, "feet"),
  53853. name: "Front",
  53854. image: {
  53855. source: "./media/characters/rei/front.svg",
  53856. extra: 1349/1195,
  53857. bottom: 31/1380
  53858. }
  53859. },
  53860. back: {
  53861. height: math.unit(20.5, "feet"),
  53862. name: "Back",
  53863. image: {
  53864. source: "./media/characters/rei/back.svg",
  53865. extra: 1358/1204,
  53866. bottom: 22/1380
  53867. }
  53868. },
  53869. pawsDigi: {
  53870. height: math.unit(3.45, "feet"),
  53871. name: "Paws (Digi)",
  53872. image: {
  53873. source: "./media/characters/rei/paws-digi.svg"
  53874. }
  53875. },
  53876. pawsPlanti: {
  53877. height: math.unit(3.45, "feet"),
  53878. name: "Paws (Planti)",
  53879. image: {
  53880. source: "./media/characters/rei/paws-planti.svg"
  53881. }
  53882. },
  53883. },
  53884. [
  53885. {
  53886. name: "Normal",
  53887. height: math.unit(20.5, "feet"),
  53888. default: true
  53889. },
  53890. ]
  53891. ))
  53892. characterMakers.push(() => makeCharacter(
  53893. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  53894. {
  53895. front: {
  53896. height: math.unit(5 + 11/12, "feet"),
  53897. name: "Front",
  53898. image: {
  53899. source: "./media/characters/carina/front.svg",
  53900. extra: 1720/1449,
  53901. bottom: 14/1734
  53902. }
  53903. },
  53904. back: {
  53905. height: math.unit(5 + 11/12, "feet"),
  53906. name: "Back",
  53907. image: {
  53908. source: "./media/characters/carina/back.svg",
  53909. extra: 1493/1445,
  53910. bottom: 17/1510
  53911. }
  53912. },
  53913. paw: {
  53914. height: math.unit(0.92, "feet"),
  53915. name: "Paw",
  53916. image: {
  53917. source: "./media/characters/carina/paw.svg"
  53918. }
  53919. },
  53920. },
  53921. [
  53922. {
  53923. name: "Normal",
  53924. height: math.unit(5 + 11/12, "feet"),
  53925. default: true
  53926. },
  53927. ]
  53928. ))
  53929. characterMakers.push(() => makeCharacter(
  53930. { name: "Maya", species: ["cat"], tags: ["anthro", "taur"] },
  53931. {
  53932. normal_front: {
  53933. height: math.unit(4.88, "meters"),
  53934. name: "Front",
  53935. image: {
  53936. source: "./media/characters/maya/normal-front.svg",
  53937. extra: 1222/1145,
  53938. bottom: 57/1279
  53939. },
  53940. form: "normal",
  53941. default: true
  53942. },
  53943. monstrous_front: {
  53944. height: math.unit(10, "meters"),
  53945. name: "Front",
  53946. image: {
  53947. source: "./media/characters/maya/monstrous-front.svg",
  53948. extra: 1523/1109,
  53949. bottom: 113/1636
  53950. },
  53951. form: "monstrous",
  53952. extraAttributes: {
  53953. "swallowSize": {
  53954. name: "Tailmaw Bite Size",
  53955. power: 3,
  53956. type: "volume",
  53957. base: math.unit(43000, "liters")
  53958. },
  53959. }
  53960. },
  53961. taur_front: {
  53962. height: math.unit(10, "meters"),
  53963. name: "Front",
  53964. image: {
  53965. source: "./media/characters/maya/taur-front.svg",
  53966. extra: 743/506,
  53967. bottom: 101/844
  53968. },
  53969. form: "taur",
  53970. },
  53971. },
  53972. [
  53973. {
  53974. name: "Normal",
  53975. height: math.unit(4.88, "meters"),
  53976. default: true,
  53977. form: "normal"
  53978. },
  53979. {
  53980. name: "Macro",
  53981. height: math.unit(38.1, "meters"),
  53982. form: "normal"
  53983. },
  53984. {
  53985. name: "Macro+",
  53986. height: math.unit(152.4, "meters"),
  53987. form: "normal"
  53988. },
  53989. {
  53990. name: "Macro++",
  53991. height: math.unit(16.09, "km"),
  53992. form: "normal"
  53993. },
  53994. {
  53995. name: "Mega-macro",
  53996. height: math.unit(700, "megameters"),
  53997. form: "normal"
  53998. },
  53999. {
  54000. name: "Satiated",
  54001. height: math.unit(10, "meters"),
  54002. default: true,
  54003. form: "monstrous"
  54004. },
  54005. {
  54006. name: "Hungry",
  54007. height: math.unit(75, "meters"),
  54008. form: "monstrous"
  54009. },
  54010. {
  54011. name: "Ravenous",
  54012. height: math.unit(500, "meters"),
  54013. form: "monstrous"
  54014. },
  54015. {
  54016. name: "\"Normal\"",
  54017. height: math.unit(10, "meters"),
  54018. form: "taur"
  54019. },
  54020. {
  54021. name: "Macro",
  54022. height: math.unit(50, "meters"),
  54023. form: "taur"
  54024. },
  54025. ],
  54026. {
  54027. "normal": {
  54028. name: "Normal",
  54029. default: true
  54030. },
  54031. "monstrous": {
  54032. name: "Monstrous",
  54033. },
  54034. "taur": {
  54035. name: "Taur",
  54036. },
  54037. }
  54038. ))
  54039. characterMakers.push(() => makeCharacter(
  54040. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  54041. {
  54042. front: {
  54043. height: math.unit(6 + 2/12, "feet"),
  54044. weight: math.unit(500, "lb"),
  54045. preyCapacity: math.unit(4, "people"),
  54046. name: "Front",
  54047. image: {
  54048. source: "./media/characters/yepir/front.svg"
  54049. }
  54050. },
  54051. side: {
  54052. height: math.unit(6 + 2/12, "feet"),
  54053. weight: math.unit(500, "lb"),
  54054. preyCapacity: math.unit(4, "people"),
  54055. name: "Side",
  54056. image: {
  54057. source: "./media/characters/yepir/side.svg"
  54058. }
  54059. },
  54060. paw: {
  54061. height: math.unit(1.05, "feet"),
  54062. name: "Paw",
  54063. image: {
  54064. source: "./media/characters/yepir/paw.svg"
  54065. }
  54066. },
  54067. },
  54068. [
  54069. {
  54070. name: "Normal",
  54071. height: math.unit(6 + 2/12, "feet"),
  54072. default: true
  54073. },
  54074. ]
  54075. ))
  54076. characterMakers.push(() => makeCharacter(
  54077. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  54078. {
  54079. front: {
  54080. height: math.unit(5 + 4/12, "feet"),
  54081. name: "Front",
  54082. image: {
  54083. source: "./media/characters/russec/front.svg",
  54084. extra: 1926/1626,
  54085. bottom: 72/1998
  54086. }
  54087. },
  54088. back: {
  54089. height: math.unit(5 + 4/12, "feet"),
  54090. name: "Back",
  54091. image: {
  54092. source: "./media/characters/russec/back.svg",
  54093. extra: 1910/1591,
  54094. bottom: 48/1958
  54095. }
  54096. },
  54097. },
  54098. [
  54099. {
  54100. name: "Small",
  54101. height: math.unit(5 + 4/12, "feet")
  54102. },
  54103. {
  54104. name: "Normal",
  54105. height: math.unit(72, "feet"),
  54106. default: true
  54107. },
  54108. ]
  54109. ))
  54110. characterMakers.push(() => makeCharacter(
  54111. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  54112. {
  54113. side: {
  54114. height: math.unit(12, "feet"),
  54115. name: "Side",
  54116. image: {
  54117. source: "./media/characters/cianus/side.svg",
  54118. extra: 808/526,
  54119. bottom: 61/869
  54120. }
  54121. },
  54122. },
  54123. [
  54124. {
  54125. name: "Normal",
  54126. height: math.unit(12, "feet"),
  54127. default: true
  54128. },
  54129. ]
  54130. ))
  54131. characterMakers.push(() => makeCharacter(
  54132. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  54133. {
  54134. front: {
  54135. height: math.unit(9 + 6/12, "feet"),
  54136. weight: math.unit(300, "lb"),
  54137. name: "Front",
  54138. image: {
  54139. source: "./media/characters/ahab/front.svg",
  54140. extra: 1897/1868,
  54141. bottom: 121/2018
  54142. }
  54143. },
  54144. frontNsfw: {
  54145. height: math.unit(9 + 6/12, "feet"),
  54146. weight: math.unit(300, "lb"),
  54147. name: "Front-nsfw",
  54148. image: {
  54149. source: "./media/characters/ahab/front-nsfw.svg",
  54150. extra: 1897/1868,
  54151. bottom: 121/2018
  54152. }
  54153. },
  54154. },
  54155. [
  54156. {
  54157. name: "Normal",
  54158. height: math.unit(9 + 6/12, "feet")
  54159. },
  54160. {
  54161. name: "Macro",
  54162. height: math.unit(657, "feet"),
  54163. default: true
  54164. },
  54165. ]
  54166. ))
  54167. characterMakers.push(() => makeCharacter(
  54168. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  54169. {
  54170. front: {
  54171. height: math.unit(2.69, "meters"),
  54172. weight: math.unit(132, "kg"),
  54173. name: "Front",
  54174. image: {
  54175. source: "./media/characters/aarkus/front.svg",
  54176. extra: 1400/1231,
  54177. bottom: 34/1434
  54178. }
  54179. },
  54180. back: {
  54181. height: math.unit(2.69, "meters"),
  54182. weight: math.unit(132, "kg"),
  54183. name: "Back",
  54184. image: {
  54185. source: "./media/characters/aarkus/back.svg",
  54186. extra: 1381/1218,
  54187. bottom: 30/1411
  54188. }
  54189. },
  54190. frontNsfw: {
  54191. height: math.unit(2.69, "meters"),
  54192. weight: math.unit(132, "kg"),
  54193. name: "Front (NSFW)",
  54194. image: {
  54195. source: "./media/characters/aarkus/front-nsfw.svg",
  54196. extra: 1400/1231,
  54197. bottom: 34/1434
  54198. }
  54199. },
  54200. foot: {
  54201. height: math.unit(1.45, "feet"),
  54202. name: "Foot",
  54203. image: {
  54204. source: "./media/characters/aarkus/foot.svg"
  54205. }
  54206. },
  54207. head: {
  54208. height: math.unit(2.85, "feet"),
  54209. name: "Head",
  54210. image: {
  54211. source: "./media/characters/aarkus/head.svg"
  54212. }
  54213. },
  54214. headAlt: {
  54215. height: math.unit(3.07, "feet"),
  54216. name: "Head (Alt)",
  54217. image: {
  54218. source: "./media/characters/aarkus/head-alt.svg"
  54219. }
  54220. },
  54221. mouth: {
  54222. height: math.unit(1.25, "feet"),
  54223. name: "Mouth",
  54224. image: {
  54225. source: "./media/characters/aarkus/mouth.svg"
  54226. }
  54227. },
  54228. dick: {
  54229. height: math.unit(1.77, "feet"),
  54230. name: "Dick",
  54231. image: {
  54232. source: "./media/characters/aarkus/dick.svg"
  54233. }
  54234. },
  54235. },
  54236. [
  54237. {
  54238. name: "Normal",
  54239. height: math.unit(2.69, "meters"),
  54240. default: true
  54241. },
  54242. {
  54243. name: "Macro",
  54244. height: math.unit(269, "meters")
  54245. },
  54246. {
  54247. name: "Macro+",
  54248. height: math.unit(672.5, "meters")
  54249. },
  54250. {
  54251. name: "Megamacro",
  54252. height: math.unit(2.017, "km")
  54253. },
  54254. ]
  54255. ))
  54256. characterMakers.push(() => makeCharacter(
  54257. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  54258. {
  54259. front: {
  54260. height: math.unit(23.47, "cm"),
  54261. weight: math.unit(600, "grams"),
  54262. name: "Front",
  54263. image: {
  54264. source: "./media/characters/diode/front.svg",
  54265. extra: 1778/1396,
  54266. bottom: 95/1873
  54267. }
  54268. },
  54269. side: {
  54270. height: math.unit(23.47, "cm"),
  54271. weight: math.unit(600, "grams"),
  54272. name: "Side",
  54273. image: {
  54274. source: "./media/characters/diode/side.svg",
  54275. extra: 1831/1404,
  54276. bottom: 86/1917
  54277. }
  54278. },
  54279. wings: {
  54280. height: math.unit(0.683, "feet"),
  54281. name: "Wings",
  54282. image: {
  54283. source: "./media/characters/diode/wings.svg"
  54284. }
  54285. },
  54286. },
  54287. [
  54288. {
  54289. name: "Normal",
  54290. height: math.unit(23.47, "cm"),
  54291. default: true
  54292. },
  54293. ]
  54294. ))
  54295. characterMakers.push(() => makeCharacter(
  54296. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  54297. {
  54298. front: {
  54299. height: math.unit(6 + 3/12, "feet"),
  54300. weight: math.unit(250, "lb"),
  54301. name: "Front",
  54302. image: {
  54303. source: "./media/characters/reika/front.svg",
  54304. extra: 1120/1078,
  54305. bottom: 86/1206
  54306. }
  54307. },
  54308. },
  54309. [
  54310. {
  54311. name: "Normal",
  54312. height: math.unit(6 + 3/12, "feet"),
  54313. default: true
  54314. },
  54315. ]
  54316. ))
  54317. characterMakers.push(() => makeCharacter(
  54318. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  54319. {
  54320. front: {
  54321. height: math.unit(16 + 8/12, "feet"),
  54322. weight: math.unit(9000, "lb"),
  54323. name: "Front",
  54324. image: {
  54325. source: "./media/characters/lokuto-takama/front.svg",
  54326. extra: 1774/1632,
  54327. bottom: 147/1921
  54328. },
  54329. extraAttributes: {
  54330. "bustWidth": {
  54331. name: "Bust Width",
  54332. power: 1,
  54333. type: "length",
  54334. base: math.unit(2.4, "meters")
  54335. },
  54336. "breastWeight": {
  54337. name: "Breast Weight",
  54338. power: 3,
  54339. type: "mass",
  54340. base: math.unit(1000, "kg")
  54341. },
  54342. }
  54343. },
  54344. },
  54345. [
  54346. {
  54347. name: "Normal",
  54348. height: math.unit(16 + 8/12, "feet"),
  54349. default: true
  54350. },
  54351. ]
  54352. ))
  54353. characterMakers.push(() => makeCharacter(
  54354. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  54355. {
  54356. front: {
  54357. height: math.unit(10, "cm"),
  54358. weight: math.unit(850, "grams"),
  54359. name: "Front",
  54360. image: {
  54361. source: "./media/characters/owak-bone/front.svg",
  54362. extra: 1965/1801,
  54363. bottom: 31/1996
  54364. }
  54365. },
  54366. },
  54367. [
  54368. {
  54369. name: "Normal",
  54370. height: math.unit(10, "cm"),
  54371. default: true
  54372. },
  54373. ]
  54374. ))
  54375. characterMakers.push(() => makeCharacter(
  54376. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  54377. {
  54378. front: {
  54379. height: math.unit(2 + 6/12, "feet"),
  54380. weight: math.unit(9, "lb"),
  54381. name: "Front",
  54382. image: {
  54383. source: "./media/characters/muffin/front.svg",
  54384. extra: 1220/1195,
  54385. bottom: 84/1304
  54386. }
  54387. },
  54388. },
  54389. [
  54390. {
  54391. name: "Normal",
  54392. height: math.unit(2 + 6/12, "feet"),
  54393. default: true
  54394. },
  54395. ]
  54396. ))
  54397. characterMakers.push(() => makeCharacter(
  54398. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  54399. {
  54400. front: {
  54401. height: math.unit(7, "feet"),
  54402. name: "Front",
  54403. image: {
  54404. source: "./media/characters/chimera/front.svg",
  54405. extra: 1752/1614,
  54406. bottom: 68/1820
  54407. }
  54408. },
  54409. },
  54410. [
  54411. {
  54412. name: "Normal",
  54413. height: math.unit(7, "feet")
  54414. },
  54415. {
  54416. name: "Gigamacro",
  54417. height: math.unit(2.9, "gigameters"),
  54418. default: true
  54419. },
  54420. {
  54421. name: "Universal",
  54422. height: math.unit(1.56e26, "yottameters")
  54423. },
  54424. ]
  54425. ))
  54426. characterMakers.push(() => makeCharacter(
  54427. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  54428. {
  54429. front: {
  54430. height: math.unit(3, "feet"),
  54431. weight: math.unit(20, "lb"),
  54432. name: "Front",
  54433. image: {
  54434. source: "./media/characters/kit-fennec-fox/front.svg",
  54435. extra: 1027/932,
  54436. bottom: 16/1043
  54437. }
  54438. },
  54439. back: {
  54440. height: math.unit(3, "feet"),
  54441. weight: math.unit(20, "lb"),
  54442. name: "Back",
  54443. image: {
  54444. source: "./media/characters/kit-fennec-fox/back.svg",
  54445. extra: 1027/932,
  54446. bottom: 16/1043
  54447. }
  54448. },
  54449. },
  54450. [
  54451. {
  54452. name: "Normal",
  54453. height: math.unit(3, "feet"),
  54454. default: true
  54455. },
  54456. ]
  54457. ))
  54458. characterMakers.push(() => makeCharacter(
  54459. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  54460. {
  54461. front: {
  54462. height: math.unit(167, "cm"),
  54463. name: "Front",
  54464. image: {
  54465. source: "./media/characters/blue-otter/front.svg",
  54466. extra: 1951/1920,
  54467. bottom: 31/1982
  54468. }
  54469. },
  54470. },
  54471. [
  54472. {
  54473. name: "Otter-Sized",
  54474. height: math.unit(100, "cm")
  54475. },
  54476. {
  54477. name: "Normal",
  54478. height: math.unit(167, "cm"),
  54479. default: true
  54480. },
  54481. ]
  54482. ))
  54483. characterMakers.push(() => makeCharacter(
  54484. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  54485. {
  54486. front: {
  54487. height: math.unit(4 + 4/12, "feet"),
  54488. name: "Front",
  54489. image: {
  54490. source: "./media/characters/maverick-leopard-gecko/front.svg",
  54491. extra: 1072/1067,
  54492. bottom: 117/1189
  54493. }
  54494. },
  54495. back: {
  54496. height: math.unit(4 + 4/12, "feet"),
  54497. name: "Back",
  54498. image: {
  54499. source: "./media/characters/maverick-leopard-gecko/back.svg",
  54500. extra: 1135/1129,
  54501. bottom: 57/1192
  54502. }
  54503. },
  54504. head: {
  54505. height: math.unit(1.77, "feet"),
  54506. name: "Head",
  54507. image: {
  54508. source: "./media/characters/maverick-leopard-gecko/head.svg"
  54509. }
  54510. },
  54511. },
  54512. [
  54513. {
  54514. name: "Normal",
  54515. height: math.unit(4 + 4/12, "feet"),
  54516. default: true
  54517. },
  54518. ]
  54519. ))
  54520. characterMakers.push(() => makeCharacter(
  54521. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  54522. {
  54523. front: {
  54524. height: math.unit(2, "inches"),
  54525. name: "Front",
  54526. image: {
  54527. source: "./media/characters/carley-hartford/front.svg",
  54528. extra: 1035/988,
  54529. bottom: 23/1058
  54530. }
  54531. },
  54532. back: {
  54533. height: math.unit(2, "inches"),
  54534. name: "Back",
  54535. image: {
  54536. source: "./media/characters/carley-hartford/back.svg",
  54537. extra: 1035/988,
  54538. bottom: 23/1058
  54539. }
  54540. },
  54541. dressed: {
  54542. height: math.unit(2, "inches"),
  54543. name: "Dressed",
  54544. image: {
  54545. source: "./media/characters/carley-hartford/dressed.svg",
  54546. extra: 651/620,
  54547. bottom: 0/651
  54548. }
  54549. },
  54550. },
  54551. [
  54552. {
  54553. name: "Micro",
  54554. height: math.unit(2, "inches"),
  54555. default: true
  54556. },
  54557. {
  54558. name: "Macro",
  54559. height: math.unit(6 + 3/12, "feet")
  54560. },
  54561. ]
  54562. ))
  54563. characterMakers.push(() => makeCharacter(
  54564. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  54565. {
  54566. front: {
  54567. height: math.unit(2 + 3/12, "feet"),
  54568. weight: math.unit(15 + 7/16, "lb"),
  54569. name: "Front",
  54570. image: {
  54571. source: "./media/characters/duke/front.svg",
  54572. extra: 910/815,
  54573. bottom: 30/940
  54574. }
  54575. },
  54576. },
  54577. [
  54578. {
  54579. name: "Normal",
  54580. height: math.unit(2 + 3/12, "feet"),
  54581. default: true
  54582. },
  54583. ]
  54584. ))
  54585. characterMakers.push(() => makeCharacter(
  54586. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  54587. {
  54588. front: {
  54589. height: math.unit(5 + 4/12, "feet"),
  54590. weight: math.unit(156, "lb"),
  54591. name: "Front",
  54592. image: {
  54593. source: "./media/characters/dein/front.svg",
  54594. extra: 855/815,
  54595. bottom: 48/903
  54596. }
  54597. },
  54598. side: {
  54599. height: math.unit(5 + 4/12, "feet"),
  54600. weight: math.unit(156, "lb"),
  54601. name: "side",
  54602. image: {
  54603. source: "./media/characters/dein/side.svg",
  54604. extra: 846/803,
  54605. bottom: 25/871
  54606. }
  54607. },
  54608. maw: {
  54609. height: math.unit(1.45, "feet"),
  54610. name: "Maw",
  54611. image: {
  54612. source: "./media/characters/dein/maw.svg"
  54613. }
  54614. },
  54615. },
  54616. [
  54617. {
  54618. name: "Ferret Sized",
  54619. height: math.unit(2 + 5/12, "feet")
  54620. },
  54621. {
  54622. name: "Normal",
  54623. height: math.unit(5 + 4/12, "feet"),
  54624. default: true
  54625. },
  54626. ]
  54627. ))
  54628. characterMakers.push(() => makeCharacter(
  54629. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  54630. {
  54631. front: {
  54632. height: math.unit(84 + 8/12, "feet"),
  54633. weight: math.unit(942180, "lb"),
  54634. name: "Front",
  54635. image: {
  54636. source: "./media/characters/daurine-arima/front.svg",
  54637. extra: 1989/1782,
  54638. bottom: 37/2026
  54639. }
  54640. },
  54641. side: {
  54642. height: math.unit(84 + 8/12, "feet"),
  54643. weight: math.unit(942180, "lb"),
  54644. name: "Side",
  54645. image: {
  54646. source: "./media/characters/daurine-arima/side.svg",
  54647. extra: 1997/1790,
  54648. bottom: 21/2018
  54649. }
  54650. },
  54651. back: {
  54652. height: math.unit(84 + 8/12, "feet"),
  54653. weight: math.unit(942180, "lb"),
  54654. name: "Back",
  54655. image: {
  54656. source: "./media/characters/daurine-arima/back.svg",
  54657. extra: 1992/1800,
  54658. bottom: 12/2004
  54659. }
  54660. },
  54661. head: {
  54662. height: math.unit(15.5, "feet"),
  54663. name: "Head",
  54664. image: {
  54665. source: "./media/characters/daurine-arima/head.svg"
  54666. }
  54667. },
  54668. headAlt: {
  54669. height: math.unit(19.19, "feet"),
  54670. name: "Head (Alt)",
  54671. image: {
  54672. source: "./media/characters/daurine-arima/head-alt.svg"
  54673. }
  54674. },
  54675. },
  54676. [
  54677. {
  54678. name: "Minimum height",
  54679. height: math.unit(8 + 10/12, "feet")
  54680. },
  54681. {
  54682. name: "Comfort height",
  54683. height: math.unit(19 + 6 /12, "feet")
  54684. },
  54685. {
  54686. name: "\"Normal\" height",
  54687. height: math.unit(28 + 10/12, "feet")
  54688. },
  54689. {
  54690. name: "Base height",
  54691. height: math.unit(84 + 8/12, "feet"),
  54692. default: true
  54693. },
  54694. {
  54695. name: "Mini-macro",
  54696. height: math.unit(2360, "feet")
  54697. },
  54698. {
  54699. name: "Macro",
  54700. height: math.unit(10, "miles")
  54701. },
  54702. {
  54703. name: "Goddess",
  54704. height: math.unit(9.99e40, "yottameters")
  54705. },
  54706. ]
  54707. ))
  54708. characterMakers.push(() => makeCharacter(
  54709. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  54710. {
  54711. front: {
  54712. height: math.unit(2.3, "meters"),
  54713. name: "Front",
  54714. image: {
  54715. source: "./media/characters/cilenomon/front.svg",
  54716. extra: 1963/1778,
  54717. bottom: 54/2017
  54718. }
  54719. },
  54720. },
  54721. [
  54722. {
  54723. name: "Normal",
  54724. height: math.unit(2.3, "meters"),
  54725. default: true
  54726. },
  54727. {
  54728. name: "Big",
  54729. height: math.unit(5, "meters")
  54730. },
  54731. {
  54732. name: "Macro",
  54733. height: math.unit(30, "meters")
  54734. },
  54735. {
  54736. name: "True",
  54737. height: math.unit(1, "universe")
  54738. },
  54739. ]
  54740. ))
  54741. characterMakers.push(() => makeCharacter(
  54742. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  54743. {
  54744. front: {
  54745. height: math.unit(5, "feet"),
  54746. name: "Front",
  54747. image: {
  54748. source: "./media/characters/sen-mink/front.svg",
  54749. extra: 1727/1675,
  54750. bottom: 35/1762
  54751. }
  54752. },
  54753. },
  54754. [
  54755. {
  54756. name: "Normal",
  54757. height: math.unit(5, "feet"),
  54758. default: true
  54759. },
  54760. ]
  54761. ))
  54762. characterMakers.push(() => makeCharacter(
  54763. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  54764. {
  54765. front: {
  54766. height: math.unit(5.42999, "feet"),
  54767. weight: math.unit(100, "lb"),
  54768. name: "Front",
  54769. image: {
  54770. source: "./media/characters/ophois/front.svg",
  54771. extra: 1429/1286,
  54772. bottom: 60/1489
  54773. }
  54774. },
  54775. },
  54776. [
  54777. {
  54778. name: "Normal",
  54779. height: math.unit(5.42999, "feet"),
  54780. default: true
  54781. },
  54782. ]
  54783. ))
  54784. characterMakers.push(() => makeCharacter(
  54785. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  54786. {
  54787. front: {
  54788. height: math.unit(2, "meters"),
  54789. name: "Front",
  54790. image: {
  54791. source: "./media/characters/riley/front.svg",
  54792. extra: 1779/1754,
  54793. bottom: 139/1918
  54794. }
  54795. },
  54796. },
  54797. [
  54798. {
  54799. name: "Normal",
  54800. height: math.unit(2, "meters"),
  54801. default: true
  54802. },
  54803. ]
  54804. ))
  54805. characterMakers.push(() => makeCharacter(
  54806. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  54807. {
  54808. front: {
  54809. height: math.unit(6 + 2/12, "feet"),
  54810. weight: math.unit(195, "lb"),
  54811. preyCapacity: math.unit(6, "people"),
  54812. name: "Front",
  54813. image: {
  54814. source: "./media/characters/shuken-flash/front.svg",
  54815. extra: 1905/1739,
  54816. bottom: 65/1970
  54817. }
  54818. },
  54819. back: {
  54820. height: math.unit(6 + 2/12, "feet"),
  54821. weight: math.unit(195, "lb"),
  54822. preyCapacity: math.unit(6, "people"),
  54823. name: "Back",
  54824. image: {
  54825. source: "./media/characters/shuken-flash/back.svg",
  54826. extra: 1912/1751,
  54827. bottom: 13/1925
  54828. }
  54829. },
  54830. },
  54831. [
  54832. {
  54833. name: "Normal",
  54834. height: math.unit(6 + 2/12, "feet"),
  54835. default: true
  54836. },
  54837. ]
  54838. ))
  54839. characterMakers.push(() => makeCharacter(
  54840. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  54841. {
  54842. front: {
  54843. height: math.unit(5 + 9/12, "feet"),
  54844. weight: math.unit(150, "lb"),
  54845. name: "Front",
  54846. image: {
  54847. source: "./media/characters/plat/front.svg",
  54848. extra: 1816/1703,
  54849. bottom: 43/1859
  54850. }
  54851. },
  54852. side: {
  54853. height: math.unit(5 + 9/12, "feet"),
  54854. weight: math.unit(300, "lb"),
  54855. name: "Side",
  54856. image: {
  54857. source: "./media/characters/plat/side.svg",
  54858. extra: 1824/1699,
  54859. bottom: 18/1842
  54860. }
  54861. },
  54862. },
  54863. [
  54864. {
  54865. name: "Normal",
  54866. height: math.unit(5 + 9/12, "feet"),
  54867. default: true
  54868. },
  54869. ]
  54870. ))
  54871. characterMakers.push(() => makeCharacter(
  54872. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  54873. {
  54874. front: {
  54875. height: math.unit(9, "feet"),
  54876. weight: math.unit(1800, "lb"),
  54877. name: "Front",
  54878. image: {
  54879. source: "./media/characters/elaine/front.svg",
  54880. extra: 1833/1354,
  54881. bottom: 25/1858
  54882. }
  54883. },
  54884. back: {
  54885. height: math.unit(8.8, "feet"),
  54886. weight: math.unit(1800, "lb"),
  54887. name: "Back",
  54888. image: {
  54889. source: "./media/characters/elaine/back.svg",
  54890. extra: 1641/1233,
  54891. bottom: 53/1694
  54892. }
  54893. },
  54894. },
  54895. [
  54896. {
  54897. name: "Normal",
  54898. height: math.unit(9, "feet"),
  54899. default: true
  54900. },
  54901. ]
  54902. ))
  54903. characterMakers.push(() => makeCharacter(
  54904. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  54905. {
  54906. front: {
  54907. height: math.unit(17 + 9/12, "feet"),
  54908. weight: math.unit(8000, "lb"),
  54909. name: "Front",
  54910. image: {
  54911. source: "./media/characters/vera-raven/front.svg",
  54912. extra: 1457/1412,
  54913. bottom: 121/1578
  54914. }
  54915. },
  54916. side: {
  54917. height: math.unit(17 + 9/12, "feet"),
  54918. weight: math.unit(8000, "lb"),
  54919. name: "Side",
  54920. image: {
  54921. source: "./media/characters/vera-raven/side.svg",
  54922. extra: 1510/1464,
  54923. bottom: 54/1564
  54924. }
  54925. },
  54926. },
  54927. [
  54928. {
  54929. name: "Normal",
  54930. height: math.unit(17 + 9/12, "feet"),
  54931. default: true
  54932. },
  54933. ]
  54934. ))
  54935. characterMakers.push(() => makeCharacter(
  54936. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  54937. {
  54938. dressed: {
  54939. height: math.unit(6 + 9/12, "feet"),
  54940. name: "Dressed",
  54941. image: {
  54942. source: "./media/characters/nakisha/dressed.svg",
  54943. extra: 1909/1757,
  54944. bottom: 48/1957
  54945. }
  54946. },
  54947. nude: {
  54948. height: math.unit(6 + 9/12, "feet"),
  54949. name: "Nude",
  54950. image: {
  54951. source: "./media/characters/nakisha/nude.svg",
  54952. extra: 1917/1765,
  54953. bottom: 34/1951
  54954. }
  54955. },
  54956. },
  54957. [
  54958. {
  54959. name: "Normal",
  54960. height: math.unit(6 + 9/12, "feet"),
  54961. default: true
  54962. },
  54963. ]
  54964. ))
  54965. characterMakers.push(() => makeCharacter(
  54966. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  54967. {
  54968. front: {
  54969. height: math.unit(87, "meters"),
  54970. name: "Front",
  54971. image: {
  54972. source: "./media/characters/serafin/front.svg",
  54973. extra: 1919/1776,
  54974. bottom: 65/1984
  54975. }
  54976. },
  54977. },
  54978. [
  54979. {
  54980. name: "Normal",
  54981. height: math.unit(87, "meters"),
  54982. default: true
  54983. },
  54984. ]
  54985. ))
  54986. characterMakers.push(() => makeCharacter(
  54987. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  54988. {
  54989. front: {
  54990. height: math.unit(6, "feet"),
  54991. weight: math.unit(200, "lb"),
  54992. name: "Front",
  54993. image: {
  54994. source: "./media/characters/poptart/front.svg",
  54995. extra: 615/583,
  54996. bottom: 23/638
  54997. }
  54998. },
  54999. back: {
  55000. height: math.unit(6, "feet"),
  55001. weight: math.unit(200, "lb"),
  55002. name: "Back",
  55003. image: {
  55004. source: "./media/characters/poptart/back.svg",
  55005. extra: 617/584,
  55006. bottom: 22/639
  55007. }
  55008. },
  55009. frontNsfw: {
  55010. height: math.unit(6, "feet"),
  55011. weight: math.unit(200, "lb"),
  55012. name: "Front (NSFW)",
  55013. image: {
  55014. source: "./media/characters/poptart/front-nsfw.svg",
  55015. extra: 615/583,
  55016. bottom: 23/638
  55017. }
  55018. },
  55019. backNsfw: {
  55020. height: math.unit(6, "feet"),
  55021. weight: math.unit(200, "lb"),
  55022. name: "Back (NSFW)",
  55023. image: {
  55024. source: "./media/characters/poptart/back-nsfw.svg",
  55025. extra: 617/584,
  55026. bottom: 22/639
  55027. }
  55028. },
  55029. hand: {
  55030. height: math.unit(1.14, "feet"),
  55031. name: "Hand",
  55032. image: {
  55033. source: "./media/characters/poptart/hand.svg"
  55034. }
  55035. },
  55036. foot: {
  55037. height: math.unit(1.5, "feet"),
  55038. name: "Foot",
  55039. image: {
  55040. source: "./media/characters/poptart/foot.svg"
  55041. }
  55042. },
  55043. },
  55044. [
  55045. {
  55046. name: "Normal",
  55047. height: math.unit(6, "feet"),
  55048. default: true
  55049. },
  55050. {
  55051. name: "Grande",
  55052. height: math.unit(350, "feet")
  55053. },
  55054. {
  55055. name: "Massif",
  55056. height: math.unit(967, "feet")
  55057. },
  55058. ]
  55059. ))
  55060. characterMakers.push(() => makeCharacter(
  55061. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  55062. {
  55063. hyenaSide: {
  55064. height: math.unit(120, "cm"),
  55065. weight: math.unit(120, "lb"),
  55066. name: "Side",
  55067. image: {
  55068. source: "./media/characters/trance/hyena-side.svg",
  55069. extra: 998/904,
  55070. bottom: 76/1074
  55071. }
  55072. },
  55073. },
  55074. [
  55075. {
  55076. name: "Normal",
  55077. height: math.unit(120, "cm"),
  55078. default: true
  55079. },
  55080. {
  55081. name: "Dire",
  55082. height: math.unit(230, "cm")
  55083. },
  55084. {
  55085. name: "Macro",
  55086. height: math.unit(37, "feet")
  55087. },
  55088. ]
  55089. ))
  55090. characterMakers.push(() => makeCharacter(
  55091. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  55092. {
  55093. front: {
  55094. height: math.unit(6 + 3/12, "feet"),
  55095. name: "Front",
  55096. image: {
  55097. source: "./media/characters/michael-berretta/front.svg",
  55098. extra: 515/494,
  55099. bottom: 20/535
  55100. }
  55101. },
  55102. back: {
  55103. height: math.unit(6 + 3/12, "feet"),
  55104. name: "Back",
  55105. image: {
  55106. source: "./media/characters/michael-berretta/back.svg",
  55107. extra: 520/497,
  55108. bottom: 21/541
  55109. }
  55110. },
  55111. frontNsfw: {
  55112. height: math.unit(6 + 3/12, "feet"),
  55113. name: "Front (NSFW)",
  55114. image: {
  55115. source: "./media/characters/michael-berretta/front-nsfw.svg",
  55116. extra: 515/494,
  55117. bottom: 20/535
  55118. }
  55119. },
  55120. dick: {
  55121. height: math.unit(1, "feet"),
  55122. name: "Dick",
  55123. image: {
  55124. source: "./media/characters/michael-berretta/dick.svg"
  55125. }
  55126. },
  55127. },
  55128. [
  55129. {
  55130. name: "Normal",
  55131. height: math.unit(6 + 3/12, "feet"),
  55132. default: true
  55133. },
  55134. {
  55135. name: "Big",
  55136. height: math.unit(12, "feet")
  55137. },
  55138. {
  55139. name: "Macro",
  55140. height: math.unit(187.5, "feet")
  55141. },
  55142. ]
  55143. ))
  55144. characterMakers.push(() => makeCharacter(
  55145. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  55146. {
  55147. front: {
  55148. height: math.unit(9 + 9/12, "feet"),
  55149. weight: math.unit(1244, "lb"),
  55150. name: "Front",
  55151. image: {
  55152. source: "./media/characters/stella-edgecomb/front.svg",
  55153. extra: 1835/1706,
  55154. bottom: 49/1884
  55155. }
  55156. },
  55157. pen: {
  55158. height: math.unit(0.95, "feet"),
  55159. name: "Pen",
  55160. image: {
  55161. source: "./media/characters/stella-edgecomb/pen.svg"
  55162. }
  55163. },
  55164. },
  55165. [
  55166. {
  55167. name: "Cozy Bear",
  55168. height: math.unit(0.5, "inches")
  55169. },
  55170. {
  55171. name: "Normal",
  55172. height: math.unit(9 + 9/12, "feet"),
  55173. default: true
  55174. },
  55175. {
  55176. name: "Giga Bear",
  55177. height: math.unit(1, "mile")
  55178. },
  55179. {
  55180. name: "Great Bear",
  55181. height: math.unit(53, "miles")
  55182. },
  55183. {
  55184. name: "Goddess Bear",
  55185. height: math.unit(40000, "miles")
  55186. },
  55187. {
  55188. name: "Sun Bear",
  55189. height: math.unit(900000, "miles")
  55190. },
  55191. ]
  55192. ))
  55193. characterMakers.push(() => makeCharacter(
  55194. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  55195. {
  55196. anthroFront: {
  55197. height: math.unit(556, "cm"),
  55198. weight: math.unit(2650, "kg"),
  55199. preyCapacity: math.unit(3, "people"),
  55200. name: "Front",
  55201. image: {
  55202. source: "./media/characters/ash´iika/front.svg",
  55203. extra: 710/673,
  55204. bottom: 15/725
  55205. },
  55206. form: "anthro",
  55207. default: true
  55208. },
  55209. anthroSide: {
  55210. height: math.unit(556, "cm"),
  55211. weight: math.unit(2650, "kg"),
  55212. preyCapacity: math.unit(3, "people"),
  55213. name: "Side",
  55214. image: {
  55215. source: "./media/characters/ash´iika/side.svg",
  55216. extra: 696/676,
  55217. bottom: 13/709
  55218. },
  55219. form: "anthro"
  55220. },
  55221. anthroDressed: {
  55222. height: math.unit(556, "cm"),
  55223. weight: math.unit(2650, "kg"),
  55224. preyCapacity: math.unit(3, "people"),
  55225. name: "Dressed",
  55226. image: {
  55227. source: "./media/characters/ash´iika/dressed.svg",
  55228. extra: 710/673,
  55229. bottom: 15/725
  55230. },
  55231. form: "anthro"
  55232. },
  55233. anthroHead: {
  55234. height: math.unit(3.5, "feet"),
  55235. name: "Head",
  55236. image: {
  55237. source: "./media/characters/ash´iika/head.svg",
  55238. extra: 348/291,
  55239. bottom: 45/393
  55240. },
  55241. form: "anthro"
  55242. },
  55243. feralSide: {
  55244. height: math.unit(870, "cm"),
  55245. weight: math.unit(17500, "kg"),
  55246. preyCapacity: math.unit(15, "people"),
  55247. name: "Side",
  55248. image: {
  55249. source: "./media/characters/ash´iika/feral.svg",
  55250. extra: 595/199,
  55251. bottom: 7/602
  55252. },
  55253. form: "feral",
  55254. default: true,
  55255. },
  55256. },
  55257. [
  55258. {
  55259. name: "Normal",
  55260. height: math.unit(556, "cm"),
  55261. default: true,
  55262. form: "anthro"
  55263. },
  55264. {
  55265. name: "Macro",
  55266. height: math.unit(88, "meters"),
  55267. form: "anthro"
  55268. },
  55269. {
  55270. name: "Normal",
  55271. height: math.unit(870, "cm"),
  55272. default: true,
  55273. form: "feral"
  55274. },
  55275. {
  55276. name: "Large",
  55277. height: math.unit(25, "meters"),
  55278. form: "feral"
  55279. },
  55280. ],
  55281. {
  55282. "anthro": {
  55283. name: "Anthro",
  55284. default: true
  55285. },
  55286. "feral": {
  55287. name: "Feral",
  55288. },
  55289. }
  55290. ))
  55291. characterMakers.push(() => makeCharacter(
  55292. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  55293. {
  55294. front: {
  55295. height: math.unit(10, "feet"),
  55296. weight: math.unit(800, "lb"),
  55297. name: "Front",
  55298. image: {
  55299. source: "./media/characters/yen/front.svg",
  55300. extra: 443/411,
  55301. bottom: 6/449
  55302. }
  55303. },
  55304. sleeping: {
  55305. height: math.unit(10, "feet"),
  55306. weight: math.unit(800, "lb"),
  55307. name: "Sleeping",
  55308. image: {
  55309. source: "./media/characters/yen/sleeping.svg",
  55310. extra: 470/422,
  55311. bottom: 0/470
  55312. }
  55313. },
  55314. head: {
  55315. height: math.unit(2.2, "feet"),
  55316. name: "Head",
  55317. image: {
  55318. source: "./media/characters/yen/head.svg"
  55319. }
  55320. },
  55321. headAlt: {
  55322. height: math.unit(2.1, "feet"),
  55323. name: "Head (Alt)",
  55324. image: {
  55325. source: "./media/characters/yen/head-alt.svg"
  55326. }
  55327. },
  55328. },
  55329. [
  55330. {
  55331. name: "Normal",
  55332. height: math.unit(10, "feet"),
  55333. default: true
  55334. },
  55335. ]
  55336. ))
  55337. characterMakers.push(() => makeCharacter(
  55338. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  55339. {
  55340. front: {
  55341. height: math.unit(12, "feet"),
  55342. name: "Front",
  55343. image: {
  55344. source: "./media/characters/citra/front.svg",
  55345. extra: 1950/1710,
  55346. bottom: 47/1997
  55347. }
  55348. },
  55349. },
  55350. [
  55351. {
  55352. name: "Normal",
  55353. height: math.unit(12, "feet"),
  55354. default: true
  55355. },
  55356. ]
  55357. ))
  55358. characterMakers.push(() => makeCharacter(
  55359. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  55360. {
  55361. side: {
  55362. height: math.unit(7 + 10/12, "feet"),
  55363. name: "Side",
  55364. image: {
  55365. source: "./media/characters/sholstim/side.svg",
  55366. extra: 786/682,
  55367. bottom: 40/826
  55368. }
  55369. },
  55370. },
  55371. [
  55372. {
  55373. name: "Normal",
  55374. height: math.unit(7 + 10/12, "feet"),
  55375. default: true
  55376. },
  55377. ]
  55378. ))
  55379. characterMakers.push(() => makeCharacter(
  55380. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  55381. {
  55382. front: {
  55383. height: math.unit(3.10, "meters"),
  55384. name: "Front",
  55385. image: {
  55386. source: "./media/characters/aggyn/front.svg",
  55387. extra: 1188/963,
  55388. bottom: 24/1212
  55389. }
  55390. },
  55391. },
  55392. [
  55393. {
  55394. name: "Normal",
  55395. height: math.unit(3.10, "meters"),
  55396. default: true
  55397. },
  55398. ]
  55399. ))
  55400. characterMakers.push(() => makeCharacter(
  55401. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  55402. {
  55403. front: {
  55404. height: math.unit(7 + 5/12, "feet"),
  55405. weight: math.unit(687, "lb"),
  55406. name: "Front",
  55407. image: {
  55408. source: "./media/characters/alsandair-hergenroether/front.svg",
  55409. extra: 1251/1186,
  55410. bottom: 75/1326
  55411. }
  55412. },
  55413. back: {
  55414. height: math.unit(7 + 5/12, "feet"),
  55415. weight: math.unit(687, "lb"),
  55416. name: "Back",
  55417. image: {
  55418. source: "./media/characters/alsandair-hergenroether/back.svg",
  55419. extra: 1290/1229,
  55420. bottom: 17/1307
  55421. }
  55422. },
  55423. },
  55424. [
  55425. {
  55426. name: "Max Compression",
  55427. height: math.unit(7 + 5/12, "feet"),
  55428. default: true
  55429. },
  55430. {
  55431. name: "\"Normal\"",
  55432. height: math.unit(2, "universes")
  55433. },
  55434. ]
  55435. ))
  55436. characterMakers.push(() => makeCharacter(
  55437. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  55438. {
  55439. front: {
  55440. height: math.unit(4 + 1/12, "feet"),
  55441. weight: math.unit(92, "lb"),
  55442. name: "Front",
  55443. image: {
  55444. source: "./media/characters/ie/front.svg",
  55445. extra: 1585/1352,
  55446. bottom: 91/1676
  55447. }
  55448. },
  55449. },
  55450. [
  55451. {
  55452. name: "Normal",
  55453. height: math.unit(4 + 1/12, "feet"),
  55454. default: true
  55455. },
  55456. ]
  55457. ))
  55458. characterMakers.push(() => makeCharacter(
  55459. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  55460. {
  55461. anthro: {
  55462. height: math.unit(6, "feet"),
  55463. weight: math.unit(150, "lb"),
  55464. name: "Front",
  55465. image: {
  55466. source: "./media/characters/willow/anthro.svg",
  55467. extra: 1073/986,
  55468. bottom: 34/1107
  55469. },
  55470. form: "anthro",
  55471. default: true
  55472. },
  55473. taur: {
  55474. height: math.unit(6, "feet"),
  55475. weight: math.unit(150, "lb"),
  55476. name: "Side",
  55477. image: {
  55478. source: "./media/characters/willow/taur.svg",
  55479. extra: 647/512,
  55480. bottom: 136/783
  55481. },
  55482. form: "taur",
  55483. default: true
  55484. },
  55485. },
  55486. [
  55487. {
  55488. name: "Humanoid",
  55489. height: math.unit(2.7, "meters"),
  55490. form: "anthro"
  55491. },
  55492. {
  55493. name: "Normal",
  55494. height: math.unit(9, "meters"),
  55495. form: "anthro",
  55496. default: true
  55497. },
  55498. {
  55499. name: "Humanoid",
  55500. height: math.unit(2.1, "meters"),
  55501. form: "taur"
  55502. },
  55503. {
  55504. name: "Normal",
  55505. height: math.unit(7, "meters"),
  55506. form: "taur",
  55507. default: true
  55508. },
  55509. ],
  55510. {
  55511. "anthro": {
  55512. name: "Anthro",
  55513. default: true
  55514. },
  55515. "taur": {
  55516. name: "Taur",
  55517. },
  55518. }
  55519. ))
  55520. characterMakers.push(() => makeCharacter(
  55521. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  55522. {
  55523. front: {
  55524. height: math.unit(2 + 5/12, "feet"),
  55525. name: "Front",
  55526. image: {
  55527. source: "./media/characters/kyan/front.svg",
  55528. extra: 460/334,
  55529. bottom: 23/483
  55530. },
  55531. extraAttributes: {
  55532. "toeLength": {
  55533. name: "Toe Length",
  55534. power: 1,
  55535. type: "length",
  55536. base: math.unit(7, "cm")
  55537. },
  55538. "toeclawLength": {
  55539. name: "Toeclaw Length",
  55540. power: 1,
  55541. type: "length",
  55542. base: math.unit(4.7, "cm")
  55543. },
  55544. "earHeight": {
  55545. name: "Ear Height",
  55546. power: 1,
  55547. type: "length",
  55548. base: math.unit(14.1, "cm")
  55549. },
  55550. }
  55551. },
  55552. paws: {
  55553. height: math.unit(0.45, "feet"),
  55554. name: "Paws",
  55555. image: {
  55556. source: "./media/characters/kyan/paws.svg",
  55557. extra: 581/581,
  55558. bottom: 114/695
  55559. }
  55560. },
  55561. },
  55562. [
  55563. {
  55564. name: "Normal",
  55565. height: math.unit(2 + 5/12, "feet"),
  55566. default: true
  55567. },
  55568. ]
  55569. ))
  55570. characterMakers.push(() => makeCharacter(
  55571. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  55572. {
  55573. front: {
  55574. height: math.unit(2 + 2/3, "feet"),
  55575. name: "Front",
  55576. image: {
  55577. source: "./media/characters/xazzon/front.svg",
  55578. extra: 1109/984,
  55579. bottom: 42/1151
  55580. }
  55581. },
  55582. back: {
  55583. height: math.unit(2 + 2/3, "feet"),
  55584. name: "Back",
  55585. image: {
  55586. source: "./media/characters/xazzon/back.svg",
  55587. extra: 1095/971,
  55588. bottom: 23/1118
  55589. }
  55590. },
  55591. },
  55592. [
  55593. {
  55594. name: "Normal",
  55595. height: math.unit(2 + 2/3, "feet"),
  55596. default: true
  55597. },
  55598. ]
  55599. ))
  55600. characterMakers.push(() => makeCharacter(
  55601. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  55602. {
  55603. front: {
  55604. height: math.unit(8, "feet"),
  55605. weight: math.unit(300, "lb"),
  55606. name: "Front",
  55607. image: {
  55608. source: "./media/characters/khyla-shadowsong/front.svg",
  55609. extra: 861/798,
  55610. bottom: 32/893
  55611. }
  55612. },
  55613. side: {
  55614. height: math.unit(8, "feet"),
  55615. weight: math.unit(300, "lb"),
  55616. name: "Side",
  55617. image: {
  55618. source: "./media/characters/khyla-shadowsong/side.svg",
  55619. extra: 790/750,
  55620. bottom: 87/877
  55621. }
  55622. },
  55623. back: {
  55624. height: math.unit(8, "feet"),
  55625. weight: math.unit(300, "lb"),
  55626. name: "Back",
  55627. image: {
  55628. source: "./media/characters/khyla-shadowsong/back.svg",
  55629. extra: 855/808,
  55630. bottom: 14/869
  55631. }
  55632. },
  55633. head: {
  55634. height: math.unit(2.7, "feet"),
  55635. name: "Head",
  55636. image: {
  55637. source: "./media/characters/khyla-shadowsong/head.svg"
  55638. }
  55639. },
  55640. },
  55641. [
  55642. {
  55643. name: "Micro",
  55644. height: math.unit(6, "inches")
  55645. },
  55646. {
  55647. name: "Normal",
  55648. height: math.unit(8, "feet"),
  55649. default: true
  55650. },
  55651. ]
  55652. ))
  55653. characterMakers.push(() => makeCharacter(
  55654. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  55655. {
  55656. hyperFront: {
  55657. height: math.unit(9 + 4/12, "feet"),
  55658. weight: math.unit(2000, "lb"),
  55659. name: "Front",
  55660. image: {
  55661. source: "./media/characters/tiden/hyper-front.svg",
  55662. extra: 400/382,
  55663. bottom: 6/406
  55664. },
  55665. form: "hyper",
  55666. },
  55667. regularFront: {
  55668. height: math.unit(7 + 10/12, "feet"),
  55669. weight: math.unit(470, "lb"),
  55670. name: "Front",
  55671. image: {
  55672. source: "./media/characters/tiden/regular-front.svg",
  55673. extra: 468/442,
  55674. bottom: 6/474
  55675. },
  55676. form: "regular",
  55677. },
  55678. },
  55679. [
  55680. {
  55681. name: "Normal",
  55682. height: math.unit(9 + 4/12, "feet"),
  55683. default: true,
  55684. form: "hyper"
  55685. },
  55686. {
  55687. name: "Normal",
  55688. height: math.unit(7 + 10/12, "feet"),
  55689. default: true,
  55690. form: "regular"
  55691. },
  55692. ],
  55693. {
  55694. "hyper": {
  55695. name: "Hyper",
  55696. default: true
  55697. },
  55698. "regular": {
  55699. name: "Regular",
  55700. },
  55701. }
  55702. ))
  55703. characterMakers.push(() => makeCharacter(
  55704. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  55705. {
  55706. side: {
  55707. height: math.unit(6, "feet"),
  55708. weight: math.unit(150, "lb"),
  55709. name: "Side",
  55710. image: {
  55711. source: "./media/characters/jason-crowe/side.svg",
  55712. extra: 1771/766,
  55713. bottom: 219/1990
  55714. }
  55715. },
  55716. },
  55717. [
  55718. {
  55719. name: "Pocket Gryphon",
  55720. height: math.unit(6, "cm")
  55721. },
  55722. {
  55723. name: "Raven",
  55724. height: math.unit(60, "cm")
  55725. },
  55726. {
  55727. name: "Normal",
  55728. height: math.unit(1, "meter"),
  55729. default: true
  55730. },
  55731. ]
  55732. ))
  55733. characterMakers.push(() => makeCharacter(
  55734. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  55735. {
  55736. front: {
  55737. height: math.unit(9 + 6/12, "feet"),
  55738. weight: math.unit(1100, "lb"),
  55739. name: "Front",
  55740. image: {
  55741. source: "./media/characters/django/front.svg",
  55742. extra: 1231/1136,
  55743. bottom: 34/1265
  55744. }
  55745. },
  55746. side: {
  55747. height: math.unit(9 + 6/12, "feet"),
  55748. weight: math.unit(1100, "lb"),
  55749. name: "Side",
  55750. image: {
  55751. source: "./media/characters/django/side.svg",
  55752. extra: 1267/1174,
  55753. bottom: 9/1276
  55754. }
  55755. },
  55756. },
  55757. [
  55758. {
  55759. name: "Normal",
  55760. height: math.unit(9 + 6/12, "feet"),
  55761. default: true
  55762. },
  55763. {
  55764. name: "Macro 1",
  55765. height: math.unit(50, "feet")
  55766. },
  55767. {
  55768. name: "Macro 2",
  55769. height: math.unit(500, "feet")
  55770. },
  55771. {
  55772. name: "Mega Macro",
  55773. height: math.unit(5300, "feet")
  55774. },
  55775. ]
  55776. ))
  55777. characterMakers.push(() => makeCharacter(
  55778. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  55779. {
  55780. frontSfw: {
  55781. height: math.unit(120, "cm"),
  55782. weight: math.unit(15, "kg"),
  55783. name: "Front (SFW)",
  55784. image: {
  55785. source: "./media/characters/eri/front-sfw.svg",
  55786. extra: 1014/939,
  55787. bottom: 37/1051
  55788. },
  55789. form: "moth",
  55790. },
  55791. frontNsfw: {
  55792. height: math.unit(120, "cm"),
  55793. weight: math.unit(15, "kg"),
  55794. name: "Front (NSFW)",
  55795. image: {
  55796. source: "./media/characters/eri/front-nsfw.svg",
  55797. extra: 1014/939,
  55798. bottom: 37/1051
  55799. },
  55800. form: "moth",
  55801. default: true
  55802. },
  55803. egg: {
  55804. height: math.unit(10, "cm"),
  55805. name: "Egg",
  55806. image: {
  55807. source: "./media/characters/eri/egg.svg"
  55808. },
  55809. form: "egg",
  55810. default: true
  55811. },
  55812. },
  55813. [
  55814. {
  55815. name: "Normal",
  55816. height: math.unit(120, "cm"),
  55817. default: true,
  55818. form: "moth"
  55819. },
  55820. {
  55821. name: "Normal",
  55822. height: math.unit(10, "cm"),
  55823. default: true,
  55824. form: "egg"
  55825. },
  55826. ],
  55827. {
  55828. "moth": {
  55829. name: "Moth",
  55830. default: true
  55831. },
  55832. "egg": {
  55833. name: "Egg",
  55834. },
  55835. }
  55836. ))
  55837. characterMakers.push(() => makeCharacter(
  55838. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  55839. {
  55840. front: {
  55841. height: math.unit(200, "feet"),
  55842. name: "Front",
  55843. image: {
  55844. source: "./media/characters/bishop-dowser/front.svg",
  55845. extra: 933/868,
  55846. bottom: 106/1039
  55847. }
  55848. },
  55849. },
  55850. [
  55851. {
  55852. name: "Giant",
  55853. height: math.unit(200, "feet"),
  55854. default: true
  55855. },
  55856. ]
  55857. ))
  55858. characterMakers.push(() => makeCharacter(
  55859. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  55860. {
  55861. front: {
  55862. height: math.unit(2, "meters"),
  55863. preyCapacity: math.unit(3, "people"),
  55864. name: "Front",
  55865. image: {
  55866. source: "./media/characters/fryra/front.svg",
  55867. extra: 1025/948,
  55868. bottom: 30/1055
  55869. },
  55870. extraAttributes: {
  55871. "breastVolume": {
  55872. name: "Breast Volume",
  55873. power: 3,
  55874. type: "volume",
  55875. base: math.unit(8, "liters")
  55876. },
  55877. }
  55878. },
  55879. back: {
  55880. height: math.unit(2, "meters"),
  55881. preyCapacity: math.unit(3, "people"),
  55882. name: "Back",
  55883. image: {
  55884. source: "./media/characters/fryra/back.svg",
  55885. extra: 993/938,
  55886. bottom: 38/1031
  55887. },
  55888. extraAttributes: {
  55889. "breastVolume": {
  55890. name: "Breast Volume",
  55891. power: 3,
  55892. type: "volume",
  55893. base: math.unit(8, "liters")
  55894. },
  55895. }
  55896. },
  55897. head: {
  55898. height: math.unit(1.33, "feet"),
  55899. name: "Head",
  55900. image: {
  55901. source: "./media/characters/fryra/head.svg"
  55902. }
  55903. },
  55904. maw: {
  55905. height: math.unit(0.56, "feet"),
  55906. name: "Maw",
  55907. image: {
  55908. source: "./media/characters/fryra/maw.svg"
  55909. }
  55910. },
  55911. },
  55912. [
  55913. {
  55914. name: "Micro",
  55915. height: math.unit(5, "cm")
  55916. },
  55917. {
  55918. name: "Normal",
  55919. height: math.unit(2, "meters"),
  55920. default: true
  55921. },
  55922. {
  55923. name: "Small Macro",
  55924. height: math.unit(8, "meters")
  55925. },
  55926. {
  55927. name: "Macro",
  55928. height: math.unit(50, "meters")
  55929. },
  55930. {
  55931. name: "Megamacro",
  55932. height: math.unit(1, "km")
  55933. },
  55934. {
  55935. name: "Planetary",
  55936. height: math.unit(300000, "km")
  55937. },
  55938. {
  55939. name: "Universal",
  55940. height: math.unit(250, "lightyears")
  55941. },
  55942. {
  55943. name: "Fabric of Reality",
  55944. height: math.unit(1000, "multiverses")
  55945. },
  55946. ]
  55947. ))
  55948. characterMakers.push(() => makeCharacter(
  55949. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  55950. {
  55951. frontDressed: {
  55952. height: math.unit(6 + 2/12, "feet"),
  55953. name: "Front (Dressed)",
  55954. image: {
  55955. source: "./media/characters/fiera/front-dressed.svg",
  55956. extra: 1883/1793,
  55957. bottom: 70/1953
  55958. }
  55959. },
  55960. backDressed: {
  55961. height: math.unit(6 + 2/12, "feet"),
  55962. name: "Back (Dressed)",
  55963. image: {
  55964. source: "./media/characters/fiera/back-dressed.svg",
  55965. extra: 1847/1780,
  55966. bottom: 70/1917
  55967. }
  55968. },
  55969. frontNude: {
  55970. height: math.unit(6 + 2/12, "feet"),
  55971. name: "Front (Nude)",
  55972. image: {
  55973. source: "./media/characters/fiera/front-nude.svg",
  55974. extra: 1875/1785,
  55975. bottom: 66/1941
  55976. }
  55977. },
  55978. backNude: {
  55979. height: math.unit(6 + 2/12, "feet"),
  55980. name: "Back (Nude)",
  55981. image: {
  55982. source: "./media/characters/fiera/back-nude.svg",
  55983. extra: 1855/1788,
  55984. bottom: 44/1899
  55985. }
  55986. },
  55987. maw: {
  55988. height: math.unit(1.3, "feet"),
  55989. name: "Maw",
  55990. image: {
  55991. source: "./media/characters/fiera/maw.svg"
  55992. }
  55993. },
  55994. paw: {
  55995. height: math.unit(1, "feet"),
  55996. name: "Paw",
  55997. image: {
  55998. source: "./media/characters/fiera/paw.svg"
  55999. }
  56000. },
  56001. shoe: {
  56002. height: math.unit(1.05, "feet"),
  56003. name: "Shoe",
  56004. image: {
  56005. source: "./media/characters/fiera/shoe.svg"
  56006. }
  56007. },
  56008. },
  56009. [
  56010. {
  56011. name: "Normal",
  56012. height: math.unit(6 + 2/12, "feet"),
  56013. default: true
  56014. },
  56015. {
  56016. name: "Size Difference",
  56017. height: math.unit(13, "feet")
  56018. },
  56019. {
  56020. name: "Macro",
  56021. height: math.unit(60, "feet")
  56022. },
  56023. {
  56024. name: "Mega Macro",
  56025. height: math.unit(200, "feet")
  56026. },
  56027. ]
  56028. ))
  56029. characterMakers.push(() => makeCharacter(
  56030. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  56031. {
  56032. back: {
  56033. height: math.unit(6, "feet"),
  56034. name: "Back",
  56035. image: {
  56036. source: "./media/characters/flare/back.svg",
  56037. extra: 1883/1765,
  56038. bottom: 32/1915
  56039. }
  56040. },
  56041. },
  56042. [
  56043. {
  56044. name: "Normal",
  56045. height: math.unit(6 + 2/12, "feet"),
  56046. default: true
  56047. },
  56048. {
  56049. name: "Size Difference",
  56050. height: math.unit(13, "feet")
  56051. },
  56052. {
  56053. name: "Macro",
  56054. height: math.unit(60, "feet")
  56055. },
  56056. {
  56057. name: "Macro 2",
  56058. height: math.unit(100, "feet")
  56059. },
  56060. {
  56061. name: "Mega Macro",
  56062. height: math.unit(200, "feet")
  56063. },
  56064. ]
  56065. ))
  56066. characterMakers.push(() => makeCharacter(
  56067. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  56068. {
  56069. front: {
  56070. height: math.unit(2.2, "m"),
  56071. weight: math.unit(300, "kg"),
  56072. name: "Front",
  56073. image: {
  56074. source: "./media/characters/hanna/front.svg",
  56075. extra: 1696/1502,
  56076. bottom: 206/1902
  56077. }
  56078. },
  56079. },
  56080. [
  56081. {
  56082. name: "Humanoid",
  56083. height: math.unit(2.2, "meters")
  56084. },
  56085. {
  56086. name: "Normal",
  56087. height: math.unit(4.8, "meters"),
  56088. default: true
  56089. },
  56090. ]
  56091. ))
  56092. characterMakers.push(() => makeCharacter(
  56093. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  56094. {
  56095. front: {
  56096. height: math.unit(2.8, "meters"),
  56097. name: "Front",
  56098. image: {
  56099. source: "./media/characters/argo/front.svg",
  56100. extra: 731/518,
  56101. bottom: 84/815
  56102. }
  56103. },
  56104. },
  56105. [
  56106. {
  56107. name: "Normal",
  56108. height: math.unit(3, "meters"),
  56109. default: true
  56110. },
  56111. ]
  56112. ))
  56113. characterMakers.push(() => makeCharacter(
  56114. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  56115. {
  56116. side: {
  56117. height: math.unit(3.8, "meters"),
  56118. name: "Side",
  56119. image: {
  56120. source: "./media/characters/sybil/side.svg",
  56121. extra: 382/361,
  56122. bottom: 25/407
  56123. }
  56124. },
  56125. },
  56126. [
  56127. {
  56128. name: "Normal",
  56129. height: math.unit(3.8, "meters"),
  56130. default: true
  56131. },
  56132. ]
  56133. ))
  56134. characterMakers.push(() => makeCharacter(
  56135. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  56136. {
  56137. side: {
  56138. height: math.unit(6, "meters"),
  56139. name: "Side",
  56140. image: {
  56141. source: "./media/characters/plum/side.svg",
  56142. extra: 858/755,
  56143. bottom: 45/903
  56144. },
  56145. form: "taur",
  56146. default: true
  56147. },
  56148. back: {
  56149. height: math.unit(6.3, "meters"),
  56150. name: "Back",
  56151. image: {
  56152. source: "./media/characters/plum/back.svg",
  56153. extra: 887/813,
  56154. bottom: 32/919
  56155. },
  56156. form: "taur",
  56157. },
  56158. feral: {
  56159. height: math.unit(5.5, "meter"),
  56160. name: "Front",
  56161. image: {
  56162. source: "./media/characters/plum/feral.svg",
  56163. extra: 568/403,
  56164. bottom: 51/619
  56165. },
  56166. form: "feral",
  56167. default: true
  56168. },
  56169. head: {
  56170. height: math.unit(1.46, "meter"),
  56171. name: "Head",
  56172. image: {
  56173. source: "./media/characters/plum/head.svg"
  56174. },
  56175. form: "taur"
  56176. },
  56177. tailTop: {
  56178. height: math.unit(5.6, "meter"),
  56179. name: "Tail (Top)",
  56180. image: {
  56181. source: "./media/characters/plum/tail-top.svg"
  56182. },
  56183. form: "taur",
  56184. },
  56185. tailBottom: {
  56186. height: math.unit(5.6, "meter"),
  56187. name: "Tail (Bottom)",
  56188. image: {
  56189. source: "./media/characters/plum/tail-bottom.svg"
  56190. },
  56191. form: "taur",
  56192. },
  56193. feralHead: {
  56194. height: math.unit(2.56549521, "meter"),
  56195. name: "Head",
  56196. image: {
  56197. source: "./media/characters/plum/head.svg"
  56198. },
  56199. form: "feral"
  56200. },
  56201. feralTailTop: {
  56202. height: math.unit(5.44728435, "meter"),
  56203. name: "Tail (Top)",
  56204. image: {
  56205. source: "./media/characters/plum/tail-top.svg"
  56206. },
  56207. form: "feral",
  56208. },
  56209. feralTailBottom: {
  56210. height: math.unit(5.44728435, "meter"),
  56211. name: "Tail (Bottom)",
  56212. image: {
  56213. source: "./media/characters/plum/tail-bottom.svg"
  56214. },
  56215. form: "feral",
  56216. },
  56217. },
  56218. [
  56219. {
  56220. name: "Normal",
  56221. height: math.unit(6, "meters"),
  56222. default: true,
  56223. form: "taur"
  56224. },
  56225. {
  56226. name: "Normal",
  56227. height: math.unit(5.5, "meters"),
  56228. default: true,
  56229. form: "feral"
  56230. },
  56231. ],
  56232. {
  56233. "taur": {
  56234. name: "Taur",
  56235. default: true
  56236. },
  56237. "feral": {
  56238. name: "Feral",
  56239. },
  56240. }
  56241. ))
  56242. characterMakers.push(() => makeCharacter(
  56243. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  56244. {
  56245. front: {
  56246. height: math.unit(6, "feet"),
  56247. weight: math.unit(115, "lb"),
  56248. name: "Front",
  56249. image: {
  56250. source: "./media/characters/celeste-kitsune/front.svg",
  56251. extra: 393/366,
  56252. bottom: 7/400
  56253. }
  56254. },
  56255. side: {
  56256. height: math.unit(6, "feet"),
  56257. weight: math.unit(115, "lb"),
  56258. name: "Side",
  56259. image: {
  56260. source: "./media/characters/celeste-kitsune/side.svg",
  56261. extra: 818/765,
  56262. bottom: 40/858
  56263. }
  56264. },
  56265. },
  56266. [
  56267. {
  56268. name: "Megamacro",
  56269. height: math.unit(1500, "miles"),
  56270. default: true
  56271. },
  56272. ]
  56273. ))
  56274. characterMakers.push(() => makeCharacter(
  56275. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  56276. {
  56277. front: {
  56278. height: math.unit(8, "meters"),
  56279. name: "Front",
  56280. image: {
  56281. source: "./media/characters/io/front.svg",
  56282. extra: 865/722,
  56283. bottom: 58/923
  56284. }
  56285. },
  56286. back: {
  56287. height: math.unit(8, "meters"),
  56288. name: "Back",
  56289. image: {
  56290. source: "./media/characters/io/back.svg",
  56291. extra: 920/776,
  56292. bottom: 42/962
  56293. }
  56294. },
  56295. head: {
  56296. height: math.unit(5.09, "meters"),
  56297. name: "Head",
  56298. image: {
  56299. source: "./media/characters/io/head.svg"
  56300. }
  56301. },
  56302. hand: {
  56303. height: math.unit(1.6, "meters"),
  56304. name: "Hand",
  56305. image: {
  56306. source: "./media/characters/io/hand.svg"
  56307. }
  56308. },
  56309. foot: {
  56310. height: math.unit(2.4, "meters"),
  56311. name: "Foot",
  56312. image: {
  56313. source: "./media/characters/io/foot.svg"
  56314. }
  56315. },
  56316. },
  56317. [
  56318. {
  56319. name: "Normal",
  56320. height: math.unit(8, "meters"),
  56321. default: true
  56322. },
  56323. ]
  56324. ))
  56325. characterMakers.push(() => makeCharacter(
  56326. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  56327. {
  56328. side: {
  56329. height: math.unit(6 + 3/12, "feet"),
  56330. weight: math.unit(225, "lb"),
  56331. name: "Side",
  56332. image: {
  56333. source: "./media/characters/silas/side.svg",
  56334. extra: 703/653,
  56335. bottom: 23/726
  56336. },
  56337. extraAttributes: {
  56338. "pawLength": {
  56339. name: "Paw Length",
  56340. power: 1,
  56341. type: "length",
  56342. base: math.unit(12, "inches")
  56343. },
  56344. "pawWidth": {
  56345. name: "Paw Width",
  56346. power: 1,
  56347. type: "length",
  56348. base: math.unit(4.5, "inches")
  56349. },
  56350. "pawArea": {
  56351. name: "Paw Area",
  56352. power: 2,
  56353. type: "area",
  56354. base: math.unit(12 * 4.5, "inches^2")
  56355. },
  56356. }
  56357. },
  56358. },
  56359. [
  56360. {
  56361. name: "Normal",
  56362. height: math.unit(6 + 3/12, "feet"),
  56363. default: true
  56364. },
  56365. ]
  56366. ))
  56367. characterMakers.push(() => makeCharacter(
  56368. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  56369. {
  56370. back: {
  56371. height: math.unit(1.6, "meters"),
  56372. weight: math.unit(150, "lb"),
  56373. name: "Back",
  56374. image: {
  56375. source: "./media/characters/zari/back.svg",
  56376. extra: 424/411,
  56377. bottom: 32/456
  56378. },
  56379. extraAttributes: {
  56380. "bladderCapacity": {
  56381. name: "Bladder Size",
  56382. power: 3,
  56383. type: "volume",
  56384. base: math.unit(500, "mL")
  56385. },
  56386. "bladderFlow": {
  56387. name: "Flow Rate",
  56388. power: 3,
  56389. type: "volume",
  56390. base: math.unit(25, "mL")
  56391. },
  56392. }
  56393. },
  56394. },
  56395. [
  56396. {
  56397. name: "Normal",
  56398. height: math.unit(1.6, "meters"),
  56399. default: true
  56400. },
  56401. ]
  56402. ))
  56403. characterMakers.push(() => makeCharacter(
  56404. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  56405. {
  56406. front: {
  56407. height: math.unit(25, "feet"),
  56408. weight: math.unit(5, "tons"),
  56409. name: "Front",
  56410. image: {
  56411. source: "./media/characters/charlie-human/front.svg",
  56412. extra: 1870/1740,
  56413. bottom: 102/1972
  56414. },
  56415. extraAttributes: {
  56416. "dickLength": {
  56417. name: "Dick Length",
  56418. power: 1,
  56419. type: "length",
  56420. base: math.unit(9, "feet")
  56421. },
  56422. }
  56423. },
  56424. back: {
  56425. height: math.unit(25, "feet"),
  56426. weight: math.unit(5, "tons"),
  56427. name: "Back",
  56428. image: {
  56429. source: "./media/characters/charlie-human/back.svg",
  56430. extra: 1858/1733,
  56431. bottom: 105/1963
  56432. },
  56433. extraAttributes: {
  56434. "dickLength": {
  56435. name: "Dick Length",
  56436. power: 1,
  56437. type: "length",
  56438. base: math.unit(9, "feet")
  56439. },
  56440. }
  56441. },
  56442. },
  56443. [
  56444. {
  56445. name: "\"Normal\"",
  56446. height: math.unit(6 + 4/12, "feet")
  56447. },
  56448. {
  56449. name: "Big",
  56450. height: math.unit(25, "feet"),
  56451. default: true
  56452. },
  56453. ]
  56454. ))
  56455. characterMakers.push(() => makeCharacter(
  56456. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  56457. {
  56458. front: {
  56459. height: math.unit(6 + 4/12, "feet"),
  56460. weight: math.unit(320, "lb"),
  56461. name: "Front",
  56462. image: {
  56463. source: "./media/characters/ookitsu/front.svg",
  56464. extra: 1160/976,
  56465. bottom: 38/1198
  56466. }
  56467. },
  56468. frontNsfw: {
  56469. height: math.unit(6 + 4/12, "feet"),
  56470. weight: math.unit(320, "lb"),
  56471. name: "Front (NSFW)",
  56472. image: {
  56473. source: "./media/characters/ookitsu/front-nsfw.svg",
  56474. extra: 1160/976,
  56475. bottom: 38/1198
  56476. }
  56477. },
  56478. back: {
  56479. height: math.unit(6 + 4/12, "feet"),
  56480. weight: math.unit(320, "lb"),
  56481. name: "Back",
  56482. image: {
  56483. source: "./media/characters/ookitsu/back.svg",
  56484. extra: 1030/975,
  56485. bottom: 70/1100
  56486. }
  56487. },
  56488. head: {
  56489. height: math.unit(1.79, "feet"),
  56490. name: "Head",
  56491. image: {
  56492. source: "./media/characters/ookitsu/head.svg"
  56493. }
  56494. },
  56495. hand: {
  56496. height: math.unit(0.92, "feet"),
  56497. name: "Hand",
  56498. image: {
  56499. source: "./media/characters/ookitsu/hand.svg"
  56500. }
  56501. },
  56502. tails: {
  56503. height: math.unit(3.3, "feet"),
  56504. name: "Tails",
  56505. image: {
  56506. source: "./media/characters/ookitsu/tails.svg"
  56507. }
  56508. },
  56509. dick: {
  56510. height: math.unit(1.10833, "feet"),
  56511. name: "Dick",
  56512. image: {
  56513. source: "./media/characters/ookitsu/dick.svg"
  56514. }
  56515. },
  56516. },
  56517. [
  56518. {
  56519. name: "Normal",
  56520. height: math.unit(6 + 4/12, "feet"),
  56521. default: true
  56522. },
  56523. {
  56524. name: "Macro",
  56525. height: math.unit(30, "feet")
  56526. },
  56527. ]
  56528. ))
  56529. characterMakers.push(() => makeCharacter(
  56530. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  56531. {
  56532. anthroFront: {
  56533. height: math.unit(6, "feet"),
  56534. weight: math.unit(250, "lb"),
  56535. name: "Front",
  56536. image: {
  56537. source: "./media/characters/jhusky/anthro-front.svg",
  56538. extra: 474/439,
  56539. bottom: 7/481
  56540. },
  56541. form: "anthro",
  56542. default: true
  56543. },
  56544. taurSideSfw: {
  56545. height: math.unit(6 + 4/12, "feet"),
  56546. weight: math.unit(500, "lb"),
  56547. name: "Side (SFW)",
  56548. image: {
  56549. source: "./media/characters/jhusky/taur-side-sfw.svg",
  56550. extra: 1741/1629,
  56551. bottom: 196/1937
  56552. },
  56553. form: "taur",
  56554. default: true
  56555. },
  56556. taurSideNsfw: {
  56557. height: math.unit(6 + 4/12, "feet"),
  56558. weight: math.unit(500, "lb"),
  56559. name: "Taur (NSFW)",
  56560. image: {
  56561. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  56562. extra: 1741/1629,
  56563. bottom: 196/1937
  56564. },
  56565. form: "taur",
  56566. },
  56567. },
  56568. [
  56569. {
  56570. name: "Huge",
  56571. height: math.unit(500, "feet"),
  56572. form: "anthro"
  56573. },
  56574. {
  56575. name: "Macro",
  56576. height: math.unit(1000, "feet"),
  56577. default: true,
  56578. form: "anthro"
  56579. },
  56580. {
  56581. name: "Megamacro",
  56582. height: math.unit(10000, "feet"),
  56583. form: "anthro"
  56584. },
  56585. {
  56586. name: "Huge",
  56587. height: math.unit(528, "feet"),
  56588. form: "taur"
  56589. },
  56590. {
  56591. name: "Macro",
  56592. height: math.unit(1056, "feet"),
  56593. default: true,
  56594. form: "taur"
  56595. },
  56596. {
  56597. name: "Megamacro",
  56598. height: math.unit(10556, "feet"),
  56599. form: "taur"
  56600. },
  56601. ],
  56602. {
  56603. "anthro": {
  56604. name: "Anthro",
  56605. default: true
  56606. },
  56607. "taur": {
  56608. name: "Taur",
  56609. },
  56610. }
  56611. ))
  56612. characterMakers.push(() => makeCharacter(
  56613. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  56614. {
  56615. front: {
  56616. height: math.unit(8, "feet"),
  56617. weight: math.unit(500, "lb"),
  56618. name: "Front",
  56619. image: {
  56620. source: "./media/characters/armail/front.svg",
  56621. extra: 1753/1669,
  56622. bottom: 155/1908
  56623. }
  56624. },
  56625. back: {
  56626. height: math.unit(8, "feet"),
  56627. weight: math.unit(500, "lb"),
  56628. name: "Back",
  56629. image: {
  56630. source: "./media/characters/armail/back.svg",
  56631. extra: 1872/1803,
  56632. bottom: 63/1935
  56633. }
  56634. },
  56635. },
  56636. [
  56637. {
  56638. name: "Micro",
  56639. height: math.unit(0.25, "feet")
  56640. },
  56641. {
  56642. name: "Normal",
  56643. height: math.unit(8, "feet"),
  56644. default: true
  56645. },
  56646. {
  56647. name: "Mini-macro",
  56648. height: math.unit(30, "feet")
  56649. },
  56650. {
  56651. name: "Macro",
  56652. height: math.unit(400, "feet")
  56653. },
  56654. {
  56655. name: "Mega-macro",
  56656. height: math.unit(6000, "feet")
  56657. },
  56658. ]
  56659. ))
  56660. characterMakers.push(() => makeCharacter(
  56661. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  56662. {
  56663. front: {
  56664. height: math.unit(6 + 7/12, "feet"),
  56665. weight: math.unit(210, "lb"),
  56666. name: "Front",
  56667. image: {
  56668. source: "./media/characters/wilfred-t-buxton/front.svg",
  56669. extra: 1068/882,
  56670. bottom: 28/1096
  56671. }
  56672. },
  56673. },
  56674. [
  56675. {
  56676. name: "Normal",
  56677. height: math.unit(6 + 7/12, "feet"),
  56678. default: true
  56679. },
  56680. ]
  56681. ))
  56682. characterMakers.push(() => makeCharacter(
  56683. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  56684. {
  56685. front: {
  56686. height: math.unit(5 + 2/12, "feet"),
  56687. weight: math.unit(120, "lb"),
  56688. name: "Front",
  56689. image: {
  56690. source: "./media/characters/leighton-marrow/front.svg",
  56691. extra: 441/409,
  56692. bottom: 37/478
  56693. }
  56694. },
  56695. },
  56696. [
  56697. {
  56698. name: "Normal",
  56699. height: math.unit(5 + 2/12, "feet"),
  56700. default: true
  56701. },
  56702. ]
  56703. ))
  56704. characterMakers.push(() => makeCharacter(
  56705. { name: "Licos", species: ["werewolf"], tags: ["anthro", "taur"] },
  56706. {
  56707. front: {
  56708. height: math.unit(4, "meters"),
  56709. weight: math.unit(1200, "kg"),
  56710. name: "Front",
  56711. image: {
  56712. source: "./media/characters/licos/front.svg",
  56713. extra: 1727/1604,
  56714. bottom: 101/1828
  56715. },
  56716. form: "anthro",
  56717. default: true
  56718. },
  56719. taur_side: {
  56720. height: math.unit(20, "meters"),
  56721. weight: math.unit(1100000, "kg"),
  56722. name: "Side",
  56723. image: {
  56724. source: "./media/characters/licos/taur.svg",
  56725. extra: 1158/1091,
  56726. bottom: 80/1238
  56727. },
  56728. form: "taur",
  56729. default: true
  56730. },
  56731. },
  56732. [
  56733. {
  56734. name: "Normal",
  56735. height: math.unit(4, "meters"),
  56736. default: true,
  56737. form: "anthro"
  56738. },
  56739. {
  56740. name: "Normal",
  56741. height: math.unit(20, "meters"),
  56742. default: true,
  56743. form: "taur"
  56744. },
  56745. ],
  56746. {
  56747. "anthro": {
  56748. name: "Anthro",
  56749. default: true
  56750. },
  56751. "taur": {
  56752. name: "Taur",
  56753. },
  56754. }
  56755. ))
  56756. characterMakers.push(() => makeCharacter(
  56757. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  56758. {
  56759. front: {
  56760. height: math.unit(10 + 3/12, "feet"),
  56761. name: "Front",
  56762. image: {
  56763. source: "./media/characters/theo-monkey/front.svg",
  56764. extra: 1735/1658,
  56765. bottom: 73/1808
  56766. }
  56767. },
  56768. back: {
  56769. height: math.unit(10 + 3/12, "feet"),
  56770. name: "Back",
  56771. image: {
  56772. source: "./media/characters/theo-monkey/back.svg",
  56773. extra: 1742/1664,
  56774. bottom: 33/1775
  56775. }
  56776. },
  56777. head: {
  56778. height: math.unit(2.29, "feet"),
  56779. name: "Head",
  56780. image: {
  56781. source: "./media/characters/theo-monkey/head.svg"
  56782. }
  56783. },
  56784. handPalm: {
  56785. height: math.unit(1.73, "feet"),
  56786. name: "Hand (Palm)",
  56787. image: {
  56788. source: "./media/characters/theo-monkey/hand-palm.svg"
  56789. }
  56790. },
  56791. handBack: {
  56792. height: math.unit(1.63, "feet"),
  56793. name: "Hand (Back)",
  56794. image: {
  56795. source: "./media/characters/theo-monkey/hand-back.svg"
  56796. }
  56797. },
  56798. footSole: {
  56799. height: math.unit(2.15, "feet"),
  56800. name: "Foot (Sole)",
  56801. image: {
  56802. source: "./media/characters/theo-monkey/foot-sole.svg"
  56803. }
  56804. },
  56805. footSide: {
  56806. height: math.unit(1.6, "feet"),
  56807. name: "Foot (Side)",
  56808. image: {
  56809. source: "./media/characters/theo-monkey/foot-side.svg"
  56810. }
  56811. },
  56812. },
  56813. [
  56814. {
  56815. name: "Normal",
  56816. height: math.unit(10 + 3/12, "feet"),
  56817. default: true
  56818. },
  56819. ]
  56820. ))
  56821. characterMakers.push(() => makeCharacter(
  56822. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  56823. {
  56824. front: {
  56825. height: math.unit(11, "feet"),
  56826. weight: math.unit(3000, "lb"),
  56827. preyCapacity: math.unit(10, "people"),
  56828. name: "Front",
  56829. image: {
  56830. source: "./media/characters/brook/front.svg",
  56831. extra: 909/835,
  56832. bottom: 108/1017
  56833. }
  56834. },
  56835. back: {
  56836. height: math.unit(11, "feet"),
  56837. weight: math.unit(3000, "lb"),
  56838. preyCapacity: math.unit(10, "people"),
  56839. name: "Back",
  56840. image: {
  56841. source: "./media/characters/brook/back.svg",
  56842. extra: 976/916,
  56843. bottom: 34/1010
  56844. }
  56845. },
  56846. backAlt: {
  56847. height: math.unit(11, "feet"),
  56848. weight: math.unit(3000, "lb"),
  56849. preyCapacity: math.unit(10, "people"),
  56850. name: "Back (Alt)",
  56851. image: {
  56852. source: "./media/characters/brook/back-alt.svg",
  56853. extra: 1283/1213,
  56854. bottom: 35/1318
  56855. }
  56856. },
  56857. bust: {
  56858. height: math.unit(9.0859030837, "feet"),
  56859. weight: math.unit(3000, "lb"),
  56860. preyCapacity: math.unit(10, "people"),
  56861. name: "Bust",
  56862. image: {
  56863. source: "./media/characters/brook/bust.svg",
  56864. extra: 2043/1923,
  56865. bottom: 0/2043
  56866. }
  56867. },
  56868. },
  56869. [
  56870. {
  56871. name: "Small",
  56872. height: math.unit(11, "feet"),
  56873. default: true
  56874. },
  56875. {
  56876. name: "Towering",
  56877. height: math.unit(5, "km")
  56878. },
  56879. {
  56880. name: "Enormous",
  56881. height: math.unit(25, "earths")
  56882. },
  56883. ]
  56884. ))
  56885. characterMakers.push(() => makeCharacter(
  56886. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  56887. {
  56888. front: {
  56889. height: math.unit(4, "feet"),
  56890. weight: math.unit(150, "lb"),
  56891. name: "Front",
  56892. image: {
  56893. source: "./media/characters/squishi/front.svg",
  56894. extra: 1428/1271,
  56895. bottom: 30/1458
  56896. },
  56897. extraAttributes: {
  56898. "pawSize": {
  56899. name: "Paw Size",
  56900. power: 1,
  56901. type: "length",
  56902. base: math.unit(14, "ShoeSizeMensUS"),
  56903. defaultUnit: "ShoeSizeMensUS"
  56904. },
  56905. }
  56906. },
  56907. side: {
  56908. height: math.unit(4, "feet"),
  56909. weight: math.unit(150, "lb"),
  56910. name: "Side",
  56911. image: {
  56912. source: "./media/characters/squishi/side.svg",
  56913. extra: 1428/1271,
  56914. bottom: 30/1458
  56915. },
  56916. extraAttributes: {
  56917. "pawSize": {
  56918. name: "Paw Size",
  56919. power: 1,
  56920. type: "length",
  56921. base: math.unit(14, "ShoeSizeMensUS"),
  56922. defaultUnit: "ShoeSizeMensUS"
  56923. },
  56924. }
  56925. },
  56926. back: {
  56927. height: math.unit(4, "feet"),
  56928. weight: math.unit(150, "lb"),
  56929. name: "Back",
  56930. image: {
  56931. source: "./media/characters/squishi/back.svg",
  56932. extra: 1428/1271,
  56933. bottom: 30/1458
  56934. },
  56935. extraAttributes: {
  56936. "pawSize": {
  56937. name: "Paw Size",
  56938. power: 1,
  56939. type: "length",
  56940. base: math.unit(14, "ShoeSizeMensUS"),
  56941. defaultUnit: "ShoeSizeMensUS"
  56942. },
  56943. }
  56944. },
  56945. },
  56946. [
  56947. {
  56948. name: "Normal",
  56949. height: math.unit(4, "feet"),
  56950. default: true
  56951. },
  56952. ]
  56953. ))
  56954. characterMakers.push(() => makeCharacter(
  56955. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  56956. {
  56957. front: {
  56958. height: math.unit(7 + 8/12, "feet"),
  56959. weight: math.unit(333, "lb"),
  56960. name: "Front",
  56961. image: {
  56962. source: "./media/characters/vincent-vasroc/front.svg",
  56963. extra: 1962/1860,
  56964. bottom: 41/2003
  56965. }
  56966. },
  56967. back: {
  56968. height: math.unit(7 + 8/12, "feet"),
  56969. weight: math.unit(333, "lb"),
  56970. name: "Back",
  56971. image: {
  56972. source: "./media/characters/vincent-vasroc/back.svg",
  56973. extra: 1952/1815,
  56974. bottom: 33/1985
  56975. }
  56976. },
  56977. paw: {
  56978. height: math.unit(1.24, "feet"),
  56979. name: "Paw",
  56980. image: {
  56981. source: "./media/characters/vincent-vasroc/paw.svg"
  56982. }
  56983. },
  56984. ear: {
  56985. height: math.unit(0.75, "feet"),
  56986. name: "Ear",
  56987. image: {
  56988. source: "./media/characters/vincent-vasroc/ear.svg"
  56989. }
  56990. },
  56991. },
  56992. [
  56993. {
  56994. name: "Nano",
  56995. height: math.unit(92, "micrometers")
  56996. },
  56997. {
  56998. name: "Normal",
  56999. height: math.unit(7 + 8/12, "feet"),
  57000. default: true
  57001. },
  57002. ]
  57003. ))
  57004. characterMakers.push(() => makeCharacter(
  57005. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  57006. {
  57007. frontNsfw: {
  57008. height: math.unit(40, "feet"),
  57009. weight: math.unit(58, "tons"),
  57010. name: "Front (NSFW)",
  57011. image: {
  57012. source: "./media/characters/ru-kahn/front-nsfw.svg",
  57013. extra: 1265/965,
  57014. bottom: 155/1420
  57015. }
  57016. },
  57017. frontSfw: {
  57018. height: math.unit(40, "feet"),
  57019. weight: math.unit(58, "tons"),
  57020. name: "Front (SFW)",
  57021. image: {
  57022. source: "./media/characters/ru-kahn/front-sfw.svg",
  57023. extra: 1265/965,
  57024. bottom: 80/1345
  57025. }
  57026. },
  57027. },
  57028. [
  57029. {
  57030. name: "Small",
  57031. height: math.unit(4, "feet")
  57032. },
  57033. {
  57034. name: "Normal",
  57035. height: math.unit(40, "feet"),
  57036. default: true
  57037. },
  57038. {
  57039. name: "Macro",
  57040. height: math.unit(400, "feet")
  57041. },
  57042. ]
  57043. ))
  57044. characterMakers.push(() => makeCharacter(
  57045. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  57046. {
  57047. frontNude: {
  57048. height: math.unit(6 + 5/12, "feet"),
  57049. name: "Front (Nude)",
  57050. image: {
  57051. source: "./media/characters/sylvie-laforge/front-nude.svg",
  57052. extra: 1369/1366,
  57053. bottom: 68/1437
  57054. }
  57055. },
  57056. frontDressed: {
  57057. height: math.unit(6 + 5/12, "feet"),
  57058. name: "Front (Dressed)",
  57059. image: {
  57060. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  57061. extra: 1369/1366,
  57062. bottom: 68/1437
  57063. }
  57064. },
  57065. },
  57066. [
  57067. {
  57068. name: "Normal",
  57069. height: math.unit(6 + 5/12, "feet"),
  57070. default: true
  57071. },
  57072. {
  57073. name: "Maximum",
  57074. height: math.unit(1930, "feet")
  57075. },
  57076. ]
  57077. ))
  57078. characterMakers.push(() => makeCharacter(
  57079. { name: "Kaja", species: ["zoroark"], tags: ["anthro"] },
  57080. {
  57081. front: {
  57082. height: math.unit(5 + 6/12, "feet"),
  57083. name: "Front",
  57084. image: {
  57085. source: "./media/characters/kaja/front.svg",
  57086. extra: 1874/1514,
  57087. bottom: 117/1991
  57088. }
  57089. },
  57090. },
  57091. [
  57092. {
  57093. name: "Normal",
  57094. height: math.unit(5 + 6/12, "feet"),
  57095. default: true
  57096. },
  57097. ]
  57098. ))
  57099. characterMakers.push(() => makeCharacter(
  57100. { name: "Mark Smith", species: ["husky"], tags: ["anthro"] },
  57101. {
  57102. front: {
  57103. height: math.unit(5 + 9/12, "feet"),
  57104. weight: math.unit(200, "lb"),
  57105. name: "Front",
  57106. image: {
  57107. source: "./media/characters/mark-smith/front.svg",
  57108. extra: 1004/943,
  57109. bottom: 58/1062
  57110. }
  57111. },
  57112. back: {
  57113. height: math.unit(5 + 9/12, "feet"),
  57114. weight: math.unit(200, "lb"),
  57115. name: "Back",
  57116. image: {
  57117. source: "./media/characters/mark-smith/back.svg",
  57118. extra: 1023/953,
  57119. bottom: 24/1047
  57120. }
  57121. },
  57122. head: {
  57123. height: math.unit(1.82, "feet"),
  57124. name: "Head",
  57125. image: {
  57126. source: "./media/characters/mark-smith/head.svg"
  57127. }
  57128. },
  57129. hand: {
  57130. height: math.unit(1.4, "feet"),
  57131. name: "Hand",
  57132. image: {
  57133. source: "./media/characters/mark-smith/hand.svg"
  57134. }
  57135. },
  57136. paw: {
  57137. height: math.unit(1.69, "feet"),
  57138. name: "Paw",
  57139. image: {
  57140. source: "./media/characters/mark-smith/paw.svg"
  57141. }
  57142. },
  57143. },
  57144. [
  57145. {
  57146. name: "Micro",
  57147. height: math.unit(0.25, "inches")
  57148. },
  57149. {
  57150. name: "Normal",
  57151. height: math.unit(5 + 9/12, "feet"),
  57152. default: true
  57153. },
  57154. {
  57155. name: "Macro",
  57156. height: math.unit(500, "feet")
  57157. },
  57158. ]
  57159. ))
  57160. characterMakers.push(() => makeCharacter(
  57161. { name: "Rebecca 'Becky' Houston", species: ["gryphon"], tags: ["anthro"] },
  57162. {
  57163. frontNude: {
  57164. height: math.unit(6, "feet"),
  57165. name: "Front (Nude)",
  57166. image: {
  57167. source: "./media/characters/rebecca-becky-houston/front-nude.svg",
  57168. extra: 1384/1321,
  57169. bottom: 57/1441
  57170. }
  57171. },
  57172. frontDressed: {
  57173. height: math.unit(6, "feet"),
  57174. name: "Front (Dressed)",
  57175. image: {
  57176. source: "./media/characters/rebecca-becky-houston/front-dressed.svg",
  57177. extra: 1384/1321,
  57178. bottom: 57/1441
  57179. }
  57180. },
  57181. },
  57182. [
  57183. {
  57184. name: "Normal",
  57185. height: math.unit(6, "feet"),
  57186. default: true
  57187. },
  57188. {
  57189. name: "Maximum",
  57190. height: math.unit(1776, "feet")
  57191. },
  57192. ]
  57193. ))
  57194. characterMakers.push(() => makeCharacter(
  57195. { name: "Devos", species: ["dragon"], tags: ["feral"] },
  57196. {
  57197. front: {
  57198. height: math.unit(2 + 4/12, "feet"),
  57199. weight: math.unit(350, "lb"),
  57200. name: "Front",
  57201. image: {
  57202. source: "./media/characters/devos/front.svg",
  57203. extra: 958/852,
  57204. bottom: 143/1101
  57205. }
  57206. },
  57207. },
  57208. [
  57209. {
  57210. name: "Base",
  57211. height: math.unit(2 + 4/12, "feet"),
  57212. default: true
  57213. },
  57214. ]
  57215. ))
  57216. characterMakers.push(() => makeCharacter(
  57217. { name: "Hiveheart", species: ["sliver"], tags: ["anthro"] },
  57218. {
  57219. front: {
  57220. height: math.unit(9 + 2/12, "feet"),
  57221. name: "Front",
  57222. image: {
  57223. source: "./media/characters/hiveheart/front.svg",
  57224. extra: 394/364,
  57225. bottom: 65/459
  57226. }
  57227. },
  57228. back: {
  57229. height: math.unit(9 + 2/12, "feet"),
  57230. name: "Back",
  57231. image: {
  57232. source: "./media/characters/hiveheart/back.svg",
  57233. extra: 374/357,
  57234. bottom: 63/437
  57235. }
  57236. },
  57237. },
  57238. [
  57239. {
  57240. name: "Base",
  57241. height: math.unit(9 + 2/12, "feet"),
  57242. default: true
  57243. },
  57244. ]
  57245. ))
  57246. characterMakers.push(() => makeCharacter(
  57247. { name: "Bryn", species: ["moth"], tags: ["anthro"] },
  57248. {
  57249. front: {
  57250. height: math.unit(2.5, "inches"),
  57251. weight: math.unit(0.6, "oz"),
  57252. name: "Front",
  57253. image: {
  57254. source: "./media/characters/bryn/front.svg",
  57255. extra: 1484/1119,
  57256. bottom: 66/1550
  57257. }
  57258. },
  57259. back: {
  57260. height: math.unit(2.5, "inches"),
  57261. weight: math.unit(0.6, "oz"),
  57262. name: "Back",
  57263. image: {
  57264. source: "./media/characters/bryn/back.svg",
  57265. extra: 1472/1170,
  57266. bottom: 32/1504
  57267. }
  57268. },
  57269. wings: {
  57270. height: math.unit(2.5, "inches"),
  57271. weight: math.unit(0.6, "oz"),
  57272. name: "Wings",
  57273. image: {
  57274. source: "./media/characters/bryn/wings.svg",
  57275. extra: 567/448,
  57276. bottom: 10/577
  57277. }
  57278. },
  57279. dressed: {
  57280. height: math.unit(2.5, "inches"),
  57281. weight: math.unit(0.6, "oz"),
  57282. name: "Dressed",
  57283. image: {
  57284. source: "./media/characters/bryn/dressed.svg",
  57285. extra: 719/589,
  57286. bottom: 54/773
  57287. }
  57288. },
  57289. head: {
  57290. height: math.unit(1.75, "inches"),
  57291. name: "Head",
  57292. image: {
  57293. source: "./media/characters/bryn/head.svg"
  57294. }
  57295. },
  57296. foot: {
  57297. height: math.unit(0.4, "inches"),
  57298. name: "Foot",
  57299. image: {
  57300. source: "./media/characters/bryn/foot.svg"
  57301. }
  57302. },
  57303. },
  57304. [
  57305. {
  57306. name: "Normal",
  57307. height: math.unit(2.5, "inches"),
  57308. default: true
  57309. },
  57310. ]
  57311. ))
  57312. characterMakers.push(() => makeCharacter(
  57313. { name: "Delta", species: ["dragon"], tags: ["feral"] },
  57314. {
  57315. side: {
  57316. height: math.unit(7, "feet"),
  57317. weight: math.unit(657, "kg"),
  57318. name: "Side",
  57319. image: {
  57320. source: "./media/characters/delta/side.svg",
  57321. extra: 781/212,
  57322. bottom: 7/788
  57323. },
  57324. extraAttributes: {
  57325. "wingspan": {
  57326. name: "Wingspan",
  57327. power: 1,
  57328. type: "length",
  57329. base: math.unit(48, "feet")
  57330. },
  57331. "length": {
  57332. name: "Length",
  57333. power: 1,
  57334. type: "length",
  57335. base: math.unit(21, "feet")
  57336. },
  57337. "pawSize": {
  57338. name: "Paw Size",
  57339. power: 2,
  57340. type: "area",
  57341. base: math.unit(1.5*1.4, "feet^2")
  57342. },
  57343. }
  57344. },
  57345. },
  57346. [
  57347. {
  57348. name: "Normal",
  57349. height: math.unit(6, "feet"),
  57350. default: true
  57351. },
  57352. ]
  57353. ))
  57354. characterMakers.push(() => makeCharacter(
  57355. { name: "Pyrow", species: ["sergix"], tags: ["anthro"] },
  57356. {
  57357. front: {
  57358. height: math.unit(6, "feet"),
  57359. name: "Front",
  57360. image: {
  57361. source: "./media/characters/pyrow/front.svg",
  57362. extra: 513/486,
  57363. bottom: 14/527
  57364. }
  57365. },
  57366. frontWing: {
  57367. height: math.unit(6, "feet"),
  57368. name: "Front (Wing)",
  57369. image: {
  57370. source: "./media/characters/pyrow/front-wing.svg",
  57371. extra: 539/383,
  57372. bottom: 20/559
  57373. }
  57374. },
  57375. back: {
  57376. height: math.unit(6, "feet"),
  57377. name: "Back",
  57378. image: {
  57379. source: "./media/characters/pyrow/back.svg",
  57380. extra: 500/473,
  57381. bottom: 9/509
  57382. }
  57383. },
  57384. },
  57385. [
  57386. {
  57387. name: "Normal",
  57388. height: math.unit(6, "feet"),
  57389. default: true
  57390. },
  57391. ]
  57392. ))
  57393. characterMakers.push(() => makeCharacter(
  57394. { name: "Velikan", species: ["behemoth"], tags: ["anthro"] },
  57395. {
  57396. front: {
  57397. height: math.unit(5, "meters"),
  57398. weight: math.unit(3, "tonnes"),
  57399. name: "Front",
  57400. image: {
  57401. source: "./media/characters/velikan/front.svg",
  57402. extra: 867/744,
  57403. bottom: 71/938
  57404. },
  57405. extraAttributes: {
  57406. "shoeSize": {
  57407. name: "Shoe Size",
  57408. power: 1,
  57409. type: "length",
  57410. base: math.unit(135, "ShoeSizeUK"),
  57411. defaultUnit: "ShoeSizeUK"
  57412. },
  57413. }
  57414. },
  57415. },
  57416. [
  57417. {
  57418. name: "Normal",
  57419. height: math.unit(5, "meters"),
  57420. default: true
  57421. },
  57422. {
  57423. name: "Macro",
  57424. height: math.unit(1, "km")
  57425. },
  57426. {
  57427. name: "Mega Macro",
  57428. height: math.unit(100, "km")
  57429. },
  57430. {
  57431. name: "Giga Macro",
  57432. height: math.unit(2, "megameters")
  57433. },
  57434. {
  57435. name: "Planetary",
  57436. height: math.unit(22, "megameters")
  57437. },
  57438. {
  57439. name: "Solar",
  57440. height: math.unit(8, "gigameters")
  57441. },
  57442. {
  57443. name: "Cosmic",
  57444. height: math.unit(10, "zettameters")
  57445. },
  57446. {
  57447. name: "Omni",
  57448. height: math.unit(9e260, "multiverses")
  57449. },
  57450. ]
  57451. ))
  57452. characterMakers.push(() => makeCharacter(
  57453. { name: "Sabiki", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  57454. {
  57455. front: {
  57456. height: math.unit(4 + 3/12, "feet"),
  57457. weight: math.unit(90, "lb"),
  57458. name: "Front",
  57459. image: {
  57460. source: "./media/characters/sabiki/front.svg",
  57461. extra: 1662/1423,
  57462. bottom: 65/1727
  57463. }
  57464. },
  57465. },
  57466. [
  57467. {
  57468. name: "Normal",
  57469. height: math.unit(4 + 3/12, "feet"),
  57470. default: true
  57471. },
  57472. ]
  57473. ))
  57474. characterMakers.push(() => makeCharacter(
  57475. { name: "Carmel", species: ["ant"], tags: ["anthro"] },
  57476. {
  57477. frontSfw: {
  57478. height: math.unit(2, "mm"),
  57479. name: "Front (SFW)",
  57480. image: {
  57481. source: "./media/characters/carmel/front-sfw.svg",
  57482. extra: 1131/1006,
  57483. bottom: 66/1197
  57484. }
  57485. },
  57486. frontNsfw: {
  57487. height: math.unit(2, "mm"),
  57488. name: "Front (NSFW)",
  57489. image: {
  57490. source: "./media/characters/carmel/front-nsfw.svg",
  57491. extra: 1131/1006,
  57492. bottom: 66/1197
  57493. }
  57494. },
  57495. foot: {
  57496. height: math.unit(0.3, "mm"),
  57497. name: "Foot",
  57498. image: {
  57499. source: "./media/characters/carmel/foot.svg"
  57500. }
  57501. },
  57502. tongue: {
  57503. height: math.unit(0.71, "mm"),
  57504. name: "Tongue",
  57505. image: {
  57506. source: "./media/characters/carmel/tongue.svg"
  57507. }
  57508. },
  57509. dick: {
  57510. height: math.unit(0.085, "mm"),
  57511. name: "Dick",
  57512. image: {
  57513. source: "./media/characters/carmel/dick.svg"
  57514. }
  57515. },
  57516. },
  57517. [
  57518. {
  57519. name: "Micro",
  57520. height: math.unit(2, "mm"),
  57521. default: true
  57522. },
  57523. {
  57524. name: "Normal",
  57525. height: math.unit(4 + 8/12, "feet")
  57526. },
  57527. {
  57528. name: "Mega Macro",
  57529. height: math.unit(250, "feet")
  57530. },
  57531. {
  57532. name: "BIGGER",
  57533. height: math.unit(1000, "feet")
  57534. },
  57535. {
  57536. name: "BIGGEST",
  57537. height: math.unit(2, "miles")
  57538. },
  57539. ]
  57540. ))
  57541. characterMakers.push(() => makeCharacter(
  57542. { name: "Tamani", species: ["lion"], tags: ["anthro", "feral"] },
  57543. {
  57544. front: {
  57545. height: math.unit(6.5, "feet"),
  57546. weight: math.unit(198, "lb"),
  57547. name: "Front",
  57548. image: {
  57549. source: "./media/characters/tamani/anthro.svg",
  57550. extra: 930/890,
  57551. bottom: 34/964
  57552. },
  57553. form: "anthro",
  57554. default: true
  57555. },
  57556. side: {
  57557. height: math.unit(6, "feet"),
  57558. weight: math.unit(198*2, "lb"),
  57559. name: "Side",
  57560. image: {
  57561. source: "./media/characters/tamani/feral.svg",
  57562. extra: 559/519,
  57563. bottom: 43/602
  57564. },
  57565. form: "feral"
  57566. },
  57567. },
  57568. [
  57569. {
  57570. name: "Normal",
  57571. height: math.unit(6.5, "feet"),
  57572. default: true,
  57573. form: "anthro"
  57574. },
  57575. {
  57576. name: "Normal",
  57577. height: math.unit(6, "feet"),
  57578. default: true,
  57579. form: "feral"
  57580. },
  57581. ],
  57582. {
  57583. "anthro": {
  57584. name: "Anthro",
  57585. default: true
  57586. },
  57587. "feral": {
  57588. name: "Feral",
  57589. },
  57590. }
  57591. ))
  57592. characterMakers.push(() => makeCharacter(
  57593. { name: "Dex", species: ["eastern-cottontail-rabbit"], tags: ["anthro"] },
  57594. {
  57595. front: {
  57596. height: math.unit(4 + 1/12, "feet"),
  57597. weight: math.unit(114, "lb"),
  57598. name: "Front",
  57599. image: {
  57600. source: "./media/characters/dex/front.svg",
  57601. extra: 787/680,
  57602. bottom: 18/805
  57603. }
  57604. },
  57605. side: {
  57606. height: math.unit(4 + 1/12, "feet"),
  57607. weight: math.unit(114, "lb"),
  57608. name: "Side",
  57609. image: {
  57610. source: "./media/characters/dex/side.svg",
  57611. extra: 785/680,
  57612. bottom: 12/797
  57613. }
  57614. },
  57615. back: {
  57616. height: math.unit(4 + 1/12, "feet"),
  57617. weight: math.unit(114, "lb"),
  57618. name: "Back",
  57619. image: {
  57620. source: "./media/characters/dex/back.svg",
  57621. extra: 785/681,
  57622. bottom: 17/802
  57623. }
  57624. },
  57625. loungewear: {
  57626. height: math.unit(4 + 1/12, "feet"),
  57627. weight: math.unit(114, "lb"),
  57628. name: "Loungewear",
  57629. image: {
  57630. source: "./media/characters/dex/loungewear.svg",
  57631. extra: 787/680,
  57632. bottom: 18/805
  57633. }
  57634. },
  57635. workout: {
  57636. height: math.unit(4 + 1/12, "feet"),
  57637. weight: math.unit(114, "lb"),
  57638. name: "Workout",
  57639. image: {
  57640. source: "./media/characters/dex/workout.svg",
  57641. extra: 787/680,
  57642. bottom: 18/805
  57643. }
  57644. },
  57645. schoolUniform: {
  57646. height: math.unit(4 + 1/12, "feet"),
  57647. weight: math.unit(114, "lb"),
  57648. name: "School-uniform",
  57649. image: {
  57650. source: "./media/characters/dex/school-uniform.svg",
  57651. extra: 787/680,
  57652. bottom: 18/805
  57653. }
  57654. },
  57655. maw: {
  57656. height: math.unit(0.55, "feet"),
  57657. name: "Maw",
  57658. image: {
  57659. source: "./media/characters/dex/maw.svg"
  57660. }
  57661. },
  57662. paw: {
  57663. height: math.unit(0.87, "feet"),
  57664. name: "Paw",
  57665. image: {
  57666. source: "./media/characters/dex/paw.svg"
  57667. }
  57668. },
  57669. bust: {
  57670. height: math.unit(1.67, "feet"),
  57671. name: "Bust",
  57672. image: {
  57673. source: "./media/characters/dex/bust.svg"
  57674. }
  57675. },
  57676. },
  57677. [
  57678. {
  57679. name: "Normal",
  57680. height: math.unit(4 + 1/12, "feet"),
  57681. default: true
  57682. },
  57683. ]
  57684. ))
  57685. characterMakers.push(() => makeCharacter(
  57686. { name: "Silke", species: ["sylveon"], tags: ["anthro"] },
  57687. {
  57688. front: {
  57689. height: math.unit(4 + 3/12, "feet"),
  57690. weight: math.unit(60, "lb"),
  57691. name: "Front",
  57692. image: {
  57693. source: "./media/characters/silke/front.svg",
  57694. extra: 1334/1122,
  57695. bottom: 21/1355
  57696. }
  57697. },
  57698. back: {
  57699. height: math.unit(4 + 3/12, "feet"),
  57700. weight: math.unit(60, "lb"),
  57701. name: "Back",
  57702. image: {
  57703. source: "./media/characters/silke/back.svg",
  57704. extra: 1328/1092,
  57705. bottom: 16/1344
  57706. }
  57707. },
  57708. dressed: {
  57709. height: math.unit(4 + 3/12, "feet"),
  57710. weight: math.unit(60, "lb"),
  57711. name: "Dressed",
  57712. image: {
  57713. source: "./media/characters/silke/dressed.svg",
  57714. extra: 1334/1122,
  57715. bottom: 43/1377
  57716. }
  57717. },
  57718. },
  57719. [
  57720. {
  57721. name: "Normal",
  57722. height: math.unit(4 + 3/12, "feet"),
  57723. default: true
  57724. },
  57725. ]
  57726. ))
  57727. characterMakers.push(() => makeCharacter(
  57728. { name: "Wireshark", species: ["thresher-shark"], tags: ["anthro"] },
  57729. {
  57730. front: {
  57731. height: math.unit(1.58, "meters"),
  57732. weight: math.unit(47, "kg"),
  57733. name: "Front",
  57734. image: {
  57735. source: "./media/characters/wireshark/front.svg",
  57736. extra: 883/838,
  57737. bottom: 66/949
  57738. }
  57739. },
  57740. },
  57741. [
  57742. {
  57743. name: "Normal",
  57744. height: math.unit(1.58, "meters"),
  57745. default: true
  57746. },
  57747. ]
  57748. ))
  57749. characterMakers.push(() => makeCharacter(
  57750. { name: "Gallagher", species: ["shark", "cyborg", "ai"], tags: ["anthro"] },
  57751. {
  57752. front: {
  57753. height: math.unit(6, "meters"),
  57754. weight: math.unit(15000, "kg"),
  57755. name: "Front",
  57756. image: {
  57757. source: "./media/characters/gallagher/front.svg",
  57758. extra: 532/493,
  57759. bottom: 0/532
  57760. }
  57761. },
  57762. },
  57763. [
  57764. {
  57765. name: "Normal",
  57766. height: math.unit(6, "meters"),
  57767. default: true
  57768. },
  57769. ]
  57770. ))
  57771. characterMakers.push(() => makeCharacter(
  57772. { name: "Alice", species: ["black-tip-reef-shark"], tags: ["anthro"] },
  57773. {
  57774. front: {
  57775. height: math.unit(2.4, "meters"),
  57776. weight: math.unit(270, "kg"),
  57777. name: "Front",
  57778. image: {
  57779. source: "./media/characters/alice/front.svg",
  57780. extra: 950/900,
  57781. bottom: 36/986
  57782. }
  57783. },
  57784. side: {
  57785. height: math.unit(2.4, "meters"),
  57786. weight: math.unit(270, "kg"),
  57787. name: "Side",
  57788. image: {
  57789. source: "./media/characters/alice/side.svg",
  57790. extra: 921/876,
  57791. bottom: 19/940
  57792. }
  57793. },
  57794. dressed: {
  57795. height: math.unit(2.4, "meters"),
  57796. weight: math.unit(270, "kg"),
  57797. name: "Dressed",
  57798. image: {
  57799. source: "./media/characters/alice/dressed.svg",
  57800. extra: 905/850,
  57801. bottom: 81/986
  57802. }
  57803. },
  57804. fishnet: {
  57805. height: math.unit(2.4, "meters"),
  57806. weight: math.unit(270, "kg"),
  57807. name: "Fishnet",
  57808. image: {
  57809. source: "./media/characters/alice/fishnet.svg",
  57810. extra: 905/850,
  57811. bottom: 81/986
  57812. }
  57813. },
  57814. },
  57815. [
  57816. {
  57817. name: "Normal",
  57818. height: math.unit(2.4, "meters"),
  57819. default: true
  57820. },
  57821. ]
  57822. ))
  57823. characterMakers.push(() => makeCharacter(
  57824. { name: "Fio", species: ["deer"], tags: ["anthro"] },
  57825. {
  57826. front: {
  57827. height: math.unit(175.25, "feet"),
  57828. name: "Front",
  57829. image: {
  57830. source: "./media/characters/fio/front.svg",
  57831. extra: 1883/1591,
  57832. bottom: 34/1917
  57833. }
  57834. },
  57835. },
  57836. [
  57837. {
  57838. name: "Normal",
  57839. height: math.unit(175.25, "cm"),
  57840. default: true
  57841. },
  57842. ]
  57843. ))
  57844. characterMakers.push(() => makeCharacter(
  57845. { name: "Hass", species: ["quetzalcoatlus-northropi"], tags: ["feral"] },
  57846. {
  57847. side: {
  57848. height: math.unit(6, "meters"),
  57849. weight: math.unit(3400, "kg"),
  57850. preyCapacity: math.unit(1700, "liters"),
  57851. name: "Side",
  57852. image: {
  57853. source: "./media/characters/hass/side.svg",
  57854. extra: 1058/997,
  57855. bottom: 177/1235
  57856. }
  57857. },
  57858. feeding: {
  57859. height: math.unit(6*0.63, "meters"),
  57860. weight: math.unit(3400, "kg"),
  57861. preyCapacity: math.unit(1700, "liters"),
  57862. name: "Feeding",
  57863. image: {
  57864. source: "./media/characters/hass/feeding.svg",
  57865. extra: 689/579,
  57866. bottom: 146/835
  57867. }
  57868. },
  57869. guts: {
  57870. height: math.unit(6, "meters"),
  57871. weight: math.unit(3400, "kg"),
  57872. name: "Guts",
  57873. image: {
  57874. source: "./media/characters/hass/guts.svg",
  57875. extra: 1223/1198,
  57876. bottom: 182/1405
  57877. }
  57878. },
  57879. dickFront: {
  57880. height: math.unit(1.4, "meters"),
  57881. name: "Dick (Front)",
  57882. image: {
  57883. source: "./media/characters/hass/dick-front.svg"
  57884. }
  57885. },
  57886. dickSide: {
  57887. height: math.unit(1.3, "meters"),
  57888. name: "Dick (Side)",
  57889. image: {
  57890. source: "./media/characters/hass/dick-side.svg"
  57891. }
  57892. },
  57893. dickBack: {
  57894. height: math.unit(1.4, "meters"),
  57895. name: "Dick (Back)",
  57896. image: {
  57897. source: "./media/characters/hass/dick-back.svg"
  57898. }
  57899. },
  57900. },
  57901. [
  57902. {
  57903. name: "Normal",
  57904. height: math.unit(6, "meters"),
  57905. default: true
  57906. },
  57907. ]
  57908. ))
  57909. characterMakers.push(() => makeCharacter(
  57910. { name: "Hickory Finnegan", species: ["fennec-fox"], tags: ["anthro"] },
  57911. {
  57912. front: {
  57913. height: math.unit(4, "feet"),
  57914. weight: math.unit(60, "lb"),
  57915. name: "Front",
  57916. image: {
  57917. source: "./media/characters/hickory-finnegan/front.svg",
  57918. extra: 444/411,
  57919. bottom: 10/454
  57920. }
  57921. },
  57922. side: {
  57923. height: math.unit(4, "feet"),
  57924. weight: math.unit(60, "lb"),
  57925. name: "Side",
  57926. image: {
  57927. source: "./media/characters/hickory-finnegan/side.svg",
  57928. extra: 444/411,
  57929. bottom: 10/454
  57930. }
  57931. },
  57932. back: {
  57933. height: math.unit(4, "feet"),
  57934. weight: math.unit(60, "lb"),
  57935. name: "Back",
  57936. image: {
  57937. source: "./media/characters/hickory-finnegan/back.svg",
  57938. extra: 444/411,
  57939. bottom: 10/454
  57940. }
  57941. },
  57942. },
  57943. [
  57944. {
  57945. name: "Normal",
  57946. height: math.unit(4, "feet"),
  57947. default: true
  57948. },
  57949. ]
  57950. ))
  57951. characterMakers.push(() => makeCharacter(
  57952. { name: "Robin Phox", species: ["snivy", "yoshi", "delphox", "mienshao", "inteleon", "reshiram", "samurott"], tags: ["anthro"] },
  57953. {
  57954. snivy_front: {
  57955. height: math.unit(2, "feet"),
  57956. weight: math.unit(17.9, "lb"),
  57957. name: "Front",
  57958. image: {
  57959. source: "./media/characters/robin-phox/snivy-front.svg",
  57960. extra: 569/504,
  57961. bottom: 33/602
  57962. },
  57963. form: "snivy",
  57964. default: true
  57965. },
  57966. snivy_frontNsfw: {
  57967. height: math.unit(2, "feet"),
  57968. weight: math.unit(17.9, "lb"),
  57969. name: "Front (NSFW)",
  57970. image: {
  57971. source: "./media/characters/robin-phox/snivy-front-nsfw.svg",
  57972. extra: 569/504,
  57973. bottom: 33/602
  57974. },
  57975. form: "snivy",
  57976. },
  57977. snivy_back: {
  57978. height: math.unit(2, "feet"),
  57979. weight: math.unit(17.9, "lb"),
  57980. name: "Back",
  57981. image: {
  57982. source: "./media/characters/robin-phox/snivy-back.svg",
  57983. extra: 577/508,
  57984. bottom: 21/598
  57985. },
  57986. form: "snivy",
  57987. },
  57988. snivy_foot: {
  57989. height: math.unit(0.68, "feet"),
  57990. name: "Foot",
  57991. image: {
  57992. source: "./media/characters/robin-phox/snivy-foot.svg"
  57993. },
  57994. form: "snivy",
  57995. },
  57996. snivy_sole: {
  57997. height: math.unit(0.68, "feet"),
  57998. name: "Sole",
  57999. image: {
  58000. source: "./media/characters/robin-phox/snivy-sole.svg"
  58001. },
  58002. form: "snivy",
  58003. },
  58004. yoshi_front: {
  58005. height: math.unit(6, "feet"),
  58006. weight: math.unit(150, "lb"),
  58007. name: "Front",
  58008. image: {
  58009. source: "./media/characters/robin-phox/yoshi-front.svg",
  58010. extra: 890/792,
  58011. bottom: 29/919
  58012. },
  58013. form: "yoshi",
  58014. default: true
  58015. },
  58016. yoshi_frontNsfw: {
  58017. height: math.unit(6, "feet"),
  58018. weight: math.unit(150, "lb"),
  58019. name: "Front (NSFW)",
  58020. image: {
  58021. source: "./media/characters/robin-phox/yoshi-front-nsfw.svg",
  58022. extra: 890/792,
  58023. bottom: 29/919
  58024. },
  58025. form: "yoshi",
  58026. },
  58027. yoshi_back: {
  58028. height: math.unit(6, "feet"),
  58029. weight: math.unit(150, "lb"),
  58030. name: "Back",
  58031. image: {
  58032. source: "./media/characters/robin-phox/yoshi-back.svg",
  58033. extra: 890/792,
  58034. bottom: 29/919
  58035. },
  58036. form: "yoshi",
  58037. },
  58038. yoshi_foot: {
  58039. height: math.unit(1.5, "feet"),
  58040. name: "Foot",
  58041. image: {
  58042. source: "./media/characters/robin-phox/yoshi-foot.svg"
  58043. },
  58044. form: "yoshi",
  58045. },
  58046. delphox_front: {
  58047. height: math.unit(4 + 11/12, "feet"),
  58048. weight: math.unit(86, "lb"),
  58049. name: "Front",
  58050. image: {
  58051. source: "./media/characters/robin-phox/delphox-front.svg",
  58052. extra: 1266/1069,
  58053. bottom: 32/1298
  58054. },
  58055. form: "delphox",
  58056. default: true
  58057. },
  58058. delphox_frontNsfw: {
  58059. height: math.unit(4 + 11/12, "feet"),
  58060. weight: math.unit(86, "lb"),
  58061. name: "Front (NSFW)",
  58062. image: {
  58063. source: "./media/characters/robin-phox/delphox-front-nsfw.svg",
  58064. extra: 1266/1069,
  58065. bottom: 32/1298
  58066. },
  58067. form: "delphox",
  58068. },
  58069. delphox_back: {
  58070. height: math.unit(4 + 11/12, "feet"),
  58071. weight: math.unit(86, "lb"),
  58072. name: "Back",
  58073. image: {
  58074. source: "./media/characters/robin-phox/delphox-back.svg",
  58075. extra: 1269/1083,
  58076. bottom: 15/1284
  58077. },
  58078. form: "delphox",
  58079. },
  58080. mienshao_front: {
  58081. height: math.unit(4 + 7/12, "feet"),
  58082. weight: math.unit(78.3, "lb"),
  58083. name: "Front",
  58084. image: {
  58085. source: "./media/characters/robin-phox/mienshao-front.svg",
  58086. extra: 1052/970,
  58087. bottom: 108/1160
  58088. },
  58089. form: "mienshao",
  58090. default: true
  58091. },
  58092. mienshao_frontNsfw: {
  58093. height: math.unit(4 + 7/12, "feet"),
  58094. weight: math.unit(78.3, "lb"),
  58095. name: "Front (NSFW)",
  58096. image: {
  58097. source: "./media/characters/robin-phox/mienshao-front-nsfw.svg",
  58098. extra: 1052/970,
  58099. bottom: 108/1160
  58100. },
  58101. form: "mienshao",
  58102. },
  58103. mienshao_back: {
  58104. height: math.unit(4 + 7/12, "feet"),
  58105. weight: math.unit(78.3, "lb"),
  58106. name: "Back",
  58107. image: {
  58108. source: "./media/characters/robin-phox/mienshao-back.svg",
  58109. extra: 1102/982,
  58110. bottom: 32/1134
  58111. },
  58112. form: "mienshao",
  58113. },
  58114. inteleon_front: {
  58115. height: math.unit(6 + 3/12, "feet"),
  58116. weight: math.unit(99.6, "lb"),
  58117. name: "Front",
  58118. image: {
  58119. source: "./media/characters/robin-phox/inteleon-front.svg",
  58120. extra: 910/799,
  58121. bottom: 76/986
  58122. },
  58123. form: "inteleon",
  58124. default: true
  58125. },
  58126. inteleon_frontNsfw: {
  58127. height: math.unit(6 + 3/12, "feet"),
  58128. weight: math.unit(99.6, "lb"),
  58129. name: "Front (NSFW)",
  58130. image: {
  58131. source: "./media/characters/robin-phox/inteleon-front-nsfw.svg",
  58132. extra: 910/799,
  58133. bottom: 76/986
  58134. },
  58135. form: "inteleon",
  58136. },
  58137. inteleon_back: {
  58138. height: math.unit(6 + 3/12, "feet"),
  58139. weight: math.unit(99.6, "lb"),
  58140. name: "Back",
  58141. image: {
  58142. source: "./media/characters/robin-phox/inteleon-back.svg",
  58143. extra: 907/796,
  58144. bottom: 25/932
  58145. },
  58146. form: "inteleon",
  58147. },
  58148. reshiram_front: {
  58149. height: math.unit(10 + 6/12, "feet"),
  58150. weight: math.unit(727.5, "lb"),
  58151. name: "Front",
  58152. image: {
  58153. source: "./media/characters/robin-phox/reshiram-front.svg",
  58154. extra: 1198/940,
  58155. bottom: 123/1321
  58156. },
  58157. form: "reshiram",
  58158. },
  58159. reshiram_frontNsfw: {
  58160. height: math.unit(10 + 6/12, "feet"),
  58161. weight: math.unit(727.5, "lb"),
  58162. name: "Front-nsfw",
  58163. image: {
  58164. source: "./media/characters/robin-phox/reshiram-front-nsfw.svg",
  58165. extra: 1198/940,
  58166. bottom: 123/1321
  58167. },
  58168. form: "reshiram",
  58169. },
  58170. reshiram_back: {
  58171. height: math.unit(10 + 6/12, "feet"),
  58172. weight: math.unit(727.5, "lb"),
  58173. name: "Back",
  58174. image: {
  58175. source: "./media/characters/robin-phox/reshiram-back.svg",
  58176. extra: 1024/904,
  58177. bottom: 85/1109
  58178. },
  58179. form: "reshiram",
  58180. },
  58181. samurott_front: {
  58182. height: math.unit(8, "feet"),
  58183. weight: math.unit(208.6, "lb"),
  58184. name: "Front",
  58185. image: {
  58186. source: "./media/characters/robin-phox/samurott-front.svg",
  58187. extra: 1048/984,
  58188. bottom: 100/1148
  58189. },
  58190. form: "samurott",
  58191. },
  58192. samurott_frontNsfw: {
  58193. height: math.unit(8, "feet"),
  58194. weight: math.unit(208.6, "lb"),
  58195. name: "Front-nsfw",
  58196. image: {
  58197. source: "./media/characters/robin-phox/samurott-front-nsfw.svg",
  58198. extra: 1048/984,
  58199. bottom: 100/1148
  58200. },
  58201. form: "samurott",
  58202. },
  58203. samurott_back: {
  58204. height: math.unit(8, "feet"),
  58205. weight: math.unit(208.6, "lb"),
  58206. name: "Back",
  58207. image: {
  58208. source: "./media/characters/robin-phox/samurott-back.svg",
  58209. extra: 1110/1042,
  58210. bottom: 12/1122
  58211. },
  58212. form: "samurott",
  58213. },
  58214. samurott_feral: {
  58215. height: math.unit(4 + 11/12, "feet"),
  58216. weight: math.unit(208.6, "lb"),
  58217. name: "Feral",
  58218. image: {
  58219. source: "./media/characters/robin-phox/samurott-feral.svg",
  58220. extra: 766/681,
  58221. bottom: 108/874
  58222. },
  58223. form: "samurott",
  58224. },
  58225. },
  58226. [
  58227. {
  58228. name: "Normal",
  58229. height: math.unit(2, "feet"),
  58230. default: true,
  58231. form: "snivy"
  58232. },
  58233. {
  58234. name: "Normal",
  58235. height: math.unit(6, "feet"),
  58236. default: true,
  58237. form: "yoshi"
  58238. },
  58239. {
  58240. name: "Normal",
  58241. height: math.unit(4 + 11/12, "feet"),
  58242. default: true,
  58243. form: "delphox"
  58244. },
  58245. {
  58246. name: "Normal",
  58247. height: math.unit(4 + 7/12, "feet"),
  58248. default: true,
  58249. form: "mienshao"
  58250. },
  58251. {
  58252. name: "Normal",
  58253. height: math.unit(6 + 3/12, "feet"),
  58254. default: true,
  58255. form: "inteleon"
  58256. },
  58257. {
  58258. name: "Normal",
  58259. height: math.unit(10 + 6/12, "feet"),
  58260. default: true,
  58261. form: "reshiram"
  58262. },
  58263. {
  58264. name: "Normal",
  58265. height: math.unit(8, "feet"),
  58266. default: true,
  58267. form: "samurott"
  58268. },
  58269. {
  58270. name: "Macro",
  58271. height: math.unit(500, "feet"),
  58272. allForms: true
  58273. },
  58274. {
  58275. name: "Mega Macro",
  58276. height: math.unit(10, "earths"),
  58277. allForms: true
  58278. },
  58279. {
  58280. name: "Giga Macro",
  58281. height: math.unit(1, "galaxy"),
  58282. allForms: true
  58283. },
  58284. {
  58285. name: "Godly Macro",
  58286. height: math.unit(1e10, "multiverses"),
  58287. allForms: true
  58288. },
  58289. ],
  58290. {
  58291. "snivy": {
  58292. name: "Snivy",
  58293. default: true
  58294. },
  58295. "yoshi": {
  58296. name: "Yoshi",
  58297. },
  58298. "delphox": {
  58299. name: "Delphox",
  58300. },
  58301. "mienshao": {
  58302. name: "Mienshao",
  58303. },
  58304. "inteleon": {
  58305. name: "Inteleon",
  58306. },
  58307. "reshiram": {
  58308. name: "Reshiram",
  58309. },
  58310. "samurott": {
  58311. name: "Samurott",
  58312. },
  58313. }
  58314. ))
  58315. characterMakers.push(() => makeCharacter(
  58316. { name: "Ash Leung", species: ["red-panda"], tags: ["anthro"] },
  58317. {
  58318. front: {
  58319. height: math.unit(4, "feet"),
  58320. name: "Front",
  58321. image: {
  58322. source: "./media/characters/ash-leung/front.svg",
  58323. extra: 1916/1792,
  58324. bottom: 50/1966
  58325. }
  58326. },
  58327. },
  58328. [
  58329. {
  58330. name: "Atomic",
  58331. height: math.unit(1, "angstrom")
  58332. },
  58333. {
  58334. name: "Microscopic",
  58335. height: math.unit(4000, "angstroms")
  58336. },
  58337. {
  58338. name: "Speck",
  58339. height: math.unit(1, "mm")
  58340. },
  58341. {
  58342. name: "Small",
  58343. height: math.unit(1, "inch")
  58344. },
  58345. {
  58346. name: "Normal",
  58347. height: math.unit(4, "feet"),
  58348. default: true
  58349. },
  58350. ]
  58351. ))
  58352. characterMakers.push(() => makeCharacter(
  58353. { name: "Carie", species: ["lucario"], tags: ["anthro"] },
  58354. {
  58355. frontDressed: {
  58356. height: math.unit(2.08, "meters"),
  58357. weight: math.unit(175, "lb"),
  58358. name: "Front (Dressed)",
  58359. image: {
  58360. source: "./media/characters/carie/front-dressed.svg",
  58361. extra: 456/417,
  58362. bottom: 7/463
  58363. }
  58364. },
  58365. backDressed: {
  58366. height: math.unit(2.08, "meters"),
  58367. weight: math.unit(175, "lb"),
  58368. name: "Back (Dressed)",
  58369. image: {
  58370. source: "./media/characters/carie/back-dressed.svg",
  58371. extra: 455/414,
  58372. bottom: 11/466
  58373. }
  58374. },
  58375. front: {
  58376. height: math.unit(2, "meters"),
  58377. weight: math.unit(175, "lb"),
  58378. name: "Front",
  58379. image: {
  58380. source: "./media/characters/carie/front.svg",
  58381. extra: 438/399,
  58382. bottom: 12/450
  58383. }
  58384. },
  58385. back: {
  58386. height: math.unit(2, "meters"),
  58387. weight: math.unit(175, "lb"),
  58388. name: "Back",
  58389. image: {
  58390. source: "./media/characters/carie/back.svg",
  58391. extra: 438/397,
  58392. bottom: 7/445
  58393. }
  58394. },
  58395. },
  58396. [
  58397. {
  58398. name: "Normal",
  58399. height: math.unit(2.08, "meters"),
  58400. default: true
  58401. },
  58402. {
  58403. name: "Macro",
  58404. height: math.unit(2.08e3, "meters")
  58405. },
  58406. {
  58407. name: "Mega Macro",
  58408. height: math.unit(2.08e6, "meters")
  58409. },
  58410. {
  58411. name: "Giga Macro",
  58412. height: math.unit(2.08e9, "meters")
  58413. },
  58414. {
  58415. name: "Tera Macro",
  58416. height: math.unit(2.08e12, "meters")
  58417. },
  58418. {
  58419. name: "Peta Macro",
  58420. height: math.unit(2.08e15, "meters")
  58421. },
  58422. {
  58423. name: "Exa Macro",
  58424. height: math.unit(2.08e18, "meters")
  58425. },
  58426. {
  58427. name: "Zetta Macro",
  58428. height: math.unit(2.08e21, "meters")
  58429. },
  58430. {
  58431. name: "Yotta Macro",
  58432. height: math.unit(2.08e24, "meters")
  58433. },
  58434. ]
  58435. ))
  58436. characterMakers.push(() => makeCharacter(
  58437. { name: "Sai Bree", species: ["sabertooth-tiger"], tags: ["anthro"] },
  58438. {
  58439. front: {
  58440. height: math.unit(5 + 2/12, "feet"),
  58441. weight: math.unit(120, "lb"),
  58442. name: "Front",
  58443. image: {
  58444. source: "./media/characters/sai-bree/front.svg",
  58445. extra: 1843/1702,
  58446. bottom: 91/1934
  58447. }
  58448. },
  58449. back: {
  58450. height: math.unit(5 + 2/12, "feet"),
  58451. weight: math.unit(120, "lb"),
  58452. name: "Back",
  58453. image: {
  58454. source: "./media/characters/sai-bree/back.svg",
  58455. extra: 1809/1637,
  58456. bottom: 56/1865
  58457. }
  58458. },
  58459. },
  58460. [
  58461. {
  58462. name: "Normal",
  58463. height: math.unit(5 + 2/12, "feet"),
  58464. default: true
  58465. },
  58466. {
  58467. name: "Macro",
  58468. height: math.unit(500, "feet")
  58469. },
  58470. ]
  58471. ))
  58472. characterMakers.push(() => makeCharacter(
  58473. { name: "Davwyn", species: ["dragon"], tags: ["feral"] },
  58474. {
  58475. side: {
  58476. height: math.unit(0.77, "meters"),
  58477. weight: math.unit(120, "lb"),
  58478. name: "Side",
  58479. image: {
  58480. source: "./media/characters/davwyn/side.svg",
  58481. extra: 1557/1225,
  58482. bottom: 131/1688
  58483. }
  58484. },
  58485. front: {
  58486. height: math.unit(0.835410, "meters"),
  58487. weight: math.unit(120, "lb"),
  58488. name: "Front",
  58489. image: {
  58490. source: "./media/characters/davwyn/front.svg",
  58491. extra: 870/843,
  58492. bottom: 175/1045
  58493. }
  58494. },
  58495. },
  58496. [
  58497. {
  58498. name: "Minidrake",
  58499. height: math.unit(0.77/4, "meters")
  58500. },
  58501. {
  58502. name: "Normal",
  58503. height: math.unit(0.77, "meters"),
  58504. default: true
  58505. },
  58506. ]
  58507. ))
  58508. characterMakers.push(() => makeCharacter(
  58509. { name: "Balans", species: ["dragon", "kangaroo"], tags: ["anthro"] },
  58510. {
  58511. front: {
  58512. height: math.unit(10 + 3/12, "feet"),
  58513. weight: math.unit(2857, "lb"),
  58514. name: "Front",
  58515. image: {
  58516. source: "./media/characters/balans/front.svg",
  58517. extra: 427/402,
  58518. bottom: 26/453
  58519. }
  58520. },
  58521. side: {
  58522. height: math.unit(10 + 3/12, "feet"),
  58523. weight: math.unit(2857, "lb"),
  58524. name: "Side",
  58525. image: {
  58526. source: "./media/characters/balans/side.svg",
  58527. extra: 397/371,
  58528. bottom: 17/414
  58529. }
  58530. },
  58531. back: {
  58532. height: math.unit(10 + 3/12, "feet"),
  58533. weight: math.unit(2857, "lb"),
  58534. name: "Back",
  58535. image: {
  58536. source: "./media/characters/balans/back.svg",
  58537. extra: 408/381,
  58538. bottom: 14/422
  58539. }
  58540. },
  58541. hand: {
  58542. height: math.unit(1.15, "feet"),
  58543. name: "Hand",
  58544. image: {
  58545. source: "./media/characters/balans/hand.svg"
  58546. }
  58547. },
  58548. footRest: {
  58549. height: math.unit(3.1, "feet"),
  58550. name: "Foot (Rest)",
  58551. image: {
  58552. source: "./media/characters/balans/foot-rest.svg"
  58553. }
  58554. },
  58555. footActive: {
  58556. height: math.unit(3.5, "feet"),
  58557. name: "Foot (Active)",
  58558. image: {
  58559. source: "./media/characters/balans/foot-active.svg"
  58560. }
  58561. },
  58562. },
  58563. [
  58564. {
  58565. name: "Normal",
  58566. height: math.unit(10 + 3/12, "feet"),
  58567. default: true
  58568. },
  58569. ]
  58570. ))
  58571. characterMakers.push(() => makeCharacter(
  58572. { name: "Eldkveikir", species: ["dragon"], tags: ["feral"] },
  58573. {
  58574. side: {
  58575. height: math.unit(9, "meters"),
  58576. weight: math.unit(114, "tonnes"),
  58577. name: "Side",
  58578. image: {
  58579. source: "./media/characters/eldkveikir/side.svg",
  58580. extra: 1927/338,
  58581. bottom: 42/1969
  58582. }
  58583. },
  58584. sitting: {
  58585. height: math.unit(13.4, "meters"),
  58586. weight: math.unit(114, "tonnes"),
  58587. name: "Sitting",
  58588. image: {
  58589. source: "./media/characters/eldkveikir/sitting.svg",
  58590. extra: 1108/963,
  58591. bottom: 610/1718
  58592. }
  58593. },
  58594. maw: {
  58595. height: math.unit(8.36, "meters"),
  58596. name: "Maw",
  58597. image: {
  58598. source: "./media/characters/eldkveikir/maw.svg"
  58599. }
  58600. },
  58601. hand: {
  58602. height: math.unit(4.84, "meters"),
  58603. name: "Hand",
  58604. image: {
  58605. source: "./media/characters/eldkveikir/hand.svg"
  58606. }
  58607. },
  58608. foot: {
  58609. height: math.unit(6.9, "meters"),
  58610. name: "Foot",
  58611. image: {
  58612. source: "./media/characters/eldkveikir/foot.svg"
  58613. }
  58614. },
  58615. genitals: {
  58616. height: math.unit(9.6, "meters"),
  58617. name: "Genitals",
  58618. image: {
  58619. source: "./media/characters/eldkveikir/genitals.svg"
  58620. }
  58621. },
  58622. },
  58623. [
  58624. {
  58625. name: "Normal",
  58626. height: math.unit(9, "meters"),
  58627. default: true
  58628. },
  58629. ]
  58630. ))
  58631. characterMakers.push(() => makeCharacter(
  58632. { name: "Arrow", species: ["wolf"], tags: ["anthro"] },
  58633. {
  58634. front: {
  58635. height: math.unit(14, "feet"),
  58636. weight: math.unit(4100, "lb"),
  58637. name: "Front",
  58638. image: {
  58639. source: "./media/characters/arrow/front.svg",
  58640. extra: 330/318,
  58641. bottom: 56/386
  58642. }
  58643. },
  58644. },
  58645. [
  58646. {
  58647. name: "Normal",
  58648. height: math.unit(14, "feet"),
  58649. default: true
  58650. },
  58651. {
  58652. name: "Minimacro",
  58653. height: math.unit(63, "feet")
  58654. },
  58655. {
  58656. name: "Macro",
  58657. height: math.unit(630, "feet")
  58658. },
  58659. {
  58660. name: "Megamacro",
  58661. height: math.unit(12600, "feet")
  58662. },
  58663. {
  58664. name: "Gigamacro",
  58665. height: math.unit(18000, "miles")
  58666. },
  58667. ]
  58668. ))
  58669. characterMakers.push(() => makeCharacter(
  58670. { name: "3YK-K0 Unit", species: ["synth"], tags: ["anthro"] },
  58671. {
  58672. front: {
  58673. height: math.unit(10, "feet"),
  58674. weight: math.unit(2.4, "tons"),
  58675. name: "Front",
  58676. image: {
  58677. source: "./media/characters/3yk-k0-unit/front.svg",
  58678. extra: 573/561,
  58679. bottom: 33/606
  58680. }
  58681. },
  58682. back: {
  58683. height: math.unit(10, "feet"),
  58684. weight: math.unit(2.4, "tons"),
  58685. name: "Back",
  58686. image: {
  58687. source: "./media/characters/3yk-k0-unit/back.svg",
  58688. extra: 614/573,
  58689. bottom: 32/646
  58690. }
  58691. },
  58692. maw: {
  58693. height: math.unit(2.15, "feet"),
  58694. name: "Maw",
  58695. image: {
  58696. source: "./media/characters/3yk-k0-unit/maw.svg"
  58697. }
  58698. },
  58699. },
  58700. [
  58701. {
  58702. name: "Normal",
  58703. height: math.unit(10, "feet"),
  58704. default: true
  58705. },
  58706. ]
  58707. ))
  58708. characterMakers.push(() => makeCharacter(
  58709. { name: "Nemo", species: ["dragon"], tags: ["anthro"] },
  58710. {
  58711. front: {
  58712. height: math.unit(8 + 8/12, "feet"),
  58713. name: "Front",
  58714. image: {
  58715. source: "./media/characters/nemo/front.svg",
  58716. extra: 1308/1217,
  58717. bottom: 57/1365
  58718. }
  58719. },
  58720. },
  58721. [
  58722. {
  58723. name: "Normal",
  58724. height: math.unit(8 + 8/12, "feet"),
  58725. default: true
  58726. },
  58727. ]
  58728. ))
  58729. characterMakers.push(() => makeCharacter(
  58730. { name: "Rexx", species: ["wolf"], tags: ["anthro"] },
  58731. {
  58732. front: {
  58733. height: math.unit(8, "feet"),
  58734. weight: math.unit(760, "lb"),
  58735. name: "Front",
  58736. image: {
  58737. source: "./media/characters/rexx/front.svg",
  58738. extra: 786/750,
  58739. bottom: 17/803
  58740. },
  58741. extraAttributes: {
  58742. "pawLength": {
  58743. name: "Paw Length",
  58744. power: 1,
  58745. type: "length",
  58746. base: math.unit(27, "inches")
  58747. },
  58748. }
  58749. },
  58750. },
  58751. [
  58752. {
  58753. name: "Micro",
  58754. height: math.unit(2, "inches")
  58755. },
  58756. {
  58757. name: "Normal",
  58758. height: math.unit(8, "feet"),
  58759. default: true
  58760. },
  58761. {
  58762. name: "Macro",
  58763. height: math.unit(150, "feet")
  58764. },
  58765. ]
  58766. ))
  58767. characterMakers.push(() => makeCharacter(
  58768. { name: "Draco", species: ["dragon"], tags: ["anthro"] },
  58769. {
  58770. front: {
  58771. height: math.unit(18, "feet"),
  58772. weight: math.unit(1975, "lb"),
  58773. name: "Front",
  58774. image: {
  58775. source: "./media/characters/draco/front.svg",
  58776. extra: 1325/1241,
  58777. bottom: 83/1408
  58778. }
  58779. },
  58780. back: {
  58781. height: math.unit(18, "feet"),
  58782. weight: math.unit(1975, "lb"),
  58783. name: "Back",
  58784. image: {
  58785. source: "./media/characters/draco/back.svg",
  58786. extra: 1332/1250,
  58787. bottom: 43/1375
  58788. }
  58789. },
  58790. dick: {
  58791. height: math.unit(7.5, "feet"),
  58792. name: "Dick",
  58793. image: {
  58794. source: "./media/characters/draco/dick.svg"
  58795. }
  58796. },
  58797. },
  58798. [
  58799. {
  58800. name: "Normal",
  58801. height: math.unit(18, "feet"),
  58802. default: true
  58803. },
  58804. ]
  58805. ))
  58806. characterMakers.push(() => makeCharacter(
  58807. { name: "Harriett", species: ["nedynvor"], tags: ["anthro"] },
  58808. {
  58809. front: {
  58810. height: math.unit(3.2, "meters"),
  58811. name: "Front",
  58812. image: {
  58813. source: "./media/characters/harriett/front.svg",
  58814. extra: 1966/1915,
  58815. bottom: 9/1975
  58816. }
  58817. },
  58818. },
  58819. [
  58820. {
  58821. name: "Normal",
  58822. height: math.unit(3.2, "meters"),
  58823. default: true
  58824. },
  58825. ]
  58826. ))
  58827. characterMakers.push(() => makeCharacter(
  58828. { name: "Serpentus", species: ["snake"], tags: ["anthro"] },
  58829. {
  58830. standing: {
  58831. height: math.unit(180, "cm"),
  58832. weight: math.unit(185, "lb"),
  58833. name: "Standing",
  58834. image: {
  58835. source: "./media/characters/serpentus/standing.svg",
  58836. extra: 882/878,
  58837. bottom: 16/898
  58838. }
  58839. },
  58840. sitting: {
  58841. height: math.unit(0.8, "meter"),
  58842. weight: math.unit(155, "lb"),
  58843. name: "Sitting",
  58844. image: {
  58845. source: "./media/characters/serpentus/sitting.svg",
  58846. extra: 293/290,
  58847. bottom: 140/433
  58848. }
  58849. },
  58850. },
  58851. [
  58852. {
  58853. name: "Normal",
  58854. height: math.unit(1.8, "meter"),
  58855. default: true
  58856. },
  58857. ]
  58858. ))
  58859. characterMakers.push(() => makeCharacter(
  58860. { name: "Nova (Polecat)", species: ["marbled-polecat"], tags: ["anthro"] },
  58861. {
  58862. front: {
  58863. height: math.unit(5.7174385736, "feet"),
  58864. name: "Front",
  58865. image: {
  58866. source: "./media/characters/nova-polecat/front.svg",
  58867. extra: 1317/1216,
  58868. bottom: 92/1409
  58869. }
  58870. },
  58871. },
  58872. [
  58873. {
  58874. name: "Normal",
  58875. height: math.unit(5.7174385736, "feet"),
  58876. default: true
  58877. },
  58878. ]
  58879. ))
  58880. characterMakers.push(() => makeCharacter(
  58881. { name: "Mook", species: ["monkey", "ape"], tags: ["anthro"] },
  58882. {
  58883. front: {
  58884. height: math.unit(5 + 4/12, "feet"),
  58885. weight: math.unit(250, "lb"),
  58886. name: "Front",
  58887. image: {
  58888. source: "./media/characters/mook/front.svg",
  58889. extra: 1088/1037,
  58890. bottom: 132/1220
  58891. }
  58892. },
  58893. back: {
  58894. height: math.unit(5 + 1/12, "feet"),
  58895. weight: math.unit(250, "lb"),
  58896. name: "Back",
  58897. image: {
  58898. source: "./media/characters/mook/back.svg",
  58899. extra: 1184/905,
  58900. bottom: 96/1280
  58901. }
  58902. },
  58903. head: {
  58904. height: math.unit(1.85, "feet"),
  58905. name: "Head",
  58906. image: {
  58907. source: "./media/characters/mook/head.svg"
  58908. }
  58909. },
  58910. hand: {
  58911. height: math.unit(1.9, "feet"),
  58912. name: "Hand",
  58913. image: {
  58914. source: "./media/characters/mook/hand.svg"
  58915. }
  58916. },
  58917. palm: {
  58918. height: math.unit(1.84, "feet"),
  58919. name: "Palm",
  58920. image: {
  58921. source: "./media/characters/mook/palm.svg"
  58922. }
  58923. },
  58924. foot: {
  58925. height: math.unit(1.44, "feet"),
  58926. name: "Foot",
  58927. image: {
  58928. source: "./media/characters/mook/foot.svg"
  58929. }
  58930. },
  58931. sole: {
  58932. height: math.unit(1.44, "feet"),
  58933. name: "Sole",
  58934. image: {
  58935. source: "./media/characters/mook/sole.svg"
  58936. }
  58937. },
  58938. },
  58939. [
  58940. {
  58941. name: "Normal",
  58942. height: math.unit(5 + 4/12, "feet"),
  58943. default: true
  58944. },
  58945. {
  58946. name: "Big",
  58947. height: math.unit(12, "feet")
  58948. },
  58949. ]
  58950. ))
  58951. characterMakers.push(() => makeCharacter(
  58952. { name: "Kayla", species: ["human"], tags: ["anthro"] },
  58953. {
  58954. front: {
  58955. height: math.unit(6 + 10/12, "feet"),
  58956. weight: math.unit(233, "lb"),
  58957. name: "Front",
  58958. image: {
  58959. source: "./media/characters/kayla/front.svg",
  58960. extra: 1850/1775,
  58961. bottom: 65/1915
  58962. }
  58963. },
  58964. },
  58965. [
  58966. {
  58967. name: "Normal",
  58968. height: math.unit(6 + 10/12, "feet"),
  58969. default: true
  58970. },
  58971. {
  58972. name: "Amazonian",
  58973. height: math.unit(12 + 5/12, "feet")
  58974. },
  58975. {
  58976. name: "Mini Giantess",
  58977. height: math.unit(26, "feet")
  58978. },
  58979. {
  58980. name: "Giantess",
  58981. height: math.unit(200, "feet")
  58982. },
  58983. {
  58984. name: "Mega Giantess",
  58985. height: math.unit(2500, "feet")
  58986. },
  58987. {
  58988. name: "City Sized",
  58989. height: math.unit(50, "miles")
  58990. },
  58991. {
  58992. name: "Country Sized",
  58993. height: math.unit(500, "miles")
  58994. },
  58995. {
  58996. name: "Continent Sized",
  58997. height: math.unit(2500, "miles")
  58998. },
  58999. {
  59000. name: "Planet Sized",
  59001. height: math.unit(10000, "miles")
  59002. },
  59003. {
  59004. name: "Star Sized",
  59005. height: math.unit(5e6, "miles")
  59006. },
  59007. {
  59008. name: "Solar System Sized",
  59009. height: math.unit(125, "AU")
  59010. },
  59011. {
  59012. name: "Galaxy Sized",
  59013. height: math.unit(300e3, "lightyears")
  59014. },
  59015. {
  59016. name: "Universe Sized",
  59017. height: math.unit(200e9, "lightyears")
  59018. },
  59019. {
  59020. name: "Multiverse Sized",
  59021. height: math.unit(20, "exauniverses")
  59022. },
  59023. {
  59024. name: "Mother of Existence",
  59025. height: math.unit(1e6, "yottauniverses")
  59026. },
  59027. ]
  59028. ))
  59029. characterMakers.push(() => makeCharacter(
  59030. { name: "Kulve Ragnarok", species: ["kulve-taroth"], tags: ["taur"] },
  59031. {
  59032. side: {
  59033. height: math.unit(9.5, "meters"),
  59034. name: "Side",
  59035. image: {
  59036. source: "./media/characters/kulve-ragnarok/side.svg",
  59037. extra: 364/326,
  59038. bottom: 50/414
  59039. }
  59040. },
  59041. },
  59042. [
  59043. {
  59044. name: "Normal",
  59045. height: math.unit(9.5, "meters"),
  59046. default: true
  59047. },
  59048. ]
  59049. ))
  59050. characterMakers.push(() => makeCharacter(
  59051. { name: "Atlas (Goat)", species: ["goat"], tags: ["anthro"] },
  59052. {
  59053. front: {
  59054. height: math.unit(8 + 9/12, "feet"),
  59055. name: "Front",
  59056. image: {
  59057. source: "./media/characters/atlas-goat/front.svg",
  59058. extra: 1462/1323,
  59059. bottom: 12/1474
  59060. }
  59061. },
  59062. },
  59063. [
  59064. {
  59065. name: "Normal",
  59066. height: math.unit(8 + 9/12, "feet"),
  59067. default: true
  59068. },
  59069. {
  59070. name: "Skyline",
  59071. height: math.unit(845, "feet")
  59072. },
  59073. {
  59074. name: "Orbital",
  59075. height: math.unit(93000, "miles")
  59076. },
  59077. {
  59078. name: "Constellation",
  59079. height: math.unit(27000, "lightyears")
  59080. },
  59081. ]
  59082. ))
  59083. characterMakers.push(() => makeCharacter(
  59084. { name: "Xie Ling", species: ["irthos"], tags: ["anthro"] },
  59085. {
  59086. side: {
  59087. height: math.unit(1.8, "meters"),
  59088. weight: math.unit(120, "kg"),
  59089. name: "Side",
  59090. image: {
  59091. source: "./media/characters/xie-ling/side.svg",
  59092. extra: 646/574,
  59093. bottom: 44/690
  59094. }
  59095. },
  59096. },
  59097. [
  59098. {
  59099. name: "Tiny",
  59100. height: math.unit(1.80, "meters")
  59101. },
  59102. {
  59103. name: "Small",
  59104. height: math.unit(6, "meters")
  59105. },
  59106. {
  59107. name: "Medium",
  59108. height: math.unit(15, "meters")
  59109. },
  59110. {
  59111. name: "Normal",
  59112. height: math.unit(30, "meters"),
  59113. default: true
  59114. },
  59115. {
  59116. name: "Above Normal",
  59117. height: math.unit(60, "meters")
  59118. },
  59119. {
  59120. name: "Big",
  59121. height: math.unit(220, "meters")
  59122. },
  59123. {
  59124. name: "Giant",
  59125. height: math.unit(2.2, "km")
  59126. },
  59127. {
  59128. name: "Macro",
  59129. height: math.unit(25, "km")
  59130. },
  59131. {
  59132. name: "Mega Macro",
  59133. height: math.unit(350, "km")
  59134. },
  59135. {
  59136. name: "Mega Macro+",
  59137. height: math.unit(5000, "km")
  59138. },
  59139. {
  59140. name: "Goddess",
  59141. height: math.unit(3, "multiverses")
  59142. },
  59143. ]
  59144. ))
  59145. characterMakers.push(() => makeCharacter(
  59146. { name: "Sune Nemeruva", species: ["furred-dragon"], tags: ["anthro"] },
  59147. {
  59148. frontSfw: {
  59149. height: math.unit(5 + 11/12, "feet"),
  59150. weight: math.unit(210, "lb"),
  59151. name: "Front",
  59152. image: {
  59153. source: "./media/characters/sune-nemeruva/front-sfw.svg",
  59154. extra: 1928/1821,
  59155. bottom: 45/1973
  59156. }
  59157. },
  59158. backSfw: {
  59159. height: math.unit(5 + 11/12, "feet"),
  59160. weight: math.unit(210, "lb"),
  59161. name: "Back",
  59162. image: {
  59163. source: "./media/characters/sune-nemeruva/back-sfw.svg",
  59164. extra: 1920/1813,
  59165. bottom: 34/1954
  59166. }
  59167. },
  59168. frontNsfw: {
  59169. height: math.unit(5 + 11/12, "feet"),
  59170. weight: math.unit(210, "lb"),
  59171. name: "Front (NSFW)",
  59172. image: {
  59173. source: "./media/characters/sune-nemeruva/front-nsfw.svg",
  59174. extra: 1928/1821,
  59175. bottom: 45/1973
  59176. }
  59177. },
  59178. backNsfw: {
  59179. height: math.unit(5 + 11/12, "feet"),
  59180. weight: math.unit(210, "lb"),
  59181. name: "Back (NSFW)",
  59182. image: {
  59183. source: "./media/characters/sune-nemeruva/back-nsfw.svg",
  59184. extra: 1920/1813,
  59185. bottom: 34/1954
  59186. }
  59187. },
  59188. },
  59189. [
  59190. {
  59191. name: "Normal",
  59192. height: math.unit(5 + 11/12, "feet"),
  59193. default: true
  59194. },
  59195. {
  59196. name: "Goddess",
  59197. height: math.unit(20 + 3/12, "feet")
  59198. },
  59199. {
  59200. name: "Breaker of Man",
  59201. height: math.unit(329 + 9/12, "feet")
  59202. },
  59203. {
  59204. name: "Solar Justice",
  59205. height: math.unit(0.6, "solarradii")
  59206. },
  59207. {
  59208. name: "She Who Judges",
  59209. height: math.unit(1, "universe")
  59210. },
  59211. ]
  59212. ))
  59213. characterMakers.push(() => makeCharacter(
  59214. { name: "Managarmr", species: ["dragon", "deity"], tags: ["anthro"] },
  59215. {
  59216. casual_front: {
  59217. height: math.unit(6 + 1/12, "feet"),
  59218. weight: math.unit(190, "lb"),
  59219. preyCapacity: math.unit(1, "people"),
  59220. name: "Front",
  59221. image: {
  59222. source: "./media/characters/managarmr/casual-front.svg",
  59223. extra: 411/381,
  59224. bottom: 15/426
  59225. },
  59226. extraAttributes: {
  59227. "pawSize": {
  59228. name: "Paw Size",
  59229. power: 1,
  59230. type: "length",
  59231. base: math.unit(0.2, "meters")
  59232. },
  59233. },
  59234. form: "casual",
  59235. },
  59236. casual_back: {
  59237. height: math.unit(6 + 1/12, "feet"),
  59238. weight: math.unit(190, "lb"),
  59239. preyCapacity: math.unit(1, "people"),
  59240. name: "Back",
  59241. image: {
  59242. source: "./media/characters/managarmr/casual-back.svg",
  59243. extra: 413/383,
  59244. bottom: 13/426
  59245. },
  59246. extraAttributes: {
  59247. "pawSize": {
  59248. name: "Paw Size",
  59249. power: 1,
  59250. type: "length",
  59251. base: math.unit(0.2, "meters")
  59252. },
  59253. },
  59254. form: "casual",
  59255. },
  59256. base_front: {
  59257. height: math.unit(7, "feet"),
  59258. weight: math.unit(210, "lb"),
  59259. preyCapacity: math.unit(2, "people"),
  59260. name: "Front",
  59261. image: {
  59262. source: "./media/characters/managarmr/base-front.svg",
  59263. extra: 580/485,
  59264. bottom: 32/612
  59265. },
  59266. extraAttributes: {
  59267. "wingspan": {
  59268. name: "Wingspan",
  59269. power: 1,
  59270. type: "length",
  59271. base: math.unit(4, "meters")
  59272. },
  59273. "pawSize": {
  59274. name: "Paw Size",
  59275. power: 1,
  59276. type: "length",
  59277. base: math.unit(0.2, "meters")
  59278. },
  59279. },
  59280. form: "base",
  59281. },
  59282. "true-divine_front": {
  59283. height: math.unit(40, "feet"),
  59284. weight: math.unit(39000, "lb"),
  59285. preyCapacity: math.unit(375, "people"),
  59286. name: "Front",
  59287. image: {
  59288. source: "./media/characters/managarmr/true-divine-front.svg",
  59289. extra: 725/573,
  59290. bottom: 120/845
  59291. },
  59292. extraAttributes: {
  59293. "wingspan": {
  59294. name: "Wingspan",
  59295. power: 1,
  59296. type: "length",
  59297. base: math.unit(20, "meters")
  59298. },
  59299. "pawSize": {
  59300. name: "Paw Size",
  59301. power: 1,
  59302. type: "length",
  59303. base: math.unit(1.5, "meters")
  59304. },
  59305. },
  59306. form: "true-divine",
  59307. },
  59308. },
  59309. [
  59310. {
  59311. name: "Normal",
  59312. height: math.unit(6 + 1/12, "feet"),
  59313. form: "casual",
  59314. default: true
  59315. },
  59316. {
  59317. name: "Normal",
  59318. height: math.unit(7, "feet"),
  59319. form: "base",
  59320. default: true
  59321. },
  59322. ],
  59323. {
  59324. "casual": {
  59325. name: "Casual",
  59326. default: true
  59327. },
  59328. "base": {
  59329. name: "Base",
  59330. },
  59331. "true-divine": {
  59332. name: "True Divine",
  59333. },
  59334. }
  59335. ))
  59336. characterMakers.push(() => makeCharacter(
  59337. { name: "Mystra", species: ["sergal", "deity"], tags: ["anthro"] },
  59338. {
  59339. front: {
  59340. height: math.unit(1.8, "meters"),
  59341. weight: math.unit(110, "kg"),
  59342. name: "Front",
  59343. image: {
  59344. source: "./media/characters/mystra/front.svg",
  59345. extra: 529/442,
  59346. bottom: 31/560
  59347. }
  59348. },
  59349. frontLewd: {
  59350. height: math.unit(1.8, "meters"),
  59351. weight: math.unit(110, "kg"),
  59352. name: "Front (Lewd)",
  59353. image: {
  59354. source: "./media/characters/mystra/front-lewd.svg",
  59355. extra: 529/442,
  59356. bottom: 31/560
  59357. }
  59358. },
  59359. head: {
  59360. height: math.unit(1.63, "feet"),
  59361. name: "Head",
  59362. image: {
  59363. source: "./media/characters/mystra/head.svg"
  59364. }
  59365. },
  59366. paw: {
  59367. height: math.unit(1.9, "feet"),
  59368. name: "Paw",
  59369. image: {
  59370. source: "./media/characters/mystra/paw.svg"
  59371. }
  59372. },
  59373. },
  59374. [
  59375. {
  59376. name: "Incognito",
  59377. height: math.unit(2.3, "meters")
  59378. },
  59379. {
  59380. name: "Small Macro",
  59381. height: math.unit(300, "meters")
  59382. },
  59383. {
  59384. name: "Small Mega",
  59385. height: math.unit(2, "km")
  59386. },
  59387. {
  59388. name: "Mega",
  59389. height: math.unit(30, "km")
  59390. },
  59391. {
  59392. name: "Small Giga",
  59393. height: math.unit(100, "km")
  59394. },
  59395. {
  59396. name: "Giga",
  59397. height: math.unit(1000, "km"),
  59398. default: true
  59399. },
  59400. {
  59401. name: "Continental",
  59402. height: math.unit(5000, "km")
  59403. },
  59404. {
  59405. name: "Terra",
  59406. height: math.unit(20000, "km")
  59407. },
  59408. {
  59409. name: "Solar",
  59410. height: math.unit(2e6, "km")
  59411. },
  59412. {
  59413. name: "Galactic",
  59414. height: math.unit(528502, "lightyears")
  59415. },
  59416. {
  59417. name: "Universal",
  59418. height: math.unit(20, "universes")
  59419. },
  59420. ]
  59421. ))
  59422. characterMakers.push(() => makeCharacter(
  59423. { name: "Caleb", species: ["lion", "cobra", "dragon", "chimera", "deity"], tags: ["anthro"] },
  59424. {
  59425. front: {
  59426. height: math.unit(2, "meters"),
  59427. weight: math.unit(140, "kg"),
  59428. name: "Front",
  59429. image: {
  59430. source: "./media/characters/caleb/front.svg",
  59431. extra: 873/817,
  59432. bottom: 47/920
  59433. }
  59434. },
  59435. back: {
  59436. height: math.unit(2, "meters"),
  59437. weight: math.unit(140, "kg"),
  59438. name: "Back",
  59439. image: {
  59440. source: "./media/characters/caleb/back.svg",
  59441. extra: 877/828,
  59442. bottom: 24/901
  59443. }
  59444. },
  59445. snakeTail: {
  59446. height: math.unit(1.44, "feet"),
  59447. name: "Snake Tail",
  59448. image: {
  59449. source: "./media/characters/caleb/snake-tail.svg"
  59450. }
  59451. },
  59452. dick: {
  59453. height: math.unit(2.6, "feet"),
  59454. name: "Dick",
  59455. image: {
  59456. source: "./media/characters/caleb/dick.svg"
  59457. }
  59458. },
  59459. },
  59460. [
  59461. {
  59462. name: "Incognito",
  59463. height: math.unit(3, "meters")
  59464. },
  59465. {
  59466. name: "Home Size",
  59467. height: math.unit(200, "meters"),
  59468. default: true
  59469. },
  59470. {
  59471. name: "Macro",
  59472. height: math.unit(500, "meters")
  59473. },
  59474. {
  59475. name: "Big Macro",
  59476. height: math.unit(5, "km")
  59477. },
  59478. {
  59479. name: "Giga",
  59480. height: math.unit(250, "km")
  59481. },
  59482. {
  59483. name: "Giga+",
  59484. height: math.unit(5000, "km")
  59485. },
  59486. {
  59487. name: "Small Terra",
  59488. height: math.unit(35e3, "km")
  59489. },
  59490. {
  59491. name: "Terra",
  59492. height: math.unit(2e6, "km")
  59493. },
  59494. {
  59495. name: "Terra+",
  59496. height: math.unit(1.5e6, "km")
  59497. },
  59498. ]
  59499. ))
  59500. characterMakers.push(() => makeCharacter(
  59501. { name: "Gilirian", species: ["giraffe", "zebra", "deity"], tags: ["anthro"] },
  59502. {
  59503. front: {
  59504. height: math.unit(2, "meters"),
  59505. weight: math.unit(120, "kg"),
  59506. name: "Front",
  59507. image: {
  59508. source: "./media/characters/gilirian/front.svg",
  59509. extra: 805/737,
  59510. bottom: 13/818
  59511. }
  59512. },
  59513. side: {
  59514. height: math.unit(2, "meters"),
  59515. weight: math.unit(120, "kg"),
  59516. name: "Side",
  59517. image: {
  59518. source: "./media/characters/gilirian/side.svg",
  59519. extra: 810/746,
  59520. bottom: 6/816
  59521. }
  59522. },
  59523. back: {
  59524. height: math.unit(2, "meters"),
  59525. weight: math.unit(120, "kg"),
  59526. name: "Back",
  59527. image: {
  59528. source: "./media/characters/gilirian/back.svg",
  59529. extra: 815/745,
  59530. bottom: 15/830
  59531. }
  59532. },
  59533. frontNsfw: {
  59534. height: math.unit(2, "meters"),
  59535. weight: math.unit(120, "kg"),
  59536. name: "Front (NSFW)",
  59537. image: {
  59538. source: "./media/characters/gilirian/front-nsfw.svg",
  59539. extra: 805/737,
  59540. bottom: 13/818
  59541. }
  59542. },
  59543. sideNsfw: {
  59544. height: math.unit(2, "meters"),
  59545. weight: math.unit(120, "kg"),
  59546. name: "Side (NSFW)",
  59547. image: {
  59548. source: "./media/characters/gilirian/side-nsfw.svg",
  59549. extra: 810/746,
  59550. bottom: 6/816
  59551. }
  59552. },
  59553. },
  59554. [
  59555. {
  59556. name: "Incognito",
  59557. height: math.unit(2, "meters"),
  59558. default: true
  59559. },
  59560. {
  59561. name: "Macro",
  59562. height: math.unit(250, "meters")
  59563. },
  59564. {
  59565. name: "Big Macro",
  59566. height: math.unit(1500, "meters")
  59567. },
  59568. {
  59569. name: "Mega",
  59570. height: math.unit(40, "km")
  59571. },
  59572. {
  59573. name: "Giga",
  59574. height: math.unit(300, "km")
  59575. },
  59576. {
  59577. name: "Extra Giga",
  59578. height: math.unit(5000, "km")
  59579. },
  59580. {
  59581. name: "Small Terra",
  59582. height: math.unit(10e3, "km")
  59583. },
  59584. {
  59585. name: "Terra",
  59586. height: math.unit(3e5, "km")
  59587. },
  59588. {
  59589. name: "Galactic",
  59590. height: math.unit(369950, "lightyears")
  59591. },
  59592. ]
  59593. ))
  59594. characterMakers.push(() => makeCharacter(
  59595. { name: "Tarken", species: ["t-rex", "kaiju", "deity"], tags: ["anthro"] },
  59596. {
  59597. front: {
  59598. height: math.unit(2.5, "meters"),
  59599. weight: math.unit(230, "lb"),
  59600. name: "Front",
  59601. image: {
  59602. source: "./media/characters/tarken/front.svg",
  59603. extra: 764/720,
  59604. bottom: 49/813
  59605. }
  59606. },
  59607. back: {
  59608. height: math.unit(2.5, "meters"),
  59609. weight: math.unit(230, "lb"),
  59610. name: "Back",
  59611. image: {
  59612. source: "./media/characters/tarken/back.svg",
  59613. extra: 756/720,
  59614. bottom: 35/791
  59615. }
  59616. },
  59617. frontNsfw: {
  59618. height: math.unit(2.5, "meters"),
  59619. weight: math.unit(230, "lb"),
  59620. name: "Front (NSFW)",
  59621. image: {
  59622. source: "./media/characters/tarken/front-nsfw.svg",
  59623. extra: 764/720,
  59624. bottom: 49/813
  59625. }
  59626. },
  59627. backNsfw: {
  59628. height: math.unit(2.5, "meters"),
  59629. weight: math.unit(230, "lb"),
  59630. name: "Back (NSFW)",
  59631. image: {
  59632. source: "./media/characters/tarken/back-nsfw.svg",
  59633. extra: 756/720,
  59634. bottom: 35/791
  59635. }
  59636. },
  59637. head: {
  59638. height: math.unit(2.22, "feet"),
  59639. name: "Head",
  59640. image: {
  59641. source: "./media/characters/tarken/head.svg"
  59642. }
  59643. },
  59644. tail: {
  59645. height: math.unit(5.25, "feet"),
  59646. name: "Tail",
  59647. image: {
  59648. source: "./media/characters/tarken/tail.svg"
  59649. }
  59650. },
  59651. dick: {
  59652. height: math.unit(1.95, "feet"),
  59653. name: "Dick",
  59654. image: {
  59655. source: "./media/characters/tarken/dick.svg"
  59656. }
  59657. },
  59658. hand: {
  59659. height: math.unit(1.78, "feet"),
  59660. name: "Hand",
  59661. image: {
  59662. source: "./media/characters/tarken/hand.svg"
  59663. }
  59664. },
  59665. beam: {
  59666. height: math.unit(1.5, "feet"),
  59667. name: "Beam",
  59668. image: {
  59669. source: "./media/characters/tarken/beam.svg"
  59670. }
  59671. },
  59672. },
  59673. [
  59674. {
  59675. name: "Original Size",
  59676. height: math.unit(2.5, "meters")
  59677. },
  59678. {
  59679. name: "Macro",
  59680. height: math.unit(150, "meters"),
  59681. default: true
  59682. },
  59683. {
  59684. name: "Macro+",
  59685. height: math.unit(300, "meters")
  59686. },
  59687. {
  59688. name: "Mega",
  59689. height: math.unit(2, "km")
  59690. },
  59691. {
  59692. name: "Mega+",
  59693. height: math.unit(35, "km")
  59694. },
  59695.  {
  59696. name: "Mega++",
  59697. height: math.unit(60, "km")
  59698. },
  59699. {
  59700. name: "Giga",
  59701. height: math.unit(200, "km")
  59702. },
  59703. {
  59704. name: "Giga+",
  59705. height: math.unit(2500, "km")
  59706. },
  59707. {
  59708. name: "Giga++",
  59709. height: math.unit(6600, "km")
  59710. },
  59711. {
  59712. name: "Terra",
  59713. height: math.unit(20000, "km")
  59714. },
  59715. {
  59716. name: "Terra+",
  59717. height: math.unit(300000, "km")
  59718. },
  59719. ]
  59720. ))
  59721. characterMakers.push(() => makeCharacter(
  59722. { name: "Otreus", species: ["magpie", "hippogriff", "deity"], tags: ["anthro"] },
  59723. {
  59724. magpie_dressed: {
  59725. height: math.unit(1.7, "meters"),
  59726. weight: math.unit(70, "kg"),
  59727. name: "Dressed",
  59728. image: {
  59729. source: "./media/characters/otreus/magpie-dressed.svg",
  59730. extra: 691/672,
  59731. bottom: 116/807
  59732. },
  59733. form: "magpie",
  59734. default: true
  59735. },
  59736. magpie_nude: {
  59737. height: math.unit(1.7, "meters"),
  59738. weight: math.unit(70, "kg"),
  59739. name: "Nude",
  59740. image: {
  59741. source: "./media/characters/otreus/magpie-nude.svg",
  59742. extra: 691/672,
  59743. bottom: 116/807
  59744. },
  59745. form: "magpie",
  59746. },
  59747. magpie_dressedLewd: {
  59748. height: math.unit(1.7, "meters"),
  59749. weight: math.unit(70, "kg"),
  59750. name: "Dressed (Lewd)",
  59751. image: {
  59752. source: "./media/characters/otreus/magpie-dressed-lewd.svg",
  59753. extra: 691/672,
  59754. bottom: 116/807
  59755. },
  59756. form: "magpie",
  59757. },
  59758. magpie_nudeLewd: {
  59759. height: math.unit(1.7, "meters"),
  59760. weight: math.unit(70, "kg"),
  59761. name: "Nude (Lewd)",
  59762. image: {
  59763. source: "./media/characters/otreus/magpie-nude-lewd.svg",
  59764. extra: 691/672,
  59765. bottom: 116/807
  59766. },
  59767. form: "magpie",
  59768. },
  59769. magpie_leftFoot: {
  59770. height: math.unit(1.58, "feet"),
  59771. name: "Left Foot",
  59772. image: {
  59773. source: "./media/characters/otreus/magpie-left-foot.svg"
  59774. },
  59775. form: "magpie",
  59776. },
  59777. magpie_rightFoot: {
  59778. height: math.unit(1.58, "feet"),
  59779. name: "Right Foot",
  59780. image: {
  59781. source: "./media/characters/otreus/magpie-right-foot.svg"
  59782. },
  59783. form: "magpie",
  59784. },
  59785. magpie_wingspan: {
  59786. height: math.unit(2, "meters"),
  59787. weight: math.unit(70, "kg"),
  59788. name: "Wingspan",
  59789. image: {
  59790. source: "./media/characters/otreus/magpie-wingspan.svg"
  59791. },
  59792. extraAttributes: {
  59793. "wingspan": {
  59794. name: "Wingspan",
  59795. power: 1,
  59796. type: "length",
  59797. base: math.unit(3.35, "meters")
  59798. },
  59799. },
  59800. form: "magpie",
  59801. },
  59802. hippogriff_dressed: {
  59803. height: math.unit(1.7, "meters"),
  59804. weight: math.unit(70, "kg"),
  59805. name: "Dressed",
  59806. image: {
  59807. source: "./media/characters/otreus/hippogriff-dressed.svg",
  59808. extra: 710/689,
  59809. bottom: 67/777
  59810. },
  59811. form: "hippogriff",
  59812. default: true
  59813. },
  59814. hippogriff_nude: {
  59815. height: math.unit(1.7, "meters"),
  59816. weight: math.unit(70, "kg"),
  59817. name: "Nude",
  59818. image: {
  59819. source: "./media/characters/otreus/hippogriff-nude.svg",
  59820. extra: 710/689,
  59821. bottom: 67/777
  59822. },
  59823. form: "hippogriff",
  59824. },
  59825. hippogriff_dressedLewd: {
  59826. height: math.unit(1.7, "meters"),
  59827. weight: math.unit(70, "kg"),
  59828. name: "Dressed (Lewd)",
  59829. image: {
  59830. source: "./media/characters/otreus/hippogriff-dressed-lewd.svg",
  59831. extra: 710/689,
  59832. bottom: 67/777
  59833. },
  59834. form: "hippogriff",
  59835. },
  59836. hippogriff_nudeLewd: {
  59837. height: math.unit(1.7, "meters"),
  59838. weight: math.unit(70, "kg"),
  59839. name: "Nude (Lewd)",
  59840. image: {
  59841. source: "./media/characters/otreus/hippogriff-nude-lewd.svg",
  59842. extra: 710/689,
  59843. bottom: 67/777
  59844. },
  59845. form: "hippogriff",
  59846. },
  59847. },
  59848. [
  59849. {
  59850. name: "Original Size",
  59851. height: math.unit(1.7, "meters"),
  59852. allForms: true
  59853. },
  59854. {
  59855. name: "Incognito Size",
  59856. height: math.unit(2, "meters"),
  59857. allForms: true
  59858. },
  59859. {
  59860. name: "Mega",
  59861. height: math.unit(2, "km"),
  59862. allForms: true
  59863. },
  59864. {
  59865. name: "Mega+",
  59866. height: math.unit(40, "km"),
  59867. allForms: true
  59868. },
  59869. {
  59870. name: "Giga",
  59871. height: math.unit(250, "km"),
  59872. allForms: true
  59873. },
  59874. {
  59875. name: "Giga+",
  59876. height: math.unit(3000, "km"),
  59877. allForms: true
  59878. },
  59879. {
  59880. name: "Terra",
  59881. height: math.unit(20000, "km"),
  59882. allForms: true
  59883. },
  59884. {
  59885. name: "Solar (Home Size)",
  59886. height: math.unit(3e6, "km"),
  59887. allForms: true,
  59888. default: true
  59889. },
  59890. ],
  59891. {
  59892. "magpie": {
  59893. name: "Magpie",
  59894. default: true
  59895. },
  59896. "hippogriff": {
  59897. name: "Hippogriff",
  59898. },
  59899. }
  59900. ))
  59901. characterMakers.push(() => makeCharacter(
  59902. { name: "Thalia", species: ["flying-fox", "fox", "deity"], tags: ["anthro"] },
  59903. {
  59904. frontDressed: {
  59905. height: math.unit(1.8, "meters"),
  59906. weight: math.unit(90, "kg"),
  59907. name: "Front (Dressed)",
  59908. image: {
  59909. source: "./media/characters/thalia/front-dressed.svg",
  59910. extra: 478/402,
  59911. bottom: 55/533
  59912. }
  59913. },
  59914. backDressed: {
  59915. height: math.unit(1.8, "meters"),
  59916. weight: math.unit(90, "kg"),
  59917. name: "Back (Dressed)",
  59918. image: {
  59919. source: "./media/characters/thalia/back-dressed.svg",
  59920. extra: 500/424,
  59921. bottom: 15/515
  59922. }
  59923. },
  59924. frontNude: {
  59925. height: math.unit(1.8, "meters"),
  59926. weight: math.unit(90, "kg"),
  59927. name: "Front (Nude)",
  59928. image: {
  59929. source: "./media/characters/thalia/front-nude.svg",
  59930. extra: 478/402,
  59931. bottom: 55/533
  59932. }
  59933. },
  59934. backNude: {
  59935. height: math.unit(1.8, "meters"),
  59936. weight: math.unit(90, "kg"),
  59937. name: "Back (Nude)",
  59938. image: {
  59939. source: "./media/characters/thalia/back-nude.svg",
  59940. extra: 500/424,
  59941. bottom: 15/515
  59942. }
  59943. },
  59944. },
  59945. [
  59946. {
  59947. name: "Incognito",
  59948. height: math.unit(3, "meters")
  59949. },
  59950. {
  59951. name: "Macro",
  59952. height: math.unit(500, "meters")
  59953. },
  59954. {
  59955. name: "Mega",
  59956. height: math.unit(5, "km")
  59957. },
  59958. {
  59959. name: "Mega+",
  59960. height: math.unit(30, "km")
  59961. },
  59962. {
  59963. name: "Giga",
  59964. height: math.unit(350, "km")
  59965. },
  59966. {
  59967. name: "Giga+",
  59968. height: math.unit(4000, "km")
  59969. },
  59970. {
  59971. name: "Terra",
  59972. height: math.unit(35000, "km")
  59973. },
  59974. {
  59975. name: "Original Size",
  59976. height: math.unit(130000, "km")
  59977. },
  59978. {
  59979. name: "Solar (Home Size)",
  59980. height: math.unit(4e6, "km"),
  59981. default: true
  59982. },
  59983. ]
  59984. ))
  59985. characterMakers.push(() => makeCharacter(
  59986. { name: "Shango", species: ["african-wild-dog", "deity"], tags: ["anthro"] },
  59987. {
  59988. front: {
  59989. height: math.unit(1.8, "meters"),
  59990. weight: math.unit(95, "kg"),
  59991. name: "Front",
  59992. image: {
  59993. source: "./media/characters/shango/front.svg",
  59994. extra: 1925/1774,
  59995. bottom: 67/1992
  59996. }
  59997. },
  59998. back: {
  59999. height: math.unit(1.8, "meters"),
  60000. weight: math.unit(95, "kg"),
  60001. name: "Back",
  60002. image: {
  60003. source: "./media/characters/shango/back.svg",
  60004. extra: 1915/1766,
  60005. bottom: 52/1967
  60006. }
  60007. },
  60008. frontLewd: {
  60009. height: math.unit(1.8, "meters"),
  60010. weight: math.unit(95, "kg"),
  60011. name: "Front (Lewd)",
  60012. image: {
  60013. source: "./media/characters/shango/front-lewd.svg",
  60014. extra: 1925/1774,
  60015. bottom: 67/1992
  60016. }
  60017. },
  60018. backLewd: {
  60019. height: math.unit(1.8, "meters"),
  60020. weight: math.unit(95, "kg"),
  60021. name: "Back (Lewd)",
  60022. image: {
  60023. source: "./media/characters/shango/back-lewd.svg",
  60024. extra: 1915/1766,
  60025. bottom: 52/1967
  60026. }
  60027. },
  60028. maw: {
  60029. height: math.unit(1.64, "feet"),
  60030. name: "Maw",
  60031. image: {
  60032. source: "./media/characters/shango/maw.svg"
  60033. }
  60034. },
  60035. dick: {
  60036. height: math.unit(2.14, "feet"),
  60037. name: "Dick",
  60038. image: {
  60039. source: "./media/characters/shango/dick.svg"
  60040. }
  60041. },
  60042. },
  60043. [
  60044. {
  60045. name: "Incognito",
  60046. height: math.unit(1.8, "meters")
  60047. },
  60048. {
  60049. name: "Home Size",
  60050. height: math.unit(60, "meters"),
  60051. default: true
  60052. },
  60053. {
  60054. name: "Macro",
  60055. height: math.unit(450, "meters")
  60056. },
  60057. {
  60058. name: "Mega",
  60059. height: math.unit(6, "km")
  60060. },
  60061. {
  60062. name: "Mega+",
  60063. height: math.unit(35, "km")
  60064. },
  60065. {
  60066. name: "Giga",
  60067. height: math.unit(500, "km")
  60068. },
  60069. {
  60070. name: "Giga+",
  60071. height: math.unit(5000, "km")
  60072. },
  60073. {
  60074. name: "Terra",
  60075. height: math.unit(60000, "km")
  60076. },
  60077. {
  60078. name: "Terra+",
  60079. height: math.unit(400000, "km")
  60080. },
  60081. ]
  60082. ))
  60083. characterMakers.push(() => makeCharacter(
  60084. { name: "Osiris (Gryphon)", species: ["gryphon", "snow-leopard", "peregrine-falcon", "deity"], tags: ["anthro"] },
  60085. {
  60086. front: {
  60087. height: math.unit(2, "meters"),
  60088. weight: math.unit(95, "kg"),
  60089. name: "Front",
  60090. image: {
  60091. source: "./media/characters/osiris-gryphon/front.svg",
  60092. extra: 1508/1313,
  60093. bottom: 87/1595
  60094. }
  60095. },
  60096. back: {
  60097. height: math.unit(2, "meters"),
  60098. weight: math.unit(95, "kg"),
  60099. name: "Back",
  60100. image: {
  60101. source: "./media/characters/osiris-gryphon/back.svg",
  60102. extra: 1436/1309,
  60103. bottom: 64/1500
  60104. }
  60105. },
  60106. frontLewd: {
  60107. height: math.unit(2, "meters"),
  60108. weight: math.unit(95, "kg"),
  60109. name: "Front-lewd",
  60110. image: {
  60111. source: "./media/characters/osiris-gryphon/front-lewd.svg",
  60112. extra: 1508/1313,
  60113. bottom: 87/1595
  60114. }
  60115. },
  60116. wing: {
  60117. height: math.unit(6.3333, "feet"),
  60118. name: "Wing",
  60119. image: {
  60120. source: "./media/characters/osiris-gryphon/wing.svg"
  60121. }
  60122. },
  60123. },
  60124. [
  60125. {
  60126. name: "Incognito",
  60127. height: math.unit(2, "meters")
  60128. },
  60129. {
  60130. name: "Home Size",
  60131. height: math.unit(30, "meters"),
  60132. default: true
  60133. },
  60134. {
  60135. name: "Macro",
  60136. height: math.unit(100, "meters")
  60137. },
  60138. {
  60139. name: "Macro+",
  60140. height: math.unit(350, "meters")
  60141. },
  60142. {
  60143. name: "Mega",
  60144. height: math.unit(40, "km")
  60145. },
  60146. {
  60147. name: "Giga",
  60148. height: math.unit(300, "km")
  60149. },
  60150. {
  60151. name: "Giga+",
  60152. height: math.unit(2000, "km")
  60153. },
  60154. {
  60155. name: "Terra",
  60156. height: math.unit(30000, "km")
  60157. },
  60158. ]
  60159. ))
  60160. characterMakers.push(() => makeCharacter(
  60161. { name: "Atlas (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  60162. {
  60163. front: {
  60164. height: math.unit(2.5, "meters"),
  60165. weight: math.unit(200, "kg"),
  60166. name: "Front",
  60167. image: {
  60168. source: "./media/characters/atlas-dragon/front.svg",
  60169. extra: 745/462,
  60170. bottom: 36/781
  60171. }
  60172. },
  60173. back: {
  60174. height: math.unit(2.5, "meters"),
  60175. weight: math.unit(200, "kg"),
  60176. name: "Back",
  60177. image: {
  60178. source: "./media/characters/atlas-dragon/back.svg",
  60179. extra: 848/822,
  60180. bottom: 57/905
  60181. }
  60182. },
  60183. frontLewd: {
  60184. height: math.unit(2.5, "meters"),
  60185. weight: math.unit(200, "kg"),
  60186. name: "Front (Lewd)",
  60187. image: {
  60188. source: "./media/characters/atlas-dragon/front-lewd.svg",
  60189. extra: 745/462,
  60190. bottom: 36/781
  60191. }
  60192. },
  60193. backLewd: {
  60194. height: math.unit(2.5, "meters"),
  60195. weight: math.unit(200, "kg"),
  60196. name: "Back (Lewd)",
  60197. image: {
  60198. source: "./media/characters/atlas-dragon/back-lewd.svg",
  60199. extra: 848/822,
  60200. bottom: 57/905
  60201. }
  60202. },
  60203. },
  60204. [
  60205. {
  60206. name: "Incognito",
  60207. height: math.unit(2.5, "meters")
  60208. },
  60209. {
  60210. name: "Small Macro",
  60211. height: math.unit(50, "meters")
  60212. },
  60213. {
  60214. name: "Macro",
  60215. height: math.unit(350, "meters")
  60216. },
  60217. {
  60218. name: "Mega",
  60219. height: math.unit(5.5, "kilometers")
  60220. },
  60221. {
  60222. name: "Mega+",
  60223. height: math.unit(50, "km")
  60224. },
  60225. {
  60226. name: "Giga",
  60227. height: math.unit(350, "km")
  60228. },
  60229. {
  60230. name: "Giga+",
  60231. height: math.unit(2000, "km")
  60232. },
  60233. {
  60234. name: "Giga++",
  60235. height: math.unit(6500, "km")
  60236. },
  60237. {
  60238. name: "Terra",
  60239. height: math.unit(30000, "km")
  60240. },
  60241. {
  60242. name: "Terra+",
  60243. height: math.unit(250000, "km")
  60244. },
  60245. {
  60246. name: "True Size",
  60247. height: math.unit(100, "multiverses"),
  60248. default: true
  60249. },
  60250. ]
  60251. ))
  60252. characterMakers.push(() => makeCharacter(
  60253. { name: "Chey", species: ["coyote", "deity"], tags: ["anthro"] },
  60254. {
  60255. front: {
  60256. height: math.unit(1.8, "m"),
  60257. weight: math.unit(120, "kg"),
  60258. name: "Front",
  60259. image: {
  60260. source: "./media/characters/chey/front.svg",
  60261. extra: 1359/1270,
  60262. bottom: 18/1377
  60263. }
  60264. },
  60265. arm: {
  60266. height: math.unit(2.05, "feet"),
  60267. name: "Arm",
  60268. image: {
  60269. source: "./media/characters/chey/arm.svg"
  60270. }
  60271. },
  60272. head: {
  60273. height: math.unit(1.89, "feet"),
  60274. name: "Head",
  60275. image: {
  60276. source: "./media/characters/chey/head.svg"
  60277. }
  60278. },
  60279. },
  60280. [
  60281. {
  60282. name: "Original Size",
  60283. height: math.unit(5, "cm")
  60284. },
  60285. {
  60286. name: "Incognito Size",
  60287. height: math.unit(2.4, "m")
  60288. },
  60289. {
  60290. name: "Home Size",
  60291. height: math.unit(200, "meters"),
  60292. default: true
  60293. },
  60294. {
  60295. name: "Mega",
  60296. height: math.unit(2, "km")
  60297. },
  60298. {
  60299. name: "Giga (Preferred Size)",
  60300. height: math.unit(2000, "km")
  60301. },
  60302. {
  60303. name: "Giga+",
  60304. height: math.unit(6000, "km")
  60305. },
  60306. {
  60307. name: "Terra",
  60308. height: math.unit(17000, "km")
  60309. },
  60310. {
  60311. name: "Terra+",
  60312. height: math.unit(75000, "km")
  60313. },
  60314. {
  60315. name: "Terra++",
  60316. height: math.unit(225000, "km")
  60317. },
  60318. ]
  60319. ))
  60320. characterMakers.push(() => makeCharacter(
  60321. { name: "Ragnarok", species: ["suicune"], tags: ["taur"] },
  60322. {
  60323. side: {
  60324. height: math.unit(7.8, "meters"),
  60325. name: "Side",
  60326. image: {
  60327. source: "./media/characters/ragnarok/side.svg",
  60328. extra: 725/621,
  60329. bottom: 72/797
  60330. }
  60331. },
  60332. },
  60333. [
  60334. {
  60335. name: "Normal",
  60336. height: math.unit(7.8, "meters"),
  60337. default: true
  60338. },
  60339. ]
  60340. ))
  60341. characterMakers.push(() => makeCharacter(
  60342. { name: "Nima", species: ["hyena", "shark", "deity"], tags: ["anthro"] },
  60343. {
  60344. hyena_front: {
  60345. height: math.unit(2.1, "meters"),
  60346. weight: math.unit(110, "kg"),
  60347. name: "Front",
  60348. image: {
  60349. source: "./media/characters/nima/hyena-front.svg",
  60350. extra: 1904/1796,
  60351. bottom: 67/1971
  60352. },
  60353. form: "hyena",
  60354. },
  60355. hyena_back: {
  60356. height: math.unit(2.1, "meters"),
  60357. weight: math.unit(110, "kg"),
  60358. name: "Back",
  60359. image: {
  60360. source: "./media/characters/nima/hyena-back.svg",
  60361. extra: 1964/1884,
  60362. bottom: 35/1999
  60363. },
  60364. form: "hyena",
  60365. },
  60366. shark_front: {
  60367. height: math.unit(1.95, "meters"),
  60368. weight: math.unit(110, "kg"),
  60369. name: "Front",
  60370. image: {
  60371. source: "./media/characters/nima/shark-front.svg",
  60372. extra: 2238/2013,
  60373. bottom: 0/223
  60374. },
  60375. form: "shark",
  60376. },
  60377. paw: {
  60378. height: math.unit(1, "feet"),
  60379. name: "Paw",
  60380. image: {
  60381. source: "./media/characters/nima/paw.svg"
  60382. }
  60383. },
  60384. circlet: {
  60385. height: math.unit(0.3, "feet"),
  60386. name: "Circlet",
  60387. image: {
  60388. source: "./media/characters/nima/circlet.svg"
  60389. }
  60390. },
  60391. necklace: {
  60392. height: math.unit(1.2, "feet"),
  60393. name: "Necklace",
  60394. image: {
  60395. source: "./media/characters/nima/necklace.svg"
  60396. }
  60397. },
  60398. bracelet: {
  60399. height: math.unit(0.51, "feet"),
  60400. name: "Bracelet",
  60401. image: {
  60402. source: "./media/characters/nima/bracelet.svg"
  60403. }
  60404. },
  60405. armband: {
  60406. height: math.unit(1.3, "feet"),
  60407. name: "Armband",
  60408. image: {
  60409. source: "./media/characters/nima/armband.svg"
  60410. }
  60411. },
  60412. },
  60413. [
  60414. {
  60415. name: "Incognito",
  60416. height: math.unit(2.1, "meters"),
  60417. allForms: true
  60418. },
  60419. {
  60420. name: "Small Macro",
  60421. height: math.unit(50, "meters"),
  60422. allForms: true
  60423. },
  60424. {
  60425. name: "Macro",
  60426. height: math.unit(200, "meters"),
  60427. allForms: true
  60428. },
  60429. {
  60430. name: "Mega",
  60431. height: math.unit(2.5, "km"),
  60432. allForms: true
  60433. },
  60434. {
  60435. name: "Mega+",
  60436. height: math.unit(30, "km"),
  60437. allForms: true
  60438. },
  60439. {
  60440. name: "Giga (Home Size)",
  60441. height: math.unit(400, "km"),
  60442. allForms: true,
  60443. default: true
  60444. },
  60445. {
  60446. name: "Giga+",
  60447. height: math.unit(2500, "km"),
  60448. allForms: true
  60449. },
  60450. {
  60451. name: "Giga++",
  60452. height: math.unit(8000, "km"),
  60453. allForms: true
  60454. },
  60455. {
  60456. name: "Terra",
  60457. height: math.unit(20000, "km"),
  60458. allForms: true
  60459. },
  60460. {
  60461. name: "Terra+",
  60462. height: math.unit(70000, "km"),
  60463. allForms: true
  60464. },
  60465. {
  60466. name: "Terra++",
  60467. height: math.unit(600000, "km"),
  60468. allForms: true
  60469. },
  60470. {
  60471. name: "Galactic",
  60472. height: math.unit(40, "galaxies"),
  60473. allForms: true
  60474. },
  60475. {
  60476. name: "Universal",
  60477. height: math.unit(40, "universes"),
  60478. allForms: true
  60479. },
  60480. ],
  60481. {
  60482. "hyena": {
  60483. name: "Hyena",
  60484. default: true
  60485. },
  60486. "shark": {
  60487. name: "Shark",
  60488. },
  60489. }
  60490. ))
  60491. characterMakers.push(() => makeCharacter(
  60492. { name: "Adelaide", species: ["deinonychus"], tags: ["anthro", "feral"] },
  60493. {
  60494. anthro_front: {
  60495. height: math.unit(1.5, "meters"),
  60496. name: "Front",
  60497. image: {
  60498. source: "./media/characters/adelaide/anthro-front.svg",
  60499. extra: 860/783,
  60500. bottom: 60/920
  60501. },
  60502. form: "anthro",
  60503. default: true
  60504. },
  60505. hand: {
  60506. height: math.unit(0.65, "feet"),
  60507. name: "Hand",
  60508. image: {
  60509. source: "./media/characters/adelaide/hand.svg"
  60510. },
  60511. form: "anthro"
  60512. },
  60513. foot: {
  60514. height: math.unit(1.38 * 259 / 314, "feet"),
  60515. name: "Foot",
  60516. image: {
  60517. source: "./media/characters/adelaide/foot.svg",
  60518. extra: 259/259,
  60519. bottom: 55/314
  60520. },
  60521. form: "anthro"
  60522. },
  60523. feather: {
  60524. height: math.unit(0.85, "feet"),
  60525. name: "Feather",
  60526. image: {
  60527. source: "./media/characters/adelaide/feather.svg"
  60528. },
  60529. form: "anthro"
  60530. },
  60531. feral_side: {
  60532. height: math.unit(1, "meters"),
  60533. name: "Side",
  60534. image: {
  60535. source: "./media/characters/adelaide/feral-side.svg",
  60536. extra: 550/467,
  60537. bottom: 37/587
  60538. },
  60539. form: "feral",
  60540. default: true
  60541. },
  60542. feral_hand: {
  60543. height: math.unit(0.58, "feet"),
  60544. name: "Hand",
  60545. image: {
  60546. source: "./media/characters/adelaide/hand.svg"
  60547. },
  60548. form: "feral"
  60549. },
  60550. feral_foot: {
  60551. height: math.unit(1.2 * 259 / 314, "feet"),
  60552. name: "Foot",
  60553. image: {
  60554. source: "./media/characters/adelaide/foot.svg",
  60555. extra: 259/259,
  60556. bottom: 55/314
  60557. },
  60558. form: "feral"
  60559. },
  60560. feral_feather: {
  60561. height: math.unit(0.63, "feet"),
  60562. name: "Feather",
  60563. image: {
  60564. source: "./media/characters/adelaide/feather.svg"
  60565. },
  60566. form: "feral"
  60567. },
  60568. },
  60569. [
  60570. {
  60571. name: "Normal",
  60572. height: math.unit(1.5, "meters"),
  60573. form: "anthro",
  60574. default: true
  60575. },
  60576. {
  60577. name: "Normal",
  60578. height: math.unit(1, "meters"),
  60579. form: "feral",
  60580. default: true
  60581. },
  60582. ],
  60583. {
  60584. "anthro": {
  60585. name: "Anthro",
  60586. default: true
  60587. },
  60588. "feral": {
  60589. name: "Feral",
  60590. },
  60591. }
  60592. ))
  60593. characterMakers.push(() => makeCharacter(
  60594. { name: "Goa", species: ["chocobo"], tags: ["taur"] },
  60595. {
  60596. front: {
  60597. height: math.unit(2.5, "meters"),
  60598. name: "Front",
  60599. image: {
  60600. source: "./media/characters/goa/front.svg",
  60601. extra: 1109/1013,
  60602. bottom: 150/1259
  60603. }
  60604. },
  60605. },
  60606. [
  60607. {
  60608. name: "Normal",
  60609. height: math.unit(2.5, "meters"),
  60610. default: true
  60611. },
  60612. ]
  60613. ))
  60614. characterMakers.push(() => makeCharacter(
  60615. { name: "Kiki (Weavile)", species: ["weavile"], tags: ["anthro"] },
  60616. {
  60617. front: {
  60618. height: math.unit(2, "meters"),
  60619. weight: math.unit(100, "kg"),
  60620. name: "Front",
  60621. image: {
  60622. source: "./media/characters/kiki-weavile/front.svg",
  60623. extra: 357/332,
  60624. bottom: 60/417
  60625. }
  60626. },
  60627. },
  60628. [
  60629. {
  60630. name: "Normal",
  60631. height: math.unit(2, "meters"),
  60632. default: true
  60633. },
  60634. ]
  60635. ))
  60636. characterMakers.push(() => makeCharacter(
  60637. { name: "Liza", species: ["stilio"], tags: ["taur"] },
  60638. {
  60639. side: {
  60640. height: math.unit(1.6, "meters"),
  60641. name: "Side",
  60642. image: {
  60643. source: "./media/characters/liza/side.svg",
  60644. extra: 943/915,
  60645. bottom: 72/1015
  60646. }
  60647. },
  60648. },
  60649. [
  60650. {
  60651. name: "Normal",
  60652. height: math.unit(1.6, "meters"),
  60653. default: true
  60654. },
  60655. ]
  60656. ))
  60657. characterMakers.push(() => makeCharacter(
  60658. { name: "Persephone Sweetbreath", species: ["hyena", "gnoll"], tags: ["taur"] },
  60659. {
  60660. side: {
  60661. height: math.unit(2.5, "meters"),
  60662. preyCapacity: math.unit(1, "people"),
  60663. name: "Side",
  60664. image: {
  60665. source: "./media/characters/persephone-sweetbreath/side.svg",
  60666. extra: 796/700,
  60667. bottom: 44/840
  60668. }
  60669. },
  60670. sideVore: {
  60671. height: math.unit(2.5, "meters"),
  60672. preyCapacity: math.unit(1, "people"),
  60673. name: "Side (Full)",
  60674. image: {
  60675. source: "./media/characters/persephone-sweetbreath/side-vore.svg",
  60676. extra: 796/700,
  60677. bottom: 44/840
  60678. }
  60679. },
  60680. },
  60681. [
  60682. {
  60683. name: "Normal",
  60684. height: math.unit(2.5, "meters"),
  60685. default: true
  60686. },
  60687. ]
  60688. ))
  60689. characterMakers.push(() => makeCharacter(
  60690. { name: "Pierce", species: ["dragon"], tags: ["feral"] },
  60691. {
  60692. front: {
  60693. height: math.unit(32, "meters"),
  60694. name: "Front",
  60695. image: {
  60696. source: "./media/characters/pierce/front.svg",
  60697. extra: 1695/1475,
  60698. bottom: 185/1880
  60699. }
  60700. },
  60701. side: {
  60702. height: math.unit(32, "meters"),
  60703. name: "Side",
  60704. image: {
  60705. source: "./media/characters/pierce/side.svg",
  60706. extra: 974/859,
  60707. bottom: 43/1017
  60708. }
  60709. },
  60710. frontWingless: {
  60711. height: math.unit(32, "meters"),
  60712. name: "Front (Wingless)",
  60713. image: {
  60714. source: "./media/characters/pierce/front-wingless.svg",
  60715. extra: 1695/1475,
  60716. bottom: 185/1880
  60717. }
  60718. },
  60719. sideWingless: {
  60720. height: math.unit(32, "meters"),
  60721. name: "Side (Wingless)",
  60722. image: {
  60723. source: "./media/characters/pierce/side-wingless.svg",
  60724. extra: 974/859,
  60725. bottom: 43/1017
  60726. }
  60727. },
  60728. maw: {
  60729. height: math.unit(19.3, "meters"),
  60730. name: "Maw",
  60731. image: {
  60732. source: "./media/characters/pierce/maw.svg"
  60733. }
  60734. },
  60735. },
  60736. [
  60737. {
  60738. name: "Small",
  60739. height: math.unit(8.5, "meters")
  60740. },
  60741. {
  60742. name: "Normal",
  60743. height: math.unit(32, "meters"),
  60744. default: true
  60745. },
  60746. ]
  60747. ))
  60748. characterMakers.push(() => makeCharacter(
  60749. { name: "Shira", species: ["cobra", "deity", "dragon"], tags: ["anthro"] },
  60750. {
  60751. front: {
  60752. height: math.unit(2.3, "meters"),
  60753. weight: math.unit(165, "kg"),
  60754. name: "Front",
  60755. image: {
  60756. source: "./media/characters/shira/front.svg",
  60757. extra: 924/919,
  60758. bottom: 17/941
  60759. },
  60760. form: "cobra",
  60761. default: true
  60762. },
  60763. back: {
  60764. height: math.unit(2.3, "meters"),
  60765. weight: math.unit(165, "kg"),
  60766. name: "Back",
  60767. image: {
  60768. source: "./media/characters/shira/back.svg",
  60769. extra: 928/922,
  60770. bottom: 18/946
  60771. },
  60772. form: "cobra"
  60773. },
  60774. frontLewd: {
  60775. height: math.unit(2.3, "meters"),
  60776. weight: math.unit(165, "kg"),
  60777. name: "Front (Lewd)",
  60778. image: {
  60779. source: "./media/characters/shira/front-lewd.svg",
  60780. extra: 924/919,
  60781. bottom: 17/941
  60782. },
  60783. form: "cobra"
  60784. },
  60785. backLewd: {
  60786. height: math.unit(2.3, "meters"),
  60787. weight: math.unit(165, "kg"),
  60788. name: "Back (Lewd)",
  60789. image: {
  60790. source: "./media/characters/shira/back-lewd.svg",
  60791. extra: 928/922,
  60792. bottom: 18/946
  60793. },
  60794. form: "cobra"
  60795. },
  60796. maw: {
  60797. height: math.unit(1.14, "feet"),
  60798. name: "Maw",
  60799. image: {
  60800. source: "./media/characters/shira/maw.svg"
  60801. },
  60802. form: "cobra"
  60803. },
  60804. magma_front: {
  60805. height: math.unit(2.3, "meters"),
  60806. weight: math.unit(165, "kg"),
  60807. name: "Front",
  60808. image: {
  60809. source: "./media/characters/shira/magma-front.svg",
  60810. extra: 1870/1693,
  60811. bottom: 24/1894
  60812. },
  60813. form: "magma",
  60814. },
  60815. magma_back: {
  60816. height: math.unit(2.3, "meters"),
  60817. weight: math.unit(165, "kg"),
  60818. name: "Back",
  60819. image: {
  60820. source: "./media/characters/shira/magma-back.svg",
  60821. extra: 1918/1756,
  60822. bottom: 46/1964
  60823. },
  60824. form: "magma",
  60825. },
  60826. },
  60827. [
  60828. {
  60829. name: "Incognito",
  60830. height: math.unit(2.3, "meters"),
  60831. allForms: true
  60832. },
  60833. {
  60834. name: "Home Size",
  60835. height: math.unit(150, "meters"),
  60836. default: true,
  60837. allForms: true
  60838. },
  60839. {
  60840. name: "Macro",
  60841. height: math.unit(2, "km"),
  60842. allForms: true
  60843. },
  60844. {
  60845. name: "Mega",
  60846. height: math.unit(30, "km"),
  60847. allForms: true
  60848. },
  60849. {
  60850. name: "Giga",
  60851. height: math.unit(450, "km"),
  60852. allForms: true
  60853. },
  60854. {
  60855. name: "Giga+",
  60856. height: math.unit(3000, "km"),
  60857. allForms: true
  60858. },
  60859. {
  60860. name: "Giga++",
  60861. height: math.unit(6000, "km"),
  60862. allForms: true
  60863. },
  60864. {
  60865. name: "Terra",
  60866. height: math.unit(80000, "km"),
  60867. allForms: true
  60868. },
  60869. {
  60870. name: "Terra+",
  60871. height: math.unit(350000, "km"),
  60872. allForms: true
  60873. },
  60874. {
  60875. name: "Solar",
  60876. height: math.unit(1e6, "km"),
  60877. allForms: true
  60878. },
  60879. ],
  60880. {
  60881. "cobra": {
  60882. name: "Cobra",
  60883. default: true
  60884. },
  60885. "magma": {
  60886. name: "Magma Dragon",
  60887. },
  60888. }
  60889. ))
  60890. characterMakers.push(() => makeCharacter(
  60891. { name: "Daxerios", species: ["wolf", "cerberus", "deity"], tags: ["anthro"] },
  60892. {
  60893. front: {
  60894. height: math.unit(2, "meters"),
  60895. weight: math.unit(160, "kg"),
  60896. name: "Front",
  60897. image: {
  60898. source: "./media/characters/daxerios/front.svg",
  60899. extra: 1334/1277,
  60900. bottom: 45/1379
  60901. }
  60902. },
  60903. frontLewd: {
  60904. height: math.unit(2, "meters"),
  60905. weight: math.unit(160, "kg"),
  60906. name: "Front (Lewd)",
  60907. image: {
  60908. source: "./media/characters/daxerios/front-lewd.svg",
  60909. extra: 1334/1277,
  60910. bottom: 45/1379
  60911. }
  60912. },
  60913. dick: {
  60914. height: math.unit(2.35, "feet"),
  60915. name: "Dick",
  60916. image: {
  60917. source: "./media/characters/daxerios/dick.svg"
  60918. }
  60919. },
  60920. },
  60921. [
  60922. {
  60923. name: "\"Small\"",
  60924. height: math.unit(5, "meters")
  60925. },
  60926. {
  60927. name: "Original Size",
  60928. height: math.unit(500, "meters"),
  60929. default: true
  60930. },
  60931. {
  60932. name: "Mega",
  60933. height: math.unit(2, "km")
  60934. },
  60935. {
  60936. name: "Mega+",
  60937. height: math.unit(35, "km")
  60938. },
  60939. {
  60940. name: "Giga",
  60941. height: math.unit(250, "km")
  60942. },
  60943. {
  60944. name: "Giga+",
  60945. height: math.unit(3000, "km")
  60946. },
  60947. {
  60948. name: "Terra",
  60949. height: math.unit(25000, "km")
  60950. },
  60951. {
  60952. name: "Terra+",
  60953. height: math.unit(300000, "km")
  60954. },
  60955. {
  60956. name: "Solar",
  60957. height: math.unit(1e6, "km")
  60958. },
  60959. ]
  60960. ))
  60961. characterMakers.push(() => makeCharacter(
  60962. { name: "Caveat", species: ["luxray", "plush"], tags: ["anthro"] },
  60963. {
  60964. front: {
  60965. height: math.unit(8 + 4/12, "feet"),
  60966. weight: math.unit(464, "lb"),
  60967. name: "Front",
  60968. image: {
  60969. source: "./media/characters/caveat/front.svg",
  60970. extra: 1861/1678,
  60971. bottom: 40/1901
  60972. }
  60973. },
  60974. },
  60975. [
  60976. {
  60977. name: "Normal",
  60978. height: math.unit(8 + 4/12, "feet"),
  60979. default: true
  60980. },
  60981. ]
  60982. ))
  60983. characterMakers.push(() => makeCharacter(
  60984. { name: "Centbair", species: ["kardox"], tags: ["anthro"] },
  60985. {
  60986. front: {
  60987. height: math.unit(12, "feet"),
  60988. weight: math.unit(1800, "lb"),
  60989. name: "Front",
  60990. image: {
  60991. source: "./media/characters/centbair/front.svg",
  60992. extra: 781/663,
  60993. bottom: 25/806
  60994. }
  60995. },
  60996. frontNsfw: {
  60997. height: math.unit(12, "feet"),
  60998. weight: math.unit(1800, "lb"),
  60999. name: "Front (NSFW)",
  61000. image: {
  61001. source: "./media/characters/centbair/front-nsfw.svg",
  61002. extra: 781/663,
  61003. bottom: 25/806
  61004. }
  61005. },
  61006. back: {
  61007. height: math.unit(12, "feet"),
  61008. weight: math.unit(1800, "lb"),
  61009. name: "Back",
  61010. image: {
  61011. source: "./media/characters/centbair/back.svg",
  61012. extra: 808/761,
  61013. bottom: 19/827
  61014. }
  61015. },
  61016. dick: {
  61017. height: math.unit(6.5, "feet"),
  61018. name: "Dick",
  61019. image: {
  61020. source: "./media/characters/centbair/dick.svg"
  61021. }
  61022. },
  61023. slit: {
  61024. height: math.unit(3.25, "feet"),
  61025. name: "Slit",
  61026. image: {
  61027. source: "./media/characters/centbair/slit.svg"
  61028. }
  61029. },
  61030. },
  61031. [
  61032. {
  61033. name: "Normal",
  61034. height: math.unit(12, "feet"),
  61035. default: true
  61036. },
  61037. ]
  61038. ))
  61039. characterMakers.push(() => makeCharacter(
  61040. { name: "Andy", species: ["tanuki"], tags: ["anthro"] },
  61041. {
  61042. front: {
  61043. height: math.unit(5 + 7/12, "feet"),
  61044. name: "Front",
  61045. image: {
  61046. source: "./media/characters/andy/front.svg",
  61047. extra: 634/588,
  61048. bottom: 36/670
  61049. },
  61050. extraAttributes: {
  61051. "pawLength": {
  61052. name: "Paw Length",
  61053. power: 1,
  61054. type: "length",
  61055. base: math.unit(1, "feet")
  61056. },
  61057. }
  61058. },
  61059. side: {
  61060. height: math.unit(5 + 7/12, "feet"),
  61061. name: "Side",
  61062. image: {
  61063. source: "./media/characters/andy/side.svg",
  61064. extra: 641/596,
  61065. bottom: 34/675
  61066. },
  61067. extraAttributes: {
  61068. "pawLength": {
  61069. name: "Paw Length",
  61070. power: 1,
  61071. type: "length",
  61072. base: math.unit(1, "feet")
  61073. },
  61074. }
  61075. },
  61076. back: {
  61077. height: math.unit(5 + 7/12, "feet"),
  61078. name: "Back",
  61079. image: {
  61080. source: "./media/characters/andy/back.svg",
  61081. extra: 618/583,
  61082. bottom: 39/657
  61083. },
  61084. extraAttributes: {
  61085. "pawLength": {
  61086. name: "Paw Length",
  61087. power: 1,
  61088. type: "length",
  61089. base: math.unit(1, "feet")
  61090. },
  61091. }
  61092. },
  61093. paw: {
  61094. height: math.unit(1.13, "feet"),
  61095. name: "Paw",
  61096. image: {
  61097. source: "./media/characters/andy/paw.svg"
  61098. }
  61099. },
  61100. },
  61101. [
  61102. {
  61103. name: "Micro",
  61104. height: math.unit(4, "inches")
  61105. },
  61106. {
  61107. name: "Normal",
  61108. height: math.unit(5 + 7/12, "feet"),
  61109. default: true
  61110. },
  61111. {
  61112. name: "Macro",
  61113. height: math.unit(390.42, "feet")
  61114. },
  61115. ]
  61116. ))
  61117. characterMakers.push(() => makeCharacter(
  61118. { name: "Vix Titan", species: ["fox", "demon"], tags: ["anthro"] },
  61119. {
  61120. front: {
  61121. height: math.unit(7, "feet"),
  61122. weight: math.unit(250, "lb"),
  61123. name: "Front",
  61124. image: {
  61125. source: "./media/characters/vix-titan/front.svg",
  61126. extra: 460/428,
  61127. bottom: 15/475
  61128. },
  61129. extraAttributes: {
  61130. "pawWidth": {
  61131. name: "Paw Width",
  61132. power: 1,
  61133. type: "length",
  61134. base: math.unit(0.75, "feet")
  61135. },
  61136. }
  61137. },
  61138. },
  61139. [
  61140. {
  61141. name: "Normal",
  61142. height: math.unit(7, "feet"),
  61143. default: true
  61144. },
  61145. {
  61146. name: "Giant",
  61147. height: math.unit(1500, "feet")
  61148. },
  61149. {
  61150. name: "Mega",
  61151. height: math.unit(10, "miles")
  61152. },
  61153. {
  61154. name: "Giga",
  61155. height: math.unit(150, "miles")
  61156. },
  61157. {
  61158. name: "Tera",
  61159. height: math.unit(144000, "miles")
  61160. },
  61161. ]
  61162. ))
  61163. characterMakers.push(() => makeCharacter(
  61164. { name: "Reiku", species: ["dragon"], tags: ["anthro"] },
  61165. {
  61166. front: {
  61167. height: math.unit(6 + 2/12, "feet"),
  61168. name: "Front",
  61169. image: {
  61170. source: "./media/characters/reiku/front.svg",
  61171. extra: 1910/1757,
  61172. bottom: 103/2013
  61173. },
  61174. extraAttributes: {
  61175. "thighThickness": {
  61176. name: "Thigh Thickness",
  61177. power: 1,
  61178. type: "length",
  61179. base: math.unit(1.12, "feet")
  61180. },
  61181. "assThickness": {
  61182. name: "Ass Thickness",
  61183. power: 1,
  61184. type: "length",
  61185. base: math.unit(1.12*2, "feet")
  61186. },
  61187. }
  61188. },
  61189. side: {
  61190. height: math.unit(6 + 2/12, "feet"),
  61191. name: "Side",
  61192. image: {
  61193. source: "./media/characters/reiku/side.svg",
  61194. extra: 1846/1748,
  61195. bottom: 99/1945
  61196. },
  61197. extraAttributes: {
  61198. "thighThickness": {
  61199. name: "Thigh Thickness",
  61200. power: 1,
  61201. type: "length",
  61202. base: math.unit(1.12, "feet")
  61203. },
  61204. "assThickness": {
  61205. name: "Ass Thickness",
  61206. power: 1,
  61207. type: "length",
  61208. base: math.unit(1.12*2, "feet")
  61209. },
  61210. }
  61211. },
  61212. back: {
  61213. height: math.unit(6 + 2/12, "feet"),
  61214. name: "Back",
  61215. image: {
  61216. source: "./media/characters/reiku/back.svg",
  61217. extra: 1941/1786,
  61218. bottom: 34/1975
  61219. },
  61220. extraAttributes: {
  61221. "thighThickness": {
  61222. name: "Thigh Thickness",
  61223. power: 1,
  61224. type: "length",
  61225. base: math.unit(1.12, "feet")
  61226. },
  61227. "assThickness": {
  61228. name: "Ass Thickness",
  61229. power: 1,
  61230. type: "length",
  61231. base: math.unit(1.12*2, "feet")
  61232. },
  61233. }
  61234. },
  61235. head: {
  61236. height: math.unit(1.8, "feet"),
  61237. name: "Head",
  61238. image: {
  61239. source: "./media/characters/reiku/head.svg"
  61240. }
  61241. },
  61242. tailTop: {
  61243. height: math.unit(8.4, "feet"),
  61244. name: "Tail (Top)",
  61245. image: {
  61246. source: "./media/characters/reiku/tail-top.svg"
  61247. }
  61248. },
  61249. tailBottom: {
  61250. height: math.unit(8.4, "feet"),
  61251. name: "Tail (Bottom)",
  61252. image: {
  61253. source: "./media/characters/reiku/tail-bottom.svg"
  61254. }
  61255. },
  61256. foot: {
  61257. height: math.unit(2.6, "feet"),
  61258. name: "Foot",
  61259. image: {
  61260. source: "./media/characters/reiku/foot.svg"
  61261. }
  61262. },
  61263. footCurled: {
  61264. height: math.unit(2.3, "feet"),
  61265. name: "Foot (Curled)",
  61266. image: {
  61267. source: "./media/characters/reiku/foot-curled.svg"
  61268. }
  61269. },
  61270. footSide: {
  61271. height: math.unit(1.26, "feet"),
  61272. name: "Foot (Side)",
  61273. image: {
  61274. source: "./media/characters/reiku/foot-side.svg"
  61275. }
  61276. },
  61277. },
  61278. [
  61279. {
  61280. name: "Normal",
  61281. height: math.unit(6 + 2/12, "feet"),
  61282. default: true
  61283. },
  61284. ]
  61285. ))
  61286. characterMakers.push(() => makeCharacter(
  61287. { name: "Cialda", species: ["zorgoia", "food"], tags: ["feral"] },
  61288. {
  61289. front: {
  61290. height: math.unit(7, "feet"),
  61291. weight: math.unit(500, "kg"),
  61292. name: "Front",
  61293. image: {
  61294. source: "./media/characters/cialda/front.svg",
  61295. extra: 912/745,
  61296. bottom: 55/967
  61297. }
  61298. },
  61299. },
  61300. [
  61301. {
  61302. name: "Normal",
  61303. height: math.unit(7, "feet"),
  61304. default: true
  61305. },
  61306. ]
  61307. ))
  61308. characterMakers.push(() => makeCharacter(
  61309. { name: "Darkkin", species: ["honey-badger", "behemoth"], tags: ["anthro"] },
  61310. {
  61311. side: {
  61312. height: math.unit(6, "feet"),
  61313. weight: math.unit(600, "lb"),
  61314. preyCapacity: math.unit(25, "liters"),
  61315. name: "Side",
  61316. image: {
  61317. source: "./media/characters/darkkin/side.svg",
  61318. extra: 1597/1447,
  61319. bottom: 101/1698
  61320. }
  61321. },
  61322. },
  61323. [
  61324. {
  61325. name: "Canon Height",
  61326. height: math.unit(568, "feet"),
  61327. default: true
  61328. },
  61329. ]
  61330. ))
  61331. characterMakers.push(() => makeCharacter(
  61332. { name: "Livnia", species: ["rattlesnake", "diamondback"], tags: ["naga"] },
  61333. {
  61334. front: {
  61335. height: math.unit(6, "feet"),
  61336. weight: math.unit(1500, "lb"),
  61337. preyCapacity: math.unit(3, "people"),
  61338. name: "Front",
  61339. image: {
  61340. source: "./media/characters/livnia/front.svg",
  61341. extra: 934/932,
  61342. bottom: 83/1017
  61343. }
  61344. },
  61345. back: {
  61346. height: math.unit(6, "feet"),
  61347. weight: math.unit(1500, "lb"),
  61348. preyCapacity: math.unit(3, "people"),
  61349. name: "Back",
  61350. image: {
  61351. source: "./media/characters/livnia/back.svg",
  61352. extra: 916/915,
  61353. bottom: 58/974
  61354. }
  61355. },
  61356. head: {
  61357. height: math.unit(1.53, "feet"),
  61358. name: "Head",
  61359. image: {
  61360. source: "./media/characters/livnia/head.svg"
  61361. }
  61362. },
  61363. maw: {
  61364. height: math.unit(0.78, "feet"),
  61365. name: "Maw",
  61366. image: {
  61367. source: "./media/characters/livnia/maw.svg"
  61368. }
  61369. },
  61370. genitals: {
  61371. height: math.unit(0.35, "feet"),
  61372. name: "Genitals",
  61373. image: {
  61374. source: "./media/characters/livnia/genitals.svg"
  61375. }
  61376. },
  61377. },
  61378. [
  61379. {
  61380. name: "Normal",
  61381. height: math.unit(1000, "feet"),
  61382. default: true
  61383. },
  61384. ]
  61385. ))
  61386. characterMakers.push(() => makeCharacter(
  61387. { name: "Hayaku", species: ["spidox"], tags: ["anthro"] },
  61388. {
  61389. front: {
  61390. height: math.unit(4, "feet"),
  61391. weight: math.unit(73, "lb"),
  61392. name: "Front",
  61393. image: {
  61394. source: "./media/characters/hayaku/front.svg",
  61395. extra: 1011/888,
  61396. bottom: 33/1044
  61397. }
  61398. },
  61399. back: {
  61400. height: math.unit(4, "feet"),
  61401. weight: math.unit(73, "lb"),
  61402. name: "Back",
  61403. image: {
  61404. source: "./media/characters/hayaku/back.svg",
  61405. extra: 1040/930,
  61406. bottom: 20/1060
  61407. }
  61408. },
  61409. },
  61410. [
  61411. {
  61412. name: "Normal",
  61413. height: math.unit(4, "feet"),
  61414. default: true
  61415. },
  61416. ]
  61417. ))
  61418. characterMakers.push(() => makeCharacter(
  61419. { name: "Athena Bryzant", species: ["gryphon"], tags: ["anthro"] },
  61420. {
  61421. front: {
  61422. height: math.unit(6 + 7/12, "feet"),
  61423. weight: math.unit(300, "lb"),
  61424. name: "Front",
  61425. image: {
  61426. source: "./media/characters/athena-bryzant/front.svg",
  61427. extra: 870/835,
  61428. bottom: 33/903
  61429. }
  61430. },
  61431. back: {
  61432. height: math.unit(6 + 7/12, "feet"),
  61433. weight: math.unit(300, "lb"),
  61434. name: "Back",
  61435. image: {
  61436. source: "./media/characters/athena-bryzant/back.svg",
  61437. extra: 858/823,
  61438. bottom: 30/888
  61439. }
  61440. },
  61441. head: {
  61442. height: math.unit(2.38, "feet"),
  61443. name: "Head",
  61444. image: {
  61445. source: "./media/characters/athena-bryzant/head.svg"
  61446. }
  61447. },
  61448. wings: {
  61449. height: math.unit(2.85, "feet"),
  61450. name: "Wings",
  61451. image: {
  61452. source: "./media/characters/athena-bryzant/wings.svg"
  61453. }
  61454. },
  61455. },
  61456. [
  61457. {
  61458. name: "Normal",
  61459. height: math.unit(6 + 7/12, "feet"),
  61460. default: true
  61461. },
  61462. {
  61463. name: "Big",
  61464. height: math.unit(8, "feet")
  61465. },
  61466. {
  61467. name: "Very Big",
  61468. height: math.unit(11, "feet")
  61469. },
  61470. ]
  61471. ))
  61472. characterMakers.push(() => makeCharacter(
  61473. { name: "Zel-Kesh", species: ["zorgoia", "demon"], tags: ["feral"] },
  61474. {
  61475. side: {
  61476. height: math.unit(3, "meters"),
  61477. weight: math.unit(7500, "kg"),
  61478. preyCapacity: math.unit(1e12, "people"),
  61479. name: "Side",
  61480. image: {
  61481. source: "./media/characters/zel-kesh/side.svg",
  61482. extra: 910/407,
  61483. bottom: 147/1057
  61484. }
  61485. },
  61486. },
  61487. [
  61488. {
  61489. name: "Normal",
  61490. height: math.unit(3, "meters"),
  61491. default: true
  61492. },
  61493. ]
  61494. ))
  61495. characterMakers.push(() => makeCharacter(
  61496. { name: "Kane (Fox)", species: ["fox", "deity"], tags: ["anthro"] },
  61497. {
  61498. front: {
  61499. height: math.unit(2, "meters"),
  61500. weight: math.unit(95, "kg"),
  61501. name: "Front",
  61502. image: {
  61503. source: "./media/characters/kane-fox/front.svg",
  61504. extra: 945/888,
  61505. bottom: 27/972
  61506. }
  61507. },
  61508. back: {
  61509. height: math.unit(2, "meters"),
  61510. weight: math.unit(95, "kg"),
  61511. name: "Back",
  61512. image: {
  61513. source: "./media/characters/kane-fox/back.svg",
  61514. extra: 959/914,
  61515. bottom: 15/974
  61516. }
  61517. },
  61518. frontLewd: {
  61519. height: math.unit(2, "meters"),
  61520. weight: math.unit(95, "kg"),
  61521. name: "Front (Lewd)",
  61522. image: {
  61523. source: "./media/characters/kane-fox/front-lewd.svg",
  61524. extra: 945/888,
  61525. bottom: 27/972
  61526. }
  61527. },
  61528. },
  61529. [
  61530. {
  61531. name: "Home Size",
  61532. height: math.unit(2, "meters"),
  61533. default: true
  61534. },
  61535. {
  61536. name: "Macro",
  61537. height: math.unit(200, "meters")
  61538. },
  61539. {
  61540. name: "Small Mega",
  61541. height: math.unit(3, "km")
  61542. },
  61543. {
  61544. name: "Mega",
  61545. height: math.unit(50, "km")
  61546. },
  61547. {
  61548. name: "Giga",
  61549. height: math.unit(200, "km")
  61550. },
  61551. {
  61552. name: "Giga+",
  61553. height: math.unit(2500, "km")
  61554. },
  61555. {
  61556. name: "Terra",
  61557. height: math.unit(70000, "km")
  61558. },
  61559. {
  61560. name: "Terra+",
  61561. height: math.unit(150000, "km")
  61562. },
  61563. {
  61564. name: "Terra++",
  61565. height: math.unit(400000, "km")
  61566. },
  61567. ]
  61568. ))
  61569. characterMakers.push(() => makeCharacter(
  61570. { name: "Ayranus", species: ["otter", "lion", "bat", "deity"], tags: ["anthro"] },
  61571. {
  61572. otter_front: {
  61573. height: math.unit(1.8, "meters"),
  61574. weight: math.unit(90, "kg"),
  61575. name: "Front",
  61576. image: {
  61577. source: "./media/characters/ayranus/otter-front.svg",
  61578. extra: 468/452,
  61579. bottom: 43/511
  61580. },
  61581. form: "otter",
  61582. },
  61583. otter_frontLewd: {
  61584. height: math.unit(1.8, "meters"),
  61585. weight: math.unit(90, "kg"),
  61586. name: "Front (Lewd)",
  61587. image: {
  61588. source: "./media/characters/ayranus/otter-front-lewd.svg",
  61589. extra: 468/452,
  61590. bottom: 43/511
  61591. },
  61592. form: "otter",
  61593. },
  61594. lionbat_front: {
  61595. height: math.unit(1.8, "meters"),
  61596. weight: math.unit(90, "kg"),
  61597. name: "Front (Lewd)",
  61598. image: {
  61599. source: "./media/characters/ayranus/lionbat-front-lewd.svg",
  61600. extra: 797/740,
  61601. bottom: 78/875
  61602. },
  61603. form: "lionbat",
  61604. },
  61605. paw: {
  61606. height: math.unit(1.5, "feet"),
  61607. name: "Paw",
  61608. image: {
  61609. source: "./media/characters/ayranus/paw.svg"
  61610. },
  61611. },
  61612. },
  61613. [
  61614. {
  61615. name: "Incognito",
  61616. height: math.unit(1.8, "meters"),
  61617. allForms: true
  61618. },
  61619. {
  61620. name: "Macro",
  61621. height: math.unit(60, "meters"),
  61622. allForms: true
  61623. },
  61624. {
  61625. name: "Macro+",
  61626. height: math.unit(200, "meters"),
  61627. allForms: true
  61628. },
  61629. {
  61630. name: "Mega",
  61631. height: math.unit(35, "km"),
  61632. allForms: true
  61633. },
  61634. {
  61635. name: "Giga",
  61636. height: math.unit(220, "km"),
  61637. allForms: true
  61638. },
  61639. {
  61640. name: "Giga+",
  61641. height: math.unit(1500, "km"),
  61642. allForms: true
  61643. },
  61644. {
  61645. name: "Terra",
  61646. height: math.unit(13000, "km"),
  61647. allForms: true
  61648. },
  61649. {
  61650. name: "Terra+",
  61651. height: math.unit(500000, "km"),
  61652. allForms: true
  61653. },
  61654. {
  61655. name: "Galactic",
  61656. height: math.unit(486080, "parsecs"),
  61657. default: true,
  61658. allForms: true
  61659. },
  61660. ],
  61661. {
  61662. "otter": {
  61663. name: "Otter",
  61664. default: true
  61665. },
  61666. "lionbat": {
  61667. name: "Lionbat",
  61668. },
  61669. }
  61670. ))
  61671. characterMakers.push(() => makeCharacter(
  61672. { name: "Proxy", species: ["kodiak-bear"], tags: ["anthro"] },
  61673. {
  61674. front: {
  61675. height: math.unit(7 + 4/12, "feet"),
  61676. weight: math.unit(400, "lb"),
  61677. name: "Front",
  61678. image: {
  61679. source: "./media/characters/proxy/front.svg",
  61680. extra: 1605/1542,
  61681. bottom: 55/1660
  61682. }
  61683. },
  61684. side: {
  61685. height: math.unit(7 + 4/12, "feet"),
  61686. weight: math.unit(400, "lb"),
  61687. name: "Side",
  61688. image: {
  61689. source: "./media/characters/proxy/side.svg",
  61690. extra: 794/759,
  61691. bottom: 6/800
  61692. }
  61693. },
  61694. hand: {
  61695. height: math.unit(1.54, "feet"),
  61696. name: "Hand",
  61697. image: {
  61698. source: "./media/characters/proxy/hand.svg"
  61699. }
  61700. },
  61701. paw: {
  61702. height: math.unit(1.53, "feet"),
  61703. name: "Paw",
  61704. image: {
  61705. source: "./media/characters/proxy/paw.svg"
  61706. }
  61707. },
  61708. maw: {
  61709. height: math.unit(1.9, "feet"),
  61710. name: "Maw",
  61711. image: {
  61712. source: "./media/characters/proxy/maw.svg"
  61713. }
  61714. },
  61715. },
  61716. [
  61717. {
  61718. name: "Normal",
  61719. height: math.unit(7 + 4/12, "feet"),
  61720. default: true
  61721. },
  61722. ]
  61723. ))
  61724. characterMakers.push(() => makeCharacter(
  61725. { name: "Crocozilla", species: ["crocodile"], tags: ["anthro"] },
  61726. {
  61727. front: {
  61728. height: math.unit(4, "meters"),
  61729. name: "Front",
  61730. image: {
  61731. source: "./media/characters/crocozilla/front.svg",
  61732. extra: 1790/1742,
  61733. bottom: 78/1868
  61734. }
  61735. },
  61736. },
  61737. [
  61738. {
  61739. name: "Normal",
  61740. height: math.unit(4, "meters"),
  61741. default: true
  61742. },
  61743. ]
  61744. ))
  61745. characterMakers.push(() => makeCharacter(
  61746. { name: "Kurz", species: ["alurean", "deity"], tags: ["anthro"] },
  61747. {
  61748. front: {
  61749. height: math.unit(1.8, "meters"),
  61750. weight: math.unit(120, "kg"),
  61751. name: "Front",
  61752. image: {
  61753. source: "./media/characters/kurz/front.svg",
  61754. extra: 1960/1824,
  61755. bottom: 41/2001
  61756. }
  61757. },
  61758. back: {
  61759. height: math.unit(1.8, "meters"),
  61760. weight: math.unit(120, "kg"),
  61761. name: "Back",
  61762. image: {
  61763. source: "./media/characters/kurz/back.svg",
  61764. extra: 1906/1787,
  61765. bottom: 60/1966
  61766. }
  61767. },
  61768. frontLewd: {
  61769. height: math.unit(1.8, "meters"),
  61770. weight: math.unit(120, "kg"),
  61771. name: "Front (Lewd)",
  61772. image: {
  61773. source: "./media/characters/kurz/front-lewd.svg",
  61774. extra: 1960/1824,
  61775. bottom: 41/2001
  61776. }
  61777. },
  61778. maw: {
  61779. height: math.unit(0.69, "meters"),
  61780. name: "Maw",
  61781. image: {
  61782. source: "./media/characters/kurz/maw.svg"
  61783. }
  61784. },
  61785. },
  61786. [
  61787. {
  61788. name: "Original Size",
  61789. height: math.unit(1.8, "meters")
  61790. },
  61791. {
  61792. name: "Incognito Size",
  61793. height: math.unit(2.4, "meters"),
  61794. default: true
  61795. },
  61796. {
  61797. name: "Macro",
  61798. height: math.unit(30, "meters")
  61799. },
  61800. {
  61801. name: "Macro+",
  61802. height: math.unit(250, "meters")
  61803. },
  61804. {
  61805. name: "Mega",
  61806. height: math.unit(2, "km")
  61807. },
  61808. {
  61809. name: "Mega+",
  61810. height: math.unit(35, "km")
  61811. },
  61812. {
  61813. name: "Mega++",
  61814. height: math.unit(75, "km")
  61815. },
  61816. {
  61817. name: "Giga",
  61818. height: math.unit(250, "km")
  61819. },
  61820. {
  61821. name: "Terra",
  61822. height: math.unit(15000, "km")
  61823. },
  61824. {
  61825. name: "Terra+",
  61826. height: math.unit(2250000, "km")
  61827. },
  61828. ]
  61829. ))
  61830. characterMakers.push(() => makeCharacter(
  61831. { name: "Nikita", species: ["werewolf"], tags: ["anthro"] },
  61832. {
  61833. front: {
  61834. height: math.unit(16 + 3/12, "feet"),
  61835. weight: math.unit(3575, "lb"),
  61836. name: "Front",
  61837. image: {
  61838. source: "./media/characters/nikita/front.svg",
  61839. extra: 1064/955,
  61840. bottom: 47/1111
  61841. }
  61842. },
  61843. },
  61844. [
  61845. {
  61846. name: "Normal",
  61847. height: math.unit(16 + 3/12, "feet"),
  61848. default: true
  61849. },
  61850. {
  61851. name: "Big",
  61852. height: math.unit(21, "feet")
  61853. },
  61854. {
  61855. name: "Biggest",
  61856. height: math.unit(50, "feet")
  61857. },
  61858. ]
  61859. ))
  61860. characterMakers.push(() => makeCharacter(
  61861. { name: "Kyara", species: ["wolf"], tags: ["anthro"] },
  61862. {
  61863. front: {
  61864. height: math.unit(1.92, "m"),
  61865. weight: math.unit(76, "kg"),
  61866. name: "Front",
  61867. image: {
  61868. source: "./media/characters/kyara/front.svg",
  61869. extra: 1550/1438,
  61870. bottom: 139/1689
  61871. }
  61872. },
  61873. back: {
  61874. height: math.unit(1.92, "m"),
  61875. weight: math.unit(76, "kg"),
  61876. name: "Back",
  61877. image: {
  61878. source: "./media/characters/kyara/back.svg",
  61879. extra: 1523/1427,
  61880. bottom: 83/1606
  61881. }
  61882. },
  61883. head: {
  61884. height: math.unit(1.22, "feet"),
  61885. name: "Head",
  61886. image: {
  61887. source: "./media/characters/kyara/head.svg"
  61888. }
  61889. },
  61890. maw: {
  61891. height: math.unit(0.73, "feet"),
  61892. name: "Maw",
  61893. image: {
  61894. source: "./media/characters/kyara/maw.svg"
  61895. }
  61896. },
  61897. paws: {
  61898. height: math.unit(0.95, "feet"),
  61899. name: "Paws",
  61900. image: {
  61901. source: "./media/characters/kyara/paws.svg"
  61902. }
  61903. },
  61904. },
  61905. [
  61906. {
  61907. name: "Normal",
  61908. height: math.unit(1.92, "meters"),
  61909. default: true
  61910. },
  61911. {
  61912. name: "Mini Macro",
  61913. height: math.unit(192, "meters")
  61914. },
  61915. {
  61916. name: "Macro",
  61917. height: math.unit(480, "meters")
  61918. },
  61919. {
  61920. name: "Mega Macro",
  61921. height: math.unit(1440, "meters")
  61922. },
  61923. ]
  61924. ))
  61925. characterMakers.push(() => makeCharacter(
  61926. { name: "Layla Amari", species: ["rabbit"], tags: ["anthro"] },
  61927. {
  61928. front: {
  61929. height: math.unit(6, "feet"),
  61930. weight: math.unit(160, "lbs"),
  61931. preyCapacity: math.unit(0.05, "people"),
  61932. name: "Front",
  61933. image: {
  61934. source: "./media/characters/layla-amari/front.svg",
  61935. extra: 1922/1723,
  61936. bottom: 90/2012
  61937. }
  61938. },
  61939. back: {
  61940. height: math.unit(6, "feet"),
  61941. weight: math.unit(160, "lbs"),
  61942. preyCapacity: math.unit(0.05, "people"),
  61943. name: "Back",
  61944. image: {
  61945. source: "./media/characters/layla-amari/back.svg",
  61946. extra: 1917/1718,
  61947. bottom: 50/1967
  61948. }
  61949. },
  61950. frontDressed: {
  61951. height: math.unit(6, "feet"),
  61952. weight: math.unit(160, "lbs"),
  61953. preyCapacity: math.unit(0.05, "people"),
  61954. name: "Front (Dressed)",
  61955. image: {
  61956. source: "./media/characters/layla-amari/front-dressed.svg",
  61957. extra: 1922/1723,
  61958. bottom: 90/2012
  61959. }
  61960. },
  61961. face: {
  61962. height: math.unit(0.93, "feet"),
  61963. name: "Face",
  61964. image: {
  61965. source: "./media/characters/layla-amari/face.svg"
  61966. }
  61967. },
  61968. hand: {
  61969. height: math.unit(0.66 , "feet"),
  61970. name: "Hand",
  61971. image: {
  61972. source: "./media/characters/layla-amari/hand.svg"
  61973. }
  61974. },
  61975. foot: {
  61976. height: math.unit(1, "feet"),
  61977. name: "Foot",
  61978. image: {
  61979. source: "./media/characters/layla-amari/foot.svg"
  61980. }
  61981. },
  61982. necklace: {
  61983. height: math.unit(0.32, "feet"),
  61984. name: "Necklace",
  61985. image: {
  61986. source: "./media/characters/layla-amari/necklace.svg"
  61987. }
  61988. },
  61989. nipple: {
  61990. height: math.unit(0.2, "feet"),
  61991. name: "Nipple",
  61992. image: {
  61993. source: "./media/characters/layla-amari/nipple.svg"
  61994. }
  61995. },
  61996. slit: {
  61997. height: math.unit(0.26, "feet"),
  61998. name: "Slit",
  61999. image: {
  62000. source: "./media/characters/layla-amari/slit.svg"
  62001. }
  62002. },
  62003. },
  62004. [
  62005. {
  62006. name: "Natural",
  62007. height: math.unit(825, "feet"),
  62008. default: true
  62009. },
  62010. {
  62011. name: "Enhanced",
  62012. height: math.unit(8250, "feet")
  62013. },
  62014. {
  62015. name: "Apparent Size",
  62016. height: math.unit(9.04363e+8, "meters")
  62017. },
  62018. ]
  62019. ))
  62020. characterMakers.push(() => makeCharacter(
  62021. { name: "Percy", species: ["magpie", "leopard", "gryphon"], tags: ["anthro"] },
  62022. {
  62023. front: {
  62024. height: math.unit(1.3, "meters"),
  62025. name: "Front",
  62026. image: {
  62027. source: "./media/characters/percy/front.svg",
  62028. extra: 1444/1289,
  62029. bottom: 54/1498
  62030. }
  62031. },
  62032. },
  62033. [
  62034. {
  62035. name: "Normal",
  62036. height: math.unit(1.3, "meters"),
  62037. default: true
  62038. },
  62039. ]
  62040. ))
  62041. characterMakers.push(() => makeCharacter(
  62042. { name: "Grev", species: ["tigrex"], tags: ["feral"] },
  62043. {
  62044. side: {
  62045. height: math.unit(10, "meters"),
  62046. name: "Side",
  62047. image: {
  62048. source: "./media/characters/grev/side.svg",
  62049. extra: 653/266,
  62050. bottom: 77/730
  62051. }
  62052. },
  62053. head: {
  62054. height: math.unit(16.2, "m"),
  62055. name: "Head",
  62056. image: {
  62057. source: "./media/characters/grev/head.svg"
  62058. }
  62059. },
  62060. dick: {
  62061. height: math.unit(2.8135932034, "m"),
  62062. name: "Dick",
  62063. image: {
  62064. source: "./media/characters/grev/dick.svg"
  62065. }
  62066. },
  62067. },
  62068. [
  62069. {
  62070. name: "Friend-Sized",
  62071. height: math.unit(80, "cm")
  62072. },
  62073. {
  62074. name: "Normal",
  62075. height: math.unit(10, "meters"),
  62076. default: true
  62077. },
  62078. {
  62079. name: "Macro",
  62080. height: math.unit(200, "meters")
  62081. },
  62082. ]
  62083. ))
  62084. characterMakers.push(() => makeCharacter(
  62085. { name: "Azuuca", species: ["catfish"], tags: ["anthro"] },
  62086. {
  62087. front: {
  62088. height: math.unit(19.75, "feet"),
  62089. weight: math.unit(20000, "lb"),
  62090. name: "Front",
  62091. image: {
  62092. source: "./media/characters/azuuca/front.svg",
  62093. extra: 1593/1511,
  62094. bottom: 55/1648
  62095. }
  62096. },
  62097. },
  62098. [
  62099. {
  62100. name: "Normal",
  62101. height: math.unit(19.75, "feet"),
  62102. default: true
  62103. },
  62104. ]
  62105. ))
  62106. characterMakers.push(() => makeCharacter(
  62107. { name: "Valuria", species: ["vesempress"], tags: ["anthro"] },
  62108. {
  62109. front: {
  62110. height: math.unit(15, "feet"),
  62111. weight: math.unit(1500, "lb"),
  62112. name: "Front",
  62113. image: {
  62114. source: "./media/characters/valuria/front.svg",
  62115. extra: 1588/1486,
  62116. bottom: 31/1619
  62117. }
  62118. },
  62119. },
  62120. [
  62121. {
  62122. name: "Normal",
  62123. height: math.unit(15, "feet"),
  62124. default: true
  62125. },
  62126. {
  62127. name: "Small",
  62128. height: math.unit(500, "feet")
  62129. },
  62130. {
  62131. name: "Macro",
  62132. height: math.unit(4000, "feet")
  62133. },
  62134. {
  62135. name: "Mega Macro",
  62136. height: math.unit(2000, "miles")
  62137. },
  62138. {
  62139. name: "Giga Macro",
  62140. height: math.unit(3e6, "miles")
  62141. },
  62142. ]
  62143. ))
  62144. characterMakers.push(() => makeCharacter(
  62145. { name: "Terigaia", species: ["gaelterranian"], tags: ["anthro"] },
  62146. {
  62147. front: {
  62148. height: math.unit(3500, "solarradii"),
  62149. name: "Front",
  62150. image: {
  62151. source: "./media/characters/terigaia/front.svg",
  62152. extra: 1531/1451,
  62153. bottom: 98/1629
  62154. }
  62155. },
  62156. },
  62157. [
  62158. {
  62159. name: "Normal",
  62160. height: math.unit(3500, "solarradii"),
  62161. default: true
  62162. },
  62163. ]
  62164. ))
  62165. characterMakers.push(() => makeCharacter(
  62166. { name: "Blair (Blaziken)", species: ["blaziken"], tags: ["anthro"] },
  62167. {
  62168. front: {
  62169. height: math.unit(9.34, "feet"),
  62170. weight: math.unit(600, "lb"),
  62171. name: "Front",
  62172. image: {
  62173. source: "./media/characters/blair-blaziken/front.svg",
  62174. extra: 1557/1462,
  62175. bottom: 55/1612
  62176. }
  62177. },
  62178. },
  62179. [
  62180. {
  62181. name: "Normal",
  62182. height: math.unit(9.34, "feet"),
  62183. default: true
  62184. },
  62185. ]
  62186. ))
  62187. characterMakers.push(() => makeCharacter(
  62188. { name: "Braxia", species: ["pistrogre", "human"], tags: ["anthro"] },
  62189. {
  62190. pistrogre_front: {
  62191. height: math.unit(10, "feet"),
  62192. weight: math.unit(10, "tons"),
  62193. name: "Front",
  62194. image: {
  62195. source: "./media/characters/braxia/pistrogre-front.svg",
  62196. extra: 1531/1334,
  62197. bottom: 114/1645
  62198. },
  62199. form: "pistrogre",
  62200. default: true
  62201. },
  62202. human_front: {
  62203. height: math.unit(10, "feet"),
  62204. weight: math.unit(10, "tons"),
  62205. name: "Front",
  62206. image: {
  62207. source: "./media/characters/braxia/human-front.svg",
  62208. extra: 1574/1501,
  62209. bottom: 37/1611
  62210. },
  62211. form: "human",
  62212. default: true
  62213. },
  62214. },
  62215. [
  62216. {
  62217. name: "Normal",
  62218. height: math.unit(10, "feet"),
  62219. default: true,
  62220. allForms: true
  62221. },
  62222. {
  62223. name: "Macro",
  62224. height: math.unit(1000, "feet"),
  62225. allForms: true
  62226. },
  62227. {
  62228. name: "Mega Macro",
  62229. height: math.unit(100, "miles"),
  62230. allForms: true
  62231. },
  62232. {
  62233. name: "Cosmic",
  62234. height: math.unit(1000000, "lightyears"),
  62235. allForms: true
  62236. },
  62237. {
  62238. name: "ϐѮԆԬӁꭍϞԢ",
  62239. height: math.unit(1000, "multiverses"),
  62240. allForms: true
  62241. },
  62242. ],
  62243. {
  62244. "pistrogre": {
  62245. name: "Pistrogre",
  62246. default: true
  62247. },
  62248. "human": {
  62249. name: "Human",
  62250. },
  62251. }
  62252. ))
  62253. characterMakers.push(() => makeCharacter(
  62254. { name: "Kiriga Yato", species: ["zorgoia"], tags: ["anthro"] },
  62255. {
  62256. front: {
  62257. height: math.unit(6 + 1/12, "feet"),
  62258. weight: math.unit(280, "lb"),
  62259. name: "Front",
  62260. image: {
  62261. source: "./media/characters/kiriga-yato/front.svg",
  62262. extra: 445/394,
  62263. bottom: 11/456
  62264. }
  62265. },
  62266. },
  62267. [
  62268. {
  62269. name: "Descended",
  62270. height: math.unit(3, "feet")
  62271. },
  62272. {
  62273. name: "Average",
  62274. height: math.unit(6 + 1/12, "feet"),
  62275. default: true
  62276. },
  62277. {
  62278. name: "Ascended",
  62279. height: math.unit(9 + 2/12, "feet")
  62280. },
  62281. ]
  62282. ))
  62283. characterMakers.push(() => makeCharacter(
  62284. { name: "Kylie", species: ["giraffe"], tags: ["anthro"] },
  62285. {
  62286. front: {
  62287. height: math.unit(6, "feet"),
  62288. weight: math.unit(150, "lb"),
  62289. name: "Front",
  62290. image: {
  62291. source: "./media/characters/kylie/front.svg",
  62292. extra: 1114/1046,
  62293. bottom: 65/1179
  62294. },
  62295. extraAttributes: {
  62296. "hoofSize": {
  62297. name: "Hoof Size",
  62298. power: 2,
  62299. type: "area",
  62300. base: math.unit(0.034, "m^2")
  62301. },
  62302. "footSize": {
  62303. name: "Foot Size",
  62304. power: 2,
  62305. type: "area",
  62306. base: math.unit(0.75, "m^2")
  62307. },
  62308. }
  62309. },
  62310. side: {
  62311. height: math.unit(6, "feet"),
  62312. weight: math.unit(150, "lb"),
  62313. name: "Side",
  62314. image: {
  62315. source: "./media/characters/kylie/side.svg",
  62316. extra: 1178/1110,
  62317. bottom: 21/1199
  62318. },
  62319. extraAttributes: {
  62320. "hoofSize": {
  62321. name: "Hoof Size",
  62322. power: 2,
  62323. type: "area",
  62324. base: math.unit(0.034, "m^2")
  62325. },
  62326. "footSize": {
  62327. name: "Foot Size",
  62328. power: 2,
  62329. type: "area",
  62330. base: math.unit(0.75, "m^2")
  62331. },
  62332. }
  62333. },
  62334. back: {
  62335. height: math.unit(6, "feet"),
  62336. weight: math.unit(150, "lb"),
  62337. name: "Back",
  62338. image: {
  62339. source: "./media/characters/kylie/back.svg",
  62340. extra: 1115/1047,
  62341. bottom: 66/1181
  62342. },
  62343. extraAttributes: {
  62344. "hoofSize": {
  62345. name: "Hoof Size",
  62346. power: 2,
  62347. type: "area",
  62348. base: math.unit(0.034, "m^2")
  62349. },
  62350. "footSize": {
  62351. name: "Foot Size",
  62352. power: 2,
  62353. type: "area",
  62354. base: math.unit(0.75, "m^2")
  62355. },
  62356. }
  62357. },
  62358. head: {
  62359. height: math.unit(1.85, "feet"),
  62360. name: "Head",
  62361. image: {
  62362. source: "./media/characters/kylie/head.svg"
  62363. }
  62364. },
  62365. },
  62366. [
  62367. {
  62368. name: "Normal",
  62369. height: math.unit(90, "meters"),
  62370. default: true
  62371. },
  62372. ]
  62373. ))
  62374. characterMakers.push(() => makeCharacter(
  62375. { name: "Sabado", species: ["suicune"], tags: ["anthro"] },
  62376. {
  62377. front: {
  62378. height: math.unit(245, "feet"),
  62379. weight: math.unit(400000, "lb"),
  62380. name: "Front",
  62381. image: {
  62382. source: "./media/characters/sabado/front.svg",
  62383. extra: 1309/1164,
  62384. bottom: 29/1338
  62385. }
  62386. },
  62387. },
  62388. [
  62389. {
  62390. name: "Normal",
  62391. height: math.unit(245, "feet"),
  62392. default: true
  62393. },
  62394. ]
  62395. ))
  62396. characterMakers.push(() => makeCharacter(
  62397. { name: "Zechal", species: ["shark", "dragon", "deity"], tags: ["anthro"] },
  62398. {
  62399. shark_front: {
  62400. height: math.unit(2, "meters"),
  62401. weight: math.unit(200, "kg"),
  62402. name: "Front",
  62403. image: {
  62404. source: "./media/characters/zechal/shark-front.svg",
  62405. extra: 969/925,
  62406. bottom: 74/1043
  62407. },
  62408. form: "shark",
  62409. },
  62410. shark_back: {
  62411. height: math.unit(2, "meters"),
  62412. weight: math.unit(200, "kg"),
  62413. name: "Back",
  62414. image: {
  62415. source: "./media/characters/zechal/shark-back.svg",
  62416. extra: 994/949,
  62417. bottom: 176/1170
  62418. },
  62419. form: "shark",
  62420. },
  62421. shark_frontLewd: {
  62422. height: math.unit(2, "meters"),
  62423. weight: math.unit(200, "kg"),
  62424. name: "Front (Lewd)",
  62425. image: {
  62426. source: "./media/characters/zechal/shark-front-lewd.svg",
  62427. extra: 969/925,
  62428. bottom: 74/1043
  62429. },
  62430. form: "shark",
  62431. },
  62432. shark_side: {
  62433. height: math.unit(1.56, "meters"),
  62434. weight: math.unit(200, "kg"),
  62435. name: "Side",
  62436. image: {
  62437. source: "./media/characters/zechal/shark-side.svg"
  62438. },
  62439. form: "shark",
  62440. },
  62441. dragon_front: {
  62442. height: math.unit(2, "meters"),
  62443. weight: math.unit(200, "kg"),
  62444. name: "Front",
  62445. image: {
  62446. source: "./media/characters/zechal/dragon-front.svg",
  62447. extra: 1041/925,
  62448. bottom: 74/1115
  62449. },
  62450. form: "dragon",
  62451. },
  62452. dragon_back: {
  62453. height: math.unit(2, "meters"),
  62454. weight: math.unit(200, "kg"),
  62455. name: "Back",
  62456. image: {
  62457. source: "./media/characters/zechal/dragon-back.svg",
  62458. extra: 1061/949,
  62459. bottom: 176/1237
  62460. },
  62461. form: "dragon",
  62462. },
  62463. dragon_frontLewd: {
  62464. height: math.unit(2, "meters"),
  62465. weight: math.unit(200, "kg"),
  62466. name: "Front (Lewd)",
  62467. image: {
  62468. source: "./media/characters/zechal/dragon-front-lewd.svg",
  62469. extra: 1041/925,
  62470. bottom: 74/1115
  62471. },
  62472. form: "dragon",
  62473. },
  62474. dragon_side: {
  62475. height: math.unit(1.56, "meters"),
  62476. weight: math.unit(200, "kg"),
  62477. name: "Side",
  62478. image: {
  62479. source: "./media/characters/zechal/dragon-side.svg"
  62480. },
  62481. form: "dragon",
  62482. },
  62483. foot: {
  62484. height: math.unit(0.5, "meters"),
  62485. name: "Foot",
  62486. image: {
  62487. source: "./media/characters/zechal/foot.svg"
  62488. }
  62489. },
  62490. sheathFront: {
  62491. height: math.unit(0.45, "meters"),
  62492. name: "Sheath (Front)",
  62493. image: {
  62494. source: "./media/characters/zechal/sheath-front.svg"
  62495. }
  62496. },
  62497. sheathSide: {
  62498. height: math.unit(0.45, "meters"),
  62499. name: "Sheath (Side)",
  62500. image: {
  62501. source: "./media/characters/zechal/sheath-side.svg"
  62502. }
  62503. },
  62504. },
  62505. [
  62506. {
  62507. name: "Incognito",
  62508. height: math.unit(2, "meters"),
  62509. allForms: true
  62510. },
  62511. {
  62512. name: "Small Rampage",
  62513. height: math.unit(25, "meters"),
  62514. allForms: true
  62515. },
  62516. {
  62517. name: "Home Size",
  62518. height: math.unit(250, "meters"),
  62519. allForms: true,
  62520. default: true
  62521. },
  62522. {
  62523. name: "Macro+",
  62524. height: math.unit(700, "meters"),
  62525. allForms: true
  62526. },
  62527. {
  62528. name: "Small Mega",
  62529. height: math.unit(3, "km"),
  62530. allForms: true
  62531. },
  62532. {
  62533. name: "Mega",
  62534. height: math.unit(15, "km"),
  62535. allForms: true
  62536. },
  62537. {
  62538. name: "Giga",
  62539. height: math.unit(300, "km"),
  62540. allForms: true
  62541. },
  62542. {
  62543. name: "Giga+",
  62544. height: math.unit(1750, "km"),
  62545. allForms: true
  62546. },
  62547. {
  62548. name: "Continental",
  62549. height: math.unit(5000, "km"),
  62550. allForms: true
  62551. },
  62552. {
  62553. name: "Terra",
  62554. height: math.unit(20000, "km"),
  62555. allForms: true
  62556. },
  62557. {
  62558. name: "Terra+",
  62559. height: math.unit(300000, "km"),
  62560. allForms: true
  62561. },
  62562. {
  62563. name: "Solar",
  62564. height: math.unit(40000000, "km"),
  62565. allForms: true
  62566. },
  62567. {
  62568. name: "Galactic",
  62569. height: math.unit(810133, "parsecs"),
  62570. allForms: true
  62571. },
  62572. {
  62573. name: "Universal",
  62574. height: math.unit(25, "universes"),
  62575. allForms: true
  62576. },
  62577. ],
  62578. {
  62579. "shark": {
  62580. name: "Shark",
  62581. default: true
  62582. },
  62583. "dragon": {
  62584. name: "Dragon",
  62585. },
  62586. }
  62587. ))
  62588. characterMakers.push(() => makeCharacter(
  62589. { name: "Sergis", species: ["komodo-dragon", "deity"], tags: ["anthro"] },
  62590. {
  62591. front: {
  62592. height: math.unit(2.2, "meters"),
  62593. weight: math.unit(150, "kg"),
  62594. name: "Front",
  62595. image: {
  62596. source: "./media/characters/sergis/front.svg",
  62597. extra: 1314/1312,
  62598. bottom: 112/1426
  62599. }
  62600. },
  62601. back: {
  62602. height: math.unit(2.2, "meters"),
  62603. weight: math.unit(150, "kg"),
  62604. name: "Back",
  62605. image: {
  62606. source: "./media/characters/sergis/back.svg",
  62607. extra: 1335/1333,
  62608. bottom: 19/1354
  62609. }
  62610. },
  62611. frontLewd: {
  62612. height: math.unit(2.2, "meters"),
  62613. weight: math.unit(150, "kg"),
  62614. name: "Front (Lewd)",
  62615. image: {
  62616. source: "./media/characters/sergis/front-lewd.svg",
  62617. extra: 1314/1312,
  62618. bottom: 112/1426
  62619. }
  62620. },
  62621. frontDressed: {
  62622. height: math.unit(2.2, "meters"),
  62623. weight: math.unit(150, "kg"),
  62624. name: "Front (Dressed)",
  62625. image: {
  62626. source: "./media/characters/sergis/front-dressed.svg",
  62627. extra: 1330/1328,
  62628. bottom: 95/1425
  62629. }
  62630. },
  62631. frontDressedLewd: {
  62632. height: math.unit(2.2, "meters"),
  62633. weight: math.unit(150, "kg"),
  62634. name: "Front (Dressed, Lewd)",
  62635. image: {
  62636. source: "./media/characters/sergis/front-dressed-lewd.svg",
  62637. extra: 1330/1328,
  62638. bottom: 95/1425
  62639. }
  62640. },
  62641. maw: {
  62642. height: math.unit(0.48, "meters"),
  62643. name: "Maw",
  62644. image: {
  62645. source: "./media/characters/sergis/maw.svg"
  62646. }
  62647. },
  62648. sheath: {
  62649. height: math.unit(0.38, "meters"),
  62650. name: "Sheath",
  62651. image: {
  62652. source: "./media/characters/sergis/sheath.svg"
  62653. }
  62654. },
  62655. },
  62656. [
  62657. {
  62658. name: "Incognito Size",
  62659. height: math.unit(2.2, "meters")
  62660. },
  62661. {
  62662. name: "Small Macro",
  62663. height: math.unit(40, "meters")
  62664. },
  62665. {
  62666. name: "Macro",
  62667. height: math.unit(150, "meters")
  62668. },
  62669. {
  62670. name: "Macro+",
  62671. height: math.unit(300, "meters")
  62672. },
  62673. {
  62674. name: "Mega",
  62675. height: math.unit(2.5, "km")
  62676. },
  62677. {
  62678. name: "Mega+",
  62679. height: math.unit(30, "km")
  62680. },
  62681. {
  62682. name: "Home Size",
  62683. height: math.unit(300, "km"),
  62684. default: true
  62685. },
  62686. {
  62687. name: "Giga+",
  62688. height: math.unit(1000, "km")
  62689. },
  62690. {
  62691. name: "Giga++",
  62692. height: math.unit(6000, "km")
  62693. },
  62694. {
  62695. name: "Terra",
  62696. height: math.unit(70000, "km")
  62697. },
  62698. {
  62699. name: "Terra+",
  62700. height: math.unit(200000, "km")
  62701. },
  62702. {
  62703. name: "Galactic",
  62704. height: math.unit(634200, "lightyears")
  62705. },
  62706. ]
  62707. ))
  62708. characterMakers.push(() => makeCharacter(
  62709. { name: "Spade", species: ["demon", "mouse"], tags: ["anthro"] },
  62710. {
  62711. standard: {
  62712. height: math.unit(1 + 5/12, "feet"),
  62713. name: "Standard",
  62714. image: {
  62715. source: "./media/characters/spade/standard.svg",
  62716. extra: 1794/1703,
  62717. bottom: 115/1909
  62718. }
  62719. },
  62720. disguised: {
  62721. height: math.unit(1 + 5/12, "feet"),
  62722. name: "Disguised",
  62723. image: {
  62724. source: "./media/characters/spade/disguised.svg",
  62725. extra: 1794/1700,
  62726. bottom: 98/1892
  62727. }
  62728. },
  62729. },
  62730. [
  62731. {
  62732. name: "Normal",
  62733. height: math.unit(1 + 5/12, "feet"),
  62734. default: true
  62735. },
  62736. ]
  62737. ))
  62738. characterMakers.push(() => makeCharacter(
  62739. { name: "Zeanlain", species: ["harpy-eagle"], tags: ["anthro"] },
  62740. {
  62741. frontNsfw: {
  62742. height: math.unit(5, "meters"),
  62743. weight: math.unit(2000, "kg"),
  62744. preyCapacity: math.unit(5, "people"),
  62745. name: "Front (NSFW)",
  62746. image: {
  62747. source: "./media/characters/zeanlain/front-nsfw.svg",
  62748. extra: 1087/938,
  62749. bottom: 93/1180
  62750. },
  62751. extraAttributes: {
  62752. "wingspan": {
  62753. name: "Wingspan",
  62754. power: 1,
  62755. type: "length",
  62756. base: math.unit(10, "meters")
  62757. },
  62758. "footSize": {
  62759. name: "Foot Size",
  62760. power: 1,
  62761. type: "length",
  62762. base: math.unit(0.68, "meters")
  62763. },
  62764. "cockLength": {
  62765. name: "Cock Length",
  62766. power: 1,
  62767. type: "length",
  62768. base: math.unit(1.69, "meters")
  62769. },
  62770. "ballVolume": {
  62771. name: "Ball Volume",
  62772. power: 3,
  62773. type: "volume",
  62774. base: math.unit(0.028, "m^3")
  62775. },
  62776. }
  62777. },
  62778. front: {
  62779. height: math.unit(5, "meters"),
  62780. weight: math.unit(2000, "kg"),
  62781. preyCapacity: math.unit(3, "people"),
  62782. name: "Front",
  62783. image: {
  62784. source: "./media/characters/zeanlain/front.svg",
  62785. extra: 1087/938,
  62786. bottom: 93/1180
  62787. },
  62788. extraAttributes: {
  62789. "wingspan": {
  62790. name: "Wingspan",
  62791. power: 1,
  62792. type: "length",
  62793. base: math.unit(10, "meters")
  62794. },
  62795. "footSize": {
  62796. name: "Foot Size",
  62797. power: 1,
  62798. type: "length",
  62799. base: math.unit(0.68, "meters")
  62800. },
  62801. }
  62802. },
  62803. dick: {
  62804. height: math.unit(5.15, "feet"),
  62805. name: "Dick",
  62806. image: {
  62807. source: "./media/characters/zeanlain/dick.svg"
  62808. }
  62809. },
  62810. },
  62811. [
  62812. {
  62813. name: "Normal",
  62814. height: math.unit(5, "meters"),
  62815. default: true
  62816. },
  62817. ]
  62818. ))
  62819. characterMakers.push(() => makeCharacter(
  62820. { name: "Airamis", species: ["aeromorph", "dragon"], tags: ["anthro"] },
  62821. {
  62822. front: {
  62823. height: math.unit(10, "meters"),
  62824. weight: math.unit(250000, "kg"),
  62825. name: "Front",
  62826. image: {
  62827. source: "./media/characters/airamis/front.svg",
  62828. extra: 865/835,
  62829. bottom: 13/878
  62830. }
  62831. },
  62832. },
  62833. [
  62834. {
  62835. name: "Normal",
  62836. height: math.unit(10, "meters"),
  62837. default: true
  62838. },
  62839. ]
  62840. ))
  62841. characterMakers.push(() => makeCharacter(
  62842. { name: "Corra Tourmaline", species: ["vaporeon"], tags: ["anthro"] },
  62843. {
  62844. front: {
  62845. height: math.unit(3 + 3/12, "feet"),
  62846. weight: math.unit(75, "lb"),
  62847. name: "Front",
  62848. image: {
  62849. source: "./media/characters/corra-tourmaline/front.svg",
  62850. extra: 1037/864,
  62851. bottom: 39/1076
  62852. }
  62853. },
  62854. back: {
  62855. height: math.unit(3 + 3/12, "feet"),
  62856. weight: math.unit(75, "lb"),
  62857. name: "Back",
  62858. image: {
  62859. source: "./media/characters/corra-tourmaline/back.svg",
  62860. extra: 1022/849,
  62861. bottom: 26/1048
  62862. }
  62863. },
  62864. dressed: {
  62865. height: math.unit(3 + 3/12, "feet"),
  62866. weight: math.unit(75, "lb"),
  62867. name: "Dressed",
  62868. image: {
  62869. source: "./media/characters/corra-tourmaline/dressed.svg",
  62870. extra: 1037/864,
  62871. bottom: 39/1076
  62872. }
  62873. },
  62874. beans: {
  62875. height: math.unit(0.37, "feet"),
  62876. name: "Beans",
  62877. image: {
  62878. source: "./media/characters/corra-tourmaline/beans.svg"
  62879. }
  62880. },
  62881. },
  62882. [
  62883. {
  62884. name: "Normal",
  62885. height: math.unit(3 + 3/12, "feet"),
  62886. default: true
  62887. },
  62888. {
  62889. name: "Macro",
  62890. height: math.unit(32, "feet")
  62891. },
  62892. ]
  62893. ))
  62894. characterMakers.push(() => makeCharacter(
  62895. { name: "Maki Kawa", species: ["sabertooth-tiger", "serval"], tags: ["anthro"] },
  62896. {
  62897. front: {
  62898. height: math.unit(6 + 2/12, "feet"),
  62899. weight: math.unit(203, "lb"),
  62900. name: "Front",
  62901. image: {
  62902. source: "./media/characters/maki-kawa/front.svg",
  62903. extra: 950/890,
  62904. bottom: 62/1012
  62905. }
  62906. },
  62907. back: {
  62908. height: math.unit(6 + 2/12, "feet"),
  62909. weight: math.unit(203, "lb"),
  62910. name: "Back",
  62911. image: {
  62912. source: "./media/characters/maki-kawa/back.svg",
  62913. extra: 953/878,
  62914. bottom: 49/1002
  62915. }
  62916. },
  62917. frontBarista: {
  62918. height: math.unit(6 + 2/12, "feet"),
  62919. weight: math.unit(203, "lb"),
  62920. name: "Front (Barista)",
  62921. image: {
  62922. source: "./media/characters/maki-kawa/front-barista.svg",
  62923. extra: 943/883,
  62924. bottom: 69/1012
  62925. }
  62926. },
  62927. backBarista: {
  62928. height: math.unit(6 + 2/12, "feet"),
  62929. weight: math.unit(203, "lb"),
  62930. name: "Back (Barista)",
  62931. image: {
  62932. source: "./media/characters/maki-kawa/back-barista.svg",
  62933. extra: 953/878,
  62934. bottom: 49/1002
  62935. }
  62936. },
  62937. frontWrestler: {
  62938. height: math.unit(6 + 2/12, "feet"),
  62939. weight: math.unit(203, "lb"),
  62940. name: "Front (Wrestler)",
  62941. image: {
  62942. source: "./media/characters/maki-kawa/front-wrestler.svg",
  62943. extra: 950/890,
  62944. bottom: 62/1012
  62945. }
  62946. },
  62947. backWrestler: {
  62948. height: math.unit(6 + 2/12, "feet"),
  62949. weight: math.unit(203, "lb"),
  62950. name: "Back (Wrestler)",
  62951. image: {
  62952. source: "./media/characters/maki-kawa/back-wrestler.svg",
  62953. extra: 953/878,
  62954. bottom: 49/1002
  62955. }
  62956. },
  62957. headFront: {
  62958. height: math.unit(1.64, "feet"),
  62959. name: "Head (Front)",
  62960. image: {
  62961. source: "./media/characters/maki-kawa/head-front.svg"
  62962. }
  62963. },
  62964. headSide: {
  62965. height: math.unit(1.59, "feet"),
  62966. name: "Head (Side)",
  62967. image: {
  62968. source: "./media/characters/maki-kawa/head-side.svg"
  62969. }
  62970. },
  62971. paw: {
  62972. height: math.unit(0.9, "feet"),
  62973. name: "Paw",
  62974. image: {
  62975. source: "./media/characters/maki-kawa/paw.svg"
  62976. }
  62977. },
  62978. },
  62979. [
  62980. {
  62981. name: "Normal",
  62982. height: math.unit(6 + 2/12, "feet"),
  62983. default: true
  62984. },
  62985. {
  62986. name: "Macro",
  62987. height: math.unit(617, "feet")
  62988. },
  62989. ]
  62990. ))
  62991. characterMakers.push(() => makeCharacter(
  62992. { name: "Lennox", species: ["wolf"], tags: ["anthro"] },
  62993. {
  62994. frontNsfw: {
  62995. height: math.unit(10, "feet"),
  62996. weight: math.unit(1500, "lb"),
  62997. name: "Front (NSFW)",
  62998. image: {
  62999. source: "./media/characters/lennox/front-nsfw.svg",
  63000. extra: 1623/1496,
  63001. bottom: 18/1641
  63002. },
  63003. extraAttributes: {
  63004. "cumVolume": {
  63005. name: "Cum Volume",
  63006. power: 3,
  63007. type: "volume",
  63008. base: math.unit(75, "liters")
  63009. },
  63010. }
  63011. },
  63012. backNsfw: {
  63013. height: math.unit(10, "feet"),
  63014. weight: math.unit(1500, "lb"),
  63015. name: "Back (NSFW)",
  63016. image: {
  63017. source: "./media/characters/lennox/back-nsfw.svg",
  63018. extra: 1641/1481,
  63019. bottom: 13/1654
  63020. },
  63021. extraAttributes: {
  63022. "cumVolume": {
  63023. name: "Cum Volume",
  63024. power: 3,
  63025. type: "volume",
  63026. base: math.unit(75, "liters")
  63027. },
  63028. }
  63029. },
  63030. frontSfw: {
  63031. height: math.unit(10, "feet"),
  63032. weight: math.unit(1500, "lb"),
  63033. name: "Front (SFW)",
  63034. image: {
  63035. source: "./media/characters/lennox/front-sfw.svg",
  63036. extra: 1623/1496,
  63037. bottom: 18/1641
  63038. }
  63039. },
  63040. backSfw: {
  63041. height: math.unit(10, "feet"),
  63042. weight: math.unit(1500, "lb"),
  63043. name: "Back (SFW)",
  63044. image: {
  63045. source: "./media/characters/lennox/back-sfw.svg",
  63046. extra: 1641/1481,
  63047. bottom: 13/1654
  63048. }
  63049. },
  63050. maw: {
  63051. height: math.unit(2.94, "feet"),
  63052. name: "Maw",
  63053. image: {
  63054. source: "./media/characters/lennox/maw.svg"
  63055. }
  63056. },
  63057. dick: {
  63058. height: math.unit(0.8323, "meters"),
  63059. weight: math.unit(0.07315728637*1000, "kg"),
  63060. name: "Dick",
  63061. image: {
  63062. source: "./media/characters/lennox/dick.svg"
  63063. },
  63064. extraAttributes: {
  63065. "thickness": {
  63066. name: "Thickness",
  63067. power: 1,
  63068. type: "length",
  63069. base: math.unit(0.330, "meters")
  63070. },
  63071. "length": {
  63072. name: "Length",
  63073. power: 1,
  63074. type: "length",
  63075. base: math.unit(0.8, "meters")
  63076. },
  63077. "cumVolume": {
  63078. name: "Cum Volume",
  63079. power: 3,
  63080. type: "volume",
  63081. base: math.unit(75, "liters")
  63082. },
  63083. }
  63084. },
  63085. },
  63086. [
  63087. {
  63088. name: "Micro",
  63089. height: math.unit(1, "inch")
  63090. },
  63091. {
  63092. name: "Normal",
  63093. height: math.unit(10, "feet"),
  63094. default: true
  63095. },
  63096. {
  63097. name: "Macro",
  63098. height: math.unit(200, "feet")
  63099. },
  63100. ]
  63101. ))
  63102. characterMakers.push(() => makeCharacter(
  63103. { name: "Vyse Iron-Thunder", species: ["luxray", "shiny"], tags: ["anthro"] },
  63104. {
  63105. frontDressed: {
  63106. height: math.unit(15 + 7/12, "feet"),
  63107. weight: math.unit(5000, "lb"),
  63108. name: "Front (Dressed)",
  63109. image: {
  63110. source: "./media/characters/vyse-iron-thunder/front-dressed.svg",
  63111. extra: 1136/1023,
  63112. bottom: 51/1187
  63113. }
  63114. },
  63115. backDressed: {
  63116. height: math.unit(15 + 7/12, "feet"),
  63117. weight: math.unit(5000, "lb"),
  63118. name: "Back (Dressed)",
  63119. image: {
  63120. source: "./media/characters/vyse-iron-thunder/back-dressed.svg",
  63121. extra: 2359/2143,
  63122. bottom: 103/2462
  63123. }
  63124. },
  63125. front: {
  63126. height: math.unit(15 + 7/12, "feet"),
  63127. weight: math.unit(5000, "lb"),
  63128. name: "Front",
  63129. image: {
  63130. source: "./media/characters/vyse-iron-thunder/front.svg",
  63131. extra: 1136/1023,
  63132. bottom: 51/1187
  63133. }
  63134. },
  63135. hand: {
  63136. height: math.unit(2.36, "feet"),
  63137. name: "Hand",
  63138. image: {
  63139. source: "./media/characters/vyse-iron-thunder/hand.svg"
  63140. }
  63141. },
  63142. foot: {
  63143. height: math.unit(1.72, "feet"),
  63144. name: "Foot",
  63145. image: {
  63146. source: "./media/characters/vyse-iron-thunder/foot.svg"
  63147. }
  63148. },
  63149. mouth: {
  63150. height: math.unit(2, "feet"),
  63151. name: "Mouth",
  63152. image: {
  63153. source: "./media/characters/vyse-iron-thunder/mouth.svg"
  63154. }
  63155. },
  63156. eye: {
  63157. height: math.unit(0.58, "feet"),
  63158. name: "Eye",
  63159. image: {
  63160. source: "./media/characters/vyse-iron-thunder/eye.svg"
  63161. }
  63162. },
  63163. },
  63164. [
  63165. {
  63166. name: "Normal",
  63167. height: math.unit(15 + 7/12, "feet"),
  63168. default: true
  63169. },
  63170. {
  63171. name: "Macro",
  63172. height: math.unit(157, "feet")
  63173. },
  63174. {
  63175. name: "Macro+",
  63176. height: math.unit(1570, "feet")
  63177. },
  63178. {
  63179. name: "Macro++",
  63180. height: math.unit(15700, "feet")
  63181. },
  63182. {
  63183. name: "Macro+++",
  63184. height: math.unit(157000, "feet")
  63185. },
  63186. {
  63187. name: "Macro++++",
  63188. height: math.unit(1570000, "feet")
  63189. },
  63190. ]
  63191. ))
  63192. characterMakers.push(() => makeCharacter(
  63193. { name: "Moonbeam", species: ["latex", "wolf"], tags: ["feral"] },
  63194. {
  63195. side: {
  63196. height: math.unit(6, "feet"),
  63197. weight: math.unit(115, "lb"),
  63198. name: "Side",
  63199. image: {
  63200. source: "./media/characters/moonbeam/side.svg",
  63201. extra: 839/485,
  63202. bottom: 60/899
  63203. }
  63204. },
  63205. },
  63206. [
  63207. {
  63208. name: "Normal",
  63209. height: math.unit(6, "feet"),
  63210. default: true
  63211. },
  63212. ]
  63213. ))
  63214. characterMakers.push(() => makeCharacter(
  63215. { name: "Baltica", species: ["orca"], tags: ["anthro"] },
  63216. {
  63217. front: {
  63218. height: math.unit(3500, "miles"),
  63219. weight: math.unit(1659, "petatonnes"),
  63220. name: "Front",
  63221. image: {
  63222. source: "./media/characters/baltica/front.svg",
  63223. extra: 429/428,
  63224. bottom: 41/470
  63225. }
  63226. },
  63227. back: {
  63228. height: math.unit(3500, "miles"),
  63229. weight: math.unit(1659, "petatonnes"),
  63230. name: "Back",
  63231. image: {
  63232. source: "./media/characters/baltica/back.svg",
  63233. extra: 452/451,
  63234. bottom: 8/460
  63235. }
  63236. },
  63237. },
  63238. [
  63239. {
  63240. name: "Gigamacro",
  63241. height: math.unit(3500, "miles"),
  63242. default: true
  63243. },
  63244. ]
  63245. ))
  63246. characterMakers.push(() => makeCharacter(
  63247. { name: "Shadow (Wolf)", species: ["wolf", "demi"], tags: ["anthro"] },
  63248. {
  63249. front: {
  63250. height: math.unit(6 + 10/12, "feet"),
  63251. weight: math.unit(200, "lb"),
  63252. name: "Front",
  63253. image: {
  63254. source: "./media/characters/shadow-wolf/front.svg",
  63255. extra: 1931/1760,
  63256. bottom: 88/2019
  63257. }
  63258. },
  63259. },
  63260. [
  63261. {
  63262. name: "Normal",
  63263. height: math.unit(6 + 10/12, "feet"),
  63264. default: true
  63265. },
  63266. ]
  63267. ))
  63268. characterMakers.push(() => makeCharacter(
  63269. { name: "Quincy (Praying Mantis)", species: ["praying-mantis"], tags: ["anthro"] },
  63270. {
  63271. front: {
  63272. height: math.unit(5 + 10/12, "feet"),
  63273. name: "Front",
  63274. image: {
  63275. source: "./media/characters/quincy-praying-mantis/front.svg",
  63276. extra: 1055/891,
  63277. bottom: 92/1147
  63278. }
  63279. },
  63280. soles: {
  63281. height: math.unit(0.85, "feet"),
  63282. name: "Soles",
  63283. image: {
  63284. source: "./media/characters/quincy-praying-mantis/soles.svg",
  63285. extra: 429/324,
  63286. bottom: 89/518
  63287. },
  63288. extraAttributes: {
  63289. "shoeSize": {
  63290. name: "Shoe Size",
  63291. power: 1,
  63292. type: "length",
  63293. base: math.unit(23, "ShoeSizeMensUS"),
  63294. defaultUnit: "ShoeSizeMensUS"
  63295. },
  63296. }
  63297. },
  63298. foot: {
  63299. height: math.unit(0.72, "feet"),
  63300. name: "Foot",
  63301. image: {
  63302. source: "./media/characters/quincy-praying-mantis/foot.svg",
  63303. extra: 349/349,
  63304. bottom: 76/425
  63305. }
  63306. },
  63307. },
  63308. [
  63309. {
  63310. name: "Normal",
  63311. height: math.unit(5 + 10/12, "feet"),
  63312. default: true
  63313. },
  63314. ]
  63315. ))
  63316. characterMakers.push(() => makeCharacter(
  63317. { name: "Christopher Redwood", species: ["gray-wolf"], tags: ["anthro"] },
  63318. {
  63319. front: {
  63320. height: math.unit(6, "feet"),
  63321. name: "Front",
  63322. image: {
  63323. source: "./media/characters/christopher-redwood/front.svg",
  63324. extra: 1402/1341,
  63325. bottom: 23/1425
  63326. }
  63327. },
  63328. back: {
  63329. height: math.unit(6, "feet"),
  63330. name: "Back",
  63331. image: {
  63332. source: "./media/characters/christopher-redwood/back.svg",
  63333. extra: 1406/1345,
  63334. bottom: 36/1442
  63335. }
  63336. },
  63337. head: {
  63338. height: math.unit(1.685, "feet"),
  63339. name: "Head",
  63340. image: {
  63341. source: "./media/characters/christopher-redwood/head.svg"
  63342. }
  63343. },
  63344. },
  63345. [
  63346. {
  63347. name: "Normal",
  63348. height: math.unit(6, "feet"),
  63349. default: true
  63350. },
  63351. ]
  63352. ))
  63353. characterMakers.push(() => makeCharacter(
  63354. { name: "Kara (Fox)", species: ["fox"], tags: ["anthro"] },
  63355. {
  63356. front: {
  63357. height: math.unit(1.9, "meters"),
  63358. weight: math.unit(140, "lb"),
  63359. name: "Front",
  63360. image: {
  63361. source: "./media/characters/kara-fox/front.svg",
  63362. extra: 766/711,
  63363. bottom: 41/807
  63364. }
  63365. },
  63366. back: {
  63367. height: math.unit(1.9, "meters"),
  63368. weight: math.unit(140, "lb"),
  63369. name: "Back",
  63370. image: {
  63371. source: "./media/characters/kara-fox/back.svg",
  63372. extra: 766/596,
  63373. bottom: 29/795
  63374. }
  63375. },
  63376. maw: {
  63377. height: math.unit(0.78, "feet"),
  63378. name: "Maw",
  63379. image: {
  63380. source: "./media/characters/kara-fox/maw.svg"
  63381. }
  63382. },
  63383. pawpads: {
  63384. height: math.unit(0.96, "feet"),
  63385. name: "Pawpads",
  63386. image: {
  63387. source: "./media/characters/kara-fox/pawpads.svg"
  63388. }
  63389. },
  63390. },
  63391. [
  63392. {
  63393. name: "Normal",
  63394. height: math.unit(1.9, "meters"),
  63395. default: true
  63396. },
  63397. {
  63398. name: "Giantess",
  63399. height: math.unit(80, "meters")
  63400. },
  63401. ]
  63402. ))
  63403. characterMakers.push(() => makeCharacter(
  63404. { name: "Naomi (Espeon)", species: ["espeon"], tags: ["anthro"] },
  63405. {
  63406. front: {
  63407. height: math.unit(12, "feet"),
  63408. name: "Front",
  63409. image: {
  63410. source: "./media/characters/naomi-espeon/front.svg",
  63411. extra: 892/797,
  63412. bottom: 5/897
  63413. }
  63414. },
  63415. back: {
  63416. height: math.unit(12, "feet"),
  63417. name: "Back",
  63418. image: {
  63419. source: "./media/characters/naomi-espeon/back.svg",
  63420. extra: 890/785,
  63421. bottom: 12/902
  63422. }
  63423. },
  63424. },
  63425. [
  63426. {
  63427. name: "Normal",
  63428. height: math.unit(12, "feet"),
  63429. default: true
  63430. },
  63431. ]
  63432. ))
  63433. characterMakers.push(() => makeCharacter(
  63434. { name: "Asher Heulfyrn", species: ["skullwolf"], tags: ["anthro", "taur"] },
  63435. {
  63436. anthro_front: {
  63437. height: math.unit(8, "feet"),
  63438. weight: math.unit(625, "lb"),
  63439. name: "Front",
  63440. image: {
  63441. source: "./media/characters/asher-heulfyrn/anthro-front.svg",
  63442. extra: 638/574,
  63443. bottom: 73/711
  63444. },
  63445. form: "anthro",
  63446. default: true
  63447. },
  63448. anthro_back: {
  63449. height: math.unit(8, "feet"),
  63450. weight: math.unit(625, "lb"),
  63451. name: "Back",
  63452. image: {
  63453. source: "./media/characters/asher-heulfyrn/anthro-back.svg",
  63454. extra: 674/614,
  63455. bottom: 7/681
  63456. },
  63457. form: "anthro",
  63458. },
  63459. taur_side: {
  63460. height: math.unit(16, "feet"),
  63461. weight: math.unit(4.5, "tons"),
  63462. name: "Side",
  63463. image: {
  63464. source: "./media/characters/asher-heulfyrn/taur-side.svg",
  63465. extra: 704/646,
  63466. bottom: 132/836
  63467. },
  63468. form: "taur",
  63469. default: true
  63470. },
  63471. },
  63472. [
  63473. {
  63474. name: "Normal",
  63475. height: math.unit(8, "feet"),
  63476. default: true,
  63477. form: "anthro"
  63478. },
  63479. {
  63480. name: "Normal",
  63481. height: math.unit(16, "feet"),
  63482. default: true,
  63483. form: "taur"
  63484. },
  63485. ],
  63486. {
  63487. "anthro": {
  63488. name: "Anthro",
  63489. default: true
  63490. },
  63491. "taur": {
  63492. name: "Taur",
  63493. },
  63494. }
  63495. ))
  63496. characterMakers.push(() => makeCharacter(
  63497. { name: "Amelie", species: ["ferrin"], tags: ["anthro"] },
  63498. {
  63499. front: {
  63500. height: math.unit(190, "cm"),
  63501. weight: math.unit(110, "kg"),
  63502. name: "Front",
  63503. image: {
  63504. source: "./media/characters/amelie/front.svg",
  63505. extra: 530/442,
  63506. bottom: 35/565
  63507. }
  63508. },
  63509. },
  63510. [
  63511. {
  63512. name: "Normal",
  63513. height: math.unit(190, "cm"),
  63514. default: true
  63515. },
  63516. ]
  63517. ))
  63518. characterMakers.push(() => makeCharacter(
  63519. { name: "Valence", species: ["skulldragon"], tags: ["anthro"] },
  63520. {
  63521. front: {
  63522. height: math.unit(21, "feet"),
  63523. weight: math.unit(30000, "lb"),
  63524. name: "Front",
  63525. image: {
  63526. source: "./media/characters/valence/front.svg",
  63527. extra: 1430/1306,
  63528. bottom: 51/1481
  63529. }
  63530. },
  63531. },
  63532. [
  63533. {
  63534. name: "Normal",
  63535. height: math.unit(21, "feet"),
  63536. default: true
  63537. },
  63538. ]
  63539. ))
  63540. characterMakers.push(() => makeCharacter(
  63541. { name: "Aurora Adkins", species: ["rusty-spotted-cat"], tags: ["anthro"] },
  63542. {
  63543. front: {
  63544. height: math.unit(5 + 9/12, "feet"),
  63545. weight: math.unit(170, "lb"),
  63546. name: "Front",
  63547. image: {
  63548. source: "./media/characters/aurora-adkins/front.svg",
  63549. extra: 1141/1089,
  63550. bottom: 41/1182
  63551. }
  63552. },
  63553. },
  63554. [
  63555. {
  63556. name: "Tiny",
  63557. height: math.unit(7, "mm")
  63558. },
  63559. {
  63560. name: "Small",
  63561. height: math.unit(3.4, "inches")
  63562. },
  63563. {
  63564. name: "Normal",
  63565. height: math.unit(5 + 9/12, "feet"),
  63566. default: true
  63567. },
  63568. {
  63569. name: "Big",
  63570. height: math.unit(31, "feet")
  63571. },
  63572. {
  63573. name: "Giant",
  63574. height: math.unit(300, "feet")
  63575. },
  63576. ]
  63577. ))
  63578. characterMakers.push(() => makeCharacter(
  63579. { name: "Cyber", species: ["maned-wolf", "lynx", "deity"], tags: ["anthro"] },
  63580. {
  63581. front: {
  63582. height: math.unit(5 + 6/12, "feet"),
  63583. weight: math.unit(210, "lb"),
  63584. name: "Front",
  63585. image: {
  63586. source: "./media/characters/cyber/front.svg",
  63587. extra: 1968/1798,
  63588. bottom: 10/1978
  63589. },
  63590. extraAttributes: {
  63591. "shoeSize": {
  63592. name: "Shoe Size",
  63593. power: 1,
  63594. type: "length",
  63595. base: math.unit(30, "ShoeSizeMensUS")
  63596. },
  63597. }
  63598. },
  63599. },
  63600. [
  63601. {
  63602. name: "Normal",
  63603. height: math.unit(5 + 6/12, "feet"),
  63604. default: true
  63605. },
  63606. ]
  63607. ))
  63608. characterMakers.push(() => makeCharacter(
  63609. { name: "Sapphire Wairimea", species: ["elf"], tags: ["anthro"] },
  63610. {
  63611. front: {
  63612. height: math.unit(6 + 6/12, "feet"),
  63613. weight: math.unit(140, "lb"),
  63614. name: "Front",
  63615. image: {
  63616. source: "./media/characters/sapphire-wairimea/front.svg",
  63617. extra: 475/458,
  63618. bottom: 14/489
  63619. }
  63620. },
  63621. },
  63622. [
  63623. {
  63624. name: "Normal",
  63625. height: math.unit(6 + 6/12, "feet")
  63626. },
  63627. {
  63628. name: "Macro",
  63629. height: math.unit(132, "feet"),
  63630. default: true
  63631. },
  63632. ]
  63633. ))
  63634. characterMakers.push(() => makeCharacter(
  63635. { name: "Cirkazi", species: ["elf"], tags: ["anthro"] },
  63636. {
  63637. front: {
  63638. height: math.unit(1.6, "meters"),
  63639. weight: math.unit(100, "lb"),
  63640. name: "Front",
  63641. image: {
  63642. source: "./media/characters/cirkazi/front.svg",
  63643. extra: 489/477,
  63644. bottom: 0/489
  63645. }
  63646. },
  63647. },
  63648. [
  63649. {
  63650. name: "Normal",
  63651. height: math.unit(1.6, "meters")
  63652. },
  63653. {
  63654. name: "Macro",
  63655. height: math.unit(800, "feet"),
  63656. default: true
  63657. },
  63658. ]
  63659. ))
  63660. characterMakers.push(() => makeCharacter(
  63661. { name: "Corrin Cavelli", species: ["human"], tags: ["anthro"] },
  63662. {
  63663. front: {
  63664. height: math.unit(5 + 10/12, "feet"),
  63665. weight: math.unit(145, "lb"),
  63666. name: "Front",
  63667. image: {
  63668. source: "./media/characters/corrin-cavelli/front.svg",
  63669. extra: 483/464,
  63670. bottom: 6/489
  63671. }
  63672. },
  63673. },
  63674. [
  63675. {
  63676. name: "Human",
  63677. height: math.unit(5 + 10/12, "feet")
  63678. },
  63679. {
  63680. name: "Giant",
  63681. height: math.unit(210, "feet"),
  63682. default: true
  63683. },
  63684. ]
  63685. ))
  63686. characterMakers.push(() => makeCharacter(
  63687. { name: "Lori Lopez", species: ["human"], tags: ["anthro"] },
  63688. {
  63689. back: {
  63690. height: math.unit(5 + 6/12, "feet"),
  63691. weight: math.unit(115, "lb"),
  63692. name: "Back",
  63693. image: {
  63694. source: "./media/characters/lori-lopez/back.svg",
  63695. extra: 483/474,
  63696. bottom: 6/489
  63697. }
  63698. },
  63699. },
  63700. [
  63701. {
  63702. name: "Human",
  63703. height: math.unit(5 + 6/12, "feet")
  63704. },
  63705. {
  63706. name: "Macro",
  63707. height: math.unit(198, "feet"),
  63708. default: true
  63709. },
  63710. ]
  63711. ))
  63712. characterMakers.push(() => makeCharacter(
  63713. { name: "Sylvia Beauregard", species: ["human"], tags: ["anthro"] },
  63714. {
  63715. front: {
  63716. height: math.unit(6, "feet"),
  63717. weight: math.unit(220, "lb"),
  63718. name: "Front",
  63719. image: {
  63720. source: "./media/characters/sylvia-beauregard/front.svg",
  63721. extra: 483/479,
  63722. bottom: 6/489
  63723. }
  63724. },
  63725. },
  63726. [
  63727. {
  63728. name: "Macro",
  63729. height: math.unit(2071, "feet"),
  63730. default: true
  63731. },
  63732. ]
  63733. ))
  63734. characterMakers.push(() => makeCharacter(
  63735. { name: "Akiko Takahashi", species: ["human"], tags: ["anthro"] },
  63736. {
  63737. back: {
  63738. height: math.unit(5 + 6/12, "feet"),
  63739. weight: math.unit(160, "lb"),
  63740. name: "Back",
  63741. image: {
  63742. source: "./media/characters/akiko-takahashi/back.svg",
  63743. extra: 459/454,
  63744. bottom: 27/486
  63745. }
  63746. },
  63747. },
  63748. [
  63749. {
  63750. name: "Human",
  63751. height: math.unit(5 + 6/12, "feet")
  63752. },
  63753. {
  63754. name: "Macro",
  63755. height: math.unit(198, "feet"),
  63756. default: true
  63757. },
  63758. {
  63759. name: "Megamacro",
  63760. height: math.unit(7128, "feet")
  63761. },
  63762. ]
  63763. ))
  63764. characterMakers.push(() => makeCharacter(
  63765. { name: "Velvet Garza", species: ["human"], tags: ["anthro"] },
  63766. {
  63767. front: {
  63768. height: math.unit(6, "feet"),
  63769. weight: math.unit(140, "lb"),
  63770. name: "Front",
  63771. image: {
  63772. source: "./media/characters/velvet-garza/front.svg",
  63773. extra: 480/462,
  63774. bottom: 7/487
  63775. }
  63776. },
  63777. },
  63778. [
  63779. {
  63780. name: "Macro",
  63781. height: math.unit(37, "feet"),
  63782. default: true
  63783. },
  63784. ]
  63785. ))
  63786. characterMakers.push(() => makeCharacter(
  63787. { name: "Gaia", species: ["deity", "human"], tags: ["anthro"] },
  63788. {
  63789. front: {
  63790. height: math.unit(7 + 6/12, "feet"),
  63791. weight: math.unit(400, "lb"),
  63792. name: "Front",
  63793. image: {
  63794. source: "./media/characters/gaia/front.svg",
  63795. extra: 474/463,
  63796. bottom: 13/487
  63797. }
  63798. },
  63799. },
  63800. [
  63801. {
  63802. name: "MiniMacro",
  63803. height: math.unit(7 + 6/12, "feet")
  63804. },
  63805. {
  63806. name: "GigaMacro",
  63807. height: math.unit(14500, "feet"),
  63808. default: true
  63809. },
  63810. ]
  63811. ))
  63812. characterMakers.push(() => makeCharacter(
  63813. { name: "Tim", species: ["rabbit"], tags: ["anthro"] },
  63814. {
  63815. front: {
  63816. height: math.unit(6, "feet"),
  63817. weight: math.unit(150, "lb"),
  63818. name: "Front",
  63819. image: {
  63820. source: "./media/characters/tim/front.svg",
  63821. extra: 1878/1743,
  63822. bottom: 9/1887
  63823. }
  63824. },
  63825. frontDressed: {
  63826. height: math.unit(6, "feet"),
  63827. weight: math.unit(150, "lb"),
  63828. name: "Front (Dressed)",
  63829. image: {
  63830. source: "./media/characters/tim/front-dressed.svg",
  63831. extra: 1765/1485,
  63832. bottom: 48/1813
  63833. }
  63834. },
  63835. backDressed: {
  63836. height: math.unit(6, "feet"),
  63837. weight: math.unit(150, "lb"),
  63838. name: "Back (Dressed)",
  63839. image: {
  63840. source: "./media/characters/tim/back-dressed.svg",
  63841. extra: 1750/1465,
  63842. bottom: 25/1775
  63843. }
  63844. },
  63845. dick: {
  63846. height: math.unit(1.5, "feet"),
  63847. weight: math.unit(6, "lb"),
  63848. name: "Dick",
  63849. image: {
  63850. source: "./media/characters/tim/dick.svg"
  63851. }
  63852. },
  63853. hand: {
  63854. height: math.unit(0.522, "feet"),
  63855. name: "Hand",
  63856. image: {
  63857. source: "./media/characters/tim/hand.svg"
  63858. }
  63859. },
  63860. palm: {
  63861. height: math.unit(0.48, "feet"),
  63862. name: "Palm",
  63863. image: {
  63864. source: "./media/characters/tim/palm.svg"
  63865. }
  63866. },
  63867. paw: {
  63868. height: math.unit(0.9, "feet"),
  63869. name: "Paw",
  63870. image: {
  63871. source: "./media/characters/tim/paw.svg"
  63872. }
  63873. },
  63874. sole: {
  63875. height: math.unit(0.88, "feet"),
  63876. name: "Sole",
  63877. image: {
  63878. source: "./media/characters/tim/sole.svg"
  63879. }
  63880. },
  63881. },
  63882. [
  63883. {
  63884. name: "Macro",
  63885. height: math.unit(1000, "feet")
  63886. },
  63887. {
  63888. name: "Megamacro",
  63889. height: math.unit(10000, "feet"),
  63890. default: true
  63891. },
  63892. {
  63893. name: "Megamacro+",
  63894. height: math.unit(50000, "feet")
  63895. },
  63896. {
  63897. name: "Gigamacro",
  63898. height: math.unit(150000, "km")
  63899. },
  63900. ]
  63901. ))
  63902. characterMakers.push(() => makeCharacter(
  63903. { name: "Abel Delreoux", species: ["maine-coon"], tags: ["anthro"] },
  63904. {
  63905. front: {
  63906. height: math.unit(5 + 8/12, "feet"),
  63907. weight: math.unit(170, "lb"),
  63908. name: "Front",
  63909. image: {
  63910. source: "./media/characters/abel-delreoux/front.svg",
  63911. extra: 1615/1500,
  63912. bottom: 82/1697
  63913. }
  63914. },
  63915. back: {
  63916. height: math.unit(5 + 8/12, "feet"),
  63917. weight: math.unit(170, "lb"),
  63918. name: "Back",
  63919. image: {
  63920. source: "./media/characters/abel-delreoux/back.svg",
  63921. extra: 1644/1534,
  63922. bottom: 24/1668
  63923. }
  63924. },
  63925. casual: {
  63926. height: math.unit(5 + 8/12, "feet"),
  63927. weight: math.unit(170, "lb"),
  63928. name: "Casual",
  63929. image: {
  63930. source: "./media/characters/abel-delreoux/casual.svg",
  63931. extra: 1716/1598,
  63932. bottom: 29/1745
  63933. }
  63934. },
  63935. sleepy: {
  63936. height: math.unit(5 + 8/12, "feet"),
  63937. weight: math.unit(170, "lb"),
  63938. name: "Sleepy",
  63939. image: {
  63940. source: "./media/characters/abel-delreoux/sleepy.svg",
  63941. extra: 1649/1573,
  63942. bottom: 22/1671
  63943. }
  63944. },
  63945. fem: {
  63946. height: math.unit(5 + 8/12, "feet"),
  63947. weight: math.unit(170, "lb"),
  63948. name: "Fem",
  63949. image: {
  63950. source: "./media/characters/abel-delreoux/fem.svg",
  63951. extra: 1680/1564,
  63952. bottom: 17/1697
  63953. }
  63954. },
  63955. hand: {
  63956. height: math.unit(0.78, "feet"),
  63957. name: "Hand",
  63958. image: {
  63959. source: "./media/characters/abel-delreoux/hand.svg"
  63960. }
  63961. },
  63962. paw: {
  63963. height: math.unit(0.78, "feet"),
  63964. name: "Paw",
  63965. image: {
  63966. source: "./media/characters/abel-delreoux/paw.svg"
  63967. }
  63968. },
  63969. },
  63970. [
  63971. {
  63972. name: "Normal",
  63973. height: math.unit(5 + 8/12, "feet"),
  63974. default: true
  63975. },
  63976. ]
  63977. ))
  63978. characterMakers.push(() => makeCharacter(
  63979. { name: "Meus", species: ["phoenix"], tags: ["anthro"] },
  63980. {
  63981. front: {
  63982. height: math.unit(6, "feet"),
  63983. weight: math.unit(159, "lb"),
  63984. name: "Front",
  63985. image: {
  63986. source: "./media/characters/meus/front.svg",
  63987. extra: 938/843,
  63988. bottom: 37/975
  63989. }
  63990. },
  63991. back: {
  63992. height: math.unit(6, "feet"),
  63993. weight: math.unit(159, "lb"),
  63994. name: "Back",
  63995. image: {
  63996. source: "./media/characters/meus/back.svg",
  63997. extra: 967/873,
  63998. bottom: 12/979
  63999. }
  64000. },
  64001. },
  64002. [
  64003. {
  64004. name: "Micro",
  64005. height: math.unit(2, "inches")
  64006. },
  64007. {
  64008. name: "Mini",
  64009. height: math.unit(6, "inches")
  64010. },
  64011. {
  64012. name: "Normal",
  64013. height: math.unit(6, "feet"),
  64014. default: true
  64015. },
  64016. {
  64017. name: "Macro",
  64018. height: math.unit(84, "feet")
  64019. },
  64020. ]
  64021. ))
  64022. characterMakers.push(() => makeCharacter(
  64023. { name: "Yamato", species: ["kobold"], tags: ["anthro"] },
  64024. {
  64025. front: {
  64026. height: math.unit(60, "cm"),
  64027. weight: math.unit(18, "kg"),
  64028. name: "Front",
  64029. image: {
  64030. source: "./media/characters/yamato/front.svg",
  64031. extra: 733/688,
  64032. bottom: 29/762
  64033. }
  64034. },
  64035. },
  64036. [
  64037. {
  64038. name: "Micro",
  64039. height: math.unit(6, "cm")
  64040. },
  64041. {
  64042. name: "Normal",
  64043. height: math.unit(60, "cm"),
  64044. default: true
  64045. },
  64046. ]
  64047. ))
  64048. characterMakers.push(() => makeCharacter(
  64049. { name: "Barus", species: ["deity"], tags: ["anthro"] },
  64050. {
  64051. front: {
  64052. height: math.unit(9, "feet"),
  64053. weight: math.unit(518, "lb"),
  64054. name: "Front",
  64055. image: {
  64056. source: "./media/characters/barus/front.svg",
  64057. extra: 1877/1795,
  64058. bottom: 55/1932
  64059. }
  64060. },
  64061. },
  64062. [
  64063. {
  64064. name: "Base Height",
  64065. height: math.unit(9, "feet"),
  64066. default: true
  64067. },
  64068. {
  64069. name: "Large",
  64070. height: math.unit(18, "feet")
  64071. },
  64072. {
  64073. name: "Giant",
  64074. height: math.unit(100, "feet")
  64075. },
  64076. {
  64077. name: "Huge",
  64078. height: math.unit(500, "feet")
  64079. },
  64080. {
  64081. name: "Enormous",
  64082. height: math.unit(300, "meters")
  64083. },
  64084. {
  64085. name: "Deity Among Man",
  64086. height: math.unit(3000, "meters")
  64087. },
  64088. ]
  64089. ))
  64090. characterMakers.push(() => makeCharacter(
  64091. { name: "Yari", species: ["sergal"], tags: ["anthro"] },
  64092. {
  64093. front: {
  64094. height: math.unit(1.7, "meters"),
  64095. name: "Front",
  64096. image: {
  64097. source: "./media/characters/yari/front.svg",
  64098. extra: 1210/1125,
  64099. bottom: 283/1493
  64100. }
  64101. },
  64102. back: {
  64103. height: math.unit(1.7, "meters"),
  64104. name: "Back",
  64105. image: {
  64106. source: "./media/characters/yari/back.svg",
  64107. extra: 1240/1195,
  64108. bottom: 180/1420
  64109. }
  64110. },
  64111. head: {
  64112. height: math.unit(1.26, "feet"),
  64113. name: "Head",
  64114. image: {
  64115. source: "./media/characters/yari/head.svg"
  64116. }
  64117. },
  64118. },
  64119. [
  64120. {
  64121. name: "Nano",
  64122. height: math.unit(0.5, "mm")
  64123. },
  64124. {
  64125. name: "Micro",
  64126. height: math.unit(3, "inches")
  64127. },
  64128. {
  64129. name: "Short",
  64130. height: math.unit(1.5, "meters")
  64131. },
  64132. {
  64133. name: "Norm",
  64134. height: math.unit(1.7, "meters"),
  64135. default: true
  64136. },
  64137. ]
  64138. ))
  64139. characterMakers.push(() => makeCharacter(
  64140. { name: "Salem", species: ["mouse"], tags: ["anthro"] },
  64141. {
  64142. front: {
  64143. height: math.unit(5 + 2/12, "feet"),
  64144. weight: math.unit(110, "lb"),
  64145. name: "Front",
  64146. image: {
  64147. source: "./media/characters/salem/front.svg",
  64148. extra: 1895/1800,
  64149. bottom: 23/1918
  64150. }
  64151. },
  64152. back: {
  64153. height: math.unit(5 + 2/12, "feet"),
  64154. weight: math.unit(110, "lb"),
  64155. name: "Back",
  64156. image: {
  64157. source: "./media/characters/salem/back.svg",
  64158. extra: 1875/1802,
  64159. bottom: 20/1895
  64160. }
  64161. },
  64162. head: {
  64163. height: math.unit(1, "feet"),
  64164. name: "Head",
  64165. image: {
  64166. source: "./media/characters/salem/head.svg"
  64167. }
  64168. },
  64169. paw: {
  64170. height: math.unit(0.59, "feet"),
  64171. name: "Paw",
  64172. image: {
  64173. source: "./media/characters/salem/paw.svg"
  64174. }
  64175. },
  64176. beans: {
  64177. height: math.unit(0.66, "feet"),
  64178. name: "Beans",
  64179. image: {
  64180. source: "./media/characters/salem/beans.svg"
  64181. }
  64182. },
  64183. eye: {
  64184. height: math.unit(0.224, "feet"),
  64185. name: "Eye",
  64186. image: {
  64187. source: "./media/characters/salem/eye.svg"
  64188. }
  64189. },
  64190. semiferal: {
  64191. height: math.unit(2.3, "feet"),
  64192. name: "Semiferal",
  64193. image: {
  64194. source: "./media/characters/salem/semiferal.svg",
  64195. extra: 914/839,
  64196. bottom: 32/946
  64197. }
  64198. },
  64199. },
  64200. [
  64201. {
  64202. name: "Micro",
  64203. height: math.unit(4, "inches")
  64204. },
  64205. {
  64206. name: "Normal",
  64207. height: math.unit(5 + 2/12, "feet"),
  64208. default: true
  64209. },
  64210. {
  64211. name: "Macro",
  64212. height: math.unit(108, "feet")
  64213. },
  64214. {
  64215. name: "Macro+",
  64216. height: math.unit(1500, "feet")
  64217. },
  64218. ]
  64219. ))
  64220. characterMakers.push(() => makeCharacter(
  64221. { name: "Kii", species: ["dragon", "dog"], tags: ["anthro"] },
  64222. {
  64223. front: {
  64224. height: math.unit(7 + 6/12, "feet"),
  64225. weight: math.unit(600, "kg"),
  64226. preyCapacity: math.unit(10, "people"),
  64227. name: "Front",
  64228. image: {
  64229. source: "./media/characters/kii/front.svg",
  64230. extra: 3296/3087,
  64231. bottom: 130/3426
  64232. }
  64233. },
  64234. },
  64235. [
  64236. {
  64237. name: "Normal",
  64238. height: math.unit(7 + 6/12, "feet"),
  64239. default: true
  64240. },
  64241. ]
  64242. ))
  64243. characterMakers.push(() => makeCharacter(
  64244. { name: "Taffy", species: ["saltwater-crocodile"], tags: ["anthro"] },
  64245. {
  64246. front: {
  64247. height: math.unit(2, "meters"),
  64248. weight: math.unit(200, "lb"),
  64249. name: "Front",
  64250. image: {
  64251. source: "./media/characters/taffy/front.svg",
  64252. extra: 1666/1618,
  64253. bottom: 157/1823
  64254. }
  64255. },
  64256. back: {
  64257. height: math.unit(2, "meters"),
  64258. weight: math.unit(200, "lb"),
  64259. name: "Back",
  64260. image: {
  64261. source: "./media/characters/taffy/back.svg",
  64262. extra: 1635/1583,
  64263. bottom: 153/1788
  64264. }
  64265. },
  64266. },
  64267. [
  64268. {
  64269. name: "Normal",
  64270. height: math.unit(2, "meters"),
  64271. default: true
  64272. },
  64273. ]
  64274. ))
  64275. characterMakers.push(() => makeCharacter(
  64276. { name: "Barley", species: ["eastern-grey-kangaroo"], tags: ["anthro"] },
  64277. {
  64278. front: {
  64279. height: math.unit(1.55, "meters"),
  64280. weight: math.unit(60, "kg"),
  64281. name: "Front",
  64282. image: {
  64283. source: "./media/characters/barley/front.svg",
  64284. extra: 1520/1340,
  64285. bottom: 47/1567
  64286. }
  64287. },
  64288. back: {
  64289. height: math.unit(1.55, "meters"),
  64290. weight: math.unit(60, "kg"),
  64291. name: "Back",
  64292. image: {
  64293. source: "./media/characters/barley/back.svg",
  64294. extra: 1543/1341,
  64295. bottom: 12/1555
  64296. }
  64297. },
  64298. feet: {
  64299. height: math.unit(2.18, "feet"),
  64300. name: "Feet",
  64301. image: {
  64302. source: "./media/characters/barley/feet.svg"
  64303. }
  64304. },
  64305. },
  64306. [
  64307. {
  64308. name: "Normal",
  64309. height: math.unit(1.55, "meters"),
  64310. default: true
  64311. },
  64312. ]
  64313. ))
  64314. characterMakers.push(() => makeCharacter(
  64315. { name: "Lydia Lopez", species: ["shark"], tags: ["anthro"] },
  64316. {
  64317. dressed: {
  64318. height: math.unit(6, "feet"),
  64319. name: "Dressed",
  64320. image: {
  64321. source: "./media/characters/lydia-lopez/dressed.svg",
  64322. extra: 1319/1277,
  64323. bottom: 90/1409
  64324. }
  64325. },
  64326. nude: {
  64327. height: math.unit(6, "feet"),
  64328. name: "Nude",
  64329. image: {
  64330. source: "./media/characters/lydia-lopez/nude.svg",
  64331. extra: 1319/1277,
  64332. bottom: 90/1409
  64333. }
  64334. },
  64335. },
  64336. [
  64337. {
  64338. name: "Normal",
  64339. height: math.unit(6, "feet"),
  64340. default: true
  64341. },
  64342. {
  64343. name: "Maximum",
  64344. height: math.unit(2101, "feet")
  64345. },
  64346. ]
  64347. ))
  64348. characterMakers.push(() => makeCharacter(
  64349. { name: "Kira (Slime)", species: ["slime"], tags: ["goo"] },
  64350. {
  64351. front: {
  64352. height: math.unit(5 + 4/12, "feet"),
  64353. weight: math.unit(250, "lb"),
  64354. volume: math.unit(20, "gallons"),
  64355. name: "Front",
  64356. image: {
  64357. source: "./media/characters/kira-slime/front.svg",
  64358. extra: 442/403,
  64359. bottom: 18/460
  64360. }
  64361. },
  64362. frontNsfw: {
  64363. height: math.unit(5 + 4/12, "feet"),
  64364. weight: math.unit(250, "lb"),
  64365. volume: math.unit(20, "gallons"),
  64366. name: "Front (NSFW)",
  64367. image: {
  64368. source: "./media/characters/kira-slime/front-nsfw.svg",
  64369. extra: 442/403,
  64370. bottom: 18/460
  64371. }
  64372. },
  64373. },
  64374. [
  64375. {
  64376. name: "Droplet",
  64377. height: math.unit(0.0464452, "feet")
  64378. },
  64379. {
  64380. name: "Pint",
  64381. height: math.unit(0.9824, "feet")
  64382. },
  64383. {
  64384. name: "Bucket",
  64385. height: math.unit(2.83, "feet")
  64386. },
  64387. {
  64388. name: "Normal",
  64389. height: math.unit(5 + 4/12, "feet"),
  64390. default: true
  64391. },
  64392. {
  64393. name: "Tub",
  64394. height: math.unit(8.46614, "feet")
  64395. },
  64396. {
  64397. name: "Pool",
  64398. height: math.unit(31.1895, "feet")
  64399. },
  64400. {
  64401. name: "Pond",
  64402. height: math.unit(170.349, "feet")
  64403. },
  64404. {
  64405. name: "Lake",
  64406. height: math.unit(289334, "feet")
  64407. },
  64408. {
  64409. name: "Ocean",
  64410. height: math.unit(1.11940e+7, "feet")
  64411. },
  64412. ]
  64413. ))
  64414. characterMakers.push(() => makeCharacter(
  64415. { name: "Holiday", species: ["fennec-fox", "deer"], tags: ["anthro"] },
  64416. {
  64417. front: {
  64418. height: math.unit(5 + 6/12, "feet"),
  64419. weight: math.unit(120, "lb"),
  64420. name: "Front",
  64421. image: {
  64422. source: "./media/characters/holiday/front.svg",
  64423. extra: 456/403,
  64424. bottom: 4/460
  64425. }
  64426. },
  64427. back: {
  64428. height: math.unit(5 + 6/12, "feet"),
  64429. weight: math.unit(120, "lb"),
  64430. name: "Back",
  64431. image: {
  64432. source: "./media/characters/holiday/back.svg",
  64433. extra: 450/404,
  64434. bottom: 12/462
  64435. }
  64436. },
  64437. head: {
  64438. height: math.unit(2.3, "feet"),
  64439. name: "Head",
  64440. image: {
  64441. source: "./media/characters/holiday/head.svg"
  64442. }
  64443. },
  64444. },
  64445. [
  64446. {
  64447. name: "Normal",
  64448. height: math.unit(5 + 6/12, "feet"),
  64449. default: true
  64450. },
  64451. {
  64452. name: "Macro",
  64453. height: math.unit(6574.25, "feet")
  64454. },
  64455. ]
  64456. ))
  64457. characterMakers.push(() => makeCharacter(
  64458. { name: "Camina", species: ["latenivenatrix"], tags: ["anthro"] },
  64459. {
  64460. front: {
  64461. height: math.unit(6 + 2/12, "feet"),
  64462. weight: math.unit(200, "lb"),
  64463. name: "Front",
  64464. image: {
  64465. source: "./media/characters/camina/front.svg",
  64466. extra: 1048/985,
  64467. bottom: 30/1078
  64468. }
  64469. },
  64470. },
  64471. [
  64472. {
  64473. name: "Normal",
  64474. height: math.unit(6 + 2/12, "feet"),
  64475. default: true
  64476. },
  64477. ]
  64478. ))
  64479. characterMakers.push(() => makeCharacter(
  64480. { name: "Smuck", species: ["duck"], tags: ["feral"] },
  64481. {
  64482. front: {
  64483. height: math.unit(30, "cm"),
  64484. weight: math.unit(420, "grams"),
  64485. name: "Front",
  64486. image: {
  64487. source: "./media/characters/smuck/front.svg",
  64488. extra: 379/345,
  64489. bottom: 36/415
  64490. }
  64491. },
  64492. },
  64493. [
  64494. {
  64495. name: "Smuck-Sized",
  64496. height: math.unit(30, "cm"),
  64497. default: true
  64498. },
  64499. ]
  64500. ))
  64501. characterMakers.push(() => makeCharacter(
  64502. { name: "Bylur", species: ["monster"], tags: ["anthro"] },
  64503. {
  64504. frontSfw: {
  64505. height: math.unit(10, "feet"),
  64506. weight: math.unit(1000, "kg"),
  64507. preyCapacity: math.unit(2, "people"),
  64508. name: "Front (SFW)",
  64509. image: {
  64510. source: "./media/characters/bylur/front-sfw.svg",
  64511. extra: 419/343,
  64512. bottom: 3/422
  64513. },
  64514. default: true
  64515. },
  64516. frontSheath: {
  64517. height: math.unit(10, "feet"),
  64518. weight: math.unit(1000, "kg"),
  64519. preyCapacity: math.unit(2, "people"),
  64520. name: "Front (Sheath)",
  64521. image: {
  64522. source: "./media/characters/bylur/front-sheath.svg",
  64523. extra: 419/343,
  64524. bottom: 3/422
  64525. }
  64526. },
  64527. frontErect: {
  64528. height: math.unit(10, "feet"),
  64529. weight: math.unit(1000, "kg"),
  64530. preyCapacity: math.unit(2, "people"),
  64531. name: "Front (Erect)",
  64532. image: {
  64533. source: "./media/characters/bylur/front-erect.svg",
  64534. extra: 419/343,
  64535. bottom: 3/422
  64536. }
  64537. },
  64538. back: {
  64539. height: math.unit(10, "feet"),
  64540. weight: math.unit(1000, "kg"),
  64541. preyCapacity: math.unit(2, "people"),
  64542. name: "Back",
  64543. image: {
  64544. source: "./media/characters/bylur/back.svg",
  64545. extra: 392/315,
  64546. bottom: 3/395
  64547. }
  64548. },
  64549. maw: {
  64550. height: math.unit(3.65, "feet"),
  64551. name: "Maw",
  64552. image: {
  64553. source: "./media/characters/bylur/maw.svg"
  64554. }
  64555. },
  64556. },
  64557. [
  64558. {
  64559. name: "Slightly Human Sized",
  64560. height: math.unit(10, "feet")
  64561. },
  64562. {
  64563. name: "Normal",
  64564. height: math.unit(35, "feet"),
  64565. default: true
  64566. },
  64567. {
  64568. name: "Macro",
  64569. height: math.unit(130, "feet")
  64570. },
  64571. ]
  64572. ))
  64573. characterMakers.push(() => makeCharacter(
  64574. { name: "Oarven", species: ["earless-monitor-lizard"], tags: ["anthro"] },
  64575. {
  64576. frontNsfw: {
  64577. height: math.unit(6, "feet"),
  64578. weight: math.unit(250, "lb"),
  64579. preyCapacity: math.unit(0.05, "people"),
  64580. name: "Front (NSFW)",
  64581. image: {
  64582. source: "./media/characters/oarven/front-nsfw.svg",
  64583. extra: 1795/1783,
  64584. bottom: 142/1937
  64585. }
  64586. },
  64587. frontSfw: {
  64588. height: math.unit(6, "feet"),
  64589. weight: math.unit(250, "lb"),
  64590. preyCapacity: math.unit(0.05, "people"),
  64591. name: "Front (SFW)",
  64592. image: {
  64593. source: "./media/characters/oarven/front-sfw.svg",
  64594. extra: 1795/1783,
  64595. bottom: 142/1937
  64596. }
  64597. },
  64598. },
  64599. [
  64600. {
  64601. name: "Megamacro",
  64602. height: math.unit(5, "miles"),
  64603. default: true
  64604. },
  64605. {
  64606. name: "Maximum Height",
  64607. height: math.unit(5, "AUs")
  64608. },
  64609. ]
  64610. ))
  64611. characterMakers.push(() => makeCharacter(
  64612. { name: "Solidarity", species: ["aerosynth"], tags: ["feral"] },
  64613. {
  64614. side: {
  64615. height: math.unit(1065, "meters"),
  64616. weight: math.unit(1e12, "kg"),
  64617. volume: math.unit(3265000000, "m^3"),
  64618. name: "Side",
  64619. image: {
  64620. source: "./media/characters/solidarity/side.svg"
  64621. }
  64622. },
  64623. front: {
  64624. height: math.unit(1065, "meters"),
  64625. weight: math.unit(3265000000000, "kg"),
  64626. volume: math.unit(3265000000, "m^3"),
  64627. name: "Front",
  64628. image: {
  64629. source: "./media/characters/solidarity/front.svg"
  64630. }
  64631. },
  64632. top: {
  64633. height: math.unit(5823, "meters"),
  64634. weight: math.unit(3265000000000, "kg"),
  64635. volume: math.unit(3265000000, "m^3"),
  64636. name: "Top",
  64637. image: {
  64638. source: "./media/characters/solidarity/top.svg"
  64639. }
  64640. },
  64641. },
  64642. [
  64643. {
  64644. name: "Normal",
  64645. height: math.unit(1065, "meters"),
  64646. default: true
  64647. },
  64648. ]
  64649. ))
  64650. characterMakers.push(() => makeCharacter(
  64651. { name: "Ani'szi", species: ["phenx"], tags: ["taur"] },
  64652. {
  64653. side: {
  64654. height: math.unit(18 + 4/12, "feet"),
  64655. weight: math.unit(13000, "kg"),
  64656. name: "Side",
  64657. image: {
  64658. source: "./media/characters/ani'szi/side.svg",
  64659. extra: 468/459,
  64660. bottom: 60/528
  64661. }
  64662. },
  64663. head: {
  64664. height: math.unit(4.8, "feet"),
  64665. name: "Head",
  64666. image: {
  64667. source: "./media/characters/ani'szi/head.svg"
  64668. }
  64669. },
  64670. jaws: {
  64671. height: math.unit(2.25, "feet"),
  64672. name: "Jaws",
  64673. image: {
  64674. source: "./media/characters/ani'szi/jaws.svg"
  64675. }
  64676. },
  64677. bust: {
  64678. height: math.unit(8.9, "feet"),
  64679. name: "Bust",
  64680. image: {
  64681. source: "./media/characters/ani'szi/bust.svg"
  64682. }
  64683. },
  64684. back: {
  64685. height: math.unit(13.53, "feet"),
  64686. name: "Back",
  64687. image: {
  64688. source: "./media/characters/ani'szi/back.svg"
  64689. }
  64690. },
  64691. eye: {
  64692. height: math.unit(0.44, "feet"),
  64693. name: "Eye",
  64694. image: {
  64695. source: "./media/characters/ani'szi/eye.svg"
  64696. }
  64697. },
  64698. },
  64699. [
  64700. {
  64701. name: "Normal",
  64702. height: math.unit(18 + 4/12, "feet"),
  64703. default: true
  64704. },
  64705. ]
  64706. ))
  64707. characterMakers.push(() => makeCharacter(
  64708. { name: "Rain", species: ["driger"], tags: ["anthro"] },
  64709. {
  64710. front: {
  64711. height: math.unit(7 + 6/12, "feet"),
  64712. weight: math.unit(300, "lb"),
  64713. name: "Front",
  64714. image: {
  64715. source: "./media/characters/rain/front.svg",
  64716. extra: 2955/2698,
  64717. bottom: 235/3190
  64718. }
  64719. },
  64720. dressed: {
  64721. height: math.unit(7 + 6/12, "feet"),
  64722. weight: math.unit(300, "lb"),
  64723. name: "Dressed",
  64724. image: {
  64725. source: "./media/characters/rain/dressed.svg",
  64726. extra: 2783/2572,
  64727. bottom: 430/3213
  64728. }
  64729. },
  64730. },
  64731. [
  64732. {
  64733. name: "Normal",
  64734. height: math.unit(7 + 6/12, "feet"),
  64735. default: true
  64736. },
  64737. {
  64738. name: "Macro",
  64739. height: math.unit(200, "feet")
  64740. },
  64741. {
  64742. name: "Macro+",
  64743. height: math.unit(500, "feet")
  64744. },
  64745. {
  64746. name: "Megamacro",
  64747. height: math.unit(5, "miles")
  64748. },
  64749. ]
  64750. ))
  64751. characterMakers.push(() => makeCharacter(
  64752. { name: "Anise", species: ["gryphon"], tags: ["feral", "taur"] },
  64753. {
  64754. taur_side: {
  64755. height: math.unit(3, "meters"),
  64756. name: "Side",
  64757. image: {
  64758. source: "./media/characters/anise/taur-side.svg",
  64759. extra: 1833/926,
  64760. bottom: 134/1967
  64761. },
  64762. form: "taur",
  64763. default: true
  64764. },
  64765. feral_side: {
  64766. height: math.unit(3, "meters"),
  64767. name: "Side",
  64768. image: {
  64769. source: "./media/characters/anise/feral-side.svg",
  64770. extra: 681/349,
  64771. bottom: 26/707
  64772. },
  64773. form: "feral"
  64774. },
  64775. },
  64776. [
  64777. {
  64778. name: "Normal",
  64779. height: math.unit(3, "meters"),
  64780. default: true,
  64781. allForms: true
  64782. },
  64783. ],
  64784. {
  64785. "taur": {
  64786. name: "Taur",
  64787. default: true
  64788. },
  64789. "feral": {
  64790. name: "Feral",
  64791. },
  64792. }
  64793. ))
  64794. characterMakers.push(() => makeCharacter(
  64795. { name: "Sarina", species: ["red-panda"], tags: ["anthro"] },
  64796. {
  64797. front: {
  64798. height: math.unit(1.9, "meters"),
  64799. weight: math.unit(75, "kg"),
  64800. name: "Front",
  64801. image: {
  64802. source: "./media/characters/sarina/front.svg",
  64803. extra: 1275/1200,
  64804. bottom: 49/1324
  64805. }
  64806. },
  64807. back: {
  64808. height: math.unit(1.9, "meters"),
  64809. weight: math.unit(75, "kg"),
  64810. name: "Back",
  64811. image: {
  64812. source: "./media/characters/sarina/back.svg",
  64813. extra: 1279/1209,
  64814. bottom: 14/1293
  64815. }
  64816. },
  64817. dressed: {
  64818. height: math.unit(1.9, "meters"),
  64819. weight: math.unit(75, "kg"),
  64820. name: "Dressed",
  64821. image: {
  64822. source: "./media/characters/sarina/dressed.svg",
  64823. extra: 1256/1187,
  64824. bottom: 56/1312
  64825. }
  64826. },
  64827. paw: {
  64828. height: math.unit(0.57, "feet"),
  64829. name: "Paw",
  64830. image: {
  64831. source: "./media/characters/sarina/paw.svg"
  64832. }
  64833. },
  64834. toering: {
  64835. height: math.unit(0.27, "feet"),
  64836. name: "Toering",
  64837. image: {
  64838. source: "./media/characters/sarina/toering.svg"
  64839. }
  64840. },
  64841. },
  64842. [
  64843. {
  64844. name: "Incognito",
  64845. height: math.unit(1.9, "meters")
  64846. },
  64847. {
  64848. name: "Home Size",
  64849. height: math.unit(160, "meters"),
  64850. default: true
  64851. },
  64852. {
  64853. name: "Mega",
  64854. height: math.unit(50, "km")
  64855. },
  64856. {
  64857. name: "Small Giga",
  64858. height: math.unit(250, "km")
  64859. },
  64860. {
  64861. name: "Giga (Preferred Size)",
  64862. height: math.unit(3000, "km")
  64863. },
  64864. {
  64865. name: "Terra",
  64866. height: math.unit(40000, "km")
  64867. },
  64868. {
  64869. name: "Terra+",
  64870. height: math.unit(400000, "km")
  64871. },
  64872. {
  64873. name: "Solar",
  64874. height: math.unit(35e6, "km")
  64875. },
  64876. {
  64877. name: "Galactic",
  64878. height: math.unit(648106, "parsecs")
  64879. },
  64880. {
  64881. name: "Universal",
  64882. height: math.unit(7, "universes")
  64883. },
  64884. {
  64885. name: "Universal+",
  64886. height: math.unit(30, "universes")
  64887. },
  64888. ]
  64889. ))
  64890. characterMakers.push(() => makeCharacter(
  64891. { name: "Sifray", species: ["homestuck-troll"], tags: ["anthro"] },
  64892. {
  64893. front: {
  64894. height: math.unit(5 + 6/12, "feet"),
  64895. name: "Front",
  64896. image: {
  64897. source: "./media/characters/sifray/front.svg",
  64898. extra: 722/691,
  64899. bottom: 64/786
  64900. }
  64901. },
  64902. },
  64903. [
  64904. {
  64905. name: "Normal",
  64906. height: math.unit(5 + 6/12, "feet"),
  64907. default: true
  64908. },
  64909. ]
  64910. ))
  64911. characterMakers.push(() => makeCharacter(
  64912. { name: "Spots", species: ["dog"], tags: ["feral"] },
  64913. {
  64914. side: {
  64915. height: math.unit(2.64, "feet"),
  64916. weight: math.unit(100, "lb"),
  64917. preyCapacity: math.unit(3, "people"),
  64918. name: "Side",
  64919. image: {
  64920. source: "./media/characters/spots/side.svg",
  64921. extra: 1859/977,
  64922. bottom: 19/1878
  64923. },
  64924. extraAttributes: {
  64925. "preyPerMinute": {
  64926. name: "Prey Per Minute",
  64927. power: 3,
  64928. type: "volume",
  64929. base: math.unit(6, "people"),
  64930. defaultUnit: "people"
  64931. },
  64932. "preyPerDay": {
  64933. name: "Prey Per Day",
  64934. power: 3,
  64935. type: "volume",
  64936. base: math.unit(6 * 60 * 24, "people"),
  64937. defaultUnit: "people"
  64938. },
  64939. }
  64940. },
  64941. },
  64942. [
  64943. {
  64944. name: "Normal",
  64945. height: math.unit(2.64, "feet"),
  64946. default: true
  64947. },
  64948. ]
  64949. ))
  64950. characterMakers.push(() => makeCharacter(
  64951. { name: "Mona", species: ["caudin"], tags: ["anthro"] },
  64952. {
  64953. front: {
  64954. height: math.unit(29 + 11/12, "feet"),
  64955. weight: math.unit(40, "tons"),
  64956. name: "Front",
  64957. image: {
  64958. source: "./media/characters/mona/front.svg",
  64959. extra: 1257/1116,
  64960. bottom: 34/1291
  64961. }
  64962. },
  64963. },
  64964. [
  64965. {
  64966. name: "Normal",
  64967. height: math.unit(29 + 11/12, "feet"),
  64968. default: true
  64969. },
  64970. ]
  64971. ))
  64972. characterMakers.push(() => makeCharacter(
  64973. { name: "FrostFire", species: ["dragon"], tags: ["anthro"] },
  64974. {
  64975. front: {
  64976. height: math.unit(15, "feet"),
  64977. weight: math.unit(3000, "kg"),
  64978. preyCapacity: math.unit(5, "people"),
  64979. name: "Front",
  64980. image: {
  64981. source: "./media/characters/frostfire/front.svg",
  64982. extra: 675/558,
  64983. bottom: 73/748
  64984. }
  64985. },
  64986. side: {
  64987. height: math.unit(15, "feet"),
  64988. weight: math.unit(3000, "kg"),
  64989. preyCapacity: math.unit(5, "people"),
  64990. name: "Side",
  64991. image: {
  64992. source: "./media/characters/frostfire/side.svg",
  64993. extra: 687/585,
  64994. bottom: 50/737
  64995. }
  64996. },
  64997. back: {
  64998. height: math.unit(15, "feet"),
  64999. weight: math.unit(3000, "kg"),
  65000. preyCapacity: math.unit(5, "people"),
  65001. name: "Back",
  65002. image: {
  65003. source: "./media/characters/frostfire/back.svg",
  65004. extra: 707/607,
  65005. bottom: 16/723
  65006. }
  65007. },
  65008. head: {
  65009. height: math.unit(9.35, "feet"),
  65010. name: "Head",
  65011. image: {
  65012. source: "./media/characters/frostfire/head.svg"
  65013. }
  65014. },
  65015. maw: {
  65016. height: math.unit(3.32, "feet"),
  65017. name: "Maw",
  65018. image: {
  65019. source: "./media/characters/frostfire/maw.svg"
  65020. }
  65021. },
  65022. hand: {
  65023. height: math.unit(3.7, "feet"),
  65024. name: "Hand",
  65025. image: {
  65026. source: "./media/characters/frostfire/hand.svg"
  65027. }
  65028. },
  65029. paw: {
  65030. height: math.unit(5.8, "feet"),
  65031. name: "Paw",
  65032. image: {
  65033. source: "./media/characters/frostfire/paw.svg"
  65034. }
  65035. },
  65036. },
  65037. [
  65038. {
  65039. name: "Normal",
  65040. height: math.unit(15, "feet"),
  65041. default: true
  65042. },
  65043. ]
  65044. ))
  65045. characterMakers.push(() => makeCharacter(
  65046. { name: "Valeroo", species: ["kangaroo"], tags: ["anthro"] },
  65047. {
  65048. front: {
  65049. height: math.unit(5 + 2/12, "feet"),
  65050. weight: math.unit(122, "lb"),
  65051. name: "Front",
  65052. image: {
  65053. source: "./media/characters/valeroo/front.svg",
  65054. extra: 1789/1534,
  65055. bottom: 66/1855
  65056. }
  65057. },
  65058. back: {
  65059. height: math.unit(5 + 2/12, "feet"),
  65060. weight: math.unit(122, "lb"),
  65061. name: "Back",
  65062. image: {
  65063. source: "./media/characters/valeroo/back.svg",
  65064. extra: 1848/1588,
  65065. bottom: 68/1916
  65066. }
  65067. },
  65068. head: {
  65069. height: math.unit(1.87, "feet"),
  65070. name: "Head",
  65071. image: {
  65072. source: "./media/characters/valeroo/head.svg"
  65073. }
  65074. },
  65075. hand: {
  65076. height: math.unit(0.82, "feet"),
  65077. name: "Hand",
  65078. image: {
  65079. source: "./media/characters/valeroo/hand.svg"
  65080. }
  65081. },
  65082. foot: {
  65083. height: math.unit(2.42, "feet"),
  65084. name: "Foot",
  65085. image: {
  65086. source: "./media/characters/valeroo/foot.svg"
  65087. }
  65088. },
  65089. },
  65090. [
  65091. {
  65092. name: "Normal",
  65093. height: math.unit(5 + 2/12, "feet"),
  65094. default: true
  65095. },
  65096. ]
  65097. ))
  65098. characterMakers.push(() => makeCharacter(
  65099. { name: "Corrin", species: ["secretary-bird"], tags: ["anthro"] },
  65100. {
  65101. front: {
  65102. height: math.unit(11 + 3/12, "feet"),
  65103. name: "Front",
  65104. image: {
  65105. source: "./media/characters/corrin/front.svg",
  65106. extra: 665/597,
  65107. bottom: 74/739
  65108. }
  65109. },
  65110. },
  65111. [
  65112. {
  65113. name: "Standard",
  65114. height: math.unit(11 + 3/12, "feet"),
  65115. default: true
  65116. },
  65117. {
  65118. name: "The Boss",
  65119. height: math.unit(110, "feet")
  65120. },
  65121. {
  65122. name: "Shipbreaker",
  65123. height: math.unit(38, "km")
  65124. },
  65125. ]
  65126. ))
  65127. characterMakers.push(() => makeCharacter(
  65128. { name: "Kiba Ulrich", species: ["dire-wolf"], tags: ["anthro"] },
  65129. {
  65130. front: {
  65131. height: math.unit(10, "feet"),
  65132. weight: math.unit(1750, "lb"),
  65133. name: "Front",
  65134. image: {
  65135. source: "./media/characters/kiba-ulrich/front.svg",
  65136. extra: 1037/973,
  65137. bottom: 36/1073
  65138. }
  65139. },
  65140. },
  65141. [
  65142. {
  65143. name: "Normal",
  65144. height: math.unit(10, "feet"),
  65145. default: true
  65146. },
  65147. {
  65148. name: "Minimacro",
  65149. height: math.unit(20, "feet")
  65150. },
  65151. {
  65152. name: "Macro",
  65153. height: math.unit(200, "feet")
  65154. },
  65155. {
  65156. name: "Megamacro",
  65157. height: math.unit(22500, "feet")
  65158. },
  65159. {
  65160. name: "Gigamacro",
  65161. height: math.unit(2700, "miles")
  65162. },
  65163. {
  65164. name: "Teramacro",
  65165. height: math.unit(10000, "miles")
  65166. },
  65167. ]
  65168. ))
  65169. characterMakers.push(() => makeCharacter(
  65170. { name: "Ceanoth", species: ["gryphon"], tags: ["anthro"] },
  65171. {
  65172. gryphon_front: {
  65173. height: math.unit(220, "cm"),
  65174. weight: math.unit(160, "kg"),
  65175. name: "Front",
  65176. image: {
  65177. source: "./media/characters/ceanoth/gryphon-front.svg",
  65178. extra: 616/552,
  65179. bottom: 33/649
  65180. },
  65181. form: "gryphon",
  65182. default: true
  65183. },
  65184. },
  65185. [
  65186. {
  65187. name: "Normal",
  65188. height: math.unit(220, "cm"),
  65189. form: "gryphon",
  65190. default: true
  65191. },
  65192. ],
  65193. {
  65194. "gryphon": {
  65195. name: "Grpyhon",
  65196. default: true
  65197. },
  65198. }
  65199. ))
  65200. characterMakers.push(() => makeCharacter(
  65201. { name: "Vanadiya Athelya", species: ["dragon"], tags: ["taur"] },
  65202. {
  65203. dressed: {
  65204. height: math.unit(2.2 * 0.79, "meters"),
  65205. weight: math.unit(0.5, "tonnes"),
  65206. name: "Dressed",
  65207. image: {
  65208. source: "./media/characters/vanadiya-athelya/dressed.svg",
  65209. extra: 665/315,
  65210. bottom: 106/771
  65211. },
  65212. extraAttributes: {
  65213. "bodyLength": {
  65214. name: "Body Length",
  65215. power: 1,
  65216. type: "length",
  65217. base: math.unit(2.5, "meters")
  65218. },
  65219. "tailLength": {
  65220. name: "Tail Length",
  65221. power: 1,
  65222. type: "length",
  65223. base: math.unit(4.5, "meters")
  65224. },
  65225. "wingspan": {
  65226. name: "Wingspan",
  65227. power: 1,
  65228. type: "length",
  65229. base: math.unit(6, "meters")
  65230. },
  65231. "taurStomachCapacity": {
  65232. name: "Taur Stomach Capacity",
  65233. power: 3,
  65234. type: "volume",
  65235. base: math.unit(4, "people"),
  65236. defaultUnit: "people"
  65237. },
  65238. "anthroStomachCapacity": {
  65239. name: "Anthro Stomach Capacity",
  65240. power: 3,
  65241. type: "volume",
  65242. base: math.unit(1, "people"),
  65243. defaultUnit: "people"
  65244. },
  65245. }
  65246. },
  65247. nude: {
  65248. height: math.unit(2.2 * 0.79, "meters"),
  65249. weight: math.unit(0.5, "tonnes"),
  65250. name: "Nude",
  65251. image: {
  65252. source: "./media/characters/vanadiya-athelya/nude.svg",
  65253. extra: 665/315,
  65254. bottom: 106/771
  65255. },
  65256. extraAttributes: {
  65257. "bodyLength": {
  65258. name: "Body Length",
  65259. power: 1,
  65260. type: "length",
  65261. base: math.unit(2.5, "meters")
  65262. },
  65263. "tailLength": {
  65264. name: "Tail Length",
  65265. power: 1,
  65266. type: "length",
  65267. base: math.unit(4.5, "meters")
  65268. },
  65269. "wingspan": {
  65270. name: "Wingspan",
  65271. power: 1,
  65272. type: "length",
  65273. base: math.unit(6, "meters")
  65274. },
  65275. "taurStomachCapacity": {
  65276. name: "Taur Stomach Capacity",
  65277. power: 3,
  65278. type: "volume",
  65279. base: math.unit(4, "people"),
  65280. defaultUnit: "people"
  65281. },
  65282. "anthroStomachCapacity": {
  65283. name: "Anthro Stomach Capacity",
  65284. power: 3,
  65285. type: "volume",
  65286. base: math.unit(1, "people"),
  65287. defaultUnit: "people"
  65288. },
  65289. }
  65290. },
  65291. },
  65292. [
  65293. {
  65294. name: "Handheld",
  65295. height: math.unit(0.79 * 0.06, "meters")
  65296. },
  65297. {
  65298. name: "Mini",
  65299. height: math.unit(0.79 * 0.7, "meters")
  65300. },
  65301. {
  65302. name: "Short",
  65303. height: math.unit(0.79 * 1.4, "meters")
  65304. },
  65305. {
  65306. name: "Imposing",
  65307. height: math.unit(0.79 * 2.2, "meters"),
  65308. default: true
  65309. },
  65310. {
  65311. name: "Big",
  65312. height: math.unit(0.79 * 3.8, "meters")
  65313. },
  65314. {
  65315. name: "Giant",
  65316. height: math.unit(0.79 * 6.7, "meters")
  65317. },
  65318. {
  65319. name: "Airliner",
  65320. height: math.unit(0.79 * 64, "meters")
  65321. },
  65322. {
  65323. name: "Skyscraper",
  65324. height: math.unit(0.79 * 220, "meters")
  65325. },
  65326. {
  65327. name: "Mountain",
  65328. height: math.unit(0.79 * 3.6, "km")
  65329. },
  65330. {
  65331. name: "Spacescraper",
  65332. height: math.unit(0.79 * 70, "km")
  65333. },
  65334. {
  65335. name: "Continental",
  65336. height: math.unit(0.79 * 1290, "km")
  65337. },
  65338. {
  65339. name: "Moon",
  65340. height: math.unit(0.79 * 32200, "km")
  65341. },
  65342. {
  65343. name: "Planetary",
  65344. height: math.unit(0.79 * 145000, "km")
  65345. },
  65346. {
  65347. name: "Stellar",
  65348. height: math.unit(0.79 * 19e6, "km")
  65349. },
  65350. {
  65351. name: "Solar",
  65352. height: math.unit(0.79 * 40, "AU")
  65353. },
  65354. {
  65355. name: "Intersteller",
  65356. height: math.unit(0.79 * 3, "lightyears")
  65357. },
  65358. {
  65359. name: "Star Cluster",
  65360. height: math.unit(0.79 * 80, "lightyears")
  65361. },
  65362. {
  65363. name: "Ecumenical",
  65364. height: math.unit(0.79 * 2e3, "lightyears")
  65365. },
  65366. {
  65367. name: "Galactic",
  65368. height: math.unit(0.79 * 175000, "lightyears")
  65369. },
  65370. {
  65371. name: "Galaxy Cluster",
  65372. height: math.unit(0.79 * 25e6, "lightyears")
  65373. },
  65374. ]
  65375. ))
  65376. characterMakers.push(() => makeCharacter(
  65377. { name: "Yana Amelin", species: ["russian-blue"], tags: ["anthro"] },
  65378. {
  65379. front: {
  65380. height: math.unit(6 + 2/12, "feet"),
  65381. weight: math.unit(160, "lb"),
  65382. name: "Front",
  65383. image: {
  65384. source: "./media/characters/yana-amelin/front.svg",
  65385. extra: 1413/1295,
  65386. bottom: 42/1455
  65387. }
  65388. },
  65389. back: {
  65390. height: math.unit(6 + 2/12, "feet"),
  65391. weight: math.unit(160, "lb"),
  65392. name: "Back",
  65393. image: {
  65394. source: "./media/characters/yana-amelin/back.svg",
  65395. extra: 1424/1310,
  65396. bottom: 24/1448
  65397. }
  65398. },
  65399. paws: {
  65400. height: math.unit(1.48, "feet"),
  65401. name: "Paws",
  65402. image: {
  65403. source: "./media/characters/yana-amelin/paws.svg",
  65404. extra: 304/304,
  65405. bottom: 49/353
  65406. }
  65407. },
  65408. },
  65409. [
  65410. {
  65411. name: "Micro",
  65412. height: math.unit(4, "inches")
  65413. },
  65414. {
  65415. name: "Normal",
  65416. height: math.unit(6 + 2/12, "feet"),
  65417. default: true
  65418. },
  65419. {
  65420. name: "Minimacro",
  65421. height: math.unit(20, "feet")
  65422. },
  65423. {
  65424. name: "Macro",
  65425. height: math.unit(70, "feet")
  65426. },
  65427. ]
  65428. ))
  65429. characterMakers.push(() => makeCharacter(
  65430. { name: "Titania", species: ["horse"], tags: ["anthro"] },
  65431. {
  65432. frontNsfw: {
  65433. height: math.unit(2.48, "meters"),
  65434. weight: math.unit(112, "kg"),
  65435. name: "Front (NSFW)",
  65436. image: {
  65437. source: "./media/characters/titania/front-nsfw.svg",
  65438. extra: 1302/1232,
  65439. bottom: 90/1392
  65440. }
  65441. },
  65442. backNsfw: {
  65443. height: math.unit(2.48, "meters"),
  65444. weight: math.unit(112, "kg"),
  65445. name: "Back (NSFW)",
  65446. image: {
  65447. source: "./media/characters/titania/back-nsfw.svg",
  65448. extra: 1355/1288,
  65449. bottom: 18/1373
  65450. }
  65451. },
  65452. frontSfw: {
  65453. height: math.unit(2.48, "meters"),
  65454. weight: math.unit(112, "kg"),
  65455. name: "Front (SFW)",
  65456. image: {
  65457. source: "./media/characters/titania/front-sfw.svg",
  65458. extra: 1302/1232,
  65459. bottom: 90/1392
  65460. }
  65461. },
  65462. backSfw: {
  65463. height: math.unit(2.48, "meters"),
  65464. weight: math.unit(112, "kg"),
  65465. name: "Back (SFW)",
  65466. image: {
  65467. source: "./media/characters/titania/back-sfw.svg",
  65468. extra: 1355/1288,
  65469. bottom: 18/1373
  65470. }
  65471. },
  65472. head: {
  65473. height: math.unit(2.06, "feet"),
  65474. name: "Head",
  65475. image: {
  65476. source: "./media/characters/titania/head.svg"
  65477. }
  65478. },
  65479. maw: {
  65480. height: math.unit(0.8, "feet"),
  65481. name: "Maw",
  65482. image: {
  65483. source: "./media/characters/titania/maw.svg"
  65484. }
  65485. },
  65486. foot: {
  65487. height: math.unit(1.65, "feet"),
  65488. name: "Foot",
  65489. image: {
  65490. source: "./media/characters/titania/foot.svg"
  65491. }
  65492. },
  65493. nethers: {
  65494. height: math.unit(1.7, "feet"),
  65495. name: "Nethers",
  65496. image: {
  65497. source: "./media/characters/titania/nethers.svg"
  65498. }
  65499. },
  65500. },
  65501. [
  65502. {
  65503. name: "Normal",
  65504. height: math.unit(2.48, "meters"),
  65505. default: true
  65506. },
  65507. {
  65508. name: "Mini Macro",
  65509. height: math.unit(248, "meters")
  65510. },
  65511. {
  65512. name: "Macro",
  65513. height: math.unit(620, "meters")
  65514. },
  65515. {
  65516. name: "Mega Macro",
  65517. height: math.unit(1860, "meters")
  65518. },
  65519. ]
  65520. ))
  65521. characterMakers.push(() => makeCharacter(
  65522. { name: "Tony Gray", species: ["wholphin"], tags: ["anthro"] },
  65523. {
  65524. front: {
  65525. height: math.unit(5 + 9/12, "feet"),
  65526. weight: math.unit(1500, "lb"),
  65527. name: "Front",
  65528. image: {
  65529. source: "./media/characters/tony-gray/front.svg",
  65530. extra: 700/575,
  65531. bottom: 71/771
  65532. }
  65533. },
  65534. },
  65535. [
  65536. {
  65537. name: "Normal",
  65538. height: math.unit(5 + 9/12, "feet"),
  65539. default: true
  65540. },
  65541. ]
  65542. ))
  65543. characterMakers.push(() => makeCharacter(
  65544. { name: "Kelby", species: ["sea-dragon"], tags: ["feral"] },
  65545. {
  65546. side: {
  65547. height: math.unit(8 + 2/12, "feet"),
  65548. name: "Side",
  65549. image: {
  65550. source: "./media/characters/kelby/side.svg",
  65551. extra: 804/578,
  65552. bottom: 70/874
  65553. },
  65554. form: "regular",
  65555. default: true
  65556. },
  65557. lounging: {
  65558. height: math.unit(12.41, "feet"),
  65559. name: "Lounging",
  65560. image: {
  65561. source: "./media/characters/kelby/lounging.svg"
  65562. },
  65563. form: "regular"
  65564. },
  65565. maw: {
  65566. height: math.unit(5, "feet"),
  65567. name: "Maw",
  65568. image: {
  65569. source: "./media/characters/kelby/maw.svg"
  65570. },
  65571. form: "regular"
  65572. },
  65573. dick: {
  65574. height: math.unit(2.4, "feet"),
  65575. name: "Dick",
  65576. image: {
  65577. source: "./media/characters/kelby/dick.svg"
  65578. },
  65579. form: "regular"
  65580. },
  65581. slit: {
  65582. height: math.unit(1.2, "feet"),
  65583. name: "Slit",
  65584. image: {
  65585. source: "./media/characters/kelby/slit.svg"
  65586. },
  65587. form: "regular"
  65588. },
  65589. chibi: {
  65590. height: math.unit(5, "feet"),
  65591. name: "Chibi",
  65592. image: {
  65593. source: "./media/characters/kelby/chibi.svg",
  65594. extra: 245/200,
  65595. bottom: 43/288
  65596. },
  65597. form: "chibi",
  65598. default: true
  65599. },
  65600. },
  65601. [
  65602. {
  65603. name: "Normal",
  65604. height: math.unit(8 + 2/12, "feet"),
  65605. default: true,
  65606. form: "regular"
  65607. },
  65608. {
  65609. name: "Normal",
  65610. height: math.unit(5, "feet"),
  65611. default: true,
  65612. form: "chibi"
  65613. },
  65614. ],
  65615. {
  65616. "regular": {
  65617. name: "Regular",
  65618. default: true
  65619. },
  65620. "chibi": {
  65621. name: "Chibi",
  65622. },
  65623. }
  65624. ))
  65625. characterMakers.push(() => makeCharacter(
  65626. { name: "Elisa Mitchell", species: ["brown-bear", "kaiju"], tags: ["anthro"] },
  65627. {
  65628. front: {
  65629. height: math.unit(7 + 10/12, "feet"),
  65630. weight: math.unit(300, "lb"),
  65631. name: "Front",
  65632. image: {
  65633. source: "./media/characters/elisa-mitchell/front.svg",
  65634. extra: 2562/2355,
  65635. bottom: 62/2624
  65636. }
  65637. },
  65638. maw: {
  65639. height: math.unit(2.37, "feet"),
  65640. name: "Maw",
  65641. image: {
  65642. source: "./media/characters/elisa-mitchell/maw.svg"
  65643. }
  65644. },
  65645. },
  65646. [
  65647. {
  65648. name: "Normal",
  65649. height: math.unit(7 + 10/12, "feet"),
  65650. default: true
  65651. },
  65652. {
  65653. name: "Macro",
  65654. height: math.unit(1490, "feet"),
  65655. default: true
  65656. },
  65657. ]
  65658. ))
  65659. characterMakers.push(() => makeCharacter(
  65660. { name: "Camia \"Vertigo\" Zott", species: ["vampire-bat", "kaiju"], tags: ["anthro"] },
  65661. {
  65662. front: {
  65663. height: math.unit(122, "cm"),
  65664. weight: math.unit(40, "lb"),
  65665. name: "Front",
  65666. image: {
  65667. source: "./media/characters/camia-vertigo-zott/front.svg",
  65668. extra: 2112/1902,
  65669. bottom: 21/2133
  65670. }
  65671. },
  65672. },
  65673. [
  65674. {
  65675. name: "Base Height",
  65676. height: math.unit(122, "cm")
  65677. },
  65678. {
  65679. name: "Macro Height",
  65680. height: math.unit(345, "meters"),
  65681. default: true
  65682. },
  65683. ]
  65684. ))
  65685. characterMakers.push(() => makeCharacter(
  65686. { name: "Dianne Elizabeth Heathers", species: ["saint-bernard"], tags: ["anthro"] },
  65687. {
  65688. front: {
  65689. height: math.unit(6 + 3/12, "feet"),
  65690. weight: math.unit(180, "lb"),
  65691. name: "Front",
  65692. image: {
  65693. source: "./media/characters/dianne-elizabeth-heathers/front.svg",
  65694. extra: 2580/2457,
  65695. bottom: 131/2711
  65696. }
  65697. },
  65698. },
  65699. [
  65700. {
  65701. name: "Normal",
  65702. height: math.unit(6 + 3/12, "feet"),
  65703. default: true
  65704. },
  65705. ]
  65706. ))
  65707. characterMakers.push(() => makeCharacter(
  65708. { name: "Sleeka", species: ["rat"], tags: ["anthro"] },
  65709. {
  65710. front: {
  65711. height: math.unit(165, "cm"),
  65712. weight: math.unit(130, "lb"),
  65713. name: "Front",
  65714. image: {
  65715. source: "./media/characters/sleeka/front.svg",
  65716. extra: 1252/1200,
  65717. bottom: 46/1298
  65718. }
  65719. },
  65720. },
  65721. [
  65722. {
  65723. name: "Normal",
  65724. height: math.unit(165, "cm")
  65725. },
  65726. {
  65727. name: "Galactic",
  65728. height: math.unit(5.8e22, "meters"),
  65729. default: true
  65730. },
  65731. {
  65732. name: "Universal",
  65733. height: math.unit(1.02e29, "meters")
  65734. },
  65735. ]
  65736. ))
  65737. characterMakers.push(() => makeCharacter(
  65738. { name: "Emily Whitetail", species: ["deer"], tags: ["anthro"] },
  65739. {
  65740. front: {
  65741. height: math.unit(5 + 11/12, "feet"),
  65742. weight: math.unit(145, "lb"),
  65743. name: "Front",
  65744. image: {
  65745. source: "./media/characters/emily-whitetail/front.svg",
  65746. extra: 2510/2280,
  65747. bottom: 128/2638
  65748. }
  65749. },
  65750. },
  65751. [
  65752. {
  65753. name: "Normal",
  65754. height: math.unit(5 + 11/12, "feet")
  65755. },
  65756. {
  65757. name: "Galactic",
  65758. height: math.unit(6.3e22, "meters"),
  65759. default: true
  65760. },
  65761. {
  65762. name: "Universal",
  65763. height: math.unit(1.12e29, "meters")
  65764. },
  65765. ]
  65766. ))
  65767. characterMakers.push(() => makeCharacter(
  65768. { name: "Buck Whitetail", species: ["deer"], tags: ["anthro"] },
  65769. {
  65770. front: {
  65771. height: math.unit(5 + 4/12, "feet"),
  65772. weight: math.unit(110, "lb"),
  65773. name: "Front",
  65774. image: {
  65775. source: "./media/characters/buck-whitetail/front.svg",
  65776. extra: 2430/2186,
  65777. bottom: 125/2555
  65778. }
  65779. },
  65780. },
  65781. [
  65782. {
  65783. name: "Normal",
  65784. height: math.unit(5 + 4/12, "feet")
  65785. },
  65786. {
  65787. name: "Galactic",
  65788. height: math.unit(5.4e22, "meters"),
  65789. default: true
  65790. },
  65791. {
  65792. name: "Universal",
  65793. height: math.unit(9.6e28, "meters")
  65794. },
  65795. ]
  65796. ))
  65797. characterMakers.push(() => makeCharacter(
  65798. { name: "Zoey Frisk", species: ["fox"], tags: ["anthro"] },
  65799. {
  65800. front: {
  65801. height: math.unit(5 + 3/12, "feet"),
  65802. name: "Front",
  65803. image: {
  65804. source: "./media/characters/zoey-frisk/front.svg",
  65805. extra: 2825/2646,
  65806. bottom: 57/2882
  65807. }
  65808. },
  65809. },
  65810. [
  65811. {
  65812. name: "Normal",
  65813. height: math.unit(5 + 3/12, "feet"),
  65814. default: true
  65815. },
  65816. {
  65817. name: "Macro",
  65818. height: math.unit(800, "feet")
  65819. },
  65820. ]
  65821. ))
  65822. characterMakers.push(() => makeCharacter(
  65823. { name: "Dhaeleena M'iar", species: ["siamese-cat"], tags: ["anthro"] },
  65824. {
  65825. front: {
  65826. height: math.unit(210, "cm"),
  65827. weight: math.unit(102, "kg"),
  65828. name: "Front",
  65829. image: {
  65830. source: "./media/characters/dhaeleena-m'iar/front.svg",
  65831. extra: 831/790,
  65832. bottom: 19/850
  65833. }
  65834. },
  65835. },
  65836. [
  65837. {
  65838. name: "Micro",
  65839. height: math.unit(1, "mm")
  65840. },
  65841. {
  65842. name: "Small",
  65843. height: math.unit(1, "cm")
  65844. },
  65845. {
  65846. name: "Short",
  65847. height: math.unit(1, "foot")
  65848. },
  65849. {
  65850. name: "Normal",
  65851. height: math.unit(210, "cm"),
  65852. default: true
  65853. },
  65854. {
  65855. name: "Big",
  65856. height: math.unit(15, "feet")
  65857. },
  65858. {
  65859. name: "Macro",
  65860. height: math.unit(50, "feet")
  65861. },
  65862. ]
  65863. ))
  65864. characterMakers.push(() => makeCharacter(
  65865. { name: "Trouble", species: ["wolf"], tags: ["anthro"] },
  65866. {
  65867. front: {
  65868. height: math.unit(80, "feet"),
  65869. weight: math.unit(410000, "lb"),
  65870. name: "Front",
  65871. image: {
  65872. source: "./media/characters/trouble/front.svg",
  65873. extra: 780/723,
  65874. bottom: 11/791
  65875. },
  65876. extraAttributes: {
  65877. "pawArea": {
  65878. name: "Paw Area",
  65879. power: 2,
  65880. type: "area",
  65881. base: math.unit(49, "feet^2")
  65882. },
  65883. }
  65884. },
  65885. },
  65886. [
  65887. {
  65888. name: "Normal",
  65889. height: math.unit(80, "feet"),
  65890. default: true
  65891. },
  65892. ]
  65893. ))
  65894. characterMakers.push(() => makeCharacter(
  65895. { name: "Bastion Aralus", species: ["wolf"], tags: ["anthro"] },
  65896. {
  65897. front: {
  65898. height: math.unit(5 + 7/12, "feet"),
  65899. weight: math.unit(140, "lb"),
  65900. name: "Front",
  65901. image: {
  65902. source: "./media/characters/bastion-aralus/front.svg",
  65903. extra: 1122/1045,
  65904. bottom: 24/1146
  65905. }
  65906. },
  65907. back: {
  65908. height: math.unit(5 + 7/12, "feet"),
  65909. weight: math.unit(140, "lb"),
  65910. name: "Back",
  65911. image: {
  65912. source: "./media/characters/bastion-aralus/back.svg",
  65913. extra: 1158/1078,
  65914. bottom: 39/1197
  65915. }
  65916. },
  65917. dick: {
  65918. height: math.unit(1.16, "feet"),
  65919. name: "Dick",
  65920. image: {
  65921. source: "./media/characters/bastion-aralus/dick.svg"
  65922. }
  65923. },
  65924. },
  65925. [
  65926. {
  65927. name: "Micro",
  65928. height: math.unit(1, "mm")
  65929. },
  65930. {
  65931. name: "Normal",
  65932. height: math.unit(5 + 7/12, "feet"),
  65933. default: true
  65934. },
  65935. {
  65936. name: "Macro",
  65937. height: math.unit(57, "feet")
  65938. },
  65939. ]
  65940. ))
  65941. characterMakers.push(() => makeCharacter(
  65942. { name: "Midnight Yamikidate", species: ["dragon"], tags: ["anthro"] },
  65943. {
  65944. sona_front: {
  65945. height: math.unit(6, "feet"),
  65946. weight: math.unit(350, "lb"),
  65947. name: "Front",
  65948. image: {
  65949. source: "./media/characters/midnight-yamikidate/sona-front.svg",
  65950. extra: 1099/1005,
  65951. bottom: 22/1121
  65952. },
  65953. form: "sona",
  65954. default: true
  65955. },
  65956. sona_side: {
  65957. height: math.unit(6, "feet"),
  65958. weight: math.unit(350, "lb"),
  65959. name: "Side",
  65960. image: {
  65961. source: "./media/characters/midnight-yamikidate/sona-side.svg",
  65962. extra: 1075/1017,
  65963. bottom: 20/1095
  65964. },
  65965. form: "sona",
  65966. },
  65967. character_front: {
  65968. height: math.unit(6, "feet"),
  65969. weight: math.unit(300, "lb"),
  65970. name: "Front",
  65971. image: {
  65972. source: "./media/characters/midnight-yamikidate/character-front.svg",
  65973. extra: 1099/1005,
  65974. bottom: 22/1121
  65975. },
  65976. form: "character",
  65977. default: true
  65978. },
  65979. character_side: {
  65980. height: math.unit(6, "feet"),
  65981. weight: math.unit(300, "lb"),
  65982. name: "Side",
  65983. image: {
  65984. source: "./media/characters/midnight-yamikidate/character-side.svg",
  65985. extra: 1075/1017,
  65986. bottom: 20/1095
  65987. },
  65988. form: "character",
  65989. },
  65990. },
  65991. [
  65992. {
  65993. name: "Normal",
  65994. height: math.unit(500, "feet"),
  65995. default: true,
  65996. form: "sona"
  65997. },
  65998. {
  65999. name: "Normal",
  66000. height: math.unit(50, "feet"),
  66001. default: true,
  66002. form: "character"
  66003. },
  66004. ],
  66005. {
  66006. "sona": {
  66007. name: "Sona",
  66008. default: true
  66009. },
  66010. "character": {
  66011. name: "Character",
  66012. },
  66013. }
  66014. ))
  66015. characterMakers.push(() => makeCharacter(
  66016. { name: "Hood", species: ["raptor"], tags: ["anthro"] },
  66017. {
  66018. front: {
  66019. height: math.unit(5 + 4/12, "feet"),
  66020. weight: math.unit(58, "kg"),
  66021. name: "Front",
  66022. image: {
  66023. source: "./media/characters/hood/front.svg",
  66024. extra: 1474/1309,
  66025. bottom: 0/1474
  66026. }
  66027. },
  66028. },
  66029. [
  66030. {
  66031. name: "Normal",
  66032. height: math.unit(5 + 4/12, "feet"),
  66033. default: true
  66034. },
  66035. ]
  66036. ))
  66037. characterMakers.push(() => makeCharacter(
  66038. { name: "Rena", species: ["wolf"], tags: ["anthro"] },
  66039. {
  66040. front: {
  66041. height: math.unit(8 + 2/12, "feet"),
  66042. name: "Front",
  66043. image: {
  66044. source: "./media/characters/rena/front.svg",
  66045. extra: 1768/1632,
  66046. bottom: 57/1825
  66047. }
  66048. },
  66049. },
  66050. [
  66051. {
  66052. name: "Normal",
  66053. height: math.unit(8 + 2/12, "feet"),
  66054. default: true
  66055. },
  66056. ]
  66057. ))
  66058. characterMakers.push(() => makeCharacter(
  66059. { name: "Taylor (Dilophosaurus)", species: ["dilophosaurus"], tags: ["anthro"] },
  66060. {
  66061. front: {
  66062. height: math.unit(5 + 3/12, "feet"),
  66063. name: "Front",
  66064. image: {
  66065. source: "./media/characters/taylor-dilophosaurus/front.svg",
  66066. extra: 1209/1159,
  66067. bottom: 33/1242
  66068. }
  66069. },
  66070. maw: {
  66071. height: math.unit(1.75, "feet"),
  66072. name: "Maw",
  66073. image: {
  66074. source: "./media/characters/taylor-dilophosaurus/maw.svg"
  66075. }
  66076. },
  66077. },
  66078. [
  66079. {
  66080. name: "Micro",
  66081. height: math.unit(3, "inches")
  66082. },
  66083. {
  66084. name: "Regular",
  66085. height: math.unit(5 + 3/12, "feet"),
  66086. default: true
  66087. },
  66088. {
  66089. name: "Imagined",
  66090. height: math.unit(90, "meters")
  66091. },
  66092. ]
  66093. ))
  66094. characterMakers.push(() => makeCharacter(
  66095. { name: "Suma Roo", species: ["nagainini"], tags: ["naga"] },
  66096. {
  66097. front: {
  66098. height: math.unit(11.75, "feet"),
  66099. weight: math.unit(4346, "lb"),
  66100. preyCapacity: math.unit(20, "people"),
  66101. name: "Front",
  66102. image: {
  66103. source: "./media/characters/suma-roo/front.svg",
  66104. extra: 1370/1365,
  66105. bottom: 164/1534
  66106. }
  66107. },
  66108. },
  66109. [
  66110. {
  66111. name: "Normal",
  66112. height: math.unit(11.75, "feet"),
  66113. default: true
  66114. },
  66115. ]
  66116. ))
  66117. characterMakers.push(() => makeCharacter(
  66118. { name: "Hymmanios", species: ["cat"], tags: ["anthro"] },
  66119. {
  66120. front: {
  66121. height: math.unit(2.35, "meters"),
  66122. weight: math.unit(240, "kg"),
  66123. name: "Front",
  66124. image: {
  66125. source: "./media/characters/hymmanios/front.svg",
  66126. extra: 2032/1994,
  66127. bottom: 194/2226
  66128. }
  66129. },
  66130. },
  66131. [
  66132. {
  66133. name: "Normal",
  66134. height: math.unit(2.35, "meters"),
  66135. default: true
  66136. },
  66137. {
  66138. name: "Macro",
  66139. height: math.unit(75, "meters")
  66140. },
  66141. {
  66142. name: "Mega",
  66143. height: math.unit(1250, "meters")
  66144. },
  66145. {
  66146. name: "Giga",
  66147. height: math.unit(235000, "meters")
  66148. },
  66149. ]
  66150. ))
  66151. characterMakers.push(() => makeCharacter(
  66152. { name: "Azalea", species: ["kaizleon"], tags: ["anthro"] },
  66153. {
  66154. front: {
  66155. height: math.unit(134, "feet"),
  66156. weight: math.unit(932.635, "tons"),
  66157. name: "Front",
  66158. image: {
  66159. source: "./media/characters/azalea/front.svg",
  66160. extra: 703/687,
  66161. bottom: 75/778
  66162. }
  66163. },
  66164. },
  66165. [
  66166. {
  66167. name: "Normal",
  66168. height: math.unit(134, "feet"),
  66169. default: true
  66170. },
  66171. ]
  66172. ))
  66173. characterMakers.push(() => makeCharacter(
  66174. { name: "Lizzy", species: ["otter"], tags: ["anthro"] },
  66175. {
  66176. front: {
  66177. height: math.unit(6.4, "feet"),
  66178. weight: math.unit(167.5, "lb"),
  66179. name: "Front",
  66180. image: {
  66181. source: "./media/characters/lizzy/front.svg",
  66182. extra: 1916/1791,
  66183. bottom: 103/2019
  66184. }
  66185. },
  66186. back: {
  66187. height: math.unit(6.4, "feet"),
  66188. weight: math.unit(167.5, "lb"),
  66189. name: "Back",
  66190. image: {
  66191. source: "./media/characters/lizzy/back.svg",
  66192. extra: 1995/1856,
  66193. bottom: 11/2006
  66194. }
  66195. },
  66196. },
  66197. [
  66198. {
  66199. name: "Normal",
  66200. height: math.unit(6.4, "feet"),
  66201. default: true
  66202. },
  66203. ]
  66204. ))
  66205. characterMakers.push(() => makeCharacter(
  66206. { name: "Sasha", species: ["bat"], tags: ["anthro"] },
  66207. {
  66208. front: {
  66209. height: math.unit(66, "inches"),
  66210. name: "Front",
  66211. image: {
  66212. source: "./media/characters/sasha/front.svg",
  66213. extra: 620/571,
  66214. bottom: 33/653
  66215. }
  66216. },
  66217. back: {
  66218. height: math.unit(66, "inches"),
  66219. name: "Back",
  66220. image: {
  66221. source: "./media/characters/sasha/back.svg",
  66222. extra: 615/564,
  66223. bottom: 38/653
  66224. }
  66225. },
  66226. },
  66227. [
  66228. {
  66229. name: "IRL",
  66230. height: math.unit(2, "inches")
  66231. },
  66232. {
  66233. name: "Normal",
  66234. height: math.unit(66, "inches"),
  66235. default: true
  66236. },
  66237. {
  66238. name: "Macro",
  66239. height: math.unit(400, "feet")
  66240. },
  66241. {
  66242. name: "Mega Macro",
  66243. height: math.unit(500000, "feet")
  66244. },
  66245. {
  66246. name: "Giga Macro",
  66247. height: math.unit(50000, "miles")
  66248. },
  66249. ]
  66250. ))
  66251. characterMakers.push(() => makeCharacter(
  66252. { name: "Autumn (Avali)", species: ["avali"], tags: ["anthro"] },
  66253. {
  66254. front: {
  66255. height: math.unit(52, "inches"),
  66256. name: "Front",
  66257. image: {
  66258. source: "./media/characters/autumn-avali/front.svg",
  66259. extra: 1031/908,
  66260. bottom: 38/1069
  66261. }
  66262. },
  66263. back: {
  66264. height: math.unit(52, "inches"),
  66265. name: "Back",
  66266. image: {
  66267. source: "./media/characters/autumn-avali/back.svg",
  66268. extra: 1047/923,
  66269. bottom: 11/1058
  66270. }
  66271. },
  66272. maw: {
  66273. height: math.unit(0.59, "feet"),
  66274. name: "Maw",
  66275. image: {
  66276. source: "./media/characters/autumn-avali/maw.svg"
  66277. }
  66278. },
  66279. },
  66280. [
  66281. {
  66282. name: "Normal",
  66283. height: math.unit(52, "inches"),
  66284. default: true
  66285. },
  66286. {
  66287. name: "Big'vali",
  66288. height: math.unit(3.5, "meters")
  66289. },
  66290. {
  66291. name: "Macro",
  66292. height: math.unit(35, "meters")
  66293. },
  66294. {
  66295. name: "Macro+",
  66296. height: math.unit(165, "meters")
  66297. },
  66298. {
  66299. name: "Megamacro",
  66300. height: math.unit(8250, "meters")
  66301. },
  66302. {
  66303. name: "Megamacro+",
  66304. height: math.unit(88000, "meters")
  66305. },
  66306. {
  66307. name: "Gigamacro",
  66308. height: math.unit(1.32, "megameters")
  66309. },
  66310. {
  66311. name: "Planet Cracker",
  66312. height: math.unit(77, "megameters")
  66313. },
  66314. ]
  66315. ))
  66316. characterMakers.push(() => makeCharacter(
  66317. { name: "Sophie", species: ["cow"], tags: ["anthro"] },
  66318. {
  66319. front: {
  66320. height: math.unit(200, "feet"),
  66321. name: "Front",
  66322. image: {
  66323. source: "./media/characters/sophie/front.svg",
  66324. extra: 710/680,
  66325. bottom: 3/713
  66326. },
  66327. extraAttributes: {
  66328. "milkProduction": {
  66329. name: "Milk Production",
  66330. power: 3,
  66331. type: "volume",
  66332. base: math.unit(27000, "liters")
  66333. },
  66334. }
  66335. },
  66336. },
  66337. [
  66338. {
  66339. name: "Normal",
  66340. height: math.unit(200, "feet"),
  66341. default: true
  66342. },
  66343. ]
  66344. ))
  66345. characterMakers.push(() => makeCharacter(
  66346. { name: "Adelaide (Spireborn)", species: ["spireborn"], tags: ["anthro"] },
  66347. {
  66348. front: {
  66349. height: math.unit(23, "feet"),
  66350. name: "Front",
  66351. image: {
  66352. source: "./media/characters/adelaide-spireborn/front.svg",
  66353. extra: 671/625,
  66354. bottom: 18/689
  66355. }
  66356. },
  66357. maw: {
  66358. height: math.unit(7.8, "feet"),
  66359. name: "Maw",
  66360. image: {
  66361. source: "./media/characters/adelaide-spireborn/maw.svg"
  66362. }
  66363. },
  66364. sword: {
  66365. height: math.unit(13.4, "feet"),
  66366. name: "Sword",
  66367. image: {
  66368. source: "./media/characters/adelaide-spireborn/sword.svg"
  66369. }
  66370. },
  66371. },
  66372. [
  66373. {
  66374. name: "Magically Induced",
  66375. height: math.unit(8.5, "feet")
  66376. },
  66377. {
  66378. name: "Normal",
  66379. height: math.unit(23, "feet"),
  66380. default: true
  66381. },
  66382. ]
  66383. ))
  66384. characterMakers.push(() => makeCharacter(
  66385. { name: "Artemus", species: ["zorgoia"], tags: ["feral"] },
  66386. {
  66387. side: {
  66388. height: math.unit(8, "feet"),
  66389. name: "Side",
  66390. image: {
  66391. source: "./media/characters/artemus/side.svg",
  66392. extra: 800/397,
  66393. bottom: 83/883
  66394. }
  66395. },
  66396. front: {
  66397. height: math.unit(8, "feet"),
  66398. name: "Front",
  66399. image: {
  66400. source: "./media/characters/artemus/front.svg",
  66401. extra: 763/348,
  66402. bottom: 89/852
  66403. }
  66404. },
  66405. maw: {
  66406. height: math.unit(5.63, "feet"),
  66407. name: "Maw",
  66408. image: {
  66409. source: "./media/characters/artemus/maw.svg"
  66410. }
  66411. },
  66412. forepaw: {
  66413. height: math.unit(3.13, "feet"),
  66414. name: "Forepaw",
  66415. image: {
  66416. source: "./media/characters/artemus/forepaw.svg"
  66417. }
  66418. },
  66419. hindpaw: {
  66420. height: math.unit(4.85, "feet"),
  66421. name: "Hindpaw",
  66422. image: {
  66423. source: "./media/characters/artemus/hindpaw.svg"
  66424. }
  66425. },
  66426. },
  66427. [
  66428. {
  66429. name: "Normal",
  66430. height: math.unit(8, "feet"),
  66431. default: true
  66432. },
  66433. ]
  66434. ))
  66435. characterMakers.push(() => makeCharacter(
  66436. { name: "Flynn", species: ["cross-fox"], tags: ["anthro"] },
  66437. {
  66438. front: {
  66439. height: math.unit(4, "feet"),
  66440. name: "Front",
  66441. image: {
  66442. source: "./media/characters/flynn/front.svg",
  66443. extra: 427/404,
  66444. bottom: 14/441
  66445. },
  66446. extraAttributes: {
  66447. "tailLength": {
  66448. name: "Tail Length",
  66449. power: 1,
  66450. type: "length",
  66451. base: math.unit(2.7, "feet")
  66452. },
  66453. }
  66454. },
  66455. frontNsfw: {
  66456. height: math.unit(4, "feet"),
  66457. name: "Front-nsfw",
  66458. image: {
  66459. source: "./media/characters/flynn/front-nsfw.svg",
  66460. extra: 427/404,
  66461. bottom: 14/441
  66462. },
  66463. extraAttributes: {
  66464. "tailLength": {
  66465. name: "Tail Length",
  66466. power: 1,
  66467. type: "length",
  66468. base: math.unit(2.7, "feet")
  66469. },
  66470. "dickLength": {
  66471. name: "Dick Length",
  66472. power: 1,
  66473. type: "length",
  66474. base: math.unit(0.7, "feet")
  66475. },
  66476. }
  66477. },
  66478. back: {
  66479. height: math.unit(4, "feet"),
  66480. name: "Back",
  66481. image: {
  66482. source: "./media/characters/flynn/back.svg",
  66483. extra: 420/400,
  66484. bottom: 12/432
  66485. },
  66486. extraAttributes: {
  66487. "tailLength": {
  66488. name: "Tail Length",
  66489. power: 1,
  66490. type: "length",
  66491. base: math.unit(2.7, "feet")
  66492. },
  66493. }
  66494. },
  66495. },
  66496. [
  66497. {
  66498. name: "Normal",
  66499. height: math.unit(4, "feet"),
  66500. default: true
  66501. },
  66502. ]
  66503. ))
  66504. characterMakers.push(() => makeCharacter(
  66505. { name: "Orun", species: ["sabertooth-tiger"], tags: ["anthro"] },
  66506. {
  66507. frontSfw: {
  66508. height: math.unit(1.9, "meters"),
  66509. name: "Front (SFW)",
  66510. image: {
  66511. source: "./media/characters/orun/front-sfw.svg",
  66512. extra: 1684/1625,
  66513. bottom: 64/1748
  66514. }
  66515. },
  66516. frontNsfw: {
  66517. height: math.unit(1.9, "meters"),
  66518. name: "Front (NSFW)",
  66519. image: {
  66520. source: "./media/characters/orun/front-nsfw.svg",
  66521. extra: 1684/1625,
  66522. bottom: 64/1748
  66523. }
  66524. },
  66525. frontErect: {
  66526. height: math.unit(1.9, "meters"),
  66527. name: "Front (Erect)",
  66528. image: {
  66529. source: "./media/characters/orun/front-erect.svg",
  66530. extra: 1684/1625,
  66531. bottom: 64/1748
  66532. }
  66533. },
  66534. },
  66535. [
  66536. {
  66537. name: "Normal",
  66538. height: math.unit(1.9, "meters"),
  66539. default: true
  66540. },
  66541. {
  66542. name: "Giant",
  66543. height: math.unit(45, "meters")
  66544. },
  66545. {
  66546. name: "Bigger Giant",
  66547. height: math.unit(155, "meters")
  66548. },
  66549. {
  66550. name: "Macro",
  66551. height: math.unit(550, "meters")
  66552. },
  66553. {
  66554. name: "Bigger Macro",
  66555. height: math.unit(1050, "meters")
  66556. },
  66557. {
  66558. name: "Titan",
  66559. height: math.unit(5, "km")
  66560. },
  66561. {
  66562. name: "Bigger Titan",
  66563. height: math.unit(15, "km")
  66564. },
  66565. ]
  66566. ))
  66567. //characters
  66568. function makeCharacters() {
  66569. const results = [];
  66570. characterMakers.forEach(character => {
  66571. results.push(character());
  66572. });
  66573. return results;
  66574. }