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

60912 lines
1.5 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.preyCapacity) {
  46. views[key].attributes.preyCapacity = {
  47. name: "Prey Capacity",
  48. power: 3,
  49. type: "volume",
  50. base: value.preyCapacity,
  51. defaultUnit: "people"
  52. }
  53. }
  54. if (value.energyNeed) {
  55. views[key].attributes.capacity = {
  56. name: "Food Intake",
  57. power: 3 * 3 / 4,
  58. type: "energy",
  59. base: value.energyNeed
  60. }
  61. }
  62. if (value.extraAttributes) {
  63. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  64. views[key].attributes[attrKey] = attrValue
  65. })
  66. }
  67. });
  68. return createEntityMaker(info, views, defaultSizes, forms);
  69. }
  70. const speciesData = {
  71. animal: {
  72. name: "Animal"
  73. },
  74. dog: {
  75. name: "Dog",
  76. parents: [
  77. "canine"
  78. ]
  79. },
  80. canine: {
  81. name: "Canine",
  82. parents: [
  83. "mammal"
  84. ]
  85. },
  86. crux: {
  87. name: "Crux",
  88. parents: [
  89. "mammal"
  90. ]
  91. },
  92. mammal: {
  93. name: "Mammal",
  94. parents: [
  95. "animal"
  96. ]
  97. },
  98. "rough-collie": {
  99. name: "Rough Collie",
  100. parents: [
  101. "dog"
  102. ]
  103. },
  104. dragon: {
  105. name: "Dragon",
  106. parents: [
  107. "reptile"
  108. ]
  109. },
  110. reptile: {
  111. name: "Reptile",
  112. parents: [
  113. "animal"
  114. ]
  115. },
  116. woodpecker: {
  117. name: "Woodpecker",
  118. parents: [
  119. "avian"
  120. ]
  121. },
  122. avian: {
  123. name: "Avian",
  124. parents: [
  125. "animal"
  126. ]
  127. },
  128. kitsune: {
  129. name: "Kitsune",
  130. parents: [
  131. "fox"
  132. ]
  133. },
  134. fox: {
  135. name: "Fox",
  136. parents: [
  137. "mammal"
  138. ]
  139. },
  140. pokemon: {
  141. name: "Pokemon",
  142. parents: [
  143. "video-games"
  144. ]
  145. },
  146. tiger: {
  147. name: "Tiger",
  148. parents: [
  149. "cat"
  150. ]
  151. },
  152. cat: {
  153. name: "Cat",
  154. parents: [
  155. "feliform"
  156. ]
  157. },
  158. "blue-jay": {
  159. name: "Blue Jay",
  160. parents: [
  161. "corvid"
  162. ]
  163. },
  164. wolf: {
  165. name: "Wolf",
  166. parents: [
  167. "mammal"
  168. ]
  169. },
  170. coyote: {
  171. name: "Coyote",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. raccoon: {
  177. name: "Raccoon",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. weasel: {
  183. name: "Weasel",
  184. parents: [
  185. "mustelid"
  186. ]
  187. },
  188. "red-panda": {
  189. name: "Red Panda",
  190. parents: [
  191. "mammal"
  192. ]
  193. },
  194. dolphin: {
  195. name: "Dolphin",
  196. parents: [
  197. "mammal"
  198. ]
  199. },
  200. "african-wild-dog": {
  201. name: "African Wild Dog",
  202. parents: [
  203. "canine"
  204. ]
  205. },
  206. "hyena": {
  207. name: "Hyena",
  208. parents: [
  209. "feliform"
  210. ]
  211. },
  212. "carbuncle": {
  213. name: "Carbuncle",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. bat: {
  219. name: "Bat",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "leaf-nosed-bat": {
  225. name: "Leaf-Nosed Bat",
  226. parents: [
  227. "bat"
  228. ]
  229. },
  230. "fish": {
  231. name: "Fish",
  232. parents: [
  233. "animal"
  234. ]
  235. },
  236. "ram": {
  237. name: "Ram",
  238. parents: [
  239. "mammal"
  240. ]
  241. },
  242. "demon": {
  243. name: "Demon",
  244. parents: [
  245. "supernatural"
  246. ]
  247. },
  248. "cougar": {
  249. name: "Cougar",
  250. parents: [
  251. "cat"
  252. ]
  253. },
  254. "goat": {
  255. name: "Goat",
  256. parents: [
  257. "mammal"
  258. ]
  259. },
  260. "lion": {
  261. name: "Lion",
  262. parents: [
  263. "cat"
  264. ]
  265. },
  266. "harpy-eager": {
  267. name: "Harpy Eagle",
  268. parents: [
  269. "avian"
  270. ]
  271. },
  272. "deer": {
  273. name: "Deer",
  274. parents: [
  275. "mammal"
  276. ]
  277. },
  278. "phoenix": {
  279. name: "Phoenix",
  280. parents: [
  281. "avian"
  282. ]
  283. },
  284. "aeromorph": {
  285. name: "Aeromorph",
  286. parents: [
  287. "machine"
  288. ]
  289. },
  290. "machine": {
  291. name: "Machine",
  292. },
  293. "android": {
  294. name: "Android",
  295. parents: [
  296. "machine"
  297. ]
  298. },
  299. "jackal": {
  300. name: "Jackal",
  301. parents: [
  302. "canine"
  303. ]
  304. },
  305. "corvid": {
  306. name: "Corvid",
  307. parents: [
  308. "passerine"
  309. ]
  310. },
  311. "pharaoh-hound": {
  312. name: "Pharaoh Hound",
  313. parents: [
  314. "dog"
  315. ]
  316. },
  317. "skunk": {
  318. name: "Skunk",
  319. parents: [
  320. "mammal"
  321. ]
  322. },
  323. "shark": {
  324. name: "Shark",
  325. parents: [
  326. "fish"
  327. ]
  328. },
  329. "black-panther": {
  330. name: "Black Panther",
  331. parents: [
  332. "cat"
  333. ]
  334. },
  335. "umbra": {
  336. name: "Umbra",
  337. parents: [
  338. "animal"
  339. ]
  340. },
  341. "raven": {
  342. name: "Raven",
  343. parents: [
  344. "corvid"
  345. ]
  346. },
  347. "snow-leopard": {
  348. name: "Snow Leopard",
  349. parents: [
  350. "cat"
  351. ]
  352. },
  353. "barbary-lion": {
  354. name: "Barbary Lion",
  355. parents: [
  356. "lion"
  357. ]
  358. },
  359. "dra'gal": {
  360. name: "Dra'Gal",
  361. parents: [
  362. "mammal"
  363. ]
  364. },
  365. "german-shepherd": {
  366. name: "German Shepherd",
  367. parents: [
  368. "dog"
  369. ]
  370. },
  371. "bayleef": {
  372. name: "Bayleef",
  373. parents: [
  374. "pokemon",
  375. "plant",
  376. "animal"
  377. ]
  378. },
  379. "mouse": {
  380. name: "Mouse",
  381. parents: [
  382. "rodent"
  383. ]
  384. },
  385. "rat": {
  386. name: "Rat",
  387. parents: [
  388. "mammal"
  389. ]
  390. },
  391. "hoshiko-beast": {
  392. name: "Hoshiko Beast",
  393. parents: ["animal"]
  394. },
  395. "snow-jugani": {
  396. name: "Snow Jugani",
  397. parents: ["cat"]
  398. },
  399. "patamon": {
  400. name: "Patamon",
  401. parents: ["digimon", "guinea-pig"]
  402. },
  403. "digimon": {
  404. name: "Digimon",
  405. parents: [
  406. "video-games"
  407. ]
  408. },
  409. "jugani": {
  410. name: "Jugani",
  411. parents: ["cat"]
  412. },
  413. "luxray": {
  414. name: "Luxray",
  415. parents: ["pokemon", "lion"]
  416. },
  417. "mech": {
  418. name: "Mech",
  419. parents: ["machine"]
  420. },
  421. "zoid": {
  422. name: "Zoid",
  423. parents: ["mech"]
  424. },
  425. "monster": {
  426. name: "Monster",
  427. parents: ["animal"]
  428. },
  429. "foo-dog": {
  430. name: "Foo Dog",
  431. parents: ["mammal"]
  432. },
  433. "elephant": {
  434. name: "Elephant",
  435. parents: ["mammal"]
  436. },
  437. "eagle": {
  438. name: "Eagle",
  439. parents: ["bird-of-prey"]
  440. },
  441. "cow": {
  442. name: "Cow",
  443. parents: ["mammal"]
  444. },
  445. "crocodile": {
  446. name: "Crocodile",
  447. parents: ["reptile"]
  448. },
  449. "borzoi": {
  450. name: "Borzoi",
  451. parents: ["dog"]
  452. },
  453. "snake": {
  454. name: "Snake",
  455. parents: ["reptile"]
  456. },
  457. "horned-bush-viper": {
  458. name: "Horned Bush Viper",
  459. parents: ["viper"]
  460. },
  461. "cobra": {
  462. name: "Cobra",
  463. parents: ["snake"]
  464. },
  465. "harpy-eagle": {
  466. name: "Harpy Eagle",
  467. parents: ["eagle"]
  468. },
  469. "raptor": {
  470. name: "Raptor",
  471. parents: ["dinosaur"]
  472. },
  473. "dinosaur": {
  474. name: "Dinosaur",
  475. parents: ["reptile"]
  476. },
  477. "veilhound": {
  478. name: "Veilhound",
  479. parents: ["hellhound"]
  480. },
  481. "hellhound": {
  482. name: "Hellhound",
  483. parents: ["canine", "demon"]
  484. },
  485. "insect": {
  486. name: "Insect",
  487. parents: ["animal"]
  488. },
  489. "beetle": {
  490. name: "Beetle",
  491. parents: ["insect"]
  492. },
  493. "moth": {
  494. name: "Moth",
  495. parents: ["insect"]
  496. },
  497. "eastern-dragon": {
  498. name: "Eastern Dragon",
  499. parents: ["dragon"]
  500. },
  501. "jaguar": {
  502. name: "Jaguar",
  503. parents: ["cat"]
  504. },
  505. "horse": {
  506. name: "Horse",
  507. parents: ["mammal"]
  508. },
  509. "sergal": {
  510. name: "Sergal",
  511. parents: ["mammal", "avian", "vilous"]
  512. },
  513. "gryphon": {
  514. name: "Gryphon",
  515. parents: ["lion", "eagle"]
  516. },
  517. "robot": {
  518. name: "Robot",
  519. parents: ["machine"]
  520. },
  521. "medihound": {
  522. name: "Medihound",
  523. parents: ["robot", "dog"]
  524. },
  525. "sylveon": {
  526. name: "Sylveon",
  527. parents: ["pokemon"]
  528. },
  529. "catgirl": {
  530. name: "Catgirl",
  531. parents: ["mammal"]
  532. },
  533. "cowgirl": {
  534. name: "Cowgirl",
  535. parents: ["mammal"]
  536. },
  537. "pony": {
  538. name: "Pony",
  539. parents: ["horse"]
  540. },
  541. "rabbit": {
  542. name: "Rabbit",
  543. parents: ["leporidae"]
  544. },
  545. "fennec-fox": {
  546. name: "Fennec Fox",
  547. parents: ["fox"]
  548. },
  549. "azodian": {
  550. name: "Azodian",
  551. parents: ["mouse"]
  552. },
  553. "shiba-inu": {
  554. name: "Shiba Inu",
  555. parents: ["dog"]
  556. },
  557. "changeling": {
  558. name: "Changeling",
  559. parents: ["insect"]
  560. },
  561. "cheetah": {
  562. name: "Cheetah",
  563. parents: ["cat"]
  564. },
  565. "golden-jackal": {
  566. name: "Golden Jackal",
  567. parents: ["jackal"]
  568. },
  569. "manectric": {
  570. name: "Manectric",
  571. parents: ["pokemon", "wolf"]
  572. },
  573. "rat": {
  574. name: "Rat",
  575. parents: ["rodent"]
  576. },
  577. "rodent": {
  578. name: "Rodent",
  579. parents: ["mammal"]
  580. },
  581. "octocoon": {
  582. name: "Octocoon",
  583. parents: ["raccoon", "octopus"]
  584. },
  585. "octopus": {
  586. name: "Octopus",
  587. parents: ["fish"]
  588. },
  589. "werewolf": {
  590. name: "Werewolf",
  591. parents: ["wolf", "werebeast"]
  592. },
  593. "werebeast": {
  594. name: "Werebeast",
  595. parents: ["monster"]
  596. },
  597. "meerkat": {
  598. name: "Meerkat",
  599. parents: ["mammal"]
  600. },
  601. "human": {
  602. name: "Human",
  603. parents: ["mammal"]
  604. },
  605. "geth": {
  606. name: "Geth",
  607. parents: ["android"]
  608. },
  609. "husky": {
  610. name: "Husky",
  611. parents: ["dog"]
  612. },
  613. "long-eared-bat": {
  614. name: "Long Eared Bat",
  615. parents: ["bat"]
  616. },
  617. "lizard": {
  618. name: "Lizard",
  619. parents: ["reptile"]
  620. },
  621. "salamander": {
  622. name: "Salamander",
  623. parents: ["lizard"]
  624. },
  625. "chameleon": {
  626. name: "Chameleon",
  627. parents: ["lizard"]
  628. },
  629. "gecko": {
  630. name: "Gecko",
  631. parents: ["lizard"]
  632. },
  633. "kobold": {
  634. name: "Kobold",
  635. parents: ["reptile"]
  636. },
  637. "charizard": {
  638. name: "Charizard",
  639. parents: ["pokemon", "dragon"]
  640. },
  641. "lugia": {
  642. name: "Lugia",
  643. parents: ["pokemon", "avian"]
  644. },
  645. "cerberus": {
  646. name: "Cerberus",
  647. parents: ["dog"]
  648. },
  649. "tyrantrum": {
  650. name: "Tyrantrum",
  651. parents: ["pokemon"]
  652. },
  653. "lemur": {
  654. name: "Lemur",
  655. parents: ["mammal"]
  656. },
  657. "kelpie": {
  658. name: "Kelpie",
  659. parents: ["horse", "monster"]
  660. },
  661. "labrador": {
  662. name: "Labrador",
  663. parents: ["dog"]
  664. },
  665. "sylveon": {
  666. name: "Sylveon",
  667. parents: ["eeveelution"]
  668. },
  669. "eeveelution": {
  670. name: "Eeveelution",
  671. parents: ["pokemon", "cat"]
  672. },
  673. "polar-bear": {
  674. name: "Polar Bear",
  675. parents: ["bear"]
  676. },
  677. "bear": {
  678. name: "Bear",
  679. parents: ["mammal"]
  680. },
  681. "absol": {
  682. name: "Absol",
  683. parents: ["pokemon", "cat"]
  684. },
  685. "wolver": {
  686. name: "Wolver",
  687. parents: ["mammal"]
  688. },
  689. "rottweiler": {
  690. name: "Rottweiler",
  691. parents: ["dog"]
  692. },
  693. "zebra": {
  694. name: "Zebra",
  695. parents: ["horse"]
  696. },
  697. "yoshi": {
  698. name: "Yoshi",
  699. parents: ["dinosaur"]
  700. },
  701. "lynx": {
  702. name: "Lynx",
  703. parents: ["cat"]
  704. },
  705. "unknown": {
  706. name: "Unknown",
  707. parents: []
  708. },
  709. "thylacine": {
  710. name: "Thylacine",
  711. parents: ["mammal"]
  712. },
  713. "gabumon": {
  714. name: "Gabumon",
  715. parents: ["digimon"]
  716. },
  717. "border-collie": {
  718. name: "Border Collie",
  719. parents: ["dog"]
  720. },
  721. "imp": {
  722. name: "Imp",
  723. parents: ["demon"]
  724. },
  725. "kangaroo": {
  726. name: "Kangaroo",
  727. parents: ["marsupial"]
  728. },
  729. "renamon": {
  730. name: "Renamon",
  731. parents: ["digimon", "fox"]
  732. },
  733. "candy-orca-dragon": {
  734. name: "Candy Orca Dragon",
  735. parents: ["fish", "dragon", "candy"]
  736. },
  737. "sabertooth-tiger": {
  738. name: "Sabertooth Tiger",
  739. parents: ["cat"]
  740. },
  741. "espurr": {
  742. name: "Espurr",
  743. parents: ["pokemon", "cat"]
  744. },
  745. "otter": {
  746. name: "Otter",
  747. parents: ["mustelid"]
  748. },
  749. "elemental": {
  750. name: "Elemental",
  751. parents: ["mammal"]
  752. },
  753. "mew": {
  754. name: "Mew",
  755. parents: ["pokemon"]
  756. },
  757. "goodra": {
  758. name: "Goodra",
  759. parents: ["pokemon"]
  760. },
  761. "fairy": {
  762. name: "Fairy",
  763. parents: ["magical"]
  764. },
  765. "typhlosion": {
  766. name: "Typhlosion",
  767. parents: ["pokemon"]
  768. },
  769. "magical": {
  770. name: "Magical",
  771. parents: []
  772. },
  773. "xenomorph": {
  774. name: "Xenomorph",
  775. parents: ["monster", "alien"]
  776. },
  777. "charr": {
  778. name: "Charr",
  779. parents: ["cat"]
  780. },
  781. "siberian-husky": {
  782. name: "Siberian Husky",
  783. parents: ["husky"]
  784. },
  785. "alligator": {
  786. name: "Alligator",
  787. parents: ["reptile"]
  788. },
  789. "bernese-mountain-dog": {
  790. name: "Bernese Mountain Dog",
  791. parents: ["dog"]
  792. },
  793. "reshiram": {
  794. name: "Reshiram",
  795. parents: ["pokemon", "dragon"]
  796. },
  797. "grizzly-bear": {
  798. name: "Grizzly Bear",
  799. parents: ["bear"]
  800. },
  801. "water-monitor": {
  802. name: "Water Monitor",
  803. parents: ["lizard"]
  804. },
  805. "banchofossa": {
  806. name: "Banchofossa",
  807. parents: ["mammal"]
  808. },
  809. "kirin": {
  810. name: "Kirin",
  811. parents: ["monster"]
  812. },
  813. "quilava": {
  814. name: "Quilava",
  815. parents: ["pokemon"]
  816. },
  817. "seviper": {
  818. name: "Seviper",
  819. parents: ["pokemon", "viper"]
  820. },
  821. "flying-fox": {
  822. name: "Flying Fox",
  823. parents: ["bat"]
  824. },
  825. "keynain": {
  826. name: "Keynain",
  827. parents: ["avian"]
  828. },
  829. "lucario": {
  830. name: "Lucario",
  831. parents: ["pokemon", "jackal"]
  832. },
  833. "siamese-cat": {
  834. name: "Siamese Cat",
  835. parents: ["cat"]
  836. },
  837. "spider": {
  838. name: "Spider",
  839. parents: ["insect"]
  840. },
  841. "samurott": {
  842. name: "Samurott",
  843. parents: ["pokemon", "otter"]
  844. },
  845. "megalodon": {
  846. name: "Megalodon",
  847. parents: ["shark"]
  848. },
  849. "unicorn": {
  850. name: "Unicorn",
  851. parents: ["horse"]
  852. },
  853. "greninja": {
  854. name: "Greninja",
  855. parents: ["pokemon", "frog"]
  856. },
  857. "water-dragon": {
  858. name: "Water Dragon",
  859. parents: ["dragon"]
  860. },
  861. "cross-fox": {
  862. name: "Cross Fox",
  863. parents: ["fox"]
  864. },
  865. "synth": {
  866. name: "Synth",
  867. parents: ["machine"]
  868. },
  869. "construct": {
  870. name: "Construct",
  871. parents: []
  872. },
  873. "mexican-wolf": {
  874. name: "Mexican Wolf",
  875. parents: ["wolf"]
  876. },
  877. "leopard": {
  878. name: "Leopard",
  879. parents: ["cat"]
  880. },
  881. "pig": {
  882. name: "Pig",
  883. parents: ["mammal"]
  884. },
  885. "ampharos": {
  886. name: "Ampharos",
  887. parents: ["pokemon", "sheep"]
  888. },
  889. "orca": {
  890. name: "Orca",
  891. parents: ["fish"]
  892. },
  893. "lycanroc": {
  894. name: "Lycanroc",
  895. parents: ["pokemon", "wolf"]
  896. },
  897. "surkanu": {
  898. name: "Surkanu",
  899. parents: ["monster"]
  900. },
  901. "seal": {
  902. name: "Seal",
  903. parents: ["mammal"]
  904. },
  905. "keldeo": {
  906. name: "Keldeo",
  907. parents: ["pokemon"]
  908. },
  909. "great-dane": {
  910. name: "Great Dane",
  911. parents: ["dog"]
  912. },
  913. "black-backed-jackal": {
  914. name: "Black Backed Jackal",
  915. parents: ["jackal"]
  916. },
  917. "sheep": {
  918. name: "Sheep",
  919. parents: ["mammal"]
  920. },
  921. "leopard-seal": {
  922. name: "Leopard Seal",
  923. parents: ["seal"]
  924. },
  925. "zoroark": {
  926. name: "Zoroark",
  927. parents: ["pokemon", "fox"]
  928. },
  929. "maned-wolf": {
  930. name: "Maned Wolf",
  931. parents: ["canine"]
  932. },
  933. "dracha": {
  934. name: "Dracha",
  935. parents: ["dragon"]
  936. },
  937. "wolxi": {
  938. name: "Wolxi",
  939. parents: ["mammal", "alien"]
  940. },
  941. "dratini": {
  942. name: "Dratini",
  943. parents: ["pokemon", "dragon"]
  944. },
  945. "skaven": {
  946. name: "Skaven",
  947. parents: ["rat"]
  948. },
  949. "mongoose": {
  950. name: "Mongoose",
  951. parents: ["mammal"]
  952. },
  953. "lopunny": {
  954. name: "Lopunny",
  955. parents: ["pokemon", "rabbit"]
  956. },
  957. "feraligatr": {
  958. name: "Feraligatr",
  959. parents: ["pokemon", "alligator"]
  960. },
  961. "houndoom": {
  962. name: "Houndoom",
  963. parents: ["pokemon", "dog"]
  964. },
  965. "protogen": {
  966. name: "Protogen",
  967. parents: ["machine"]
  968. },
  969. "saint-bernard": {
  970. name: "Saint Bernard",
  971. parents: ["dog"]
  972. },
  973. "crow": {
  974. name: "Crow",
  975. parents: ["corvid"]
  976. },
  977. "delphox": {
  978. name: "Delphox",
  979. parents: ["pokemon", "fox"]
  980. },
  981. "moose": {
  982. name: "Moose",
  983. parents: ["mammal"]
  984. },
  985. "joraxian": {
  986. name: "Joraxian",
  987. parents: ["monster", "canine", "demon"]
  988. },
  989. "nimbat": {
  990. name: "Nimbat",
  991. parents: ["mammal"]
  992. },
  993. "aardwolf": {
  994. name: "Aardwolf",
  995. parents: ["canine"]
  996. },
  997. "fluudrani": {
  998. name: "Fluudrani",
  999. parents: ["animal"]
  1000. },
  1001. "arcanine": {
  1002. name: "Arcanine",
  1003. parents: ["pokemon", "dog"]
  1004. },
  1005. "inteleon": {
  1006. name: "Inteleon",
  1007. parents: ["pokemon", "fish"]
  1008. },
  1009. "ninetales": {
  1010. name: "Ninetales",
  1011. parents: ["pokemon", "kitsune"]
  1012. },
  1013. "tigrex": {
  1014. name: "Tigrex",
  1015. parents: ["tiger"]
  1016. },
  1017. "zorua": {
  1018. name: "Zorua",
  1019. parents: ["pokemon", "fox"]
  1020. },
  1021. "vulpix": {
  1022. name: "Vulpix",
  1023. parents: ["pokemon", "fox"]
  1024. },
  1025. "barghest": {
  1026. name: "Barghest",
  1027. parents: ["monster"]
  1028. },
  1029. "gray-wolf": {
  1030. name: "Gray Wolf",
  1031. parents: ["wolf"]
  1032. },
  1033. "ruppells-fox": {
  1034. name: "Rüppell's Fox",
  1035. parents: ["fox"]
  1036. },
  1037. "bull-terrier": {
  1038. name: "Bull Terrier",
  1039. parents: ["dog"]
  1040. },
  1041. "european-honey-buzzard": {
  1042. name: "European Honey Buzzard",
  1043. parents: ["avian"]
  1044. },
  1045. "t-rex": {
  1046. name: "Tyrannosaurus Rex",
  1047. parents: ["theropod"]
  1048. },
  1049. "mactarian": {
  1050. name: "Mactarian",
  1051. parents: ["shark", "monster"]
  1052. },
  1053. "mewtwo-y": {
  1054. name: "Mewtwo Y",
  1055. parents: ["mewtwo"]
  1056. },
  1057. "mewtwo": {
  1058. name: "Mewtwo",
  1059. parents: ["pokemon"]
  1060. },
  1061. "eevee": {
  1062. name: "Eevee",
  1063. parents: ["eeveelution"]
  1064. },
  1065. "mienshao": {
  1066. name: "Mienshao",
  1067. parents: ["pokemon"]
  1068. },
  1069. "sugar-glider": {
  1070. name: "Sugar Glider",
  1071. parents: ["opossum"]
  1072. },
  1073. "spectral-bat": {
  1074. name: "Spectral Bat",
  1075. parents: ["bat"]
  1076. },
  1077. "scolipede": {
  1078. name: "Scolipede",
  1079. parents: ["pokemon", "insect"]
  1080. },
  1081. "jackalope": {
  1082. name: "Jackalope",
  1083. parents: ["rabbit", "antelope"]
  1084. },
  1085. "caracal": {
  1086. name: "Caracal",
  1087. parents: ["cat"]
  1088. },
  1089. "stoat": {
  1090. name: "Stoat",
  1091. parents: ["mammal"]
  1092. },
  1093. "african-golden-cat": {
  1094. name: "African Golden Cat",
  1095. parents: ["cat"]
  1096. },
  1097. "gigantosaurus": {
  1098. name: "Gigantosaurus",
  1099. parents: ["dinosaur"]
  1100. },
  1101. "zorgoia": {
  1102. name: "Zorgoia",
  1103. parents: ["mammal"]
  1104. },
  1105. "monitor-lizard": {
  1106. name: "Monitor Lizard",
  1107. parents: ["lizard"]
  1108. },
  1109. "ziralkia": {
  1110. name: "Ziralkia",
  1111. parents: ["mammal"]
  1112. },
  1113. "kiiasi": {
  1114. name: "Kiiasi",
  1115. parents: ["animal"]
  1116. },
  1117. "synx": {
  1118. name: "Synx",
  1119. parents: ["monster"]
  1120. },
  1121. "panther": {
  1122. name: "Panther",
  1123. parents: ["cat"]
  1124. },
  1125. "azumarill": {
  1126. name: "Azumarill",
  1127. parents: ["pokemon"]
  1128. },
  1129. "river-snaptail": {
  1130. name: "River Snaptail",
  1131. parents: ["otter", "crocodile"]
  1132. },
  1133. "great-blue-heron": {
  1134. name: "Great Blue Heron",
  1135. parents: ["avian"]
  1136. },
  1137. "smeargle": {
  1138. name: "Smeargle",
  1139. parents: ["pokemon"]
  1140. },
  1141. "vendeilen": {
  1142. name: "Vendeilen",
  1143. parents: ["monster"]
  1144. },
  1145. "ventura": {
  1146. name: "Ventura",
  1147. parents: ["canine"]
  1148. },
  1149. "clouded-leopard": {
  1150. name: "Clouded Leopard",
  1151. parents: ["leopard"]
  1152. },
  1153. "argonian": {
  1154. name: "Argonian",
  1155. parents: ["lizard"]
  1156. },
  1157. "salazzle": {
  1158. name: "Salazzle",
  1159. parents: ["pokemon", "lizard"]
  1160. },
  1161. "je-stoff-drachen": {
  1162. name: "Je-Stoff Drachen",
  1163. parents: ["dragon"]
  1164. },
  1165. "finnish-spitz-dog": {
  1166. name: "Finnish Spitz Dog",
  1167. parents: ["dog"]
  1168. },
  1169. "gray-fox": {
  1170. name: "Gray Fox",
  1171. parents: ["fox"]
  1172. },
  1173. "opossum": {
  1174. name: "Opossum",
  1175. parents: ["mammal"]
  1176. },
  1177. "antelope": {
  1178. name: "Antelope",
  1179. parents: ["mammal"]
  1180. },
  1181. "weavile": {
  1182. name: "Weavile",
  1183. parents: ["pokemon"]
  1184. },
  1185. "pikachu": {
  1186. name: "Pikachu",
  1187. parents: ["pokemon", "mouse"]
  1188. },
  1189. "grovyle": {
  1190. name: "Grovyle",
  1191. parents: ["pokemon", "plant"]
  1192. },
  1193. "sthara": {
  1194. name: "Sthara",
  1195. parents: ["snow-leopard", "reptile"]
  1196. },
  1197. "star-warrior": {
  1198. name: "Star Warrior",
  1199. parents: ["magical"]
  1200. },
  1201. "dragonoid": {
  1202. name: "Dragonoid",
  1203. parents: ["dragon"]
  1204. },
  1205. "suicune": {
  1206. name: "Suicune",
  1207. parents: ["pokemon"]
  1208. },
  1209. "vole": {
  1210. name: "Vole",
  1211. parents: ["mammal"]
  1212. },
  1213. "blaziken": {
  1214. name: "Blaziken",
  1215. parents: ["pokemon", "avian"]
  1216. },
  1217. "buizel": {
  1218. name: "Buizel",
  1219. parents: ["pokemon", "fish"]
  1220. },
  1221. "floatzel": {
  1222. name: "Floatzel",
  1223. parents: ["pokemon", "fish"]
  1224. },
  1225. "umok": {
  1226. name: "Umok",
  1227. parents: ["avian"]
  1228. },
  1229. "sea-monster": {
  1230. name: "Sea Monster",
  1231. parents: ["monster", "fish"]
  1232. },
  1233. "egyptian-vulture": {
  1234. name: "Egyptian Vulture",
  1235. parents: ["avian"]
  1236. },
  1237. "doberman": {
  1238. name: "Doberman",
  1239. parents: ["dog"]
  1240. },
  1241. "zangoose": {
  1242. name: "Zangoose",
  1243. parents: ["pokemon", "mongoose"]
  1244. },
  1245. "mongoose": {
  1246. name: "Mongoose",
  1247. parents: ["mammal"]
  1248. },
  1249. "wickerbeast": {
  1250. name: "Wickerbeast",
  1251. parents: ["monster"]
  1252. },
  1253. "zenari": {
  1254. name: "Zenari",
  1255. parents: ["lizard"]
  1256. },
  1257. "plant": {
  1258. name: "Plant",
  1259. parents: []
  1260. },
  1261. "raskatox": {
  1262. name: "Raskatox",
  1263. parents: ["raccoon", "skunk", "cat", "fox"]
  1264. },
  1265. "mikromare": {
  1266. name: "mikromare",
  1267. parents: ["alien"]
  1268. },
  1269. "alien": {
  1270. name: "Alien",
  1271. parents: ["animal"]
  1272. },
  1273. "deity": {
  1274. name: "Deity",
  1275. parents: []
  1276. },
  1277. "skarlan": {
  1278. name: "Skarlan",
  1279. parents: ["slug", "dragon"]
  1280. },
  1281. "slug": {
  1282. name: "Slug",
  1283. parents: ["mollusk"]
  1284. },
  1285. "mollusk": {
  1286. name: "Mollusk",
  1287. parents: ["animal"]
  1288. },
  1289. "chimera": {
  1290. name: "Chimera",
  1291. parents: ["monster"]
  1292. },
  1293. "gestalt": {
  1294. name: "Gestalt",
  1295. parents: ["construct"]
  1296. },
  1297. "mimic": {
  1298. name: "Mimic",
  1299. parents: ["monster"]
  1300. },
  1301. "calico-rat": {
  1302. name: "Calico Rat",
  1303. parents: ["rat"]
  1304. },
  1305. "panda": {
  1306. name: "Panda",
  1307. parents: ["mammal"]
  1308. },
  1309. "oni": {
  1310. name: "Oni",
  1311. parents: ["monster"]
  1312. },
  1313. "pegasus": {
  1314. name: "Pegasus",
  1315. parents: ["horse"]
  1316. },
  1317. "vulpera": {
  1318. name: "Vulpera",
  1319. parents: ["fennec-fox"]
  1320. },
  1321. "ceratosaurus": {
  1322. name: "Ceratosaurus",
  1323. parents: ["dinosaur"]
  1324. },
  1325. "nykur": {
  1326. name: "Nykur",
  1327. parents: ["horse", "monster"]
  1328. },
  1329. "giraffe": {
  1330. name: "Giraffe",
  1331. parents: ["mammal"]
  1332. },
  1333. "tauren": {
  1334. name: "Tauren",
  1335. parents: ["cow"]
  1336. },
  1337. "draconi": {
  1338. name: "Draconi",
  1339. parents: ["alien", "cat", "cyborg"]
  1340. },
  1341. "dire-wolf": {
  1342. name: "Dire Wolf",
  1343. parents: ["wolf"]
  1344. },
  1345. "ferromorph": {
  1346. name: "Ferromorph",
  1347. parents: ["construct"]
  1348. },
  1349. "meowth": {
  1350. name: "Meowth",
  1351. parents: ["cat", "pokemon"]
  1352. },
  1353. "pavodragon": {
  1354. name: "Pavodragon",
  1355. parents: ["dragon"]
  1356. },
  1357. "aaltranae": {
  1358. name: "Aaltranae",
  1359. parents: ["dragon"]
  1360. },
  1361. "cyborg": {
  1362. name: "Cyborg",
  1363. parents: ["machine"]
  1364. },
  1365. "draptor": {
  1366. name: "Draptor",
  1367. parents: ["dragon"]
  1368. },
  1369. "candy": {
  1370. name: "Candy",
  1371. parents: []
  1372. },
  1373. "drenath": {
  1374. name: "Drenath",
  1375. parents: ["dragon", "snake", "rabbit"]
  1376. },
  1377. "coyju": {
  1378. name: "Coyju",
  1379. parents: ["coyote", "kaiju"]
  1380. },
  1381. "kaiju": {
  1382. name: "Kaiju",
  1383. parents: ["monster"]
  1384. },
  1385. "nickit": {
  1386. name: "Nickit",
  1387. parents: ["pokemon", "cat"]
  1388. },
  1389. "lopunny": {
  1390. name: "Lopunny",
  1391. parents: ["pokemon", "rabbit"]
  1392. },
  1393. "korean-jindo-dog": {
  1394. name: "Korean Jindo Dog",
  1395. parents: ["dog"]
  1396. },
  1397. "naga": {
  1398. name: "Naga",
  1399. parents: ["snake", "monster"]
  1400. },
  1401. "undead": {
  1402. name: "Undead",
  1403. parents: ["monster"]
  1404. },
  1405. "whale": {
  1406. name: "Whale",
  1407. parents: ["fish"]
  1408. },
  1409. "gelato-bee": {
  1410. name: "Gelato Bee",
  1411. parents: ["bee"]
  1412. },
  1413. "bee": {
  1414. name: "Bee",
  1415. parents: ["insect"]
  1416. },
  1417. "gardevoir": {
  1418. name: "Gardevoir",
  1419. parents: ["pokemon"]
  1420. },
  1421. "ant": {
  1422. name: "Ant",
  1423. parents: ["insect"]
  1424. },
  1425. "frog": {
  1426. name: "Frog",
  1427. parents: ["amphibian"]
  1428. },
  1429. "amphibian": {
  1430. name: "Amphibian",
  1431. parents: ["animal"]
  1432. },
  1433. "pangolin": {
  1434. name: "Pangolin",
  1435. parents: ["mammal"]
  1436. },
  1437. "uragi'viidorn": {
  1438. name: "Uragi'viidorn",
  1439. parents: ["avian", "bear"]
  1440. },
  1441. "gryphdelphais": {
  1442. name: "Gryphdelphais",
  1443. parents: ["dolphin", "gryphon"]
  1444. },
  1445. "plush": {
  1446. name: "Plush",
  1447. parents: ["construct"]
  1448. },
  1449. "draiger": {
  1450. name: "Draiger",
  1451. parents: ["dragon","tiger"]
  1452. },
  1453. "foxsky": {
  1454. name: "Foxsky",
  1455. parents: ["fox", "husky"]
  1456. },
  1457. "umbreon": {
  1458. name: "Umbreon",
  1459. parents: ["eeveelution"]
  1460. },
  1461. "slime-dragon": {
  1462. name: "Slime Dragon",
  1463. parents: ["dragon", "goo"]
  1464. },
  1465. "enderman": {
  1466. name: "Enderman",
  1467. parents: ["monster"]
  1468. },
  1469. "gremlin": {
  1470. name: "Gremlin",
  1471. parents: ["monster"]
  1472. },
  1473. "dragonsune": {
  1474. name: "Dragonsune",
  1475. parents: ["dragon", "kitsune"]
  1476. },
  1477. "ghost": {
  1478. name: "Ghost",
  1479. parents: ["supernatural"]
  1480. },
  1481. "false-vampire-bat": {
  1482. name: "False Vampire Bat",
  1483. parents: ["bat"]
  1484. },
  1485. "succubus": {
  1486. name: "Succubus",
  1487. parents: ["demon"]
  1488. },
  1489. "mia": {
  1490. name: "Mia",
  1491. parents: ["canine"]
  1492. },
  1493. "rainbow": {
  1494. name: "Rainbow",
  1495. parents: ["monster"]
  1496. },
  1497. "solgaleo": {
  1498. name: "Solgaleo",
  1499. parents: ["pokemon"]
  1500. },
  1501. "lucent-nargacuga": {
  1502. name: "Lucent Nargacuga",
  1503. parents: ["nargacuga"]
  1504. },
  1505. "monster-hunter": {
  1506. name: "Monster Hunter",
  1507. parents: ["monster", "video-games"]
  1508. },
  1509. "leviathan": {
  1510. "name": "Leviathan",
  1511. "url": "sea-monster"
  1512. },
  1513. "bull": {
  1514. name: "Bull",
  1515. parents: ["mammal"]
  1516. },
  1517. "tanuki": {
  1518. name: "Tanuki",
  1519. parents: ["monster"]
  1520. },
  1521. "chakat": {
  1522. name: "Chakat",
  1523. parents: ["cat"]
  1524. },
  1525. "hydra": {
  1526. name: "Hydra",
  1527. parents: ["monster"]
  1528. },
  1529. "zigzagoon": {
  1530. name: "Zigzagoon",
  1531. parents: ["raccoon", "pokemon"]
  1532. },
  1533. "vulture": {
  1534. name: "Vulture",
  1535. parents: ["avian"]
  1536. },
  1537. "eastern-dragon": {
  1538. name: "Eastern Dragon",
  1539. parents: ["dragon"]
  1540. },
  1541. "gryffon": {
  1542. name: "Gryffon",
  1543. parents: ["phoenix", "red-panda"]
  1544. },
  1545. "amtsvane": {
  1546. name: "Amtsvane",
  1547. parents: ["reptile"]
  1548. },
  1549. "kigavi": {
  1550. name: "Kigavi",
  1551. parents: ["avian"]
  1552. },
  1553. "turian": {
  1554. name: "Turian",
  1555. parents: ["avian"]
  1556. },
  1557. "zeraora": {
  1558. name: "Zeraora",
  1559. parents: ["pokemon", "cat"]
  1560. },
  1561. "sandshrew": {
  1562. name: "Sandshrew",
  1563. parents: ["pokemon", "pangolin"]
  1564. },
  1565. "valais-blacknose-sheep": {
  1566. name: "Valais Blacknose Sheep",
  1567. parents: ["sheep"]
  1568. },
  1569. "novaleit": {
  1570. name: "Novaleit",
  1571. parents: ["mammal"]
  1572. },
  1573. "dunnoh": {
  1574. name: "Dunnoh",
  1575. parents: ["mammal"]
  1576. },
  1577. "lunaral-dragon": {
  1578. name: "Lunaral Dragon",
  1579. parents: ["dragon"]
  1580. },
  1581. "arctic-wolf": {
  1582. name: "Arctic Wolf",
  1583. parents: ["wolf"]
  1584. },
  1585. "donkey": {
  1586. name: "Donkey",
  1587. parents: ["horse"]
  1588. },
  1589. "chinchilla": {
  1590. name: "Chinchilla",
  1591. parents: ["rodent"]
  1592. },
  1593. "felkin": {
  1594. name: "Felkin",
  1595. parents: ["dragon"]
  1596. },
  1597. "tykeriel": {
  1598. name: "Tykeriel",
  1599. parents: ["avian"]
  1600. },
  1601. "folf": {
  1602. name: "Folf",
  1603. parents: ["fox", "wolf"]
  1604. },
  1605. "pooltoy": {
  1606. name: "Pooltoy",
  1607. parents: ["construct"]
  1608. },
  1609. "demi": {
  1610. name: "Demi",
  1611. parents: ["human"]
  1612. },
  1613. "stegosaurus": {
  1614. name: "Stegosaurus",
  1615. parents: ["dinosaur"]
  1616. },
  1617. "computer-virus": {
  1618. name: "Computer Virus",
  1619. parents: ["program"]
  1620. },
  1621. "program": {
  1622. name: "Program",
  1623. parents: ["construct"]
  1624. },
  1625. "space-springhare": {
  1626. name: "Space Springhare",
  1627. parents: ["hare"]
  1628. },
  1629. "river-drake": {
  1630. name: "River Drake",
  1631. parents: ["dragon"]
  1632. },
  1633. "djinn": {
  1634. "name": "Djinn",
  1635. "url": "supernatural"
  1636. },
  1637. "supernatural": {
  1638. name: "Supernatural",
  1639. parents: ["monster"]
  1640. },
  1641. "grasshopper-mouse": {
  1642. name: "Grasshopper Mouse",
  1643. parents: ["mouse"]
  1644. },
  1645. "somali-cat": {
  1646. name: "Somali Cat",
  1647. parents: ["cat"]
  1648. },
  1649. "minccino": {
  1650. name: "Minccino",
  1651. parents: ["pokemon", "chinchilla"]
  1652. },
  1653. "pine-marten": {
  1654. name: "Pine Marten",
  1655. parents: ["marten"]
  1656. },
  1657. "marten": {
  1658. name: "Marten",
  1659. parents: ["mustelid"]
  1660. },
  1661. "mustelid": {
  1662. name: "Mustelid",
  1663. parents: ["mammal"]
  1664. },
  1665. "caribou": {
  1666. name: "Caribou",
  1667. parents: ["deer"]
  1668. },
  1669. "gnoll": {
  1670. name: "Gnoll",
  1671. parents: ["hyena", "monster"]
  1672. },
  1673. "peacekeeper": {
  1674. name: "Peacekeeper",
  1675. parents: ["human"]
  1676. },
  1677. "river-otter": {
  1678. name: "River Otter",
  1679. parents: ["otter"]
  1680. },
  1681. "dhole": {
  1682. name: "Dhole",
  1683. parents: ["canine"]
  1684. },
  1685. "springbok": {
  1686. name: "Springbok",
  1687. parents: ["antelope"]
  1688. },
  1689. "marsupial": {
  1690. name: "Marsupial",
  1691. parents: ["mammal"]
  1692. },
  1693. "townsend-big-eared-bat": {
  1694. name: "Townsend Big-eared Bat",
  1695. parents: ["bat"]
  1696. },
  1697. "squirrel": {
  1698. name: "Squirrel",
  1699. parents: ["rodent"]
  1700. },
  1701. "magpie": {
  1702. name: "Magpie",
  1703. parents: ["corvid"]
  1704. },
  1705. "civet": {
  1706. name: "Civet",
  1707. parents: ["feliform"]
  1708. },
  1709. "feliform": {
  1710. name: "Feliform",
  1711. parents: ["mammal"]
  1712. },
  1713. "tiefling": {
  1714. name: "Tiefling",
  1715. parents: ["devil"]
  1716. },
  1717. "devil": {
  1718. name: "Devil",
  1719. parents: ["supernatural"]
  1720. },
  1721. "sika-deer": {
  1722. name: "Sika Deer",
  1723. parents: ["deer"]
  1724. },
  1725. "vaporeon": {
  1726. name: "Vaporeon",
  1727. parents: ["eeveelution"]
  1728. },
  1729. "leafeon": {
  1730. name: "Leafeon",
  1731. parents: ["eeveelution"]
  1732. },
  1733. "jolteon": {
  1734. name: "Jolteon",
  1735. parents: ["eeveelution"]
  1736. },
  1737. "spireborn": {
  1738. name: "Spireborn",
  1739. parents: ["zorgoia"]
  1740. },
  1741. "vampire": {
  1742. name: "Vampire",
  1743. parents: ["monster"]
  1744. },
  1745. "extraplanar": {
  1746. name: "Extraplanar",
  1747. parents: []
  1748. },
  1749. "goo": {
  1750. name: "Goo",
  1751. parents: []
  1752. },
  1753. "skink": {
  1754. name: "Skink",
  1755. parents: ["lizard"]
  1756. },
  1757. "bat-eared-fox": {
  1758. name: "Bat-eared Fox",
  1759. parents: ["fox"]
  1760. },
  1761. "belted-kingfisher": {
  1762. name: "Belted Kingfisher",
  1763. parents: ["avian"]
  1764. },
  1765. "omnifalcon": {
  1766. name: "Omnifalcon",
  1767. parents: ["gryphon", "falcon", "harpy-eagle"]
  1768. },
  1769. "falcon": {
  1770. name: "Falcon",
  1771. parents: ["bird-of-prey"]
  1772. },
  1773. "avali": {
  1774. name: "Avali",
  1775. parents: ["avian", "alien"]
  1776. },
  1777. "arctic-fox": {
  1778. name: "Arctic Fox",
  1779. parents: ["fox"]
  1780. },
  1781. "snow-tiger": {
  1782. name: "Snow Tiger",
  1783. parents: ["tiger"]
  1784. },
  1785. "marble-fox": {
  1786. name: "Marble Fox",
  1787. parents: ["fox"]
  1788. },
  1789. "king-wickerbeast": {
  1790. name: "King Wickerbeast",
  1791. parents: ["wickerbeast"]
  1792. },
  1793. "wickerbeast": {
  1794. name: "Wickerbeast",
  1795. parents: ["mammal"]
  1796. },
  1797. "european-polecat": {
  1798. name: "European Polecat",
  1799. parents: ["polecat"]
  1800. },
  1801. "polecat": {
  1802. name: "Polecat",
  1803. parents: ["mustelid"]
  1804. },
  1805. "teshari": {
  1806. name: "Teshari",
  1807. parents: ["avian", "raptor"]
  1808. },
  1809. "alicorn": {
  1810. name: "Alicorn",
  1811. parents: ["horse"]
  1812. },
  1813. "atlas-moth": {
  1814. name: "Atlas Moth",
  1815. parents: ["moth"]
  1816. },
  1817. "owlbear": {
  1818. name: "Owlbear",
  1819. parents: ["owl", "bear", "monster"]
  1820. },
  1821. "owl": {
  1822. name: "Owl",
  1823. parents: ["avian"]
  1824. },
  1825. "silvertongue": {
  1826. name: "Silvertongue",
  1827. parents: ["reptile"]
  1828. },
  1829. "ahuizotl": {
  1830. name: "Ahuizotl",
  1831. parents: ["monster"]
  1832. },
  1833. "ender-dragon": {
  1834. name: "Ender Dragon",
  1835. parents: ["dragon"]
  1836. },
  1837. "bruhathkayosaurus": {
  1838. name: "Bruhathkayosaurus",
  1839. parents: ["sauropod"]
  1840. },
  1841. "sauropod": {
  1842. name: "Sauropod",
  1843. parents: ["dinosaur"]
  1844. },
  1845. "black-sable-antelope": {
  1846. name: "Black Sable Antelope",
  1847. parents: ["antelope"]
  1848. },
  1849. "slime": {
  1850. name: "Slime",
  1851. parents: ["goo"]
  1852. },
  1853. "utahraptor": {
  1854. name: "Utahraptor",
  1855. parents: ["raptor"]
  1856. },
  1857. "indian-giant-squirrel": {
  1858. name: "Indian Giant Squirrel",
  1859. parents: ["squirrel"]
  1860. },
  1861. "golden-retriever": {
  1862. name: "Golden Retriever",
  1863. parents: ["dog"]
  1864. },
  1865. "triceratops": {
  1866. name: "Triceratops",
  1867. parents: ["dinosaur"]
  1868. },
  1869. "drake": {
  1870. name: "Drake",
  1871. parents: ["dragon"]
  1872. },
  1873. "okapi": {
  1874. name: "Okapi",
  1875. parents: ["giraffe"]
  1876. },
  1877. "arctic-hare": {
  1878. name: "Arctic Hare",
  1879. parents: ["hare"]
  1880. },
  1881. "hare": {
  1882. name: "Hare",
  1883. parents: ["leporidae"]
  1884. },
  1885. "leporidae": {
  1886. name: "Leporidae",
  1887. parents: ["mammal"]
  1888. },
  1889. "leopard-gecko": {
  1890. name: "Leopard Gecko",
  1891. parents: ["gecko"]
  1892. },
  1893. "dreamspawn": {
  1894. name: "Dreamspawn",
  1895. parents: ["illusion"]
  1896. },
  1897. "illusion": {
  1898. name: "Illusion",
  1899. parents: []
  1900. },
  1901. "purrloin": {
  1902. name: "Purrloin",
  1903. parents: ["cat", "pokemon"]
  1904. },
  1905. "noivern": {
  1906. name: "Noivern",
  1907. parents: ["bat", "dragon", "pokemon"]
  1908. },
  1909. "hedgehog": {
  1910. name: "Hedgehog",
  1911. parents: ["mammal"]
  1912. },
  1913. "liger": {
  1914. name: "Liger",
  1915. parents: ["lion", "tiger", "hybrid"]
  1916. },
  1917. "hybrid": {
  1918. name: "Hybrid",
  1919. parents: []
  1920. },
  1921. "drider": {
  1922. name: "Drider",
  1923. parents: ["spider"]
  1924. },
  1925. "sabresune": {
  1926. name: "Sabresune",
  1927. parents: ["kitsune", "sabertooth-tiger"]
  1928. },
  1929. "ditto": {
  1930. name: "Ditto",
  1931. parents: ["pokemon", "goo"]
  1932. },
  1933. "amogus": {
  1934. name: "Amogus",
  1935. parents: ["deity"]
  1936. },
  1937. "ferret": {
  1938. name: "Ferret",
  1939. parents: ["mustelid"]
  1940. },
  1941. "guinea-pig": {
  1942. name: "Guinea Pig",
  1943. parents: ["rodent"]
  1944. },
  1945. "viper": {
  1946. name: "Viper",
  1947. parents: ["snake"]
  1948. },
  1949. "cinderace": {
  1950. name: "Cinderace",
  1951. parents: ["pokemon", "rabbit"]
  1952. },
  1953. "caudin": {
  1954. name: "Caudin",
  1955. parents: ["dragon"]
  1956. },
  1957. "red-winged-blackbird": {
  1958. name: "Red-Winged Blackbird",
  1959. parents: ["avian"]
  1960. },
  1961. "hooded-wheater": {
  1962. name: "Hooded Wheater",
  1963. parents: ["passerine"]
  1964. },
  1965. "passerine": {
  1966. name: "Passerine",
  1967. parents: ["avian"]
  1968. },
  1969. "gieeg": {
  1970. name: "Gieeg",
  1971. parents: ["alien"]
  1972. },
  1973. "ringtail": {
  1974. name: "Ringtail",
  1975. parents: ["raccoon"]
  1976. },
  1977. "hisuian-zoroark": {
  1978. name: "Hisuian Zoroark",
  1979. parents: ["zoroark", "hisuian"]
  1980. },
  1981. "hisuian": {
  1982. name: "Hisuian",
  1983. parents: ["regional-pokemon"]
  1984. },
  1985. "regional-pokemon": {
  1986. name: "Regional Pokemon",
  1987. parents: ["pokemon"]
  1988. },
  1989. "cybeast": {
  1990. name: "Cybeast",
  1991. parents: ["computer-virus"]
  1992. },
  1993. "javira-dragon": {
  1994. name: "Javira Dragon",
  1995. parents: ["dragon"]
  1996. },
  1997. "koopew": {
  1998. name: "Koopew",
  1999. parents: ["dragon", "alien"]
  2000. },
  2001. "nevrean": {
  2002. name: "Nevrean",
  2003. parents: ["avian", "vilous"]
  2004. },
  2005. "vilous": {
  2006. name: "Vilous Species",
  2007. parents: []
  2008. },
  2009. "titanoboa": {
  2010. name: "Titanoboa",
  2011. parents: ["snake"]
  2012. },
  2013. "raichu": {
  2014. name: "Raichu",
  2015. parents: ["pikachu"]
  2016. },
  2017. "taur": {
  2018. name: "Taur",
  2019. parents: []
  2020. },
  2021. "continental-giant-rabbit": {
  2022. name: "Continental Giant Rabbit",
  2023. parents: ["rabbit"]
  2024. },
  2025. "demigryph": {
  2026. name: "Demigryph",
  2027. parents: ["lion", "eagle"]
  2028. },
  2029. "bald-eagle": {
  2030. name: "Bald Eagle",
  2031. parents: ["eagle"]
  2032. },
  2033. "kestrel": {
  2034. name: "Kestrel",
  2035. parents: ["falcon"]
  2036. },
  2037. "mockingbird": {
  2038. name: "Mockingbird",
  2039. parents: ["songbird"]
  2040. },
  2041. "songbird": {
  2042. name: "Songbird",
  2043. parents: ["avian"]
  2044. },
  2045. "bird-of-prey": {
  2046. name: "Bird of Prey",
  2047. parents: ["avian"]
  2048. },
  2049. "marowak": {
  2050. name: "Marowak",
  2051. parents: ["pokemon", "reptile"]
  2052. },
  2053. "joltik": {
  2054. name: "Joltik",
  2055. parents: ["pokemon", "insect"]
  2056. },
  2057. "mink": {
  2058. name: "Mink",
  2059. parents: ["mustelid"]
  2060. },
  2061. "sandcat": {
  2062. name: "Sandcat",
  2063. parents: ["cat"]
  2064. },
  2065. "hrothgar": {
  2066. name: "Hrothgar",
  2067. parents: ["cat"]
  2068. },
  2069. "garchomp": {
  2070. name: "Garchomp",
  2071. parents: ["dragon", "pokemon"]
  2072. },
  2073. "nargacuga": {
  2074. name: "Nargacuga",
  2075. parents: ["monster-hunter"]
  2076. },
  2077. "sable": {
  2078. name: "Sable",
  2079. parents: ["marten"]
  2080. },
  2081. "deino": {
  2082. name: "Deino",
  2083. parents: ["pokemon", "dinosaur"]
  2084. },
  2085. "housecat": {
  2086. name: "Housecat",
  2087. parents: ["cat"]
  2088. },
  2089. "bombay-cat": {
  2090. name: "Bombay Cat",
  2091. parents: ["housecat"]
  2092. },
  2093. "maine-coon": {
  2094. name: "Maine Coon",
  2095. parents: ["housecat"]
  2096. },
  2097. "coelacanth": {
  2098. name: "Coelacanth",
  2099. parents: ["fish"]
  2100. },
  2101. "silvally": {
  2102. name: "Silvally",
  2103. parents: ["legendary-pokemon"]
  2104. },
  2105. "legendary-pokemon": {
  2106. name: "Legendary Pokemon",
  2107. parents: ["pokemon"]
  2108. },
  2109. "great-maccao": {
  2110. name: "Great Maccao",
  2111. parents: ["monster-hunter", "raptor"]
  2112. },
  2113. "shapeshifter": {
  2114. name: "shapeshifter",
  2115. parents: []
  2116. },
  2117. "obstagoon": {
  2118. name: "Obstagoon",
  2119. parents: ["zigzagoon"]
  2120. },
  2121. "thomsons-gazelle": {
  2122. name: "Thomsons Gazelle",
  2123. parents: ["gazelle"]
  2124. },
  2125. "gazelle": {
  2126. name: "Gazelle",
  2127. parents: ["antelope"]
  2128. },
  2129. "monkey": {
  2130. name: "Monkey",
  2131. parents: ["primate"]
  2132. },
  2133. "serval": {
  2134. name: "Serval",
  2135. parents: ["cat"]
  2136. },
  2137. "swampert": {
  2138. name: "Swampert",
  2139. parents: ["pokemon"]
  2140. },
  2141. "red-fox": {
  2142. name: "Red Fox",
  2143. parents: ["fox"]
  2144. },
  2145. "sliver": {
  2146. name: "Sliver",
  2147. parents: ["alien"]
  2148. },
  2149. "sergix": {
  2150. name: "Sergix",
  2151. parents: ["demon", "sergal", "phoenix"]
  2152. },
  2153. "behemoth": {
  2154. name: "Behemoth",
  2155. parents: ["monster", "dragon", "final-fantasy"]
  2156. },
  2157. "final-fantasy": {
  2158. name: "Final Fantasy",
  2159. parents: ["video-games"]
  2160. },
  2161. "video-games": {
  2162. name: "Video Games",
  2163. parents: []
  2164. },
  2165. "eastern-cottontail-rabbit": {
  2166. name: "Eastern Cottontail Rabbit",
  2167. parents: ["rabbit"]
  2168. },
  2169. "thresher-shark": {
  2170. name: "Thresher Shark",
  2171. parents: ["shark"]
  2172. },
  2173. "ai": {
  2174. name: "AI",
  2175. parents: []
  2176. },
  2177. "black-tip-reef-shark": {
  2178. name: "Black Tip Reef Shark",
  2179. parents: ["shark"]
  2180. },
  2181. "quetzalcoatlus-northropi": {
  2182. name: "Quetzalcoatlus Northropi",
  2183. parents: ["dinosaur"]
  2184. },
  2185. "snivy": {
  2186. name: "Snivy",
  2187. parents: ["pokemon", "snake"]
  2188. },
  2189. "nedynvor": {
  2190. name: "Nedynvor",
  2191. parents: ["avian"]
  2192. },
  2193. "marbled-polecat": {
  2194. name: "Marbled Polecat",
  2195. parents: ["polecat"]
  2196. },
  2197. "ape": {
  2198. name: "Ape",
  2199. parents: ["primate"]
  2200. },
  2201. "primate": {
  2202. name: "Primate",
  2203. parents: ["mammal"]
  2204. },
  2205. "kulve-taroth": {
  2206. name: "Kulve Taroth",
  2207. parents: ["monster-hunter", "dragon"]
  2208. },
  2209. "irthos": {
  2210. name: "Irthos",
  2211. parents: ["dragon"]
  2212. },
  2213. "furred-dragon": {
  2214. name: "Furred Dragon",
  2215. parents: ["dragon"]
  2216. },
  2217. "hippogriff": {
  2218. name: "Hippogriff",
  2219. parents: ["gryphon", "horse"]
  2220. },
  2221. "peregrine-falcon": {
  2222. name: "Peregrine Falcon",
  2223. parents: ["falcon"]
  2224. },
  2225. "deinonychus": {
  2226. name: "Deinonychus",
  2227. parents: ["theropod"]
  2228. },
  2229. "theropod": {
  2230. name: "Theropod",
  2231. parents: ["dinosaur"]
  2232. },
  2233. "chocobo": {
  2234. name: "Chocobo",
  2235. parents: ["avian"]
  2236. },
  2237. "stilio": {
  2238. name: "Stilio",
  2239. parents: ["snake"]
  2240. },
  2241. }
  2242. //species
  2243. function getSpeciesInfo(speciesList) {
  2244. let result = new Set();
  2245. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2246. result.add(entry)
  2247. });
  2248. return Array.from(result);
  2249. };
  2250. function getSpeciesInfoHelper(species) {
  2251. if (!speciesData[species]) {
  2252. console.warn(species + " doesn't exist");
  2253. return [];
  2254. }
  2255. if (speciesData[species].parents) {
  2256. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2257. } else {
  2258. return [species];
  2259. }
  2260. }
  2261. characterMakers.push(() => makeCharacter(
  2262. {
  2263. name: "Fen",
  2264. species: ["crux"],
  2265. description: {
  2266. title: "Bio",
  2267. text: "Very furry. Sheds on everything."
  2268. },
  2269. tags: [
  2270. "anthro",
  2271. "goo"
  2272. ]
  2273. },
  2274. {
  2275. front: {
  2276. height: math.unit(12, "feet"),
  2277. weight: math.unit(2400, "lb"),
  2278. preyCapacity: math.unit(1, "people"),
  2279. name: "Front",
  2280. image: {
  2281. source: "./media/characters/fen/front.svg",
  2282. extra: 1804/1562,
  2283. bottom: 205/2009
  2284. },
  2285. extraAttributes: {
  2286. pawSize: {
  2287. name: "Paw Size",
  2288. power: 2,
  2289. type: "area",
  2290. base: math.unit(0.35, "m^2")
  2291. }
  2292. }
  2293. },
  2294. diving: {
  2295. height: math.unit(4.9, "meters"),
  2296. weight: math.unit(2400, "lb"),
  2297. name: "Diving",
  2298. image: {
  2299. source: "./media/characters/fen/diving.svg"
  2300. }
  2301. },
  2302. sleeby: {
  2303. height: math.unit(3.45, "meters"),
  2304. weight: math.unit(2400, "lb"),
  2305. name: "Sleeby",
  2306. image: {
  2307. source: "./media/characters/fen/sleeby.svg"
  2308. }
  2309. },
  2310. goo: {
  2311. height: math.unit(12, "feet"),
  2312. weight: math.unit(3600, "lb"),
  2313. volume: math.unit(1000, "liters"),
  2314. preyCapacity: math.unit(6, "people"),
  2315. name: "Goo",
  2316. image: {
  2317. source: "./media/characters/fen/goo.svg",
  2318. extra: 1307/1071,
  2319. bottom: 134/1441
  2320. }
  2321. },
  2322. horror: {
  2323. height: math.unit(13.6, "feet"),
  2324. weight: math.unit(2400, "lb"),
  2325. preyCapacity: math.unit(1, "people"),
  2326. name: "Horror",
  2327. image: {
  2328. source: "./media/characters/fen/horror.svg",
  2329. extra: 893/797,
  2330. bottom: 0/893
  2331. }
  2332. },
  2333. gooNsfw: {
  2334. height: math.unit(12, "feet"),
  2335. weight: math.unit(3750, "lb"),
  2336. volume: math.unit(1000, "liters"),
  2337. preyCapacity: math.unit(6, "people"),
  2338. name: "Goo (NSFW)",
  2339. image: {
  2340. source: "./media/characters/fen/goo-nsfw.svg",
  2341. extra: 1875/1734,
  2342. bottom: 122/1997
  2343. }
  2344. },
  2345. maw: {
  2346. height: math.unit(5.03, "feet"),
  2347. name: "Maw",
  2348. image: {
  2349. source: "./media/characters/fen/maw.svg"
  2350. }
  2351. },
  2352. gooCeiling: {
  2353. height: math.unit(6.6, "feet"),
  2354. weight: math.unit(3000, "lb"),
  2355. volume: math.unit(1000, "liters"),
  2356. preyCapacity: math.unit(6, "people"),
  2357. name: "Maw (Goo)",
  2358. image: {
  2359. source: "./media/characters/fen/goo-maw.svg"
  2360. }
  2361. },
  2362. paw: {
  2363. height: math.unit(3.77, "feet"),
  2364. name: "Paw",
  2365. image: {
  2366. source: "./media/characters/fen/paw.svg"
  2367. },
  2368. extraAttributes: {
  2369. "toeSize": {
  2370. name: "Toe Size",
  2371. power: 2,
  2372. type: "area",
  2373. base: math.unit(0.02875, "m^2")
  2374. },
  2375. "pawSize": {
  2376. name: "Paw Size",
  2377. power: 2,
  2378. type: "area",
  2379. base: math.unit(0.378, "m^2")
  2380. },
  2381. }
  2382. },
  2383. tail: {
  2384. height: math.unit(12.1, "feet"),
  2385. name: "Tail",
  2386. image: {
  2387. source: "./media/characters/fen/tail.svg"
  2388. }
  2389. },
  2390. tailFull: {
  2391. height: math.unit(12.1, "feet"),
  2392. name: "Full Tail",
  2393. image: {
  2394. source: "./media/characters/fen/tail-full.svg"
  2395. }
  2396. },
  2397. back: {
  2398. height: math.unit(12, "feet"),
  2399. weight: math.unit(2400, "lb"),
  2400. name: "Back",
  2401. image: {
  2402. source: "./media/characters/fen/back.svg",
  2403. },
  2404. info: {
  2405. description: {
  2406. mode: "append",
  2407. text: "\n\nHe is not currently looking at you."
  2408. }
  2409. }
  2410. },
  2411. full: {
  2412. height: math.unit(1.85, "meter"),
  2413. weight: math.unit(3200, "lb"),
  2414. name: "Full",
  2415. image: {
  2416. source: "./media/characters/fen/full.svg",
  2417. extra: 1133/859,
  2418. bottom: 145/1278
  2419. },
  2420. info: {
  2421. description: {
  2422. mode: "append",
  2423. text: "\n\nMunch."
  2424. }
  2425. }
  2426. },
  2427. gooLounging: {
  2428. height: math.unit(4.53, "feet"),
  2429. weight: math.unit(3000, "lb"),
  2430. preyCapacity: math.unit(6, "people"),
  2431. name: "Goo (Lounging)",
  2432. image: {
  2433. source: "./media/characters/fen/goo-lounging.svg",
  2434. bottom: 116 / 613
  2435. }
  2436. },
  2437. lounging: {
  2438. height: math.unit(10.52, "feet"),
  2439. weight: math.unit(2400, "lb"),
  2440. name: "Lounging",
  2441. image: {
  2442. source: "./media/characters/fen/lounging.svg"
  2443. }
  2444. },
  2445. },
  2446. [
  2447. {
  2448. name: "Small",
  2449. height: math.unit(2.2428, "meter")
  2450. },
  2451. {
  2452. name: "Normal",
  2453. height: math.unit(12, "feet"),
  2454. default: true,
  2455. },
  2456. {
  2457. name: "Big",
  2458. height: math.unit(20, "feet")
  2459. },
  2460. {
  2461. name: "Minimacro",
  2462. height: math.unit(40, "feet"),
  2463. info: {
  2464. description: {
  2465. mode: "append",
  2466. text: "\n\nTOO DAMN BIG"
  2467. }
  2468. }
  2469. },
  2470. {
  2471. name: "Macro",
  2472. height: math.unit(100, "feet"),
  2473. info: {
  2474. description: {
  2475. mode: "append",
  2476. text: "\n\nTOO DAMN BIG"
  2477. }
  2478. }
  2479. },
  2480. {
  2481. name: "Megamacro",
  2482. height: math.unit(2, "miles")
  2483. },
  2484. {
  2485. name: "Gigamacro",
  2486. height: math.unit(10, "earths")
  2487. },
  2488. ]
  2489. ))
  2490. characterMakers.push(() => makeCharacter(
  2491. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2492. {
  2493. front: {
  2494. height: math.unit(183, "cm"),
  2495. weight: math.unit(80, "kg"),
  2496. name: "Front",
  2497. image: {
  2498. source: "./media/characters/sofia-fluttertail/front.svg",
  2499. bottom: 0.01,
  2500. extra: 2154 / 2081
  2501. }
  2502. },
  2503. frontAlt: {
  2504. height: math.unit(183, "cm"),
  2505. weight: math.unit(80, "kg"),
  2506. name: "Front (alt)",
  2507. image: {
  2508. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2509. }
  2510. },
  2511. back: {
  2512. height: math.unit(183, "cm"),
  2513. weight: math.unit(80, "kg"),
  2514. name: "Back",
  2515. image: {
  2516. source: "./media/characters/sofia-fluttertail/back.svg"
  2517. }
  2518. },
  2519. kneeling: {
  2520. height: math.unit(125, "cm"),
  2521. weight: math.unit(80, "kg"),
  2522. name: "Kneeling",
  2523. image: {
  2524. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2525. extra: 1033 / 977,
  2526. bottom: 23.7 / 1057
  2527. }
  2528. },
  2529. maw: {
  2530. height: math.unit(183 / 5, "cm"),
  2531. name: "Maw",
  2532. image: {
  2533. source: "./media/characters/sofia-fluttertail/maw.svg"
  2534. }
  2535. },
  2536. mawcloseup: {
  2537. height: math.unit(183 / 5 * 0.41, "cm"),
  2538. name: "Maw (Closeup)",
  2539. image: {
  2540. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2541. }
  2542. },
  2543. paws: {
  2544. height: math.unit(1.17, "feet"),
  2545. name: "Paws",
  2546. image: {
  2547. source: "./media/characters/sofia-fluttertail/paws.svg",
  2548. extra: 851 / 851,
  2549. bottom: 17 / 868
  2550. }
  2551. },
  2552. },
  2553. [
  2554. {
  2555. name: "Normal",
  2556. height: math.unit(1.83, "meter")
  2557. },
  2558. {
  2559. name: "Size Thief",
  2560. height: math.unit(18, "feet")
  2561. },
  2562. {
  2563. name: "50 Foot Collie",
  2564. height: math.unit(50, "feet")
  2565. },
  2566. {
  2567. name: "Macro",
  2568. height: math.unit(96, "feet"),
  2569. default: true
  2570. },
  2571. {
  2572. name: "Megamerger",
  2573. height: math.unit(650, "feet")
  2574. },
  2575. ]
  2576. ))
  2577. characterMakers.push(() => makeCharacter(
  2578. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2579. {
  2580. front: {
  2581. height: math.unit(7, "feet"),
  2582. weight: math.unit(100, "kg"),
  2583. name: "Front",
  2584. image: {
  2585. source: "./media/characters/march/front.svg",
  2586. extra: 1992/1851,
  2587. bottom: 39/2031
  2588. }
  2589. },
  2590. foot: {
  2591. height: math.unit(0.9, "feet"),
  2592. name: "Foot",
  2593. image: {
  2594. source: "./media/characters/march/foot.svg"
  2595. }
  2596. },
  2597. },
  2598. [
  2599. {
  2600. name: "Normal",
  2601. height: math.unit(7.9, "feet")
  2602. },
  2603. {
  2604. name: "Macro",
  2605. height: math.unit(220, "meters")
  2606. },
  2607. {
  2608. name: "Megamacro",
  2609. height: math.unit(2.98, "km"),
  2610. default: true
  2611. },
  2612. {
  2613. name: "Gigamacro",
  2614. height: math.unit(15963, "km")
  2615. },
  2616. {
  2617. name: "Teramacro",
  2618. height: math.unit(2980000000, "km")
  2619. },
  2620. {
  2621. name: "Examacro",
  2622. height: math.unit(250, "parsecs")
  2623. },
  2624. ]
  2625. ))
  2626. characterMakers.push(() => makeCharacter(
  2627. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2628. {
  2629. front: {
  2630. height: math.unit(6, "feet"),
  2631. weight: math.unit(60, "kg"),
  2632. name: "Front",
  2633. image: {
  2634. source: "./media/characters/noir/front.svg",
  2635. extra: 1,
  2636. bottom: 0.032
  2637. }
  2638. },
  2639. },
  2640. [
  2641. {
  2642. name: "Normal",
  2643. height: math.unit(6.6, "feet")
  2644. },
  2645. {
  2646. name: "Macro",
  2647. height: math.unit(500, "feet")
  2648. },
  2649. {
  2650. name: "Megamacro",
  2651. height: math.unit(2.5, "km"),
  2652. default: true
  2653. },
  2654. {
  2655. name: "Gigamacro",
  2656. height: math.unit(22500, "km")
  2657. },
  2658. {
  2659. name: "Teramacro",
  2660. height: math.unit(2500000000, "km")
  2661. },
  2662. {
  2663. name: "Examacro",
  2664. height: math.unit(200, "parsecs")
  2665. },
  2666. ]
  2667. ))
  2668. characterMakers.push(() => makeCharacter(
  2669. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2670. {
  2671. front: {
  2672. height: math.unit(7, "feet"),
  2673. weight: math.unit(100, "kg"),
  2674. name: "Front",
  2675. image: {
  2676. source: "./media/characters/okuri/front.svg",
  2677. extra: 739/665,
  2678. bottom: 39/778
  2679. }
  2680. },
  2681. back: {
  2682. height: math.unit(7, "feet"),
  2683. weight: math.unit(100, "kg"),
  2684. name: "Back",
  2685. image: {
  2686. source: "./media/characters/okuri/back.svg",
  2687. extra: 734/653,
  2688. bottom: 13/747
  2689. }
  2690. },
  2691. sitting: {
  2692. height: math.unit(2.95, "feet"),
  2693. weight: math.unit(100, "kg"),
  2694. name: "Sitting",
  2695. image: {
  2696. source: "./media/characters/okuri/sitting.svg",
  2697. extra: 370/318,
  2698. bottom: 99/469
  2699. }
  2700. },
  2701. },
  2702. [
  2703. {
  2704. name: "Smallest",
  2705. height: math.unit(5 + 2/12, "feet")
  2706. },
  2707. {
  2708. name: "Smaller",
  2709. height: math.unit(300, "feet")
  2710. },
  2711. {
  2712. name: "Small",
  2713. height: math.unit(1000, "feet")
  2714. },
  2715. {
  2716. name: "Macro",
  2717. height: math.unit(1, "mile")
  2718. },
  2719. {
  2720. name: "Mega Macro (Small)",
  2721. height: math.unit(20, "km")
  2722. },
  2723. {
  2724. name: "Mega Macro (Large)",
  2725. height: math.unit(600, "km")
  2726. },
  2727. {
  2728. name: "Giga Macro",
  2729. height: math.unit(10000, "km")
  2730. },
  2731. {
  2732. name: "Normal",
  2733. height: math.unit(577560, "km"),
  2734. default: true
  2735. },
  2736. {
  2737. name: "Large",
  2738. height: math.unit(4, "galaxies")
  2739. },
  2740. {
  2741. name: "Largest",
  2742. height: math.unit(15, "multiverses")
  2743. },
  2744. ]
  2745. ))
  2746. characterMakers.push(() => makeCharacter(
  2747. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2748. {
  2749. front: {
  2750. height: math.unit(7, "feet"),
  2751. weight: math.unit(100, "kg"),
  2752. name: "Front",
  2753. image: {
  2754. source: "./media/characters/manny/front.svg",
  2755. extra: 1,
  2756. bottom: 0.06
  2757. }
  2758. },
  2759. back: {
  2760. height: math.unit(7, "feet"),
  2761. weight: math.unit(100, "kg"),
  2762. name: "Back",
  2763. image: {
  2764. source: "./media/characters/manny/back.svg",
  2765. extra: 1,
  2766. bottom: 0.014
  2767. }
  2768. },
  2769. },
  2770. [
  2771. {
  2772. name: "Normal",
  2773. height: math.unit(7, "feet"),
  2774. },
  2775. {
  2776. name: "Macro",
  2777. height: math.unit(78, "feet"),
  2778. default: true
  2779. },
  2780. {
  2781. name: "Macro+",
  2782. height: math.unit(300, "meters")
  2783. },
  2784. {
  2785. name: "Macro++",
  2786. height: math.unit(2400, "meters")
  2787. },
  2788. {
  2789. name: "Megamacro",
  2790. height: math.unit(5167, "meters")
  2791. },
  2792. {
  2793. name: "Gigamacro",
  2794. height: math.unit(41769, "miles")
  2795. },
  2796. ]
  2797. ))
  2798. characterMakers.push(() => makeCharacter(
  2799. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2800. {
  2801. front: {
  2802. height: math.unit(7, "feet"),
  2803. weight: math.unit(100, "kg"),
  2804. name: "Front",
  2805. image: {
  2806. source: "./media/characters/adake/front-1.svg"
  2807. }
  2808. },
  2809. frontAlt: {
  2810. height: math.unit(7, "feet"),
  2811. weight: math.unit(100, "kg"),
  2812. name: "Front (Alt)",
  2813. image: {
  2814. source: "./media/characters/adake/front-2.svg",
  2815. extra: 1,
  2816. bottom: 0.01
  2817. }
  2818. },
  2819. back: {
  2820. height: math.unit(7, "feet"),
  2821. weight: math.unit(100, "kg"),
  2822. name: "Back",
  2823. image: {
  2824. source: "./media/characters/adake/back.svg",
  2825. }
  2826. },
  2827. kneel: {
  2828. height: math.unit(5.385, "feet"),
  2829. weight: math.unit(100, "kg"),
  2830. name: "Kneeling",
  2831. image: {
  2832. source: "./media/characters/adake/kneel.svg",
  2833. bottom: 0.052
  2834. }
  2835. },
  2836. },
  2837. [
  2838. {
  2839. name: "Normal",
  2840. height: math.unit(7, "feet"),
  2841. },
  2842. {
  2843. name: "Macro",
  2844. height: math.unit(78, "feet"),
  2845. default: true
  2846. },
  2847. {
  2848. name: "Macro+",
  2849. height: math.unit(300, "meters")
  2850. },
  2851. {
  2852. name: "Macro++",
  2853. height: math.unit(2400, "meters")
  2854. },
  2855. {
  2856. name: "Megamacro",
  2857. height: math.unit(5167, "meters")
  2858. },
  2859. {
  2860. name: "Gigamacro",
  2861. height: math.unit(41769, "miles")
  2862. },
  2863. ]
  2864. ))
  2865. characterMakers.push(() => makeCharacter(
  2866. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2867. {
  2868. front: {
  2869. height: math.unit(1.65, "meters"),
  2870. weight: math.unit(50, "kg"),
  2871. name: "Front",
  2872. image: {
  2873. source: "./media/characters/elijah/front.svg",
  2874. extra: 858 / 830,
  2875. bottom: 95.5 / 953.8559
  2876. }
  2877. },
  2878. back: {
  2879. height: math.unit(1.65, "meters"),
  2880. weight: math.unit(50, "kg"),
  2881. name: "Back",
  2882. image: {
  2883. source: "./media/characters/elijah/back.svg",
  2884. extra: 895 / 850,
  2885. bottom: 5.3 / 897.956
  2886. }
  2887. },
  2888. frontNsfw: {
  2889. height: math.unit(1.65, "meters"),
  2890. weight: math.unit(50, "kg"),
  2891. name: "Front (NSFW)",
  2892. image: {
  2893. source: "./media/characters/elijah/front-nsfw.svg",
  2894. extra: 858 / 830,
  2895. bottom: 95.5 / 953.8559
  2896. }
  2897. },
  2898. backNsfw: {
  2899. height: math.unit(1.65, "meters"),
  2900. weight: math.unit(50, "kg"),
  2901. name: "Back (NSFW)",
  2902. image: {
  2903. source: "./media/characters/elijah/back-nsfw.svg",
  2904. extra: 895 / 850,
  2905. bottom: 5.3 / 897.956
  2906. }
  2907. },
  2908. dick: {
  2909. height: math.unit(1, "feet"),
  2910. name: "Dick",
  2911. image: {
  2912. source: "./media/characters/elijah/dick.svg"
  2913. }
  2914. },
  2915. beakOpen: {
  2916. height: math.unit(1.25, "feet"),
  2917. name: "Beak (Open)",
  2918. image: {
  2919. source: "./media/characters/elijah/beak-open.svg"
  2920. }
  2921. },
  2922. beakShut: {
  2923. height: math.unit(1.25, "feet"),
  2924. name: "Beak (Shut)",
  2925. image: {
  2926. source: "./media/characters/elijah/beak-shut.svg"
  2927. }
  2928. },
  2929. footFlexing: {
  2930. height: math.unit(1.61, "feet"),
  2931. name: "Foot (Flexing)",
  2932. image: {
  2933. source: "./media/characters/elijah/foot-flexing.svg"
  2934. }
  2935. },
  2936. footStepping: {
  2937. height: math.unit(1.44, "feet"),
  2938. name: "Foot (Stepping)",
  2939. image: {
  2940. source: "./media/characters/elijah/foot-stepping.svg"
  2941. }
  2942. },
  2943. plantigradeLeg: {
  2944. height: math.unit(2.34, "feet"),
  2945. name: "Plantigrade Leg",
  2946. image: {
  2947. source: "./media/characters/elijah/plantigrade-leg.svg"
  2948. }
  2949. },
  2950. plantigradeFootLeft: {
  2951. height: math.unit(0.9, "feet"),
  2952. name: "Plantigrade Foot (Left)",
  2953. image: {
  2954. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2955. }
  2956. },
  2957. plantigradeFootRight: {
  2958. height: math.unit(0.9, "feet"),
  2959. name: "Plantigrade Foot (Right)",
  2960. image: {
  2961. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2962. }
  2963. },
  2964. },
  2965. [
  2966. {
  2967. name: "Normal",
  2968. height: math.unit(1.65, "meters")
  2969. },
  2970. {
  2971. name: "Macro",
  2972. height: math.unit(55, "meters"),
  2973. default: true
  2974. },
  2975. {
  2976. name: "Macro+",
  2977. height: math.unit(105, "meters")
  2978. },
  2979. ]
  2980. ))
  2981. characterMakers.push(() => makeCharacter(
  2982. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2983. {
  2984. front: {
  2985. height: math.unit(7 + 2/12, "feet"),
  2986. weight: math.unit(320, "kg"),
  2987. preyCapacity: math.unit(0.276549935, "people"),
  2988. name: "Front",
  2989. image: {
  2990. source: "./media/characters/rai/front.svg",
  2991. extra: 1802/1696,
  2992. bottom: 68/1870
  2993. },
  2994. form: "anthro",
  2995. default: true
  2996. },
  2997. frontDressed: {
  2998. height: math.unit(7 + 2/12, "feet"),
  2999. weight: math.unit(320, "kg"),
  3000. preyCapacity: math.unit(0.276549935, "people"),
  3001. name: "Front (Dressed)",
  3002. image: {
  3003. source: "./media/characters/rai/front-dressed.svg",
  3004. extra: 1802/1696,
  3005. bottom: 68/1870
  3006. },
  3007. form: "anthro"
  3008. },
  3009. side: {
  3010. height: math.unit(7 + 2/12, "feet"),
  3011. weight: math.unit(320, "kg"),
  3012. preyCapacity: math.unit(0.276549935, "people"),
  3013. name: "Side",
  3014. image: {
  3015. source: "./media/characters/rai/side.svg",
  3016. extra: 1789/1710,
  3017. bottom: 115/1904
  3018. },
  3019. form: "anthro"
  3020. },
  3021. back: {
  3022. height: math.unit(7 + 2/12, "feet"),
  3023. weight: math.unit(320, "kg"),
  3024. preyCapacity: math.unit(0.276549935, "people"),
  3025. name: "Back",
  3026. image: {
  3027. source: "./media/characters/rai/back.svg",
  3028. extra: 1770/1707,
  3029. bottom: 28/1798
  3030. },
  3031. form: "anthro"
  3032. },
  3033. feral: {
  3034. height: math.unit(9.5, "feet"),
  3035. weight: math.unit(640, "kg"),
  3036. preyCapacity: math.unit(4, "people"),
  3037. name: "Feral",
  3038. image: {
  3039. source: "./media/characters/rai/feral.svg",
  3040. extra: 945/553,
  3041. bottom: 176/1121
  3042. },
  3043. form: "feral",
  3044. default: true
  3045. },
  3046. dragon: {
  3047. height: math.unit(23, "feet"),
  3048. weight: math.unit(50000, "lb"),
  3049. name: "Dragon",
  3050. image: {
  3051. source: "./media/characters/rai/dragon.svg",
  3052. extra: 2498 / 2030,
  3053. bottom: 85.2 / 2584
  3054. },
  3055. form: "dragon",
  3056. default: true
  3057. },
  3058. maw: {
  3059. height: math.unit(1.69, "feet"),
  3060. name: "Maw",
  3061. image: {
  3062. source: "./media/characters/rai/maw.svg"
  3063. },
  3064. form: "anthro"
  3065. },
  3066. },
  3067. [
  3068. {
  3069. name: "Normal",
  3070. height: math.unit(7 + 2/12, "feet"),
  3071. form: "anthro"
  3072. },
  3073. {
  3074. name: "Big",
  3075. height: math.unit(11, "feet"),
  3076. form: "anthro"
  3077. },
  3078. {
  3079. name: "Minimacro",
  3080. height: math.unit(77, "feet"),
  3081. form: "anthro"
  3082. },
  3083. {
  3084. name: "Macro",
  3085. height: math.unit(302, "feet"),
  3086. default: true,
  3087. form: "anthro"
  3088. },
  3089. {
  3090. name: "Normal",
  3091. height: math.unit(9.5, "feet"),
  3092. form: "feral",
  3093. default: true
  3094. },
  3095. {
  3096. name: "Normal",
  3097. height: math.unit(23, "feet"),
  3098. form: "dragon",
  3099. default: true
  3100. }
  3101. ],
  3102. {
  3103. "anthro": {
  3104. name: "Anthro",
  3105. default: true
  3106. },
  3107. "feral": {
  3108. name: "Feral",
  3109. },
  3110. "dragon": {
  3111. name: "Dragon",
  3112. },
  3113. }
  3114. ))
  3115. characterMakers.push(() => makeCharacter(
  3116. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  3117. {
  3118. frontDressed: {
  3119. height: math.unit(216, "feet"),
  3120. weight: math.unit(7000000, "lb"),
  3121. preyCapacity: math.unit(1321, "people"),
  3122. name: "Front (Dressed)",
  3123. image: {
  3124. source: "./media/characters/jazzy/front-dressed.svg",
  3125. extra: 2738 / 2651,
  3126. bottom: 41.8 / 2786
  3127. }
  3128. },
  3129. backDressed: {
  3130. height: math.unit(216, "feet"),
  3131. weight: math.unit(7000000, "lb"),
  3132. preyCapacity: math.unit(1321, "people"),
  3133. name: "Back (Dressed)",
  3134. image: {
  3135. source: "./media/characters/jazzy/back-dressed.svg",
  3136. extra: 2775 / 2673,
  3137. bottom: 36.8 / 2817
  3138. }
  3139. },
  3140. front: {
  3141. height: math.unit(216, "feet"),
  3142. weight: math.unit(7000000, "lb"),
  3143. preyCapacity: math.unit(1321, "people"),
  3144. name: "Front",
  3145. image: {
  3146. source: "./media/characters/jazzy/front.svg",
  3147. extra: 2738 / 2651,
  3148. bottom: 41.8 / 2786
  3149. }
  3150. },
  3151. back: {
  3152. height: math.unit(216, "feet"),
  3153. weight: math.unit(7000000, "lb"),
  3154. preyCapacity: math.unit(1321, "people"),
  3155. name: "Back",
  3156. image: {
  3157. source: "./media/characters/jazzy/back.svg",
  3158. extra: 2775 / 2673,
  3159. bottom: 36.8 / 2817
  3160. }
  3161. },
  3162. maw: {
  3163. height: math.unit(20, "feet"),
  3164. name: "Maw",
  3165. image: {
  3166. source: "./media/characters/jazzy/maw.svg"
  3167. }
  3168. },
  3169. paws: {
  3170. height: math.unit(27.5, "feet"),
  3171. name: "Paws",
  3172. image: {
  3173. source: "./media/characters/jazzy/paws.svg"
  3174. }
  3175. },
  3176. eye: {
  3177. height: math.unit(4.4, "feet"),
  3178. name: "Eye",
  3179. image: {
  3180. source: "./media/characters/jazzy/eye.svg"
  3181. }
  3182. },
  3183. droneOffense: {
  3184. height: math.unit(9.5, "inches"),
  3185. name: "Drone (Offense)",
  3186. image: {
  3187. source: "./media/characters/jazzy/drone-offense.svg"
  3188. }
  3189. },
  3190. droneRecon: {
  3191. height: math.unit(9.5, "inches"),
  3192. name: "Drone (Recon)",
  3193. image: {
  3194. source: "./media/characters/jazzy/drone-recon.svg"
  3195. }
  3196. },
  3197. droneDefense: {
  3198. height: math.unit(9.5, "inches"),
  3199. name: "Drone (Defense)",
  3200. image: {
  3201. source: "./media/characters/jazzy/drone-defense.svg"
  3202. }
  3203. },
  3204. },
  3205. [
  3206. {
  3207. name: "Macro",
  3208. height: math.unit(216, "feet"),
  3209. default: true
  3210. },
  3211. ]
  3212. ))
  3213. characterMakers.push(() => makeCharacter(
  3214. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3215. {
  3216. front: {
  3217. height: math.unit(9 + 6/12, "feet"),
  3218. weight: math.unit(700, "lb"),
  3219. name: "Front",
  3220. image: {
  3221. source: "./media/characters/flamm/front.svg",
  3222. extra: 1736/1596,
  3223. bottom: 93/1829
  3224. }
  3225. },
  3226. buff: {
  3227. height: math.unit(9 + 6/12, "feet"),
  3228. weight: math.unit(950, "lb"),
  3229. name: "Buff",
  3230. image: {
  3231. source: "./media/characters/flamm/buff.svg",
  3232. extra: 3018/2874,
  3233. bottom: 221/3239
  3234. }
  3235. },
  3236. },
  3237. [
  3238. {
  3239. name: "Normal",
  3240. height: math.unit(9.5, "feet")
  3241. },
  3242. {
  3243. name: "Macro",
  3244. height: math.unit(200, "feet"),
  3245. default: true
  3246. },
  3247. ]
  3248. ))
  3249. characterMakers.push(() => makeCharacter(
  3250. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3251. {
  3252. front: {
  3253. height: math.unit(5 + 3/12, "feet"),
  3254. weight: math.unit(60, "kg"),
  3255. name: "Front",
  3256. image: {
  3257. source: "./media/characters/zephiro/front.svg",
  3258. extra: 1873/1761,
  3259. bottom: 147/2020
  3260. }
  3261. },
  3262. side: {
  3263. height: math.unit(5 + 3/12, "feet"),
  3264. weight: math.unit(60, "kg"),
  3265. name: "Side",
  3266. image: {
  3267. source: "./media/characters/zephiro/side.svg",
  3268. extra: 1929/1827,
  3269. bottom: 65/1994
  3270. }
  3271. },
  3272. back: {
  3273. height: math.unit(5 + 3/12, "feet"),
  3274. weight: math.unit(60, "kg"),
  3275. name: "Back",
  3276. image: {
  3277. source: "./media/characters/zephiro/back.svg",
  3278. extra: 1926/1816,
  3279. bottom: 41/1967
  3280. }
  3281. },
  3282. hand: {
  3283. height: math.unit(0.68, "feet"),
  3284. name: "Hand",
  3285. image: {
  3286. source: "./media/characters/zephiro/hand.svg"
  3287. }
  3288. },
  3289. paw: {
  3290. height: math.unit(1, "feet"),
  3291. name: "Paw",
  3292. image: {
  3293. source: "./media/characters/zephiro/paw.svg"
  3294. }
  3295. },
  3296. beans: {
  3297. height: math.unit(0.93, "feet"),
  3298. name: "Beans",
  3299. image: {
  3300. source: "./media/characters/zephiro/beans.svg"
  3301. }
  3302. },
  3303. },
  3304. [
  3305. {
  3306. name: "Micro",
  3307. height: math.unit(3, "inches")
  3308. },
  3309. {
  3310. name: "Normal",
  3311. height: math.unit(5 + 3 / 12, "feet"),
  3312. default: true
  3313. },
  3314. {
  3315. name: "Macro",
  3316. height: math.unit(118, "feet")
  3317. },
  3318. ]
  3319. ))
  3320. characterMakers.push(() => makeCharacter(
  3321. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3322. {
  3323. front: {
  3324. height: math.unit(5, "feet"),
  3325. weight: math.unit(90, "kg"),
  3326. preyCapacity: math.unit(14, "people"),
  3327. name: "Front",
  3328. image: {
  3329. source: "./media/characters/fory/front.svg",
  3330. extra: 2862 / 2674,
  3331. bottom: 180 / 3043.8
  3332. },
  3333. form: "weaselbun",
  3334. default: true,
  3335. extraAttributes: {
  3336. "pawSize": {
  3337. name: "Paw Size",
  3338. power: 2,
  3339. type: "area",
  3340. base: math.unit(0.1596, "m^2")
  3341. },
  3342. "pawLength": {
  3343. name: "Paw Length",
  3344. power: 1,
  3345. type: "length",
  3346. base: math.unit(0.7, "m")
  3347. }
  3348. }
  3349. },
  3350. back: {
  3351. height: math.unit(5, "feet"),
  3352. weight: math.unit(90, "kg"),
  3353. preyCapacity: math.unit(14, "people"),
  3354. name: "Back",
  3355. image: {
  3356. source: "./media/characters/fory/back.svg",
  3357. extra: 1790/1672,
  3358. bottom: 84/1874
  3359. },
  3360. form: "weaselbun",
  3361. extraAttributes: {
  3362. "pawSize": {
  3363. name: "Paw Size",
  3364. power: 2,
  3365. type: "area",
  3366. base: math.unit(0.1596, "m^2")
  3367. },
  3368. "pawLength": {
  3369. name: "Paw Length",
  3370. power: 1,
  3371. type: "length",
  3372. base: math.unit(0.7, "m")
  3373. }
  3374. }
  3375. },
  3376. paw: {
  3377. height: math.unit(2.14, "feet"),
  3378. name: "Paw",
  3379. image: {
  3380. source: "./media/characters/fory/paw.svg"
  3381. },
  3382. form: "weaselbun",
  3383. extraAttributes: {
  3384. "pawSize": {
  3385. name: "Paw Size",
  3386. power: 2,
  3387. type: "area",
  3388. base: math.unit(0.1596, "m^2")
  3389. },
  3390. "pawLength": {
  3391. name: "Paw Length",
  3392. power: 1,
  3393. type: "length",
  3394. base: math.unit(0.48, "m")
  3395. }
  3396. }
  3397. },
  3398. bunBack: {
  3399. height: math.unit(3, "feet"),
  3400. weight: math.unit(20, "kg"),
  3401. preyCapacity: math.unit(3, "people"),
  3402. name: "Back",
  3403. image: {
  3404. source: "./media/characters/fory/bun-back.svg",
  3405. extra: 1749/1564,
  3406. bottom: 246/1995
  3407. },
  3408. form: "bun",
  3409. default: true,
  3410. extraAttributes: {
  3411. "pawSize": {
  3412. name: "Paw Size",
  3413. power: 2,
  3414. type: "area",
  3415. base: math.unit(0.072, "m^2")
  3416. },
  3417. "pawLength": {
  3418. name: "Paw Length",
  3419. power: 1,
  3420. type: "length",
  3421. base: math.unit(0.45, "m")
  3422. }
  3423. }
  3424. },
  3425. },
  3426. [
  3427. {
  3428. name: "Normal",
  3429. height: math.unit(5, "feet"),
  3430. form: "weaselbun"
  3431. },
  3432. {
  3433. name: "Macro",
  3434. height: math.unit(50, "feet"),
  3435. default: true,
  3436. form: "weaselbun"
  3437. },
  3438. {
  3439. name: "Megamacro",
  3440. height: math.unit(10, "miles"),
  3441. form: "weaselbun"
  3442. },
  3443. {
  3444. name: "Gigamacro",
  3445. height: math.unit(5, "earths"),
  3446. form: "weaselbun"
  3447. },
  3448. {
  3449. name: "Normal",
  3450. height: math.unit(3, "feet"),
  3451. default: true,
  3452. form: "bun"
  3453. },
  3454. {
  3455. name: "Fun-Size",
  3456. height: math.unit(12, "feet"),
  3457. form: "bun"
  3458. },
  3459. {
  3460. name: "Macro",
  3461. height: math.unit(100, "feet"),
  3462. form: "bun"
  3463. },
  3464. {
  3465. name: "Planetary",
  3466. height: math.unit(3, "earths"),
  3467. form: "bun"
  3468. },
  3469. ],
  3470. {
  3471. "weaselbun": {
  3472. name: "Weaselbun",
  3473. default: true
  3474. },
  3475. "bun": {
  3476. name: "Bun",
  3477. },
  3478. }
  3479. ))
  3480. characterMakers.push(() => makeCharacter(
  3481. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3482. {
  3483. front: {
  3484. height: math.unit(7, "feet"),
  3485. weight: math.unit(90, "kg"),
  3486. name: "Front",
  3487. image: {
  3488. source: "./media/characters/kurrikage/front.svg",
  3489. extra: 1845/1733,
  3490. bottom: 119/1964
  3491. }
  3492. },
  3493. back: {
  3494. height: math.unit(7, "feet"),
  3495. weight: math.unit(90, "kg"),
  3496. name: "Back",
  3497. image: {
  3498. source: "./media/characters/kurrikage/back.svg",
  3499. extra: 1790/1677,
  3500. bottom: 61/1851
  3501. }
  3502. },
  3503. dressed: {
  3504. height: math.unit(7, "feet"),
  3505. weight: math.unit(90, "kg"),
  3506. name: "Dressed",
  3507. image: {
  3508. source: "./media/characters/kurrikage/dressed.svg",
  3509. extra: 1845/1733,
  3510. bottom: 119/1964
  3511. }
  3512. },
  3513. foot: {
  3514. height: math.unit(1.5, "feet"),
  3515. name: "Foot",
  3516. image: {
  3517. source: "./media/characters/kurrikage/foot.svg"
  3518. }
  3519. },
  3520. staff: {
  3521. height: math.unit(6.7, "feet"),
  3522. name: "Staff",
  3523. image: {
  3524. source: "./media/characters/kurrikage/staff.svg"
  3525. }
  3526. },
  3527. peek: {
  3528. height: math.unit(1.05, "feet"),
  3529. name: "Peeking",
  3530. image: {
  3531. source: "./media/characters/kurrikage/peek.svg",
  3532. bottom: 0.08
  3533. }
  3534. },
  3535. },
  3536. [
  3537. {
  3538. name: "Normal",
  3539. height: math.unit(12, "feet"),
  3540. default: true
  3541. },
  3542. {
  3543. name: "Big",
  3544. height: math.unit(20, "feet")
  3545. },
  3546. {
  3547. name: "Macro",
  3548. height: math.unit(500, "feet")
  3549. },
  3550. {
  3551. name: "Megamacro",
  3552. height: math.unit(20, "miles")
  3553. },
  3554. ]
  3555. ))
  3556. characterMakers.push(() => makeCharacter(
  3557. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3558. {
  3559. front: {
  3560. height: math.unit(6, "feet"),
  3561. weight: math.unit(75, "kg"),
  3562. name: "Front",
  3563. image: {
  3564. source: "./media/characters/shingo/front.svg",
  3565. extra: 1900/1825,
  3566. bottom: 82/1982
  3567. }
  3568. },
  3569. side: {
  3570. height: math.unit(6, "feet"),
  3571. weight: math.unit(75, "kg"),
  3572. name: "Side",
  3573. image: {
  3574. source: "./media/characters/shingo/side.svg",
  3575. extra: 1930/1865,
  3576. bottom: 16/1946
  3577. }
  3578. },
  3579. back: {
  3580. height: math.unit(6, "feet"),
  3581. weight: math.unit(75, "kg"),
  3582. name: "Back",
  3583. image: {
  3584. source: "./media/characters/shingo/back.svg",
  3585. extra: 1922/1852,
  3586. bottom: 16/1938
  3587. }
  3588. },
  3589. frontDressed: {
  3590. height: math.unit(6, "feet"),
  3591. weight: math.unit(150, "lb"),
  3592. name: "Front-dressed",
  3593. image: {
  3594. source: "./media/characters/shingo/front-dressed.svg",
  3595. extra: 1900/1825,
  3596. bottom: 82/1982
  3597. }
  3598. },
  3599. paw: {
  3600. height: math.unit(1.29, "feet"),
  3601. name: "Paw",
  3602. image: {
  3603. source: "./media/characters/shingo/paw.svg"
  3604. }
  3605. },
  3606. hand: {
  3607. height: math.unit(1.07, "feet"),
  3608. name: "Hand",
  3609. image: {
  3610. source: "./media/characters/shingo/hand.svg"
  3611. }
  3612. },
  3613. frontAlt: {
  3614. height: math.unit(6, "feet"),
  3615. weight: math.unit(75, "kg"),
  3616. name: "Front (Alt)",
  3617. image: {
  3618. source: "./media/characters/shingo/front-alt.svg",
  3619. extra: 3511 / 3338,
  3620. bottom: 0.005
  3621. }
  3622. },
  3623. frontAlt2: {
  3624. height: math.unit(6, "feet"),
  3625. weight: math.unit(75, "kg"),
  3626. name: "Front (Alt 2)",
  3627. image: {
  3628. source: "./media/characters/shingo/front-alt-2.svg",
  3629. extra: 706/681,
  3630. bottom: 11/717
  3631. }
  3632. },
  3633. pawAlt: {
  3634. height: math.unit(1, "feet"),
  3635. name: "Paw (Alt)",
  3636. image: {
  3637. source: "./media/characters/shingo/paw-alt.svg"
  3638. }
  3639. },
  3640. },
  3641. [
  3642. {
  3643. name: "Micro",
  3644. height: math.unit(4, "inches")
  3645. },
  3646. {
  3647. name: "Normal",
  3648. height: math.unit(6, "feet"),
  3649. default: true
  3650. },
  3651. {
  3652. name: "Macro",
  3653. height: math.unit(108, "feet")
  3654. },
  3655. {
  3656. name: "Macro+",
  3657. height: math.unit(1500, "feet")
  3658. },
  3659. ]
  3660. ))
  3661. characterMakers.push(() => makeCharacter(
  3662. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3663. {
  3664. side: {
  3665. height: math.unit(6, "feet"),
  3666. weight: math.unit(75, "kg"),
  3667. name: "Side",
  3668. image: {
  3669. source: "./media/characters/aigey/side.svg"
  3670. }
  3671. },
  3672. },
  3673. [
  3674. {
  3675. name: "Macro",
  3676. height: math.unit(200, "feet"),
  3677. default: true
  3678. },
  3679. {
  3680. name: "Megamacro",
  3681. height: math.unit(100, "miles")
  3682. },
  3683. ]
  3684. )
  3685. )
  3686. characterMakers.push(() => makeCharacter(
  3687. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3688. {
  3689. front: {
  3690. height: math.unit(5 + 5 / 12, "feet"),
  3691. weight: math.unit(75, "kg"),
  3692. name: "Front",
  3693. image: {
  3694. source: "./media/characters/natasha/front.svg",
  3695. extra: 859 / 824,
  3696. bottom: 23 / 879.6
  3697. }
  3698. },
  3699. frontNsfw: {
  3700. height: math.unit(5 + 5 / 12, "feet"),
  3701. weight: math.unit(75, "kg"),
  3702. name: "Front (NSFW)",
  3703. image: {
  3704. source: "./media/characters/natasha/front-nsfw.svg",
  3705. extra: 859 / 824,
  3706. bottom: 23 / 879.6
  3707. }
  3708. },
  3709. frontErect: {
  3710. height: math.unit(5 + 5 / 12, "feet"),
  3711. weight: math.unit(75, "kg"),
  3712. name: "Front (Erect)",
  3713. image: {
  3714. source: "./media/characters/natasha/front-erect.svg",
  3715. extra: 859 / 824,
  3716. bottom: 23 / 879.6
  3717. }
  3718. },
  3719. back: {
  3720. height: math.unit(5 + 5 / 12, "feet"),
  3721. weight: math.unit(75, "kg"),
  3722. name: "Back",
  3723. image: {
  3724. source: "./media/characters/natasha/back.svg",
  3725. extra: 887.9 / 852.6,
  3726. bottom: 9.7 / 896.4
  3727. }
  3728. },
  3729. backAlt: {
  3730. height: math.unit(5 + 5 / 12, "feet"),
  3731. weight: math.unit(75, "kg"),
  3732. name: "Back (Alt)",
  3733. image: {
  3734. source: "./media/characters/natasha/back-alt.svg",
  3735. extra: 1236.7 / 1192,
  3736. bottom: 22.3 / 1258.2
  3737. }
  3738. },
  3739. dick: {
  3740. height: math.unit(1.772, "feet"),
  3741. name: "Dick",
  3742. image: {
  3743. source: "./media/characters/natasha/dick.svg"
  3744. }
  3745. },
  3746. paw: {
  3747. height: math.unit(0.250, "meters"),
  3748. name: "Paw",
  3749. image: {
  3750. source: "./media/characters/natasha/paw.svg"
  3751. },
  3752. extraAttributes: {
  3753. "toeSize": {
  3754. name: "Toe Size",
  3755. power: 2,
  3756. type: "area",
  3757. base: math.unit(0.0024, "m^2")
  3758. },
  3759. "padSize": {
  3760. name: "Pad Size",
  3761. power: 2,
  3762. type: "area",
  3763. base: math.unit(0.00889, "m^2")
  3764. },
  3765. "pawSize": {
  3766. name: "Paw Size",
  3767. power: 2,
  3768. type: "area",
  3769. base: math.unit(0.023667, "m^2")
  3770. },
  3771. }
  3772. },
  3773. },
  3774. [
  3775. {
  3776. name: "Shortstack",
  3777. height: math.unit(3, "feet"),
  3778. default: true
  3779. },
  3780. {
  3781. name: "Normal",
  3782. height: math.unit(5 + 5 / 12, "feet")
  3783. },
  3784. {
  3785. name: "Large",
  3786. height: math.unit(12, "feet")
  3787. },
  3788. {
  3789. name: "Macro",
  3790. height: math.unit(100, "feet")
  3791. },
  3792. {
  3793. name: "Macro+",
  3794. height: math.unit(260, "feet")
  3795. },
  3796. {
  3797. name: "Macro++",
  3798. height: math.unit(1, "mile")
  3799. },
  3800. ]
  3801. ))
  3802. characterMakers.push(() => makeCharacter(
  3803. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3804. {
  3805. front: {
  3806. height: math.unit(6, "feet"),
  3807. weight: math.unit(75, "kg"),
  3808. name: "Front",
  3809. image: {
  3810. source: "./media/characters/malik/front.svg",
  3811. extra: 1750/1561,
  3812. bottom: 80/1830
  3813. },
  3814. extraAttributes: {
  3815. "toeSize": {
  3816. name: "Toe Size",
  3817. power: 2,
  3818. type: "area",
  3819. base: math.unit(0.0159, "m^2")
  3820. },
  3821. "pawSize": {
  3822. name: "Paw Size",
  3823. power: 2,
  3824. type: "area",
  3825. base: math.unit(0.09834, "m^2")
  3826. },
  3827. }
  3828. },
  3829. side: {
  3830. height: math.unit(6, "feet"),
  3831. weight: math.unit(75, "kg"),
  3832. name: "Side",
  3833. image: {
  3834. source: "./media/characters/malik/side.svg",
  3835. extra: 1802/1685,
  3836. bottom: 42/1844
  3837. },
  3838. extraAttributes: {
  3839. "toeSize": {
  3840. name: "Toe Size",
  3841. power: 2,
  3842. type: "area",
  3843. base: math.unit(0.0159, "m^2")
  3844. },
  3845. "pawSize": {
  3846. name: "Paw Size",
  3847. power: 2,
  3848. type: "area",
  3849. base: math.unit(0.09834, "m^2")
  3850. },
  3851. }
  3852. },
  3853. back: {
  3854. height: math.unit(6, "feet"),
  3855. weight: math.unit(75, "kg"),
  3856. name: "Back",
  3857. image: {
  3858. source: "./media/characters/malik/back.svg",
  3859. extra: 1803/1607,
  3860. bottom: 33/1836
  3861. },
  3862. extraAttributes: {
  3863. "toeSize": {
  3864. name: "Toe Size",
  3865. power: 2,
  3866. type: "area",
  3867. base: math.unit(0.0159, "m^2")
  3868. },
  3869. "pawSize": {
  3870. name: "Paw Size",
  3871. power: 2,
  3872. type: "area",
  3873. base: math.unit(0.09834, "m^2")
  3874. },
  3875. }
  3876. },
  3877. },
  3878. [
  3879. {
  3880. name: "Macro",
  3881. height: math.unit(156, "feet"),
  3882. default: true
  3883. },
  3884. {
  3885. name: "Macro+",
  3886. height: math.unit(1188, "feet")
  3887. },
  3888. ]
  3889. ))
  3890. characterMakers.push(() => makeCharacter(
  3891. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3892. {
  3893. front: {
  3894. height: math.unit(6, "feet"),
  3895. weight: math.unit(75, "kg"),
  3896. name: "Front",
  3897. image: {
  3898. source: "./media/characters/sefer/front.svg",
  3899. extra: 848 / 659,
  3900. bottom: 28.3 / 876.442
  3901. }
  3902. },
  3903. back: {
  3904. height: math.unit(6, "feet"),
  3905. weight: math.unit(75, "kg"),
  3906. name: "Back",
  3907. image: {
  3908. source: "./media/characters/sefer/back.svg",
  3909. extra: 864 / 695,
  3910. bottom: 10 / 871
  3911. }
  3912. },
  3913. frontDressed: {
  3914. height: math.unit(6, "feet"),
  3915. weight: math.unit(75, "kg"),
  3916. name: "Dressed",
  3917. image: {
  3918. source: "./media/characters/sefer/dressed.svg",
  3919. extra: 839 / 653,
  3920. bottom: 37.6 / 878
  3921. }
  3922. },
  3923. },
  3924. [
  3925. {
  3926. name: "Normal",
  3927. height: math.unit(6, "feet"),
  3928. default: true
  3929. },
  3930. {
  3931. name: "Big",
  3932. height: math.unit(8, "meters")
  3933. },
  3934. ]
  3935. ))
  3936. characterMakers.push(() => makeCharacter(
  3937. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3938. {
  3939. body: {
  3940. height: math.unit(2.2428, "meter"),
  3941. weight: math.unit(124.738, "kg"),
  3942. name: "Body",
  3943. image: {
  3944. extra: 1225 / 1050,
  3945. source: "./media/characters/north/front.svg"
  3946. }
  3947. }
  3948. },
  3949. [
  3950. {
  3951. name: "Micro",
  3952. height: math.unit(4, "inches")
  3953. },
  3954. {
  3955. name: "Macro",
  3956. height: math.unit(63, "meters")
  3957. },
  3958. {
  3959. name: "Megamacro",
  3960. height: math.unit(101, "miles"),
  3961. default: true
  3962. }
  3963. ]
  3964. ))
  3965. characterMakers.push(() => makeCharacter(
  3966. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3967. {
  3968. angled: {
  3969. height: math.unit(4, "meter"),
  3970. weight: math.unit(150, "kg"),
  3971. name: "Angled",
  3972. image: {
  3973. source: "./media/characters/talan/angled-sfw.svg",
  3974. bottom: 29 / 3734
  3975. }
  3976. },
  3977. angledNsfw: {
  3978. height: math.unit(4, "meter"),
  3979. weight: math.unit(150, "kg"),
  3980. name: "Angled (NSFW)",
  3981. image: {
  3982. source: "./media/characters/talan/angled-nsfw.svg",
  3983. bottom: 29 / 3734
  3984. }
  3985. },
  3986. frontNsfw: {
  3987. height: math.unit(4, "meter"),
  3988. weight: math.unit(150, "kg"),
  3989. name: "Front (NSFW)",
  3990. image: {
  3991. source: "./media/characters/talan/front-nsfw.svg",
  3992. bottom: 29 / 3734
  3993. }
  3994. },
  3995. sideNsfw: {
  3996. height: math.unit(4, "meter"),
  3997. weight: math.unit(150, "kg"),
  3998. name: "Side (NSFW)",
  3999. image: {
  4000. source: "./media/characters/talan/side-nsfw.svg",
  4001. bottom: 29 / 3734
  4002. }
  4003. },
  4004. back: {
  4005. height: math.unit(4, "meter"),
  4006. weight: math.unit(150, "kg"),
  4007. name: "Back",
  4008. image: {
  4009. source: "./media/characters/talan/back.svg"
  4010. }
  4011. },
  4012. dickBottom: {
  4013. height: math.unit(0.621, "meter"),
  4014. name: "Dick (Bottom)",
  4015. image: {
  4016. source: "./media/characters/talan/dick-bottom.svg"
  4017. }
  4018. },
  4019. dickTop: {
  4020. height: math.unit(0.621, "meter"),
  4021. name: "Dick (Top)",
  4022. image: {
  4023. source: "./media/characters/talan/dick-top.svg"
  4024. }
  4025. },
  4026. dickSide: {
  4027. height: math.unit(0.305, "meter"),
  4028. name: "Dick (Side)",
  4029. image: {
  4030. source: "./media/characters/talan/dick-side.svg"
  4031. }
  4032. },
  4033. dickFront: {
  4034. height: math.unit(0.305, "meter"),
  4035. name: "Dick (Front)",
  4036. image: {
  4037. source: "./media/characters/talan/dick-front.svg"
  4038. }
  4039. },
  4040. },
  4041. [
  4042. {
  4043. name: "Normal",
  4044. height: math.unit(4, "meters")
  4045. },
  4046. {
  4047. name: "Macro",
  4048. height: math.unit(100, "meters")
  4049. },
  4050. {
  4051. name: "Megamacro",
  4052. height: math.unit(2, "miles"),
  4053. default: true
  4054. },
  4055. {
  4056. name: "Gigamacro",
  4057. height: math.unit(5000, "miles")
  4058. },
  4059. {
  4060. name: "Teramacro",
  4061. height: math.unit(100, "parsecs")
  4062. }
  4063. ]
  4064. ))
  4065. characterMakers.push(() => makeCharacter(
  4066. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  4067. {
  4068. front: {
  4069. height: math.unit(2, "meter"),
  4070. weight: math.unit(90, "kg"),
  4071. name: "Front",
  4072. image: {
  4073. source: "./media/characters/gael'rathus/front.svg"
  4074. }
  4075. },
  4076. frontAlt: {
  4077. height: math.unit(2, "meter"),
  4078. weight: math.unit(90, "kg"),
  4079. name: "Front (alt)",
  4080. image: {
  4081. source: "./media/characters/gael'rathus/front-alt.svg"
  4082. }
  4083. },
  4084. frontAlt2: {
  4085. height: math.unit(2, "meter"),
  4086. weight: math.unit(90, "kg"),
  4087. name: "Front (alt 2)",
  4088. image: {
  4089. source: "./media/characters/gael'rathus/front-alt-2.svg"
  4090. }
  4091. }
  4092. },
  4093. [
  4094. {
  4095. name: "Normal",
  4096. height: math.unit(9, "feet"),
  4097. default: true
  4098. },
  4099. {
  4100. name: "Large",
  4101. height: math.unit(25, "feet")
  4102. },
  4103. {
  4104. name: "Macro",
  4105. height: math.unit(0.25, "miles")
  4106. },
  4107. {
  4108. name: "Megamacro",
  4109. height: math.unit(10, "miles")
  4110. }
  4111. ]
  4112. ))
  4113. characterMakers.push(() => makeCharacter(
  4114. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  4115. {
  4116. side: {
  4117. height: math.unit(2, "meter"),
  4118. weight: math.unit(140, "kg"),
  4119. name: "Side",
  4120. image: {
  4121. source: "./media/characters/sosha/side.svg",
  4122. extra: 1170/1006,
  4123. bottom: 94/1264
  4124. }
  4125. },
  4126. maw: {
  4127. height: math.unit(2.87, "feet"),
  4128. name: "Maw",
  4129. image: {
  4130. source: "./media/characters/sosha/maw.svg",
  4131. extra: 966/865,
  4132. bottom: 0/966
  4133. }
  4134. },
  4135. cooch: {
  4136. height: math.unit(5.6, "feet"),
  4137. name: "Cooch",
  4138. image: {
  4139. source: "./media/characters/sosha/cooch.svg"
  4140. }
  4141. },
  4142. },
  4143. [
  4144. {
  4145. name: "Normal",
  4146. height: math.unit(12, "feet"),
  4147. default: true
  4148. }
  4149. ]
  4150. ))
  4151. characterMakers.push(() => makeCharacter(
  4152. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4153. {
  4154. side: {
  4155. height: math.unit(5 + 5 / 12, "feet"),
  4156. weight: math.unit(170, "kg"),
  4157. name: "Side",
  4158. image: {
  4159. source: "./media/characters/runnola/side.svg",
  4160. extra: 741 / 448,
  4161. bottom: 0.05
  4162. }
  4163. },
  4164. },
  4165. [
  4166. {
  4167. name: "Small",
  4168. height: math.unit(3, "feet")
  4169. },
  4170. {
  4171. name: "Normal",
  4172. height: math.unit(5 + 5 / 12, "feet"),
  4173. default: true
  4174. },
  4175. {
  4176. name: "Big",
  4177. height: math.unit(10, "feet")
  4178. },
  4179. ]
  4180. ))
  4181. characterMakers.push(() => makeCharacter(
  4182. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4183. {
  4184. front: {
  4185. height: math.unit(2, "meter"),
  4186. weight: math.unit(50, "kg"),
  4187. name: "Front",
  4188. image: {
  4189. source: "./media/characters/kurribird/front.svg",
  4190. bottom: 0.015
  4191. }
  4192. },
  4193. frontAlt: {
  4194. height: math.unit(1.5, "meter"),
  4195. weight: math.unit(50, "kg"),
  4196. name: "Front (Alt)",
  4197. image: {
  4198. source: "./media/characters/kurribird/front-alt.svg",
  4199. extra: 1.45
  4200. }
  4201. },
  4202. },
  4203. [
  4204. {
  4205. name: "Normal",
  4206. height: math.unit(7, "feet")
  4207. },
  4208. {
  4209. name: "Big",
  4210. height: math.unit(12, "feet"),
  4211. default: true
  4212. },
  4213. {
  4214. name: "Macro",
  4215. height: math.unit(1500, "feet")
  4216. },
  4217. {
  4218. name: "Megamacro",
  4219. height: math.unit(2, "miles")
  4220. }
  4221. ]
  4222. ))
  4223. characterMakers.push(() => makeCharacter(
  4224. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4225. {
  4226. front: {
  4227. height: math.unit(2, "meter"),
  4228. weight: math.unit(80, "kg"),
  4229. name: "Front",
  4230. image: {
  4231. source: "./media/characters/elbial/front.svg",
  4232. extra: 1643 / 1556,
  4233. bottom: 60.2 / 1696
  4234. }
  4235. },
  4236. side: {
  4237. height: math.unit(2, "meter"),
  4238. weight: math.unit(80, "kg"),
  4239. name: "Side",
  4240. image: {
  4241. source: "./media/characters/elbial/side.svg",
  4242. extra: 1601/1528,
  4243. bottom: 97/1698
  4244. }
  4245. },
  4246. back: {
  4247. height: math.unit(2, "meter"),
  4248. weight: math.unit(80, "kg"),
  4249. name: "Back",
  4250. image: {
  4251. source: "./media/characters/elbial/back.svg",
  4252. extra: 1653/1569,
  4253. bottom: 20/1673
  4254. }
  4255. },
  4256. frontDressed: {
  4257. height: math.unit(2, "meter"),
  4258. weight: math.unit(80, "kg"),
  4259. name: "Front (Dressed)",
  4260. image: {
  4261. source: "./media/characters/elbial/front-dressed.svg",
  4262. extra: 1638/1569,
  4263. bottom: 70/1708
  4264. }
  4265. },
  4266. genitals: {
  4267. height: math.unit(2 / 3.367, "meter"),
  4268. name: "Genitals",
  4269. image: {
  4270. source: "./media/characters/elbial/genitals.svg"
  4271. }
  4272. },
  4273. },
  4274. [
  4275. {
  4276. name: "Large",
  4277. height: math.unit(100, "feet")
  4278. },
  4279. {
  4280. name: "Macro",
  4281. height: math.unit(500, "feet"),
  4282. default: true
  4283. },
  4284. {
  4285. name: "Megamacro",
  4286. height: math.unit(10, "miles")
  4287. },
  4288. {
  4289. name: "Gigamacro",
  4290. height: math.unit(25000, "miles")
  4291. },
  4292. {
  4293. name: "Full-Size",
  4294. height: math.unit(8000000, "gigaparsecs")
  4295. }
  4296. ]
  4297. ))
  4298. characterMakers.push(() => makeCharacter(
  4299. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4300. {
  4301. front: {
  4302. height: math.unit(2, "meter"),
  4303. weight: math.unit(60, "kg"),
  4304. name: "Front",
  4305. image: {
  4306. source: "./media/characters/noah/front.svg"
  4307. }
  4308. },
  4309. talons: {
  4310. height: math.unit(0.315, "meter"),
  4311. name: "Talons",
  4312. image: {
  4313. source: "./media/characters/noah/talons.svg"
  4314. }
  4315. }
  4316. },
  4317. [
  4318. {
  4319. name: "Large",
  4320. height: math.unit(50, "feet")
  4321. },
  4322. {
  4323. name: "Macro",
  4324. height: math.unit(750, "feet"),
  4325. default: true
  4326. },
  4327. {
  4328. name: "Megamacro",
  4329. height: math.unit(50, "miles")
  4330. },
  4331. {
  4332. name: "Gigamacro",
  4333. height: math.unit(100000, "miles")
  4334. },
  4335. {
  4336. name: "Full-Size",
  4337. height: math.unit(3000000000, "miles")
  4338. }
  4339. ]
  4340. ))
  4341. characterMakers.push(() => makeCharacter(
  4342. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4343. {
  4344. front: {
  4345. height: math.unit(2, "meter"),
  4346. weight: math.unit(80, "kg"),
  4347. name: "Front",
  4348. image: {
  4349. source: "./media/characters/natalya/front.svg"
  4350. }
  4351. },
  4352. back: {
  4353. height: math.unit(2, "meter"),
  4354. weight: math.unit(80, "kg"),
  4355. name: "Back",
  4356. image: {
  4357. source: "./media/characters/natalya/back.svg"
  4358. }
  4359. }
  4360. },
  4361. [
  4362. {
  4363. name: "Normal",
  4364. height: math.unit(150, "feet"),
  4365. default: true
  4366. },
  4367. {
  4368. name: "Megamacro",
  4369. height: math.unit(5, "miles")
  4370. },
  4371. {
  4372. name: "Full-Size",
  4373. height: math.unit(600, "kiloparsecs")
  4374. }
  4375. ]
  4376. ))
  4377. characterMakers.push(() => makeCharacter(
  4378. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4379. {
  4380. front: {
  4381. height: math.unit(2, "meter"),
  4382. weight: math.unit(50, "kg"),
  4383. name: "Front",
  4384. image: {
  4385. source: "./media/characters/erestrebah/front.svg",
  4386. extra: 1262/1162,
  4387. bottom: 96/1358
  4388. }
  4389. },
  4390. back: {
  4391. height: math.unit(2, "meter"),
  4392. weight: math.unit(50, "kg"),
  4393. name: "Back",
  4394. image: {
  4395. source: "./media/characters/erestrebah/back.svg",
  4396. extra: 1257/1139,
  4397. bottom: 13/1270
  4398. }
  4399. },
  4400. wing: {
  4401. height: math.unit(2, "meter"),
  4402. weight: math.unit(50, "kg"),
  4403. name: "Wing",
  4404. image: {
  4405. source: "./media/characters/erestrebah/wing.svg",
  4406. extra: 1262/1162,
  4407. bottom: 96/1358
  4408. }
  4409. },
  4410. mouth: {
  4411. height: math.unit(0.39, "feet"),
  4412. name: "Mouth",
  4413. image: {
  4414. source: "./media/characters/erestrebah/mouth.svg"
  4415. }
  4416. }
  4417. },
  4418. [
  4419. {
  4420. name: "Normal",
  4421. height: math.unit(10, "feet")
  4422. },
  4423. {
  4424. name: "Large",
  4425. height: math.unit(50, "feet"),
  4426. default: true
  4427. },
  4428. {
  4429. name: "Macro",
  4430. height: math.unit(300, "feet")
  4431. },
  4432. {
  4433. name: "Macro+",
  4434. height: math.unit(750, "feet")
  4435. },
  4436. {
  4437. name: "Megamacro",
  4438. height: math.unit(3, "miles")
  4439. }
  4440. ]
  4441. ))
  4442. characterMakers.push(() => makeCharacter(
  4443. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4444. {
  4445. front: {
  4446. height: math.unit(2, "meter"),
  4447. weight: math.unit(80, "kg"),
  4448. name: "Front",
  4449. image: {
  4450. source: "./media/characters/jennifer/front.svg",
  4451. bottom: 0.11,
  4452. extra: 1.16
  4453. }
  4454. },
  4455. frontAlt: {
  4456. height: math.unit(2, "meter"),
  4457. weight: math.unit(80, "kg"),
  4458. name: "Front (Alt)",
  4459. image: {
  4460. source: "./media/characters/jennifer/front-alt.svg"
  4461. }
  4462. }
  4463. },
  4464. [
  4465. {
  4466. name: "Canon Height",
  4467. height: math.unit(120, "feet"),
  4468. default: true
  4469. },
  4470. {
  4471. name: "Macro+",
  4472. height: math.unit(300, "feet")
  4473. },
  4474. {
  4475. name: "Megamacro",
  4476. height: math.unit(20000, "feet")
  4477. }
  4478. ]
  4479. ))
  4480. characterMakers.push(() => makeCharacter(
  4481. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4482. {
  4483. front: {
  4484. height: math.unit(2, "meter"),
  4485. weight: math.unit(50, "kg"),
  4486. name: "Front",
  4487. image: {
  4488. source: "./media/characters/kalista/front.svg",
  4489. extra: 1314/1145,
  4490. bottom: 101/1415
  4491. }
  4492. },
  4493. back: {
  4494. height: math.unit(2, "meter"),
  4495. weight: math.unit(50, "kg"),
  4496. name: "Back",
  4497. image: {
  4498. source: "./media/characters/kalista/back.svg",
  4499. extra: 1366 / 1156,
  4500. bottom: 33.9 / 1362.78
  4501. }
  4502. }
  4503. },
  4504. [
  4505. {
  4506. name: "Uncomfortably Small",
  4507. height: math.unit(10, "feet")
  4508. },
  4509. {
  4510. name: "Small",
  4511. height: math.unit(30, "feet")
  4512. },
  4513. {
  4514. name: "Macro",
  4515. height: math.unit(100, "feet"),
  4516. default: true
  4517. },
  4518. {
  4519. name: "Macro+",
  4520. height: math.unit(2000, "feet")
  4521. },
  4522. {
  4523. name: "True Form",
  4524. height: math.unit(8924, "miles")
  4525. }
  4526. ]
  4527. ))
  4528. characterMakers.push(() => makeCharacter(
  4529. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4530. {
  4531. front: {
  4532. height: math.unit(2, "meter"),
  4533. weight: math.unit(120, "kg"),
  4534. name: "Front",
  4535. image: {
  4536. source: "./media/characters/ggv/front.svg"
  4537. }
  4538. },
  4539. side: {
  4540. height: math.unit(2, "meter"),
  4541. weight: math.unit(120, "kg"),
  4542. name: "Side",
  4543. image: {
  4544. source: "./media/characters/ggv/side.svg"
  4545. }
  4546. }
  4547. },
  4548. [
  4549. {
  4550. name: "Extremely Puny",
  4551. height: math.unit(9 + 5 / 12, "feet")
  4552. },
  4553. {
  4554. name: "Horribly Small",
  4555. height: math.unit(47.7, "miles"),
  4556. default: true
  4557. },
  4558. {
  4559. name: "Reasonably Sized",
  4560. height: math.unit(25000, "parsecs")
  4561. },
  4562. {
  4563. name: "Slightly Uncompressed",
  4564. height: math.unit(7.77e31, "parsecs")
  4565. },
  4566. {
  4567. name: "Omniversal",
  4568. height: math.unit(1e300, "meters")
  4569. },
  4570. ]
  4571. ))
  4572. characterMakers.push(() => makeCharacter(
  4573. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4574. {
  4575. front: {
  4576. height: math.unit(2, "meter"),
  4577. weight: math.unit(75, "lb"),
  4578. name: "Front",
  4579. image: {
  4580. source: "./media/characters/napalm/front.svg"
  4581. }
  4582. },
  4583. back: {
  4584. height: math.unit(2, "meter"),
  4585. weight: math.unit(75, "lb"),
  4586. name: "Back",
  4587. image: {
  4588. source: "./media/characters/napalm/back.svg"
  4589. }
  4590. }
  4591. },
  4592. [
  4593. {
  4594. name: "Standard",
  4595. height: math.unit(55, "feet"),
  4596. default: true
  4597. }
  4598. ]
  4599. ))
  4600. characterMakers.push(() => makeCharacter(
  4601. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4602. {
  4603. front: {
  4604. height: math.unit(7 + 5 / 6, "feet"),
  4605. weight: math.unit(325, "lb"),
  4606. name: "Front",
  4607. image: {
  4608. source: "./media/characters/asana/front.svg",
  4609. extra: 1133 / 1060,
  4610. bottom: 15.2 / 1148.6
  4611. }
  4612. },
  4613. back: {
  4614. height: math.unit(7 + 5 / 6, "feet"),
  4615. weight: math.unit(325, "lb"),
  4616. name: "Back",
  4617. image: {
  4618. source: "./media/characters/asana/back.svg",
  4619. extra: 1114 / 1043,
  4620. bottom: 5 / 1120
  4621. }
  4622. },
  4623. dressedDark: {
  4624. height: math.unit(7 + 5 / 6, "feet"),
  4625. weight: math.unit(325, "lb"),
  4626. name: "Dressed (Dark)",
  4627. image: {
  4628. source: "./media/characters/asana/dressed-dark.svg",
  4629. extra: 1133 / 1060,
  4630. bottom: 15.2 / 1148.6
  4631. }
  4632. },
  4633. dressedLight: {
  4634. height: math.unit(7 + 5 / 6, "feet"),
  4635. weight: math.unit(325, "lb"),
  4636. name: "Dressed (Light)",
  4637. image: {
  4638. source: "./media/characters/asana/dressed-light.svg",
  4639. extra: 1133 / 1060,
  4640. bottom: 15.2 / 1148.6
  4641. }
  4642. },
  4643. },
  4644. [
  4645. {
  4646. name: "Standard",
  4647. height: math.unit(7 + 5 / 6, "feet"),
  4648. default: true
  4649. },
  4650. {
  4651. name: "Large",
  4652. height: math.unit(10, "meters")
  4653. },
  4654. {
  4655. name: "Macro",
  4656. height: math.unit(2500, "meters")
  4657. },
  4658. {
  4659. name: "Megamacro",
  4660. height: math.unit(5e6, "meters")
  4661. },
  4662. {
  4663. name: "Examacro",
  4664. height: math.unit(5e12, "lightyears")
  4665. },
  4666. {
  4667. name: "Max Size",
  4668. height: math.unit(1e31, "lightyears")
  4669. }
  4670. ]
  4671. ))
  4672. characterMakers.push(() => makeCharacter(
  4673. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4674. {
  4675. front: {
  4676. height: math.unit(2, "meter"),
  4677. weight: math.unit(60, "kg"),
  4678. name: "Front",
  4679. image: {
  4680. source: "./media/characters/ebony/front.svg",
  4681. bottom: 0.03,
  4682. extra: 1045 / 810 + 0.03
  4683. }
  4684. },
  4685. side: {
  4686. height: math.unit(2, "meter"),
  4687. weight: math.unit(60, "kg"),
  4688. name: "Side",
  4689. image: {
  4690. source: "./media/characters/ebony/side.svg",
  4691. bottom: 0.03,
  4692. extra: 1045 / 810 + 0.03
  4693. }
  4694. },
  4695. back: {
  4696. height: math.unit(2, "meter"),
  4697. weight: math.unit(60, "kg"),
  4698. name: "Back",
  4699. image: {
  4700. source: "./media/characters/ebony/back.svg",
  4701. bottom: 0.01,
  4702. extra: 1045 / 810 + 0.01
  4703. }
  4704. },
  4705. },
  4706. [
  4707. // TODO check why I did this lol
  4708. {
  4709. name: "Standard",
  4710. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4711. default: true
  4712. },
  4713. {
  4714. name: "Macro",
  4715. height: math.unit(200, "feet")
  4716. },
  4717. {
  4718. name: "Gigamacro",
  4719. height: math.unit(13000, "km")
  4720. }
  4721. ]
  4722. ))
  4723. characterMakers.push(() => makeCharacter(
  4724. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4725. {
  4726. front: {
  4727. height: math.unit(6, "feet"),
  4728. weight: math.unit(175, "lb"),
  4729. name: "Front",
  4730. image: {
  4731. source: "./media/characters/mountain/front.svg",
  4732. extra: 972 / 955,
  4733. bottom: 64 / 1036.6
  4734. }
  4735. },
  4736. back: {
  4737. height: math.unit(6, "feet"),
  4738. weight: math.unit(175, "lb"),
  4739. name: "Back",
  4740. image: {
  4741. source: "./media/characters/mountain/back.svg",
  4742. extra: 970 / 950,
  4743. bottom: 28.25 / 999
  4744. }
  4745. },
  4746. },
  4747. [
  4748. {
  4749. name: "Large",
  4750. height: math.unit(20, "meters")
  4751. },
  4752. {
  4753. name: "Macro",
  4754. height: math.unit(300, "meters")
  4755. },
  4756. {
  4757. name: "Gigamacro",
  4758. height: math.unit(10000, "km"),
  4759. default: true
  4760. },
  4761. {
  4762. name: "Examacro",
  4763. height: math.unit(10e9, "lightyears")
  4764. }
  4765. ]
  4766. ))
  4767. characterMakers.push(() => makeCharacter(
  4768. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4769. {
  4770. front: {
  4771. height: math.unit(8, "feet"),
  4772. weight: math.unit(500, "lb"),
  4773. name: "Front",
  4774. image: {
  4775. source: "./media/characters/rick/front.svg"
  4776. }
  4777. }
  4778. },
  4779. [
  4780. {
  4781. name: "Normal",
  4782. height: math.unit(8, "feet"),
  4783. default: true
  4784. },
  4785. {
  4786. name: "Macro",
  4787. height: math.unit(5, "km")
  4788. }
  4789. ]
  4790. ))
  4791. characterMakers.push(() => makeCharacter(
  4792. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4793. {
  4794. front: {
  4795. height: math.unit(8, "feet"),
  4796. weight: math.unit(120, "lb"),
  4797. name: "Front",
  4798. image: {
  4799. source: "./media/characters/ona/front.svg"
  4800. }
  4801. },
  4802. frontAlt: {
  4803. height: math.unit(8, "feet"),
  4804. weight: math.unit(120, "lb"),
  4805. name: "Front (Alt)",
  4806. image: {
  4807. source: "./media/characters/ona/front-alt.svg"
  4808. }
  4809. },
  4810. back: {
  4811. height: math.unit(8, "feet"),
  4812. weight: math.unit(120, "lb"),
  4813. name: "Back",
  4814. image: {
  4815. source: "./media/characters/ona/back.svg"
  4816. }
  4817. },
  4818. foot: {
  4819. height: math.unit(1.1, "feet"),
  4820. name: "Foot",
  4821. image: {
  4822. source: "./media/characters/ona/foot.svg"
  4823. }
  4824. }
  4825. },
  4826. [
  4827. {
  4828. name: "Megamacro",
  4829. height: math.unit(70, "km"),
  4830. default: true
  4831. },
  4832. {
  4833. name: "Gigamacro",
  4834. height: math.unit(681818, "miles")
  4835. },
  4836. {
  4837. name: "Examacro",
  4838. height: math.unit(3800000, "lightyears")
  4839. },
  4840. ]
  4841. ))
  4842. characterMakers.push(() => makeCharacter(
  4843. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4844. {
  4845. front: {
  4846. height: math.unit(12, "feet"),
  4847. weight: math.unit(3000, "lb"),
  4848. name: "Front",
  4849. image: {
  4850. source: "./media/characters/mech/front.svg",
  4851. extra: 2900 / 2770,
  4852. bottom: 110 / 3010
  4853. }
  4854. },
  4855. back: {
  4856. height: math.unit(12, "feet"),
  4857. weight: math.unit(3000, "lb"),
  4858. name: "Back",
  4859. image: {
  4860. source: "./media/characters/mech/back.svg",
  4861. extra: 3011 / 2890,
  4862. bottom: 94 / 3105
  4863. }
  4864. },
  4865. maw: {
  4866. height: math.unit(3.07, "feet"),
  4867. name: "Maw",
  4868. image: {
  4869. source: "./media/characters/mech/maw.svg"
  4870. }
  4871. },
  4872. head: {
  4873. height: math.unit(3.07, "feet"),
  4874. name: "Head",
  4875. image: {
  4876. source: "./media/characters/mech/head.svg"
  4877. }
  4878. },
  4879. dick: {
  4880. height: math.unit(1.43, "feet"),
  4881. name: "Dick",
  4882. image: {
  4883. source: "./media/characters/mech/dick.svg"
  4884. }
  4885. },
  4886. },
  4887. [
  4888. {
  4889. name: "Normal",
  4890. height: math.unit(12, "feet")
  4891. },
  4892. {
  4893. name: "Macro",
  4894. height: math.unit(300, "feet"),
  4895. default: true
  4896. },
  4897. {
  4898. name: "Macro+",
  4899. height: math.unit(1500, "feet")
  4900. },
  4901. ]
  4902. ))
  4903. characterMakers.push(() => makeCharacter(
  4904. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4905. {
  4906. front: {
  4907. height: math.unit(1.3, "meter"),
  4908. weight: math.unit(30, "kg"),
  4909. name: "Front",
  4910. image: {
  4911. source: "./media/characters/gregory/front.svg",
  4912. }
  4913. }
  4914. },
  4915. [
  4916. {
  4917. name: "Normal",
  4918. height: math.unit(1.3, "meter"),
  4919. default: true
  4920. },
  4921. {
  4922. name: "Macro",
  4923. height: math.unit(20, "meter")
  4924. }
  4925. ]
  4926. ))
  4927. characterMakers.push(() => makeCharacter(
  4928. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4929. {
  4930. front: {
  4931. height: math.unit(2.8, "meter"),
  4932. weight: math.unit(200, "kg"),
  4933. name: "Front",
  4934. image: {
  4935. source: "./media/characters/elory/front.svg",
  4936. }
  4937. }
  4938. },
  4939. [
  4940. {
  4941. name: "Normal",
  4942. height: math.unit(2.8, "meter"),
  4943. default: true
  4944. },
  4945. {
  4946. name: "Macro",
  4947. height: math.unit(38, "meter")
  4948. }
  4949. ]
  4950. ))
  4951. characterMakers.push(() => makeCharacter(
  4952. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4953. {
  4954. front: {
  4955. height: math.unit(470, "feet"),
  4956. weight: math.unit(924, "tons"),
  4957. name: "Front",
  4958. image: {
  4959. source: "./media/characters/angelpatamon/front.svg",
  4960. }
  4961. }
  4962. },
  4963. [
  4964. {
  4965. name: "Normal",
  4966. height: math.unit(470, "feet"),
  4967. default: true
  4968. },
  4969. {
  4970. name: "Deity Size I",
  4971. height: math.unit(28651.2, "km")
  4972. },
  4973. {
  4974. name: "Deity Size II",
  4975. height: math.unit(171907.2, "km")
  4976. }
  4977. ]
  4978. ))
  4979. characterMakers.push(() => makeCharacter(
  4980. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4981. {
  4982. side: {
  4983. height: math.unit(7.2, "meter"),
  4984. weight: math.unit(8.2, "tons"),
  4985. name: "Side",
  4986. image: {
  4987. source: "./media/characters/cryae/side.svg",
  4988. extra: 3500 / 1500
  4989. }
  4990. }
  4991. },
  4992. [
  4993. {
  4994. name: "Normal",
  4995. height: math.unit(7.2, "meter"),
  4996. default: true
  4997. }
  4998. ]
  4999. ))
  5000. characterMakers.push(() => makeCharacter(
  5001. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  5002. {
  5003. front: {
  5004. height: math.unit(6, "feet"),
  5005. weight: math.unit(175, "lb"),
  5006. name: "Front",
  5007. image: {
  5008. source: "./media/characters/xera/front.svg",
  5009. extra: 2377 / 1972,
  5010. bottom: 75.5 / 2452
  5011. }
  5012. },
  5013. side: {
  5014. height: math.unit(6, "feet"),
  5015. weight: math.unit(175, "lb"),
  5016. name: "Side",
  5017. image: {
  5018. source: "./media/characters/xera/side.svg",
  5019. extra: 2345 / 2019,
  5020. bottom: 39.7 / 2384
  5021. }
  5022. },
  5023. back: {
  5024. height: math.unit(6, "feet"),
  5025. weight: math.unit(175, "lb"),
  5026. name: "Back",
  5027. image: {
  5028. source: "./media/characters/xera/back.svg",
  5029. extra: 2095 / 1984,
  5030. bottom: 67 / 2166
  5031. }
  5032. },
  5033. },
  5034. [
  5035. {
  5036. name: "Small",
  5037. height: math.unit(10, "feet")
  5038. },
  5039. {
  5040. name: "Macro",
  5041. height: math.unit(500, "meters"),
  5042. default: true
  5043. },
  5044. {
  5045. name: "Macro+",
  5046. height: math.unit(10, "km")
  5047. },
  5048. {
  5049. name: "Gigamacro",
  5050. height: math.unit(25000, "km")
  5051. },
  5052. {
  5053. name: "Teramacro",
  5054. height: math.unit(3e6, "km")
  5055. }
  5056. ]
  5057. ))
  5058. characterMakers.push(() => makeCharacter(
  5059. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  5060. {
  5061. front: {
  5062. height: math.unit(6, "feet"),
  5063. weight: math.unit(175, "lb"),
  5064. name: "Front",
  5065. image: {
  5066. source: "./media/characters/nebula/front.svg",
  5067. extra: 2566 / 2362,
  5068. bottom: 81 / 2644
  5069. }
  5070. }
  5071. },
  5072. [
  5073. {
  5074. name: "Small",
  5075. height: math.unit(4.5, "meters")
  5076. },
  5077. {
  5078. name: "Macro",
  5079. height: math.unit(1500, "meters"),
  5080. default: true
  5081. },
  5082. {
  5083. name: "Megamacro",
  5084. height: math.unit(150, "km")
  5085. },
  5086. {
  5087. name: "Gigamacro",
  5088. height: math.unit(27000, "km")
  5089. }
  5090. ]
  5091. ))
  5092. characterMakers.push(() => makeCharacter(
  5093. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  5094. {
  5095. front: {
  5096. height: math.unit(6, "feet"),
  5097. weight: math.unit(225, "lb"),
  5098. name: "Front",
  5099. image: {
  5100. source: "./media/characters/abysgar/front.svg",
  5101. extra: 1739/1614,
  5102. bottom: 71/1810
  5103. }
  5104. },
  5105. frontNsfw: {
  5106. height: math.unit(6, "feet"),
  5107. weight: math.unit(225, "lb"),
  5108. name: "Front (NSFW)",
  5109. image: {
  5110. source: "./media/characters/abysgar/front-nsfw.svg",
  5111. extra: 1739/1614,
  5112. bottom: 71/1810
  5113. }
  5114. },
  5115. back: {
  5116. height: math.unit(4.6, "feet"),
  5117. weight: math.unit(225, "lb"),
  5118. name: "Back",
  5119. image: {
  5120. source: "./media/characters/abysgar/back.svg",
  5121. extra: 1384/1327,
  5122. bottom: 0/1384
  5123. }
  5124. },
  5125. head: {
  5126. height: math.unit(1.25, "feet"),
  5127. name: "Head",
  5128. image: {
  5129. source: "./media/characters/abysgar/head.svg",
  5130. extra: 669/569,
  5131. bottom: 0/669
  5132. }
  5133. },
  5134. },
  5135. [
  5136. {
  5137. name: "Small",
  5138. height: math.unit(4.5, "meters")
  5139. },
  5140. {
  5141. name: "Macro",
  5142. height: math.unit(1250, "meters"),
  5143. default: true
  5144. },
  5145. {
  5146. name: "Megamacro",
  5147. height: math.unit(125, "km")
  5148. },
  5149. {
  5150. name: "Gigamacro",
  5151. height: math.unit(26000, "km")
  5152. }
  5153. ]
  5154. ))
  5155. characterMakers.push(() => makeCharacter(
  5156. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5157. {
  5158. front: {
  5159. height: math.unit(6, "feet"),
  5160. weight: math.unit(180, "lb"),
  5161. name: "Front",
  5162. image: {
  5163. source: "./media/characters/yakuz/front.svg"
  5164. }
  5165. }
  5166. },
  5167. [
  5168. {
  5169. name: "Small",
  5170. height: math.unit(5, "meters")
  5171. },
  5172. {
  5173. name: "Macro",
  5174. height: math.unit(1500, "meters"),
  5175. default: true
  5176. },
  5177. {
  5178. name: "Megamacro",
  5179. height: math.unit(200, "km")
  5180. },
  5181. {
  5182. name: "Gigamacro",
  5183. height: math.unit(100000, "km")
  5184. }
  5185. ]
  5186. ))
  5187. characterMakers.push(() => makeCharacter(
  5188. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5189. {
  5190. front: {
  5191. height: math.unit(6, "feet"),
  5192. weight: math.unit(175, "lb"),
  5193. name: "Front",
  5194. image: {
  5195. source: "./media/characters/mirova/front.svg",
  5196. extra: 3334 / 3071,
  5197. bottom: 42 / 3375.6
  5198. }
  5199. }
  5200. },
  5201. [
  5202. {
  5203. name: "Small",
  5204. height: math.unit(5, "meters")
  5205. },
  5206. {
  5207. name: "Macro",
  5208. height: math.unit(900, "meters"),
  5209. default: true
  5210. },
  5211. {
  5212. name: "Megamacro",
  5213. height: math.unit(135, "km")
  5214. },
  5215. {
  5216. name: "Gigamacro",
  5217. height: math.unit(20000, "km")
  5218. }
  5219. ]
  5220. ))
  5221. characterMakers.push(() => makeCharacter(
  5222. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5223. {
  5224. side: {
  5225. height: math.unit(28.35, "feet"),
  5226. weight: math.unit(99.75, "tons"),
  5227. name: "Side",
  5228. image: {
  5229. source: "./media/characters/asana-mech/side.svg",
  5230. extra: 923 / 699,
  5231. bottom: 50 / 975
  5232. }
  5233. },
  5234. chaingun: {
  5235. height: math.unit(7, "feet"),
  5236. weight: math.unit(2400, "lb"),
  5237. name: "Chaingun",
  5238. image: {
  5239. source: "./media/characters/asana-mech/chaingun.svg"
  5240. }
  5241. },
  5242. laser: {
  5243. height: math.unit(7.12, "feet"),
  5244. weight: math.unit(2000, "lb"),
  5245. name: "Laser",
  5246. image: {
  5247. source: "./media/characters/asana-mech/laser.svg"
  5248. }
  5249. },
  5250. },
  5251. [
  5252. {
  5253. name: "Normal",
  5254. height: math.unit(28.35, "feet"),
  5255. default: true
  5256. },
  5257. {
  5258. name: "Macro",
  5259. height: math.unit(2500, "feet")
  5260. },
  5261. {
  5262. name: "Megamacro",
  5263. height: math.unit(25, "miles")
  5264. },
  5265. {
  5266. name: "Examacro",
  5267. height: math.unit(6e8, "lightyears")
  5268. },
  5269. ]
  5270. ))
  5271. characterMakers.push(() => makeCharacter(
  5272. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5273. {
  5274. front: {
  5275. height: math.unit(5, "meters"),
  5276. weight: math.unit(1000, "kg"),
  5277. name: "Front",
  5278. image: {
  5279. source: "./media/characters/asche/front.svg",
  5280. extra: 1258 / 1190,
  5281. bottom: 47 / 1305
  5282. }
  5283. },
  5284. frontUnderwear: {
  5285. height: math.unit(5, "meters"),
  5286. weight: math.unit(1000, "kg"),
  5287. name: "Front (Underwear)",
  5288. image: {
  5289. source: "./media/characters/asche/front-underwear.svg",
  5290. extra: 1258 / 1190,
  5291. bottom: 47 / 1305
  5292. }
  5293. },
  5294. frontDressed: {
  5295. height: math.unit(5, "meters"),
  5296. weight: math.unit(1000, "kg"),
  5297. name: "Front (Dressed)",
  5298. image: {
  5299. source: "./media/characters/asche/front-dressed.svg",
  5300. extra: 1258 / 1190,
  5301. bottom: 47 / 1305
  5302. }
  5303. },
  5304. frontArmor: {
  5305. height: math.unit(5, "meters"),
  5306. weight: math.unit(1000, "kg"),
  5307. name: "Front (Armored)",
  5308. image: {
  5309. source: "./media/characters/asche/front-armored.svg",
  5310. extra: 1374 / 1308,
  5311. bottom: 23 / 1397
  5312. }
  5313. },
  5314. mp724: {
  5315. height: math.unit(0.96, "meters"),
  5316. weight: math.unit(38, "kg"),
  5317. name: "H&K MP724",
  5318. image: {
  5319. source: "./media/characters/asche/h&k-mp724.svg"
  5320. }
  5321. },
  5322. side: {
  5323. height: math.unit(5, "meters"),
  5324. weight: math.unit(1000, "kg"),
  5325. name: "Side",
  5326. image: {
  5327. source: "./media/characters/asche/side.svg",
  5328. extra: 1717 / 1609,
  5329. bottom: 0.005
  5330. }
  5331. },
  5332. back: {
  5333. height: math.unit(5, "meters"),
  5334. weight: math.unit(1000, "kg"),
  5335. name: "Back",
  5336. image: {
  5337. source: "./media/characters/asche/back.svg",
  5338. extra: 1570 / 1501
  5339. }
  5340. },
  5341. },
  5342. [
  5343. {
  5344. name: "DEFCON 5",
  5345. height: math.unit(5, "meters")
  5346. },
  5347. {
  5348. name: "DEFCON 4",
  5349. height: math.unit(500, "meters"),
  5350. default: true
  5351. },
  5352. {
  5353. name: "DEFCON 3",
  5354. height: math.unit(5, "km")
  5355. },
  5356. {
  5357. name: "DEFCON 2",
  5358. height: math.unit(500, "km")
  5359. },
  5360. {
  5361. name: "DEFCON 1",
  5362. height: math.unit(500000, "km")
  5363. },
  5364. {
  5365. name: "DEFCON 0",
  5366. height: math.unit(3, "gigaparsecs")
  5367. },
  5368. ]
  5369. ))
  5370. characterMakers.push(() => makeCharacter(
  5371. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5372. {
  5373. front: {
  5374. height: math.unit(7, "feet"),
  5375. weight: math.unit(92.7, "kg"),
  5376. name: "Front",
  5377. image: {
  5378. source: "./media/characters/gale/front.svg",
  5379. extra: 977/919,
  5380. bottom: 105/1082
  5381. }
  5382. },
  5383. side: {
  5384. height: math.unit(6.7, "feet"),
  5385. weight: math.unit(92.7, "kg"),
  5386. name: "Side",
  5387. image: {
  5388. source: "./media/characters/gale/side.svg",
  5389. extra: 978/922,
  5390. bottom: 140/1118
  5391. }
  5392. },
  5393. back: {
  5394. height: math.unit(7, "feet"),
  5395. weight: math.unit(92.7, "kg"),
  5396. name: "Back",
  5397. image: {
  5398. source: "./media/characters/gale/back.svg",
  5399. extra: 966/920,
  5400. bottom: 61/1027
  5401. }
  5402. },
  5403. maw: {
  5404. height: math.unit(2.23, "feet"),
  5405. name: "Maw",
  5406. image: {
  5407. source: "./media/characters/gale/maw.svg"
  5408. }
  5409. },
  5410. foot: {
  5411. height: math.unit(2.1, "feet"),
  5412. name: "Foot",
  5413. image: {
  5414. source: "./media/characters/gale/foot.svg"
  5415. }
  5416. },
  5417. },
  5418. [
  5419. {
  5420. name: "Normal",
  5421. height: math.unit(7, "feet")
  5422. },
  5423. {
  5424. name: "Macro",
  5425. height: math.unit(150, "feet"),
  5426. default: true
  5427. },
  5428. {
  5429. name: "Macro+",
  5430. height: math.unit(300, "feet")
  5431. },
  5432. ]
  5433. ))
  5434. characterMakers.push(() => makeCharacter(
  5435. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5436. {
  5437. front: {
  5438. height: math.unit(5 + 10/12, "feet"),
  5439. weight: math.unit(67, "kg"),
  5440. name: "Front",
  5441. image: {
  5442. source: "./media/characters/draylen/front.svg",
  5443. extra: 832/777,
  5444. bottom: 85/917
  5445. }
  5446. }
  5447. },
  5448. [
  5449. {
  5450. name: "Normal",
  5451. height: math.unit(5 + 10/12, "feet")
  5452. },
  5453. {
  5454. name: "Macro",
  5455. height: math.unit(150, "feet"),
  5456. default: true
  5457. }
  5458. ]
  5459. ))
  5460. characterMakers.push(() => makeCharacter(
  5461. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5462. {
  5463. front: {
  5464. height: math.unit(7 + 9 / 12, "feet"),
  5465. weight: math.unit(379, "lbs"),
  5466. name: "Front",
  5467. image: {
  5468. source: "./media/characters/chez/front.svg"
  5469. }
  5470. },
  5471. side: {
  5472. height: math.unit(7 + 9 / 12, "feet"),
  5473. weight: math.unit(379, "lbs"),
  5474. name: "Side",
  5475. image: {
  5476. source: "./media/characters/chez/side.svg"
  5477. }
  5478. }
  5479. },
  5480. [
  5481. {
  5482. name: "Normal",
  5483. height: math.unit(7 + 9 / 12, "feet"),
  5484. default: true
  5485. },
  5486. {
  5487. name: "God King",
  5488. height: math.unit(9750000, "meters")
  5489. }
  5490. ]
  5491. ))
  5492. characterMakers.push(() => makeCharacter(
  5493. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5494. {
  5495. front: {
  5496. height: math.unit(6, "feet"),
  5497. weight: math.unit(275, "lbs"),
  5498. name: "Front",
  5499. image: {
  5500. source: "./media/characters/kaylum/front.svg",
  5501. bottom: 0.01,
  5502. extra: 1166 / 1031
  5503. }
  5504. },
  5505. frontWingless: {
  5506. height: math.unit(6, "feet"),
  5507. weight: math.unit(275, "lbs"),
  5508. name: "Front (Wingless)",
  5509. image: {
  5510. source: "./media/characters/kaylum/front-wingless.svg",
  5511. bottom: 0.01,
  5512. extra: 1117 / 1031
  5513. }
  5514. }
  5515. },
  5516. [
  5517. {
  5518. name: "Normal",
  5519. height: math.unit(3.05, "meters")
  5520. },
  5521. {
  5522. name: "Master",
  5523. height: math.unit(5.5, "meters")
  5524. },
  5525. {
  5526. name: "Rampage",
  5527. height: math.unit(19, "meters")
  5528. },
  5529. {
  5530. name: "Macro Lite",
  5531. height: math.unit(37, "meters")
  5532. },
  5533. {
  5534. name: "Hyper Predator",
  5535. height: math.unit(61, "meters")
  5536. },
  5537. {
  5538. name: "Macro",
  5539. height: math.unit(138, "meters"),
  5540. default: true
  5541. }
  5542. ]
  5543. ))
  5544. characterMakers.push(() => makeCharacter(
  5545. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5546. {
  5547. front: {
  5548. height: math.unit(5 + 5 / 12, "feet"),
  5549. weight: math.unit(120, "lbs"),
  5550. name: "Front",
  5551. image: {
  5552. source: "./media/characters/geta/front.svg",
  5553. extra: 1003/933,
  5554. bottom: 21/1024
  5555. }
  5556. },
  5557. paw: {
  5558. height: math.unit(0.35, "feet"),
  5559. name: "Paw",
  5560. image: {
  5561. source: "./media/characters/geta/paw.svg"
  5562. }
  5563. },
  5564. },
  5565. [
  5566. {
  5567. name: "Micro",
  5568. height: math.unit(3, "inches"),
  5569. default: true
  5570. },
  5571. {
  5572. name: "Normal",
  5573. height: math.unit(5 + 5 / 12, "feet")
  5574. }
  5575. ]
  5576. ))
  5577. characterMakers.push(() => makeCharacter(
  5578. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5579. {
  5580. front: {
  5581. height: math.unit(6, "feet"),
  5582. weight: math.unit(300, "lbs"),
  5583. name: "Front",
  5584. image: {
  5585. source: "./media/characters/tyrnn/front.svg"
  5586. }
  5587. }
  5588. },
  5589. [
  5590. {
  5591. name: "Main Height",
  5592. height: math.unit(355, "feet"),
  5593. default: true
  5594. },
  5595. {
  5596. name: "Fave. Height",
  5597. height: math.unit(2400, "feet")
  5598. }
  5599. ]
  5600. ))
  5601. characterMakers.push(() => makeCharacter(
  5602. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5603. {
  5604. front: {
  5605. height: math.unit(6, "feet"),
  5606. weight: math.unit(300, "lbs"),
  5607. name: "Front",
  5608. image: {
  5609. source: "./media/characters/appledectomy/front.svg"
  5610. }
  5611. }
  5612. },
  5613. [
  5614. {
  5615. name: "Macro",
  5616. height: math.unit(2500, "feet")
  5617. },
  5618. {
  5619. name: "Megamacro",
  5620. height: math.unit(50, "miles"),
  5621. default: true
  5622. },
  5623. {
  5624. name: "Gigamacro",
  5625. height: math.unit(5000, "miles")
  5626. },
  5627. {
  5628. name: "Teramacro",
  5629. height: math.unit(250000, "miles")
  5630. },
  5631. ]
  5632. ))
  5633. characterMakers.push(() => makeCharacter(
  5634. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5635. {
  5636. front: {
  5637. height: math.unit(6, "feet"),
  5638. weight: math.unit(200, "lbs"),
  5639. name: "Front",
  5640. image: {
  5641. source: "./media/characters/vulpes/front.svg",
  5642. extra: 573 / 543,
  5643. bottom: 0.033
  5644. }
  5645. },
  5646. side: {
  5647. height: math.unit(6, "feet"),
  5648. weight: math.unit(200, "lbs"),
  5649. name: "Side",
  5650. image: {
  5651. source: "./media/characters/vulpes/side.svg",
  5652. extra: 577 / 549,
  5653. bottom: 11 / 588
  5654. }
  5655. },
  5656. back: {
  5657. height: math.unit(6, "feet"),
  5658. weight: math.unit(200, "lbs"),
  5659. name: "Back",
  5660. image: {
  5661. source: "./media/characters/vulpes/back.svg",
  5662. extra: 573 / 549,
  5663. bottom: 20 / 593
  5664. }
  5665. },
  5666. feet: {
  5667. height: math.unit(1.276, "feet"),
  5668. name: "Feet",
  5669. image: {
  5670. source: "./media/characters/vulpes/feet.svg"
  5671. }
  5672. },
  5673. maw: {
  5674. height: math.unit(1.18, "feet"),
  5675. name: "Maw",
  5676. image: {
  5677. source: "./media/characters/vulpes/maw.svg"
  5678. }
  5679. },
  5680. },
  5681. [
  5682. {
  5683. name: "Micro",
  5684. height: math.unit(2, "inches")
  5685. },
  5686. {
  5687. name: "Normal",
  5688. height: math.unit(6.3, "feet")
  5689. },
  5690. {
  5691. name: "Macro",
  5692. height: math.unit(850, "feet")
  5693. },
  5694. {
  5695. name: "Megamacro",
  5696. height: math.unit(7500, "feet"),
  5697. default: true
  5698. },
  5699. {
  5700. name: "Gigamacro",
  5701. height: math.unit(570000, "miles")
  5702. }
  5703. ]
  5704. ))
  5705. characterMakers.push(() => makeCharacter(
  5706. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5707. {
  5708. front: {
  5709. height: math.unit(6, "feet"),
  5710. weight: math.unit(210, "lbs"),
  5711. name: "Front",
  5712. image: {
  5713. source: "./media/characters/rain-fallen/front.svg"
  5714. }
  5715. },
  5716. side: {
  5717. height: math.unit(6, "feet"),
  5718. weight: math.unit(210, "lbs"),
  5719. name: "Side",
  5720. image: {
  5721. source: "./media/characters/rain-fallen/side.svg"
  5722. }
  5723. },
  5724. back: {
  5725. height: math.unit(6, "feet"),
  5726. weight: math.unit(210, "lbs"),
  5727. name: "Back",
  5728. image: {
  5729. source: "./media/characters/rain-fallen/back.svg"
  5730. }
  5731. },
  5732. feral: {
  5733. height: math.unit(9, "feet"),
  5734. weight: math.unit(700, "lbs"),
  5735. name: "Feral",
  5736. image: {
  5737. source: "./media/characters/rain-fallen/feral.svg"
  5738. }
  5739. },
  5740. },
  5741. [
  5742. {
  5743. name: "Meddling with Mortals",
  5744. height: math.unit(8 + 8/12, "feet")
  5745. },
  5746. {
  5747. name: "Normal",
  5748. height: math.unit(5, "meter")
  5749. },
  5750. {
  5751. name: "Macro",
  5752. height: math.unit(150, "meter"),
  5753. default: true
  5754. },
  5755. {
  5756. name: "Megamacro",
  5757. height: math.unit(278e6, "meter")
  5758. },
  5759. {
  5760. name: "Gigamacro",
  5761. height: math.unit(2e9, "meter")
  5762. },
  5763. {
  5764. name: "Teramacro",
  5765. height: math.unit(8e12, "meter")
  5766. },
  5767. {
  5768. name: "Devourer",
  5769. height: math.unit(14, "zettameters")
  5770. },
  5771. {
  5772. name: "Scarlet King",
  5773. height: math.unit(18, "yottameters")
  5774. },
  5775. {
  5776. name: "Void",
  5777. height: math.unit(1e88, "yottameters")
  5778. }
  5779. ]
  5780. ))
  5781. characterMakers.push(() => makeCharacter(
  5782. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5783. {
  5784. standing: {
  5785. height: math.unit(6, "feet"),
  5786. weight: math.unit(180, "lbs"),
  5787. name: "Standing",
  5788. image: {
  5789. source: "./media/characters/zaakira/standing.svg",
  5790. extra: 1599/1504,
  5791. bottom: 39/1638
  5792. }
  5793. },
  5794. laying: {
  5795. height: math.unit(3.3, "feet"),
  5796. weight: math.unit(180, "lbs"),
  5797. name: "Laying",
  5798. image: {
  5799. source: "./media/characters/zaakira/laying.svg"
  5800. }
  5801. },
  5802. },
  5803. [
  5804. {
  5805. name: "Normal",
  5806. height: math.unit(12, "feet")
  5807. },
  5808. {
  5809. name: "Macro",
  5810. height: math.unit(279, "feet"),
  5811. default: true
  5812. }
  5813. ]
  5814. ))
  5815. characterMakers.push(() => makeCharacter(
  5816. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5817. {
  5818. femSfw: {
  5819. height: math.unit(8, "feet"),
  5820. weight: math.unit(350, "lb"),
  5821. name: "Fem",
  5822. image: {
  5823. source: "./media/characters/sigvald/fem-sfw.svg",
  5824. extra: 182 / 164,
  5825. bottom: 8.7 / 190.5
  5826. }
  5827. },
  5828. femNsfw: {
  5829. height: math.unit(8, "feet"),
  5830. weight: math.unit(350, "lb"),
  5831. name: "Fem (NSFW)",
  5832. image: {
  5833. source: "./media/characters/sigvald/fem-nsfw.svg",
  5834. extra: 182 / 164,
  5835. bottom: 8.7 / 190.5
  5836. }
  5837. },
  5838. maleNsfw: {
  5839. height: math.unit(8, "feet"),
  5840. weight: math.unit(350, "lb"),
  5841. name: "Male (NSFW)",
  5842. image: {
  5843. source: "./media/characters/sigvald/male-nsfw.svg",
  5844. extra: 182 / 164,
  5845. bottom: 8.7 / 190.5
  5846. }
  5847. },
  5848. hermNsfw: {
  5849. height: math.unit(8, "feet"),
  5850. weight: math.unit(350, "lb"),
  5851. name: "Herm (NSFW)",
  5852. image: {
  5853. source: "./media/characters/sigvald/herm-nsfw.svg",
  5854. extra: 182 / 164,
  5855. bottom: 8.7 / 190.5
  5856. }
  5857. },
  5858. dick: {
  5859. height: math.unit(2.36, "feet"),
  5860. name: "Dick",
  5861. image: {
  5862. source: "./media/characters/sigvald/dick.svg"
  5863. }
  5864. },
  5865. eye: {
  5866. height: math.unit(0.31, "feet"),
  5867. name: "Eye",
  5868. image: {
  5869. source: "./media/characters/sigvald/eye.svg"
  5870. }
  5871. },
  5872. mouth: {
  5873. height: math.unit(0.92, "feet"),
  5874. name: "Mouth",
  5875. image: {
  5876. source: "./media/characters/sigvald/mouth.svg"
  5877. }
  5878. },
  5879. paws: {
  5880. height: math.unit(2.2, "feet"),
  5881. name: "Paws",
  5882. image: {
  5883. source: "./media/characters/sigvald/paws.svg"
  5884. }
  5885. }
  5886. },
  5887. [
  5888. {
  5889. name: "Normal",
  5890. height: math.unit(8, "feet")
  5891. },
  5892. {
  5893. name: "Large",
  5894. height: math.unit(12, "feet")
  5895. },
  5896. {
  5897. name: "Larger",
  5898. height: math.unit(20, "feet")
  5899. },
  5900. {
  5901. name: "Macro",
  5902. height: math.unit(150, "feet")
  5903. },
  5904. {
  5905. name: "Macro+",
  5906. height: math.unit(200, "feet"),
  5907. default: true
  5908. },
  5909. ]
  5910. ))
  5911. characterMakers.push(() => makeCharacter(
  5912. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5913. {
  5914. side: {
  5915. height: math.unit(12, "feet"),
  5916. weight: math.unit(2000, "kg"),
  5917. name: "Side",
  5918. image: {
  5919. source: "./media/characters/scott/side.svg",
  5920. extra: 754 / 724,
  5921. bottom: 0.069
  5922. }
  5923. },
  5924. upright: {
  5925. height: math.unit(12, "feet"),
  5926. weight: math.unit(2000, "kg"),
  5927. name: "Upright",
  5928. image: {
  5929. source: "./media/characters/scott/upright.svg",
  5930. extra: 3881 / 3722,
  5931. bottom: 0.05
  5932. }
  5933. },
  5934. },
  5935. [
  5936. {
  5937. name: "Normal",
  5938. height: math.unit(12, "feet"),
  5939. default: true
  5940. },
  5941. ]
  5942. ))
  5943. characterMakers.push(() => makeCharacter(
  5944. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5945. {
  5946. side: {
  5947. height: math.unit(8, "meters"),
  5948. weight: math.unit(84755, "lbs"),
  5949. name: "Side",
  5950. image: {
  5951. source: "./media/characters/tobias/side.svg",
  5952. extra: 1474 / 1096,
  5953. bottom: 38.9 / 1513.1235
  5954. }
  5955. },
  5956. },
  5957. [
  5958. {
  5959. name: "Normal",
  5960. height: math.unit(8, "meters"),
  5961. default: true
  5962. },
  5963. ]
  5964. ))
  5965. characterMakers.push(() => makeCharacter(
  5966. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5967. {
  5968. front: {
  5969. height: math.unit(5.5, "feet"),
  5970. weight: math.unit(400, "lbs"),
  5971. name: "Front",
  5972. image: {
  5973. source: "./media/characters/kieran/front.svg",
  5974. extra: 2694 / 2364,
  5975. bottom: 217 / 2908
  5976. }
  5977. },
  5978. side: {
  5979. height: math.unit(5.5, "feet"),
  5980. weight: math.unit(400, "lbs"),
  5981. name: "Side",
  5982. image: {
  5983. source: "./media/characters/kieran/side.svg",
  5984. extra: 875 / 777,
  5985. bottom: 84.6 / 959
  5986. }
  5987. },
  5988. },
  5989. [
  5990. {
  5991. name: "Normal",
  5992. height: math.unit(5.5, "feet"),
  5993. default: true
  5994. },
  5995. ]
  5996. ))
  5997. characterMakers.push(() => makeCharacter(
  5998. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5999. {
  6000. side: {
  6001. height: math.unit(2, "meters"),
  6002. weight: math.unit(70, "kg"),
  6003. name: "Side",
  6004. image: {
  6005. source: "./media/characters/sanya/side.svg",
  6006. bottom: 0.02,
  6007. extra: 1.02
  6008. }
  6009. },
  6010. },
  6011. [
  6012. {
  6013. name: "Small",
  6014. height: math.unit(2, "meters")
  6015. },
  6016. {
  6017. name: "Normal",
  6018. height: math.unit(3, "meters")
  6019. },
  6020. {
  6021. name: "Macro",
  6022. height: math.unit(16, "meters"),
  6023. default: true
  6024. },
  6025. ]
  6026. ))
  6027. characterMakers.push(() => makeCharacter(
  6028. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  6029. {
  6030. front: {
  6031. height: math.unit(2, "meters"),
  6032. weight: math.unit(120, "kg"),
  6033. name: "Front",
  6034. image: {
  6035. source: "./media/characters/miranda/front.svg",
  6036. extra: 195 / 185,
  6037. bottom: 10.9 / 206.5
  6038. }
  6039. },
  6040. back: {
  6041. height: math.unit(2, "meters"),
  6042. weight: math.unit(120, "kg"),
  6043. name: "Back",
  6044. image: {
  6045. source: "./media/characters/miranda/back.svg",
  6046. extra: 201 / 193,
  6047. bottom: 2.3 / 203.7
  6048. }
  6049. },
  6050. },
  6051. [
  6052. {
  6053. name: "Normal",
  6054. height: math.unit(10, "feet"),
  6055. default: true
  6056. }
  6057. ]
  6058. ))
  6059. characterMakers.push(() => makeCharacter(
  6060. { name: "James", species: ["deer"], tags: ["anthro"] },
  6061. {
  6062. side: {
  6063. height: math.unit(2, "meters"),
  6064. weight: math.unit(100, "kg"),
  6065. name: "Front",
  6066. image: {
  6067. source: "./media/characters/james/front.svg",
  6068. extra: 10 / 8.5
  6069. }
  6070. },
  6071. },
  6072. [
  6073. {
  6074. name: "Normal",
  6075. height: math.unit(8.5, "feet"),
  6076. default: true
  6077. }
  6078. ]
  6079. ))
  6080. characterMakers.push(() => makeCharacter(
  6081. { name: "Heather", species: ["cow"], tags: ["taur"] },
  6082. {
  6083. side: {
  6084. height: math.unit(9.5, "feet"),
  6085. weight: math.unit(2500, "lbs"),
  6086. name: "Side",
  6087. image: {
  6088. source: "./media/characters/heather/side.svg"
  6089. }
  6090. },
  6091. },
  6092. [
  6093. {
  6094. name: "Normal",
  6095. height: math.unit(9.5, "feet"),
  6096. default: true
  6097. }
  6098. ]
  6099. ))
  6100. characterMakers.push(() => makeCharacter(
  6101. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  6102. {
  6103. side: {
  6104. height: math.unit(6.5, "feet"),
  6105. weight: math.unit(400, "lbs"),
  6106. name: "Side",
  6107. image: {
  6108. source: "./media/characters/lukas/side.svg",
  6109. extra: 7.25 / 6.5
  6110. }
  6111. },
  6112. },
  6113. [
  6114. {
  6115. name: "Normal",
  6116. height: math.unit(6.5, "feet"),
  6117. default: true
  6118. }
  6119. ]
  6120. ))
  6121. characterMakers.push(() => makeCharacter(
  6122. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  6123. {
  6124. side: {
  6125. height: math.unit(5, "feet"),
  6126. weight: math.unit(3000, "lbs"),
  6127. name: "Side",
  6128. image: {
  6129. source: "./media/characters/louise/side.svg"
  6130. }
  6131. },
  6132. },
  6133. [
  6134. {
  6135. name: "Normal",
  6136. height: math.unit(5, "feet"),
  6137. default: true
  6138. }
  6139. ]
  6140. ))
  6141. characterMakers.push(() => makeCharacter(
  6142. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6143. {
  6144. side: {
  6145. height: math.unit(6, "feet"),
  6146. weight: math.unit(150, "lbs"),
  6147. name: "Side",
  6148. image: {
  6149. source: "./media/characters/ramona/side.svg",
  6150. extra: 871/854,
  6151. bottom: 41/912
  6152. }
  6153. },
  6154. },
  6155. [
  6156. {
  6157. name: "Normal",
  6158. height: math.unit(6 + 4/12, "feet")
  6159. },
  6160. {
  6161. name: "Minimacro",
  6162. height: math.unit(5.3, "meters"),
  6163. default: true
  6164. },
  6165. {
  6166. name: "Macro",
  6167. height: math.unit(20, "stories")
  6168. },
  6169. {
  6170. name: "Macro+",
  6171. height: math.unit(50, "stories")
  6172. },
  6173. ]
  6174. ))
  6175. characterMakers.push(() => makeCharacter(
  6176. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6177. {
  6178. standing: {
  6179. height: math.unit(5.75, "feet"),
  6180. weight: math.unit(160, "lbs"),
  6181. name: "Standing",
  6182. image: {
  6183. source: "./media/characters/deerpuff/standing.svg",
  6184. extra: 682 / 624
  6185. }
  6186. },
  6187. sitting: {
  6188. height: math.unit(5.75 / 1.79, "feet"),
  6189. weight: math.unit(160, "lbs"),
  6190. name: "Sitting",
  6191. image: {
  6192. source: "./media/characters/deerpuff/sitting.svg",
  6193. bottom: 44 / 400,
  6194. extra: 1
  6195. }
  6196. },
  6197. taurLaying: {
  6198. height: math.unit(6, "feet"),
  6199. weight: math.unit(400, "lbs"),
  6200. name: "Taur (Laying)",
  6201. image: {
  6202. source: "./media/characters/deerpuff/taur-laying.svg"
  6203. }
  6204. },
  6205. },
  6206. [
  6207. {
  6208. name: "Puffball",
  6209. height: math.unit(6, "inches")
  6210. },
  6211. {
  6212. name: "Normalpuff",
  6213. height: math.unit(5.75, "feet")
  6214. },
  6215. {
  6216. name: "Macropuff",
  6217. height: math.unit(1500, "feet"),
  6218. default: true
  6219. },
  6220. {
  6221. name: "Megapuff",
  6222. height: math.unit(500, "miles")
  6223. },
  6224. {
  6225. name: "Gigapuff",
  6226. height: math.unit(250000, "miles")
  6227. },
  6228. {
  6229. name: "Omegapuff",
  6230. height: math.unit(1000, "lightyears")
  6231. },
  6232. ]
  6233. ))
  6234. characterMakers.push(() => makeCharacter(
  6235. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6236. {
  6237. stomping: {
  6238. height: math.unit(6, "feet"),
  6239. weight: math.unit(170, "lbs"),
  6240. name: "Stomping",
  6241. image: {
  6242. source: "./media/characters/vivian/stomping.svg"
  6243. }
  6244. },
  6245. sitting: {
  6246. height: math.unit(6 / 1.75, "feet"),
  6247. weight: math.unit(170, "lbs"),
  6248. name: "Sitting",
  6249. image: {
  6250. source: "./media/characters/vivian/sitting.svg",
  6251. bottom: 1 / 6.4,
  6252. extra: 1,
  6253. }
  6254. },
  6255. },
  6256. [
  6257. {
  6258. name: "Normal",
  6259. height: math.unit(7, "feet"),
  6260. default: true
  6261. },
  6262. {
  6263. name: "Macro",
  6264. height: math.unit(10, "stories")
  6265. },
  6266. {
  6267. name: "Macro+",
  6268. height: math.unit(30, "stories")
  6269. },
  6270. {
  6271. name: "Megamacro",
  6272. height: math.unit(10, "miles")
  6273. },
  6274. {
  6275. name: "Megamacro+",
  6276. height: math.unit(2750000, "meters")
  6277. },
  6278. ]
  6279. ))
  6280. characterMakers.push(() => makeCharacter(
  6281. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6282. {
  6283. front: {
  6284. height: math.unit(6, "feet"),
  6285. weight: math.unit(160, "lbs"),
  6286. name: "Front",
  6287. image: {
  6288. source: "./media/characters/prince/front.svg",
  6289. extra: 1938/1682,
  6290. bottom: 45/1983
  6291. }
  6292. },
  6293. back: {
  6294. height: math.unit(6, "feet"),
  6295. weight: math.unit(160, "lbs"),
  6296. name: "Back",
  6297. image: {
  6298. source: "./media/characters/prince/back.svg",
  6299. extra: 1955/1726,
  6300. bottom: 6/1961
  6301. }
  6302. },
  6303. },
  6304. [
  6305. {
  6306. name: "Normal",
  6307. height: math.unit(7.75, "feet"),
  6308. default: true
  6309. },
  6310. {
  6311. name: "Not cute",
  6312. height: math.unit(17, "feet")
  6313. },
  6314. {
  6315. name: "I said NOT",
  6316. height: math.unit(91, "feet")
  6317. },
  6318. {
  6319. name: "Please stop",
  6320. height: math.unit(560, "feet")
  6321. },
  6322. {
  6323. name: "What have you done",
  6324. height: math.unit(2200, "feet")
  6325. },
  6326. {
  6327. name: "Deer God",
  6328. height: math.unit(3.6, "miles")
  6329. },
  6330. ]
  6331. ))
  6332. characterMakers.push(() => makeCharacter(
  6333. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6334. {
  6335. standing: {
  6336. height: math.unit(6, "feet"),
  6337. weight: math.unit(300, "lbs"),
  6338. name: "Standing",
  6339. image: {
  6340. source: "./media/characters/psymon/standing.svg",
  6341. extra: 1888 / 1810,
  6342. bottom: 0.05
  6343. }
  6344. },
  6345. slithering: {
  6346. height: math.unit(6, "feet"),
  6347. weight: math.unit(300, "lbs"),
  6348. name: "Slithering",
  6349. image: {
  6350. source: "./media/characters/psymon/slithering.svg",
  6351. extra: 1330 / 1224
  6352. }
  6353. },
  6354. slitheringAlt: {
  6355. height: math.unit(6, "feet"),
  6356. weight: math.unit(300, "lbs"),
  6357. name: "Slithering (Alt)",
  6358. image: {
  6359. source: "./media/characters/psymon/slithering-alt.svg",
  6360. extra: 1330 / 1224
  6361. }
  6362. },
  6363. },
  6364. [
  6365. {
  6366. name: "Normal",
  6367. height: math.unit(11.25, "feet"),
  6368. default: true
  6369. },
  6370. {
  6371. name: "Large",
  6372. height: math.unit(27, "feet")
  6373. },
  6374. {
  6375. name: "Giant",
  6376. height: math.unit(87, "feet")
  6377. },
  6378. {
  6379. name: "Macro",
  6380. height: math.unit(365, "feet")
  6381. },
  6382. {
  6383. name: "Megamacro",
  6384. height: math.unit(3, "miles")
  6385. },
  6386. {
  6387. name: "World Serpent",
  6388. height: math.unit(8000, "miles")
  6389. },
  6390. ]
  6391. ))
  6392. characterMakers.push(() => makeCharacter(
  6393. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6394. {
  6395. front: {
  6396. height: math.unit(6, "feet"),
  6397. weight: math.unit(180, "lbs"),
  6398. name: "Front",
  6399. image: {
  6400. source: "./media/characters/daimos/front.svg",
  6401. extra: 4160 / 3897,
  6402. bottom: 0.021
  6403. }
  6404. }
  6405. },
  6406. [
  6407. {
  6408. name: "Normal",
  6409. height: math.unit(8, "feet"),
  6410. default: true
  6411. },
  6412. {
  6413. name: "Big Dog",
  6414. height: math.unit(22, "feet")
  6415. },
  6416. {
  6417. name: "Macro",
  6418. height: math.unit(127, "feet")
  6419. },
  6420. {
  6421. name: "Megamacro",
  6422. height: math.unit(3600, "feet")
  6423. },
  6424. ]
  6425. ))
  6426. characterMakers.push(() => makeCharacter(
  6427. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6428. {
  6429. side: {
  6430. height: math.unit(6, "feet"),
  6431. weight: math.unit(180, "lbs"),
  6432. name: "Side",
  6433. image: {
  6434. source: "./media/characters/blake/side.svg",
  6435. extra: 1212 / 1120,
  6436. bottom: 0.05
  6437. }
  6438. },
  6439. crouched: {
  6440. height: math.unit(6 * 0.57, "feet"),
  6441. weight: math.unit(180, "lbs"),
  6442. name: "Crouched",
  6443. image: {
  6444. source: "./media/characters/blake/crouched.svg",
  6445. extra: 840 / 587,
  6446. bottom: 0.04
  6447. }
  6448. },
  6449. bent: {
  6450. height: math.unit(6 * 0.75, "feet"),
  6451. weight: math.unit(180, "lbs"),
  6452. name: "Bent",
  6453. image: {
  6454. source: "./media/characters/blake/bent.svg",
  6455. extra: 592 / 544,
  6456. bottom: 0.035
  6457. }
  6458. },
  6459. },
  6460. [
  6461. {
  6462. name: "Normal",
  6463. height: math.unit(8 + 1 / 6, "feet"),
  6464. default: true
  6465. },
  6466. {
  6467. name: "Big Backside",
  6468. height: math.unit(37, "feet")
  6469. },
  6470. {
  6471. name: "Subway Shredder",
  6472. height: math.unit(72, "feet")
  6473. },
  6474. {
  6475. name: "City Carver",
  6476. height: math.unit(1675, "feet")
  6477. },
  6478. {
  6479. name: "Tectonic Tweaker",
  6480. height: math.unit(2300, "miles")
  6481. },
  6482. ]
  6483. ))
  6484. characterMakers.push(() => makeCharacter(
  6485. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6486. {
  6487. front: {
  6488. height: math.unit(6, "feet"),
  6489. weight: math.unit(180, "lbs"),
  6490. name: "Front",
  6491. image: {
  6492. source: "./media/characters/guisetto/front.svg",
  6493. extra: 856 / 817,
  6494. bottom: 0.06
  6495. }
  6496. },
  6497. airborne: {
  6498. height: math.unit(6, "feet"),
  6499. weight: math.unit(180, "lbs"),
  6500. name: "Airborne",
  6501. image: {
  6502. source: "./media/characters/guisetto/airborne.svg",
  6503. extra: 584 / 525
  6504. }
  6505. },
  6506. },
  6507. [
  6508. {
  6509. name: "Normal",
  6510. height: math.unit(10 + 11 / 12, "feet"),
  6511. default: true
  6512. },
  6513. {
  6514. name: "Large",
  6515. height: math.unit(35, "feet")
  6516. },
  6517. {
  6518. name: "Macro",
  6519. height: math.unit(475, "feet")
  6520. },
  6521. ]
  6522. ))
  6523. characterMakers.push(() => makeCharacter(
  6524. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6525. {
  6526. front: {
  6527. height: math.unit(6, "feet"),
  6528. weight: math.unit(180, "lbs"),
  6529. name: "Front",
  6530. image: {
  6531. source: "./media/characters/luxor/front.svg",
  6532. extra: 2940 / 2152
  6533. }
  6534. },
  6535. back: {
  6536. height: math.unit(6, "feet"),
  6537. weight: math.unit(180, "lbs"),
  6538. name: "Back",
  6539. image: {
  6540. source: "./media/characters/luxor/back.svg",
  6541. extra: 1083 / 960
  6542. }
  6543. },
  6544. },
  6545. [
  6546. {
  6547. name: "Normal",
  6548. height: math.unit(5 + 5 / 6, "feet"),
  6549. default: true
  6550. },
  6551. {
  6552. name: "Lamp",
  6553. height: math.unit(50, "feet")
  6554. },
  6555. {
  6556. name: "Lämp",
  6557. height: math.unit(300, "feet")
  6558. },
  6559. {
  6560. name: "The sun is a lamp",
  6561. height: math.unit(250000, "miles")
  6562. },
  6563. ]
  6564. ))
  6565. characterMakers.push(() => makeCharacter(
  6566. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6567. {
  6568. front: {
  6569. height: math.unit(6, "feet"),
  6570. weight: math.unit(50, "lbs"),
  6571. name: "Front",
  6572. image: {
  6573. source: "./media/characters/huoyan/front.svg"
  6574. }
  6575. },
  6576. side: {
  6577. height: math.unit(6, "feet"),
  6578. weight: math.unit(180, "lbs"),
  6579. name: "Side",
  6580. image: {
  6581. source: "./media/characters/huoyan/side.svg"
  6582. }
  6583. },
  6584. },
  6585. [
  6586. {
  6587. name: "Chef",
  6588. height: math.unit(9, "feet")
  6589. },
  6590. {
  6591. name: "Normal",
  6592. height: math.unit(65, "feet"),
  6593. default: true
  6594. },
  6595. {
  6596. name: "Macro",
  6597. height: math.unit(780, "feet")
  6598. },
  6599. {
  6600. name: "Flaming Mountain",
  6601. height: math.unit(4.8, "miles")
  6602. },
  6603. {
  6604. name: "Celestial",
  6605. height: math.unit(765000, "miles")
  6606. },
  6607. ]
  6608. ))
  6609. characterMakers.push(() => makeCharacter(
  6610. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6611. {
  6612. front: {
  6613. height: math.unit(5 + 3 / 4, "feet"),
  6614. weight: math.unit(120, "lbs"),
  6615. name: "Front",
  6616. image: {
  6617. source: "./media/characters/tails/front.svg"
  6618. }
  6619. }
  6620. },
  6621. [
  6622. {
  6623. name: "Normal",
  6624. height: math.unit(5 + 3 / 4, "feet"),
  6625. default: true
  6626. }
  6627. ]
  6628. ))
  6629. characterMakers.push(() => makeCharacter(
  6630. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6631. {
  6632. front: {
  6633. height: math.unit(4, "feet"),
  6634. weight: math.unit(50, "lbs"),
  6635. name: "Front",
  6636. image: {
  6637. source: "./media/characters/rainy/front.svg"
  6638. }
  6639. }
  6640. },
  6641. [
  6642. {
  6643. name: "Macro",
  6644. height: math.unit(800, "feet"),
  6645. default: true
  6646. }
  6647. ]
  6648. ))
  6649. characterMakers.push(() => makeCharacter(
  6650. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6651. {
  6652. front: {
  6653. height: math.unit(6, "feet"),
  6654. weight: math.unit(150, "lbs"),
  6655. name: "Front",
  6656. image: {
  6657. source: "./media/characters/rainier/front.svg"
  6658. }
  6659. }
  6660. },
  6661. [
  6662. {
  6663. name: "Micro",
  6664. height: math.unit(2, "mm"),
  6665. default: true
  6666. }
  6667. ]
  6668. ))
  6669. characterMakers.push(() => makeCharacter(
  6670. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6671. {
  6672. front: {
  6673. height: math.unit(8 + 4/12, "feet"),
  6674. weight: math.unit(450, "kilograms"),
  6675. volume: math.unit(5, "cups"),
  6676. name: "Front",
  6677. image: {
  6678. source: "./media/characters/andy-renard/front.svg",
  6679. extra: 1839/1726,
  6680. bottom: 134/1973
  6681. }
  6682. },
  6683. back: {
  6684. height: math.unit(8 + 4/12, "feet"),
  6685. weight: math.unit(450, "kilograms"),
  6686. volume: math.unit(5, "cups"),
  6687. name: "Back",
  6688. image: {
  6689. source: "./media/characters/andy-renard/back.svg",
  6690. extra: 1838/1710,
  6691. bottom: 105/1943
  6692. }
  6693. },
  6694. },
  6695. [
  6696. {
  6697. name: "Tall",
  6698. height: math.unit(8 + 4/12, "feet")
  6699. },
  6700. {
  6701. name: "Mini Macro",
  6702. height: math.unit(15, "feet"),
  6703. default: true
  6704. },
  6705. {
  6706. name: "Macro",
  6707. height: math.unit(100, "feet")
  6708. },
  6709. {
  6710. name: "Mega Macro",
  6711. height: math.unit(1000, "feet")
  6712. },
  6713. {
  6714. name: "Giga Macro",
  6715. height: math.unit(10, "miles")
  6716. },
  6717. {
  6718. name: "God Macro",
  6719. height: math.unit(1, "multiverse")
  6720. },
  6721. ]
  6722. ))
  6723. characterMakers.push(() => makeCharacter(
  6724. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6725. {
  6726. front: {
  6727. height: math.unit(6, "feet"),
  6728. weight: math.unit(210, "lbs"),
  6729. name: "Front",
  6730. image: {
  6731. source: "./media/characters/cimmaron/front-sfw.svg",
  6732. extra: 701 / 676,
  6733. bottom: 0.046
  6734. }
  6735. },
  6736. back: {
  6737. height: math.unit(6, "feet"),
  6738. weight: math.unit(210, "lbs"),
  6739. name: "Back",
  6740. image: {
  6741. source: "./media/characters/cimmaron/back-sfw.svg",
  6742. extra: 701 / 676,
  6743. bottom: 0.046
  6744. }
  6745. },
  6746. frontNsfw: {
  6747. height: math.unit(6, "feet"),
  6748. weight: math.unit(210, "lbs"),
  6749. name: "Front (NSFW)",
  6750. image: {
  6751. source: "./media/characters/cimmaron/front-nsfw.svg",
  6752. extra: 701 / 676,
  6753. bottom: 0.046
  6754. }
  6755. },
  6756. backNsfw: {
  6757. height: math.unit(6, "feet"),
  6758. weight: math.unit(210, "lbs"),
  6759. name: "Back (NSFW)",
  6760. image: {
  6761. source: "./media/characters/cimmaron/back-nsfw.svg",
  6762. extra: 701 / 676,
  6763. bottom: 0.046
  6764. }
  6765. },
  6766. dick: {
  6767. height: math.unit(1.714, "feet"),
  6768. name: "Dick",
  6769. image: {
  6770. source: "./media/characters/cimmaron/dick.svg"
  6771. }
  6772. },
  6773. },
  6774. [
  6775. {
  6776. name: "Normal",
  6777. height: math.unit(6, "feet"),
  6778. default: true
  6779. },
  6780. {
  6781. name: "Macro Mayor",
  6782. height: math.unit(350, "meters")
  6783. },
  6784. ]
  6785. ))
  6786. characterMakers.push(() => makeCharacter(
  6787. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6788. {
  6789. front: {
  6790. height: math.unit(6, "feet"),
  6791. weight: math.unit(200, "lbs"),
  6792. name: "Front",
  6793. image: {
  6794. source: "./media/characters/akari/front.svg",
  6795. extra: 962 / 901,
  6796. bottom: 0.04
  6797. }
  6798. }
  6799. },
  6800. [
  6801. {
  6802. name: "Micro",
  6803. height: math.unit(5, "inches"),
  6804. default: true
  6805. },
  6806. {
  6807. name: "Normal",
  6808. height: math.unit(7, "feet")
  6809. },
  6810. ]
  6811. ))
  6812. characterMakers.push(() => makeCharacter(
  6813. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6814. {
  6815. front: {
  6816. height: math.unit(6, "feet"),
  6817. weight: math.unit(140, "lbs"),
  6818. name: "Front",
  6819. image: {
  6820. source: "./media/characters/cynosura/front.svg",
  6821. extra: 437/410,
  6822. bottom: 9/446
  6823. }
  6824. },
  6825. back: {
  6826. height: math.unit(6, "feet"),
  6827. weight: math.unit(140, "lbs"),
  6828. name: "Back",
  6829. image: {
  6830. source: "./media/characters/cynosura/back.svg",
  6831. extra: 1304/1160,
  6832. bottom: 71/1375
  6833. }
  6834. },
  6835. },
  6836. [
  6837. {
  6838. name: "Micro",
  6839. height: math.unit(4, "inches")
  6840. },
  6841. {
  6842. name: "Normal",
  6843. height: math.unit(5.75, "feet"),
  6844. default: true
  6845. },
  6846. {
  6847. name: "Tall",
  6848. height: math.unit(10, "feet")
  6849. },
  6850. {
  6851. name: "Big",
  6852. height: math.unit(20, "feet")
  6853. },
  6854. {
  6855. name: "Macro",
  6856. height: math.unit(50, "feet")
  6857. },
  6858. ]
  6859. ))
  6860. characterMakers.push(() => makeCharacter(
  6861. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6862. {
  6863. front: {
  6864. height: math.unit(13 + 2/12, "feet"),
  6865. weight: math.unit(800, "kg"),
  6866. name: "Front",
  6867. image: {
  6868. source: "./media/characters/gin/front.svg",
  6869. extra: 1312/1191,
  6870. bottom: 45/1357
  6871. }
  6872. },
  6873. mouth: {
  6874. height: math.unit(2.39 * 1.8, "feet"),
  6875. name: "Mouth",
  6876. image: {
  6877. source: "./media/characters/gin/mouth.svg"
  6878. }
  6879. },
  6880. hand: {
  6881. height: math.unit(1.57 * 2.19, "feet"),
  6882. name: "Hand",
  6883. image: {
  6884. source: "./media/characters/gin/hand.svg"
  6885. }
  6886. },
  6887. foot: {
  6888. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6889. name: "Foot",
  6890. image: {
  6891. source: "./media/characters/gin/foot.svg"
  6892. }
  6893. },
  6894. sole: {
  6895. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6896. name: "Sole",
  6897. image: {
  6898. source: "./media/characters/gin/sole.svg"
  6899. }
  6900. },
  6901. },
  6902. [
  6903. {
  6904. name: "Very Small",
  6905. height: math.unit(13 + 2 / 12, "feet")
  6906. },
  6907. {
  6908. name: "Micro",
  6909. height: math.unit(600, "miles")
  6910. },
  6911. {
  6912. name: "Regular",
  6913. height: math.unit(20, "earths"),
  6914. default: true
  6915. },
  6916. {
  6917. name: "Macro",
  6918. height: math.unit(2.2, "solarradii")
  6919. },
  6920. {
  6921. name: "Teramacro",
  6922. height: math.unit(1.2, "galaxies")
  6923. },
  6924. {
  6925. name: "Omegamacro",
  6926. height: math.unit(200, "universes")
  6927. },
  6928. ]
  6929. ))
  6930. characterMakers.push(() => makeCharacter(
  6931. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6932. {
  6933. front: {
  6934. height: math.unit(6 + 1 / 6, "feet"),
  6935. weight: math.unit(178, "lbs"),
  6936. name: "Front",
  6937. image: {
  6938. source: "./media/characters/guy/front.svg"
  6939. }
  6940. }
  6941. },
  6942. [
  6943. {
  6944. name: "Normal",
  6945. height: math.unit(6 + 1 / 6, "feet"),
  6946. default: true
  6947. },
  6948. {
  6949. name: "Large",
  6950. height: math.unit(25 + 7 / 12, "feet")
  6951. },
  6952. {
  6953. name: "Macro",
  6954. height: math.unit(60 + 9 / 12, "feet")
  6955. },
  6956. {
  6957. name: "Macro+",
  6958. height: math.unit(246, "feet")
  6959. },
  6960. {
  6961. name: "Macro++",
  6962. height: math.unit(878, "feet")
  6963. }
  6964. ]
  6965. ))
  6966. characterMakers.push(() => makeCharacter(
  6967. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6968. {
  6969. front: {
  6970. height: math.unit(9, "feet"),
  6971. weight: math.unit(800, "lbs"),
  6972. name: "Front",
  6973. image: {
  6974. source: "./media/characters/tiberius/front.svg",
  6975. extra: 2295 / 2071
  6976. }
  6977. },
  6978. back: {
  6979. height: math.unit(9, "feet"),
  6980. weight: math.unit(800, "lbs"),
  6981. name: "Back",
  6982. image: {
  6983. source: "./media/characters/tiberius/back.svg",
  6984. extra: 2373 / 2160
  6985. }
  6986. },
  6987. },
  6988. [
  6989. {
  6990. name: "Normal",
  6991. height: math.unit(9, "feet"),
  6992. default: true
  6993. }
  6994. ]
  6995. ))
  6996. characterMakers.push(() => makeCharacter(
  6997. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6998. {
  6999. front: {
  7000. height: math.unit(6, "feet"),
  7001. weight: math.unit(600, "lbs"),
  7002. name: "Front",
  7003. image: {
  7004. source: "./media/characters/surgo/front.svg",
  7005. extra: 3591 / 2227
  7006. }
  7007. },
  7008. back: {
  7009. height: math.unit(6, "feet"),
  7010. weight: math.unit(600, "lbs"),
  7011. name: "Back",
  7012. image: {
  7013. source: "./media/characters/surgo/back.svg",
  7014. extra: 3557 / 2228
  7015. }
  7016. },
  7017. laying: {
  7018. height: math.unit(6 * 0.85, "feet"),
  7019. weight: math.unit(600, "lbs"),
  7020. name: "Laying",
  7021. image: {
  7022. source: "./media/characters/surgo/laying.svg"
  7023. }
  7024. },
  7025. },
  7026. [
  7027. {
  7028. name: "Normal",
  7029. height: math.unit(6, "feet"),
  7030. default: true
  7031. }
  7032. ]
  7033. ))
  7034. characterMakers.push(() => makeCharacter(
  7035. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  7036. {
  7037. side: {
  7038. height: math.unit(6, "feet"),
  7039. weight: math.unit(150, "lbs"),
  7040. name: "Side",
  7041. image: {
  7042. source: "./media/characters/cibus/side.svg",
  7043. extra: 800 / 400
  7044. }
  7045. },
  7046. },
  7047. [
  7048. {
  7049. name: "Normal",
  7050. height: math.unit(6, "feet"),
  7051. default: true
  7052. }
  7053. ]
  7054. ))
  7055. characterMakers.push(() => makeCharacter(
  7056. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  7057. {
  7058. front: {
  7059. height: math.unit(6, "feet"),
  7060. weight: math.unit(240, "lbs"),
  7061. name: "Front",
  7062. image: {
  7063. source: "./media/characters/nibbles/front.svg"
  7064. }
  7065. },
  7066. side: {
  7067. height: math.unit(6, "feet"),
  7068. weight: math.unit(240, "lbs"),
  7069. name: "Side",
  7070. image: {
  7071. source: "./media/characters/nibbles/side.svg"
  7072. }
  7073. },
  7074. },
  7075. [
  7076. {
  7077. name: "Normal",
  7078. height: math.unit(9, "feet"),
  7079. default: true
  7080. }
  7081. ]
  7082. ))
  7083. characterMakers.push(() => makeCharacter(
  7084. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  7085. {
  7086. side: {
  7087. height: math.unit(5 + 1 / 6, "feet"),
  7088. weight: math.unit(130, "lbs"),
  7089. name: "Side",
  7090. image: {
  7091. source: "./media/characters/rikky/side.svg",
  7092. extra: 851 / 801
  7093. }
  7094. },
  7095. },
  7096. [
  7097. {
  7098. name: "Normal",
  7099. height: math.unit(5 + 1 / 6, "feet")
  7100. },
  7101. {
  7102. name: "Macro",
  7103. height: math.unit(152, "feet"),
  7104. default: true
  7105. },
  7106. {
  7107. name: "Megamacro",
  7108. height: math.unit(7, "miles")
  7109. }
  7110. ]
  7111. ))
  7112. characterMakers.push(() => makeCharacter(
  7113. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  7114. {
  7115. side: {
  7116. height: math.unit(370, "cm"),
  7117. weight: math.unit(350, "lbs"),
  7118. name: "Side",
  7119. image: {
  7120. source: "./media/characters/malfressa/side.svg"
  7121. }
  7122. },
  7123. walking: {
  7124. height: math.unit(370, "cm"),
  7125. weight: math.unit(350, "lbs"),
  7126. name: "Walking",
  7127. image: {
  7128. source: "./media/characters/malfressa/walking.svg"
  7129. }
  7130. },
  7131. feral: {
  7132. height: math.unit(2500, "cm"),
  7133. weight: math.unit(100000, "lbs"),
  7134. name: "Feral",
  7135. image: {
  7136. source: "./media/characters/malfressa/feral.svg",
  7137. extra: 2108 / 837,
  7138. bottom: 0.02
  7139. }
  7140. },
  7141. },
  7142. [
  7143. {
  7144. name: "Normal",
  7145. height: math.unit(370, "cm")
  7146. },
  7147. {
  7148. name: "Macro",
  7149. height: math.unit(300, "meters"),
  7150. default: true
  7151. }
  7152. ]
  7153. ))
  7154. characterMakers.push(() => makeCharacter(
  7155. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7156. {
  7157. front: {
  7158. height: math.unit(6, "feet"),
  7159. weight: math.unit(60, "kg"),
  7160. name: "Front",
  7161. image: {
  7162. source: "./media/characters/jaro/front.svg",
  7163. extra: 845/817,
  7164. bottom: 45/890
  7165. }
  7166. },
  7167. back: {
  7168. height: math.unit(6, "feet"),
  7169. weight: math.unit(60, "kg"),
  7170. name: "Back",
  7171. image: {
  7172. source: "./media/characters/jaro/back.svg",
  7173. extra: 847/817,
  7174. bottom: 34/881
  7175. }
  7176. },
  7177. },
  7178. [
  7179. {
  7180. name: "Micro",
  7181. height: math.unit(7, "inches")
  7182. },
  7183. {
  7184. name: "Normal",
  7185. height: math.unit(5.5, "feet"),
  7186. default: true
  7187. },
  7188. {
  7189. name: "Minimacro",
  7190. height: math.unit(20, "feet")
  7191. },
  7192. {
  7193. name: "Macro",
  7194. height: math.unit(200, "meters")
  7195. }
  7196. ]
  7197. ))
  7198. characterMakers.push(() => makeCharacter(
  7199. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7200. {
  7201. front: {
  7202. height: math.unit(6, "feet"),
  7203. weight: math.unit(195, "lb"),
  7204. name: "Front",
  7205. image: {
  7206. source: "./media/characters/rogue/front.svg"
  7207. }
  7208. },
  7209. },
  7210. [
  7211. {
  7212. name: "Macro",
  7213. height: math.unit(90, "feet"),
  7214. default: true
  7215. },
  7216. ]
  7217. ))
  7218. characterMakers.push(() => makeCharacter(
  7219. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7220. {
  7221. standing: {
  7222. height: math.unit(5 + 8 / 12, "feet"),
  7223. weight: math.unit(140, "lb"),
  7224. name: "Standing",
  7225. image: {
  7226. source: "./media/characters/piper/standing.svg",
  7227. extra: 1440/1284,
  7228. bottom: 66/1506
  7229. }
  7230. },
  7231. running: {
  7232. height: math.unit(5 + 8 / 12, "feet"),
  7233. weight: math.unit(140, "lb"),
  7234. name: "Running",
  7235. image: {
  7236. source: "./media/characters/piper/running.svg",
  7237. extra: 3948/3655,
  7238. bottom: 0/3948
  7239. }
  7240. },
  7241. sole: {
  7242. height: math.unit(0.81, "feet"),
  7243. weight: math.unit(2, "kg"),
  7244. name: "Sole",
  7245. image: {
  7246. source: "./media/characters/piper/sole.svg"
  7247. }
  7248. },
  7249. nipple: {
  7250. height: math.unit(0.25, "feet"),
  7251. weight: math.unit(1.5, "lb"),
  7252. name: "Nipple",
  7253. image: {
  7254. source: "./media/characters/piper/nipple.svg"
  7255. }
  7256. },
  7257. head: {
  7258. height: math.unit(1.1, "feet"),
  7259. name: "Head",
  7260. image: {
  7261. source: "./media/characters/piper/head.svg"
  7262. }
  7263. },
  7264. },
  7265. [
  7266. {
  7267. name: "Micro",
  7268. height: math.unit(2, "inches")
  7269. },
  7270. {
  7271. name: "Normal",
  7272. height: math.unit(5 + 8 / 12, "feet")
  7273. },
  7274. {
  7275. name: "Macro",
  7276. height: math.unit(250, "feet"),
  7277. default: true
  7278. },
  7279. {
  7280. name: "Megamacro",
  7281. height: math.unit(7, "miles")
  7282. },
  7283. ]
  7284. ))
  7285. characterMakers.push(() => makeCharacter(
  7286. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7287. {
  7288. front: {
  7289. height: math.unit(6, "feet"),
  7290. weight: math.unit(220, "lb"),
  7291. name: "Front",
  7292. image: {
  7293. source: "./media/characters/gemini/front.svg"
  7294. }
  7295. },
  7296. back: {
  7297. height: math.unit(6, "feet"),
  7298. weight: math.unit(220, "lb"),
  7299. name: "Back",
  7300. image: {
  7301. source: "./media/characters/gemini/back.svg"
  7302. }
  7303. },
  7304. kneeling: {
  7305. height: math.unit(6 / 1.5, "feet"),
  7306. weight: math.unit(220, "lb"),
  7307. name: "Kneeling",
  7308. image: {
  7309. source: "./media/characters/gemini/kneeling.svg",
  7310. bottom: 0.02
  7311. }
  7312. },
  7313. },
  7314. [
  7315. {
  7316. name: "Macro",
  7317. height: math.unit(300, "meters"),
  7318. default: true
  7319. },
  7320. {
  7321. name: "Megamacro",
  7322. height: math.unit(6900, "meters")
  7323. },
  7324. ]
  7325. ))
  7326. characterMakers.push(() => makeCharacter(
  7327. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7328. {
  7329. anthro: {
  7330. height: math.unit(2.35, "meters"),
  7331. weight: math.unit(73, "kg"),
  7332. name: "Anthro",
  7333. image: {
  7334. source: "./media/characters/alicia/anthro.svg",
  7335. extra: 2571 / 2385,
  7336. bottom: 75 / 2648
  7337. }
  7338. },
  7339. paw: {
  7340. height: math.unit(1.32, "feet"),
  7341. name: "Paw",
  7342. image: {
  7343. source: "./media/characters/alicia/paw.svg"
  7344. }
  7345. },
  7346. feral: {
  7347. height: math.unit(1.69, "meters"),
  7348. weight: math.unit(73, "kg"),
  7349. name: "Feral",
  7350. image: {
  7351. source: "./media/characters/alicia/feral.svg",
  7352. extra: 2123 / 1715,
  7353. bottom: 222 / 2349
  7354. }
  7355. },
  7356. },
  7357. [
  7358. {
  7359. name: "Normal",
  7360. height: math.unit(2.35, "meters")
  7361. },
  7362. {
  7363. name: "Macro",
  7364. height: math.unit(60, "meters"),
  7365. default: true
  7366. },
  7367. {
  7368. name: "Megamacro",
  7369. height: math.unit(10000, "kilometers")
  7370. },
  7371. ]
  7372. ))
  7373. characterMakers.push(() => makeCharacter(
  7374. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7375. {
  7376. front: {
  7377. height: math.unit(7, "feet"),
  7378. weight: math.unit(250, "lbs"),
  7379. name: "Front",
  7380. image: {
  7381. source: "./media/characters/archy/front.svg"
  7382. }
  7383. }
  7384. },
  7385. [
  7386. {
  7387. name: "Micro",
  7388. height: math.unit(1, "inch")
  7389. },
  7390. {
  7391. name: "Shorty",
  7392. height: math.unit(5, "feet")
  7393. },
  7394. {
  7395. name: "Normal",
  7396. height: math.unit(7, "feet")
  7397. },
  7398. {
  7399. name: "Macro",
  7400. height: math.unit(600, "meters"),
  7401. default: true
  7402. },
  7403. {
  7404. name: "Megamacro",
  7405. height: math.unit(1, "mile")
  7406. },
  7407. ]
  7408. ))
  7409. characterMakers.push(() => makeCharacter(
  7410. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7411. {
  7412. front: {
  7413. height: math.unit(1.65, "meters"),
  7414. weight: math.unit(74, "kg"),
  7415. name: "Front",
  7416. image: {
  7417. source: "./media/characters/berri/front.svg",
  7418. extra: 857 / 837,
  7419. bottom: 18 / 877
  7420. }
  7421. },
  7422. bum: {
  7423. height: math.unit(1.46, "feet"),
  7424. name: "Bum",
  7425. image: {
  7426. source: "./media/characters/berri/bum.svg"
  7427. }
  7428. },
  7429. mouth: {
  7430. height: math.unit(0.44, "feet"),
  7431. name: "Mouth",
  7432. image: {
  7433. source: "./media/characters/berri/mouth.svg"
  7434. }
  7435. },
  7436. paw: {
  7437. height: math.unit(0.826, "feet"),
  7438. name: "Paw",
  7439. image: {
  7440. source: "./media/characters/berri/paw.svg"
  7441. }
  7442. },
  7443. },
  7444. [
  7445. {
  7446. name: "Normal",
  7447. height: math.unit(1.65, "meters")
  7448. },
  7449. {
  7450. name: "Macro",
  7451. height: math.unit(60, "m"),
  7452. default: true
  7453. },
  7454. {
  7455. name: "Megamacro",
  7456. height: math.unit(9.213, "km")
  7457. },
  7458. {
  7459. name: "Planet Eater",
  7460. height: math.unit(489, "megameters")
  7461. },
  7462. {
  7463. name: "Teramacro",
  7464. height: math.unit(2471635000000, "meters")
  7465. },
  7466. {
  7467. name: "Examacro",
  7468. height: math.unit(8.0624e+26, "meters")
  7469. }
  7470. ]
  7471. ))
  7472. characterMakers.push(() => makeCharacter(
  7473. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7474. {
  7475. front: {
  7476. height: math.unit(1.72, "meters"),
  7477. weight: math.unit(68, "kg"),
  7478. name: "Front",
  7479. image: {
  7480. source: "./media/characters/lexi/front.svg"
  7481. }
  7482. }
  7483. },
  7484. [
  7485. {
  7486. name: "Very Smol",
  7487. height: math.unit(10, "mm")
  7488. },
  7489. {
  7490. name: "Micro",
  7491. height: math.unit(6.8, "cm"),
  7492. default: true
  7493. },
  7494. {
  7495. name: "Normal",
  7496. height: math.unit(1.72, "m")
  7497. }
  7498. ]
  7499. ))
  7500. characterMakers.push(() => makeCharacter(
  7501. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7502. {
  7503. front: {
  7504. height: math.unit(1.69, "meters"),
  7505. weight: math.unit(68, "kg"),
  7506. name: "Front",
  7507. image: {
  7508. source: "./media/characters/martin/front.svg",
  7509. extra: 596 / 581
  7510. }
  7511. }
  7512. },
  7513. [
  7514. {
  7515. name: "Micro",
  7516. height: math.unit(6.85, "cm"),
  7517. default: true
  7518. },
  7519. {
  7520. name: "Normal",
  7521. height: math.unit(1.69, "m")
  7522. }
  7523. ]
  7524. ))
  7525. characterMakers.push(() => makeCharacter(
  7526. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7527. {
  7528. front: {
  7529. height: math.unit(1.69, "meters"),
  7530. weight: math.unit(68, "kg"),
  7531. name: "Front",
  7532. image: {
  7533. source: "./media/characters/juno/front.svg"
  7534. }
  7535. }
  7536. },
  7537. [
  7538. {
  7539. name: "Micro",
  7540. height: math.unit(7, "cm")
  7541. },
  7542. {
  7543. name: "Normal",
  7544. height: math.unit(1.89, "m")
  7545. },
  7546. {
  7547. name: "Macro",
  7548. height: math.unit(353, "meters"),
  7549. default: true
  7550. }
  7551. ]
  7552. ))
  7553. characterMakers.push(() => makeCharacter(
  7554. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7555. {
  7556. front: {
  7557. height: math.unit(1.93, "meters"),
  7558. weight: math.unit(83, "kg"),
  7559. name: "Front",
  7560. image: {
  7561. source: "./media/characters/samantha/front.svg"
  7562. }
  7563. },
  7564. frontClothed: {
  7565. height: math.unit(1.93, "meters"),
  7566. weight: math.unit(83, "kg"),
  7567. name: "Front (Clothed)",
  7568. image: {
  7569. source: "./media/characters/samantha/front-clothed.svg"
  7570. }
  7571. },
  7572. back: {
  7573. height: math.unit(1.93, "meters"),
  7574. weight: math.unit(83, "kg"),
  7575. name: "Back",
  7576. image: {
  7577. source: "./media/characters/samantha/back.svg"
  7578. }
  7579. },
  7580. },
  7581. [
  7582. {
  7583. name: "Normal",
  7584. height: math.unit(1.93, "m")
  7585. },
  7586. {
  7587. name: "Macro",
  7588. height: math.unit(74, "meters"),
  7589. default: true
  7590. },
  7591. {
  7592. name: "Macro+",
  7593. height: math.unit(223, "meters"),
  7594. },
  7595. {
  7596. name: "Megamacro",
  7597. height: math.unit(8381, "meters"),
  7598. },
  7599. {
  7600. name: "Megamacro+",
  7601. height: math.unit(12000, "kilometers")
  7602. },
  7603. ]
  7604. ))
  7605. characterMakers.push(() => makeCharacter(
  7606. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7607. {
  7608. front: {
  7609. height: math.unit(1.92, "meters"),
  7610. weight: math.unit(80, "kg"),
  7611. name: "Front",
  7612. image: {
  7613. source: "./media/characters/dr-clay/front.svg"
  7614. }
  7615. },
  7616. frontClothed: {
  7617. height: math.unit(1.92, "meters"),
  7618. weight: math.unit(80, "kg"),
  7619. name: "Front (Clothed)",
  7620. image: {
  7621. source: "./media/characters/dr-clay/front-clothed.svg"
  7622. }
  7623. }
  7624. },
  7625. [
  7626. {
  7627. name: "Normal",
  7628. height: math.unit(1.92, "m")
  7629. },
  7630. {
  7631. name: "Macro",
  7632. height: math.unit(214, "meters"),
  7633. default: true
  7634. },
  7635. {
  7636. name: "Macro+",
  7637. height: math.unit(12.237, "meters"),
  7638. },
  7639. {
  7640. name: "Megamacro",
  7641. height: math.unit(557, "megameters"),
  7642. },
  7643. {
  7644. name: "Unimaginable",
  7645. height: math.unit(120e9, "lightyears")
  7646. },
  7647. ]
  7648. ))
  7649. characterMakers.push(() => makeCharacter(
  7650. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7651. {
  7652. front: {
  7653. height: math.unit(2, "meters"),
  7654. weight: math.unit(80, "kg"),
  7655. name: "Front",
  7656. image: {
  7657. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7658. }
  7659. }
  7660. },
  7661. [
  7662. {
  7663. name: "Teramacro",
  7664. height: math.unit(500000, "lightyears"),
  7665. default: true
  7666. },
  7667. ]
  7668. ))
  7669. characterMakers.push(() => makeCharacter(
  7670. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7671. {
  7672. crux: {
  7673. height: math.unit(2, "meters"),
  7674. weight: math.unit(150, "kg"),
  7675. name: "Crux",
  7676. image: {
  7677. source: "./media/characters/vemus/crux.svg",
  7678. extra: 1074/936,
  7679. bottom: 23/1097
  7680. }
  7681. },
  7682. skunkTanuki: {
  7683. height: math.unit(2, "meters"),
  7684. weight: math.unit(150, "kg"),
  7685. name: "Skunk-Tanuki",
  7686. image: {
  7687. source: "./media/characters/vemus/skunk-tanuki.svg",
  7688. extra: 926/893,
  7689. bottom: 20/946
  7690. }
  7691. },
  7692. },
  7693. [
  7694. {
  7695. name: "Normal",
  7696. height: math.unit(4, "meters"),
  7697. default: true
  7698. },
  7699. {
  7700. name: "Big",
  7701. height: math.unit(8, "meters")
  7702. },
  7703. {
  7704. name: "Macro",
  7705. height: math.unit(100, "meters")
  7706. },
  7707. {
  7708. name: "Macro+",
  7709. height: math.unit(1500, "meters")
  7710. },
  7711. {
  7712. name: "Stellar",
  7713. height: math.unit(14e8, "meters")
  7714. },
  7715. ]
  7716. ))
  7717. characterMakers.push(() => makeCharacter(
  7718. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7719. {
  7720. front: {
  7721. height: math.unit(2, "meters"),
  7722. weight: math.unit(70, "kg"),
  7723. name: "Front",
  7724. image: {
  7725. source: "./media/characters/beherit/front.svg",
  7726. extra: 1234/1109,
  7727. bottom: 55/1289
  7728. }
  7729. }
  7730. },
  7731. [
  7732. {
  7733. name: "Normal",
  7734. height: math.unit(6, "feet")
  7735. },
  7736. {
  7737. name: "Lorg",
  7738. height: math.unit(25, "feet"),
  7739. default: true
  7740. },
  7741. {
  7742. name: "Lorger",
  7743. height: math.unit(75, "feet")
  7744. },
  7745. {
  7746. name: "Macro",
  7747. height: math.unit(200, "meters")
  7748. },
  7749. ]
  7750. ))
  7751. characterMakers.push(() => makeCharacter(
  7752. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7753. {
  7754. front: {
  7755. height: math.unit(2, "meters"),
  7756. weight: math.unit(150, "kg"),
  7757. name: "Front",
  7758. image: {
  7759. source: "./media/characters/everett/front.svg",
  7760. extra: 1017/866,
  7761. bottom: 86/1103
  7762. }
  7763. },
  7764. paw: {
  7765. height: math.unit(2 / 3.6, "meters"),
  7766. name: "Paw",
  7767. image: {
  7768. source: "./media/characters/everett/paw.svg"
  7769. }
  7770. },
  7771. },
  7772. [
  7773. {
  7774. name: "Normal",
  7775. height: math.unit(15, "feet"),
  7776. default: true
  7777. },
  7778. {
  7779. name: "Lorg",
  7780. height: math.unit(70, "feet"),
  7781. default: true
  7782. },
  7783. {
  7784. name: "Lorger",
  7785. height: math.unit(250, "feet")
  7786. },
  7787. {
  7788. name: "Macro",
  7789. height: math.unit(500, "meters")
  7790. },
  7791. ]
  7792. ))
  7793. characterMakers.push(() => makeCharacter(
  7794. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7795. {
  7796. front: {
  7797. height: math.unit(2, "meters"),
  7798. weight: math.unit(86, "kg"),
  7799. name: "Front",
  7800. image: {
  7801. source: "./media/characters/rose/front.svg",
  7802. extra: 1785/1636,
  7803. bottom: 30/1815
  7804. },
  7805. form: "liom",
  7806. default: true
  7807. },
  7808. frontSporty: {
  7809. height: math.unit(2, "meters"),
  7810. weight: math.unit(86, "kg"),
  7811. name: "Front (Sporty)",
  7812. image: {
  7813. source: "./media/characters/rose/front-sporty.svg",
  7814. extra: 350/335,
  7815. bottom: 10/360
  7816. },
  7817. form: "liom"
  7818. },
  7819. frontAlt: {
  7820. height: math.unit(1.6, "meters"),
  7821. weight: math.unit(86, "kg"),
  7822. name: "Front (Alt)",
  7823. image: {
  7824. source: "./media/characters/rose/front-alt.svg",
  7825. extra: 299/283,
  7826. bottom: 3/302
  7827. },
  7828. form: "liom"
  7829. },
  7830. plush: {
  7831. height: math.unit(2, "meters"),
  7832. weight: math.unit(86/3, "kg"),
  7833. name: "Plush",
  7834. image: {
  7835. source: "./media/characters/rose/plush.svg",
  7836. extra: 361/337,
  7837. bottom: 11/372
  7838. },
  7839. form: "plush",
  7840. default: true
  7841. },
  7842. faeStanding: {
  7843. height: math.unit(10, "cm"),
  7844. weight: math.unit(10, "grams"),
  7845. name: "Standing",
  7846. image: {
  7847. source: "./media/characters/rose/fae-standing.svg",
  7848. extra: 1189/1060,
  7849. bottom: 27/1216
  7850. },
  7851. form: "fae",
  7852. default: true
  7853. },
  7854. faeSitting: {
  7855. height: math.unit(5, "cm"),
  7856. weight: math.unit(10, "grams"),
  7857. name: "Sitting",
  7858. image: {
  7859. source: "./media/characters/rose/fae-sitting.svg",
  7860. extra: 737/577,
  7861. bottom: 356/1093
  7862. },
  7863. form: "fae"
  7864. },
  7865. faePaw: {
  7866. height: math.unit(1.35, "cm"),
  7867. name: "Paw",
  7868. image: {
  7869. source: "./media/characters/rose/fae-paw.svg"
  7870. },
  7871. form: "fae"
  7872. },
  7873. },
  7874. [
  7875. {
  7876. name: "True Micro",
  7877. height: math.unit(9, "cm"),
  7878. form: "liom"
  7879. },
  7880. {
  7881. name: "Micro",
  7882. height: math.unit(16, "cm"),
  7883. form: "liom"
  7884. },
  7885. {
  7886. name: "Normal",
  7887. height: math.unit(1.85, "meters"),
  7888. default: true,
  7889. form: "liom"
  7890. },
  7891. {
  7892. name: "Mini-Macro",
  7893. height: math.unit(5, "meters"),
  7894. form: "liom"
  7895. },
  7896. {
  7897. name: "Macro",
  7898. height: math.unit(15, "meters"),
  7899. form: "liom"
  7900. },
  7901. {
  7902. name: "True Macro",
  7903. height: math.unit(40, "meters"),
  7904. form: "liom"
  7905. },
  7906. {
  7907. name: "City Scale",
  7908. height: math.unit(1, "km"),
  7909. form: "liom"
  7910. },
  7911. {
  7912. name: "Plushie",
  7913. height: math.unit(9, "cm"),
  7914. form: "plush",
  7915. default: true
  7916. },
  7917. {
  7918. name: "Fae",
  7919. height: math.unit(10, "cm"),
  7920. form: "fae",
  7921. default: true
  7922. },
  7923. ],
  7924. {
  7925. "liom": {
  7926. name: "Liom"
  7927. },
  7928. "plush": {
  7929. name: "Plush"
  7930. },
  7931. "fae": {
  7932. name: "Fae Fox",
  7933. default: true
  7934. }
  7935. }
  7936. ))
  7937. characterMakers.push(() => makeCharacter(
  7938. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7939. {
  7940. front: {
  7941. height: math.unit(2, "meters"),
  7942. weight: math.unit(350, "lbs"),
  7943. name: "Front",
  7944. image: {
  7945. source: "./media/characters/regal/front.svg"
  7946. }
  7947. },
  7948. back: {
  7949. height: math.unit(2, "meters"),
  7950. weight: math.unit(350, "lbs"),
  7951. name: "Back",
  7952. image: {
  7953. source: "./media/characters/regal/back.svg"
  7954. }
  7955. },
  7956. },
  7957. [
  7958. {
  7959. name: "Macro",
  7960. height: math.unit(350, "feet"),
  7961. default: true
  7962. }
  7963. ]
  7964. ))
  7965. characterMakers.push(() => makeCharacter(
  7966. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7967. {
  7968. front: {
  7969. height: math.unit(4 + 11 / 12, "feet"),
  7970. weight: math.unit(100, "lbs"),
  7971. name: "Front",
  7972. image: {
  7973. source: "./media/characters/opal/front.svg"
  7974. }
  7975. },
  7976. frontAlt: {
  7977. height: math.unit(4 + 11 / 12, "feet"),
  7978. weight: math.unit(100, "lbs"),
  7979. name: "Front (Alt)",
  7980. image: {
  7981. source: "./media/characters/opal/front-alt.svg"
  7982. }
  7983. },
  7984. },
  7985. [
  7986. {
  7987. name: "Small",
  7988. height: math.unit(4 + 11 / 12, "feet")
  7989. },
  7990. {
  7991. name: "Normal",
  7992. height: math.unit(20, "feet"),
  7993. default: true
  7994. },
  7995. {
  7996. name: "Macro",
  7997. height: math.unit(120, "feet")
  7998. },
  7999. {
  8000. name: "Megamacro",
  8001. height: math.unit(80, "miles")
  8002. },
  8003. {
  8004. name: "True Size",
  8005. height: math.unit(100000, "lightyears")
  8006. },
  8007. ]
  8008. ))
  8009. characterMakers.push(() => makeCharacter(
  8010. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  8011. {
  8012. front: {
  8013. height: math.unit(6, "feet"),
  8014. weight: math.unit(200, "lbs"),
  8015. name: "Front",
  8016. image: {
  8017. source: "./media/characters/vector-wuff/front.svg"
  8018. }
  8019. }
  8020. },
  8021. [
  8022. {
  8023. name: "Normal",
  8024. height: math.unit(2.8, "meters")
  8025. },
  8026. {
  8027. name: "Macro",
  8028. height: math.unit(450, "meters"),
  8029. default: true
  8030. },
  8031. {
  8032. name: "Megamacro",
  8033. height: math.unit(15, "kilometers")
  8034. }
  8035. ]
  8036. ))
  8037. characterMakers.push(() => makeCharacter(
  8038. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  8039. {
  8040. front: {
  8041. height: math.unit(6, "feet"),
  8042. weight: math.unit(256, "lbs"),
  8043. name: "Front",
  8044. image: {
  8045. source: "./media/characters/dannik/front.svg"
  8046. }
  8047. }
  8048. },
  8049. [
  8050. {
  8051. name: "Macro",
  8052. height: math.unit(69.57, "meters"),
  8053. default: true
  8054. },
  8055. ]
  8056. ))
  8057. characterMakers.push(() => makeCharacter(
  8058. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  8059. {
  8060. front: {
  8061. height: math.unit(6, "feet"),
  8062. weight: math.unit(120, "lbs"),
  8063. name: "Front",
  8064. image: {
  8065. source: "./media/characters/azura-saharah/front.svg"
  8066. }
  8067. },
  8068. back: {
  8069. height: math.unit(6, "feet"),
  8070. weight: math.unit(120, "lbs"),
  8071. name: "Back",
  8072. image: {
  8073. source: "./media/characters/azura-saharah/back.svg"
  8074. }
  8075. },
  8076. },
  8077. [
  8078. {
  8079. name: "Macro",
  8080. height: math.unit(100, "feet"),
  8081. default: true
  8082. },
  8083. ]
  8084. ))
  8085. characterMakers.push(() => makeCharacter(
  8086. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  8087. {
  8088. side: {
  8089. height: math.unit(5 + 4 / 12, "feet"),
  8090. weight: math.unit(163, "lbs"),
  8091. name: "Side",
  8092. image: {
  8093. source: "./media/characters/kennedy/side.svg"
  8094. }
  8095. }
  8096. },
  8097. [
  8098. {
  8099. name: "Standard Doggo",
  8100. height: math.unit(5 + 4 / 12, "feet")
  8101. },
  8102. {
  8103. name: "Big Doggo",
  8104. height: math.unit(25 + 3 / 12, "feet"),
  8105. default: true
  8106. },
  8107. ]
  8108. ))
  8109. characterMakers.push(() => makeCharacter(
  8110. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  8111. {
  8112. front: {
  8113. height: math.unit(5 + 5/12, "feet"),
  8114. weight: math.unit(100, "lbs"),
  8115. name: "Front",
  8116. image: {
  8117. source: "./media/characters/odios-de-lunar/front.svg",
  8118. extra: 1468/1323,
  8119. bottom: 22/1490
  8120. }
  8121. }
  8122. },
  8123. [
  8124. {
  8125. name: "Micro",
  8126. height: math.unit(3, "inches")
  8127. },
  8128. {
  8129. name: "Normal",
  8130. height: math.unit(5.5, "feet"),
  8131. default: true
  8132. },
  8133. {
  8134. name: "Macro",
  8135. height: math.unit(100, "feet")
  8136. },
  8137. ]
  8138. ))
  8139. characterMakers.push(() => makeCharacter(
  8140. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8141. {
  8142. back: {
  8143. height: math.unit(6, "feet"),
  8144. weight: math.unit(220, "lbs"),
  8145. name: "Back",
  8146. image: {
  8147. source: "./media/characters/mandake/back.svg"
  8148. }
  8149. }
  8150. },
  8151. [
  8152. {
  8153. name: "Normal",
  8154. height: math.unit(7, "feet"),
  8155. default: true
  8156. },
  8157. {
  8158. name: "Macro",
  8159. height: math.unit(78, "feet")
  8160. },
  8161. {
  8162. name: "Macro+",
  8163. height: math.unit(300, "meters")
  8164. },
  8165. {
  8166. name: "Macro++",
  8167. height: math.unit(2400, "feet")
  8168. },
  8169. {
  8170. name: "Megamacro",
  8171. height: math.unit(5167, "meters")
  8172. },
  8173. {
  8174. name: "Gigamacro",
  8175. height: math.unit(41769, "miles")
  8176. },
  8177. ]
  8178. ))
  8179. characterMakers.push(() => makeCharacter(
  8180. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8181. {
  8182. front: {
  8183. height: math.unit(6, "feet"),
  8184. weight: math.unit(120, "lbs"),
  8185. name: "Front",
  8186. image: {
  8187. source: "./media/characters/yozey/front.svg"
  8188. }
  8189. },
  8190. frontAlt: {
  8191. height: math.unit(6, "feet"),
  8192. weight: math.unit(120, "lbs"),
  8193. name: "Front (Alt)",
  8194. image: {
  8195. source: "./media/characters/yozey/front-alt.svg"
  8196. }
  8197. },
  8198. side: {
  8199. height: math.unit(6, "feet"),
  8200. weight: math.unit(120, "lbs"),
  8201. name: "Side",
  8202. image: {
  8203. source: "./media/characters/yozey/side.svg"
  8204. }
  8205. },
  8206. },
  8207. [
  8208. {
  8209. name: "Micro",
  8210. height: math.unit(3, "inches"),
  8211. default: true
  8212. },
  8213. {
  8214. name: "Normal",
  8215. height: math.unit(6, "feet")
  8216. }
  8217. ]
  8218. ))
  8219. characterMakers.push(() => makeCharacter(
  8220. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8221. {
  8222. front: {
  8223. height: math.unit(6, "feet"),
  8224. weight: math.unit(103, "lbs"),
  8225. name: "Front",
  8226. image: {
  8227. source: "./media/characters/valeska-voss/front.svg"
  8228. }
  8229. }
  8230. },
  8231. [
  8232. {
  8233. name: "Mini-Sized Sub",
  8234. height: math.unit(3.1, "inches")
  8235. },
  8236. {
  8237. name: "Mid-Sized Sub",
  8238. height: math.unit(6.2, "inches")
  8239. },
  8240. {
  8241. name: "Full-Sized Sub",
  8242. height: math.unit(9.3, "inches")
  8243. },
  8244. {
  8245. name: "Normal",
  8246. height: math.unit(5 + 2 / 12, "foot"),
  8247. default: true
  8248. },
  8249. ]
  8250. ))
  8251. characterMakers.push(() => makeCharacter(
  8252. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8253. {
  8254. front: {
  8255. height: math.unit(6, "feet"),
  8256. weight: math.unit(160, "lbs"),
  8257. name: "Front",
  8258. image: {
  8259. source: "./media/characters/gene-zeta/front.svg",
  8260. extra: 3006 / 2826,
  8261. bottom: 182 / 3188
  8262. }
  8263. }
  8264. },
  8265. [
  8266. {
  8267. name: "Micro",
  8268. height: math.unit(6, "inches")
  8269. },
  8270. {
  8271. name: "Normal",
  8272. height: math.unit(5 + 11 / 12, "foot"),
  8273. default: true
  8274. },
  8275. {
  8276. name: "Macro",
  8277. height: math.unit(140, "feet")
  8278. },
  8279. {
  8280. name: "Supercharged",
  8281. height: math.unit(2500, "feet")
  8282. },
  8283. ]
  8284. ))
  8285. characterMakers.push(() => makeCharacter(
  8286. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8287. {
  8288. front: {
  8289. height: math.unit(6, "feet"),
  8290. weight: math.unit(350, "lbs"),
  8291. name: "Front",
  8292. image: {
  8293. source: "./media/characters/razinox/front.svg",
  8294. extra: 1686 / 1548,
  8295. bottom: 28.2 / 1868
  8296. }
  8297. },
  8298. back: {
  8299. height: math.unit(6, "feet"),
  8300. weight: math.unit(350, "lbs"),
  8301. name: "Back",
  8302. image: {
  8303. source: "./media/characters/razinox/back.svg",
  8304. extra: 1660 / 1590,
  8305. bottom: 15 / 1665
  8306. }
  8307. },
  8308. },
  8309. [
  8310. {
  8311. name: "Normal",
  8312. height: math.unit(10 + 8 / 12, "foot")
  8313. },
  8314. {
  8315. name: "Minimacro",
  8316. height: math.unit(15, "foot")
  8317. },
  8318. {
  8319. name: "Macro",
  8320. height: math.unit(60, "foot"),
  8321. default: true
  8322. },
  8323. {
  8324. name: "Megamacro",
  8325. height: math.unit(5, "miles")
  8326. },
  8327. {
  8328. name: "Gigamacro",
  8329. height: math.unit(6000, "miles")
  8330. },
  8331. ]
  8332. ))
  8333. characterMakers.push(() => makeCharacter(
  8334. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8335. {
  8336. front: {
  8337. height: math.unit(6, "feet"),
  8338. weight: math.unit(150, "lbs"),
  8339. name: "Front",
  8340. image: {
  8341. source: "./media/characters/cobalt/front.svg"
  8342. }
  8343. }
  8344. },
  8345. [
  8346. {
  8347. name: "Normal",
  8348. height: math.unit(8 + 1 / 12, "foot")
  8349. },
  8350. {
  8351. name: "Macro",
  8352. height: math.unit(111, "foot"),
  8353. default: true
  8354. },
  8355. {
  8356. name: "Supracosmic",
  8357. height: math.unit(1e42, "feet")
  8358. },
  8359. ]
  8360. ))
  8361. characterMakers.push(() => makeCharacter(
  8362. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8363. {
  8364. front: {
  8365. height: math.unit(5, "inches"),
  8366. name: "Front",
  8367. image: {
  8368. source: "./media/characters/amanda/front.svg",
  8369. extra: 926/791,
  8370. bottom: 38/964
  8371. }
  8372. },
  8373. back: {
  8374. height: math.unit(5, "inches"),
  8375. name: "Back",
  8376. image: {
  8377. source: "./media/characters/amanda/back.svg",
  8378. extra: 909/805,
  8379. bottom: 43/952
  8380. }
  8381. },
  8382. },
  8383. [
  8384. {
  8385. name: "Micro",
  8386. height: math.unit(5, "inches"),
  8387. default: true
  8388. },
  8389. ]
  8390. ))
  8391. characterMakers.push(() => makeCharacter(
  8392. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8393. {
  8394. front: {
  8395. height: math.unit(2.75, "meters"),
  8396. weight: math.unit(1200, "lb"),
  8397. name: "Front",
  8398. image: {
  8399. source: "./media/characters/teal/front.svg",
  8400. extra: 2463 / 2320,
  8401. bottom: 166 / 2629
  8402. }
  8403. },
  8404. back: {
  8405. height: math.unit(2.75, "meters"),
  8406. weight: math.unit(1200, "lb"),
  8407. name: "Back",
  8408. image: {
  8409. source: "./media/characters/teal/back.svg",
  8410. extra: 2580 / 2489,
  8411. bottom: 151 / 2731
  8412. }
  8413. },
  8414. sitting: {
  8415. height: math.unit(1.9, "meters"),
  8416. weight: math.unit(1200, "lb"),
  8417. name: "Sitting",
  8418. image: {
  8419. source: "./media/characters/teal/sitting.svg",
  8420. extra: 623 / 590,
  8421. bottom: 121 / 744
  8422. }
  8423. },
  8424. standing: {
  8425. height: math.unit(2.75, "meters"),
  8426. weight: math.unit(1200, "lb"),
  8427. name: "Standing",
  8428. image: {
  8429. source: "./media/characters/teal/standing.svg",
  8430. extra: 923 / 893,
  8431. bottom: 60 / 983
  8432. }
  8433. },
  8434. stretching: {
  8435. height: math.unit(3.65, "meters"),
  8436. weight: math.unit(1200, "lb"),
  8437. name: "Stretching",
  8438. image: {
  8439. source: "./media/characters/teal/stretching.svg",
  8440. extra: 1276 / 1244,
  8441. bottom: 0 / 1276
  8442. }
  8443. },
  8444. legged: {
  8445. height: math.unit(1.3, "meters"),
  8446. weight: math.unit(100, "lb"),
  8447. name: "Legged",
  8448. image: {
  8449. source: "./media/characters/teal/legged.svg",
  8450. extra: 462 / 437,
  8451. bottom: 24 / 486
  8452. }
  8453. },
  8454. naga: {
  8455. height: math.unit(5.4, "meters"),
  8456. weight: math.unit(4000, "lb"),
  8457. name: "Naga",
  8458. image: {
  8459. source: "./media/characters/teal/naga.svg",
  8460. extra: 1902 / 1858,
  8461. bottom: 0 / 1902
  8462. }
  8463. },
  8464. hand: {
  8465. height: math.unit(0.52, "meters"),
  8466. name: "Hand",
  8467. image: {
  8468. source: "./media/characters/teal/hand.svg"
  8469. }
  8470. },
  8471. maw: {
  8472. height: math.unit(0.43, "meters"),
  8473. name: "Maw",
  8474. image: {
  8475. source: "./media/characters/teal/maw.svg"
  8476. }
  8477. },
  8478. slit: {
  8479. height: math.unit(0.25, "meters"),
  8480. name: "Slit",
  8481. image: {
  8482. source: "./media/characters/teal/slit.svg"
  8483. }
  8484. },
  8485. },
  8486. [
  8487. {
  8488. name: "Normal",
  8489. height: math.unit(2.75, "meters"),
  8490. default: true
  8491. },
  8492. {
  8493. name: "Macro",
  8494. height: math.unit(300, "feet")
  8495. },
  8496. {
  8497. name: "Macro+",
  8498. height: math.unit(2000, "feet")
  8499. },
  8500. ]
  8501. ))
  8502. characterMakers.push(() => makeCharacter(
  8503. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8504. {
  8505. frontCat: {
  8506. height: math.unit(6, "feet"),
  8507. weight: math.unit(180, "lbs"),
  8508. name: "Front (Cat)",
  8509. image: {
  8510. source: "./media/characters/ravin-amulet/front-cat.svg"
  8511. }
  8512. },
  8513. frontCatAlt: {
  8514. height: math.unit(6, "feet"),
  8515. weight: math.unit(180, "lbs"),
  8516. name: "Front (Alt, Cat)",
  8517. image: {
  8518. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8519. }
  8520. },
  8521. frontWerewolf: {
  8522. height: math.unit(6 * 1.2, "feet"),
  8523. weight: math.unit(225, "lbs"),
  8524. name: "Front (Werewolf)",
  8525. image: {
  8526. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8527. }
  8528. },
  8529. backWerewolf: {
  8530. height: math.unit(6 * 1.2, "feet"),
  8531. weight: math.unit(225, "lbs"),
  8532. name: "Back (Werewolf)",
  8533. image: {
  8534. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8535. }
  8536. },
  8537. },
  8538. [
  8539. {
  8540. name: "Nano",
  8541. height: math.unit(1, "micrometer")
  8542. },
  8543. {
  8544. name: "Micro",
  8545. height: math.unit(1, "inch")
  8546. },
  8547. {
  8548. name: "Normal",
  8549. height: math.unit(6, "feet"),
  8550. default: true
  8551. },
  8552. {
  8553. name: "Macro",
  8554. height: math.unit(60, "feet")
  8555. }
  8556. ]
  8557. ))
  8558. characterMakers.push(() => makeCharacter(
  8559. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8560. {
  8561. front: {
  8562. height: math.unit(6, "feet"),
  8563. weight: math.unit(165, "lbs"),
  8564. name: "Front",
  8565. image: {
  8566. source: "./media/characters/fluoresce/front.svg"
  8567. }
  8568. }
  8569. },
  8570. [
  8571. {
  8572. name: "Micro",
  8573. height: math.unit(6, "cm")
  8574. },
  8575. {
  8576. name: "Normal",
  8577. height: math.unit(5 + 7 / 12, "feet"),
  8578. default: true
  8579. },
  8580. {
  8581. name: "Macro",
  8582. height: math.unit(56, "feet")
  8583. },
  8584. {
  8585. name: "Megamacro",
  8586. height: math.unit(1.9, "miles")
  8587. },
  8588. ]
  8589. ))
  8590. characterMakers.push(() => makeCharacter(
  8591. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8592. {
  8593. front: {
  8594. height: math.unit(9 + 6 / 12, "feet"),
  8595. weight: math.unit(523, "lbs"),
  8596. name: "Side",
  8597. image: {
  8598. source: "./media/characters/aurora/side.svg",
  8599. extra: 474/393,
  8600. bottom: 5/479
  8601. }
  8602. }
  8603. },
  8604. [
  8605. {
  8606. name: "Normal",
  8607. height: math.unit(9 + 6 / 12, "feet")
  8608. },
  8609. {
  8610. name: "Macro",
  8611. height: math.unit(96, "feet"),
  8612. default: true
  8613. },
  8614. {
  8615. name: "Macro+",
  8616. height: math.unit(243, "feet")
  8617. },
  8618. ]
  8619. ))
  8620. characterMakers.push(() => makeCharacter(
  8621. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8622. {
  8623. front: {
  8624. height: math.unit(194, "cm"),
  8625. weight: math.unit(90, "kg"),
  8626. name: "Front",
  8627. image: {
  8628. source: "./media/characters/ranek/front.svg",
  8629. extra: 1862/1791,
  8630. bottom: 80/1942
  8631. }
  8632. },
  8633. back: {
  8634. height: math.unit(194, "cm"),
  8635. weight: math.unit(90, "kg"),
  8636. name: "Back",
  8637. image: {
  8638. source: "./media/characters/ranek/back.svg",
  8639. extra: 1853/1787,
  8640. bottom: 74/1927
  8641. }
  8642. },
  8643. feral: {
  8644. height: math.unit(30, "cm"),
  8645. weight: math.unit(1.6, "lbs"),
  8646. name: "Feral",
  8647. image: {
  8648. source: "./media/characters/ranek/feral.svg",
  8649. extra: 990/631,
  8650. bottom: 29/1019
  8651. }
  8652. },
  8653. },
  8654. [
  8655. {
  8656. name: "Normal",
  8657. height: math.unit(194, "cm"),
  8658. default: true
  8659. },
  8660. {
  8661. name: "Macro",
  8662. height: math.unit(100, "meters")
  8663. },
  8664. ]
  8665. ))
  8666. characterMakers.push(() => makeCharacter(
  8667. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8668. {
  8669. front: {
  8670. height: math.unit(5 + 6 / 12, "feet"),
  8671. weight: math.unit(153, "lbs"),
  8672. name: "Front",
  8673. image: {
  8674. source: "./media/characters/andrew-cooper/front.svg"
  8675. }
  8676. },
  8677. },
  8678. [
  8679. {
  8680. name: "Nano",
  8681. height: math.unit(1, "mm")
  8682. },
  8683. {
  8684. name: "Micro",
  8685. height: math.unit(2, "inches")
  8686. },
  8687. {
  8688. name: "Normal",
  8689. height: math.unit(5 + 6 / 12, "feet"),
  8690. default: true
  8691. }
  8692. ]
  8693. ))
  8694. characterMakers.push(() => makeCharacter(
  8695. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8696. {
  8697. front: {
  8698. height: math.unit(6, "feet"),
  8699. weight: math.unit(180, "lbs"),
  8700. name: "Front",
  8701. image: {
  8702. source: "./media/characters/akane-sato/front.svg",
  8703. extra: 1219 / 1140
  8704. }
  8705. },
  8706. back: {
  8707. height: math.unit(6, "feet"),
  8708. weight: math.unit(180, "lbs"),
  8709. name: "Back",
  8710. image: {
  8711. source: "./media/characters/akane-sato/back.svg",
  8712. extra: 1219 / 1170
  8713. }
  8714. },
  8715. },
  8716. [
  8717. {
  8718. name: "Normal",
  8719. height: math.unit(2.5, "meters")
  8720. },
  8721. {
  8722. name: "Macro",
  8723. height: math.unit(250, "meters"),
  8724. default: true
  8725. },
  8726. {
  8727. name: "Megamacro",
  8728. height: math.unit(25, "km")
  8729. },
  8730. ]
  8731. ))
  8732. characterMakers.push(() => makeCharacter(
  8733. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8734. {
  8735. front: {
  8736. height: math.unit(6, "feet"),
  8737. weight: math.unit(65, "kg"),
  8738. name: "Front",
  8739. image: {
  8740. source: "./media/characters/rook/front.svg",
  8741. extra: 960 / 950
  8742. }
  8743. }
  8744. },
  8745. [
  8746. {
  8747. name: "Normal",
  8748. height: math.unit(8.8, "feet")
  8749. },
  8750. {
  8751. name: "Macro",
  8752. height: math.unit(88, "feet"),
  8753. default: true
  8754. },
  8755. {
  8756. name: "Megamacro",
  8757. height: math.unit(8, "miles")
  8758. },
  8759. ]
  8760. ))
  8761. characterMakers.push(() => makeCharacter(
  8762. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8763. {
  8764. front: {
  8765. height: math.unit(12 + 2 / 12, "feet"),
  8766. weight: math.unit(808, "lbs"),
  8767. name: "Front",
  8768. image: {
  8769. source: "./media/characters/prodigy/front.svg"
  8770. }
  8771. }
  8772. },
  8773. [
  8774. {
  8775. name: "Normal",
  8776. height: math.unit(12 + 2 / 12, "feet"),
  8777. default: true
  8778. },
  8779. {
  8780. name: "Macro",
  8781. height: math.unit(143, "feet")
  8782. },
  8783. {
  8784. name: "Macro+",
  8785. height: math.unit(400, "feet")
  8786. },
  8787. ]
  8788. ))
  8789. characterMakers.push(() => makeCharacter(
  8790. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8791. {
  8792. front: {
  8793. height: math.unit(6, "feet"),
  8794. weight: math.unit(225, "lbs"),
  8795. name: "Front",
  8796. image: {
  8797. source: "./media/characters/daniel/front.svg"
  8798. }
  8799. },
  8800. leaning: {
  8801. height: math.unit(6, "feet"),
  8802. weight: math.unit(225, "lbs"),
  8803. name: "Leaning",
  8804. image: {
  8805. source: "./media/characters/daniel/leaning.svg"
  8806. }
  8807. },
  8808. },
  8809. [
  8810. {
  8811. name: "Macro",
  8812. height: math.unit(1000, "feet"),
  8813. default: true
  8814. },
  8815. ]
  8816. ))
  8817. characterMakers.push(() => makeCharacter(
  8818. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8819. {
  8820. front: {
  8821. height: math.unit(6, "feet"),
  8822. weight: math.unit(88, "lbs"),
  8823. name: "Front",
  8824. image: {
  8825. source: "./media/characters/chiros/front.svg",
  8826. extra: 306 / 226
  8827. }
  8828. },
  8829. side: {
  8830. height: math.unit(6, "feet"),
  8831. weight: math.unit(88, "lbs"),
  8832. name: "Side",
  8833. image: {
  8834. source: "./media/characters/chiros/side.svg",
  8835. extra: 306 / 226
  8836. }
  8837. },
  8838. },
  8839. [
  8840. {
  8841. name: "Normal",
  8842. height: math.unit(6, "cm"),
  8843. default: true
  8844. },
  8845. ]
  8846. ))
  8847. characterMakers.push(() => makeCharacter(
  8848. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8849. {
  8850. front: {
  8851. height: math.unit(6, "feet"),
  8852. weight: math.unit(100, "lbs"),
  8853. name: "Front",
  8854. image: {
  8855. source: "./media/characters/selka/front.svg",
  8856. extra: 947 / 887
  8857. }
  8858. }
  8859. },
  8860. [
  8861. {
  8862. name: "Normal",
  8863. height: math.unit(5, "cm"),
  8864. default: true
  8865. },
  8866. ]
  8867. ))
  8868. characterMakers.push(() => makeCharacter(
  8869. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8870. {
  8871. front: {
  8872. height: math.unit(8 + 3 / 12, "feet"),
  8873. weight: math.unit(424, "lbs"),
  8874. name: "Front",
  8875. image: {
  8876. source: "./media/characters/verin/front.svg",
  8877. extra: 1845 / 1550
  8878. }
  8879. },
  8880. frontArmored: {
  8881. height: math.unit(8 + 3 / 12, "feet"),
  8882. weight: math.unit(424, "lbs"),
  8883. name: "Front (Armored)",
  8884. image: {
  8885. source: "./media/characters/verin/front-armor.svg",
  8886. extra: 1845 / 1550,
  8887. bottom: 0.01
  8888. }
  8889. },
  8890. back: {
  8891. height: math.unit(8 + 3 / 12, "feet"),
  8892. weight: math.unit(424, "lbs"),
  8893. name: "Back",
  8894. image: {
  8895. source: "./media/characters/verin/back.svg",
  8896. bottom: 0.1,
  8897. extra: 1
  8898. }
  8899. },
  8900. foot: {
  8901. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8902. name: "Foot",
  8903. image: {
  8904. source: "./media/characters/verin/foot.svg"
  8905. }
  8906. },
  8907. },
  8908. [
  8909. {
  8910. name: "Normal",
  8911. height: math.unit(8 + 3 / 12, "feet")
  8912. },
  8913. {
  8914. name: "Minimacro",
  8915. height: math.unit(21, "feet"),
  8916. default: true
  8917. },
  8918. {
  8919. name: "Macro",
  8920. height: math.unit(626, "feet")
  8921. },
  8922. ]
  8923. ))
  8924. characterMakers.push(() => makeCharacter(
  8925. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8926. {
  8927. front: {
  8928. height: math.unit(2.718, "meters"),
  8929. weight: math.unit(150, "lbs"),
  8930. name: "Front",
  8931. image: {
  8932. source: "./media/characters/sovrim-terraquian/front.svg",
  8933. extra: 1752/1689,
  8934. bottom: 36/1788
  8935. }
  8936. },
  8937. back: {
  8938. height: math.unit(2.718, "meters"),
  8939. weight: math.unit(150, "lbs"),
  8940. name: "Back",
  8941. image: {
  8942. source: "./media/characters/sovrim-terraquian/back.svg",
  8943. extra: 1698/1657,
  8944. bottom: 58/1756
  8945. }
  8946. },
  8947. tongue: {
  8948. height: math.unit(2.865, "feet"),
  8949. name: "Tongue",
  8950. image: {
  8951. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8952. }
  8953. },
  8954. hand: {
  8955. height: math.unit(1.61, "feet"),
  8956. name: "Hand",
  8957. image: {
  8958. source: "./media/characters/sovrim-terraquian/hand.svg"
  8959. }
  8960. },
  8961. foot: {
  8962. height: math.unit(1.05, "feet"),
  8963. name: "Foot",
  8964. image: {
  8965. source: "./media/characters/sovrim-terraquian/foot.svg"
  8966. }
  8967. },
  8968. footAlt: {
  8969. height: math.unit(0.88, "feet"),
  8970. name: "Foot (Alt)",
  8971. image: {
  8972. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8973. }
  8974. },
  8975. },
  8976. [
  8977. {
  8978. name: "Micro",
  8979. height: math.unit(2, "inches")
  8980. },
  8981. {
  8982. name: "Small",
  8983. height: math.unit(1, "meter")
  8984. },
  8985. {
  8986. name: "Normal",
  8987. height: math.unit(Math.E, "meters"),
  8988. default: true
  8989. },
  8990. {
  8991. name: "Macro",
  8992. height: math.unit(20, "meters")
  8993. },
  8994. {
  8995. name: "Macro+",
  8996. height: math.unit(400, "meters")
  8997. },
  8998. ]
  8999. ))
  9000. characterMakers.push(() => makeCharacter(
  9001. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  9002. {
  9003. front: {
  9004. height: math.unit(7, "feet"),
  9005. weight: math.unit(489, "lbs"),
  9006. name: "Front",
  9007. image: {
  9008. source: "./media/characters/reece-silvermane/front.svg",
  9009. bottom: 0.02,
  9010. extra: 1
  9011. }
  9012. },
  9013. },
  9014. [
  9015. {
  9016. name: "Macro",
  9017. height: math.unit(1.5, "miles"),
  9018. default: true
  9019. },
  9020. ]
  9021. ))
  9022. characterMakers.push(() => makeCharacter(
  9023. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  9024. {
  9025. front: {
  9026. height: math.unit(6, "feet"),
  9027. weight: math.unit(78, "kg"),
  9028. name: "Front",
  9029. image: {
  9030. source: "./media/characters/kane/front.svg",
  9031. extra: 978 / 899
  9032. }
  9033. },
  9034. },
  9035. [
  9036. {
  9037. name: "Normal",
  9038. height: math.unit(2.1, "m"),
  9039. },
  9040. {
  9041. name: "Macro",
  9042. height: math.unit(1, "km"),
  9043. default: true
  9044. },
  9045. ]
  9046. ))
  9047. characterMakers.push(() => makeCharacter(
  9048. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  9049. {
  9050. front: {
  9051. height: math.unit(6, "feet"),
  9052. weight: math.unit(200, "kg"),
  9053. name: "Front",
  9054. image: {
  9055. source: "./media/characters/tegon/front.svg",
  9056. bottom: 0.01,
  9057. extra: 1
  9058. }
  9059. },
  9060. },
  9061. [
  9062. {
  9063. name: "Micro",
  9064. height: math.unit(1, "inch")
  9065. },
  9066. {
  9067. name: "Normal",
  9068. height: math.unit(6 + 3 / 12, "feet"),
  9069. default: true
  9070. },
  9071. {
  9072. name: "Macro",
  9073. height: math.unit(300, "feet")
  9074. },
  9075. {
  9076. name: "Megamacro",
  9077. height: math.unit(69, "miles")
  9078. },
  9079. ]
  9080. ))
  9081. characterMakers.push(() => makeCharacter(
  9082. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  9083. {
  9084. side: {
  9085. height: math.unit(6, "feet"),
  9086. weight: math.unit(2304, "lbs"),
  9087. name: "Side",
  9088. image: {
  9089. source: "./media/characters/arcturax/side.svg",
  9090. extra: 790 / 376,
  9091. bottom: 0.01
  9092. }
  9093. },
  9094. },
  9095. [
  9096. {
  9097. name: "Micro",
  9098. height: math.unit(2, "inch")
  9099. },
  9100. {
  9101. name: "Normal",
  9102. height: math.unit(6, "feet")
  9103. },
  9104. {
  9105. name: "Macro",
  9106. height: math.unit(39, "feet"),
  9107. default: true
  9108. },
  9109. {
  9110. name: "Megamacro",
  9111. height: math.unit(7, "miles")
  9112. },
  9113. ]
  9114. ))
  9115. characterMakers.push(() => makeCharacter(
  9116. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  9117. {
  9118. front: {
  9119. height: math.unit(6, "feet"),
  9120. weight: math.unit(50, "lbs"),
  9121. name: "Front",
  9122. image: {
  9123. source: "./media/characters/sentri/front.svg",
  9124. extra: 1750 / 1570,
  9125. bottom: 0.025
  9126. }
  9127. },
  9128. frontAlt: {
  9129. height: math.unit(6, "feet"),
  9130. weight: math.unit(50, "lbs"),
  9131. name: "Front (Alt)",
  9132. image: {
  9133. source: "./media/characters/sentri/front-alt.svg",
  9134. extra: 1750 / 1570,
  9135. bottom: 0.025
  9136. }
  9137. },
  9138. },
  9139. [
  9140. {
  9141. name: "Normal",
  9142. height: math.unit(15, "feet"),
  9143. default: true
  9144. },
  9145. {
  9146. name: "Macro",
  9147. height: math.unit(2500, "feet")
  9148. }
  9149. ]
  9150. ))
  9151. characterMakers.push(() => makeCharacter(
  9152. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9153. {
  9154. front: {
  9155. height: math.unit(5 + 8 / 12, "feet"),
  9156. weight: math.unit(130, "lbs"),
  9157. name: "Front",
  9158. image: {
  9159. source: "./media/characters/corvin/front.svg",
  9160. extra: 1803 / 1629
  9161. }
  9162. },
  9163. frontShirt: {
  9164. height: math.unit(5 + 8 / 12, "feet"),
  9165. weight: math.unit(130, "lbs"),
  9166. name: "Front (Shirt)",
  9167. image: {
  9168. source: "./media/characters/corvin/front-shirt.svg",
  9169. extra: 1803 / 1629
  9170. }
  9171. },
  9172. frontPoncho: {
  9173. height: math.unit(5 + 8 / 12, "feet"),
  9174. weight: math.unit(130, "lbs"),
  9175. name: "Front (Poncho)",
  9176. image: {
  9177. source: "./media/characters/corvin/front-poncho.svg",
  9178. extra: 1803 / 1629
  9179. }
  9180. },
  9181. side: {
  9182. height: math.unit(5 + 8 / 12, "feet"),
  9183. weight: math.unit(130, "lbs"),
  9184. name: "Side",
  9185. image: {
  9186. source: "./media/characters/corvin/side.svg",
  9187. extra: 1012 / 945
  9188. }
  9189. },
  9190. back: {
  9191. height: math.unit(5 + 8 / 12, "feet"),
  9192. weight: math.unit(130, "lbs"),
  9193. name: "Back",
  9194. image: {
  9195. source: "./media/characters/corvin/back.svg",
  9196. extra: 1803 / 1629
  9197. }
  9198. },
  9199. },
  9200. [
  9201. {
  9202. name: "Micro",
  9203. height: math.unit(3, "inches")
  9204. },
  9205. {
  9206. name: "Normal",
  9207. height: math.unit(5 + 8 / 12, "feet")
  9208. },
  9209. {
  9210. name: "Macro",
  9211. height: math.unit(300, "feet"),
  9212. default: true
  9213. },
  9214. {
  9215. name: "Megamacro",
  9216. height: math.unit(500, "miles")
  9217. }
  9218. ]
  9219. ))
  9220. characterMakers.push(() => makeCharacter(
  9221. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9222. {
  9223. front: {
  9224. height: math.unit(6, "feet"),
  9225. weight: math.unit(135, "lbs"),
  9226. name: "Front",
  9227. image: {
  9228. source: "./media/characters/q/front.svg",
  9229. extra: 854 / 752,
  9230. bottom: 0.005
  9231. }
  9232. },
  9233. back: {
  9234. height: math.unit(6, "feet"),
  9235. weight: math.unit(130, "lbs"),
  9236. name: "Back",
  9237. image: {
  9238. source: "./media/characters/q/back.svg",
  9239. extra: 854 / 752
  9240. }
  9241. },
  9242. },
  9243. [
  9244. {
  9245. name: "Macro",
  9246. height: math.unit(90, "feet"),
  9247. default: true
  9248. },
  9249. {
  9250. name: "Extra Macro",
  9251. height: math.unit(300, "feet"),
  9252. },
  9253. {
  9254. name: "BIG WALF",
  9255. height: math.unit(750, "feet"),
  9256. },
  9257. ]
  9258. ))
  9259. characterMakers.push(() => makeCharacter(
  9260. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9261. {
  9262. front: {
  9263. height: math.unit(3, "feet"),
  9264. weight: math.unit(28, "lbs"),
  9265. name: "Front",
  9266. image: {
  9267. source: "./media/characters/citrine/front.svg"
  9268. }
  9269. }
  9270. },
  9271. [
  9272. {
  9273. name: "Normal",
  9274. height: math.unit(3, "feet"),
  9275. default: true
  9276. }
  9277. ]
  9278. ))
  9279. characterMakers.push(() => makeCharacter(
  9280. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9281. {
  9282. front: {
  9283. height: math.unit(14, "feet"),
  9284. weight: math.unit(1450, "kg"),
  9285. preyCapacity: math.unit(15, "people"),
  9286. name: "Front",
  9287. image: {
  9288. source: "./media/characters/aura-starwind/front.svg",
  9289. extra: 1440/1327,
  9290. bottom: 11/1451
  9291. }
  9292. },
  9293. side: {
  9294. height: math.unit(14, "feet"),
  9295. weight: math.unit(1450, "kg"),
  9296. preyCapacity: math.unit(15, "people"),
  9297. name: "Side",
  9298. image: {
  9299. source: "./media/characters/aura-starwind/side.svg",
  9300. extra: 1654 / 1497
  9301. }
  9302. },
  9303. taur: {
  9304. height: math.unit(18, "feet"),
  9305. weight: math.unit(5500, "kg"),
  9306. preyCapacity: math.unit(50, "people"),
  9307. name: "Taur",
  9308. image: {
  9309. source: "./media/characters/aura-starwind/taur.svg",
  9310. extra: 1760 / 1650
  9311. }
  9312. },
  9313. feral: {
  9314. height: math.unit(46, "feet"),
  9315. weight: math.unit(25000, "kg"),
  9316. preyCapacity: math.unit(120, "people"),
  9317. name: "Feral",
  9318. image: {
  9319. source: "./media/characters/aura-starwind/feral.svg"
  9320. }
  9321. },
  9322. },
  9323. [
  9324. {
  9325. name: "Normal",
  9326. height: math.unit(14, "feet"),
  9327. default: true
  9328. },
  9329. {
  9330. name: "Macro",
  9331. height: math.unit(50, "meters")
  9332. },
  9333. {
  9334. name: "Megamacro",
  9335. height: math.unit(5000, "meters")
  9336. },
  9337. {
  9338. name: "Gigamacro",
  9339. height: math.unit(100000, "kilometers")
  9340. },
  9341. ]
  9342. ))
  9343. characterMakers.push(() => makeCharacter(
  9344. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9345. {
  9346. front: {
  9347. height: math.unit(2 + 7 / 12, "feet"),
  9348. weight: math.unit(32, "lbs"),
  9349. name: "Front",
  9350. image: {
  9351. source: "./media/characters/rivet/front.svg",
  9352. extra: 1716 / 1658,
  9353. bottom: 0.03
  9354. }
  9355. },
  9356. foot: {
  9357. height: math.unit(0.551, "feet"),
  9358. name: "Rivet's Foot",
  9359. image: {
  9360. source: "./media/characters/rivet/foot.svg"
  9361. },
  9362. rename: true
  9363. }
  9364. },
  9365. [
  9366. {
  9367. name: "Micro",
  9368. height: math.unit(1.5, "inches"),
  9369. },
  9370. {
  9371. name: "Normal",
  9372. height: math.unit(2 + 7 / 12, "feet"),
  9373. default: true
  9374. },
  9375. {
  9376. name: "Macro",
  9377. height: math.unit(85, "feet")
  9378. },
  9379. {
  9380. name: "Megamacro",
  9381. height: math.unit(2.2, "km")
  9382. }
  9383. ]
  9384. ))
  9385. characterMakers.push(() => makeCharacter(
  9386. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9387. {
  9388. front: {
  9389. height: math.unit(5 + 9 / 12, "feet"),
  9390. weight: math.unit(150, "lbs"),
  9391. name: "Front",
  9392. image: {
  9393. source: "./media/characters/coffee/front.svg",
  9394. extra: 946/880,
  9395. bottom: 66/1012
  9396. }
  9397. },
  9398. foot: {
  9399. height: math.unit(1.29, "feet"),
  9400. name: "Foot",
  9401. image: {
  9402. source: "./media/characters/coffee/foot.svg"
  9403. }
  9404. },
  9405. },
  9406. [
  9407. {
  9408. name: "Micro",
  9409. height: math.unit(2, "inches"),
  9410. },
  9411. {
  9412. name: "Normal",
  9413. height: math.unit(5 + 9 / 12, "feet"),
  9414. default: true
  9415. },
  9416. {
  9417. name: "Macro",
  9418. height: math.unit(800, "feet")
  9419. },
  9420. {
  9421. name: "Megamacro",
  9422. height: math.unit(25, "miles")
  9423. }
  9424. ]
  9425. ))
  9426. characterMakers.push(() => makeCharacter(
  9427. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9428. {
  9429. front: {
  9430. height: math.unit(6, "feet"),
  9431. weight: math.unit(200, "lbs"),
  9432. name: "Front",
  9433. image: {
  9434. source: "./media/characters/chari-gal/front.svg",
  9435. extra: 735/649,
  9436. bottom: 55/790
  9437. },
  9438. form: "normal",
  9439. default: true
  9440. },
  9441. back: {
  9442. height: math.unit(6, "feet"),
  9443. weight: math.unit(200, "lb"),
  9444. name: "Back",
  9445. image: {
  9446. source: "./media/characters/chari-gal/back.svg",
  9447. extra: 762/666,
  9448. bottom: 31/793
  9449. },
  9450. form: "normal"
  9451. },
  9452. mouth: {
  9453. height: math.unit(1.35, "feet"),
  9454. name: "Mouth",
  9455. image: {
  9456. source: "./media/characters/chari-gal/mouth.svg"
  9457. },
  9458. form: "normal"
  9459. },
  9460. gigantamax: {
  9461. height: math.unit(6 * 16, "feet"),
  9462. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9463. name: "Gigantamax",
  9464. image: {
  9465. source: "./media/characters/chari-gal/gigantamax-front.svg",
  9466. extra: 1507/1149,
  9467. bottom: 254/1761
  9468. },
  9469. form: "gigantamax",
  9470. default: true
  9471. },
  9472. },
  9473. [
  9474. {
  9475. name: "Normal",
  9476. height: math.unit(5 + 7 / 12, "feet"),
  9477. form: "normal",
  9478. },
  9479. {
  9480. name: "Macro",
  9481. height: math.unit(200, "feet"),
  9482. default: true,
  9483. form: "normal"
  9484. },
  9485. {
  9486. name: "Normal",
  9487. height: math.unit(16 * (5 + 7 / 12), "feet"),
  9488. form: "gigantamax",
  9489. },
  9490. {
  9491. name: "Macro",
  9492. height: math.unit(16 * 200, "feet"),
  9493. default: true,
  9494. form: "gigantamax"
  9495. },
  9496. ],
  9497. {
  9498. "normal": {
  9499. name: "Normal",
  9500. default: true
  9501. },
  9502. "gigantamax": {
  9503. name: "Gigantamax",
  9504. },
  9505. }
  9506. ))
  9507. characterMakers.push(() => makeCharacter(
  9508. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9509. {
  9510. front: {
  9511. height: math.unit(6, "feet"),
  9512. weight: math.unit(150, "lbs"),
  9513. name: "Front",
  9514. image: {
  9515. source: "./media/characters/nova/front.svg",
  9516. extra: 5000 / 4722,
  9517. bottom: 0.02
  9518. }
  9519. }
  9520. },
  9521. [
  9522. {
  9523. name: "Micro-",
  9524. height: math.unit(0.8, "inches")
  9525. },
  9526. {
  9527. name: "Micro",
  9528. height: math.unit(2, "inches"),
  9529. default: true
  9530. },
  9531. ]
  9532. ))
  9533. characterMakers.push(() => makeCharacter(
  9534. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9535. {
  9536. koboldFront: {
  9537. height: math.unit(3 + 1 / 12, "feet"),
  9538. weight: math.unit(21.7, "lbs"),
  9539. name: "Front",
  9540. image: {
  9541. source: "./media/characters/argent/kobold-front.svg",
  9542. extra: 1471 / 1331,
  9543. bottom: 100.8 / 1575.5
  9544. },
  9545. form: "kobold",
  9546. default: true
  9547. },
  9548. dragonFront: {
  9549. height: math.unit(75, "inches"),
  9550. name: "Front",
  9551. image: {
  9552. source: "./media/characters/argent/dragon-front.svg",
  9553. extra: 1389/1248,
  9554. bottom: 54/1443
  9555. },
  9556. form: "dragon",
  9557. },
  9558. dragonBack: {
  9559. height: math.unit(75, "inches"),
  9560. name: "Back",
  9561. image: {
  9562. source: "./media/characters/argent/dragon-back.svg",
  9563. extra: 1399/1271,
  9564. bottom: 23/1422
  9565. },
  9566. form: "dragon",
  9567. },
  9568. dragonDressed: {
  9569. height: math.unit(75, "inches"),
  9570. name: "Dressed",
  9571. image: {
  9572. source: "./media/characters/argent/dragon-dressed.svg",
  9573. extra: 1350/1215,
  9574. bottom: 26/1376
  9575. },
  9576. form: "dragon"
  9577. },
  9578. dragonHead: {
  9579. height: math.unit(23.5, "inches"),
  9580. name: "Head",
  9581. image: {
  9582. source: "./media/characters/argent/dragon-head.svg"
  9583. },
  9584. form: "dragon",
  9585. },
  9586. },
  9587. [
  9588. {
  9589. name: "Micro",
  9590. height: math.unit(2, "inches"),
  9591. form: "kobold",
  9592. },
  9593. {
  9594. name: "Normal",
  9595. height: math.unit(3 + 1 / 12, "feet"),
  9596. form: "kobold",
  9597. default: true
  9598. },
  9599. {
  9600. name: "Macro",
  9601. height: math.unit(120, "feet"),
  9602. form: "kobold",
  9603. },
  9604. {
  9605. name: "Speck",
  9606. height: math.unit(1, "mm"),
  9607. form: "dragon",
  9608. },
  9609. {
  9610. name: "Tiny",
  9611. height: math.unit(1, "cm"),
  9612. form: "dragon",
  9613. },
  9614. {
  9615. name: "Micro",
  9616. height: math.unit(5, "cm"),
  9617. form: "dragon",
  9618. },
  9619. {
  9620. name: "Normal",
  9621. height: math.unit(75, "inches"),
  9622. form: "dragon",
  9623. default: true
  9624. },
  9625. {
  9626. name: "Extra Tall",
  9627. height: math.unit(9, "feet"),
  9628. form: "dragon",
  9629. },
  9630. {
  9631. name: "Inconvenient",
  9632. height: math.unit(5, "meters"),
  9633. form: "dragon",
  9634. },
  9635. {
  9636. name: "Macro",
  9637. height: math.unit(70, "meters"),
  9638. form: "dragon",
  9639. },
  9640. {
  9641. name: "Macro+",
  9642. height: math.unit(250, "meters"),
  9643. form: "dragon",
  9644. },
  9645. {
  9646. name: "Megamacro",
  9647. height: math.unit(20, "km"),
  9648. form: "dragon",
  9649. },
  9650. {
  9651. name: "Mountainous",
  9652. height: math.unit(100, "km"),
  9653. form: "dragon",
  9654. },
  9655. {
  9656. name: "Continental",
  9657. height: math.unit(2, "megameters"),
  9658. form: "dragon",
  9659. },
  9660. {
  9661. name: "Too Big",
  9662. height: math.unit(900, "megameters"),
  9663. form: "dragon",
  9664. },
  9665. ],
  9666. {
  9667. "kobold": {
  9668. name: "Kobold",
  9669. default: true
  9670. },
  9671. "dragon": {
  9672. name: "Dragon",
  9673. },
  9674. }
  9675. ))
  9676. characterMakers.push(() => makeCharacter(
  9677. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9678. {
  9679. lamp: {
  9680. height: math.unit(7 * 1559 / 989, "feet"),
  9681. name: "Magic Lamp",
  9682. image: {
  9683. source: "./media/characters/mira-al-cul/lamp.svg",
  9684. extra: 1617 / 1559
  9685. }
  9686. },
  9687. front: {
  9688. height: math.unit(7, "feet"),
  9689. name: "Front",
  9690. image: {
  9691. source: "./media/characters/mira-al-cul/front.svg",
  9692. extra: 1044 / 990
  9693. }
  9694. },
  9695. },
  9696. [
  9697. {
  9698. name: "Heavily Restricted",
  9699. height: math.unit(7 * 1559 / 989, "feet")
  9700. },
  9701. {
  9702. name: "Freshly Freed",
  9703. height: math.unit(50 * 1559 / 989, "feet")
  9704. },
  9705. {
  9706. name: "World Encompassing",
  9707. height: math.unit(10000 * 1559 / 989, "miles")
  9708. },
  9709. {
  9710. name: "Galactic",
  9711. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9712. },
  9713. {
  9714. name: "Palmed Universe",
  9715. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9716. default: true
  9717. },
  9718. {
  9719. name: "Multiversal Matriarch",
  9720. height: math.unit(8.87e10, "yottameters")
  9721. },
  9722. {
  9723. name: "Void Mother",
  9724. height: math.unit(3.14e110, "yottaparsecs")
  9725. },
  9726. {
  9727. name: "Toying with Transcendence",
  9728. height: math.unit(1e307, "meters")
  9729. },
  9730. ]
  9731. ))
  9732. characterMakers.push(() => makeCharacter(
  9733. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9734. {
  9735. front: {
  9736. height: math.unit(17 + 1 / 12, "feet"),
  9737. weight: math.unit(476.2 * 5, "lbs"),
  9738. name: "Front",
  9739. image: {
  9740. source: "./media/characters/kuro-shi-uchū/front.svg",
  9741. extra: 2329 / 1835,
  9742. bottom: 0.02
  9743. }
  9744. },
  9745. },
  9746. [
  9747. {
  9748. name: "Micro",
  9749. height: math.unit(2, "inches")
  9750. },
  9751. {
  9752. name: "Normal",
  9753. height: math.unit(12, "meters")
  9754. },
  9755. {
  9756. name: "Planetary",
  9757. height: math.unit(0.00929, "AU"),
  9758. default: true
  9759. },
  9760. {
  9761. name: "Universal",
  9762. height: math.unit(20, "gigaparsecs")
  9763. },
  9764. ]
  9765. ))
  9766. characterMakers.push(() => makeCharacter(
  9767. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9768. {
  9769. front: {
  9770. height: math.unit(5 + 2 / 12, "feet"),
  9771. weight: math.unit(120, "lbs"),
  9772. name: "Front",
  9773. image: {
  9774. source: "./media/characters/katherine/front.svg",
  9775. extra: 2075 / 1969
  9776. }
  9777. },
  9778. dress: {
  9779. height: math.unit(5 + 2 / 12, "feet"),
  9780. weight: math.unit(120, "lbs"),
  9781. name: "Dress",
  9782. image: {
  9783. source: "./media/characters/katherine/dress.svg",
  9784. extra: 2258 / 2064
  9785. }
  9786. },
  9787. },
  9788. [
  9789. {
  9790. name: "Micro",
  9791. height: math.unit(1, "inches"),
  9792. default: true
  9793. },
  9794. {
  9795. name: "Normal",
  9796. height: math.unit(5 + 2 / 12, "feet")
  9797. },
  9798. {
  9799. name: "Macro",
  9800. height: math.unit(100, "meters")
  9801. },
  9802. {
  9803. name: "Megamacro",
  9804. height: math.unit(80, "miles")
  9805. },
  9806. ]
  9807. ))
  9808. characterMakers.push(() => makeCharacter(
  9809. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9810. {
  9811. front: {
  9812. height: math.unit(7 + 8 / 12, "feet"),
  9813. weight: math.unit(250, "lbs"),
  9814. name: "Front",
  9815. image: {
  9816. source: "./media/characters/yevis/front.svg",
  9817. extra: 1938 / 1755
  9818. }
  9819. }
  9820. },
  9821. [
  9822. {
  9823. name: "Mortal",
  9824. height: math.unit(7 + 8 / 12, "feet")
  9825. },
  9826. {
  9827. name: "Battle",
  9828. height: math.unit(25 + 11 / 12, "feet")
  9829. },
  9830. {
  9831. name: "Wrath",
  9832. height: math.unit(1654 + 11 / 12, "feet")
  9833. },
  9834. {
  9835. name: "Planet Destroyer",
  9836. height: math.unit(12000, "miles")
  9837. },
  9838. {
  9839. name: "Galaxy Conqueror",
  9840. height: math.unit(1.45, "zettameters"),
  9841. default: true
  9842. },
  9843. {
  9844. name: "Universal War",
  9845. height: math.unit(184, "gigaparsecs")
  9846. },
  9847. {
  9848. name: "Eternity War",
  9849. height: math.unit(1.98e55, "yottaparsecs")
  9850. },
  9851. ]
  9852. ))
  9853. characterMakers.push(() => makeCharacter(
  9854. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9855. {
  9856. front: {
  9857. height: math.unit(5 + 8 / 12, "feet"),
  9858. weight: math.unit(63, "kg"),
  9859. name: "Front",
  9860. image: {
  9861. source: "./media/characters/xavier/front.svg",
  9862. extra: 944 / 883
  9863. }
  9864. },
  9865. frontStretch: {
  9866. height: math.unit(5 + 8 / 12, "feet"),
  9867. weight: math.unit(63, "kg"),
  9868. name: "Stretching",
  9869. image: {
  9870. source: "./media/characters/xavier/front-stretch.svg",
  9871. extra: 962 / 820
  9872. }
  9873. },
  9874. },
  9875. [
  9876. {
  9877. name: "Normal",
  9878. height: math.unit(5 + 8 / 12, "feet")
  9879. },
  9880. {
  9881. name: "Macro",
  9882. height: math.unit(100, "meters"),
  9883. default: true
  9884. },
  9885. {
  9886. name: "McLargeHuge",
  9887. height: math.unit(10, "miles")
  9888. },
  9889. ]
  9890. ))
  9891. characterMakers.push(() => makeCharacter(
  9892. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9893. {
  9894. front: {
  9895. height: math.unit(5 + 5 / 12, "feet"),
  9896. weight: math.unit(150, "lb"),
  9897. name: "Front",
  9898. image: {
  9899. source: "./media/characters/joshii/front.svg",
  9900. extra: 765 / 653,
  9901. bottom: 51 / 816
  9902. }
  9903. },
  9904. foot: {
  9905. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9906. name: "Foot",
  9907. image: {
  9908. source: "./media/characters/joshii/foot.svg"
  9909. }
  9910. },
  9911. },
  9912. [
  9913. {
  9914. name: "Micro",
  9915. height: math.unit(2, "inches")
  9916. },
  9917. {
  9918. name: "Normal",
  9919. height: math.unit(5 + 5 / 12, "feet")
  9920. },
  9921. {
  9922. name: "Macro",
  9923. height: math.unit(785, "feet"),
  9924. default: true
  9925. },
  9926. {
  9927. name: "Megamacro",
  9928. height: math.unit(24.5, "miles")
  9929. },
  9930. ]
  9931. ))
  9932. characterMakers.push(() => makeCharacter(
  9933. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9934. {
  9935. front: {
  9936. height: math.unit(6, "feet"),
  9937. weight: math.unit(150, "lb"),
  9938. name: "Front",
  9939. image: {
  9940. source: "./media/characters/goddess-elizabeth/front.svg",
  9941. extra: 1800 / 1525,
  9942. bottom: 0.005
  9943. }
  9944. },
  9945. foot: {
  9946. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9947. name: "Foot",
  9948. image: {
  9949. source: "./media/characters/goddess-elizabeth/foot.svg"
  9950. }
  9951. },
  9952. mouth: {
  9953. height: math.unit(6, "feet"),
  9954. name: "Mouth",
  9955. image: {
  9956. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9957. }
  9958. },
  9959. },
  9960. [
  9961. {
  9962. name: "Micro",
  9963. height: math.unit(12, "feet")
  9964. },
  9965. {
  9966. name: "Normal",
  9967. height: math.unit(80, "miles"),
  9968. default: true
  9969. },
  9970. {
  9971. name: "Macro",
  9972. height: math.unit(15000, "parsecs")
  9973. },
  9974. ]
  9975. ))
  9976. characterMakers.push(() => makeCharacter(
  9977. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9978. {
  9979. front: {
  9980. height: math.unit(5 + 9 / 12, "feet"),
  9981. weight: math.unit(144, "lb"),
  9982. name: "Front",
  9983. image: {
  9984. source: "./media/characters/kara/front.svg"
  9985. }
  9986. },
  9987. feet: {
  9988. height: math.unit(6 / 6.765, "feet"),
  9989. name: "Kara's Feet",
  9990. rename: true,
  9991. image: {
  9992. source: "./media/characters/kara/feet.svg"
  9993. }
  9994. },
  9995. },
  9996. [
  9997. {
  9998. name: "Normal",
  9999. height: math.unit(5 + 9 / 12, "feet")
  10000. },
  10001. {
  10002. name: "Macro",
  10003. height: math.unit(174, "feet"),
  10004. default: true
  10005. },
  10006. ]
  10007. ))
  10008. characterMakers.push(() => makeCharacter(
  10009. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  10010. {
  10011. front: {
  10012. height: math.unit(18, "feet"),
  10013. weight: math.unit(4050, "lb"),
  10014. name: "Front",
  10015. image: {
  10016. source: "./media/characters/tyrone/front.svg",
  10017. extra: 2405 / 2270,
  10018. bottom: 182 / 2587
  10019. }
  10020. },
  10021. },
  10022. [
  10023. {
  10024. name: "Normal",
  10025. height: math.unit(18, "feet"),
  10026. default: true
  10027. },
  10028. {
  10029. name: "Macro",
  10030. height: math.unit(300, "feet")
  10031. },
  10032. {
  10033. name: "Megamacro",
  10034. height: math.unit(15, "km")
  10035. },
  10036. {
  10037. name: "Gigamacro",
  10038. height: math.unit(500, "km")
  10039. },
  10040. {
  10041. name: "Teramacro",
  10042. height: math.unit(0.5, "gigameters")
  10043. },
  10044. {
  10045. name: "Omnimacro",
  10046. height: math.unit(1e252, "yottauniverse")
  10047. },
  10048. ]
  10049. ))
  10050. characterMakers.push(() => makeCharacter(
  10051. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  10052. {
  10053. front: {
  10054. height: math.unit(7 + 8 / 12, "feet"),
  10055. weight: math.unit(120, "lb"),
  10056. name: "Front",
  10057. image: {
  10058. source: "./media/characters/danny/front.svg",
  10059. extra: 1490 / 1350
  10060. }
  10061. },
  10062. back: {
  10063. height: math.unit(7 + 8 / 12, "feet"),
  10064. weight: math.unit(120, "lb"),
  10065. name: "Back",
  10066. image: {
  10067. source: "./media/characters/danny/back.svg",
  10068. extra: 1490 / 1350
  10069. }
  10070. },
  10071. },
  10072. [
  10073. {
  10074. name: "Normal",
  10075. height: math.unit(7 + 8 / 12, "feet"),
  10076. default: true
  10077. },
  10078. ]
  10079. ))
  10080. characterMakers.push(() => makeCharacter(
  10081. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  10082. {
  10083. front: {
  10084. height: math.unit(3.5, "inches"),
  10085. weight: math.unit(19, "grams"),
  10086. name: "Front",
  10087. image: {
  10088. source: "./media/characters/mallow/front.svg",
  10089. extra: 471 / 431
  10090. }
  10091. },
  10092. back: {
  10093. height: math.unit(3.5, "inches"),
  10094. weight: math.unit(19, "grams"),
  10095. name: "Back",
  10096. image: {
  10097. source: "./media/characters/mallow/back.svg",
  10098. extra: 471 / 431
  10099. }
  10100. },
  10101. },
  10102. [
  10103. {
  10104. name: "Normal",
  10105. height: math.unit(3.5, "inches"),
  10106. default: true
  10107. },
  10108. ]
  10109. ))
  10110. characterMakers.push(() => makeCharacter(
  10111. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  10112. {
  10113. front: {
  10114. height: math.unit(9, "feet"),
  10115. weight: math.unit(230, "kg"),
  10116. name: "Front",
  10117. image: {
  10118. source: "./media/characters/starry-aqua/front.svg"
  10119. }
  10120. },
  10121. back: {
  10122. height: math.unit(9, "feet"),
  10123. weight: math.unit(230, "kg"),
  10124. name: "Back",
  10125. image: {
  10126. source: "./media/characters/starry-aqua/back.svg"
  10127. }
  10128. },
  10129. hand: {
  10130. height: math.unit(9 * 0.1168, "feet"),
  10131. name: "Hand",
  10132. image: {
  10133. source: "./media/characters/starry-aqua/hand.svg"
  10134. }
  10135. },
  10136. foot: {
  10137. height: math.unit(9 * 0.18, "feet"),
  10138. name: "Foot",
  10139. image: {
  10140. source: "./media/characters/starry-aqua/foot.svg"
  10141. }
  10142. }
  10143. },
  10144. [
  10145. {
  10146. name: "Micro",
  10147. height: math.unit(3, "inches")
  10148. },
  10149. {
  10150. name: "Normal",
  10151. height: math.unit(9, "feet")
  10152. },
  10153. {
  10154. name: "Macro",
  10155. height: math.unit(300, "feet"),
  10156. default: true
  10157. },
  10158. {
  10159. name: "Megamacro",
  10160. height: math.unit(3200, "feet")
  10161. }
  10162. ]
  10163. ))
  10164. characterMakers.push(() => makeCharacter(
  10165. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  10166. {
  10167. front: {
  10168. height: math.unit(15, "feet"),
  10169. weight: math.unit(5026, "lb"),
  10170. name: "Front",
  10171. image: {
  10172. source: "./media/characters/luka-towers/front.svg",
  10173. extra: 1269/1133,
  10174. bottom: 51/1320
  10175. }
  10176. },
  10177. },
  10178. [
  10179. {
  10180. name: "Normal",
  10181. height: math.unit(15, "feet"),
  10182. default: true
  10183. },
  10184. {
  10185. name: "Minimacro",
  10186. height: math.unit(25, "feet")
  10187. },
  10188. {
  10189. name: "Macro",
  10190. height: math.unit(320, "feet")
  10191. },
  10192. {
  10193. name: "Megamacro",
  10194. height: math.unit(35000, "feet")
  10195. },
  10196. {
  10197. name: "Gigamacro",
  10198. height: math.unit(4000, "miles")
  10199. },
  10200. {
  10201. name: "Teramacro",
  10202. height: math.unit(15000, "miles")
  10203. },
  10204. ]
  10205. ))
  10206. characterMakers.push(() => makeCharacter(
  10207. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10208. {
  10209. front: {
  10210. height: math.unit(6, "feet"),
  10211. weight: math.unit(150, "lb"),
  10212. name: "Front",
  10213. image: {
  10214. source: "./media/characters/natalie-nightring/front.svg",
  10215. extra: 1,
  10216. bottom: 0.06
  10217. }
  10218. },
  10219. },
  10220. [
  10221. {
  10222. name: "Uh Oh",
  10223. height: math.unit(0.1, "mm")
  10224. },
  10225. {
  10226. name: "Small",
  10227. height: math.unit(3, "inches")
  10228. },
  10229. {
  10230. name: "Human Scale",
  10231. height: math.unit(6, "feet")
  10232. },
  10233. {
  10234. name: "Librarian",
  10235. height: math.unit(50, "feet"),
  10236. default: true
  10237. },
  10238. {
  10239. name: "Immense",
  10240. height: math.unit(200, "miles")
  10241. },
  10242. ]
  10243. ))
  10244. characterMakers.push(() => makeCharacter(
  10245. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10246. {
  10247. front: {
  10248. height: math.unit(6, "feet"),
  10249. weight: math.unit(180, "lbs"),
  10250. name: "Front",
  10251. image: {
  10252. source: "./media/characters/danni-rosie/front.svg",
  10253. extra: 1260 / 1128,
  10254. bottom: 0.022
  10255. }
  10256. },
  10257. },
  10258. [
  10259. {
  10260. name: "Micro",
  10261. height: math.unit(2, "inches"),
  10262. default: true
  10263. },
  10264. ]
  10265. ))
  10266. characterMakers.push(() => makeCharacter(
  10267. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10268. {
  10269. front: {
  10270. height: math.unit(5 + 9 / 12, "feet"),
  10271. weight: math.unit(220, "lb"),
  10272. name: "Front",
  10273. image: {
  10274. source: "./media/characters/samantha-kruse/front.svg",
  10275. extra: (985 / 935),
  10276. bottom: 0.03
  10277. }
  10278. },
  10279. frontUndressed: {
  10280. height: math.unit(5 + 9 / 12, "feet"),
  10281. weight: math.unit(220, "lb"),
  10282. name: "Front (Undressed)",
  10283. image: {
  10284. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10285. extra: (973 / 923),
  10286. bottom: 0.025
  10287. }
  10288. },
  10289. fat: {
  10290. height: math.unit(5 + 9 / 12, "feet"),
  10291. weight: math.unit(900, "lb"),
  10292. name: "Front (Fat)",
  10293. image: {
  10294. source: "./media/characters/samantha-kruse/fat.svg",
  10295. extra: 2688 / 2561
  10296. }
  10297. },
  10298. },
  10299. [
  10300. {
  10301. name: "Normal",
  10302. height: math.unit(5 + 9 / 12, "feet"),
  10303. default: true
  10304. }
  10305. ]
  10306. ))
  10307. characterMakers.push(() => makeCharacter(
  10308. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10309. {
  10310. back: {
  10311. height: math.unit(5 + 4 / 12, "feet"),
  10312. weight: math.unit(4963, "lb"),
  10313. name: "Back",
  10314. image: {
  10315. source: "./media/characters/amelia-rosie/back.svg",
  10316. extra: 1113 / 963,
  10317. bottom: 0.01
  10318. }
  10319. },
  10320. },
  10321. [
  10322. {
  10323. name: "Level 0",
  10324. height: math.unit(5 + 4 / 12, "feet")
  10325. },
  10326. {
  10327. name: "Level 1",
  10328. height: math.unit(164597, "feet"),
  10329. default: true
  10330. },
  10331. {
  10332. name: "Level 2",
  10333. height: math.unit(956243, "miles")
  10334. },
  10335. {
  10336. name: "Level 3",
  10337. height: math.unit(29421709423, "miles")
  10338. },
  10339. {
  10340. name: "Level 4",
  10341. height: math.unit(154, "lightyears")
  10342. },
  10343. {
  10344. name: "Level 5",
  10345. height: math.unit(4738272, "lightyears")
  10346. },
  10347. {
  10348. name: "Level 6",
  10349. height: math.unit(145787152896, "lightyears")
  10350. },
  10351. ]
  10352. ))
  10353. characterMakers.push(() => makeCharacter(
  10354. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10355. {
  10356. front: {
  10357. height: math.unit(5 + 11 / 12, "feet"),
  10358. weight: math.unit(65, "kg"),
  10359. name: "Front",
  10360. image: {
  10361. source: "./media/characters/rook-kitara/front.svg",
  10362. extra: 1347 / 1274,
  10363. bottom: 0.005
  10364. }
  10365. },
  10366. },
  10367. [
  10368. {
  10369. name: "Totally Unfair",
  10370. height: math.unit(1.8, "mm")
  10371. },
  10372. {
  10373. name: "Lap Rookie",
  10374. height: math.unit(1.4, "feet")
  10375. },
  10376. {
  10377. name: "Normal",
  10378. height: math.unit(5 + 11 / 12, "feet"),
  10379. default: true
  10380. },
  10381. {
  10382. name: "How Did This Happen",
  10383. height: math.unit(80, "miles")
  10384. }
  10385. ]
  10386. ))
  10387. characterMakers.push(() => makeCharacter(
  10388. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10389. {
  10390. front: {
  10391. height: math.unit(7, "feet"),
  10392. weight: math.unit(300, "lb"),
  10393. name: "Front",
  10394. image: {
  10395. source: "./media/characters/pisces/front.svg",
  10396. extra: 2255 / 2115,
  10397. bottom: 0.03
  10398. }
  10399. },
  10400. back: {
  10401. height: math.unit(7, "feet"),
  10402. weight: math.unit(300, "lb"),
  10403. name: "Back",
  10404. image: {
  10405. source: "./media/characters/pisces/back.svg",
  10406. extra: 2146 / 2055,
  10407. bottom: 0.04
  10408. }
  10409. },
  10410. },
  10411. [
  10412. {
  10413. name: "Normal",
  10414. height: math.unit(7, "feet"),
  10415. default: true
  10416. },
  10417. {
  10418. name: "Swimming Pool",
  10419. height: math.unit(12.2, "meters")
  10420. },
  10421. {
  10422. name: "Olympic Swimming Pool",
  10423. height: math.unit(56.3, "meters")
  10424. },
  10425. {
  10426. name: "Lake Superior",
  10427. height: math.unit(93900, "meters")
  10428. },
  10429. {
  10430. name: "Mediterranean Sea",
  10431. height: math.unit(644457, "meters")
  10432. },
  10433. {
  10434. name: "World's Oceans",
  10435. height: math.unit(4567491, "meters")
  10436. },
  10437. ]
  10438. ))
  10439. characterMakers.push(() => makeCharacter(
  10440. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10441. {
  10442. front: {
  10443. height: math.unit(2.3, "meters"),
  10444. weight: math.unit(120, "kg"),
  10445. name: "Front",
  10446. image: {
  10447. source: "./media/characters/zelas/front.svg"
  10448. }
  10449. },
  10450. side: {
  10451. height: math.unit(2.3, "meters"),
  10452. weight: math.unit(120, "kg"),
  10453. name: "Side",
  10454. image: {
  10455. source: "./media/characters/zelas/side.svg"
  10456. }
  10457. },
  10458. back: {
  10459. height: math.unit(2.3, "meters"),
  10460. weight: math.unit(120, "kg"),
  10461. name: "Back",
  10462. image: {
  10463. source: "./media/characters/zelas/back.svg"
  10464. }
  10465. },
  10466. foot: {
  10467. height: math.unit(1.116, "feet"),
  10468. name: "Foot",
  10469. image: {
  10470. source: "./media/characters/zelas/foot.svg"
  10471. }
  10472. },
  10473. },
  10474. [
  10475. {
  10476. name: "Normal",
  10477. height: math.unit(2.3, "meters")
  10478. },
  10479. {
  10480. name: "Macro",
  10481. height: math.unit(30, "meters"),
  10482. default: true
  10483. },
  10484. ]
  10485. ))
  10486. characterMakers.push(() => makeCharacter(
  10487. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10488. {
  10489. front: {
  10490. height: math.unit(1, "inch"),
  10491. weight: math.unit(0.21, "grams"),
  10492. name: "Front",
  10493. image: {
  10494. source: "./media/characters/talbot/front.svg",
  10495. extra: 594 / 544
  10496. }
  10497. },
  10498. },
  10499. [
  10500. {
  10501. name: "Micro",
  10502. height: math.unit(1, "inch"),
  10503. default: true
  10504. },
  10505. ]
  10506. ))
  10507. characterMakers.push(() => makeCharacter(
  10508. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10509. {
  10510. front: {
  10511. height: math.unit(3 + 3 / 12, "feet"),
  10512. weight: math.unit(51.8, "lb"),
  10513. name: "Front",
  10514. image: {
  10515. source: "./media/characters/fliss/front.svg",
  10516. extra: 840 / 640
  10517. }
  10518. },
  10519. },
  10520. [
  10521. {
  10522. name: "Teeny Tiny",
  10523. height: math.unit(1, "mm")
  10524. },
  10525. {
  10526. name: "Small",
  10527. height: math.unit(1, "inch"),
  10528. default: true
  10529. },
  10530. {
  10531. name: "Standard Sylveon",
  10532. height: math.unit(3 + 3 / 12, "feet")
  10533. },
  10534. {
  10535. name: "Large Nuisance",
  10536. height: math.unit(33, "feet")
  10537. },
  10538. {
  10539. name: "City Filler",
  10540. height: math.unit(3000, "feet")
  10541. },
  10542. {
  10543. name: "New Horizon",
  10544. height: math.unit(6000, "miles")
  10545. },
  10546. ]
  10547. ))
  10548. characterMakers.push(() => makeCharacter(
  10549. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10550. {
  10551. front: {
  10552. height: math.unit(5, "cm"),
  10553. weight: math.unit(1.94, "g"),
  10554. name: "Front",
  10555. image: {
  10556. source: "./media/characters/fleta/front.svg",
  10557. extra: 835 / 803
  10558. }
  10559. },
  10560. back: {
  10561. height: math.unit(5, "cm"),
  10562. weight: math.unit(1.94, "g"),
  10563. name: "Back",
  10564. image: {
  10565. source: "./media/characters/fleta/back.svg",
  10566. extra: 835 / 803
  10567. }
  10568. },
  10569. },
  10570. [
  10571. {
  10572. name: "Micro",
  10573. height: math.unit(5, "cm"),
  10574. default: true
  10575. },
  10576. ]
  10577. ))
  10578. characterMakers.push(() => makeCharacter(
  10579. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10580. {
  10581. front: {
  10582. height: math.unit(6, "feet"),
  10583. weight: math.unit(225, "lb"),
  10584. name: "Front",
  10585. image: {
  10586. source: "./media/characters/dominic/front.svg",
  10587. extra: 1770 / 1620,
  10588. bottom: 0.025
  10589. }
  10590. },
  10591. back: {
  10592. height: math.unit(6, "feet"),
  10593. weight: math.unit(225, "lb"),
  10594. name: "Back",
  10595. image: {
  10596. source: "./media/characters/dominic/back.svg",
  10597. extra: 1745 / 1620,
  10598. bottom: 0.065
  10599. }
  10600. },
  10601. },
  10602. [
  10603. {
  10604. name: "Nano",
  10605. height: math.unit(0.1, "mm")
  10606. },
  10607. {
  10608. name: "Micro-",
  10609. height: math.unit(1, "mm")
  10610. },
  10611. {
  10612. name: "Micro",
  10613. height: math.unit(4, "inches")
  10614. },
  10615. {
  10616. name: "Normal",
  10617. height: math.unit(6 + 4 / 12, "feet"),
  10618. default: true
  10619. },
  10620. {
  10621. name: "Macro",
  10622. height: math.unit(115, "feet")
  10623. },
  10624. {
  10625. name: "Macro+",
  10626. height: math.unit(955, "feet")
  10627. },
  10628. {
  10629. name: "Megamacro",
  10630. height: math.unit(8990, "feet")
  10631. },
  10632. {
  10633. name: "Gigmacro",
  10634. height: math.unit(9310, "miles")
  10635. },
  10636. {
  10637. name: "Teramacro",
  10638. height: math.unit(1567005010, "miles")
  10639. },
  10640. {
  10641. name: "Examacro",
  10642. height: math.unit(1425, "parsecs")
  10643. },
  10644. ]
  10645. ))
  10646. characterMakers.push(() => makeCharacter(
  10647. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10648. {
  10649. front: {
  10650. height: math.unit(400, "feet"),
  10651. weight: math.unit(44444444, "lb"),
  10652. name: "Front",
  10653. image: {
  10654. source: "./media/characters/major-colonel/front.svg"
  10655. }
  10656. },
  10657. back: {
  10658. height: math.unit(400, "feet"),
  10659. weight: math.unit(44444444, "lb"),
  10660. name: "Back",
  10661. image: {
  10662. source: "./media/characters/major-colonel/back.svg"
  10663. }
  10664. },
  10665. },
  10666. [
  10667. {
  10668. name: "Macro",
  10669. height: math.unit(400, "feet"),
  10670. default: true
  10671. },
  10672. ]
  10673. ))
  10674. characterMakers.push(() => makeCharacter(
  10675. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10676. {
  10677. catFront: {
  10678. height: math.unit(6, "feet"),
  10679. weight: math.unit(120, "lb"),
  10680. name: "Front (Cat Side)",
  10681. image: {
  10682. source: "./media/characters/axel-lycan/cat-front.svg",
  10683. extra: 430 / 402,
  10684. bottom: 43 / 472.35
  10685. }
  10686. },
  10687. catBack: {
  10688. height: math.unit(6, "feet"),
  10689. weight: math.unit(120, "lb"),
  10690. name: "Back (Cat Side)",
  10691. image: {
  10692. source: "./media/characters/axel-lycan/cat-back.svg",
  10693. extra: 447 / 419,
  10694. bottom: 23.3 / 469
  10695. }
  10696. },
  10697. wolfFront: {
  10698. height: math.unit(6, "feet"),
  10699. weight: math.unit(120, "lb"),
  10700. name: "Front (Wolf Side)",
  10701. image: {
  10702. source: "./media/characters/axel-lycan/wolf-front.svg",
  10703. extra: 485 / 456,
  10704. bottom: 19 / 504
  10705. }
  10706. },
  10707. wolfBack: {
  10708. height: math.unit(6, "feet"),
  10709. weight: math.unit(120, "lb"),
  10710. name: "Back (Wolf Side)",
  10711. image: {
  10712. source: "./media/characters/axel-lycan/wolf-back.svg",
  10713. extra: 475 / 438,
  10714. bottom: 39.2 / 514
  10715. }
  10716. },
  10717. },
  10718. [
  10719. {
  10720. name: "Macro",
  10721. height: math.unit(1, "km"),
  10722. default: true
  10723. },
  10724. ]
  10725. ))
  10726. characterMakers.push(() => makeCharacter(
  10727. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10728. {
  10729. front: {
  10730. height: math.unit(5 + 9 / 12, "feet"),
  10731. weight: math.unit(175, "lb"),
  10732. name: "Front",
  10733. image: {
  10734. source: "./media/characters/vanrel-hyena/front.svg",
  10735. extra: 1086 / 1010,
  10736. bottom: 0.04
  10737. }
  10738. },
  10739. },
  10740. [
  10741. {
  10742. name: "Normal",
  10743. height: math.unit(5 + 9 / 12, "feet"),
  10744. default: true
  10745. },
  10746. ]
  10747. ))
  10748. characterMakers.push(() => makeCharacter(
  10749. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10750. {
  10751. front: {
  10752. height: math.unit(6, "feet"),
  10753. weight: math.unit(103, "lb"),
  10754. name: "Front",
  10755. image: {
  10756. source: "./media/characters/abbott-absol/front.svg",
  10757. extra: 2010 / 1842
  10758. }
  10759. },
  10760. },
  10761. [
  10762. {
  10763. name: "Megamicro",
  10764. height: math.unit(0.1, "mm")
  10765. },
  10766. {
  10767. name: "Micro",
  10768. height: math.unit(1, "inch")
  10769. },
  10770. {
  10771. name: "Normal",
  10772. height: math.unit(6, "feet"),
  10773. default: true
  10774. },
  10775. ]
  10776. ))
  10777. characterMakers.push(() => makeCharacter(
  10778. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10779. {
  10780. front: {
  10781. height: math.unit(6, "feet"),
  10782. weight: math.unit(264, "lb"),
  10783. name: "Front",
  10784. image: {
  10785. source: "./media/characters/hector/front.svg",
  10786. extra: 2280 / 2130,
  10787. bottom: 0.07
  10788. }
  10789. },
  10790. },
  10791. [
  10792. {
  10793. name: "Normal",
  10794. height: math.unit(12.25, "foot"),
  10795. default: true
  10796. },
  10797. {
  10798. name: "Macro",
  10799. height: math.unit(160, "feet")
  10800. },
  10801. ]
  10802. ))
  10803. characterMakers.push(() => makeCharacter(
  10804. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10805. {
  10806. front: {
  10807. height: math.unit(6, "feet"),
  10808. weight: math.unit(150, "lb"),
  10809. name: "Front",
  10810. image: {
  10811. source: "./media/characters/sal/front.svg",
  10812. extra: 1846 / 1699,
  10813. bottom: 0.04
  10814. }
  10815. },
  10816. },
  10817. [
  10818. {
  10819. name: "Megamacro",
  10820. height: math.unit(10, "miles"),
  10821. default: true
  10822. },
  10823. ]
  10824. ))
  10825. characterMakers.push(() => makeCharacter(
  10826. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10827. {
  10828. front: {
  10829. height: math.unit(3, "meters"),
  10830. weight: math.unit(450, "kg"),
  10831. name: "front",
  10832. image: {
  10833. source: "./media/characters/ranger/front.svg",
  10834. extra: 2401 / 2243,
  10835. bottom: 0.05
  10836. }
  10837. },
  10838. },
  10839. [
  10840. {
  10841. name: "Normal",
  10842. height: math.unit(3, "meters"),
  10843. default: true
  10844. },
  10845. ]
  10846. ))
  10847. characterMakers.push(() => makeCharacter(
  10848. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10849. {
  10850. front: {
  10851. height: math.unit(14, "feet"),
  10852. weight: math.unit(800, "kg"),
  10853. name: "Front",
  10854. image: {
  10855. source: "./media/characters/theresa/front.svg",
  10856. extra: 3575 / 3346,
  10857. bottom: 0.03
  10858. }
  10859. },
  10860. },
  10861. [
  10862. {
  10863. name: "Normal",
  10864. height: math.unit(14, "feet"),
  10865. default: true
  10866. },
  10867. ]
  10868. ))
  10869. characterMakers.push(() => makeCharacter(
  10870. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10871. {
  10872. front: {
  10873. height: math.unit(6, "feet"),
  10874. weight: math.unit(3, "kg"),
  10875. name: "Front",
  10876. image: {
  10877. source: "./media/characters/ine/front.svg",
  10878. extra: 678 / 539,
  10879. bottom: 0.023
  10880. }
  10881. },
  10882. },
  10883. [
  10884. {
  10885. name: "Normal",
  10886. height: math.unit(2.265, "feet"),
  10887. default: true
  10888. },
  10889. ]
  10890. ))
  10891. characterMakers.push(() => makeCharacter(
  10892. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10893. {
  10894. front: {
  10895. height: math.unit(5, "feet"),
  10896. weight: math.unit(30, "kg"),
  10897. name: "Front",
  10898. image: {
  10899. source: "./media/characters/vial/front.svg",
  10900. extra: 1365 / 1277,
  10901. bottom: 0.04
  10902. }
  10903. },
  10904. },
  10905. [
  10906. {
  10907. name: "Normal",
  10908. height: math.unit(5, "feet"),
  10909. default: true
  10910. },
  10911. ]
  10912. ))
  10913. characterMakers.push(() => makeCharacter(
  10914. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10915. {
  10916. side: {
  10917. height: math.unit(3.4, "meters"),
  10918. weight: math.unit(1000, "lb"),
  10919. name: "Side",
  10920. image: {
  10921. source: "./media/characters/rovoska/side.svg",
  10922. extra: 4403 / 1515
  10923. }
  10924. },
  10925. },
  10926. [
  10927. {
  10928. name: "Normal",
  10929. height: math.unit(3.4, "meters"),
  10930. default: true
  10931. },
  10932. ]
  10933. ))
  10934. characterMakers.push(() => makeCharacter(
  10935. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10936. {
  10937. front: {
  10938. height: math.unit(8, "feet"),
  10939. weight: math.unit(315, "lb"),
  10940. name: "Front",
  10941. image: {
  10942. source: "./media/characters/gunner-rotthbauer/front.svg"
  10943. }
  10944. },
  10945. back: {
  10946. height: math.unit(8, "feet"),
  10947. weight: math.unit(315, "lb"),
  10948. name: "Back",
  10949. image: {
  10950. source: "./media/characters/gunner-rotthbauer/back.svg"
  10951. }
  10952. },
  10953. },
  10954. [
  10955. {
  10956. name: "Micro",
  10957. height: math.unit(3.5, "inches")
  10958. },
  10959. {
  10960. name: "Normal",
  10961. height: math.unit(8, "feet"),
  10962. default: true
  10963. },
  10964. {
  10965. name: "Macro",
  10966. height: math.unit(250, "feet")
  10967. },
  10968. {
  10969. name: "Megamacro",
  10970. height: math.unit(1, "AU")
  10971. },
  10972. ]
  10973. ))
  10974. characterMakers.push(() => makeCharacter(
  10975. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10976. {
  10977. front: {
  10978. height: math.unit(5 + 5 / 12, "feet"),
  10979. weight: math.unit(140, "lb"),
  10980. name: "Front",
  10981. image: {
  10982. source: "./media/characters/allatia/front.svg",
  10983. extra: 1227 / 1180,
  10984. bottom: 0.027
  10985. }
  10986. },
  10987. },
  10988. [
  10989. {
  10990. name: "Normal",
  10991. height: math.unit(5 + 5 / 12, "feet")
  10992. },
  10993. {
  10994. name: "Macro",
  10995. height: math.unit(250, "feet"),
  10996. default: true
  10997. },
  10998. {
  10999. name: "Megamacro",
  11000. height: math.unit(8, "miles")
  11001. }
  11002. ]
  11003. ))
  11004. characterMakers.push(() => makeCharacter(
  11005. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  11006. {
  11007. front: {
  11008. height: math.unit(6, "feet"),
  11009. weight: math.unit(120, "lb"),
  11010. name: "Front",
  11011. image: {
  11012. source: "./media/characters/tene/front.svg",
  11013. extra: 814/750,
  11014. bottom: 36/850
  11015. }
  11016. },
  11017. stomping: {
  11018. height: math.unit(2.025, "meters"),
  11019. weight: math.unit(120, "lb"),
  11020. name: "Stomping",
  11021. image: {
  11022. source: "./media/characters/tene/stomping.svg",
  11023. extra: 885/821,
  11024. bottom: 15/900
  11025. }
  11026. },
  11027. sitting: {
  11028. height: math.unit(1, "meter"),
  11029. weight: math.unit(120, "lb"),
  11030. name: "Sitting",
  11031. image: {
  11032. source: "./media/characters/tene/sitting.svg",
  11033. extra: 396/366,
  11034. bottom: 79/475
  11035. }
  11036. },
  11037. smiling: {
  11038. height: math.unit(1.2, "feet"),
  11039. name: "Smiling",
  11040. image: {
  11041. source: "./media/characters/tene/smiling.svg",
  11042. extra: 1364/1071,
  11043. bottom: 0/1364
  11044. }
  11045. },
  11046. smug: {
  11047. height: math.unit(1.3, "feet"),
  11048. name: "Smug",
  11049. image: {
  11050. source: "./media/characters/tene/smug.svg",
  11051. extra: 1323/1082,
  11052. bottom: 0/1323
  11053. }
  11054. },
  11055. feral: {
  11056. height: math.unit(3.9, "feet"),
  11057. weight: math.unit(250, "lb"),
  11058. name: "Feral",
  11059. image: {
  11060. source: "./media/characters/tene/feral.svg",
  11061. extra: 717 / 458,
  11062. bottom: 0.179
  11063. }
  11064. },
  11065. },
  11066. [
  11067. {
  11068. name: "Normal",
  11069. height: math.unit(6, "feet")
  11070. },
  11071. {
  11072. name: "Macro",
  11073. height: math.unit(300, "feet"),
  11074. default: true
  11075. },
  11076. {
  11077. name: "Megamacro",
  11078. height: math.unit(5, "miles")
  11079. },
  11080. ]
  11081. ))
  11082. characterMakers.push(() => makeCharacter(
  11083. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  11084. {
  11085. side: {
  11086. height: math.unit(6, "feet"),
  11087. name: "Side",
  11088. image: {
  11089. source: "./media/characters/evander/side.svg",
  11090. extra: 877 / 477
  11091. }
  11092. },
  11093. },
  11094. [
  11095. {
  11096. name: "Normal",
  11097. height: math.unit(0.83, "meters"),
  11098. default: true
  11099. },
  11100. ]
  11101. ))
  11102. characterMakers.push(() => makeCharacter(
  11103. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  11104. {
  11105. front: {
  11106. height: math.unit(12, "feet"),
  11107. weight: math.unit(1000, "lb"),
  11108. name: "Front",
  11109. image: {
  11110. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  11111. extra: 1762 / 1611
  11112. }
  11113. },
  11114. back: {
  11115. height: math.unit(12, "feet"),
  11116. weight: math.unit(1000, "lb"),
  11117. name: "Back",
  11118. image: {
  11119. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  11120. extra: 1762 / 1611
  11121. }
  11122. },
  11123. },
  11124. [
  11125. {
  11126. name: "Normal",
  11127. height: math.unit(12, "feet"),
  11128. default: true
  11129. },
  11130. {
  11131. name: "Kaiju",
  11132. height: math.unit(150, "feet")
  11133. },
  11134. ]
  11135. ))
  11136. characterMakers.push(() => makeCharacter(
  11137. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  11138. {
  11139. front: {
  11140. height: math.unit(6, "feet"),
  11141. weight: math.unit(150, "lb"),
  11142. name: "Front",
  11143. image: {
  11144. source: "./media/characters/zero-alurus/front.svg"
  11145. }
  11146. },
  11147. back: {
  11148. height: math.unit(6, "feet"),
  11149. weight: math.unit(150, "lb"),
  11150. name: "Back",
  11151. image: {
  11152. source: "./media/characters/zero-alurus/back.svg"
  11153. }
  11154. },
  11155. },
  11156. [
  11157. {
  11158. name: "Normal",
  11159. height: math.unit(5 + 10 / 12, "feet")
  11160. },
  11161. {
  11162. name: "Macro",
  11163. height: math.unit(60, "feet"),
  11164. default: true
  11165. },
  11166. {
  11167. name: "Macro+",
  11168. height: math.unit(450, "feet")
  11169. },
  11170. ]
  11171. ))
  11172. characterMakers.push(() => makeCharacter(
  11173. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  11174. {
  11175. front: {
  11176. height: math.unit(6, "feet"),
  11177. weight: math.unit(200, "lb"),
  11178. name: "Front",
  11179. image: {
  11180. source: "./media/characters/mega-shi/front.svg",
  11181. extra: 1279 / 1250,
  11182. bottom: 0.02
  11183. }
  11184. },
  11185. back: {
  11186. height: math.unit(6, "feet"),
  11187. weight: math.unit(200, "lb"),
  11188. name: "Back",
  11189. image: {
  11190. source: "./media/characters/mega-shi/back.svg",
  11191. extra: 1279 / 1250,
  11192. bottom: 0.02
  11193. }
  11194. },
  11195. },
  11196. [
  11197. {
  11198. name: "Micro",
  11199. height: math.unit(16 + 6 / 12, "feet")
  11200. },
  11201. {
  11202. name: "Third Dimension",
  11203. height: math.unit(40, "meters")
  11204. },
  11205. {
  11206. name: "Normal",
  11207. height: math.unit(660, "feet"),
  11208. default: true
  11209. },
  11210. {
  11211. name: "Megamacro",
  11212. height: math.unit(10, "miles")
  11213. },
  11214. {
  11215. name: "Planetary Launch",
  11216. height: math.unit(500, "miles")
  11217. },
  11218. {
  11219. name: "Interstellar",
  11220. height: math.unit(1e9, "miles")
  11221. },
  11222. {
  11223. name: "Leaving the Universe",
  11224. height: math.unit(1, "gigaparsec")
  11225. },
  11226. {
  11227. name: "Travelling Universes",
  11228. height: math.unit(30e15, "parsecs")
  11229. },
  11230. ]
  11231. ))
  11232. characterMakers.push(() => makeCharacter(
  11233. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11234. {
  11235. front: {
  11236. height: math.unit(5 + 4/12, "feet"),
  11237. weight: math.unit(120, "lb"),
  11238. name: "Front",
  11239. image: {
  11240. source: "./media/characters/odyssey/front.svg",
  11241. extra: 1747/1571,
  11242. bottom: 47/1794
  11243. }
  11244. },
  11245. side: {
  11246. height: math.unit(5.1, "feet"),
  11247. weight: math.unit(120, "lb"),
  11248. name: "Side",
  11249. image: {
  11250. source: "./media/characters/odyssey/side.svg",
  11251. extra: 1847/1619,
  11252. bottom: 47/1894
  11253. }
  11254. },
  11255. lounging: {
  11256. height: math.unit(1.464, "feet"),
  11257. weight: math.unit(120, "lb"),
  11258. name: "Lounging",
  11259. image: {
  11260. source: "./media/characters/odyssey/lounging.svg",
  11261. extra: 1235/837,
  11262. bottom: 551/1786
  11263. }
  11264. },
  11265. },
  11266. [
  11267. {
  11268. name: "Normal",
  11269. height: math.unit(5 + 4 / 12, "feet")
  11270. },
  11271. {
  11272. name: "Macro",
  11273. height: math.unit(1, "km")
  11274. },
  11275. {
  11276. name: "Megamacro",
  11277. height: math.unit(3000, "km")
  11278. },
  11279. {
  11280. name: "Gigamacro",
  11281. height: math.unit(1, "AU"),
  11282. default: true
  11283. },
  11284. {
  11285. name: "Omniversal",
  11286. height: math.unit(100e14, "lightyears")
  11287. },
  11288. ]
  11289. ))
  11290. characterMakers.push(() => makeCharacter(
  11291. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11292. {
  11293. front: {
  11294. height: math.unit(5 + 10/12, "feet"),
  11295. name: "Front",
  11296. image: {
  11297. source: "./media/characters/mekuto/front.svg",
  11298. extra: 875/835,
  11299. bottom: 46/921
  11300. }
  11301. },
  11302. },
  11303. [
  11304. {
  11305. name: "Minimicro",
  11306. height: math.unit(0.2, "inches")
  11307. },
  11308. {
  11309. name: "Micro",
  11310. height: math.unit(1.5, "inches")
  11311. },
  11312. {
  11313. name: "Normal",
  11314. height: math.unit(5 + 10 / 12, "feet"),
  11315. default: true
  11316. },
  11317. {
  11318. name: "Minimacro",
  11319. height: math.unit(17 + 9 / 12, "feet")
  11320. },
  11321. {
  11322. name: "Macro",
  11323. height: math.unit(177.5, "feet")
  11324. },
  11325. {
  11326. name: "Megamacro",
  11327. height: math.unit(152, "miles")
  11328. },
  11329. ]
  11330. ))
  11331. characterMakers.push(() => makeCharacter(
  11332. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11333. {
  11334. front: {
  11335. height: math.unit(6.5, "inches"),
  11336. weight: math.unit(13, "oz"),
  11337. name: "Front",
  11338. image: {
  11339. source: "./media/characters/dafydd-tomos/front.svg",
  11340. extra: 2990 / 2603,
  11341. bottom: 0.03
  11342. }
  11343. },
  11344. },
  11345. [
  11346. {
  11347. name: "Micro",
  11348. height: math.unit(6.5, "inches"),
  11349. default: true
  11350. },
  11351. ]
  11352. ))
  11353. characterMakers.push(() => makeCharacter(
  11354. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11355. {
  11356. front: {
  11357. height: math.unit(6, "feet"),
  11358. weight: math.unit(150, "lb"),
  11359. name: "Front",
  11360. image: {
  11361. source: "./media/characters/splinter/front.svg",
  11362. extra: 2990 / 2882,
  11363. bottom: 0.04
  11364. }
  11365. },
  11366. back: {
  11367. height: math.unit(6, "feet"),
  11368. weight: math.unit(150, "lb"),
  11369. name: "Back",
  11370. image: {
  11371. source: "./media/characters/splinter/back.svg",
  11372. extra: 2990 / 2882,
  11373. bottom: 0.04
  11374. }
  11375. },
  11376. },
  11377. [
  11378. {
  11379. name: "Normal",
  11380. height: math.unit(6, "feet")
  11381. },
  11382. {
  11383. name: "Macro",
  11384. height: math.unit(230, "meters"),
  11385. default: true
  11386. },
  11387. ]
  11388. ))
  11389. characterMakers.push(() => makeCharacter(
  11390. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11391. {
  11392. front: {
  11393. height: math.unit(4 + 10 / 12, "feet"),
  11394. weight: math.unit(480, "lb"),
  11395. name: "Front",
  11396. image: {
  11397. source: "./media/characters/snow-gabumon/front.svg",
  11398. extra: 1140 / 963,
  11399. bottom: 0.058
  11400. }
  11401. },
  11402. back: {
  11403. height: math.unit(4 + 10 / 12, "feet"),
  11404. weight: math.unit(480, "lb"),
  11405. name: "Back",
  11406. image: {
  11407. source: "./media/characters/snow-gabumon/back.svg",
  11408. extra: 1115 / 962,
  11409. bottom: 0.041
  11410. }
  11411. },
  11412. frontUndresed: {
  11413. height: math.unit(4 + 10 / 12, "feet"),
  11414. weight: math.unit(480, "lb"),
  11415. name: "Front (Undressed)",
  11416. image: {
  11417. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11418. extra: 1061 / 960,
  11419. bottom: 0.045
  11420. }
  11421. },
  11422. },
  11423. [
  11424. {
  11425. name: "Micro",
  11426. height: math.unit(1, "inch")
  11427. },
  11428. {
  11429. name: "Normal",
  11430. height: math.unit(4 + 10 / 12, "feet"),
  11431. default: true
  11432. },
  11433. {
  11434. name: "Macro",
  11435. height: math.unit(200, "feet")
  11436. },
  11437. {
  11438. name: "Megamacro",
  11439. height: math.unit(120, "miles")
  11440. },
  11441. {
  11442. name: "Gigamacro",
  11443. height: math.unit(9800, "miles")
  11444. },
  11445. ]
  11446. ))
  11447. characterMakers.push(() => makeCharacter(
  11448. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11449. {
  11450. front: {
  11451. height: math.unit(1.7, "meters"),
  11452. weight: math.unit(140, "lb"),
  11453. name: "Front",
  11454. image: {
  11455. source: "./media/characters/moody/front.svg",
  11456. extra: 3226 / 3007,
  11457. bottom: 0.087
  11458. }
  11459. },
  11460. },
  11461. [
  11462. {
  11463. name: "Micro",
  11464. height: math.unit(1, "mm")
  11465. },
  11466. {
  11467. name: "Normal",
  11468. height: math.unit(1.7, "meters"),
  11469. default: true
  11470. },
  11471. {
  11472. name: "Macro",
  11473. height: math.unit(80, "meters")
  11474. },
  11475. {
  11476. name: "Macro+",
  11477. height: math.unit(500, "meters")
  11478. },
  11479. ]
  11480. ))
  11481. characterMakers.push(() => makeCharacter(
  11482. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11483. {
  11484. front: {
  11485. height: math.unit(6, "feet"),
  11486. weight: math.unit(150, "lb"),
  11487. name: "Front",
  11488. image: {
  11489. source: "./media/characters/zyas/front.svg",
  11490. extra: 1180 / 1120,
  11491. bottom: 0.045
  11492. }
  11493. },
  11494. },
  11495. [
  11496. {
  11497. name: "Normal",
  11498. height: math.unit(10, "feet"),
  11499. default: true
  11500. },
  11501. {
  11502. name: "Macro",
  11503. height: math.unit(500, "feet")
  11504. },
  11505. {
  11506. name: "Megamacro",
  11507. height: math.unit(5, "miles")
  11508. },
  11509. {
  11510. name: "Teramacro",
  11511. height: math.unit(150000, "miles")
  11512. },
  11513. ]
  11514. ))
  11515. characterMakers.push(() => makeCharacter(
  11516. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11517. {
  11518. front: {
  11519. height: math.unit(6, "feet"),
  11520. weight: math.unit(150, "lb"),
  11521. name: "Front",
  11522. image: {
  11523. source: "./media/characters/cuon/front.svg",
  11524. extra: 1390 / 1320,
  11525. bottom: 0.008
  11526. }
  11527. },
  11528. },
  11529. [
  11530. {
  11531. name: "Micro",
  11532. height: math.unit(3, "inches")
  11533. },
  11534. {
  11535. name: "Normal",
  11536. height: math.unit(18 + 9 / 12, "feet"),
  11537. default: true
  11538. },
  11539. {
  11540. name: "Macro",
  11541. height: math.unit(360, "feet")
  11542. },
  11543. {
  11544. name: "Megamacro",
  11545. height: math.unit(360, "miles")
  11546. },
  11547. ]
  11548. ))
  11549. characterMakers.push(() => makeCharacter(
  11550. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11551. {
  11552. front: {
  11553. height: math.unit(2.4, "meters"),
  11554. weight: math.unit(70, "kg"),
  11555. name: "Front",
  11556. image: {
  11557. source: "./media/characters/nyanuxk/front.svg",
  11558. extra: 1172 / 1084,
  11559. bottom: 0.065
  11560. }
  11561. },
  11562. side: {
  11563. height: math.unit(2.4, "meters"),
  11564. weight: math.unit(70, "kg"),
  11565. name: "Side",
  11566. image: {
  11567. source: "./media/characters/nyanuxk/side.svg",
  11568. extra: 1190 / 1132,
  11569. bottom: 0.007
  11570. }
  11571. },
  11572. back: {
  11573. height: math.unit(2.4, "meters"),
  11574. weight: math.unit(70, "kg"),
  11575. name: "Back",
  11576. image: {
  11577. source: "./media/characters/nyanuxk/back.svg",
  11578. extra: 1200 / 1141,
  11579. bottom: 0.015
  11580. }
  11581. },
  11582. foot: {
  11583. height: math.unit(0.52, "meters"),
  11584. name: "Foot",
  11585. image: {
  11586. source: "./media/characters/nyanuxk/foot.svg"
  11587. }
  11588. },
  11589. },
  11590. [
  11591. {
  11592. name: "Micro",
  11593. height: math.unit(2, "cm")
  11594. },
  11595. {
  11596. name: "Normal",
  11597. height: math.unit(2.4, "meters"),
  11598. default: true
  11599. },
  11600. {
  11601. name: "Smaller Macro",
  11602. height: math.unit(120, "meters")
  11603. },
  11604. {
  11605. name: "Bigger Macro",
  11606. height: math.unit(1.2, "km")
  11607. },
  11608. {
  11609. name: "Megamacro",
  11610. height: math.unit(15, "kilometers")
  11611. },
  11612. {
  11613. name: "Gigamacro",
  11614. height: math.unit(2000, "km")
  11615. },
  11616. {
  11617. name: "Teramacro",
  11618. height: math.unit(500000, "km")
  11619. },
  11620. ]
  11621. ))
  11622. characterMakers.push(() => makeCharacter(
  11623. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11624. {
  11625. side: {
  11626. height: math.unit(6, "feet"),
  11627. name: "Side",
  11628. image: {
  11629. source: "./media/characters/ailbhe/side.svg",
  11630. extra: 757 / 464,
  11631. bottom: 0.041
  11632. }
  11633. },
  11634. },
  11635. [
  11636. {
  11637. name: "Normal",
  11638. height: math.unit(1.07, "meters"),
  11639. default: true
  11640. },
  11641. ]
  11642. ))
  11643. characterMakers.push(() => makeCharacter(
  11644. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11645. {
  11646. front: {
  11647. height: math.unit(6, "feet"),
  11648. weight: math.unit(120, "kg"),
  11649. name: "Front",
  11650. image: {
  11651. source: "./media/characters/zevulfius/front.svg",
  11652. extra: 965 / 903
  11653. }
  11654. },
  11655. side: {
  11656. height: math.unit(6, "feet"),
  11657. weight: math.unit(120, "kg"),
  11658. name: "Side",
  11659. image: {
  11660. source: "./media/characters/zevulfius/side.svg",
  11661. extra: 939 / 900
  11662. }
  11663. },
  11664. back: {
  11665. height: math.unit(6, "feet"),
  11666. weight: math.unit(120, "kg"),
  11667. name: "Back",
  11668. image: {
  11669. source: "./media/characters/zevulfius/back.svg",
  11670. extra: 918 / 854,
  11671. bottom: 0.005
  11672. }
  11673. },
  11674. foot: {
  11675. height: math.unit(6 / 3.72, "feet"),
  11676. name: "Foot",
  11677. image: {
  11678. source: "./media/characters/zevulfius/foot.svg"
  11679. }
  11680. },
  11681. },
  11682. [
  11683. {
  11684. name: "Macro",
  11685. height: math.unit(750, "meters")
  11686. },
  11687. {
  11688. name: "Megamacro",
  11689. height: math.unit(20, "km"),
  11690. default: true
  11691. },
  11692. {
  11693. name: "Gigamacro",
  11694. height: math.unit(2000, "km")
  11695. },
  11696. {
  11697. name: "Teramacro",
  11698. height: math.unit(250000, "km")
  11699. },
  11700. ]
  11701. ))
  11702. characterMakers.push(() => makeCharacter(
  11703. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11704. {
  11705. front: {
  11706. height: math.unit(100, "feet"),
  11707. weight: math.unit(350, "kg"),
  11708. name: "Front",
  11709. image: {
  11710. source: "./media/characters/rikes/front.svg",
  11711. extra: 1565 / 1483,
  11712. bottom: 0.017
  11713. }
  11714. },
  11715. },
  11716. [
  11717. {
  11718. name: "Macro",
  11719. height: math.unit(100, "feet"),
  11720. default: true
  11721. },
  11722. ]
  11723. ))
  11724. characterMakers.push(() => makeCharacter(
  11725. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11726. {
  11727. front: {
  11728. height: math.unit(8, "feet"),
  11729. weight: math.unit(356, "lb"),
  11730. name: "Front",
  11731. image: {
  11732. source: "./media/characters/adam-silver-mane/front.svg",
  11733. extra: 1036/937,
  11734. bottom: 63/1099
  11735. }
  11736. },
  11737. side: {
  11738. height: math.unit(8, "feet"),
  11739. weight: math.unit(356, "lb"),
  11740. name: "Side",
  11741. image: {
  11742. source: "./media/characters/adam-silver-mane/side.svg",
  11743. extra: 997/901,
  11744. bottom: 59/1056
  11745. }
  11746. },
  11747. frontNsfw: {
  11748. height: math.unit(8, "feet"),
  11749. weight: math.unit(356, "lb"),
  11750. name: "Front (NSFW)",
  11751. image: {
  11752. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11753. extra: 1036/937,
  11754. bottom: 63/1099
  11755. }
  11756. },
  11757. sideNsfw: {
  11758. height: math.unit(8, "feet"),
  11759. weight: math.unit(356, "lb"),
  11760. name: "Side (NSFW)",
  11761. image: {
  11762. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11763. extra: 997/901,
  11764. bottom: 59/1056
  11765. }
  11766. },
  11767. dick: {
  11768. height: math.unit(2.1, "feet"),
  11769. name: "Dick",
  11770. image: {
  11771. source: "./media/characters/adam-silver-mane/dick.svg"
  11772. }
  11773. },
  11774. taur: {
  11775. height: math.unit(16, "feet"),
  11776. weight: math.unit(1500, "kg"),
  11777. name: "Taur",
  11778. image: {
  11779. source: "./media/characters/adam-silver-mane/taur.svg",
  11780. extra: 1713 / 1571,
  11781. bottom: 0.01
  11782. }
  11783. },
  11784. },
  11785. [
  11786. {
  11787. name: "Normal",
  11788. height: math.unit(8, "feet")
  11789. },
  11790. {
  11791. name: "Minimacro",
  11792. height: math.unit(80, "feet")
  11793. },
  11794. {
  11795. name: "MDA",
  11796. height: math.unit(80, "meters")
  11797. },
  11798. {
  11799. name: "Macro",
  11800. height: math.unit(800, "feet"),
  11801. default: true
  11802. },
  11803. {
  11804. name: "Megamacro",
  11805. height: math.unit(8000, "feet")
  11806. },
  11807. {
  11808. name: "Gigamacro",
  11809. height: math.unit(800, "miles")
  11810. },
  11811. {
  11812. name: "Teramacro",
  11813. height: math.unit(80000, "miles")
  11814. },
  11815. {
  11816. name: "Celestial",
  11817. height: math.unit(8e6, "miles")
  11818. },
  11819. {
  11820. name: "Star Dragon",
  11821. height: math.unit(800000, "parsecs")
  11822. },
  11823. {
  11824. name: "Godly",
  11825. height: math.unit(800, "teraparsecs")
  11826. },
  11827. ]
  11828. ))
  11829. characterMakers.push(() => makeCharacter(
  11830. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11831. {
  11832. front: {
  11833. height: math.unit(6, "feet"),
  11834. weight: math.unit(150, "lb"),
  11835. name: "Front",
  11836. image: {
  11837. source: "./media/characters/ky'owin/front.svg",
  11838. extra: 3862/3053,
  11839. bottom: 74/3936
  11840. }
  11841. },
  11842. },
  11843. [
  11844. {
  11845. name: "Normal",
  11846. height: math.unit(6 + 8 / 12, "feet")
  11847. },
  11848. {
  11849. name: "Large",
  11850. height: math.unit(68, "feet")
  11851. },
  11852. {
  11853. name: "Macro",
  11854. height: math.unit(132, "feet")
  11855. },
  11856. {
  11857. name: "Macro+",
  11858. height: math.unit(340, "feet")
  11859. },
  11860. {
  11861. name: "Macro++",
  11862. height: math.unit(680, "feet"),
  11863. default: true
  11864. },
  11865. {
  11866. name: "Megamacro",
  11867. height: math.unit(1, "mile")
  11868. },
  11869. {
  11870. name: "Megamacro+",
  11871. height: math.unit(10, "miles")
  11872. },
  11873. ]
  11874. ))
  11875. characterMakers.push(() => makeCharacter(
  11876. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11877. {
  11878. front: {
  11879. height: math.unit(4, "feet"),
  11880. weight: math.unit(50, "lb"),
  11881. name: "Front",
  11882. image: {
  11883. source: "./media/characters/mal/front.svg",
  11884. extra: 785 / 724,
  11885. bottom: 0.07
  11886. }
  11887. },
  11888. },
  11889. [
  11890. {
  11891. name: "Micro",
  11892. height: math.unit(4, "inches")
  11893. },
  11894. {
  11895. name: "Normal",
  11896. height: math.unit(4, "feet"),
  11897. default: true
  11898. },
  11899. {
  11900. name: "Macro",
  11901. height: math.unit(200, "feet")
  11902. },
  11903. ]
  11904. ))
  11905. characterMakers.push(() => makeCharacter(
  11906. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11907. {
  11908. front: {
  11909. height: math.unit(6, "feet"),
  11910. weight: math.unit(150, "lb"),
  11911. name: "Front",
  11912. image: {
  11913. source: "./media/characters/jordan-deware/front.svg",
  11914. extra: 1191 / 1012
  11915. }
  11916. },
  11917. },
  11918. [
  11919. {
  11920. name: "Nano",
  11921. height: math.unit(0.01, "mm")
  11922. },
  11923. {
  11924. name: "Minimicro",
  11925. height: math.unit(1, "mm")
  11926. },
  11927. {
  11928. name: "Micro",
  11929. height: math.unit(0.5, "inches")
  11930. },
  11931. {
  11932. name: "Normal",
  11933. height: math.unit(4, "feet"),
  11934. default: true
  11935. },
  11936. {
  11937. name: "Minimacro",
  11938. height: math.unit(40, "meters")
  11939. },
  11940. {
  11941. name: "Small Macro",
  11942. height: math.unit(400, "meters")
  11943. },
  11944. {
  11945. name: "Macro",
  11946. height: math.unit(4, "miles")
  11947. },
  11948. {
  11949. name: "Megamacro",
  11950. height: math.unit(40, "miles")
  11951. },
  11952. {
  11953. name: "Megamacro+",
  11954. height: math.unit(400, "miles")
  11955. },
  11956. {
  11957. name: "Gigamacro",
  11958. height: math.unit(400000, "miles")
  11959. },
  11960. ]
  11961. ))
  11962. characterMakers.push(() => makeCharacter(
  11963. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11964. {
  11965. side: {
  11966. height: math.unit(6, "feet"),
  11967. weight: math.unit(150, "lb"),
  11968. name: "Side",
  11969. image: {
  11970. source: "./media/characters/kimiko/side.svg",
  11971. extra: 600 / 358
  11972. }
  11973. },
  11974. },
  11975. [
  11976. {
  11977. name: "Normal",
  11978. height: math.unit(15, "feet"),
  11979. default: true
  11980. },
  11981. {
  11982. name: "Macro",
  11983. height: math.unit(220, "feet")
  11984. },
  11985. {
  11986. name: "Macro+",
  11987. height: math.unit(1450, "feet")
  11988. },
  11989. {
  11990. name: "Megamacro",
  11991. height: math.unit(11500, "feet")
  11992. },
  11993. {
  11994. name: "Gigamacro",
  11995. height: math.unit(9500, "miles")
  11996. },
  11997. {
  11998. name: "Teramacro",
  11999. height: math.unit(2208005005, "miles")
  12000. },
  12001. {
  12002. name: "Examacro",
  12003. height: math.unit(2750, "parsecs")
  12004. },
  12005. {
  12006. name: "Zettamacro",
  12007. height: math.unit(101500, "parsecs")
  12008. },
  12009. ]
  12010. ))
  12011. characterMakers.push(() => makeCharacter(
  12012. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  12013. {
  12014. front: {
  12015. height: math.unit(6, "feet"),
  12016. weight: math.unit(70, "kg"),
  12017. name: "Front",
  12018. image: {
  12019. source: "./media/characters/andrew-sleepy/front.svg"
  12020. }
  12021. },
  12022. side: {
  12023. height: math.unit(6, "feet"),
  12024. weight: math.unit(70, "kg"),
  12025. name: "Side",
  12026. image: {
  12027. source: "./media/characters/andrew-sleepy/side.svg"
  12028. }
  12029. },
  12030. },
  12031. [
  12032. {
  12033. name: "Micro",
  12034. height: math.unit(1, "mm"),
  12035. default: true
  12036. },
  12037. ]
  12038. ))
  12039. characterMakers.push(() => makeCharacter(
  12040. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  12041. {
  12042. front: {
  12043. height: math.unit(6, "feet"),
  12044. weight: math.unit(150, "lb"),
  12045. name: "Front",
  12046. image: {
  12047. source: "./media/characters/judio/front.svg",
  12048. extra: 1258 / 1110
  12049. }
  12050. },
  12051. },
  12052. [
  12053. {
  12054. name: "Normal",
  12055. height: math.unit(5 + 6 / 12, "feet")
  12056. },
  12057. {
  12058. name: "Macro",
  12059. height: math.unit(1000, "feet"),
  12060. default: true
  12061. },
  12062. {
  12063. name: "Megamacro",
  12064. height: math.unit(10, "miles")
  12065. },
  12066. ]
  12067. ))
  12068. characterMakers.push(() => makeCharacter(
  12069. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  12070. {
  12071. frontDressed: {
  12072. height: math.unit(6, "feet"),
  12073. weight: math.unit(68, "kg"),
  12074. name: "Front (Dressed)",
  12075. image: {
  12076. source: "./media/characters/nomaxice/front-dressed.svg",
  12077. extra: 1137/824,
  12078. bottom: 74/1211
  12079. }
  12080. },
  12081. frontShorts: {
  12082. height: math.unit(6, "feet"),
  12083. weight: math.unit(68, "kg"),
  12084. name: "Front (Shorts)",
  12085. image: {
  12086. source: "./media/characters/nomaxice/front-shorts.svg",
  12087. extra: 1137/824,
  12088. bottom: 74/1211
  12089. }
  12090. },
  12091. back: {
  12092. height: math.unit(6, "feet"),
  12093. weight: math.unit(68, "kg"),
  12094. name: "Back",
  12095. image: {
  12096. source: "./media/characters/nomaxice/back.svg",
  12097. extra: 822/786,
  12098. bottom: 39/861
  12099. }
  12100. },
  12101. hand: {
  12102. height: math.unit(0.565, "feet"),
  12103. name: "Hand",
  12104. image: {
  12105. source: "./media/characters/nomaxice/hand.svg"
  12106. }
  12107. },
  12108. foot: {
  12109. height: math.unit(1, "feet"),
  12110. name: "Foot",
  12111. image: {
  12112. source: "./media/characters/nomaxice/foot.svg"
  12113. }
  12114. },
  12115. },
  12116. [
  12117. {
  12118. name: "Micro",
  12119. height: math.unit(8, "cm")
  12120. },
  12121. {
  12122. name: "Norm",
  12123. height: math.unit(1.82, "m")
  12124. },
  12125. {
  12126. name: "Norm+",
  12127. height: math.unit(8.8, "feet"),
  12128. default: true
  12129. },
  12130. {
  12131. name: "Big",
  12132. height: math.unit(8, "meters")
  12133. },
  12134. {
  12135. name: "Macro",
  12136. height: math.unit(18, "meters")
  12137. },
  12138. {
  12139. name: "Macro+",
  12140. height: math.unit(88, "meters")
  12141. },
  12142. ]
  12143. ))
  12144. characterMakers.push(() => makeCharacter(
  12145. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  12146. {
  12147. front: {
  12148. height: math.unit(12, "feet"),
  12149. weight: math.unit(1.5, "tons"),
  12150. name: "Front",
  12151. image: {
  12152. source: "./media/characters/dydros/front.svg",
  12153. extra: 863 / 800,
  12154. bottom: 0.015
  12155. }
  12156. },
  12157. back: {
  12158. height: math.unit(12, "feet"),
  12159. weight: math.unit(1.5, "tons"),
  12160. name: "Back",
  12161. image: {
  12162. source: "./media/characters/dydros/back.svg",
  12163. extra: 900 / 843,
  12164. bottom: 0.005
  12165. }
  12166. },
  12167. },
  12168. [
  12169. {
  12170. name: "Normal",
  12171. height: math.unit(12, "feet"),
  12172. default: true
  12173. },
  12174. ]
  12175. ))
  12176. characterMakers.push(() => makeCharacter(
  12177. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12178. {
  12179. front: {
  12180. height: math.unit(6, "feet"),
  12181. weight: math.unit(100, "kg"),
  12182. name: "Front",
  12183. image: {
  12184. source: "./media/characters/riggi/front.svg",
  12185. extra: 5787 / 5303
  12186. }
  12187. },
  12188. hyper: {
  12189. height: math.unit(6 * 5 / 3, "feet"),
  12190. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12191. name: "Hyper",
  12192. image: {
  12193. source: "./media/characters/riggi/hyper.svg",
  12194. extra: 3595 / 3485
  12195. }
  12196. },
  12197. },
  12198. [
  12199. {
  12200. name: "Small Macro",
  12201. height: math.unit(50, "feet")
  12202. },
  12203. {
  12204. name: "Default",
  12205. height: math.unit(200, "feet"),
  12206. default: true
  12207. },
  12208. {
  12209. name: "Loom",
  12210. height: math.unit(10000, "feet")
  12211. },
  12212. {
  12213. name: "Cruising Altitude",
  12214. height: math.unit(30000, "feet")
  12215. },
  12216. {
  12217. name: "Megamacro",
  12218. height: math.unit(100, "miles")
  12219. },
  12220. {
  12221. name: "Continent Sized",
  12222. height: math.unit(2800, "miles")
  12223. },
  12224. {
  12225. name: "Earth Sized",
  12226. height: math.unit(8000, "miles")
  12227. },
  12228. ]
  12229. ))
  12230. characterMakers.push(() => makeCharacter(
  12231. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12232. {
  12233. front: {
  12234. height: math.unit(6, "feet"),
  12235. weight: math.unit(250, "lb"),
  12236. name: "Front",
  12237. image: {
  12238. source: "./media/characters/alexi/front.svg",
  12239. extra: 3483 / 3291,
  12240. bottom: 0.04
  12241. }
  12242. },
  12243. back: {
  12244. height: math.unit(6, "feet"),
  12245. weight: math.unit(250, "lb"),
  12246. name: "Back",
  12247. image: {
  12248. source: "./media/characters/alexi/back.svg",
  12249. extra: 3533 / 3356,
  12250. bottom: 0.021
  12251. }
  12252. },
  12253. frontTransforming: {
  12254. height: math.unit(8.58, "feet"),
  12255. weight: math.unit(1300, "lb"),
  12256. name: "Transforming",
  12257. image: {
  12258. source: "./media/characters/alexi/front-transforming.svg",
  12259. extra: 437 / 409,
  12260. bottom: 19 / 458.66
  12261. }
  12262. },
  12263. frontTransformed: {
  12264. height: math.unit(12.5, "feet"),
  12265. weight: math.unit(4000, "lb"),
  12266. name: "Transformed",
  12267. image: {
  12268. source: "./media/characters/alexi/front-transformed.svg",
  12269. extra: 639 / 614,
  12270. bottom: 30.55 / 671
  12271. }
  12272. },
  12273. },
  12274. [
  12275. {
  12276. name: "Normal",
  12277. height: math.unit(14, "feet"),
  12278. default: true
  12279. },
  12280. {
  12281. name: "Minimacro",
  12282. height: math.unit(30, "meters")
  12283. },
  12284. {
  12285. name: "Macro",
  12286. height: math.unit(500, "meters")
  12287. },
  12288. {
  12289. name: "Megamacro",
  12290. height: math.unit(9000, "km")
  12291. },
  12292. {
  12293. name: "Teramacro",
  12294. height: math.unit(384000, "km")
  12295. },
  12296. ]
  12297. ))
  12298. characterMakers.push(() => makeCharacter(
  12299. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12300. {
  12301. front: {
  12302. height: math.unit(6, "feet"),
  12303. weight: math.unit(150, "lb"),
  12304. name: "Front",
  12305. image: {
  12306. source: "./media/characters/kayroo/front.svg",
  12307. extra: 1153 / 1038,
  12308. bottom: 0.06
  12309. }
  12310. },
  12311. foot: {
  12312. height: math.unit(6, "feet"),
  12313. weight: math.unit(150, "lb"),
  12314. name: "Foot",
  12315. image: {
  12316. source: "./media/characters/kayroo/foot.svg"
  12317. }
  12318. },
  12319. },
  12320. [
  12321. {
  12322. name: "Normal",
  12323. height: math.unit(8, "feet"),
  12324. default: true
  12325. },
  12326. {
  12327. name: "Minimacro",
  12328. height: math.unit(250, "feet")
  12329. },
  12330. {
  12331. name: "Macro",
  12332. height: math.unit(2800, "feet")
  12333. },
  12334. {
  12335. name: "Megamacro",
  12336. height: math.unit(5200, "feet")
  12337. },
  12338. {
  12339. name: "Gigamacro",
  12340. height: math.unit(27000, "feet")
  12341. },
  12342. {
  12343. name: "Omega",
  12344. height: math.unit(45000, "feet")
  12345. },
  12346. ]
  12347. ))
  12348. characterMakers.push(() => makeCharacter(
  12349. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12350. {
  12351. front: {
  12352. height: math.unit(18, "feet"),
  12353. weight: math.unit(5800, "lb"),
  12354. name: "Front",
  12355. image: {
  12356. source: "./media/characters/rhys/front.svg",
  12357. extra: 3386 / 3090,
  12358. bottom: 0.07
  12359. }
  12360. },
  12361. },
  12362. [
  12363. {
  12364. name: "Normal",
  12365. height: math.unit(18, "feet"),
  12366. default: true
  12367. },
  12368. {
  12369. name: "Working Size",
  12370. height: math.unit(200, "feet")
  12371. },
  12372. {
  12373. name: "Demolition Size",
  12374. height: math.unit(2000, "feet")
  12375. },
  12376. {
  12377. name: "Maximum Licensed Size",
  12378. height: math.unit(5, "miles")
  12379. },
  12380. {
  12381. name: "Maximum Observed Size",
  12382. height: math.unit(10, "yottameters")
  12383. },
  12384. ]
  12385. ))
  12386. characterMakers.push(() => makeCharacter(
  12387. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12388. {
  12389. front: {
  12390. height: math.unit(6, "feet"),
  12391. weight: math.unit(250, "lb"),
  12392. name: "Front",
  12393. image: {
  12394. source: "./media/characters/toto/front.svg",
  12395. extra: 527 / 479,
  12396. bottom: 0.05
  12397. }
  12398. },
  12399. },
  12400. [
  12401. {
  12402. name: "Micro",
  12403. height: math.unit(3, "feet")
  12404. },
  12405. {
  12406. name: "Normal",
  12407. height: math.unit(10, "feet")
  12408. },
  12409. {
  12410. name: "Macro",
  12411. height: math.unit(150, "feet"),
  12412. default: true
  12413. },
  12414. {
  12415. name: "Megamacro",
  12416. height: math.unit(1200, "feet")
  12417. },
  12418. ]
  12419. ))
  12420. characterMakers.push(() => makeCharacter(
  12421. { name: "King", species: ["lion"], tags: ["anthro"] },
  12422. {
  12423. back: {
  12424. height: math.unit(6, "feet"),
  12425. weight: math.unit(150, "lb"),
  12426. name: "Back",
  12427. image: {
  12428. source: "./media/characters/king/back.svg"
  12429. }
  12430. },
  12431. },
  12432. [
  12433. {
  12434. name: "Micro",
  12435. height: math.unit(2, "inches")
  12436. },
  12437. {
  12438. name: "Normal",
  12439. height: math.unit(8, "feet")
  12440. },
  12441. {
  12442. name: "Macro",
  12443. height: math.unit(200, "feet"),
  12444. default: true
  12445. },
  12446. {
  12447. name: "Megamacro",
  12448. height: math.unit(50, "miles")
  12449. },
  12450. ]
  12451. ))
  12452. characterMakers.push(() => makeCharacter(
  12453. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12454. {
  12455. front: {
  12456. height: math.unit(11, "feet"),
  12457. weight: math.unit(1400, "lb"),
  12458. name: "Front",
  12459. image: {
  12460. source: "./media/characters/cordite/front.svg",
  12461. extra: 1919/1827,
  12462. bottom: 40/1959
  12463. }
  12464. },
  12465. side: {
  12466. height: math.unit(11, "feet"),
  12467. weight: math.unit(1400, "lb"),
  12468. name: "Side",
  12469. image: {
  12470. source: "./media/characters/cordite/side.svg",
  12471. extra: 1908/1793,
  12472. bottom: 38/1946
  12473. }
  12474. },
  12475. back: {
  12476. height: math.unit(11, "feet"),
  12477. weight: math.unit(1400, "lb"),
  12478. name: "Back",
  12479. image: {
  12480. source: "./media/characters/cordite/back.svg",
  12481. extra: 1938/1837,
  12482. bottom: 10/1948
  12483. }
  12484. },
  12485. feral: {
  12486. height: math.unit(2, "feet"),
  12487. weight: math.unit(90, "lb"),
  12488. name: "Feral",
  12489. image: {
  12490. source: "./media/characters/cordite/feral.svg",
  12491. extra: 1260 / 755,
  12492. bottom: 0.05
  12493. }
  12494. },
  12495. },
  12496. [
  12497. {
  12498. name: "Normal",
  12499. height: math.unit(11, "feet"),
  12500. default: true
  12501. },
  12502. ]
  12503. ))
  12504. characterMakers.push(() => makeCharacter(
  12505. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12506. {
  12507. front: {
  12508. height: math.unit(6, "feet"),
  12509. weight: math.unit(150, "lb"),
  12510. name: "Front",
  12511. image: {
  12512. source: "./media/characters/pianostrong/front.svg",
  12513. extra: 6577 / 6254,
  12514. bottom: 0.02
  12515. }
  12516. },
  12517. side: {
  12518. height: math.unit(6, "feet"),
  12519. weight: math.unit(150, "lb"),
  12520. name: "Side",
  12521. image: {
  12522. source: "./media/characters/pianostrong/side.svg",
  12523. extra: 6106 / 5730
  12524. }
  12525. },
  12526. back: {
  12527. height: math.unit(6, "feet"),
  12528. weight: math.unit(150, "lb"),
  12529. name: "Back",
  12530. image: {
  12531. source: "./media/characters/pianostrong/back.svg",
  12532. extra: 6085 / 5733,
  12533. bottom: 0.01
  12534. }
  12535. },
  12536. },
  12537. [
  12538. {
  12539. name: "Macro",
  12540. height: math.unit(100, "feet")
  12541. },
  12542. {
  12543. name: "Macro+",
  12544. height: math.unit(300, "feet"),
  12545. default: true
  12546. },
  12547. {
  12548. name: "Macro++",
  12549. height: math.unit(1000, "feet")
  12550. },
  12551. ]
  12552. ))
  12553. characterMakers.push(() => makeCharacter(
  12554. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12555. {
  12556. front: {
  12557. height: math.unit(6, "feet"),
  12558. weight: math.unit(150, "lb"),
  12559. name: "Front",
  12560. image: {
  12561. source: "./media/characters/kona/front.svg",
  12562. extra: 2960 / 2629,
  12563. bottom: 0.005
  12564. }
  12565. },
  12566. },
  12567. [
  12568. {
  12569. name: "Normal",
  12570. height: math.unit(11 + 8 / 12, "feet")
  12571. },
  12572. {
  12573. name: "Macro",
  12574. height: math.unit(850, "feet"),
  12575. default: true
  12576. },
  12577. {
  12578. name: "Macro+",
  12579. height: math.unit(1.5, "km"),
  12580. default: true
  12581. },
  12582. {
  12583. name: "Megamacro",
  12584. height: math.unit(80, "miles")
  12585. },
  12586. {
  12587. name: "Gigamacro",
  12588. height: math.unit(3500, "miles")
  12589. },
  12590. ]
  12591. ))
  12592. characterMakers.push(() => makeCharacter(
  12593. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12594. {
  12595. side: {
  12596. height: math.unit(1.9, "meters"),
  12597. weight: math.unit(326, "kg"),
  12598. name: "Side",
  12599. image: {
  12600. source: "./media/characters/levi/side.svg",
  12601. extra: 1704 / 1334,
  12602. bottom: 0.02
  12603. }
  12604. },
  12605. },
  12606. [
  12607. {
  12608. name: "Normal",
  12609. height: math.unit(1.9, "meters"),
  12610. default: true
  12611. },
  12612. {
  12613. name: "Macro",
  12614. height: math.unit(20, "meters")
  12615. },
  12616. {
  12617. name: "Macro+",
  12618. height: math.unit(200, "meters")
  12619. },
  12620. {
  12621. name: "Megamacro",
  12622. height: math.unit(2, "km")
  12623. },
  12624. {
  12625. name: "Megamacro+",
  12626. height: math.unit(20, "km")
  12627. },
  12628. {
  12629. name: "Gigamacro",
  12630. height: math.unit(2500, "km")
  12631. },
  12632. {
  12633. name: "Gigamacro+",
  12634. height: math.unit(120000, "km")
  12635. },
  12636. {
  12637. name: "Teramacro",
  12638. height: math.unit(7.77e6, "km")
  12639. },
  12640. ]
  12641. ))
  12642. characterMakers.push(() => makeCharacter(
  12643. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12644. {
  12645. front: {
  12646. height: math.unit(6 + 4/12, "feet"),
  12647. weight: math.unit(190, "lb"),
  12648. name: "Front",
  12649. image: {
  12650. source: "./media/characters/bmc/front.svg",
  12651. extra: 1626/1472,
  12652. bottom: 79/1705
  12653. }
  12654. },
  12655. back: {
  12656. height: math.unit(6 + 4/12, "feet"),
  12657. weight: math.unit(190, "lb"),
  12658. name: "Back",
  12659. image: {
  12660. source: "./media/characters/bmc/back.svg",
  12661. extra: 1640/1479,
  12662. bottom: 45/1685
  12663. }
  12664. },
  12665. frontArmor: {
  12666. height: math.unit(6 + 4/12, "feet"),
  12667. weight: math.unit(190, "lb"),
  12668. name: "Front-armor",
  12669. image: {
  12670. source: "./media/characters/bmc/front-armor.svg",
  12671. extra: 1538/1468,
  12672. bottom: 79/1617
  12673. }
  12674. },
  12675. },
  12676. [
  12677. {
  12678. name: "Human-sized",
  12679. height: math.unit(6 + 4 / 12, "feet")
  12680. },
  12681. {
  12682. name: "Interactive Size",
  12683. height: math.unit(25, "feet")
  12684. },
  12685. {
  12686. name: "Small",
  12687. height: math.unit(250, "feet")
  12688. },
  12689. {
  12690. name: "Normal",
  12691. height: math.unit(1250, "feet"),
  12692. default: true
  12693. },
  12694. {
  12695. name: "Good Day",
  12696. height: math.unit(88, "miles")
  12697. },
  12698. {
  12699. name: "Largest Measured Size",
  12700. height: math.unit(105.960, "galaxies")
  12701. },
  12702. ]
  12703. ))
  12704. characterMakers.push(() => makeCharacter(
  12705. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12706. {
  12707. front: {
  12708. height: math.unit(20, "feet"),
  12709. weight: math.unit(2016, "kg"),
  12710. name: "Front",
  12711. image: {
  12712. source: "./media/characters/sven-the-kaiju/front.svg",
  12713. extra: 1277/1250,
  12714. bottom: 35/1312
  12715. }
  12716. },
  12717. mouth: {
  12718. height: math.unit(1.85, "feet"),
  12719. name: "Mouth",
  12720. image: {
  12721. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12722. }
  12723. },
  12724. },
  12725. [
  12726. {
  12727. name: "Fairy",
  12728. height: math.unit(6, "inches")
  12729. },
  12730. {
  12731. name: "Normal",
  12732. height: math.unit(20, "feet"),
  12733. default: true
  12734. },
  12735. {
  12736. name: "Rampage",
  12737. height: math.unit(200, "feet")
  12738. },
  12739. {
  12740. name: "Archfey Forest Guardian",
  12741. height: math.unit(1, "mile")
  12742. },
  12743. ]
  12744. ))
  12745. characterMakers.push(() => makeCharacter(
  12746. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12747. {
  12748. front: {
  12749. height: math.unit(4, "meters"),
  12750. weight: math.unit(2, "tons"),
  12751. name: "Front",
  12752. image: {
  12753. source: "./media/characters/marik/front.svg",
  12754. extra: 1057 / 1003,
  12755. bottom: 0.08
  12756. }
  12757. },
  12758. },
  12759. [
  12760. {
  12761. name: "Normal",
  12762. height: math.unit(4, "meters"),
  12763. default: true
  12764. },
  12765. {
  12766. name: "Macro",
  12767. height: math.unit(20, "meters")
  12768. },
  12769. {
  12770. name: "Megamacro",
  12771. height: math.unit(50, "km")
  12772. },
  12773. {
  12774. name: "Gigamacro",
  12775. height: math.unit(100, "km")
  12776. },
  12777. {
  12778. name: "Alpha Macro",
  12779. height: math.unit(7.88e7, "yottameters")
  12780. },
  12781. ]
  12782. ))
  12783. characterMakers.push(() => makeCharacter(
  12784. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12785. {
  12786. front: {
  12787. height: math.unit(6, "feet"),
  12788. weight: math.unit(110, "lb"),
  12789. name: "Front",
  12790. image: {
  12791. source: "./media/characters/mel/front.svg",
  12792. extra: 736 / 617,
  12793. bottom: 0.017
  12794. }
  12795. },
  12796. },
  12797. [
  12798. {
  12799. name: "Pico",
  12800. height: math.unit(3, "pm")
  12801. },
  12802. {
  12803. name: "Nano",
  12804. height: math.unit(3, "nm")
  12805. },
  12806. {
  12807. name: "Micro",
  12808. height: math.unit(0.3, "mm"),
  12809. default: true
  12810. },
  12811. {
  12812. name: "Micro+",
  12813. height: math.unit(3, "mm")
  12814. },
  12815. {
  12816. name: "Normal",
  12817. height: math.unit(5 + 10.5 / 12, "feet")
  12818. },
  12819. ]
  12820. ))
  12821. characterMakers.push(() => makeCharacter(
  12822. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12823. {
  12824. kaiju: {
  12825. height: math.unit(1.75, "meters"),
  12826. weight: math.unit(55, "kg"),
  12827. name: "Kaiju",
  12828. image: {
  12829. source: "./media/characters/lykonous/kaiju.svg",
  12830. extra: 1055 / 946,
  12831. bottom: 0.135
  12832. }
  12833. },
  12834. },
  12835. [
  12836. {
  12837. name: "Normal",
  12838. height: math.unit(2.5, "meters"),
  12839. default: true
  12840. },
  12841. {
  12842. name: "Kaiju Dragon",
  12843. height: math.unit(60, "meters")
  12844. },
  12845. {
  12846. name: "Mega Kaiju",
  12847. height: math.unit(120, "km")
  12848. },
  12849. {
  12850. name: "Giga Kaiju",
  12851. height: math.unit(200, "megameters")
  12852. },
  12853. {
  12854. name: "Terra Kaiju",
  12855. height: math.unit(400, "gigameters")
  12856. },
  12857. {
  12858. name: "Kaiju Dragon God",
  12859. height: math.unit(13000, "exaparsecs")
  12860. },
  12861. ]
  12862. ))
  12863. characterMakers.push(() => makeCharacter(
  12864. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12865. {
  12866. front: {
  12867. height: math.unit(6, "feet"),
  12868. weight: math.unit(150, "lb"),
  12869. name: "Front",
  12870. image: {
  12871. source: "./media/characters/blü/front.svg",
  12872. extra: 1883 / 1564,
  12873. bottom: 0.031
  12874. }
  12875. },
  12876. },
  12877. [
  12878. {
  12879. name: "Normal",
  12880. height: math.unit(13, "feet"),
  12881. default: true
  12882. },
  12883. {
  12884. name: "Big Boi",
  12885. height: math.unit(150, "meters")
  12886. },
  12887. {
  12888. name: "Mini Stomper",
  12889. height: math.unit(300, "meters")
  12890. },
  12891. {
  12892. name: "Macro",
  12893. height: math.unit(1000, "meters")
  12894. },
  12895. {
  12896. name: "Megamacro",
  12897. height: math.unit(11000, "meters")
  12898. },
  12899. {
  12900. name: "Gigamacro",
  12901. height: math.unit(11000, "km")
  12902. },
  12903. {
  12904. name: "Teramacro",
  12905. height: math.unit(420000, "km")
  12906. },
  12907. {
  12908. name: "Examacro",
  12909. height: math.unit(120, "parsecs")
  12910. },
  12911. {
  12912. name: "God Tho",
  12913. height: math.unit(98000000000, "parsecs")
  12914. },
  12915. ]
  12916. ))
  12917. characterMakers.push(() => makeCharacter(
  12918. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12919. {
  12920. taurFront: {
  12921. height: math.unit(6, "feet"),
  12922. weight: math.unit(200, "lb"),
  12923. name: "Taur (Front)",
  12924. image: {
  12925. source: "./media/characters/scales/taur-front.svg",
  12926. extra: 1,
  12927. bottom: 0.05
  12928. }
  12929. },
  12930. taurBack: {
  12931. height: math.unit(6, "feet"),
  12932. weight: math.unit(200, "lb"),
  12933. name: "Taur (Back)",
  12934. image: {
  12935. source: "./media/characters/scales/taur-back.svg",
  12936. extra: 1,
  12937. bottom: 0.08
  12938. }
  12939. },
  12940. anthro: {
  12941. height: math.unit(6 * 7 / 12, "feet"),
  12942. weight: math.unit(100, "lb"),
  12943. name: "Anthro",
  12944. image: {
  12945. source: "./media/characters/scales/anthro.svg",
  12946. extra: 1,
  12947. bottom: 0.06
  12948. }
  12949. },
  12950. },
  12951. [
  12952. {
  12953. name: "Normal",
  12954. height: math.unit(12, "feet"),
  12955. default: true
  12956. },
  12957. ]
  12958. ))
  12959. characterMakers.push(() => makeCharacter(
  12960. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12961. {
  12962. front: {
  12963. height: math.unit(6, "feet"),
  12964. weight: math.unit(150, "lb"),
  12965. name: "Front",
  12966. image: {
  12967. source: "./media/characters/koragos/front.svg",
  12968. extra: 841 / 794,
  12969. bottom: 0.035
  12970. }
  12971. },
  12972. back: {
  12973. height: math.unit(6, "feet"),
  12974. weight: math.unit(150, "lb"),
  12975. name: "Back",
  12976. image: {
  12977. source: "./media/characters/koragos/back.svg",
  12978. extra: 841 / 810,
  12979. bottom: 0.022
  12980. }
  12981. },
  12982. },
  12983. [
  12984. {
  12985. name: "Normal",
  12986. height: math.unit(6 + 11 / 12, "feet"),
  12987. default: true
  12988. },
  12989. {
  12990. name: "Macro",
  12991. height: math.unit(490, "feet")
  12992. },
  12993. {
  12994. name: "Megamacro",
  12995. height: math.unit(10, "miles")
  12996. },
  12997. {
  12998. name: "Gigamacro",
  12999. height: math.unit(50, "miles")
  13000. },
  13001. ]
  13002. ))
  13003. characterMakers.push(() => makeCharacter(
  13004. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  13005. {
  13006. front: {
  13007. height: math.unit(6, "feet"),
  13008. weight: math.unit(250, "lb"),
  13009. name: "Front",
  13010. image: {
  13011. source: "./media/characters/xylrem/front.svg",
  13012. extra: 3323 / 3050,
  13013. bottom: 0.065
  13014. }
  13015. },
  13016. },
  13017. [
  13018. {
  13019. name: "Micro",
  13020. height: math.unit(4, "feet")
  13021. },
  13022. {
  13023. name: "Normal",
  13024. height: math.unit(16, "feet"),
  13025. default: true
  13026. },
  13027. {
  13028. name: "Macro",
  13029. height: math.unit(2720, "feet")
  13030. },
  13031. {
  13032. name: "Megamacro",
  13033. height: math.unit(25000, "miles")
  13034. },
  13035. ]
  13036. ))
  13037. characterMakers.push(() => makeCharacter(
  13038. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  13039. {
  13040. front: {
  13041. height: math.unit(8, "feet"),
  13042. weight: math.unit(250, "kg"),
  13043. name: "Front",
  13044. image: {
  13045. source: "./media/characters/ikideru/front.svg",
  13046. extra: 930 / 870,
  13047. bottom: 0.087
  13048. }
  13049. },
  13050. back: {
  13051. height: math.unit(8, "feet"),
  13052. weight: math.unit(250, "kg"),
  13053. name: "Back",
  13054. image: {
  13055. source: "./media/characters/ikideru/back.svg",
  13056. extra: 919 / 852,
  13057. bottom: 0.055
  13058. }
  13059. },
  13060. },
  13061. [
  13062. {
  13063. name: "Rare",
  13064. height: math.unit(8, "feet"),
  13065. default: true
  13066. },
  13067. {
  13068. name: "Playful Loom",
  13069. height: math.unit(80, "feet")
  13070. },
  13071. {
  13072. name: "City Leaner",
  13073. height: math.unit(230, "feet")
  13074. },
  13075. {
  13076. name: "Megamacro",
  13077. height: math.unit(2500, "feet")
  13078. },
  13079. {
  13080. name: "Gigamacro",
  13081. height: math.unit(26400, "feet")
  13082. },
  13083. {
  13084. name: "Tectonic Shifter",
  13085. height: math.unit(1.7, "megameters")
  13086. },
  13087. {
  13088. name: "Planet Carer",
  13089. height: math.unit(21, "megameters")
  13090. },
  13091. {
  13092. name: "God",
  13093. height: math.unit(11157.22, "parsecs")
  13094. },
  13095. ]
  13096. ))
  13097. characterMakers.push(() => makeCharacter(
  13098. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  13099. {
  13100. front: {
  13101. height: math.unit(6, "feet"),
  13102. weight: math.unit(120, "lb"),
  13103. name: "Front",
  13104. image: {
  13105. source: "./media/characters/neo/front.svg"
  13106. }
  13107. },
  13108. },
  13109. [
  13110. {
  13111. name: "Micro",
  13112. height: math.unit(2, "inches"),
  13113. default: true
  13114. },
  13115. {
  13116. name: "Human Size",
  13117. height: math.unit(5 + 8 / 12, "feet")
  13118. },
  13119. ]
  13120. ))
  13121. characterMakers.push(() => makeCharacter(
  13122. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  13123. {
  13124. front: {
  13125. height: math.unit(13 + 10 / 12, "feet"),
  13126. weight: math.unit(5320, "lb"),
  13127. name: "Front",
  13128. image: {
  13129. source: "./media/characters/chauncey-chantz/front.svg",
  13130. extra: 1587 / 1435,
  13131. bottom: 0.02
  13132. }
  13133. },
  13134. },
  13135. [
  13136. {
  13137. name: "Normal",
  13138. height: math.unit(13 + 10 / 12, "feet"),
  13139. default: true
  13140. },
  13141. {
  13142. name: "Macro",
  13143. height: math.unit(45, "feet")
  13144. },
  13145. {
  13146. name: "Megamacro",
  13147. height: math.unit(250, "miles")
  13148. },
  13149. {
  13150. name: "Planetary",
  13151. height: math.unit(10000, "miles")
  13152. },
  13153. {
  13154. name: "Galactic",
  13155. height: math.unit(40000, "parsecs")
  13156. },
  13157. {
  13158. name: "Universal",
  13159. height: math.unit(1, "yottameter")
  13160. },
  13161. ]
  13162. ))
  13163. characterMakers.push(() => makeCharacter(
  13164. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  13165. {
  13166. front: {
  13167. height: math.unit(6, "feet"),
  13168. weight: math.unit(150, "lb"),
  13169. name: "Front",
  13170. image: {
  13171. source: "./media/characters/epifox/front.svg",
  13172. extra: 1,
  13173. bottom: 0.075
  13174. }
  13175. },
  13176. },
  13177. [
  13178. {
  13179. name: "Micro",
  13180. height: math.unit(6, "inches")
  13181. },
  13182. {
  13183. name: "Normal",
  13184. height: math.unit(12, "feet"),
  13185. default: true
  13186. },
  13187. {
  13188. name: "Macro",
  13189. height: math.unit(3810, "feet")
  13190. },
  13191. {
  13192. name: "Megamacro",
  13193. height: math.unit(500, "miles")
  13194. },
  13195. ]
  13196. ))
  13197. characterMakers.push(() => makeCharacter(
  13198. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13199. {
  13200. front: {
  13201. height: math.unit(1.8796, "m"),
  13202. weight: math.unit(230, "lb"),
  13203. name: "Front",
  13204. image: {
  13205. source: "./media/characters/colin-t/front.svg",
  13206. extra: 1272 / 1193,
  13207. bottom: 0.07
  13208. }
  13209. },
  13210. },
  13211. [
  13212. {
  13213. name: "Micro",
  13214. height: math.unit(0.571, "meters")
  13215. },
  13216. {
  13217. name: "Normal",
  13218. height: math.unit(1.8796, "meters"),
  13219. default: true
  13220. },
  13221. {
  13222. name: "Tall",
  13223. height: math.unit(4, "meters")
  13224. },
  13225. {
  13226. name: "Macro",
  13227. height: math.unit(67.241, "meters")
  13228. },
  13229. {
  13230. name: "Megamacro",
  13231. height: math.unit(371.856, "meters")
  13232. },
  13233. {
  13234. name: "Planetary",
  13235. height: math.unit(12631.5689, "km")
  13236. },
  13237. ]
  13238. ))
  13239. characterMakers.push(() => makeCharacter(
  13240. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13241. {
  13242. front: {
  13243. height: math.unit(1.85, "meters"),
  13244. weight: math.unit(80, "kg"),
  13245. name: "Front",
  13246. image: {
  13247. source: "./media/characters/matvei/front.svg",
  13248. extra: 456/447,
  13249. bottom: 8/464
  13250. }
  13251. },
  13252. back: {
  13253. height: math.unit(1.85, "meters"),
  13254. weight: math.unit(80, "kg"),
  13255. name: "Back",
  13256. image: {
  13257. source: "./media/characters/matvei/back.svg",
  13258. extra: 434/427,
  13259. bottom: 11/445
  13260. }
  13261. },
  13262. },
  13263. [
  13264. {
  13265. name: "Normal",
  13266. height: math.unit(1.85, "meters"),
  13267. default: true
  13268. },
  13269. ]
  13270. ))
  13271. characterMakers.push(() => makeCharacter(
  13272. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13273. {
  13274. front: {
  13275. height: math.unit(5 + 9 / 12, "feet"),
  13276. weight: math.unit(70, "lb"),
  13277. name: "Front",
  13278. image: {
  13279. source: "./media/characters/quincy/front.svg",
  13280. extra: 3041 / 2751
  13281. }
  13282. },
  13283. back: {
  13284. height: math.unit(5 + 9 / 12, "feet"),
  13285. weight: math.unit(70, "lb"),
  13286. name: "Back",
  13287. image: {
  13288. source: "./media/characters/quincy/back.svg",
  13289. extra: 3041 / 2751
  13290. }
  13291. },
  13292. flying: {
  13293. height: math.unit(5 + 4 / 12, "feet"),
  13294. weight: math.unit(70, "lb"),
  13295. name: "Flying",
  13296. image: {
  13297. source: "./media/characters/quincy/flying.svg",
  13298. extra: 1044 / 930
  13299. }
  13300. },
  13301. },
  13302. [
  13303. {
  13304. name: "Micro",
  13305. height: math.unit(3, "cm")
  13306. },
  13307. {
  13308. name: "Normal",
  13309. height: math.unit(5 + 9 / 12, "feet")
  13310. },
  13311. {
  13312. name: "Macro",
  13313. height: math.unit(200, "meters"),
  13314. default: true
  13315. },
  13316. {
  13317. name: "Megamacro",
  13318. height: math.unit(1000, "meters")
  13319. },
  13320. ]
  13321. ))
  13322. characterMakers.push(() => makeCharacter(
  13323. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13324. {
  13325. front: {
  13326. height: math.unit(3 + 11/12, "feet"),
  13327. weight: math.unit(50, "lb"),
  13328. name: "Front",
  13329. image: {
  13330. source: "./media/characters/vanrel/front.svg",
  13331. extra: 1104/949,
  13332. bottom: 52/1156
  13333. }
  13334. },
  13335. back: {
  13336. height: math.unit(3 + 11/12, "feet"),
  13337. weight: math.unit(50, "lb"),
  13338. name: "Back",
  13339. image: {
  13340. source: "./media/characters/vanrel/back.svg",
  13341. extra: 1119/976,
  13342. bottom: 37/1156
  13343. }
  13344. },
  13345. tome: {
  13346. height: math.unit(1.35, "feet"),
  13347. weight: math.unit(10, "lb"),
  13348. name: "Vanrel's Tome",
  13349. rename: true,
  13350. image: {
  13351. source: "./media/characters/vanrel/tome.svg"
  13352. }
  13353. },
  13354. beans: {
  13355. height: math.unit(0.89, "feet"),
  13356. name: "Beans",
  13357. image: {
  13358. source: "./media/characters/vanrel/beans.svg"
  13359. }
  13360. },
  13361. },
  13362. [
  13363. {
  13364. name: "Normal",
  13365. height: math.unit(3 + 11/12, "feet"),
  13366. default: true
  13367. },
  13368. ]
  13369. ))
  13370. characterMakers.push(() => makeCharacter(
  13371. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13372. {
  13373. front: {
  13374. height: math.unit(7 + 5 / 12, "feet"),
  13375. name: "Front",
  13376. image: {
  13377. source: "./media/characters/kuiper-vanrel/front.svg",
  13378. extra: 1219/1169,
  13379. bottom: 69/1288
  13380. }
  13381. },
  13382. back: {
  13383. height: math.unit(7 + 5 / 12, "feet"),
  13384. name: "Back",
  13385. image: {
  13386. source: "./media/characters/kuiper-vanrel/back.svg",
  13387. extra: 1236/1193,
  13388. bottom: 27/1263
  13389. }
  13390. },
  13391. foot: {
  13392. height: math.unit(0.55, "meters"),
  13393. name: "Foot",
  13394. image: {
  13395. source: "./media/characters/kuiper-vanrel/foot.svg",
  13396. }
  13397. },
  13398. battle: {
  13399. height: math.unit(6.824, "feet"),
  13400. name: "Battle",
  13401. image: {
  13402. source: "./media/characters/kuiper-vanrel/battle.svg",
  13403. extra: 1466 / 1327,
  13404. bottom: 29 / 1492.5
  13405. }
  13406. },
  13407. meerkui: {
  13408. height: math.unit(18, "inches"),
  13409. name: "Meerkui",
  13410. image: {
  13411. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13412. extra: 1354/1289,
  13413. bottom: 69/1423
  13414. }
  13415. },
  13416. },
  13417. [
  13418. {
  13419. name: "Normal",
  13420. height: math.unit(7 + 5 / 12, "feet"),
  13421. default: true
  13422. },
  13423. ]
  13424. ))
  13425. characterMakers.push(() => makeCharacter(
  13426. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13427. {
  13428. front: {
  13429. height: math.unit(8 + 5 / 12, "feet"),
  13430. name: "Front",
  13431. image: {
  13432. source: "./media/characters/keset-vanrel/front.svg",
  13433. extra: 1231/1148,
  13434. bottom: 82/1313
  13435. }
  13436. },
  13437. back: {
  13438. height: math.unit(8 + 5 / 12, "feet"),
  13439. name: "Back",
  13440. image: {
  13441. source: "./media/characters/keset-vanrel/back.svg",
  13442. extra: 1240/1174,
  13443. bottom: 33/1273
  13444. }
  13445. },
  13446. hand: {
  13447. height: math.unit(0.6, "meters"),
  13448. name: "Hand",
  13449. image: {
  13450. source: "./media/characters/keset-vanrel/hand.svg"
  13451. }
  13452. },
  13453. foot: {
  13454. height: math.unit(0.94978, "meters"),
  13455. name: "Foot",
  13456. image: {
  13457. source: "./media/characters/keset-vanrel/foot.svg"
  13458. }
  13459. },
  13460. battle: {
  13461. height: math.unit(7.408, "feet"),
  13462. name: "Battle",
  13463. image: {
  13464. source: "./media/characters/keset-vanrel/battle.svg",
  13465. extra: 1890 / 1386,
  13466. bottom: 73.28 / 1970
  13467. }
  13468. },
  13469. },
  13470. [
  13471. {
  13472. name: "Normal",
  13473. height: math.unit(8 + 5 / 12, "feet"),
  13474. default: true
  13475. },
  13476. ]
  13477. ))
  13478. characterMakers.push(() => makeCharacter(
  13479. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13480. {
  13481. front: {
  13482. height: math.unit(6, "feet"),
  13483. weight: math.unit(150, "lb"),
  13484. name: "Front",
  13485. image: {
  13486. source: "./media/characters/neos/front.svg",
  13487. extra: 1696 / 992,
  13488. bottom: 0.14
  13489. }
  13490. },
  13491. },
  13492. [
  13493. {
  13494. name: "Normal",
  13495. height: math.unit(54, "cm"),
  13496. default: true
  13497. },
  13498. {
  13499. name: "Macro",
  13500. height: math.unit(100, "m")
  13501. },
  13502. {
  13503. name: "Megamacro",
  13504. height: math.unit(10, "km")
  13505. },
  13506. {
  13507. name: "Megamacro+",
  13508. height: math.unit(100, "km")
  13509. },
  13510. {
  13511. name: "Gigamacro",
  13512. height: math.unit(100, "Mm")
  13513. },
  13514. {
  13515. name: "Teramacro",
  13516. height: math.unit(100, "Gm")
  13517. },
  13518. {
  13519. name: "Examacro",
  13520. height: math.unit(100, "Em")
  13521. },
  13522. {
  13523. name: "Godly",
  13524. height: math.unit(10000, "Ym")
  13525. },
  13526. {
  13527. name: "Beyond Godly",
  13528. height: math.unit(25, "multiverses")
  13529. },
  13530. ]
  13531. ))
  13532. characterMakers.push(() => makeCharacter(
  13533. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13534. {
  13535. feminine: {
  13536. height: math.unit(5, "feet"),
  13537. weight: math.unit(100, "lb"),
  13538. name: "Feminine",
  13539. image: {
  13540. source: "./media/characters/sammy-mouse/feminine.svg",
  13541. extra: 2526 / 2425,
  13542. bottom: 0.123
  13543. }
  13544. },
  13545. masculine: {
  13546. height: math.unit(5, "feet"),
  13547. weight: math.unit(100, "lb"),
  13548. name: "Masculine",
  13549. image: {
  13550. source: "./media/characters/sammy-mouse/masculine.svg",
  13551. extra: 2526 / 2425,
  13552. bottom: 0.123
  13553. }
  13554. },
  13555. },
  13556. [
  13557. {
  13558. name: "Micro",
  13559. height: math.unit(5, "inches")
  13560. },
  13561. {
  13562. name: "Normal",
  13563. height: math.unit(5, "feet"),
  13564. default: true
  13565. },
  13566. {
  13567. name: "Macro",
  13568. height: math.unit(60, "feet")
  13569. },
  13570. ]
  13571. ))
  13572. characterMakers.push(() => makeCharacter(
  13573. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13574. {
  13575. front: {
  13576. height: math.unit(4, "feet"),
  13577. weight: math.unit(50, "lb"),
  13578. name: "Front",
  13579. image: {
  13580. source: "./media/characters/kole/front.svg",
  13581. extra: 1423 / 1303,
  13582. bottom: 0.025
  13583. }
  13584. },
  13585. back: {
  13586. height: math.unit(4, "feet"),
  13587. weight: math.unit(50, "lb"),
  13588. name: "Back",
  13589. image: {
  13590. source: "./media/characters/kole/back.svg",
  13591. extra: 1426 / 1280,
  13592. bottom: 0.02
  13593. }
  13594. },
  13595. },
  13596. [
  13597. {
  13598. name: "Normal",
  13599. height: math.unit(4, "feet"),
  13600. default: true
  13601. },
  13602. ]
  13603. ))
  13604. characterMakers.push(() => makeCharacter(
  13605. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13606. {
  13607. front: {
  13608. height: math.unit(2.5, "feet"),
  13609. weight: math.unit(32, "lb"),
  13610. name: "Front",
  13611. image: {
  13612. source: "./media/characters/rufran/front.svg",
  13613. extra: 1313/885,
  13614. bottom: 94/1407
  13615. }
  13616. },
  13617. side: {
  13618. height: math.unit(2.5, "feet"),
  13619. weight: math.unit(32, "lb"),
  13620. name: "Side",
  13621. image: {
  13622. source: "./media/characters/rufran/side.svg",
  13623. extra: 1109/852,
  13624. bottom: 118/1227
  13625. }
  13626. },
  13627. back: {
  13628. height: math.unit(2.5, "feet"),
  13629. weight: math.unit(32, "lb"),
  13630. name: "Back",
  13631. image: {
  13632. source: "./media/characters/rufran/back.svg",
  13633. extra: 1280/878,
  13634. bottom: 131/1411
  13635. }
  13636. },
  13637. mouth: {
  13638. height: math.unit(1.13, "feet"),
  13639. name: "Mouth",
  13640. image: {
  13641. source: "./media/characters/rufran/mouth.svg"
  13642. }
  13643. },
  13644. foot: {
  13645. height: math.unit(1.33, "feet"),
  13646. name: "Foot",
  13647. image: {
  13648. source: "./media/characters/rufran/foot.svg"
  13649. }
  13650. },
  13651. koboldFront: {
  13652. height: math.unit(2 + 6 / 12, "feet"),
  13653. weight: math.unit(20, "lb"),
  13654. name: "Front (Kobold)",
  13655. image: {
  13656. source: "./media/characters/rufran/kobold-front.svg",
  13657. extra: 2041 / 1839,
  13658. bottom: 0.055
  13659. }
  13660. },
  13661. koboldBack: {
  13662. height: math.unit(2 + 6 / 12, "feet"),
  13663. weight: math.unit(20, "lb"),
  13664. name: "Back (Kobold)",
  13665. image: {
  13666. source: "./media/characters/rufran/kobold-back.svg",
  13667. extra: 2054 / 1839,
  13668. bottom: 0.01
  13669. }
  13670. },
  13671. koboldHand: {
  13672. height: math.unit(0.2166, "meters"),
  13673. name: "Hand (Kobold)",
  13674. image: {
  13675. source: "./media/characters/rufran/kobold-hand.svg"
  13676. }
  13677. },
  13678. koboldFoot: {
  13679. height: math.unit(0.185, "meters"),
  13680. name: "Foot (Kobold)",
  13681. image: {
  13682. source: "./media/characters/rufran/kobold-foot.svg"
  13683. }
  13684. },
  13685. },
  13686. [
  13687. {
  13688. name: "Micro",
  13689. height: math.unit(1, "inch")
  13690. },
  13691. {
  13692. name: "Normal",
  13693. height: math.unit(2 + 6 / 12, "feet"),
  13694. default: true
  13695. },
  13696. {
  13697. name: "Big",
  13698. height: math.unit(60, "feet")
  13699. },
  13700. {
  13701. name: "Macro",
  13702. height: math.unit(325, "feet")
  13703. },
  13704. ]
  13705. ))
  13706. characterMakers.push(() => makeCharacter(
  13707. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13708. {
  13709. front: {
  13710. height: math.unit(0.3, "meters"),
  13711. weight: math.unit(3.5, "kg"),
  13712. name: "Front",
  13713. image: {
  13714. source: "./media/characters/chip/front.svg",
  13715. extra: 748 / 674
  13716. }
  13717. },
  13718. },
  13719. [
  13720. {
  13721. name: "Micro",
  13722. height: math.unit(1, "inch"),
  13723. default: true
  13724. },
  13725. ]
  13726. ))
  13727. characterMakers.push(() => makeCharacter(
  13728. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13729. {
  13730. side: {
  13731. height: math.unit(2.3, "meters"),
  13732. weight: math.unit(3500, "lb"),
  13733. name: "Side",
  13734. image: {
  13735. source: "./media/characters/torvid/side.svg",
  13736. extra: 1972 / 722,
  13737. bottom: 0.035
  13738. }
  13739. },
  13740. },
  13741. [
  13742. {
  13743. name: "Normal",
  13744. height: math.unit(2.3, "meters"),
  13745. default: true
  13746. },
  13747. ]
  13748. ))
  13749. characterMakers.push(() => makeCharacter(
  13750. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13751. {
  13752. front: {
  13753. height: math.unit(2, "meters"),
  13754. weight: math.unit(150.5, "kg"),
  13755. name: "Front",
  13756. image: {
  13757. source: "./media/characters/susan/front.svg",
  13758. extra: 693 / 635,
  13759. bottom: 0.05
  13760. }
  13761. },
  13762. },
  13763. [
  13764. {
  13765. name: "Megamacro",
  13766. height: math.unit(505, "miles"),
  13767. default: true
  13768. },
  13769. ]
  13770. ))
  13771. characterMakers.push(() => makeCharacter(
  13772. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13773. {
  13774. front: {
  13775. height: math.unit(6, "feet"),
  13776. weight: math.unit(150, "lb"),
  13777. name: "Front",
  13778. image: {
  13779. source: "./media/characters/raindrops/front.svg",
  13780. extra: 2655 / 2461,
  13781. bottom: 49 / 2705
  13782. }
  13783. },
  13784. back: {
  13785. height: math.unit(6, "feet"),
  13786. weight: math.unit(150, "lb"),
  13787. name: "Back",
  13788. image: {
  13789. source: "./media/characters/raindrops/back.svg",
  13790. extra: 2574 / 2400,
  13791. bottom: 65 / 2634
  13792. }
  13793. },
  13794. },
  13795. [
  13796. {
  13797. name: "Micro",
  13798. height: math.unit(6, "inches")
  13799. },
  13800. {
  13801. name: "Normal",
  13802. height: math.unit(6 + 2 / 12, "feet")
  13803. },
  13804. {
  13805. name: "Macro",
  13806. height: math.unit(131, "feet"),
  13807. default: true
  13808. },
  13809. {
  13810. name: "Megamacro",
  13811. height: math.unit(15, "miles")
  13812. },
  13813. {
  13814. name: "Gigamacro",
  13815. height: math.unit(4000, "miles")
  13816. },
  13817. {
  13818. name: "Teramacro",
  13819. height: math.unit(315000, "miles")
  13820. },
  13821. ]
  13822. ))
  13823. characterMakers.push(() => makeCharacter(
  13824. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13825. {
  13826. front: {
  13827. height: math.unit(2.794, "meters"),
  13828. weight: math.unit(325, "kg"),
  13829. name: "Front",
  13830. image: {
  13831. source: "./media/characters/tezwa/front.svg",
  13832. extra: 2083 / 1906,
  13833. bottom: 0.031
  13834. }
  13835. },
  13836. foot: {
  13837. height: math.unit(0.687, "meters"),
  13838. name: "Foot",
  13839. image: {
  13840. source: "./media/characters/tezwa/foot.svg"
  13841. }
  13842. },
  13843. },
  13844. [
  13845. {
  13846. name: "Normal",
  13847. height: math.unit(9 + 2 / 12, "feet"),
  13848. default: true
  13849. },
  13850. ]
  13851. ))
  13852. characterMakers.push(() => makeCharacter(
  13853. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13854. {
  13855. front: {
  13856. height: math.unit(58, "feet"),
  13857. weight: math.unit(89000, "lb"),
  13858. name: "Front",
  13859. image: {
  13860. source: "./media/characters/typhus/front.svg",
  13861. extra: 816 / 800,
  13862. bottom: 0.065
  13863. }
  13864. },
  13865. },
  13866. [
  13867. {
  13868. name: "Macro",
  13869. height: math.unit(58, "feet"),
  13870. default: true
  13871. },
  13872. ]
  13873. ))
  13874. characterMakers.push(() => makeCharacter(
  13875. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13876. {
  13877. front: {
  13878. height: math.unit(12, "feet"),
  13879. weight: math.unit(6, "tonnes"),
  13880. name: "Front",
  13881. image: {
  13882. source: "./media/characters/lyra-von-wulf/front.svg",
  13883. extra: 1,
  13884. bottom: 0.10
  13885. }
  13886. },
  13887. frontMecha: {
  13888. height: math.unit(12, "feet"),
  13889. weight: math.unit(12, "tonnes"),
  13890. name: "Front (Mecha)",
  13891. image: {
  13892. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13893. extra: 1,
  13894. bottom: 0.042
  13895. }
  13896. },
  13897. maw: {
  13898. height: math.unit(2.2, "feet"),
  13899. name: "Maw",
  13900. image: {
  13901. source: "./media/characters/lyra-von-wulf/maw.svg"
  13902. }
  13903. },
  13904. },
  13905. [
  13906. {
  13907. name: "Normal",
  13908. height: math.unit(12, "feet"),
  13909. default: true
  13910. },
  13911. {
  13912. name: "Classic",
  13913. height: math.unit(50, "feet")
  13914. },
  13915. {
  13916. name: "Macro",
  13917. height: math.unit(500, "feet")
  13918. },
  13919. {
  13920. name: "Megamacro",
  13921. height: math.unit(1, "mile")
  13922. },
  13923. {
  13924. name: "Gigamacro",
  13925. height: math.unit(400, "miles")
  13926. },
  13927. {
  13928. name: "Teramacro",
  13929. height: math.unit(22000, "miles")
  13930. },
  13931. {
  13932. name: "Solarmacro",
  13933. height: math.unit(8600000, "miles")
  13934. },
  13935. {
  13936. name: "Galactic",
  13937. height: math.unit(1057000, "lightyears")
  13938. },
  13939. ]
  13940. ))
  13941. characterMakers.push(() => makeCharacter(
  13942. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13943. {
  13944. front: {
  13945. height: math.unit(6 + 10 / 12, "feet"),
  13946. weight: math.unit(150, "lb"),
  13947. name: "Front",
  13948. image: {
  13949. source: "./media/characters/dixon/front.svg",
  13950. extra: 3361 / 3209,
  13951. bottom: 0.01
  13952. }
  13953. },
  13954. },
  13955. [
  13956. {
  13957. name: "Normal",
  13958. height: math.unit(6 + 10 / 12, "feet"),
  13959. default: true
  13960. },
  13961. {
  13962. name: "Big",
  13963. height: math.unit(12, "meters")
  13964. },
  13965. {
  13966. name: "Macro",
  13967. height: math.unit(500, "meters")
  13968. },
  13969. {
  13970. name: "Megamacro",
  13971. height: math.unit(2, "km")
  13972. },
  13973. ]
  13974. ))
  13975. characterMakers.push(() => makeCharacter(
  13976. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13977. {
  13978. front: {
  13979. height: math.unit(185, "cm"),
  13980. weight: math.unit(68, "kg"),
  13981. name: "Front",
  13982. image: {
  13983. source: "./media/characters/kauko/front.svg",
  13984. extra: 1455 / 1421,
  13985. bottom: 0.03
  13986. }
  13987. },
  13988. back: {
  13989. height: math.unit(185, "cm"),
  13990. weight: math.unit(68, "kg"),
  13991. name: "Back",
  13992. image: {
  13993. source: "./media/characters/kauko/back.svg",
  13994. extra: 1455 / 1421,
  13995. bottom: 0.004
  13996. }
  13997. },
  13998. },
  13999. [
  14000. {
  14001. name: "Normal",
  14002. height: math.unit(185, "cm"),
  14003. default: true
  14004. },
  14005. ]
  14006. ))
  14007. characterMakers.push(() => makeCharacter(
  14008. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  14009. {
  14010. frontSfw: {
  14011. height: math.unit(5, "meters"),
  14012. weight: math.unit(4250, "lb"),
  14013. name: "Front",
  14014. image: {
  14015. source: "./media/characters/varg/front-sfw.svg",
  14016. extra: 1103/1010,
  14017. bottom: 50/1153
  14018. },
  14019. form: "anthro",
  14020. default: true
  14021. },
  14022. backSfw: {
  14023. height: math.unit(5, "meters"),
  14024. weight: math.unit(4250, "lb"),
  14025. name: "Back",
  14026. image: {
  14027. source: "./media/characters/varg/back-sfw.svg",
  14028. extra: 1038/1022,
  14029. bottom: 36/1074
  14030. },
  14031. form: "anthro"
  14032. },
  14033. frontNsfw: {
  14034. height: math.unit(5, "meters"),
  14035. weight: math.unit(4250, "lb"),
  14036. name: "Front (NSFW)",
  14037. image: {
  14038. source: "./media/characters/varg/front-nsfw.svg",
  14039. extra: 1103/1010,
  14040. bottom: 50/1153
  14041. },
  14042. form: "anthro"
  14043. },
  14044. sheath: {
  14045. height: math.unit(3.8, "feet"),
  14046. weight: math.unit(90, "kilograms"),
  14047. name: "Sheath",
  14048. image: {
  14049. source: "./media/characters/varg/sheath.svg"
  14050. },
  14051. form: "anthro"
  14052. },
  14053. dick: {
  14054. height: math.unit(4.6, "feet"),
  14055. weight: math.unit(451, "kilograms"),
  14056. name: "Dick",
  14057. image: {
  14058. source: "./media/characters/varg/dick.svg"
  14059. },
  14060. form: "anthro"
  14061. },
  14062. feralSfw: {
  14063. height: math.unit(5, "meters"),
  14064. weight: math.unit(100000, "lb"),
  14065. name: "Side",
  14066. image: {
  14067. source: "./media/characters/varg/feral-sfw.svg",
  14068. extra: 1065/511,
  14069. bottom: 211/1276
  14070. },
  14071. form: "feral",
  14072. default: true
  14073. },
  14074. feralNsfw: {
  14075. height: math.unit(5, "meters"),
  14076. weight: math.unit(100000, "lb"),
  14077. name: "Side (NSFW)",
  14078. image: {
  14079. source: "./media/characters/varg/feral-nsfw.svg",
  14080. extra: 1065/511,
  14081. bottom: 211/1276
  14082. },
  14083. form: "feral",
  14084. },
  14085. feralSheath: {
  14086. height: math.unit(9.8, "feet"),
  14087. weight: math.unit(2000, "kilograms"),
  14088. name: "Sheath",
  14089. image: {
  14090. source: "./media/characters/varg/sheath.svg"
  14091. },
  14092. form: "feral"
  14093. },
  14094. feralDick: {
  14095. height: math.unit(13.11, "feet"),
  14096. weight: math.unit(10440, "kilograms"),
  14097. name: "Dick",
  14098. image: {
  14099. source: "./media/characters/varg/dick.svg"
  14100. },
  14101. form: "feral"
  14102. },
  14103. },
  14104. [
  14105. {
  14106. name: "Normal",
  14107. height: math.unit(5, "meters"),
  14108. form: "anthro"
  14109. },
  14110. {
  14111. name: "Macro",
  14112. height: math.unit(200, "meters"),
  14113. form: "anthro"
  14114. },
  14115. {
  14116. name: "Megamacro",
  14117. height: math.unit(20, "kilometers"),
  14118. form: "anthro"
  14119. },
  14120. {
  14121. name: "True Size",
  14122. height: math.unit(211, "km"),
  14123. form: "anthro",
  14124. default: true
  14125. },
  14126. {
  14127. name: "Gigamacro",
  14128. height: math.unit(1000, "km"),
  14129. form: "anthro"
  14130. },
  14131. {
  14132. name: "Gigamacro+",
  14133. height: math.unit(8000, "km"),
  14134. form: "anthro"
  14135. },
  14136. {
  14137. name: "Teramacro",
  14138. height: math.unit(1000000, "km"),
  14139. form: "anthro"
  14140. },
  14141. {
  14142. name: "Normal",
  14143. height: math.unit(5, "meters"),
  14144. form: "feral"
  14145. },
  14146. {
  14147. name: "Macro",
  14148. height: math.unit(200, "meters"),
  14149. form: "feral"
  14150. },
  14151. {
  14152. name: "Megamacro",
  14153. height: math.unit(20, "kilometers"),
  14154. form: "feral"
  14155. },
  14156. {
  14157. name: "True Size",
  14158. height: math.unit(211, "km"),
  14159. form: "feral",
  14160. default: true
  14161. },
  14162. {
  14163. name: "Gigamacro",
  14164. height: math.unit(1000, "km"),
  14165. form: "feral"
  14166. },
  14167. {
  14168. name: "Gigamacro+",
  14169. height: math.unit(8000, "km"),
  14170. form: "feral"
  14171. },
  14172. {
  14173. name: "Teramacro",
  14174. height: math.unit(1000000, "km"),
  14175. form: "feral"
  14176. },
  14177. ],
  14178. {
  14179. "anthro": {
  14180. name: "Anthro",
  14181. default: true
  14182. },
  14183. "feral": {
  14184. name: "Feral",
  14185. },
  14186. }
  14187. ))
  14188. characterMakers.push(() => makeCharacter(
  14189. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  14190. {
  14191. front: {
  14192. height: math.unit(7 + 7 / 12, "feet"),
  14193. weight: math.unit(267, "lb"),
  14194. name: "Front",
  14195. image: {
  14196. source: "./media/characters/dayza/front.svg",
  14197. extra: 1262 / 1200,
  14198. bottom: 0.035
  14199. }
  14200. },
  14201. side: {
  14202. height: math.unit(7 + 7 / 12, "feet"),
  14203. weight: math.unit(267, "lb"),
  14204. name: "Side",
  14205. image: {
  14206. source: "./media/characters/dayza/side.svg",
  14207. extra: 1295 / 1245,
  14208. bottom: 0.05
  14209. }
  14210. },
  14211. back: {
  14212. height: math.unit(7 + 7 / 12, "feet"),
  14213. weight: math.unit(267, "lb"),
  14214. name: "Back",
  14215. image: {
  14216. source: "./media/characters/dayza/back.svg",
  14217. extra: 1241 / 1170
  14218. }
  14219. },
  14220. },
  14221. [
  14222. {
  14223. name: "Normal",
  14224. height: math.unit(7 + 7 / 12, "feet"),
  14225. default: true
  14226. },
  14227. {
  14228. name: "Macro",
  14229. height: math.unit(155, "feet")
  14230. },
  14231. ]
  14232. ))
  14233. characterMakers.push(() => makeCharacter(
  14234. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14235. {
  14236. front: {
  14237. height: math.unit(6 + 5 / 12, "feet"),
  14238. weight: math.unit(160, "lb"),
  14239. name: "Front",
  14240. image: {
  14241. source: "./media/characters/xanthos/front.svg",
  14242. extra: 1,
  14243. bottom: 0.04
  14244. }
  14245. },
  14246. back: {
  14247. height: math.unit(6 + 5 / 12, "feet"),
  14248. weight: math.unit(160, "lb"),
  14249. name: "Back",
  14250. image: {
  14251. source: "./media/characters/xanthos/back.svg",
  14252. extra: 1,
  14253. bottom: 0.03
  14254. }
  14255. },
  14256. hand: {
  14257. height: math.unit(0.928, "feet"),
  14258. name: "Hand",
  14259. image: {
  14260. source: "./media/characters/xanthos/hand.svg"
  14261. }
  14262. },
  14263. foot: {
  14264. height: math.unit(1.286, "feet"),
  14265. name: "Foot",
  14266. image: {
  14267. source: "./media/characters/xanthos/foot.svg"
  14268. }
  14269. },
  14270. },
  14271. [
  14272. {
  14273. name: "Normal",
  14274. height: math.unit(6 + 5 / 12, "feet"),
  14275. default: true
  14276. },
  14277. {
  14278. name: "Normal+",
  14279. height: math.unit(6, "meters")
  14280. },
  14281. {
  14282. name: "Macro",
  14283. height: math.unit(40, "feet")
  14284. },
  14285. {
  14286. name: "Macro+",
  14287. height: math.unit(200, "meters")
  14288. },
  14289. {
  14290. name: "Megamacro",
  14291. height: math.unit(20, "km")
  14292. },
  14293. {
  14294. name: "Megamacro+",
  14295. height: math.unit(100, "km")
  14296. },
  14297. {
  14298. name: "Gigamacro",
  14299. height: math.unit(200, "megameters")
  14300. },
  14301. {
  14302. name: "Gigamacro+",
  14303. height: math.unit(1.5, "gigameters")
  14304. },
  14305. ]
  14306. ))
  14307. characterMakers.push(() => makeCharacter(
  14308. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  14309. {
  14310. front: {
  14311. height: math.unit(6 + 3 / 12, "feet"),
  14312. weight: math.unit(215, "lb"),
  14313. name: "Front",
  14314. image: {
  14315. source: "./media/characters/grynn/front.svg",
  14316. extra: 4627 / 4209,
  14317. bottom: 0.047
  14318. }
  14319. },
  14320. },
  14321. [
  14322. {
  14323. name: "Micro",
  14324. height: math.unit(6, "inches")
  14325. },
  14326. {
  14327. name: "Normal",
  14328. height: math.unit(6 + 3 / 12, "feet"),
  14329. default: true
  14330. },
  14331. {
  14332. name: "Big",
  14333. height: math.unit(104, "feet")
  14334. },
  14335. {
  14336. name: "Macro",
  14337. height: math.unit(944, "feet")
  14338. },
  14339. {
  14340. name: "Macro+",
  14341. height: math.unit(9480, "feet")
  14342. },
  14343. {
  14344. name: "Megamacro",
  14345. height: math.unit(78752, "feet")
  14346. },
  14347. {
  14348. name: "Megamacro+",
  14349. height: math.unit(630128, "feet")
  14350. },
  14351. {
  14352. name: "Megamacro++",
  14353. height: math.unit(3150695, "feet")
  14354. },
  14355. ]
  14356. ))
  14357. characterMakers.push(() => makeCharacter(
  14358. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  14359. {
  14360. front: {
  14361. height: math.unit(7 + 5 / 12, "feet"),
  14362. weight: math.unit(450, "lb"),
  14363. name: "Front",
  14364. image: {
  14365. source: "./media/characters/mocha-aura/front.svg",
  14366. extra: 1907 / 1817,
  14367. bottom: 0.04
  14368. }
  14369. },
  14370. back: {
  14371. height: math.unit(7 + 5 / 12, "feet"),
  14372. weight: math.unit(450, "lb"),
  14373. name: "Back",
  14374. image: {
  14375. source: "./media/characters/mocha-aura/back.svg",
  14376. extra: 1900 / 1825,
  14377. bottom: 0.045
  14378. }
  14379. },
  14380. },
  14381. [
  14382. {
  14383. name: "Nano",
  14384. height: math.unit(1, "nm")
  14385. },
  14386. {
  14387. name: "Megamicro",
  14388. height: math.unit(1, "mm")
  14389. },
  14390. {
  14391. name: "Micro",
  14392. height: math.unit(3, "inches")
  14393. },
  14394. {
  14395. name: "Normal",
  14396. height: math.unit(7 + 5 / 12, "feet"),
  14397. default: true
  14398. },
  14399. {
  14400. name: "Macro",
  14401. height: math.unit(30, "feet")
  14402. },
  14403. {
  14404. name: "Megamacro",
  14405. height: math.unit(3500, "feet")
  14406. },
  14407. {
  14408. name: "Teramacro",
  14409. height: math.unit(500000, "miles")
  14410. },
  14411. {
  14412. name: "Petamacro",
  14413. height: math.unit(50000000000000000, "parsecs")
  14414. },
  14415. ]
  14416. ))
  14417. characterMakers.push(() => makeCharacter(
  14418. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  14419. {
  14420. front: {
  14421. height: math.unit(6, "feet"),
  14422. weight: math.unit(150, "lb"),
  14423. name: "Front",
  14424. image: {
  14425. source: "./media/characters/ilisha-devya/front.svg",
  14426. extra: 1053/1049,
  14427. bottom: 270/1323
  14428. }
  14429. },
  14430. back: {
  14431. height: math.unit(6, "feet"),
  14432. weight: math.unit(150, "lb"),
  14433. name: "Back",
  14434. image: {
  14435. source: "./media/characters/ilisha-devya/back.svg",
  14436. extra: 1131/1128,
  14437. bottom: 39/1170
  14438. }
  14439. },
  14440. },
  14441. [
  14442. {
  14443. name: "Macro",
  14444. height: math.unit(500, "feet"),
  14445. default: true
  14446. },
  14447. {
  14448. name: "Megamacro",
  14449. height: math.unit(10, "miles")
  14450. },
  14451. {
  14452. name: "Gigamacro",
  14453. height: math.unit(100000, "miles")
  14454. },
  14455. {
  14456. name: "Examacro",
  14457. height: math.unit(1e9, "lightyears")
  14458. },
  14459. {
  14460. name: "Omniversal",
  14461. height: math.unit(1e33, "lightyears")
  14462. },
  14463. {
  14464. name: "Beyond Infinite",
  14465. height: math.unit(1e100, "lightyears")
  14466. },
  14467. ]
  14468. ))
  14469. characterMakers.push(() => makeCharacter(
  14470. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  14471. {
  14472. Side: {
  14473. height: math.unit(6, "feet"),
  14474. weight: math.unit(150, "lb"),
  14475. name: "Side",
  14476. image: {
  14477. source: "./media/characters/mira/side.svg",
  14478. extra: 900 / 799,
  14479. bottom: 0.02
  14480. }
  14481. },
  14482. },
  14483. [
  14484. {
  14485. name: "Human Size",
  14486. height: math.unit(6, "feet")
  14487. },
  14488. {
  14489. name: "Macro",
  14490. height: math.unit(100, "feet"),
  14491. default: true
  14492. },
  14493. {
  14494. name: "Megamacro",
  14495. height: math.unit(10, "miles")
  14496. },
  14497. {
  14498. name: "Gigamacro",
  14499. height: math.unit(25000, "miles")
  14500. },
  14501. {
  14502. name: "Teramacro",
  14503. height: math.unit(300, "AU")
  14504. },
  14505. {
  14506. name: "Full Size",
  14507. height: math.unit(4.5e10, "lightyears")
  14508. },
  14509. ]
  14510. ))
  14511. characterMakers.push(() => makeCharacter(
  14512. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  14513. {
  14514. front: {
  14515. height: math.unit(6, "feet"),
  14516. weight: math.unit(150, "lb"),
  14517. name: "Front",
  14518. image: {
  14519. source: "./media/characters/holly/front.svg",
  14520. extra: 639 / 606
  14521. }
  14522. },
  14523. back: {
  14524. height: math.unit(6, "feet"),
  14525. weight: math.unit(150, "lb"),
  14526. name: "Back",
  14527. image: {
  14528. source: "./media/characters/holly/back.svg",
  14529. extra: 623 / 598
  14530. }
  14531. },
  14532. frontWorking: {
  14533. height: math.unit(6, "feet"),
  14534. weight: math.unit(150, "lb"),
  14535. name: "Front (Working)",
  14536. image: {
  14537. source: "./media/characters/holly/front-working.svg",
  14538. extra: 607 / 577,
  14539. bottom: 0.048
  14540. }
  14541. },
  14542. },
  14543. [
  14544. {
  14545. name: "Normal",
  14546. height: math.unit(12 + 3 / 12, "feet"),
  14547. default: true
  14548. },
  14549. ]
  14550. ))
  14551. characterMakers.push(() => makeCharacter(
  14552. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  14553. {
  14554. front: {
  14555. height: math.unit(6, "feet"),
  14556. weight: math.unit(150, "lb"),
  14557. name: "Front",
  14558. image: {
  14559. source: "./media/characters/porter/front.svg",
  14560. extra: 1,
  14561. bottom: 0.01
  14562. }
  14563. },
  14564. frontRobes: {
  14565. height: math.unit(6, "feet"),
  14566. weight: math.unit(150, "lb"),
  14567. name: "Front (Robes)",
  14568. image: {
  14569. source: "./media/characters/porter/front-robes.svg",
  14570. extra: 1.01,
  14571. bottom: 0.01
  14572. }
  14573. },
  14574. },
  14575. [
  14576. {
  14577. name: "Normal",
  14578. height: math.unit(11 + 9 / 12, "feet"),
  14579. default: true
  14580. },
  14581. ]
  14582. ))
  14583. characterMakers.push(() => makeCharacter(
  14584. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  14585. {
  14586. legendary: {
  14587. height: math.unit(6, "feet"),
  14588. weight: math.unit(150, "lb"),
  14589. name: "Legendary",
  14590. image: {
  14591. source: "./media/characters/lucy/legendary.svg",
  14592. extra: 1355 / 1100,
  14593. bottom: 0.045
  14594. }
  14595. },
  14596. },
  14597. [
  14598. {
  14599. name: "Legendary",
  14600. height: math.unit(86882 * 2, "miles"),
  14601. default: true
  14602. },
  14603. ]
  14604. ))
  14605. characterMakers.push(() => makeCharacter(
  14606. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  14607. {
  14608. front: {
  14609. height: math.unit(6, "feet"),
  14610. weight: math.unit(150, "lb"),
  14611. name: "Front",
  14612. image: {
  14613. source: "./media/characters/drusilla/front.svg",
  14614. extra: 678 / 635,
  14615. bottom: 0.03
  14616. }
  14617. },
  14618. back: {
  14619. height: math.unit(6, "feet"),
  14620. weight: math.unit(150, "lb"),
  14621. name: "Back",
  14622. image: {
  14623. source: "./media/characters/drusilla/back.svg",
  14624. extra: 678 / 635,
  14625. bottom: 0.005
  14626. }
  14627. },
  14628. },
  14629. [
  14630. {
  14631. name: "Macro",
  14632. height: math.unit(100, "feet")
  14633. },
  14634. {
  14635. name: "Canon Height",
  14636. height: math.unit(2000, "feet"),
  14637. default: true
  14638. },
  14639. ]
  14640. ))
  14641. characterMakers.push(() => makeCharacter(
  14642. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  14643. {
  14644. front: {
  14645. height: math.unit(6, "feet"),
  14646. weight: math.unit(180, "lb"),
  14647. name: "Front",
  14648. image: {
  14649. source: "./media/characters/renard-thatch/front.svg",
  14650. extra: 2411 / 2275,
  14651. bottom: 0.01
  14652. }
  14653. },
  14654. frontPosing: {
  14655. height: math.unit(6, "feet"),
  14656. weight: math.unit(180, "lb"),
  14657. name: "Front (Posing)",
  14658. image: {
  14659. source: "./media/characters/renard-thatch/front-posing.svg",
  14660. extra: 2381 / 2261,
  14661. bottom: 0.01
  14662. }
  14663. },
  14664. back: {
  14665. height: math.unit(6, "feet"),
  14666. weight: math.unit(180, "lb"),
  14667. name: "Back",
  14668. image: {
  14669. source: "./media/characters/renard-thatch/back.svg",
  14670. extra: 2428 / 2288
  14671. }
  14672. },
  14673. },
  14674. [
  14675. {
  14676. name: "Micro",
  14677. height: math.unit(3, "inches")
  14678. },
  14679. {
  14680. name: "Default",
  14681. height: math.unit(6, "feet"),
  14682. default: true
  14683. },
  14684. {
  14685. name: "Macro",
  14686. height: math.unit(75, "feet")
  14687. },
  14688. ]
  14689. ))
  14690. characterMakers.push(() => makeCharacter(
  14691. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  14692. {
  14693. front: {
  14694. height: math.unit(1450, "feet"),
  14695. weight: math.unit(1.21e6, "tons"),
  14696. name: "Front",
  14697. image: {
  14698. source: "./media/characters/sekvra/front.svg",
  14699. extra: 1193/1190,
  14700. bottom: 78/1271
  14701. }
  14702. },
  14703. side: {
  14704. height: math.unit(1450, "feet"),
  14705. weight: math.unit(1.21e6, "tons"),
  14706. name: "Side",
  14707. image: {
  14708. source: "./media/characters/sekvra/side.svg",
  14709. extra: 1193/1190,
  14710. bottom: 52/1245
  14711. }
  14712. },
  14713. back: {
  14714. height: math.unit(1450, "feet"),
  14715. weight: math.unit(1.21e6, "tons"),
  14716. name: "Back",
  14717. image: {
  14718. source: "./media/characters/sekvra/back.svg",
  14719. extra: 1219/1216,
  14720. bottom: 21/1240
  14721. }
  14722. },
  14723. frontClothed: {
  14724. height: math.unit(1450, "feet"),
  14725. weight: math.unit(1.21e6, "tons"),
  14726. name: "Front (Clothed)",
  14727. image: {
  14728. source: "./media/characters/sekvra/front-clothed.svg",
  14729. extra: 1192/1189,
  14730. bottom: 79/1271
  14731. }
  14732. },
  14733. },
  14734. [
  14735. {
  14736. name: "Macro",
  14737. height: math.unit(1450, "feet"),
  14738. default: true
  14739. },
  14740. {
  14741. name: "Megamacro",
  14742. height: math.unit(15000, "feet")
  14743. },
  14744. ]
  14745. ))
  14746. characterMakers.push(() => makeCharacter(
  14747. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14748. {
  14749. front: {
  14750. height: math.unit(6, "feet"),
  14751. weight: math.unit(150, "lb"),
  14752. name: "Front",
  14753. image: {
  14754. source: "./media/characters/carmine/front.svg",
  14755. extra: 1,
  14756. bottom: 0.035
  14757. }
  14758. },
  14759. frontArmor: {
  14760. height: math.unit(6, "feet"),
  14761. weight: math.unit(150, "lb"),
  14762. name: "Front (Armor)",
  14763. image: {
  14764. source: "./media/characters/carmine/front-armor.svg",
  14765. extra: 1,
  14766. bottom: 0.035
  14767. }
  14768. },
  14769. },
  14770. [
  14771. {
  14772. name: "Large",
  14773. height: math.unit(1, "mile")
  14774. },
  14775. {
  14776. name: "Huge",
  14777. height: math.unit(40, "miles"),
  14778. default: true
  14779. },
  14780. {
  14781. name: "Colossal",
  14782. height: math.unit(2500, "miles")
  14783. },
  14784. ]
  14785. ))
  14786. characterMakers.push(() => makeCharacter(
  14787. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  14788. {
  14789. front: {
  14790. height: math.unit(6, "feet"),
  14791. weight: math.unit(150, "lb"),
  14792. name: "Front",
  14793. image: {
  14794. source: "./media/characters/elyssia/front.svg",
  14795. extra: 2201 / 2035,
  14796. bottom: 0.05
  14797. }
  14798. },
  14799. frontClothed: {
  14800. height: math.unit(6, "feet"),
  14801. weight: math.unit(150, "lb"),
  14802. name: "Front (Clothed)",
  14803. image: {
  14804. source: "./media/characters/elyssia/front-clothed.svg",
  14805. extra: 2201 / 2035,
  14806. bottom: 0.05
  14807. }
  14808. },
  14809. back: {
  14810. height: math.unit(6, "feet"),
  14811. weight: math.unit(150, "lb"),
  14812. name: "Back",
  14813. image: {
  14814. source: "./media/characters/elyssia/back.svg",
  14815. extra: 2201 / 2035,
  14816. bottom: 0.013
  14817. }
  14818. },
  14819. },
  14820. [
  14821. {
  14822. name: "Smaller",
  14823. height: math.unit(150, "feet")
  14824. },
  14825. {
  14826. name: "Standard",
  14827. height: math.unit(1400, "feet"),
  14828. default: true
  14829. },
  14830. {
  14831. name: "Distracted",
  14832. height: math.unit(15000, "feet")
  14833. },
  14834. ]
  14835. ))
  14836. characterMakers.push(() => makeCharacter(
  14837. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  14838. {
  14839. front: {
  14840. height: math.unit(7 + 4/12, "feet"),
  14841. weight: math.unit(690, "lb"),
  14842. name: "Front",
  14843. image: {
  14844. source: "./media/characters/geno-maxwell/front.svg",
  14845. extra: 984/856,
  14846. bottom: 87/1071
  14847. }
  14848. },
  14849. back: {
  14850. height: math.unit(7 + 4/12, "feet"),
  14851. weight: math.unit(690, "lb"),
  14852. name: "Back",
  14853. image: {
  14854. source: "./media/characters/geno-maxwell/back.svg",
  14855. extra: 981/854,
  14856. bottom: 57/1038
  14857. }
  14858. },
  14859. frontCostume: {
  14860. height: math.unit(7 + 4/12, "feet"),
  14861. weight: math.unit(690, "lb"),
  14862. name: "Front (Costume)",
  14863. image: {
  14864. source: "./media/characters/geno-maxwell/front-costume.svg",
  14865. extra: 984/856,
  14866. bottom: 87/1071
  14867. }
  14868. },
  14869. backcostume: {
  14870. height: math.unit(7 + 4/12, "feet"),
  14871. weight: math.unit(690, "lb"),
  14872. name: "Back (Costume)",
  14873. image: {
  14874. source: "./media/characters/geno-maxwell/back-costume.svg",
  14875. extra: 981/854,
  14876. bottom: 57/1038
  14877. }
  14878. },
  14879. },
  14880. [
  14881. {
  14882. name: "Micro",
  14883. height: math.unit(3, "inches")
  14884. },
  14885. {
  14886. name: "Normal",
  14887. height: math.unit(7 + 4 / 12, "feet"),
  14888. default: true
  14889. },
  14890. {
  14891. name: "Macro",
  14892. height: math.unit(220, "feet")
  14893. },
  14894. {
  14895. name: "Megamacro",
  14896. height: math.unit(11, "miles")
  14897. },
  14898. ]
  14899. ))
  14900. characterMakers.push(() => makeCharacter(
  14901. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  14902. {
  14903. front: {
  14904. height: math.unit(7 + 4/12, "feet"),
  14905. weight: math.unit(750, "lb"),
  14906. name: "Front",
  14907. image: {
  14908. source: "./media/characters/regena-maxwell/front.svg",
  14909. extra: 984/856,
  14910. bottom: 87/1071
  14911. }
  14912. },
  14913. back: {
  14914. height: math.unit(7 + 4/12, "feet"),
  14915. weight: math.unit(750, "lb"),
  14916. name: "Back",
  14917. image: {
  14918. source: "./media/characters/regena-maxwell/back.svg",
  14919. extra: 981/854,
  14920. bottom: 57/1038
  14921. }
  14922. },
  14923. frontCostume: {
  14924. height: math.unit(7 + 4/12, "feet"),
  14925. weight: math.unit(750, "lb"),
  14926. name: "Front (Costume)",
  14927. image: {
  14928. source: "./media/characters/regena-maxwell/front-costume.svg",
  14929. extra: 984/856,
  14930. bottom: 87/1071
  14931. }
  14932. },
  14933. backcostume: {
  14934. height: math.unit(7 + 4/12, "feet"),
  14935. weight: math.unit(750, "lb"),
  14936. name: "Back (Costume)",
  14937. image: {
  14938. source: "./media/characters/regena-maxwell/back-costume.svg",
  14939. extra: 981/854,
  14940. bottom: 57/1038
  14941. }
  14942. },
  14943. },
  14944. [
  14945. {
  14946. name: "Normal",
  14947. height: math.unit(7 + 4 / 12, "feet"),
  14948. default: true
  14949. },
  14950. {
  14951. name: "Macro",
  14952. height: math.unit(220, "feet")
  14953. },
  14954. {
  14955. name: "Megamacro",
  14956. height: math.unit(11, "miles")
  14957. },
  14958. ]
  14959. ))
  14960. characterMakers.push(() => makeCharacter(
  14961. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14962. {
  14963. front: {
  14964. height: math.unit(6, "feet"),
  14965. weight: math.unit(150, "lb"),
  14966. name: "Front",
  14967. image: {
  14968. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14969. extra: 860 / 690,
  14970. bottom: 0.03
  14971. }
  14972. },
  14973. },
  14974. [
  14975. {
  14976. name: "Normal",
  14977. height: math.unit(1.7, "meters"),
  14978. default: true
  14979. },
  14980. ]
  14981. ))
  14982. characterMakers.push(() => makeCharacter(
  14983. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14984. {
  14985. front: {
  14986. height: math.unit(6, "feet"),
  14987. weight: math.unit(150, "lb"),
  14988. name: "Front",
  14989. image: {
  14990. source: "./media/characters/quilly/front.svg",
  14991. extra: 890 / 776
  14992. }
  14993. },
  14994. },
  14995. [
  14996. {
  14997. name: "Gigamacro",
  14998. height: math.unit(404090, "miles"),
  14999. default: true
  15000. },
  15001. ]
  15002. ))
  15003. characterMakers.push(() => makeCharacter(
  15004. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  15005. {
  15006. front: {
  15007. height: math.unit(7 + 8 / 12, "feet"),
  15008. weight: math.unit(350, "lb"),
  15009. name: "Front",
  15010. image: {
  15011. source: "./media/characters/tempest/front.svg",
  15012. extra: 1175 / 1086,
  15013. bottom: 0.02
  15014. }
  15015. },
  15016. },
  15017. [
  15018. {
  15019. name: "Normal",
  15020. height: math.unit(7 + 8 / 12, "feet"),
  15021. default: true
  15022. },
  15023. ]
  15024. ))
  15025. characterMakers.push(() => makeCharacter(
  15026. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  15027. {
  15028. side: {
  15029. height: math.unit(4 + 5 / 12, "feet"),
  15030. weight: math.unit(80, "lb"),
  15031. name: "Side",
  15032. image: {
  15033. source: "./media/characters/rodger/side.svg",
  15034. extra: 1235 / 1118
  15035. }
  15036. },
  15037. },
  15038. [
  15039. {
  15040. name: "Micro",
  15041. height: math.unit(1, "inch")
  15042. },
  15043. {
  15044. name: "Normal",
  15045. height: math.unit(4 + 5 / 12, "feet"),
  15046. default: true
  15047. },
  15048. {
  15049. name: "Macro",
  15050. height: math.unit(120, "feet")
  15051. },
  15052. ]
  15053. ))
  15054. characterMakers.push(() => makeCharacter(
  15055. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  15056. {
  15057. front: {
  15058. height: math.unit(6, "feet"),
  15059. weight: math.unit(150, "lb"),
  15060. name: "Front",
  15061. image: {
  15062. source: "./media/characters/danyel/front.svg",
  15063. extra: 1185 / 1123,
  15064. bottom: 0.05
  15065. }
  15066. },
  15067. },
  15068. [
  15069. {
  15070. name: "Shrunken",
  15071. height: math.unit(0.5, "mm")
  15072. },
  15073. {
  15074. name: "Micro",
  15075. height: math.unit(1, "mm"),
  15076. default: true
  15077. },
  15078. {
  15079. name: "Upsized",
  15080. height: math.unit(5 + 5 / 12, "feet")
  15081. },
  15082. ]
  15083. ))
  15084. characterMakers.push(() => makeCharacter(
  15085. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  15086. {
  15087. front: {
  15088. height: math.unit(5 + 6 / 12, "feet"),
  15089. weight: math.unit(200, "lb"),
  15090. name: "Front",
  15091. image: {
  15092. source: "./media/characters/vivian-bijoux/front.svg",
  15093. extra: 1217/1209,
  15094. bottom: 76/1293
  15095. }
  15096. },
  15097. back: {
  15098. height: math.unit(5 + 6 / 12, "feet"),
  15099. weight: math.unit(200, "lb"),
  15100. name: "Back",
  15101. image: {
  15102. source: "./media/characters/vivian-bijoux/back.svg",
  15103. extra: 1214/1208,
  15104. bottom: 51/1265
  15105. }
  15106. },
  15107. dressed: {
  15108. height: math.unit(5 + 6 / 12, "feet"),
  15109. weight: math.unit(200, "lb"),
  15110. name: "Dressed",
  15111. image: {
  15112. source: "./media/characters/vivian-bijoux/dressed.svg",
  15113. extra: 1217/1209,
  15114. bottom: 76/1293
  15115. }
  15116. },
  15117. },
  15118. [
  15119. {
  15120. name: "Normal",
  15121. height: math.unit(5 + 6 / 12, "feet"),
  15122. default: true
  15123. },
  15124. {
  15125. name: "Bad Dream",
  15126. height: math.unit(500, "feet")
  15127. },
  15128. {
  15129. name: "Nightmare",
  15130. height: math.unit(500, "miles")
  15131. },
  15132. ]
  15133. ))
  15134. characterMakers.push(() => makeCharacter(
  15135. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  15136. {
  15137. front: {
  15138. height: math.unit(6 + 1 / 12, "feet"),
  15139. weight: math.unit(260, "lb"),
  15140. name: "Front",
  15141. image: {
  15142. source: "./media/characters/zeta/front.svg",
  15143. extra: 1968 / 1889,
  15144. bottom: 0.06
  15145. }
  15146. },
  15147. back: {
  15148. height: math.unit(6 + 1 / 12, "feet"),
  15149. weight: math.unit(260, "lb"),
  15150. name: "Back",
  15151. image: {
  15152. source: "./media/characters/zeta/back.svg",
  15153. extra: 1944 / 1858,
  15154. bottom: 0.03
  15155. }
  15156. },
  15157. hand: {
  15158. height: math.unit(1.112, "feet"),
  15159. name: "Hand",
  15160. image: {
  15161. source: "./media/characters/zeta/hand.svg"
  15162. }
  15163. },
  15164. foot: {
  15165. height: math.unit(1.48, "feet"),
  15166. name: "Foot",
  15167. image: {
  15168. source: "./media/characters/zeta/foot.svg"
  15169. }
  15170. },
  15171. },
  15172. [
  15173. {
  15174. name: "Micro",
  15175. height: math.unit(6, "inches")
  15176. },
  15177. {
  15178. name: "Normal",
  15179. height: math.unit(6 + 1 / 12, "feet"),
  15180. default: true
  15181. },
  15182. {
  15183. name: "Macro",
  15184. height: math.unit(20, "feet")
  15185. },
  15186. ]
  15187. ))
  15188. characterMakers.push(() => makeCharacter(
  15189. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  15190. {
  15191. front: {
  15192. height: math.unit(6, "feet"),
  15193. weight: math.unit(150, "lb"),
  15194. name: "Front",
  15195. image: {
  15196. source: "./media/characters/jamie-larsen/front.svg",
  15197. extra: 962 / 933,
  15198. bottom: 0.02
  15199. }
  15200. },
  15201. back: {
  15202. height: math.unit(6, "feet"),
  15203. weight: math.unit(150, "lb"),
  15204. name: "Back",
  15205. image: {
  15206. source: "./media/characters/jamie-larsen/back.svg",
  15207. extra: 997 / 946
  15208. }
  15209. },
  15210. },
  15211. [
  15212. {
  15213. name: "Macro",
  15214. height: math.unit(28 + 7 / 12, "feet"),
  15215. default: true
  15216. },
  15217. {
  15218. name: "Macro+",
  15219. height: math.unit(180, "feet")
  15220. },
  15221. {
  15222. name: "Megamacro",
  15223. height: math.unit(10, "miles")
  15224. },
  15225. {
  15226. name: "Gigamacro",
  15227. height: math.unit(200000, "miles")
  15228. },
  15229. ]
  15230. ))
  15231. characterMakers.push(() => makeCharacter(
  15232. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15233. {
  15234. front: {
  15235. height: math.unit(6, "feet"),
  15236. weight: math.unit(120, "lb"),
  15237. name: "Front",
  15238. image: {
  15239. source: "./media/characters/vance/front.svg",
  15240. extra: 1980 / 1890,
  15241. bottom: 0.09
  15242. }
  15243. },
  15244. back: {
  15245. height: math.unit(6, "feet"),
  15246. weight: math.unit(120, "lb"),
  15247. name: "Back",
  15248. image: {
  15249. source: "./media/characters/vance/back.svg",
  15250. extra: 2081 / 1994,
  15251. bottom: 0.014
  15252. }
  15253. },
  15254. hand: {
  15255. height: math.unit(0.88, "feet"),
  15256. name: "Hand",
  15257. image: {
  15258. source: "./media/characters/vance/hand.svg"
  15259. }
  15260. },
  15261. foot: {
  15262. height: math.unit(0.64, "feet"),
  15263. name: "Foot",
  15264. image: {
  15265. source: "./media/characters/vance/foot.svg"
  15266. }
  15267. },
  15268. },
  15269. [
  15270. {
  15271. name: "Small",
  15272. height: math.unit(90, "feet"),
  15273. default: true
  15274. },
  15275. {
  15276. name: "Macro",
  15277. height: math.unit(100, "meters")
  15278. },
  15279. {
  15280. name: "Megamacro",
  15281. height: math.unit(15, "miles")
  15282. },
  15283. ]
  15284. ))
  15285. characterMakers.push(() => makeCharacter(
  15286. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  15287. {
  15288. front: {
  15289. height: math.unit(6, "feet"),
  15290. weight: math.unit(180, "lb"),
  15291. name: "Front",
  15292. image: {
  15293. source: "./media/characters/xochitl/front.svg",
  15294. extra: 2297 / 2261,
  15295. bottom: 0.065
  15296. }
  15297. },
  15298. back: {
  15299. height: math.unit(6, "feet"),
  15300. weight: math.unit(180, "lb"),
  15301. name: "Back",
  15302. image: {
  15303. source: "./media/characters/xochitl/back.svg",
  15304. extra: 2386 / 2354,
  15305. bottom: 0.01
  15306. }
  15307. },
  15308. foot: {
  15309. height: math.unit(6 / 5 * 1.15, "feet"),
  15310. weight: math.unit(150, "lb"),
  15311. name: "Foot",
  15312. image: {
  15313. source: "./media/characters/xochitl/foot.svg"
  15314. }
  15315. },
  15316. },
  15317. [
  15318. {
  15319. name: "Macro",
  15320. height: math.unit(80, "feet")
  15321. },
  15322. {
  15323. name: "Macro+",
  15324. height: math.unit(400, "feet"),
  15325. default: true
  15326. },
  15327. {
  15328. name: "Gigamacro",
  15329. height: math.unit(80000, "miles")
  15330. },
  15331. {
  15332. name: "Gigamacro+",
  15333. height: math.unit(400000, "miles")
  15334. },
  15335. {
  15336. name: "Teramacro",
  15337. height: math.unit(300, "AU")
  15338. },
  15339. ]
  15340. ))
  15341. characterMakers.push(() => makeCharacter(
  15342. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  15343. {
  15344. front: {
  15345. height: math.unit(6, "feet"),
  15346. weight: math.unit(150, "lb"),
  15347. name: "Front",
  15348. image: {
  15349. source: "./media/characters/vincent/front.svg",
  15350. extra: 1130 / 1080,
  15351. bottom: 0.055
  15352. }
  15353. },
  15354. beak: {
  15355. height: math.unit(6 * 0.1, "feet"),
  15356. name: "Beak",
  15357. image: {
  15358. source: "./media/characters/vincent/beak.svg"
  15359. }
  15360. },
  15361. hand: {
  15362. height: math.unit(6 * 0.85, "feet"),
  15363. weight: math.unit(150, "lb"),
  15364. name: "Hand",
  15365. image: {
  15366. source: "./media/characters/vincent/hand.svg"
  15367. }
  15368. },
  15369. foot: {
  15370. height: math.unit(6 * 0.19, "feet"),
  15371. weight: math.unit(150, "lb"),
  15372. name: "Foot",
  15373. image: {
  15374. source: "./media/characters/vincent/foot.svg"
  15375. }
  15376. },
  15377. },
  15378. [
  15379. {
  15380. name: "Base",
  15381. height: math.unit(6 + 5 / 12, "feet"),
  15382. default: true
  15383. },
  15384. {
  15385. name: "Macro",
  15386. height: math.unit(300, "feet")
  15387. },
  15388. {
  15389. name: "Megamacro",
  15390. height: math.unit(2, "miles")
  15391. },
  15392. {
  15393. name: "Gigamacro",
  15394. height: math.unit(1000, "miles")
  15395. },
  15396. ]
  15397. ))
  15398. characterMakers.push(() => makeCharacter(
  15399. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  15400. {
  15401. front: {
  15402. height: math.unit(2, "meters"),
  15403. weight: math.unit(500, "kg"),
  15404. name: "Front",
  15405. image: {
  15406. source: "./media/characters/coatl/front.svg",
  15407. extra: 3948 / 3500,
  15408. bottom: 0.082
  15409. }
  15410. },
  15411. },
  15412. [
  15413. {
  15414. name: "Normal",
  15415. height: math.unit(4, "meters")
  15416. },
  15417. {
  15418. name: "Macro",
  15419. height: math.unit(100, "meters"),
  15420. default: true
  15421. },
  15422. {
  15423. name: "Macro+",
  15424. height: math.unit(300, "meters")
  15425. },
  15426. {
  15427. name: "Megamacro",
  15428. height: math.unit(3, "gigameters")
  15429. },
  15430. {
  15431. name: "Megamacro+",
  15432. height: math.unit(300, "terameters")
  15433. },
  15434. {
  15435. name: "Megamacro++",
  15436. height: math.unit(3, "lightyears")
  15437. },
  15438. ]
  15439. ))
  15440. characterMakers.push(() => makeCharacter(
  15441. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  15442. {
  15443. front: {
  15444. height: math.unit(6, "feet"),
  15445. weight: math.unit(50, "kg"),
  15446. name: "front",
  15447. image: {
  15448. source: "./media/characters/shiroryu/front.svg",
  15449. extra: 1990 / 1935
  15450. }
  15451. },
  15452. },
  15453. [
  15454. {
  15455. name: "Mortal Mingling",
  15456. height: math.unit(3, "meters")
  15457. },
  15458. {
  15459. name: "Kaiju-ish",
  15460. height: math.unit(250, "meters")
  15461. },
  15462. {
  15463. name: "Somewhat Godly",
  15464. height: math.unit(400, "km"),
  15465. default: true
  15466. },
  15467. {
  15468. name: "Planetary",
  15469. height: math.unit(300, "megameters")
  15470. },
  15471. {
  15472. name: "Galaxy-dwarfing",
  15473. height: math.unit(450, "kiloparsecs")
  15474. },
  15475. {
  15476. name: "Universe Eater",
  15477. height: math.unit(150, "gigaparsecs")
  15478. },
  15479. {
  15480. name: "Almost Immeasurable",
  15481. height: math.unit(1.3e266, "yottaparsecs")
  15482. },
  15483. ]
  15484. ))
  15485. characterMakers.push(() => makeCharacter(
  15486. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  15487. {
  15488. front: {
  15489. height: math.unit(6, "feet"),
  15490. weight: math.unit(150, "lb"),
  15491. name: "Front",
  15492. image: {
  15493. source: "./media/characters/umeko/front.svg",
  15494. extra: 1,
  15495. bottom: 0.019
  15496. }
  15497. },
  15498. frontArmored: {
  15499. height: math.unit(6, "feet"),
  15500. weight: math.unit(150, "lb"),
  15501. name: "Front (Armored)",
  15502. image: {
  15503. source: "./media/characters/umeko/front-armored.svg",
  15504. extra: 1,
  15505. bottom: 0.021
  15506. }
  15507. },
  15508. },
  15509. [
  15510. {
  15511. name: "Macro",
  15512. height: math.unit(220, "feet"),
  15513. default: true
  15514. },
  15515. {
  15516. name: "Guardian Dragon",
  15517. height: math.unit(50, "miles")
  15518. },
  15519. {
  15520. name: "Cosmic",
  15521. height: math.unit(800000, "miles")
  15522. },
  15523. ]
  15524. ))
  15525. characterMakers.push(() => makeCharacter(
  15526. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  15527. {
  15528. front: {
  15529. height: math.unit(6, "feet"),
  15530. weight: math.unit(150, "lb"),
  15531. name: "Front",
  15532. image: {
  15533. source: "./media/characters/cassidy/front.svg",
  15534. extra: 810/808,
  15535. bottom: 41/851
  15536. }
  15537. },
  15538. },
  15539. [
  15540. {
  15541. name: "Canon Height",
  15542. height: math.unit(120, "feet"),
  15543. default: true
  15544. },
  15545. {
  15546. name: "Macro+",
  15547. height: math.unit(400, "feet")
  15548. },
  15549. {
  15550. name: "Macro++",
  15551. height: math.unit(4000, "feet")
  15552. },
  15553. {
  15554. name: "Megamacro",
  15555. height: math.unit(3, "miles")
  15556. },
  15557. ]
  15558. ))
  15559. characterMakers.push(() => makeCharacter(
  15560. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  15561. {
  15562. front: {
  15563. height: math.unit(6, "feet"),
  15564. weight: math.unit(150, "lb"),
  15565. name: "Front",
  15566. image: {
  15567. source: "./media/characters/isaac/front.svg",
  15568. extra: 896 / 815,
  15569. bottom: 0.11
  15570. }
  15571. },
  15572. },
  15573. [
  15574. {
  15575. name: "Human Size",
  15576. height: math.unit(8, "feet"),
  15577. default: true
  15578. },
  15579. {
  15580. name: "Macro",
  15581. height: math.unit(400, "feet")
  15582. },
  15583. {
  15584. name: "Megamacro",
  15585. height: math.unit(50, "miles")
  15586. },
  15587. {
  15588. name: "Canon Height",
  15589. height: math.unit(200, "AU")
  15590. },
  15591. ]
  15592. ))
  15593. characterMakers.push(() => makeCharacter(
  15594. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  15595. {
  15596. front: {
  15597. height: math.unit(6, "feet"),
  15598. weight: math.unit(72, "kg"),
  15599. name: "Front",
  15600. image: {
  15601. source: "./media/characters/sleekit/front.svg",
  15602. extra: 4693 / 4487,
  15603. bottom: 0.012
  15604. }
  15605. },
  15606. },
  15607. [
  15608. {
  15609. name: "Minimum Height",
  15610. height: math.unit(10, "meters")
  15611. },
  15612. {
  15613. name: "Smaller",
  15614. height: math.unit(25, "meters")
  15615. },
  15616. {
  15617. name: "Larger",
  15618. height: math.unit(38, "meters"),
  15619. default: true
  15620. },
  15621. {
  15622. name: "Maximum height",
  15623. height: math.unit(100, "meters")
  15624. },
  15625. ]
  15626. ))
  15627. characterMakers.push(() => makeCharacter(
  15628. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  15629. {
  15630. front: {
  15631. height: math.unit(6, "feet"),
  15632. weight: math.unit(150, "lb"),
  15633. name: "Front",
  15634. image: {
  15635. source: "./media/characters/nillia/front.svg",
  15636. extra: 2195 / 2037,
  15637. bottom: 0.005
  15638. }
  15639. },
  15640. back: {
  15641. height: math.unit(6, "feet"),
  15642. weight: math.unit(150, "lb"),
  15643. name: "Back",
  15644. image: {
  15645. source: "./media/characters/nillia/back.svg",
  15646. extra: 2195 / 2037,
  15647. bottom: 0.005
  15648. }
  15649. },
  15650. },
  15651. [
  15652. {
  15653. name: "Canon Height",
  15654. height: math.unit(489, "feet"),
  15655. default: true
  15656. }
  15657. ]
  15658. ))
  15659. characterMakers.push(() => makeCharacter(
  15660. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  15661. {
  15662. front: {
  15663. height: math.unit(6, "feet"),
  15664. weight: math.unit(150, "lb"),
  15665. name: "Front",
  15666. image: {
  15667. source: "./media/characters/mesmyriza/front.svg",
  15668. extra: 2067 / 1784,
  15669. bottom: 0.035
  15670. }
  15671. },
  15672. foot: {
  15673. height: math.unit(6 / (250 / 35), "feet"),
  15674. name: "Foot",
  15675. image: {
  15676. source: "./media/characters/mesmyriza/foot.svg"
  15677. }
  15678. },
  15679. },
  15680. [
  15681. {
  15682. name: "Macro",
  15683. height: math.unit(457, "meters"),
  15684. default: true
  15685. },
  15686. {
  15687. name: "Megamacro",
  15688. height: math.unit(8, "megameters")
  15689. },
  15690. ]
  15691. ))
  15692. characterMakers.push(() => makeCharacter(
  15693. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  15694. {
  15695. front: {
  15696. height: math.unit(6, "feet"),
  15697. weight: math.unit(250, "lb"),
  15698. name: "Front",
  15699. image: {
  15700. source: "./media/characters/saudade/front.svg",
  15701. extra: 1172 / 1139,
  15702. bottom: 0.035
  15703. }
  15704. },
  15705. },
  15706. [
  15707. {
  15708. name: "Micro",
  15709. height: math.unit(3, "inches")
  15710. },
  15711. {
  15712. name: "Normal",
  15713. height: math.unit(6, "feet"),
  15714. default: true
  15715. },
  15716. {
  15717. name: "Macro",
  15718. height: math.unit(50, "feet")
  15719. },
  15720. {
  15721. name: "Megamacro",
  15722. height: math.unit(2800, "feet")
  15723. },
  15724. ]
  15725. ))
  15726. characterMakers.push(() => makeCharacter(
  15727. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15728. {
  15729. front: {
  15730. height: math.unit(5 + 4 / 12, "feet"),
  15731. weight: math.unit(100, "lb"),
  15732. name: "Front",
  15733. image: {
  15734. source: "./media/characters/keireer/front.svg",
  15735. extra: 716 / 666,
  15736. bottom: 0.05
  15737. }
  15738. },
  15739. },
  15740. [
  15741. {
  15742. name: "Normal",
  15743. height: math.unit(5 + 4 / 12, "feet"),
  15744. default: true
  15745. },
  15746. ]
  15747. ))
  15748. characterMakers.push(() => makeCharacter(
  15749. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15750. {
  15751. front: {
  15752. height: math.unit(5.5, "feet"),
  15753. weight: math.unit(90, "kg"),
  15754. name: "Front",
  15755. image: {
  15756. source: "./media/characters/mirja/front.svg",
  15757. extra: 1452/1262,
  15758. bottom: 67/1519
  15759. }
  15760. },
  15761. frontDressed: {
  15762. height: math.unit(5.5, "feet"),
  15763. weight: math.unit(90, "lb"),
  15764. name: "Front (Dressed)",
  15765. image: {
  15766. source: "./media/characters/mirja/dressed.svg",
  15767. extra: 1452/1262,
  15768. bottom: 67/1519
  15769. }
  15770. },
  15771. back: {
  15772. height: math.unit(6, "feet"),
  15773. weight: math.unit(90, "lb"),
  15774. name: "Back",
  15775. image: {
  15776. source: "./media/characters/mirja/back.svg",
  15777. extra: 1892/1795,
  15778. bottom: 48/1940
  15779. }
  15780. },
  15781. maw: {
  15782. height: math.unit(1.312, "feet"),
  15783. name: "Maw",
  15784. image: {
  15785. source: "./media/characters/mirja/maw.svg"
  15786. }
  15787. },
  15788. paw: {
  15789. height: math.unit(1.15, "feet"),
  15790. name: "Paw",
  15791. image: {
  15792. source: "./media/characters/mirja/paw.svg"
  15793. }
  15794. },
  15795. },
  15796. [
  15797. {
  15798. name: "\"Incognito\"",
  15799. height: math.unit(3, "meters")
  15800. },
  15801. {
  15802. name: "Strolling Size",
  15803. height: math.unit(15, "km")
  15804. },
  15805. {
  15806. name: "Larger Strolling Size",
  15807. height: math.unit(400, "km")
  15808. },
  15809. {
  15810. name: "Preferred Size",
  15811. height: math.unit(5000, "km"),
  15812. default: true
  15813. },
  15814. {
  15815. name: "True Size",
  15816. height: math.unit(30657809462086840000000000000000, "parsecs"),
  15817. },
  15818. ]
  15819. ))
  15820. characterMakers.push(() => makeCharacter(
  15821. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  15822. {
  15823. front: {
  15824. height: math.unit(15, "feet"),
  15825. weight: math.unit(880, "kg"),
  15826. name: "Front",
  15827. image: {
  15828. source: "./media/characters/nightraver/front.svg",
  15829. extra: 2444 / 2160,
  15830. bottom: 0.027
  15831. }
  15832. },
  15833. back: {
  15834. height: math.unit(15, "feet"),
  15835. weight: math.unit(880, "kg"),
  15836. name: "Back",
  15837. image: {
  15838. source: "./media/characters/nightraver/back.svg",
  15839. extra: 2309 / 2180,
  15840. bottom: 0.005
  15841. }
  15842. },
  15843. sole: {
  15844. height: math.unit(2.878, "feet"),
  15845. name: "Sole",
  15846. image: {
  15847. source: "./media/characters/nightraver/sole.svg"
  15848. }
  15849. },
  15850. foot: {
  15851. height: math.unit(2.285, "feet"),
  15852. name: "Foot",
  15853. image: {
  15854. source: "./media/characters/nightraver/foot.svg"
  15855. }
  15856. },
  15857. maw: {
  15858. height: math.unit(2.67, "feet"),
  15859. name: "Maw",
  15860. image: {
  15861. source: "./media/characters/nightraver/maw.svg"
  15862. }
  15863. },
  15864. },
  15865. [
  15866. {
  15867. name: "Micro",
  15868. height: math.unit(1, "cm")
  15869. },
  15870. {
  15871. name: "Normal",
  15872. height: math.unit(15, "feet"),
  15873. default: true
  15874. },
  15875. {
  15876. name: "Macro",
  15877. height: math.unit(300, "feet")
  15878. },
  15879. {
  15880. name: "Megamacro",
  15881. height: math.unit(300, "miles")
  15882. },
  15883. {
  15884. name: "Gigamacro",
  15885. height: math.unit(10000, "miles")
  15886. },
  15887. ]
  15888. ))
  15889. characterMakers.push(() => makeCharacter(
  15890. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  15891. {
  15892. side: {
  15893. height: math.unit(2, "inches"),
  15894. weight: math.unit(5, "grams"),
  15895. name: "Side",
  15896. image: {
  15897. source: "./media/characters/arc/side.svg"
  15898. }
  15899. },
  15900. },
  15901. [
  15902. {
  15903. name: "Micro",
  15904. height: math.unit(2, "inches"),
  15905. default: true
  15906. },
  15907. ]
  15908. ))
  15909. characterMakers.push(() => makeCharacter(
  15910. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  15911. {
  15912. front: {
  15913. height: math.unit(1.1938, "meters"),
  15914. weight: math.unit(54, "kg"),
  15915. name: "Front",
  15916. image: {
  15917. source: "./media/characters/nebula-shahar/front.svg",
  15918. extra: 1642 / 1436,
  15919. bottom: 0.06
  15920. }
  15921. },
  15922. },
  15923. [
  15924. {
  15925. name: "Megamicro",
  15926. height: math.unit(0.3, "mm")
  15927. },
  15928. {
  15929. name: "Micro",
  15930. height: math.unit(3, "cm")
  15931. },
  15932. {
  15933. name: "Normal",
  15934. height: math.unit(138, "cm"),
  15935. default: true
  15936. },
  15937. {
  15938. name: "Macro",
  15939. height: math.unit(30, "m")
  15940. },
  15941. ]
  15942. ))
  15943. characterMakers.push(() => makeCharacter(
  15944. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  15945. {
  15946. front: {
  15947. height: math.unit(5.24, "feet"),
  15948. weight: math.unit(150, "lb"),
  15949. name: "Front",
  15950. image: {
  15951. source: "./media/characters/shayla/front.svg",
  15952. extra: 1512 / 1414,
  15953. bottom: 0.01
  15954. }
  15955. },
  15956. back: {
  15957. height: math.unit(5.24, "feet"),
  15958. weight: math.unit(150, "lb"),
  15959. name: "Back",
  15960. image: {
  15961. source: "./media/characters/shayla/back.svg",
  15962. extra: 1512 / 1414
  15963. }
  15964. },
  15965. hand: {
  15966. height: math.unit(0.7781496062992126, "feet"),
  15967. name: "Hand",
  15968. image: {
  15969. source: "./media/characters/shayla/hand.svg"
  15970. }
  15971. },
  15972. foot: {
  15973. height: math.unit(1.4206036745406823, "feet"),
  15974. name: "Foot",
  15975. image: {
  15976. source: "./media/characters/shayla/foot.svg"
  15977. }
  15978. },
  15979. },
  15980. [
  15981. {
  15982. name: "Micro",
  15983. height: math.unit(0.32, "feet")
  15984. },
  15985. {
  15986. name: "Normal",
  15987. height: math.unit(5.24, "feet"),
  15988. default: true
  15989. },
  15990. {
  15991. name: "Macro",
  15992. height: math.unit(492.12, "feet")
  15993. },
  15994. {
  15995. name: "Megamacro",
  15996. height: math.unit(186.41, "miles")
  15997. },
  15998. ]
  15999. ))
  16000. characterMakers.push(() => makeCharacter(
  16001. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  16002. {
  16003. front: {
  16004. height: math.unit(2.2, "m"),
  16005. weight: math.unit(120, "kg"),
  16006. name: "Front",
  16007. image: {
  16008. source: "./media/characters/pia-jr/front.svg",
  16009. extra: 1000 / 970,
  16010. bottom: 0.035
  16011. }
  16012. },
  16013. hand: {
  16014. height: math.unit(0.759 * 7.21 / 6, "feet"),
  16015. name: "Hand",
  16016. image: {
  16017. source: "./media/characters/pia-jr/hand.svg"
  16018. }
  16019. },
  16020. paw: {
  16021. height: math.unit(1.185 * 7.21 / 6, "feet"),
  16022. name: "Paw",
  16023. image: {
  16024. source: "./media/characters/pia-jr/paw.svg"
  16025. }
  16026. },
  16027. },
  16028. [
  16029. {
  16030. name: "Micro",
  16031. height: math.unit(1.2, "cm")
  16032. },
  16033. {
  16034. name: "Normal",
  16035. height: math.unit(2.2, "m"),
  16036. default: true
  16037. },
  16038. {
  16039. name: "Macro",
  16040. height: math.unit(180, "m")
  16041. },
  16042. {
  16043. name: "Megamacro",
  16044. height: math.unit(420, "km")
  16045. },
  16046. ]
  16047. ))
  16048. characterMakers.push(() => makeCharacter(
  16049. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  16050. {
  16051. front: {
  16052. height: math.unit(2, "m"),
  16053. weight: math.unit(115, "kg"),
  16054. name: "Front",
  16055. image: {
  16056. source: "./media/characters/pia-sr/front.svg",
  16057. extra: 760 / 730,
  16058. bottom: 0.015
  16059. }
  16060. },
  16061. back: {
  16062. height: math.unit(2, "m"),
  16063. weight: math.unit(115, "kg"),
  16064. name: "Back",
  16065. image: {
  16066. source: "./media/characters/pia-sr/back.svg",
  16067. extra: 760 / 730,
  16068. bottom: 0.01
  16069. }
  16070. },
  16071. hand: {
  16072. height: math.unit(0.89 * 6.56 / 6, "feet"),
  16073. name: "Hand",
  16074. image: {
  16075. source: "./media/characters/pia-sr/hand.svg"
  16076. }
  16077. },
  16078. foot: {
  16079. height: math.unit(1.83, "feet"),
  16080. name: "Foot",
  16081. image: {
  16082. source: "./media/characters/pia-sr/foot.svg"
  16083. }
  16084. },
  16085. },
  16086. [
  16087. {
  16088. name: "Micro",
  16089. height: math.unit(88, "mm")
  16090. },
  16091. {
  16092. name: "Normal",
  16093. height: math.unit(2, "m"),
  16094. default: true
  16095. },
  16096. {
  16097. name: "Macro",
  16098. height: math.unit(200, "m")
  16099. },
  16100. {
  16101. name: "Megamacro",
  16102. height: math.unit(420, "km")
  16103. },
  16104. ]
  16105. ))
  16106. characterMakers.push(() => makeCharacter(
  16107. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  16108. {
  16109. front: {
  16110. height: math.unit(8 + 2 / 12, "feet"),
  16111. weight: math.unit(300, "lb"),
  16112. name: "Front",
  16113. image: {
  16114. source: "./media/characters/kibibyte/front.svg",
  16115. extra: 2221 / 2098,
  16116. bottom: 0.04
  16117. }
  16118. },
  16119. },
  16120. [
  16121. {
  16122. name: "Normal",
  16123. height: math.unit(8 + 2 / 12, "feet"),
  16124. default: true
  16125. },
  16126. {
  16127. name: "Socialable Macro",
  16128. height: math.unit(50, "feet")
  16129. },
  16130. {
  16131. name: "Macro",
  16132. height: math.unit(300, "feet")
  16133. },
  16134. {
  16135. name: "Megamacro",
  16136. height: math.unit(500, "miles")
  16137. },
  16138. ]
  16139. ))
  16140. characterMakers.push(() => makeCharacter(
  16141. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  16142. {
  16143. front: {
  16144. height: math.unit(6, "feet"),
  16145. weight: math.unit(150, "lb"),
  16146. name: "Front",
  16147. image: {
  16148. source: "./media/characters/felix/front.svg",
  16149. extra: 762 / 722,
  16150. bottom: 0.02
  16151. }
  16152. },
  16153. frontClothed: {
  16154. height: math.unit(6, "feet"),
  16155. weight: math.unit(150, "lb"),
  16156. name: "Front (Clothed)",
  16157. image: {
  16158. source: "./media/characters/felix/front-clothed.svg",
  16159. extra: 762 / 722,
  16160. bottom: 0.02
  16161. }
  16162. },
  16163. },
  16164. [
  16165. {
  16166. name: "Normal",
  16167. height: math.unit(6 + 8 / 12, "feet"),
  16168. default: true
  16169. },
  16170. {
  16171. name: "Macro",
  16172. height: math.unit(2600, "feet")
  16173. },
  16174. {
  16175. name: "Megamacro",
  16176. height: math.unit(450, "miles")
  16177. },
  16178. ]
  16179. ))
  16180. characterMakers.push(() => makeCharacter(
  16181. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  16182. {
  16183. front: {
  16184. height: math.unit(6 + 1 / 12, "feet"),
  16185. weight: math.unit(250, "lb"),
  16186. name: "Front",
  16187. image: {
  16188. source: "./media/characters/tobo/front.svg",
  16189. extra: 608 / 586,
  16190. bottom: 0.023
  16191. }
  16192. },
  16193. back: {
  16194. height: math.unit(6 + 1 / 12, "feet"),
  16195. weight: math.unit(250, "lb"),
  16196. name: "Back",
  16197. image: {
  16198. source: "./media/characters/tobo/back.svg",
  16199. extra: 608 / 586
  16200. }
  16201. },
  16202. },
  16203. [
  16204. {
  16205. name: "Nano",
  16206. height: math.unit(2, "nm")
  16207. },
  16208. {
  16209. name: "Megamicro",
  16210. height: math.unit(0.1, "mm")
  16211. },
  16212. {
  16213. name: "Micro",
  16214. height: math.unit(1, "inch"),
  16215. default: true
  16216. },
  16217. {
  16218. name: "Human-sized",
  16219. height: math.unit(6 + 1 / 12, "feet")
  16220. },
  16221. {
  16222. name: "Macro",
  16223. height: math.unit(250, "feet")
  16224. },
  16225. {
  16226. name: "Megamacro",
  16227. height: math.unit(75, "miles")
  16228. },
  16229. {
  16230. name: "Texas-sized",
  16231. height: math.unit(750, "miles")
  16232. },
  16233. {
  16234. name: "Teramacro",
  16235. height: math.unit(50000, "miles")
  16236. },
  16237. ]
  16238. ))
  16239. characterMakers.push(() => makeCharacter(
  16240. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  16241. {
  16242. front: {
  16243. height: math.unit(6, "feet"),
  16244. weight: math.unit(269, "lb"),
  16245. name: "Front",
  16246. image: {
  16247. source: "./media/characters/danny-kapowsky/front.svg",
  16248. extra: 766 / 736,
  16249. bottom: 0.044
  16250. }
  16251. },
  16252. back: {
  16253. height: math.unit(6, "feet"),
  16254. weight: math.unit(269, "lb"),
  16255. name: "Back",
  16256. image: {
  16257. source: "./media/characters/danny-kapowsky/back.svg",
  16258. extra: 797 / 760,
  16259. bottom: 0.025
  16260. }
  16261. },
  16262. },
  16263. [
  16264. {
  16265. name: "Macro",
  16266. height: math.unit(150, "feet"),
  16267. default: true
  16268. },
  16269. {
  16270. name: "Macro+",
  16271. height: math.unit(200, "feet")
  16272. },
  16273. {
  16274. name: "Macro++",
  16275. height: math.unit(300, "feet")
  16276. },
  16277. {
  16278. name: "Macro+++",
  16279. height: math.unit(400, "feet")
  16280. },
  16281. ]
  16282. ))
  16283. characterMakers.push(() => makeCharacter(
  16284. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  16285. {
  16286. side: {
  16287. height: math.unit(6, "feet"),
  16288. weight: math.unit(170, "lb"),
  16289. name: "Side",
  16290. image: {
  16291. source: "./media/characters/finn/side.svg",
  16292. extra: 1953 / 1807,
  16293. bottom: 0.057
  16294. }
  16295. },
  16296. },
  16297. [
  16298. {
  16299. name: "Megamacro",
  16300. height: math.unit(14445, "feet"),
  16301. default: true
  16302. },
  16303. ]
  16304. ))
  16305. characterMakers.push(() => makeCharacter(
  16306. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  16307. {
  16308. front: {
  16309. height: math.unit(5 + 6 / 12, "feet"),
  16310. weight: math.unit(125, "lb"),
  16311. name: "Front",
  16312. image: {
  16313. source: "./media/characters/roy/front.svg",
  16314. extra: 1,
  16315. bottom: 0.11
  16316. }
  16317. },
  16318. },
  16319. [
  16320. {
  16321. name: "Micro",
  16322. height: math.unit(3, "inches"),
  16323. default: true
  16324. },
  16325. {
  16326. name: "Normal",
  16327. height: math.unit(5 + 6 / 12, "feet")
  16328. },
  16329. {
  16330. name: "Lesser Macro",
  16331. height: math.unit(60, "feet")
  16332. },
  16333. {
  16334. name: "Greater Macro",
  16335. height: math.unit(120, "feet")
  16336. },
  16337. ]
  16338. ))
  16339. characterMakers.push(() => makeCharacter(
  16340. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  16341. {
  16342. front: {
  16343. height: math.unit(6, "feet"),
  16344. weight: math.unit(100, "lb"),
  16345. name: "Front",
  16346. image: {
  16347. source: "./media/characters/aevsivs/front.svg",
  16348. extra: 1,
  16349. bottom: 0.03
  16350. }
  16351. },
  16352. back: {
  16353. height: math.unit(6, "feet"),
  16354. weight: math.unit(100, "lb"),
  16355. name: "Back",
  16356. image: {
  16357. source: "./media/characters/aevsivs/back.svg"
  16358. }
  16359. },
  16360. },
  16361. [
  16362. {
  16363. name: "Micro",
  16364. height: math.unit(2, "inches"),
  16365. default: true
  16366. },
  16367. {
  16368. name: "Normal",
  16369. height: math.unit(5, "feet")
  16370. },
  16371. ]
  16372. ))
  16373. characterMakers.push(() => makeCharacter(
  16374. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  16375. {
  16376. front: {
  16377. height: math.unit(5 + 7 / 12, "feet"),
  16378. weight: math.unit(159, "lb"),
  16379. name: "Front",
  16380. image: {
  16381. source: "./media/characters/hildegard/front.svg",
  16382. extra: 289 / 269,
  16383. bottom: 7.63 / 297.8
  16384. }
  16385. },
  16386. back: {
  16387. height: math.unit(5 + 7 / 12, "feet"),
  16388. weight: math.unit(159, "lb"),
  16389. name: "Back",
  16390. image: {
  16391. source: "./media/characters/hildegard/back.svg",
  16392. extra: 280 / 260,
  16393. bottom: 2.3 / 282
  16394. }
  16395. },
  16396. },
  16397. [
  16398. {
  16399. name: "Normal",
  16400. height: math.unit(5 + 7 / 12, "feet"),
  16401. default: true
  16402. },
  16403. ]
  16404. ))
  16405. characterMakers.push(() => makeCharacter(
  16406. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  16407. {
  16408. bernard: {
  16409. height: math.unit(2 + 7 / 12, "feet"),
  16410. weight: math.unit(66, "lb"),
  16411. name: "Bernard",
  16412. rename: true,
  16413. image: {
  16414. source: "./media/characters/bernard-wilder/bernard.svg",
  16415. extra: 192 / 128,
  16416. bottom: 0.05
  16417. }
  16418. },
  16419. wilder: {
  16420. height: math.unit(5 + 8 / 12, "feet"),
  16421. weight: math.unit(143, "lb"),
  16422. name: "Wilder",
  16423. rename: true,
  16424. image: {
  16425. source: "./media/characters/bernard-wilder/wilder.svg",
  16426. extra: 361 / 312,
  16427. bottom: 0.02
  16428. }
  16429. },
  16430. },
  16431. [
  16432. {
  16433. name: "Normal",
  16434. height: math.unit(2 + 7 / 12, "feet"),
  16435. default: true
  16436. },
  16437. ]
  16438. ))
  16439. characterMakers.push(() => makeCharacter(
  16440. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  16441. {
  16442. anthro: {
  16443. height: math.unit(6 + 1 / 12, "feet"),
  16444. weight: math.unit(155, "lb"),
  16445. name: "Anthro",
  16446. image: {
  16447. source: "./media/characters/hearth/anthro.svg",
  16448. extra: 1178/1136,
  16449. bottom: 28/1206
  16450. }
  16451. },
  16452. feral: {
  16453. height: math.unit(3.78, "feet"),
  16454. weight: math.unit(35, "kg"),
  16455. name: "Feral",
  16456. image: {
  16457. source: "./media/characters/hearth/feral.svg",
  16458. extra: 153 / 135,
  16459. bottom: 0.03
  16460. }
  16461. },
  16462. },
  16463. [
  16464. {
  16465. name: "Normal",
  16466. height: math.unit(6 + 1 / 12, "feet"),
  16467. default: true
  16468. },
  16469. ]
  16470. ))
  16471. characterMakers.push(() => makeCharacter(
  16472. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  16473. {
  16474. front: {
  16475. height: math.unit(6, "feet"),
  16476. weight: math.unit(182, "lb"),
  16477. name: "Front",
  16478. image: {
  16479. source: "./media/characters/ingrid/front.svg",
  16480. extra: 294 / 268,
  16481. bottom: 0.027
  16482. }
  16483. },
  16484. },
  16485. [
  16486. {
  16487. name: "Normal",
  16488. height: math.unit(6, "feet"),
  16489. default: true
  16490. },
  16491. ]
  16492. ))
  16493. characterMakers.push(() => makeCharacter(
  16494. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  16495. {
  16496. eevee: {
  16497. height: math.unit(2 + 10 / 12, "feet"),
  16498. weight: math.unit(86, "lb"),
  16499. name: "Malgam",
  16500. image: {
  16501. source: "./media/characters/malgam/eevee.svg",
  16502. extra: 952/784,
  16503. bottom: 38/990
  16504. }
  16505. },
  16506. sylveon: {
  16507. height: math.unit(4, "feet"),
  16508. weight: math.unit(101, "lb"),
  16509. name: "Future Malgam",
  16510. rename: true,
  16511. image: {
  16512. source: "./media/characters/malgam/sylveon.svg",
  16513. extra: 371 / 325,
  16514. bottom: 0.015
  16515. }
  16516. },
  16517. gigantamax: {
  16518. height: math.unit(50, "feet"),
  16519. name: "Gigantamax Malgam",
  16520. rename: true,
  16521. image: {
  16522. source: "./media/characters/malgam/gigantamax.svg"
  16523. }
  16524. },
  16525. },
  16526. [
  16527. {
  16528. name: "Normal",
  16529. height: math.unit(2 + 10 / 12, "feet"),
  16530. default: true
  16531. },
  16532. ]
  16533. ))
  16534. characterMakers.push(() => makeCharacter(
  16535. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  16536. {
  16537. front: {
  16538. height: math.unit(5 + 11 / 12, "feet"),
  16539. weight: math.unit(188, "lb"),
  16540. name: "Front",
  16541. image: {
  16542. source: "./media/characters/fleur/front.svg",
  16543. extra: 309 / 283,
  16544. bottom: 0.007
  16545. }
  16546. },
  16547. },
  16548. [
  16549. {
  16550. name: "Normal",
  16551. height: math.unit(5 + 11 / 12, "feet"),
  16552. default: true
  16553. },
  16554. ]
  16555. ))
  16556. characterMakers.push(() => makeCharacter(
  16557. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  16558. {
  16559. front: {
  16560. height: math.unit(5 + 4 / 12, "feet"),
  16561. weight: math.unit(122, "lb"),
  16562. name: "Front",
  16563. image: {
  16564. source: "./media/characters/jude/front.svg",
  16565. extra: 288 / 273,
  16566. bottom: 0.03
  16567. }
  16568. },
  16569. },
  16570. [
  16571. {
  16572. name: "Normal",
  16573. height: math.unit(5 + 4 / 12, "feet"),
  16574. default: true
  16575. },
  16576. ]
  16577. ))
  16578. characterMakers.push(() => makeCharacter(
  16579. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  16580. {
  16581. front: {
  16582. height: math.unit(5 + 11 / 12, "feet"),
  16583. weight: math.unit(190, "lb"),
  16584. name: "Front",
  16585. image: {
  16586. source: "./media/characters/seara/front.svg",
  16587. extra: 1,
  16588. bottom: 0.05
  16589. }
  16590. },
  16591. },
  16592. [
  16593. {
  16594. name: "Normal",
  16595. height: math.unit(5 + 11 / 12, "feet"),
  16596. default: true
  16597. },
  16598. ]
  16599. ))
  16600. characterMakers.push(() => makeCharacter(
  16601. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  16602. {
  16603. front: {
  16604. height: math.unit(16 + 5 / 12, "feet"),
  16605. weight: math.unit(524, "lb"),
  16606. name: "Front",
  16607. image: {
  16608. source: "./media/characters/caspian-lugia/front.svg",
  16609. extra: 1,
  16610. bottom: 0.04
  16611. }
  16612. },
  16613. },
  16614. [
  16615. {
  16616. name: "Normal",
  16617. height: math.unit(16 + 5 / 12, "feet"),
  16618. default: true
  16619. },
  16620. ]
  16621. ))
  16622. characterMakers.push(() => makeCharacter(
  16623. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  16624. {
  16625. front: {
  16626. height: math.unit(5 + 7 / 12, "feet"),
  16627. weight: math.unit(170, "lb"),
  16628. name: "Front",
  16629. image: {
  16630. source: "./media/characters/mika/front.svg",
  16631. extra: 1,
  16632. bottom: 0.016
  16633. }
  16634. },
  16635. },
  16636. [
  16637. {
  16638. name: "Normal",
  16639. height: math.unit(5 + 7 / 12, "feet"),
  16640. default: true
  16641. },
  16642. ]
  16643. ))
  16644. characterMakers.push(() => makeCharacter(
  16645. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  16646. {
  16647. front: {
  16648. height: math.unit(6 + 2 / 12, "feet"),
  16649. weight: math.unit(268, "lb"),
  16650. name: "Front",
  16651. image: {
  16652. source: "./media/characters/sol/front.svg",
  16653. extra: 247 / 231,
  16654. bottom: 0.05
  16655. }
  16656. },
  16657. },
  16658. [
  16659. {
  16660. name: "Normal",
  16661. height: math.unit(6 + 2 / 12, "feet"),
  16662. default: true
  16663. },
  16664. ]
  16665. ))
  16666. characterMakers.push(() => makeCharacter(
  16667. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  16668. {
  16669. buizel: {
  16670. height: math.unit(2 + 5 / 12, "feet"),
  16671. weight: math.unit(87, "lb"),
  16672. name: "Front",
  16673. image: {
  16674. source: "./media/characters/umiko/buizel.svg",
  16675. extra: 172 / 157,
  16676. bottom: 0.01
  16677. },
  16678. form: "buizel",
  16679. default: true
  16680. },
  16681. floatzel: {
  16682. height: math.unit(5 + 9 / 12, "feet"),
  16683. weight: math.unit(250, "lb"),
  16684. name: "Front",
  16685. image: {
  16686. source: "./media/characters/umiko/floatzel.svg",
  16687. extra: 1076/1006,
  16688. bottom: 15/1091
  16689. },
  16690. form: "floatzel",
  16691. default: true
  16692. },
  16693. },
  16694. [
  16695. {
  16696. name: "Normal",
  16697. height: math.unit(2 + 5 / 12, "feet"),
  16698. form: "buizel",
  16699. default: true
  16700. },
  16701. {
  16702. name: "Normal",
  16703. height: math.unit(5 + 9 / 12, "feet"),
  16704. form: "floatzel",
  16705. default: true
  16706. },
  16707. ],
  16708. {
  16709. "buizel": {
  16710. name: "Buizel"
  16711. },
  16712. "floatzel": {
  16713. name: "Floatzel",
  16714. default: true
  16715. }
  16716. }
  16717. ))
  16718. characterMakers.push(() => makeCharacter(
  16719. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  16720. {
  16721. front: {
  16722. height: math.unit(6 + 2 / 12, "feet"),
  16723. weight: math.unit(146, "lb"),
  16724. name: "Front",
  16725. image: {
  16726. source: "./media/characters/iliac/front.svg",
  16727. extra: 389 / 365,
  16728. bottom: 0.035
  16729. }
  16730. },
  16731. },
  16732. [
  16733. {
  16734. name: "Normal",
  16735. height: math.unit(6 + 2 / 12, "feet"),
  16736. default: true
  16737. },
  16738. ]
  16739. ))
  16740. characterMakers.push(() => makeCharacter(
  16741. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16742. {
  16743. front: {
  16744. height: math.unit(6, "feet"),
  16745. weight: math.unit(170, "lb"),
  16746. name: "Front",
  16747. image: {
  16748. source: "./media/characters/topaz/front.svg",
  16749. extra: 317 / 303,
  16750. bottom: 0.055
  16751. }
  16752. },
  16753. },
  16754. [
  16755. {
  16756. name: "Normal",
  16757. height: math.unit(6, "feet"),
  16758. default: true
  16759. },
  16760. ]
  16761. ))
  16762. characterMakers.push(() => makeCharacter(
  16763. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  16764. {
  16765. front: {
  16766. height: math.unit(5 + 11 / 12, "feet"),
  16767. weight: math.unit(144, "lb"),
  16768. name: "Front",
  16769. image: {
  16770. source: "./media/characters/gabriel/front.svg",
  16771. extra: 285 / 262,
  16772. bottom: 0.004
  16773. }
  16774. },
  16775. },
  16776. [
  16777. {
  16778. name: "Normal",
  16779. height: math.unit(5 + 11 / 12, "feet"),
  16780. default: true
  16781. },
  16782. ]
  16783. ))
  16784. characterMakers.push(() => makeCharacter(
  16785. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  16786. {
  16787. side: {
  16788. height: math.unit(6 + 5 / 12, "feet"),
  16789. weight: math.unit(300, "lb"),
  16790. name: "Side",
  16791. image: {
  16792. source: "./media/characters/tempest-suicune/side.svg",
  16793. extra: 195 / 154,
  16794. bottom: 0.04
  16795. }
  16796. },
  16797. },
  16798. [
  16799. {
  16800. name: "Normal",
  16801. height: math.unit(6 + 5 / 12, "feet"),
  16802. default: true
  16803. },
  16804. ]
  16805. ))
  16806. characterMakers.push(() => makeCharacter(
  16807. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  16808. {
  16809. front: {
  16810. height: math.unit(7 + 2 / 12, "feet"),
  16811. weight: math.unit(322, "lb"),
  16812. name: "Front",
  16813. image: {
  16814. source: "./media/characters/vulcan/front.svg",
  16815. extra: 154 / 147,
  16816. bottom: 0.04
  16817. }
  16818. },
  16819. },
  16820. [
  16821. {
  16822. name: "Normal",
  16823. height: math.unit(7 + 2 / 12, "feet"),
  16824. default: true
  16825. },
  16826. ]
  16827. ))
  16828. characterMakers.push(() => makeCharacter(
  16829. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  16830. {
  16831. front: {
  16832. height: math.unit(5 + 10 / 12, "feet"),
  16833. weight: math.unit(264, "lb"),
  16834. name: "Front",
  16835. image: {
  16836. source: "./media/characters/gault/front.svg",
  16837. extra: 161 / 140,
  16838. bottom: 0.028
  16839. }
  16840. },
  16841. },
  16842. [
  16843. {
  16844. name: "Normal",
  16845. height: math.unit(5 + 10 / 12, "feet"),
  16846. default: true
  16847. },
  16848. ]
  16849. ))
  16850. characterMakers.push(() => makeCharacter(
  16851. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  16852. {
  16853. front: {
  16854. height: math.unit(6, "feet"),
  16855. weight: math.unit(150, "lb"),
  16856. name: "Front",
  16857. image: {
  16858. source: "./media/characters/shard/front.svg",
  16859. extra: 273 / 238,
  16860. bottom: 0.02
  16861. }
  16862. },
  16863. },
  16864. [
  16865. {
  16866. name: "Normal",
  16867. height: math.unit(3 + 6 / 12, "feet"),
  16868. default: true
  16869. },
  16870. ]
  16871. ))
  16872. characterMakers.push(() => makeCharacter(
  16873. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  16874. {
  16875. front: {
  16876. height: math.unit(5 + 11 / 12, "feet"),
  16877. weight: math.unit(146, "lb"),
  16878. name: "Front",
  16879. image: {
  16880. source: "./media/characters/ashe/front.svg",
  16881. extra: 400 / 373,
  16882. bottom: 0.01
  16883. }
  16884. },
  16885. },
  16886. [
  16887. {
  16888. name: "Normal",
  16889. height: math.unit(5 + 11 / 12, "feet"),
  16890. default: true
  16891. },
  16892. ]
  16893. ))
  16894. characterMakers.push(() => makeCharacter(
  16895. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  16896. {
  16897. front: {
  16898. height: math.unit(5 + 5 / 12, "feet"),
  16899. weight: math.unit(135, "lb"),
  16900. name: "Front",
  16901. image: {
  16902. source: "./media/characters/beatrix/front.svg",
  16903. extra: 392 / 379,
  16904. bottom: 0.01
  16905. }
  16906. },
  16907. },
  16908. [
  16909. {
  16910. name: "Normal",
  16911. height: math.unit(6, "feet"),
  16912. default: true
  16913. },
  16914. ]
  16915. ))
  16916. characterMakers.push(() => makeCharacter(
  16917. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  16918. {
  16919. front: {
  16920. height: math.unit(6 + 2/12, "feet"),
  16921. weight: math.unit(135, "lb"),
  16922. name: "Front",
  16923. image: {
  16924. source: "./media/characters/ignatius/front.svg",
  16925. extra: 1380/1259,
  16926. bottom: 27/1407
  16927. }
  16928. },
  16929. },
  16930. [
  16931. {
  16932. name: "Normal",
  16933. height: math.unit(6 + 2/12, "feet"),
  16934. default: true
  16935. },
  16936. ]
  16937. ))
  16938. characterMakers.push(() => makeCharacter(
  16939. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  16940. {
  16941. front: {
  16942. height: math.unit(6 + 2 / 12, "feet"),
  16943. weight: math.unit(138, "lb"),
  16944. name: "Front",
  16945. image: {
  16946. source: "./media/characters/mei-li/front.svg",
  16947. extra: 237 / 229,
  16948. bottom: 0.03
  16949. }
  16950. },
  16951. },
  16952. [
  16953. {
  16954. name: "Normal",
  16955. height: math.unit(6 + 2 / 12, "feet"),
  16956. default: true
  16957. },
  16958. ]
  16959. ))
  16960. characterMakers.push(() => makeCharacter(
  16961. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  16962. {
  16963. front: {
  16964. height: math.unit(2 + 4 / 12, "feet"),
  16965. weight: math.unit(62, "lb"),
  16966. name: "Front",
  16967. image: {
  16968. source: "./media/characters/puru/front.svg",
  16969. extra: 206 / 149,
  16970. bottom: 0.06
  16971. }
  16972. },
  16973. },
  16974. [
  16975. {
  16976. name: "Normal",
  16977. height: math.unit(2 + 4 / 12, "feet"),
  16978. default: true
  16979. },
  16980. ]
  16981. ))
  16982. characterMakers.push(() => makeCharacter(
  16983. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16984. {
  16985. anthro: {
  16986. height: math.unit(5 + 8/12, "feet"),
  16987. weight: math.unit(200, "lb"),
  16988. energyNeed: math.unit(2000, "kcal"),
  16989. name: "Anthro",
  16990. image: {
  16991. source: "./media/characters/kee/anthro.svg",
  16992. extra: 3251/3184,
  16993. bottom: 250/3501
  16994. }
  16995. },
  16996. taur: {
  16997. height: math.unit(11, "feet"),
  16998. weight: math.unit(500, "lb"),
  16999. energyNeed: math.unit(5000, "kcal"),
  17000. name: "Taur",
  17001. image: {
  17002. source: "./media/characters/kee/taur.svg",
  17003. extra: 1362/1320,
  17004. bottom: 83/1445
  17005. }
  17006. },
  17007. },
  17008. [
  17009. {
  17010. name: "Normal",
  17011. height: math.unit(5 + 8/12, "feet"),
  17012. default: true
  17013. },
  17014. {
  17015. name: "Macro",
  17016. height: math.unit(35, "feet")
  17017. },
  17018. ]
  17019. ))
  17020. characterMakers.push(() => makeCharacter(
  17021. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  17022. {
  17023. anthro: {
  17024. height: math.unit(7, "feet"),
  17025. weight: math.unit(190, "lb"),
  17026. name: "Anthro",
  17027. image: {
  17028. source: "./media/characters/cobalt-dracha/anthro.svg",
  17029. extra: 231 / 225,
  17030. bottom: 0.04
  17031. }
  17032. },
  17033. feral: {
  17034. height: math.unit(9 + 7 / 12, "feet"),
  17035. weight: math.unit(294, "lb"),
  17036. name: "Feral",
  17037. image: {
  17038. source: "./media/characters/cobalt-dracha/feral.svg",
  17039. extra: 692 / 633,
  17040. bottom: 0.05
  17041. }
  17042. },
  17043. },
  17044. [
  17045. {
  17046. name: "Normal",
  17047. height: math.unit(7, "feet"),
  17048. default: true
  17049. },
  17050. ]
  17051. ))
  17052. characterMakers.push(() => makeCharacter(
  17053. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  17054. {
  17055. fallen: {
  17056. height: math.unit(11 + 8 / 12, "feet"),
  17057. weight: math.unit(485, "lb"),
  17058. name: "Java (Fallen)",
  17059. rename: true,
  17060. image: {
  17061. source: "./media/characters/java/fallen.svg",
  17062. extra: 226 / 208,
  17063. bottom: 0.005
  17064. }
  17065. },
  17066. godkin: {
  17067. height: math.unit(10 + 6 / 12, "feet"),
  17068. weight: math.unit(328, "lb"),
  17069. name: "Java (Godkin)",
  17070. rename: true,
  17071. image: {
  17072. source: "./media/characters/java/godkin.svg",
  17073. extra: 1104/1068,
  17074. bottom: 36/1140
  17075. }
  17076. },
  17077. },
  17078. [
  17079. {
  17080. name: "Normal",
  17081. height: math.unit(11 + 8 / 12, "feet"),
  17082. default: true
  17083. },
  17084. ]
  17085. ))
  17086. characterMakers.push(() => makeCharacter(
  17087. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  17088. {
  17089. front: {
  17090. height: math.unit(5 + 9 / 12, "feet"),
  17091. weight: math.unit(170, "lb"),
  17092. name: "Front",
  17093. image: {
  17094. source: "./media/characters/purna/front.svg",
  17095. extra: 239 / 229,
  17096. bottom: 0.01
  17097. }
  17098. },
  17099. },
  17100. [
  17101. {
  17102. name: "Normal",
  17103. height: math.unit(5 + 9 / 12, "feet"),
  17104. default: true
  17105. },
  17106. ]
  17107. ))
  17108. characterMakers.push(() => makeCharacter(
  17109. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  17110. {
  17111. front: {
  17112. height: math.unit(5 + 9 / 12, "feet"),
  17113. weight: math.unit(142, "lb"),
  17114. name: "Front",
  17115. image: {
  17116. source: "./media/characters/kuva/front.svg",
  17117. extra: 281 / 271,
  17118. bottom: 0.006
  17119. }
  17120. },
  17121. },
  17122. [
  17123. {
  17124. name: "Normal",
  17125. height: math.unit(5 + 9 / 12, "feet"),
  17126. default: true
  17127. },
  17128. ]
  17129. ))
  17130. characterMakers.push(() => makeCharacter(
  17131. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  17132. {
  17133. anthro: {
  17134. height: math.unit(9 + 2 / 12, "feet"),
  17135. weight: math.unit(270, "lb"),
  17136. name: "Anthro",
  17137. image: {
  17138. source: "./media/characters/embra/anthro.svg",
  17139. extra: 200 / 187,
  17140. bottom: 0.02
  17141. }
  17142. },
  17143. feral: {
  17144. height: math.unit(18 + 8 / 12, "feet"),
  17145. weight: math.unit(576, "lb"),
  17146. name: "Feral",
  17147. image: {
  17148. source: "./media/characters/embra/feral.svg",
  17149. extra: 152 / 137,
  17150. bottom: 0.037
  17151. }
  17152. },
  17153. },
  17154. [
  17155. {
  17156. name: "Normal",
  17157. height: math.unit(9 + 2 / 12, "feet"),
  17158. default: true
  17159. },
  17160. ]
  17161. ))
  17162. characterMakers.push(() => makeCharacter(
  17163. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  17164. {
  17165. anthro: {
  17166. height: math.unit(10 + 9 / 12, "feet"),
  17167. weight: math.unit(224, "lb"),
  17168. name: "Anthro",
  17169. image: {
  17170. source: "./media/characters/grottos/anthro.svg",
  17171. extra: 350 / 332,
  17172. bottom: 0.045
  17173. }
  17174. },
  17175. feral: {
  17176. height: math.unit(20 + 7 / 12, "feet"),
  17177. weight: math.unit(629, "lb"),
  17178. name: "Feral",
  17179. image: {
  17180. source: "./media/characters/grottos/feral.svg",
  17181. extra: 207 / 190,
  17182. bottom: 0.05
  17183. }
  17184. },
  17185. },
  17186. [
  17187. {
  17188. name: "Normal",
  17189. height: math.unit(10 + 9 / 12, "feet"),
  17190. default: true
  17191. },
  17192. ]
  17193. ))
  17194. characterMakers.push(() => makeCharacter(
  17195. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17196. {
  17197. anthro: {
  17198. height: math.unit(9 + 6 / 12, "feet"),
  17199. weight: math.unit(298, "lb"),
  17200. name: "Anthro",
  17201. image: {
  17202. source: "./media/characters/frifna/anthro.svg",
  17203. extra: 282 / 269,
  17204. bottom: 0.015
  17205. }
  17206. },
  17207. feral: {
  17208. height: math.unit(16 + 2 / 12, "feet"),
  17209. weight: math.unit(624, "lb"),
  17210. name: "Feral",
  17211. image: {
  17212. source: "./media/characters/frifna/feral.svg"
  17213. }
  17214. },
  17215. },
  17216. [
  17217. {
  17218. name: "Normal",
  17219. height: math.unit(9 + 6 / 12, "feet"),
  17220. default: true
  17221. },
  17222. ]
  17223. ))
  17224. characterMakers.push(() => makeCharacter(
  17225. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17226. {
  17227. front: {
  17228. height: math.unit(6 + 2 / 12, "feet"),
  17229. weight: math.unit(168, "lb"),
  17230. name: "Front",
  17231. image: {
  17232. source: "./media/characters/elise/front.svg",
  17233. extra: 276 / 271
  17234. }
  17235. },
  17236. },
  17237. [
  17238. {
  17239. name: "Normal",
  17240. height: math.unit(6 + 2 / 12, "feet"),
  17241. default: true
  17242. },
  17243. ]
  17244. ))
  17245. characterMakers.push(() => makeCharacter(
  17246. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  17247. {
  17248. front: {
  17249. height: math.unit(5 + 10 / 12, "feet"),
  17250. weight: math.unit(210, "lb"),
  17251. name: "Front",
  17252. image: {
  17253. source: "./media/characters/glade/front.svg",
  17254. extra: 258 / 247,
  17255. bottom: 0.008
  17256. }
  17257. },
  17258. },
  17259. [
  17260. {
  17261. name: "Normal",
  17262. height: math.unit(5 + 10 / 12, "feet"),
  17263. default: true
  17264. },
  17265. ]
  17266. ))
  17267. characterMakers.push(() => makeCharacter(
  17268. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  17269. {
  17270. front: {
  17271. height: math.unit(5 + 10 / 12, "feet"),
  17272. weight: math.unit(129, "lb"),
  17273. name: "Front",
  17274. image: {
  17275. source: "./media/characters/rina/front.svg",
  17276. extra: 266 / 255,
  17277. bottom: 0.005
  17278. }
  17279. },
  17280. },
  17281. [
  17282. {
  17283. name: "Normal",
  17284. height: math.unit(5 + 10 / 12, "feet"),
  17285. default: true
  17286. },
  17287. ]
  17288. ))
  17289. characterMakers.push(() => makeCharacter(
  17290. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  17291. {
  17292. front: {
  17293. height: math.unit(6 + 1 / 12, "feet"),
  17294. weight: math.unit(192, "lb"),
  17295. name: "Front",
  17296. image: {
  17297. source: "./media/characters/veronica/front.svg",
  17298. extra: 319 / 309,
  17299. bottom: 0.005
  17300. }
  17301. },
  17302. },
  17303. [
  17304. {
  17305. name: "Normal",
  17306. height: math.unit(6 + 1 / 12, "feet"),
  17307. default: true
  17308. },
  17309. ]
  17310. ))
  17311. characterMakers.push(() => makeCharacter(
  17312. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  17313. {
  17314. front: {
  17315. height: math.unit(9 + 3 / 12, "feet"),
  17316. weight: math.unit(1100, "lb"),
  17317. name: "Front",
  17318. image: {
  17319. source: "./media/characters/braxton/front.svg",
  17320. extra: 1057 / 984,
  17321. bottom: 0.05
  17322. }
  17323. },
  17324. },
  17325. [
  17326. {
  17327. name: "Normal",
  17328. height: math.unit(9 + 3 / 12, "feet")
  17329. },
  17330. {
  17331. name: "Giant",
  17332. height: math.unit(300, "feet"),
  17333. default: true
  17334. },
  17335. {
  17336. name: "Macro",
  17337. height: math.unit(700, "feet")
  17338. },
  17339. {
  17340. name: "Megamacro",
  17341. height: math.unit(6000, "feet")
  17342. },
  17343. ]
  17344. ))
  17345. characterMakers.push(() => makeCharacter(
  17346. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  17347. {
  17348. front: {
  17349. height: math.unit(6 + 7 / 12, "feet"),
  17350. weight: math.unit(150, "lb"),
  17351. name: "Front",
  17352. image: {
  17353. source: "./media/characters/blue-feyonics/front.svg",
  17354. extra: 1403 / 1306,
  17355. bottom: 0.047
  17356. }
  17357. },
  17358. },
  17359. [
  17360. {
  17361. name: "Normal",
  17362. height: math.unit(6 + 7 / 12, "feet"),
  17363. default: true
  17364. },
  17365. ]
  17366. ))
  17367. characterMakers.push(() => makeCharacter(
  17368. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  17369. {
  17370. front: {
  17371. height: math.unit(1.8, "meters"),
  17372. weight: math.unit(60, "kg"),
  17373. name: "Front",
  17374. image: {
  17375. source: "./media/characters/maxwell/front.svg",
  17376. extra: 2060 / 1873
  17377. }
  17378. },
  17379. },
  17380. [
  17381. {
  17382. name: "Micro",
  17383. height: math.unit(1, "mm")
  17384. },
  17385. {
  17386. name: "Normal",
  17387. height: math.unit(1.8, "meter"),
  17388. default: true
  17389. },
  17390. {
  17391. name: "Macro",
  17392. height: math.unit(30, "meters")
  17393. },
  17394. {
  17395. name: "Megamacro",
  17396. height: math.unit(10, "km")
  17397. },
  17398. ]
  17399. ))
  17400. characterMakers.push(() => makeCharacter(
  17401. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  17402. {
  17403. front: {
  17404. height: math.unit(6, "feet"),
  17405. weight: math.unit(150, "lb"),
  17406. name: "Front",
  17407. image: {
  17408. source: "./media/characters/jack/front.svg",
  17409. extra: 1754 / 1640,
  17410. bottom: 0.01
  17411. }
  17412. },
  17413. },
  17414. [
  17415. {
  17416. name: "Normal",
  17417. height: math.unit(80000, "feet"),
  17418. default: true
  17419. },
  17420. {
  17421. name: "Max size",
  17422. height: math.unit(10, "lightyears")
  17423. },
  17424. ]
  17425. ))
  17426. characterMakers.push(() => makeCharacter(
  17427. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  17428. {
  17429. urban: {
  17430. height: math.unit(5, "feet"),
  17431. weight: math.unit(240, "lb"),
  17432. name: "Urban",
  17433. image: {
  17434. source: "./media/characters/cafat/urban.svg",
  17435. extra: 1223/1126,
  17436. bottom: 205/1428
  17437. }
  17438. },
  17439. summer: {
  17440. height: math.unit(5, "feet"),
  17441. weight: math.unit(240, "lb"),
  17442. name: "Summer",
  17443. image: {
  17444. source: "./media/characters/cafat/summer.svg",
  17445. extra: 1223/1126,
  17446. bottom: 205/1428
  17447. }
  17448. },
  17449. winter: {
  17450. height: math.unit(5, "feet"),
  17451. weight: math.unit(240, "lb"),
  17452. name: "Winter",
  17453. image: {
  17454. source: "./media/characters/cafat/winter.svg",
  17455. extra: 1223/1126,
  17456. bottom: 205/1428
  17457. }
  17458. },
  17459. lingerie: {
  17460. height: math.unit(5, "feet"),
  17461. weight: math.unit(240, "lb"),
  17462. name: "Lingerie",
  17463. image: {
  17464. source: "./media/characters/cafat/lingerie.svg",
  17465. extra: 1223/1126,
  17466. bottom: 205/1428
  17467. }
  17468. },
  17469. upright: {
  17470. height: math.unit(6.3, "feet"),
  17471. weight: math.unit(240, "lb"),
  17472. name: "Upright",
  17473. image: {
  17474. source: "./media/characters/cafat/upright.svg",
  17475. bottom: 0.01
  17476. }
  17477. },
  17478. uprightFull: {
  17479. height: math.unit(6.3, "feet"),
  17480. weight: math.unit(240, "lb"),
  17481. name: "Upright (Full)",
  17482. image: {
  17483. source: "./media/characters/cafat/upright-full.svg",
  17484. bottom: 0.01
  17485. }
  17486. },
  17487. },
  17488. [
  17489. {
  17490. name: "Small",
  17491. height: math.unit(5, "feet"),
  17492. default: true
  17493. },
  17494. {
  17495. name: "Large",
  17496. height: math.unit(13, "feet")
  17497. },
  17498. ]
  17499. ))
  17500. characterMakers.push(() => makeCharacter(
  17501. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  17502. {
  17503. front: {
  17504. height: math.unit(6, "feet"),
  17505. weight: math.unit(150, "lb"),
  17506. name: "Front",
  17507. image: {
  17508. source: "./media/characters/verin-raharra/front.svg",
  17509. extra: 5019 / 4835,
  17510. bottom: 0.023
  17511. }
  17512. },
  17513. },
  17514. [
  17515. {
  17516. name: "Normal",
  17517. height: math.unit(7 + 5 / 12, "feet"),
  17518. default: true
  17519. },
  17520. {
  17521. name: "Upsized",
  17522. height: math.unit(20, "feet")
  17523. },
  17524. ]
  17525. ))
  17526. characterMakers.push(() => makeCharacter(
  17527. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  17528. {
  17529. front: {
  17530. height: math.unit(7, "feet"),
  17531. weight: math.unit(230, "lb"),
  17532. name: "Front",
  17533. image: {
  17534. source: "./media/characters/nakata/front.svg",
  17535. extra: 1.005,
  17536. bottom: 0.01
  17537. }
  17538. },
  17539. },
  17540. [
  17541. {
  17542. name: "Normal",
  17543. height: math.unit(7, "feet"),
  17544. default: true
  17545. },
  17546. {
  17547. name: "Big",
  17548. height: math.unit(14, "feet")
  17549. },
  17550. {
  17551. name: "Macro",
  17552. height: math.unit(400, "feet")
  17553. },
  17554. ]
  17555. ))
  17556. characterMakers.push(() => makeCharacter(
  17557. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  17558. {
  17559. front: {
  17560. height: math.unit(4.91, "feet"),
  17561. weight: math.unit(100, "lb"),
  17562. name: "Front",
  17563. image: {
  17564. source: "./media/characters/lily/front.svg",
  17565. extra: 1585 / 1415,
  17566. bottom: 0.02
  17567. }
  17568. },
  17569. },
  17570. [
  17571. {
  17572. name: "Normal",
  17573. height: math.unit(4.91, "feet"),
  17574. default: true
  17575. },
  17576. ]
  17577. ))
  17578. characterMakers.push(() => makeCharacter(
  17579. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  17580. {
  17581. laying: {
  17582. height: math.unit(4 + 4 / 12, "feet"),
  17583. weight: math.unit(600, "lb"),
  17584. name: "Laying",
  17585. image: {
  17586. source: "./media/characters/sheila/laying.svg",
  17587. extra: 1333 / 1265,
  17588. bottom: 0.16
  17589. }
  17590. },
  17591. },
  17592. [
  17593. {
  17594. name: "Normal",
  17595. height: math.unit(4 + 4 / 12, "feet"),
  17596. default: true
  17597. },
  17598. ]
  17599. ))
  17600. characterMakers.push(() => makeCharacter(
  17601. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  17602. {
  17603. front: {
  17604. height: math.unit(6, "feet"),
  17605. weight: math.unit(190, "lb"),
  17606. name: "Front",
  17607. image: {
  17608. source: "./media/characters/sax/front.svg",
  17609. extra: 1187 / 973,
  17610. bottom: 0.042
  17611. }
  17612. },
  17613. },
  17614. [
  17615. {
  17616. name: "Micro",
  17617. height: math.unit(4, "inches"),
  17618. default: true
  17619. },
  17620. ]
  17621. ))
  17622. characterMakers.push(() => makeCharacter(
  17623. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  17624. {
  17625. front: {
  17626. height: math.unit(6, "feet"),
  17627. weight: math.unit(150, "lb"),
  17628. name: "Front",
  17629. image: {
  17630. source: "./media/characters/pandora/front.svg",
  17631. extra: 2720 / 2556,
  17632. bottom: 0.015
  17633. }
  17634. },
  17635. back: {
  17636. height: math.unit(6, "feet"),
  17637. weight: math.unit(150, "lb"),
  17638. name: "Back",
  17639. image: {
  17640. source: "./media/characters/pandora/back.svg",
  17641. extra: 2720 / 2556,
  17642. bottom: 0.01
  17643. }
  17644. },
  17645. beans: {
  17646. height: math.unit(6 / 8, "feet"),
  17647. name: "Beans",
  17648. image: {
  17649. source: "./media/characters/pandora/beans.svg"
  17650. }
  17651. },
  17652. collar: {
  17653. height: math.unit(0.31, "feet"),
  17654. name: "Collar",
  17655. image: {
  17656. source: "./media/characters/pandora/collar.svg"
  17657. }
  17658. },
  17659. skirt: {
  17660. height: math.unit(6, "feet"),
  17661. weight: math.unit(150, "lb"),
  17662. name: "Skirt",
  17663. image: {
  17664. source: "./media/characters/pandora/skirt.svg",
  17665. extra: 1622 / 1525,
  17666. bottom: 0.015
  17667. }
  17668. },
  17669. hoodie: {
  17670. height: math.unit(6, "feet"),
  17671. weight: math.unit(150, "lb"),
  17672. name: "Hoodie",
  17673. image: {
  17674. source: "./media/characters/pandora/hoodie.svg",
  17675. extra: 1622 / 1525,
  17676. bottom: 0.015
  17677. }
  17678. },
  17679. casual: {
  17680. height: math.unit(6, "feet"),
  17681. weight: math.unit(150, "lb"),
  17682. name: "Casual",
  17683. image: {
  17684. source: "./media/characters/pandora/casual.svg",
  17685. extra: 1622 / 1525,
  17686. bottom: 0.015
  17687. }
  17688. },
  17689. },
  17690. [
  17691. {
  17692. name: "Normal",
  17693. height: math.unit(6, "feet")
  17694. },
  17695. {
  17696. name: "Big Steppy",
  17697. height: math.unit(1, "km"),
  17698. default: true
  17699. },
  17700. {
  17701. name: "Galactic Steppy",
  17702. height: math.unit(2, "gigameters")
  17703. },
  17704. ]
  17705. ))
  17706. characterMakers.push(() => makeCharacter(
  17707. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  17708. {
  17709. side: {
  17710. height: math.unit(10, "feet"),
  17711. weight: math.unit(800, "kg"),
  17712. name: "Side",
  17713. image: {
  17714. source: "./media/characters/venio-darcony/side.svg",
  17715. extra: 1373 / 1003,
  17716. bottom: 0.037
  17717. }
  17718. },
  17719. front: {
  17720. height: math.unit(19, "feet"),
  17721. weight: math.unit(800, "kg"),
  17722. name: "Front",
  17723. image: {
  17724. source: "./media/characters/venio-darcony/front.svg"
  17725. }
  17726. },
  17727. back: {
  17728. height: math.unit(19, "feet"),
  17729. weight: math.unit(800, "kg"),
  17730. name: "Back",
  17731. image: {
  17732. source: "./media/characters/venio-darcony/back.svg"
  17733. }
  17734. },
  17735. sideNsfw: {
  17736. height: math.unit(10, "feet"),
  17737. weight: math.unit(800, "kg"),
  17738. name: "Side (NSFW)",
  17739. image: {
  17740. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17741. extra: 1373 / 1003,
  17742. bottom: 0.037
  17743. }
  17744. },
  17745. frontNsfw: {
  17746. height: math.unit(19, "feet"),
  17747. weight: math.unit(800, "kg"),
  17748. name: "Front (NSFW)",
  17749. image: {
  17750. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17751. }
  17752. },
  17753. backNsfw: {
  17754. height: math.unit(19, "feet"),
  17755. weight: math.unit(800, "kg"),
  17756. name: "Back (NSFW)",
  17757. image: {
  17758. source: "./media/characters/venio-darcony/back-nsfw.svg"
  17759. }
  17760. },
  17761. sideArmored: {
  17762. height: math.unit(10, "feet"),
  17763. weight: math.unit(800, "kg"),
  17764. name: "Side (Armored)",
  17765. image: {
  17766. source: "./media/characters/venio-darcony/side-armored.svg",
  17767. extra: 1373 / 1003,
  17768. bottom: 0.037
  17769. }
  17770. },
  17771. frontArmored: {
  17772. height: math.unit(19, "feet"),
  17773. weight: math.unit(900, "kg"),
  17774. name: "Front (Armored)",
  17775. image: {
  17776. source: "./media/characters/venio-darcony/front-armored.svg"
  17777. }
  17778. },
  17779. backArmored: {
  17780. height: math.unit(19, "feet"),
  17781. weight: math.unit(900, "kg"),
  17782. name: "Back (Armored)",
  17783. image: {
  17784. source: "./media/characters/venio-darcony/back-armored.svg"
  17785. }
  17786. },
  17787. sword: {
  17788. height: math.unit(10, "feet"),
  17789. weight: math.unit(50, "lb"),
  17790. name: "Sword",
  17791. image: {
  17792. source: "./media/characters/venio-darcony/sword.svg"
  17793. }
  17794. },
  17795. },
  17796. [
  17797. {
  17798. name: "Normal",
  17799. height: math.unit(10, "feet")
  17800. },
  17801. {
  17802. name: "Macro",
  17803. height: math.unit(130, "feet"),
  17804. default: true
  17805. },
  17806. {
  17807. name: "Macro+",
  17808. height: math.unit(240, "feet")
  17809. },
  17810. ]
  17811. ))
  17812. characterMakers.push(() => makeCharacter(
  17813. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  17814. {
  17815. front: {
  17816. height: math.unit(6, "feet"),
  17817. weight: math.unit(150, "lb"),
  17818. name: "Front",
  17819. image: {
  17820. source: "./media/characters/veski/front.svg",
  17821. extra: 1299 / 1225,
  17822. bottom: 0.04
  17823. }
  17824. },
  17825. back: {
  17826. height: math.unit(6, "feet"),
  17827. weight: math.unit(150, "lb"),
  17828. name: "Back",
  17829. image: {
  17830. source: "./media/characters/veski/back.svg",
  17831. extra: 1299 / 1225,
  17832. bottom: 0.008
  17833. }
  17834. },
  17835. maw: {
  17836. height: math.unit(1.5 * 1.21, "feet"),
  17837. name: "Maw",
  17838. image: {
  17839. source: "./media/characters/veski/maw.svg"
  17840. }
  17841. },
  17842. },
  17843. [
  17844. {
  17845. name: "Macro",
  17846. height: math.unit(2, "km"),
  17847. default: true
  17848. },
  17849. ]
  17850. ))
  17851. characterMakers.push(() => makeCharacter(
  17852. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  17853. {
  17854. front: {
  17855. height: math.unit(5 + 7 / 12, "feet"),
  17856. name: "Front",
  17857. image: {
  17858. source: "./media/characters/isabelle/front.svg",
  17859. extra: 2130 / 1976,
  17860. bottom: 0.05
  17861. }
  17862. },
  17863. },
  17864. [
  17865. {
  17866. name: "Supermicro",
  17867. height: math.unit(10, "micrometers")
  17868. },
  17869. {
  17870. name: "Micro",
  17871. height: math.unit(1, "inch")
  17872. },
  17873. {
  17874. name: "Tiny",
  17875. height: math.unit(5, "inches")
  17876. },
  17877. {
  17878. name: "Standard",
  17879. height: math.unit(5 + 7 / 12, "inches")
  17880. },
  17881. {
  17882. name: "Macro",
  17883. height: math.unit(80, "meters"),
  17884. default: true
  17885. },
  17886. {
  17887. name: "Megamacro",
  17888. height: math.unit(250, "meters")
  17889. },
  17890. {
  17891. name: "Gigamacro",
  17892. height: math.unit(5, "km")
  17893. },
  17894. {
  17895. name: "Cosmic",
  17896. height: math.unit(2.5e6, "miles")
  17897. },
  17898. ]
  17899. ))
  17900. characterMakers.push(() => makeCharacter(
  17901. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  17902. {
  17903. front: {
  17904. height: math.unit(6, "feet"),
  17905. weight: math.unit(150, "lb"),
  17906. name: "Front",
  17907. image: {
  17908. source: "./media/characters/hanzo/front.svg",
  17909. extra: 374 / 344,
  17910. bottom: 0.02
  17911. }
  17912. },
  17913. },
  17914. [
  17915. {
  17916. name: "Normal",
  17917. height: math.unit(8, "feet"),
  17918. default: true
  17919. },
  17920. ]
  17921. ))
  17922. characterMakers.push(() => makeCharacter(
  17923. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  17924. {
  17925. front: {
  17926. height: math.unit(7, "feet"),
  17927. weight: math.unit(130, "lb"),
  17928. name: "Front",
  17929. image: {
  17930. source: "./media/characters/anna/front.svg",
  17931. extra: 169 / 145,
  17932. bottom: 0.06
  17933. }
  17934. },
  17935. full: {
  17936. height: math.unit(4.96, "feet"),
  17937. weight: math.unit(220, "lb"),
  17938. name: "Full",
  17939. image: {
  17940. source: "./media/characters/anna/full.svg",
  17941. extra: 138 / 114,
  17942. bottom: 0.15
  17943. }
  17944. },
  17945. tongue: {
  17946. height: math.unit(2.53, "feet"),
  17947. name: "Tongue",
  17948. image: {
  17949. source: "./media/characters/anna/tongue.svg"
  17950. }
  17951. },
  17952. },
  17953. [
  17954. {
  17955. name: "Normal",
  17956. height: math.unit(7, "feet"),
  17957. default: true
  17958. },
  17959. ]
  17960. ))
  17961. characterMakers.push(() => makeCharacter(
  17962. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  17963. {
  17964. front: {
  17965. height: math.unit(7, "feet"),
  17966. weight: math.unit(150, "lb"),
  17967. name: "Front",
  17968. image: {
  17969. source: "./media/characters/ian-corvid/front.svg",
  17970. extra: 150 / 142,
  17971. bottom: 0.02
  17972. }
  17973. },
  17974. back: {
  17975. height: math.unit(7, "feet"),
  17976. weight: math.unit(150, "lb"),
  17977. name: "Back",
  17978. image: {
  17979. source: "./media/characters/ian-corvid/back.svg",
  17980. extra: 150 / 143,
  17981. bottom: 0.01
  17982. }
  17983. },
  17984. stomping: {
  17985. height: math.unit(7, "feet"),
  17986. weight: math.unit(150, "lb"),
  17987. name: "Stomping",
  17988. image: {
  17989. source: "./media/characters/ian-corvid/stomping.svg",
  17990. extra: 76 / 72
  17991. }
  17992. },
  17993. sitting: {
  17994. height: math.unit(7 / 1.8, "feet"),
  17995. weight: math.unit(150, "lb"),
  17996. name: "Sitting",
  17997. image: {
  17998. source: "./media/characters/ian-corvid/sitting.svg",
  17999. extra: 1400 / 1269,
  18000. bottom: 0.15
  18001. }
  18002. },
  18003. },
  18004. [
  18005. {
  18006. name: "Tiny Microw",
  18007. height: math.unit(1, "inch")
  18008. },
  18009. {
  18010. name: "Microw",
  18011. height: math.unit(6, "inches")
  18012. },
  18013. {
  18014. name: "Crow",
  18015. height: math.unit(7 + 1 / 12, "feet"),
  18016. default: true
  18017. },
  18018. {
  18019. name: "Macrow",
  18020. height: math.unit(176, "feet")
  18021. },
  18022. ]
  18023. ))
  18024. characterMakers.push(() => makeCharacter(
  18025. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  18026. {
  18027. front: {
  18028. height: math.unit(5 + 7 / 12, "feet"),
  18029. weight: math.unit(147, "lb"),
  18030. name: "Front",
  18031. image: {
  18032. source: "./media/characters/natalie-kellon/front.svg",
  18033. extra: 1214 / 1141,
  18034. bottom: 0.02
  18035. }
  18036. },
  18037. },
  18038. [
  18039. {
  18040. name: "Micro",
  18041. height: math.unit(1 / 16, "inch")
  18042. },
  18043. {
  18044. name: "Tiny",
  18045. height: math.unit(4, "inches")
  18046. },
  18047. {
  18048. name: "Normal",
  18049. height: math.unit(5 + 7 / 12, "feet"),
  18050. default: true
  18051. },
  18052. {
  18053. name: "Amazon",
  18054. height: math.unit(12, "feet")
  18055. },
  18056. {
  18057. name: "Giantess",
  18058. height: math.unit(160, "meters")
  18059. },
  18060. {
  18061. name: "Titaness",
  18062. height: math.unit(800, "meters")
  18063. },
  18064. ]
  18065. ))
  18066. characterMakers.push(() => makeCharacter(
  18067. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  18068. {
  18069. front: {
  18070. height: math.unit(6, "feet"),
  18071. weight: math.unit(150, "lb"),
  18072. name: "Front",
  18073. image: {
  18074. source: "./media/characters/alluria/front.svg",
  18075. extra: 806 / 738,
  18076. bottom: 0.01
  18077. }
  18078. },
  18079. side: {
  18080. height: math.unit(6, "feet"),
  18081. weight: math.unit(150, "lb"),
  18082. name: "Side",
  18083. image: {
  18084. source: "./media/characters/alluria/side.svg",
  18085. extra: 800 / 750,
  18086. }
  18087. },
  18088. back: {
  18089. height: math.unit(6, "feet"),
  18090. weight: math.unit(150, "lb"),
  18091. name: "Back",
  18092. image: {
  18093. source: "./media/characters/alluria/back.svg",
  18094. extra: 806 / 738,
  18095. }
  18096. },
  18097. frontMaid: {
  18098. height: math.unit(6, "feet"),
  18099. weight: math.unit(150, "lb"),
  18100. name: "Front (Maid)",
  18101. image: {
  18102. source: "./media/characters/alluria/front-maid.svg",
  18103. extra: 806 / 738,
  18104. bottom: 0.01
  18105. }
  18106. },
  18107. sideMaid: {
  18108. height: math.unit(6, "feet"),
  18109. weight: math.unit(150, "lb"),
  18110. name: "Side (Maid)",
  18111. image: {
  18112. source: "./media/characters/alluria/side-maid.svg",
  18113. extra: 800 / 750,
  18114. bottom: 0.005
  18115. }
  18116. },
  18117. backMaid: {
  18118. height: math.unit(6, "feet"),
  18119. weight: math.unit(150, "lb"),
  18120. name: "Back (Maid)",
  18121. image: {
  18122. source: "./media/characters/alluria/back-maid.svg",
  18123. extra: 806 / 738,
  18124. }
  18125. },
  18126. },
  18127. [
  18128. {
  18129. name: "Micro",
  18130. height: math.unit(6, "inches"),
  18131. default: true
  18132. },
  18133. ]
  18134. ))
  18135. characterMakers.push(() => makeCharacter(
  18136. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  18137. {
  18138. front: {
  18139. height: math.unit(6, "feet"),
  18140. weight: math.unit(150, "lb"),
  18141. name: "Front",
  18142. image: {
  18143. source: "./media/characters/kyle/front.svg",
  18144. extra: 1069 / 962,
  18145. bottom: 77.228 / 1727.45
  18146. }
  18147. },
  18148. },
  18149. [
  18150. {
  18151. name: "Macro",
  18152. height: math.unit(150, "feet"),
  18153. default: true
  18154. },
  18155. ]
  18156. ))
  18157. characterMakers.push(() => makeCharacter(
  18158. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  18159. {
  18160. front: {
  18161. height: math.unit(6, "feet"),
  18162. weight: math.unit(300, "lb"),
  18163. name: "Front",
  18164. image: {
  18165. source: "./media/characters/duncan/front.svg",
  18166. extra: 1650 / 1482,
  18167. bottom: 0.05
  18168. }
  18169. },
  18170. },
  18171. [
  18172. {
  18173. name: "Macro",
  18174. height: math.unit(100, "feet"),
  18175. default: true
  18176. },
  18177. ]
  18178. ))
  18179. characterMakers.push(() => makeCharacter(
  18180. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  18181. {
  18182. front: {
  18183. height: math.unit(5 + 4 / 12, "feet"),
  18184. weight: math.unit(220, "lb"),
  18185. name: "Front",
  18186. image: {
  18187. source: "./media/characters/memory/front.svg",
  18188. extra: 3641 / 3545,
  18189. bottom: 0.03
  18190. }
  18191. },
  18192. back: {
  18193. height: math.unit(5 + 4 / 12, "feet"),
  18194. weight: math.unit(220, "lb"),
  18195. name: "Back",
  18196. image: {
  18197. source: "./media/characters/memory/back.svg",
  18198. extra: 3641 / 3545,
  18199. bottom: 0.025
  18200. }
  18201. },
  18202. frontSkirt: {
  18203. height: math.unit(5 + 4 / 12, "feet"),
  18204. weight: math.unit(220, "lb"),
  18205. name: "Front (Skirt)",
  18206. image: {
  18207. source: "./media/characters/memory/front-skirt.svg",
  18208. extra: 3641 / 3545,
  18209. bottom: 0.03
  18210. }
  18211. },
  18212. frontDress: {
  18213. height: math.unit(5 + 4 / 12, "feet"),
  18214. weight: math.unit(220, "lb"),
  18215. name: "Front (Dress)",
  18216. image: {
  18217. source: "./media/characters/memory/front-dress.svg",
  18218. extra: 3641 / 3545,
  18219. bottom: 0.03
  18220. }
  18221. },
  18222. },
  18223. [
  18224. {
  18225. name: "Micro",
  18226. height: math.unit(6, "inches"),
  18227. default: true
  18228. },
  18229. {
  18230. name: "Normal",
  18231. height: math.unit(5 + 4 / 12, "feet")
  18232. },
  18233. ]
  18234. ))
  18235. characterMakers.push(() => makeCharacter(
  18236. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  18237. {
  18238. front: {
  18239. height: math.unit(4 + 11 / 12, "feet"),
  18240. weight: math.unit(100, "lb"),
  18241. name: "Front",
  18242. image: {
  18243. source: "./media/characters/luno/front.svg",
  18244. extra: 1535 / 1487,
  18245. bottom: 0.03
  18246. }
  18247. },
  18248. },
  18249. [
  18250. {
  18251. name: "Micro",
  18252. height: math.unit(3, "inches")
  18253. },
  18254. {
  18255. name: "Normal",
  18256. height: math.unit(4 + 11 / 12, "feet"),
  18257. default: true
  18258. },
  18259. {
  18260. name: "Macro",
  18261. height: math.unit(300, "feet")
  18262. },
  18263. {
  18264. name: "Megamacro",
  18265. height: math.unit(700, "miles")
  18266. },
  18267. ]
  18268. ))
  18269. characterMakers.push(() => makeCharacter(
  18270. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  18271. {
  18272. front: {
  18273. height: math.unit(6 + 2 / 12, "feet"),
  18274. weight: math.unit(170, "lb"),
  18275. name: "Front",
  18276. image: {
  18277. source: "./media/characters/jamesy/front.svg",
  18278. extra: 440 / 382,
  18279. bottom: 0.005
  18280. }
  18281. },
  18282. },
  18283. [
  18284. {
  18285. name: "Micro",
  18286. height: math.unit(3, "inches")
  18287. },
  18288. {
  18289. name: "Normal",
  18290. height: math.unit(6 + 2 / 12, "feet"),
  18291. default: true
  18292. },
  18293. {
  18294. name: "Macro",
  18295. height: math.unit(300, "feet")
  18296. },
  18297. {
  18298. name: "Megamacro",
  18299. height: math.unit(700, "miles")
  18300. },
  18301. ]
  18302. ))
  18303. characterMakers.push(() => makeCharacter(
  18304. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  18305. {
  18306. front: {
  18307. height: math.unit(6, "feet"),
  18308. weight: math.unit(160, "lb"),
  18309. name: "Front",
  18310. image: {
  18311. source: "./media/characters/mark/front.svg",
  18312. extra: 3300 / 3100,
  18313. bottom: 136.42 / 3440.47
  18314. }
  18315. },
  18316. },
  18317. [
  18318. {
  18319. name: "Macro",
  18320. height: math.unit(120, "meters")
  18321. },
  18322. {
  18323. name: "Bigger Macro",
  18324. height: math.unit(350, "meters")
  18325. },
  18326. {
  18327. name: "Megamacro",
  18328. height: math.unit(8, "km"),
  18329. default: true
  18330. },
  18331. {
  18332. name: "Continental",
  18333. height: math.unit(4550, "km")
  18334. },
  18335. {
  18336. name: "Planetary",
  18337. height: math.unit(65000, "km")
  18338. },
  18339. ]
  18340. ))
  18341. characterMakers.push(() => makeCharacter(
  18342. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  18343. {
  18344. front: {
  18345. height: math.unit(6, "feet"),
  18346. weight: math.unit(400, "lb"),
  18347. name: "Front",
  18348. image: {
  18349. source: "./media/characters/mac/front.svg",
  18350. extra: 1048 / 987.7,
  18351. bottom: 60 / 1107.6,
  18352. }
  18353. },
  18354. },
  18355. [
  18356. {
  18357. name: "Macro",
  18358. height: math.unit(500, "feet"),
  18359. default: true
  18360. },
  18361. ]
  18362. ))
  18363. characterMakers.push(() => makeCharacter(
  18364. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  18365. {
  18366. front: {
  18367. height: math.unit(5 + 2 / 12, "feet"),
  18368. weight: math.unit(190, "lb"),
  18369. name: "Front",
  18370. image: {
  18371. source: "./media/characters/bari/front.svg",
  18372. extra: 3156 / 2880,
  18373. bottom: 0.03
  18374. }
  18375. },
  18376. back: {
  18377. height: math.unit(5 + 2 / 12, "feet"),
  18378. weight: math.unit(190, "lb"),
  18379. name: "Back",
  18380. image: {
  18381. source: "./media/characters/bari/back.svg",
  18382. extra: 3260 / 2834,
  18383. bottom: 0.025
  18384. }
  18385. },
  18386. frontPlush: {
  18387. height: math.unit(5 + 2 / 12, "feet"),
  18388. weight: math.unit(190, "lb"),
  18389. name: "Front (Plush)",
  18390. image: {
  18391. source: "./media/characters/bari/front-plush.svg",
  18392. extra: 1112 / 1061,
  18393. bottom: 0.002
  18394. }
  18395. },
  18396. },
  18397. [
  18398. {
  18399. name: "Micro",
  18400. height: math.unit(3, "inches")
  18401. },
  18402. {
  18403. name: "Normal",
  18404. height: math.unit(5 + 2 / 12, "feet"),
  18405. default: true
  18406. },
  18407. {
  18408. name: "Macro",
  18409. height: math.unit(20, "feet")
  18410. },
  18411. ]
  18412. ))
  18413. characterMakers.push(() => makeCharacter(
  18414. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  18415. {
  18416. front: {
  18417. height: math.unit(6 + 1 / 12, "feet"),
  18418. weight: math.unit(275, "lb"),
  18419. name: "Front",
  18420. image: {
  18421. source: "./media/characters/hunter-misha-raven/front.svg"
  18422. }
  18423. },
  18424. },
  18425. [
  18426. {
  18427. name: "Mortal",
  18428. height: math.unit(6 + 1 / 12, "feet")
  18429. },
  18430. {
  18431. name: "Divine",
  18432. height: math.unit(1.12134e34, "parsecs"),
  18433. default: true
  18434. },
  18435. ]
  18436. ))
  18437. characterMakers.push(() => makeCharacter(
  18438. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  18439. {
  18440. front: {
  18441. height: math.unit(6 + 3 / 12, "feet"),
  18442. weight: math.unit(220, "lb"),
  18443. name: "Front",
  18444. image: {
  18445. source: "./media/characters/max-calore/front.svg",
  18446. extra: 1700 / 1648,
  18447. bottom: 0.01
  18448. }
  18449. },
  18450. back: {
  18451. height: math.unit(6 + 3 / 12, "feet"),
  18452. weight: math.unit(220, "lb"),
  18453. name: "Back",
  18454. image: {
  18455. source: "./media/characters/max-calore/back.svg",
  18456. extra: 1700 / 1648,
  18457. bottom: 0.01
  18458. }
  18459. },
  18460. },
  18461. [
  18462. {
  18463. name: "Normal",
  18464. height: math.unit(6 + 3 / 12, "feet"),
  18465. default: true
  18466. },
  18467. ]
  18468. ))
  18469. characterMakers.push(() => makeCharacter(
  18470. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  18471. {
  18472. side: {
  18473. height: math.unit(2 + 8 / 12, "feet"),
  18474. weight: math.unit(99, "lb"),
  18475. name: "Side",
  18476. image: {
  18477. source: "./media/characters/aspen/side.svg",
  18478. extra: 152 / 138,
  18479. bottom: 0.032
  18480. }
  18481. },
  18482. },
  18483. [
  18484. {
  18485. name: "Normal",
  18486. height: math.unit(2 + 8 / 12, "feet"),
  18487. default: true
  18488. },
  18489. ]
  18490. ))
  18491. characterMakers.push(() => makeCharacter(
  18492. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  18493. {
  18494. side: {
  18495. height: math.unit(3 + 2 / 12, "feet"),
  18496. weight: math.unit(224, "lb"),
  18497. name: "Side",
  18498. image: {
  18499. source: "./media/characters/sheila-feral-wolf/side.svg",
  18500. extra: 179 / 166,
  18501. bottom: 0.03
  18502. }
  18503. },
  18504. },
  18505. [
  18506. {
  18507. name: "Normal",
  18508. height: math.unit(3 + 2 / 12, "feet"),
  18509. default: true
  18510. },
  18511. ]
  18512. ))
  18513. characterMakers.push(() => makeCharacter(
  18514. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  18515. {
  18516. side: {
  18517. height: math.unit(1 + 9 / 12, "feet"),
  18518. weight: math.unit(38, "lb"),
  18519. name: "Side",
  18520. image: {
  18521. source: "./media/characters/michelle/side.svg",
  18522. extra: 147 / 136.7,
  18523. bottom: 0.03
  18524. }
  18525. },
  18526. },
  18527. [
  18528. {
  18529. name: "Normal",
  18530. height: math.unit(1 + 9 / 12, "feet"),
  18531. default: true
  18532. },
  18533. ]
  18534. ))
  18535. characterMakers.push(() => makeCharacter(
  18536. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  18537. {
  18538. front: {
  18539. height: math.unit(1.54, "feet"),
  18540. weight: math.unit(50, "lb"),
  18541. name: "Front",
  18542. image: {
  18543. source: "./media/characters/nino/front.svg"
  18544. }
  18545. },
  18546. },
  18547. [
  18548. {
  18549. name: "Normal",
  18550. height: math.unit(1.54, "feet"),
  18551. default: true
  18552. },
  18553. ]
  18554. ))
  18555. characterMakers.push(() => makeCharacter(
  18556. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  18557. {
  18558. front: {
  18559. height: math.unit(1.49, "feet"),
  18560. weight: math.unit(45, "lb"),
  18561. name: "Front",
  18562. image: {
  18563. source: "./media/characters/viola/front.svg"
  18564. }
  18565. },
  18566. },
  18567. [
  18568. {
  18569. name: "Normal",
  18570. height: math.unit(1.49, "feet"),
  18571. default: true
  18572. },
  18573. ]
  18574. ))
  18575. characterMakers.push(() => makeCharacter(
  18576. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  18577. {
  18578. front: {
  18579. height: math.unit(6 + 5 / 12, "feet"),
  18580. weight: math.unit(580, "lb"),
  18581. name: "Front",
  18582. image: {
  18583. source: "./media/characters/atlas/front.svg",
  18584. extra: 298.5 / 290,
  18585. bottom: 0.015
  18586. }
  18587. },
  18588. },
  18589. [
  18590. {
  18591. name: "Normal",
  18592. height: math.unit(6 + 5 / 12, "feet"),
  18593. default: true
  18594. },
  18595. ]
  18596. ))
  18597. characterMakers.push(() => makeCharacter(
  18598. { name: "Davy", species: ["cat"], tags: ["feral"] },
  18599. {
  18600. side: {
  18601. height: math.unit(15.6, "inches"),
  18602. weight: math.unit(10, "lb"),
  18603. name: "Side",
  18604. image: {
  18605. source: "./media/characters/davy/side.svg",
  18606. extra: 200 / 170,
  18607. bottom: 0.01
  18608. }
  18609. },
  18610. },
  18611. [
  18612. {
  18613. name: "Normal",
  18614. height: math.unit(15.6, "inches"),
  18615. default: true
  18616. },
  18617. ]
  18618. ))
  18619. characterMakers.push(() => makeCharacter(
  18620. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  18621. {
  18622. side: {
  18623. height: math.unit(4 + 8 / 12, "feet"),
  18624. weight: math.unit(166, "lb"),
  18625. name: "Side",
  18626. image: {
  18627. source: "./media/characters/fiona/side.svg",
  18628. extra: 232 / 220,
  18629. bottom: 0.03
  18630. }
  18631. },
  18632. },
  18633. [
  18634. {
  18635. name: "Normal",
  18636. height: math.unit(4 + 8 / 12, "feet"),
  18637. default: true
  18638. },
  18639. ]
  18640. ))
  18641. characterMakers.push(() => makeCharacter(
  18642. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  18643. {
  18644. front: {
  18645. height: math.unit(26, "inches"),
  18646. weight: math.unit(35, "lb"),
  18647. name: "Front",
  18648. image: {
  18649. source: "./media/characters/lyla/front.svg",
  18650. bottom: 0.1
  18651. }
  18652. },
  18653. },
  18654. [
  18655. {
  18656. name: "Normal",
  18657. height: math.unit(3, "feet"),
  18658. default: true
  18659. },
  18660. ]
  18661. ))
  18662. characterMakers.push(() => makeCharacter(
  18663. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  18664. {
  18665. side: {
  18666. height: math.unit(1.8, "feet"),
  18667. weight: math.unit(44, "lb"),
  18668. name: "Side",
  18669. image: {
  18670. source: "./media/characters/perseus/side.svg",
  18671. bottom: 0.21
  18672. }
  18673. },
  18674. },
  18675. [
  18676. {
  18677. name: "Normal",
  18678. height: math.unit(1.8, "feet"),
  18679. default: true
  18680. },
  18681. ]
  18682. ))
  18683. characterMakers.push(() => makeCharacter(
  18684. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  18685. {
  18686. side: {
  18687. height: math.unit(4 + 2 / 12, "feet"),
  18688. weight: math.unit(20, "lb"),
  18689. name: "Side",
  18690. image: {
  18691. source: "./media/characters/remus/side.svg"
  18692. }
  18693. },
  18694. },
  18695. [
  18696. {
  18697. name: "Normal",
  18698. height: math.unit(4 + 2 / 12, "feet"),
  18699. default: true
  18700. },
  18701. ]
  18702. ))
  18703. characterMakers.push(() => makeCharacter(
  18704. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  18705. {
  18706. front: {
  18707. height: math.unit(4 + 11 / 12, "feet"),
  18708. weight: math.unit(114, "lb"),
  18709. name: "Front",
  18710. image: {
  18711. source: "./media/characters/raf/front.svg",
  18712. extra: 1504/1339,
  18713. bottom: 26/1530
  18714. }
  18715. },
  18716. side: {
  18717. height: math.unit(4 + 11 / 12, "feet"),
  18718. weight: math.unit(114, "lb"),
  18719. name: "Side",
  18720. image: {
  18721. source: "./media/characters/raf/side.svg",
  18722. extra: 1466/1316,
  18723. bottom: 29/1495
  18724. }
  18725. },
  18726. paw: {
  18727. height: math.unit(1.45, "feet"),
  18728. name: "Paw",
  18729. image: {
  18730. source: "./media/characters/raf/paw.svg"
  18731. },
  18732. extraAttributes: {
  18733. "toeSize": {
  18734. name: "Toe Size",
  18735. power: 2,
  18736. type: "area",
  18737. base: math.unit(0.004, "m^2")
  18738. },
  18739. "padSize": {
  18740. name: "Pad Size",
  18741. power: 2,
  18742. type: "area",
  18743. base: math.unit(0.04, "m^2")
  18744. },
  18745. "footSize": {
  18746. name: "Foot Size",
  18747. power: 2,
  18748. type: "area",
  18749. base: math.unit(0.08, "m^2")
  18750. },
  18751. }
  18752. },
  18753. },
  18754. [
  18755. {
  18756. name: "Micro",
  18757. height: math.unit(2, "inches")
  18758. },
  18759. {
  18760. name: "Normal",
  18761. height: math.unit(4 + 11 / 12, "feet"),
  18762. default: true
  18763. },
  18764. {
  18765. name: "Macro",
  18766. height: math.unit(70, "feet")
  18767. },
  18768. ]
  18769. ))
  18770. characterMakers.push(() => makeCharacter(
  18771. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  18772. {
  18773. front: {
  18774. height: math.unit(1.5, "meters"),
  18775. weight: math.unit(68, "kg"),
  18776. name: "Front",
  18777. image: {
  18778. source: "./media/characters/liam-einarr/front.svg",
  18779. extra: 2822 / 2666
  18780. }
  18781. },
  18782. back: {
  18783. height: math.unit(1.5, "meters"),
  18784. weight: math.unit(68, "kg"),
  18785. name: "Back",
  18786. image: {
  18787. source: "./media/characters/liam-einarr/back.svg",
  18788. extra: 2822 / 2666,
  18789. bottom: 0.015
  18790. }
  18791. },
  18792. },
  18793. [
  18794. {
  18795. name: "Normal",
  18796. height: math.unit(1.5, "meters"),
  18797. default: true
  18798. },
  18799. {
  18800. name: "Macro",
  18801. height: math.unit(150, "meters")
  18802. },
  18803. {
  18804. name: "Megamacro",
  18805. height: math.unit(35, "km")
  18806. },
  18807. ]
  18808. ))
  18809. characterMakers.push(() => makeCharacter(
  18810. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  18811. {
  18812. front: {
  18813. height: math.unit(6, "feet"),
  18814. weight: math.unit(75, "kg"),
  18815. name: "Front",
  18816. image: {
  18817. source: "./media/characters/linda/front.svg",
  18818. extra: 930 / 874,
  18819. bottom: 0.004
  18820. }
  18821. },
  18822. },
  18823. [
  18824. {
  18825. name: "Normal",
  18826. height: math.unit(6, "feet"),
  18827. default: true
  18828. },
  18829. ]
  18830. ))
  18831. characterMakers.push(() => makeCharacter(
  18832. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  18833. {
  18834. front: {
  18835. height: math.unit(6 + 8 / 12, "feet"),
  18836. weight: math.unit(220, "lb"),
  18837. name: "Front",
  18838. image: {
  18839. source: "./media/characters/caylex/front.svg",
  18840. extra: 821 / 772,
  18841. bottom: 0.07
  18842. }
  18843. },
  18844. back: {
  18845. height: math.unit(6 + 8 / 12, "feet"),
  18846. weight: math.unit(220, "lb"),
  18847. name: "Back",
  18848. image: {
  18849. source: "./media/characters/caylex/back.svg",
  18850. extra: 821 / 772,
  18851. bottom: 0.022
  18852. }
  18853. },
  18854. hand: {
  18855. height: math.unit(1.25, "feet"),
  18856. name: "Hand",
  18857. image: {
  18858. source: "./media/characters/caylex/hand.svg"
  18859. }
  18860. },
  18861. foot: {
  18862. height: math.unit(1.6, "feet"),
  18863. name: "Foot",
  18864. image: {
  18865. source: "./media/characters/caylex/foot.svg"
  18866. }
  18867. },
  18868. armored: {
  18869. height: math.unit(6 + 8 / 12, "feet"),
  18870. weight: math.unit(250, "lb"),
  18871. name: "Armored",
  18872. image: {
  18873. source: "./media/characters/caylex/armored.svg",
  18874. extra: 1420 / 1310,
  18875. bottom: 0.045
  18876. }
  18877. },
  18878. },
  18879. [
  18880. {
  18881. name: "Normal",
  18882. height: math.unit(6 + 8 / 12, "feet"),
  18883. default: true
  18884. },
  18885. {
  18886. name: "Normal+",
  18887. height: math.unit(12, "feet")
  18888. },
  18889. ]
  18890. ))
  18891. characterMakers.push(() => makeCharacter(
  18892. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  18893. {
  18894. front: {
  18895. height: math.unit(7 + 6 / 12, "feet"),
  18896. weight: math.unit(288, "lb"),
  18897. name: "Front",
  18898. image: {
  18899. source: "./media/characters/alana/front.svg",
  18900. extra: 679 / 653,
  18901. bottom: 22.5 / 701
  18902. }
  18903. },
  18904. },
  18905. [
  18906. {
  18907. name: "Normal",
  18908. height: math.unit(7 + 6 / 12, "feet")
  18909. },
  18910. {
  18911. name: "Large",
  18912. height: math.unit(50, "feet")
  18913. },
  18914. {
  18915. name: "Macro",
  18916. height: math.unit(100, "feet"),
  18917. default: true
  18918. },
  18919. {
  18920. name: "Macro+",
  18921. height: math.unit(200, "feet")
  18922. },
  18923. ]
  18924. ))
  18925. characterMakers.push(() => makeCharacter(
  18926. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  18927. {
  18928. front: {
  18929. height: math.unit(6 + 1 / 12, "feet"),
  18930. weight: math.unit(210, "lb"),
  18931. name: "Front",
  18932. image: {
  18933. source: "./media/characters/hasani/front.svg",
  18934. extra: 244 / 232,
  18935. bottom: 0.01
  18936. }
  18937. },
  18938. back: {
  18939. height: math.unit(6 + 1 / 12, "feet"),
  18940. weight: math.unit(210, "lb"),
  18941. name: "Back",
  18942. image: {
  18943. source: "./media/characters/hasani/back.svg",
  18944. extra: 244 / 232,
  18945. bottom: 0.01
  18946. }
  18947. },
  18948. },
  18949. [
  18950. {
  18951. name: "Normal",
  18952. height: math.unit(6 + 1 / 12, "feet")
  18953. },
  18954. {
  18955. name: "Macro",
  18956. height: math.unit(175, "feet"),
  18957. default: true
  18958. },
  18959. ]
  18960. ))
  18961. characterMakers.push(() => makeCharacter(
  18962. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  18963. {
  18964. front: {
  18965. height: math.unit(1.82, "meters"),
  18966. weight: math.unit(140, "lb"),
  18967. name: "Front",
  18968. image: {
  18969. source: "./media/characters/nita/front.svg",
  18970. extra: 2473 / 2363,
  18971. bottom: 0.01
  18972. }
  18973. },
  18974. },
  18975. [
  18976. {
  18977. name: "Normal",
  18978. height: math.unit(1.82, "m")
  18979. },
  18980. {
  18981. name: "Macro",
  18982. height: math.unit(300, "m")
  18983. },
  18984. {
  18985. name: "Mistake Canon",
  18986. height: math.unit(0.5, "miles"),
  18987. default: true
  18988. },
  18989. {
  18990. name: "Big Mistake",
  18991. height: math.unit(13, "miles")
  18992. },
  18993. {
  18994. name: "Playing God",
  18995. height: math.unit(2450, "miles")
  18996. },
  18997. ]
  18998. ))
  18999. characterMakers.push(() => makeCharacter(
  19000. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  19001. {
  19002. front: {
  19003. height: math.unit(4, "feet"),
  19004. weight: math.unit(120, "lb"),
  19005. name: "Front",
  19006. image: {
  19007. source: "./media/characters/shiriko/front.svg",
  19008. extra: 970/934,
  19009. bottom: 5/975
  19010. }
  19011. },
  19012. },
  19013. [
  19014. {
  19015. name: "Normal",
  19016. height: math.unit(4, "feet"),
  19017. default: true
  19018. },
  19019. ]
  19020. ))
  19021. characterMakers.push(() => makeCharacter(
  19022. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  19023. {
  19024. front: {
  19025. height: math.unit(6, "feet"),
  19026. name: "front",
  19027. image: {
  19028. source: "./media/characters/deja/front.svg",
  19029. extra: 926 / 840,
  19030. bottom: 0.07
  19031. }
  19032. },
  19033. },
  19034. [
  19035. {
  19036. name: "Planck Length",
  19037. height: math.unit(1.6e-35, "meters")
  19038. },
  19039. {
  19040. name: "Normal",
  19041. height: math.unit(30.48, "meters"),
  19042. default: true
  19043. },
  19044. {
  19045. name: "Universal",
  19046. height: math.unit(8.8e26, "meters")
  19047. },
  19048. ]
  19049. ))
  19050. characterMakers.push(() => makeCharacter(
  19051. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  19052. {
  19053. side: {
  19054. height: math.unit(8, "feet"),
  19055. weight: math.unit(6300, "lb"),
  19056. name: "Side",
  19057. image: {
  19058. source: "./media/characters/anima/side.svg",
  19059. bottom: 0.035
  19060. }
  19061. },
  19062. },
  19063. [
  19064. {
  19065. name: "Normal",
  19066. height: math.unit(8, "feet"),
  19067. default: true
  19068. },
  19069. ]
  19070. ))
  19071. characterMakers.push(() => makeCharacter(
  19072. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  19073. {
  19074. front: {
  19075. height: math.unit(8, "feet"),
  19076. weight: math.unit(350, "lb"),
  19077. name: "Front",
  19078. image: {
  19079. source: "./media/characters/bianca/front.svg",
  19080. extra: 234 / 225,
  19081. bottom: 0.03
  19082. }
  19083. },
  19084. },
  19085. [
  19086. {
  19087. name: "Normal",
  19088. height: math.unit(8, "feet"),
  19089. default: true
  19090. },
  19091. ]
  19092. ))
  19093. characterMakers.push(() => makeCharacter(
  19094. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  19095. {
  19096. front: {
  19097. height: math.unit(11 + 5/12, "feet"),
  19098. weight: math.unit(1200, "lb"),
  19099. name: "Front",
  19100. image: {
  19101. source: "./media/characters/adinia/front.svg",
  19102. extra: 1767/1641,
  19103. bottom: 44/1811
  19104. },
  19105. extraAttributes: {
  19106. "energyIntake": {
  19107. name: "Energy Intake",
  19108. power: 3,
  19109. type: "energy",
  19110. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19111. },
  19112. }
  19113. },
  19114. back: {
  19115. height: math.unit(11 + 5/12, "feet"),
  19116. weight: math.unit(1200, "lb"),
  19117. name: "Back",
  19118. image: {
  19119. source: "./media/characters/adinia/back.svg",
  19120. extra: 1834/1684,
  19121. bottom: 14/1848
  19122. },
  19123. extraAttributes: {
  19124. "energyIntake": {
  19125. name: "Energy Intake",
  19126. power: 3,
  19127. type: "energy",
  19128. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19129. },
  19130. }
  19131. },
  19132. maw: {
  19133. height: math.unit(3.79, "feet"),
  19134. name: "Maw",
  19135. image: {
  19136. source: "./media/characters/adinia/maw.svg"
  19137. }
  19138. },
  19139. rump: {
  19140. height: math.unit(4.6, "feet"),
  19141. name: "Rump",
  19142. image: {
  19143. source: "./media/characters/adinia/rump.svg"
  19144. }
  19145. },
  19146. },
  19147. [
  19148. {
  19149. name: "Normal",
  19150. height: math.unit(11 + 5 / 12, "feet"),
  19151. default: true
  19152. },
  19153. ]
  19154. ))
  19155. characterMakers.push(() => makeCharacter(
  19156. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  19157. {
  19158. front: {
  19159. height: math.unit(3, "meters"),
  19160. weight: math.unit(200, "kg"),
  19161. name: "Front",
  19162. image: {
  19163. source: "./media/characters/lykasa/front.svg",
  19164. extra: 1076 / 976,
  19165. bottom: 0.06
  19166. }
  19167. },
  19168. },
  19169. [
  19170. {
  19171. name: "Normal",
  19172. height: math.unit(3, "meters")
  19173. },
  19174. {
  19175. name: "Kaiju",
  19176. height: math.unit(120, "meters"),
  19177. default: true
  19178. },
  19179. {
  19180. name: "Mega Kaiju",
  19181. height: math.unit(240, "km")
  19182. },
  19183. {
  19184. name: "Giga Kaiju",
  19185. height: math.unit(400, "megameters")
  19186. },
  19187. {
  19188. name: "Tera Kaiju",
  19189. height: math.unit(800, "gigameters")
  19190. },
  19191. {
  19192. name: "Kaiju Dragon Goddess",
  19193. height: math.unit(26, "zettaparsecs")
  19194. },
  19195. ]
  19196. ))
  19197. characterMakers.push(() => makeCharacter(
  19198. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  19199. {
  19200. side: {
  19201. height: math.unit(283 / 124 * 6, "feet"),
  19202. weight: math.unit(35000, "lb"),
  19203. name: "Side",
  19204. image: {
  19205. source: "./media/characters/malfaren/side.svg",
  19206. extra: 1310/529,
  19207. bottom: 24/1334
  19208. }
  19209. },
  19210. front: {
  19211. height: math.unit(22.36, "feet"),
  19212. weight: math.unit(35000, "lb"),
  19213. name: "Front",
  19214. image: {
  19215. source: "./media/characters/malfaren/front.svg",
  19216. extra: 1237/1115,
  19217. bottom: 32/1269
  19218. }
  19219. },
  19220. maw: {
  19221. height: math.unit(6.9, "feet"),
  19222. name: "Maw",
  19223. image: {
  19224. source: "./media/characters/malfaren/maw.svg"
  19225. }
  19226. },
  19227. dick: {
  19228. height: math.unit(6.19, "feet"),
  19229. name: "Dick",
  19230. image: {
  19231. source: "./media/characters/malfaren/dick.svg"
  19232. }
  19233. },
  19234. eye: {
  19235. height: math.unit(0.69, "feet"),
  19236. name: "Eye",
  19237. image: {
  19238. source: "./media/characters/malfaren/eye.svg"
  19239. }
  19240. },
  19241. },
  19242. [
  19243. {
  19244. name: "Big",
  19245. height: math.unit(283 / 162 * 6, "feet"),
  19246. },
  19247. {
  19248. name: "Bigger",
  19249. height: math.unit(283 / 124 * 6, "feet")
  19250. },
  19251. {
  19252. name: "Massive",
  19253. height: math.unit(283 / 92 * 6, "feet"),
  19254. default: true
  19255. },
  19256. {
  19257. name: "👀💦",
  19258. height: math.unit(283 / 73 * 6, "feet"),
  19259. },
  19260. ]
  19261. ))
  19262. characterMakers.push(() => makeCharacter(
  19263. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  19264. {
  19265. front: {
  19266. height: math.unit(1.7, "m"),
  19267. weight: math.unit(70, "kg"),
  19268. name: "Front",
  19269. image: {
  19270. source: "./media/characters/kernel/front.svg",
  19271. extra: 222 / 210,
  19272. bottom: 0.007
  19273. }
  19274. },
  19275. },
  19276. [
  19277. {
  19278. name: "Nano",
  19279. height: math.unit(17, "micrometers")
  19280. },
  19281. {
  19282. name: "Micro",
  19283. height: math.unit(1.7, "mm")
  19284. },
  19285. {
  19286. name: "Small",
  19287. height: math.unit(1.7, "cm")
  19288. },
  19289. {
  19290. name: "Normal",
  19291. height: math.unit(1.7, "m"),
  19292. default: true
  19293. },
  19294. ]
  19295. ))
  19296. characterMakers.push(() => makeCharacter(
  19297. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  19298. {
  19299. front: {
  19300. height: math.unit(1.75, "meters"),
  19301. weight: math.unit(65, "kg"),
  19302. name: "Front",
  19303. image: {
  19304. source: "./media/characters/jayne-folest/front.svg",
  19305. extra: 2115 / 2007,
  19306. bottom: 0.02
  19307. }
  19308. },
  19309. back: {
  19310. height: math.unit(1.75, "meters"),
  19311. weight: math.unit(65, "kg"),
  19312. name: "Back",
  19313. image: {
  19314. source: "./media/characters/jayne-folest/back.svg",
  19315. extra: 2115 / 2007,
  19316. bottom: 0.005
  19317. }
  19318. },
  19319. frontClothed: {
  19320. height: math.unit(1.75, "meters"),
  19321. weight: math.unit(65, "kg"),
  19322. name: "Front (Clothed)",
  19323. image: {
  19324. source: "./media/characters/jayne-folest/front-clothed.svg",
  19325. extra: 2115 / 2007,
  19326. bottom: 0.035
  19327. }
  19328. },
  19329. hand: {
  19330. height: math.unit(1 / 1.260, "feet"),
  19331. name: "Hand",
  19332. image: {
  19333. source: "./media/characters/jayne-folest/hand.svg"
  19334. }
  19335. },
  19336. foot: {
  19337. height: math.unit(1 / 0.918, "feet"),
  19338. name: "Foot",
  19339. image: {
  19340. source: "./media/characters/jayne-folest/foot.svg"
  19341. }
  19342. },
  19343. },
  19344. [
  19345. {
  19346. name: "Micro",
  19347. height: math.unit(4, "cm")
  19348. },
  19349. {
  19350. name: "Normal",
  19351. height: math.unit(1.75, "meters")
  19352. },
  19353. {
  19354. name: "Macro",
  19355. height: math.unit(47.5, "meters"),
  19356. default: true
  19357. },
  19358. ]
  19359. ))
  19360. characterMakers.push(() => makeCharacter(
  19361. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  19362. {
  19363. front: {
  19364. height: math.unit(180, "cm"),
  19365. weight: math.unit(70, "kg"),
  19366. name: "Front",
  19367. image: {
  19368. source: "./media/characters/algier/front.svg",
  19369. extra: 596 / 572,
  19370. bottom: 0.04
  19371. }
  19372. },
  19373. back: {
  19374. height: math.unit(180, "cm"),
  19375. weight: math.unit(70, "kg"),
  19376. name: "Back",
  19377. image: {
  19378. source: "./media/characters/algier/back.svg",
  19379. extra: 596 / 572,
  19380. bottom: 0.025
  19381. }
  19382. },
  19383. frontdressed: {
  19384. height: math.unit(180, "cm"),
  19385. weight: math.unit(150, "kg"),
  19386. name: "Front-dressed",
  19387. image: {
  19388. source: "./media/characters/algier/front-dressed.svg",
  19389. extra: 596 / 572,
  19390. bottom: 0.038
  19391. }
  19392. },
  19393. },
  19394. [
  19395. {
  19396. name: "Micro",
  19397. height: math.unit(5, "cm")
  19398. },
  19399. {
  19400. name: "Normal",
  19401. height: math.unit(180, "cm"),
  19402. default: true
  19403. },
  19404. {
  19405. name: "Macro",
  19406. height: math.unit(64, "m")
  19407. },
  19408. ]
  19409. ))
  19410. characterMakers.push(() => makeCharacter(
  19411. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  19412. {
  19413. upright: {
  19414. height: math.unit(7, "feet"),
  19415. weight: math.unit(300, "lb"),
  19416. name: "Upright",
  19417. image: {
  19418. source: "./media/characters/pretzel/upright.svg",
  19419. extra: 534 / 522,
  19420. bottom: 0.065
  19421. }
  19422. },
  19423. sprawling: {
  19424. height: math.unit(3.75, "feet"),
  19425. weight: math.unit(300, "lb"),
  19426. name: "Sprawling",
  19427. image: {
  19428. source: "./media/characters/pretzel/sprawling.svg",
  19429. extra: 314 / 281,
  19430. bottom: 0.1
  19431. }
  19432. },
  19433. tongue: {
  19434. height: math.unit(2, "feet"),
  19435. name: "Tongue",
  19436. image: {
  19437. source: "./media/characters/pretzel/tongue.svg"
  19438. }
  19439. },
  19440. },
  19441. [
  19442. {
  19443. name: "Normal",
  19444. height: math.unit(7, "feet"),
  19445. default: true
  19446. },
  19447. {
  19448. name: "Oversized",
  19449. height: math.unit(15, "feet")
  19450. },
  19451. {
  19452. name: "Huge",
  19453. height: math.unit(30, "feet")
  19454. },
  19455. {
  19456. name: "Macro",
  19457. height: math.unit(250, "feet")
  19458. },
  19459. ]
  19460. ))
  19461. characterMakers.push(() => makeCharacter(
  19462. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  19463. {
  19464. sideFront: {
  19465. height: math.unit(5 + 2 / 12, "feet"),
  19466. weight: math.unit(120, "lb"),
  19467. name: "Front Side",
  19468. image: {
  19469. source: "./media/characters/roxi/side-front.svg",
  19470. extra: 2924 / 2717,
  19471. bottom: 0.08
  19472. }
  19473. },
  19474. sideBack: {
  19475. height: math.unit(5 + 2 / 12, "feet"),
  19476. weight: math.unit(120, "lb"),
  19477. name: "Back Side",
  19478. image: {
  19479. source: "./media/characters/roxi/side-back.svg",
  19480. extra: 2904 / 2693,
  19481. bottom: 0.06
  19482. }
  19483. },
  19484. front: {
  19485. height: math.unit(5 + 2 / 12, "feet"),
  19486. weight: math.unit(120, "lb"),
  19487. name: "Front",
  19488. image: {
  19489. source: "./media/characters/roxi/front.svg",
  19490. extra: 2028 / 1907,
  19491. bottom: 0.01
  19492. }
  19493. },
  19494. frontAlt: {
  19495. height: math.unit(5 + 2 / 12, "feet"),
  19496. weight: math.unit(120, "lb"),
  19497. name: "Front (Alt)",
  19498. image: {
  19499. source: "./media/characters/roxi/front-alt.svg",
  19500. extra: 1828 / 1798,
  19501. bottom: 0.01
  19502. }
  19503. },
  19504. sitting: {
  19505. height: math.unit(2.8, "feet"),
  19506. weight: math.unit(120, "lb"),
  19507. name: "Sitting",
  19508. image: {
  19509. source: "./media/characters/roxi/sitting.svg",
  19510. extra: 2660 / 2462,
  19511. bottom: 0.1
  19512. }
  19513. },
  19514. },
  19515. [
  19516. {
  19517. name: "Normal",
  19518. height: math.unit(5 + 2 / 12, "feet"),
  19519. default: true
  19520. },
  19521. ]
  19522. ))
  19523. characterMakers.push(() => makeCharacter(
  19524. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  19525. {
  19526. side: {
  19527. height: math.unit(55, "feet"),
  19528. weight: math.unit(153, "tons"),
  19529. name: "Side",
  19530. image: {
  19531. source: "./media/characters/shadow/side.svg",
  19532. extra: 701 / 628,
  19533. bottom: 0.02
  19534. }
  19535. },
  19536. flying: {
  19537. height: math.unit(145, "feet"),
  19538. weight: math.unit(153, "tons"),
  19539. name: "Flying",
  19540. image: {
  19541. source: "./media/characters/shadow/flying.svg"
  19542. }
  19543. },
  19544. },
  19545. [
  19546. {
  19547. name: "Normal",
  19548. height: math.unit(55, "feet"),
  19549. default: true
  19550. },
  19551. ]
  19552. ))
  19553. characterMakers.push(() => makeCharacter(
  19554. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  19555. {
  19556. front: {
  19557. height: math.unit(6, "feet"),
  19558. weight: math.unit(200, "lb"),
  19559. name: "Front",
  19560. image: {
  19561. source: "./media/characters/marcie/front.svg",
  19562. extra: 960 / 876,
  19563. bottom: 58 / 1017.87
  19564. }
  19565. },
  19566. },
  19567. [
  19568. {
  19569. name: "Macro",
  19570. height: math.unit(1, "mile"),
  19571. default: true
  19572. },
  19573. ]
  19574. ))
  19575. characterMakers.push(() => makeCharacter(
  19576. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  19577. {
  19578. front: {
  19579. height: math.unit(7, "feet"),
  19580. weight: math.unit(200, "lb"),
  19581. name: "Front",
  19582. image: {
  19583. source: "./media/characters/kachina/front.svg",
  19584. extra: 1290.68 / 1119,
  19585. bottom: 36.5 / 1327.18
  19586. }
  19587. },
  19588. },
  19589. [
  19590. {
  19591. name: "Normal",
  19592. height: math.unit(7, "feet"),
  19593. default: true
  19594. },
  19595. ]
  19596. ))
  19597. characterMakers.push(() => makeCharacter(
  19598. { name: "Kash", species: ["canine"], tags: ["feral"] },
  19599. {
  19600. looking: {
  19601. height: math.unit(2, "meters"),
  19602. weight: math.unit(300, "kg"),
  19603. name: "Looking",
  19604. image: {
  19605. source: "./media/characters/kash/looking.svg",
  19606. extra: 474 / 344,
  19607. bottom: 0.03
  19608. }
  19609. },
  19610. side: {
  19611. height: math.unit(2, "meters"),
  19612. weight: math.unit(300, "kg"),
  19613. name: "Side",
  19614. image: {
  19615. source: "./media/characters/kash/side.svg",
  19616. extra: 302 / 251,
  19617. bottom: 0.03
  19618. }
  19619. },
  19620. front: {
  19621. height: math.unit(2, "meters"),
  19622. weight: math.unit(300, "kg"),
  19623. name: "Front",
  19624. image: {
  19625. source: "./media/characters/kash/front.svg",
  19626. extra: 495 / 360,
  19627. bottom: 0.015
  19628. }
  19629. },
  19630. },
  19631. [
  19632. {
  19633. name: "Normal",
  19634. height: math.unit(2, "meters"),
  19635. default: true
  19636. },
  19637. {
  19638. name: "Big",
  19639. height: math.unit(3, "meters")
  19640. },
  19641. {
  19642. name: "Large",
  19643. height: math.unit(5, "meters")
  19644. },
  19645. ]
  19646. ))
  19647. characterMakers.push(() => makeCharacter(
  19648. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  19649. {
  19650. feeding: {
  19651. height: math.unit(6.7, "feet"),
  19652. weight: math.unit(350, "lb"),
  19653. name: "Feeding",
  19654. image: {
  19655. source: "./media/characters/lalim/feeding.svg",
  19656. }
  19657. },
  19658. },
  19659. [
  19660. {
  19661. name: "Normal",
  19662. height: math.unit(6.7, "feet"),
  19663. default: true
  19664. },
  19665. ]
  19666. ))
  19667. characterMakers.push(() => makeCharacter(
  19668. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  19669. {
  19670. front: {
  19671. height: math.unit(9.5, "feet"),
  19672. weight: math.unit(600, "lb"),
  19673. name: "Front",
  19674. image: {
  19675. source: "./media/characters/de'vout/front.svg",
  19676. extra: 1443 / 1328,
  19677. bottom: 0.025
  19678. }
  19679. },
  19680. back: {
  19681. height: math.unit(9.5, "feet"),
  19682. weight: math.unit(600, "lb"),
  19683. name: "Back",
  19684. image: {
  19685. source: "./media/characters/de'vout/back.svg",
  19686. extra: 1443 / 1328
  19687. }
  19688. },
  19689. frontDressed: {
  19690. height: math.unit(9.5, "feet"),
  19691. weight: math.unit(600, "lb"),
  19692. name: "Front (Dressed",
  19693. image: {
  19694. source: "./media/characters/de'vout/front-dressed.svg",
  19695. extra: 1443 / 1328,
  19696. bottom: 0.025
  19697. }
  19698. },
  19699. backDressed: {
  19700. height: math.unit(9.5, "feet"),
  19701. weight: math.unit(600, "lb"),
  19702. name: "Back (Dressed",
  19703. image: {
  19704. source: "./media/characters/de'vout/back-dressed.svg",
  19705. extra: 1443 / 1328
  19706. }
  19707. },
  19708. },
  19709. [
  19710. {
  19711. name: "Normal",
  19712. height: math.unit(9.5, "feet"),
  19713. default: true
  19714. },
  19715. ]
  19716. ))
  19717. characterMakers.push(() => makeCharacter(
  19718. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  19719. {
  19720. front: {
  19721. height: math.unit(8, "feet"),
  19722. weight: math.unit(225, "lb"),
  19723. name: "Front",
  19724. image: {
  19725. source: "./media/characters/talana/front.svg",
  19726. extra: 1410 / 1300,
  19727. bottom: 0.015
  19728. }
  19729. },
  19730. frontDressed: {
  19731. height: math.unit(8, "feet"),
  19732. weight: math.unit(225, "lb"),
  19733. name: "Front (Dressed",
  19734. image: {
  19735. source: "./media/characters/talana/front-dressed.svg",
  19736. extra: 1410 / 1300,
  19737. bottom: 0.015
  19738. }
  19739. },
  19740. },
  19741. [
  19742. {
  19743. name: "Normal",
  19744. height: math.unit(8, "feet"),
  19745. default: true
  19746. },
  19747. ]
  19748. ))
  19749. characterMakers.push(() => makeCharacter(
  19750. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19751. {
  19752. side: {
  19753. height: math.unit(7.2, "feet"),
  19754. weight: math.unit(150, "lb"),
  19755. name: "Side",
  19756. image: {
  19757. source: "./media/characters/xeauvok/side.svg",
  19758. extra: 1975 / 1523,
  19759. bottom: 0.07
  19760. }
  19761. },
  19762. },
  19763. [
  19764. {
  19765. name: "Normal",
  19766. height: math.unit(7.2, "feet"),
  19767. default: true
  19768. },
  19769. ]
  19770. ))
  19771. characterMakers.push(() => makeCharacter(
  19772. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  19773. {
  19774. side: {
  19775. height: math.unit(4, "meters"),
  19776. weight: math.unit(2200, "kg"),
  19777. name: "Side",
  19778. image: {
  19779. source: "./media/characters/zara/side.svg",
  19780. extra: 765/744,
  19781. bottom: 156/921
  19782. }
  19783. },
  19784. },
  19785. [
  19786. {
  19787. name: "Normal",
  19788. height: math.unit(4, "meters"),
  19789. default: true
  19790. },
  19791. ]
  19792. ))
  19793. characterMakers.push(() => makeCharacter(
  19794. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  19795. {
  19796. side: {
  19797. height: math.unit(6, "feet"),
  19798. weight: math.unit(150, "lb"),
  19799. name: "Side",
  19800. image: {
  19801. source: "./media/characters/richard-dragon/side.svg",
  19802. extra: 845 / 340,
  19803. bottom: 0.017
  19804. }
  19805. },
  19806. maw: {
  19807. height: math.unit(2.97, "feet"),
  19808. name: "Maw",
  19809. image: {
  19810. source: "./media/characters/richard-dragon/maw.svg"
  19811. }
  19812. },
  19813. },
  19814. [
  19815. ]
  19816. ))
  19817. characterMakers.push(() => makeCharacter(
  19818. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  19819. {
  19820. front: {
  19821. height: math.unit(4, "feet"),
  19822. weight: math.unit(100, "lb"),
  19823. name: "Front",
  19824. image: {
  19825. source: "./media/characters/richard-smeargle/front.svg",
  19826. extra: 2952 / 2820,
  19827. bottom: 0.028
  19828. }
  19829. },
  19830. },
  19831. [
  19832. {
  19833. name: "Normal",
  19834. height: math.unit(4, "feet"),
  19835. default: true
  19836. },
  19837. {
  19838. name: "Dynamax",
  19839. height: math.unit(20, "meters")
  19840. },
  19841. ]
  19842. ))
  19843. characterMakers.push(() => makeCharacter(
  19844. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  19845. {
  19846. front: {
  19847. height: math.unit(6, "feet"),
  19848. weight: math.unit(110, "lb"),
  19849. name: "Front",
  19850. image: {
  19851. source: "./media/characters/klay/front.svg",
  19852. extra: 962 / 883,
  19853. bottom: 0.04
  19854. }
  19855. },
  19856. back: {
  19857. height: math.unit(6, "feet"),
  19858. weight: math.unit(110, "lb"),
  19859. name: "Back",
  19860. image: {
  19861. source: "./media/characters/klay/back.svg",
  19862. extra: 962 / 883
  19863. }
  19864. },
  19865. beans: {
  19866. height: math.unit(1.15, "feet"),
  19867. name: "Beans",
  19868. image: {
  19869. source: "./media/characters/klay/beans.svg"
  19870. }
  19871. },
  19872. },
  19873. [
  19874. {
  19875. name: "Micro",
  19876. height: math.unit(6, "inches")
  19877. },
  19878. {
  19879. name: "Mini",
  19880. height: math.unit(3, "feet")
  19881. },
  19882. {
  19883. name: "Normal",
  19884. height: math.unit(6, "feet"),
  19885. default: true
  19886. },
  19887. {
  19888. name: "Big",
  19889. height: math.unit(25, "feet")
  19890. },
  19891. {
  19892. name: "Macro",
  19893. height: math.unit(100, "feet")
  19894. },
  19895. {
  19896. name: "Megamacro",
  19897. height: math.unit(400, "feet")
  19898. },
  19899. ]
  19900. ))
  19901. characterMakers.push(() => makeCharacter(
  19902. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  19903. {
  19904. front: {
  19905. height: math.unit(6, "feet"),
  19906. weight: math.unit(160, "lb"),
  19907. name: "Front",
  19908. image: {
  19909. source: "./media/characters/marcus/front.svg",
  19910. extra: 734 / 676,
  19911. bottom: 0.03
  19912. }
  19913. },
  19914. },
  19915. [
  19916. {
  19917. name: "Little",
  19918. height: math.unit(6, "feet")
  19919. },
  19920. {
  19921. name: "Normal",
  19922. height: math.unit(110, "feet"),
  19923. default: true
  19924. },
  19925. {
  19926. name: "Macro",
  19927. height: math.unit(250, "feet")
  19928. },
  19929. {
  19930. name: "Megamacro",
  19931. height: math.unit(1000, "feet")
  19932. },
  19933. ]
  19934. ))
  19935. characterMakers.push(() => makeCharacter(
  19936. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  19937. {
  19938. front: {
  19939. height: math.unit(7, "feet"),
  19940. weight: math.unit(275, "lb"),
  19941. name: "Front",
  19942. image: {
  19943. source: "./media/characters/claude-delroute/front.svg",
  19944. extra: 902/827,
  19945. bottom: 26/928
  19946. }
  19947. },
  19948. side: {
  19949. height: math.unit(7, "feet"),
  19950. weight: math.unit(275, "lb"),
  19951. name: "Side",
  19952. image: {
  19953. source: "./media/characters/claude-delroute/side.svg",
  19954. extra: 908/853,
  19955. bottom: 16/924
  19956. }
  19957. },
  19958. back: {
  19959. height: math.unit(7, "feet"),
  19960. weight: math.unit(275, "lb"),
  19961. name: "Back",
  19962. image: {
  19963. source: "./media/characters/claude-delroute/back.svg",
  19964. extra: 911/829,
  19965. bottom: 18/929
  19966. }
  19967. },
  19968. maw: {
  19969. height: math.unit(0.6407, "meters"),
  19970. name: "Maw",
  19971. image: {
  19972. source: "./media/characters/claude-delroute/maw.svg"
  19973. }
  19974. },
  19975. },
  19976. [
  19977. {
  19978. name: "Normal",
  19979. height: math.unit(7, "feet"),
  19980. default: true
  19981. },
  19982. {
  19983. name: "Lorge",
  19984. height: math.unit(20, "feet")
  19985. },
  19986. ]
  19987. ))
  19988. characterMakers.push(() => makeCharacter(
  19989. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  19990. {
  19991. front: {
  19992. height: math.unit(8 + 4 / 12, "feet"),
  19993. weight: math.unit(600, "lb"),
  19994. name: "Front",
  19995. image: {
  19996. source: "./media/characters/dragonien/front.svg",
  19997. extra: 100 / 94,
  19998. bottom: 3.3 / 103.3445
  19999. }
  20000. },
  20001. back: {
  20002. height: math.unit(8 + 4 / 12, "feet"),
  20003. weight: math.unit(600, "lb"),
  20004. name: "Back",
  20005. image: {
  20006. source: "./media/characters/dragonien/back.svg",
  20007. extra: 776 / 746,
  20008. bottom: 6.4 / 782.0616
  20009. }
  20010. },
  20011. foot: {
  20012. height: math.unit(1.54, "feet"),
  20013. name: "Foot",
  20014. image: {
  20015. source: "./media/characters/dragonien/foot.svg",
  20016. }
  20017. },
  20018. },
  20019. [
  20020. {
  20021. name: "Normal",
  20022. height: math.unit(8 + 4 / 12, "feet"),
  20023. default: true
  20024. },
  20025. {
  20026. name: "Macro",
  20027. height: math.unit(200, "feet")
  20028. },
  20029. {
  20030. name: "Megamacro",
  20031. height: math.unit(1, "mile")
  20032. },
  20033. {
  20034. name: "Gigamacro",
  20035. height: math.unit(1000, "miles")
  20036. },
  20037. ]
  20038. ))
  20039. characterMakers.push(() => makeCharacter(
  20040. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  20041. {
  20042. front: {
  20043. height: math.unit(5 + 2 / 12, "feet"),
  20044. weight: math.unit(110, "lb"),
  20045. name: "Front",
  20046. image: {
  20047. source: "./media/characters/desta/front.svg",
  20048. extra: 767 / 726,
  20049. bottom: 11.7 / 779
  20050. }
  20051. },
  20052. back: {
  20053. height: math.unit(5 + 2 / 12, "feet"),
  20054. weight: math.unit(110, "lb"),
  20055. name: "Back",
  20056. image: {
  20057. source: "./media/characters/desta/back.svg",
  20058. extra: 777 / 728,
  20059. bottom: 6 / 784
  20060. }
  20061. },
  20062. frontAlt: {
  20063. height: math.unit(5 + 2 / 12, "feet"),
  20064. weight: math.unit(110, "lb"),
  20065. name: "Front",
  20066. image: {
  20067. source: "./media/characters/desta/front-alt.svg",
  20068. extra: 1482 / 1417
  20069. }
  20070. },
  20071. side: {
  20072. height: math.unit(5 + 2 / 12, "feet"),
  20073. weight: math.unit(110, "lb"),
  20074. name: "Side",
  20075. image: {
  20076. source: "./media/characters/desta/side.svg",
  20077. extra: 2579 / 2491,
  20078. bottom: 0.053
  20079. }
  20080. },
  20081. },
  20082. [
  20083. {
  20084. name: "Micro",
  20085. height: math.unit(6, "inches")
  20086. },
  20087. {
  20088. name: "Normal",
  20089. height: math.unit(5 + 2 / 12, "feet"),
  20090. default: true
  20091. },
  20092. {
  20093. name: "Macro",
  20094. height: math.unit(62, "feet")
  20095. },
  20096. {
  20097. name: "Megamacro",
  20098. height: math.unit(1800, "feet")
  20099. },
  20100. ]
  20101. ))
  20102. characterMakers.push(() => makeCharacter(
  20103. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  20104. {
  20105. front: {
  20106. height: math.unit(10, "feet"),
  20107. weight: math.unit(700, "lb"),
  20108. name: "Front",
  20109. image: {
  20110. source: "./media/characters/storm-alystar/front.svg",
  20111. extra: 2112 / 1898,
  20112. bottom: 0.034
  20113. }
  20114. },
  20115. },
  20116. [
  20117. {
  20118. name: "Micro",
  20119. height: math.unit(3.5, "inches")
  20120. },
  20121. {
  20122. name: "Normal",
  20123. height: math.unit(10, "feet"),
  20124. default: true
  20125. },
  20126. {
  20127. name: "Macro",
  20128. height: math.unit(400, "feet")
  20129. },
  20130. {
  20131. name: "Deific",
  20132. height: math.unit(60, "miles")
  20133. },
  20134. ]
  20135. ))
  20136. characterMakers.push(() => makeCharacter(
  20137. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  20138. {
  20139. front: {
  20140. height: math.unit(2.35, "meters"),
  20141. weight: math.unit(119, "kg"),
  20142. name: "Front",
  20143. image: {
  20144. source: "./media/characters/ilia/front.svg",
  20145. extra: 1285 / 1255,
  20146. bottom: 0.06
  20147. }
  20148. },
  20149. },
  20150. [
  20151. {
  20152. name: "Normal",
  20153. height: math.unit(2.35, "meters")
  20154. },
  20155. {
  20156. name: "Macro",
  20157. height: math.unit(140, "meters"),
  20158. default: true
  20159. },
  20160. {
  20161. name: "Megamacro",
  20162. height: math.unit(100, "miles")
  20163. },
  20164. ]
  20165. ))
  20166. characterMakers.push(() => makeCharacter(
  20167. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  20168. {
  20169. front: {
  20170. height: math.unit(6 + 5 / 12, "feet"),
  20171. weight: math.unit(190, "lb"),
  20172. name: "Front",
  20173. image: {
  20174. source: "./media/characters/kingdead/front.svg",
  20175. extra: 1228 / 1177
  20176. }
  20177. },
  20178. },
  20179. [
  20180. {
  20181. name: "Micro",
  20182. height: math.unit(7, "inches")
  20183. },
  20184. {
  20185. name: "Normal",
  20186. height: math.unit(6 + 5 / 12, "feet")
  20187. },
  20188. {
  20189. name: "Macro",
  20190. height: math.unit(150, "feet"),
  20191. default: true
  20192. },
  20193. {
  20194. name: "Megamacro",
  20195. height: math.unit(200, "miles")
  20196. },
  20197. ]
  20198. ))
  20199. characterMakers.push(() => makeCharacter(
  20200. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  20201. {
  20202. front: {
  20203. height: math.unit(8, "feet"),
  20204. weight: math.unit(600, "lb"),
  20205. name: "Front",
  20206. image: {
  20207. source: "./media/characters/kyrehx/front.svg",
  20208. extra: 1195 / 1095,
  20209. bottom: 0.034
  20210. }
  20211. },
  20212. },
  20213. [
  20214. {
  20215. name: "Micro",
  20216. height: math.unit(2, "inches")
  20217. },
  20218. {
  20219. name: "Normal",
  20220. height: math.unit(8, "feet"),
  20221. default: true
  20222. },
  20223. {
  20224. name: "Macro",
  20225. height: math.unit(255, "feet")
  20226. },
  20227. ]
  20228. ))
  20229. characterMakers.push(() => makeCharacter(
  20230. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  20231. {
  20232. front: {
  20233. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20234. weight: math.unit(184, "lb"),
  20235. name: "Front",
  20236. image: {
  20237. source: "./media/characters/xang/front.svg",
  20238. extra: 845 / 755
  20239. }
  20240. },
  20241. },
  20242. [
  20243. {
  20244. name: "Normal",
  20245. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20246. default: true
  20247. },
  20248. {
  20249. name: "Macro",
  20250. height: math.unit(0.935 * 146, "feet")
  20251. },
  20252. {
  20253. name: "Megamacro",
  20254. height: math.unit(0.935 * 3, "miles")
  20255. },
  20256. ]
  20257. ))
  20258. characterMakers.push(() => makeCharacter(
  20259. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  20260. {
  20261. frontDressed: {
  20262. height: math.unit(5 + 7 / 12, "feet"),
  20263. weight: math.unit(140, "lb"),
  20264. name: "Front (Dressed)",
  20265. image: {
  20266. source: "./media/characters/doc-weardno/front-dressed.svg",
  20267. extra: 263 / 234
  20268. }
  20269. },
  20270. backDressed: {
  20271. height: math.unit(5 + 7 / 12, "feet"),
  20272. weight: math.unit(140, "lb"),
  20273. name: "Back (Dressed)",
  20274. image: {
  20275. source: "./media/characters/doc-weardno/back-dressed.svg",
  20276. extra: 266 / 238
  20277. }
  20278. },
  20279. front: {
  20280. height: math.unit(5 + 7 / 12, "feet"),
  20281. weight: math.unit(140, "lb"),
  20282. name: "Front",
  20283. image: {
  20284. source: "./media/characters/doc-weardno/front.svg",
  20285. extra: 254 / 233
  20286. }
  20287. },
  20288. },
  20289. [
  20290. {
  20291. name: "Micro",
  20292. height: math.unit(3, "inches")
  20293. },
  20294. {
  20295. name: "Normal",
  20296. height: math.unit(5 + 7 / 12, "feet"),
  20297. default: true
  20298. },
  20299. {
  20300. name: "Macro",
  20301. height: math.unit(25, "feet")
  20302. },
  20303. {
  20304. name: "Megamacro",
  20305. height: math.unit(2, "miles")
  20306. },
  20307. ]
  20308. ))
  20309. characterMakers.push(() => makeCharacter(
  20310. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  20311. {
  20312. front: {
  20313. height: math.unit(6 + 2 / 12, "feet"),
  20314. weight: math.unit(153, "lb"),
  20315. name: "Front",
  20316. image: {
  20317. source: "./media/characters/seth-whilst/front.svg",
  20318. bottom: 0.07
  20319. }
  20320. },
  20321. },
  20322. [
  20323. {
  20324. name: "Micro",
  20325. height: math.unit(5, "inches")
  20326. },
  20327. {
  20328. name: "Normal",
  20329. height: math.unit(6 + 2 / 12, "feet"),
  20330. default: true
  20331. },
  20332. ]
  20333. ))
  20334. characterMakers.push(() => makeCharacter(
  20335. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  20336. {
  20337. front: {
  20338. height: math.unit(3, "inches"),
  20339. weight: math.unit(8, "grams"),
  20340. name: "Front",
  20341. image: {
  20342. source: "./media/characters/pocket-jabari/front.svg",
  20343. extra: 1024 / 974,
  20344. bottom: 0.039
  20345. }
  20346. },
  20347. },
  20348. [
  20349. {
  20350. name: "Minimicro",
  20351. height: math.unit(8, "mm")
  20352. },
  20353. {
  20354. name: "Micro",
  20355. height: math.unit(3, "inches"),
  20356. default: true
  20357. },
  20358. {
  20359. name: "Normal",
  20360. height: math.unit(3, "feet")
  20361. },
  20362. ]
  20363. ))
  20364. characterMakers.push(() => makeCharacter(
  20365. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  20366. {
  20367. frontDressed: {
  20368. height: math.unit(15, "feet"),
  20369. weight: math.unit(3280, "lb"),
  20370. name: "Front (Dressed)",
  20371. image: {
  20372. source: "./media/characters/sapphy/front-dressed.svg",
  20373. extra: 1951/1654,
  20374. bottom: 194/2145
  20375. },
  20376. form: "anthro",
  20377. default: true
  20378. },
  20379. backDressed: {
  20380. height: math.unit(15, "feet"),
  20381. weight: math.unit(3280, "lb"),
  20382. name: "Back (Dressed)",
  20383. image: {
  20384. source: "./media/characters/sapphy/back-dressed.svg",
  20385. extra: 2058/1918,
  20386. bottom: 125/2183
  20387. },
  20388. form: "anthro"
  20389. },
  20390. frontNude: {
  20391. height: math.unit(15, "feet"),
  20392. weight: math.unit(3280, "lb"),
  20393. name: "Front (Nude)",
  20394. image: {
  20395. source: "./media/characters/sapphy/front-nude.svg",
  20396. extra: 1951/1654,
  20397. bottom: 194/2145
  20398. },
  20399. form: "anthro"
  20400. },
  20401. backNude: {
  20402. height: math.unit(15, "feet"),
  20403. weight: math.unit(3280, "lb"),
  20404. name: "Back (Nude)",
  20405. image: {
  20406. source: "./media/characters/sapphy/back-nude.svg",
  20407. extra: 2058/1918,
  20408. bottom: 125/2183
  20409. },
  20410. form: "anthro"
  20411. },
  20412. full: {
  20413. height: math.unit(15, "feet"),
  20414. weight: math.unit(3280, "lb"),
  20415. name: "Full",
  20416. image: {
  20417. source: "./media/characters/sapphy/full.svg",
  20418. extra: 1396/1317,
  20419. bottom: 44/1440
  20420. },
  20421. form: "anthro"
  20422. },
  20423. dick: {
  20424. height: math.unit(3.8, "feet"),
  20425. name: "Dick",
  20426. image: {
  20427. source: "./media/characters/sapphy/dick.svg"
  20428. },
  20429. form: "anthro"
  20430. },
  20431. feral: {
  20432. height: math.unit(35, "feet"),
  20433. weight: math.unit(160, "tons"),
  20434. name: "Feral",
  20435. image: {
  20436. source: "./media/characters/sapphy/feral.svg",
  20437. extra: 1050/573,
  20438. bottom: 60/1110
  20439. },
  20440. form: "feral",
  20441. default: true
  20442. },
  20443. },
  20444. [
  20445. {
  20446. name: "Normal",
  20447. height: math.unit(15, "feet"),
  20448. form: "anthro"
  20449. },
  20450. {
  20451. name: "Casual Macro",
  20452. height: math.unit(120, "feet"),
  20453. form: "anthro"
  20454. },
  20455. {
  20456. name: "Macro",
  20457. height: math.unit(2150, "feet"),
  20458. default: true,
  20459. form: "anthro"
  20460. },
  20461. {
  20462. name: "Megamacro",
  20463. height: math.unit(8, "miles"),
  20464. form: "anthro"
  20465. },
  20466. {
  20467. name: "Galaxy Mom",
  20468. height: math.unit(6, "megalightyears"),
  20469. form: "anthro"
  20470. },
  20471. {
  20472. name: "Normal",
  20473. height: math.unit(35, "feet"),
  20474. form: "feral",
  20475. default: true
  20476. },
  20477. {
  20478. name: "Macro",
  20479. height: math.unit(300, "feet"),
  20480. form: "feral"
  20481. },
  20482. {
  20483. name: "Galaxy Mom",
  20484. height: math.unit(10, "megalightyears"),
  20485. form: "feral"
  20486. },
  20487. ],
  20488. {
  20489. "anthro": {
  20490. name: "Anthro",
  20491. default: true
  20492. },
  20493. "feral": {
  20494. name: "Feral"
  20495. }
  20496. }
  20497. ))
  20498. characterMakers.push(() => makeCharacter(
  20499. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  20500. {
  20501. hyenaFront: {
  20502. height: math.unit(6, "feet"),
  20503. weight: math.unit(190, "lb"),
  20504. name: "Front",
  20505. image: {
  20506. source: "./media/characters/kiro/hyena-front.svg",
  20507. extra: 927/839,
  20508. bottom: 91/1018
  20509. },
  20510. form: "hyena",
  20511. default: true
  20512. },
  20513. front: {
  20514. height: math.unit(6, "feet"),
  20515. weight: math.unit(170, "lb"),
  20516. name: "Front",
  20517. image: {
  20518. source: "./media/characters/kiro/front.svg",
  20519. extra: 1064 / 1012,
  20520. bottom: 0.052
  20521. },
  20522. form: "folf",
  20523. default: true
  20524. },
  20525. },
  20526. [
  20527. {
  20528. name: "Micro",
  20529. height: math.unit(6, "inches"),
  20530. form: "folf"
  20531. },
  20532. {
  20533. name: "Normal",
  20534. height: math.unit(6, "feet"),
  20535. form: "folf",
  20536. default: true
  20537. },
  20538. {
  20539. name: "Macro",
  20540. height: math.unit(72, "feet"),
  20541. form: "folf"
  20542. },
  20543. {
  20544. name: "Micro",
  20545. height: math.unit(6, "inches"),
  20546. form: "hyena"
  20547. },
  20548. {
  20549. name: "Normal",
  20550. height: math.unit(6, "feet"),
  20551. form: "hyena",
  20552. default: true
  20553. },
  20554. {
  20555. name: "Macro",
  20556. height: math.unit(72, "feet"),
  20557. form: "hyena"
  20558. },
  20559. ],
  20560. {
  20561. "hyena": {
  20562. name: "Hyena",
  20563. default: true
  20564. },
  20565. "folf": {
  20566. name: "Folf",
  20567. },
  20568. }
  20569. ))
  20570. characterMakers.push(() => makeCharacter(
  20571. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  20572. {
  20573. front: {
  20574. height: math.unit(5 + 9 / 12, "feet"),
  20575. weight: math.unit(175, "lb"),
  20576. name: "Front",
  20577. image: {
  20578. source: "./media/characters/irishfox/front.svg",
  20579. extra: 1912 / 1680,
  20580. bottom: 0.02
  20581. }
  20582. },
  20583. },
  20584. [
  20585. {
  20586. name: "Nano",
  20587. height: math.unit(1, "mm")
  20588. },
  20589. {
  20590. name: "Micro",
  20591. height: math.unit(2, "inches")
  20592. },
  20593. {
  20594. name: "Normal",
  20595. height: math.unit(5 + 9 / 12, "feet"),
  20596. default: true
  20597. },
  20598. {
  20599. name: "Macro",
  20600. height: math.unit(45, "feet")
  20601. },
  20602. ]
  20603. ))
  20604. characterMakers.push(() => makeCharacter(
  20605. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  20606. {
  20607. front: {
  20608. height: math.unit(6 + 1 / 12, "feet"),
  20609. weight: math.unit(75, "lb"),
  20610. name: "Front",
  20611. image: {
  20612. source: "./media/characters/aronai-sieyes/front.svg",
  20613. extra: 1532/1450,
  20614. bottom: 42/1574
  20615. }
  20616. },
  20617. side: {
  20618. height: math.unit(6 + 1 / 12, "feet"),
  20619. weight: math.unit(75, "lb"),
  20620. name: "Side",
  20621. image: {
  20622. source: "./media/characters/aronai-sieyes/side.svg",
  20623. extra: 1422/1365,
  20624. bottom: 148/1570
  20625. }
  20626. },
  20627. back: {
  20628. height: math.unit(6 + 1 / 12, "feet"),
  20629. weight: math.unit(75, "lb"),
  20630. name: "Back",
  20631. image: {
  20632. source: "./media/characters/aronai-sieyes/back.svg",
  20633. extra: 1526/1464,
  20634. bottom: 51/1577
  20635. }
  20636. },
  20637. dressed: {
  20638. height: math.unit(6 + 1 / 12, "feet"),
  20639. weight: math.unit(75, "lb"),
  20640. name: "Dressed",
  20641. image: {
  20642. source: "./media/characters/aronai-sieyes/dressed.svg",
  20643. extra: 1559/1483,
  20644. bottom: 39/1598
  20645. }
  20646. },
  20647. slit: {
  20648. height: math.unit(1.3, "feet"),
  20649. name: "Slit",
  20650. image: {
  20651. source: "./media/characters/aronai-sieyes/slit.svg"
  20652. }
  20653. },
  20654. slitSpread: {
  20655. height: math.unit(0.9, "feet"),
  20656. name: "Slit (Spread)",
  20657. image: {
  20658. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  20659. }
  20660. },
  20661. rump: {
  20662. height: math.unit(1.3, "feet"),
  20663. name: "Rump",
  20664. image: {
  20665. source: "./media/characters/aronai-sieyes/rump.svg"
  20666. }
  20667. },
  20668. maw: {
  20669. height: math.unit(1.25, "feet"),
  20670. name: "Maw",
  20671. image: {
  20672. source: "./media/characters/aronai-sieyes/maw.svg"
  20673. }
  20674. },
  20675. feral: {
  20676. height: math.unit(18, "feet"),
  20677. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  20678. name: "Feral",
  20679. image: {
  20680. source: "./media/characters/aronai-sieyes/feral.svg",
  20681. extra: 1530 / 1240,
  20682. bottom: 0.035
  20683. }
  20684. },
  20685. },
  20686. [
  20687. {
  20688. name: "Micro",
  20689. height: math.unit(2, "inches")
  20690. },
  20691. {
  20692. name: "Normal",
  20693. height: math.unit(6 + 1 / 12, "feet"),
  20694. default: true
  20695. }
  20696. ]
  20697. ))
  20698. characterMakers.push(() => makeCharacter(
  20699. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  20700. {
  20701. front: {
  20702. height: math.unit(12, "feet"),
  20703. weight: math.unit(410, "kg"),
  20704. name: "Front",
  20705. image: {
  20706. source: "./media/characters/xuna/front.svg",
  20707. extra: 2184 / 1980
  20708. }
  20709. },
  20710. side: {
  20711. height: math.unit(12, "feet"),
  20712. weight: math.unit(410, "kg"),
  20713. name: "Side",
  20714. image: {
  20715. source: "./media/characters/xuna/side.svg",
  20716. extra: 2184 / 1980
  20717. }
  20718. },
  20719. back: {
  20720. height: math.unit(12, "feet"),
  20721. weight: math.unit(410, "kg"),
  20722. name: "Back",
  20723. image: {
  20724. source: "./media/characters/xuna/back.svg",
  20725. extra: 2184 / 1980
  20726. }
  20727. },
  20728. },
  20729. [
  20730. {
  20731. name: "Nano glow",
  20732. height: math.unit(10, "nm")
  20733. },
  20734. {
  20735. name: "Micro floof",
  20736. height: math.unit(0.3, "m")
  20737. },
  20738. {
  20739. name: "Huggable softy boi",
  20740. height: math.unit(3.6576, "m"),
  20741. default: true
  20742. },
  20743. {
  20744. name: "Admirable floof",
  20745. height: math.unit(80, "meters")
  20746. },
  20747. {
  20748. name: "Gentle macro",
  20749. height: math.unit(300, "meters")
  20750. },
  20751. {
  20752. name: "Very careful floof",
  20753. height: math.unit(3200, "meters")
  20754. },
  20755. {
  20756. name: "The mega floof",
  20757. height: math.unit(36000, "meters")
  20758. },
  20759. {
  20760. name: "Giga-fur-Wicker",
  20761. height: math.unit(4800000, "meters")
  20762. },
  20763. {
  20764. name: "Licky world",
  20765. height: math.unit(20000000, "meters")
  20766. },
  20767. {
  20768. name: "Floofy cyan sun",
  20769. height: math.unit(1500000000, "meters")
  20770. },
  20771. {
  20772. name: "Milky Wicker",
  20773. height: math.unit(1000000000000000000000, "meters")
  20774. },
  20775. {
  20776. name: "The observing Wicker",
  20777. height: math.unit(999999999999999999999999999, "meters")
  20778. },
  20779. ]
  20780. ))
  20781. characterMakers.push(() => makeCharacter(
  20782. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20783. {
  20784. front: {
  20785. height: math.unit(5 + 9 / 12, "feet"),
  20786. weight: math.unit(150, "lb"),
  20787. name: "Front",
  20788. image: {
  20789. source: "./media/characters/arokha-sieyes/front.svg",
  20790. extra: 1425 / 1284,
  20791. bottom: 0.05
  20792. }
  20793. },
  20794. },
  20795. [
  20796. {
  20797. name: "Normal",
  20798. height: math.unit(5 + 9 / 12, "feet")
  20799. },
  20800. {
  20801. name: "Macro",
  20802. height: math.unit(30, "meters"),
  20803. default: true
  20804. },
  20805. ]
  20806. ))
  20807. characterMakers.push(() => makeCharacter(
  20808. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20809. {
  20810. front: {
  20811. height: math.unit(6, "feet"),
  20812. weight: math.unit(180, "lb"),
  20813. name: "Front",
  20814. image: {
  20815. source: "./media/characters/arokh-sieyes/front.svg",
  20816. extra: 1830 / 1769,
  20817. bottom: 0.01
  20818. }
  20819. },
  20820. },
  20821. [
  20822. {
  20823. name: "Normal",
  20824. height: math.unit(6, "feet")
  20825. },
  20826. {
  20827. name: "Macro",
  20828. height: math.unit(30, "meters"),
  20829. default: true
  20830. },
  20831. ]
  20832. ))
  20833. characterMakers.push(() => makeCharacter(
  20834. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  20835. {
  20836. side: {
  20837. height: math.unit(13 + 1 / 12, "feet"),
  20838. weight: math.unit(8.5, "tonnes"),
  20839. preyCapacity: math.unit(36, "people"),
  20840. name: "Side",
  20841. image: {
  20842. source: "./media/characters/goldeneye/side.svg",
  20843. extra: 1139/741,
  20844. bottom: 98/1237
  20845. }
  20846. },
  20847. front: {
  20848. height: math.unit(5.1, "feet"),
  20849. weight: math.unit(8.5, "tonnes"),
  20850. preyCapacity: math.unit(36, "people"),
  20851. name: "Front",
  20852. image: {
  20853. source: "./media/characters/goldeneye/front.svg",
  20854. extra: 635/365,
  20855. bottom: 598/1233
  20856. }
  20857. },
  20858. maw: {
  20859. height: math.unit(6.6, "feet"),
  20860. name: "Maw",
  20861. image: {
  20862. source: "./media/characters/goldeneye/maw.svg"
  20863. }
  20864. },
  20865. headFront: {
  20866. height: math.unit(8, "feet"),
  20867. name: "Head (Front)",
  20868. image: {
  20869. source: "./media/characters/goldeneye/head-front.svg"
  20870. }
  20871. },
  20872. headSide: {
  20873. height: math.unit(6, "feet"),
  20874. name: "Head (Side)",
  20875. image: {
  20876. source: "./media/characters/goldeneye/head-side.svg"
  20877. }
  20878. },
  20879. headBack: {
  20880. height: math.unit(8, "feet"),
  20881. name: "Head (Back)",
  20882. image: {
  20883. source: "./media/characters/goldeneye/head-back.svg"
  20884. }
  20885. },
  20886. paw: {
  20887. height: math.unit(3.4, "feet"),
  20888. name: "Paw",
  20889. image: {
  20890. source: "./media/characters/goldeneye/paw.svg"
  20891. }
  20892. },
  20893. toering: {
  20894. height: math.unit(0.45, "feet"),
  20895. name: "Toering",
  20896. image: {
  20897. source: "./media/characters/goldeneye/toering.svg"
  20898. }
  20899. },
  20900. eyes: {
  20901. height: math.unit(0.5, "feet"),
  20902. name: "Eyes",
  20903. image: {
  20904. source: "./media/characters/goldeneye/eyes.svg"
  20905. }
  20906. },
  20907. },
  20908. [
  20909. {
  20910. name: "Normal",
  20911. height: math.unit(13 + 1 / 12, "feet"),
  20912. default: true
  20913. },
  20914. ]
  20915. ))
  20916. characterMakers.push(() => makeCharacter(
  20917. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  20918. {
  20919. front: {
  20920. height: math.unit(6 + 1 / 12, "feet"),
  20921. weight: math.unit(210, "lb"),
  20922. name: "Front",
  20923. image: {
  20924. source: "./media/characters/leonardo-lycheborne/front.svg",
  20925. extra: 776/723,
  20926. bottom: 34/810
  20927. }
  20928. },
  20929. side: {
  20930. height: math.unit(6 + 1 / 12, "feet"),
  20931. weight: math.unit(210, "lb"),
  20932. name: "Side",
  20933. image: {
  20934. source: "./media/characters/leonardo-lycheborne/side.svg",
  20935. extra: 780/728,
  20936. bottom: 12/792
  20937. }
  20938. },
  20939. back: {
  20940. height: math.unit(6 + 1 / 12, "feet"),
  20941. weight: math.unit(210, "lb"),
  20942. name: "Back",
  20943. image: {
  20944. source: "./media/characters/leonardo-lycheborne/back.svg",
  20945. extra: 775/721,
  20946. bottom: 17/792
  20947. }
  20948. },
  20949. hand: {
  20950. height: math.unit(1.08, "feet"),
  20951. name: "Hand",
  20952. image: {
  20953. source: "./media/characters/leonardo-lycheborne/hand.svg"
  20954. }
  20955. },
  20956. foot: {
  20957. height: math.unit(1.32, "feet"),
  20958. name: "Foot",
  20959. image: {
  20960. source: "./media/characters/leonardo-lycheborne/foot.svg"
  20961. }
  20962. },
  20963. maw: {
  20964. height: math.unit(1, "feet"),
  20965. name: "Maw",
  20966. image: {
  20967. source: "./media/characters/leonardo-lycheborne/maw.svg"
  20968. }
  20969. },
  20970. were: {
  20971. height: math.unit(20, "feet"),
  20972. weight: math.unit(7800, "lb"),
  20973. name: "Were",
  20974. image: {
  20975. source: "./media/characters/leonardo-lycheborne/were.svg",
  20976. extra: 1224/1165,
  20977. bottom: 72/1296
  20978. }
  20979. },
  20980. feral: {
  20981. height: math.unit(7.5, "feet"),
  20982. weight: math.unit(600, "lb"),
  20983. name: "Feral",
  20984. image: {
  20985. source: "./media/characters/leonardo-lycheborne/feral.svg",
  20986. extra: 797/702,
  20987. bottom: 139/936
  20988. }
  20989. },
  20990. taur: {
  20991. height: math.unit(11, "feet"),
  20992. weight: math.unit(3300, "lb"),
  20993. name: "Taur",
  20994. image: {
  20995. source: "./media/characters/leonardo-lycheborne/taur.svg",
  20996. extra: 1271/1197,
  20997. bottom: 47/1318
  20998. }
  20999. },
  21000. barghest: {
  21001. height: math.unit(11, "feet"),
  21002. weight: math.unit(1300, "lb"),
  21003. name: "Barghest",
  21004. image: {
  21005. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  21006. extra: 1291/1204,
  21007. bottom: 37/1328
  21008. }
  21009. },
  21010. dick: {
  21011. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  21012. name: "Dick",
  21013. image: {
  21014. source: "./media/characters/leonardo-lycheborne/dick.svg"
  21015. }
  21016. },
  21017. dickWere: {
  21018. height: math.unit((20) / 3.8, "feet"),
  21019. name: "Dick (Were)",
  21020. image: {
  21021. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  21022. }
  21023. },
  21024. },
  21025. [
  21026. {
  21027. name: "Normal",
  21028. height: math.unit(6 + 1 / 12, "feet"),
  21029. default: true
  21030. },
  21031. ]
  21032. ))
  21033. characterMakers.push(() => makeCharacter(
  21034. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  21035. {
  21036. front: {
  21037. height: math.unit(10, "feet"),
  21038. weight: math.unit(350, "lb"),
  21039. name: "Front",
  21040. image: {
  21041. source: "./media/characters/jet/front.svg",
  21042. extra: 2050 / 1980,
  21043. bottom: 0.013
  21044. }
  21045. },
  21046. back: {
  21047. height: math.unit(10, "feet"),
  21048. weight: math.unit(350, "lb"),
  21049. name: "Back",
  21050. image: {
  21051. source: "./media/characters/jet/back.svg",
  21052. extra: 2050 / 1980,
  21053. bottom: 0.013
  21054. }
  21055. },
  21056. },
  21057. [
  21058. {
  21059. name: "Micro",
  21060. height: math.unit(6, "inches")
  21061. },
  21062. {
  21063. name: "Normal",
  21064. height: math.unit(10, "feet"),
  21065. default: true
  21066. },
  21067. {
  21068. name: "Macro",
  21069. height: math.unit(100, "feet")
  21070. },
  21071. ]
  21072. ))
  21073. characterMakers.push(() => makeCharacter(
  21074. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  21075. {
  21076. front: {
  21077. height: math.unit(15, "feet"),
  21078. weight: math.unit(2800, "lb"),
  21079. name: "Front",
  21080. image: {
  21081. source: "./media/characters/tanarath/front.svg",
  21082. extra: 2392 / 2220,
  21083. bottom: 0.03
  21084. }
  21085. },
  21086. back: {
  21087. height: math.unit(15, "feet"),
  21088. weight: math.unit(2800, "lb"),
  21089. name: "Back",
  21090. image: {
  21091. source: "./media/characters/tanarath/back.svg",
  21092. extra: 2392 / 2220,
  21093. bottom: 0.03
  21094. }
  21095. },
  21096. },
  21097. [
  21098. {
  21099. name: "Normal",
  21100. height: math.unit(15, "feet"),
  21101. default: true
  21102. },
  21103. ]
  21104. ))
  21105. characterMakers.push(() => makeCharacter(
  21106. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  21107. {
  21108. front: {
  21109. height: math.unit(7 + 1 / 12, "feet"),
  21110. weight: math.unit(175, "lb"),
  21111. name: "Front",
  21112. image: {
  21113. source: "./media/characters/patty-cattybatty/front.svg",
  21114. extra: 908 / 874,
  21115. bottom: 0.025
  21116. }
  21117. },
  21118. },
  21119. [
  21120. {
  21121. name: "Micro",
  21122. height: math.unit(1, "inch")
  21123. },
  21124. {
  21125. name: "Normal",
  21126. height: math.unit(7 + 1 / 12, "feet")
  21127. },
  21128. {
  21129. name: "Mini Macro",
  21130. height: math.unit(155, "feet")
  21131. },
  21132. {
  21133. name: "Macro",
  21134. height: math.unit(1077, "feet")
  21135. },
  21136. {
  21137. name: "Mega Macro",
  21138. height: math.unit(47650, "feet"),
  21139. default: true
  21140. },
  21141. {
  21142. name: "Giga Macro",
  21143. height: math.unit(440, "miles")
  21144. },
  21145. {
  21146. name: "Tera Macro",
  21147. height: math.unit(8700, "miles")
  21148. },
  21149. {
  21150. name: "Planetary Macro",
  21151. height: math.unit(32700, "miles")
  21152. },
  21153. {
  21154. name: "Solar Macro",
  21155. height: math.unit(550000, "miles")
  21156. },
  21157. {
  21158. name: "Celestial Macro",
  21159. height: math.unit(2.5, "AU")
  21160. },
  21161. ]
  21162. ))
  21163. characterMakers.push(() => makeCharacter(
  21164. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  21165. {
  21166. front: {
  21167. height: math.unit(4 + 5 / 12, "feet"),
  21168. weight: math.unit(90, "lb"),
  21169. name: "Front",
  21170. image: {
  21171. source: "./media/characters/cappu/front.svg",
  21172. extra: 1247 / 1152,
  21173. bottom: 0.012
  21174. }
  21175. },
  21176. },
  21177. [
  21178. {
  21179. name: "Normal",
  21180. height: math.unit(4 + 5 / 12, "feet"),
  21181. default: true
  21182. },
  21183. ]
  21184. ))
  21185. characterMakers.push(() => makeCharacter(
  21186. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  21187. {
  21188. frontDressed: {
  21189. height: math.unit(70, "cm"),
  21190. weight: math.unit(6, "kg"),
  21191. name: "Front (Dressed)",
  21192. image: {
  21193. source: "./media/characters/sebi/front-dressed.svg",
  21194. extra: 713.5 / 686.5,
  21195. bottom: 0.003
  21196. }
  21197. },
  21198. front: {
  21199. height: math.unit(70, "cm"),
  21200. weight: math.unit(5, "kg"),
  21201. name: "Front",
  21202. image: {
  21203. source: "./media/characters/sebi/front.svg",
  21204. extra: 713.5 / 686.5,
  21205. bottom: 0.003
  21206. }
  21207. }
  21208. },
  21209. [
  21210. {
  21211. name: "Normal",
  21212. height: math.unit(70, "cm"),
  21213. default: true
  21214. },
  21215. {
  21216. name: "Macro",
  21217. height: math.unit(8, "meters")
  21218. },
  21219. ]
  21220. ))
  21221. characterMakers.push(() => makeCharacter(
  21222. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21223. {
  21224. front: {
  21225. height: math.unit(6, "feet"),
  21226. weight: math.unit(150, "lb"),
  21227. name: "Front",
  21228. image: {
  21229. source: "./media/characters/typhek/front.svg",
  21230. extra: 1948 / 1929,
  21231. bottom: 0.025
  21232. }
  21233. },
  21234. side: {
  21235. height: math.unit(6, "feet"),
  21236. weight: math.unit(150, "lb"),
  21237. name: "Side",
  21238. image: {
  21239. source: "./media/characters/typhek/side.svg",
  21240. extra: 2034 / 2010,
  21241. bottom: 0.003
  21242. }
  21243. },
  21244. back: {
  21245. height: math.unit(6, "feet"),
  21246. weight: math.unit(150, "lb"),
  21247. name: "Back",
  21248. image: {
  21249. source: "./media/characters/typhek/back.svg",
  21250. extra: 2005 / 1978,
  21251. bottom: 0.004
  21252. }
  21253. },
  21254. palm: {
  21255. height: math.unit(1.2, "feet"),
  21256. name: "Palm",
  21257. image: {
  21258. source: "./media/characters/typhek/palm.svg"
  21259. }
  21260. },
  21261. fist: {
  21262. height: math.unit(1.1, "feet"),
  21263. name: "Fist",
  21264. image: {
  21265. source: "./media/characters/typhek/fist.svg"
  21266. }
  21267. },
  21268. foot: {
  21269. height: math.unit(1.57, "feet"),
  21270. name: "Foot",
  21271. image: {
  21272. source: "./media/characters/typhek/foot.svg"
  21273. }
  21274. },
  21275. sole: {
  21276. height: math.unit(2.05, "feet"),
  21277. name: "Sole",
  21278. image: {
  21279. source: "./media/characters/typhek/sole.svg"
  21280. }
  21281. },
  21282. },
  21283. [
  21284. {
  21285. name: "Macro",
  21286. height: math.unit(40, "stories"),
  21287. default: true
  21288. },
  21289. {
  21290. name: "Megamacro",
  21291. height: math.unit(1, "mile")
  21292. },
  21293. {
  21294. name: "Gigamacro",
  21295. height: math.unit(4000, "solarradii")
  21296. },
  21297. {
  21298. name: "Universal",
  21299. height: math.unit(1.1, "universes")
  21300. }
  21301. ]
  21302. ))
  21303. characterMakers.push(() => makeCharacter(
  21304. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  21305. {
  21306. side: {
  21307. height: math.unit(5 + 7 / 12, "feet"),
  21308. weight: math.unit(150, "lb"),
  21309. name: "Side",
  21310. image: {
  21311. source: "./media/characters/kassy/side.svg",
  21312. extra: 1280 / 1225,
  21313. bottom: 0.002
  21314. }
  21315. },
  21316. front: {
  21317. height: math.unit(5 + 7 / 12, "feet"),
  21318. weight: math.unit(150, "lb"),
  21319. name: "Front",
  21320. image: {
  21321. source: "./media/characters/kassy/front.svg",
  21322. extra: 1280 / 1225,
  21323. bottom: 0.025
  21324. }
  21325. },
  21326. back: {
  21327. height: math.unit(5 + 7 / 12, "feet"),
  21328. weight: math.unit(150, "lb"),
  21329. name: "Back",
  21330. image: {
  21331. source: "./media/characters/kassy/back.svg",
  21332. extra: 1280 / 1225,
  21333. bottom: 0.002
  21334. }
  21335. },
  21336. foot: {
  21337. height: math.unit(1.266, "feet"),
  21338. name: "Foot",
  21339. image: {
  21340. source: "./media/characters/kassy/foot.svg"
  21341. }
  21342. },
  21343. },
  21344. [
  21345. {
  21346. name: "Normal",
  21347. height: math.unit(5 + 7 / 12, "feet")
  21348. },
  21349. {
  21350. name: "Macro",
  21351. height: math.unit(137, "feet"),
  21352. default: true
  21353. },
  21354. {
  21355. name: "Megamacro",
  21356. height: math.unit(1, "mile")
  21357. },
  21358. ]
  21359. ))
  21360. characterMakers.push(() => makeCharacter(
  21361. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  21362. {
  21363. front: {
  21364. height: math.unit(6 + 1 / 12, "feet"),
  21365. weight: math.unit(200, "lb"),
  21366. name: "Front",
  21367. image: {
  21368. source: "./media/characters/neil/front.svg",
  21369. extra: 1326 / 1250,
  21370. bottom: 0.023
  21371. }
  21372. },
  21373. },
  21374. [
  21375. {
  21376. name: "Normal",
  21377. height: math.unit(6 + 1 / 12, "feet"),
  21378. default: true
  21379. },
  21380. {
  21381. name: "Macro",
  21382. height: math.unit(200, "feet")
  21383. },
  21384. ]
  21385. ))
  21386. characterMakers.push(() => makeCharacter(
  21387. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  21388. {
  21389. front: {
  21390. height: math.unit(5 + 9 / 12, "feet"),
  21391. weight: math.unit(190, "lb"),
  21392. name: "Front",
  21393. image: {
  21394. source: "./media/characters/atticus/front.svg",
  21395. extra: 2934 / 2785,
  21396. bottom: 0.025
  21397. }
  21398. },
  21399. },
  21400. [
  21401. {
  21402. name: "Normal",
  21403. height: math.unit(5 + 9 / 12, "feet"),
  21404. default: true
  21405. },
  21406. {
  21407. name: "Macro",
  21408. height: math.unit(180, "feet")
  21409. },
  21410. ]
  21411. ))
  21412. characterMakers.push(() => makeCharacter(
  21413. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  21414. {
  21415. side: {
  21416. height: math.unit(9, "feet"),
  21417. weight: math.unit(650, "lb"),
  21418. name: "Side",
  21419. image: {
  21420. source: "./media/characters/milo/side.svg",
  21421. extra: 2644 / 2310,
  21422. bottom: 0.032
  21423. }
  21424. },
  21425. },
  21426. [
  21427. {
  21428. name: "Normal",
  21429. height: math.unit(9, "feet"),
  21430. default: true
  21431. },
  21432. {
  21433. name: "Macro",
  21434. height: math.unit(300, "feet")
  21435. },
  21436. ]
  21437. ))
  21438. characterMakers.push(() => makeCharacter(
  21439. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  21440. {
  21441. side: {
  21442. height: math.unit(8, "meters"),
  21443. weight: math.unit(90000, "kg"),
  21444. name: "Side",
  21445. image: {
  21446. source: "./media/characters/ijzer/side.svg",
  21447. extra: 2756 / 1600,
  21448. bottom: 0.01
  21449. }
  21450. },
  21451. },
  21452. [
  21453. {
  21454. name: "Small",
  21455. height: math.unit(3, "meters")
  21456. },
  21457. {
  21458. name: "Normal",
  21459. height: math.unit(8, "meters"),
  21460. default: true
  21461. },
  21462. {
  21463. name: "Normal+",
  21464. height: math.unit(10, "meters")
  21465. },
  21466. {
  21467. name: "Bigger",
  21468. height: math.unit(24, "meters")
  21469. },
  21470. {
  21471. name: "Huge",
  21472. height: math.unit(80, "meters")
  21473. },
  21474. ]
  21475. ))
  21476. characterMakers.push(() => makeCharacter(
  21477. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  21478. {
  21479. front: {
  21480. height: math.unit(6 + 2 / 12, "feet"),
  21481. weight: math.unit(153, "lb"),
  21482. name: "Front",
  21483. image: {
  21484. source: "./media/characters/luca-cervicum/front.svg",
  21485. extra: 370 / 327,
  21486. bottom: 0.015
  21487. }
  21488. },
  21489. back: {
  21490. height: math.unit(6 + 2 / 12, "feet"),
  21491. weight: math.unit(153, "lb"),
  21492. name: "Back",
  21493. image: {
  21494. source: "./media/characters/luca-cervicum/back.svg",
  21495. extra: 367 / 333,
  21496. bottom: 0.005
  21497. }
  21498. },
  21499. frontGear: {
  21500. height: math.unit(6 + 2 / 12, "feet"),
  21501. weight: math.unit(173, "lb"),
  21502. name: "Front (Gear)",
  21503. image: {
  21504. source: "./media/characters/luca-cervicum/front-gear.svg",
  21505. extra: 377 / 333,
  21506. bottom: 0.006
  21507. }
  21508. },
  21509. },
  21510. [
  21511. {
  21512. name: "Normal",
  21513. height: math.unit(6 + 2 / 12, "feet"),
  21514. default: true
  21515. },
  21516. ]
  21517. ))
  21518. characterMakers.push(() => makeCharacter(
  21519. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  21520. {
  21521. front: {
  21522. height: math.unit(6 + 1 / 12, "feet"),
  21523. weight: math.unit(304, "lb"),
  21524. name: "Front",
  21525. image: {
  21526. source: "./media/characters/oliver/front.svg",
  21527. extra: 157 / 143,
  21528. bottom: 0.08
  21529. }
  21530. },
  21531. },
  21532. [
  21533. {
  21534. name: "Normal",
  21535. height: math.unit(6 + 1 / 12, "feet"),
  21536. default: true
  21537. },
  21538. ]
  21539. ))
  21540. characterMakers.push(() => makeCharacter(
  21541. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  21542. {
  21543. front: {
  21544. height: math.unit(5 + 7 / 12, "feet"),
  21545. weight: math.unit(140, "lb"),
  21546. name: "Front",
  21547. image: {
  21548. source: "./media/characters/shane/front.svg",
  21549. extra: 304 / 289,
  21550. bottom: 0.005
  21551. }
  21552. },
  21553. },
  21554. [
  21555. {
  21556. name: "Normal",
  21557. height: math.unit(5 + 7 / 12, "feet"),
  21558. default: true
  21559. },
  21560. ]
  21561. ))
  21562. characterMakers.push(() => makeCharacter(
  21563. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  21564. {
  21565. front: {
  21566. height: math.unit(5 + 9 / 12, "feet"),
  21567. weight: math.unit(178, "lb"),
  21568. name: "Front",
  21569. image: {
  21570. source: "./media/characters/shin/front.svg",
  21571. extra: 159 / 151,
  21572. bottom: 0.015
  21573. }
  21574. },
  21575. },
  21576. [
  21577. {
  21578. name: "Normal",
  21579. height: math.unit(5 + 9 / 12, "feet"),
  21580. default: true
  21581. },
  21582. ]
  21583. ))
  21584. characterMakers.push(() => makeCharacter(
  21585. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  21586. {
  21587. front: {
  21588. height: math.unit(5 + 10 / 12, "feet"),
  21589. weight: math.unit(168, "lb"),
  21590. name: "Front",
  21591. image: {
  21592. source: "./media/characters/xerxes/front.svg",
  21593. extra: 282 / 260,
  21594. bottom: 0.045
  21595. }
  21596. },
  21597. },
  21598. [
  21599. {
  21600. name: "Normal",
  21601. height: math.unit(5 + 10 / 12, "feet"),
  21602. default: true
  21603. },
  21604. ]
  21605. ))
  21606. characterMakers.push(() => makeCharacter(
  21607. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  21608. {
  21609. front: {
  21610. height: math.unit(6 + 7 / 12, "feet"),
  21611. weight: math.unit(208, "lb"),
  21612. name: "Front",
  21613. image: {
  21614. source: "./media/characters/chaska/front.svg",
  21615. extra: 332 / 319,
  21616. bottom: 0.015
  21617. }
  21618. },
  21619. },
  21620. [
  21621. {
  21622. name: "Normal",
  21623. height: math.unit(6 + 7 / 12, "feet"),
  21624. default: true
  21625. },
  21626. ]
  21627. ))
  21628. characterMakers.push(() => makeCharacter(
  21629. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  21630. {
  21631. front: {
  21632. height: math.unit(5 + 8 / 12, "feet"),
  21633. weight: math.unit(208, "lb"),
  21634. name: "Front",
  21635. image: {
  21636. source: "./media/characters/enuk/front.svg",
  21637. extra: 437 / 406,
  21638. bottom: 0.02
  21639. }
  21640. },
  21641. },
  21642. [
  21643. {
  21644. name: "Normal",
  21645. height: math.unit(5 + 8 / 12, "feet"),
  21646. default: true
  21647. },
  21648. ]
  21649. ))
  21650. characterMakers.push(() => makeCharacter(
  21651. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  21652. {
  21653. front: {
  21654. height: math.unit(5 + 10 / 12, "feet"),
  21655. weight: math.unit(252, "lb"),
  21656. name: "Front",
  21657. image: {
  21658. source: "./media/characters/bruun/front.svg",
  21659. extra: 197 / 187,
  21660. bottom: 0.012
  21661. }
  21662. },
  21663. },
  21664. [
  21665. {
  21666. name: "Normal",
  21667. height: math.unit(5 + 10 / 12, "feet"),
  21668. default: true
  21669. },
  21670. ]
  21671. ))
  21672. characterMakers.push(() => makeCharacter(
  21673. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  21674. {
  21675. front: {
  21676. height: math.unit(6 + 10 / 12, "feet"),
  21677. weight: math.unit(255, "lb"),
  21678. name: "Front",
  21679. image: {
  21680. source: "./media/characters/alexeev/front.svg",
  21681. extra: 213 / 200,
  21682. bottom: 0.05
  21683. }
  21684. },
  21685. },
  21686. [
  21687. {
  21688. name: "Normal",
  21689. height: math.unit(6 + 10 / 12, "feet"),
  21690. default: true
  21691. },
  21692. ]
  21693. ))
  21694. characterMakers.push(() => makeCharacter(
  21695. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  21696. {
  21697. front: {
  21698. height: math.unit(2 + 8 / 12, "feet"),
  21699. weight: math.unit(22, "lb"),
  21700. name: "Front",
  21701. image: {
  21702. source: "./media/characters/evelyn/front.svg",
  21703. extra: 208 / 180
  21704. }
  21705. },
  21706. },
  21707. [
  21708. {
  21709. name: "Normal",
  21710. height: math.unit(2 + 8 / 12, "feet"),
  21711. default: true
  21712. },
  21713. ]
  21714. ))
  21715. characterMakers.push(() => makeCharacter(
  21716. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  21717. {
  21718. front: {
  21719. height: math.unit(5 + 9 / 12, "feet"),
  21720. weight: math.unit(139, "lb"),
  21721. name: "Front",
  21722. image: {
  21723. source: "./media/characters/inca/front.svg",
  21724. extra: 294 / 291,
  21725. bottom: 0.03
  21726. }
  21727. },
  21728. },
  21729. [
  21730. {
  21731. name: "Normal",
  21732. height: math.unit(5 + 9 / 12, "feet"),
  21733. default: true
  21734. },
  21735. ]
  21736. ))
  21737. characterMakers.push(() => makeCharacter(
  21738. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  21739. {
  21740. front: {
  21741. height: math.unit(6 + 3 / 12, "feet"),
  21742. weight: math.unit(185, "lb"),
  21743. name: "Front",
  21744. image: {
  21745. source: "./media/characters/mera/front.svg",
  21746. extra: 291 / 277,
  21747. bottom: 0.03
  21748. }
  21749. },
  21750. },
  21751. [
  21752. {
  21753. name: "Normal",
  21754. height: math.unit(6 + 3 / 12, "feet"),
  21755. default: true
  21756. },
  21757. ]
  21758. ))
  21759. characterMakers.push(() => makeCharacter(
  21760. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  21761. {
  21762. front: {
  21763. height: math.unit(6 + 7 / 12, "feet"),
  21764. weight: math.unit(160, "lb"),
  21765. name: "Front",
  21766. image: {
  21767. source: "./media/characters/ceres/front.svg",
  21768. extra: 1023 / 950,
  21769. bottom: 0.027
  21770. }
  21771. },
  21772. back: {
  21773. height: math.unit(6 + 7 / 12, "feet"),
  21774. weight: math.unit(160, "lb"),
  21775. name: "Back",
  21776. image: {
  21777. source: "./media/characters/ceres/back.svg",
  21778. extra: 1023 / 950
  21779. }
  21780. },
  21781. },
  21782. [
  21783. {
  21784. name: "Normal",
  21785. height: math.unit(6 + 7 / 12, "feet"),
  21786. default: true
  21787. },
  21788. ]
  21789. ))
  21790. characterMakers.push(() => makeCharacter(
  21791. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  21792. {
  21793. front: {
  21794. height: math.unit(5 + 10 / 12, "feet"),
  21795. weight: math.unit(150, "lb"),
  21796. name: "Front",
  21797. image: {
  21798. source: "./media/characters/kris/front.svg",
  21799. extra: 885 / 803,
  21800. bottom: 0.03
  21801. }
  21802. },
  21803. },
  21804. [
  21805. {
  21806. name: "Normal",
  21807. height: math.unit(5 + 10 / 12, "feet"),
  21808. default: true
  21809. },
  21810. ]
  21811. ))
  21812. characterMakers.push(() => makeCharacter(
  21813. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  21814. {
  21815. front: {
  21816. height: math.unit(7, "feet"),
  21817. weight: math.unit(120, "kg"),
  21818. name: "Front",
  21819. image: {
  21820. source: "./media/characters/taluthus/front.svg",
  21821. extra: 903 / 833,
  21822. bottom: 0.015
  21823. }
  21824. },
  21825. },
  21826. [
  21827. {
  21828. name: "Normal",
  21829. height: math.unit(7, "feet"),
  21830. default: true
  21831. },
  21832. {
  21833. name: "Macro",
  21834. height: math.unit(300, "feet")
  21835. },
  21836. ]
  21837. ))
  21838. characterMakers.push(() => makeCharacter(
  21839. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  21840. {
  21841. front: {
  21842. height: math.unit(5 + 9 / 12, "feet"),
  21843. weight: math.unit(145, "lb"),
  21844. name: "Front",
  21845. image: {
  21846. source: "./media/characters/dawn/front.svg",
  21847. extra: 2094 / 2016,
  21848. bottom: 0.025
  21849. }
  21850. },
  21851. back: {
  21852. height: math.unit(5 + 9 / 12, "feet"),
  21853. weight: math.unit(160, "lb"),
  21854. name: "Back",
  21855. image: {
  21856. source: "./media/characters/dawn/back.svg",
  21857. extra: 2112 / 2080,
  21858. bottom: 0.005
  21859. }
  21860. },
  21861. },
  21862. [
  21863. {
  21864. name: "Normal",
  21865. height: math.unit(6 + 7 / 12, "feet"),
  21866. default: true
  21867. },
  21868. ]
  21869. ))
  21870. characterMakers.push(() => makeCharacter(
  21871. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  21872. {
  21873. anthro: {
  21874. height: math.unit(8 + 3 / 12, "feet"),
  21875. weight: math.unit(450, "lb"),
  21876. name: "Anthro",
  21877. image: {
  21878. source: "./media/characters/arador/anthro.svg",
  21879. extra: 1835 / 1718,
  21880. bottom: 0.025
  21881. }
  21882. },
  21883. feral: {
  21884. height: math.unit(4, "feet"),
  21885. weight: math.unit(200, "lb"),
  21886. name: "Feral",
  21887. image: {
  21888. source: "./media/characters/arador/feral.svg",
  21889. extra: 1683 / 1514,
  21890. bottom: 0.07
  21891. }
  21892. },
  21893. },
  21894. [
  21895. {
  21896. name: "Normal",
  21897. height: math.unit(8 + 3 / 12, "feet")
  21898. },
  21899. {
  21900. name: "Macro",
  21901. height: math.unit(82.5, "feet"),
  21902. default: true
  21903. },
  21904. ]
  21905. ))
  21906. characterMakers.push(() => makeCharacter(
  21907. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  21908. {
  21909. front: {
  21910. height: math.unit(5 + 10 / 12, "feet"),
  21911. weight: math.unit(125, "lb"),
  21912. name: "Front",
  21913. image: {
  21914. source: "./media/characters/dharsi/front.svg",
  21915. extra: 716 / 630,
  21916. bottom: 0.035
  21917. }
  21918. },
  21919. },
  21920. [
  21921. {
  21922. name: "Nano",
  21923. height: math.unit(100, "nm")
  21924. },
  21925. {
  21926. name: "Micro",
  21927. height: math.unit(2, "inches")
  21928. },
  21929. {
  21930. name: "Normal",
  21931. height: math.unit(5 + 10 / 12, "feet"),
  21932. default: true
  21933. },
  21934. {
  21935. name: "Macro",
  21936. height: math.unit(1000, "feet")
  21937. },
  21938. {
  21939. name: "Megamacro",
  21940. height: math.unit(10, "miles")
  21941. },
  21942. {
  21943. name: "Gigamacro",
  21944. height: math.unit(3000, "miles")
  21945. },
  21946. {
  21947. name: "Teramacro",
  21948. height: math.unit(500000, "miles")
  21949. },
  21950. {
  21951. name: "Teramacro+",
  21952. height: math.unit(30, "galaxies")
  21953. },
  21954. ]
  21955. ))
  21956. characterMakers.push(() => makeCharacter(
  21957. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  21958. {
  21959. front: {
  21960. height: math.unit(6, "feet"),
  21961. weight: math.unit(150, "lb"),
  21962. name: "Front",
  21963. image: {
  21964. source: "./media/characters/deathy/front.svg",
  21965. extra: 1552 / 1463,
  21966. bottom: 0.025
  21967. }
  21968. },
  21969. side: {
  21970. height: math.unit(6, "feet"),
  21971. weight: math.unit(150, "lb"),
  21972. name: "Side",
  21973. image: {
  21974. source: "./media/characters/deathy/side.svg",
  21975. extra: 1604 / 1455,
  21976. bottom: 0.025
  21977. }
  21978. },
  21979. back: {
  21980. height: math.unit(6, "feet"),
  21981. weight: math.unit(150, "lb"),
  21982. name: "Back",
  21983. image: {
  21984. source: "./media/characters/deathy/back.svg",
  21985. extra: 1580 / 1463,
  21986. bottom: 0.005
  21987. }
  21988. },
  21989. },
  21990. [
  21991. {
  21992. name: "Micro",
  21993. height: math.unit(5, "millimeters")
  21994. },
  21995. {
  21996. name: "Normal",
  21997. height: math.unit(6 + 5 / 12, "feet"),
  21998. default: true
  21999. },
  22000. ]
  22001. ))
  22002. characterMakers.push(() => makeCharacter(
  22003. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  22004. {
  22005. front: {
  22006. height: math.unit(16, "feet"),
  22007. weight: math.unit(4000, "lb"),
  22008. name: "Front",
  22009. image: {
  22010. source: "./media/characters/juniper/front.svg",
  22011. bottom: 0.04
  22012. }
  22013. },
  22014. },
  22015. [
  22016. {
  22017. name: "Normal",
  22018. height: math.unit(16, "feet"),
  22019. default: true
  22020. },
  22021. ]
  22022. ))
  22023. characterMakers.push(() => makeCharacter(
  22024. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  22025. {
  22026. front: {
  22027. height: math.unit(6, "feet"),
  22028. weight: math.unit(150, "lb"),
  22029. name: "Front",
  22030. image: {
  22031. source: "./media/characters/hipster/front.svg",
  22032. extra: 1312 / 1209,
  22033. bottom: 0.025
  22034. }
  22035. },
  22036. back: {
  22037. height: math.unit(6, "feet"),
  22038. weight: math.unit(150, "lb"),
  22039. name: "Back",
  22040. image: {
  22041. source: "./media/characters/hipster/back.svg",
  22042. extra: 1281 / 1196,
  22043. bottom: 0.01
  22044. }
  22045. },
  22046. },
  22047. [
  22048. {
  22049. name: "Micro",
  22050. height: math.unit(1, "mm")
  22051. },
  22052. {
  22053. name: "Normal",
  22054. height: math.unit(4, "inches"),
  22055. default: true
  22056. },
  22057. {
  22058. name: "Macro",
  22059. height: math.unit(500, "feet")
  22060. },
  22061. {
  22062. name: "Megamacro",
  22063. height: math.unit(1000, "miles")
  22064. },
  22065. ]
  22066. ))
  22067. characterMakers.push(() => makeCharacter(
  22068. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  22069. {
  22070. front: {
  22071. height: math.unit(6, "feet"),
  22072. weight: math.unit(150, "lb"),
  22073. name: "Front",
  22074. image: {
  22075. source: "./media/characters/tendirmuldr/front.svg",
  22076. extra: 1878 / 1772,
  22077. bottom: 0.015
  22078. }
  22079. },
  22080. },
  22081. [
  22082. {
  22083. name: "Megamacro",
  22084. height: math.unit(1500, "miles"),
  22085. default: true
  22086. },
  22087. ]
  22088. ))
  22089. characterMakers.push(() => makeCharacter(
  22090. { name: "Mort", species: ["demon"], tags: ["feral"] },
  22091. {
  22092. front: {
  22093. height: math.unit(14, "feet"),
  22094. weight: math.unit(12000, "lb"),
  22095. name: "Front",
  22096. image: {
  22097. source: "./media/characters/mort/front.svg",
  22098. extra: 365 / 318,
  22099. bottom: 0.01
  22100. }
  22101. },
  22102. side: {
  22103. height: math.unit(14, "feet"),
  22104. weight: math.unit(12000, "lb"),
  22105. name: "Side",
  22106. image: {
  22107. source: "./media/characters/mort/side.svg",
  22108. extra: 365 / 318,
  22109. bottom: 0.052
  22110. },
  22111. default: true
  22112. },
  22113. back: {
  22114. height: math.unit(14, "feet"),
  22115. weight: math.unit(12000, "lb"),
  22116. name: "Back",
  22117. image: {
  22118. source: "./media/characters/mort/back.svg",
  22119. extra: 371 / 332,
  22120. bottom: 0.18
  22121. }
  22122. },
  22123. },
  22124. [
  22125. {
  22126. name: "Normal",
  22127. height: math.unit(14, "feet"),
  22128. default: true
  22129. },
  22130. ]
  22131. ))
  22132. characterMakers.push(() => makeCharacter(
  22133. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  22134. {
  22135. front: {
  22136. height: math.unit(8, "feet"),
  22137. weight: math.unit(1, "ton"),
  22138. name: "Front",
  22139. image: {
  22140. source: "./media/characters/lycoa/front.svg",
  22141. extra: 1836/1728,
  22142. bottom: 81/1917
  22143. }
  22144. },
  22145. back: {
  22146. height: math.unit(8, "feet"),
  22147. weight: math.unit(1, "ton"),
  22148. name: "Back",
  22149. image: {
  22150. source: "./media/characters/lycoa/back.svg",
  22151. extra: 1785/1720,
  22152. bottom: 91/1876
  22153. }
  22154. },
  22155. head: {
  22156. height: math.unit(1.6243, "feet"),
  22157. name: "Head",
  22158. image: {
  22159. source: "./media/characters/lycoa/head.svg",
  22160. extra: 1011/782,
  22161. bottom: 0/1011
  22162. }
  22163. },
  22164. tailmaw: {
  22165. height: math.unit(1.9, "feet"),
  22166. name: "Tailmaw",
  22167. image: {
  22168. source: "./media/characters/lycoa/tailmaw.svg"
  22169. }
  22170. },
  22171. tentacles: {
  22172. height: math.unit(2.1, "feet"),
  22173. name: "Tentacles",
  22174. image: {
  22175. source: "./media/characters/lycoa/tentacles.svg"
  22176. }
  22177. },
  22178. dick: {
  22179. height: math.unit(1.73, "feet"),
  22180. name: "Dick",
  22181. image: {
  22182. source: "./media/characters/lycoa/dick.svg"
  22183. }
  22184. },
  22185. },
  22186. [
  22187. {
  22188. name: "Normal",
  22189. height: math.unit(8, "feet"),
  22190. default: true
  22191. },
  22192. {
  22193. name: "Macro",
  22194. height: math.unit(30, "feet")
  22195. },
  22196. ]
  22197. ))
  22198. characterMakers.push(() => makeCharacter(
  22199. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  22200. {
  22201. front: {
  22202. height: math.unit(4 + 2 / 12, "feet"),
  22203. weight: math.unit(70, "lb"),
  22204. name: "Front",
  22205. image: {
  22206. source: "./media/characters/naldara/front.svg",
  22207. extra: 1664/1387,
  22208. bottom: 81/1745
  22209. },
  22210. form: "anthro",
  22211. default: true
  22212. },
  22213. naga: {
  22214. height: math.unit(20, "feet"),
  22215. weight: math.unit(15000, "kg"),
  22216. name: "Front",
  22217. image: {
  22218. source: "./media/characters/naldara/naga.svg",
  22219. extra: 1590/1396,
  22220. bottom: 285/1875
  22221. },
  22222. form: "naga",
  22223. default: true
  22224. },
  22225. },
  22226. [
  22227. {
  22228. name: "Normal",
  22229. height: math.unit(4 + 2 / 12, "feet"),
  22230. form: "anthro",
  22231. default: true
  22232. },
  22233. {
  22234. name: "Normal",
  22235. height: math.unit(20, "feet"),
  22236. form: "naga",
  22237. default: true
  22238. },
  22239. ],
  22240. {
  22241. "anthro": {
  22242. name: "Anthro",
  22243. default: true
  22244. },
  22245. "naga": {
  22246. name: "Naga"
  22247. }
  22248. }
  22249. ))
  22250. characterMakers.push(() => makeCharacter(
  22251. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  22252. {
  22253. front: {
  22254. height: math.unit(13 + 7 / 12, "feet"),
  22255. weight: math.unit(1500, "lb"),
  22256. name: "Front",
  22257. image: {
  22258. source: "./media/characters/briar/front.svg",
  22259. extra: 1223/1157,
  22260. bottom: 123/1346
  22261. }
  22262. },
  22263. },
  22264. [
  22265. {
  22266. name: "Normal",
  22267. height: math.unit(13 + 7 / 12, "feet"),
  22268. default: true
  22269. },
  22270. ]
  22271. ))
  22272. characterMakers.push(() => makeCharacter(
  22273. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  22274. {
  22275. side: {
  22276. height: math.unit(16, "feet"),
  22277. weight: math.unit(500, "lb"),
  22278. name: "Side",
  22279. image: {
  22280. source: "./media/characters/vanguard/side.svg",
  22281. extra: 1022/914,
  22282. bottom: 30/1052
  22283. }
  22284. },
  22285. sideAlt: {
  22286. height: math.unit(10, "feet"),
  22287. weight: math.unit(500, "lb"),
  22288. name: "Side (Alt)",
  22289. image: {
  22290. source: "./media/characters/vanguard/side-alt.svg",
  22291. extra: 502 / 425,
  22292. bottom: 0.087
  22293. }
  22294. },
  22295. },
  22296. [
  22297. {
  22298. name: "Normal",
  22299. height: math.unit(17.71, "feet"),
  22300. default: true
  22301. },
  22302. ]
  22303. ))
  22304. characterMakers.push(() => makeCharacter(
  22305. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  22306. {
  22307. front: {
  22308. height: math.unit(7.5, "feet"),
  22309. weight: math.unit(2, "lb"),
  22310. name: "Front",
  22311. image: {
  22312. source: "./media/characters/artemis/work-safe-front.svg",
  22313. extra: 1192 / 1075,
  22314. bottom: 0.07
  22315. },
  22316. form: "work-safe",
  22317. default: true
  22318. },
  22319. frontNsfw: {
  22320. height: math.unit(7.5, "feet"),
  22321. weight: math.unit(2, "lb"),
  22322. name: "Front",
  22323. image: {
  22324. source: "./media/characters/artemis/calibrating-front.svg",
  22325. extra: 1192 / 1075,
  22326. bottom: 0.07
  22327. },
  22328. form: "calibrating",
  22329. default: true
  22330. },
  22331. frontNsfwer: {
  22332. height: math.unit(7.5, "feet"),
  22333. weight: math.unit(2, "lb"),
  22334. name: "Front",
  22335. image: {
  22336. source: "./media/characters/artemis/oversize-load-front.svg",
  22337. extra: 1192 / 1075,
  22338. bottom: 0.07
  22339. },
  22340. form: "oversize-load",
  22341. default: true
  22342. },
  22343. side: {
  22344. height: math.unit(7.5, "feet"),
  22345. weight: math.unit(2, "lb"),
  22346. name: "Side",
  22347. image: {
  22348. source: "./media/characters/artemis/work-safe-side.svg",
  22349. extra: 1192 / 1075,
  22350. bottom: 0.07
  22351. },
  22352. form: "work-safe"
  22353. },
  22354. sideNsfw: {
  22355. height: math.unit(7.5, "feet"),
  22356. weight: math.unit(2, "lb"),
  22357. name: "Side",
  22358. image: {
  22359. source: "./media/characters/artemis/calibrating-side.svg",
  22360. extra: 1192 / 1075,
  22361. bottom: 0.07
  22362. },
  22363. form: "calibrating"
  22364. },
  22365. sideNsfwer: {
  22366. height: math.unit(7.5, "feet"),
  22367. weight: math.unit(2, "lb"),
  22368. name: "Side",
  22369. image: {
  22370. source: "./media/characters/artemis/oversize-load-side.svg",
  22371. extra: 1192 / 1075,
  22372. bottom: 0.07
  22373. },
  22374. form: "oversize-load"
  22375. },
  22376. maw: {
  22377. height: math.unit(1.1, "feet"),
  22378. name: "Maw",
  22379. image: {
  22380. source: "./media/characters/artemis/maw.svg"
  22381. },
  22382. form: "work-safe"
  22383. },
  22384. stomach: {
  22385. height: math.unit(0.95, "feet"),
  22386. name: "Stomach",
  22387. image: {
  22388. source: "./media/characters/artemis/stomach.svg"
  22389. },
  22390. form: "work-safe"
  22391. },
  22392. dickCanine: {
  22393. height: math.unit(1, "feet"),
  22394. name: "Dick (Canine)",
  22395. image: {
  22396. source: "./media/characters/artemis/dick-canine.svg"
  22397. },
  22398. form: "calibrating"
  22399. },
  22400. dickEquine: {
  22401. height: math.unit(0.85, "feet"),
  22402. name: "Dick (Equine)",
  22403. image: {
  22404. source: "./media/characters/artemis/dick-equine.svg"
  22405. },
  22406. form: "calibrating"
  22407. },
  22408. dickExotic: {
  22409. height: math.unit(0.85, "feet"),
  22410. name: "Dick (Exotic)",
  22411. image: {
  22412. source: "./media/characters/artemis/dick-exotic.svg"
  22413. },
  22414. form: "calibrating"
  22415. },
  22416. dickCanineBigger: {
  22417. height: math.unit(1 * 1.33, "feet"),
  22418. name: "Dick (Canine)",
  22419. image: {
  22420. source: "./media/characters/artemis/dick-canine.svg"
  22421. },
  22422. form: "oversize-load"
  22423. },
  22424. dickEquineBigger: {
  22425. height: math.unit(0.85 * 1.33, "feet"),
  22426. name: "Dick (Equine)",
  22427. image: {
  22428. source: "./media/characters/artemis/dick-equine.svg"
  22429. },
  22430. form: "oversize-load"
  22431. },
  22432. dickExoticBigger: {
  22433. height: math.unit(0.85 * 1.33, "feet"),
  22434. name: "Dick (Exotic)",
  22435. image: {
  22436. source: "./media/characters/artemis/dick-exotic.svg"
  22437. },
  22438. form: "oversize-load"
  22439. },
  22440. },
  22441. [
  22442. {
  22443. name: "Normal",
  22444. height: math.unit(7.5, "feet"),
  22445. form: "work-safe",
  22446. default: true
  22447. },
  22448. {
  22449. name: "Normal",
  22450. height: math.unit(7.5, "feet"),
  22451. form: "calibrating",
  22452. default: true
  22453. },
  22454. {
  22455. name: "Normal",
  22456. height: math.unit(7.5, "feet"),
  22457. form: "oversize-load",
  22458. default: true
  22459. },
  22460. {
  22461. name: "Enlarged",
  22462. height: math.unit(12, "feet"),
  22463. form: "work-safe",
  22464. },
  22465. {
  22466. name: "Enlarged",
  22467. height: math.unit(12, "feet"),
  22468. form: "calibrating",
  22469. },
  22470. {
  22471. name: "Enlarged",
  22472. height: math.unit(12, "feet"),
  22473. form: "oversize-load",
  22474. },
  22475. ],
  22476. {
  22477. "work-safe": {
  22478. name: "Work-Safe",
  22479. default: true
  22480. },
  22481. "calibrating": {
  22482. name: "Calibrating"
  22483. },
  22484. "oversize-load": {
  22485. name: "Oversize Load"
  22486. }
  22487. }
  22488. ))
  22489. characterMakers.push(() => makeCharacter(
  22490. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  22491. {
  22492. front: {
  22493. height: math.unit(5 + 3 / 12, "feet"),
  22494. weight: math.unit(160, "lb"),
  22495. name: "Front",
  22496. image: {
  22497. source: "./media/characters/kira/front.svg",
  22498. extra: 906 / 786,
  22499. bottom: 0.01
  22500. }
  22501. },
  22502. back: {
  22503. height: math.unit(5 + 3 / 12, "feet"),
  22504. weight: math.unit(160, "lb"),
  22505. name: "Back",
  22506. image: {
  22507. source: "./media/characters/kira/back.svg",
  22508. extra: 882 / 757,
  22509. bottom: 0.005
  22510. }
  22511. },
  22512. frontDressed: {
  22513. height: math.unit(5 + 3 / 12, "feet"),
  22514. weight: math.unit(160, "lb"),
  22515. name: "Front (Dressed)",
  22516. image: {
  22517. source: "./media/characters/kira/front-dressed.svg",
  22518. extra: 906 / 786,
  22519. bottom: 0.01
  22520. }
  22521. },
  22522. beans: {
  22523. height: math.unit(0.92, "feet"),
  22524. name: "Beans",
  22525. image: {
  22526. source: "./media/characters/kira/beans.svg"
  22527. }
  22528. },
  22529. },
  22530. [
  22531. {
  22532. name: "Normal",
  22533. height: math.unit(5 + 3 / 12, "feet"),
  22534. default: true
  22535. },
  22536. ]
  22537. ))
  22538. characterMakers.push(() => makeCharacter(
  22539. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  22540. {
  22541. front: {
  22542. height: math.unit(5 + 4 / 12, "feet"),
  22543. weight: math.unit(145, "lb"),
  22544. name: "Front",
  22545. image: {
  22546. source: "./media/characters/scramble/front.svg",
  22547. extra: 763 / 727,
  22548. bottom: 0.05
  22549. }
  22550. },
  22551. back: {
  22552. height: math.unit(5 + 4 / 12, "feet"),
  22553. weight: math.unit(145, "lb"),
  22554. name: "Back",
  22555. image: {
  22556. source: "./media/characters/scramble/back.svg",
  22557. extra: 826 / 737,
  22558. bottom: 0.002
  22559. }
  22560. },
  22561. },
  22562. [
  22563. {
  22564. name: "Normal",
  22565. height: math.unit(5 + 4 / 12, "feet"),
  22566. default: true
  22567. },
  22568. ]
  22569. ))
  22570. characterMakers.push(() => makeCharacter(
  22571. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  22572. {
  22573. side: {
  22574. height: math.unit(6 + 2 / 12, "feet"),
  22575. weight: math.unit(190, "lb"),
  22576. name: "Side",
  22577. image: {
  22578. source: "./media/characters/biscuit/side.svg",
  22579. extra: 858 / 791,
  22580. bottom: 0.044
  22581. }
  22582. },
  22583. },
  22584. [
  22585. {
  22586. name: "Normal",
  22587. height: math.unit(6 + 2 / 12, "feet"),
  22588. default: true
  22589. },
  22590. ]
  22591. ))
  22592. characterMakers.push(() => makeCharacter(
  22593. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  22594. {
  22595. front: {
  22596. height: math.unit(5 + 2 / 12, "feet"),
  22597. weight: math.unit(120, "lb"),
  22598. name: "Front",
  22599. image: {
  22600. source: "./media/characters/poffin/front.svg",
  22601. extra: 786 / 680,
  22602. bottom: 0.005
  22603. }
  22604. },
  22605. },
  22606. [
  22607. {
  22608. name: "Normal",
  22609. height: math.unit(5 + 2 / 12, "feet"),
  22610. default: true
  22611. },
  22612. ]
  22613. ))
  22614. characterMakers.push(() => makeCharacter(
  22615. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  22616. {
  22617. front: {
  22618. height: math.unit(6 + 3 / 12, "feet"),
  22619. weight: math.unit(519, "lb"),
  22620. name: "Front",
  22621. image: {
  22622. source: "./media/characters/dhari/front.svg",
  22623. extra: 1048 / 946,
  22624. bottom: 0.015
  22625. }
  22626. },
  22627. back: {
  22628. height: math.unit(6 + 3 / 12, "feet"),
  22629. weight: math.unit(519, "lb"),
  22630. name: "Back",
  22631. image: {
  22632. source: "./media/characters/dhari/back.svg",
  22633. extra: 1048 / 931,
  22634. bottom: 0.005
  22635. }
  22636. },
  22637. frontDressed: {
  22638. height: math.unit(6 + 3 / 12, "feet"),
  22639. weight: math.unit(519, "lb"),
  22640. name: "Front (Dressed)",
  22641. image: {
  22642. source: "./media/characters/dhari/front-dressed.svg",
  22643. extra: 1713 / 1546,
  22644. bottom: 0.02
  22645. }
  22646. },
  22647. backDressed: {
  22648. height: math.unit(6 + 3 / 12, "feet"),
  22649. weight: math.unit(519, "lb"),
  22650. name: "Back (Dressed)",
  22651. image: {
  22652. source: "./media/characters/dhari/back-dressed.svg",
  22653. extra: 1699 / 1537,
  22654. bottom: 0.01
  22655. }
  22656. },
  22657. maw: {
  22658. height: math.unit(0.95, "feet"),
  22659. name: "Maw",
  22660. image: {
  22661. source: "./media/characters/dhari/maw.svg"
  22662. }
  22663. },
  22664. wereFront: {
  22665. height: math.unit(12 + 8 / 12, "feet"),
  22666. weight: math.unit(4000, "lb"),
  22667. name: "Front (Were)",
  22668. image: {
  22669. source: "./media/characters/dhari/were-front.svg",
  22670. extra: 1065 / 969,
  22671. bottom: 0.015
  22672. }
  22673. },
  22674. wereBack: {
  22675. height: math.unit(12 + 8 / 12, "feet"),
  22676. weight: math.unit(4000, "lb"),
  22677. name: "Back (Were)",
  22678. image: {
  22679. source: "./media/characters/dhari/were-back.svg",
  22680. extra: 1065 / 969,
  22681. bottom: 0.012
  22682. }
  22683. },
  22684. wereMaw: {
  22685. height: math.unit(0.625, "meters"),
  22686. name: "Maw (Were)",
  22687. image: {
  22688. source: "./media/characters/dhari/were-maw.svg"
  22689. }
  22690. },
  22691. },
  22692. [
  22693. {
  22694. name: "Normal",
  22695. height: math.unit(6 + 3 / 12, "feet"),
  22696. default: true
  22697. },
  22698. ]
  22699. ))
  22700. characterMakers.push(() => makeCharacter(
  22701. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  22702. {
  22703. anthro: {
  22704. height: math.unit(5 + 7 / 12, "feet"),
  22705. weight: math.unit(175, "lb"),
  22706. name: "Anthro",
  22707. image: {
  22708. source: "./media/characters/rena-dyne/anthro.svg",
  22709. extra: 1849 / 1785,
  22710. bottom: 0.005
  22711. }
  22712. },
  22713. taur: {
  22714. height: math.unit(15 + 6 / 12, "feet"),
  22715. weight: math.unit(8000, "lb"),
  22716. name: "Taur",
  22717. image: {
  22718. source: "./media/characters/rena-dyne/taur.svg",
  22719. extra: 2315 / 2234,
  22720. bottom: 0.033
  22721. }
  22722. },
  22723. },
  22724. [
  22725. {
  22726. name: "Normal",
  22727. height: math.unit(5 + 7 / 12, "feet"),
  22728. default: true
  22729. },
  22730. ]
  22731. ))
  22732. characterMakers.push(() => makeCharacter(
  22733. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  22734. {
  22735. front: {
  22736. height: math.unit(8, "feet"),
  22737. weight: math.unit(600, "lb"),
  22738. name: "Front",
  22739. image: {
  22740. source: "./media/characters/weremeep/front.svg",
  22741. extra: 970/849,
  22742. bottom: 7/977
  22743. }
  22744. },
  22745. },
  22746. [
  22747. {
  22748. name: "Normal",
  22749. height: math.unit(8, "feet"),
  22750. default: true
  22751. },
  22752. {
  22753. name: "Lorg",
  22754. height: math.unit(12, "feet")
  22755. },
  22756. {
  22757. name: "Oh Lawd She Comin'",
  22758. height: math.unit(20, "feet")
  22759. },
  22760. ]
  22761. ))
  22762. characterMakers.push(() => makeCharacter(
  22763. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  22764. {
  22765. front: {
  22766. height: math.unit(4, "feet"),
  22767. weight: math.unit(90, "lb"),
  22768. name: "Front",
  22769. image: {
  22770. source: "./media/characters/reza/front.svg",
  22771. extra: 1183 / 1111,
  22772. bottom: 0.017
  22773. }
  22774. },
  22775. back: {
  22776. height: math.unit(4, "feet"),
  22777. weight: math.unit(90, "lb"),
  22778. name: "Back",
  22779. image: {
  22780. source: "./media/characters/reza/back.svg",
  22781. extra: 1183 / 1111,
  22782. bottom: 0.01
  22783. }
  22784. },
  22785. drake: {
  22786. height: math.unit(30, "feet"),
  22787. weight: math.unit(246960, "lb"),
  22788. name: "Drake",
  22789. image: {
  22790. source: "./media/characters/reza/drake.svg",
  22791. extra: 2350 / 2024,
  22792. bottom: 60.7 / 2403
  22793. }
  22794. },
  22795. },
  22796. [
  22797. {
  22798. name: "Normal",
  22799. height: math.unit(4, "feet"),
  22800. default: true
  22801. },
  22802. ]
  22803. ))
  22804. characterMakers.push(() => makeCharacter(
  22805. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  22806. {
  22807. side: {
  22808. height: math.unit(15, "feet"),
  22809. weight: math.unit(14, "tons"),
  22810. name: "Side",
  22811. image: {
  22812. source: "./media/characters/athea/side.svg",
  22813. extra: 960 / 540,
  22814. bottom: 0.003
  22815. }
  22816. },
  22817. sitting: {
  22818. height: math.unit(6 * 2.85, "feet"),
  22819. weight: math.unit(14, "tons"),
  22820. name: "Sitting",
  22821. image: {
  22822. source: "./media/characters/athea/sitting.svg",
  22823. extra: 621 / 581,
  22824. bottom: 0.075
  22825. }
  22826. },
  22827. maw: {
  22828. height: math.unit(7.59498031496063, "feet"),
  22829. name: "Maw",
  22830. image: {
  22831. source: "./media/characters/athea/maw.svg"
  22832. }
  22833. },
  22834. },
  22835. [
  22836. {
  22837. name: "Lap Cat",
  22838. height: math.unit(2.5, "feet")
  22839. },
  22840. {
  22841. name: "Minimacro",
  22842. height: math.unit(15, "feet"),
  22843. default: true
  22844. },
  22845. {
  22846. name: "Macro",
  22847. height: math.unit(120, "feet")
  22848. },
  22849. {
  22850. name: "Macro+",
  22851. height: math.unit(640, "feet")
  22852. },
  22853. {
  22854. name: "Colossus",
  22855. height: math.unit(2.2, "miles")
  22856. },
  22857. ]
  22858. ))
  22859. characterMakers.push(() => makeCharacter(
  22860. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  22861. {
  22862. front: {
  22863. height: math.unit(8 + 8 / 12, "feet"),
  22864. weight: math.unit(130, "kg"),
  22865. name: "Front",
  22866. image: {
  22867. source: "./media/characters/seroko/front.svg",
  22868. extra: 1385 / 1280,
  22869. bottom: 0.025
  22870. }
  22871. },
  22872. back: {
  22873. height: math.unit(8 + 8 / 12, "feet"),
  22874. weight: math.unit(130, "kg"),
  22875. name: "Back",
  22876. image: {
  22877. source: "./media/characters/seroko/back.svg",
  22878. extra: 1369 / 1238,
  22879. bottom: 0.018
  22880. }
  22881. },
  22882. frontDressed: {
  22883. height: math.unit(8 + 8 / 12, "feet"),
  22884. weight: math.unit(130, "kg"),
  22885. name: "Front (Dressed)",
  22886. image: {
  22887. source: "./media/characters/seroko/front-dressed.svg",
  22888. extra: 1366 / 1275,
  22889. bottom: 0.03
  22890. }
  22891. },
  22892. },
  22893. [
  22894. {
  22895. name: "Normal",
  22896. height: math.unit(8 + 8 / 12, "feet"),
  22897. default: true
  22898. },
  22899. ]
  22900. ))
  22901. characterMakers.push(() => makeCharacter(
  22902. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  22903. {
  22904. front: {
  22905. height: math.unit(5.5, "feet"),
  22906. weight: math.unit(160, "lb"),
  22907. name: "Front",
  22908. image: {
  22909. source: "./media/characters/quatzi/front.svg",
  22910. extra: 2346 / 2242,
  22911. bottom: 0.015
  22912. }
  22913. },
  22914. },
  22915. [
  22916. {
  22917. name: "Normal",
  22918. height: math.unit(5.5, "feet"),
  22919. default: true
  22920. },
  22921. {
  22922. name: "Big",
  22923. height: math.unit(7.7, "feet")
  22924. },
  22925. ]
  22926. ))
  22927. characterMakers.push(() => makeCharacter(
  22928. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  22929. {
  22930. front: {
  22931. height: math.unit(5 + 11 / 12, "feet"),
  22932. weight: math.unit(180, "lb"),
  22933. name: "Front",
  22934. image: {
  22935. source: "./media/characters/sen/front.svg",
  22936. extra: 1321 / 1254,
  22937. bottom: 0.015
  22938. }
  22939. },
  22940. side: {
  22941. height: math.unit(5 + 11 / 12, "feet"),
  22942. weight: math.unit(180, "lb"),
  22943. name: "Side",
  22944. image: {
  22945. source: "./media/characters/sen/side.svg",
  22946. extra: 1321 / 1254,
  22947. bottom: 0.007
  22948. }
  22949. },
  22950. back: {
  22951. height: math.unit(5 + 11 / 12, "feet"),
  22952. weight: math.unit(180, "lb"),
  22953. name: "Back",
  22954. image: {
  22955. source: "./media/characters/sen/back.svg",
  22956. extra: 1321 / 1254
  22957. }
  22958. },
  22959. },
  22960. [
  22961. {
  22962. name: "Normal",
  22963. height: math.unit(5 + 11 / 12, "feet"),
  22964. default: true
  22965. },
  22966. ]
  22967. ))
  22968. characterMakers.push(() => makeCharacter(
  22969. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  22970. {
  22971. front: {
  22972. height: math.unit(166.6, "cm"),
  22973. weight: math.unit(66.6, "kg"),
  22974. name: "Front",
  22975. image: {
  22976. source: "./media/characters/fruity/front.svg",
  22977. extra: 1510 / 1386,
  22978. bottom: 0.04
  22979. }
  22980. },
  22981. back: {
  22982. height: math.unit(166.6, "cm"),
  22983. weight: math.unit(66.6, "lb"),
  22984. name: "Back",
  22985. image: {
  22986. source: "./media/characters/fruity/back.svg",
  22987. extra: 1563 / 1435,
  22988. bottom: 0.005
  22989. }
  22990. },
  22991. },
  22992. [
  22993. {
  22994. name: "Normal",
  22995. height: math.unit(166.6, "cm"),
  22996. default: true
  22997. },
  22998. {
  22999. name: "Demonic",
  23000. height: math.unit(166.6, "feet")
  23001. },
  23002. ]
  23003. ))
  23004. characterMakers.push(() => makeCharacter(
  23005. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  23006. {
  23007. side: {
  23008. height: math.unit(10, "feet"),
  23009. weight: math.unit(500, "lb"),
  23010. name: "Side",
  23011. image: {
  23012. source: "./media/characters/zost/side.svg",
  23013. extra: 2870/2533,
  23014. bottom: 252/3122
  23015. }
  23016. },
  23017. mawFront: {
  23018. height: math.unit(1.08, "meters"),
  23019. name: "Maw (Front)",
  23020. image: {
  23021. source: "./media/characters/zost/maw-front.svg"
  23022. }
  23023. },
  23024. mawSide: {
  23025. height: math.unit(2.66, "feet"),
  23026. name: "Maw (Side)",
  23027. image: {
  23028. source: "./media/characters/zost/maw-side.svg"
  23029. }
  23030. },
  23031. wingspan: {
  23032. height: math.unit(7.4, "feet"),
  23033. name: "Wingspan",
  23034. image: {
  23035. source: "./media/characters/zost/wingspan.svg"
  23036. }
  23037. },
  23038. },
  23039. [
  23040. {
  23041. name: "Normal",
  23042. height: math.unit(10, "feet"),
  23043. default: true
  23044. },
  23045. ]
  23046. ))
  23047. characterMakers.push(() => makeCharacter(
  23048. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  23049. {
  23050. front: {
  23051. height: math.unit(5 + 4 / 12, "feet"),
  23052. weight: math.unit(120, "lb"),
  23053. name: "Front",
  23054. image: {
  23055. source: "./media/characters/luci/front.svg",
  23056. extra: 1985 / 1884,
  23057. bottom: 0.04
  23058. }
  23059. },
  23060. back: {
  23061. height: math.unit(5 + 4 / 12, "feet"),
  23062. weight: math.unit(120, "lb"),
  23063. name: "Back",
  23064. image: {
  23065. source: "./media/characters/luci/back.svg",
  23066. extra: 1892 / 1791,
  23067. bottom: 0.002
  23068. }
  23069. },
  23070. },
  23071. [
  23072. {
  23073. name: "Normal",
  23074. height: math.unit(5 + 4 / 12, "feet"),
  23075. default: true
  23076. },
  23077. ]
  23078. ))
  23079. characterMakers.push(() => makeCharacter(
  23080. { name: "2th", species: ["monster"], tags: ["anthro"] },
  23081. {
  23082. front: {
  23083. height: math.unit(1500, "feet"),
  23084. weight: math.unit(3.8e6, "tons"),
  23085. name: "Front",
  23086. image: {
  23087. source: "./media/characters/2th/front.svg",
  23088. extra: 3489 / 3350,
  23089. bottom: 0.1
  23090. }
  23091. },
  23092. foot: {
  23093. height: math.unit(461, "feet"),
  23094. name: "Foot",
  23095. image: {
  23096. source: "./media/characters/2th/foot.svg"
  23097. }
  23098. },
  23099. },
  23100. [
  23101. {
  23102. name: "\"Micro\"",
  23103. height: math.unit(15 + 7 / 12, "feet")
  23104. },
  23105. {
  23106. name: "Normal",
  23107. height: math.unit(1500, "feet"),
  23108. default: true
  23109. },
  23110. {
  23111. name: "Macro",
  23112. height: math.unit(5000, "feet")
  23113. },
  23114. {
  23115. name: "Megamacro",
  23116. height: math.unit(15, "miles")
  23117. },
  23118. {
  23119. name: "Gigamacro",
  23120. height: math.unit(4000, "miles")
  23121. },
  23122. {
  23123. name: "Galactic",
  23124. height: math.unit(50, "AU")
  23125. },
  23126. ]
  23127. ))
  23128. characterMakers.push(() => makeCharacter(
  23129. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  23130. {
  23131. front: {
  23132. height: math.unit(5 + 6 / 12, "feet"),
  23133. weight: math.unit(220, "lb"),
  23134. name: "Front",
  23135. image: {
  23136. source: "./media/characters/amethyst/front.svg",
  23137. extra: 2078 / 2040,
  23138. bottom: 0.045
  23139. }
  23140. },
  23141. back: {
  23142. height: math.unit(5 + 6 / 12, "feet"),
  23143. weight: math.unit(220, "lb"),
  23144. name: "Back",
  23145. image: {
  23146. source: "./media/characters/amethyst/back.svg",
  23147. extra: 2021 / 1989,
  23148. bottom: 0.02
  23149. }
  23150. },
  23151. },
  23152. [
  23153. {
  23154. name: "Normal",
  23155. height: math.unit(5 + 6 / 12, "feet"),
  23156. default: true
  23157. },
  23158. ]
  23159. ))
  23160. characterMakers.push(() => makeCharacter(
  23161. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  23162. {
  23163. front: {
  23164. height: math.unit(4 + 11 / 12, "feet"),
  23165. weight: math.unit(120, "lb"),
  23166. name: "Front",
  23167. image: {
  23168. source: "./media/characters/yumi-akiyama/front.svg",
  23169. extra: 1327 / 1235,
  23170. bottom: 0.02
  23171. }
  23172. },
  23173. back: {
  23174. height: math.unit(4 + 11 / 12, "feet"),
  23175. weight: math.unit(120, "lb"),
  23176. name: "Back",
  23177. image: {
  23178. source: "./media/characters/yumi-akiyama/back.svg",
  23179. extra: 1287 / 1245,
  23180. bottom: 0.002
  23181. }
  23182. },
  23183. },
  23184. [
  23185. {
  23186. name: "Galactic",
  23187. height: math.unit(50, "galaxies"),
  23188. default: true
  23189. },
  23190. {
  23191. name: "Universal",
  23192. height: math.unit(100, "universes")
  23193. },
  23194. ]
  23195. ))
  23196. characterMakers.push(() => makeCharacter(
  23197. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  23198. {
  23199. front: {
  23200. height: math.unit(8, "feet"),
  23201. weight: math.unit(500, "lb"),
  23202. name: "Front",
  23203. image: {
  23204. source: "./media/characters/rifter-yrmori/front.svg",
  23205. extra: 1180 / 1125,
  23206. bottom: 0.02
  23207. }
  23208. },
  23209. back: {
  23210. height: math.unit(8, "feet"),
  23211. weight: math.unit(500, "lb"),
  23212. name: "Back",
  23213. image: {
  23214. source: "./media/characters/rifter-yrmori/back.svg",
  23215. extra: 1190 / 1145,
  23216. bottom: 0.001
  23217. }
  23218. },
  23219. wings: {
  23220. height: math.unit(7.75, "feet"),
  23221. weight: math.unit(500, "lb"),
  23222. name: "Wings",
  23223. image: {
  23224. source: "./media/characters/rifter-yrmori/wings.svg",
  23225. extra: 1357 / 1285
  23226. }
  23227. },
  23228. maw: {
  23229. height: math.unit(0.8, "feet"),
  23230. name: "Maw",
  23231. image: {
  23232. source: "./media/characters/rifter-yrmori/maw.svg"
  23233. }
  23234. },
  23235. mawfront: {
  23236. height: math.unit(1.45, "feet"),
  23237. name: "Maw (Front)",
  23238. image: {
  23239. source: "./media/characters/rifter-yrmori/maw-front.svg"
  23240. }
  23241. },
  23242. },
  23243. [
  23244. {
  23245. name: "Normal",
  23246. height: math.unit(8, "feet"),
  23247. default: true
  23248. },
  23249. {
  23250. name: "Macro",
  23251. height: math.unit(42, "meters")
  23252. },
  23253. ]
  23254. ))
  23255. characterMakers.push(() => makeCharacter(
  23256. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  23257. {
  23258. were: {
  23259. height: math.unit(25 + 6 / 12, "feet"),
  23260. weight: math.unit(10000, "lb"),
  23261. name: "Were",
  23262. image: {
  23263. source: "./media/characters/tahajin/were.svg",
  23264. extra: 801 / 770,
  23265. bottom: 0.042
  23266. }
  23267. },
  23268. aquatic: {
  23269. height: math.unit(6 + 4 / 12, "feet"),
  23270. weight: math.unit(160, "lb"),
  23271. name: "Aquatic",
  23272. image: {
  23273. source: "./media/characters/tahajin/aquatic.svg",
  23274. extra: 572 / 542,
  23275. bottom: 0.04
  23276. }
  23277. },
  23278. chow: {
  23279. height: math.unit(8 + 11 / 12, "feet"),
  23280. weight: math.unit(450, "lb"),
  23281. name: "Chow",
  23282. image: {
  23283. source: "./media/characters/tahajin/chow.svg",
  23284. extra: 660 / 640,
  23285. bottom: 0.015
  23286. }
  23287. },
  23288. demiNaga: {
  23289. height: math.unit(6 + 8 / 12, "feet"),
  23290. weight: math.unit(300, "lb"),
  23291. name: "Demi Naga",
  23292. image: {
  23293. source: "./media/characters/tahajin/demi-naga.svg",
  23294. extra: 643 / 615,
  23295. bottom: 0.1
  23296. }
  23297. },
  23298. data: {
  23299. height: math.unit(5, "inches"),
  23300. weight: math.unit(0.1, "lb"),
  23301. name: "Data",
  23302. image: {
  23303. source: "./media/characters/tahajin/data.svg"
  23304. }
  23305. },
  23306. fluu: {
  23307. height: math.unit(5 + 7 / 12, "feet"),
  23308. weight: math.unit(140, "lb"),
  23309. name: "Fluu",
  23310. image: {
  23311. source: "./media/characters/tahajin/fluu.svg",
  23312. extra: 628 / 592,
  23313. bottom: 0.02
  23314. }
  23315. },
  23316. starWarrior: {
  23317. height: math.unit(4 + 5 / 12, "feet"),
  23318. weight: math.unit(50, "lb"),
  23319. name: "Star Warrior",
  23320. image: {
  23321. source: "./media/characters/tahajin/star-warrior.svg"
  23322. }
  23323. },
  23324. },
  23325. [
  23326. {
  23327. name: "Normal",
  23328. height: math.unit(25 + 6 / 12, "feet"),
  23329. default: true
  23330. },
  23331. ]
  23332. ))
  23333. characterMakers.push(() => makeCharacter(
  23334. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  23335. {
  23336. front: {
  23337. height: math.unit(8, "feet"),
  23338. weight: math.unit(350, "lb"),
  23339. name: "Front",
  23340. image: {
  23341. source: "./media/characters/gabira/front.svg",
  23342. extra: 1261/1154,
  23343. bottom: 51/1312
  23344. }
  23345. },
  23346. back: {
  23347. height: math.unit(8, "feet"),
  23348. weight: math.unit(350, "lb"),
  23349. name: "Back",
  23350. image: {
  23351. source: "./media/characters/gabira/back.svg",
  23352. extra: 1265/1163,
  23353. bottom: 46/1311
  23354. }
  23355. },
  23356. head: {
  23357. height: math.unit(2.85, "feet"),
  23358. name: "Head",
  23359. image: {
  23360. source: "./media/characters/gabira/head.svg"
  23361. }
  23362. },
  23363. },
  23364. [
  23365. {
  23366. name: "Normal",
  23367. height: math.unit(8, "feet"),
  23368. default: true
  23369. },
  23370. ]
  23371. ))
  23372. characterMakers.push(() => makeCharacter(
  23373. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  23374. {
  23375. front: {
  23376. height: math.unit(5 + 3 / 12, "feet"),
  23377. weight: math.unit(137, "lb"),
  23378. name: "Front",
  23379. image: {
  23380. source: "./media/characters/sasha-katraine/front.svg",
  23381. extra: 1745/1694,
  23382. bottom: 37/1782
  23383. }
  23384. },
  23385. back: {
  23386. height: math.unit(5 + 3 / 12, "feet"),
  23387. weight: math.unit(137, "lb"),
  23388. name: "Back",
  23389. image: {
  23390. source: "./media/characters/sasha-katraine/back.svg",
  23391. extra: 1776/1699,
  23392. bottom: 26/1802
  23393. }
  23394. },
  23395. },
  23396. [
  23397. {
  23398. name: "Micro",
  23399. height: math.unit(5, "inches")
  23400. },
  23401. {
  23402. name: "Normal",
  23403. height: math.unit(5 + 3 / 12, "feet"),
  23404. default: true
  23405. },
  23406. ]
  23407. ))
  23408. characterMakers.push(() => makeCharacter(
  23409. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  23410. {
  23411. side: {
  23412. height: math.unit(4, "inches"),
  23413. weight: math.unit(200, "grams"),
  23414. name: "Side",
  23415. image: {
  23416. source: "./media/characters/der/side.svg",
  23417. extra: 719 / 400,
  23418. bottom: 30.6 / 749.9187
  23419. }
  23420. },
  23421. },
  23422. [
  23423. {
  23424. name: "Micro",
  23425. height: math.unit(4, "inches"),
  23426. default: true
  23427. },
  23428. ]
  23429. ))
  23430. characterMakers.push(() => makeCharacter(
  23431. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  23432. {
  23433. side: {
  23434. height: math.unit(30, "meters"),
  23435. weight: math.unit(700, "tonnes"),
  23436. name: "Side",
  23437. image: {
  23438. source: "./media/characters/fixerdragon/side.svg",
  23439. extra: (1293.0514 - 116.03) / 1106.86,
  23440. bottom: 116.03 / 1293.0514
  23441. }
  23442. },
  23443. },
  23444. [
  23445. {
  23446. name: "Planck",
  23447. height: math.unit(1.6e-35, "meters")
  23448. },
  23449. {
  23450. name: "Micro",
  23451. height: math.unit(0.4, "meters")
  23452. },
  23453. {
  23454. name: "Normal",
  23455. height: math.unit(30, "meters"),
  23456. default: true
  23457. },
  23458. {
  23459. name: "Megamacro",
  23460. height: math.unit(1.2, "megameters")
  23461. },
  23462. {
  23463. name: "Teramacro",
  23464. height: math.unit(130, "terameters")
  23465. },
  23466. {
  23467. name: "Yottamacro",
  23468. height: math.unit(6200, "yottameters")
  23469. },
  23470. ]
  23471. ));
  23472. characterMakers.push(() => makeCharacter(
  23473. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  23474. {
  23475. front: {
  23476. height: math.unit(8, "feet"),
  23477. weight: math.unit(250, "lb"),
  23478. name: "Front",
  23479. image: {
  23480. source: "./media/characters/kite/front.svg",
  23481. extra: 2796 / 2659,
  23482. bottom: 0.002
  23483. }
  23484. },
  23485. },
  23486. [
  23487. {
  23488. name: "Normal",
  23489. height: math.unit(8, "feet"),
  23490. default: true
  23491. },
  23492. {
  23493. name: "Macro",
  23494. height: math.unit(360, "feet")
  23495. },
  23496. {
  23497. name: "Megamacro",
  23498. height: math.unit(1500, "feet")
  23499. },
  23500. ]
  23501. ))
  23502. characterMakers.push(() => makeCharacter(
  23503. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  23504. {
  23505. front: {
  23506. height: math.unit(5 + 11/12, "feet"),
  23507. weight: math.unit(170, "lb"),
  23508. name: "Front",
  23509. image: {
  23510. source: "./media/characters/poojawa-vynar/front.svg",
  23511. extra: 1735/1585,
  23512. bottom: 96/1831
  23513. }
  23514. },
  23515. back: {
  23516. height: math.unit(5 + 11/12, "feet"),
  23517. weight: math.unit(170, "lb"),
  23518. name: "Back",
  23519. image: {
  23520. source: "./media/characters/poojawa-vynar/back.svg",
  23521. extra: 1749/1607,
  23522. bottom: 28/1777
  23523. }
  23524. },
  23525. male: {
  23526. height: math.unit(5 + 11/12, "feet"),
  23527. weight: math.unit(170, "lb"),
  23528. name: "Male",
  23529. image: {
  23530. source: "./media/characters/poojawa-vynar/male.svg",
  23531. extra: 1855/1713,
  23532. bottom: 63/1918
  23533. }
  23534. },
  23535. taur: {
  23536. height: math.unit(5 + 11/12, "feet"),
  23537. weight: math.unit(170, "lb"),
  23538. name: "Taur",
  23539. image: {
  23540. source: "./media/characters/poojawa-vynar/taur.svg",
  23541. extra: 1151/1059,
  23542. bottom: 356/1507
  23543. }
  23544. },
  23545. frontDressed: {
  23546. height: math.unit(5 + 11/12, "feet"),
  23547. weight: math.unit(170, "lb"),
  23548. name: "Front (Dressed)",
  23549. image: {
  23550. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  23551. extra: 1735/1585,
  23552. bottom: 96/1831
  23553. }
  23554. },
  23555. backDressed: {
  23556. height: math.unit(5 + 11/12, "feet"),
  23557. weight: math.unit(170, "lb"),
  23558. name: "Back (Dressed)",
  23559. image: {
  23560. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  23561. extra: 1749/1607,
  23562. bottom: 28/1777
  23563. }
  23564. },
  23565. maleDressed: {
  23566. height: math.unit(5 + 11/12, "feet"),
  23567. weight: math.unit(170, "lb"),
  23568. name: "Male (Dressed)",
  23569. image: {
  23570. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  23571. extra: 1855/1713,
  23572. bottom: 63/1918
  23573. }
  23574. },
  23575. taurDressed: {
  23576. height: math.unit(5 + 11/12, "feet"),
  23577. weight: math.unit(170, "lb"),
  23578. name: "Taur (Dressed)",
  23579. image: {
  23580. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  23581. extra: 1151/1059,
  23582. bottom: 356/1507
  23583. }
  23584. },
  23585. maw: {
  23586. height: math.unit(1.46, "feet"),
  23587. name: "Maw",
  23588. image: {
  23589. source: "./media/characters/poojawa-vynar/maw.svg"
  23590. }
  23591. },
  23592. head: {
  23593. height: math.unit(2.34, "feet"),
  23594. name: "Head",
  23595. image: {
  23596. source: "./media/characters/poojawa-vynar/head.svg"
  23597. }
  23598. },
  23599. paw: {
  23600. height: math.unit(1.61, "feet"),
  23601. name: "Paw",
  23602. image: {
  23603. source: "./media/characters/poojawa-vynar/paw.svg"
  23604. }
  23605. },
  23606. pawToering: {
  23607. height: math.unit(1.72, "feet"),
  23608. name: "Paw (Toering)",
  23609. image: {
  23610. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  23611. }
  23612. },
  23613. toering: {
  23614. height: math.unit(2.9, "inches"),
  23615. name: "Toering",
  23616. image: {
  23617. source: "./media/characters/poojawa-vynar/toering.svg"
  23618. }
  23619. },
  23620. shaft: {
  23621. height: math.unit(0.625, "feet"),
  23622. name: "Shaft",
  23623. image: {
  23624. source: "./media/characters/poojawa-vynar/shaft.svg"
  23625. }
  23626. },
  23627. spade: {
  23628. height: math.unit(0.42, "feet"),
  23629. name: "Spade",
  23630. image: {
  23631. source: "./media/characters/poojawa-vynar/spade.svg"
  23632. }
  23633. },
  23634. },
  23635. [
  23636. {
  23637. name: "Shortstack",
  23638. height: math.unit(4, "feet")
  23639. },
  23640. {
  23641. name: "Normal",
  23642. height: math.unit(5 + 11 / 12, "feet"),
  23643. default: true
  23644. },
  23645. {
  23646. name: "Tauric",
  23647. height: math.unit(4, "meters")
  23648. },
  23649. ]
  23650. ))
  23651. characterMakers.push(() => makeCharacter(
  23652. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  23653. {
  23654. front: {
  23655. height: math.unit(293, "meters"),
  23656. weight: math.unit(70400, "tons"),
  23657. name: "Front",
  23658. image: {
  23659. source: "./media/characters/violette/front.svg",
  23660. extra: 1227 / 1180,
  23661. bottom: 0.005
  23662. }
  23663. },
  23664. back: {
  23665. height: math.unit(293, "meters"),
  23666. weight: math.unit(70400, "tons"),
  23667. name: "Back",
  23668. image: {
  23669. source: "./media/characters/violette/back.svg",
  23670. extra: 1227 / 1180,
  23671. bottom: 0.005
  23672. }
  23673. },
  23674. },
  23675. [
  23676. {
  23677. name: "Macro",
  23678. height: math.unit(293, "meters"),
  23679. default: true
  23680. },
  23681. ]
  23682. ))
  23683. characterMakers.push(() => makeCharacter(
  23684. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  23685. {
  23686. front: {
  23687. height: math.unit(1050, "feet"),
  23688. weight: math.unit(200000, "tons"),
  23689. name: "Front",
  23690. image: {
  23691. source: "./media/characters/alessandra/front.svg",
  23692. extra: 960 / 912,
  23693. bottom: 0.06
  23694. }
  23695. },
  23696. },
  23697. [
  23698. {
  23699. name: "Macro",
  23700. height: math.unit(1050, "feet")
  23701. },
  23702. {
  23703. name: "Macro+",
  23704. height: math.unit(900, "meters"),
  23705. default: true
  23706. },
  23707. ]
  23708. ))
  23709. characterMakers.push(() => makeCharacter(
  23710. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  23711. {
  23712. front: {
  23713. height: math.unit(5, "feet"),
  23714. weight: math.unit(187, "lb"),
  23715. name: "Front",
  23716. image: {
  23717. source: "./media/characters/person/front.svg",
  23718. extra: 3087 / 2945,
  23719. bottom: 91 / 3181
  23720. }
  23721. },
  23722. },
  23723. [
  23724. {
  23725. name: "Micro",
  23726. height: math.unit(3, "inches")
  23727. },
  23728. {
  23729. name: "Normal",
  23730. height: math.unit(5, "feet"),
  23731. default: true
  23732. },
  23733. {
  23734. name: "Macro",
  23735. height: math.unit(90, "feet")
  23736. },
  23737. {
  23738. name: "Max Size",
  23739. height: math.unit(280, "feet")
  23740. },
  23741. ]
  23742. ))
  23743. characterMakers.push(() => makeCharacter(
  23744. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  23745. {
  23746. front: {
  23747. height: math.unit(4.5, "meters"),
  23748. weight: math.unit(3200, "lb"),
  23749. name: "Front",
  23750. image: {
  23751. source: "./media/characters/ty/front.svg",
  23752. extra: 1038 / 960,
  23753. bottom: 31.156 / 1068
  23754. }
  23755. },
  23756. back: {
  23757. height: math.unit(4.5, "meters"),
  23758. weight: math.unit(3200, "lb"),
  23759. name: "Back",
  23760. image: {
  23761. source: "./media/characters/ty/back.svg",
  23762. extra: 1044 / 966,
  23763. bottom: 7.48 / 1049
  23764. }
  23765. },
  23766. },
  23767. [
  23768. {
  23769. name: "Normal",
  23770. height: math.unit(4.5, "meters"),
  23771. default: true
  23772. },
  23773. ]
  23774. ))
  23775. characterMakers.push(() => makeCharacter(
  23776. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  23777. {
  23778. front: {
  23779. height: math.unit(5 + 4 / 12, "feet"),
  23780. weight: math.unit(115, "lb"),
  23781. name: "Front",
  23782. image: {
  23783. source: "./media/characters/rocky/front.svg",
  23784. extra: 1012 / 975,
  23785. bottom: 54 / 1066
  23786. }
  23787. },
  23788. },
  23789. [
  23790. {
  23791. name: "Normal",
  23792. height: math.unit(5 + 4 / 12, "feet"),
  23793. default: true
  23794. },
  23795. ]
  23796. ))
  23797. characterMakers.push(() => makeCharacter(
  23798. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  23799. {
  23800. upright: {
  23801. height: math.unit(6, "meters"),
  23802. weight: math.unit(4000, "kg"),
  23803. name: "Upright",
  23804. image: {
  23805. source: "./media/characters/ruin/upright.svg",
  23806. extra: 668 / 661,
  23807. bottom: 42 / 799.8396
  23808. }
  23809. },
  23810. },
  23811. [
  23812. {
  23813. name: "Normal",
  23814. height: math.unit(6, "meters"),
  23815. default: true
  23816. },
  23817. ]
  23818. ))
  23819. characterMakers.push(() => makeCharacter(
  23820. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  23821. {
  23822. front: {
  23823. height: math.unit(5, "feet"),
  23824. weight: math.unit(106, "lb"),
  23825. name: "Front",
  23826. image: {
  23827. source: "./media/characters/robin/front.svg",
  23828. extra: 862 / 799,
  23829. bottom: 42.4 / 914.8856
  23830. }
  23831. },
  23832. },
  23833. [
  23834. {
  23835. name: "Normal",
  23836. height: math.unit(5, "feet"),
  23837. default: true
  23838. },
  23839. ]
  23840. ))
  23841. characterMakers.push(() => makeCharacter(
  23842. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  23843. {
  23844. side: {
  23845. height: math.unit(3, "feet"),
  23846. weight: math.unit(225, "lb"),
  23847. name: "Side",
  23848. image: {
  23849. source: "./media/characters/saian/side.svg",
  23850. extra: 566 / 356,
  23851. bottom: 79.7 / 643
  23852. }
  23853. },
  23854. maw: {
  23855. height: math.unit(2.85, "feet"),
  23856. name: "Maw",
  23857. image: {
  23858. source: "./media/characters/saian/maw.svg"
  23859. }
  23860. },
  23861. },
  23862. [
  23863. {
  23864. name: "Normal",
  23865. height: math.unit(3, "feet"),
  23866. default: true
  23867. },
  23868. ]
  23869. ))
  23870. characterMakers.push(() => makeCharacter(
  23871. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  23872. {
  23873. side: {
  23874. height: math.unit(8, "feet"),
  23875. weight: math.unit(300, "lb"),
  23876. name: "Side",
  23877. image: {
  23878. source: "./media/characters/equus-silvermane/side.svg",
  23879. extra: 2176 / 2050,
  23880. bottom: 65.7 / 2245
  23881. }
  23882. },
  23883. front: {
  23884. height: math.unit(8, "feet"),
  23885. weight: math.unit(300, "lb"),
  23886. name: "Front",
  23887. image: {
  23888. source: "./media/characters/equus-silvermane/front.svg",
  23889. extra: 4633 / 4400,
  23890. bottom: 71.3 / 4706.915
  23891. }
  23892. },
  23893. sideStepping: {
  23894. height: math.unit(8, "feet"),
  23895. weight: math.unit(300, "lb"),
  23896. name: "Side (Stepping)",
  23897. image: {
  23898. source: "./media/characters/equus-silvermane/side-stepping.svg",
  23899. extra: 1968 / 1860,
  23900. bottom: 16.4 / 1989
  23901. }
  23902. },
  23903. },
  23904. [
  23905. {
  23906. name: "Normal",
  23907. height: math.unit(8, "feet")
  23908. },
  23909. {
  23910. name: "Minimacro",
  23911. height: math.unit(75, "feet"),
  23912. default: true
  23913. },
  23914. {
  23915. name: "Macro",
  23916. height: math.unit(150, "feet")
  23917. },
  23918. {
  23919. name: "Macro+",
  23920. height: math.unit(1000, "feet")
  23921. },
  23922. {
  23923. name: "Megamacro",
  23924. height: math.unit(1, "mile")
  23925. },
  23926. ]
  23927. ))
  23928. characterMakers.push(() => makeCharacter(
  23929. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  23930. {
  23931. side: {
  23932. height: math.unit(20, "feet"),
  23933. weight: math.unit(30000, "kg"),
  23934. name: "Side",
  23935. image: {
  23936. source: "./media/characters/windar/side.svg",
  23937. extra: 1491 / 1248,
  23938. bottom: 82.56 / 1568
  23939. }
  23940. },
  23941. },
  23942. [
  23943. {
  23944. name: "Normal",
  23945. height: math.unit(20, "feet"),
  23946. default: true
  23947. },
  23948. ]
  23949. ))
  23950. characterMakers.push(() => makeCharacter(
  23951. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  23952. {
  23953. side: {
  23954. height: math.unit(15.66, "feet"),
  23955. weight: math.unit(150, "lb"),
  23956. name: "Side",
  23957. image: {
  23958. source: "./media/characters/melody/side.svg",
  23959. extra: 1097 / 944,
  23960. bottom: 11.8 / 1109
  23961. }
  23962. },
  23963. sideOutfit: {
  23964. height: math.unit(15.66, "feet"),
  23965. weight: math.unit(150, "lb"),
  23966. name: "Side (Outfit)",
  23967. image: {
  23968. source: "./media/characters/melody/side-outfit.svg",
  23969. extra: 1097 / 944,
  23970. bottom: 11.8 / 1109
  23971. }
  23972. },
  23973. },
  23974. [
  23975. {
  23976. name: "Normal",
  23977. height: math.unit(15.66, "feet"),
  23978. default: true
  23979. },
  23980. ]
  23981. ))
  23982. characterMakers.push(() => makeCharacter(
  23983. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  23984. {
  23985. armoredFront: {
  23986. height: math.unit(8, "feet"),
  23987. weight: math.unit(325, "lb"),
  23988. name: "Front",
  23989. image: {
  23990. source: "./media/characters/windera/armored-front.svg",
  23991. extra: 1830/1598,
  23992. bottom: 151/1981
  23993. },
  23994. form: "armored",
  23995. default: true
  23996. },
  23997. macroFront: {
  23998. height: math.unit(70, "feet"),
  23999. weight: math.unit(315453, "lb"),
  24000. name: "Front",
  24001. image: {
  24002. source: "./media/characters/windera/macro-front.svg",
  24003. extra: 963/883,
  24004. bottom: 23/986
  24005. },
  24006. form: "macro",
  24007. default: true
  24008. },
  24009. },
  24010. [
  24011. {
  24012. name: "Normal",
  24013. height: math.unit(8, "feet"),
  24014. default: true,
  24015. form: "armored"
  24016. },
  24017. {
  24018. name: "Normal",
  24019. height: math.unit(70, "feet"),
  24020. default: true,
  24021. form: "macro"
  24022. },
  24023. ],
  24024. {
  24025. "armored": {
  24026. name: "Armored",
  24027. default: true
  24028. },
  24029. "macro": {
  24030. name: "Macro",
  24031. },
  24032. }
  24033. ))
  24034. characterMakers.push(() => makeCharacter(
  24035. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  24036. {
  24037. front: {
  24038. height: math.unit(28.75, "feet"),
  24039. weight: math.unit(2000, "kg"),
  24040. name: "Front",
  24041. image: {
  24042. source: "./media/characters/sonear/front.svg",
  24043. extra: 1041.1 / 964.9,
  24044. bottom: 53.7 / 1096.6
  24045. }
  24046. },
  24047. },
  24048. [
  24049. {
  24050. name: "Normal",
  24051. height: math.unit(28.75, "feet"),
  24052. default: true
  24053. },
  24054. ]
  24055. ))
  24056. characterMakers.push(() => makeCharacter(
  24057. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  24058. {
  24059. side: {
  24060. height: math.unit(25.5, "feet"),
  24061. weight: math.unit(23000, "kg"),
  24062. name: "Side",
  24063. image: {
  24064. source: "./media/characters/kanara/side.svg"
  24065. }
  24066. },
  24067. },
  24068. [
  24069. {
  24070. name: "Normal",
  24071. height: math.unit(25.5, "feet"),
  24072. default: true
  24073. },
  24074. ]
  24075. ))
  24076. characterMakers.push(() => makeCharacter(
  24077. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  24078. {
  24079. side: {
  24080. height: math.unit(10, "feet"),
  24081. weight: math.unit(1000, "kg"),
  24082. name: "Side",
  24083. image: {
  24084. source: "./media/characters/ereus/side.svg",
  24085. extra: 1157 / 959,
  24086. bottom: 153 / 1312.5
  24087. }
  24088. },
  24089. },
  24090. [
  24091. {
  24092. name: "Normal",
  24093. height: math.unit(10, "feet"),
  24094. default: true
  24095. },
  24096. ]
  24097. ))
  24098. characterMakers.push(() => makeCharacter(
  24099. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  24100. {
  24101. side: {
  24102. height: math.unit(4.5, "feet"),
  24103. weight: math.unit(500, "lb"),
  24104. name: "Side",
  24105. image: {
  24106. source: "./media/characters/e-ter/side.svg",
  24107. extra: 1550 / 1248,
  24108. bottom: 146 / 1694
  24109. }
  24110. },
  24111. },
  24112. [
  24113. {
  24114. name: "Normal",
  24115. height: math.unit(4.5, "feet"),
  24116. default: true
  24117. },
  24118. ]
  24119. ))
  24120. characterMakers.push(() => makeCharacter(
  24121. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  24122. {
  24123. side: {
  24124. height: math.unit(9.7, "feet"),
  24125. weight: math.unit(4000, "kg"),
  24126. name: "Side",
  24127. image: {
  24128. source: "./media/characters/yamie/side.svg"
  24129. }
  24130. },
  24131. },
  24132. [
  24133. {
  24134. name: "Normal",
  24135. height: math.unit(9.7, "feet"),
  24136. default: true
  24137. },
  24138. ]
  24139. ))
  24140. characterMakers.push(() => makeCharacter(
  24141. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  24142. {
  24143. front: {
  24144. height: math.unit(50, "feet"),
  24145. weight: math.unit(50000, "kg"),
  24146. name: "Front",
  24147. image: {
  24148. source: "./media/characters/anders/front.svg",
  24149. extra: 570 / 539,
  24150. bottom: 14.7 / 586.7
  24151. }
  24152. },
  24153. },
  24154. [
  24155. {
  24156. name: "Large",
  24157. height: math.unit(50, "feet")
  24158. },
  24159. {
  24160. name: "Macro",
  24161. height: math.unit(2000, "feet"),
  24162. default: true
  24163. },
  24164. {
  24165. name: "Megamacro",
  24166. height: math.unit(12, "miles")
  24167. },
  24168. ]
  24169. ))
  24170. characterMakers.push(() => makeCharacter(
  24171. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  24172. {
  24173. front: {
  24174. height: math.unit(7 + 2 / 12, "feet"),
  24175. weight: math.unit(300, "lb"),
  24176. name: "Front",
  24177. image: {
  24178. source: "./media/characters/reban/front.svg",
  24179. extra: 1287/1212,
  24180. bottom: 148/1435
  24181. }
  24182. },
  24183. head: {
  24184. height: math.unit(1.95, "feet"),
  24185. name: "Head",
  24186. image: {
  24187. source: "./media/characters/reban/head.svg"
  24188. }
  24189. },
  24190. maw: {
  24191. height: math.unit(0.95, "feet"),
  24192. name: "Maw",
  24193. image: {
  24194. source: "./media/characters/reban/maw.svg"
  24195. }
  24196. },
  24197. foot: {
  24198. height: math.unit(1.65, "feet"),
  24199. name: "Foot",
  24200. image: {
  24201. source: "./media/characters/reban/foot.svg"
  24202. }
  24203. },
  24204. dick: {
  24205. height: math.unit(7 / 5, "feet"),
  24206. name: "Dick",
  24207. image: {
  24208. source: "./media/characters/reban/dick.svg"
  24209. }
  24210. },
  24211. },
  24212. [
  24213. {
  24214. name: "Natural Height",
  24215. height: math.unit(7 + 2 / 12, "feet")
  24216. },
  24217. {
  24218. name: "Macro",
  24219. height: math.unit(500, "feet"),
  24220. default: true
  24221. },
  24222. {
  24223. name: "Canon Height",
  24224. height: math.unit(50, "AU")
  24225. },
  24226. ]
  24227. ))
  24228. characterMakers.push(() => makeCharacter(
  24229. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  24230. {
  24231. front: {
  24232. height: math.unit(6, "feet"),
  24233. weight: math.unit(150, "lb"),
  24234. name: "Front",
  24235. image: {
  24236. source: "./media/characters/terrance-keayes/front.svg",
  24237. extra: 1.005,
  24238. bottom: 151 / 1615
  24239. }
  24240. },
  24241. side: {
  24242. height: math.unit(6, "feet"),
  24243. weight: math.unit(150, "lb"),
  24244. name: "Side",
  24245. image: {
  24246. source: "./media/characters/terrance-keayes/side.svg",
  24247. extra: 1.005,
  24248. bottom: 129.4 / 1544
  24249. }
  24250. },
  24251. back: {
  24252. height: math.unit(6, "feet"),
  24253. weight: math.unit(150, "lb"),
  24254. name: "Back",
  24255. image: {
  24256. source: "./media/characters/terrance-keayes/back.svg",
  24257. extra: 1.005,
  24258. bottom: 58.4 / 1557.3
  24259. }
  24260. },
  24261. dick: {
  24262. height: math.unit(6 * 0.208, "feet"),
  24263. name: "Dick",
  24264. image: {
  24265. source: "./media/characters/terrance-keayes/dick.svg"
  24266. }
  24267. },
  24268. },
  24269. [
  24270. {
  24271. name: "Canon Height",
  24272. height: math.unit(35, "miles"),
  24273. default: true
  24274. },
  24275. ]
  24276. ))
  24277. characterMakers.push(() => makeCharacter(
  24278. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  24279. {
  24280. front: {
  24281. height: math.unit(6, "feet"),
  24282. weight: math.unit(150, "lb"),
  24283. name: "Front",
  24284. image: {
  24285. source: "./media/characters/ofelia/front.svg",
  24286. extra: 1130/1117,
  24287. bottom: 91/1221
  24288. }
  24289. },
  24290. back: {
  24291. height: math.unit(6, "feet"),
  24292. weight: math.unit(150, "lb"),
  24293. name: "Back",
  24294. image: {
  24295. source: "./media/characters/ofelia/back.svg",
  24296. extra: 1172/1159,
  24297. bottom: 28/1200
  24298. }
  24299. },
  24300. maw: {
  24301. height: math.unit(1, "feet"),
  24302. name: "Maw",
  24303. image: {
  24304. source: "./media/characters/ofelia/maw.svg"
  24305. }
  24306. },
  24307. foot: {
  24308. height: math.unit(1.949, "feet"),
  24309. name: "Foot",
  24310. image: {
  24311. source: "./media/characters/ofelia/foot.svg"
  24312. }
  24313. },
  24314. },
  24315. [
  24316. {
  24317. name: "Canon Height",
  24318. height: math.unit(2000, "miles"),
  24319. default: true
  24320. },
  24321. ]
  24322. ))
  24323. characterMakers.push(() => makeCharacter(
  24324. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  24325. {
  24326. front: {
  24327. height: math.unit(6, "feet"),
  24328. weight: math.unit(150, "lb"),
  24329. name: "Front",
  24330. image: {
  24331. source: "./media/characters/samuel/front.svg",
  24332. extra: 265 / 258,
  24333. bottom: 2 / 266.1566
  24334. }
  24335. },
  24336. },
  24337. [
  24338. {
  24339. name: "Macro",
  24340. height: math.unit(100, "feet"),
  24341. default: true
  24342. },
  24343. {
  24344. name: "Full Size",
  24345. height: math.unit(1000, "miles")
  24346. },
  24347. ]
  24348. ))
  24349. characterMakers.push(() => makeCharacter(
  24350. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  24351. {
  24352. front: {
  24353. height: math.unit(6, "feet"),
  24354. weight: math.unit(300, "lb"),
  24355. name: "Front",
  24356. image: {
  24357. source: "./media/characters/beishir-kiel/front.svg",
  24358. extra: 569 / 547,
  24359. bottom: 41.9 / 609
  24360. }
  24361. },
  24362. maw: {
  24363. height: math.unit(6 * 0.202, "feet"),
  24364. name: "Maw",
  24365. image: {
  24366. source: "./media/characters/beishir-kiel/maw.svg"
  24367. }
  24368. },
  24369. },
  24370. [
  24371. {
  24372. name: "Macro",
  24373. height: math.unit(300, "feet"),
  24374. default: true
  24375. },
  24376. ]
  24377. ))
  24378. characterMakers.push(() => makeCharacter(
  24379. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  24380. {
  24381. front: {
  24382. height: math.unit(5 + 7/12, "feet"),
  24383. weight: math.unit(120, "lb"),
  24384. name: "Front",
  24385. image: {
  24386. source: "./media/characters/logan-grey/front.svg",
  24387. extra: 1836/1738,
  24388. bottom: 108/1944
  24389. }
  24390. },
  24391. back: {
  24392. height: math.unit(5 + 7/12, "feet"),
  24393. weight: math.unit(120, "lb"),
  24394. name: "Back",
  24395. image: {
  24396. source: "./media/characters/logan-grey/back.svg",
  24397. extra: 1880/1794,
  24398. bottom: 24/1904
  24399. }
  24400. },
  24401. frontSfw: {
  24402. height: math.unit(5 + 7/12, "feet"),
  24403. weight: math.unit(120, "lb"),
  24404. name: "Front (SFW)",
  24405. image: {
  24406. source: "./media/characters/logan-grey/front-sfw.svg",
  24407. extra: 1836/1738,
  24408. bottom: 108/1944
  24409. }
  24410. },
  24411. backSfw: {
  24412. height: math.unit(5 + 7/12, "feet"),
  24413. weight: math.unit(120, "lb"),
  24414. name: "Back (SFW)",
  24415. image: {
  24416. source: "./media/characters/logan-grey/back-sfw.svg",
  24417. extra: 1880/1794,
  24418. bottom: 24/1904
  24419. }
  24420. },
  24421. hands: {
  24422. height: math.unit(0.84, "feet"),
  24423. name: "Hands",
  24424. image: {
  24425. source: "./media/characters/logan-grey/hands.svg"
  24426. }
  24427. },
  24428. paws: {
  24429. height: math.unit(0.72, "feet"),
  24430. name: "Paws",
  24431. image: {
  24432. source: "./media/characters/logan-grey/paws.svg"
  24433. }
  24434. },
  24435. cock: {
  24436. height: math.unit(1.45, "feet"),
  24437. name: "Cock",
  24438. image: {
  24439. source: "./media/characters/logan-grey/cock.svg"
  24440. }
  24441. },
  24442. cockAlt: {
  24443. height: math.unit(1.437, "feet"),
  24444. name: "Cock (alt)",
  24445. image: {
  24446. source: "./media/characters/logan-grey/cock-alt.svg"
  24447. }
  24448. },
  24449. },
  24450. [
  24451. {
  24452. name: "Normal",
  24453. height: math.unit(5 + 8 / 12, "feet")
  24454. },
  24455. {
  24456. name: "The 500 Foot Femboy",
  24457. height: math.unit(500, "feet"),
  24458. default: true
  24459. },
  24460. {
  24461. name: "Megmacro",
  24462. height: math.unit(20, "miles")
  24463. },
  24464. ]
  24465. ))
  24466. characterMakers.push(() => makeCharacter(
  24467. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  24468. {
  24469. front: {
  24470. height: math.unit(8 + 2 / 12, "feet"),
  24471. weight: math.unit(275, "lb"),
  24472. name: "Front",
  24473. image: {
  24474. source: "./media/characters/draganta/front.svg",
  24475. extra: 1177 / 1135,
  24476. bottom: 33.46 / 1212.1
  24477. }
  24478. },
  24479. },
  24480. [
  24481. {
  24482. name: "Normal",
  24483. height: math.unit(8 + 6 / 12, "feet"),
  24484. default: true
  24485. },
  24486. {
  24487. name: "Macro",
  24488. height: math.unit(150, "feet")
  24489. },
  24490. {
  24491. name: "Megamacro",
  24492. height: math.unit(1000, "miles")
  24493. },
  24494. ]
  24495. ))
  24496. characterMakers.push(() => makeCharacter(
  24497. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  24498. {
  24499. front: {
  24500. height: math.unit(1.72, "m"),
  24501. weight: math.unit(80, "lb"),
  24502. name: "Front",
  24503. image: {
  24504. source: "./media/characters/voski/front.svg",
  24505. extra: 2076.22 / 2022.4,
  24506. bottom: 102.7 / 2177.3866
  24507. }
  24508. },
  24509. frontFlaccid: {
  24510. height: math.unit(1.72, "m"),
  24511. weight: math.unit(80, "lb"),
  24512. name: "Front (Flaccid)",
  24513. image: {
  24514. source: "./media/characters/voski/front-flaccid.svg",
  24515. extra: 2076.22 / 2022.4,
  24516. bottom: 102.7 / 2177.3866
  24517. }
  24518. },
  24519. frontErect: {
  24520. height: math.unit(1.72, "m"),
  24521. weight: math.unit(80, "lb"),
  24522. name: "Front (Erect)",
  24523. image: {
  24524. source: "./media/characters/voski/front-erect.svg",
  24525. extra: 2076.22 / 2022.4,
  24526. bottom: 102.7 / 2177.3866
  24527. }
  24528. },
  24529. back: {
  24530. height: math.unit(1.72, "m"),
  24531. weight: math.unit(80, "lb"),
  24532. name: "Back",
  24533. image: {
  24534. source: "./media/characters/voski/back.svg",
  24535. extra: 2104 / 2051,
  24536. bottom: 10.45 / 2113.63
  24537. }
  24538. },
  24539. },
  24540. [
  24541. {
  24542. name: "Normal",
  24543. height: math.unit(1.72, "m")
  24544. },
  24545. {
  24546. name: "Macro",
  24547. height: math.unit(55, "m"),
  24548. default: true
  24549. },
  24550. {
  24551. name: "Macro+",
  24552. height: math.unit(300, "m")
  24553. },
  24554. {
  24555. name: "Macro++",
  24556. height: math.unit(700, "m")
  24557. },
  24558. {
  24559. name: "Macro+++",
  24560. height: math.unit(4500, "m")
  24561. },
  24562. {
  24563. name: "Macro++++",
  24564. height: math.unit(45, "km")
  24565. },
  24566. {
  24567. name: "Macro+++++",
  24568. height: math.unit(1220, "km")
  24569. },
  24570. ]
  24571. ))
  24572. characterMakers.push(() => makeCharacter(
  24573. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  24574. {
  24575. front: {
  24576. height: math.unit(2.3, "m"),
  24577. weight: math.unit(304, "kg"),
  24578. name: "Front",
  24579. image: {
  24580. source: "./media/characters/icowom-lee/front.svg",
  24581. extra: 985 / 955,
  24582. bottom: 25.4 / 1012
  24583. }
  24584. },
  24585. fronttentacles: {
  24586. height: math.unit(2.3, "m"),
  24587. weight: math.unit(304, "kg"),
  24588. name: "Front-tentacles",
  24589. image: {
  24590. source: "./media/characters/icowom-lee/front-tentacles.svg",
  24591. extra: 985 / 955,
  24592. bottom: 25.4 / 1012
  24593. }
  24594. },
  24595. back: {
  24596. height: math.unit(2.3, "m"),
  24597. weight: math.unit(304, "kg"),
  24598. name: "Back",
  24599. image: {
  24600. source: "./media/characters/icowom-lee/back.svg",
  24601. extra: 975 / 954,
  24602. bottom: 9.5 / 985
  24603. }
  24604. },
  24605. backtentacles: {
  24606. height: math.unit(2.3, "m"),
  24607. weight: math.unit(304, "kg"),
  24608. name: "Back-tentacles",
  24609. image: {
  24610. source: "./media/characters/icowom-lee/back-tentacles.svg",
  24611. extra: 975 / 954,
  24612. bottom: 9.5 / 985
  24613. }
  24614. },
  24615. frontDressed: {
  24616. height: math.unit(2.3, "m"),
  24617. weight: math.unit(304, "kg"),
  24618. name: "Front (Dressed)",
  24619. image: {
  24620. source: "./media/characters/icowom-lee/front-dressed.svg",
  24621. extra: 3076 / 2933,
  24622. bottom: 51.4 / 3125.1889
  24623. }
  24624. },
  24625. rump: {
  24626. height: math.unit(0.776, "meters"),
  24627. name: "Rump",
  24628. image: {
  24629. source: "./media/characters/icowom-lee/rump.svg"
  24630. }
  24631. },
  24632. genitals: {
  24633. height: math.unit(0.78, "meters"),
  24634. name: "Genitals",
  24635. image: {
  24636. source: "./media/characters/icowom-lee/genitals.svg"
  24637. }
  24638. },
  24639. },
  24640. [
  24641. {
  24642. name: "Normal",
  24643. height: math.unit(2.3, "meters"),
  24644. default: true
  24645. },
  24646. {
  24647. name: "Macro",
  24648. height: math.unit(94, "meters"),
  24649. default: true
  24650. },
  24651. ]
  24652. ))
  24653. characterMakers.push(() => makeCharacter(
  24654. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  24655. {
  24656. front: {
  24657. height: math.unit(22, "meters"),
  24658. weight: math.unit(21000, "kg"),
  24659. name: "Front",
  24660. image: {
  24661. source: "./media/characters/shock-diamond/front.svg",
  24662. extra: 2204 / 2053,
  24663. bottom: 65 / 2239.47
  24664. }
  24665. },
  24666. frontNude: {
  24667. height: math.unit(22, "meters"),
  24668. weight: math.unit(21000, "kg"),
  24669. name: "Front (Nude)",
  24670. image: {
  24671. source: "./media/characters/shock-diamond/front-nude.svg",
  24672. extra: 2514 / 2285,
  24673. bottom: 13 / 2527.56
  24674. }
  24675. },
  24676. },
  24677. [
  24678. {
  24679. name: "Normal",
  24680. height: math.unit(3, "meters")
  24681. },
  24682. {
  24683. name: "Macro",
  24684. height: math.unit(22, "meters"),
  24685. default: true
  24686. },
  24687. ]
  24688. ))
  24689. characterMakers.push(() => makeCharacter(
  24690. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  24691. {
  24692. front: {
  24693. height: math.unit(5 + 4/12, "feet"),
  24694. weight: math.unit(125, "lb"),
  24695. name: "Front",
  24696. image: {
  24697. source: "./media/characters/rory/front.svg",
  24698. extra: 1790/1681,
  24699. bottom: 66/1856
  24700. },
  24701. form: "normal",
  24702. default: true
  24703. },
  24704. back: {
  24705. height: math.unit(5 + 4/12, "feet"),
  24706. weight: math.unit(125, "lb"),
  24707. name: "Back",
  24708. image: {
  24709. source: "./media/characters/rory/back.svg",
  24710. extra: 1805/1690,
  24711. bottom: 56/1861
  24712. },
  24713. form: "normal"
  24714. },
  24715. frontDressed: {
  24716. height: math.unit(5 + 4/12, "feet"),
  24717. weight: math.unit(125, "lb"),
  24718. name: "Front (Dressed)",
  24719. image: {
  24720. source: "./media/characters/rory/front-dressed.svg",
  24721. extra: 1790/1681,
  24722. bottom: 66/1856
  24723. },
  24724. form: "normal"
  24725. },
  24726. backDressed: {
  24727. height: math.unit(5 + 4/12, "feet"),
  24728. weight: math.unit(125, "lb"),
  24729. name: "Back (Dressed)",
  24730. image: {
  24731. source: "./media/characters/rory/back-dressed.svg",
  24732. extra: 1805/1690,
  24733. bottom: 56/1861
  24734. },
  24735. form: "normal"
  24736. },
  24737. frontNsfw: {
  24738. height: math.unit(5 + 4/12, "feet"),
  24739. weight: math.unit(125, "lb"),
  24740. name: "Front (NSFW)",
  24741. image: {
  24742. source: "./media/characters/rory/front-nsfw.svg",
  24743. extra: 1790/1681,
  24744. bottom: 66/1856
  24745. },
  24746. form: "normal"
  24747. },
  24748. backNsfw: {
  24749. height: math.unit(5 + 4/12, "feet"),
  24750. weight: math.unit(125, "lb"),
  24751. name: "Back (NSFW)",
  24752. image: {
  24753. source: "./media/characters/rory/back-nsfw.svg",
  24754. extra: 1805/1690,
  24755. bottom: 56/1861
  24756. },
  24757. form: "normal"
  24758. },
  24759. dick: {
  24760. height: math.unit(0.8, "feet"),
  24761. name: "Dick",
  24762. image: {
  24763. source: "./media/characters/rory/dick.svg"
  24764. },
  24765. form: "normal"
  24766. },
  24767. thicc_front: {
  24768. height: math.unit(5 + 4/12, "feet"),
  24769. weight: math.unit(195, "lb"),
  24770. name: "Front",
  24771. image: {
  24772. source: "./media/characters/rory/thicc-front.svg",
  24773. extra: 1220/1100,
  24774. bottom: 103/1323
  24775. },
  24776. form: "thicc",
  24777. default: true
  24778. },
  24779. thicc_back: {
  24780. height: math.unit(5 + 4/12, "feet"),
  24781. weight: math.unit(195, "lb"),
  24782. name: "Back",
  24783. image: {
  24784. source: "./media/characters/rory/thicc-back.svg",
  24785. extra: 1166/1086,
  24786. bottom: 35/1201
  24787. },
  24788. form: "thicc"
  24789. },
  24790. },
  24791. [
  24792. {
  24793. name: "Micro",
  24794. height: math.unit(3, "inches"),
  24795. allForms: true
  24796. },
  24797. {
  24798. name: "Normal",
  24799. height: math.unit(5 + 4/12, "feet"),
  24800. allForms: true,
  24801. default: true
  24802. },
  24803. {
  24804. name: "Macro",
  24805. height: math.unit(90, "feet"),
  24806. allForms: true
  24807. },
  24808. {
  24809. name: "Supercharged",
  24810. height: math.unit(270, "feet"),
  24811. allForms: true
  24812. },
  24813. ],
  24814. {
  24815. "normal": {
  24816. name: "Normal",
  24817. default: true
  24818. },
  24819. "thicc": {
  24820. name: "Thicc",
  24821. },
  24822. }
  24823. ))
  24824. characterMakers.push(() => makeCharacter(
  24825. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  24826. {
  24827. front: {
  24828. height: math.unit(5 + 9 / 12, "feet"),
  24829. weight: math.unit(190, "lb"),
  24830. name: "Front",
  24831. image: {
  24832. source: "./media/characters/sprisk/front.svg",
  24833. extra: 1225 / 1180,
  24834. bottom: 42.7 / 1266.4
  24835. }
  24836. },
  24837. frontNsfw: {
  24838. height: math.unit(5 + 9 / 12, "feet"),
  24839. weight: math.unit(190, "lb"),
  24840. name: "Front (NSFW)",
  24841. image: {
  24842. source: "./media/characters/sprisk/front-nsfw.svg",
  24843. extra: 1225 / 1180,
  24844. bottom: 42.7 / 1266.4
  24845. }
  24846. },
  24847. back: {
  24848. height: math.unit(5 + 9 / 12, "feet"),
  24849. weight: math.unit(190, "lb"),
  24850. name: "Back",
  24851. image: {
  24852. source: "./media/characters/sprisk/back.svg",
  24853. extra: 1247 / 1200,
  24854. bottom: 5.6 / 1253.04
  24855. }
  24856. },
  24857. },
  24858. [
  24859. {
  24860. name: "Tiny",
  24861. height: math.unit(2, "inches")
  24862. },
  24863. {
  24864. name: "Normal",
  24865. height: math.unit(5 + 9 / 12, "feet"),
  24866. default: true
  24867. },
  24868. {
  24869. name: "Mini Macro",
  24870. height: math.unit(18, "feet")
  24871. },
  24872. {
  24873. name: "Macro",
  24874. height: math.unit(100, "feet")
  24875. },
  24876. {
  24877. name: "MACRO",
  24878. height: math.unit(50, "miles")
  24879. },
  24880. {
  24881. name: "M A C R O",
  24882. height: math.unit(300, "miles")
  24883. },
  24884. ]
  24885. ))
  24886. characterMakers.push(() => makeCharacter(
  24887. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  24888. {
  24889. side: {
  24890. height: math.unit(15.6, "meters"),
  24891. weight: math.unit(700000, "kg"),
  24892. name: "Side",
  24893. image: {
  24894. source: "./media/characters/bunsen/side.svg",
  24895. extra: 1644 / 358
  24896. }
  24897. },
  24898. foot: {
  24899. height: math.unit(1.611 * 1644 / 358, "meter"),
  24900. name: "Foot",
  24901. image: {
  24902. source: "./media/characters/bunsen/foot.svg"
  24903. }
  24904. },
  24905. },
  24906. [
  24907. {
  24908. name: "Small",
  24909. height: math.unit(10, "feet")
  24910. },
  24911. {
  24912. name: "Normal",
  24913. height: math.unit(15.6, "meters"),
  24914. default: true
  24915. },
  24916. ]
  24917. ))
  24918. characterMakers.push(() => makeCharacter(
  24919. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  24920. {
  24921. front: {
  24922. height: math.unit(4 + 11 / 12, "feet"),
  24923. weight: math.unit(140, "lb"),
  24924. name: "Front",
  24925. image: {
  24926. source: "./media/characters/sesh/front.svg",
  24927. extra: 3420 / 3231,
  24928. bottom: 72 / 3949.5
  24929. }
  24930. },
  24931. },
  24932. [
  24933. {
  24934. name: "Normal",
  24935. height: math.unit(4 + 11 / 12, "feet")
  24936. },
  24937. {
  24938. name: "Grown",
  24939. height: math.unit(15, "feet"),
  24940. default: true
  24941. },
  24942. {
  24943. name: "Macro",
  24944. height: math.unit(1500, "feet")
  24945. },
  24946. {
  24947. name: "Megamacro",
  24948. height: math.unit(30, "miles")
  24949. },
  24950. {
  24951. name: "Continental",
  24952. height: math.unit(3000, "miles")
  24953. },
  24954. {
  24955. name: "Gravity Mass",
  24956. height: math.unit(300000, "miles")
  24957. },
  24958. {
  24959. name: "Planet Buster",
  24960. height: math.unit(30000000, "miles")
  24961. },
  24962. {
  24963. name: "Big",
  24964. height: math.unit(3000000000, "miles")
  24965. },
  24966. ]
  24967. ))
  24968. characterMakers.push(() => makeCharacter(
  24969. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  24970. {
  24971. front: {
  24972. height: math.unit(9, "feet"),
  24973. weight: math.unit(350, "lb"),
  24974. name: "Front",
  24975. image: {
  24976. source: "./media/characters/pepper/front.svg",
  24977. extra: 1448 / 1312,
  24978. bottom: 9.4 / 1457.88
  24979. }
  24980. },
  24981. back: {
  24982. height: math.unit(9, "feet"),
  24983. weight: math.unit(350, "lb"),
  24984. name: "Back",
  24985. image: {
  24986. source: "./media/characters/pepper/back.svg",
  24987. extra: 1423 / 1300,
  24988. bottom: 4.6 / 1429
  24989. }
  24990. },
  24991. maw: {
  24992. height: math.unit(0.932, "feet"),
  24993. name: "Maw",
  24994. image: {
  24995. source: "./media/characters/pepper/maw.svg"
  24996. }
  24997. },
  24998. },
  24999. [
  25000. {
  25001. name: "Normal",
  25002. height: math.unit(9, "feet"),
  25003. default: true
  25004. },
  25005. ]
  25006. ))
  25007. characterMakers.push(() => makeCharacter(
  25008. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  25009. {
  25010. front: {
  25011. height: math.unit(6, "feet"),
  25012. weight: math.unit(150, "lb"),
  25013. name: "Front",
  25014. image: {
  25015. source: "./media/characters/maelstrom/front.svg",
  25016. extra: 2100 / 1883,
  25017. bottom: 94 / 2196.7
  25018. }
  25019. },
  25020. },
  25021. [
  25022. {
  25023. name: "Less Kaiju",
  25024. height: math.unit(200, "feet")
  25025. },
  25026. {
  25027. name: "Kaiju",
  25028. height: math.unit(400, "feet"),
  25029. default: true
  25030. },
  25031. {
  25032. name: "Kaiju-er",
  25033. height: math.unit(600, "feet")
  25034. },
  25035. ]
  25036. ))
  25037. characterMakers.push(() => makeCharacter(
  25038. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  25039. {
  25040. front: {
  25041. height: math.unit(6 + 5 / 12, "feet"),
  25042. weight: math.unit(180, "lb"),
  25043. name: "Front",
  25044. image: {
  25045. source: "./media/characters/lexir/front.svg",
  25046. extra: 180 / 172,
  25047. bottom: 12 / 192
  25048. }
  25049. },
  25050. back: {
  25051. height: math.unit(6 + 5 / 12, "feet"),
  25052. weight: math.unit(180, "lb"),
  25053. name: "Back",
  25054. image: {
  25055. source: "./media/characters/lexir/back.svg",
  25056. extra: 1273/1201,
  25057. bottom: 39/1312
  25058. }
  25059. },
  25060. },
  25061. [
  25062. {
  25063. name: "Very Smal",
  25064. height: math.unit(1, "nm")
  25065. },
  25066. {
  25067. name: "Normal",
  25068. height: math.unit(6 + 5 / 12, "feet"),
  25069. default: true
  25070. },
  25071. {
  25072. name: "Macro",
  25073. height: math.unit(1, "mile")
  25074. },
  25075. {
  25076. name: "Megamacro",
  25077. height: math.unit(50, "miles")
  25078. },
  25079. ]
  25080. ))
  25081. characterMakers.push(() => makeCharacter(
  25082. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  25083. {
  25084. front: {
  25085. height: math.unit(1.5, "meters"),
  25086. weight: math.unit(100, "lb"),
  25087. name: "Front",
  25088. image: {
  25089. source: "./media/characters/maksio/front.svg",
  25090. extra: 1549 / 1531,
  25091. bottom: 123.7 / 1674.5429
  25092. }
  25093. },
  25094. back: {
  25095. height: math.unit(1.5, "meters"),
  25096. weight: math.unit(100, "lb"),
  25097. name: "Back",
  25098. image: {
  25099. source: "./media/characters/maksio/back.svg",
  25100. extra: 1541 / 1509,
  25101. bottom: 97 / 1639
  25102. }
  25103. },
  25104. hand: {
  25105. height: math.unit(0.621, "feet"),
  25106. name: "Hand",
  25107. image: {
  25108. source: "./media/characters/maksio/hand.svg"
  25109. }
  25110. },
  25111. foot: {
  25112. height: math.unit(1.611, "feet"),
  25113. name: "Foot",
  25114. image: {
  25115. source: "./media/characters/maksio/foot.svg"
  25116. }
  25117. },
  25118. },
  25119. [
  25120. {
  25121. name: "Shrunken",
  25122. height: math.unit(10, "cm")
  25123. },
  25124. {
  25125. name: "Normal",
  25126. height: math.unit(150, "cm"),
  25127. default: true
  25128. },
  25129. ]
  25130. ))
  25131. characterMakers.push(() => makeCharacter(
  25132. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  25133. {
  25134. front: {
  25135. height: math.unit(100, "feet"),
  25136. name: "Front",
  25137. image: {
  25138. source: "./media/characters/erza-bear/front.svg",
  25139. extra: 2449 / 2390,
  25140. bottom: 46 / 2494
  25141. }
  25142. },
  25143. back: {
  25144. height: math.unit(100, "feet"),
  25145. name: "Back",
  25146. image: {
  25147. source: "./media/characters/erza-bear/back.svg",
  25148. extra: 2489 / 2430,
  25149. bottom: 85.4 / 2480
  25150. }
  25151. },
  25152. tail: {
  25153. height: math.unit(42, "feet"),
  25154. name: "Tail",
  25155. image: {
  25156. source: "./media/characters/erza-bear/tail.svg"
  25157. }
  25158. },
  25159. tongue: {
  25160. height: math.unit(8, "feet"),
  25161. name: "Tongue",
  25162. image: {
  25163. source: "./media/characters/erza-bear/tongue.svg"
  25164. }
  25165. },
  25166. dick: {
  25167. height: math.unit(10.5, "feet"),
  25168. name: "Dick",
  25169. image: {
  25170. source: "./media/characters/erza-bear/dick.svg"
  25171. }
  25172. },
  25173. dickVertical: {
  25174. height: math.unit(16.9, "feet"),
  25175. name: "Dick (Vertical)",
  25176. image: {
  25177. source: "./media/characters/erza-bear/dick-vertical.svg"
  25178. }
  25179. },
  25180. },
  25181. [
  25182. {
  25183. name: "Macro",
  25184. height: math.unit(100, "feet"),
  25185. default: true
  25186. },
  25187. ]
  25188. ))
  25189. characterMakers.push(() => makeCharacter(
  25190. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  25191. {
  25192. front: {
  25193. height: math.unit(172, "cm"),
  25194. weight: math.unit(73, "kg"),
  25195. name: "Front",
  25196. image: {
  25197. source: "./media/characters/violet-flor/front.svg",
  25198. extra: 1530 / 1442,
  25199. bottom: 61.9 / 1588.8
  25200. }
  25201. },
  25202. back: {
  25203. height: math.unit(180, "cm"),
  25204. weight: math.unit(73, "kg"),
  25205. name: "Back",
  25206. image: {
  25207. source: "./media/characters/violet-flor/back.svg",
  25208. extra: 1692 / 1630,
  25209. bottom: 20 / 1712
  25210. }
  25211. },
  25212. },
  25213. [
  25214. {
  25215. name: "Normal",
  25216. height: math.unit(172, "cm"),
  25217. default: true
  25218. },
  25219. ]
  25220. ))
  25221. characterMakers.push(() => makeCharacter(
  25222. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  25223. {
  25224. front: {
  25225. height: math.unit(6, "feet"),
  25226. weight: math.unit(220, "lb"),
  25227. name: "Front",
  25228. image: {
  25229. source: "./media/characters/lynn-rhea/front.svg",
  25230. extra: 310 / 273
  25231. }
  25232. },
  25233. back: {
  25234. height: math.unit(6, "feet"),
  25235. weight: math.unit(220, "lb"),
  25236. name: "Back",
  25237. image: {
  25238. source: "./media/characters/lynn-rhea/back.svg",
  25239. extra: 310 / 273
  25240. }
  25241. },
  25242. dicks: {
  25243. height: math.unit(0.9, "feet"),
  25244. name: "Dicks",
  25245. image: {
  25246. source: "./media/characters/lynn-rhea/dicks.svg"
  25247. }
  25248. },
  25249. slit: {
  25250. height: math.unit(0.4, "feet"),
  25251. name: "Slit",
  25252. image: {
  25253. source: "./media/characters/lynn-rhea/slit.svg"
  25254. }
  25255. },
  25256. },
  25257. [
  25258. {
  25259. name: "Micro",
  25260. height: math.unit(1, "inch")
  25261. },
  25262. {
  25263. name: "Macro",
  25264. height: math.unit(60, "feet"),
  25265. default: true
  25266. },
  25267. {
  25268. name: "Megamacro",
  25269. height: math.unit(2, "miles")
  25270. },
  25271. {
  25272. name: "Gigamacro",
  25273. height: math.unit(3, "earths")
  25274. },
  25275. {
  25276. name: "Galactic",
  25277. height: math.unit(0.8, "galaxies")
  25278. },
  25279. ]
  25280. ))
  25281. characterMakers.push(() => makeCharacter(
  25282. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  25283. {
  25284. front: {
  25285. height: math.unit(1600, "feet"),
  25286. weight: math.unit(85758785169, "kg"),
  25287. name: "Front",
  25288. image: {
  25289. source: "./media/characters/valathos/front.svg",
  25290. extra: 1451 / 1339
  25291. }
  25292. },
  25293. },
  25294. [
  25295. {
  25296. name: "Macro",
  25297. height: math.unit(1600, "feet"),
  25298. default: true
  25299. },
  25300. ]
  25301. ))
  25302. characterMakers.push(() => makeCharacter(
  25303. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  25304. {
  25305. front: {
  25306. height: math.unit(7 + 5 / 12, "feet"),
  25307. weight: math.unit(300, "lb"),
  25308. name: "Front",
  25309. image: {
  25310. source: "./media/characters/azula/front.svg",
  25311. extra: 3208 / 2880,
  25312. bottom: 80.2 / 3277
  25313. }
  25314. },
  25315. back: {
  25316. height: math.unit(7 + 5 / 12, "feet"),
  25317. weight: math.unit(300, "lb"),
  25318. name: "Back",
  25319. image: {
  25320. source: "./media/characters/azula/back.svg",
  25321. extra: 3169 / 2822,
  25322. bottom: 150.6 / 3321
  25323. }
  25324. },
  25325. },
  25326. [
  25327. {
  25328. name: "Normal",
  25329. height: math.unit(7 + 5 / 12, "feet"),
  25330. default: true
  25331. },
  25332. {
  25333. name: "Big",
  25334. height: math.unit(20, "feet")
  25335. },
  25336. ]
  25337. ))
  25338. characterMakers.push(() => makeCharacter(
  25339. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  25340. {
  25341. front: {
  25342. height: math.unit(5 + 1 / 12, "feet"),
  25343. weight: math.unit(110, "lb"),
  25344. name: "Front",
  25345. image: {
  25346. source: "./media/characters/rupert/front.svg",
  25347. extra: 1549 / 1495,
  25348. bottom: 54.2 / 1604.4
  25349. }
  25350. },
  25351. },
  25352. [
  25353. {
  25354. name: "Normal",
  25355. height: math.unit(5 + 1 / 12, "feet"),
  25356. default: true
  25357. },
  25358. ]
  25359. ))
  25360. characterMakers.push(() => makeCharacter(
  25361. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  25362. {
  25363. front: {
  25364. height: math.unit(8 + 4 / 12, "feet"),
  25365. weight: math.unit(350, "lb"),
  25366. name: "Front",
  25367. image: {
  25368. source: "./media/characters/sheera-castellar/front.svg",
  25369. extra: 1957 / 1894,
  25370. bottom: 26.97 / 1975.017
  25371. }
  25372. },
  25373. side: {
  25374. height: math.unit(8 + 4 / 12, "feet"),
  25375. weight: math.unit(350, "lb"),
  25376. name: "Side",
  25377. image: {
  25378. source: "./media/characters/sheera-castellar/side.svg",
  25379. extra: 1957 / 1894
  25380. }
  25381. },
  25382. back: {
  25383. height: math.unit(8 + 4 / 12, "feet"),
  25384. weight: math.unit(350, "lb"),
  25385. name: "Back",
  25386. image: {
  25387. source: "./media/characters/sheera-castellar/back.svg",
  25388. extra: 1957 / 1894
  25389. }
  25390. },
  25391. angled: {
  25392. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  25393. weight: math.unit(350, "lb"),
  25394. name: "Angled",
  25395. image: {
  25396. source: "./media/characters/sheera-castellar/angled.svg",
  25397. extra: 1807 / 1707,
  25398. bottom: 68 / 1875
  25399. }
  25400. },
  25401. genitals: {
  25402. height: math.unit(2.2, "feet"),
  25403. name: "Genitals",
  25404. image: {
  25405. source: "./media/characters/sheera-castellar/genitals.svg"
  25406. }
  25407. },
  25408. taur: {
  25409. height: math.unit(10 + 6/12, "feet"),
  25410. name: "Taur",
  25411. image: {
  25412. source: "./media/characters/sheera-castellar/taur.svg",
  25413. extra: 2017/1909,
  25414. bottom: 185/2202
  25415. }
  25416. },
  25417. },
  25418. [
  25419. {
  25420. name: "Normal",
  25421. height: math.unit(8 + 4 / 12, "feet")
  25422. },
  25423. {
  25424. name: "Macro",
  25425. height: math.unit(150, "feet"),
  25426. default: true
  25427. },
  25428. {
  25429. name: "Macro+",
  25430. height: math.unit(800, "feet")
  25431. },
  25432. ]
  25433. ))
  25434. characterMakers.push(() => makeCharacter(
  25435. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  25436. {
  25437. front: {
  25438. height: math.unit(6, "feet"),
  25439. weight: math.unit(150, "lb"),
  25440. name: "Front",
  25441. image: {
  25442. source: "./media/characters/jaipur/front.svg",
  25443. extra: 3860 / 3731,
  25444. bottom: 287 / 4140
  25445. }
  25446. },
  25447. back: {
  25448. height: math.unit(6, "feet"),
  25449. weight: math.unit(150, "lb"),
  25450. name: "Back",
  25451. image: {
  25452. source: "./media/characters/jaipur/back.svg",
  25453. extra: 1637/1561,
  25454. bottom: 154/1791
  25455. }
  25456. },
  25457. },
  25458. [
  25459. {
  25460. name: "Normal",
  25461. height: math.unit(1.85, "meters"),
  25462. default: true
  25463. },
  25464. {
  25465. name: "Macro",
  25466. height: math.unit(150, "meters")
  25467. },
  25468. {
  25469. name: "Macro+",
  25470. height: math.unit(0.5, "miles")
  25471. },
  25472. {
  25473. name: "Macro++",
  25474. height: math.unit(2.5, "miles")
  25475. },
  25476. {
  25477. name: "Macro+++",
  25478. height: math.unit(12, "miles")
  25479. },
  25480. {
  25481. name: "Macro++++",
  25482. height: math.unit(120, "miles")
  25483. },
  25484. {
  25485. name: "Macro+++++",
  25486. height: math.unit(1200, "miles")
  25487. },
  25488. ]
  25489. ))
  25490. characterMakers.push(() => makeCharacter(
  25491. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  25492. {
  25493. front: {
  25494. height: math.unit(6, "feet"),
  25495. weight: math.unit(150, "lb"),
  25496. name: "Front",
  25497. image: {
  25498. source: "./media/characters/sheila-wolf/front.svg",
  25499. extra: 1931 / 1808,
  25500. bottom: 29.5 / 1960
  25501. }
  25502. },
  25503. dick: {
  25504. height: math.unit(1.464, "feet"),
  25505. name: "Dick",
  25506. image: {
  25507. source: "./media/characters/sheila-wolf/dick.svg"
  25508. }
  25509. },
  25510. muzzle: {
  25511. height: math.unit(0.513, "feet"),
  25512. name: "Muzzle",
  25513. image: {
  25514. source: "./media/characters/sheila-wolf/muzzle.svg"
  25515. }
  25516. },
  25517. },
  25518. [
  25519. {
  25520. name: "Macro",
  25521. height: math.unit(70, "feet"),
  25522. default: true
  25523. },
  25524. ]
  25525. ))
  25526. characterMakers.push(() => makeCharacter(
  25527. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  25528. {
  25529. front: {
  25530. height: math.unit(32, "meters"),
  25531. weight: math.unit(300000, "kg"),
  25532. name: "Front",
  25533. image: {
  25534. source: "./media/characters/almor/front.svg",
  25535. extra: 1408 / 1322,
  25536. bottom: 94.6 / 1506.5
  25537. }
  25538. },
  25539. },
  25540. [
  25541. {
  25542. name: "Macro",
  25543. height: math.unit(32, "meters"),
  25544. default: true
  25545. },
  25546. ]
  25547. ))
  25548. characterMakers.push(() => makeCharacter(
  25549. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  25550. {
  25551. front: {
  25552. height: math.unit(7, "feet"),
  25553. weight: math.unit(200, "lb"),
  25554. name: "Front",
  25555. image: {
  25556. source: "./media/characters/silver/front.svg",
  25557. extra: 472.1 / 450.5,
  25558. bottom: 26.5 / 499.424
  25559. }
  25560. },
  25561. },
  25562. [
  25563. {
  25564. name: "Normal",
  25565. height: math.unit(7, "feet"),
  25566. default: true
  25567. },
  25568. {
  25569. name: "Macro",
  25570. height: math.unit(800, "feet")
  25571. },
  25572. {
  25573. name: "Megamacro",
  25574. height: math.unit(250, "miles")
  25575. },
  25576. ]
  25577. ))
  25578. characterMakers.push(() => makeCharacter(
  25579. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  25580. {
  25581. front: {
  25582. height: math.unit(6, "feet"),
  25583. weight: math.unit(150, "lb"),
  25584. name: "Front",
  25585. image: {
  25586. source: "./media/characters/pliskin/front.svg",
  25587. extra: 1469 / 1359,
  25588. bottom: 70 / 1540
  25589. }
  25590. },
  25591. },
  25592. [
  25593. {
  25594. name: "Micro",
  25595. height: math.unit(3, "inches")
  25596. },
  25597. {
  25598. name: "Normal",
  25599. height: math.unit(5 + 11 / 12, "feet"),
  25600. default: true
  25601. },
  25602. {
  25603. name: "Macro",
  25604. height: math.unit(120, "feet")
  25605. },
  25606. ]
  25607. ))
  25608. characterMakers.push(() => makeCharacter(
  25609. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  25610. {
  25611. front: {
  25612. height: math.unit(6, "feet"),
  25613. weight: math.unit(150, "lb"),
  25614. name: "Front",
  25615. image: {
  25616. source: "./media/characters/sammy/front.svg",
  25617. extra: 1193 / 1089,
  25618. bottom: 30.5 / 1226
  25619. }
  25620. },
  25621. },
  25622. [
  25623. {
  25624. name: "Macro",
  25625. height: math.unit(1700, "feet"),
  25626. default: true
  25627. },
  25628. {
  25629. name: "Examacro",
  25630. height: math.unit(2.5e9, "lightyears")
  25631. },
  25632. ]
  25633. ))
  25634. characterMakers.push(() => makeCharacter(
  25635. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  25636. {
  25637. front: {
  25638. height: math.unit(21, "meters"),
  25639. weight: math.unit(12, "tonnes"),
  25640. name: "Front",
  25641. image: {
  25642. source: "./media/characters/kuru/front.svg",
  25643. extra: 4301 / 3785,
  25644. bottom: 371.3 / 4691
  25645. }
  25646. },
  25647. },
  25648. [
  25649. {
  25650. name: "Macro",
  25651. height: math.unit(21, "meters"),
  25652. default: true
  25653. },
  25654. ]
  25655. ))
  25656. characterMakers.push(() => makeCharacter(
  25657. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  25658. {
  25659. front: {
  25660. height: math.unit(23, "meters"),
  25661. weight: math.unit(12.2, "tonnes"),
  25662. name: "Front",
  25663. image: {
  25664. source: "./media/characters/rakka/front.svg",
  25665. extra: 4670 / 4169,
  25666. bottom: 301 / 4968.7
  25667. }
  25668. },
  25669. },
  25670. [
  25671. {
  25672. name: "Macro",
  25673. height: math.unit(23, "meters"),
  25674. default: true
  25675. },
  25676. ]
  25677. ))
  25678. characterMakers.push(() => makeCharacter(
  25679. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  25680. {
  25681. front: {
  25682. height: math.unit(6, "feet"),
  25683. weight: math.unit(150, "lb"),
  25684. name: "Front",
  25685. image: {
  25686. source: "./media/characters/rhys-feline/front.svg",
  25687. extra: 2488 / 2308,
  25688. bottom: 35.67 / 2519.19
  25689. }
  25690. },
  25691. },
  25692. [
  25693. {
  25694. name: "Really Small",
  25695. height: math.unit(1, "nm")
  25696. },
  25697. {
  25698. name: "Micro",
  25699. height: math.unit(4, "inches")
  25700. },
  25701. {
  25702. name: "Normal",
  25703. height: math.unit(4 + 10 / 12, "feet"),
  25704. default: true
  25705. },
  25706. {
  25707. name: "Macro",
  25708. height: math.unit(100, "feet")
  25709. },
  25710. {
  25711. name: "Megamacto",
  25712. height: math.unit(50, "miles")
  25713. },
  25714. ]
  25715. ))
  25716. characterMakers.push(() => makeCharacter(
  25717. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  25718. {
  25719. side: {
  25720. height: math.unit(30, "feet"),
  25721. weight: math.unit(35000, "kg"),
  25722. name: "Side",
  25723. image: {
  25724. source: "./media/characters/alydar/side.svg",
  25725. extra: 234 / 222,
  25726. bottom: 6.5 / 241
  25727. }
  25728. },
  25729. front: {
  25730. height: math.unit(30, "feet"),
  25731. weight: math.unit(35000, "kg"),
  25732. name: "Front",
  25733. image: {
  25734. source: "./media/characters/alydar/front.svg",
  25735. extra: 223.37 / 210.2,
  25736. bottom: 22.3 / 246.76
  25737. }
  25738. },
  25739. top: {
  25740. height: math.unit(64.54, "feet"),
  25741. weight: math.unit(35000, "kg"),
  25742. name: "Top",
  25743. image: {
  25744. source: "./media/characters/alydar/top.svg"
  25745. }
  25746. },
  25747. anthro: {
  25748. height: math.unit(30, "feet"),
  25749. weight: math.unit(9000, "kg"),
  25750. name: "Anthro",
  25751. image: {
  25752. source: "./media/characters/alydar/anthro.svg",
  25753. extra: 432 / 421,
  25754. bottom: 7.18 / 440
  25755. }
  25756. },
  25757. maw: {
  25758. height: math.unit(11.693, "feet"),
  25759. name: "Maw",
  25760. image: {
  25761. source: "./media/characters/alydar/maw.svg"
  25762. }
  25763. },
  25764. head: {
  25765. height: math.unit(11.693, "feet"),
  25766. name: "Head",
  25767. image: {
  25768. source: "./media/characters/alydar/head.svg"
  25769. }
  25770. },
  25771. headAlt: {
  25772. height: math.unit(12.861, "feet"),
  25773. name: "Head (Alt)",
  25774. image: {
  25775. source: "./media/characters/alydar/head-alt.svg"
  25776. }
  25777. },
  25778. wing: {
  25779. height: math.unit(20.712, "feet"),
  25780. name: "Wing",
  25781. image: {
  25782. source: "./media/characters/alydar/wing.svg"
  25783. }
  25784. },
  25785. wingFeather: {
  25786. height: math.unit(9.662, "feet"),
  25787. name: "Wing Feather",
  25788. image: {
  25789. source: "./media/characters/alydar/wing-feather.svg"
  25790. }
  25791. },
  25792. countourFeather: {
  25793. height: math.unit(4.154, "feet"),
  25794. name: "Contour Feather",
  25795. image: {
  25796. source: "./media/characters/alydar/contour-feather.svg"
  25797. }
  25798. },
  25799. },
  25800. [
  25801. {
  25802. name: "Diplomatic",
  25803. height: math.unit(13, "feet"),
  25804. default: true
  25805. },
  25806. {
  25807. name: "Small",
  25808. height: math.unit(30, "feet")
  25809. },
  25810. {
  25811. name: "Normal",
  25812. height: math.unit(95, "feet"),
  25813. default: true
  25814. },
  25815. {
  25816. name: "Large",
  25817. height: math.unit(285, "feet")
  25818. },
  25819. {
  25820. name: "Incomprehensible",
  25821. height: math.unit(450, "megameters")
  25822. },
  25823. ]
  25824. ))
  25825. characterMakers.push(() => makeCharacter(
  25826. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  25827. {
  25828. side: {
  25829. height: math.unit(11, "feet"),
  25830. weight: math.unit(1750, "kg"),
  25831. name: "Side",
  25832. image: {
  25833. source: "./media/characters/selicia/side.svg",
  25834. extra: 440 / 396,
  25835. bottom: 24.8 / 465.979
  25836. }
  25837. },
  25838. maw: {
  25839. height: math.unit(4.665, "feet"),
  25840. name: "Maw",
  25841. image: {
  25842. source: "./media/characters/selicia/maw.svg"
  25843. }
  25844. },
  25845. },
  25846. [
  25847. {
  25848. name: "Normal",
  25849. height: math.unit(11, "feet"),
  25850. default: true
  25851. },
  25852. ]
  25853. ))
  25854. characterMakers.push(() => makeCharacter(
  25855. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  25856. {
  25857. side: {
  25858. height: math.unit(2 + 6 / 12, "feet"),
  25859. weight: math.unit(30, "lb"),
  25860. name: "Side",
  25861. image: {
  25862. source: "./media/characters/layla/side.svg",
  25863. extra: 244 / 188,
  25864. bottom: 18.2 / 262.1
  25865. }
  25866. },
  25867. back: {
  25868. height: math.unit(2 + 6 / 12, "feet"),
  25869. weight: math.unit(30, "lb"),
  25870. name: "Back",
  25871. image: {
  25872. source: "./media/characters/layla/back.svg",
  25873. extra: 308 / 241.5,
  25874. bottom: 8.9 / 316.8
  25875. }
  25876. },
  25877. cumming: {
  25878. height: math.unit(2 + 6 / 12, "feet"),
  25879. weight: math.unit(30, "lb"),
  25880. name: "Cumming",
  25881. image: {
  25882. source: "./media/characters/layla/cumming.svg",
  25883. extra: 342 / 279,
  25884. bottom: 595 / 938
  25885. }
  25886. },
  25887. dickFlaccid: {
  25888. height: math.unit(2.595, "feet"),
  25889. name: "Flaccid Genitals",
  25890. image: {
  25891. source: "./media/characters/layla/dick-flaccid.svg"
  25892. }
  25893. },
  25894. dickErect: {
  25895. height: math.unit(2.359, "feet"),
  25896. name: "Erect Genitals",
  25897. image: {
  25898. source: "./media/characters/layla/dick-erect.svg"
  25899. }
  25900. },
  25901. dragon: {
  25902. height: math.unit(40, "feet"),
  25903. name: "Dragon",
  25904. image: {
  25905. source: "./media/characters/layla/dragon.svg",
  25906. extra: 610/535,
  25907. bottom: 367/977
  25908. }
  25909. },
  25910. taur: {
  25911. height: math.unit(30, "feet"),
  25912. name: "Taur",
  25913. image: {
  25914. source: "./media/characters/layla/taur.svg",
  25915. extra: 1268/1199,
  25916. bottom: 112/1380
  25917. }
  25918. },
  25919. },
  25920. [
  25921. {
  25922. name: "Micro",
  25923. height: math.unit(1, "inch")
  25924. },
  25925. {
  25926. name: "Small",
  25927. height: math.unit(1, "foot")
  25928. },
  25929. {
  25930. name: "Normal",
  25931. height: math.unit(2 + 6 / 12, "feet"),
  25932. default: true
  25933. },
  25934. {
  25935. name: "Macro",
  25936. height: math.unit(200, "feet")
  25937. },
  25938. {
  25939. name: "Megamacro",
  25940. height: math.unit(1000, "miles")
  25941. },
  25942. {
  25943. name: "Planetary",
  25944. height: math.unit(8000, "miles")
  25945. },
  25946. {
  25947. name: "True Layla",
  25948. height: math.unit(200000 * 7, "multiverses")
  25949. },
  25950. ]
  25951. ))
  25952. characterMakers.push(() => makeCharacter(
  25953. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  25954. {
  25955. back: {
  25956. height: math.unit(10.5, "feet"),
  25957. weight: math.unit(800, "lb"),
  25958. name: "Back",
  25959. image: {
  25960. source: "./media/characters/knox/back.svg",
  25961. extra: 1486 / 1089,
  25962. bottom: 107 / 1601.4
  25963. }
  25964. },
  25965. side: {
  25966. height: math.unit(10.5, "feet"),
  25967. weight: math.unit(800, "lb"),
  25968. name: "Side",
  25969. image: {
  25970. source: "./media/characters/knox/side.svg",
  25971. extra: 244 / 218,
  25972. bottom: 14 / 260
  25973. }
  25974. },
  25975. },
  25976. [
  25977. {
  25978. name: "Compact",
  25979. height: math.unit(10.5, "feet"),
  25980. default: true
  25981. },
  25982. {
  25983. name: "Dynamax",
  25984. height: math.unit(210, "feet")
  25985. },
  25986. {
  25987. name: "Full Macro",
  25988. height: math.unit(850, "feet")
  25989. },
  25990. ]
  25991. ))
  25992. characterMakers.push(() => makeCharacter(
  25993. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  25994. {
  25995. front: {
  25996. height: math.unit(28, "feet"),
  25997. weight: math.unit(10500, "lb"),
  25998. name: "Front",
  25999. image: {
  26000. source: "./media/characters/kayda/front.svg",
  26001. extra: 1536 / 1428,
  26002. bottom: 68.7 / 1603
  26003. }
  26004. },
  26005. back: {
  26006. height: math.unit(28, "feet"),
  26007. weight: math.unit(10500, "lb"),
  26008. name: "Back",
  26009. image: {
  26010. source: "./media/characters/kayda/back.svg",
  26011. extra: 1557 / 1464,
  26012. bottom: 39.5 / 1597.49
  26013. }
  26014. },
  26015. dick: {
  26016. height: math.unit(3.858, "feet"),
  26017. name: "Dick",
  26018. image: {
  26019. source: "./media/characters/kayda/dick.svg"
  26020. }
  26021. },
  26022. },
  26023. [
  26024. {
  26025. name: "Macro",
  26026. height: math.unit(28, "feet"),
  26027. default: true
  26028. },
  26029. ]
  26030. ))
  26031. characterMakers.push(() => makeCharacter(
  26032. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  26033. {
  26034. front: {
  26035. height: math.unit(10 + 11 / 12, "feet"),
  26036. weight: math.unit(1400, "lb"),
  26037. name: "Front",
  26038. image: {
  26039. source: "./media/characters/brian/front.svg",
  26040. extra: 737 / 692,
  26041. bottom: 55.4 / 785
  26042. }
  26043. },
  26044. },
  26045. [
  26046. {
  26047. name: "Normal",
  26048. height: math.unit(10 + 11 / 12, "feet"),
  26049. default: true
  26050. },
  26051. ]
  26052. ))
  26053. characterMakers.push(() => makeCharacter(
  26054. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  26055. {
  26056. front: {
  26057. height: math.unit(5 + 8 / 12, "feet"),
  26058. weight: math.unit(140, "lb"),
  26059. name: "Front",
  26060. image: {
  26061. source: "./media/characters/khemri/front.svg",
  26062. extra: 4780 / 4059,
  26063. bottom: 80.1 / 4859.25
  26064. }
  26065. },
  26066. },
  26067. [
  26068. {
  26069. name: "Micro",
  26070. height: math.unit(6, "inches")
  26071. },
  26072. {
  26073. name: "Normal",
  26074. height: math.unit(5 + 8 / 12, "feet"),
  26075. default: true
  26076. },
  26077. ]
  26078. ))
  26079. characterMakers.push(() => makeCharacter(
  26080. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  26081. {
  26082. front: {
  26083. height: math.unit(13, "feet"),
  26084. weight: math.unit(1700, "lb"),
  26085. name: "Front",
  26086. image: {
  26087. source: "./media/characters/felix-braveheart/front.svg",
  26088. extra: 1222 / 1157,
  26089. bottom: 53.2 / 1280
  26090. }
  26091. },
  26092. back: {
  26093. height: math.unit(13, "feet"),
  26094. weight: math.unit(1700, "lb"),
  26095. name: "Back",
  26096. image: {
  26097. source: "./media/characters/felix-braveheart/back.svg",
  26098. extra: 1277 / 1203,
  26099. bottom: 50.2 / 1327
  26100. }
  26101. },
  26102. feral: {
  26103. height: math.unit(6, "feet"),
  26104. weight: math.unit(400, "lb"),
  26105. name: "Feral",
  26106. image: {
  26107. source: "./media/characters/felix-braveheart/feral.svg",
  26108. extra: 682 / 625,
  26109. bottom: 6.9 / 688
  26110. }
  26111. },
  26112. },
  26113. [
  26114. {
  26115. name: "Normal",
  26116. height: math.unit(13, "feet"),
  26117. default: true
  26118. },
  26119. ]
  26120. ))
  26121. characterMakers.push(() => makeCharacter(
  26122. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  26123. {
  26124. side: {
  26125. height: math.unit(5 + 11 / 12, "feet"),
  26126. weight: math.unit(1400, "lb"),
  26127. name: "Side",
  26128. image: {
  26129. source: "./media/characters/shadow-blade/side.svg",
  26130. extra: 1726 / 1267,
  26131. bottom: 58.4 / 1785
  26132. }
  26133. },
  26134. },
  26135. [
  26136. {
  26137. name: "Normal",
  26138. height: math.unit(5 + 11 / 12, "feet"),
  26139. default: true
  26140. },
  26141. ]
  26142. ))
  26143. characterMakers.push(() => makeCharacter(
  26144. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  26145. {
  26146. front: {
  26147. height: math.unit(1 + 6 / 12, "feet"),
  26148. weight: math.unit(25, "lb"),
  26149. name: "Front",
  26150. image: {
  26151. source: "./media/characters/karla-halldor/front.svg",
  26152. extra: 1459 / 1383,
  26153. bottom: 12 / 1472
  26154. }
  26155. },
  26156. },
  26157. [
  26158. {
  26159. name: "Normal",
  26160. height: math.unit(1 + 6 / 12, "feet"),
  26161. default: true
  26162. },
  26163. ]
  26164. ))
  26165. characterMakers.push(() => makeCharacter(
  26166. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  26167. {
  26168. front: {
  26169. height: math.unit(6 + 2 / 12, "feet"),
  26170. weight: math.unit(160, "lb"),
  26171. name: "Front",
  26172. image: {
  26173. source: "./media/characters/ariam/front.svg",
  26174. extra: 1073/976,
  26175. bottom: 52/1125
  26176. }
  26177. },
  26178. back: {
  26179. height: math.unit(6 + 2/12, "feet"),
  26180. weight: math.unit(160, "lb"),
  26181. name: "Back",
  26182. image: {
  26183. source: "./media/characters/ariam/back.svg",
  26184. extra: 1103/1023,
  26185. bottom: 9/1112
  26186. }
  26187. },
  26188. dressed: {
  26189. height: math.unit(6 + 2/12, "feet"),
  26190. weight: math.unit(160, "lb"),
  26191. name: "Dressed",
  26192. image: {
  26193. source: "./media/characters/ariam/dressed.svg",
  26194. extra: 1099/1009,
  26195. bottom: 25/1124
  26196. }
  26197. },
  26198. squatting: {
  26199. height: math.unit(4.1, "feet"),
  26200. weight: math.unit(160, "lb"),
  26201. name: "Squatting",
  26202. image: {
  26203. source: "./media/characters/ariam/squatting.svg",
  26204. extra: 2617 / 2112,
  26205. bottom: 61.2 / 2681,
  26206. }
  26207. },
  26208. },
  26209. [
  26210. {
  26211. name: "Normal",
  26212. height: math.unit(6 + 2 / 12, "feet"),
  26213. default: true
  26214. },
  26215. {
  26216. name: "Normal+",
  26217. height: math.unit(4, "meters")
  26218. },
  26219. {
  26220. name: "Macro",
  26221. height: math.unit(50, "meters")
  26222. },
  26223. {
  26224. name: "Macro+",
  26225. height: math.unit(100, "meters")
  26226. },
  26227. {
  26228. name: "Megamacro",
  26229. height: math.unit(20, "km")
  26230. },
  26231. {
  26232. name: "Caretaker",
  26233. height: math.unit(444, "megameters")
  26234. },
  26235. ]
  26236. ))
  26237. characterMakers.push(() => makeCharacter(
  26238. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  26239. {
  26240. front: {
  26241. height: math.unit(1.67, "meters"),
  26242. weight: math.unit(140, "lb"),
  26243. name: "Front",
  26244. image: {
  26245. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  26246. extra: 438 / 410,
  26247. bottom: 0.75 / 439
  26248. }
  26249. },
  26250. },
  26251. [
  26252. {
  26253. name: "Shrunken",
  26254. height: math.unit(7.6, "cm")
  26255. },
  26256. {
  26257. name: "Human Scale",
  26258. height: math.unit(1.67, "meters")
  26259. },
  26260. {
  26261. name: "Wolxi Scale",
  26262. height: math.unit(36.7, "meters"),
  26263. default: true
  26264. },
  26265. ]
  26266. ))
  26267. characterMakers.push(() => makeCharacter(
  26268. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  26269. {
  26270. front: {
  26271. height: math.unit(1.73, "meters"),
  26272. weight: math.unit(240, "lb"),
  26273. name: "Front",
  26274. image: {
  26275. source: "./media/characters/izue-two-mothers/front.svg",
  26276. extra: 469 / 437,
  26277. bottom: 1.24 / 470.6
  26278. }
  26279. },
  26280. },
  26281. [
  26282. {
  26283. name: "Shrunken",
  26284. height: math.unit(7.86, "cm")
  26285. },
  26286. {
  26287. name: "Human Scale",
  26288. height: math.unit(1.73, "meters")
  26289. },
  26290. {
  26291. name: "Wolxi Scale",
  26292. height: math.unit(38, "meters"),
  26293. default: true
  26294. },
  26295. ]
  26296. ))
  26297. characterMakers.push(() => makeCharacter(
  26298. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  26299. {
  26300. front: {
  26301. height: math.unit(1.55, "meters"),
  26302. weight: math.unit(120, "lb"),
  26303. name: "Front",
  26304. image: {
  26305. source: "./media/characters/teeku-love-shack/front.svg",
  26306. extra: 387 / 362,
  26307. bottom: 1.51 / 388
  26308. }
  26309. },
  26310. },
  26311. [
  26312. {
  26313. name: "Shrunken",
  26314. height: math.unit(7, "cm")
  26315. },
  26316. {
  26317. name: "Human Scale",
  26318. height: math.unit(1.55, "meters")
  26319. },
  26320. {
  26321. name: "Wolxi Scale",
  26322. height: math.unit(34.1, "meters"),
  26323. default: true
  26324. },
  26325. ]
  26326. ))
  26327. characterMakers.push(() => makeCharacter(
  26328. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  26329. {
  26330. front: {
  26331. height: math.unit(1.83, "meters"),
  26332. weight: math.unit(135, "lb"),
  26333. name: "Front",
  26334. image: {
  26335. source: "./media/characters/dejma-the-red/front.svg",
  26336. extra: 480 / 458,
  26337. bottom: 1.8 / 482
  26338. }
  26339. },
  26340. },
  26341. [
  26342. {
  26343. name: "Shrunken",
  26344. height: math.unit(8.3, "cm")
  26345. },
  26346. {
  26347. name: "Human Scale",
  26348. height: math.unit(1.83, "meters")
  26349. },
  26350. {
  26351. name: "Wolxi Scale",
  26352. height: math.unit(40, "meters"),
  26353. default: true
  26354. },
  26355. ]
  26356. ))
  26357. characterMakers.push(() => makeCharacter(
  26358. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  26359. {
  26360. front: {
  26361. height: math.unit(1.78, "meters"),
  26362. weight: math.unit(65, "kg"),
  26363. name: "Front",
  26364. image: {
  26365. source: "./media/characters/aki/front.svg",
  26366. extra: 452 / 415
  26367. }
  26368. },
  26369. frontNsfw: {
  26370. height: math.unit(1.78, "meters"),
  26371. weight: math.unit(65, "kg"),
  26372. name: "Front (NSFW)",
  26373. image: {
  26374. source: "./media/characters/aki/front-nsfw.svg",
  26375. extra: 452 / 415
  26376. }
  26377. },
  26378. back: {
  26379. height: math.unit(1.78, "meters"),
  26380. weight: math.unit(65, "kg"),
  26381. name: "Back",
  26382. image: {
  26383. source: "./media/characters/aki/back.svg",
  26384. extra: 452 / 415
  26385. }
  26386. },
  26387. rump: {
  26388. height: math.unit(2.05, "feet"),
  26389. name: "Rump",
  26390. image: {
  26391. source: "./media/characters/aki/rump.svg"
  26392. }
  26393. },
  26394. dick: {
  26395. height: math.unit(0.95, "feet"),
  26396. name: "Dick",
  26397. image: {
  26398. source: "./media/characters/aki/dick.svg"
  26399. }
  26400. },
  26401. },
  26402. [
  26403. {
  26404. name: "Micro",
  26405. height: math.unit(15, "cm")
  26406. },
  26407. {
  26408. name: "Normal",
  26409. height: math.unit(178, "cm"),
  26410. default: true
  26411. },
  26412. {
  26413. name: "Macro",
  26414. height: math.unit(214, "m")
  26415. },
  26416. {
  26417. name: "Macro+",
  26418. height: math.unit(534, "m")
  26419. },
  26420. ]
  26421. ))
  26422. characterMakers.push(() => makeCharacter(
  26423. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  26424. {
  26425. front: {
  26426. height: math.unit(5 + 5 / 12, "feet"),
  26427. weight: math.unit(120, "lb"),
  26428. name: "Front",
  26429. image: {
  26430. source: "./media/characters/ari/front.svg",
  26431. extra: 1550/1471,
  26432. bottom: 39/1589
  26433. }
  26434. },
  26435. },
  26436. [
  26437. {
  26438. name: "Normal",
  26439. height: math.unit(5 + 5 / 12, "feet")
  26440. },
  26441. {
  26442. name: "Macro",
  26443. height: math.unit(100, "feet"),
  26444. default: true
  26445. },
  26446. {
  26447. name: "Megamacro",
  26448. height: math.unit(100, "miles")
  26449. },
  26450. {
  26451. name: "Gigamacro",
  26452. height: math.unit(80000, "miles")
  26453. },
  26454. ]
  26455. ))
  26456. characterMakers.push(() => makeCharacter(
  26457. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  26458. {
  26459. side: {
  26460. height: math.unit(9, "feet"),
  26461. weight: math.unit(400, "kg"),
  26462. name: "Side",
  26463. image: {
  26464. source: "./media/characters/bolt/side.svg",
  26465. extra: 1126 / 896,
  26466. bottom: 60 / 1187.3,
  26467. }
  26468. },
  26469. },
  26470. [
  26471. {
  26472. name: "Micro",
  26473. height: math.unit(5, "inches")
  26474. },
  26475. {
  26476. name: "Normal",
  26477. height: math.unit(9, "feet"),
  26478. default: true
  26479. },
  26480. {
  26481. name: "Macro",
  26482. height: math.unit(700, "feet")
  26483. },
  26484. {
  26485. name: "Max Size",
  26486. height: math.unit(1.52e22, "yottameters")
  26487. },
  26488. ]
  26489. ))
  26490. characterMakers.push(() => makeCharacter(
  26491. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  26492. {
  26493. front: {
  26494. height: math.unit(4.3, "meters"),
  26495. weight: math.unit(3, "tons"),
  26496. name: "Front",
  26497. image: {
  26498. source: "./media/characters/draekon-sylviar/front.svg",
  26499. extra: 2072/1512,
  26500. bottom: 74/2146
  26501. }
  26502. },
  26503. back: {
  26504. height: math.unit(4.3, "meters"),
  26505. weight: math.unit(3, "tons"),
  26506. name: "Back",
  26507. image: {
  26508. source: "./media/characters/draekon-sylviar/back.svg",
  26509. extra: 1639/1483,
  26510. bottom: 41/1680
  26511. }
  26512. },
  26513. feral: {
  26514. height: math.unit(1.15, "meters"),
  26515. weight: math.unit(3, "tons"),
  26516. name: "Feral",
  26517. image: {
  26518. source: "./media/characters/draekon-sylviar/feral.svg",
  26519. extra: 1033/395,
  26520. bottom: 130/1163
  26521. }
  26522. },
  26523. maw: {
  26524. height: math.unit(1.3, "meters"),
  26525. name: "Maw",
  26526. image: {
  26527. source: "./media/characters/draekon-sylviar/maw.svg"
  26528. }
  26529. },
  26530. mawSeparated: {
  26531. height: math.unit(1.53, "meters"),
  26532. name: "Separated Maw",
  26533. image: {
  26534. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  26535. }
  26536. },
  26537. tail: {
  26538. height: math.unit(1.15, "meters"),
  26539. name: "Tail",
  26540. image: {
  26541. source: "./media/characters/draekon-sylviar/tail.svg"
  26542. }
  26543. },
  26544. tailDick: {
  26545. height: math.unit(1.15, "meters"),
  26546. name: "Tail (Dick)",
  26547. image: {
  26548. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  26549. }
  26550. },
  26551. tailDickSeparated: {
  26552. height: math.unit(1.19, "meters"),
  26553. name: "Tail (Separated Dick)",
  26554. image: {
  26555. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  26556. }
  26557. },
  26558. slit: {
  26559. height: math.unit(1, "meters"),
  26560. name: "Slit",
  26561. image: {
  26562. source: "./media/characters/draekon-sylviar/slit.svg"
  26563. }
  26564. },
  26565. dick: {
  26566. height: math.unit(1.15, "meters"),
  26567. name: "Dick",
  26568. image: {
  26569. source: "./media/characters/draekon-sylviar/dick.svg"
  26570. }
  26571. },
  26572. dickSeparated: {
  26573. height: math.unit(1.1, "meters"),
  26574. name: "Separated Dick",
  26575. image: {
  26576. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  26577. }
  26578. },
  26579. sheath: {
  26580. height: math.unit(1.15, "meters"),
  26581. name: "Sheath",
  26582. image: {
  26583. source: "./media/characters/draekon-sylviar/sheath.svg"
  26584. }
  26585. },
  26586. },
  26587. [
  26588. {
  26589. name: "Small",
  26590. height: math.unit(4.53 / 2, "meters"),
  26591. default: true
  26592. },
  26593. {
  26594. name: "Normal",
  26595. height: math.unit(4.53, "meters"),
  26596. default: true
  26597. },
  26598. {
  26599. name: "Large",
  26600. height: math.unit(4.53 * 2, "meters"),
  26601. },
  26602. ]
  26603. ))
  26604. characterMakers.push(() => makeCharacter(
  26605. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  26606. {
  26607. front: {
  26608. height: math.unit(6 + 2 / 12, "feet"),
  26609. weight: math.unit(180, "lb"),
  26610. name: "Front",
  26611. image: {
  26612. source: "./media/characters/brawler/front.svg",
  26613. extra: 3301 / 3027,
  26614. bottom: 138 / 3439
  26615. }
  26616. },
  26617. },
  26618. [
  26619. {
  26620. name: "Normal",
  26621. height: math.unit(6 + 2 / 12, "feet"),
  26622. default: true
  26623. },
  26624. ]
  26625. ))
  26626. characterMakers.push(() => makeCharacter(
  26627. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  26628. {
  26629. front: {
  26630. height: math.unit(11, "feet"),
  26631. weight: math.unit(1000, "lb"),
  26632. name: "Front",
  26633. image: {
  26634. source: "./media/characters/alex/front.svg",
  26635. bottom: 44.5 / 620
  26636. }
  26637. },
  26638. },
  26639. [
  26640. {
  26641. name: "Micro",
  26642. height: math.unit(5, "inches")
  26643. },
  26644. {
  26645. name: "Normal",
  26646. height: math.unit(11, "feet"),
  26647. default: true
  26648. },
  26649. {
  26650. name: "Macro",
  26651. height: math.unit(9.5e9, "feet")
  26652. },
  26653. {
  26654. name: "Max Size",
  26655. height: math.unit(1.4e283, "yottameters")
  26656. },
  26657. ]
  26658. ))
  26659. characterMakers.push(() => makeCharacter(
  26660. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  26661. {
  26662. female: {
  26663. height: math.unit(29.9, "m"),
  26664. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  26665. name: "Female",
  26666. image: {
  26667. source: "./media/characters/zenari/female.svg",
  26668. extra: 3281.6 / 3217,
  26669. bottom: 72.2 / 3353
  26670. }
  26671. },
  26672. male: {
  26673. height: math.unit(27.7, "m"),
  26674. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  26675. name: "Male",
  26676. image: {
  26677. source: "./media/characters/zenari/male.svg",
  26678. extra: 3008 / 2991,
  26679. bottom: 54.6 / 3069
  26680. }
  26681. },
  26682. },
  26683. [
  26684. {
  26685. name: "Macro",
  26686. height: math.unit(29.7, "meters"),
  26687. default: true
  26688. },
  26689. ]
  26690. ))
  26691. characterMakers.push(() => makeCharacter(
  26692. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  26693. {
  26694. female: {
  26695. height: math.unit(23.8, "m"),
  26696. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26697. name: "Female",
  26698. image: {
  26699. source: "./media/characters/mactarian/female.svg",
  26700. extra: 2662 / 2569,
  26701. bottom: 73 / 2736
  26702. }
  26703. },
  26704. male: {
  26705. height: math.unit(23.8, "m"),
  26706. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26707. name: "Male",
  26708. image: {
  26709. source: "./media/characters/mactarian/male.svg",
  26710. extra: 2673 / 2600,
  26711. bottom: 76 / 2750
  26712. }
  26713. },
  26714. },
  26715. [
  26716. {
  26717. name: "Macro",
  26718. height: math.unit(23.8, "meters"),
  26719. default: true
  26720. },
  26721. ]
  26722. ))
  26723. characterMakers.push(() => makeCharacter(
  26724. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  26725. {
  26726. female: {
  26727. height: math.unit(19.3, "m"),
  26728. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  26729. name: "Female",
  26730. image: {
  26731. source: "./media/characters/umok/female.svg",
  26732. extra: 2186 / 2078,
  26733. bottom: 87 / 2277
  26734. }
  26735. },
  26736. male: {
  26737. height: math.unit(19.5, "m"),
  26738. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  26739. name: "Male",
  26740. image: {
  26741. source: "./media/characters/umok/male.svg",
  26742. extra: 2233 / 2140,
  26743. bottom: 24.4 / 2258
  26744. }
  26745. },
  26746. },
  26747. [
  26748. {
  26749. name: "Macro",
  26750. height: math.unit(19.3, "meters"),
  26751. default: true
  26752. },
  26753. ]
  26754. ))
  26755. characterMakers.push(() => makeCharacter(
  26756. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  26757. {
  26758. female: {
  26759. height: math.unit(26.15, "m"),
  26760. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  26761. name: "Female",
  26762. image: {
  26763. source: "./media/characters/joraxian/female.svg",
  26764. extra: 2912 / 2824,
  26765. bottom: 36 / 2956
  26766. }
  26767. },
  26768. male: {
  26769. height: math.unit(25.4, "m"),
  26770. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  26771. name: "Male",
  26772. image: {
  26773. source: "./media/characters/joraxian/male.svg",
  26774. extra: 2877 / 2721,
  26775. bottom: 82 / 2967
  26776. }
  26777. },
  26778. },
  26779. [
  26780. {
  26781. name: "Macro",
  26782. height: math.unit(26.15, "meters"),
  26783. default: true
  26784. },
  26785. ]
  26786. ))
  26787. characterMakers.push(() => makeCharacter(
  26788. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  26789. {
  26790. female: {
  26791. height: math.unit(21.6, "m"),
  26792. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  26793. name: "Female",
  26794. image: {
  26795. source: "./media/characters/sthara/female.svg",
  26796. extra: 2516 / 2347,
  26797. bottom: 21.5 / 2537
  26798. }
  26799. },
  26800. male: {
  26801. height: math.unit(24, "m"),
  26802. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  26803. name: "Male",
  26804. image: {
  26805. source: "./media/characters/sthara/male.svg",
  26806. extra: 2732 / 2607,
  26807. bottom: 23 / 2732
  26808. }
  26809. },
  26810. },
  26811. [
  26812. {
  26813. name: "Macro",
  26814. height: math.unit(21.6, "meters"),
  26815. default: true
  26816. },
  26817. ]
  26818. ))
  26819. characterMakers.push(() => makeCharacter(
  26820. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  26821. {
  26822. front: {
  26823. height: math.unit(6 + 4 / 12, "feet"),
  26824. weight: math.unit(175, "lb"),
  26825. name: "Front",
  26826. image: {
  26827. source: "./media/characters/luka-bryzant/front.svg",
  26828. extra: 311 / 289,
  26829. bottom: 4 / 315
  26830. }
  26831. },
  26832. back: {
  26833. height: math.unit(6 + 4 / 12, "feet"),
  26834. weight: math.unit(175, "lb"),
  26835. name: "Back",
  26836. image: {
  26837. source: "./media/characters/luka-bryzant/back.svg",
  26838. extra: 311 / 289,
  26839. bottom: 3.8 / 313.7
  26840. }
  26841. },
  26842. },
  26843. [
  26844. {
  26845. name: "Micro",
  26846. height: math.unit(10, "inches")
  26847. },
  26848. {
  26849. name: "Normal",
  26850. height: math.unit(6 + 4 / 12, "feet"),
  26851. default: true
  26852. },
  26853. {
  26854. name: "Large",
  26855. height: math.unit(12, "feet")
  26856. },
  26857. ]
  26858. ))
  26859. characterMakers.push(() => makeCharacter(
  26860. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  26861. {
  26862. front: {
  26863. height: math.unit(5 + 7 / 12, "feet"),
  26864. weight: math.unit(185, "lb"),
  26865. name: "Front",
  26866. image: {
  26867. source: "./media/characters/aman-aquila/front.svg",
  26868. extra: 1013 / 976,
  26869. bottom: 45.6 / 1057
  26870. }
  26871. },
  26872. side: {
  26873. height: math.unit(5 + 7 / 12, "feet"),
  26874. weight: math.unit(185, "lb"),
  26875. name: "Side",
  26876. image: {
  26877. source: "./media/characters/aman-aquila/side.svg",
  26878. extra: 1054 / 1011,
  26879. bottom: 15 / 1070
  26880. }
  26881. },
  26882. back: {
  26883. height: math.unit(5 + 7 / 12, "feet"),
  26884. weight: math.unit(185, "lb"),
  26885. name: "Back",
  26886. image: {
  26887. source: "./media/characters/aman-aquila/back.svg",
  26888. extra: 1026 / 970,
  26889. bottom: 12 / 1039
  26890. }
  26891. },
  26892. head: {
  26893. height: math.unit(1.211, "feet"),
  26894. name: "Head",
  26895. image: {
  26896. source: "./media/characters/aman-aquila/head.svg",
  26897. }
  26898. },
  26899. },
  26900. [
  26901. {
  26902. name: "Minimicro",
  26903. height: math.unit(0.057, "inches")
  26904. },
  26905. {
  26906. name: "Micro",
  26907. height: math.unit(7, "inches")
  26908. },
  26909. {
  26910. name: "Mini",
  26911. height: math.unit(3 + 7 / 12, "feet")
  26912. },
  26913. {
  26914. name: "Normal",
  26915. height: math.unit(5 + 7 / 12, "feet"),
  26916. default: true
  26917. },
  26918. {
  26919. name: "Macro",
  26920. height: math.unit(157 + 7 / 12, "feet")
  26921. },
  26922. {
  26923. name: "Megamacro",
  26924. height: math.unit(1557 + 7 / 12, "feet")
  26925. },
  26926. {
  26927. name: "Gigamacro",
  26928. height: math.unit(15557 + 7 / 12, "feet")
  26929. },
  26930. ]
  26931. ))
  26932. characterMakers.push(() => makeCharacter(
  26933. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  26934. {
  26935. front: {
  26936. height: math.unit(3 + 2 / 12, "inches"),
  26937. weight: math.unit(0.3, "ounces"),
  26938. name: "Front",
  26939. image: {
  26940. source: "./media/characters/hiphae/front.svg",
  26941. extra: 1931 / 1683,
  26942. bottom: 24 / 1955
  26943. }
  26944. },
  26945. },
  26946. [
  26947. {
  26948. name: "Normal",
  26949. height: math.unit(3 + 1 / 2, "inches"),
  26950. default: true
  26951. },
  26952. ]
  26953. ))
  26954. characterMakers.push(() => makeCharacter(
  26955. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  26956. {
  26957. front: {
  26958. height: math.unit(5 + 10 / 12, "feet"),
  26959. weight: math.unit(165, "lb"),
  26960. name: "Front",
  26961. image: {
  26962. source: "./media/characters/nicky/front.svg",
  26963. extra: 3144 / 2886,
  26964. bottom: 45.6 / 3192
  26965. }
  26966. },
  26967. back: {
  26968. height: math.unit(5 + 10 / 12, "feet"),
  26969. weight: math.unit(165, "lb"),
  26970. name: "Back",
  26971. image: {
  26972. source: "./media/characters/nicky/back.svg",
  26973. extra: 3055 / 2804,
  26974. bottom: 28.4 / 3087
  26975. }
  26976. },
  26977. frontclothed: {
  26978. height: math.unit(5 + 10 / 12, "feet"),
  26979. weight: math.unit(165, "lb"),
  26980. name: "Front-clothed",
  26981. image: {
  26982. source: "./media/characters/nicky/front-clothed.svg",
  26983. extra: 3184.9 / 2926.9,
  26984. bottom: 86.5 / 3239.9
  26985. }
  26986. },
  26987. foot: {
  26988. height: math.unit(1.16, "feet"),
  26989. name: "Foot",
  26990. image: {
  26991. source: "./media/characters/nicky/foot.svg"
  26992. }
  26993. },
  26994. feet: {
  26995. height: math.unit(1.34, "feet"),
  26996. name: "Feet",
  26997. image: {
  26998. source: "./media/characters/nicky/feet.svg"
  26999. }
  27000. },
  27001. maw: {
  27002. height: math.unit(0.9, "feet"),
  27003. name: "Maw",
  27004. image: {
  27005. source: "./media/characters/nicky/maw.svg"
  27006. }
  27007. },
  27008. },
  27009. [
  27010. {
  27011. name: "Normal",
  27012. height: math.unit(5 + 10 / 12, "feet"),
  27013. default: true
  27014. },
  27015. {
  27016. name: "Macro",
  27017. height: math.unit(60, "feet")
  27018. },
  27019. {
  27020. name: "Megamacro",
  27021. height: math.unit(1, "mile")
  27022. },
  27023. ]
  27024. ))
  27025. characterMakers.push(() => makeCharacter(
  27026. { name: "Blair", species: ["seal"], tags: ["taur"] },
  27027. {
  27028. side: {
  27029. height: math.unit(10, "feet"),
  27030. weight: math.unit(600, "lb"),
  27031. name: "Side",
  27032. image: {
  27033. source: "./media/characters/blair/side.svg",
  27034. bottom: 16.6 / 475,
  27035. extra: 458 / 431
  27036. }
  27037. },
  27038. },
  27039. [
  27040. {
  27041. name: "Micro",
  27042. height: math.unit(8, "inches")
  27043. },
  27044. {
  27045. name: "Normal",
  27046. height: math.unit(10, "feet"),
  27047. default: true
  27048. },
  27049. {
  27050. name: "Macro",
  27051. height: math.unit(180, "feet")
  27052. },
  27053. ]
  27054. ))
  27055. characterMakers.push(() => makeCharacter(
  27056. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  27057. {
  27058. front: {
  27059. height: math.unit(5 + 4 / 12, "feet"),
  27060. weight: math.unit(125, "lb"),
  27061. name: "Front",
  27062. image: {
  27063. source: "./media/characters/fisher/front.svg",
  27064. extra: 444 / 390,
  27065. bottom: 2 / 444.8
  27066. }
  27067. },
  27068. },
  27069. [
  27070. {
  27071. name: "Micro",
  27072. height: math.unit(4, "inches")
  27073. },
  27074. {
  27075. name: "Normal",
  27076. height: math.unit(5 + 4 / 12, "feet"),
  27077. default: true
  27078. },
  27079. {
  27080. name: "Macro",
  27081. height: math.unit(100, "feet")
  27082. },
  27083. ]
  27084. ))
  27085. characterMakers.push(() => makeCharacter(
  27086. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  27087. {
  27088. front: {
  27089. height: math.unit(6.71, "feet"),
  27090. weight: math.unit(200, "lb"),
  27091. preyCapacity: math.unit(1000000, "people"),
  27092. name: "Front",
  27093. image: {
  27094. source: "./media/characters/gliss/front.svg",
  27095. extra: 2347 / 2231,
  27096. bottom: 113 / 2462
  27097. }
  27098. },
  27099. hammerspaceSize: {
  27100. height: math.unit(6.71 * 717, "feet"),
  27101. weight: math.unit(200, "lb"),
  27102. preyCapacity: math.unit(1000000, "people"),
  27103. name: "Hammerspace Size",
  27104. image: {
  27105. source: "./media/characters/gliss/front.svg",
  27106. extra: 2347 / 2231,
  27107. bottom: 113 / 2462
  27108. }
  27109. },
  27110. },
  27111. [
  27112. {
  27113. name: "Normal",
  27114. height: math.unit(6.71, "feet"),
  27115. default: true
  27116. },
  27117. ]
  27118. ))
  27119. characterMakers.push(() => makeCharacter(
  27120. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  27121. {
  27122. side: {
  27123. height: math.unit(1.44, "m"),
  27124. weight: math.unit(80, "kg"),
  27125. name: "Side",
  27126. image: {
  27127. source: "./media/characters/dune-anderson/side.svg",
  27128. bottom: 49 / 1426
  27129. }
  27130. },
  27131. },
  27132. [
  27133. {
  27134. name: "Wolf-sized",
  27135. height: math.unit(1.44, "meters")
  27136. },
  27137. {
  27138. name: "Normal",
  27139. height: math.unit(5.05, "meters"),
  27140. default: true
  27141. },
  27142. {
  27143. name: "Big",
  27144. height: math.unit(14.4, "meters")
  27145. },
  27146. {
  27147. name: "Huge",
  27148. height: math.unit(144, "meters")
  27149. },
  27150. ]
  27151. ))
  27152. characterMakers.push(() => makeCharacter(
  27153. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  27154. {
  27155. front: {
  27156. height: math.unit(7, "feet"),
  27157. weight: math.unit(425, "lb"),
  27158. name: "Front",
  27159. image: {
  27160. source: "./media/characters/hind/front.svg",
  27161. extra: 2091 / 1860,
  27162. bottom: 129 / 2220
  27163. }
  27164. },
  27165. back: {
  27166. height: math.unit(7, "feet"),
  27167. weight: math.unit(425, "lb"),
  27168. name: "Back",
  27169. image: {
  27170. source: "./media/characters/hind/back.svg",
  27171. extra: 2091 / 1860,
  27172. bottom: 24.6 / 2309
  27173. }
  27174. },
  27175. tail: {
  27176. height: math.unit(2.8, "feet"),
  27177. name: "Tail",
  27178. image: {
  27179. source: "./media/characters/hind/tail.svg"
  27180. }
  27181. },
  27182. head: {
  27183. height: math.unit(2.55, "feet"),
  27184. name: "Head",
  27185. image: {
  27186. source: "./media/characters/hind/head.svg"
  27187. }
  27188. },
  27189. },
  27190. [
  27191. {
  27192. name: "XS",
  27193. height: math.unit(0.7, "feet")
  27194. },
  27195. {
  27196. name: "Normal",
  27197. height: math.unit(7, "feet"),
  27198. default: true
  27199. },
  27200. {
  27201. name: "XL",
  27202. height: math.unit(70, "feet")
  27203. },
  27204. ]
  27205. ))
  27206. characterMakers.push(() => makeCharacter(
  27207. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  27208. {
  27209. front: {
  27210. height: math.unit(2.1, "meters"),
  27211. weight: math.unit(150, "lb"),
  27212. name: "Front",
  27213. image: {
  27214. source: "./media/characters/tharquench-sizestealer/front.svg",
  27215. extra: 1605/1470,
  27216. bottom: 36/1641
  27217. }
  27218. },
  27219. frontAlt: {
  27220. height: math.unit(2.1, "meters"),
  27221. weight: math.unit(150, "lb"),
  27222. name: "Front (Alt)",
  27223. image: {
  27224. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  27225. extra: 2318 / 2063,
  27226. bottom: 93.4 / 2410
  27227. }
  27228. },
  27229. },
  27230. [
  27231. {
  27232. name: "Nano",
  27233. height: math.unit(1, "mm")
  27234. },
  27235. {
  27236. name: "Micro",
  27237. height: math.unit(1, "cm")
  27238. },
  27239. {
  27240. name: "Normal",
  27241. height: math.unit(2.1, "meters"),
  27242. default: true
  27243. },
  27244. ]
  27245. ))
  27246. characterMakers.push(() => makeCharacter(
  27247. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  27248. {
  27249. front: {
  27250. height: math.unit(7 + 5 / 12, "feet"),
  27251. weight: math.unit(357, "lb"),
  27252. name: "Front",
  27253. image: {
  27254. source: "./media/characters/solex-draconov/front.svg",
  27255. extra: 1993 / 1865,
  27256. bottom: 117 / 2111
  27257. }
  27258. },
  27259. },
  27260. [
  27261. {
  27262. name: "Natural Height",
  27263. height: math.unit(7 + 5 / 12, "feet"),
  27264. default: true
  27265. },
  27266. {
  27267. name: "Macro",
  27268. height: math.unit(350, "feet")
  27269. },
  27270. {
  27271. name: "Macro+",
  27272. height: math.unit(1000, "feet")
  27273. },
  27274. {
  27275. name: "Megamacro",
  27276. height: math.unit(20, "km")
  27277. },
  27278. {
  27279. name: "Megamacro+",
  27280. height: math.unit(1000, "km")
  27281. },
  27282. {
  27283. name: "Gigamacro",
  27284. height: math.unit(2.5, "Gm")
  27285. },
  27286. {
  27287. name: "Teramacro",
  27288. height: math.unit(15, "Tm")
  27289. },
  27290. {
  27291. name: "Galactic",
  27292. height: math.unit(30, "Zm")
  27293. },
  27294. {
  27295. name: "Universal",
  27296. height: math.unit(21000, "Ym")
  27297. },
  27298. {
  27299. name: "Omniversal",
  27300. height: math.unit(9.861e50, "Ym")
  27301. },
  27302. {
  27303. name: "Existential",
  27304. height: math.unit(1e300, "meters")
  27305. },
  27306. ]
  27307. ))
  27308. characterMakers.push(() => makeCharacter(
  27309. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  27310. {
  27311. side: {
  27312. height: math.unit(25, "feet"),
  27313. weight: math.unit(90000, "lb"),
  27314. name: "Side",
  27315. image: {
  27316. source: "./media/characters/mandarax/side.svg",
  27317. extra: 614 / 332,
  27318. bottom: 55 / 630
  27319. }
  27320. },
  27321. lounging: {
  27322. height: math.unit(15.4, "feet"),
  27323. weight: math.unit(90000, "lb"),
  27324. name: "Lounging",
  27325. image: {
  27326. source: "./media/characters/mandarax/lounging.svg",
  27327. extra: 817/609,
  27328. bottom: 685/1502
  27329. }
  27330. },
  27331. head: {
  27332. height: math.unit(11.4, "feet"),
  27333. name: "Head",
  27334. image: {
  27335. source: "./media/characters/mandarax/head.svg"
  27336. }
  27337. },
  27338. belly: {
  27339. height: math.unit(33, "feet"),
  27340. name: "Belly",
  27341. preyCapacity: math.unit(500, "people"),
  27342. image: {
  27343. source: "./media/characters/mandarax/belly.svg"
  27344. }
  27345. },
  27346. dick: {
  27347. height: math.unit(8.46, "feet"),
  27348. name: "Dick",
  27349. image: {
  27350. source: "./media/characters/mandarax/dick.svg"
  27351. }
  27352. },
  27353. top: {
  27354. height: math.unit(28, "meters"),
  27355. name: "Top",
  27356. image: {
  27357. source: "./media/characters/mandarax/top.svg"
  27358. }
  27359. },
  27360. },
  27361. [
  27362. {
  27363. name: "Normal",
  27364. height: math.unit(25, "feet"),
  27365. default: true
  27366. },
  27367. ]
  27368. ))
  27369. characterMakers.push(() => makeCharacter(
  27370. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  27371. {
  27372. front: {
  27373. height: math.unit(5, "feet"),
  27374. weight: math.unit(90, "lb"),
  27375. name: "Front",
  27376. image: {
  27377. source: "./media/characters/pixil/front.svg",
  27378. extra: 2000 / 1618,
  27379. bottom: 12.3 / 2011
  27380. }
  27381. },
  27382. },
  27383. [
  27384. {
  27385. name: "Normal",
  27386. height: math.unit(5, "feet"),
  27387. default: true
  27388. },
  27389. {
  27390. name: "Megamacro",
  27391. height: math.unit(10, "miles"),
  27392. },
  27393. ]
  27394. ))
  27395. characterMakers.push(() => makeCharacter(
  27396. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  27397. {
  27398. front: {
  27399. height: math.unit(7 + 2 / 12, "feet"),
  27400. weight: math.unit(200, "lb"),
  27401. name: "Front",
  27402. image: {
  27403. source: "./media/characters/angel/front.svg",
  27404. extra: 1830 / 1737,
  27405. bottom: 22.6 / 1854,
  27406. }
  27407. },
  27408. },
  27409. [
  27410. {
  27411. name: "Normal",
  27412. height: math.unit(7 + 2 / 12, "feet"),
  27413. default: true
  27414. },
  27415. {
  27416. name: "Macro",
  27417. height: math.unit(1000, "feet")
  27418. },
  27419. {
  27420. name: "Megamacro",
  27421. height: math.unit(2, "miles")
  27422. },
  27423. {
  27424. name: "Gigamacro",
  27425. height: math.unit(20, "earths")
  27426. },
  27427. ]
  27428. ))
  27429. characterMakers.push(() => makeCharacter(
  27430. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  27431. {
  27432. front: {
  27433. height: math.unit(5, "feet"),
  27434. weight: math.unit(180, "lb"),
  27435. name: "Front",
  27436. image: {
  27437. source: "./media/characters/mekana/front.svg",
  27438. extra: 1671 / 1605,
  27439. bottom: 3.5 / 1691
  27440. }
  27441. },
  27442. side: {
  27443. height: math.unit(5, "feet"),
  27444. weight: math.unit(180, "lb"),
  27445. name: "Side",
  27446. image: {
  27447. source: "./media/characters/mekana/side.svg",
  27448. extra: 1671 / 1605,
  27449. bottom: 3.5 / 1691
  27450. }
  27451. },
  27452. back: {
  27453. height: math.unit(5, "feet"),
  27454. weight: math.unit(180, "lb"),
  27455. name: "Back",
  27456. image: {
  27457. source: "./media/characters/mekana/back.svg",
  27458. extra: 1671 / 1605,
  27459. bottom: 3.5 / 1691
  27460. }
  27461. },
  27462. },
  27463. [
  27464. {
  27465. name: "Normal",
  27466. height: math.unit(5, "feet"),
  27467. default: true
  27468. },
  27469. ]
  27470. ))
  27471. characterMakers.push(() => makeCharacter(
  27472. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  27473. {
  27474. front: {
  27475. height: math.unit(4 + 6 / 12, "feet"),
  27476. weight: math.unit(80, "lb"),
  27477. name: "Front",
  27478. image: {
  27479. source: "./media/characters/pixie/front.svg",
  27480. extra: 1924 / 1825,
  27481. bottom: 22.4 / 1946
  27482. }
  27483. },
  27484. },
  27485. [
  27486. {
  27487. name: "Normal",
  27488. height: math.unit(4 + 6 / 12, "feet"),
  27489. default: true
  27490. },
  27491. {
  27492. name: "Macro",
  27493. height: math.unit(40, "feet")
  27494. },
  27495. ]
  27496. ))
  27497. characterMakers.push(() => makeCharacter(
  27498. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  27499. {
  27500. front: {
  27501. height: math.unit(2.1, "meters"),
  27502. weight: math.unit(200, "lb"),
  27503. name: "Front",
  27504. image: {
  27505. source: "./media/characters/the-lascivious/front.svg",
  27506. extra: 1 / 0.893,
  27507. bottom: 3.5 / 573.7
  27508. }
  27509. },
  27510. },
  27511. [
  27512. {
  27513. name: "Human Scale",
  27514. height: math.unit(2.1, "meters")
  27515. },
  27516. {
  27517. name: "Wolxi Scale",
  27518. height: math.unit(46.2, "m"),
  27519. default: true
  27520. },
  27521. {
  27522. name: "Boinker of Buildings",
  27523. height: math.unit(10, "km")
  27524. },
  27525. {
  27526. name: "Shagger of Skyscrapers",
  27527. height: math.unit(40, "km")
  27528. },
  27529. {
  27530. name: "Banger of Boroughs",
  27531. height: math.unit(4000, "km")
  27532. },
  27533. {
  27534. name: "Screwer of States",
  27535. height: math.unit(100000, "km")
  27536. },
  27537. {
  27538. name: "Pounder of Planets",
  27539. height: math.unit(2000000, "km")
  27540. },
  27541. ]
  27542. ))
  27543. characterMakers.push(() => makeCharacter(
  27544. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  27545. {
  27546. front: {
  27547. height: math.unit(6, "feet"),
  27548. weight: math.unit(150, "lb"),
  27549. name: "Front",
  27550. image: {
  27551. source: "./media/characters/aj/front.svg",
  27552. extra: 2039 / 1562,
  27553. bottom: 40 / 2079
  27554. }
  27555. },
  27556. },
  27557. [
  27558. {
  27559. name: "Normal",
  27560. height: math.unit(11 + 6 / 12, "feet"),
  27561. default: true
  27562. },
  27563. {
  27564. name: "Megamacro",
  27565. height: math.unit(60, "megameters")
  27566. },
  27567. ]
  27568. ))
  27569. characterMakers.push(() => makeCharacter(
  27570. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  27571. {
  27572. side: {
  27573. height: math.unit(31 + 8 / 12, "feet"),
  27574. weight: math.unit(75000, "kg"),
  27575. name: "Side",
  27576. image: {
  27577. source: "./media/characters/koros/side.svg",
  27578. extra: 1442 / 1297,
  27579. bottom: 122.7 / 1562
  27580. }
  27581. },
  27582. dicksKingsCrown: {
  27583. height: math.unit(6, "feet"),
  27584. name: "Dicks (King's Crown)",
  27585. image: {
  27586. source: "./media/characters/koros/dicks-kings-crown.svg"
  27587. }
  27588. },
  27589. dicksTailSet: {
  27590. height: math.unit(3, "feet"),
  27591. name: "Dicks (Tail Set)",
  27592. image: {
  27593. source: "./media/characters/koros/dicks-tail-set.svg"
  27594. }
  27595. },
  27596. dickCumming: {
  27597. height: math.unit(7.98, "feet"),
  27598. name: "Dick (Cumming)",
  27599. image: {
  27600. source: "./media/characters/koros/dick-cumming.svg"
  27601. }
  27602. },
  27603. dicksBack: {
  27604. height: math.unit(5.9, "feet"),
  27605. name: "Dicks (Back)",
  27606. image: {
  27607. source: "./media/characters/koros/dicks-back.svg"
  27608. }
  27609. },
  27610. dicksFront: {
  27611. height: math.unit(3.72, "feet"),
  27612. name: "Dicks (Front)",
  27613. image: {
  27614. source: "./media/characters/koros/dicks-front.svg"
  27615. }
  27616. },
  27617. dicksPeeking: {
  27618. height: math.unit(3.0, "feet"),
  27619. name: "Dicks (Peeking)",
  27620. image: {
  27621. source: "./media/characters/koros/dicks-peeking.svg"
  27622. }
  27623. },
  27624. eye: {
  27625. height: math.unit(1.7, "feet"),
  27626. name: "Eye",
  27627. image: {
  27628. source: "./media/characters/koros/eye.svg"
  27629. }
  27630. },
  27631. headFront: {
  27632. height: math.unit(11.69, "feet"),
  27633. name: "Head (Front)",
  27634. image: {
  27635. source: "./media/characters/koros/head-front.svg"
  27636. }
  27637. },
  27638. headSide: {
  27639. height: math.unit(14, "feet"),
  27640. name: "Head (Side)",
  27641. image: {
  27642. source: "./media/characters/koros/head-side.svg"
  27643. }
  27644. },
  27645. leg: {
  27646. height: math.unit(17, "feet"),
  27647. name: "Leg",
  27648. image: {
  27649. source: "./media/characters/koros/leg.svg"
  27650. }
  27651. },
  27652. mawSide: {
  27653. height: math.unit(12.8, "feet"),
  27654. name: "Maw (Side)",
  27655. image: {
  27656. source: "./media/characters/koros/maw-side.svg"
  27657. }
  27658. },
  27659. mawSpitting: {
  27660. height: math.unit(17, "feet"),
  27661. name: "Maw (Spitting)",
  27662. image: {
  27663. source: "./media/characters/koros/maw-spitting.svg"
  27664. }
  27665. },
  27666. slit: {
  27667. height: math.unit(2.8, "feet"),
  27668. name: "Slit",
  27669. image: {
  27670. source: "./media/characters/koros/slit.svg"
  27671. }
  27672. },
  27673. stomach: {
  27674. height: math.unit(6.8, "feet"),
  27675. preyCapacity: math.unit(20, "people"),
  27676. name: "Stomach",
  27677. image: {
  27678. source: "./media/characters/koros/stomach.svg"
  27679. }
  27680. },
  27681. wingspanBottom: {
  27682. height: math.unit(114, "feet"),
  27683. name: "Wingspan (Bottom)",
  27684. image: {
  27685. source: "./media/characters/koros/wingspan-bottom.svg"
  27686. }
  27687. },
  27688. wingspanTop: {
  27689. height: math.unit(104, "feet"),
  27690. name: "Wingspan (Top)",
  27691. image: {
  27692. source: "./media/characters/koros/wingspan-top.svg"
  27693. }
  27694. },
  27695. },
  27696. [
  27697. {
  27698. name: "Normal",
  27699. height: math.unit(31 + 8 / 12, "feet"),
  27700. default: true
  27701. },
  27702. ]
  27703. ))
  27704. characterMakers.push(() => makeCharacter(
  27705. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  27706. {
  27707. front: {
  27708. height: math.unit(18 + 5 / 12, "feet"),
  27709. weight: math.unit(3750, "kg"),
  27710. name: "Front",
  27711. image: {
  27712. source: "./media/characters/vexx/front.svg",
  27713. extra: 426 / 396,
  27714. bottom: 31.5 / 458
  27715. }
  27716. },
  27717. maw: {
  27718. height: math.unit(6, "feet"),
  27719. name: "Maw",
  27720. image: {
  27721. source: "./media/characters/vexx/maw.svg"
  27722. }
  27723. },
  27724. },
  27725. [
  27726. {
  27727. name: "Normal",
  27728. height: math.unit(18 + 5 / 12, "feet"),
  27729. default: true
  27730. },
  27731. ]
  27732. ))
  27733. characterMakers.push(() => makeCharacter(
  27734. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  27735. {
  27736. front: {
  27737. height: math.unit(17 + 6 / 12, "feet"),
  27738. weight: math.unit(150, "lb"),
  27739. name: "Front",
  27740. image: {
  27741. source: "./media/characters/baadra/front.svg",
  27742. extra: 1694/1553,
  27743. bottom: 179/1873
  27744. }
  27745. },
  27746. frontAlt: {
  27747. height: math.unit(17 + 6 / 12, "feet"),
  27748. weight: math.unit(150, "lb"),
  27749. name: "Front (Alt)",
  27750. image: {
  27751. source: "./media/characters/baadra/front-alt.svg",
  27752. extra: 3137 / 2890,
  27753. bottom: 168.4 / 3305
  27754. }
  27755. },
  27756. back: {
  27757. height: math.unit(17 + 6 / 12, "feet"),
  27758. weight: math.unit(150, "lb"),
  27759. name: "Back",
  27760. image: {
  27761. source: "./media/characters/baadra/back.svg",
  27762. extra: 3142 / 2890,
  27763. bottom: 220 / 3371
  27764. }
  27765. },
  27766. head: {
  27767. height: math.unit(5.45, "feet"),
  27768. name: "Head",
  27769. image: {
  27770. source: "./media/characters/baadra/head.svg"
  27771. }
  27772. },
  27773. headAngry: {
  27774. height: math.unit(4.95, "feet"),
  27775. name: "Head (Angry)",
  27776. image: {
  27777. source: "./media/characters/baadra/head-angry.svg"
  27778. }
  27779. },
  27780. headOpen: {
  27781. height: math.unit(6, "feet"),
  27782. name: "Head (Open)",
  27783. image: {
  27784. source: "./media/characters/baadra/head-open.svg"
  27785. }
  27786. },
  27787. },
  27788. [
  27789. {
  27790. name: "Normal",
  27791. height: math.unit(17 + 6 / 12, "feet"),
  27792. default: true
  27793. },
  27794. ]
  27795. ))
  27796. characterMakers.push(() => makeCharacter(
  27797. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  27798. {
  27799. front: {
  27800. height: math.unit(7 + 3 / 12, "feet"),
  27801. weight: math.unit(180, "lb"),
  27802. name: "Front",
  27803. image: {
  27804. source: "./media/characters/juri/front.svg",
  27805. extra: 1401 / 1237,
  27806. bottom: 18.5 / 1418
  27807. }
  27808. },
  27809. side: {
  27810. height: math.unit(7 + 3 / 12, "feet"),
  27811. weight: math.unit(180, "lb"),
  27812. name: "Side",
  27813. image: {
  27814. source: "./media/characters/juri/side.svg",
  27815. extra: 1424 / 1242,
  27816. bottom: 18.5 / 1447
  27817. }
  27818. },
  27819. sitting: {
  27820. height: math.unit(6, "feet"),
  27821. weight: math.unit(180, "lb"),
  27822. name: "Sitting",
  27823. image: {
  27824. source: "./media/characters/juri/sitting.svg",
  27825. extra: 1270 / 1143,
  27826. bottom: 100 / 1343
  27827. }
  27828. },
  27829. back: {
  27830. height: math.unit(7 + 3 / 12, "feet"),
  27831. weight: math.unit(180, "lb"),
  27832. name: "Back",
  27833. image: {
  27834. source: "./media/characters/juri/back.svg",
  27835. extra: 1377 / 1240,
  27836. bottom: 23.7 / 1405
  27837. }
  27838. },
  27839. maw: {
  27840. height: math.unit(2.8, "feet"),
  27841. name: "Maw",
  27842. image: {
  27843. source: "./media/characters/juri/maw.svg"
  27844. }
  27845. },
  27846. stomach: {
  27847. height: math.unit(0.89, "feet"),
  27848. preyCapacity: math.unit(4, "liters"),
  27849. name: "Stomach",
  27850. image: {
  27851. source: "./media/characters/juri/stomach.svg"
  27852. }
  27853. },
  27854. },
  27855. [
  27856. {
  27857. name: "Normal",
  27858. height: math.unit(7 + 3 / 12, "feet"),
  27859. default: true
  27860. },
  27861. ]
  27862. ))
  27863. characterMakers.push(() => makeCharacter(
  27864. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  27865. {
  27866. fox: {
  27867. height: math.unit(5 + 6 / 12, "feet"),
  27868. weight: math.unit(140, "lb"),
  27869. name: "Fox",
  27870. image: {
  27871. source: "./media/characters/maxene-sita/fox.svg",
  27872. extra: 146 / 138,
  27873. bottom: 2.1 / 148.19
  27874. }
  27875. },
  27876. foxLaying: {
  27877. height: math.unit(1.70, "feet"),
  27878. weight: math.unit(140, "lb"),
  27879. name: "Fox (Laying)",
  27880. image: {
  27881. source: "./media/characters/maxene-sita/fox-laying.svg",
  27882. extra: 910 / 572,
  27883. bottom: 71 / 981
  27884. }
  27885. },
  27886. kitsune: {
  27887. height: math.unit(10, "feet"),
  27888. weight: math.unit(800, "lb"),
  27889. name: "Kitsune",
  27890. image: {
  27891. source: "./media/characters/maxene-sita/kitsune.svg",
  27892. extra: 185 / 176,
  27893. bottom: 4.7 / 189.9
  27894. }
  27895. },
  27896. hellhound: {
  27897. height: math.unit(10, "feet"),
  27898. weight: math.unit(700, "lb"),
  27899. name: "Hellhound",
  27900. image: {
  27901. source: "./media/characters/maxene-sita/hellhound.svg",
  27902. extra: 1600 / 1545,
  27903. bottom: 81 / 1681
  27904. }
  27905. },
  27906. },
  27907. [
  27908. {
  27909. name: "Normal",
  27910. height: math.unit(5 + 6 / 12, "feet"),
  27911. default: true
  27912. },
  27913. ]
  27914. ))
  27915. characterMakers.push(() => makeCharacter(
  27916. { name: "Maia", species: ["mew"], tags: ["feral"] },
  27917. {
  27918. front: {
  27919. height: math.unit(3 + 4 / 12, "feet"),
  27920. weight: math.unit(70, "lb"),
  27921. name: "Front",
  27922. image: {
  27923. source: "./media/characters/maia/front.svg",
  27924. extra: 227 / 219.5,
  27925. bottom: 40 / 267
  27926. }
  27927. },
  27928. back: {
  27929. height: math.unit(3 + 4 / 12, "feet"),
  27930. weight: math.unit(70, "lb"),
  27931. name: "Back",
  27932. image: {
  27933. source: "./media/characters/maia/back.svg",
  27934. extra: 237 / 225
  27935. }
  27936. },
  27937. },
  27938. [
  27939. {
  27940. name: "Normal",
  27941. height: math.unit(3 + 4 / 12, "feet"),
  27942. default: true
  27943. },
  27944. ]
  27945. ))
  27946. characterMakers.push(() => makeCharacter(
  27947. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  27948. {
  27949. front: {
  27950. height: math.unit(5 + 10 / 12, "feet"),
  27951. weight: math.unit(197, "lb"),
  27952. name: "Front",
  27953. image: {
  27954. source: "./media/characters/jabaro/front.svg",
  27955. extra: 225 / 216,
  27956. bottom: 5.06 / 230
  27957. }
  27958. },
  27959. back: {
  27960. height: math.unit(5 + 10 / 12, "feet"),
  27961. weight: math.unit(197, "lb"),
  27962. name: "Back",
  27963. image: {
  27964. source: "./media/characters/jabaro/back.svg",
  27965. extra: 225 / 219,
  27966. bottom: 1.9 / 227
  27967. }
  27968. },
  27969. },
  27970. [
  27971. {
  27972. name: "Normal",
  27973. height: math.unit(5 + 10 / 12, "feet"),
  27974. default: true
  27975. },
  27976. ]
  27977. ))
  27978. characterMakers.push(() => makeCharacter(
  27979. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  27980. {
  27981. front: {
  27982. height: math.unit(5 + 8 / 12, "feet"),
  27983. weight: math.unit(139, "lb"),
  27984. name: "Front",
  27985. image: {
  27986. source: "./media/characters/risa/front.svg",
  27987. extra: 270 / 260,
  27988. bottom: 11.2 / 282
  27989. }
  27990. },
  27991. back: {
  27992. height: math.unit(5 + 8 / 12, "feet"),
  27993. weight: math.unit(139, "lb"),
  27994. name: "Back",
  27995. image: {
  27996. source: "./media/characters/risa/back.svg",
  27997. extra: 264 / 255,
  27998. bottom: 4 / 268
  27999. }
  28000. },
  28001. },
  28002. [
  28003. {
  28004. name: "Normal",
  28005. height: math.unit(5 + 8 / 12, "feet"),
  28006. default: true
  28007. },
  28008. ]
  28009. ))
  28010. characterMakers.push(() => makeCharacter(
  28011. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  28012. {
  28013. front: {
  28014. height: math.unit(2 + 11 / 12, "feet"),
  28015. weight: math.unit(30, "lb"),
  28016. name: "Front",
  28017. image: {
  28018. source: "./media/characters/weatley/front.svg",
  28019. bottom: 10.7 / 414,
  28020. extra: 403.5 / 362
  28021. }
  28022. },
  28023. back: {
  28024. height: math.unit(2 + 11 / 12, "feet"),
  28025. weight: math.unit(30, "lb"),
  28026. name: "Back",
  28027. image: {
  28028. source: "./media/characters/weatley/back.svg",
  28029. bottom: 10.7 / 414,
  28030. extra: 403.5 / 362
  28031. }
  28032. },
  28033. },
  28034. [
  28035. {
  28036. name: "Normal",
  28037. height: math.unit(2 + 11 / 12, "feet"),
  28038. default: true
  28039. },
  28040. ]
  28041. ))
  28042. characterMakers.push(() => makeCharacter(
  28043. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  28044. {
  28045. front: {
  28046. height: math.unit(5 + 2 / 12, "feet"),
  28047. weight: math.unit(50, "kg"),
  28048. name: "Front",
  28049. image: {
  28050. source: "./media/characters/mercury-crescent/front.svg",
  28051. extra: 1088 / 1033,
  28052. bottom: 18.9 / 1109
  28053. }
  28054. },
  28055. },
  28056. [
  28057. {
  28058. name: "Normal",
  28059. height: math.unit(5 + 2 / 12, "feet"),
  28060. default: true
  28061. },
  28062. ]
  28063. ))
  28064. characterMakers.push(() => makeCharacter(
  28065. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  28066. {
  28067. front: {
  28068. height: math.unit(2, "feet"),
  28069. weight: math.unit(15, "kg"),
  28070. name: "Front",
  28071. image: {
  28072. source: "./media/characters/diamond-jones/front.svg",
  28073. extra: 727/723,
  28074. bottom: 46/773
  28075. }
  28076. },
  28077. },
  28078. [
  28079. {
  28080. name: "Normal",
  28081. height: math.unit(2, "feet"),
  28082. default: true
  28083. },
  28084. ]
  28085. ))
  28086. characterMakers.push(() => makeCharacter(
  28087. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  28088. {
  28089. front: {
  28090. height: math.unit(3, "feet"),
  28091. weight: math.unit(30, "kg"),
  28092. name: "Front",
  28093. image: {
  28094. source: "./media/characters/sweet-bit/front.svg",
  28095. extra: 675 / 567,
  28096. bottom: 27.7 / 703
  28097. }
  28098. },
  28099. },
  28100. [
  28101. {
  28102. name: "Normal",
  28103. height: math.unit(3, "feet"),
  28104. default: true
  28105. },
  28106. ]
  28107. ))
  28108. characterMakers.push(() => makeCharacter(
  28109. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  28110. {
  28111. side: {
  28112. height: math.unit(9.178, "feet"),
  28113. weight: math.unit(500, "lb"),
  28114. name: "Side",
  28115. image: {
  28116. source: "./media/characters/umbrazen/side.svg",
  28117. extra: 1730 / 1473,
  28118. bottom: 34.6 / 1765
  28119. }
  28120. },
  28121. },
  28122. [
  28123. {
  28124. name: "Normal",
  28125. height: math.unit(9.178, "feet"),
  28126. default: true
  28127. },
  28128. ]
  28129. ))
  28130. characterMakers.push(() => makeCharacter(
  28131. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  28132. {
  28133. front: {
  28134. height: math.unit(10, "feet"),
  28135. weight: math.unit(750, "lb"),
  28136. name: "Front",
  28137. image: {
  28138. source: "./media/characters/arlist/front.svg",
  28139. extra: 961 / 778,
  28140. bottom: 6.2 / 986
  28141. }
  28142. },
  28143. },
  28144. [
  28145. {
  28146. name: "Normal",
  28147. height: math.unit(10, "feet"),
  28148. default: true
  28149. },
  28150. ]
  28151. ))
  28152. characterMakers.push(() => makeCharacter(
  28153. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  28154. {
  28155. front: {
  28156. height: math.unit(5 + 1 / 12, "feet"),
  28157. weight: math.unit(110, "lb"),
  28158. name: "Front",
  28159. image: {
  28160. source: "./media/characters/aradel/front.svg",
  28161. extra: 324 / 303,
  28162. bottom: 3.6 / 329.4
  28163. }
  28164. },
  28165. },
  28166. [
  28167. {
  28168. name: "Normal",
  28169. height: math.unit(5 + 1 / 12, "feet"),
  28170. default: true
  28171. },
  28172. ]
  28173. ))
  28174. characterMakers.push(() => makeCharacter(
  28175. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  28176. {
  28177. dressed: {
  28178. height: math.unit(3 + 8 / 12, "feet"),
  28179. weight: math.unit(50, "lb"),
  28180. name: "Dressed",
  28181. image: {
  28182. source: "./media/characters/serryn/dressed.svg",
  28183. extra: 1792 / 1656,
  28184. bottom: 43.5 / 1840
  28185. }
  28186. },
  28187. nude: {
  28188. height: math.unit(3 + 8 / 12, "feet"),
  28189. weight: math.unit(50, "lb"),
  28190. name: "Nude",
  28191. image: {
  28192. source: "./media/characters/serryn/nude.svg",
  28193. extra: 1792 / 1656,
  28194. bottom: 43.5 / 1840
  28195. }
  28196. },
  28197. },
  28198. [
  28199. {
  28200. name: "Normal",
  28201. height: math.unit(3 + 8 / 12, "feet"),
  28202. default: true
  28203. },
  28204. ]
  28205. ))
  28206. characterMakers.push(() => makeCharacter(
  28207. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  28208. {
  28209. front: {
  28210. height: math.unit(7 + 10 / 12, "feet"),
  28211. weight: math.unit(255, "lb"),
  28212. name: "Front",
  28213. image: {
  28214. source: "./media/characters/xavier-thyme/front.svg",
  28215. extra: 3733 / 3642,
  28216. bottom: 131 / 3869
  28217. }
  28218. },
  28219. frontRaven: {
  28220. height: math.unit(7 + 10 / 12, "feet"),
  28221. weight: math.unit(255, "lb"),
  28222. name: "Front (Raven)",
  28223. image: {
  28224. source: "./media/characters/xavier-thyme/front-raven.svg",
  28225. extra: 4385 / 3642,
  28226. bottom: 131 / 4517
  28227. }
  28228. },
  28229. },
  28230. [
  28231. {
  28232. name: "Normal",
  28233. height: math.unit(7 + 10 / 12, "feet"),
  28234. default: true
  28235. },
  28236. ]
  28237. ))
  28238. characterMakers.push(() => makeCharacter(
  28239. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  28240. {
  28241. front: {
  28242. height: math.unit(1.6, "m"),
  28243. weight: math.unit(50, "kg"),
  28244. name: "Front",
  28245. image: {
  28246. source: "./media/characters/kiki/front.svg",
  28247. extra: 4682 / 3610,
  28248. bottom: 115 / 4777
  28249. }
  28250. },
  28251. },
  28252. [
  28253. {
  28254. name: "Normal",
  28255. height: math.unit(1.6, "meters"),
  28256. default: true
  28257. },
  28258. ]
  28259. ))
  28260. characterMakers.push(() => makeCharacter(
  28261. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  28262. {
  28263. front: {
  28264. height: math.unit(50, "m"),
  28265. weight: math.unit(500, "tonnes"),
  28266. name: "Front",
  28267. image: {
  28268. source: "./media/characters/ryoko/front.svg",
  28269. extra: 4632 / 3926,
  28270. bottom: 193 / 4823
  28271. }
  28272. },
  28273. },
  28274. [
  28275. {
  28276. name: "Normal",
  28277. height: math.unit(50, "meters"),
  28278. default: true
  28279. },
  28280. ]
  28281. ))
  28282. characterMakers.push(() => makeCharacter(
  28283. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  28284. {
  28285. front: {
  28286. height: math.unit(30, "m"),
  28287. weight: math.unit(22, "tonnes"),
  28288. name: "Front",
  28289. image: {
  28290. source: "./media/characters/elio/front.svg",
  28291. extra: 4582 / 3720,
  28292. bottom: 236 / 4828
  28293. }
  28294. },
  28295. },
  28296. [
  28297. {
  28298. name: "Normal",
  28299. height: math.unit(30, "meters"),
  28300. default: true
  28301. },
  28302. ]
  28303. ))
  28304. characterMakers.push(() => makeCharacter(
  28305. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  28306. {
  28307. front: {
  28308. height: math.unit(6 + 3 / 12, "feet"),
  28309. weight: math.unit(120, "lb"),
  28310. name: "Front",
  28311. image: {
  28312. source: "./media/characters/azura/front.svg",
  28313. extra: 1149 / 1135,
  28314. bottom: 45 / 1194
  28315. }
  28316. },
  28317. frontClothed: {
  28318. height: math.unit(6 + 3 / 12, "feet"),
  28319. weight: math.unit(120, "lb"),
  28320. name: "Front (Clothed)",
  28321. image: {
  28322. source: "./media/characters/azura/front-clothed.svg",
  28323. extra: 1149 / 1135,
  28324. bottom: 45 / 1194
  28325. }
  28326. },
  28327. },
  28328. [
  28329. {
  28330. name: "Normal",
  28331. height: math.unit(6 + 3 / 12, "feet"),
  28332. default: true
  28333. },
  28334. {
  28335. name: "Macro",
  28336. height: math.unit(20 + 6 / 12, "feet")
  28337. },
  28338. {
  28339. name: "Megamacro",
  28340. height: math.unit(12, "miles")
  28341. },
  28342. {
  28343. name: "Gigamacro",
  28344. height: math.unit(10000, "miles")
  28345. },
  28346. {
  28347. name: "Teramacro",
  28348. height: math.unit(900000, "miles")
  28349. },
  28350. ]
  28351. ))
  28352. characterMakers.push(() => makeCharacter(
  28353. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  28354. {
  28355. front: {
  28356. height: math.unit(12, "feet"),
  28357. weight: math.unit(1, "ton"),
  28358. capacity: math.unit(660000, "gallons"),
  28359. name: "Front",
  28360. image: {
  28361. source: "./media/characters/zeus/front.svg",
  28362. extra: 5005 / 4717,
  28363. bottom: 363 / 5388
  28364. }
  28365. },
  28366. },
  28367. [
  28368. {
  28369. name: "Normal",
  28370. height: math.unit(12, "feet")
  28371. },
  28372. {
  28373. name: "Preferred Size",
  28374. height: math.unit(0.5, "miles"),
  28375. default: true
  28376. },
  28377. {
  28378. name: "Giga Horse",
  28379. height: math.unit(300, "miles")
  28380. },
  28381. {
  28382. name: "Riding Planets",
  28383. height: math.unit(30, "megameters")
  28384. },
  28385. {
  28386. name: "Cosmic Giant",
  28387. height: math.unit(3, "zettameters")
  28388. },
  28389. {
  28390. name: "Breeding God",
  28391. height: math.unit(9.92e22, "yottameters")
  28392. },
  28393. ]
  28394. ))
  28395. characterMakers.push(() => makeCharacter(
  28396. { name: "Fang", species: ["monster"], tags: ["feral"] },
  28397. {
  28398. side: {
  28399. height: math.unit(9, "feet"),
  28400. weight: math.unit(1500, "kg"),
  28401. name: "Side",
  28402. image: {
  28403. source: "./media/characters/fang/side.svg",
  28404. extra: 924 / 866,
  28405. bottom: 47.5 / 972.3
  28406. }
  28407. },
  28408. },
  28409. [
  28410. {
  28411. name: "Normal",
  28412. height: math.unit(9, "feet"),
  28413. default: true
  28414. },
  28415. {
  28416. name: "Macro",
  28417. height: math.unit(75 + 6 / 12, "feet")
  28418. },
  28419. {
  28420. name: "Teramacro",
  28421. height: math.unit(50000, "miles")
  28422. },
  28423. ]
  28424. ))
  28425. characterMakers.push(() => makeCharacter(
  28426. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  28427. {
  28428. front: {
  28429. height: math.unit(10, "feet"),
  28430. weight: math.unit(2, "tons"),
  28431. name: "Front",
  28432. image: {
  28433. source: "./media/characters/rekhit/front.svg",
  28434. extra: 2796 / 2590,
  28435. bottom: 225 / 3022
  28436. }
  28437. },
  28438. },
  28439. [
  28440. {
  28441. name: "Normal",
  28442. height: math.unit(10, "feet"),
  28443. default: true
  28444. },
  28445. {
  28446. name: "Macro",
  28447. height: math.unit(500, "feet")
  28448. },
  28449. ]
  28450. ))
  28451. characterMakers.push(() => makeCharacter(
  28452. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  28453. {
  28454. front: {
  28455. height: math.unit(7 + 6.451 / 12, "feet"),
  28456. weight: math.unit(310, "lb"),
  28457. name: "Front",
  28458. image: {
  28459. source: "./media/characters/dahlia-verrick/front.svg",
  28460. extra: 1488 / 1365,
  28461. bottom: 6.2 / 1495
  28462. }
  28463. },
  28464. back: {
  28465. height: math.unit(7 + 6.451 / 12, "feet"),
  28466. weight: math.unit(310, "lb"),
  28467. name: "Back",
  28468. image: {
  28469. source: "./media/characters/dahlia-verrick/back.svg",
  28470. extra: 1472 / 1351,
  28471. bottom: 5.28 / 1477
  28472. }
  28473. },
  28474. frontBusiness: {
  28475. height: math.unit(7 + 6.451 / 12, "feet"),
  28476. weight: math.unit(200, "lb"),
  28477. name: "Front (Business)",
  28478. image: {
  28479. source: "./media/characters/dahlia-verrick/front-business.svg",
  28480. extra: 1478 / 1381,
  28481. bottom: 5.5 / 1484
  28482. }
  28483. },
  28484. frontCasual: {
  28485. height: math.unit(7 + 6.451 / 12, "feet"),
  28486. weight: math.unit(200, "lb"),
  28487. name: "Front (Casual)",
  28488. image: {
  28489. source: "./media/characters/dahlia-verrick/front-casual.svg",
  28490. extra: 1478 / 1381,
  28491. bottom: 5.5 / 1484
  28492. }
  28493. },
  28494. },
  28495. [
  28496. {
  28497. name: "Travel-Sized",
  28498. height: math.unit(7.45, "inches")
  28499. },
  28500. {
  28501. name: "Normal",
  28502. height: math.unit(7 + 6.451 / 12, "feet"),
  28503. default: true
  28504. },
  28505. {
  28506. name: "Hitting the Town",
  28507. height: math.unit(37 + 8 / 12, "feet")
  28508. },
  28509. {
  28510. name: "Stomp in the Suburbs",
  28511. height: math.unit(964 + 9.728 / 12, "feet")
  28512. },
  28513. {
  28514. name: "Sit on the City",
  28515. height: math.unit(61747 + 10.592 / 12, "feet")
  28516. },
  28517. {
  28518. name: "Glomp the Globe",
  28519. height: math.unit(252919327 + 4.832 / 12, "feet")
  28520. },
  28521. ]
  28522. ))
  28523. characterMakers.push(() => makeCharacter(
  28524. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  28525. {
  28526. front: {
  28527. height: math.unit(6 + 4 / 12, "feet"),
  28528. weight: math.unit(320, "lb"),
  28529. name: "Front",
  28530. image: {
  28531. source: "./media/characters/balina-mahigan/front.svg",
  28532. extra: 447 / 428,
  28533. bottom: 18 / 466
  28534. }
  28535. },
  28536. back: {
  28537. height: math.unit(6 + 4 / 12, "feet"),
  28538. weight: math.unit(320, "lb"),
  28539. name: "Back",
  28540. image: {
  28541. source: "./media/characters/balina-mahigan/back.svg",
  28542. extra: 445 / 428,
  28543. bottom: 4.07 / 448
  28544. }
  28545. },
  28546. arm: {
  28547. height: math.unit(1.88, "feet"),
  28548. name: "Arm",
  28549. image: {
  28550. source: "./media/characters/balina-mahigan/arm.svg"
  28551. }
  28552. },
  28553. backPort: {
  28554. height: math.unit(0.685, "feet"),
  28555. name: "Back Port",
  28556. image: {
  28557. source: "./media/characters/balina-mahigan/back-port.svg"
  28558. }
  28559. },
  28560. hoofpaw: {
  28561. height: math.unit(1.41, "feet"),
  28562. name: "Hoofpaw",
  28563. image: {
  28564. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  28565. }
  28566. },
  28567. leftHandBack: {
  28568. height: math.unit(0.938, "feet"),
  28569. name: "Left Hand (Back)",
  28570. image: {
  28571. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  28572. }
  28573. },
  28574. leftHandFront: {
  28575. height: math.unit(0.938, "feet"),
  28576. name: "Left Hand (Front)",
  28577. image: {
  28578. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  28579. }
  28580. },
  28581. rightHandBack: {
  28582. height: math.unit(0.95, "feet"),
  28583. name: "Right Hand (Back)",
  28584. image: {
  28585. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  28586. }
  28587. },
  28588. rightHandFront: {
  28589. height: math.unit(0.95, "feet"),
  28590. name: "Right Hand (Front)",
  28591. image: {
  28592. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  28593. }
  28594. },
  28595. },
  28596. [
  28597. {
  28598. name: "Normal",
  28599. height: math.unit(6 + 4 / 12, "feet"),
  28600. default: true
  28601. },
  28602. ]
  28603. ))
  28604. characterMakers.push(() => makeCharacter(
  28605. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  28606. {
  28607. front: {
  28608. height: math.unit(6, "feet"),
  28609. weight: math.unit(320, "lb"),
  28610. name: "Front",
  28611. image: {
  28612. source: "./media/characters/balina-mejeri/front.svg",
  28613. extra: 517 / 488,
  28614. bottom: 44.2 / 561
  28615. }
  28616. },
  28617. },
  28618. [
  28619. {
  28620. name: "Normal",
  28621. height: math.unit(6 + 4 / 12, "feet")
  28622. },
  28623. {
  28624. name: "Business",
  28625. height: math.unit(155, "feet"),
  28626. default: true
  28627. },
  28628. ]
  28629. ))
  28630. characterMakers.push(() => makeCharacter(
  28631. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  28632. {
  28633. kneeling: {
  28634. height: math.unit(6 + 4 / 12, "feet"),
  28635. weight: math.unit(300 * 20, "lb"),
  28636. name: "Kneeling",
  28637. image: {
  28638. source: "./media/characters/balbarian/kneeling.svg",
  28639. extra: 922 / 862,
  28640. bottom: 42.4 / 965
  28641. }
  28642. },
  28643. },
  28644. [
  28645. {
  28646. name: "Normal",
  28647. height: math.unit(6 + 4 / 12, "feet")
  28648. },
  28649. {
  28650. name: "Treasured",
  28651. height: math.unit(18 + 9 / 12, "feet"),
  28652. default: true
  28653. },
  28654. {
  28655. name: "Macro",
  28656. height: math.unit(900, "feet")
  28657. },
  28658. ]
  28659. ))
  28660. characterMakers.push(() => makeCharacter(
  28661. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  28662. {
  28663. front: {
  28664. height: math.unit(6 + 4 / 12, "feet"),
  28665. weight: math.unit(325, "lb"),
  28666. name: "Front",
  28667. image: {
  28668. source: "./media/characters/balina-amarini/front.svg",
  28669. extra: 415 / 403,
  28670. bottom: 19 / 433.4
  28671. }
  28672. },
  28673. back: {
  28674. height: math.unit(6 + 4 / 12, "feet"),
  28675. weight: math.unit(325, "lb"),
  28676. name: "Back",
  28677. image: {
  28678. source: "./media/characters/balina-amarini/back.svg",
  28679. extra: 415 / 403,
  28680. bottom: 13.5 / 432
  28681. }
  28682. },
  28683. overdrive: {
  28684. height: math.unit(6 + 4 / 12, "feet"),
  28685. weight: math.unit(400, "lb"),
  28686. name: "Overdrive",
  28687. image: {
  28688. source: "./media/characters/balina-amarini/overdrive.svg",
  28689. extra: 269 / 259,
  28690. bottom: 12 / 282
  28691. }
  28692. },
  28693. },
  28694. [
  28695. {
  28696. name: "Boom",
  28697. height: math.unit(9 + 10 / 12, "feet"),
  28698. default: true
  28699. },
  28700. {
  28701. name: "Macro",
  28702. height: math.unit(280, "feet")
  28703. },
  28704. ]
  28705. ))
  28706. characterMakers.push(() => makeCharacter(
  28707. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  28708. {
  28709. goddess: {
  28710. height: math.unit(600, "feet"),
  28711. weight: math.unit(2000000, "tons"),
  28712. name: "Goddess",
  28713. image: {
  28714. source: "./media/characters/lady-kubwa/goddess.svg",
  28715. extra: 1240.5 / 1223,
  28716. bottom: 22 / 1263
  28717. }
  28718. },
  28719. goddesser: {
  28720. height: math.unit(900, "feet"),
  28721. weight: math.unit(20000000, "lb"),
  28722. name: "Goddess-er",
  28723. image: {
  28724. source: "./media/characters/lady-kubwa/goddess-er.svg",
  28725. extra: 899 / 888,
  28726. bottom: 12.6 / 912
  28727. }
  28728. },
  28729. },
  28730. [
  28731. {
  28732. name: "Macro",
  28733. height: math.unit(600, "feet"),
  28734. default: true
  28735. },
  28736. {
  28737. name: "Megamacro",
  28738. height: math.unit(250, "miles")
  28739. },
  28740. ]
  28741. ))
  28742. characterMakers.push(() => makeCharacter(
  28743. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  28744. {
  28745. front: {
  28746. height: math.unit(7 + 7 / 12, "feet"),
  28747. weight: math.unit(250, "lb"),
  28748. name: "Front",
  28749. image: {
  28750. source: "./media/characters/tala-grovehorn/front.svg",
  28751. extra: 2636 / 2525,
  28752. bottom: 147 / 2781
  28753. }
  28754. },
  28755. back: {
  28756. height: math.unit(7 + 7 / 12, "feet"),
  28757. weight: math.unit(250, "lb"),
  28758. name: "Back",
  28759. image: {
  28760. source: "./media/characters/tala-grovehorn/back.svg",
  28761. extra: 2635 / 2539,
  28762. bottom: 100 / 2732.8
  28763. }
  28764. },
  28765. mouth: {
  28766. height: math.unit(1.15, "feet"),
  28767. name: "Mouth",
  28768. image: {
  28769. source: "./media/characters/tala-grovehorn/mouth.svg"
  28770. }
  28771. },
  28772. dick: {
  28773. height: math.unit(2.36, "feet"),
  28774. name: "Dick",
  28775. image: {
  28776. source: "./media/characters/tala-grovehorn/dick.svg"
  28777. }
  28778. },
  28779. slit: {
  28780. height: math.unit(0.61, "feet"),
  28781. name: "Slit",
  28782. image: {
  28783. source: "./media/characters/tala-grovehorn/slit.svg"
  28784. }
  28785. },
  28786. },
  28787. [
  28788. ]
  28789. ))
  28790. characterMakers.push(() => makeCharacter(
  28791. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  28792. {
  28793. front: {
  28794. height: math.unit(7 + 7 / 12, "feet"),
  28795. weight: math.unit(225, "lb"),
  28796. name: "Front",
  28797. image: {
  28798. source: "./media/characters/epona/front.svg",
  28799. extra: 2445 / 2290,
  28800. bottom: 251 / 2696
  28801. }
  28802. },
  28803. back: {
  28804. height: math.unit(7 + 7 / 12, "feet"),
  28805. weight: math.unit(225, "lb"),
  28806. name: "Back",
  28807. image: {
  28808. source: "./media/characters/epona/back.svg",
  28809. extra: 2546 / 2408,
  28810. bottom: 44 / 2589
  28811. }
  28812. },
  28813. genitals: {
  28814. height: math.unit(1.5, "feet"),
  28815. name: "Genitals",
  28816. image: {
  28817. source: "./media/characters/epona/genitals.svg"
  28818. }
  28819. },
  28820. },
  28821. [
  28822. {
  28823. name: "Normal",
  28824. height: math.unit(7 + 7 / 12, "feet"),
  28825. default: true
  28826. },
  28827. ]
  28828. ))
  28829. characterMakers.push(() => makeCharacter(
  28830. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  28831. {
  28832. front: {
  28833. height: math.unit(7, "feet"),
  28834. weight: math.unit(518, "lb"),
  28835. name: "Front",
  28836. image: {
  28837. source: "./media/characters/avia-bloodbourn/front.svg",
  28838. extra: 1466 / 1350,
  28839. bottom: 65 / 1527
  28840. }
  28841. },
  28842. },
  28843. [
  28844. ]
  28845. ))
  28846. characterMakers.push(() => makeCharacter(
  28847. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  28848. {
  28849. front: {
  28850. height: math.unit(9.35, "feet"),
  28851. weight: math.unit(600, "lb"),
  28852. name: "Front",
  28853. image: {
  28854. source: "./media/characters/amera/front.svg",
  28855. extra: 891 / 818,
  28856. bottom: 30 / 922.7
  28857. }
  28858. },
  28859. back: {
  28860. height: math.unit(9.35, "feet"),
  28861. weight: math.unit(600, "lb"),
  28862. name: "Back",
  28863. image: {
  28864. source: "./media/characters/amera/back.svg",
  28865. extra: 876 / 824,
  28866. bottom: 6.8 / 884
  28867. }
  28868. },
  28869. dick: {
  28870. height: math.unit(2.14, "feet"),
  28871. name: "Dick",
  28872. image: {
  28873. source: "./media/characters/amera/dick.svg"
  28874. }
  28875. },
  28876. },
  28877. [
  28878. {
  28879. name: "Normal",
  28880. height: math.unit(9.35, "feet"),
  28881. default: true
  28882. },
  28883. ]
  28884. ))
  28885. characterMakers.push(() => makeCharacter(
  28886. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  28887. {
  28888. kneeling: {
  28889. height: math.unit(3 + 4 / 12, "feet"),
  28890. weight: math.unit(90, "lb"),
  28891. name: "Kneeling",
  28892. image: {
  28893. source: "./media/characters/rosewen/kneeling.svg",
  28894. extra: 1835 / 1571,
  28895. bottom: 27.7 / 1862
  28896. }
  28897. },
  28898. },
  28899. [
  28900. {
  28901. name: "Normal",
  28902. height: math.unit(3 + 4 / 12, "feet"),
  28903. default: true
  28904. },
  28905. ]
  28906. ))
  28907. characterMakers.push(() => makeCharacter(
  28908. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  28909. {
  28910. front: {
  28911. height: math.unit(5 + 10 / 12, "feet"),
  28912. weight: math.unit(200, "lb"),
  28913. name: "Front",
  28914. image: {
  28915. source: "./media/characters/sabah/front.svg",
  28916. extra: 849 / 763,
  28917. bottom: 33.9 / 881
  28918. }
  28919. },
  28920. },
  28921. [
  28922. {
  28923. name: "Normal",
  28924. height: math.unit(5 + 10 / 12, "feet"),
  28925. default: true
  28926. },
  28927. ]
  28928. ))
  28929. characterMakers.push(() => makeCharacter(
  28930. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  28931. {
  28932. front: {
  28933. height: math.unit(3 + 5 / 12, "feet"),
  28934. weight: math.unit(40, "kg"),
  28935. name: "Front",
  28936. image: {
  28937. source: "./media/characters/purple-flame/front.svg",
  28938. extra: 1577 / 1412,
  28939. bottom: 97 / 1694
  28940. }
  28941. },
  28942. frontDressed: {
  28943. height: math.unit(3 + 5 / 12, "feet"),
  28944. weight: math.unit(40, "kg"),
  28945. name: "Front (Dressed)",
  28946. image: {
  28947. source: "./media/characters/purple-flame/front-dressed.svg",
  28948. extra: 1577 / 1412,
  28949. bottom: 97 / 1694
  28950. }
  28951. },
  28952. headphones: {
  28953. height: math.unit(0.85, "feet"),
  28954. name: "Headphones",
  28955. image: {
  28956. source: "./media/characters/purple-flame/headphones.svg"
  28957. }
  28958. },
  28959. },
  28960. [
  28961. {
  28962. name: "Really Small",
  28963. height: math.unit(5, "cm")
  28964. },
  28965. {
  28966. name: "Micro",
  28967. height: math.unit(1 + 5 / 12, "feet")
  28968. },
  28969. {
  28970. name: "Normal",
  28971. height: math.unit(3 + 5 / 12, "feet"),
  28972. default: true
  28973. },
  28974. {
  28975. name: "Minimacro",
  28976. height: math.unit(125, "feet")
  28977. },
  28978. {
  28979. name: "Macro",
  28980. height: math.unit(0.5, "miles")
  28981. },
  28982. {
  28983. name: "Megamacro",
  28984. height: math.unit(50, "miles")
  28985. },
  28986. {
  28987. name: "Gigantic",
  28988. height: math.unit(750, "miles")
  28989. },
  28990. {
  28991. name: "Planetary",
  28992. height: math.unit(15000, "miles")
  28993. },
  28994. ]
  28995. ))
  28996. characterMakers.push(() => makeCharacter(
  28997. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  28998. {
  28999. front: {
  29000. height: math.unit(14, "feet"),
  29001. weight: math.unit(959, "lb"),
  29002. name: "Front",
  29003. image: {
  29004. source: "./media/characters/arsenal/front.svg",
  29005. extra: 2357 / 2157,
  29006. bottom: 93 / 2458
  29007. }
  29008. },
  29009. },
  29010. [
  29011. {
  29012. name: "Normal",
  29013. height: math.unit(14, "feet"),
  29014. default: true
  29015. },
  29016. ]
  29017. ))
  29018. characterMakers.push(() => makeCharacter(
  29019. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  29020. {
  29021. front: {
  29022. height: math.unit(6, "feet"),
  29023. weight: math.unit(150, "lb"),
  29024. name: "Front",
  29025. image: {
  29026. source: "./media/characters/adira/front.svg",
  29027. extra: 1078 / 1029,
  29028. bottom: 87 / 1166
  29029. }
  29030. },
  29031. },
  29032. [
  29033. {
  29034. name: "Micro",
  29035. height: math.unit(4, "inches"),
  29036. default: true
  29037. },
  29038. {
  29039. name: "Macro",
  29040. height: math.unit(50, "feet")
  29041. },
  29042. ]
  29043. ))
  29044. characterMakers.push(() => makeCharacter(
  29045. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  29046. {
  29047. front: {
  29048. height: math.unit(16, "feet"),
  29049. weight: math.unit(1000, "lb"),
  29050. name: "Front",
  29051. image: {
  29052. source: "./media/characters/grim/front.svg",
  29053. extra: 622 / 614,
  29054. bottom: 18.1 / 642
  29055. }
  29056. },
  29057. back: {
  29058. height: math.unit(16, "feet"),
  29059. weight: math.unit(1000, "lb"),
  29060. name: "Back",
  29061. image: {
  29062. source: "./media/characters/grim/back.svg",
  29063. extra: 610.6 / 602,
  29064. bottom: 40.8 / 652
  29065. }
  29066. },
  29067. hunched: {
  29068. height: math.unit(9.75, "feet"),
  29069. weight: math.unit(1000, "lb"),
  29070. name: "Hunched",
  29071. image: {
  29072. source: "./media/characters/grim/hunched.svg",
  29073. extra: 304 / 297,
  29074. bottom: 35.4 / 394
  29075. }
  29076. },
  29077. },
  29078. [
  29079. {
  29080. name: "Normal",
  29081. height: math.unit(16, "feet"),
  29082. default: true
  29083. },
  29084. ]
  29085. ))
  29086. characterMakers.push(() => makeCharacter(
  29087. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  29088. {
  29089. front: {
  29090. height: math.unit(2.3, "meters"),
  29091. weight: math.unit(300, "lb"),
  29092. name: "Front",
  29093. image: {
  29094. source: "./media/characters/sinja/front-sfw.svg",
  29095. extra: 1393 / 1294,
  29096. bottom: 70 / 1463
  29097. }
  29098. },
  29099. frontNsfw: {
  29100. height: math.unit(2.3, "meters"),
  29101. weight: math.unit(300, "lb"),
  29102. name: "Front (NSFW)",
  29103. image: {
  29104. source: "./media/characters/sinja/front-nsfw.svg",
  29105. extra: 1393 / 1294,
  29106. bottom: 70 / 1463
  29107. }
  29108. },
  29109. back: {
  29110. height: math.unit(2.3, "meters"),
  29111. weight: math.unit(300, "lb"),
  29112. name: "Back",
  29113. image: {
  29114. source: "./media/characters/sinja/back.svg",
  29115. extra: 1393 / 1294,
  29116. bottom: 70 / 1463
  29117. }
  29118. },
  29119. head: {
  29120. height: math.unit(1.771, "feet"),
  29121. name: "Head",
  29122. image: {
  29123. source: "./media/characters/sinja/head.svg"
  29124. }
  29125. },
  29126. slit: {
  29127. height: math.unit(0.8, "feet"),
  29128. name: "Slit",
  29129. image: {
  29130. source: "./media/characters/sinja/slit.svg"
  29131. }
  29132. },
  29133. },
  29134. [
  29135. {
  29136. name: "Normal",
  29137. height: math.unit(2.3, "meters")
  29138. },
  29139. {
  29140. name: "Macro",
  29141. height: math.unit(91, "meters"),
  29142. default: true
  29143. },
  29144. {
  29145. name: "Megamacro",
  29146. height: math.unit(91440, "meters")
  29147. },
  29148. {
  29149. name: "Gigamacro",
  29150. height: math.unit(60960000, "meters")
  29151. },
  29152. {
  29153. name: "Teramacro",
  29154. height: math.unit(9144000000, "meters")
  29155. },
  29156. ]
  29157. ))
  29158. characterMakers.push(() => makeCharacter(
  29159. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  29160. {
  29161. front: {
  29162. height: math.unit(1.7, "meters"),
  29163. weight: math.unit(130, "lb"),
  29164. name: "Front",
  29165. image: {
  29166. source: "./media/characters/kyu/front.svg",
  29167. extra: 415 / 395,
  29168. bottom: 5 / 420
  29169. }
  29170. },
  29171. head: {
  29172. height: math.unit(1.75, "feet"),
  29173. name: "Head",
  29174. image: {
  29175. source: "./media/characters/kyu/head.svg"
  29176. }
  29177. },
  29178. foot: {
  29179. height: math.unit(0.81, "feet"),
  29180. name: "Foot",
  29181. image: {
  29182. source: "./media/characters/kyu/foot.svg"
  29183. }
  29184. },
  29185. },
  29186. [
  29187. {
  29188. name: "Normal",
  29189. height: math.unit(1.7, "meters")
  29190. },
  29191. {
  29192. name: "Macro",
  29193. height: math.unit(131, "feet"),
  29194. default: true
  29195. },
  29196. {
  29197. name: "Megamacro",
  29198. height: math.unit(91440, "meters")
  29199. },
  29200. {
  29201. name: "Gigamacro",
  29202. height: math.unit(60960000, "meters")
  29203. },
  29204. {
  29205. name: "Teramacro",
  29206. height: math.unit(9144000000, "meters")
  29207. },
  29208. ]
  29209. ))
  29210. characterMakers.push(() => makeCharacter(
  29211. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  29212. {
  29213. front: {
  29214. height: math.unit(7 + 1 / 12, "feet"),
  29215. weight: math.unit(250, "lb"),
  29216. name: "Front",
  29217. image: {
  29218. source: "./media/characters/joey/front.svg",
  29219. extra: 1791 / 1537,
  29220. bottom: 28 / 1816
  29221. }
  29222. },
  29223. },
  29224. [
  29225. {
  29226. name: "Micro",
  29227. height: math.unit(3, "inches")
  29228. },
  29229. {
  29230. name: "Normal",
  29231. height: math.unit(7 + 1 / 12, "feet"),
  29232. default: true
  29233. },
  29234. ]
  29235. ))
  29236. characterMakers.push(() => makeCharacter(
  29237. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  29238. {
  29239. front: {
  29240. height: math.unit(165, "cm"),
  29241. weight: math.unit(140, "lb"),
  29242. name: "Front",
  29243. image: {
  29244. source: "./media/characters/sam-evans/front.svg",
  29245. extra: 3417 / 3230,
  29246. bottom: 41.3 / 3417
  29247. }
  29248. },
  29249. frontSixTails: {
  29250. height: math.unit(165, "cm"),
  29251. weight: math.unit(140, "lb"),
  29252. name: "Front-six-tails",
  29253. image: {
  29254. source: "./media/characters/sam-evans/front-six-tails.svg",
  29255. extra: 3417 / 3230,
  29256. bottom: 41.3 / 3417
  29257. }
  29258. },
  29259. back: {
  29260. height: math.unit(165, "cm"),
  29261. weight: math.unit(140, "lb"),
  29262. name: "Back",
  29263. image: {
  29264. source: "./media/characters/sam-evans/back.svg",
  29265. extra: 3227 / 3032,
  29266. bottom: 6.8 / 3234
  29267. }
  29268. },
  29269. face: {
  29270. height: math.unit(0.68, "feet"),
  29271. name: "Face",
  29272. image: {
  29273. source: "./media/characters/sam-evans/face.svg"
  29274. }
  29275. },
  29276. },
  29277. [
  29278. {
  29279. name: "Normal",
  29280. height: math.unit(165, "cm"),
  29281. default: true
  29282. },
  29283. {
  29284. name: "Macro",
  29285. height: math.unit(100, "meters")
  29286. },
  29287. {
  29288. name: "Macro+",
  29289. height: math.unit(800, "meters")
  29290. },
  29291. {
  29292. name: "Macro++",
  29293. height: math.unit(3, "km")
  29294. },
  29295. {
  29296. name: "Macro+++",
  29297. height: math.unit(30, "km")
  29298. },
  29299. ]
  29300. ))
  29301. characterMakers.push(() => makeCharacter(
  29302. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  29303. {
  29304. front: {
  29305. height: math.unit(10, "feet"),
  29306. weight: math.unit(750, "lb"),
  29307. name: "Front",
  29308. image: {
  29309. source: "./media/characters/juliet-a/front.svg",
  29310. extra: 1766 / 1720,
  29311. bottom: 43 / 1809
  29312. }
  29313. },
  29314. back: {
  29315. height: math.unit(10, "feet"),
  29316. weight: math.unit(750, "lb"),
  29317. name: "Back",
  29318. image: {
  29319. source: "./media/characters/juliet-a/back.svg",
  29320. extra: 1781 / 1734,
  29321. bottom: 35 / 1810,
  29322. }
  29323. },
  29324. },
  29325. [
  29326. {
  29327. name: "Normal",
  29328. height: math.unit(10, "feet"),
  29329. default: true
  29330. },
  29331. {
  29332. name: "Dragon Form",
  29333. height: math.unit(250, "feet")
  29334. },
  29335. {
  29336. name: "Macro",
  29337. height: math.unit(1000, "feet")
  29338. },
  29339. {
  29340. name: "Megamacro",
  29341. height: math.unit(10000, "feet")
  29342. }
  29343. ]
  29344. ))
  29345. characterMakers.push(() => makeCharacter(
  29346. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  29347. {
  29348. regular: {
  29349. height: math.unit(7 + 3 / 12, "feet"),
  29350. weight: math.unit(260, "lb"),
  29351. name: "Regular",
  29352. image: {
  29353. source: "./media/characters/wild/regular.svg",
  29354. extra: 97.45 / 92,
  29355. bottom: 6.8 / 104.3
  29356. }
  29357. },
  29358. biggums: {
  29359. height: math.unit(8 + 6 / 12, "feet"),
  29360. weight: math.unit(425, "lb"),
  29361. name: "Biggums",
  29362. image: {
  29363. source: "./media/characters/wild/biggums.svg",
  29364. extra: 97.45 / 92,
  29365. bottom: 7.5 / 132.34
  29366. }
  29367. },
  29368. mawRegular: {
  29369. height: math.unit(1.24, "feet"),
  29370. name: "Maw (Regular)",
  29371. image: {
  29372. source: "./media/characters/wild/maw.svg"
  29373. }
  29374. },
  29375. mawBiggums: {
  29376. height: math.unit(1.47, "feet"),
  29377. name: "Maw (Biggums)",
  29378. image: {
  29379. source: "./media/characters/wild/maw.svg"
  29380. }
  29381. },
  29382. },
  29383. [
  29384. {
  29385. name: "Normal",
  29386. height: math.unit(7 + 3 / 12, "feet"),
  29387. default: true
  29388. },
  29389. ]
  29390. ))
  29391. characterMakers.push(() => makeCharacter(
  29392. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  29393. {
  29394. front: {
  29395. height: math.unit(2.5, "meters"),
  29396. weight: math.unit(200, "kg"),
  29397. name: "Front",
  29398. image: {
  29399. source: "./media/characters/vidar/front.svg",
  29400. extra: 2994 / 2795,
  29401. bottom: 56 / 3061
  29402. }
  29403. },
  29404. back: {
  29405. height: math.unit(2.5, "meters"),
  29406. weight: math.unit(200, "kg"),
  29407. name: "Back",
  29408. image: {
  29409. source: "./media/characters/vidar/back.svg",
  29410. extra: 3131 / 2928,
  29411. bottom: 13.5 / 3141.5
  29412. }
  29413. },
  29414. feral: {
  29415. height: math.unit(2.5, "meters"),
  29416. weight: math.unit(2000, "kg"),
  29417. name: "Feral",
  29418. image: {
  29419. source: "./media/characters/vidar/feral.svg",
  29420. extra: 2790 / 1765,
  29421. bottom: 6 / 2796
  29422. }
  29423. },
  29424. },
  29425. [
  29426. {
  29427. name: "Normal",
  29428. height: math.unit(2.5, "meters"),
  29429. default: true
  29430. },
  29431. {
  29432. name: "Macro",
  29433. height: math.unit(100, "meters")
  29434. },
  29435. ]
  29436. ))
  29437. characterMakers.push(() => makeCharacter(
  29438. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  29439. {
  29440. front: {
  29441. height: math.unit(5 + 9 / 12, "feet"),
  29442. weight: math.unit(120, "lb"),
  29443. name: "Front",
  29444. image: {
  29445. source: "./media/characters/ash/front.svg",
  29446. extra: 2189 / 1961,
  29447. bottom: 5.2 / 2194
  29448. }
  29449. },
  29450. },
  29451. [
  29452. {
  29453. name: "Normal",
  29454. height: math.unit(5 + 9 / 12, "feet"),
  29455. default: true
  29456. },
  29457. ]
  29458. ))
  29459. characterMakers.push(() => makeCharacter(
  29460. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  29461. {
  29462. front: {
  29463. height: math.unit(9, "feet"),
  29464. weight: math.unit(10000, "lb"),
  29465. name: "Front",
  29466. image: {
  29467. source: "./media/characters/gygabite/front.svg",
  29468. bottom: 31.7 / 537.8,
  29469. extra: 505 / 370
  29470. }
  29471. },
  29472. },
  29473. [
  29474. {
  29475. name: "Normal",
  29476. height: math.unit(9, "feet"),
  29477. default: true
  29478. },
  29479. ]
  29480. ))
  29481. characterMakers.push(() => makeCharacter(
  29482. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  29483. {
  29484. front: {
  29485. height: math.unit(12, "feet"),
  29486. weight: math.unit(4000, "lb"),
  29487. name: "Front",
  29488. image: {
  29489. source: "./media/characters/p0tat0/front.svg",
  29490. extra: 1065 / 921,
  29491. bottom: 55.7 / 1121.25
  29492. }
  29493. },
  29494. },
  29495. [
  29496. {
  29497. name: "Normal",
  29498. height: math.unit(12, "feet"),
  29499. default: true
  29500. },
  29501. ]
  29502. ))
  29503. characterMakers.push(() => makeCharacter(
  29504. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  29505. {
  29506. side: {
  29507. height: math.unit(6.5, "feet"),
  29508. weight: math.unit(800, "lb"),
  29509. name: "Side",
  29510. image: {
  29511. source: "./media/characters/dusk/side.svg",
  29512. extra: 615 / 373,
  29513. bottom: 53 / 664
  29514. }
  29515. },
  29516. sitting: {
  29517. height: math.unit(7, "feet"),
  29518. weight: math.unit(800, "lb"),
  29519. name: "Sitting",
  29520. image: {
  29521. source: "./media/characters/dusk/sitting.svg",
  29522. extra: 753 / 425,
  29523. bottom: 33 / 774
  29524. }
  29525. },
  29526. head: {
  29527. height: math.unit(6.1, "feet"),
  29528. name: "Head",
  29529. image: {
  29530. source: "./media/characters/dusk/head.svg"
  29531. }
  29532. },
  29533. },
  29534. [
  29535. {
  29536. name: "Normal",
  29537. height: math.unit(7, "feet"),
  29538. default: true
  29539. },
  29540. ]
  29541. ))
  29542. characterMakers.push(() => makeCharacter(
  29543. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  29544. {
  29545. front: {
  29546. height: math.unit(15, "feet"),
  29547. weight: math.unit(7000, "lb"),
  29548. name: "Front",
  29549. image: {
  29550. source: "./media/characters/jay-direwolf/front.svg",
  29551. extra: 1810 / 1732,
  29552. bottom: 66 / 1892
  29553. }
  29554. },
  29555. },
  29556. [
  29557. {
  29558. name: "Normal",
  29559. height: math.unit(15, "feet"),
  29560. default: true
  29561. },
  29562. ]
  29563. ))
  29564. characterMakers.push(() => makeCharacter(
  29565. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  29566. {
  29567. front: {
  29568. height: math.unit(4 + 9 / 12, "feet"),
  29569. weight: math.unit(130, "lb"),
  29570. name: "Front",
  29571. image: {
  29572. source: "./media/characters/anchovie/front.svg",
  29573. extra: 382 / 350,
  29574. bottom: 25 / 409
  29575. }
  29576. },
  29577. back: {
  29578. height: math.unit(4 + 9 / 12, "feet"),
  29579. weight: math.unit(130, "lb"),
  29580. name: "Back",
  29581. image: {
  29582. source: "./media/characters/anchovie/back.svg",
  29583. extra: 385 / 352,
  29584. bottom: 16.6 / 402
  29585. }
  29586. },
  29587. frontDressed: {
  29588. height: math.unit(4 + 9 / 12, "feet"),
  29589. weight: math.unit(130, "lb"),
  29590. name: "Front (Dressed)",
  29591. image: {
  29592. source: "./media/characters/anchovie/front-dressed.svg",
  29593. extra: 382 / 350,
  29594. bottom: 25 / 409
  29595. }
  29596. },
  29597. backDressed: {
  29598. height: math.unit(4 + 9 / 12, "feet"),
  29599. weight: math.unit(130, "lb"),
  29600. name: "Back (Dressed)",
  29601. image: {
  29602. source: "./media/characters/anchovie/back-dressed.svg",
  29603. extra: 385 / 352,
  29604. bottom: 16.6 / 402
  29605. }
  29606. },
  29607. },
  29608. [
  29609. {
  29610. name: "Micro",
  29611. height: math.unit(6.4, "inches")
  29612. },
  29613. {
  29614. name: "Normal",
  29615. height: math.unit(4 + 9 / 12, "feet"),
  29616. default: true
  29617. },
  29618. ]
  29619. ))
  29620. characterMakers.push(() => makeCharacter(
  29621. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  29622. {
  29623. front: {
  29624. height: math.unit(2, "meters"),
  29625. weight: math.unit(180, "lb"),
  29626. name: "Front",
  29627. image: {
  29628. source: "./media/characters/acidrenamon/front.svg",
  29629. extra: 987 / 890,
  29630. bottom: 22.8 / 1009
  29631. }
  29632. },
  29633. back: {
  29634. height: math.unit(2, "meters"),
  29635. weight: math.unit(180, "lb"),
  29636. name: "Back",
  29637. image: {
  29638. source: "./media/characters/acidrenamon/back.svg",
  29639. extra: 983 / 891,
  29640. bottom: 8.4 / 992
  29641. }
  29642. },
  29643. head: {
  29644. height: math.unit(1.92, "feet"),
  29645. name: "Head",
  29646. image: {
  29647. source: "./media/characters/acidrenamon/head.svg"
  29648. }
  29649. },
  29650. rump: {
  29651. height: math.unit(1.72, "feet"),
  29652. name: "Rump",
  29653. image: {
  29654. source: "./media/characters/acidrenamon/rump.svg"
  29655. }
  29656. },
  29657. tail: {
  29658. height: math.unit(4.2, "feet"),
  29659. name: "Tail",
  29660. image: {
  29661. source: "./media/characters/acidrenamon/tail.svg"
  29662. }
  29663. },
  29664. },
  29665. [
  29666. {
  29667. name: "Normal",
  29668. height: math.unit(2, "meters"),
  29669. default: true
  29670. },
  29671. {
  29672. name: "Minimacro",
  29673. height: math.unit(7, "meters")
  29674. },
  29675. {
  29676. name: "Macro",
  29677. height: math.unit(200, "meters")
  29678. },
  29679. {
  29680. name: "Gigamacro",
  29681. height: math.unit(0.2, "earths")
  29682. },
  29683. ]
  29684. ))
  29685. characterMakers.push(() => makeCharacter(
  29686. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  29687. {
  29688. front: {
  29689. height: math.unit(152, "feet"),
  29690. name: "Front",
  29691. image: {
  29692. source: "./media/characters/kenzie-lee/front.svg",
  29693. extra: 1869/1774,
  29694. bottom: 128/1997
  29695. }
  29696. },
  29697. side: {
  29698. height: math.unit(86, "feet"),
  29699. name: "Side",
  29700. image: {
  29701. source: "./media/characters/kenzie-lee/side.svg",
  29702. extra: 930/815,
  29703. bottom: 177/1107
  29704. }
  29705. },
  29706. paw: {
  29707. height: math.unit(15, "feet"),
  29708. name: "Paw",
  29709. image: {
  29710. source: "./media/characters/kenzie-lee/paw.svg"
  29711. }
  29712. },
  29713. },
  29714. [
  29715. {
  29716. name: "Kenzie Flea",
  29717. height: math.unit(2, "mm"),
  29718. default: true
  29719. },
  29720. {
  29721. name: "Micro",
  29722. height: math.unit(2, "inches")
  29723. },
  29724. {
  29725. name: "Normal",
  29726. height: math.unit(152, "feet")
  29727. },
  29728. {
  29729. name: "Megamacro",
  29730. height: math.unit(7, "miles")
  29731. },
  29732. {
  29733. name: "Gigamacro",
  29734. height: math.unit(8000, "miles")
  29735. },
  29736. ]
  29737. ))
  29738. characterMakers.push(() => makeCharacter(
  29739. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  29740. {
  29741. front: {
  29742. height: math.unit(6, "feet"),
  29743. name: "Front",
  29744. image: {
  29745. source: "./media/characters/withers/front.svg",
  29746. extra: 1935/1760,
  29747. bottom: 72/2007
  29748. }
  29749. },
  29750. back: {
  29751. height: math.unit(6, "feet"),
  29752. name: "Back",
  29753. image: {
  29754. source: "./media/characters/withers/back.svg",
  29755. extra: 1944/1792,
  29756. bottom: 12/1956
  29757. }
  29758. },
  29759. dressed: {
  29760. height: math.unit(6, "feet"),
  29761. name: "Dressed",
  29762. image: {
  29763. source: "./media/characters/withers/dressed.svg",
  29764. extra: 1937/1765,
  29765. bottom: 73/2010
  29766. }
  29767. },
  29768. phase1: {
  29769. height: math.unit(1.1, "feet"),
  29770. name: "Phase 1",
  29771. image: {
  29772. source: "./media/characters/withers/phase-1.svg",
  29773. extra: 1885/1232,
  29774. bottom: 0/1885
  29775. }
  29776. },
  29777. phase2: {
  29778. height: math.unit(1.05, "feet"),
  29779. name: "Phase 2",
  29780. image: {
  29781. source: "./media/characters/withers/phase-2.svg",
  29782. extra: 1792/1090,
  29783. bottom: 0/1792
  29784. }
  29785. },
  29786. partyWipe: {
  29787. height: math.unit(1.1, "feet"),
  29788. name: "Party Wipe",
  29789. image: {
  29790. source: "./media/characters/withers/party-wipe.svg",
  29791. extra: 1864/1207,
  29792. bottom: 0/1864
  29793. }
  29794. },
  29795. },
  29796. [
  29797. {
  29798. name: "Macro",
  29799. height: math.unit(167, "feet"),
  29800. default: true
  29801. },
  29802. {
  29803. name: "Megamacro",
  29804. height: math.unit(15, "miles")
  29805. }
  29806. ]
  29807. ))
  29808. characterMakers.push(() => makeCharacter(
  29809. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  29810. {
  29811. front: {
  29812. height: math.unit(6 + 7 / 12, "feet"),
  29813. weight: math.unit(250, "lb"),
  29814. name: "Front",
  29815. image: {
  29816. source: "./media/characters/nemoskii/front.svg",
  29817. extra: 2270 / 1734,
  29818. bottom: 86 / 2354
  29819. }
  29820. },
  29821. back: {
  29822. height: math.unit(6 + 7 / 12, "feet"),
  29823. weight: math.unit(250, "lb"),
  29824. name: "Back",
  29825. image: {
  29826. source: "./media/characters/nemoskii/back.svg",
  29827. extra: 1845 / 1788,
  29828. bottom: 10.5 / 1852
  29829. }
  29830. },
  29831. head: {
  29832. height: math.unit(1.31, "feet"),
  29833. name: "Head",
  29834. image: {
  29835. source: "./media/characters/nemoskii/head.svg"
  29836. }
  29837. },
  29838. },
  29839. [
  29840. {
  29841. name: "Micro",
  29842. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  29843. },
  29844. {
  29845. name: "Normal",
  29846. height: math.unit(6 + 7 / 12, "feet"),
  29847. default: true
  29848. },
  29849. {
  29850. name: "Macro",
  29851. height: math.unit((6 + 7 / 12) * 150, "feet")
  29852. },
  29853. {
  29854. name: "Macro+",
  29855. height: math.unit((6 + 7 / 12) * 500, "feet")
  29856. },
  29857. {
  29858. name: "Megamacro",
  29859. height: math.unit((6 + 7 / 12) * 100000, "feet")
  29860. },
  29861. ]
  29862. ))
  29863. characterMakers.push(() => makeCharacter(
  29864. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  29865. {
  29866. front: {
  29867. height: math.unit(1, "mile"),
  29868. weight: math.unit(265261.9, "lb"),
  29869. name: "Front",
  29870. image: {
  29871. source: "./media/characters/shui/front.svg",
  29872. extra: 1633 / 1564,
  29873. bottom: 91.5 / 1726
  29874. }
  29875. },
  29876. },
  29877. [
  29878. {
  29879. name: "Macro",
  29880. height: math.unit(1, "mile"),
  29881. default: true
  29882. },
  29883. ]
  29884. ))
  29885. characterMakers.push(() => makeCharacter(
  29886. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  29887. {
  29888. front: {
  29889. height: math.unit(12 + 6 / 12, "feet"),
  29890. weight: math.unit(1342, "lb"),
  29891. name: "Front",
  29892. image: {
  29893. source: "./media/characters/arokh-takakura/front.svg",
  29894. extra: 1089 / 1043,
  29895. bottom: 77.4 / 1176.7
  29896. }
  29897. },
  29898. back: {
  29899. height: math.unit(12 + 6 / 12, "feet"),
  29900. weight: math.unit(1342, "lb"),
  29901. name: "Back",
  29902. image: {
  29903. source: "./media/characters/arokh-takakura/back.svg",
  29904. extra: 1046 / 1019,
  29905. bottom: 102 / 1150
  29906. }
  29907. },
  29908. },
  29909. [
  29910. {
  29911. name: "Big",
  29912. height: math.unit(12 + 6 / 12, "feet"),
  29913. default: true
  29914. },
  29915. ]
  29916. ))
  29917. characterMakers.push(() => makeCharacter(
  29918. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  29919. {
  29920. front: {
  29921. height: math.unit(5 + 6 / 12, "feet"),
  29922. weight: math.unit(150, "lb"),
  29923. name: "Front",
  29924. image: {
  29925. source: "./media/characters/theo/front.svg",
  29926. extra: 1184 / 1131,
  29927. bottom: 7.4 / 1191
  29928. }
  29929. },
  29930. },
  29931. [
  29932. {
  29933. name: "Micro",
  29934. height: math.unit(5, "inches")
  29935. },
  29936. {
  29937. name: "Normal",
  29938. height: math.unit(5 + 6 / 12, "feet"),
  29939. default: true
  29940. },
  29941. ]
  29942. ))
  29943. characterMakers.push(() => makeCharacter(
  29944. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  29945. {
  29946. front: {
  29947. height: math.unit(5 + 9 / 12, "feet"),
  29948. weight: math.unit(130, "lb"),
  29949. name: "Front",
  29950. image: {
  29951. source: "./media/characters/cecelia-swift/front.svg",
  29952. extra: 502 / 484,
  29953. bottom: 23 / 523
  29954. }
  29955. },
  29956. back: {
  29957. height: math.unit(5 + 9 / 12, "feet"),
  29958. weight: math.unit(130, "lb"),
  29959. name: "Back",
  29960. image: {
  29961. source: "./media/characters/cecelia-swift/back.svg",
  29962. extra: 499 / 485,
  29963. bottom: 12 / 511
  29964. }
  29965. },
  29966. head: {
  29967. height: math.unit(0.90, "feet"),
  29968. name: "Head",
  29969. image: {
  29970. source: "./media/characters/cecelia-swift/head.svg"
  29971. }
  29972. },
  29973. rump: {
  29974. height: math.unit(1.75, "feet"),
  29975. name: "Rump",
  29976. image: {
  29977. source: "./media/characters/cecelia-swift/rump.svg"
  29978. }
  29979. },
  29980. },
  29981. [
  29982. {
  29983. name: "Normal",
  29984. height: math.unit(5 + 9 / 12, "feet"),
  29985. default: true
  29986. },
  29987. {
  29988. name: "Big",
  29989. height: math.unit(50, "feet")
  29990. },
  29991. {
  29992. name: "Macro",
  29993. height: math.unit(100, "feet")
  29994. },
  29995. {
  29996. name: "Macro+",
  29997. height: math.unit(500, "feet")
  29998. },
  29999. {
  30000. name: "Macro++",
  30001. height: math.unit(1000, "feet")
  30002. },
  30003. ]
  30004. ))
  30005. characterMakers.push(() => makeCharacter(
  30006. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  30007. {
  30008. front: {
  30009. height: math.unit(6, "feet"),
  30010. weight: math.unit(150, "lb"),
  30011. name: "Front",
  30012. image: {
  30013. source: "./media/characters/kaunan/front.svg",
  30014. extra: 2890 / 2523,
  30015. bottom: 49 / 2939
  30016. }
  30017. },
  30018. },
  30019. [
  30020. {
  30021. name: "Macro",
  30022. height: math.unit(150, "feet"),
  30023. default: true
  30024. },
  30025. ]
  30026. ))
  30027. characterMakers.push(() => makeCharacter(
  30028. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  30029. {
  30030. dressed: {
  30031. height: math.unit(175, "cm"),
  30032. weight: math.unit(60, "kg"),
  30033. name: "Dressed",
  30034. image: {
  30035. source: "./media/characters/fei/dressed.svg",
  30036. extra: 1402/1278,
  30037. bottom: 27/1429
  30038. }
  30039. },
  30040. nude: {
  30041. height: math.unit(175, "cm"),
  30042. weight: math.unit(60, "kg"),
  30043. name: "Nude",
  30044. image: {
  30045. source: "./media/characters/fei/nude.svg",
  30046. extra: 1402/1278,
  30047. bottom: 27/1429
  30048. }
  30049. },
  30050. heels: {
  30051. height: math.unit(0.466, "feet"),
  30052. name: "Heels",
  30053. image: {
  30054. source: "./media/characters/fei/heels.svg",
  30055. extra: 156/152,
  30056. bottom: 28/184
  30057. }
  30058. },
  30059. },
  30060. [
  30061. {
  30062. name: "Mortal",
  30063. height: math.unit(175, "cm")
  30064. },
  30065. {
  30066. name: "Normal",
  30067. height: math.unit(3500, "m")
  30068. },
  30069. {
  30070. name: "Stroll",
  30071. height: math.unit(18.4, "km"),
  30072. default: true
  30073. },
  30074. {
  30075. name: "Showoff",
  30076. height: math.unit(175, "km")
  30077. },
  30078. ]
  30079. ))
  30080. characterMakers.push(() => makeCharacter(
  30081. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  30082. {
  30083. front: {
  30084. height: math.unit(7, "feet"),
  30085. weight: math.unit(1000, "kg"),
  30086. name: "Front",
  30087. image: {
  30088. source: "./media/characters/edrax/front.svg",
  30089. extra: 2838 / 2550,
  30090. bottom: 130 / 2968
  30091. }
  30092. },
  30093. },
  30094. [
  30095. {
  30096. name: "Small",
  30097. height: math.unit(7, "feet")
  30098. },
  30099. {
  30100. name: "Normal",
  30101. height: math.unit(1500, "meters")
  30102. },
  30103. {
  30104. name: "Mega",
  30105. height: math.unit(12000000, "km"),
  30106. default: true
  30107. },
  30108. {
  30109. name: "Megamacro",
  30110. height: math.unit(10600000, "lightyears")
  30111. },
  30112. {
  30113. name: "Hypermacro",
  30114. height: math.unit(256, "yottameters")
  30115. },
  30116. ]
  30117. ))
  30118. characterMakers.push(() => makeCharacter(
  30119. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  30120. {
  30121. front: {
  30122. height: math.unit(10, "feet"),
  30123. weight: math.unit(750, "lb"),
  30124. name: "Front",
  30125. image: {
  30126. source: "./media/characters/clove/front.svg",
  30127. extra: 1918/1751,
  30128. bottom: 52/1970
  30129. }
  30130. },
  30131. back: {
  30132. height: math.unit(10, "feet"),
  30133. weight: math.unit(750, "lb"),
  30134. name: "Back",
  30135. image: {
  30136. source: "./media/characters/clove/back.svg",
  30137. extra: 1912/1747,
  30138. bottom: 50/1962
  30139. }
  30140. },
  30141. },
  30142. [
  30143. {
  30144. name: "Normal",
  30145. height: math.unit(10, "feet"),
  30146. default: true
  30147. },
  30148. ]
  30149. ))
  30150. characterMakers.push(() => makeCharacter(
  30151. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30152. {
  30153. front: {
  30154. height: math.unit(4, "feet"),
  30155. weight: math.unit(50, "lb"),
  30156. name: "Front",
  30157. image: {
  30158. source: "./media/characters/alex-rabbit/front.svg",
  30159. extra: 507 / 458,
  30160. bottom: 18.5 / 527
  30161. }
  30162. },
  30163. back: {
  30164. height: math.unit(4, "feet"),
  30165. weight: math.unit(50, "lb"),
  30166. name: "Back",
  30167. image: {
  30168. source: "./media/characters/alex-rabbit/back.svg",
  30169. extra: 502 / 460,
  30170. bottom: 18.9 / 521
  30171. }
  30172. },
  30173. },
  30174. [
  30175. {
  30176. name: "Normal",
  30177. height: math.unit(4, "feet"),
  30178. default: true
  30179. },
  30180. ]
  30181. ))
  30182. characterMakers.push(() => makeCharacter(
  30183. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  30184. {
  30185. front: {
  30186. height: math.unit(1 + 3 / 12, "feet"),
  30187. weight: math.unit(80, "lb"),
  30188. name: "Front",
  30189. image: {
  30190. source: "./media/characters/zander-rose/front.svg",
  30191. extra: 916 / 797,
  30192. bottom: 17 / 933
  30193. }
  30194. },
  30195. back: {
  30196. height: math.unit(1 + 3 / 12, "feet"),
  30197. weight: math.unit(80, "lb"),
  30198. name: "Back",
  30199. image: {
  30200. source: "./media/characters/zander-rose/back.svg",
  30201. extra: 903 / 779,
  30202. bottom: 31 / 934
  30203. }
  30204. },
  30205. },
  30206. [
  30207. {
  30208. name: "Normal",
  30209. height: math.unit(1 + 3 / 12, "feet"),
  30210. default: true
  30211. },
  30212. ]
  30213. ))
  30214. characterMakers.push(() => makeCharacter(
  30215. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  30216. {
  30217. anthro: {
  30218. height: math.unit(6, "feet"),
  30219. weight: math.unit(150, "lb"),
  30220. name: "Anthro",
  30221. image: {
  30222. source: "./media/characters/razz/anthro.svg",
  30223. extra: 1437 / 1343,
  30224. bottom: 48 / 1485
  30225. }
  30226. },
  30227. feral: {
  30228. height: math.unit(6, "feet"),
  30229. weight: math.unit(150, "lb"),
  30230. name: "Feral",
  30231. image: {
  30232. source: "./media/characters/razz/feral.svg",
  30233. extra: 2569 / 1385,
  30234. bottom: 95 / 2664
  30235. }
  30236. },
  30237. },
  30238. [
  30239. {
  30240. name: "Normal",
  30241. height: math.unit(6, "feet"),
  30242. default: true
  30243. },
  30244. ]
  30245. ))
  30246. characterMakers.push(() => makeCharacter(
  30247. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  30248. {
  30249. front: {
  30250. height: math.unit(9 + 4 / 12, "feet"),
  30251. weight: math.unit(500, "lb"),
  30252. name: "Front",
  30253. image: {
  30254. source: "./media/characters/morrigan/front.svg",
  30255. extra: 2707 / 2579,
  30256. bottom: 156 / 2863
  30257. }
  30258. },
  30259. },
  30260. [
  30261. {
  30262. name: "Normal",
  30263. height: math.unit(9 + 4 / 12, "feet"),
  30264. default: true
  30265. },
  30266. ]
  30267. ))
  30268. characterMakers.push(() => makeCharacter(
  30269. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  30270. {
  30271. front: {
  30272. height: math.unit(5, "stories"),
  30273. weight: math.unit(4000, "lb"),
  30274. name: "Front",
  30275. image: {
  30276. source: "./media/characters/jenene/front.svg",
  30277. extra: 1780 / 1710,
  30278. bottom: 57 / 1837
  30279. }
  30280. },
  30281. },
  30282. [
  30283. {
  30284. name: "Normal",
  30285. height: math.unit(5, "stories"),
  30286. default: true
  30287. },
  30288. ]
  30289. ))
  30290. characterMakers.push(() => makeCharacter(
  30291. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  30292. {
  30293. taurSfw: {
  30294. height: math.unit(10, "meters"),
  30295. weight: math.unit(17500, "kg"),
  30296. name: "Taur",
  30297. image: {
  30298. source: "./media/characters/faey/taur-sfw.svg",
  30299. extra: 1200 / 968,
  30300. bottom: 41 / 1241
  30301. }
  30302. },
  30303. chestmaw: {
  30304. height: math.unit(2.01, "meters"),
  30305. name: "Chestmaw",
  30306. image: {
  30307. source: "./media/characters/faey/chestmaw.svg"
  30308. }
  30309. },
  30310. foot: {
  30311. height: math.unit(2.43, "meters"),
  30312. name: "Foot",
  30313. image: {
  30314. source: "./media/characters/faey/foot.svg"
  30315. }
  30316. },
  30317. jaws: {
  30318. height: math.unit(1.66, "meters"),
  30319. name: "Jaws",
  30320. image: {
  30321. source: "./media/characters/faey/jaws.svg"
  30322. }
  30323. },
  30324. tongues: {
  30325. height: math.unit(2.01, "meters"),
  30326. name: "Tongues",
  30327. image: {
  30328. source: "./media/characters/faey/tongues.svg"
  30329. }
  30330. },
  30331. },
  30332. [
  30333. {
  30334. name: "Small",
  30335. height: math.unit(10, "meters"),
  30336. default: true
  30337. },
  30338. {
  30339. name: "Big",
  30340. height: math.unit(500000, "km")
  30341. },
  30342. ]
  30343. ))
  30344. characterMakers.push(() => makeCharacter(
  30345. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  30346. {
  30347. front: {
  30348. height: math.unit(7, "feet"),
  30349. weight: math.unit(275, "lb"),
  30350. name: "Front",
  30351. image: {
  30352. source: "./media/characters/roku/front.svg",
  30353. extra: 903 / 878,
  30354. bottom: 37 / 940
  30355. }
  30356. },
  30357. },
  30358. [
  30359. {
  30360. name: "Normal",
  30361. height: math.unit(7, "feet"),
  30362. default: true
  30363. },
  30364. {
  30365. name: "Macro",
  30366. height: math.unit(500, "feet")
  30367. },
  30368. {
  30369. name: "Megamacro",
  30370. height: math.unit(200, "miles")
  30371. },
  30372. ]
  30373. ))
  30374. characterMakers.push(() => makeCharacter(
  30375. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  30376. {
  30377. front: {
  30378. height: math.unit(6 + 2 / 12, "feet"),
  30379. weight: math.unit(150, "lb"),
  30380. name: "Front",
  30381. image: {
  30382. source: "./media/characters/lira/front.svg",
  30383. extra: 1727 / 1605,
  30384. bottom: 26 / 1753
  30385. }
  30386. },
  30387. back: {
  30388. height: math.unit(6 + 2 / 12, "feet"),
  30389. weight: math.unit(150, "lb"),
  30390. name: "Back",
  30391. image: {
  30392. source: "./media/characters/lira/back.svg",
  30393. extra: 1713/1621,
  30394. bottom: 20/1733
  30395. }
  30396. },
  30397. hand: {
  30398. height: math.unit(0.75, "feet"),
  30399. name: "Hand",
  30400. image: {
  30401. source: "./media/characters/lira/hand.svg"
  30402. }
  30403. },
  30404. maw: {
  30405. height: math.unit(0.65, "feet"),
  30406. name: "Maw",
  30407. image: {
  30408. source: "./media/characters/lira/maw.svg"
  30409. }
  30410. },
  30411. pawDigi: {
  30412. height: math.unit(1.6, "feet"),
  30413. name: "Paw Digi",
  30414. image: {
  30415. source: "./media/characters/lira/paw-digi.svg"
  30416. }
  30417. },
  30418. pawPlanti: {
  30419. height: math.unit(1.4, "feet"),
  30420. name: "Paw Planti",
  30421. image: {
  30422. source: "./media/characters/lira/paw-planti.svg"
  30423. }
  30424. },
  30425. },
  30426. [
  30427. {
  30428. name: "Normal",
  30429. height: math.unit(6 + 2 / 12, "feet"),
  30430. default: true
  30431. },
  30432. {
  30433. name: "Macro",
  30434. height: math.unit(100, "feet")
  30435. },
  30436. {
  30437. name: "Macro²",
  30438. height: math.unit(1600, "feet")
  30439. },
  30440. {
  30441. name: "Planetary",
  30442. height: math.unit(20, "earths")
  30443. },
  30444. ]
  30445. ))
  30446. characterMakers.push(() => makeCharacter(
  30447. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  30448. {
  30449. front: {
  30450. height: math.unit(6, "feet"),
  30451. weight: math.unit(150, "lb"),
  30452. name: "Front",
  30453. image: {
  30454. source: "./media/characters/hadjet/front.svg",
  30455. extra: 1480 / 1346,
  30456. bottom: 26 / 1506
  30457. }
  30458. },
  30459. frontNsfw: {
  30460. height: math.unit(6, "feet"),
  30461. weight: math.unit(150, "lb"),
  30462. name: "Front (NSFW)",
  30463. image: {
  30464. source: "./media/characters/hadjet/front-nsfw.svg",
  30465. extra: 1440 / 1358,
  30466. bottom: 52 / 1492
  30467. }
  30468. },
  30469. },
  30470. [
  30471. {
  30472. name: "Macro",
  30473. height: math.unit(10, "stories"),
  30474. default: true
  30475. },
  30476. {
  30477. name: "Megamacro",
  30478. height: math.unit(1.5, "miles")
  30479. },
  30480. {
  30481. name: "Megamacro+",
  30482. height: math.unit(5, "miles")
  30483. },
  30484. ]
  30485. ))
  30486. characterMakers.push(() => makeCharacter(
  30487. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  30488. {
  30489. side: {
  30490. height: math.unit(106, "feet"),
  30491. weight: math.unit(500, "tonnes"),
  30492. name: "Side",
  30493. image: {
  30494. source: "./media/characters/kodran/side.svg",
  30495. extra: 553 / 480,
  30496. bottom: 33 / 586
  30497. }
  30498. },
  30499. front: {
  30500. height: math.unit(132, "feet"),
  30501. weight: math.unit(500, "tonnes"),
  30502. name: "Front",
  30503. image: {
  30504. source: "./media/characters/kodran/front.svg",
  30505. extra: 667 / 643,
  30506. bottom: 42 / 709
  30507. }
  30508. },
  30509. flying: {
  30510. height: math.unit(350, "feet"),
  30511. weight: math.unit(500, "tonnes"),
  30512. name: "Flying",
  30513. image: {
  30514. source: "./media/characters/kodran/flying.svg"
  30515. }
  30516. },
  30517. foot: {
  30518. height: math.unit(33, "feet"),
  30519. name: "Foot",
  30520. image: {
  30521. source: "./media/characters/kodran/foot.svg"
  30522. }
  30523. },
  30524. footFront: {
  30525. height: math.unit(19, "feet"),
  30526. name: "Foot (Front)",
  30527. image: {
  30528. source: "./media/characters/kodran/foot-front.svg",
  30529. extra: 261 / 261,
  30530. bottom: 91 / 352
  30531. }
  30532. },
  30533. headFront: {
  30534. height: math.unit(53, "feet"),
  30535. name: "Head (Front)",
  30536. image: {
  30537. source: "./media/characters/kodran/head-front.svg"
  30538. }
  30539. },
  30540. headSide: {
  30541. height: math.unit(65, "feet"),
  30542. name: "Head (Side)",
  30543. image: {
  30544. source: "./media/characters/kodran/head-side.svg"
  30545. }
  30546. },
  30547. throat: {
  30548. height: math.unit(79, "feet"),
  30549. name: "Throat",
  30550. image: {
  30551. source: "./media/characters/kodran/throat.svg"
  30552. }
  30553. },
  30554. },
  30555. [
  30556. {
  30557. name: "Large",
  30558. height: math.unit(106, "feet"),
  30559. default: true
  30560. },
  30561. ]
  30562. ))
  30563. characterMakers.push(() => makeCharacter(
  30564. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  30565. {
  30566. side: {
  30567. height: math.unit(11, "feet"),
  30568. weight: math.unit(150, "lb"),
  30569. name: "Side",
  30570. image: {
  30571. source: "./media/characters/pyxaron/side.svg",
  30572. extra: 305 / 195,
  30573. bottom: 17 / 322
  30574. }
  30575. },
  30576. },
  30577. [
  30578. {
  30579. name: "Normal",
  30580. height: math.unit(11, "feet"),
  30581. default: true
  30582. },
  30583. ]
  30584. ))
  30585. characterMakers.push(() => makeCharacter(
  30586. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  30587. {
  30588. front: {
  30589. height: math.unit(6, "feet"),
  30590. weight: math.unit(150, "lb"),
  30591. name: "Front",
  30592. image: {
  30593. source: "./media/characters/meep/front.svg",
  30594. extra: 88 / 80,
  30595. bottom: 6 / 94
  30596. }
  30597. },
  30598. },
  30599. [
  30600. {
  30601. name: "Fun Sized",
  30602. height: math.unit(2, "inches"),
  30603. default: true
  30604. },
  30605. {
  30606. name: "Friend Sized",
  30607. height: math.unit(8, "inches")
  30608. },
  30609. ]
  30610. ))
  30611. characterMakers.push(() => makeCharacter(
  30612. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30613. {
  30614. front: {
  30615. height: math.unit(15, "feet"),
  30616. weight: math.unit(2500, "lb"),
  30617. name: "Front",
  30618. image: {
  30619. source: "./media/characters/holly-rabbit/front.svg",
  30620. extra: 1433 / 1233,
  30621. bottom: 125 / 1558
  30622. }
  30623. },
  30624. dick: {
  30625. height: math.unit(4.6, "feet"),
  30626. name: "Dick",
  30627. image: {
  30628. source: "./media/characters/holly-rabbit/dick.svg"
  30629. }
  30630. },
  30631. },
  30632. [
  30633. {
  30634. name: "Normal",
  30635. height: math.unit(15, "feet"),
  30636. default: true
  30637. },
  30638. {
  30639. name: "Macro",
  30640. height: math.unit(250, "feet")
  30641. },
  30642. {
  30643. name: "Macro+",
  30644. height: math.unit(2500, "feet")
  30645. },
  30646. ]
  30647. ))
  30648. characterMakers.push(() => makeCharacter(
  30649. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  30650. {
  30651. front: {
  30652. height: math.unit(3.02, "meters"),
  30653. weight: math.unit(500, "kg"),
  30654. name: "Front",
  30655. image: {
  30656. source: "./media/characters/drena/front.svg",
  30657. extra: 282 / 243,
  30658. bottom: 8 / 290
  30659. }
  30660. },
  30661. side: {
  30662. height: math.unit(3.02, "meters"),
  30663. weight: math.unit(500, "kg"),
  30664. name: "Side",
  30665. image: {
  30666. source: "./media/characters/drena/side.svg",
  30667. extra: 280 / 245,
  30668. bottom: 10 / 290
  30669. }
  30670. },
  30671. back: {
  30672. height: math.unit(3.02, "meters"),
  30673. weight: math.unit(500, "kg"),
  30674. name: "Back",
  30675. image: {
  30676. source: "./media/characters/drena/back.svg",
  30677. extra: 278 / 243,
  30678. bottom: 2 / 280
  30679. }
  30680. },
  30681. foot: {
  30682. height: math.unit(0.75, "meters"),
  30683. name: "Foot",
  30684. image: {
  30685. source: "./media/characters/drena/foot.svg"
  30686. }
  30687. },
  30688. maw: {
  30689. height: math.unit(0.82, "meters"),
  30690. name: "Maw",
  30691. image: {
  30692. source: "./media/characters/drena/maw.svg"
  30693. }
  30694. },
  30695. eating: {
  30696. height: math.unit(0.75, "meters"),
  30697. name: "Eating",
  30698. image: {
  30699. source: "./media/characters/drena/eating.svg"
  30700. }
  30701. },
  30702. rump: {
  30703. height: math.unit(0.93, "meters"),
  30704. name: "Rump",
  30705. image: {
  30706. source: "./media/characters/drena/rump.svg"
  30707. }
  30708. },
  30709. },
  30710. [
  30711. {
  30712. name: "Normal",
  30713. height: math.unit(3.02, "meters"),
  30714. default: true
  30715. },
  30716. ]
  30717. ))
  30718. characterMakers.push(() => makeCharacter(
  30719. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  30720. {
  30721. front: {
  30722. height: math.unit(6 + 4 / 12, "feet"),
  30723. weight: math.unit(250, "lb"),
  30724. name: "Front",
  30725. image: {
  30726. source: "./media/characters/remmyzilla/front.svg",
  30727. extra: 4033 / 3588,
  30728. bottom: 123 / 4156
  30729. }
  30730. },
  30731. back: {
  30732. height: math.unit(6 + 4 / 12, "feet"),
  30733. weight: math.unit(250, "lb"),
  30734. name: "Back",
  30735. image: {
  30736. source: "./media/characters/remmyzilla/back.svg",
  30737. extra: 2687 / 2555,
  30738. bottom: 48 / 2735
  30739. }
  30740. },
  30741. paw: {
  30742. height: math.unit(1.73, "feet"),
  30743. name: "Paw",
  30744. image: {
  30745. source: "./media/characters/remmyzilla/paw.svg"
  30746. },
  30747. extraAttributes: {
  30748. "toeSize": {
  30749. name: "Toe Size",
  30750. power: 2,
  30751. type: "area",
  30752. base: math.unit(0.0035, "m^2")
  30753. },
  30754. "padSize": {
  30755. name: "Pad Size",
  30756. power: 2,
  30757. type: "area",
  30758. base: math.unit(0.015, "m^2")
  30759. },
  30760. "pawsize": {
  30761. name: "Paw Size",
  30762. power: 2,
  30763. type: "area",
  30764. base: math.unit(0.072, "m^2")
  30765. },
  30766. }
  30767. },
  30768. maw: {
  30769. height: math.unit(1.73, "feet"),
  30770. name: "Maw",
  30771. image: {
  30772. source: "./media/characters/remmyzilla/maw.svg"
  30773. }
  30774. },
  30775. },
  30776. [
  30777. {
  30778. name: "Normal",
  30779. height: math.unit(6 + 4 / 12, "feet")
  30780. },
  30781. {
  30782. name: "Minimacro",
  30783. height: math.unit(12 + 8 / 12, "feet")
  30784. },
  30785. {
  30786. name: "Normal",
  30787. height: math.unit(640, "feet"),
  30788. default: true
  30789. },
  30790. {
  30791. name: "Megamacro",
  30792. height: math.unit(6400, "feet")
  30793. },
  30794. {
  30795. name: "Gigamacro",
  30796. height: math.unit(64000, "miles")
  30797. },
  30798. ]
  30799. ))
  30800. characterMakers.push(() => makeCharacter(
  30801. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  30802. {
  30803. front: {
  30804. height: math.unit(2.5, "meters"),
  30805. weight: math.unit(300, "lb"),
  30806. name: "Front",
  30807. image: {
  30808. source: "./media/characters/lawrence/front.svg",
  30809. extra: 357 / 335,
  30810. bottom: 30 / 387
  30811. }
  30812. },
  30813. back: {
  30814. height: math.unit(2.5, "meters"),
  30815. weight: math.unit(300, "lb"),
  30816. name: "Back",
  30817. image: {
  30818. source: "./media/characters/lawrence/back.svg",
  30819. extra: 357 / 338,
  30820. bottom: 16 / 373
  30821. }
  30822. },
  30823. head: {
  30824. height: math.unit(0.9, "meter"),
  30825. name: "Head",
  30826. image: {
  30827. source: "./media/characters/lawrence/head.svg"
  30828. }
  30829. },
  30830. maw: {
  30831. height: math.unit(0.7, "meter"),
  30832. name: "Maw",
  30833. image: {
  30834. source: "./media/characters/lawrence/maw.svg"
  30835. }
  30836. },
  30837. footBottom: {
  30838. height: math.unit(0.5, "meter"),
  30839. name: "Foot (Bottom)",
  30840. image: {
  30841. source: "./media/characters/lawrence/foot-bottom.svg"
  30842. }
  30843. },
  30844. footTop: {
  30845. height: math.unit(0.5, "meter"),
  30846. name: "Foot (Top)",
  30847. image: {
  30848. source: "./media/characters/lawrence/foot-top.svg"
  30849. }
  30850. },
  30851. },
  30852. [
  30853. {
  30854. name: "Normal",
  30855. height: math.unit(2.5, "meters"),
  30856. default: true
  30857. },
  30858. {
  30859. name: "Macro",
  30860. height: math.unit(95, "meters")
  30861. },
  30862. {
  30863. name: "Megamacro",
  30864. height: math.unit(150, "km")
  30865. },
  30866. ]
  30867. ))
  30868. characterMakers.push(() => makeCharacter(
  30869. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  30870. {
  30871. front: {
  30872. height: math.unit(4.2, "meters"),
  30873. preyCapacity: math.unit(50, "m^3"),
  30874. weight: math.unit(30, "tonnes"),
  30875. name: "Front",
  30876. image: {
  30877. source: "./media/characters/sydney/front.svg",
  30878. extra: 1177/1129,
  30879. bottom: 197/1374
  30880. },
  30881. extraAttributes: {
  30882. "length": {
  30883. name: "Length",
  30884. power: 1,
  30885. type: "length",
  30886. base: math.unit(21, "meters")
  30887. },
  30888. }
  30889. },
  30890. },
  30891. [
  30892. {
  30893. name: "Normal",
  30894. height: math.unit(4.2, "meters"),
  30895. default: true
  30896. },
  30897. ]
  30898. ))
  30899. characterMakers.push(() => makeCharacter(
  30900. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  30901. {
  30902. back: {
  30903. height: math.unit(201, "feet"),
  30904. name: "Back",
  30905. image: {
  30906. source: "./media/characters/jessica/back.svg",
  30907. extra: 273 / 259,
  30908. bottom: 7 / 280
  30909. }
  30910. },
  30911. },
  30912. [
  30913. {
  30914. name: "Normal",
  30915. height: math.unit(201, "feet"),
  30916. default: true
  30917. },
  30918. {
  30919. name: "Megamacro",
  30920. height: math.unit(8, "miles")
  30921. },
  30922. ]
  30923. ))
  30924. characterMakers.push(() => makeCharacter(
  30925. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  30926. {
  30927. side: {
  30928. height: math.unit(5.6, "m"),
  30929. weight: math.unit(8000, "kg"),
  30930. name: "Side",
  30931. image: {
  30932. source: "./media/characters/victoria/side.svg",
  30933. extra: 1542/1229,
  30934. bottom: 124/1666
  30935. }
  30936. },
  30937. maw: {
  30938. height: math.unit(7.14, "feet"),
  30939. name: "Maw",
  30940. image: {
  30941. source: "./media/characters/victoria/maw.svg"
  30942. }
  30943. },
  30944. },
  30945. [
  30946. {
  30947. name: "Normal",
  30948. height: math.unit(5.6, "m"),
  30949. default: true
  30950. },
  30951. ]
  30952. ))
  30953. characterMakers.push(() => makeCharacter(
  30954. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  30955. {
  30956. front: {
  30957. height: math.unit(5 + 6 / 12, "feet"),
  30958. name: "Front",
  30959. image: {
  30960. source: "./media/characters/cat/front.svg",
  30961. extra: 1449/1295,
  30962. bottom: 34/1483
  30963. },
  30964. form: "cat",
  30965. default: true
  30966. },
  30967. back: {
  30968. height: math.unit(5 + 6 / 12, "feet"),
  30969. name: "Back",
  30970. image: {
  30971. source: "./media/characters/cat/back.svg",
  30972. extra: 1466/1301,
  30973. bottom: 19/1485
  30974. },
  30975. form: "cat"
  30976. },
  30977. taur: {
  30978. height: math.unit(7, "feet"),
  30979. name: "Taur",
  30980. image: {
  30981. source: "./media/characters/cat/taur.svg",
  30982. extra: 1389/1233,
  30983. bottom: 83/1472
  30984. },
  30985. form: "taur",
  30986. default: true
  30987. },
  30988. lucarioFront: {
  30989. height: math.unit(4, "feet"),
  30990. name: "Lucario (Front)",
  30991. image: {
  30992. source: "./media/characters/cat/lucario-front.svg",
  30993. extra: 1149/1019,
  30994. bottom: 84/1233
  30995. },
  30996. form: "lucario",
  30997. default: true
  30998. },
  30999. lucarioBack: {
  31000. height: math.unit(4, "feet"),
  31001. name: "Lucario (Back)",
  31002. image: {
  31003. source: "./media/characters/cat/lucario-back.svg",
  31004. extra: 1190/1059,
  31005. bottom: 33/1223
  31006. },
  31007. form: "lucario"
  31008. },
  31009. megaLucario: {
  31010. height: math.unit(4, "feet"),
  31011. name: "Mega Lucario",
  31012. image: {
  31013. source: "./media/characters/cat/mega-lucario.svg",
  31014. extra: 1515 / 1319,
  31015. bottom: 63 / 1578
  31016. },
  31017. form: "lucario"
  31018. },
  31019. nickit: {
  31020. height: math.unit(2, "feet"),
  31021. name: "Nickit",
  31022. image: {
  31023. source: "./media/characters/cat/nickit.svg",
  31024. extra: 1980 / 1585,
  31025. bottom: 102 / 2082
  31026. },
  31027. form: "nickit",
  31028. default: true
  31029. },
  31030. lopunnyFront: {
  31031. height: math.unit(5, "feet"),
  31032. name: "Lopunny (Front)",
  31033. image: {
  31034. source: "./media/characters/cat/lopunny-front.svg",
  31035. extra: 1782 / 1469,
  31036. bottom: 38 / 1820
  31037. },
  31038. form: "lopunny",
  31039. default: true
  31040. },
  31041. lopunnyBack: {
  31042. height: math.unit(5, "feet"),
  31043. name: "Lopunny (Back)",
  31044. image: {
  31045. source: "./media/characters/cat/lopunny-back.svg",
  31046. extra: 1660 / 1490,
  31047. bottom: 25 / 1685
  31048. },
  31049. form: "lopunny"
  31050. },
  31051. },
  31052. [
  31053. {
  31054. name: "Really small",
  31055. height: math.unit(1, "nm")
  31056. },
  31057. {
  31058. name: "Micro",
  31059. height: math.unit(5, "inches")
  31060. },
  31061. {
  31062. name: "Normal",
  31063. height: math.unit(5 + 6 / 12, "feet"),
  31064. default: true
  31065. },
  31066. {
  31067. name: "Macro",
  31068. height: math.unit(50, "feet")
  31069. },
  31070. {
  31071. name: "Macro+",
  31072. height: math.unit(150, "feet")
  31073. },
  31074. {
  31075. name: "Megamacro",
  31076. height: math.unit(100, "miles")
  31077. },
  31078. ]
  31079. ))
  31080. characterMakers.push(() => makeCharacter(
  31081. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  31082. {
  31083. front: {
  31084. height: math.unit(63.4, "meters"),
  31085. weight: math.unit(3.28349e+6, "kilograms"),
  31086. name: "Front",
  31087. image: {
  31088. source: "./media/characters/kirina-violet/front.svg",
  31089. extra: 2812 / 2725,
  31090. bottom: 0 / 2812
  31091. }
  31092. },
  31093. back: {
  31094. height: math.unit(63.4, "meters"),
  31095. weight: math.unit(3.28349e+6, "kilograms"),
  31096. name: "Back",
  31097. image: {
  31098. source: "./media/characters/kirina-violet/back.svg",
  31099. extra: 2812 / 2725,
  31100. bottom: 0 / 2812
  31101. }
  31102. },
  31103. mouth: {
  31104. height: math.unit(4.35, "meters"),
  31105. name: "Mouth",
  31106. image: {
  31107. source: "./media/characters/kirina-violet/mouth.svg"
  31108. }
  31109. },
  31110. paw: {
  31111. height: math.unit(5.6, "meters"),
  31112. name: "Paw",
  31113. image: {
  31114. source: "./media/characters/kirina-violet/paw.svg"
  31115. }
  31116. },
  31117. tail: {
  31118. height: math.unit(18, "meters"),
  31119. name: "Tail",
  31120. image: {
  31121. source: "./media/characters/kirina-violet/tail.svg"
  31122. }
  31123. },
  31124. },
  31125. [
  31126. {
  31127. name: "Macro",
  31128. height: math.unit(63.4, "meters"),
  31129. default: true
  31130. },
  31131. ]
  31132. ))
  31133. characterMakers.push(() => makeCharacter(
  31134. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  31135. {
  31136. front: {
  31137. height: math.unit(75, "feet"),
  31138. name: "Front",
  31139. image: {
  31140. source: "./media/characters/cat-gigachu/front.svg",
  31141. extra: 1239/1027,
  31142. bottom: 32/1271
  31143. }
  31144. },
  31145. back: {
  31146. height: math.unit(75, "feet"),
  31147. name: "Back",
  31148. image: {
  31149. source: "./media/characters/cat-gigachu/back.svg",
  31150. extra: 1229/1030,
  31151. bottom: 9/1238
  31152. }
  31153. },
  31154. },
  31155. [
  31156. {
  31157. name: "Dynamax",
  31158. height: math.unit(75, "feet"),
  31159. default: true
  31160. },
  31161. ]
  31162. ))
  31163. characterMakers.push(() => makeCharacter(
  31164. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  31165. {
  31166. front: {
  31167. height: math.unit(6, "feet"),
  31168. weight: math.unit(150, "lb"),
  31169. name: "Front",
  31170. image: {
  31171. source: "./media/characters/sfaiyan/front.svg",
  31172. extra: 999 / 978,
  31173. bottom: 5 / 1004
  31174. }
  31175. },
  31176. },
  31177. [
  31178. {
  31179. name: "Normal",
  31180. height: math.unit(1.82, "meters")
  31181. },
  31182. {
  31183. name: "Giant",
  31184. height: math.unit(2.27, "km"),
  31185. default: true
  31186. },
  31187. ]
  31188. ))
  31189. characterMakers.push(() => makeCharacter(
  31190. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  31191. {
  31192. front: {
  31193. height: math.unit(179, "cm"),
  31194. weight: math.unit(100, "kg"),
  31195. name: "Front",
  31196. image: {
  31197. source: "./media/characters/raunehkeli/front.svg",
  31198. extra: 1934 / 1926,
  31199. bottom: 0 / 1934
  31200. }
  31201. },
  31202. },
  31203. [
  31204. {
  31205. name: "Normal",
  31206. height: math.unit(179, "cm")
  31207. },
  31208. {
  31209. name: "Maximum",
  31210. height: math.unit(575, "meters"),
  31211. default: true
  31212. },
  31213. ]
  31214. ))
  31215. characterMakers.push(() => makeCharacter(
  31216. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  31217. {
  31218. front: {
  31219. height: math.unit(6, "feet"),
  31220. weight: math.unit(150, "lb"),
  31221. name: "Front",
  31222. image: {
  31223. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  31224. extra: 2625 / 2518,
  31225. bottom: 60 / 2685
  31226. }
  31227. },
  31228. },
  31229. [
  31230. {
  31231. name: "Normal",
  31232. height: math.unit(6 + 2 / 12, "feet")
  31233. },
  31234. {
  31235. name: "Macro",
  31236. height: math.unit(1180, "feet"),
  31237. default: true
  31238. },
  31239. ]
  31240. ))
  31241. characterMakers.push(() => makeCharacter(
  31242. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  31243. {
  31244. front: {
  31245. height: math.unit(5 + 6 / 12, "feet"),
  31246. weight: math.unit(108, "lb"),
  31247. name: "Front",
  31248. image: {
  31249. source: "./media/characters/lilith-zott/front.svg",
  31250. extra: 2510 / 2238,
  31251. bottom: 100 / 2610
  31252. }
  31253. },
  31254. frontDressed: {
  31255. height: math.unit(5 + 6 / 12, "feet"),
  31256. weight: math.unit(108, "lb"),
  31257. name: "Front (Dressed)",
  31258. image: {
  31259. source: "./media/characters/lilith-zott/front-dressed.svg",
  31260. extra: 2510 / 2238,
  31261. bottom: 100 / 2610
  31262. }
  31263. },
  31264. },
  31265. [
  31266. {
  31267. name: "Normal",
  31268. height: math.unit(5 + 6 / 12, "feet")
  31269. },
  31270. {
  31271. name: "Macro",
  31272. height: math.unit(1030, "feet"),
  31273. default: true
  31274. },
  31275. ]
  31276. ))
  31277. characterMakers.push(() => makeCharacter(
  31278. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  31279. {
  31280. front: {
  31281. height: math.unit(6, "feet"),
  31282. weight: math.unit(150, "lb"),
  31283. name: "Front",
  31284. image: {
  31285. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  31286. extra: 2567 / 2435,
  31287. bottom: 39 / 2606
  31288. }
  31289. },
  31290. frontSuper: {
  31291. height: math.unit(6, "feet"),
  31292. name: "Front (Super)",
  31293. image: {
  31294. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  31295. extra: 2567 / 2435,
  31296. bottom: 39 / 2606
  31297. }
  31298. },
  31299. },
  31300. [
  31301. {
  31302. name: "Normal",
  31303. height: math.unit(5 + 10 / 12, "feet")
  31304. },
  31305. {
  31306. name: "Macro",
  31307. height: math.unit(1100, "feet"),
  31308. default: true
  31309. },
  31310. ]
  31311. ))
  31312. characterMakers.push(() => makeCharacter(
  31313. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  31314. {
  31315. front: {
  31316. height: math.unit(100, "miles"),
  31317. name: "Front",
  31318. image: {
  31319. source: "./media/characters/sona/front.svg",
  31320. extra: 2433 / 2201,
  31321. bottom: 53 / 2486
  31322. }
  31323. },
  31324. foot: {
  31325. height: math.unit(16.1, "miles"),
  31326. name: "Foot",
  31327. image: {
  31328. source: "./media/characters/sona/foot.svg"
  31329. }
  31330. },
  31331. },
  31332. [
  31333. {
  31334. name: "Macro",
  31335. height: math.unit(100, "miles"),
  31336. default: true
  31337. },
  31338. ]
  31339. ))
  31340. characterMakers.push(() => makeCharacter(
  31341. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  31342. {
  31343. front: {
  31344. height: math.unit(6, "feet"),
  31345. weight: math.unit(150, "lb"),
  31346. name: "Front",
  31347. image: {
  31348. source: "./media/characters/bailey/front.svg",
  31349. extra: 1778 / 1724,
  31350. bottom: 30 / 1808
  31351. }
  31352. },
  31353. },
  31354. [
  31355. {
  31356. name: "Micro",
  31357. height: math.unit(4, "inches")
  31358. },
  31359. {
  31360. name: "Normal",
  31361. height: math.unit(5 + 5 / 12, "feet"),
  31362. default: true
  31363. },
  31364. {
  31365. name: "Macro",
  31366. height: math.unit(250, "feet")
  31367. },
  31368. {
  31369. name: "Megamacro",
  31370. height: math.unit(100, "miles")
  31371. },
  31372. ]
  31373. ))
  31374. characterMakers.push(() => makeCharacter(
  31375. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  31376. {
  31377. front: {
  31378. height: math.unit(5 + 2 / 12, "feet"),
  31379. weight: math.unit(120, "lb"),
  31380. name: "Front",
  31381. image: {
  31382. source: "./media/characters/snaps/front.svg",
  31383. extra: 2370 / 2177,
  31384. bottom: 48 / 2418
  31385. }
  31386. },
  31387. back: {
  31388. height: math.unit(5 + 2 / 12, "feet"),
  31389. weight: math.unit(120, "lb"),
  31390. name: "Back",
  31391. image: {
  31392. source: "./media/characters/snaps/back.svg",
  31393. extra: 2408 / 2258,
  31394. bottom: 15 / 2423
  31395. }
  31396. },
  31397. },
  31398. [
  31399. {
  31400. name: "Micro",
  31401. height: math.unit(9, "inches")
  31402. },
  31403. {
  31404. name: "Normal",
  31405. height: math.unit(5 + 2 / 12, "feet"),
  31406. default: true
  31407. },
  31408. {
  31409. name: "Mini Macro",
  31410. height: math.unit(10, "feet")
  31411. },
  31412. ]
  31413. ))
  31414. characterMakers.push(() => makeCharacter(
  31415. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  31416. {
  31417. front: {
  31418. height: math.unit(1.8, "meters"),
  31419. weight: math.unit(85, "kg"),
  31420. name: "Front",
  31421. image: {
  31422. source: "./media/characters/azteck/front.svg",
  31423. extra: 2815 / 2625,
  31424. bottom: 89 / 2904
  31425. }
  31426. },
  31427. back: {
  31428. height: math.unit(1.8, "meters"),
  31429. weight: math.unit(85, "kg"),
  31430. name: "Back",
  31431. image: {
  31432. source: "./media/characters/azteck/back.svg",
  31433. extra: 2856 / 2648,
  31434. bottom: 85 / 2941
  31435. }
  31436. },
  31437. frontDressed: {
  31438. height: math.unit(1.8, "meters"),
  31439. weight: math.unit(85, "kg"),
  31440. name: "Front (Dressed)",
  31441. image: {
  31442. source: "./media/characters/azteck/front-dressed.svg",
  31443. extra: 2147 / 2003,
  31444. bottom: 68 / 2215
  31445. }
  31446. },
  31447. head: {
  31448. height: math.unit(0.47, "meters"),
  31449. weight: math.unit(85, "kg"),
  31450. name: "Head",
  31451. image: {
  31452. source: "./media/characters/azteck/head.svg"
  31453. }
  31454. },
  31455. },
  31456. [
  31457. {
  31458. name: "Bite sized",
  31459. height: math.unit(16, "cm")
  31460. },
  31461. {
  31462. name: "Normal",
  31463. height: math.unit(1.8, "meters"),
  31464. default: true
  31465. },
  31466. ]
  31467. ))
  31468. characterMakers.push(() => makeCharacter(
  31469. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  31470. {
  31471. front: {
  31472. height: math.unit(6, "feet"),
  31473. weight: math.unit(150, "lb"),
  31474. name: "Front",
  31475. image: {
  31476. source: "./media/characters/pidge/front.svg",
  31477. extra: 1936/1820,
  31478. bottom: 0/1936
  31479. }
  31480. },
  31481. back: {
  31482. height: math.unit(6, "feet"),
  31483. weight: math.unit(150, "lb"),
  31484. name: "Back",
  31485. image: {
  31486. source: "./media/characters/pidge/back.svg",
  31487. extra: 1938/1843,
  31488. bottom: 0/1938
  31489. }
  31490. },
  31491. casual: {
  31492. height: math.unit(6, "feet"),
  31493. weight: math.unit(150, "lb"),
  31494. name: "Casual",
  31495. image: {
  31496. source: "./media/characters/pidge/casual.svg",
  31497. extra: 1936/1820,
  31498. bottom: 0/1936
  31499. }
  31500. },
  31501. tech: {
  31502. height: math.unit(6, "feet"),
  31503. weight: math.unit(150, "lb"),
  31504. name: "Tech",
  31505. image: {
  31506. source: "./media/characters/pidge/tech.svg",
  31507. extra: 1802/1682,
  31508. bottom: 0/1802
  31509. }
  31510. },
  31511. head: {
  31512. height: math.unit(1.61, "feet"),
  31513. name: "Head",
  31514. image: {
  31515. source: "./media/characters/pidge/head.svg"
  31516. }
  31517. },
  31518. collar: {
  31519. height: math.unit(0.82, "feet"),
  31520. name: "Collar",
  31521. image: {
  31522. source: "./media/characters/pidge/collar.svg"
  31523. }
  31524. },
  31525. },
  31526. [
  31527. {
  31528. name: "Macro",
  31529. height: math.unit(2, "mile"),
  31530. default: true
  31531. },
  31532. {
  31533. name: "PUPPY",
  31534. height: math.unit(20, "miles")
  31535. },
  31536. ]
  31537. ))
  31538. characterMakers.push(() => makeCharacter(
  31539. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  31540. {
  31541. front: {
  31542. height: math.unit(6, "feet"),
  31543. weight: math.unit(150, "lb"),
  31544. name: "Front",
  31545. image: {
  31546. source: "./media/characters/en/front.svg",
  31547. extra: 1697 / 1563,
  31548. bottom: 103 / 1800
  31549. }
  31550. },
  31551. back: {
  31552. height: math.unit(6, "feet"),
  31553. weight: math.unit(150, "lb"),
  31554. name: "Back",
  31555. image: {
  31556. source: "./media/characters/en/back.svg",
  31557. extra: 1700 / 1570,
  31558. bottom: 51 / 1751
  31559. }
  31560. },
  31561. frontDressed: {
  31562. height: math.unit(6, "feet"),
  31563. weight: math.unit(150, "lb"),
  31564. name: "Front (Dressed)",
  31565. image: {
  31566. source: "./media/characters/en/front-dressed.svg",
  31567. extra: 1697 / 1563,
  31568. bottom: 103 / 1800
  31569. }
  31570. },
  31571. backDressed: {
  31572. height: math.unit(6, "feet"),
  31573. weight: math.unit(150, "lb"),
  31574. name: "Back (Dressed)",
  31575. image: {
  31576. source: "./media/characters/en/back-dressed.svg",
  31577. extra: 1700 / 1570,
  31578. bottom: 51 / 1751
  31579. }
  31580. },
  31581. },
  31582. [
  31583. {
  31584. name: "Macro",
  31585. height: math.unit(210, "feet"),
  31586. default: true
  31587. },
  31588. ]
  31589. ))
  31590. characterMakers.push(() => makeCharacter(
  31591. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  31592. {
  31593. front: {
  31594. height: math.unit(6, "feet"),
  31595. weight: math.unit(150, "lb"),
  31596. name: "Front",
  31597. image: {
  31598. source: "./media/characters/haze-orris/front.svg",
  31599. extra: 3975 / 3525,
  31600. bottom: 137 / 4112
  31601. }
  31602. },
  31603. },
  31604. [
  31605. {
  31606. name: "Micro",
  31607. height: math.unit(150, "mm"),
  31608. default: true
  31609. },
  31610. ]
  31611. ))
  31612. characterMakers.push(() => makeCharacter(
  31613. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  31614. {
  31615. front: {
  31616. height: math.unit(6, "feet"),
  31617. weight: math.unit(150, "lb"),
  31618. name: "Front",
  31619. image: {
  31620. source: "./media/characters/casselene-yaro/front.svg",
  31621. extra: 4721 / 4541,
  31622. bottom: 82 / 4803
  31623. }
  31624. },
  31625. back: {
  31626. height: math.unit(6, "feet"),
  31627. weight: math.unit(150, "lb"),
  31628. name: "Back",
  31629. image: {
  31630. source: "./media/characters/casselene-yaro/back.svg",
  31631. extra: 4569 / 4377,
  31632. bottom: 69 / 4638
  31633. }
  31634. },
  31635. dressed: {
  31636. height: math.unit(6, "feet"),
  31637. weight: math.unit(150, "lb"),
  31638. name: "Dressed",
  31639. image: {
  31640. source: "./media/characters/casselene-yaro/dressed.svg",
  31641. extra: 4721 / 4541,
  31642. bottom: 82 / 4803
  31643. }
  31644. },
  31645. maw: {
  31646. height: math.unit(1, "feet"),
  31647. name: "Maw",
  31648. image: {
  31649. source: "./media/characters/casselene-yaro/maw.svg"
  31650. }
  31651. },
  31652. },
  31653. [
  31654. {
  31655. name: "Macro",
  31656. height: math.unit(190, "feet"),
  31657. default: true
  31658. },
  31659. ]
  31660. ))
  31661. characterMakers.push(() => makeCharacter(
  31662. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  31663. {
  31664. front: {
  31665. height: math.unit(10, "feet"),
  31666. weight: math.unit(15015, "lb"),
  31667. name: "Front",
  31668. image: {
  31669. source: "./media/characters/platine/front.svg",
  31670. extra: 1741/1650,
  31671. bottom: 84/1825
  31672. }
  31673. },
  31674. side: {
  31675. height: math.unit(10, "feet"),
  31676. weight: math.unit(15015, "lb"),
  31677. name: "Side",
  31678. image: {
  31679. source: "./media/characters/platine/side.svg",
  31680. extra: 1790/1705,
  31681. bottom: 29/1819
  31682. }
  31683. },
  31684. },
  31685. [
  31686. {
  31687. name: "Normal",
  31688. height: math.unit(10, "feet"),
  31689. default: true
  31690. },
  31691. {
  31692. name: "Macro",
  31693. height: math.unit(100, "feet")
  31694. },
  31695. {
  31696. name: "Megamacro",
  31697. height: math.unit(1000, "feet")
  31698. },
  31699. ]
  31700. ))
  31701. characterMakers.push(() => makeCharacter(
  31702. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  31703. {
  31704. front: {
  31705. height: math.unit(15 + 5 / 12, "feet"),
  31706. weight: math.unit(4600, "lb"),
  31707. name: "Front",
  31708. image: {
  31709. source: "./media/characters/neapolitan-ananassa/front.svg",
  31710. extra: 2903 / 2736,
  31711. bottom: 0 / 2903
  31712. }
  31713. },
  31714. side: {
  31715. height: math.unit(15 + 5 / 12, "feet"),
  31716. weight: math.unit(4600, "lb"),
  31717. name: "Side",
  31718. image: {
  31719. source: "./media/characters/neapolitan-ananassa/side.svg",
  31720. extra: 2925 / 2719,
  31721. bottom: 0 / 2925
  31722. }
  31723. },
  31724. back: {
  31725. height: math.unit(15 + 5 / 12, "feet"),
  31726. weight: math.unit(4600, "lb"),
  31727. name: "Back",
  31728. image: {
  31729. source: "./media/characters/neapolitan-ananassa/back.svg",
  31730. extra: 2903 / 2736,
  31731. bottom: 0 / 2903
  31732. }
  31733. },
  31734. },
  31735. [
  31736. {
  31737. name: "Normal",
  31738. height: math.unit(15 + 5 / 12, "feet"),
  31739. default: true
  31740. },
  31741. {
  31742. name: "Post-Millenium",
  31743. height: math.unit(35 + 5 / 12, "feet")
  31744. },
  31745. {
  31746. name: "Post-Era",
  31747. height: math.unit(450 + 5 / 12, "feet")
  31748. },
  31749. ]
  31750. ))
  31751. characterMakers.push(() => makeCharacter(
  31752. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  31753. {
  31754. front: {
  31755. height: math.unit(300, "meters"),
  31756. weight: math.unit(125000, "tonnes"),
  31757. name: "Front",
  31758. image: {
  31759. source: "./media/characters/pazuzu/front.svg",
  31760. extra: 877 / 794,
  31761. bottom: 47 / 924
  31762. }
  31763. },
  31764. },
  31765. [
  31766. {
  31767. name: "Macro",
  31768. height: math.unit(300, "meters"),
  31769. default: true
  31770. },
  31771. ]
  31772. ))
  31773. characterMakers.push(() => makeCharacter(
  31774. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  31775. {
  31776. side: {
  31777. height: math.unit(10 + 7 / 12, "feet"),
  31778. weight: math.unit(2.5, "tons"),
  31779. name: "Side",
  31780. image: {
  31781. source: "./media/characters/aasha/side.svg",
  31782. extra: 1345 / 1245,
  31783. bottom: 111 / 1456
  31784. }
  31785. },
  31786. back: {
  31787. height: math.unit(10 + 7 / 12, "feet"),
  31788. weight: math.unit(2.5, "tons"),
  31789. name: "Back",
  31790. image: {
  31791. source: "./media/characters/aasha/back.svg",
  31792. extra: 1133 / 1057,
  31793. bottom: 257 / 1390
  31794. }
  31795. },
  31796. },
  31797. [
  31798. {
  31799. name: "Normal",
  31800. height: math.unit(10 + 7 / 12, "feet"),
  31801. default: true
  31802. },
  31803. ]
  31804. ))
  31805. characterMakers.push(() => makeCharacter(
  31806. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  31807. {
  31808. front: {
  31809. height: math.unit(6 + 3 / 12, "feet"),
  31810. name: "Front",
  31811. image: {
  31812. source: "./media/characters/nevan/front.svg",
  31813. extra: 704 / 704,
  31814. bottom: 28 / 732
  31815. }
  31816. },
  31817. back: {
  31818. height: math.unit(6 + 3 / 12, "feet"),
  31819. name: "Back",
  31820. image: {
  31821. source: "./media/characters/nevan/back.svg",
  31822. extra: 714 / 714,
  31823. bottom: 21 / 735
  31824. }
  31825. },
  31826. frontFlaccid: {
  31827. height: math.unit(6 + 3 / 12, "feet"),
  31828. name: "Front (Flaccid)",
  31829. image: {
  31830. source: "./media/characters/nevan/front-flaccid.svg",
  31831. extra: 704 / 704,
  31832. bottom: 28 / 732
  31833. }
  31834. },
  31835. frontErect: {
  31836. height: math.unit(6 + 3 / 12, "feet"),
  31837. name: "Front (Erect)",
  31838. image: {
  31839. source: "./media/characters/nevan/front-erect.svg",
  31840. extra: 704 / 704,
  31841. bottom: 28 / 732
  31842. }
  31843. },
  31844. backFlaccid: {
  31845. height: math.unit(6 + 3 / 12, "feet"),
  31846. name: "Back (Flaccid)",
  31847. image: {
  31848. source: "./media/characters/nevan/back-flaccid.svg",
  31849. extra: 714 / 714,
  31850. bottom: 21 / 735
  31851. }
  31852. },
  31853. },
  31854. [
  31855. {
  31856. name: "Normal",
  31857. height: math.unit(6 + 3 / 12, "feet"),
  31858. default: true
  31859. },
  31860. ]
  31861. ))
  31862. characterMakers.push(() => makeCharacter(
  31863. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  31864. {
  31865. front: {
  31866. height: math.unit(4, "feet"),
  31867. name: "Front",
  31868. image: {
  31869. source: "./media/characters/arhan/front.svg",
  31870. extra: 3368 / 3133,
  31871. bottom: 0 / 3368
  31872. }
  31873. },
  31874. side: {
  31875. height: math.unit(4, "feet"),
  31876. name: "Side",
  31877. image: {
  31878. source: "./media/characters/arhan/side.svg",
  31879. extra: 3347 / 3105,
  31880. bottom: 0 / 3347
  31881. }
  31882. },
  31883. tongue: {
  31884. height: math.unit(1.42, "feet"),
  31885. name: "Tongue",
  31886. image: {
  31887. source: "./media/characters/arhan/tongue.svg"
  31888. }
  31889. },
  31890. head: {
  31891. height: math.unit(0.85, "feet"),
  31892. name: "Head",
  31893. image: {
  31894. source: "./media/characters/arhan/head.svg"
  31895. }
  31896. },
  31897. },
  31898. [
  31899. {
  31900. name: "Normal",
  31901. height: math.unit(4, "feet"),
  31902. default: true
  31903. },
  31904. ]
  31905. ))
  31906. characterMakers.push(() => makeCharacter(
  31907. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  31908. {
  31909. front: {
  31910. height: math.unit(5 + 7.5 / 12, "feet"),
  31911. weight: math.unit(120, "lb"),
  31912. name: "Front",
  31913. image: {
  31914. source: "./media/characters/digi-duncan/front.svg",
  31915. extra: 330 / 326,
  31916. bottom: 16 / 346
  31917. }
  31918. },
  31919. side: {
  31920. height: math.unit(5 + 7.5 / 12, "feet"),
  31921. weight: math.unit(120, "lb"),
  31922. name: "Side",
  31923. image: {
  31924. source: "./media/characters/digi-duncan/side.svg",
  31925. extra: 341 / 337,
  31926. bottom: 1 / 342
  31927. }
  31928. },
  31929. back: {
  31930. height: math.unit(5 + 7.5 / 12, "feet"),
  31931. weight: math.unit(120, "lb"),
  31932. name: "Back",
  31933. image: {
  31934. source: "./media/characters/digi-duncan/back.svg",
  31935. extra: 330 / 326,
  31936. bottom: 12 / 342
  31937. }
  31938. },
  31939. },
  31940. [
  31941. {
  31942. name: "Speck",
  31943. height: math.unit(0.25, "mm")
  31944. },
  31945. {
  31946. name: "Micro",
  31947. height: math.unit(5, "mm")
  31948. },
  31949. {
  31950. name: "Tiny",
  31951. height: math.unit(0.5, "inches"),
  31952. default: true
  31953. },
  31954. {
  31955. name: "Human",
  31956. height: math.unit(5 + 7.5 / 12, "feet")
  31957. },
  31958. {
  31959. name: "Minigiant",
  31960. height: math.unit(8 + 5.25, "feet")
  31961. },
  31962. {
  31963. name: "Giant",
  31964. height: math.unit(2000, "feet")
  31965. },
  31966. {
  31967. name: "Mega",
  31968. height: math.unit(371.1, "miles")
  31969. },
  31970. ]
  31971. ))
  31972. characterMakers.push(() => makeCharacter(
  31973. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  31974. {
  31975. front: {
  31976. height: math.unit(2, "meters"),
  31977. weight: math.unit(350, "kg"),
  31978. name: "Front",
  31979. image: {
  31980. source: "./media/characters/jagaz-soulbreaker/front.svg",
  31981. extra: 898 / 838,
  31982. bottom: 9 / 907
  31983. }
  31984. },
  31985. },
  31986. [
  31987. {
  31988. name: "Micro",
  31989. height: math.unit(8, "meters")
  31990. },
  31991. {
  31992. name: "Normal",
  31993. height: math.unit(50, "meters"),
  31994. default: true
  31995. },
  31996. {
  31997. name: "Macro",
  31998. height: math.unit(500, "meters")
  31999. },
  32000. ]
  32001. ))
  32002. characterMakers.push(() => makeCharacter(
  32003. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  32004. {
  32005. front: {
  32006. height: math.unit(6 + 6 / 12, "feet"),
  32007. name: "Front",
  32008. image: {
  32009. source: "./media/characters/khardesh/front.svg",
  32010. extra: 1788/1596,
  32011. bottom: 66/1854
  32012. }
  32013. },
  32014. back: {
  32015. height: math.unit(6 + 6 / 12, "feet"),
  32016. name: "Back",
  32017. image: {
  32018. source: "./media/characters/khardesh/back.svg",
  32019. extra: 1781/1584,
  32020. bottom: 68/1849
  32021. }
  32022. },
  32023. },
  32024. [
  32025. {
  32026. name: "Normal",
  32027. height: math.unit(6 + 6 / 12, "feet"),
  32028. default: true
  32029. },
  32030. {
  32031. name: "Normal+",
  32032. height: math.unit(4, "meters")
  32033. },
  32034. {
  32035. name: "Macro",
  32036. height: math.unit(50, "meters")
  32037. },
  32038. {
  32039. name: "Macro+",
  32040. height: math.unit(100, "meters")
  32041. },
  32042. {
  32043. name: "Megamacro",
  32044. height: math.unit(20, "km")
  32045. },
  32046. ]
  32047. ))
  32048. characterMakers.push(() => makeCharacter(
  32049. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  32050. {
  32051. front: {
  32052. height: math.unit(6, "feet"),
  32053. weight: math.unit(150, "lb"),
  32054. name: "Front",
  32055. image: {
  32056. source: "./media/characters/kosho/front.svg",
  32057. extra: 1847 / 1847,
  32058. bottom: 86 / 1933
  32059. }
  32060. },
  32061. },
  32062. [
  32063. {
  32064. name: "Second-stage micro",
  32065. height: math.unit(0.5, "inches")
  32066. },
  32067. {
  32068. name: "First-stage micro",
  32069. height: math.unit(6, "inches")
  32070. },
  32071. {
  32072. name: "Normal",
  32073. height: math.unit(6, "feet"),
  32074. default: true
  32075. },
  32076. {
  32077. name: "First-stage macro",
  32078. height: math.unit(72, "feet")
  32079. },
  32080. {
  32081. name: "Second-stage macro",
  32082. height: math.unit(864, "feet")
  32083. },
  32084. ]
  32085. ))
  32086. characterMakers.push(() => makeCharacter(
  32087. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  32088. {
  32089. normal: {
  32090. height: math.unit(4 + 6 / 12, "feet"),
  32091. name: "Normal",
  32092. image: {
  32093. source: "./media/characters/hydra/normal.svg",
  32094. extra: 2833 / 2634,
  32095. bottom: 68 / 2901
  32096. }
  32097. },
  32098. smol: {
  32099. height: math.unit(0.705, "inches"),
  32100. name: "Smol",
  32101. image: {
  32102. source: "./media/characters/hydra/smol.svg",
  32103. extra: 2715 / 2540,
  32104. bottom: 0 / 2715
  32105. }
  32106. },
  32107. },
  32108. [
  32109. {
  32110. name: "Normal",
  32111. height: math.unit(4 + 6 / 12, "feet"),
  32112. default: true
  32113. }
  32114. ]
  32115. ))
  32116. characterMakers.push(() => makeCharacter(
  32117. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  32118. {
  32119. front: {
  32120. height: math.unit(0.6, "cm"),
  32121. name: "Front",
  32122. image: {
  32123. source: "./media/characters/daz/front.svg",
  32124. extra: 1682 / 1164,
  32125. bottom: 42 / 1724
  32126. }
  32127. },
  32128. },
  32129. [
  32130. {
  32131. name: "Normal",
  32132. height: math.unit(0.6, "cm"),
  32133. default: true
  32134. },
  32135. ]
  32136. ))
  32137. characterMakers.push(() => makeCharacter(
  32138. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  32139. {
  32140. front: {
  32141. height: math.unit(6, "feet"),
  32142. weight: math.unit(235, "lb"),
  32143. name: "Front",
  32144. image: {
  32145. source: "./media/characters/theo-pangolin/front.svg",
  32146. extra: 1996 / 1969,
  32147. bottom: 115 / 2111
  32148. }
  32149. },
  32150. back: {
  32151. height: math.unit(6, "feet"),
  32152. weight: math.unit(235, "lb"),
  32153. name: "Back",
  32154. image: {
  32155. source: "./media/characters/theo-pangolin/back.svg",
  32156. extra: 1979 / 1979,
  32157. bottom: 40 / 2019
  32158. }
  32159. },
  32160. feral: {
  32161. height: math.unit(2, "feet"),
  32162. weight: math.unit(30, "lb"),
  32163. name: "Feral",
  32164. image: {
  32165. source: "./media/characters/theo-pangolin/feral.svg",
  32166. extra: 803 / 791,
  32167. bottom: 181 / 984
  32168. }
  32169. },
  32170. footFive: {
  32171. height: math.unit(1.43, "feet"),
  32172. name: "Foot (Five Toes)",
  32173. image: {
  32174. source: "./media/characters/theo-pangolin/foot-five.svg"
  32175. }
  32176. },
  32177. footFour: {
  32178. height: math.unit(1.43, "feet"),
  32179. name: "Foot (Four Toes)",
  32180. image: {
  32181. source: "./media/characters/theo-pangolin/foot-four.svg"
  32182. }
  32183. },
  32184. handFour: {
  32185. height: math.unit(0.81, "feet"),
  32186. name: "Hand (Four Fingers)",
  32187. image: {
  32188. source: "./media/characters/theo-pangolin/hand-four.svg"
  32189. }
  32190. },
  32191. handThree: {
  32192. height: math.unit(0.81, "feet"),
  32193. name: "Hand (Three Fingers)",
  32194. image: {
  32195. source: "./media/characters/theo-pangolin/hand-three.svg"
  32196. }
  32197. },
  32198. headFront: {
  32199. height: math.unit(1.37, "feet"),
  32200. name: "Head (Front)",
  32201. image: {
  32202. source: "./media/characters/theo-pangolin/head-front.svg"
  32203. }
  32204. },
  32205. headSide: {
  32206. height: math.unit(1.43, "feet"),
  32207. name: "Head (Side)",
  32208. image: {
  32209. source: "./media/characters/theo-pangolin/head-side.svg"
  32210. }
  32211. },
  32212. tongue: {
  32213. height: math.unit(2.29, "feet"),
  32214. name: "Tongue",
  32215. image: {
  32216. source: "./media/characters/theo-pangolin/tongue.svg"
  32217. }
  32218. },
  32219. },
  32220. [
  32221. {
  32222. name: "Normal",
  32223. height: math.unit(6, "feet")
  32224. },
  32225. {
  32226. name: "Macro",
  32227. height: math.unit(400, "feet"),
  32228. default: true
  32229. },
  32230. ]
  32231. ))
  32232. characterMakers.push(() => makeCharacter(
  32233. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  32234. {
  32235. front: {
  32236. height: math.unit(6, "inches"),
  32237. weight: math.unit(0.036, "kg"),
  32238. name: "Front",
  32239. image: {
  32240. source: "./media/characters/renée/front.svg",
  32241. extra: 900 / 886,
  32242. bottom: 8 / 908
  32243. }
  32244. },
  32245. },
  32246. [
  32247. {
  32248. name: "Nano",
  32249. height: math.unit(1, "nm")
  32250. },
  32251. {
  32252. name: "Micro",
  32253. height: math.unit(1, "mm")
  32254. },
  32255. {
  32256. name: "Normal",
  32257. height: math.unit(6, "inches")
  32258. },
  32259. {
  32260. name: "Macro",
  32261. height: math.unit(2000, "feet"),
  32262. default: true
  32263. },
  32264. {
  32265. name: "Megamacro",
  32266. height: math.unit(2, "km")
  32267. },
  32268. {
  32269. name: "Gigamacro",
  32270. height: math.unit(2000, "km")
  32271. },
  32272. {
  32273. name: "Teramacro",
  32274. height: math.unit(250000, "km")
  32275. },
  32276. ]
  32277. ))
  32278. characterMakers.push(() => makeCharacter(
  32279. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  32280. {
  32281. front: {
  32282. height: math.unit(4, "meters"),
  32283. weight: math.unit(150, "kg"),
  32284. name: "Front",
  32285. image: {
  32286. source: "./media/characters/caledvwlch/front.svg",
  32287. extra: 1757/1537,
  32288. bottom: 31/1788
  32289. }
  32290. },
  32291. side: {
  32292. height: math.unit(4, "meters"),
  32293. weight: math.unit(150, "kg"),
  32294. name: "Side",
  32295. image: {
  32296. source: "./media/characters/caledvwlch/side.svg",
  32297. extra: 1605 / 1536,
  32298. bottom: 31 / 1636
  32299. }
  32300. },
  32301. back: {
  32302. height: math.unit(4, "meters"),
  32303. weight: math.unit(150, "kg"),
  32304. name: "Back",
  32305. image: {
  32306. source: "./media/characters/caledvwlch/back.svg",
  32307. extra: 1635 / 1565,
  32308. bottom: 27 / 1662
  32309. }
  32310. },
  32311. },
  32312. [
  32313. {
  32314. name: "\"Incognito\"",
  32315. height: math.unit(4, "meters")
  32316. },
  32317. {
  32318. name: "Small rampage",
  32319. height: math.unit(600, "meters")
  32320. },
  32321. {
  32322. name: "Mega",
  32323. height: math.unit(30, "km")
  32324. },
  32325. {
  32326. name: "Home-size",
  32327. height: math.unit(50, "km"),
  32328. default: true
  32329. },
  32330. {
  32331. name: "Giga",
  32332. height: math.unit(300, "km")
  32333. },
  32334. {
  32335. name: "Lounging",
  32336. height: math.unit(11000, "km")
  32337. },
  32338. {
  32339. name: "Planet snacking",
  32340. height: math.unit(2000000, "km")
  32341. },
  32342. ]
  32343. ))
  32344. characterMakers.push(() => makeCharacter(
  32345. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  32346. {
  32347. front: {
  32348. height: math.unit(6, "feet"),
  32349. weight: math.unit(215, "lb"),
  32350. name: "Front",
  32351. image: {
  32352. source: "./media/characters/sapphire-svell/front.svg",
  32353. extra: 495 / 455,
  32354. bottom: 20 / 515
  32355. }
  32356. },
  32357. back: {
  32358. height: math.unit(6, "feet"),
  32359. weight: math.unit(216, "lb"),
  32360. name: "Back",
  32361. image: {
  32362. source: "./media/characters/sapphire-svell/back.svg",
  32363. extra: 497 / 477,
  32364. bottom: 7 / 504
  32365. }
  32366. },
  32367. maw: {
  32368. height: math.unit(1.57, "feet"),
  32369. name: "Maw",
  32370. image: {
  32371. source: "./media/characters/sapphire-svell/maw.svg"
  32372. }
  32373. },
  32374. foot: {
  32375. height: math.unit(1.07, "feet"),
  32376. name: "Foot",
  32377. image: {
  32378. source: "./media/characters/sapphire-svell/foot.svg"
  32379. }
  32380. },
  32381. toering: {
  32382. height: math.unit(1.7, "inch"),
  32383. name: "Toering",
  32384. image: {
  32385. source: "./media/characters/sapphire-svell/toering.svg"
  32386. }
  32387. },
  32388. },
  32389. [
  32390. {
  32391. name: "Normal",
  32392. height: math.unit(300, "feet"),
  32393. default: true
  32394. },
  32395. {
  32396. name: "Augmented",
  32397. height: math.unit(1250, "feet")
  32398. },
  32399. {
  32400. name: "Unleashed",
  32401. height: math.unit(3000, "feet")
  32402. },
  32403. ]
  32404. ))
  32405. characterMakers.push(() => makeCharacter(
  32406. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  32407. {
  32408. side: {
  32409. height: math.unit(2 + 3 / 12, "feet"),
  32410. weight: math.unit(110, "lb"),
  32411. name: "Side",
  32412. image: {
  32413. source: "./media/characters/glitch-flux/side.svg",
  32414. extra: 997 / 805,
  32415. bottom: 20 / 1017
  32416. }
  32417. },
  32418. },
  32419. [
  32420. {
  32421. name: "Normal",
  32422. height: math.unit(2 + 3 / 12, "feet"),
  32423. default: true
  32424. },
  32425. ]
  32426. ))
  32427. characterMakers.push(() => makeCharacter(
  32428. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  32429. {
  32430. front: {
  32431. height: math.unit(4, "meters"),
  32432. name: "Front",
  32433. image: {
  32434. source: "./media/characters/mid/front.svg",
  32435. extra: 507 / 476,
  32436. bottom: 17 / 524
  32437. }
  32438. },
  32439. back: {
  32440. height: math.unit(4, "meters"),
  32441. name: "Back",
  32442. image: {
  32443. source: "./media/characters/mid/back.svg",
  32444. extra: 519 / 487,
  32445. bottom: 7 / 526
  32446. }
  32447. },
  32448. stuck: {
  32449. height: math.unit(2.2, "meters"),
  32450. name: "Stuck",
  32451. image: {
  32452. source: "./media/characters/mid/stuck.svg",
  32453. extra: 1951 / 1869,
  32454. bottom: 88 / 2039
  32455. }
  32456. }
  32457. },
  32458. [
  32459. {
  32460. name: "Normal",
  32461. height: math.unit(4, "meters"),
  32462. default: true
  32463. },
  32464. {
  32465. name: "Big",
  32466. height: math.unit(10, "meters")
  32467. },
  32468. {
  32469. name: "Macro",
  32470. height: math.unit(800, "meters")
  32471. },
  32472. {
  32473. name: "Megamacro",
  32474. height: math.unit(100, "km")
  32475. },
  32476. {
  32477. name: "Overgrown",
  32478. height: math.unit(1, "parsec")
  32479. },
  32480. ]
  32481. ))
  32482. characterMakers.push(() => makeCharacter(
  32483. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  32484. {
  32485. front: {
  32486. height: math.unit(2.5, "meters"),
  32487. weight: math.unit(225, "kg"),
  32488. name: "Front",
  32489. image: {
  32490. source: "./media/characters/iris/front.svg",
  32491. extra: 3348 / 3251,
  32492. bottom: 205 / 3553
  32493. }
  32494. },
  32495. maw: {
  32496. height: math.unit(0.56, "meter"),
  32497. name: "Maw",
  32498. image: {
  32499. source: "./media/characters/iris/maw.svg"
  32500. }
  32501. },
  32502. },
  32503. [
  32504. {
  32505. name: "Mewter cat",
  32506. height: math.unit(1.2, "meters")
  32507. },
  32508. {
  32509. name: "Normal",
  32510. height: math.unit(2.5, "meters"),
  32511. default: true
  32512. },
  32513. {
  32514. name: "Minimacro",
  32515. height: math.unit(18, "feet")
  32516. },
  32517. {
  32518. name: "Macro",
  32519. height: math.unit(140, "feet")
  32520. },
  32521. {
  32522. name: "Macro+",
  32523. height: math.unit(180, "meters")
  32524. },
  32525. {
  32526. name: "Megamacro",
  32527. height: math.unit(2746, "meters")
  32528. },
  32529. ]
  32530. ))
  32531. characterMakers.push(() => makeCharacter(
  32532. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  32533. {
  32534. front: {
  32535. height: math.unit(6, "feet"),
  32536. weight: math.unit(135, "lb"),
  32537. name: "Front",
  32538. image: {
  32539. source: "./media/characters/axel/front.svg",
  32540. extra: 908 / 908,
  32541. bottom: 58 / 966
  32542. }
  32543. },
  32544. side: {
  32545. height: math.unit(6, "feet"),
  32546. weight: math.unit(135, "lb"),
  32547. name: "Side",
  32548. image: {
  32549. source: "./media/characters/axel/side.svg",
  32550. extra: 958 / 958,
  32551. bottom: 11 / 969
  32552. }
  32553. },
  32554. back: {
  32555. height: math.unit(6, "feet"),
  32556. weight: math.unit(135, "lb"),
  32557. name: "Back",
  32558. image: {
  32559. source: "./media/characters/axel/back.svg",
  32560. extra: 887 / 887,
  32561. bottom: 34 / 921
  32562. }
  32563. },
  32564. head: {
  32565. height: math.unit(1.07, "feet"),
  32566. name: "Head",
  32567. image: {
  32568. source: "./media/characters/axel/head.svg"
  32569. }
  32570. },
  32571. beak: {
  32572. height: math.unit(1.4, "feet"),
  32573. name: "Beak",
  32574. image: {
  32575. source: "./media/characters/axel/beak.svg"
  32576. }
  32577. },
  32578. beakSide: {
  32579. height: math.unit(1.4, "feet"),
  32580. name: "Beak Side",
  32581. image: {
  32582. source: "./media/characters/axel/beak-side.svg"
  32583. }
  32584. },
  32585. sheath: {
  32586. height: math.unit(0.5, "feet"),
  32587. name: "Sheath",
  32588. image: {
  32589. source: "./media/characters/axel/sheath.svg"
  32590. }
  32591. },
  32592. dick: {
  32593. height: math.unit(0.98, "feet"),
  32594. name: "Dick",
  32595. image: {
  32596. source: "./media/characters/axel/dick.svg"
  32597. }
  32598. },
  32599. },
  32600. [
  32601. {
  32602. name: "Macro",
  32603. height: math.unit(68, "meters"),
  32604. default: true
  32605. },
  32606. ]
  32607. ))
  32608. characterMakers.push(() => makeCharacter(
  32609. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  32610. {
  32611. front: {
  32612. height: math.unit(3.5, "meters"),
  32613. weight: math.unit(1200, "kg"),
  32614. name: "Front",
  32615. image: {
  32616. source: "./media/characters/joanna/front.svg",
  32617. extra: 1596 / 1488,
  32618. bottom: 29 / 1625
  32619. }
  32620. },
  32621. back: {
  32622. height: math.unit(3.5, "meters"),
  32623. weight: math.unit(1200, "kg"),
  32624. name: "Back",
  32625. image: {
  32626. source: "./media/characters/joanna/back.svg",
  32627. extra: 1594 / 1495,
  32628. bottom: 26 / 1620
  32629. }
  32630. },
  32631. frontShorts: {
  32632. height: math.unit(3.5, "meters"),
  32633. weight: math.unit(1200, "kg"),
  32634. name: "Front (Shorts)",
  32635. image: {
  32636. source: "./media/characters/joanna/front-shorts.svg",
  32637. extra: 1596 / 1488,
  32638. bottom: 29 / 1625
  32639. }
  32640. },
  32641. frontBiker: {
  32642. height: math.unit(3.5, "meters"),
  32643. weight: math.unit(1200, "kg"),
  32644. name: "Front (Biker)",
  32645. image: {
  32646. source: "./media/characters/joanna/front-biker.svg",
  32647. extra: 1596 / 1488,
  32648. bottom: 29 / 1625
  32649. }
  32650. },
  32651. backBiker: {
  32652. height: math.unit(3.5, "meters"),
  32653. weight: math.unit(1200, "kg"),
  32654. name: "Back (Biker)",
  32655. image: {
  32656. source: "./media/characters/joanna/back-biker.svg",
  32657. extra: 1594 / 1495,
  32658. bottom: 88 / 1682
  32659. }
  32660. },
  32661. bikeLeft: {
  32662. height: math.unit(2.4, "meters"),
  32663. weight: math.unit(1600, "kg"),
  32664. name: "Bike (Left)",
  32665. image: {
  32666. source: "./media/characters/joanna/bike-left.svg",
  32667. extra: 720 / 720,
  32668. bottom: 8 / 728
  32669. }
  32670. },
  32671. bikeRight: {
  32672. height: math.unit(2.4, "meters"),
  32673. weight: math.unit(1600, "kg"),
  32674. name: "Bike (Right)",
  32675. image: {
  32676. source: "./media/characters/joanna/bike-right.svg",
  32677. extra: 720 / 720,
  32678. bottom: 8 / 728
  32679. }
  32680. },
  32681. },
  32682. [
  32683. {
  32684. name: "Incognito",
  32685. height: math.unit(3.5, "meters")
  32686. },
  32687. {
  32688. name: "Casual Big",
  32689. height: math.unit(200, "meters")
  32690. },
  32691. {
  32692. name: "Macro",
  32693. height: math.unit(600, "meters")
  32694. },
  32695. {
  32696. name: "Original",
  32697. height: math.unit(20, "km"),
  32698. default: true
  32699. },
  32700. {
  32701. name: "Giga",
  32702. height: math.unit(400, "km")
  32703. },
  32704. {
  32705. name: "Lounging",
  32706. height: math.unit(1500, "km")
  32707. },
  32708. {
  32709. name: "Planetary",
  32710. height: math.unit(200000, "km")
  32711. },
  32712. ]
  32713. ))
  32714. characterMakers.push(() => makeCharacter(
  32715. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  32716. {
  32717. front: {
  32718. height: math.unit(6, "feet"),
  32719. weight: math.unit(150, "lb"),
  32720. name: "Front",
  32721. image: {
  32722. source: "./media/characters/hugo-sigil/front.svg",
  32723. extra: 522 / 500,
  32724. bottom: 2 / 524
  32725. }
  32726. },
  32727. back: {
  32728. height: math.unit(6, "feet"),
  32729. weight: math.unit(150, "lb"),
  32730. name: "Back",
  32731. image: {
  32732. source: "./media/characters/hugo-sigil/back.svg",
  32733. extra: 519 / 495,
  32734. bottom: 5 / 524
  32735. }
  32736. },
  32737. maw: {
  32738. height: math.unit(1.4, "feet"),
  32739. weight: math.unit(150, "lb"),
  32740. name: "Maw",
  32741. image: {
  32742. source: "./media/characters/hugo-sigil/maw.svg"
  32743. }
  32744. },
  32745. feet: {
  32746. height: math.unit(1.56, "feet"),
  32747. weight: math.unit(150, "lb"),
  32748. name: "Feet",
  32749. image: {
  32750. source: "./media/characters/hugo-sigil/feet.svg",
  32751. extra: 177 / 177,
  32752. bottom: 12 / 189
  32753. }
  32754. },
  32755. },
  32756. [
  32757. {
  32758. name: "Normal",
  32759. height: math.unit(6, "feet")
  32760. },
  32761. {
  32762. name: "Macro",
  32763. height: math.unit(200, "feet"),
  32764. default: true
  32765. },
  32766. ]
  32767. ))
  32768. characterMakers.push(() => makeCharacter(
  32769. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  32770. {
  32771. front: {
  32772. height: math.unit(6, "feet"),
  32773. weight: math.unit(150, "lb"),
  32774. name: "Front",
  32775. image: {
  32776. source: "./media/characters/peri/front.svg",
  32777. extra: 2354 / 2233,
  32778. bottom: 49 / 2403
  32779. }
  32780. },
  32781. },
  32782. [
  32783. {
  32784. name: "Really Small",
  32785. height: math.unit(1, "nm")
  32786. },
  32787. {
  32788. name: "Micro",
  32789. height: math.unit(4, "inches")
  32790. },
  32791. {
  32792. name: "Normal",
  32793. height: math.unit(7, "inches"),
  32794. default: true
  32795. },
  32796. {
  32797. name: "Macro",
  32798. height: math.unit(400, "feet")
  32799. },
  32800. {
  32801. name: "Megamacro",
  32802. height: math.unit(100, "miles")
  32803. },
  32804. ]
  32805. ))
  32806. characterMakers.push(() => makeCharacter(
  32807. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  32808. {
  32809. frontSlim: {
  32810. height: math.unit(7, "feet"),
  32811. name: "Front (Slim)",
  32812. image: {
  32813. source: "./media/characters/issilora/front-slim.svg",
  32814. extra: 529 / 449,
  32815. bottom: 53 / 582
  32816. }
  32817. },
  32818. sideSlim: {
  32819. height: math.unit(7, "feet"),
  32820. name: "Side (Slim)",
  32821. image: {
  32822. source: "./media/characters/issilora/side-slim.svg",
  32823. extra: 570 / 480,
  32824. bottom: 30 / 600
  32825. }
  32826. },
  32827. backSlim: {
  32828. height: math.unit(7, "feet"),
  32829. name: "Back (Slim)",
  32830. image: {
  32831. source: "./media/characters/issilora/back-slim.svg",
  32832. extra: 537 / 455,
  32833. bottom: 46 / 583
  32834. }
  32835. },
  32836. frontBuff: {
  32837. height: math.unit(7, "feet"),
  32838. name: "Front (Buff)",
  32839. image: {
  32840. source: "./media/characters/issilora/front-buff.svg",
  32841. extra: 2310 / 2035,
  32842. bottom: 335 / 2645
  32843. }
  32844. },
  32845. head: {
  32846. height: math.unit(1.94, "feet"),
  32847. name: "Head",
  32848. image: {
  32849. source: "./media/characters/issilora/head.svg"
  32850. }
  32851. },
  32852. },
  32853. [
  32854. {
  32855. name: "Minimum",
  32856. height: math.unit(7, "feet")
  32857. },
  32858. {
  32859. name: "Comfortable",
  32860. height: math.unit(17, "feet")
  32861. },
  32862. {
  32863. name: "Fun Size",
  32864. height: math.unit(47, "feet")
  32865. },
  32866. {
  32867. name: "Natural Macro",
  32868. height: math.unit(137, "feet"),
  32869. default: true
  32870. },
  32871. {
  32872. name: "Maximum Kaiju",
  32873. height: math.unit(397, "feet")
  32874. },
  32875. ]
  32876. ))
  32877. characterMakers.push(() => makeCharacter(
  32878. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  32879. {
  32880. front: {
  32881. height: math.unit(50 + 9/12, "feet"),
  32882. weight: math.unit(32.8, "tons"),
  32883. name: "Front",
  32884. image: {
  32885. source: "./media/characters/irb'iiritaahn/front.svg",
  32886. extra: 1878/1826,
  32887. bottom: 326/2204
  32888. }
  32889. },
  32890. back: {
  32891. height: math.unit(50 + 9/12, "feet"),
  32892. weight: math.unit(32.8, "tons"),
  32893. name: "Back",
  32894. image: {
  32895. source: "./media/characters/irb'iiritaahn/back.svg",
  32896. extra: 2052/2018,
  32897. bottom: 152/2204
  32898. }
  32899. },
  32900. head: {
  32901. height: math.unit(12.86, "feet"),
  32902. name: "Head",
  32903. image: {
  32904. source: "./media/characters/irb'iiritaahn/head.svg"
  32905. }
  32906. },
  32907. maw: {
  32908. height: math.unit(9.66, "feet"),
  32909. name: "Maw",
  32910. image: {
  32911. source: "./media/characters/irb'iiritaahn/maw.svg"
  32912. }
  32913. },
  32914. frontDick: {
  32915. height: math.unit(8.78461, "feet"),
  32916. name: "Front Dick",
  32917. image: {
  32918. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  32919. }
  32920. },
  32921. rearDick: {
  32922. height: math.unit(8.78461, "feet"),
  32923. name: "Rear Dick",
  32924. image: {
  32925. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  32926. }
  32927. },
  32928. rearDickUnfolded: {
  32929. height: math.unit(8.78, "feet"),
  32930. name: "Rear Dick (Unfolded)",
  32931. image: {
  32932. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  32933. }
  32934. },
  32935. wings: {
  32936. height: math.unit(43, "feet"),
  32937. name: "Wings",
  32938. image: {
  32939. source: "./media/characters/irb'iiritaahn/wings.svg"
  32940. }
  32941. },
  32942. },
  32943. [
  32944. {
  32945. name: "Macro",
  32946. height: math.unit(50 + 9/12, "feet"),
  32947. default: true
  32948. },
  32949. ]
  32950. ))
  32951. characterMakers.push(() => makeCharacter(
  32952. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  32953. {
  32954. front: {
  32955. height: math.unit(205, "cm"),
  32956. weight: math.unit(102, "kg"),
  32957. name: "Front",
  32958. image: {
  32959. source: "./media/characters/irbisgreif/front.svg",
  32960. extra: 785/706,
  32961. bottom: 13/798
  32962. }
  32963. },
  32964. back: {
  32965. height: math.unit(205, "cm"),
  32966. weight: math.unit(102, "kg"),
  32967. name: "Back",
  32968. image: {
  32969. source: "./media/characters/irbisgreif/back.svg",
  32970. extra: 713/701,
  32971. bottom: 26/739
  32972. }
  32973. },
  32974. frontDressed: {
  32975. height: math.unit(216, "cm"),
  32976. weight: math.unit(102, "kg"),
  32977. name: "Front-dressed",
  32978. image: {
  32979. source: "./media/characters/irbisgreif/front-dressed.svg",
  32980. extra: 902/776,
  32981. bottom: 14/916
  32982. }
  32983. },
  32984. sideDressed: {
  32985. height: math.unit(195, "cm"),
  32986. weight: math.unit(102, "kg"),
  32987. name: "Side-dressed",
  32988. image: {
  32989. source: "./media/characters/irbisgreif/side-dressed.svg",
  32990. extra: 788/688,
  32991. bottom: 21/809
  32992. }
  32993. },
  32994. backDressed: {
  32995. height: math.unit(216, "cm"),
  32996. weight: math.unit(102, "kg"),
  32997. name: "Back-dressed",
  32998. image: {
  32999. source: "./media/characters/irbisgreif/back-dressed.svg",
  33000. extra: 901/783,
  33001. bottom: 10/911
  33002. }
  33003. },
  33004. dick: {
  33005. height: math.unit(0.49, "feet"),
  33006. name: "Dick",
  33007. image: {
  33008. source: "./media/characters/irbisgreif/dick.svg"
  33009. }
  33010. },
  33011. wingTop: {
  33012. height: math.unit(1.93 , "feet"),
  33013. name: "Wing-top",
  33014. image: {
  33015. source: "./media/characters/irbisgreif/wing-top.svg"
  33016. }
  33017. },
  33018. wingBottom: {
  33019. height: math.unit(1.93 , "feet"),
  33020. name: "Wing-bottom",
  33021. image: {
  33022. source: "./media/characters/irbisgreif/wing-bottom.svg"
  33023. }
  33024. },
  33025. },
  33026. [
  33027. {
  33028. name: "Normal",
  33029. height: math.unit(216, "cm"),
  33030. default: true
  33031. },
  33032. ]
  33033. ))
  33034. characterMakers.push(() => makeCharacter(
  33035. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  33036. {
  33037. front: {
  33038. height: math.unit(6, "feet"),
  33039. weight: math.unit(150, "lb"),
  33040. name: "Front",
  33041. image: {
  33042. source: "./media/characters/pride/front.svg",
  33043. extra: 1299/1230,
  33044. bottom: 18/1317
  33045. }
  33046. },
  33047. },
  33048. [
  33049. {
  33050. name: "Normal",
  33051. height: math.unit(7, "feet")
  33052. },
  33053. {
  33054. name: "Mini-macro",
  33055. height: math.unit(11, "feet")
  33056. },
  33057. {
  33058. name: "Macro",
  33059. height: math.unit(15, "meters"),
  33060. default: true
  33061. },
  33062. {
  33063. name: "Macro+",
  33064. height: math.unit(40, "meters")
  33065. },
  33066. ]
  33067. ))
  33068. characterMakers.push(() => makeCharacter(
  33069. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  33070. {
  33071. front: {
  33072. height: math.unit(4 + 2 / 12, "feet"),
  33073. weight: math.unit(95, "lb"),
  33074. name: "Front",
  33075. image: {
  33076. source: "./media/characters/vaelophis-nyx/front.svg",
  33077. extra: 2532/2330,
  33078. bottom: 0/2532
  33079. }
  33080. },
  33081. back: {
  33082. height: math.unit(4 + 2 / 12, "feet"),
  33083. weight: math.unit(95, "lb"),
  33084. name: "Back",
  33085. image: {
  33086. source: "./media/characters/vaelophis-nyx/back.svg",
  33087. extra: 2484/2361,
  33088. bottom: 0/2484
  33089. }
  33090. },
  33091. feralSide: {
  33092. height: math.unit(2 + 1/12, "feet"),
  33093. weight: math.unit(20, "lb"),
  33094. name: "Feral (Side)",
  33095. image: {
  33096. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  33097. extra: 1721/1581,
  33098. bottom: 70/1791
  33099. }
  33100. },
  33101. feralLazing: {
  33102. height: math.unit(1.08, "feet"),
  33103. weight: math.unit(20, "lb"),
  33104. name: "Feral (Lazing)",
  33105. image: {
  33106. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  33107. extra: 822/822,
  33108. bottom: 248/1070
  33109. }
  33110. },
  33111. ear: {
  33112. height: math.unit(0.416, "feet"),
  33113. name: "Ear",
  33114. image: {
  33115. source: "./media/characters/vaelophis-nyx/ear.svg"
  33116. }
  33117. },
  33118. eye: {
  33119. height: math.unit(0.0748, "feet"),
  33120. name: "Eye",
  33121. image: {
  33122. source: "./media/characters/vaelophis-nyx/eye.svg"
  33123. }
  33124. },
  33125. mouth: {
  33126. height: math.unit(0.378, "feet"),
  33127. name: "Mouth",
  33128. image: {
  33129. source: "./media/characters/vaelophis-nyx/mouth.svg"
  33130. }
  33131. },
  33132. spade: {
  33133. height: math.unit(0.55, "feet"),
  33134. name: "Spade",
  33135. image: {
  33136. source: "./media/characters/vaelophis-nyx/spade.svg"
  33137. }
  33138. },
  33139. },
  33140. [
  33141. {
  33142. name: "Normal",
  33143. height: math.unit(4 + 2/12, "feet"),
  33144. default: true
  33145. },
  33146. ]
  33147. ))
  33148. characterMakers.push(() => makeCharacter(
  33149. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  33150. {
  33151. front: {
  33152. height: math.unit(7, "feet"),
  33153. weight: math.unit(231, "lb"),
  33154. name: "Front",
  33155. image: {
  33156. source: "./media/characters/flux/front.svg",
  33157. extra: 919/871,
  33158. bottom: 0/919
  33159. }
  33160. },
  33161. back: {
  33162. height: math.unit(7, "feet"),
  33163. weight: math.unit(231, "lb"),
  33164. name: "Back",
  33165. image: {
  33166. source: "./media/characters/flux/back.svg",
  33167. extra: 1040/992,
  33168. bottom: 0/1040
  33169. }
  33170. },
  33171. frontDressed: {
  33172. height: math.unit(7, "feet"),
  33173. weight: math.unit(231, "lb"),
  33174. name: "Front (Dressed)",
  33175. image: {
  33176. source: "./media/characters/flux/front-dressed.svg",
  33177. extra: 919/871,
  33178. bottom: 0/919
  33179. }
  33180. },
  33181. feralSide: {
  33182. height: math.unit(5, "feet"),
  33183. weight: math.unit(150, "lb"),
  33184. name: "Feral (Side)",
  33185. image: {
  33186. source: "./media/characters/flux/feral-side.svg",
  33187. extra: 598/528,
  33188. bottom: 28/626
  33189. }
  33190. },
  33191. head: {
  33192. height: math.unit(1.585, "feet"),
  33193. name: "Head",
  33194. image: {
  33195. source: "./media/characters/flux/head.svg"
  33196. }
  33197. },
  33198. headSide: {
  33199. height: math.unit(1.74, "feet"),
  33200. name: "Head (Side)",
  33201. image: {
  33202. source: "./media/characters/flux/head-side.svg"
  33203. }
  33204. },
  33205. headSideFire: {
  33206. height: math.unit(1.76, "feet"),
  33207. name: "Head (Side, Fire)",
  33208. image: {
  33209. source: "./media/characters/flux/head-side-fire.svg"
  33210. }
  33211. },
  33212. },
  33213. [
  33214. {
  33215. name: "Normal",
  33216. height: math.unit(7, "feet"),
  33217. default: true
  33218. },
  33219. ]
  33220. ))
  33221. characterMakers.push(() => makeCharacter(
  33222. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  33223. {
  33224. front: {
  33225. height: math.unit(9, "feet"),
  33226. weight: math.unit(1012, "lb"),
  33227. name: "Front",
  33228. image: {
  33229. source: "./media/characters/ulfra-lupae/front.svg",
  33230. extra: 1083/1011,
  33231. bottom: 67/1150
  33232. }
  33233. },
  33234. },
  33235. [
  33236. {
  33237. name: "Micro",
  33238. height: math.unit(6, "inches")
  33239. },
  33240. {
  33241. name: "Socializing",
  33242. height: math.unit(6 + 5/12, "feet")
  33243. },
  33244. {
  33245. name: "Normal",
  33246. height: math.unit(9, "feet"),
  33247. default: true
  33248. },
  33249. {
  33250. name: "Macro",
  33251. height: math.unit(150, "feet")
  33252. },
  33253. ]
  33254. ))
  33255. characterMakers.push(() => makeCharacter(
  33256. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  33257. {
  33258. front: {
  33259. height: math.unit(5 + 2/12, "feet"),
  33260. weight: math.unit(120, "lb"),
  33261. name: "Front",
  33262. image: {
  33263. source: "./media/characters/timber/front.svg",
  33264. extra: 2814/2705,
  33265. bottom: 181/2995
  33266. }
  33267. },
  33268. },
  33269. [
  33270. {
  33271. name: "Normal",
  33272. height: math.unit(5 + 2/12, "feet"),
  33273. default: true
  33274. },
  33275. ]
  33276. ))
  33277. characterMakers.push(() => makeCharacter(
  33278. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  33279. {
  33280. front: {
  33281. height: math.unit(9, "feet"),
  33282. name: "Front",
  33283. image: {
  33284. source: "./media/characters/nicki/front.svg",
  33285. extra: 1240/990,
  33286. bottom: 45/1285
  33287. },
  33288. form: "anthro",
  33289. default: true
  33290. },
  33291. side: {
  33292. height: math.unit(9, "feet"),
  33293. name: "Side",
  33294. image: {
  33295. source: "./media/characters/nicki/side.svg",
  33296. extra: 1047/973,
  33297. bottom: 61/1108
  33298. },
  33299. form: "anthro"
  33300. },
  33301. back: {
  33302. height: math.unit(9, "feet"),
  33303. name: "Back",
  33304. image: {
  33305. source: "./media/characters/nicki/back.svg",
  33306. extra: 1006/965,
  33307. bottom: 39/1045
  33308. },
  33309. form: "anthro"
  33310. },
  33311. taur: {
  33312. height: math.unit(15, "feet"),
  33313. name: "Taur",
  33314. image: {
  33315. source: "./media/characters/nicki/taur.svg",
  33316. extra: 1592/1347,
  33317. bottom: 0/1592
  33318. },
  33319. form: "taur",
  33320. default: true
  33321. },
  33322. },
  33323. [
  33324. {
  33325. name: "Normal",
  33326. height: math.unit(9, "feet"),
  33327. form: "anthro",
  33328. default: true
  33329. },
  33330. {
  33331. name: "Normal",
  33332. height: math.unit(15, "feet"),
  33333. form: "taur",
  33334. default: true
  33335. }
  33336. ],
  33337. {
  33338. "anthro": {
  33339. name: "Anthro",
  33340. default: true
  33341. },
  33342. "taur": {
  33343. name: "Taur"
  33344. }
  33345. }
  33346. ))
  33347. characterMakers.push(() => makeCharacter(
  33348. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  33349. {
  33350. front: {
  33351. height: math.unit(7 + 10/12, "feet"),
  33352. weight: math.unit(3.5, "tons"),
  33353. name: "Front",
  33354. image: {
  33355. source: "./media/characters/lee/front.svg",
  33356. extra: 1773/1615,
  33357. bottom: 86/1859
  33358. }
  33359. },
  33360. hand: {
  33361. height: math.unit(1.78, "feet"),
  33362. name: "Hand",
  33363. image: {
  33364. source: "./media/characters/lee/hand.svg"
  33365. }
  33366. },
  33367. maw: {
  33368. height: math.unit(1.18, "feet"),
  33369. name: "Maw",
  33370. image: {
  33371. source: "./media/characters/lee/maw.svg"
  33372. }
  33373. },
  33374. },
  33375. [
  33376. {
  33377. name: "Normal",
  33378. height: math.unit(7 + 10/12, "feet"),
  33379. default: true
  33380. },
  33381. ]
  33382. ))
  33383. characterMakers.push(() => makeCharacter(
  33384. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  33385. {
  33386. front: {
  33387. height: math.unit(9, "feet"),
  33388. name: "Front",
  33389. image: {
  33390. source: "./media/characters/guti/front.svg",
  33391. extra: 4551/4355,
  33392. bottom: 123/4674
  33393. }
  33394. },
  33395. tongue: {
  33396. height: math.unit(1, "feet"),
  33397. name: "Tongue",
  33398. image: {
  33399. source: "./media/characters/guti/tongue.svg"
  33400. }
  33401. },
  33402. paw: {
  33403. height: math.unit(1.18, "feet"),
  33404. name: "Paw",
  33405. image: {
  33406. source: "./media/characters/guti/paw.svg"
  33407. }
  33408. },
  33409. },
  33410. [
  33411. {
  33412. name: "Normal",
  33413. height: math.unit(9, "feet"),
  33414. default: true
  33415. },
  33416. ]
  33417. ))
  33418. characterMakers.push(() => makeCharacter(
  33419. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  33420. {
  33421. side: {
  33422. height: math.unit(5, "meters"),
  33423. name: "Side",
  33424. image: {
  33425. source: "./media/characters/vesper/side.svg",
  33426. extra: 1605/1518,
  33427. bottom: 0/1605
  33428. }
  33429. },
  33430. },
  33431. [
  33432. {
  33433. name: "Small",
  33434. height: math.unit(5, "meters")
  33435. },
  33436. {
  33437. name: "Sage",
  33438. height: math.unit(100, "meters"),
  33439. default: true
  33440. },
  33441. {
  33442. name: "Fun Size",
  33443. height: math.unit(600, "meters")
  33444. },
  33445. {
  33446. name: "Goddess",
  33447. height: math.unit(20000, "km")
  33448. },
  33449. {
  33450. name: "Maximum",
  33451. height: math.unit(5, "galaxies")
  33452. },
  33453. ]
  33454. ))
  33455. characterMakers.push(() => makeCharacter(
  33456. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  33457. {
  33458. front: {
  33459. height: math.unit(6 + 3/12, "feet"),
  33460. weight: math.unit(190, "lb"),
  33461. name: "Front",
  33462. image: {
  33463. source: "./media/characters/gawain/front.svg",
  33464. extra: 2222/2139,
  33465. bottom: 90/2312
  33466. }
  33467. },
  33468. back: {
  33469. height: math.unit(6 + 3/12, "feet"),
  33470. weight: math.unit(190, "lb"),
  33471. name: "Back",
  33472. image: {
  33473. source: "./media/characters/gawain/back.svg",
  33474. extra: 2199/2111,
  33475. bottom: 73/2272
  33476. }
  33477. },
  33478. },
  33479. [
  33480. {
  33481. name: "Normal",
  33482. height: math.unit(6 + 3/12, "feet"),
  33483. default: true
  33484. },
  33485. ]
  33486. ))
  33487. characterMakers.push(() => makeCharacter(
  33488. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  33489. {
  33490. side: {
  33491. height: math.unit(3.5, "meters"),
  33492. weight: math.unit(16000, "lb"),
  33493. name: "Side",
  33494. image: {
  33495. source: "./media/characters/dascalti/side.svg",
  33496. extra: 392/273,
  33497. bottom: 47/439
  33498. }
  33499. },
  33500. breath: {
  33501. height: math.unit(7.4, "feet"),
  33502. name: "Breath",
  33503. image: {
  33504. source: "./media/characters/dascalti/breath.svg"
  33505. }
  33506. },
  33507. fed: {
  33508. height: math.unit(3.6, "meters"),
  33509. weight: math.unit(16000, "lb"),
  33510. name: "Fed",
  33511. image: {
  33512. source: "./media/characters/dascalti/fed.svg",
  33513. extra: 1419/820,
  33514. bottom: 95/1514
  33515. }
  33516. },
  33517. },
  33518. [
  33519. {
  33520. name: "Normal",
  33521. height: math.unit(3.5, "meters"),
  33522. default: true
  33523. },
  33524. ]
  33525. ))
  33526. characterMakers.push(() => makeCharacter(
  33527. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  33528. {
  33529. front: {
  33530. height: math.unit(3 + 5/12, "feet"),
  33531. name: "Front",
  33532. image: {
  33533. source: "./media/characters/mauve/front.svg",
  33534. extra: 1126/1033,
  33535. bottom: 65/1191
  33536. }
  33537. },
  33538. side: {
  33539. height: math.unit(3 + 5/12, "feet"),
  33540. name: "Side",
  33541. image: {
  33542. source: "./media/characters/mauve/side.svg",
  33543. extra: 1089/1001,
  33544. bottom: 29/1118
  33545. }
  33546. },
  33547. back: {
  33548. height: math.unit(3 + 5/12, "feet"),
  33549. name: "Back",
  33550. image: {
  33551. source: "./media/characters/mauve/back.svg",
  33552. extra: 1173/1053,
  33553. bottom: 109/1282
  33554. }
  33555. },
  33556. },
  33557. [
  33558. {
  33559. name: "Normal",
  33560. height: math.unit(3 + 5/12, "feet"),
  33561. default: true
  33562. },
  33563. ]
  33564. ))
  33565. characterMakers.push(() => makeCharacter(
  33566. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  33567. {
  33568. front: {
  33569. height: math.unit(6 + 3/12, "feet"),
  33570. weight: math.unit(430, "lb"),
  33571. name: "Front",
  33572. image: {
  33573. source: "./media/characters/carlos/front.svg",
  33574. extra: 1964/1913,
  33575. bottom: 70/2034
  33576. }
  33577. },
  33578. },
  33579. [
  33580. {
  33581. name: "Normal",
  33582. height: math.unit(6 + 3/12, "feet"),
  33583. default: true
  33584. },
  33585. ]
  33586. ))
  33587. characterMakers.push(() => makeCharacter(
  33588. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  33589. {
  33590. back: {
  33591. height: math.unit(5 + 10/12, "feet"),
  33592. weight: math.unit(200, "lb"),
  33593. name: "Back",
  33594. image: {
  33595. source: "./media/characters/jax/back.svg",
  33596. extra: 764/739,
  33597. bottom: 25/789
  33598. }
  33599. },
  33600. },
  33601. [
  33602. {
  33603. name: "Normal",
  33604. height: math.unit(5 + 10/12, "feet"),
  33605. default: true
  33606. },
  33607. ]
  33608. ))
  33609. characterMakers.push(() => makeCharacter(
  33610. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  33611. {
  33612. front: {
  33613. height: math.unit(8, "feet"),
  33614. weight: math.unit(250, "lb"),
  33615. name: "Front",
  33616. image: {
  33617. source: "./media/characters/eikthynir/front.svg",
  33618. extra: 1332/1166,
  33619. bottom: 82/1414
  33620. }
  33621. },
  33622. back: {
  33623. height: math.unit(8, "feet"),
  33624. weight: math.unit(250, "lb"),
  33625. name: "Back",
  33626. image: {
  33627. source: "./media/characters/eikthynir/back.svg",
  33628. extra: 1342/1190,
  33629. bottom: 19/1361
  33630. }
  33631. },
  33632. dick: {
  33633. height: math.unit(2.35, "feet"),
  33634. name: "Dick",
  33635. image: {
  33636. source: "./media/characters/eikthynir/dick.svg"
  33637. }
  33638. },
  33639. },
  33640. [
  33641. {
  33642. name: "Normal",
  33643. height: math.unit(8, "feet"),
  33644. default: true
  33645. },
  33646. ]
  33647. ))
  33648. characterMakers.push(() => makeCharacter(
  33649. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  33650. {
  33651. front: {
  33652. height: math.unit(99, "meters"),
  33653. weight: math.unit(13000, "tons"),
  33654. name: "Front",
  33655. image: {
  33656. source: "./media/characters/zlmos/front.svg",
  33657. extra: 2202/1992,
  33658. bottom: 315/2517
  33659. }
  33660. },
  33661. },
  33662. [
  33663. {
  33664. name: "Macro",
  33665. height: math.unit(99, "meters"),
  33666. default: true
  33667. },
  33668. ]
  33669. ))
  33670. characterMakers.push(() => makeCharacter(
  33671. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  33672. {
  33673. front: {
  33674. height: math.unit(6 + 5/12, "feet"),
  33675. name: "Front",
  33676. image: {
  33677. source: "./media/characters/purri/front.svg",
  33678. extra: 1698/1610,
  33679. bottom: 32/1730
  33680. }
  33681. },
  33682. frontAlt: {
  33683. height: math.unit(6 + 5/12, "feet"),
  33684. name: "Front (Alt)",
  33685. image: {
  33686. source: "./media/characters/purri/front-alt.svg",
  33687. extra: 450/420,
  33688. bottom: 26/476
  33689. }
  33690. },
  33691. boots: {
  33692. height: math.unit(5.5, "feet"),
  33693. name: "Boots",
  33694. image: {
  33695. source: "./media/characters/purri/boots.svg",
  33696. extra: 905/853,
  33697. bottom: 18/923
  33698. }
  33699. },
  33700. lying: {
  33701. height: math.unit(2, "feet"),
  33702. name: "Lying",
  33703. image: {
  33704. source: "./media/characters/purri/lying.svg",
  33705. extra: 940/843,
  33706. bottom: 146/1086
  33707. }
  33708. },
  33709. devious: {
  33710. height: math.unit(1.77, "feet"),
  33711. name: "Devious",
  33712. image: {
  33713. source: "./media/characters/purri/devious.svg",
  33714. extra: 1440/1155,
  33715. bottom: 147/1587
  33716. }
  33717. },
  33718. bean: {
  33719. height: math.unit(1.94, "feet"),
  33720. name: "Bean",
  33721. image: {
  33722. source: "./media/characters/purri/bean.svg"
  33723. }
  33724. },
  33725. },
  33726. [
  33727. {
  33728. name: "Micro",
  33729. height: math.unit(1, "mm")
  33730. },
  33731. {
  33732. name: "Normal",
  33733. height: math.unit(6 + 5/12, "feet"),
  33734. default: true
  33735. },
  33736. {
  33737. name: "Macro :3c",
  33738. height: math.unit(2, "miles")
  33739. },
  33740. ]
  33741. ))
  33742. characterMakers.push(() => makeCharacter(
  33743. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  33744. {
  33745. front: {
  33746. height: math.unit(6 + 2/12, "feet"),
  33747. weight: math.unit(250, "lb"),
  33748. name: "Front",
  33749. image: {
  33750. source: "./media/characters/moonlight/front.svg",
  33751. extra: 1044/908,
  33752. bottom: 56/1100
  33753. }
  33754. },
  33755. feral: {
  33756. height: math.unit(3 + 1/12, "feet"),
  33757. weight: math.unit(50, "kg"),
  33758. name: "Feral",
  33759. image: {
  33760. source: "./media/characters/moonlight/feral.svg",
  33761. extra: 3705/2791,
  33762. bottom: 145/3850
  33763. }
  33764. },
  33765. paw: {
  33766. height: math.unit(1, "feet"),
  33767. name: "Paw",
  33768. image: {
  33769. source: "./media/characters/moonlight/paw.svg"
  33770. }
  33771. },
  33772. paws: {
  33773. height: math.unit(0.98, "feet"),
  33774. name: "Paws",
  33775. image: {
  33776. source: "./media/characters/moonlight/paws.svg",
  33777. extra: 939/939,
  33778. bottom: 50/989
  33779. }
  33780. },
  33781. mouth: {
  33782. height: math.unit(0.48, "feet"),
  33783. name: "Mouth",
  33784. image: {
  33785. source: "./media/characters/moonlight/mouth.svg"
  33786. }
  33787. },
  33788. dick: {
  33789. height: math.unit(1.46, "feet"),
  33790. name: "Dick",
  33791. image: {
  33792. source: "./media/characters/moonlight/dick.svg"
  33793. }
  33794. },
  33795. },
  33796. [
  33797. {
  33798. name: "Normal",
  33799. height: math.unit(6 + 2/12, "feet"),
  33800. default: true
  33801. },
  33802. {
  33803. name: "Macro",
  33804. height: math.unit(300, "feet")
  33805. },
  33806. {
  33807. name: "Macro+",
  33808. height: math.unit(1, "mile")
  33809. },
  33810. {
  33811. name: "Mt. Moon",
  33812. height: math.unit(5, "miles")
  33813. },
  33814. {
  33815. name: "Megamacro",
  33816. height: math.unit(15, "miles")
  33817. },
  33818. ]
  33819. ))
  33820. characterMakers.push(() => makeCharacter(
  33821. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  33822. {
  33823. back: {
  33824. height: math.unit(6, "feet"),
  33825. weight: math.unit(150, "lb"),
  33826. name: "Back",
  33827. image: {
  33828. source: "./media/characters/sylen/back.svg",
  33829. extra: 1335/1273,
  33830. bottom: 107/1442
  33831. }
  33832. },
  33833. },
  33834. [
  33835. {
  33836. name: "Normal",
  33837. height: math.unit(5 + 5/12, "feet")
  33838. },
  33839. {
  33840. name: "Megamacro",
  33841. height: math.unit(3, "miles"),
  33842. default: true
  33843. },
  33844. ]
  33845. ))
  33846. characterMakers.push(() => makeCharacter(
  33847. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  33848. {
  33849. front: {
  33850. height: math.unit(6, "feet"),
  33851. weight: math.unit(190, "lb"),
  33852. name: "Front",
  33853. image: {
  33854. source: "./media/characters/huttser/front.svg",
  33855. extra: 1152/1058,
  33856. bottom: 23/1175
  33857. }
  33858. },
  33859. side: {
  33860. height: math.unit(6, "feet"),
  33861. weight: math.unit(190, "lb"),
  33862. name: "Side",
  33863. image: {
  33864. source: "./media/characters/huttser/side.svg",
  33865. extra: 1174/1065,
  33866. bottom: 18/1192
  33867. }
  33868. },
  33869. back: {
  33870. height: math.unit(6, "feet"),
  33871. weight: math.unit(190, "lb"),
  33872. name: "Back",
  33873. image: {
  33874. source: "./media/characters/huttser/back.svg",
  33875. extra: 1158/1056,
  33876. bottom: 12/1170
  33877. }
  33878. },
  33879. },
  33880. [
  33881. ]
  33882. ))
  33883. characterMakers.push(() => makeCharacter(
  33884. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  33885. {
  33886. side: {
  33887. height: math.unit(12 + 9/12, "feet"),
  33888. weight: math.unit(15000, "lb"),
  33889. name: "Side",
  33890. image: {
  33891. source: "./media/characters/faan/side.svg",
  33892. extra: 2747/2697,
  33893. bottom: 0/2747
  33894. }
  33895. },
  33896. front: {
  33897. height: math.unit(12 + 9/12, "feet"),
  33898. weight: math.unit(15000, "lb"),
  33899. name: "Front",
  33900. image: {
  33901. source: "./media/characters/faan/front.svg",
  33902. extra: 607/571,
  33903. bottom: 24/631
  33904. }
  33905. },
  33906. head: {
  33907. height: math.unit(2.85, "feet"),
  33908. name: "Head",
  33909. image: {
  33910. source: "./media/characters/faan/head.svg"
  33911. }
  33912. },
  33913. headAlt: {
  33914. height: math.unit(3.13, "feet"),
  33915. name: "Head-alt",
  33916. image: {
  33917. source: "./media/characters/faan/head-alt.svg"
  33918. }
  33919. },
  33920. },
  33921. [
  33922. {
  33923. name: "Normal",
  33924. height: math.unit(12 + 9/12, "feet"),
  33925. default: true
  33926. },
  33927. ]
  33928. ))
  33929. characterMakers.push(() => makeCharacter(
  33930. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  33931. {
  33932. front: {
  33933. height: math.unit(6, "feet"),
  33934. weight: math.unit(300, "lb"),
  33935. name: "Front",
  33936. image: {
  33937. source: "./media/characters/tanio/front.svg",
  33938. extra: 711/673,
  33939. bottom: 25/736
  33940. }
  33941. },
  33942. },
  33943. [
  33944. {
  33945. name: "Normal",
  33946. height: math.unit(6, "feet"),
  33947. default: true
  33948. },
  33949. ]
  33950. ))
  33951. characterMakers.push(() => makeCharacter(
  33952. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  33953. {
  33954. front: {
  33955. height: math.unit(3, "inches"),
  33956. name: "Front",
  33957. image: {
  33958. source: "./media/characters/noboru/front.svg",
  33959. extra: 1039/932,
  33960. bottom: 18/1057
  33961. }
  33962. },
  33963. },
  33964. [
  33965. {
  33966. name: "Micro",
  33967. height: math.unit(3, "inches"),
  33968. default: true
  33969. },
  33970. ]
  33971. ))
  33972. characterMakers.push(() => makeCharacter(
  33973. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  33974. {
  33975. front: {
  33976. height: math.unit(1.85, "meters"),
  33977. weight: math.unit(80, "kg"),
  33978. name: "Front",
  33979. image: {
  33980. source: "./media/characters/daniel-barrett/front.svg",
  33981. extra: 355/337,
  33982. bottom: 9/364
  33983. }
  33984. },
  33985. },
  33986. [
  33987. {
  33988. name: "Pico",
  33989. height: math.unit(0.0433, "mm")
  33990. },
  33991. {
  33992. name: "Nano",
  33993. height: math.unit(1.5, "mm")
  33994. },
  33995. {
  33996. name: "Micro",
  33997. height: math.unit(5.3, "cm"),
  33998. default: true
  33999. },
  34000. {
  34001. name: "Normal",
  34002. height: math.unit(1.85, "meters")
  34003. },
  34004. {
  34005. name: "Macro",
  34006. height: math.unit(64.7, "meters")
  34007. },
  34008. {
  34009. name: "Megamacro",
  34010. height: math.unit(2.26, "km")
  34011. },
  34012. {
  34013. name: "Gigamacro",
  34014. height: math.unit(79, "km")
  34015. },
  34016. {
  34017. name: "Teramacro",
  34018. height: math.unit(2765, "km")
  34019. },
  34020. {
  34021. name: "Petamacro",
  34022. height: math.unit(96678, "km")
  34023. },
  34024. ]
  34025. ))
  34026. characterMakers.push(() => makeCharacter(
  34027. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  34028. {
  34029. front: {
  34030. height: math.unit(30, "meters"),
  34031. weight: math.unit(400, "tons"),
  34032. name: "Front",
  34033. image: {
  34034. source: "./media/characters/zeel/front.svg",
  34035. extra: 2599/2599,
  34036. bottom: 226/2825
  34037. }
  34038. },
  34039. },
  34040. [
  34041. {
  34042. name: "Macro",
  34043. height: math.unit(30, "meters"),
  34044. default: true
  34045. },
  34046. ]
  34047. ))
  34048. characterMakers.push(() => makeCharacter(
  34049. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  34050. {
  34051. front: {
  34052. height: math.unit(6 + 7/12, "feet"),
  34053. weight: math.unit(210, "lb"),
  34054. name: "Front",
  34055. image: {
  34056. source: "./media/characters/tarn/front.svg",
  34057. extra: 3517/3220,
  34058. bottom: 91/3608
  34059. }
  34060. },
  34061. back: {
  34062. height: math.unit(6 + 7/12, "feet"),
  34063. weight: math.unit(210, "lb"),
  34064. name: "Back",
  34065. image: {
  34066. source: "./media/characters/tarn/back.svg",
  34067. extra: 3566/3241,
  34068. bottom: 34/3600
  34069. }
  34070. },
  34071. dick: {
  34072. height: math.unit(1.65, "feet"),
  34073. name: "Dick",
  34074. image: {
  34075. source: "./media/characters/tarn/dick.svg"
  34076. }
  34077. },
  34078. paw: {
  34079. height: math.unit(1.80, "feet"),
  34080. name: "Paw",
  34081. image: {
  34082. source: "./media/characters/tarn/paw.svg"
  34083. }
  34084. },
  34085. tongue: {
  34086. height: math.unit(0.97, "feet"),
  34087. name: "Tongue",
  34088. image: {
  34089. source: "./media/characters/tarn/tongue.svg"
  34090. }
  34091. },
  34092. },
  34093. [
  34094. {
  34095. name: "Micro",
  34096. height: math.unit(4, "inches")
  34097. },
  34098. {
  34099. name: "Normal",
  34100. height: math.unit(6 + 7/12, "feet"),
  34101. default: true
  34102. },
  34103. {
  34104. name: "Macro",
  34105. height: math.unit(300, "feet")
  34106. },
  34107. ]
  34108. ))
  34109. characterMakers.push(() => makeCharacter(
  34110. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  34111. {
  34112. front: {
  34113. height: math.unit(5 + 7/12, "feet"),
  34114. weight: math.unit(80, "kg"),
  34115. name: "Front",
  34116. image: {
  34117. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  34118. extra: 3023/2865,
  34119. bottom: 33/3056
  34120. }
  34121. },
  34122. back: {
  34123. height: math.unit(5 + 7/12, "feet"),
  34124. weight: math.unit(80, "kg"),
  34125. name: "Back",
  34126. image: {
  34127. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  34128. extra: 3020/2886,
  34129. bottom: 30/3050
  34130. }
  34131. },
  34132. dick: {
  34133. height: math.unit(0.98, "feet"),
  34134. name: "Dick",
  34135. image: {
  34136. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  34137. }
  34138. },
  34139. anatomy: {
  34140. height: math.unit(2.86, "feet"),
  34141. name: "Anatomy",
  34142. image: {
  34143. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  34144. }
  34145. },
  34146. },
  34147. [
  34148. {
  34149. name: "Really Small",
  34150. height: math.unit(2, "inches")
  34151. },
  34152. {
  34153. name: "Micro",
  34154. height: math.unit(5.583, "inches")
  34155. },
  34156. {
  34157. name: "Normal",
  34158. height: math.unit(5 + 7/12, "feet"),
  34159. default: true
  34160. },
  34161. {
  34162. name: "Macro",
  34163. height: math.unit(67, "feet")
  34164. },
  34165. {
  34166. name: "Megamacro",
  34167. height: math.unit(134, "feet")
  34168. },
  34169. ]
  34170. ))
  34171. characterMakers.push(() => makeCharacter(
  34172. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  34173. {
  34174. front: {
  34175. height: math.unit(9, "feet"),
  34176. weight: math.unit(120, "lb"),
  34177. name: "Front",
  34178. image: {
  34179. source: "./media/characters/sally/front.svg",
  34180. extra: 1506/1349,
  34181. bottom: 66/1572
  34182. }
  34183. },
  34184. },
  34185. [
  34186. {
  34187. name: "Normal",
  34188. height: math.unit(9, "feet"),
  34189. default: true
  34190. },
  34191. ]
  34192. ))
  34193. characterMakers.push(() => makeCharacter(
  34194. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  34195. {
  34196. front: {
  34197. height: math.unit(8, "feet"),
  34198. weight: math.unit(900, "lb"),
  34199. name: "Front",
  34200. image: {
  34201. source: "./media/characters/owen/front.svg",
  34202. extra: 1761/1657,
  34203. bottom: 74/1835
  34204. }
  34205. },
  34206. side: {
  34207. height: math.unit(8, "feet"),
  34208. weight: math.unit(900, "lb"),
  34209. name: "Side",
  34210. image: {
  34211. source: "./media/characters/owen/side.svg",
  34212. extra: 1797/1734,
  34213. bottom: 30/1827
  34214. }
  34215. },
  34216. back: {
  34217. height: math.unit(8, "feet"),
  34218. weight: math.unit(900, "lb"),
  34219. name: "Back",
  34220. image: {
  34221. source: "./media/characters/owen/back.svg",
  34222. extra: 1796/1706,
  34223. bottom: 59/1855
  34224. }
  34225. },
  34226. maw: {
  34227. height: math.unit(1.76, "feet"),
  34228. name: "Maw",
  34229. image: {
  34230. source: "./media/characters/owen/maw.svg"
  34231. }
  34232. },
  34233. },
  34234. [
  34235. {
  34236. name: "Normal",
  34237. height: math.unit(8, "feet"),
  34238. default: true
  34239. },
  34240. ]
  34241. ))
  34242. characterMakers.push(() => makeCharacter(
  34243. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  34244. {
  34245. front: {
  34246. height: math.unit(4, "feet"),
  34247. weight: math.unit(400, "lb"),
  34248. name: "Front",
  34249. image: {
  34250. source: "./media/characters/ryth/front.svg",
  34251. extra: 1920/1748,
  34252. bottom: 42/1962
  34253. }
  34254. },
  34255. back: {
  34256. height: math.unit(4, "feet"),
  34257. weight: math.unit(400, "lb"),
  34258. name: "Back",
  34259. image: {
  34260. source: "./media/characters/ryth/back.svg",
  34261. extra: 1897/1690,
  34262. bottom: 89/1986
  34263. }
  34264. },
  34265. mouth: {
  34266. height: math.unit(1.39, "feet"),
  34267. name: "Mouth",
  34268. image: {
  34269. source: "./media/characters/ryth/mouth.svg"
  34270. }
  34271. },
  34272. tailmaw: {
  34273. height: math.unit(1.23, "feet"),
  34274. name: "Tailmaw",
  34275. image: {
  34276. source: "./media/characters/ryth/tailmaw.svg"
  34277. }
  34278. },
  34279. goia: {
  34280. height: math.unit(4, "meters"),
  34281. weight: math.unit(10800, "lb"),
  34282. name: "Goia",
  34283. image: {
  34284. source: "./media/characters/ryth/goia.svg",
  34285. extra: 745/640,
  34286. bottom: 107/852
  34287. }
  34288. },
  34289. goiaFront: {
  34290. height: math.unit(4, "meters"),
  34291. weight: math.unit(10800, "lb"),
  34292. name: "Goia (Front)",
  34293. image: {
  34294. source: "./media/characters/ryth/goia-front.svg",
  34295. extra: 750/586,
  34296. bottom: 114/864
  34297. }
  34298. },
  34299. goiaMaw: {
  34300. height: math.unit(5.55, "feet"),
  34301. name: "Goia Maw",
  34302. image: {
  34303. source: "./media/characters/ryth/goia-maw.svg"
  34304. }
  34305. },
  34306. goiaForepaw: {
  34307. height: math.unit(3.5, "feet"),
  34308. name: "Goia Forepaw",
  34309. image: {
  34310. source: "./media/characters/ryth/goia-forepaw.svg"
  34311. }
  34312. },
  34313. goiaHindpaw: {
  34314. height: math.unit(5.55, "feet"),
  34315. name: "Goia Hindpaw",
  34316. image: {
  34317. source: "./media/characters/ryth/goia-hindpaw.svg"
  34318. }
  34319. },
  34320. },
  34321. [
  34322. {
  34323. name: "Normal",
  34324. height: math.unit(4, "feet"),
  34325. default: true
  34326. },
  34327. ]
  34328. ))
  34329. characterMakers.push(() => makeCharacter(
  34330. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  34331. {
  34332. front: {
  34333. height: math.unit(7, "feet"),
  34334. weight: math.unit(180, "lb"),
  34335. name: "Front",
  34336. image: {
  34337. source: "./media/characters/necrolance/front.svg",
  34338. extra: 1062/947,
  34339. bottom: 41/1103
  34340. }
  34341. },
  34342. back: {
  34343. height: math.unit(7, "feet"),
  34344. weight: math.unit(180, "lb"),
  34345. name: "Back",
  34346. image: {
  34347. source: "./media/characters/necrolance/back.svg",
  34348. extra: 1045/984,
  34349. bottom: 14/1059
  34350. }
  34351. },
  34352. wing: {
  34353. height: math.unit(2.67, "feet"),
  34354. name: "Wing",
  34355. image: {
  34356. source: "./media/characters/necrolance/wing.svg"
  34357. }
  34358. },
  34359. },
  34360. [
  34361. {
  34362. name: "Normal",
  34363. height: math.unit(7, "feet"),
  34364. default: true
  34365. },
  34366. ]
  34367. ))
  34368. characterMakers.push(() => makeCharacter(
  34369. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  34370. {
  34371. front: {
  34372. height: math.unit(76, "meters"),
  34373. weight: math.unit(30000, "tons"),
  34374. name: "Front",
  34375. image: {
  34376. source: "./media/characters/tyler/front.svg",
  34377. extra: 1640/1640,
  34378. bottom: 114/1754
  34379. }
  34380. },
  34381. },
  34382. [
  34383. {
  34384. name: "Macro",
  34385. height: math.unit(76, "meters"),
  34386. default: true
  34387. },
  34388. ]
  34389. ))
  34390. characterMakers.push(() => makeCharacter(
  34391. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  34392. {
  34393. front: {
  34394. height: math.unit(4 + 11/12, "feet"),
  34395. weight: math.unit(132, "lb"),
  34396. name: "Front",
  34397. image: {
  34398. source: "./media/characters/icey/front.svg",
  34399. extra: 2750/2550,
  34400. bottom: 33/2783
  34401. }
  34402. },
  34403. back: {
  34404. height: math.unit(4 + 11/12, "feet"),
  34405. weight: math.unit(132, "lb"),
  34406. name: "Back",
  34407. image: {
  34408. source: "./media/characters/icey/back.svg",
  34409. extra: 2624/2481,
  34410. bottom: 35/2659
  34411. }
  34412. },
  34413. },
  34414. [
  34415. {
  34416. name: "Normal",
  34417. height: math.unit(4 + 11/12, "feet"),
  34418. default: true
  34419. },
  34420. ]
  34421. ))
  34422. characterMakers.push(() => makeCharacter(
  34423. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  34424. {
  34425. front: {
  34426. height: math.unit(100, "feet"),
  34427. weight: math.unit(0, "lb"),
  34428. name: "Front",
  34429. image: {
  34430. source: "./media/characters/smile/front.svg",
  34431. extra: 2983/2912,
  34432. bottom: 162/3145
  34433. }
  34434. },
  34435. back: {
  34436. height: math.unit(100, "feet"),
  34437. weight: math.unit(0, "lb"),
  34438. name: "Back",
  34439. image: {
  34440. source: "./media/characters/smile/back.svg",
  34441. extra: 3143/3031,
  34442. bottom: 91/3234
  34443. }
  34444. },
  34445. head: {
  34446. height: math.unit(26.3, "feet"),
  34447. weight: math.unit(0, "lb"),
  34448. name: "Head",
  34449. image: {
  34450. source: "./media/characters/smile/head.svg"
  34451. }
  34452. },
  34453. collar: {
  34454. height: math.unit(5.3, "feet"),
  34455. weight: math.unit(0, "lb"),
  34456. name: "Collar",
  34457. image: {
  34458. source: "./media/characters/smile/collar.svg"
  34459. }
  34460. },
  34461. },
  34462. [
  34463. {
  34464. name: "Macro",
  34465. height: math.unit(100, "feet"),
  34466. default: true
  34467. },
  34468. ]
  34469. ))
  34470. characterMakers.push(() => makeCharacter(
  34471. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  34472. {
  34473. dragon: {
  34474. height: math.unit(26, "feet"),
  34475. weight: math.unit(36, "tons"),
  34476. name: "Dragon",
  34477. image: {
  34478. source: "./media/characters/arimphae/dragon.svg",
  34479. extra: 1574/983,
  34480. bottom: 357/1931
  34481. }
  34482. },
  34483. drake: {
  34484. height: math.unit(9, "feet"),
  34485. weight: math.unit(1.5, "tons"),
  34486. name: "Drake",
  34487. image: {
  34488. source: "./media/characters/arimphae/drake.svg",
  34489. extra: 1120/925,
  34490. bottom: 435/1555
  34491. }
  34492. },
  34493. },
  34494. [
  34495. {
  34496. name: "Small",
  34497. height: math.unit(26*5/9, "feet")
  34498. },
  34499. {
  34500. name: "Normal",
  34501. height: math.unit(26, "feet"),
  34502. default: true
  34503. },
  34504. ]
  34505. ))
  34506. characterMakers.push(() => makeCharacter(
  34507. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  34508. {
  34509. front: {
  34510. height: math.unit(8 + 9/12, "feet"),
  34511. name: "Front",
  34512. image: {
  34513. source: "./media/characters/xander/front.svg",
  34514. extra: 1237/974,
  34515. bottom: 94/1331
  34516. }
  34517. },
  34518. },
  34519. [
  34520. {
  34521. name: "Normal",
  34522. height: math.unit(8 + 9/12, "feet"),
  34523. default: true
  34524. },
  34525. {
  34526. name: "Gaze Grabber",
  34527. height: math.unit(13 + 8/12, "feet")
  34528. },
  34529. {
  34530. name: "Jaw Dropper",
  34531. height: math.unit(27, "feet")
  34532. },
  34533. {
  34534. name: "Show Stopper",
  34535. height: math.unit(136, "feet")
  34536. },
  34537. {
  34538. name: "Superstar",
  34539. height: math.unit(1.9e6, "miles")
  34540. },
  34541. ]
  34542. ))
  34543. characterMakers.push(() => makeCharacter(
  34544. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  34545. {
  34546. side: {
  34547. height: math.unit(2100, "feet"),
  34548. name: "Side",
  34549. image: {
  34550. source: "./media/characters/osiris/side.svg",
  34551. extra: 1105/939,
  34552. bottom: 167/1272
  34553. }
  34554. },
  34555. },
  34556. [
  34557. {
  34558. name: "Macro",
  34559. height: math.unit(2100, "feet"),
  34560. default: true
  34561. },
  34562. ]
  34563. ))
  34564. characterMakers.push(() => makeCharacter(
  34565. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  34566. {
  34567. front: {
  34568. height: math.unit(6 + 8/12, "feet"),
  34569. weight: math.unit(225, "lb"),
  34570. name: "Front",
  34571. image: {
  34572. source: "./media/characters/rhys-londe/front.svg",
  34573. extra: 2258/2141,
  34574. bottom: 188/2446
  34575. }
  34576. },
  34577. back: {
  34578. height: math.unit(6 + 8/12, "feet"),
  34579. weight: math.unit(225, "lb"),
  34580. name: "Back",
  34581. image: {
  34582. source: "./media/characters/rhys-londe/back.svg",
  34583. extra: 2237/2137,
  34584. bottom: 63/2300
  34585. }
  34586. },
  34587. frontNsfw: {
  34588. height: math.unit(6 + 8/12, "feet"),
  34589. weight: math.unit(225, "lb"),
  34590. name: "Front (NSFW)",
  34591. image: {
  34592. source: "./media/characters/rhys-londe/front-nsfw.svg",
  34593. extra: 2258/2141,
  34594. bottom: 188/2446
  34595. }
  34596. },
  34597. backNsfw: {
  34598. height: math.unit(6 + 8/12, "feet"),
  34599. weight: math.unit(225, "lb"),
  34600. name: "Back (NSFW)",
  34601. image: {
  34602. source: "./media/characters/rhys-londe/back-nsfw.svg",
  34603. extra: 2237/2137,
  34604. bottom: 63/2300
  34605. }
  34606. },
  34607. dick: {
  34608. height: math.unit(30, "inches"),
  34609. name: "Dick",
  34610. image: {
  34611. source: "./media/characters/rhys-londe/dick.svg"
  34612. }
  34613. },
  34614. maw: {
  34615. height: math.unit(1.6, "feet"),
  34616. name: "Maw",
  34617. image: {
  34618. source: "./media/characters/rhys-londe/maw.svg"
  34619. }
  34620. },
  34621. },
  34622. [
  34623. {
  34624. name: "Normal",
  34625. height: math.unit(6 + 8/12, "feet"),
  34626. default: true
  34627. },
  34628. ]
  34629. ))
  34630. characterMakers.push(() => makeCharacter(
  34631. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  34632. {
  34633. front: {
  34634. height: math.unit(3 + 10/12, "feet"),
  34635. weight: math.unit(90, "lb"),
  34636. name: "Front",
  34637. image: {
  34638. source: "./media/characters/taivas-ensim/front.svg",
  34639. extra: 1327/1216,
  34640. bottom: 96/1423
  34641. }
  34642. },
  34643. back: {
  34644. height: math.unit(3 + 10/12, "feet"),
  34645. weight: math.unit(90, "lb"),
  34646. name: "Back",
  34647. image: {
  34648. source: "./media/characters/taivas-ensim/back.svg",
  34649. extra: 1355/1247,
  34650. bottom: 11/1366
  34651. }
  34652. },
  34653. frontNsfw: {
  34654. height: math.unit(3 + 10/12, "feet"),
  34655. weight: math.unit(90, "lb"),
  34656. name: "Front (NSFW)",
  34657. image: {
  34658. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  34659. extra: 1327/1216,
  34660. bottom: 96/1423
  34661. }
  34662. },
  34663. backNsfw: {
  34664. height: math.unit(3 + 10/12, "feet"),
  34665. weight: math.unit(90, "lb"),
  34666. name: "Back (NSFW)",
  34667. image: {
  34668. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  34669. extra: 1355/1247,
  34670. bottom: 11/1366
  34671. }
  34672. },
  34673. },
  34674. [
  34675. {
  34676. name: "Normal",
  34677. height: math.unit(3 + 10/12, "feet"),
  34678. default: true
  34679. },
  34680. ]
  34681. ))
  34682. characterMakers.push(() => makeCharacter(
  34683. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  34684. {
  34685. front: {
  34686. height: math.unit(9 + 6/12, "feet"),
  34687. weight: math.unit(940, "lb"),
  34688. name: "Front",
  34689. image: {
  34690. source: "./media/characters/byliss/front.svg",
  34691. extra: 1327/1290,
  34692. bottom: 82/1409
  34693. }
  34694. },
  34695. back: {
  34696. height: math.unit(9 + 6/12, "feet"),
  34697. weight: math.unit(940, "lb"),
  34698. name: "Back",
  34699. image: {
  34700. source: "./media/characters/byliss/back.svg",
  34701. extra: 1376/1349,
  34702. bottom: 9/1385
  34703. }
  34704. },
  34705. frontNsfw: {
  34706. height: math.unit(9 + 6/12, "feet"),
  34707. weight: math.unit(940, "lb"),
  34708. name: "Front (NSFW)",
  34709. image: {
  34710. source: "./media/characters/byliss/front-nsfw.svg",
  34711. extra: 1327/1290,
  34712. bottom: 82/1409
  34713. }
  34714. },
  34715. backNsfw: {
  34716. height: math.unit(9 + 6/12, "feet"),
  34717. weight: math.unit(940, "lb"),
  34718. name: "Back (NSFW)",
  34719. image: {
  34720. source: "./media/characters/byliss/back-nsfw.svg",
  34721. extra: 1376/1349,
  34722. bottom: 9/1385
  34723. }
  34724. },
  34725. },
  34726. [
  34727. {
  34728. name: "Normal",
  34729. height: math.unit(9 + 6/12, "feet"),
  34730. default: true
  34731. },
  34732. ]
  34733. ))
  34734. characterMakers.push(() => makeCharacter(
  34735. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  34736. {
  34737. front: {
  34738. height: math.unit(5 + 2/12, "feet"),
  34739. weight: math.unit(200, "lb"),
  34740. name: "Front",
  34741. image: {
  34742. source: "./media/characters/noraly/front.svg",
  34743. extra: 4985/4773,
  34744. bottom: 150/5135
  34745. }
  34746. },
  34747. full: {
  34748. height: math.unit(5 + 2/12, "feet"),
  34749. weight: math.unit(164, "lb"),
  34750. name: "Full",
  34751. image: {
  34752. source: "./media/characters/noraly/full.svg",
  34753. extra: 1114/1059,
  34754. bottom: 35/1149
  34755. }
  34756. },
  34757. fuller: {
  34758. height: math.unit(5 + 2/12, "feet"),
  34759. weight: math.unit(230, "lb"),
  34760. name: "Fuller",
  34761. image: {
  34762. source: "./media/characters/noraly/fuller.svg",
  34763. extra: 1114/1059,
  34764. bottom: 35/1149
  34765. }
  34766. },
  34767. fullest: {
  34768. height: math.unit(5 + 2/12, "feet"),
  34769. weight: math.unit(300, "lb"),
  34770. name: "Fullest",
  34771. image: {
  34772. source: "./media/characters/noraly/fullest.svg",
  34773. extra: 1114/1059,
  34774. bottom: 35/1149
  34775. }
  34776. },
  34777. },
  34778. [
  34779. {
  34780. name: "Normal",
  34781. height: math.unit(5 + 2/12, "feet"),
  34782. default: true
  34783. },
  34784. ]
  34785. ))
  34786. characterMakers.push(() => makeCharacter(
  34787. { name: "Pera", species: ["snake"], tags: ["naga"] },
  34788. {
  34789. front: {
  34790. height: math.unit(5 + 2/12, "feet"),
  34791. weight: math.unit(210, "lb"),
  34792. name: "Front",
  34793. image: {
  34794. source: "./media/characters/pera/front.svg",
  34795. extra: 1560/1531,
  34796. bottom: 165/1725
  34797. }
  34798. },
  34799. back: {
  34800. height: math.unit(5 + 2/12, "feet"),
  34801. weight: math.unit(210, "lb"),
  34802. name: "Back",
  34803. image: {
  34804. source: "./media/characters/pera/back.svg",
  34805. extra: 1523/1493,
  34806. bottom: 152/1675
  34807. }
  34808. },
  34809. dick: {
  34810. height: math.unit(2.4, "feet"),
  34811. name: "Dick",
  34812. image: {
  34813. source: "./media/characters/pera/dick.svg"
  34814. }
  34815. },
  34816. },
  34817. [
  34818. {
  34819. name: "Normal",
  34820. height: math.unit(5 + 2/12, "feet"),
  34821. default: true
  34822. },
  34823. ]
  34824. ))
  34825. characterMakers.push(() => makeCharacter(
  34826. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  34827. {
  34828. front: {
  34829. height: math.unit(12, "feet"),
  34830. weight: math.unit(3200, "lb"),
  34831. name: "Front",
  34832. image: {
  34833. source: "./media/characters/julian/front.svg",
  34834. extra: 2962/2701,
  34835. bottom: 184/3146
  34836. }
  34837. },
  34838. maw: {
  34839. height: math.unit(5.35, "feet"),
  34840. name: "Maw",
  34841. image: {
  34842. source: "./media/characters/julian/maw.svg"
  34843. }
  34844. },
  34845. paw: {
  34846. height: math.unit(3.07, "feet"),
  34847. name: "Paw",
  34848. image: {
  34849. source: "./media/characters/julian/paw.svg"
  34850. }
  34851. },
  34852. },
  34853. [
  34854. {
  34855. name: "Default",
  34856. height: math.unit(12, "feet"),
  34857. default: true
  34858. },
  34859. {
  34860. name: "Big",
  34861. height: math.unit(50, "feet")
  34862. },
  34863. {
  34864. name: "Really Big",
  34865. height: math.unit(1, "mile")
  34866. },
  34867. {
  34868. name: "Extremely Big",
  34869. height: math.unit(100, "miles")
  34870. },
  34871. {
  34872. name: "Planet Hugger",
  34873. height: math.unit(200, "megameters")
  34874. },
  34875. {
  34876. name: "Unreasonably Big",
  34877. height: math.unit(1e300, "meters")
  34878. },
  34879. ]
  34880. ))
  34881. characterMakers.push(() => makeCharacter(
  34882. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  34883. {
  34884. solgooleo: {
  34885. height: math.unit(4, "meters"),
  34886. weight: math.unit(6000*1.5, "kg"),
  34887. volume: math.unit(6000, "liters"),
  34888. name: "Solgooleo",
  34889. image: {
  34890. source: "./media/characters/pi/solgooleo.svg",
  34891. extra: 388/331,
  34892. bottom: 29/417
  34893. }
  34894. },
  34895. },
  34896. [
  34897. {
  34898. name: "Normal",
  34899. height: math.unit(4, "meters"),
  34900. default: true
  34901. },
  34902. ]
  34903. ))
  34904. characterMakers.push(() => makeCharacter(
  34905. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  34906. {
  34907. front: {
  34908. height: math.unit(8, "feet"),
  34909. weight: math.unit(4, "tons"),
  34910. name: "Front",
  34911. image: {
  34912. source: "./media/characters/shaun/front.svg",
  34913. extra: 503/495,
  34914. bottom: 20/523
  34915. }
  34916. },
  34917. back: {
  34918. height: math.unit(8, "feet"),
  34919. weight: math.unit(4, "tons"),
  34920. name: "Back",
  34921. image: {
  34922. source: "./media/characters/shaun/back.svg",
  34923. extra: 487/480,
  34924. bottom: 20/507
  34925. }
  34926. },
  34927. },
  34928. [
  34929. {
  34930. name: "Lorg",
  34931. height: math.unit(8, "feet"),
  34932. default: true
  34933. },
  34934. ]
  34935. ))
  34936. characterMakers.push(() => makeCharacter(
  34937. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  34938. {
  34939. frontAnthro: {
  34940. height: math.unit(7, "feet"),
  34941. name: "Front",
  34942. image: {
  34943. source: "./media/characters/sini/front-anthro.svg",
  34944. extra: 726/678,
  34945. bottom: 35/761
  34946. },
  34947. form: "anthro",
  34948. default: true
  34949. },
  34950. backAnthro: {
  34951. height: math.unit(7, "feet"),
  34952. name: "Back",
  34953. image: {
  34954. source: "./media/characters/sini/back-anthro.svg",
  34955. extra: 743/701,
  34956. bottom: 12/755
  34957. },
  34958. form: "anthro",
  34959. },
  34960. frontAnthroNsfw: {
  34961. height: math.unit(7, "feet"),
  34962. name: "Front (NSFW)",
  34963. image: {
  34964. source: "./media/characters/sini/front-anthro-nsfw.svg",
  34965. extra: 726/678,
  34966. bottom: 35/761
  34967. },
  34968. form: "anthro"
  34969. },
  34970. backAnthroNsfw: {
  34971. height: math.unit(7, "feet"),
  34972. name: "Back (NSFW)",
  34973. image: {
  34974. source: "./media/characters/sini/back-anthro-nsfw.svg",
  34975. extra: 743/701,
  34976. bottom: 12/755
  34977. },
  34978. form: "anthro",
  34979. },
  34980. mawAnthro: {
  34981. height: math.unit(2.14, "feet"),
  34982. name: "Maw",
  34983. image: {
  34984. source: "./media/characters/sini/maw-anthro.svg"
  34985. },
  34986. form: "anthro"
  34987. },
  34988. dick: {
  34989. height: math.unit(1.45, "feet"),
  34990. name: "Dick",
  34991. image: {
  34992. source: "./media/characters/sini/dick-anthro.svg"
  34993. },
  34994. form: "anthro"
  34995. },
  34996. feral: {
  34997. height: math.unit(16, "feet"),
  34998. name: "Feral",
  34999. image: {
  35000. source: "./media/characters/sini/feral.svg",
  35001. extra: 814/605,
  35002. bottom: 11/825
  35003. },
  35004. form: "feral",
  35005. default: true
  35006. },
  35007. feralNsfw: {
  35008. height: math.unit(16, "feet"),
  35009. name: "Feral (NSFW)",
  35010. image: {
  35011. source: "./media/characters/sini/feral-nsfw.svg",
  35012. extra: 814/605,
  35013. bottom: 11/825
  35014. },
  35015. form: "feral"
  35016. },
  35017. mawFeral: {
  35018. height: math.unit(5.66, "feet"),
  35019. name: "Maw",
  35020. image: {
  35021. source: "./media/characters/sini/maw-feral.svg"
  35022. },
  35023. form: "feral",
  35024. },
  35025. pawFeral: {
  35026. height: math.unit(5.17, "feet"),
  35027. name: "Paw",
  35028. image: {
  35029. source: "./media/characters/sini/paw-feral.svg"
  35030. },
  35031. form: "feral",
  35032. },
  35033. rumpFeral: {
  35034. height: math.unit(13.11, "feet"),
  35035. name: "Rump",
  35036. image: {
  35037. source: "./media/characters/sini/rump-feral.svg"
  35038. },
  35039. form: "feral",
  35040. },
  35041. dickFeral: {
  35042. height: math.unit(1, "feet"),
  35043. name: "Dick",
  35044. image: {
  35045. source: "./media/characters/sini/dick-feral.svg"
  35046. },
  35047. form: "feral",
  35048. },
  35049. eyeFeral: {
  35050. height: math.unit(1.23, "feet"),
  35051. name: "Eye",
  35052. image: {
  35053. source: "./media/characters/sini/eye-feral.svg"
  35054. },
  35055. form: "feral",
  35056. },
  35057. },
  35058. [
  35059. {
  35060. name: "Normal",
  35061. height: math.unit(7, "feet"),
  35062. default: true,
  35063. form: "anthro"
  35064. },
  35065. {
  35066. name: "Normal",
  35067. height: math.unit(16, "feet"),
  35068. default: true,
  35069. form: "feral"
  35070. },
  35071. ],
  35072. {
  35073. "anthro": {
  35074. name: "Anthro",
  35075. default: true
  35076. },
  35077. "feral": {
  35078. name: "Feral",
  35079. }
  35080. }
  35081. ))
  35082. characterMakers.push(() => makeCharacter(
  35083. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  35084. {
  35085. side: {
  35086. height: math.unit(47.2, "meters"),
  35087. weight: math.unit(10000, "tons"),
  35088. name: "Side",
  35089. image: {
  35090. source: "./media/characters/raylldo/side.svg",
  35091. extra: 2363/642,
  35092. bottom: 221/2584
  35093. }
  35094. },
  35095. top: {
  35096. height: math.unit(240, "meters"),
  35097. weight: math.unit(10000, "tons"),
  35098. name: "Top",
  35099. image: {
  35100. source: "./media/characters/raylldo/top.svg"
  35101. }
  35102. },
  35103. bottom: {
  35104. height: math.unit(240, "meters"),
  35105. weight: math.unit(10000, "tons"),
  35106. name: "Bottom",
  35107. image: {
  35108. source: "./media/characters/raylldo/bottom.svg"
  35109. }
  35110. },
  35111. head: {
  35112. height: math.unit(38.6, "meters"),
  35113. name: "Head",
  35114. image: {
  35115. source: "./media/characters/raylldo/head.svg",
  35116. extra: 1335/1112,
  35117. bottom: 0/1335
  35118. }
  35119. },
  35120. maw: {
  35121. height: math.unit(16.37, "meters"),
  35122. name: "Maw",
  35123. image: {
  35124. source: "./media/characters/raylldo/maw.svg",
  35125. extra: 883/660,
  35126. bottom: 0/883
  35127. },
  35128. extraAttributes: {
  35129. preyCapacity: {
  35130. name: "Capacity",
  35131. power: 3,
  35132. type: "volume",
  35133. base: math.unit(1000, "people")
  35134. },
  35135. tongueSize: {
  35136. name: "Tongue Size",
  35137. power: 2,
  35138. type: "area",
  35139. base: math.unit(21, "m^2")
  35140. }
  35141. }
  35142. },
  35143. forepaw: {
  35144. height: math.unit(18, "meters"),
  35145. name: "Forepaw",
  35146. image: {
  35147. source: "./media/characters/raylldo/forepaw.svg"
  35148. }
  35149. },
  35150. hindpaw: {
  35151. height: math.unit(23, "meters"),
  35152. name: "Hindpaw",
  35153. image: {
  35154. source: "./media/characters/raylldo/hindpaw.svg"
  35155. }
  35156. },
  35157. genitals: {
  35158. height: math.unit(42, "meters"),
  35159. name: "Genitals",
  35160. image: {
  35161. source: "./media/characters/raylldo/genitals.svg"
  35162. }
  35163. },
  35164. },
  35165. [
  35166. {
  35167. name: "Normal",
  35168. height: math.unit(47.2, "meters"),
  35169. default: true
  35170. },
  35171. ]
  35172. ))
  35173. characterMakers.push(() => makeCharacter(
  35174. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  35175. {
  35176. anthroFront: {
  35177. height: math.unit(9, "feet"),
  35178. weight: math.unit(600, "lb"),
  35179. name: "Anthro (Front)",
  35180. image: {
  35181. source: "./media/characters/glint/anthro-front.svg",
  35182. extra: 1097/1018,
  35183. bottom: 28/1125
  35184. }
  35185. },
  35186. anthroBack: {
  35187. height: math.unit(9, "feet"),
  35188. weight: math.unit(600, "lb"),
  35189. name: "Anthro (Back)",
  35190. image: {
  35191. source: "./media/characters/glint/anthro-back.svg",
  35192. extra: 1154/997,
  35193. bottom: 36/1190
  35194. }
  35195. },
  35196. feral: {
  35197. height: math.unit(11, "feet"),
  35198. weight: math.unit(50000, "lb"),
  35199. name: "Feral",
  35200. image: {
  35201. source: "./media/characters/glint/feral.svg",
  35202. extra: 3035/1585,
  35203. bottom: 1169/4204
  35204. }
  35205. },
  35206. dickAnthro: {
  35207. height: math.unit(0.7, "meters"),
  35208. name: "Dick (Anthro)",
  35209. image: {
  35210. source: "./media/characters/glint/dick-anthro.svg"
  35211. }
  35212. },
  35213. dickFeral: {
  35214. height: math.unit(2.65, "meters"),
  35215. name: "Dick (Feral)",
  35216. image: {
  35217. source: "./media/characters/glint/dick-feral.svg"
  35218. }
  35219. },
  35220. slitHidden: {
  35221. height: math.unit(5.85, "meters"),
  35222. name: "Slit (Hidden)",
  35223. image: {
  35224. source: "./media/characters/glint/slit-hidden.svg"
  35225. }
  35226. },
  35227. slitErect: {
  35228. height: math.unit(5.85, "meters"),
  35229. name: "Slit (Erect)",
  35230. image: {
  35231. source: "./media/characters/glint/slit-erect.svg"
  35232. }
  35233. },
  35234. mawAnthro: {
  35235. height: math.unit(0.63, "meters"),
  35236. name: "Maw (Anthro)",
  35237. image: {
  35238. source: "./media/characters/glint/maw.svg"
  35239. }
  35240. },
  35241. mawFeral: {
  35242. height: math.unit(2.89, "meters"),
  35243. name: "Maw (Feral)",
  35244. image: {
  35245. source: "./media/characters/glint/maw.svg"
  35246. }
  35247. },
  35248. },
  35249. [
  35250. {
  35251. name: "Normal",
  35252. height: math.unit(9, "feet"),
  35253. default: true
  35254. },
  35255. ]
  35256. ))
  35257. characterMakers.push(() => makeCharacter(
  35258. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  35259. {
  35260. side: {
  35261. height: math.unit(15, "feet"),
  35262. weight: math.unit(5000, "kg"),
  35263. name: "Side",
  35264. image: {
  35265. source: "./media/characters/kairne/side.svg",
  35266. extra: 979/811,
  35267. bottom: 13/992
  35268. }
  35269. },
  35270. front: {
  35271. height: math.unit(15, "feet"),
  35272. weight: math.unit(5000, "kg"),
  35273. name: "Front",
  35274. image: {
  35275. source: "./media/characters/kairne/front.svg",
  35276. extra: 908/814,
  35277. bottom: 26/934
  35278. }
  35279. },
  35280. sideNsfw: {
  35281. height: math.unit(15, "feet"),
  35282. weight: math.unit(5000, "kg"),
  35283. name: "Side (NSFW)",
  35284. image: {
  35285. source: "./media/characters/kairne/side-nsfw.svg",
  35286. extra: 979/811,
  35287. bottom: 13/992
  35288. }
  35289. },
  35290. frontNsfw: {
  35291. height: math.unit(15, "feet"),
  35292. weight: math.unit(5000, "kg"),
  35293. name: "Front (NSFW)",
  35294. image: {
  35295. source: "./media/characters/kairne/front-nsfw.svg",
  35296. extra: 908/814,
  35297. bottom: 26/934
  35298. }
  35299. },
  35300. dickCaged: {
  35301. height: math.unit(0.65, "meters"),
  35302. name: "Dick-caged",
  35303. image: {
  35304. source: "./media/characters/kairne/dick-caged.svg"
  35305. }
  35306. },
  35307. dick: {
  35308. height: math.unit(0.79, "meters"),
  35309. name: "Dick",
  35310. image: {
  35311. source: "./media/characters/kairne/dick.svg"
  35312. }
  35313. },
  35314. genitals: {
  35315. height: math.unit(1.29, "meters"),
  35316. name: "Genitals",
  35317. image: {
  35318. source: "./media/characters/kairne/genitals.svg"
  35319. }
  35320. },
  35321. maw: {
  35322. height: math.unit(1.73, "meters"),
  35323. name: "Maw",
  35324. image: {
  35325. source: "./media/characters/kairne/maw.svg"
  35326. }
  35327. },
  35328. },
  35329. [
  35330. {
  35331. name: "Normal",
  35332. height: math.unit(15, "feet"),
  35333. default: true
  35334. },
  35335. ]
  35336. ))
  35337. characterMakers.push(() => makeCharacter(
  35338. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  35339. {
  35340. front: {
  35341. height: math.unit(5 + 8/12, "feet"),
  35342. weight: math.unit(139, "lb"),
  35343. name: "Front",
  35344. image: {
  35345. source: "./media/characters/biscuit-jackal/front.svg",
  35346. extra: 2106/1961,
  35347. bottom: 58/2164
  35348. }
  35349. },
  35350. back: {
  35351. height: math.unit(5 + 8/12, "feet"),
  35352. weight: math.unit(139, "lb"),
  35353. name: "Back",
  35354. image: {
  35355. source: "./media/characters/biscuit-jackal/back.svg",
  35356. extra: 2132/1976,
  35357. bottom: 57/2189
  35358. }
  35359. },
  35360. werejackal: {
  35361. height: math.unit(6 + 3/12, "feet"),
  35362. weight: math.unit(188, "lb"),
  35363. name: "Werejackal",
  35364. image: {
  35365. source: "./media/characters/biscuit-jackal/werejackal.svg",
  35366. extra: 2373/2178,
  35367. bottom: 53/2426
  35368. }
  35369. },
  35370. },
  35371. [
  35372. {
  35373. name: "Normal",
  35374. height: math.unit(5 + 8/12, "feet"),
  35375. default: true
  35376. },
  35377. ]
  35378. ))
  35379. characterMakers.push(() => makeCharacter(
  35380. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  35381. {
  35382. front: {
  35383. height: math.unit(140, "cm"),
  35384. weight: math.unit(45, "kg"),
  35385. name: "Front",
  35386. image: {
  35387. source: "./media/characters/tayra-white/front.svg",
  35388. extra: 2229/2192,
  35389. bottom: 75/2304
  35390. }
  35391. },
  35392. },
  35393. [
  35394. {
  35395. name: "Normal",
  35396. height: math.unit(140, "cm"),
  35397. default: true
  35398. },
  35399. ]
  35400. ))
  35401. characterMakers.push(() => makeCharacter(
  35402. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  35403. {
  35404. front: {
  35405. height: math.unit(4 + 5/12, "feet"),
  35406. name: "Front",
  35407. image: {
  35408. source: "./media/characters/scoop/front.svg",
  35409. extra: 1257/1136,
  35410. bottom: 69/1326
  35411. }
  35412. },
  35413. back: {
  35414. height: math.unit(4 + 5/12, "feet"),
  35415. name: "Back",
  35416. image: {
  35417. source: "./media/characters/scoop/back.svg",
  35418. extra: 1321/1152,
  35419. bottom: 32/1353
  35420. }
  35421. },
  35422. maw: {
  35423. height: math.unit(0.68, "feet"),
  35424. name: "Maw",
  35425. image: {
  35426. source: "./media/characters/scoop/maw.svg"
  35427. }
  35428. },
  35429. },
  35430. [
  35431. {
  35432. name: "Really Small",
  35433. height: math.unit(1, "mm")
  35434. },
  35435. {
  35436. name: "Micro",
  35437. height: math.unit(1, "inch")
  35438. },
  35439. {
  35440. name: "Normal",
  35441. height: math.unit(4 + 5/12, "feet"),
  35442. default: true
  35443. },
  35444. {
  35445. name: "Macro",
  35446. height: math.unit(200, "feet")
  35447. },
  35448. {
  35449. name: "Megamacro",
  35450. height: math.unit(3240, "feet")
  35451. },
  35452. {
  35453. name: "Teramacro",
  35454. height: math.unit(2500, "miles")
  35455. },
  35456. ]
  35457. ))
  35458. characterMakers.push(() => makeCharacter(
  35459. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  35460. {
  35461. front: {
  35462. height: math.unit(15 + 7/12, "feet"),
  35463. weight: math.unit(1150, "tons"),
  35464. name: "Front",
  35465. image: {
  35466. source: "./media/characters/saphinara/front.svg",
  35467. extra: 1837/1643,
  35468. bottom: 84/1921
  35469. },
  35470. form: "normal",
  35471. default: true
  35472. },
  35473. side: {
  35474. height: math.unit(15 + 7/12, "feet"),
  35475. weight: math.unit(1150, "tons"),
  35476. name: "Side",
  35477. image: {
  35478. source: "./media/characters/saphinara/side.svg",
  35479. extra: 605/547,
  35480. bottom: 6/611
  35481. },
  35482. form: "normal"
  35483. },
  35484. back: {
  35485. height: math.unit(15 + 7/12, "feet"),
  35486. weight: math.unit(1150, "tons"),
  35487. name: "Back",
  35488. image: {
  35489. source: "./media/characters/saphinara/back.svg",
  35490. extra: 591/531,
  35491. bottom: 13/604
  35492. },
  35493. form: "normal"
  35494. },
  35495. frontTail: {
  35496. height: math.unit(15 + 7/12, "feet"),
  35497. weight: math.unit(1150, "tons"),
  35498. name: "Front (Full Tail)",
  35499. image: {
  35500. source: "./media/characters/saphinara/front-tail.svg",
  35501. extra: 2256/1630,
  35502. bottom: 261/2517
  35503. },
  35504. form: "normal"
  35505. },
  35506. insides: {
  35507. height: math.unit(11.92, "feet"),
  35508. name: "Insides",
  35509. image: {
  35510. source: "./media/characters/saphinara/insides.svg"
  35511. },
  35512. form: "normal"
  35513. },
  35514. head: {
  35515. height: math.unit(4.17, "feet"),
  35516. name: "Head",
  35517. image: {
  35518. source: "./media/characters/saphinara/head.svg"
  35519. },
  35520. form: "normal"
  35521. },
  35522. tongue: {
  35523. height: math.unit(4.60, "feet"),
  35524. name: "Tongue",
  35525. image: {
  35526. source: "./media/characters/saphinara/tongue.svg"
  35527. },
  35528. form: "normal"
  35529. },
  35530. headEnraged: {
  35531. height: math.unit(5.55, "feet"),
  35532. name: "Head (Enraged)",
  35533. image: {
  35534. source: "./media/characters/saphinara/head-enraged.svg"
  35535. },
  35536. form: "normal"
  35537. },
  35538. wings: {
  35539. height: math.unit(11.95, "feet"),
  35540. name: "Wings",
  35541. image: {
  35542. source: "./media/characters/saphinara/wings.svg"
  35543. },
  35544. form: "normal"
  35545. },
  35546. feathers: {
  35547. height: math.unit(8.92, "feet"),
  35548. name: "Feathers",
  35549. image: {
  35550. source: "./media/characters/saphinara/feathers.svg"
  35551. },
  35552. form: "normal"
  35553. },
  35554. shackles: {
  35555. height: math.unit(2, "feet"),
  35556. name: "Shackles",
  35557. image: {
  35558. source: "./media/characters/saphinara/shackles.svg"
  35559. },
  35560. form: "normal"
  35561. },
  35562. eyes: {
  35563. height: math.unit(1.331, "feet"),
  35564. name: "Eyes",
  35565. image: {
  35566. source: "./media/characters/saphinara/eyes.svg"
  35567. },
  35568. form: "normal"
  35569. },
  35570. eyesEnraged: {
  35571. height: math.unit(1.331, "feet"),
  35572. name: "Eyes (Enraged)",
  35573. image: {
  35574. source: "./media/characters/saphinara/eyes-enraged.svg"
  35575. },
  35576. form: "normal"
  35577. },
  35578. trueFormSide: {
  35579. height: math.unit(200, "feet"),
  35580. weight: math.unit(1e7, "tons"),
  35581. name: "Side",
  35582. image: {
  35583. source: "./media/characters/saphinara/true-form-side.svg",
  35584. extra: 1399/770,
  35585. bottom: 97/1496
  35586. },
  35587. form: "true-form",
  35588. default: true
  35589. },
  35590. trueFormMaw: {
  35591. height: math.unit(71.5, "feet"),
  35592. name: "Maw",
  35593. image: {
  35594. source: "./media/characters/saphinara/true-form-maw.svg",
  35595. extra: 2302/1453,
  35596. bottom: 0/2302
  35597. },
  35598. form: "true-form"
  35599. },
  35600. meowberusSide: {
  35601. height: math.unit(75, "feet"),
  35602. weight: math.unit(180000, "kg"),
  35603. preyCapacity: math.unit(50000, "people"),
  35604. name: "Side",
  35605. image: {
  35606. source: "./media/characters/saphinara/meowberus-side.svg",
  35607. extra: 1400/711,
  35608. bottom: 126/1526
  35609. },
  35610. form: "meowberus",
  35611. extraAttributes: {
  35612. "pawArea": {
  35613. name: "Paw Size",
  35614. power: 2,
  35615. type: "area",
  35616. base: math.unit(35, "m^2")
  35617. }
  35618. }
  35619. },
  35620. },
  35621. [
  35622. {
  35623. name: "Normal",
  35624. height: math.unit(15 + 7/12, "feet"),
  35625. default: true,
  35626. form: "normal"
  35627. },
  35628. {
  35629. name: "Angry",
  35630. height: math.unit(30 + 6/12, "feet"),
  35631. form: "normal"
  35632. },
  35633. {
  35634. name: "Enraged",
  35635. height: math.unit(102 + 1/12, "feet"),
  35636. form: "normal"
  35637. },
  35638. {
  35639. name: "True",
  35640. height: math.unit(200, "feet"),
  35641. default: true,
  35642. form: "true-form"
  35643. },
  35644. {
  35645. name: "Normal",
  35646. height: math.unit(75, "feet"),
  35647. default: true,
  35648. form: "meowberus"
  35649. },
  35650. ],
  35651. {
  35652. "normal": {
  35653. name: "Normal",
  35654. default: true
  35655. },
  35656. "true-form": {
  35657. name: "True Form"
  35658. },
  35659. "meowberus": {
  35660. name: "Meowberus",
  35661. },
  35662. }
  35663. ))
  35664. characterMakers.push(() => makeCharacter(
  35665. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  35666. {
  35667. front: {
  35668. height: math.unit(6 + 8/12, "feet"),
  35669. weight: math.unit(300, "lb"),
  35670. name: "Front",
  35671. image: {
  35672. source: "./media/characters/jrain/front.svg",
  35673. extra: 3039/2865,
  35674. bottom: 399/3438
  35675. }
  35676. },
  35677. back: {
  35678. height: math.unit(6 + 8/12, "feet"),
  35679. weight: math.unit(300, "lb"),
  35680. name: "Back",
  35681. image: {
  35682. source: "./media/characters/jrain/back.svg",
  35683. extra: 3089/2938,
  35684. bottom: 172/3261
  35685. }
  35686. },
  35687. head: {
  35688. height: math.unit(2.14, "feet"),
  35689. name: "Head",
  35690. image: {
  35691. source: "./media/characters/jrain/head.svg"
  35692. }
  35693. },
  35694. maw: {
  35695. height: math.unit(1.77, "feet"),
  35696. name: "Maw",
  35697. image: {
  35698. source: "./media/characters/jrain/maw.svg"
  35699. }
  35700. },
  35701. leftHand: {
  35702. height: math.unit(1.1, "feet"),
  35703. name: "Left Hand",
  35704. image: {
  35705. source: "./media/characters/jrain/left-hand.svg"
  35706. }
  35707. },
  35708. rightHand: {
  35709. height: math.unit(1.1, "feet"),
  35710. name: "Right Hand",
  35711. image: {
  35712. source: "./media/characters/jrain/right-hand.svg"
  35713. }
  35714. },
  35715. eye: {
  35716. height: math.unit(0.35, "feet"),
  35717. name: "Eye",
  35718. image: {
  35719. source: "./media/characters/jrain/eye.svg"
  35720. }
  35721. },
  35722. },
  35723. [
  35724. {
  35725. name: "Normal",
  35726. height: math.unit(6 + 8/12, "feet"),
  35727. default: true
  35728. },
  35729. {
  35730. name: "Casually Large",
  35731. height: math.unit(25, "feet")
  35732. },
  35733. {
  35734. name: "Giant",
  35735. height: math.unit(100, "feet")
  35736. },
  35737. {
  35738. name: "Kaiju",
  35739. height: math.unit(300, "feet")
  35740. },
  35741. ]
  35742. ))
  35743. characterMakers.push(() => makeCharacter(
  35744. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  35745. {
  35746. dragon: {
  35747. height: math.unit(5, "meters"),
  35748. name: "Dragon",
  35749. image: {
  35750. source: "./media/characters/sabrina/dragon.svg",
  35751. extra: 3670 / 2365,
  35752. bottom: 333 / 4003
  35753. }
  35754. },
  35755. gryphon: {
  35756. height: math.unit(3, "meters"),
  35757. name: "Gryphon",
  35758. image: {
  35759. source: "./media/characters/sabrina/gryphon.svg",
  35760. extra: 1576 / 945,
  35761. bottom: 71 / 1647
  35762. }
  35763. },
  35764. snake: {
  35765. height: math.unit(12, "meters"),
  35766. name: "Snake",
  35767. image: {
  35768. source: "./media/characters/sabrina/snake.svg",
  35769. extra: 1758 / 1320,
  35770. bottom: 186 / 1944
  35771. }
  35772. },
  35773. collar: {
  35774. height: math.unit(1.86, "meters"),
  35775. name: "Collar",
  35776. image: {
  35777. source: "./media/characters/sabrina/collar.svg"
  35778. }
  35779. },
  35780. eye: {
  35781. height: math.unit(0.53, "meters"),
  35782. name: "Eye",
  35783. image: {
  35784. source: "./media/characters/sabrina/eye.svg"
  35785. }
  35786. },
  35787. foot: {
  35788. height: math.unit(1.86, "meters"),
  35789. name: "Foot",
  35790. image: {
  35791. source: "./media/characters/sabrina/foot.svg"
  35792. }
  35793. },
  35794. hand: {
  35795. height: math.unit(1.32, "meters"),
  35796. name: "Hand",
  35797. image: {
  35798. source: "./media/characters/sabrina/hand.svg"
  35799. }
  35800. },
  35801. head: {
  35802. height: math.unit(2.44, "meters"),
  35803. name: "Head",
  35804. image: {
  35805. source: "./media/characters/sabrina/head.svg"
  35806. }
  35807. },
  35808. headAngry: {
  35809. height: math.unit(2.44, "meters"),
  35810. name: "Head (Angry))",
  35811. image: {
  35812. source: "./media/characters/sabrina/head-angry.svg"
  35813. }
  35814. },
  35815. maw: {
  35816. height: math.unit(1.65, "meters"),
  35817. name: "Maw",
  35818. image: {
  35819. source: "./media/characters/sabrina/maw.svg"
  35820. }
  35821. },
  35822. spikes: {
  35823. height: math.unit(1.69, "meters"),
  35824. name: "Spikes",
  35825. image: {
  35826. source: "./media/characters/sabrina/spikes.svg"
  35827. }
  35828. },
  35829. stomach: {
  35830. height: math.unit(1.15, "meters"),
  35831. name: "Stomach",
  35832. image: {
  35833. source: "./media/characters/sabrina/stomach.svg"
  35834. }
  35835. },
  35836. tongue: {
  35837. height: math.unit(1.27, "meters"),
  35838. name: "Tongue",
  35839. image: {
  35840. source: "./media/characters/sabrina/tongue.svg"
  35841. }
  35842. },
  35843. wingDorsal: {
  35844. height: math.unit(4.85, "meters"),
  35845. name: "Wing (Dorsal)",
  35846. image: {
  35847. source: "./media/characters/sabrina/wing-dorsal.svg"
  35848. }
  35849. },
  35850. wingVentral: {
  35851. height: math.unit(4.85, "meters"),
  35852. name: "Wing (Ventral)",
  35853. image: {
  35854. source: "./media/characters/sabrina/wing-ventral.svg"
  35855. }
  35856. },
  35857. },
  35858. [
  35859. {
  35860. name: "Normal",
  35861. height: math.unit(5, "meters"),
  35862. default: true
  35863. },
  35864. ]
  35865. ))
  35866. characterMakers.push(() => makeCharacter(
  35867. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  35868. {
  35869. frontMaid: {
  35870. height: math.unit(5 + 5/12, "feet"),
  35871. weight: math.unit(130, "lb"),
  35872. name: "Front (Maid)",
  35873. image: {
  35874. source: "./media/characters/midnight-tales/front-maid.svg",
  35875. extra: 489/454,
  35876. bottom: 61/550
  35877. }
  35878. },
  35879. frontFormal: {
  35880. height: math.unit(5 + 5/12, "feet"),
  35881. weight: math.unit(130, "lb"),
  35882. name: "Front (Formal)",
  35883. image: {
  35884. source: "./media/characters/midnight-tales/front-formal.svg",
  35885. extra: 489/454,
  35886. bottom: 61/550
  35887. }
  35888. },
  35889. back: {
  35890. height: math.unit(5 + 5/12, "feet"),
  35891. weight: math.unit(130, "lb"),
  35892. name: "Back",
  35893. image: {
  35894. source: "./media/characters/midnight-tales/back.svg",
  35895. extra: 498/456,
  35896. bottom: 33/531
  35897. }
  35898. },
  35899. frontBeast: {
  35900. height: math.unit(40, "feet"),
  35901. weight: math.unit(64000, "lb"),
  35902. name: "Front (Beast)",
  35903. image: {
  35904. source: "./media/characters/midnight-tales/front-beast.svg",
  35905. extra: 927/860,
  35906. bottom: 53/980
  35907. }
  35908. },
  35909. backBeast: {
  35910. height: math.unit(40, "feet"),
  35911. weight: math.unit(64000, "lb"),
  35912. name: "Back (Beast)",
  35913. image: {
  35914. source: "./media/characters/midnight-tales/back-beast.svg",
  35915. extra: 929/855,
  35916. bottom: 16/945
  35917. }
  35918. },
  35919. footBeast: {
  35920. height: math.unit(6.7, "feet"),
  35921. name: "Foot (Beast)",
  35922. image: {
  35923. source: "./media/characters/midnight-tales/foot-beast.svg"
  35924. }
  35925. },
  35926. headBeast: {
  35927. height: math.unit(8, "feet"),
  35928. name: "Head (Beast)",
  35929. image: {
  35930. source: "./media/characters/midnight-tales/head-beast.svg"
  35931. }
  35932. },
  35933. },
  35934. [
  35935. {
  35936. name: "Normal",
  35937. height: math.unit(5 + 5 / 12, "feet"),
  35938. default: true
  35939. },
  35940. {
  35941. name: "Macro",
  35942. height: math.unit(25, "feet")
  35943. },
  35944. ]
  35945. ))
  35946. characterMakers.push(() => makeCharacter(
  35947. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  35948. {
  35949. front: {
  35950. height: math.unit(5 + 10/12, "feet"),
  35951. name: "Front",
  35952. image: {
  35953. source: "./media/characters/argon/front.svg",
  35954. extra: 2009/1935,
  35955. bottom: 118/2127
  35956. }
  35957. },
  35958. back: {
  35959. height: math.unit(5 + 10/12, "feet"),
  35960. name: "Back",
  35961. image: {
  35962. source: "./media/characters/argon/back.svg",
  35963. extra: 2047/1992,
  35964. bottom: 20/2067
  35965. }
  35966. },
  35967. frontDressed: {
  35968. height: math.unit(5 + 10/12, "feet"),
  35969. name: "Front (Dressed)",
  35970. image: {
  35971. source: "./media/characters/argon/front-dressed.svg",
  35972. extra: 2009/1935,
  35973. bottom: 118/2127
  35974. }
  35975. },
  35976. },
  35977. [
  35978. {
  35979. name: "Normal",
  35980. height: math.unit(5 + 10/12, "feet"),
  35981. default: true
  35982. },
  35983. ]
  35984. ))
  35985. characterMakers.push(() => makeCharacter(
  35986. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  35987. {
  35988. front: {
  35989. height: math.unit(8 + 6/12, "feet"),
  35990. weight: math.unit(1150, "lb"),
  35991. name: "Front",
  35992. image: {
  35993. source: "./media/characters/kichi/front.svg",
  35994. extra: 1267/1164,
  35995. bottom: 61/1328
  35996. }
  35997. },
  35998. back: {
  35999. height: math.unit(8 + 6/12, "feet"),
  36000. weight: math.unit(1150, "lb"),
  36001. name: "Back",
  36002. image: {
  36003. source: "./media/characters/kichi/back.svg",
  36004. extra: 1273/1166,
  36005. bottom: 33/1306
  36006. }
  36007. },
  36008. },
  36009. [
  36010. {
  36011. name: "Normal",
  36012. height: math.unit(8 + 6/12, "feet"),
  36013. default: true
  36014. },
  36015. ]
  36016. ))
  36017. characterMakers.push(() => makeCharacter(
  36018. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  36019. {
  36020. front: {
  36021. height: math.unit(6, "feet"),
  36022. weight: math.unit(210, "lb"),
  36023. name: "Front",
  36024. image: {
  36025. source: "./media/characters/manetel-greyscale/front.svg",
  36026. extra: 350/312,
  36027. bottom: 8/358
  36028. }
  36029. },
  36030. },
  36031. [
  36032. {
  36033. name: "Micro",
  36034. height: math.unit(2, "inches")
  36035. },
  36036. {
  36037. name: "Normal",
  36038. height: math.unit(6, "feet"),
  36039. default: true
  36040. },
  36041. {
  36042. name: "Minimacro",
  36043. height: math.unit(17, "feet")
  36044. },
  36045. {
  36046. name: "Macro",
  36047. height: math.unit(117, "feet")
  36048. },
  36049. ]
  36050. ))
  36051. characterMakers.push(() => makeCharacter(
  36052. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  36053. {
  36054. side: {
  36055. height: math.unit(5 + 1/12, "feet"),
  36056. weight: math.unit(418, "lb"),
  36057. name: "Side",
  36058. image: {
  36059. source: "./media/characters/softpurr/side.svg",
  36060. extra: 1993/1945,
  36061. bottom: 134/2127
  36062. }
  36063. },
  36064. front: {
  36065. height: math.unit(5 + 1/12, "feet"),
  36066. weight: math.unit(418, "lb"),
  36067. name: "Front",
  36068. image: {
  36069. source: "./media/characters/softpurr/front.svg",
  36070. extra: 1950/1856,
  36071. bottom: 174/2124
  36072. }
  36073. },
  36074. paw: {
  36075. height: math.unit(1, "feet"),
  36076. name: "Paw",
  36077. image: {
  36078. source: "./media/characters/softpurr/paw.svg"
  36079. }
  36080. },
  36081. },
  36082. [
  36083. {
  36084. name: "Normal",
  36085. height: math.unit(5 + 1/12, "feet"),
  36086. default: true
  36087. },
  36088. ]
  36089. ))
  36090. characterMakers.push(() => makeCharacter(
  36091. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  36092. {
  36093. front: {
  36094. height: math.unit(260, "meters"),
  36095. name: "Front",
  36096. image: {
  36097. source: "./media/characters/anahita/front.svg",
  36098. extra: 665/635,
  36099. bottom: 89/754
  36100. }
  36101. },
  36102. },
  36103. [
  36104. {
  36105. name: "Macro",
  36106. height: math.unit(260, "meters"),
  36107. default: true
  36108. },
  36109. ]
  36110. ))
  36111. characterMakers.push(() => makeCharacter(
  36112. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  36113. {
  36114. front: {
  36115. height: math.unit(4 + 10/12, "feet"),
  36116. weight: math.unit(160, "lb"),
  36117. name: "Front",
  36118. image: {
  36119. source: "./media/characters/chip-mouse/front.svg",
  36120. extra: 3528/3408,
  36121. bottom: 0/3528
  36122. }
  36123. },
  36124. frontNsfw: {
  36125. height: math.unit(4 + 10/12, "feet"),
  36126. weight: math.unit(160, "lb"),
  36127. name: "Front (NSFW)",
  36128. image: {
  36129. source: "./media/characters/chip-mouse/front-nsfw.svg",
  36130. extra: 3528/3408,
  36131. bottom: 0/3528
  36132. }
  36133. },
  36134. },
  36135. [
  36136. {
  36137. name: "Normal",
  36138. height: math.unit(4 + 10/12, "feet"),
  36139. default: true
  36140. },
  36141. ]
  36142. ))
  36143. characterMakers.push(() => makeCharacter(
  36144. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  36145. {
  36146. side: {
  36147. height: math.unit(10, "feet"),
  36148. weight: math.unit(14000, "lb"),
  36149. name: "Side",
  36150. image: {
  36151. source: "./media/characters/kremm/side.svg",
  36152. extra: 1390/1053,
  36153. bottom: 90/1480
  36154. }
  36155. },
  36156. gut: {
  36157. height: math.unit(5.8, "feet"),
  36158. name: "Gut",
  36159. image: {
  36160. source: "./media/characters/kremm/gut.svg"
  36161. }
  36162. },
  36163. ass: {
  36164. height: math.unit(6.1, "feet"),
  36165. name: "Ass",
  36166. image: {
  36167. source: "./media/characters/kremm/ass.svg"
  36168. }
  36169. },
  36170. jaws: {
  36171. height: math.unit(2.2, "feet"),
  36172. name: "Jaws",
  36173. image: {
  36174. source: "./media/characters/kremm/jaws.svg"
  36175. }
  36176. },
  36177. dick: {
  36178. height: math.unit(4.26, "feet"),
  36179. name: "Dick",
  36180. image: {
  36181. source: "./media/characters/kremm/dick.svg"
  36182. }
  36183. },
  36184. },
  36185. [
  36186. {
  36187. name: "Normal",
  36188. height: math.unit(10, "feet"),
  36189. default: true
  36190. },
  36191. ]
  36192. ))
  36193. characterMakers.push(() => makeCharacter(
  36194. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  36195. {
  36196. front: {
  36197. height: math.unit(30, "stories"),
  36198. name: "Front",
  36199. image: {
  36200. source: "./media/characters/kai/front.svg",
  36201. extra: 1892/1718,
  36202. bottom: 162/2054
  36203. }
  36204. },
  36205. },
  36206. [
  36207. {
  36208. name: "Macro",
  36209. height: math.unit(30, "stories"),
  36210. default: true
  36211. },
  36212. ]
  36213. ))
  36214. characterMakers.push(() => makeCharacter(
  36215. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  36216. {
  36217. front: {
  36218. height: math.unit(6 + 4/12, "feet"),
  36219. weight: math.unit(145, "lb"),
  36220. name: "Front",
  36221. image: {
  36222. source: "./media/characters/sykes/front.svg",
  36223. extra: 1321 / 1187,
  36224. bottom: 66 / 1387
  36225. }
  36226. },
  36227. back: {
  36228. height: math.unit(6 + 4/12, "feet"),
  36229. weight: math.unit(145, "lb"),
  36230. name: "Back",
  36231. image: {
  36232. source: "./media/characters/sykes/back.svg",
  36233. extra: 1326/1181,
  36234. bottom: 31/1357
  36235. }
  36236. },
  36237. traditionalOutfit: {
  36238. height: math.unit(6 + 4/12, "feet"),
  36239. weight: math.unit(145, "lb"),
  36240. name: "Traditional Outfit",
  36241. image: {
  36242. source: "./media/characters/sykes/traditional-outfit.svg",
  36243. extra: 1321 / 1187,
  36244. bottom: 66 / 1387
  36245. }
  36246. },
  36247. adventureOutfit: {
  36248. height: math.unit(6 + 4/12, "feet"),
  36249. weight: math.unit(145, "lb"),
  36250. name: "Adventure Outfit",
  36251. image: {
  36252. source: "./media/characters/sykes/adventure-outfit.svg",
  36253. extra: 1321 / 1187,
  36254. bottom: 66 / 1387
  36255. }
  36256. },
  36257. handLeft: {
  36258. height: math.unit(0.9, "feet"),
  36259. name: "Hand (Left)",
  36260. image: {
  36261. source: "./media/characters/sykes/hand-left.svg"
  36262. }
  36263. },
  36264. handRight: {
  36265. height: math.unit(0.839, "feet"),
  36266. name: "Hand (Right)",
  36267. image: {
  36268. source: "./media/characters/sykes/hand-right.svg"
  36269. }
  36270. },
  36271. leftFoot: {
  36272. height: math.unit(1.2, "feet"),
  36273. name: "Foot (Left)",
  36274. image: {
  36275. source: "./media/characters/sykes/foot-left.svg"
  36276. }
  36277. },
  36278. rightFoot: {
  36279. height: math.unit(1.2, "feet"),
  36280. name: "Foot (Right)",
  36281. image: {
  36282. source: "./media/characters/sykes/foot-right.svg"
  36283. }
  36284. },
  36285. maw: {
  36286. height: math.unit(1.93, "feet"),
  36287. name: "Maw",
  36288. image: {
  36289. source: "./media/characters/sykes/maw.svg"
  36290. }
  36291. },
  36292. teeth: {
  36293. height: math.unit(0.51, "feet"),
  36294. name: "Teeth",
  36295. image: {
  36296. source: "./media/characters/sykes/teeth.svg"
  36297. }
  36298. },
  36299. tongue: {
  36300. height: math.unit(2.13, "feet"),
  36301. name: "Tongue",
  36302. image: {
  36303. source: "./media/characters/sykes/tongue.svg"
  36304. }
  36305. },
  36306. uvula: {
  36307. height: math.unit(0.16, "feet"),
  36308. name: "Uvula",
  36309. image: {
  36310. source: "./media/characters/sykes/uvula.svg"
  36311. }
  36312. },
  36313. collar: {
  36314. height: math.unit(0.287, "feet"),
  36315. name: "Collar",
  36316. image: {
  36317. source: "./media/characters/sykes/collar.svg"
  36318. }
  36319. },
  36320. tail: {
  36321. height: math.unit(3.8, "feet"),
  36322. name: "Tail",
  36323. image: {
  36324. source: "./media/characters/sykes/tail.svg"
  36325. }
  36326. },
  36327. },
  36328. [
  36329. {
  36330. name: "Shrunken",
  36331. height: math.unit(5, "inches")
  36332. },
  36333. {
  36334. name: "Normal",
  36335. height: math.unit(6 + 4 / 12, "feet"),
  36336. default: true
  36337. },
  36338. {
  36339. name: "Big",
  36340. height: math.unit(15, "feet")
  36341. },
  36342. ]
  36343. ))
  36344. characterMakers.push(() => makeCharacter(
  36345. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  36346. {
  36347. front: {
  36348. height: math.unit(5 + 8/12, "feet"),
  36349. weight: math.unit(190, "lb"),
  36350. name: "Front",
  36351. image: {
  36352. source: "./media/characters/oven-otter/front.svg",
  36353. extra: 1809/1740,
  36354. bottom: 181/1990
  36355. }
  36356. },
  36357. back: {
  36358. height: math.unit(5 + 8/12, "feet"),
  36359. weight: math.unit(190, "lb"),
  36360. name: "Back",
  36361. image: {
  36362. source: "./media/characters/oven-otter/back.svg",
  36363. extra: 1709/1635,
  36364. bottom: 118/1827
  36365. }
  36366. },
  36367. hand: {
  36368. height: math.unit(1.07, "feet"),
  36369. name: "Hand",
  36370. image: {
  36371. source: "./media/characters/oven-otter/hand.svg"
  36372. }
  36373. },
  36374. beans: {
  36375. height: math.unit(1.74, "feet"),
  36376. name: "Beans",
  36377. image: {
  36378. source: "./media/characters/oven-otter/beans.svg"
  36379. }
  36380. },
  36381. },
  36382. [
  36383. {
  36384. name: "Micro",
  36385. height: math.unit(0.5, "inches")
  36386. },
  36387. {
  36388. name: "Normal",
  36389. height: math.unit(5 + 8/12, "feet"),
  36390. default: true
  36391. },
  36392. {
  36393. name: "Macro",
  36394. height: math.unit(250, "feet")
  36395. },
  36396. {
  36397. name: "Really High",
  36398. height: math.unit(420, "feet")
  36399. },
  36400. ]
  36401. ))
  36402. characterMakers.push(() => makeCharacter(
  36403. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  36404. {
  36405. front: {
  36406. height: math.unit(5, "meters"),
  36407. weight: math.unit(292000000000000, "kg"),
  36408. name: "Front",
  36409. image: {
  36410. source: "./media/characters/devourer/front.svg",
  36411. extra: 1800/1733,
  36412. bottom: 211/2011
  36413. }
  36414. },
  36415. maw: {
  36416. height: math.unit(1.1, "meter"),
  36417. name: "Maw",
  36418. image: {
  36419. source: "./media/characters/devourer/maw.svg"
  36420. }
  36421. },
  36422. },
  36423. [
  36424. {
  36425. name: "Small",
  36426. height: math.unit(3, "meters")
  36427. },
  36428. {
  36429. name: "Large",
  36430. height: math.unit(5, "meters"),
  36431. default: true
  36432. },
  36433. ]
  36434. ))
  36435. characterMakers.push(() => makeCharacter(
  36436. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  36437. {
  36438. front: {
  36439. height: math.unit(6, "feet"),
  36440. weight: math.unit(400, "lb"),
  36441. name: "Front",
  36442. image: {
  36443. source: "./media/characters/ellarby/front.svg",
  36444. extra: 1909/1763,
  36445. bottom: 80/1989
  36446. }
  36447. },
  36448. back: {
  36449. height: math.unit(6, "feet"),
  36450. weight: math.unit(400, "lb"),
  36451. name: "Back",
  36452. image: {
  36453. source: "./media/characters/ellarby/back.svg",
  36454. extra: 1914/1784,
  36455. bottom: 172/2086
  36456. }
  36457. },
  36458. },
  36459. [
  36460. {
  36461. name: "Mischief",
  36462. height: math.unit(18, "inches")
  36463. },
  36464. {
  36465. name: "Trouble",
  36466. height: math.unit(12, "feet")
  36467. },
  36468. {
  36469. name: "Havoc",
  36470. height: math.unit(200, "feet"),
  36471. default: true
  36472. },
  36473. {
  36474. name: "Pandemonium",
  36475. height: math.unit(1, "mile")
  36476. },
  36477. {
  36478. name: "Catastrophe",
  36479. height: math.unit(100, "miles")
  36480. },
  36481. ]
  36482. ))
  36483. characterMakers.push(() => makeCharacter(
  36484. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  36485. {
  36486. front: {
  36487. height: math.unit(4.7, "meters"),
  36488. weight: math.unit(6500, "kg"),
  36489. name: "Front",
  36490. image: {
  36491. source: "./media/characters/vex/front.svg",
  36492. extra: 1288/1140,
  36493. bottom: 100/1388
  36494. }
  36495. },
  36496. },
  36497. [
  36498. {
  36499. name: "Normal",
  36500. height: math.unit(4.7, "meters"),
  36501. default: true
  36502. },
  36503. ]
  36504. ))
  36505. characterMakers.push(() => makeCharacter(
  36506. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  36507. {
  36508. normal: {
  36509. height: math.unit(6, "feet"),
  36510. weight: math.unit(350, "lb"),
  36511. name: "Normal",
  36512. image: {
  36513. source: "./media/characters/teshy/normal.svg",
  36514. extra: 1795/1735,
  36515. bottom: 16/1811
  36516. }
  36517. },
  36518. monsterFront: {
  36519. height: math.unit(12, "feet"),
  36520. weight: math.unit(4700, "lb"),
  36521. name: "Monster (Front)",
  36522. image: {
  36523. source: "./media/characters/teshy/monster-front.svg",
  36524. extra: 2042/2034,
  36525. bottom: 128/2170
  36526. }
  36527. },
  36528. monsterSide: {
  36529. height: math.unit(12, "feet"),
  36530. weight: math.unit(4700, "lb"),
  36531. name: "Monster (Side)",
  36532. image: {
  36533. source: "./media/characters/teshy/monster-side.svg",
  36534. extra: 2067/2056,
  36535. bottom: 70/2137
  36536. }
  36537. },
  36538. monsterBack: {
  36539. height: math.unit(12, "feet"),
  36540. weight: math.unit(4700, "lb"),
  36541. name: "Monster (Back)",
  36542. image: {
  36543. source: "./media/characters/teshy/monster-back.svg",
  36544. extra: 1921/1914,
  36545. bottom: 171/2092
  36546. }
  36547. },
  36548. },
  36549. [
  36550. {
  36551. name: "Normal",
  36552. height: math.unit(6, "feet"),
  36553. default: true
  36554. },
  36555. ]
  36556. ))
  36557. characterMakers.push(() => makeCharacter(
  36558. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  36559. {
  36560. front: {
  36561. height: math.unit(6, "feet"),
  36562. name: "Front",
  36563. image: {
  36564. source: "./media/characters/ramey/front.svg",
  36565. extra: 790/787,
  36566. bottom: 27/817
  36567. }
  36568. },
  36569. },
  36570. [
  36571. {
  36572. name: "Normal",
  36573. height: math.unit(6, "feet"),
  36574. default: true
  36575. },
  36576. ]
  36577. ))
  36578. characterMakers.push(() => makeCharacter(
  36579. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  36580. {
  36581. front: {
  36582. height: math.unit(5 + 5/12, "feet"),
  36583. weight: math.unit(120, "lb"),
  36584. name: "Front",
  36585. image: {
  36586. source: "./media/characters/phirae/front.svg",
  36587. extra: 2491/2436,
  36588. bottom: 38/2529
  36589. }
  36590. },
  36591. },
  36592. [
  36593. {
  36594. name: "Normal",
  36595. height: math.unit(5 + 5/12, "feet"),
  36596. default: true
  36597. },
  36598. ]
  36599. ))
  36600. characterMakers.push(() => makeCharacter(
  36601. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  36602. {
  36603. front: {
  36604. height: math.unit(5 + 3/12, "feet"),
  36605. name: "Front",
  36606. image: {
  36607. source: "./media/characters/stagglas/front.svg",
  36608. extra: 962/882,
  36609. bottom: 53/1015
  36610. }
  36611. },
  36612. feral: {
  36613. height: math.unit(335, "cm"),
  36614. name: "Feral",
  36615. image: {
  36616. source: "./media/characters/stagglas/feral.svg",
  36617. extra: 1732/1090,
  36618. bottom: 48/1780
  36619. }
  36620. },
  36621. },
  36622. [
  36623. {
  36624. name: "Normal",
  36625. height: math.unit(5 + 3/12, "feet"),
  36626. default: true
  36627. },
  36628. ]
  36629. ))
  36630. characterMakers.push(() => makeCharacter(
  36631. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  36632. {
  36633. front: {
  36634. height: math.unit(5 + 4/12, "feet"),
  36635. weight: math.unit(145, "lb"),
  36636. name: "Front",
  36637. image: {
  36638. source: "./media/characters/starra/front.svg",
  36639. extra: 1790/1691,
  36640. bottom: 91/1881
  36641. }
  36642. },
  36643. },
  36644. [
  36645. {
  36646. name: "Normal",
  36647. height: math.unit(5 + 4/12, "feet"),
  36648. default: true
  36649. },
  36650. ]
  36651. ))
  36652. characterMakers.push(() => makeCharacter(
  36653. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  36654. {
  36655. front: {
  36656. height: math.unit(2.2, "meters"),
  36657. name: "Front",
  36658. image: {
  36659. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  36660. extra: 1248/972,
  36661. bottom: 38/1286
  36662. }
  36663. },
  36664. },
  36665. [
  36666. {
  36667. name: "Normal",
  36668. height: math.unit(2.2, "meters"),
  36669. default: true
  36670. },
  36671. ]
  36672. ))
  36673. characterMakers.push(() => makeCharacter(
  36674. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  36675. {
  36676. side: {
  36677. height: math.unit(8 + 2/12, "feet"),
  36678. weight: math.unit(1240, "lb"),
  36679. name: "Side",
  36680. image: {
  36681. source: "./media/characters/mika-valentine/side.svg",
  36682. extra: 2670/2501,
  36683. bottom: 250/2920
  36684. }
  36685. },
  36686. },
  36687. [
  36688. {
  36689. name: "Normal",
  36690. height: math.unit(8 + 2/12, "feet"),
  36691. default: true
  36692. },
  36693. ]
  36694. ))
  36695. characterMakers.push(() => makeCharacter(
  36696. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  36697. {
  36698. front: {
  36699. height: math.unit(7 + 2/12, "feet"),
  36700. name: "Front",
  36701. image: {
  36702. source: "./media/characters/xoltol/front.svg",
  36703. extra: 2212/2124,
  36704. bottom: 84/2296
  36705. }
  36706. },
  36707. side: {
  36708. height: math.unit(7 + 2/12, "feet"),
  36709. name: "Side",
  36710. image: {
  36711. source: "./media/characters/xoltol/side.svg",
  36712. extra: 2273/2197,
  36713. bottom: 26/2299
  36714. }
  36715. },
  36716. hand: {
  36717. height: math.unit(2.5, "feet"),
  36718. name: "Hand",
  36719. image: {
  36720. source: "./media/characters/xoltol/hand.svg"
  36721. }
  36722. },
  36723. },
  36724. [
  36725. {
  36726. name: "Small-ish",
  36727. height: math.unit(5 + 11/12, "feet")
  36728. },
  36729. {
  36730. name: "Normal",
  36731. height: math.unit(7 + 2/12, "feet")
  36732. },
  36733. {
  36734. name: "\"Macro\"",
  36735. height: math.unit(14 + 9/12, "feet"),
  36736. default: true
  36737. },
  36738. {
  36739. name: "Alternate Height",
  36740. height: math.unit(20, "feet")
  36741. },
  36742. {
  36743. name: "Actually Macro",
  36744. height: math.unit(100, "feet")
  36745. },
  36746. ]
  36747. ))
  36748. characterMakers.push(() => makeCharacter(
  36749. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  36750. {
  36751. front: {
  36752. height: math.unit(5 + 2/12, "feet"),
  36753. name: "Front",
  36754. image: {
  36755. source: "./media/characters/kotetsu-redwood/front.svg",
  36756. extra: 1053/942,
  36757. bottom: 60/1113
  36758. }
  36759. },
  36760. },
  36761. [
  36762. {
  36763. name: "Normal",
  36764. height: math.unit(5 + 2/12, "feet"),
  36765. default: true
  36766. },
  36767. ]
  36768. ))
  36769. characterMakers.push(() => makeCharacter(
  36770. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  36771. {
  36772. front: {
  36773. height: math.unit(2.4, "meters"),
  36774. weight: math.unit(125, "kg"),
  36775. name: "Front",
  36776. image: {
  36777. source: "./media/characters/lilith/front.svg",
  36778. extra: 1590/1513,
  36779. bottom: 203/1793
  36780. }
  36781. },
  36782. },
  36783. [
  36784. {
  36785. name: "Humanoid",
  36786. height: math.unit(2.4, "meters")
  36787. },
  36788. {
  36789. name: "Normal",
  36790. height: math.unit(6, "meters"),
  36791. default: true
  36792. },
  36793. {
  36794. name: "Largest",
  36795. height: math.unit(55, "meters")
  36796. },
  36797. ]
  36798. ))
  36799. characterMakers.push(() => makeCharacter(
  36800. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  36801. {
  36802. front: {
  36803. height: math.unit(8 + 4/12, "feet"),
  36804. weight: math.unit(535, "lb"),
  36805. name: "Front",
  36806. image: {
  36807. source: "./media/characters/beh'kah-bolger/front.svg",
  36808. extra: 1660/1603,
  36809. bottom: 37/1697
  36810. }
  36811. },
  36812. },
  36813. [
  36814. {
  36815. name: "Normal",
  36816. height: math.unit(8 + 4/12, "feet"),
  36817. default: true
  36818. },
  36819. {
  36820. name: "Kaiju",
  36821. height: math.unit(250, "feet")
  36822. },
  36823. {
  36824. name: "Still Growing",
  36825. height: math.unit(10, "miles")
  36826. },
  36827. {
  36828. name: "Continental",
  36829. height: math.unit(5000, "miles")
  36830. },
  36831. {
  36832. name: "Final Form",
  36833. height: math.unit(2500000, "miles")
  36834. },
  36835. ]
  36836. ))
  36837. characterMakers.push(() => makeCharacter(
  36838. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  36839. {
  36840. front: {
  36841. height: math.unit(7 + 2/12, "feet"),
  36842. weight: math.unit(230, "kg"),
  36843. name: "Front",
  36844. image: {
  36845. source: "./media/characters/tatyana-milewska/front.svg",
  36846. extra: 1199/1150,
  36847. bottom: 86/1285
  36848. }
  36849. },
  36850. },
  36851. [
  36852. {
  36853. name: "Normal",
  36854. height: math.unit(7 + 2/12, "feet"),
  36855. default: true
  36856. },
  36857. {
  36858. name: "Big",
  36859. height: math.unit(12, "feet")
  36860. },
  36861. {
  36862. name: "Minimacro",
  36863. height: math.unit(20, "feet")
  36864. },
  36865. {
  36866. name: "Macro",
  36867. height: math.unit(120, "feet")
  36868. },
  36869. ]
  36870. ))
  36871. characterMakers.push(() => makeCharacter(
  36872. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  36873. {
  36874. front: {
  36875. height: math.unit(7 + 8/12, "feet"),
  36876. weight: math.unit(152, "kg"),
  36877. name: "Front",
  36878. image: {
  36879. source: "./media/characters/helen-arri/front.svg",
  36880. extra: 440/423,
  36881. bottom: 14/454
  36882. }
  36883. },
  36884. back: {
  36885. height: math.unit(7 + 8/12, "feet"),
  36886. weight: math.unit(152, "kg"),
  36887. name: "Back",
  36888. image: {
  36889. source: "./media/characters/helen-arri/back.svg",
  36890. extra: 443/426,
  36891. bottom: 8/451
  36892. }
  36893. },
  36894. },
  36895. [
  36896. {
  36897. name: "Normal",
  36898. height: math.unit(7 + 8/12, "feet"),
  36899. default: true
  36900. },
  36901. {
  36902. name: "Big",
  36903. height: math.unit(14, "feet")
  36904. },
  36905. {
  36906. name: "Minimacro",
  36907. height: math.unit(24, "feet")
  36908. },
  36909. {
  36910. name: "Macro",
  36911. height: math.unit(140, "feet")
  36912. },
  36913. ]
  36914. ))
  36915. characterMakers.push(() => makeCharacter(
  36916. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  36917. {
  36918. front: {
  36919. height: math.unit(6, "meters"),
  36920. name: "Front",
  36921. image: {
  36922. source: "./media/characters/ehanu-rehu/front.svg",
  36923. extra: 1800/1800,
  36924. bottom: 59/1859
  36925. }
  36926. },
  36927. },
  36928. [
  36929. {
  36930. name: "Normal",
  36931. height: math.unit(6, "meters"),
  36932. default: true
  36933. },
  36934. ]
  36935. ))
  36936. characterMakers.push(() => makeCharacter(
  36937. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  36938. {
  36939. front: {
  36940. height: math.unit(7 + 3/12, "feet"),
  36941. name: "Front",
  36942. image: {
  36943. source: "./media/characters/renholder/front.svg",
  36944. extra: 3096/2960,
  36945. bottom: 250/3346
  36946. }
  36947. },
  36948. },
  36949. [
  36950. {
  36951. name: "Normal Bat",
  36952. height: math.unit(7 + 3/12, "feet"),
  36953. default: true
  36954. },
  36955. {
  36956. name: "Slightly Tall Bat",
  36957. height: math.unit(100, "feet")
  36958. },
  36959. {
  36960. name: "Big Bat",
  36961. height: math.unit(1000, "feet")
  36962. },
  36963. {
  36964. name: "City-Sized Bat",
  36965. height: math.unit(200000, "feet")
  36966. },
  36967. {
  36968. name: "Bigger Bat",
  36969. height: math.unit(10000, "miles")
  36970. },
  36971. {
  36972. name: "Solar Sized Bat",
  36973. height: math.unit(100, "AU")
  36974. },
  36975. {
  36976. name: "Galactic Bat",
  36977. height: math.unit(200000, "lightyears")
  36978. },
  36979. {
  36980. name: "Universally Known Bat",
  36981. height: math.unit(1, "universe")
  36982. },
  36983. ]
  36984. ))
  36985. characterMakers.push(() => makeCharacter(
  36986. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  36987. {
  36988. front: {
  36989. height: math.unit(6 + 11/12, "feet"),
  36990. weight: math.unit(250, "lb"),
  36991. name: "Front",
  36992. image: {
  36993. source: "./media/characters/cookiecat/front.svg",
  36994. extra: 893/827,
  36995. bottom: 14/907
  36996. }
  36997. },
  36998. },
  36999. [
  37000. {
  37001. name: "Micro",
  37002. height: math.unit(3, "inches")
  37003. },
  37004. {
  37005. name: "Normal",
  37006. height: math.unit(6 + 11/12, "feet"),
  37007. default: true
  37008. },
  37009. {
  37010. name: "Macro",
  37011. height: math.unit(100, "feet")
  37012. },
  37013. {
  37014. name: "Macro+",
  37015. height: math.unit(404, "feet")
  37016. },
  37017. {
  37018. name: "Megamacro",
  37019. height: math.unit(165, "miles")
  37020. },
  37021. {
  37022. name: "Planetary",
  37023. height: math.unit(4600, "miles")
  37024. },
  37025. ]
  37026. ))
  37027. characterMakers.push(() => makeCharacter(
  37028. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  37029. {
  37030. front: {
  37031. height: math.unit(10 + 3/12, "feet"),
  37032. weight: math.unit(1500, "lb"),
  37033. name: "Front",
  37034. image: {
  37035. source: "./media/characters/tux-kusanagi/front.svg",
  37036. extra: 944/840,
  37037. bottom: 39/983
  37038. }
  37039. },
  37040. back: {
  37041. height: math.unit(10 + 3/12, "feet"),
  37042. weight: math.unit(1500, "lb"),
  37043. name: "Back",
  37044. image: {
  37045. source: "./media/characters/tux-kusanagi/back.svg",
  37046. extra: 941/842,
  37047. bottom: 28/969
  37048. }
  37049. },
  37050. rump: {
  37051. height: math.unit(5.25, "feet"),
  37052. name: "Rump",
  37053. image: {
  37054. source: "./media/characters/tux-kusanagi/rump.svg"
  37055. }
  37056. },
  37057. beak: {
  37058. height: math.unit(1.54, "feet"),
  37059. name: "Beak",
  37060. image: {
  37061. source: "./media/characters/tux-kusanagi/beak.svg"
  37062. }
  37063. },
  37064. },
  37065. [
  37066. {
  37067. name: "Normal",
  37068. height: math.unit(10 + 3/12, "feet"),
  37069. default: true
  37070. },
  37071. ]
  37072. ))
  37073. characterMakers.push(() => makeCharacter(
  37074. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  37075. {
  37076. front: {
  37077. height: math.unit(58, "feet"),
  37078. weight: math.unit(200, "tons"),
  37079. name: "Front",
  37080. image: {
  37081. source: "./media/characters/uzarmazari/front.svg",
  37082. extra: 1575/1455,
  37083. bottom: 152/1727
  37084. }
  37085. },
  37086. back: {
  37087. height: math.unit(58, "feet"),
  37088. weight: math.unit(200, "tons"),
  37089. name: "Back",
  37090. image: {
  37091. source: "./media/characters/uzarmazari/back.svg",
  37092. extra: 1585/1510,
  37093. bottom: 157/1742
  37094. }
  37095. },
  37096. head: {
  37097. height: math.unit(26, "feet"),
  37098. name: "Head",
  37099. image: {
  37100. source: "./media/characters/uzarmazari/head.svg"
  37101. }
  37102. },
  37103. },
  37104. [
  37105. {
  37106. name: "Normal",
  37107. height: math.unit(58, "feet"),
  37108. default: true
  37109. },
  37110. ]
  37111. ))
  37112. characterMakers.push(() => makeCharacter(
  37113. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  37114. {
  37115. side: {
  37116. height: math.unit(15, "feet"),
  37117. name: "Side",
  37118. image: {
  37119. source: "./media/characters/akitu/side.svg",
  37120. extra: 1421/1321,
  37121. bottom: 157/1578
  37122. }
  37123. },
  37124. front: {
  37125. height: math.unit(15, "feet"),
  37126. name: "Front",
  37127. image: {
  37128. source: "./media/characters/akitu/front.svg",
  37129. extra: 1435/1326,
  37130. bottom: 232/1667
  37131. }
  37132. },
  37133. },
  37134. [
  37135. {
  37136. name: "Normal",
  37137. height: math.unit(15, "feet"),
  37138. default: true
  37139. },
  37140. ]
  37141. ))
  37142. characterMakers.push(() => makeCharacter(
  37143. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  37144. {
  37145. front: {
  37146. height: math.unit(10 + 8/12, "feet"),
  37147. name: "Front",
  37148. image: {
  37149. source: "./media/characters/azalie-croixland/front.svg",
  37150. extra: 1972/1856,
  37151. bottom: 31/2003
  37152. }
  37153. },
  37154. },
  37155. [
  37156. {
  37157. name: "Original Height",
  37158. height: math.unit(5 + 4/12, "feet")
  37159. },
  37160. {
  37161. name: "Normal Height",
  37162. height: math.unit(10 + 8/12, "feet"),
  37163. default: true
  37164. },
  37165. ]
  37166. ))
  37167. characterMakers.push(() => makeCharacter(
  37168. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  37169. {
  37170. side: {
  37171. height: math.unit(7 + 1/12, "feet"),
  37172. weight: math.unit(245, "lb"),
  37173. name: "Side",
  37174. image: {
  37175. source: "./media/characters/kavus-kazian/side.svg",
  37176. extra: 349/342,
  37177. bottom: 15/364
  37178. }
  37179. },
  37180. },
  37181. [
  37182. {
  37183. name: "Normal",
  37184. height: math.unit(7 + 1/12, "feet"),
  37185. default: true
  37186. },
  37187. ]
  37188. ))
  37189. characterMakers.push(() => makeCharacter(
  37190. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  37191. {
  37192. normalFront: {
  37193. height: math.unit(5 + 11/12, "feet"),
  37194. name: "Front",
  37195. image: {
  37196. source: "./media/characters/moonlight-rose/normal-front.svg",
  37197. extra: 1980/1825,
  37198. bottom: 18/1998
  37199. },
  37200. form: "normal",
  37201. default: true
  37202. },
  37203. normalBack: {
  37204. height: math.unit(5 + 11/12, "feet"),
  37205. name: "Back",
  37206. image: {
  37207. source: "./media/characters/moonlight-rose/normal-back.svg",
  37208. extra: 2010/1839,
  37209. bottom: 10/2020
  37210. },
  37211. form: "normal"
  37212. },
  37213. demonFront: {
  37214. height: math.unit(1.5, "earths"),
  37215. name: "Front",
  37216. image: {
  37217. source: "./media/characters/moonlight-rose/demon.svg",
  37218. extra: 1400/1294,
  37219. bottom: 45/1445
  37220. },
  37221. form: "demon",
  37222. default: true
  37223. },
  37224. terraFront: {
  37225. height: math.unit(1.5, "earths"),
  37226. name: "Front",
  37227. image: {
  37228. source: "./media/characters/moonlight-rose/terra.svg"
  37229. },
  37230. form: "terra",
  37231. default: true
  37232. },
  37233. jupiterFront: {
  37234. height: math.unit(69911*2, "km"),
  37235. name: "Front",
  37236. image: {
  37237. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  37238. extra: 1367/1286,
  37239. bottom: 55/1422
  37240. },
  37241. form: "jupiter",
  37242. default: true
  37243. },
  37244. neptuneFront: {
  37245. height: math.unit(24622*2, "feet"),
  37246. name: "Front",
  37247. image: {
  37248. source: "./media/characters/moonlight-rose/neptune-front.svg",
  37249. extra: 1851/1712,
  37250. bottom: 0/1851
  37251. },
  37252. form: "neptune",
  37253. default: true
  37254. },
  37255. },
  37256. [
  37257. {
  37258. name: "\"Natural\" Height",
  37259. height: math.unit(5 + 11/12, "feet"),
  37260. form: "normal"
  37261. },
  37262. {
  37263. name: "Smallest comfortable size",
  37264. height: math.unit(40, "meters"),
  37265. form: "normal"
  37266. },
  37267. {
  37268. name: "Common size",
  37269. height: math.unit(50, "km"),
  37270. form: "normal",
  37271. default: true
  37272. },
  37273. {
  37274. name: "Normal",
  37275. height: math.unit(1.5, "earths"),
  37276. form: "demon",
  37277. default: true
  37278. },
  37279. {
  37280. name: "Universal",
  37281. height: math.unit(15, "universes"),
  37282. form: "demon"
  37283. },
  37284. {
  37285. name: "Earth",
  37286. height: math.unit(1.5, "earths"),
  37287. form: "terra",
  37288. default: true
  37289. },
  37290. {
  37291. name: "Super Earth",
  37292. height: math.unit(67.5, "earths"),
  37293. form: "terra"
  37294. },
  37295. {
  37296. name: "Doesn't fit in a solar system...",
  37297. height: math.unit(1, "galaxy"),
  37298. form: "terra"
  37299. },
  37300. {
  37301. name: "Saturn",
  37302. height: math.unit(58232*2, "km"),
  37303. form: "jupiter"
  37304. },
  37305. {
  37306. name: "Jupiter",
  37307. height: math.unit(69911*2, "km"),
  37308. form: "jupiter",
  37309. default: true
  37310. },
  37311. {
  37312. name: "HD 100546 b",
  37313. height: math.unit(482938, "km"),
  37314. form: "jupiter"
  37315. },
  37316. {
  37317. name: "Enceladus",
  37318. height: math.unit(513*2, "km"),
  37319. form: "neptune"
  37320. },
  37321. {
  37322. name: "Europe",
  37323. height: math.unit(1560*2, "km"),
  37324. form: "neptune"
  37325. },
  37326. {
  37327. name: "Neptune",
  37328. height: math.unit(24622*2, "km"),
  37329. form: "neptune",
  37330. default: true
  37331. },
  37332. {
  37333. name: "CoRoT-9b",
  37334. height: math.unit(75067*2, "km"),
  37335. form: "neptune"
  37336. },
  37337. ],
  37338. {
  37339. "normal": {
  37340. name: "Normal",
  37341. default: true
  37342. },
  37343. "demon": {
  37344. name: "Demon"
  37345. },
  37346. "terra": {
  37347. name: "Terra"
  37348. },
  37349. "jupiter": {
  37350. name: "Jupiter"
  37351. },
  37352. "neptune": {
  37353. name: "Neptune"
  37354. }
  37355. }
  37356. ))
  37357. characterMakers.push(() => makeCharacter(
  37358. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  37359. {
  37360. front: {
  37361. height: math.unit(16, "feet"),
  37362. weight: math.unit(610, "kg"),
  37363. name: "Front",
  37364. image: {
  37365. source: "./media/characters/huckle/front.svg",
  37366. extra: 1731/1625,
  37367. bottom: 33/1764
  37368. }
  37369. },
  37370. back: {
  37371. height: math.unit(16, "feet"),
  37372. weight: math.unit(610, "kg"),
  37373. name: "Back",
  37374. image: {
  37375. source: "./media/characters/huckle/back.svg",
  37376. extra: 1738/1651,
  37377. bottom: 37/1775
  37378. }
  37379. },
  37380. laughing: {
  37381. height: math.unit(3.75, "feet"),
  37382. name: "Laughing",
  37383. image: {
  37384. source: "./media/characters/huckle/laughing.svg"
  37385. }
  37386. },
  37387. angry: {
  37388. height: math.unit(4.15, "feet"),
  37389. name: "Angry",
  37390. image: {
  37391. source: "./media/characters/huckle/angry.svg"
  37392. }
  37393. },
  37394. },
  37395. [
  37396. {
  37397. name: "Normal",
  37398. height: math.unit(16, "feet"),
  37399. default: true
  37400. },
  37401. {
  37402. name: "Mini Macro",
  37403. height: math.unit(463, "feet")
  37404. },
  37405. {
  37406. name: "Macro",
  37407. height: math.unit(1680, "meters")
  37408. },
  37409. {
  37410. name: "Mega Macro",
  37411. height: math.unit(175, "km")
  37412. },
  37413. {
  37414. name: "Terra Macro",
  37415. height: math.unit(32, "gigameters")
  37416. },
  37417. {
  37418. name: "Multiverse+",
  37419. height: math.unit(2.56e23, "yottameters")
  37420. },
  37421. ]
  37422. ))
  37423. characterMakers.push(() => makeCharacter(
  37424. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  37425. {
  37426. front: {
  37427. height: math.unit(6 + 9/12, "feet"),
  37428. weight: math.unit(280, "lb"),
  37429. name: "Front",
  37430. image: {
  37431. source: "./media/characters/candy/front.svg",
  37432. extra: 234/217,
  37433. bottom: 11/245
  37434. }
  37435. },
  37436. },
  37437. [
  37438. {
  37439. name: "Really Small",
  37440. height: math.unit(0.1, "nm")
  37441. },
  37442. {
  37443. name: "Micro",
  37444. height: math.unit(2, "inches")
  37445. },
  37446. {
  37447. name: "Normal",
  37448. height: math.unit(6 + 9/12, "feet"),
  37449. default: true
  37450. },
  37451. {
  37452. name: "Small Macro",
  37453. height: math.unit(69, "feet")
  37454. },
  37455. {
  37456. name: "Macro",
  37457. height: math.unit(160, "feet")
  37458. },
  37459. {
  37460. name: "Megamacro",
  37461. height: math.unit(22000, "miles")
  37462. },
  37463. {
  37464. name: "Gigamacro",
  37465. height: math.unit(50000, "miles")
  37466. },
  37467. ]
  37468. ))
  37469. characterMakers.push(() => makeCharacter(
  37470. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  37471. {
  37472. front: {
  37473. height: math.unit(4, "feet"),
  37474. weight: math.unit(90, "lb"),
  37475. name: "Front",
  37476. image: {
  37477. source: "./media/characters/joey-mcdonald/front.svg",
  37478. extra: 1059/852,
  37479. bottom: 33/1092
  37480. }
  37481. },
  37482. back: {
  37483. height: math.unit(4, "feet"),
  37484. weight: math.unit(90, "lb"),
  37485. name: "Back",
  37486. image: {
  37487. source: "./media/characters/joey-mcdonald/back.svg",
  37488. extra: 1077/879,
  37489. bottom: 5/1082
  37490. }
  37491. },
  37492. frontKobold: {
  37493. height: math.unit(4, "feet"),
  37494. weight: math.unit(100, "lb"),
  37495. name: "Front-kobold",
  37496. image: {
  37497. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  37498. extra: 1480/1367,
  37499. bottom: 0/1480
  37500. }
  37501. },
  37502. backKobold: {
  37503. height: math.unit(4, "feet"),
  37504. weight: math.unit(100, "lb"),
  37505. name: "Back-kobold",
  37506. image: {
  37507. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  37508. extra: 1449/1361,
  37509. bottom: 0/1449
  37510. }
  37511. },
  37512. },
  37513. [
  37514. {
  37515. name: "Normal",
  37516. height: math.unit(4, "feet"),
  37517. default: true
  37518. },
  37519. ]
  37520. ))
  37521. characterMakers.push(() => makeCharacter(
  37522. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  37523. {
  37524. front: {
  37525. height: math.unit(12 + 6/12, "feet"),
  37526. name: "Front",
  37527. image: {
  37528. source: "./media/characters/kass-lockheed/front.svg",
  37529. extra: 354/343,
  37530. bottom: 9/363
  37531. }
  37532. },
  37533. back: {
  37534. height: math.unit(12 + 6/12, "feet"),
  37535. name: "Back",
  37536. image: {
  37537. source: "./media/characters/kass-lockheed/back.svg",
  37538. extra: 364/352,
  37539. bottom: 3/367
  37540. }
  37541. },
  37542. dick: {
  37543. height: math.unit(3.12, "feet"),
  37544. name: "Dick",
  37545. image: {
  37546. source: "./media/characters/kass-lockheed/dick.svg"
  37547. }
  37548. },
  37549. head: {
  37550. height: math.unit(2.6, "feet"),
  37551. name: "Head",
  37552. image: {
  37553. source: "./media/characters/kass-lockheed/head.svg"
  37554. }
  37555. },
  37556. bleh: {
  37557. height: math.unit(2.85, "feet"),
  37558. name: "Bleh",
  37559. image: {
  37560. source: "./media/characters/kass-lockheed/bleh.svg"
  37561. }
  37562. },
  37563. smug: {
  37564. height: math.unit(2.85, "feet"),
  37565. name: "Smug",
  37566. image: {
  37567. source: "./media/characters/kass-lockheed/smug.svg"
  37568. }
  37569. },
  37570. },
  37571. [
  37572. {
  37573. name: "Normal",
  37574. height: math.unit(12 + 6/12, "feet"),
  37575. default: true
  37576. },
  37577. ]
  37578. ))
  37579. characterMakers.push(() => makeCharacter(
  37580. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  37581. {
  37582. front: {
  37583. height: math.unit(6 + 2/12, "feet"),
  37584. name: "Front",
  37585. image: {
  37586. source: "./media/characters/taylor/front.svg",
  37587. extra: 639/495,
  37588. bottom: 12/651
  37589. }
  37590. },
  37591. },
  37592. [
  37593. {
  37594. name: "Normal",
  37595. height: math.unit(6 + 2/12, "feet"),
  37596. default: true
  37597. },
  37598. {
  37599. name: "Big",
  37600. height: math.unit(15, "feet")
  37601. },
  37602. {
  37603. name: "Lorg",
  37604. height: math.unit(80, "feet")
  37605. },
  37606. {
  37607. name: "Too Lorg",
  37608. height: math.unit(120, "feet")
  37609. },
  37610. ]
  37611. ))
  37612. characterMakers.push(() => makeCharacter(
  37613. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  37614. {
  37615. front: {
  37616. height: math.unit(15, "feet"),
  37617. name: "Front",
  37618. image: {
  37619. source: "./media/characters/kaizer/front.svg",
  37620. extra: 1612/1436,
  37621. bottom: 43/1655
  37622. }
  37623. },
  37624. },
  37625. [
  37626. {
  37627. name: "Normal",
  37628. height: math.unit(15, "feet"),
  37629. default: true
  37630. },
  37631. ]
  37632. ))
  37633. characterMakers.push(() => makeCharacter(
  37634. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  37635. {
  37636. front: {
  37637. height: math.unit(2, "feet"),
  37638. weight: math.unit(30, "lb"),
  37639. name: "Front",
  37640. image: {
  37641. source: "./media/characters/sandy/front.svg",
  37642. extra: 1439/1307,
  37643. bottom: 194/1633
  37644. }
  37645. },
  37646. },
  37647. [
  37648. {
  37649. name: "Normal",
  37650. height: math.unit(2, "feet"),
  37651. default: true
  37652. },
  37653. ]
  37654. ))
  37655. characterMakers.push(() => makeCharacter(
  37656. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  37657. {
  37658. front: {
  37659. height: math.unit(3, "feet"),
  37660. name: "Front",
  37661. image: {
  37662. source: "./media/characters/mellvi/front.svg",
  37663. extra: 1831/1630,
  37664. bottom: 58/1889
  37665. }
  37666. },
  37667. },
  37668. [
  37669. {
  37670. name: "Normal",
  37671. height: math.unit(3, "feet"),
  37672. default: true
  37673. },
  37674. ]
  37675. ))
  37676. characterMakers.push(() => makeCharacter(
  37677. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  37678. {
  37679. front: {
  37680. height: math.unit(5 + 11/12, "feet"),
  37681. weight: math.unit(200, "lb"),
  37682. name: "Front",
  37683. image: {
  37684. source: "./media/characters/shirou/front.svg",
  37685. extra: 2491/2383,
  37686. bottom: 189/2680
  37687. }
  37688. },
  37689. back: {
  37690. height: math.unit(5 + 11/12, "feet"),
  37691. weight: math.unit(200, "lb"),
  37692. name: "Back",
  37693. image: {
  37694. source: "./media/characters/shirou/back.svg",
  37695. extra: 2554/2450,
  37696. bottom: 76/2630
  37697. }
  37698. },
  37699. },
  37700. [
  37701. {
  37702. name: "Normal",
  37703. height: math.unit(5 + 11/12, "feet"),
  37704. default: true
  37705. },
  37706. ]
  37707. ))
  37708. characterMakers.push(() => makeCharacter(
  37709. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  37710. {
  37711. front: {
  37712. height: math.unit(6 + 3/12, "feet"),
  37713. weight: math.unit(177, "lb"),
  37714. name: "Front",
  37715. image: {
  37716. source: "./media/characters/noryu/front.svg",
  37717. extra: 973/885,
  37718. bottom: 10/983
  37719. }
  37720. },
  37721. },
  37722. [
  37723. {
  37724. name: "Normal",
  37725. height: math.unit(6 + 3/12, "feet"),
  37726. default: true
  37727. },
  37728. ]
  37729. ))
  37730. characterMakers.push(() => makeCharacter(
  37731. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  37732. {
  37733. front: {
  37734. height: math.unit(5 + 6/12, "feet"),
  37735. weight: math.unit(170, "lb"),
  37736. name: "Front",
  37737. image: {
  37738. source: "./media/characters/mevolas-rubenido/front.svg",
  37739. extra: 2109/1901,
  37740. bottom: 96/2205
  37741. }
  37742. },
  37743. },
  37744. [
  37745. {
  37746. name: "Normal",
  37747. height: math.unit(5 + 6/12, "feet"),
  37748. default: true
  37749. },
  37750. ]
  37751. ))
  37752. characterMakers.push(() => makeCharacter(
  37753. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  37754. {
  37755. front: {
  37756. height: math.unit(100, "feet"),
  37757. name: "Front",
  37758. image: {
  37759. source: "./media/characters/dee/front.svg",
  37760. extra: 2153/2036,
  37761. bottom: 59/2212
  37762. }
  37763. },
  37764. back: {
  37765. height: math.unit(100, "feet"),
  37766. name: "Back",
  37767. image: {
  37768. source: "./media/characters/dee/back.svg",
  37769. extra: 2183/2058,
  37770. bottom: 75/2258
  37771. }
  37772. },
  37773. foot: {
  37774. height: math.unit(19.43, "feet"),
  37775. name: "Foot",
  37776. image: {
  37777. source: "./media/characters/dee/foot.svg"
  37778. }
  37779. },
  37780. hoof: {
  37781. height: math.unit(20.6, "feet"),
  37782. name: "Hoof",
  37783. image: {
  37784. source: "./media/characters/dee/hoof.svg"
  37785. }
  37786. },
  37787. },
  37788. [
  37789. {
  37790. name: "Macro",
  37791. height: math.unit(100, "feet"),
  37792. default: true
  37793. },
  37794. ]
  37795. ))
  37796. characterMakers.push(() => makeCharacter(
  37797. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  37798. {
  37799. front: {
  37800. height: math.unit(5 + 6/12, "feet"),
  37801. name: "Front",
  37802. image: {
  37803. source: "./media/characters/teh/front.svg",
  37804. extra: 1002/847,
  37805. bottom: 62/1064
  37806. }
  37807. },
  37808. },
  37809. [
  37810. {
  37811. name: "Normal",
  37812. height: math.unit(5 + 6/12, "feet"),
  37813. default: true
  37814. },
  37815. ]
  37816. ))
  37817. characterMakers.push(() => makeCharacter(
  37818. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  37819. {
  37820. side: {
  37821. height: math.unit(6 + 1/12, "feet"),
  37822. weight: math.unit(204, "lb"),
  37823. name: "Side",
  37824. image: {
  37825. source: "./media/characters/quicksilver-ayukoti/side.svg",
  37826. extra: 974/775,
  37827. bottom: 169/1143
  37828. }
  37829. },
  37830. sitting: {
  37831. height: math.unit(6 + 2/12, "feet"),
  37832. weight: math.unit(204, "lb"),
  37833. name: "Sitting",
  37834. image: {
  37835. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  37836. extra: 1175/964,
  37837. bottom: 378/1553
  37838. }
  37839. },
  37840. },
  37841. [
  37842. {
  37843. name: "Normal",
  37844. height: math.unit(6 + 1/12, "feet"),
  37845. default: true
  37846. },
  37847. ]
  37848. ))
  37849. characterMakers.push(() => makeCharacter(
  37850. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  37851. {
  37852. front: {
  37853. height: math.unit(6, "inches"),
  37854. name: "Front",
  37855. image: {
  37856. source: "./media/characters/tululi/front.svg",
  37857. extra: 1997/1876,
  37858. bottom: 20/2017
  37859. }
  37860. },
  37861. },
  37862. [
  37863. {
  37864. name: "Normal",
  37865. height: math.unit(6, "inches"),
  37866. default: true
  37867. },
  37868. ]
  37869. ))
  37870. characterMakers.push(() => makeCharacter(
  37871. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  37872. {
  37873. front: {
  37874. height: math.unit(4 + 1/12, "feet"),
  37875. name: "Front",
  37876. image: {
  37877. source: "./media/characters/star/front.svg",
  37878. extra: 1493/1189,
  37879. bottom: 48/1541
  37880. }
  37881. },
  37882. },
  37883. [
  37884. {
  37885. name: "Normal",
  37886. height: math.unit(4 + 1/12, "feet"),
  37887. default: true
  37888. },
  37889. ]
  37890. ))
  37891. characterMakers.push(() => makeCharacter(
  37892. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  37893. {
  37894. front: {
  37895. height: math.unit(6 + 3/12, "feet"),
  37896. name: "Front",
  37897. image: {
  37898. source: "./media/characters/comet/front.svg",
  37899. extra: 1681/1462,
  37900. bottom: 26/1707
  37901. }
  37902. },
  37903. },
  37904. [
  37905. {
  37906. name: "Normal",
  37907. height: math.unit(6 + 3/12, "feet"),
  37908. default: true
  37909. },
  37910. ]
  37911. ))
  37912. characterMakers.push(() => makeCharacter(
  37913. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  37914. {
  37915. front: {
  37916. height: math.unit(950, "feet"),
  37917. name: "Front",
  37918. image: {
  37919. source: "./media/characters/vortex/front.svg",
  37920. extra: 1497/1434,
  37921. bottom: 56/1553
  37922. }
  37923. },
  37924. maw: {
  37925. height: math.unit(285, "feet"),
  37926. name: "Maw",
  37927. image: {
  37928. source: "./media/characters/vortex/maw.svg"
  37929. }
  37930. },
  37931. },
  37932. [
  37933. {
  37934. name: "Macro",
  37935. height: math.unit(950, "feet"),
  37936. default: true
  37937. },
  37938. ]
  37939. ))
  37940. characterMakers.push(() => makeCharacter(
  37941. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  37942. {
  37943. front: {
  37944. height: math.unit(600, "feet"),
  37945. weight: math.unit(0.02, "grams"),
  37946. name: "Front",
  37947. image: {
  37948. source: "./media/characters/doodle/front.svg",
  37949. extra: 1578/1413,
  37950. bottom: 37/1615
  37951. }
  37952. },
  37953. },
  37954. [
  37955. {
  37956. name: "Macro",
  37957. height: math.unit(600, "feet"),
  37958. default: true
  37959. },
  37960. ]
  37961. ))
  37962. characterMakers.push(() => makeCharacter(
  37963. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  37964. {
  37965. front: {
  37966. height: math.unit(6 + 6/12, "feet"),
  37967. name: "Front",
  37968. image: {
  37969. source: "./media/characters/jai/front.svg",
  37970. extra: 1645/1534,
  37971. bottom: 115/1760
  37972. }
  37973. },
  37974. },
  37975. [
  37976. {
  37977. name: "Normal",
  37978. height: math.unit(6 + 6/12, "feet"),
  37979. default: true
  37980. },
  37981. ]
  37982. ))
  37983. characterMakers.push(() => makeCharacter(
  37984. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  37985. {
  37986. front: {
  37987. height: math.unit(6 + 8/12, "feet"),
  37988. name: "Front",
  37989. image: {
  37990. source: "./media/characters/pixel/front.svg",
  37991. extra: 1900/1735,
  37992. bottom: 63/1963
  37993. }
  37994. },
  37995. },
  37996. [
  37997. {
  37998. name: "Normal",
  37999. height: math.unit(6 + 8/12, "feet"),
  38000. default: true
  38001. },
  38002. ]
  38003. ))
  38004. characterMakers.push(() => makeCharacter(
  38005. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  38006. {
  38007. back: {
  38008. height: math.unit(4 + 1/12, "feet"),
  38009. weight: math.unit(75, "lb"),
  38010. name: "Back",
  38011. image: {
  38012. source: "./media/characters/rhett/back.svg",
  38013. extra: 930/878,
  38014. bottom: 25/955
  38015. }
  38016. },
  38017. front: {
  38018. height: math.unit(4 + 1/12, "feet"),
  38019. weight: math.unit(75, "lb"),
  38020. name: "Front",
  38021. image: {
  38022. source: "./media/characters/rhett/front.svg",
  38023. extra: 1682/1586,
  38024. bottom: 92/1774
  38025. }
  38026. },
  38027. },
  38028. [
  38029. {
  38030. name: "Micro",
  38031. height: math.unit(8, "inches")
  38032. },
  38033. {
  38034. name: "Tiny",
  38035. height: math.unit(2, "feet")
  38036. },
  38037. {
  38038. name: "Normal",
  38039. height: math.unit(4 + 1/12, "feet"),
  38040. default: true
  38041. },
  38042. ]
  38043. ))
  38044. characterMakers.push(() => makeCharacter(
  38045. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  38046. {
  38047. front: {
  38048. height: math.unit(3 + 3/12, "feet"),
  38049. name: "Front",
  38050. image: {
  38051. source: "./media/characters/penny/front.svg",
  38052. extra: 1406/1311,
  38053. bottom: 26/1432
  38054. }
  38055. },
  38056. },
  38057. [
  38058. {
  38059. name: "Normal",
  38060. height: math.unit(3 + 3/12, "feet"),
  38061. default: true
  38062. },
  38063. ]
  38064. ))
  38065. characterMakers.push(() => makeCharacter(
  38066. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  38067. {
  38068. front: {
  38069. height: math.unit(4 + 11/12, "feet"),
  38070. name: "Front",
  38071. image: {
  38072. source: "./media/characters/monty/front.svg",
  38073. extra: 1479/1209,
  38074. bottom: 0/1479
  38075. }
  38076. },
  38077. },
  38078. [
  38079. {
  38080. name: "Normal",
  38081. height: math.unit(4 + 11/12, "feet"),
  38082. default: true
  38083. },
  38084. ]
  38085. ))
  38086. characterMakers.push(() => makeCharacter(
  38087. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  38088. {
  38089. front: {
  38090. height: math.unit(8 + 4/12, "feet"),
  38091. name: "Front",
  38092. image: {
  38093. source: "./media/characters/sterling/front.svg",
  38094. extra: 1420/1236,
  38095. bottom: 27/1447
  38096. }
  38097. },
  38098. },
  38099. [
  38100. {
  38101. name: "Normal",
  38102. height: math.unit(8 + 4/12, "feet"),
  38103. default: true
  38104. },
  38105. ]
  38106. ))
  38107. characterMakers.push(() => makeCharacter(
  38108. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  38109. {
  38110. front: {
  38111. height: math.unit(15, "feet"),
  38112. name: "Front",
  38113. image: {
  38114. source: "./media/characters/marble/front.svg",
  38115. extra: 973/937,
  38116. bottom: 32/1005
  38117. }
  38118. },
  38119. },
  38120. [
  38121. {
  38122. name: "Normal",
  38123. height: math.unit(15, "feet"),
  38124. default: true
  38125. },
  38126. ]
  38127. ))
  38128. characterMakers.push(() => makeCharacter(
  38129. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  38130. {
  38131. front: {
  38132. height: math.unit(3, "inches"),
  38133. name: "Front",
  38134. image: {
  38135. source: "./media/characters/powder/front.svg",
  38136. extra: 1504/1334,
  38137. bottom: 518/2022
  38138. }
  38139. },
  38140. },
  38141. [
  38142. {
  38143. name: "Normal",
  38144. height: math.unit(3, "inches"),
  38145. default: true
  38146. },
  38147. ]
  38148. ))
  38149. characterMakers.push(() => makeCharacter(
  38150. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  38151. {
  38152. front: {
  38153. height: math.unit(4 + 5/12, "feet"),
  38154. name: "Front",
  38155. image: {
  38156. source: "./media/characters/joey-raccoon/front.svg",
  38157. extra: 1273/1197,
  38158. bottom: 0/1273
  38159. }
  38160. },
  38161. },
  38162. [
  38163. {
  38164. name: "Normal",
  38165. height: math.unit(4 + 5/12, "feet"),
  38166. default: true
  38167. },
  38168. ]
  38169. ))
  38170. characterMakers.push(() => makeCharacter(
  38171. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  38172. {
  38173. front: {
  38174. height: math.unit(8 + 4/12, "feet"),
  38175. name: "Front",
  38176. image: {
  38177. source: "./media/characters/vick/front.svg",
  38178. extra: 2187/2118,
  38179. bottom: 47/2234
  38180. }
  38181. },
  38182. },
  38183. [
  38184. {
  38185. name: "Normal",
  38186. height: math.unit(8 + 4/12, "feet"),
  38187. default: true
  38188. },
  38189. ]
  38190. ))
  38191. characterMakers.push(() => makeCharacter(
  38192. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  38193. {
  38194. front: {
  38195. height: math.unit(5 + 5/12, "feet"),
  38196. name: "Front",
  38197. image: {
  38198. source: "./media/characters/mitsy/front.svg",
  38199. extra: 1842/1695,
  38200. bottom: 0/1842
  38201. }
  38202. },
  38203. },
  38204. [
  38205. {
  38206. name: "Normal",
  38207. height: math.unit(5 + 5/12, "feet"),
  38208. default: true
  38209. },
  38210. ]
  38211. ))
  38212. characterMakers.push(() => makeCharacter(
  38213. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  38214. {
  38215. front: {
  38216. height: math.unit(6 + 3/12, "feet"),
  38217. name: "Front",
  38218. image: {
  38219. source: "./media/characters/silvy/front.svg",
  38220. extra: 1995/1836,
  38221. bottom: 225/2220
  38222. }
  38223. },
  38224. },
  38225. [
  38226. {
  38227. name: "Normal",
  38228. height: math.unit(6 + 3/12, "feet"),
  38229. default: true
  38230. },
  38231. ]
  38232. ))
  38233. characterMakers.push(() => makeCharacter(
  38234. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  38235. {
  38236. front: {
  38237. height: math.unit(3 + 8/12, "feet"),
  38238. name: "Front",
  38239. image: {
  38240. source: "./media/characters/rodney/front.svg",
  38241. extra: 1956/1747,
  38242. bottom: 31/1987
  38243. }
  38244. },
  38245. frontDressed: {
  38246. height: math.unit(2.9, "feet"),
  38247. name: "Front (Dressed)",
  38248. image: {
  38249. source: "./media/characters/rodney/front-dressed.svg",
  38250. extra: 1382/1241,
  38251. bottom: 385/1767
  38252. }
  38253. },
  38254. },
  38255. [
  38256. {
  38257. name: "Normal",
  38258. height: math.unit(3 + 8/12, "feet"),
  38259. default: true
  38260. },
  38261. ]
  38262. ))
  38263. characterMakers.push(() => makeCharacter(
  38264. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  38265. {
  38266. front: {
  38267. height: math.unit(5 + 9/12, "feet"),
  38268. weight: math.unit(194, "lbs"),
  38269. name: "Front",
  38270. image: {
  38271. source: "./media/characters/zakail-sudekai/front.svg",
  38272. extra: 2696/2533,
  38273. bottom: 248/2944
  38274. }
  38275. },
  38276. maw: {
  38277. height: math.unit(1.35, "feet"),
  38278. name: "Maw",
  38279. image: {
  38280. source: "./media/characters/zakail-sudekai/maw.svg"
  38281. }
  38282. },
  38283. },
  38284. [
  38285. {
  38286. name: "Normal",
  38287. height: math.unit(5 + 9/12, "feet"),
  38288. default: true
  38289. },
  38290. ]
  38291. ))
  38292. characterMakers.push(() => makeCharacter(
  38293. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  38294. {
  38295. front: {
  38296. height: math.unit(8 + 4/12, "feet"),
  38297. weight: math.unit(1200, "lb"),
  38298. name: "Front",
  38299. image: {
  38300. source: "./media/characters/eleanor/front.svg",
  38301. extra: 1226/1192,
  38302. bottom: 52/1278
  38303. }
  38304. },
  38305. back: {
  38306. height: math.unit(8 + 4/12, "feet"),
  38307. weight: math.unit(1200, "lb"),
  38308. name: "Back",
  38309. image: {
  38310. source: "./media/characters/eleanor/back.svg",
  38311. extra: 1242/1184,
  38312. bottom: 60/1302
  38313. }
  38314. },
  38315. head: {
  38316. height: math.unit(2.62, "feet"),
  38317. name: "Head",
  38318. image: {
  38319. source: "./media/characters/eleanor/head.svg"
  38320. }
  38321. },
  38322. },
  38323. [
  38324. {
  38325. name: "Normal",
  38326. height: math.unit(8 + 4/12, "feet"),
  38327. default: true
  38328. },
  38329. ]
  38330. ))
  38331. characterMakers.push(() => makeCharacter(
  38332. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  38333. {
  38334. front: {
  38335. height: math.unit(8 + 4/12, "feet"),
  38336. weight: math.unit(750, "lb"),
  38337. name: "Front",
  38338. image: {
  38339. source: "./media/characters/tanya/front.svg",
  38340. extra: 1749/1615,
  38341. bottom: 33/1782
  38342. }
  38343. },
  38344. },
  38345. [
  38346. {
  38347. name: "Normal",
  38348. height: math.unit(8 + 4/12, "feet"),
  38349. default: true
  38350. },
  38351. ]
  38352. ))
  38353. characterMakers.push(() => makeCharacter(
  38354. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  38355. {
  38356. front: {
  38357. height: math.unit(5, "feet"),
  38358. weight: math.unit(225, "lb"),
  38359. name: "Front",
  38360. image: {
  38361. source: "./media/characters/cindy/front.svg",
  38362. extra: 1320/1250,
  38363. bottom: 42/1362
  38364. }
  38365. },
  38366. frontDressed: {
  38367. height: math.unit(5, "feet"),
  38368. weight: math.unit(225, "lb"),
  38369. name: "Front (Dressed)",
  38370. image: {
  38371. source: "./media/characters/cindy/front-dressed.svg",
  38372. extra: 1320/1250,
  38373. bottom: 42/1362
  38374. }
  38375. },
  38376. back: {
  38377. height: math.unit(5, "feet"),
  38378. weight: math.unit(225, "lb"),
  38379. name: "Back",
  38380. image: {
  38381. source: "./media/characters/cindy/back.svg",
  38382. extra: 1384/1346,
  38383. bottom: 14/1398
  38384. }
  38385. },
  38386. },
  38387. [
  38388. {
  38389. name: "Normal",
  38390. height: math.unit(5, "feet"),
  38391. default: true
  38392. },
  38393. ]
  38394. ))
  38395. characterMakers.push(() => makeCharacter(
  38396. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  38397. {
  38398. front: {
  38399. height: math.unit(6 + 9/12, "feet"),
  38400. weight: math.unit(440, "lb"),
  38401. name: "Front",
  38402. image: {
  38403. source: "./media/characters/wilbur-owen/front.svg",
  38404. extra: 1575/1448,
  38405. bottom: 72/1647
  38406. }
  38407. },
  38408. back: {
  38409. height: math.unit(6 + 9/12, "feet"),
  38410. weight: math.unit(440, "lb"),
  38411. name: "Back",
  38412. image: {
  38413. source: "./media/characters/wilbur-owen/back.svg",
  38414. extra: 1578/1445,
  38415. bottom: 36/1614
  38416. }
  38417. },
  38418. },
  38419. [
  38420. {
  38421. name: "Normal",
  38422. height: math.unit(6 + 9/12, "feet"),
  38423. default: true
  38424. },
  38425. ]
  38426. ))
  38427. characterMakers.push(() => makeCharacter(
  38428. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  38429. {
  38430. front: {
  38431. height: math.unit(6 + 5/12, "feet"),
  38432. weight: math.unit(650, "lb"),
  38433. name: "Front",
  38434. image: {
  38435. source: "./media/characters/keegan/front.svg",
  38436. extra: 2387/2198,
  38437. bottom: 33/2420
  38438. }
  38439. },
  38440. side: {
  38441. height: math.unit(6 + 5/12, "feet"),
  38442. weight: math.unit(650, "lb"),
  38443. name: "Side",
  38444. image: {
  38445. source: "./media/characters/keegan/side.svg",
  38446. extra: 2390/2202,
  38447. bottom: 47/2437
  38448. }
  38449. },
  38450. back: {
  38451. height: math.unit(6 + 5/12, "feet"),
  38452. weight: math.unit(650, "lb"),
  38453. name: "Back",
  38454. image: {
  38455. source: "./media/characters/keegan/back.svg",
  38456. extra: 2418/2268,
  38457. bottom: 15/2433
  38458. }
  38459. },
  38460. frontSfw: {
  38461. height: math.unit(6 + 5/12, "feet"),
  38462. weight: math.unit(650, "lb"),
  38463. name: "Front (SFW)",
  38464. image: {
  38465. source: "./media/characters/keegan/front-sfw.svg",
  38466. extra: 2387/2198,
  38467. bottom: 33/2420
  38468. }
  38469. },
  38470. beans: {
  38471. height: math.unit(1.85, "feet"),
  38472. name: "Beans",
  38473. image: {
  38474. source: "./media/characters/keegan/beans.svg"
  38475. }
  38476. },
  38477. },
  38478. [
  38479. {
  38480. name: "Normal",
  38481. height: math.unit(6 + 5/12, "feet"),
  38482. default: true
  38483. },
  38484. ]
  38485. ))
  38486. characterMakers.push(() => makeCharacter(
  38487. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  38488. {
  38489. front: {
  38490. height: math.unit(9, "feet"),
  38491. name: "Front",
  38492. image: {
  38493. source: "./media/characters/colton/front.svg",
  38494. extra: 1589/1326,
  38495. bottom: 139/1728
  38496. }
  38497. },
  38498. },
  38499. [
  38500. {
  38501. name: "Normal",
  38502. height: math.unit(9, "feet"),
  38503. default: true
  38504. },
  38505. ]
  38506. ))
  38507. characterMakers.push(() => makeCharacter(
  38508. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  38509. {
  38510. front: {
  38511. height: math.unit(2 + 9/12, "feet"),
  38512. name: "Front",
  38513. image: {
  38514. source: "./media/characters/bora/front.svg",
  38515. extra: 1265/1250,
  38516. bottom: 24/1289
  38517. }
  38518. },
  38519. },
  38520. [
  38521. {
  38522. name: "Normal",
  38523. height: math.unit(2 + 9/12, "feet"),
  38524. default: true
  38525. },
  38526. ]
  38527. ))
  38528. characterMakers.push(() => makeCharacter(
  38529. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  38530. {
  38531. front: {
  38532. height: math.unit(8, "feet"),
  38533. name: "Front",
  38534. image: {
  38535. source: "./media/characters/myu-myu/front.svg",
  38536. extra: 1949/1857,
  38537. bottom: 90/2039
  38538. }
  38539. },
  38540. },
  38541. [
  38542. {
  38543. name: "Normal",
  38544. height: math.unit(8, "feet"),
  38545. default: true
  38546. },
  38547. {
  38548. name: "Big",
  38549. height: math.unit(15, "feet")
  38550. },
  38551. {
  38552. name: "BIG",
  38553. height: math.unit(25, "feet")
  38554. },
  38555. ]
  38556. ))
  38557. characterMakers.push(() => makeCharacter(
  38558. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  38559. {
  38560. side: {
  38561. height: math.unit(7 + 5/12, "feet"),
  38562. weight: math.unit(2800, "lb"),
  38563. name: "Side",
  38564. image: {
  38565. source: "./media/characters/haloren/side.svg",
  38566. extra: 1793/409,
  38567. bottom: 59/1852
  38568. }
  38569. },
  38570. frontPaw: {
  38571. height: math.unit(2.36, "feet"),
  38572. name: "Front paw",
  38573. image: {
  38574. source: "./media/characters/haloren/front-paw.svg"
  38575. }
  38576. },
  38577. hindPaw: {
  38578. height: math.unit(3.18, "feet"),
  38579. name: "Hind paw",
  38580. image: {
  38581. source: "./media/characters/haloren/hind-paw.svg"
  38582. }
  38583. },
  38584. maw: {
  38585. height: math.unit(5.05, "feet"),
  38586. name: "Maw",
  38587. image: {
  38588. source: "./media/characters/haloren/maw.svg"
  38589. }
  38590. },
  38591. dick: {
  38592. height: math.unit(2.90, "feet"),
  38593. name: "Dick",
  38594. image: {
  38595. source: "./media/characters/haloren/dick.svg"
  38596. }
  38597. },
  38598. },
  38599. [
  38600. {
  38601. name: "Normal",
  38602. height: math.unit(7 + 5/12, "feet"),
  38603. default: true
  38604. },
  38605. {
  38606. name: "Enhanced",
  38607. height: math.unit(14 + 3/12, "feet")
  38608. },
  38609. ]
  38610. ))
  38611. characterMakers.push(() => makeCharacter(
  38612. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  38613. {
  38614. front: {
  38615. height: math.unit(171, "cm"),
  38616. name: "Front",
  38617. image: {
  38618. source: "./media/characters/kimmy/front.svg",
  38619. extra: 1491/1435,
  38620. bottom: 53/1544
  38621. }
  38622. },
  38623. },
  38624. [
  38625. {
  38626. name: "Small",
  38627. height: math.unit(9, "cm")
  38628. },
  38629. {
  38630. name: "Normal",
  38631. height: math.unit(171, "cm"),
  38632. default: true
  38633. },
  38634. ]
  38635. ))
  38636. characterMakers.push(() => makeCharacter(
  38637. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  38638. {
  38639. front: {
  38640. height: math.unit(8, "feet"),
  38641. weight: math.unit(300, "lb"),
  38642. name: "Front",
  38643. image: {
  38644. source: "./media/characters/galeboomer/front.svg",
  38645. extra: 4651/4415,
  38646. bottom: 162/4813
  38647. }
  38648. },
  38649. back: {
  38650. height: math.unit(8, "feet"),
  38651. weight: math.unit(300, "lb"),
  38652. name: "Back",
  38653. image: {
  38654. source: "./media/characters/galeboomer/back.svg",
  38655. extra: 4544/4314,
  38656. bottom: 16/4560
  38657. }
  38658. },
  38659. frontAlt: {
  38660. height: math.unit(8, "feet"),
  38661. weight: math.unit(300, "lb"),
  38662. name: "Front (Alt)",
  38663. image: {
  38664. source: "./media/characters/galeboomer/front-alt.svg",
  38665. extra: 4458/4228,
  38666. bottom: 68/4526
  38667. }
  38668. },
  38669. maw: {
  38670. height: math.unit(1.2, "feet"),
  38671. name: "Maw",
  38672. image: {
  38673. source: "./media/characters/galeboomer/maw.svg"
  38674. }
  38675. },
  38676. },
  38677. [
  38678. {
  38679. name: "Normal",
  38680. height: math.unit(8, "feet"),
  38681. default: true
  38682. },
  38683. ]
  38684. ))
  38685. characterMakers.push(() => makeCharacter(
  38686. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  38687. {
  38688. front: {
  38689. height: math.unit(5 + 9/12, "feet"),
  38690. weight: math.unit(120, "lb"),
  38691. name: "Front",
  38692. image: {
  38693. source: "./media/characters/chyr/front.svg",
  38694. extra: 1323/1254,
  38695. bottom: 63/1386
  38696. }
  38697. },
  38698. back: {
  38699. height: math.unit(5 + 9/12, "feet"),
  38700. weight: math.unit(120, "lb"),
  38701. name: "Back",
  38702. image: {
  38703. source: "./media/characters/chyr/back.svg",
  38704. extra: 1323/1252,
  38705. bottom: 48/1371
  38706. }
  38707. },
  38708. },
  38709. [
  38710. {
  38711. name: "Normal",
  38712. height: math.unit(5 + 9/12, "feet"),
  38713. default: true
  38714. },
  38715. ]
  38716. ))
  38717. characterMakers.push(() => makeCharacter(
  38718. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  38719. {
  38720. front: {
  38721. height: math.unit(7, "feet"),
  38722. weight: math.unit(310, "lb"),
  38723. name: "Front",
  38724. image: {
  38725. source: "./media/characters/solarus/front.svg",
  38726. extra: 2415/2021,
  38727. bottom: 103/2518
  38728. }
  38729. },
  38730. back: {
  38731. height: math.unit(7, "feet"),
  38732. weight: math.unit(310, "lb"),
  38733. name: "Back",
  38734. image: {
  38735. source: "./media/characters/solarus/back.svg",
  38736. extra: 2463/2089,
  38737. bottom: 79/2542
  38738. }
  38739. },
  38740. },
  38741. [
  38742. {
  38743. name: "Normal",
  38744. height: math.unit(7, "feet"),
  38745. default: true
  38746. },
  38747. ]
  38748. ))
  38749. characterMakers.push(() => makeCharacter(
  38750. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  38751. {
  38752. front: {
  38753. height: math.unit(16, "feet"),
  38754. name: "Front",
  38755. image: {
  38756. source: "./media/characters/mutsuju-koizaemon/front.svg",
  38757. extra: 1844/1780,
  38758. bottom: 58/1902
  38759. }
  38760. },
  38761. winterCoat: {
  38762. height: math.unit(16, "feet"),
  38763. name: "Winter Coat",
  38764. image: {
  38765. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  38766. extra: 1807/1775,
  38767. bottom: 69/1876
  38768. }
  38769. },
  38770. },
  38771. [
  38772. {
  38773. name: "Normal",
  38774. height: math.unit(16, "feet"),
  38775. default: true
  38776. },
  38777. {
  38778. name: "Chicago Size",
  38779. height: math.unit(560, "feet")
  38780. },
  38781. ]
  38782. ))
  38783. characterMakers.push(() => makeCharacter(
  38784. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  38785. {
  38786. front: {
  38787. height: math.unit(11 + 6/12, "feet"),
  38788. weight: math.unit(1366, "lb"),
  38789. name: "Front",
  38790. image: {
  38791. source: "./media/characters/lexor/front.svg",
  38792. extra: 1560/1481,
  38793. bottom: 211/1771
  38794. }
  38795. },
  38796. back: {
  38797. height: math.unit(11 + 6/12, "feet"),
  38798. weight: math.unit(1366, "lb"),
  38799. name: "Back",
  38800. image: {
  38801. source: "./media/characters/lexor/back.svg",
  38802. extra: 1614/1533,
  38803. bottom: 76/1690
  38804. }
  38805. },
  38806. maw: {
  38807. height: math.unit(3, "feet"),
  38808. name: "Maw",
  38809. image: {
  38810. source: "./media/characters/lexor/maw.svg"
  38811. }
  38812. },
  38813. dick: {
  38814. height: math.unit(2.59, "feet"),
  38815. name: "Dick",
  38816. image: {
  38817. source: "./media/characters/lexor/dick.svg"
  38818. }
  38819. },
  38820. },
  38821. [
  38822. {
  38823. name: "Normal",
  38824. height: math.unit(11 + 6/12, "feet"),
  38825. default: true
  38826. },
  38827. ]
  38828. ))
  38829. characterMakers.push(() => makeCharacter(
  38830. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  38831. {
  38832. front: {
  38833. height: math.unit(5 + 8/12, "feet"),
  38834. name: "Front",
  38835. image: {
  38836. source: "./media/characters/magnum/front.svg",
  38837. extra: 942/855,
  38838. bottom: 26/968
  38839. }
  38840. },
  38841. },
  38842. [
  38843. {
  38844. name: "Normal",
  38845. height: math.unit(5 + 8/12, "feet"),
  38846. default: true
  38847. },
  38848. ]
  38849. ))
  38850. characterMakers.push(() => makeCharacter(
  38851. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  38852. {
  38853. front: {
  38854. height: math.unit(18 + 4/12, "feet"),
  38855. weight: math.unit(1500, "kg"),
  38856. name: "Front",
  38857. image: {
  38858. source: "./media/characters/solas-sharpsman/front.svg",
  38859. extra: 1698/1589,
  38860. bottom: 0/1698
  38861. }
  38862. },
  38863. },
  38864. [
  38865. {
  38866. name: "Normal",
  38867. height: math.unit(18 + 4/12, "feet"),
  38868. default: true
  38869. },
  38870. ]
  38871. ))
  38872. characterMakers.push(() => makeCharacter(
  38873. { name: "October", species: ["tiger"], tags: ["anthro"] },
  38874. {
  38875. front: {
  38876. height: math.unit(5 + 5/12, "feet"),
  38877. weight: math.unit(180, "lb"),
  38878. name: "Front",
  38879. image: {
  38880. source: "./media/characters/october/front.svg",
  38881. extra: 1800/1650,
  38882. bottom: 0/1800
  38883. }
  38884. },
  38885. frontNsfw: {
  38886. height: math.unit(5 + 5/12, "feet"),
  38887. weight: math.unit(180, "lb"),
  38888. name: "Front (NSFW)",
  38889. image: {
  38890. source: "./media/characters/october/front-nsfw.svg",
  38891. extra: 1392/1307,
  38892. bottom: 42/1434
  38893. }
  38894. },
  38895. },
  38896. [
  38897. {
  38898. name: "Normal",
  38899. height: math.unit(5 + 5/12, "feet"),
  38900. default: true
  38901. },
  38902. ]
  38903. ))
  38904. characterMakers.push(() => makeCharacter(
  38905. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  38906. {
  38907. front: {
  38908. height: math.unit(8 + 6/12, "feet"),
  38909. name: "Front",
  38910. image: {
  38911. source: "./media/characters/essynkardi/front.svg",
  38912. extra: 1914/1846,
  38913. bottom: 22/1936
  38914. }
  38915. },
  38916. },
  38917. [
  38918. {
  38919. name: "Normal",
  38920. height: math.unit(8 + 6/12, "feet"),
  38921. default: true
  38922. },
  38923. ]
  38924. ))
  38925. characterMakers.push(() => makeCharacter(
  38926. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  38927. {
  38928. front: {
  38929. height: math.unit(6 + 6/12, "feet"),
  38930. weight: math.unit(7, "lb"),
  38931. name: "Front",
  38932. image: {
  38933. source: "./media/characters/icky/front.svg",
  38934. extra: 813/782,
  38935. bottom: 66/879
  38936. }
  38937. },
  38938. back: {
  38939. height: math.unit(6 + 6/12, "feet"),
  38940. weight: math.unit(7, "lb"),
  38941. name: "Back",
  38942. image: {
  38943. source: "./media/characters/icky/back.svg",
  38944. extra: 754/735,
  38945. bottom: 56/810
  38946. }
  38947. },
  38948. },
  38949. [
  38950. {
  38951. name: "Normal",
  38952. height: math.unit(6 + 6/12, "feet"),
  38953. default: true
  38954. },
  38955. ]
  38956. ))
  38957. characterMakers.push(() => makeCharacter(
  38958. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  38959. {
  38960. front: {
  38961. height: math.unit(15, "feet"),
  38962. name: "Front",
  38963. image: {
  38964. source: "./media/characters/rojas/front.svg",
  38965. extra: 1462/1408,
  38966. bottom: 95/1557
  38967. }
  38968. },
  38969. back: {
  38970. height: math.unit(15, "feet"),
  38971. name: "Back",
  38972. image: {
  38973. source: "./media/characters/rojas/back.svg",
  38974. extra: 1023/954,
  38975. bottom: 28/1051
  38976. }
  38977. },
  38978. },
  38979. [
  38980. {
  38981. name: "Normal",
  38982. height: math.unit(15, "feet"),
  38983. default: true
  38984. },
  38985. ]
  38986. ))
  38987. characterMakers.push(() => makeCharacter(
  38988. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  38989. {
  38990. frontHuman: {
  38991. height: math.unit(5 + 7/12, "feet"),
  38992. name: "Front (Human)",
  38993. image: {
  38994. source: "./media/characters/alek-dryagan/front-human.svg",
  38995. extra: 1687/1667,
  38996. bottom: 69/1756
  38997. }
  38998. },
  38999. backHuman: {
  39000. height: math.unit(5 + 7/12, "feet"),
  39001. name: "Back (Human)",
  39002. image: {
  39003. source: "./media/characters/alek-dryagan/back-human.svg",
  39004. extra: 1670/1649,
  39005. bottom: 65/1735
  39006. }
  39007. },
  39008. frontDemi: {
  39009. height: math.unit(65, "feet"),
  39010. name: "Front (Demi)",
  39011. image: {
  39012. source: "./media/characters/alek-dryagan/front-demi.svg",
  39013. extra: 1669/1642,
  39014. bottom: 49/1718
  39015. }
  39016. },
  39017. backDemi: {
  39018. height: math.unit(65, "feet"),
  39019. name: "Back (Demi)",
  39020. image: {
  39021. source: "./media/characters/alek-dryagan/back-demi.svg",
  39022. extra: 1658/1637,
  39023. bottom: 40/1698
  39024. }
  39025. },
  39026. mawHuman: {
  39027. height: math.unit(0.3, "feet"),
  39028. name: "Maw (Human)",
  39029. image: {
  39030. source: "./media/characters/alek-dryagan/maw-human.svg"
  39031. }
  39032. },
  39033. mawDemi: {
  39034. height: math.unit(3.8, "feet"),
  39035. name: "Maw (Demi)",
  39036. image: {
  39037. source: "./media/characters/alek-dryagan/maw-demi.svg"
  39038. }
  39039. },
  39040. },
  39041. [
  39042. {
  39043. name: "Normal",
  39044. height: math.unit(5 + 7/12, "feet"),
  39045. default: true
  39046. },
  39047. ]
  39048. ))
  39049. characterMakers.push(() => makeCharacter(
  39050. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  39051. {
  39052. frontHuman: {
  39053. height: math.unit(5 + 2/12, "feet"),
  39054. name: "Front (Human)",
  39055. image: {
  39056. source: "./media/characters/gen/front-human.svg",
  39057. extra: 1627/1538,
  39058. bottom: 71/1698
  39059. }
  39060. },
  39061. backHuman: {
  39062. height: math.unit(5 + 2/12, "feet"),
  39063. name: "Back (Human)",
  39064. image: {
  39065. source: "./media/characters/gen/back-human.svg",
  39066. extra: 1638/1548,
  39067. bottom: 69/1707
  39068. }
  39069. },
  39070. frontDemi: {
  39071. height: math.unit(5 + 2/12, "feet"),
  39072. name: "Front (Demi)",
  39073. image: {
  39074. source: "./media/characters/gen/front-demi.svg",
  39075. extra: 1627/1538,
  39076. bottom: 71/1698
  39077. }
  39078. },
  39079. backDemi: {
  39080. height: math.unit(5 + 2/12, "feet"),
  39081. name: "Back (Demi)",
  39082. image: {
  39083. source: "./media/characters/gen/back-demi.svg",
  39084. extra: 1638/1548,
  39085. bottom: 69/1707
  39086. }
  39087. },
  39088. },
  39089. [
  39090. {
  39091. name: "Normal",
  39092. height: math.unit(5 + 2/12, "feet"),
  39093. default: true
  39094. },
  39095. ]
  39096. ))
  39097. characterMakers.push(() => makeCharacter(
  39098. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  39099. {
  39100. frontImp: {
  39101. height: math.unit(1 + 11/12, "feet"),
  39102. name: "Front (Imp)",
  39103. image: {
  39104. source: "./media/characters/max-kobold/front-imp.svg",
  39105. extra: 1238/1134,
  39106. bottom: 81/1319
  39107. }
  39108. },
  39109. backImp: {
  39110. height: math.unit(1 + 11/12, "feet"),
  39111. name: "Back (Imp)",
  39112. image: {
  39113. source: "./media/characters/max-kobold/back-imp.svg",
  39114. extra: 1334/1175,
  39115. bottom: 34/1368
  39116. }
  39117. },
  39118. frontDemi: {
  39119. height: math.unit(5 + 9/12, "feet"),
  39120. name: "Front (Demi)",
  39121. image: {
  39122. source: "./media/characters/max-kobold/front-demi.svg",
  39123. extra: 1715/1685,
  39124. bottom: 54/1769
  39125. }
  39126. },
  39127. backDemi: {
  39128. height: math.unit(5 + 9/12, "feet"),
  39129. name: "Back (Demi)",
  39130. image: {
  39131. source: "./media/characters/max-kobold/back-demi.svg",
  39132. extra: 1752/1729,
  39133. bottom: 41/1793
  39134. }
  39135. },
  39136. handImp: {
  39137. height: math.unit(0.45, "feet"),
  39138. name: "Hand (Imp)",
  39139. image: {
  39140. source: "./media/characters/max-kobold/hand.svg"
  39141. }
  39142. },
  39143. pawImp: {
  39144. height: math.unit(0.46, "feet"),
  39145. name: "Paw (Imp)",
  39146. image: {
  39147. source: "./media/characters/max-kobold/paw.svg"
  39148. }
  39149. },
  39150. handDemi: {
  39151. height: math.unit(0.80, "feet"),
  39152. name: "Hand (Demi)",
  39153. image: {
  39154. source: "./media/characters/max-kobold/hand.svg"
  39155. }
  39156. },
  39157. pawDemi: {
  39158. height: math.unit(1.1, "feet"),
  39159. name: "Paw (Demi)",
  39160. image: {
  39161. source: "./media/characters/max-kobold/paw.svg"
  39162. }
  39163. },
  39164. headImp: {
  39165. height: math.unit(1.33, "feet"),
  39166. name: "Head (Imp)",
  39167. image: {
  39168. source: "./media/characters/max-kobold/head-imp.svg"
  39169. }
  39170. },
  39171. mawImp: {
  39172. height: math.unit(0.75, "feet"),
  39173. name: "Maw (Imp)",
  39174. image: {
  39175. source: "./media/characters/max-kobold/maw-imp.svg"
  39176. }
  39177. },
  39178. mawDemi: {
  39179. height: math.unit(0.42, "feet"),
  39180. name: "Maw (Demi)",
  39181. image: {
  39182. source: "./media/characters/max-kobold/maw-demi.svg"
  39183. }
  39184. },
  39185. },
  39186. [
  39187. {
  39188. name: "Normal",
  39189. height: math.unit(1 + 11/12, "feet"),
  39190. default: true
  39191. },
  39192. ]
  39193. ))
  39194. characterMakers.push(() => makeCharacter(
  39195. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  39196. {
  39197. front: {
  39198. height: math.unit(7 + 5/12, "feet"),
  39199. name: "Front",
  39200. image: {
  39201. source: "./media/characters/carbon/front.svg",
  39202. extra: 1754/1689,
  39203. bottom: 65/1819
  39204. }
  39205. },
  39206. back: {
  39207. height: math.unit(7 + 5/12, "feet"),
  39208. name: "Back",
  39209. image: {
  39210. source: "./media/characters/carbon/back.svg",
  39211. extra: 1762/1695,
  39212. bottom: 24/1786
  39213. }
  39214. },
  39215. frontGigantamax: {
  39216. height: math.unit(150, "feet"),
  39217. name: "Front (Gigantamax)",
  39218. image: {
  39219. source: "./media/characters/carbon/front-gigantamax.svg",
  39220. extra: 1826/1669,
  39221. bottom: 59/1885
  39222. }
  39223. },
  39224. backGigantamax: {
  39225. height: math.unit(150, "feet"),
  39226. name: "Back (Gigantamax)",
  39227. image: {
  39228. source: "./media/characters/carbon/back-gigantamax.svg",
  39229. extra: 1796/1653,
  39230. bottom: 53/1849
  39231. }
  39232. },
  39233. maw: {
  39234. height: math.unit(0.48, "feet"),
  39235. name: "Maw",
  39236. image: {
  39237. source: "./media/characters/carbon/maw.svg"
  39238. }
  39239. },
  39240. mawGigantamax: {
  39241. height: math.unit(7.5, "feet"),
  39242. name: "Maw (Gigantamax)",
  39243. image: {
  39244. source: "./media/characters/carbon/maw-gigantamax.svg"
  39245. }
  39246. },
  39247. },
  39248. [
  39249. {
  39250. name: "Normal",
  39251. height: math.unit(7 + 5/12, "feet"),
  39252. default: true
  39253. },
  39254. ]
  39255. ))
  39256. characterMakers.push(() => makeCharacter(
  39257. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  39258. {
  39259. front: {
  39260. height: math.unit(6, "feet"),
  39261. name: "Front",
  39262. image: {
  39263. source: "./media/characters/maverick/front.svg",
  39264. extra: 1672/1661,
  39265. bottom: 85/1757
  39266. }
  39267. },
  39268. back: {
  39269. height: math.unit(6, "feet"),
  39270. name: "Back",
  39271. image: {
  39272. source: "./media/characters/maverick/back.svg",
  39273. extra: 1642/1631,
  39274. bottom: 38/1680
  39275. }
  39276. },
  39277. },
  39278. [
  39279. {
  39280. name: "Normal",
  39281. height: math.unit(6, "feet"),
  39282. default: true
  39283. },
  39284. ]
  39285. ))
  39286. characterMakers.push(() => makeCharacter(
  39287. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  39288. {
  39289. front: {
  39290. height: math.unit(15, "feet"),
  39291. weight: math.unit(615, "lb"),
  39292. name: "Front",
  39293. image: {
  39294. source: "./media/characters/grockle/front.svg",
  39295. extra: 1535/1427,
  39296. bottom: 56/1591
  39297. }
  39298. },
  39299. },
  39300. [
  39301. {
  39302. name: "Normal",
  39303. height: math.unit(15, "feet"),
  39304. default: true
  39305. },
  39306. {
  39307. name: "Large",
  39308. height: math.unit(150, "feet")
  39309. },
  39310. {
  39311. name: "Macro",
  39312. height: math.unit(1876, "feet")
  39313. },
  39314. {
  39315. name: "Mega Macro",
  39316. height: math.unit(121940, "feet")
  39317. },
  39318. {
  39319. name: "Giga Macro",
  39320. height: math.unit(750, "km")
  39321. },
  39322. {
  39323. name: "Tera Macro",
  39324. height: math.unit(750000, "km")
  39325. },
  39326. {
  39327. name: "Galactic",
  39328. height: math.unit(1.4e5, "km")
  39329. },
  39330. {
  39331. name: "Godlike",
  39332. height: math.unit(9.8e280, "galaxies")
  39333. },
  39334. ]
  39335. ))
  39336. characterMakers.push(() => makeCharacter(
  39337. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  39338. {
  39339. front: {
  39340. height: math.unit(11, "meters"),
  39341. weight: math.unit(20, "tonnes"),
  39342. name: "Front",
  39343. image: {
  39344. source: "./media/characters/alistair/front.svg",
  39345. extra: 1265/1009,
  39346. bottom: 93/1358
  39347. }
  39348. },
  39349. },
  39350. [
  39351. {
  39352. name: "Normal",
  39353. height: math.unit(11, "meters"),
  39354. default: true
  39355. },
  39356. ]
  39357. ))
  39358. characterMakers.push(() => makeCharacter(
  39359. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  39360. {
  39361. front: {
  39362. height: math.unit(5 + 8/12, "feet"),
  39363. name: "Front",
  39364. image: {
  39365. source: "./media/characters/haruka/front.svg",
  39366. extra: 2012/1952,
  39367. bottom: 0/2012
  39368. }
  39369. },
  39370. },
  39371. [
  39372. {
  39373. name: "Normal",
  39374. height: math.unit(5 + 8/12, "feet"),
  39375. default: true
  39376. },
  39377. ]
  39378. ))
  39379. characterMakers.push(() => makeCharacter(
  39380. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  39381. {
  39382. back: {
  39383. height: math.unit(9, "feet"),
  39384. name: "Back",
  39385. image: {
  39386. source: "./media/characters/vivian-sylveon/back.svg",
  39387. extra: 1853/1714,
  39388. bottom: 0/1853
  39389. }
  39390. },
  39391. },
  39392. [
  39393. {
  39394. name: "Normal",
  39395. height: math.unit(9, "feet"),
  39396. default: true
  39397. },
  39398. {
  39399. name: "Macro",
  39400. height: math.unit(500, "feet")
  39401. },
  39402. {
  39403. name: "Megamacro",
  39404. height: math.unit(600, "miles")
  39405. },
  39406. {
  39407. name: "Gigamacro",
  39408. height: math.unit(30000, "miles")
  39409. },
  39410. ]
  39411. ))
  39412. characterMakers.push(() => makeCharacter(
  39413. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  39414. {
  39415. anthro: {
  39416. height: math.unit(5 + 10/12, "feet"),
  39417. weight: math.unit(100, "lb"),
  39418. name: "Anthro",
  39419. image: {
  39420. source: "./media/characters/daiki/anthro.svg",
  39421. extra: 1115/1027,
  39422. bottom: 69/1184
  39423. }
  39424. },
  39425. feral: {
  39426. height: math.unit(200, "feet"),
  39427. name: "Feral",
  39428. image: {
  39429. source: "./media/characters/daiki/feral.svg",
  39430. extra: 1256/313,
  39431. bottom: 39/1295
  39432. }
  39433. },
  39434. feralHead: {
  39435. height: math.unit(171, "feet"),
  39436. name: "Feral Head",
  39437. image: {
  39438. source: "./media/characters/daiki/feral-head.svg"
  39439. }
  39440. },
  39441. manaDragon: {
  39442. height: math.unit(170, "meters"),
  39443. name: "Mana-dragon",
  39444. image: {
  39445. source: "./media/characters/daiki/mana-dragon.svg",
  39446. extra: 763/420,
  39447. bottom: 97/860
  39448. }
  39449. },
  39450. },
  39451. [
  39452. {
  39453. name: "Normal",
  39454. height: math.unit(5 + 10/12, "feet"),
  39455. default: true
  39456. },
  39457. ]
  39458. ))
  39459. characterMakers.push(() => makeCharacter(
  39460. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  39461. {
  39462. fullyEquippedFront: {
  39463. height: math.unit(3 + 1/12, "feet"),
  39464. weight: math.unit(24, "lb"),
  39465. name: "Fully Equipped (Front)",
  39466. image: {
  39467. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  39468. extra: 687/605,
  39469. bottom: 18/705
  39470. }
  39471. },
  39472. fullyEquippedBack: {
  39473. height: math.unit(3 + 1/12, "feet"),
  39474. weight: math.unit(24, "lb"),
  39475. name: "Fully Equipped (Back)",
  39476. image: {
  39477. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  39478. extra: 689/590,
  39479. bottom: 18/707
  39480. }
  39481. },
  39482. dailyWear: {
  39483. height: math.unit(3 + 1/12, "feet"),
  39484. weight: math.unit(24, "lb"),
  39485. name: "Daily Wear",
  39486. image: {
  39487. source: "./media/characters/tea-spot/daily-wear.svg",
  39488. extra: 701/620,
  39489. bottom: 21/722
  39490. }
  39491. },
  39492. maidWork: {
  39493. height: math.unit(3 + 1/12, "feet"),
  39494. weight: math.unit(24, "lb"),
  39495. name: "Maid Work",
  39496. image: {
  39497. source: "./media/characters/tea-spot/maid-work.svg",
  39498. extra: 693/609,
  39499. bottom: 15/708
  39500. }
  39501. },
  39502. },
  39503. [
  39504. {
  39505. name: "Normal",
  39506. height: math.unit(3 + 1/12, "feet"),
  39507. default: true
  39508. },
  39509. ]
  39510. ))
  39511. characterMakers.push(() => makeCharacter(
  39512. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  39513. {
  39514. front: {
  39515. height: math.unit(175, "cm"),
  39516. weight: math.unit(75, "kg"),
  39517. name: "Front",
  39518. image: {
  39519. source: "./media/characters/chee/front.svg",
  39520. extra: 1796/1740,
  39521. bottom: 40/1836
  39522. }
  39523. },
  39524. },
  39525. [
  39526. {
  39527. name: "Micro-Micro",
  39528. height: math.unit(1, "nm")
  39529. },
  39530. {
  39531. name: "Micro-erst",
  39532. height: math.unit(1, "micrometer")
  39533. },
  39534. {
  39535. name: "Micro-er",
  39536. height: math.unit(1, "cm")
  39537. },
  39538. {
  39539. name: "Normal",
  39540. height: math.unit(175, "cm"),
  39541. default: true
  39542. },
  39543. {
  39544. name: "Macro",
  39545. height: math.unit(100, "m")
  39546. },
  39547. {
  39548. name: "Macro-er",
  39549. height: math.unit(1, "km")
  39550. },
  39551. {
  39552. name: "Macro-erst",
  39553. height: math.unit(10, "km")
  39554. },
  39555. {
  39556. name: "Macro-Macro",
  39557. height: math.unit(100, "km")
  39558. },
  39559. ]
  39560. ))
  39561. characterMakers.push(() => makeCharacter(
  39562. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  39563. {
  39564. front: {
  39565. height: math.unit(11 + 9/12, "feet"),
  39566. weight: math.unit(935, "lb"),
  39567. name: "Front",
  39568. image: {
  39569. source: "./media/characters/kingsley/front.svg",
  39570. extra: 1803/1674,
  39571. bottom: 127/1930
  39572. }
  39573. },
  39574. frontNude: {
  39575. height: math.unit(11 + 9/12, "feet"),
  39576. weight: math.unit(935, "lb"),
  39577. name: "Front (Nude)",
  39578. image: {
  39579. source: "./media/characters/kingsley/front-nude.svg",
  39580. extra: 1803/1674,
  39581. bottom: 127/1930
  39582. }
  39583. },
  39584. },
  39585. [
  39586. {
  39587. name: "Normal",
  39588. height: math.unit(11 + 9/12, "feet"),
  39589. default: true
  39590. },
  39591. ]
  39592. ))
  39593. characterMakers.push(() => makeCharacter(
  39594. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  39595. {
  39596. side: {
  39597. height: math.unit(9, "feet"),
  39598. name: "Side",
  39599. image: {
  39600. source: "./media/characters/rymel/side.svg",
  39601. extra: 792/469,
  39602. bottom: 121/913
  39603. }
  39604. },
  39605. maw: {
  39606. height: math.unit(2.4, "meters"),
  39607. name: "Maw",
  39608. image: {
  39609. source: "./media/characters/rymel/maw.svg"
  39610. }
  39611. },
  39612. },
  39613. [
  39614. {
  39615. name: "House Drake",
  39616. height: math.unit(2, "feet")
  39617. },
  39618. {
  39619. name: "Reduced",
  39620. height: math.unit(4.5, "feet")
  39621. },
  39622. {
  39623. name: "Normal",
  39624. height: math.unit(9, "feet"),
  39625. default: true
  39626. },
  39627. ]
  39628. ))
  39629. characterMakers.push(() => makeCharacter(
  39630. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  39631. {
  39632. front: {
  39633. height: math.unit(1.74, "meters"),
  39634. weight: math.unit(55, "kg"),
  39635. name: "Front",
  39636. image: {
  39637. source: "./media/characters/rubus/front.svg",
  39638. extra: 1894/1742,
  39639. bottom: 44/1938
  39640. }
  39641. },
  39642. },
  39643. [
  39644. {
  39645. name: "Normal",
  39646. height: math.unit(1.74, "meters"),
  39647. default: true
  39648. },
  39649. ]
  39650. ))
  39651. characterMakers.push(() => makeCharacter(
  39652. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  39653. {
  39654. front: {
  39655. height: math.unit(5 + 2/12, "feet"),
  39656. weight: math.unit(112, "lb"),
  39657. name: "Front",
  39658. image: {
  39659. source: "./media/characters/cassie-kingston/front.svg",
  39660. extra: 1438/1390,
  39661. bottom: 47/1485
  39662. }
  39663. },
  39664. },
  39665. [
  39666. {
  39667. name: "Normal",
  39668. height: math.unit(5 + 2/12, "feet"),
  39669. default: true
  39670. },
  39671. {
  39672. name: "Macro",
  39673. height: math.unit(128, "feet")
  39674. },
  39675. {
  39676. name: "Megamacro",
  39677. height: math.unit(2.56, "miles")
  39678. },
  39679. ]
  39680. ))
  39681. characterMakers.push(() => makeCharacter(
  39682. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  39683. {
  39684. front: {
  39685. height: math.unit(7, "feet"),
  39686. name: "Front",
  39687. image: {
  39688. source: "./media/characters/fox/front.svg",
  39689. extra: 1798/1703,
  39690. bottom: 55/1853
  39691. }
  39692. },
  39693. back: {
  39694. height: math.unit(7, "feet"),
  39695. name: "Back",
  39696. image: {
  39697. source: "./media/characters/fox/back.svg",
  39698. extra: 1748/1649,
  39699. bottom: 32/1780
  39700. }
  39701. },
  39702. head: {
  39703. height: math.unit(1.95, "feet"),
  39704. name: "Head",
  39705. image: {
  39706. source: "./media/characters/fox/head.svg"
  39707. }
  39708. },
  39709. dick: {
  39710. height: math.unit(1.33, "feet"),
  39711. name: "Dick",
  39712. image: {
  39713. source: "./media/characters/fox/dick.svg"
  39714. }
  39715. },
  39716. foot: {
  39717. height: math.unit(1, "feet"),
  39718. name: "Foot",
  39719. image: {
  39720. source: "./media/characters/fox/foot.svg"
  39721. }
  39722. },
  39723. paw: {
  39724. height: math.unit(0.92, "feet"),
  39725. name: "Paw",
  39726. image: {
  39727. source: "./media/characters/fox/paw.svg"
  39728. }
  39729. },
  39730. },
  39731. [
  39732. {
  39733. name: "Small",
  39734. height: math.unit(3, "inches")
  39735. },
  39736. {
  39737. name: "\"Realistic\"",
  39738. height: math.unit(7, "feet")
  39739. },
  39740. {
  39741. name: "Normal",
  39742. height: math.unit(150, "feet"),
  39743. default: true
  39744. },
  39745. {
  39746. name: "BIG",
  39747. height: math.unit(1200, "feet")
  39748. },
  39749. {
  39750. name: "👀",
  39751. height: math.unit(5, "miles")
  39752. },
  39753. {
  39754. name: "👀👀👀",
  39755. height: math.unit(64, "miles")
  39756. },
  39757. ]
  39758. ))
  39759. characterMakers.push(() => makeCharacter(
  39760. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  39761. {
  39762. front: {
  39763. height: math.unit(625, "feet"),
  39764. name: "Front",
  39765. image: {
  39766. source: "./media/characters/asonja-rossa/front.svg",
  39767. extra: 1833/1686,
  39768. bottom: 24/1857
  39769. }
  39770. },
  39771. back: {
  39772. height: math.unit(625, "feet"),
  39773. name: "Back",
  39774. image: {
  39775. source: "./media/characters/asonja-rossa/back.svg",
  39776. extra: 1852/1753,
  39777. bottom: 26/1878
  39778. }
  39779. },
  39780. },
  39781. [
  39782. {
  39783. name: "Macro",
  39784. height: math.unit(625, "feet"),
  39785. default: true
  39786. },
  39787. ]
  39788. ))
  39789. characterMakers.push(() => makeCharacter(
  39790. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  39791. {
  39792. side: {
  39793. height: math.unit(8, "feet"),
  39794. name: "Side",
  39795. image: {
  39796. source: "./media/characters/rezukii/side.svg",
  39797. extra: 979/542,
  39798. bottom: 87/1066
  39799. }
  39800. },
  39801. sitting: {
  39802. height: math.unit(14.6, "feet"),
  39803. name: "Sitting",
  39804. image: {
  39805. source: "./media/characters/rezukii/sitting.svg",
  39806. extra: 1023/813,
  39807. bottom: 45/1068
  39808. }
  39809. },
  39810. },
  39811. [
  39812. {
  39813. name: "Tiny",
  39814. height: math.unit(2, "feet")
  39815. },
  39816. {
  39817. name: "Smol",
  39818. height: math.unit(4, "feet")
  39819. },
  39820. {
  39821. name: "Normal",
  39822. height: math.unit(8, "feet"),
  39823. default: true
  39824. },
  39825. {
  39826. name: "Big",
  39827. height: math.unit(12, "feet")
  39828. },
  39829. {
  39830. name: "Macro",
  39831. height: math.unit(30, "feet")
  39832. },
  39833. ]
  39834. ))
  39835. characterMakers.push(() => makeCharacter(
  39836. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  39837. {
  39838. front: {
  39839. height: math.unit(14, "feet"),
  39840. weight: math.unit(9.5, "tonnes"),
  39841. name: "Front",
  39842. image: {
  39843. source: "./media/characters/dawnheart/front.svg",
  39844. extra: 2792/2675,
  39845. bottom: 64/2856
  39846. }
  39847. },
  39848. },
  39849. [
  39850. {
  39851. name: "Normal",
  39852. height: math.unit(14, "feet"),
  39853. default: true
  39854. },
  39855. ]
  39856. ))
  39857. characterMakers.push(() => makeCharacter(
  39858. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  39859. {
  39860. front: {
  39861. height: math.unit(1.7, "m"),
  39862. name: "Front",
  39863. image: {
  39864. source: "./media/characters/gladi/front.svg",
  39865. extra: 1460/1362,
  39866. bottom: 19/1479
  39867. }
  39868. },
  39869. back: {
  39870. height: math.unit(1.7, "m"),
  39871. name: "Back",
  39872. image: {
  39873. source: "./media/characters/gladi/back.svg",
  39874. extra: 1459/1357,
  39875. bottom: 12/1471
  39876. }
  39877. },
  39878. feral: {
  39879. height: math.unit(2.05, "m"),
  39880. name: "Feral",
  39881. image: {
  39882. source: "./media/characters/gladi/feral.svg",
  39883. extra: 821/557,
  39884. bottom: 91/912
  39885. }
  39886. },
  39887. },
  39888. [
  39889. {
  39890. name: "Shortest",
  39891. height: math.unit(70, "cm")
  39892. },
  39893. {
  39894. name: "Normal",
  39895. height: math.unit(1.7, "m")
  39896. },
  39897. {
  39898. name: "Macro",
  39899. height: math.unit(10, "m"),
  39900. default: true
  39901. },
  39902. {
  39903. name: "Tallest",
  39904. height: math.unit(200, "m")
  39905. },
  39906. ]
  39907. ))
  39908. characterMakers.push(() => makeCharacter(
  39909. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  39910. {
  39911. front: {
  39912. height: math.unit(5 + 7/12, "feet"),
  39913. weight: math.unit(2, "tons"),
  39914. name: "Front",
  39915. image: {
  39916. source: "./media/characters/erdno/front.svg",
  39917. extra: 1234/1129,
  39918. bottom: 35/1269
  39919. }
  39920. },
  39921. angled: {
  39922. height: math.unit(5 + 7/12, "feet"),
  39923. weight: math.unit(2, "tons"),
  39924. name: "Angled",
  39925. image: {
  39926. source: "./media/characters/erdno/angled.svg",
  39927. extra: 1185/1139,
  39928. bottom: 36/1221
  39929. }
  39930. },
  39931. side: {
  39932. height: math.unit(5 + 7/12, "feet"),
  39933. weight: math.unit(2, "tons"),
  39934. name: "Side",
  39935. image: {
  39936. source: "./media/characters/erdno/side.svg",
  39937. extra: 1191/1144,
  39938. bottom: 40/1231
  39939. }
  39940. },
  39941. back: {
  39942. height: math.unit(5 + 7/12, "feet"),
  39943. weight: math.unit(2, "tons"),
  39944. name: "Back",
  39945. image: {
  39946. source: "./media/characters/erdno/back.svg",
  39947. extra: 1202/1146,
  39948. bottom: 17/1219
  39949. }
  39950. },
  39951. frontNsfw: {
  39952. height: math.unit(5 + 7/12, "feet"),
  39953. weight: math.unit(2, "tons"),
  39954. name: "Front (NSFW)",
  39955. image: {
  39956. source: "./media/characters/erdno/front-nsfw.svg",
  39957. extra: 1234/1129,
  39958. bottom: 35/1269
  39959. }
  39960. },
  39961. angledNsfw: {
  39962. height: math.unit(5 + 7/12, "feet"),
  39963. weight: math.unit(2, "tons"),
  39964. name: "Angled (NSFW)",
  39965. image: {
  39966. source: "./media/characters/erdno/angled-nsfw.svg",
  39967. extra: 1185/1139,
  39968. bottom: 36/1221
  39969. }
  39970. },
  39971. sideNsfw: {
  39972. height: math.unit(5 + 7/12, "feet"),
  39973. weight: math.unit(2, "tons"),
  39974. name: "Side (NSFW)",
  39975. image: {
  39976. source: "./media/characters/erdno/side-nsfw.svg",
  39977. extra: 1191/1144,
  39978. bottom: 40/1231
  39979. }
  39980. },
  39981. backNsfw: {
  39982. height: math.unit(5 + 7/12, "feet"),
  39983. weight: math.unit(2, "tons"),
  39984. name: "Back (NSFW)",
  39985. image: {
  39986. source: "./media/characters/erdno/back-nsfw.svg",
  39987. extra: 1202/1146,
  39988. bottom: 17/1219
  39989. }
  39990. },
  39991. frontHyper: {
  39992. height: math.unit(5 + 7/12, "feet"),
  39993. weight: math.unit(2, "tons"),
  39994. name: "Front (Hyper)",
  39995. image: {
  39996. source: "./media/characters/erdno/front-hyper.svg",
  39997. extra: 1298/1136,
  39998. bottom: 35/1333
  39999. }
  40000. },
  40001. },
  40002. [
  40003. {
  40004. name: "Normal",
  40005. height: math.unit(5 + 7/12, "feet"),
  40006. default: true
  40007. },
  40008. {
  40009. name: "Big",
  40010. height: math.unit(5.7, "meters")
  40011. },
  40012. {
  40013. name: "Macro",
  40014. height: math.unit(5.7, "kilometers")
  40015. },
  40016. {
  40017. name: "Megamacro",
  40018. height: math.unit(5.7, "earths")
  40019. },
  40020. ]
  40021. ))
  40022. characterMakers.push(() => makeCharacter(
  40023. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  40024. {
  40025. front: {
  40026. height: math.unit(5 + 10/12, "feet"),
  40027. weight: math.unit(150, "lb"),
  40028. name: "Front",
  40029. image: {
  40030. source: "./media/characters/jamie/front.svg",
  40031. extra: 1908/1768,
  40032. bottom: 19/1927
  40033. }
  40034. },
  40035. },
  40036. [
  40037. {
  40038. name: "Minimum",
  40039. height: math.unit(2, "cm")
  40040. },
  40041. {
  40042. name: "Micro",
  40043. height: math.unit(3, "inches")
  40044. },
  40045. {
  40046. name: "Normal",
  40047. height: math.unit(5 + 10/12, "feet"),
  40048. default: true
  40049. },
  40050. {
  40051. name: "Macro",
  40052. height: math.unit(150, "feet")
  40053. },
  40054. {
  40055. name: "Megamacro",
  40056. height: math.unit(10000, "m")
  40057. },
  40058. ]
  40059. ))
  40060. characterMakers.push(() => makeCharacter(
  40061. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  40062. {
  40063. front: {
  40064. height: math.unit(2, "meters"),
  40065. weight: math.unit(100, "kg"),
  40066. name: "Front",
  40067. image: {
  40068. source: "./media/characters/shiron/front.svg",
  40069. extra: 2103/1985,
  40070. bottom: 98/2201
  40071. }
  40072. },
  40073. back: {
  40074. height: math.unit(2, "meters"),
  40075. weight: math.unit(100, "kg"),
  40076. name: "Back",
  40077. image: {
  40078. source: "./media/characters/shiron/back.svg",
  40079. extra: 2110/2015,
  40080. bottom: 89/2199
  40081. }
  40082. },
  40083. hand: {
  40084. height: math.unit(0.96, "feet"),
  40085. name: "Hand",
  40086. image: {
  40087. source: "./media/characters/shiron/hand.svg"
  40088. }
  40089. },
  40090. foot: {
  40091. height: math.unit(1.464, "feet"),
  40092. name: "Foot",
  40093. image: {
  40094. source: "./media/characters/shiron/foot.svg"
  40095. }
  40096. },
  40097. },
  40098. [
  40099. {
  40100. name: "Normal",
  40101. height: math.unit(2, "meters")
  40102. },
  40103. {
  40104. name: "Macro",
  40105. height: math.unit(500, "meters"),
  40106. default: true
  40107. },
  40108. {
  40109. name: "Megamacro",
  40110. height: math.unit(20, "km")
  40111. },
  40112. ]
  40113. ))
  40114. characterMakers.push(() => makeCharacter(
  40115. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  40116. {
  40117. front: {
  40118. height: math.unit(6, "feet"),
  40119. name: "Front",
  40120. image: {
  40121. source: "./media/characters/sam/front.svg",
  40122. extra: 849/826,
  40123. bottom: 19/868
  40124. }
  40125. },
  40126. },
  40127. [
  40128. {
  40129. name: "Normal",
  40130. height: math.unit(6, "feet"),
  40131. default: true
  40132. },
  40133. ]
  40134. ))
  40135. characterMakers.push(() => makeCharacter(
  40136. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  40137. {
  40138. front: {
  40139. height: math.unit(8 + 4/12, "feet"),
  40140. weight: math.unit(122, "kg"),
  40141. name: "Front",
  40142. image: {
  40143. source: "./media/characters/namori-kurogawa/front.svg",
  40144. extra: 1894/1576,
  40145. bottom: 34/1928
  40146. }
  40147. },
  40148. },
  40149. [
  40150. {
  40151. name: "Normal",
  40152. height: math.unit(8 + 4/12, "feet"),
  40153. default: true
  40154. },
  40155. ]
  40156. ))
  40157. characterMakers.push(() => makeCharacter(
  40158. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  40159. {
  40160. front: {
  40161. height: math.unit(9, "feet"),
  40162. weight: math.unit(621, "lb"),
  40163. name: "Front",
  40164. image: {
  40165. source: "./media/characters/unmru/front.svg",
  40166. extra: 1853/1747,
  40167. bottom: 73/1926
  40168. }
  40169. },
  40170. side: {
  40171. height: math.unit(9, "feet"),
  40172. weight: math.unit(621, "lb"),
  40173. name: "Side",
  40174. image: {
  40175. source: "./media/characters/unmru/side.svg",
  40176. extra: 1781/1671,
  40177. bottom: 127/1908
  40178. }
  40179. },
  40180. back: {
  40181. height: math.unit(9, "feet"),
  40182. weight: math.unit(621, "lb"),
  40183. name: "Back",
  40184. image: {
  40185. source: "./media/characters/unmru/back.svg",
  40186. extra: 1894/1765,
  40187. bottom: 75/1969
  40188. }
  40189. },
  40190. dick: {
  40191. height: math.unit(3, "feet"),
  40192. weight: math.unit(35, "lb"),
  40193. name: "Dick",
  40194. image: {
  40195. source: "./media/characters/unmru/dick.svg"
  40196. }
  40197. },
  40198. },
  40199. [
  40200. {
  40201. name: "Normal",
  40202. height: math.unit(9, "feet")
  40203. },
  40204. {
  40205. name: "Natural",
  40206. height: math.unit(27, "feet"),
  40207. default: true
  40208. },
  40209. {
  40210. name: "Giant",
  40211. height: math.unit(90, "feet")
  40212. },
  40213. {
  40214. name: "Kaiju",
  40215. height: math.unit(270, "feet")
  40216. },
  40217. {
  40218. name: "Macro",
  40219. height: math.unit(900, "feet")
  40220. },
  40221. {
  40222. name: "Macro+",
  40223. height: math.unit(2700, "feet")
  40224. },
  40225. {
  40226. name: "Megamacro",
  40227. height: math.unit(9000, "feet")
  40228. },
  40229. {
  40230. name: "City-Crushing",
  40231. height: math.unit(27000, "feet")
  40232. },
  40233. {
  40234. name: "Mountain-Mashing",
  40235. height: math.unit(90000, "feet")
  40236. },
  40237. {
  40238. name: "Earth-Eclipsing",
  40239. height: math.unit(2.7e8, "feet")
  40240. },
  40241. {
  40242. name: "Sol-Swallowing",
  40243. height: math.unit(9e10, "feet")
  40244. },
  40245. {
  40246. name: "Majoris-Munching",
  40247. height: math.unit(2.7e13, "feet")
  40248. },
  40249. ]
  40250. ))
  40251. characterMakers.push(() => makeCharacter(
  40252. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  40253. {
  40254. front: {
  40255. height: math.unit(1, "inch"),
  40256. name: "Front",
  40257. image: {
  40258. source: "./media/characters/squeaks-mouse/front.svg",
  40259. extra: 352/308,
  40260. bottom: 25/377
  40261. }
  40262. },
  40263. },
  40264. [
  40265. {
  40266. name: "Micro",
  40267. height: math.unit(1, "inch"),
  40268. default: true
  40269. },
  40270. ]
  40271. ))
  40272. characterMakers.push(() => makeCharacter(
  40273. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  40274. {
  40275. side: {
  40276. height: math.unit(35, "feet"),
  40277. name: "Side",
  40278. image: {
  40279. source: "./media/characters/sayko/side.svg",
  40280. extra: 1697/1021,
  40281. bottom: 82/1779
  40282. }
  40283. },
  40284. head: {
  40285. height: math.unit(16, "feet"),
  40286. name: "Head",
  40287. image: {
  40288. source: "./media/characters/sayko/head.svg"
  40289. }
  40290. },
  40291. forepaw: {
  40292. height: math.unit(7.85, "feet"),
  40293. name: "Forepaw",
  40294. image: {
  40295. source: "./media/characters/sayko/forepaw.svg"
  40296. }
  40297. },
  40298. hindpaw: {
  40299. height: math.unit(8.8, "feet"),
  40300. name: "Hindpaw",
  40301. image: {
  40302. source: "./media/characters/sayko/hindpaw.svg"
  40303. }
  40304. },
  40305. },
  40306. [
  40307. {
  40308. name: "Normal",
  40309. height: math.unit(35, "feet"),
  40310. default: true
  40311. },
  40312. {
  40313. name: "Colossus",
  40314. height: math.unit(100, "meters")
  40315. },
  40316. {
  40317. name: "\"Small\" Deity",
  40318. height: math.unit(1, "km")
  40319. },
  40320. {
  40321. name: "\"Large\" Deity",
  40322. height: math.unit(15, "km")
  40323. },
  40324. ]
  40325. ))
  40326. characterMakers.push(() => makeCharacter(
  40327. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  40328. {
  40329. front: {
  40330. height: math.unit(6, "feet"),
  40331. weight: math.unit(250, "lb"),
  40332. name: "Front",
  40333. image: {
  40334. source: "./media/characters/mukiro/front.svg",
  40335. extra: 1368/1310,
  40336. bottom: 34/1402
  40337. }
  40338. },
  40339. },
  40340. [
  40341. {
  40342. name: "Normal",
  40343. height: math.unit(6, "feet"),
  40344. default: true
  40345. },
  40346. ]
  40347. ))
  40348. characterMakers.push(() => makeCharacter(
  40349. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  40350. {
  40351. front: {
  40352. height: math.unit(12 + 4/12, "feet"),
  40353. name: "Front",
  40354. image: {
  40355. source: "./media/characters/zeph-the-tiger-god/front.svg",
  40356. extra: 1346/1311,
  40357. bottom: 65/1411
  40358. }
  40359. },
  40360. },
  40361. [
  40362. {
  40363. name: "Base",
  40364. height: math.unit(12 + 4/12, "feet"),
  40365. default: true
  40366. },
  40367. {
  40368. name: "Macro",
  40369. height: math.unit(150, "feet")
  40370. },
  40371. {
  40372. name: "Mega",
  40373. height: math.unit(2, "miles")
  40374. },
  40375. {
  40376. name: "Demi God",
  40377. height: math.unit(4, "AU")
  40378. },
  40379. {
  40380. name: "God Size",
  40381. height: math.unit(1, "universe")
  40382. },
  40383. ]
  40384. ))
  40385. characterMakers.push(() => makeCharacter(
  40386. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  40387. {
  40388. front: {
  40389. height: math.unit(3 + 3/12, "feet"),
  40390. weight: math.unit(88, "lb"),
  40391. name: "Front",
  40392. image: {
  40393. source: "./media/characters/trey/front.svg",
  40394. extra: 1815/1509,
  40395. bottom: 60/1875
  40396. }
  40397. },
  40398. },
  40399. [
  40400. {
  40401. name: "Normal",
  40402. height: math.unit(3 + 3/12, "feet"),
  40403. default: true
  40404. },
  40405. ]
  40406. ))
  40407. characterMakers.push(() => makeCharacter(
  40408. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  40409. {
  40410. front: {
  40411. height: math.unit(4, "meters"),
  40412. name: "Front",
  40413. image: {
  40414. source: "./media/characters/adelonda/front.svg",
  40415. extra: 1077/982,
  40416. bottom: 39/1116
  40417. }
  40418. },
  40419. back: {
  40420. height: math.unit(4, "meters"),
  40421. name: "Back",
  40422. image: {
  40423. source: "./media/characters/adelonda/back.svg",
  40424. extra: 1105/1003,
  40425. bottom: 25/1130
  40426. }
  40427. },
  40428. feral: {
  40429. height: math.unit(40/1.5, "meters"),
  40430. name: "Feral",
  40431. image: {
  40432. source: "./media/characters/adelonda/feral.svg",
  40433. extra: 597/271,
  40434. bottom: 387/984
  40435. }
  40436. },
  40437. },
  40438. [
  40439. {
  40440. name: "Normal",
  40441. height: math.unit(4, "meters"),
  40442. default: true
  40443. },
  40444. ]
  40445. ))
  40446. characterMakers.push(() => makeCharacter(
  40447. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  40448. {
  40449. front: {
  40450. height: math.unit(8 + 4/12, "feet"),
  40451. weight: math.unit(670, "lb"),
  40452. name: "Front",
  40453. image: {
  40454. source: "./media/characters/acadiel/front.svg",
  40455. extra: 1901/1595,
  40456. bottom: 142/2043
  40457. }
  40458. },
  40459. },
  40460. [
  40461. {
  40462. name: "Normal",
  40463. height: math.unit(8 + 4/12, "feet"),
  40464. default: true
  40465. },
  40466. {
  40467. name: "Macro",
  40468. height: math.unit(200, "feet")
  40469. },
  40470. ]
  40471. ))
  40472. characterMakers.push(() => makeCharacter(
  40473. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  40474. {
  40475. front: {
  40476. height: math.unit(6 + 2/12, "feet"),
  40477. weight: math.unit(185, "lb"),
  40478. name: "Front",
  40479. image: {
  40480. source: "./media/characters/kayne-ein/front.svg",
  40481. extra: 1780/1560,
  40482. bottom: 81/1861
  40483. }
  40484. },
  40485. },
  40486. [
  40487. {
  40488. name: "Normal",
  40489. height: math.unit(6 + 2/12, "feet"),
  40490. default: true
  40491. },
  40492. {
  40493. name: "Transformation Stage",
  40494. height: math.unit(15, "feet")
  40495. },
  40496. {
  40497. name: "Macro",
  40498. height: math.unit(150, "feet")
  40499. },
  40500. {
  40501. name: "Earth's Shadow",
  40502. height: math.unit(6200, "miles")
  40503. },
  40504. {
  40505. name: "Universal Demon",
  40506. height: math.unit(28e9, "parsecs")
  40507. },
  40508. {
  40509. name: "Multiverse God",
  40510. height: math.unit(3, "multiverses")
  40511. },
  40512. ]
  40513. ))
  40514. characterMakers.push(() => makeCharacter(
  40515. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  40516. {
  40517. front: {
  40518. height: math.unit(5 + 5/12, "feet"),
  40519. name: "Front",
  40520. image: {
  40521. source: "./media/characters/fawn/front.svg",
  40522. extra: 1873/1731,
  40523. bottom: 95/1968
  40524. }
  40525. },
  40526. back: {
  40527. height: math.unit(5 + 5/12, "feet"),
  40528. name: "Back",
  40529. image: {
  40530. source: "./media/characters/fawn/back.svg",
  40531. extra: 1813/1700,
  40532. bottom: 14/1827
  40533. }
  40534. },
  40535. hoof: {
  40536. height: math.unit(1.45, "feet"),
  40537. name: "Hoof",
  40538. image: {
  40539. source: "./media/characters/fawn/hoof.svg"
  40540. }
  40541. },
  40542. },
  40543. [
  40544. {
  40545. name: "Normal",
  40546. height: math.unit(5 + 5/12, "feet"),
  40547. default: true
  40548. },
  40549. ]
  40550. ))
  40551. characterMakers.push(() => makeCharacter(
  40552. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  40553. {
  40554. front: {
  40555. height: math.unit(2 + 5/12, "feet"),
  40556. name: "Front",
  40557. image: {
  40558. source: "./media/characters/orion/front.svg",
  40559. extra: 1366/1304,
  40560. bottom: 43/1409
  40561. }
  40562. },
  40563. paw: {
  40564. height: math.unit(0.52, "feet"),
  40565. name: "Paw",
  40566. image: {
  40567. source: "./media/characters/orion/paw.svg"
  40568. }
  40569. },
  40570. },
  40571. [
  40572. {
  40573. name: "Normal",
  40574. height: math.unit(2 + 5/12, "feet"),
  40575. default: true
  40576. },
  40577. ]
  40578. ))
  40579. characterMakers.push(() => makeCharacter(
  40580. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  40581. {
  40582. front: {
  40583. height: math.unit(5 + 10/12, "feet"),
  40584. name: "Front",
  40585. image: {
  40586. source: "./media/characters/vera/front.svg",
  40587. extra: 1680/1575,
  40588. bottom: 49/1729
  40589. }
  40590. },
  40591. back: {
  40592. height: math.unit(5 + 10/12, "feet"),
  40593. name: "Back",
  40594. image: {
  40595. source: "./media/characters/vera/back.svg",
  40596. extra: 1700/1588,
  40597. bottom: 18/1718
  40598. }
  40599. },
  40600. arcanine: {
  40601. height: math.unit(6 + 8/12, "feet"),
  40602. name: "Arcanine",
  40603. image: {
  40604. source: "./media/characters/vera/arcanine.svg",
  40605. extra: 1590/1511,
  40606. bottom: 71/1661
  40607. }
  40608. },
  40609. maw: {
  40610. height: math.unit(0.82, "feet"),
  40611. name: "Maw",
  40612. image: {
  40613. source: "./media/characters/vera/maw.svg"
  40614. }
  40615. },
  40616. mawArcanine: {
  40617. height: math.unit(0.97, "feet"),
  40618. name: "Maw (Arcanine)",
  40619. image: {
  40620. source: "./media/characters/vera/maw-arcanine.svg"
  40621. }
  40622. },
  40623. paw: {
  40624. height: math.unit(0.75, "feet"),
  40625. name: "Paw",
  40626. image: {
  40627. source: "./media/characters/vera/paw.svg"
  40628. }
  40629. },
  40630. pawprint: {
  40631. height: math.unit(0.52, "feet"),
  40632. name: "Pawprint",
  40633. image: {
  40634. source: "./media/characters/vera/pawprint.svg"
  40635. }
  40636. },
  40637. },
  40638. [
  40639. {
  40640. name: "Normal",
  40641. height: math.unit(5 + 10/12, "feet"),
  40642. default: true
  40643. },
  40644. {
  40645. name: "Macro",
  40646. height: math.unit(75, "feet")
  40647. },
  40648. ]
  40649. ))
  40650. characterMakers.push(() => makeCharacter(
  40651. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  40652. {
  40653. front: {
  40654. height: math.unit(4, "feet"),
  40655. weight: math.unit(40, "lb"),
  40656. name: "Front",
  40657. image: {
  40658. source: "./media/characters/orvan-rabbit/front.svg",
  40659. extra: 1896/1642,
  40660. bottom: 29/1925
  40661. }
  40662. },
  40663. },
  40664. [
  40665. {
  40666. name: "Normal",
  40667. height: math.unit(4, "feet"),
  40668. default: true
  40669. },
  40670. ]
  40671. ))
  40672. characterMakers.push(() => makeCharacter(
  40673. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  40674. {
  40675. front: {
  40676. height: math.unit(6, "feet"),
  40677. weight: math.unit(168, "lb"),
  40678. name: "Front",
  40679. image: {
  40680. source: "./media/characters/lisa/front.svg",
  40681. extra: 2065/1867,
  40682. bottom: 46/2111
  40683. }
  40684. },
  40685. back: {
  40686. height: math.unit(6, "feet"),
  40687. weight: math.unit(168, "lb"),
  40688. name: "Back",
  40689. image: {
  40690. source: "./media/characters/lisa/back.svg",
  40691. extra: 1982/1838,
  40692. bottom: 29/2011
  40693. }
  40694. },
  40695. maw: {
  40696. height: math.unit(0.81, "feet"),
  40697. name: "Maw",
  40698. image: {
  40699. source: "./media/characters/lisa/maw.svg"
  40700. }
  40701. },
  40702. paw: {
  40703. height: math.unit(0.9, "feet"),
  40704. name: "Paw",
  40705. image: {
  40706. source: "./media/characters/lisa/paw.svg"
  40707. }
  40708. },
  40709. caribousune: {
  40710. height: math.unit(7 + 2/12, "feet"),
  40711. weight: math.unit(268, "lb"),
  40712. name: "Caribousune",
  40713. image: {
  40714. source: "./media/characters/lisa/caribousune.svg",
  40715. extra: 1843/1633,
  40716. bottom: 29/1872
  40717. }
  40718. },
  40719. frontCaribousune: {
  40720. height: math.unit(7 + 2/12, "feet"),
  40721. weight: math.unit(268, "lb"),
  40722. name: "Front (Caribousune)",
  40723. image: {
  40724. source: "./media/characters/lisa/front-caribousune.svg",
  40725. extra: 1818/1638,
  40726. bottom: 52/1870
  40727. }
  40728. },
  40729. sideCaribousune: {
  40730. height: math.unit(7 + 2/12, "feet"),
  40731. weight: math.unit(268, "lb"),
  40732. name: "Side (Caribousune)",
  40733. image: {
  40734. source: "./media/characters/lisa/side-caribousune.svg",
  40735. extra: 1851/1635,
  40736. bottom: 16/1867
  40737. }
  40738. },
  40739. backCaribousune: {
  40740. height: math.unit(7 + 2/12, "feet"),
  40741. weight: math.unit(268, "lb"),
  40742. name: "Back (Caribousune)",
  40743. image: {
  40744. source: "./media/characters/lisa/back-caribousune.svg",
  40745. extra: 1801/1604,
  40746. bottom: 44/1845
  40747. }
  40748. },
  40749. caribou: {
  40750. height: math.unit(7 + 2/12, "feet"),
  40751. weight: math.unit(268, "lb"),
  40752. name: "Caribou",
  40753. image: {
  40754. source: "./media/characters/lisa/caribou.svg",
  40755. extra: 1843/1633,
  40756. bottom: 29/1872
  40757. }
  40758. },
  40759. frontCaribou: {
  40760. height: math.unit(7 + 2/12, "feet"),
  40761. weight: math.unit(268, "lb"),
  40762. name: "Front (Caribou)",
  40763. image: {
  40764. source: "./media/characters/lisa/front-caribou.svg",
  40765. extra: 1818/1638,
  40766. bottom: 52/1870
  40767. }
  40768. },
  40769. sideCaribou: {
  40770. height: math.unit(7 + 2/12, "feet"),
  40771. weight: math.unit(268, "lb"),
  40772. name: "Side (Caribou)",
  40773. image: {
  40774. source: "./media/characters/lisa/side-caribou.svg",
  40775. extra: 1851/1635,
  40776. bottom: 16/1867
  40777. }
  40778. },
  40779. backCaribou: {
  40780. height: math.unit(7 + 2/12, "feet"),
  40781. weight: math.unit(268, "lb"),
  40782. name: "Back (Caribou)",
  40783. image: {
  40784. source: "./media/characters/lisa/back-caribou.svg",
  40785. extra: 1801/1604,
  40786. bottom: 44/1845
  40787. }
  40788. },
  40789. mawCaribou: {
  40790. height: math.unit(1.45, "feet"),
  40791. name: "Maw (Caribou)",
  40792. image: {
  40793. source: "./media/characters/lisa/maw-caribou.svg"
  40794. }
  40795. },
  40796. mawCaribousune: {
  40797. height: math.unit(1.45, "feet"),
  40798. name: "Maw (Caribousune)",
  40799. image: {
  40800. source: "./media/characters/lisa/maw-caribousune.svg"
  40801. }
  40802. },
  40803. pawCaribousune: {
  40804. height: math.unit(1.61, "feet"),
  40805. name: "Paw (Caribou)",
  40806. image: {
  40807. source: "./media/characters/lisa/paw-caribousune.svg"
  40808. }
  40809. },
  40810. },
  40811. [
  40812. {
  40813. name: "Normal",
  40814. height: math.unit(6, "feet")
  40815. },
  40816. {
  40817. name: "God Size",
  40818. height: math.unit(72, "feet"),
  40819. default: true
  40820. },
  40821. {
  40822. name: "Towering",
  40823. height: math.unit(288, "feet")
  40824. },
  40825. {
  40826. name: "City Size",
  40827. height: math.unit(48384, "feet")
  40828. },
  40829. {
  40830. name: "Continental",
  40831. height: math.unit(4200, "miles")
  40832. },
  40833. {
  40834. name: "Planet Eater",
  40835. height: math.unit(42, "earths")
  40836. },
  40837. {
  40838. name: "Star Swallower",
  40839. height: math.unit(42, "solarradii")
  40840. },
  40841. {
  40842. name: "System Swallower",
  40843. height: math.unit(84000, "AU")
  40844. },
  40845. {
  40846. name: "Galaxy Gobbler",
  40847. height: math.unit(42, "galaxies")
  40848. },
  40849. {
  40850. name: "Universe Devourer",
  40851. height: math.unit(42, "universes")
  40852. },
  40853. {
  40854. name: "Multiverse Muncher",
  40855. height: math.unit(42, "multiverses")
  40856. },
  40857. ]
  40858. ))
  40859. characterMakers.push(() => makeCharacter(
  40860. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  40861. {
  40862. front: {
  40863. height: math.unit(36, "feet"),
  40864. name: "Front",
  40865. image: {
  40866. source: "./media/characters/shadow-rat/front.svg",
  40867. extra: 1845/1758,
  40868. bottom: 83/1928
  40869. }
  40870. },
  40871. },
  40872. [
  40873. {
  40874. name: "Macro",
  40875. height: math.unit(36, "feet"),
  40876. default: true
  40877. },
  40878. ]
  40879. ))
  40880. characterMakers.push(() => makeCharacter(
  40881. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  40882. {
  40883. side: {
  40884. height: math.unit(8, "feet"),
  40885. weight: math.unit(2630, "lb"),
  40886. name: "Side",
  40887. image: {
  40888. source: "./media/characters/torallia/side.svg",
  40889. extra: 2164/2021,
  40890. bottom: 371/2535
  40891. }
  40892. },
  40893. },
  40894. [
  40895. {
  40896. name: "Mortal Interaction",
  40897. height: math.unit(8, "feet")
  40898. },
  40899. {
  40900. name: "Natural",
  40901. height: math.unit(24, "feet"),
  40902. default: true
  40903. },
  40904. {
  40905. name: "Giant",
  40906. height: math.unit(80, "feet")
  40907. },
  40908. {
  40909. name: "Kaiju",
  40910. height: math.unit(240, "feet")
  40911. },
  40912. {
  40913. name: "Macro",
  40914. height: math.unit(800, "feet")
  40915. },
  40916. {
  40917. name: "Macro+",
  40918. height: math.unit(2400, "feet")
  40919. },
  40920. {
  40921. name: "Macro++",
  40922. height: math.unit(8000, "feet")
  40923. },
  40924. {
  40925. name: "City-Crushing",
  40926. height: math.unit(24000, "feet")
  40927. },
  40928. {
  40929. name: "Mountain-Mashing",
  40930. height: math.unit(80000, "feet")
  40931. },
  40932. {
  40933. name: "District Demolisher",
  40934. height: math.unit(240000, "feet")
  40935. },
  40936. {
  40937. name: "Tri-County Terror",
  40938. height: math.unit(800000, "feet")
  40939. },
  40940. {
  40941. name: "State Smasher",
  40942. height: math.unit(2.4e6, "feet")
  40943. },
  40944. {
  40945. name: "Nation Nemesis",
  40946. height: math.unit(8e6, "feet")
  40947. },
  40948. {
  40949. name: "Continent Cracker",
  40950. height: math.unit(2.4e7, "feet")
  40951. },
  40952. {
  40953. name: "Planet-Pillaging",
  40954. height: math.unit(8e7, "feet")
  40955. },
  40956. {
  40957. name: "Earth-Eclipsing",
  40958. height: math.unit(2.4e8, "feet")
  40959. },
  40960. {
  40961. name: "Jovian-Jostling",
  40962. height: math.unit(8e8, "feet")
  40963. },
  40964. {
  40965. name: "Gas Giant Gulper",
  40966. height: math.unit(2.4e9, "feet")
  40967. },
  40968. {
  40969. name: "Astral Annihilator",
  40970. height: math.unit(8e9, "feet")
  40971. },
  40972. {
  40973. name: "Celestial Conqueror",
  40974. height: math.unit(2.4e10, "feet")
  40975. },
  40976. {
  40977. name: "Sol-Swallowing",
  40978. height: math.unit(8e10, "feet")
  40979. },
  40980. {
  40981. name: "Hunter of the Heavens",
  40982. height: math.unit(2.4e13, "feet")
  40983. },
  40984. ]
  40985. ))
  40986. characterMakers.push(() => makeCharacter(
  40987. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  40988. {
  40989. front: {
  40990. height: math.unit(6 + 8/12, "feet"),
  40991. weight: math.unit(250, "kilograms"),
  40992. volume: math.unit(28, "liters"),
  40993. name: "Front",
  40994. image: {
  40995. source: "./media/characters/rebecca-pawlson/front.svg",
  40996. extra: 1737/1596,
  40997. bottom: 107/1844
  40998. }
  40999. },
  41000. back: {
  41001. height: math.unit(6 + 8/12, "feet"),
  41002. weight: math.unit(250, "kilograms"),
  41003. volume: math.unit(28, "liters"),
  41004. name: "Back",
  41005. image: {
  41006. source: "./media/characters/rebecca-pawlson/back.svg",
  41007. extra: 1702/1523,
  41008. bottom: 86/1788
  41009. }
  41010. },
  41011. },
  41012. [
  41013. {
  41014. name: "Normal",
  41015. height: math.unit(6 + 8/12, "feet")
  41016. },
  41017. {
  41018. name: "Mini Macro",
  41019. height: math.unit(10, "feet"),
  41020. default: true
  41021. },
  41022. {
  41023. name: "Macro",
  41024. height: math.unit(100, "feet")
  41025. },
  41026. {
  41027. name: "Mega Macro",
  41028. height: math.unit(2500, "feet")
  41029. },
  41030. {
  41031. name: "Giga Macro",
  41032. height: math.unit(50, "miles")
  41033. },
  41034. ]
  41035. ))
  41036. characterMakers.push(() => makeCharacter(
  41037. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  41038. {
  41039. front: {
  41040. height: math.unit(7 + 6/12, "feet"),
  41041. weight: math.unit(600, "lb"),
  41042. name: "Front",
  41043. image: {
  41044. source: "./media/characters/moxie-nova/front.svg",
  41045. extra: 1734/1652,
  41046. bottom: 41/1775
  41047. }
  41048. },
  41049. },
  41050. [
  41051. {
  41052. name: "Normal",
  41053. height: math.unit(7 + 6/12, "feet"),
  41054. default: true
  41055. },
  41056. ]
  41057. ))
  41058. characterMakers.push(() => makeCharacter(
  41059. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  41060. {
  41061. goat: {
  41062. height: math.unit(4, "feet"),
  41063. weight: math.unit(180, "lb"),
  41064. name: "Goat",
  41065. image: {
  41066. source: "./media/characters/tiffany/goat.svg",
  41067. extra: 1845/1595,
  41068. bottom: 106/1951
  41069. }
  41070. },
  41071. front: {
  41072. height: math.unit(5, "feet"),
  41073. weight: math.unit(150, "lb"),
  41074. name: "Foxcoon",
  41075. image: {
  41076. source: "./media/characters/tiffany/foxcoon.svg",
  41077. extra: 1941/1845,
  41078. bottom: 58/1999
  41079. }
  41080. },
  41081. },
  41082. [
  41083. {
  41084. name: "Normal",
  41085. height: math.unit(5, "feet"),
  41086. default: true
  41087. },
  41088. ]
  41089. ))
  41090. characterMakers.push(() => makeCharacter(
  41091. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  41092. {
  41093. front: {
  41094. height: math.unit(8, "feet"),
  41095. weight: math.unit(300, "lb"),
  41096. name: "Front",
  41097. image: {
  41098. source: "./media/characters/raxinath/front.svg",
  41099. extra: 1407/1309,
  41100. bottom: 39/1446
  41101. }
  41102. },
  41103. back: {
  41104. height: math.unit(8, "feet"),
  41105. weight: math.unit(300, "lb"),
  41106. name: "Back",
  41107. image: {
  41108. source: "./media/characters/raxinath/back.svg",
  41109. extra: 1405/1315,
  41110. bottom: 9/1414
  41111. }
  41112. },
  41113. },
  41114. [
  41115. {
  41116. name: "Speck",
  41117. height: math.unit(0.5, "nm")
  41118. },
  41119. {
  41120. name: "Micro",
  41121. height: math.unit(3, "inches")
  41122. },
  41123. {
  41124. name: "Kobold",
  41125. height: math.unit(3, "feet")
  41126. },
  41127. {
  41128. name: "Normal",
  41129. height: math.unit(8, "feet"),
  41130. default: true
  41131. },
  41132. {
  41133. name: "Giant",
  41134. height: math.unit(50, "feet")
  41135. },
  41136. {
  41137. name: "Macro",
  41138. height: math.unit(1000, "feet")
  41139. },
  41140. {
  41141. name: "Megamacro",
  41142. height: math.unit(1, "mile")
  41143. },
  41144. ]
  41145. ))
  41146. characterMakers.push(() => makeCharacter(
  41147. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  41148. {
  41149. front: {
  41150. height: math.unit(10, "feet"),
  41151. weight: math.unit(1442, "lb"),
  41152. name: "Front",
  41153. image: {
  41154. source: "./media/characters/mal-dragon/front.svg",
  41155. extra: 1515/1444,
  41156. bottom: 113/1628
  41157. }
  41158. },
  41159. back: {
  41160. height: math.unit(10, "feet"),
  41161. weight: math.unit(1442, "lb"),
  41162. name: "Back",
  41163. image: {
  41164. source: "./media/characters/mal-dragon/back.svg",
  41165. extra: 1527/1434,
  41166. bottom: 25/1552
  41167. }
  41168. },
  41169. },
  41170. [
  41171. {
  41172. name: "Mortal Interaction",
  41173. height: math.unit(10, "feet"),
  41174. default: true
  41175. },
  41176. {
  41177. name: "Large",
  41178. height: math.unit(30, "feet")
  41179. },
  41180. {
  41181. name: "Kaiju",
  41182. height: math.unit(300, "feet")
  41183. },
  41184. {
  41185. name: "Megamacro",
  41186. height: math.unit(10000, "feet")
  41187. },
  41188. {
  41189. name: "Continent Cracker",
  41190. height: math.unit(30000000, "feet")
  41191. },
  41192. {
  41193. name: "Sol-Swallowing",
  41194. height: math.unit(1e11, "feet")
  41195. },
  41196. {
  41197. name: "Light Universal",
  41198. height: math.unit(5, "universes")
  41199. },
  41200. {
  41201. name: "Universe Atoms",
  41202. height: math.unit(1.829e9, "universes")
  41203. },
  41204. {
  41205. name: "Light Multiversal",
  41206. height: math.unit(5, "multiverses")
  41207. },
  41208. {
  41209. name: "Multiverse Atoms",
  41210. height: math.unit(1.829e9, "multiverses")
  41211. },
  41212. {
  41213. name: "Fabric of Time",
  41214. height: math.unit(1e262, "multiverses")
  41215. },
  41216. ]
  41217. ))
  41218. characterMakers.push(() => makeCharacter(
  41219. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  41220. {
  41221. front: {
  41222. height: math.unit(9, "feet"),
  41223. weight: math.unit(1050, "lb"),
  41224. name: "Front",
  41225. image: {
  41226. source: "./media/characters/tabitha/front.svg",
  41227. extra: 2083/1994,
  41228. bottom: 68/2151
  41229. }
  41230. },
  41231. },
  41232. [
  41233. {
  41234. name: "Baseline",
  41235. height: math.unit(9, "feet"),
  41236. default: true
  41237. },
  41238. {
  41239. name: "Giant",
  41240. height: math.unit(90, "feet")
  41241. },
  41242. {
  41243. name: "Macro",
  41244. height: math.unit(900, "feet")
  41245. },
  41246. {
  41247. name: "Megamacro",
  41248. height: math.unit(9000, "feet")
  41249. },
  41250. {
  41251. name: "City-Crushing",
  41252. height: math.unit(27000, "feet")
  41253. },
  41254. {
  41255. name: "Mountain-Mashing",
  41256. height: math.unit(90000, "feet")
  41257. },
  41258. {
  41259. name: "Nation Nemesis",
  41260. height: math.unit(9e6, "feet")
  41261. },
  41262. {
  41263. name: "Continent Cracker",
  41264. height: math.unit(27e6, "feet")
  41265. },
  41266. {
  41267. name: "Earth-Eclipsing",
  41268. height: math.unit(2.7e8, "feet")
  41269. },
  41270. {
  41271. name: "Gas Giant Gulper",
  41272. height: math.unit(2.7e9, "feet")
  41273. },
  41274. {
  41275. name: "Sol-Swallowing",
  41276. height: math.unit(9e10, "feet")
  41277. },
  41278. {
  41279. name: "Galaxy Gulper",
  41280. height: math.unit(9, "galaxies")
  41281. },
  41282. {
  41283. name: "Cosmos Churner",
  41284. height: math.unit(9, "universes")
  41285. },
  41286. ]
  41287. ))
  41288. characterMakers.push(() => makeCharacter(
  41289. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  41290. {
  41291. front: {
  41292. height: math.unit(160, "cm"),
  41293. weight: math.unit(55, "kg"),
  41294. name: "Front",
  41295. image: {
  41296. source: "./media/characters/tow/front.svg",
  41297. extra: 1751/1722,
  41298. bottom: 74/1825
  41299. }
  41300. },
  41301. },
  41302. [
  41303. {
  41304. name: "Norm",
  41305. height: math.unit(160, "cm")
  41306. },
  41307. {
  41308. name: "Casual",
  41309. height: math.unit(3200, "m"),
  41310. default: true
  41311. },
  41312. {
  41313. name: "Show-Off",
  41314. height: math.unit(160, "km")
  41315. },
  41316. ]
  41317. ))
  41318. characterMakers.push(() => makeCharacter(
  41319. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  41320. {
  41321. front: {
  41322. height: math.unit(7 + 11/12, "feet"),
  41323. weight: math.unit(342.8, "lb"),
  41324. name: "Front",
  41325. image: {
  41326. source: "./media/characters/vivian-orca-dragon/front.svg",
  41327. extra: 1890/1865,
  41328. bottom: 28/1918
  41329. }
  41330. },
  41331. },
  41332. [
  41333. {
  41334. name: "Micro",
  41335. height: math.unit(5, "inches")
  41336. },
  41337. {
  41338. name: "Normal",
  41339. height: math.unit(7 + 11/12, "feet"),
  41340. default: true
  41341. },
  41342. {
  41343. name: "Macro",
  41344. height: math.unit(395 + 7/12, "feet")
  41345. },
  41346. ]
  41347. ))
  41348. characterMakers.push(() => makeCharacter(
  41349. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  41350. {
  41351. side: {
  41352. height: math.unit(10, "feet"),
  41353. weight: math.unit(1442, "lb"),
  41354. name: "Side",
  41355. image: {
  41356. source: "./media/characters/lotherakon/side.svg",
  41357. extra: 1604/1497,
  41358. bottom: 89/1693
  41359. }
  41360. },
  41361. },
  41362. [
  41363. {
  41364. name: "Mortal Interaction",
  41365. height: math.unit(10, "feet")
  41366. },
  41367. {
  41368. name: "Large",
  41369. height: math.unit(30, "feet"),
  41370. default: true
  41371. },
  41372. {
  41373. name: "Giant",
  41374. height: math.unit(100, "feet")
  41375. },
  41376. {
  41377. name: "Kaiju",
  41378. height: math.unit(300, "feet")
  41379. },
  41380. {
  41381. name: "Macro",
  41382. height: math.unit(1000, "feet")
  41383. },
  41384. {
  41385. name: "Macro+",
  41386. height: math.unit(3000, "feet")
  41387. },
  41388. {
  41389. name: "Megamacro",
  41390. height: math.unit(10000, "feet")
  41391. },
  41392. {
  41393. name: "City-Crushing",
  41394. height: math.unit(30000, "feet")
  41395. },
  41396. {
  41397. name: "Continent Cracker",
  41398. height: math.unit(30e6, "feet")
  41399. },
  41400. {
  41401. name: "Earth Eclipsing",
  41402. height: math.unit(3e8, "feet")
  41403. },
  41404. {
  41405. name: "Gas Giant Gulper",
  41406. height: math.unit(3e9, "feet")
  41407. },
  41408. {
  41409. name: "Sol-Swallowing",
  41410. height: math.unit(1e11, "feet")
  41411. },
  41412. {
  41413. name: "System Swallower",
  41414. height: math.unit(3e14, "feet")
  41415. },
  41416. {
  41417. name: "Galaxy Gulper",
  41418. height: math.unit(10, "galaxies")
  41419. },
  41420. {
  41421. name: "Light Universal",
  41422. height: math.unit(5, "universes")
  41423. },
  41424. {
  41425. name: "Universe Palm",
  41426. height: math.unit(20, "universes")
  41427. },
  41428. {
  41429. name: "Light Multiversal",
  41430. height: math.unit(5, "multiverses")
  41431. },
  41432. {
  41433. name: "Multiverse Palm",
  41434. height: math.unit(20, "multiverses")
  41435. },
  41436. {
  41437. name: "Inferno Incarnate",
  41438. height: math.unit(1e7, "multiverses")
  41439. },
  41440. ]
  41441. ))
  41442. characterMakers.push(() => makeCharacter(
  41443. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  41444. {
  41445. front: {
  41446. height: math.unit(8, "feet"),
  41447. weight: math.unit(1200, "lb"),
  41448. name: "Front",
  41449. image: {
  41450. source: "./media/characters/malithee/front.svg",
  41451. extra: 1675/1640,
  41452. bottom: 162/1837
  41453. }
  41454. },
  41455. },
  41456. [
  41457. {
  41458. name: "Mortal Interaction",
  41459. height: math.unit(8, "feet"),
  41460. default: true
  41461. },
  41462. {
  41463. name: "Large",
  41464. height: math.unit(24, "feet")
  41465. },
  41466. {
  41467. name: "Kaiju",
  41468. height: math.unit(240, "feet")
  41469. },
  41470. {
  41471. name: "Megamacro",
  41472. height: math.unit(8000, "feet")
  41473. },
  41474. {
  41475. name: "Continent Cracker",
  41476. height: math.unit(24e6, "feet")
  41477. },
  41478. {
  41479. name: "Earth-Eclipsing",
  41480. height: math.unit(2.4e8, "feet")
  41481. },
  41482. {
  41483. name: "Sol-Swallowing",
  41484. height: math.unit(8e10, "feet")
  41485. },
  41486. {
  41487. name: "Galaxy Gulper",
  41488. height: math.unit(8, "galaxies")
  41489. },
  41490. {
  41491. name: "Light Universal",
  41492. height: math.unit(4, "universes")
  41493. },
  41494. {
  41495. name: "Universe Atoms",
  41496. height: math.unit(1.829e9, "universes")
  41497. },
  41498. {
  41499. name: "Light Multiversal",
  41500. height: math.unit(4, "multiverses")
  41501. },
  41502. {
  41503. name: "Multiverse Atoms",
  41504. height: math.unit(1.829e9, "multiverses")
  41505. },
  41506. {
  41507. name: "Nigh-Omnipresence",
  41508. height: math.unit(8e261, "multiverses")
  41509. },
  41510. ]
  41511. ))
  41512. characterMakers.push(() => makeCharacter(
  41513. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  41514. {
  41515. front: {
  41516. height: math.unit(10, "feet"),
  41517. weight: math.unit(1500, "lb"),
  41518. name: "Front",
  41519. image: {
  41520. source: "./media/characters/miles-thestia/front.svg",
  41521. extra: 1812/1727,
  41522. bottom: 86/1898
  41523. }
  41524. },
  41525. back: {
  41526. height: math.unit(10, "feet"),
  41527. weight: math.unit(1500, "lb"),
  41528. name: "Back",
  41529. image: {
  41530. source: "./media/characters/miles-thestia/back.svg",
  41531. extra: 1799/1690,
  41532. bottom: 47/1846
  41533. }
  41534. },
  41535. frontNsfw: {
  41536. height: math.unit(10, "feet"),
  41537. weight: math.unit(1500, "lb"),
  41538. name: "Front (NSFW)",
  41539. image: {
  41540. source: "./media/characters/miles-thestia/front-nsfw.svg",
  41541. extra: 1812/1727,
  41542. bottom: 86/1898
  41543. }
  41544. },
  41545. },
  41546. [
  41547. {
  41548. name: "Mini-Macro",
  41549. height: math.unit(10, "feet"),
  41550. default: true
  41551. },
  41552. ]
  41553. ))
  41554. characterMakers.push(() => makeCharacter(
  41555. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  41556. {
  41557. front: {
  41558. height: math.unit(25, "feet"),
  41559. name: "Front",
  41560. image: {
  41561. source: "./media/characters/titan-s-wulf/front.svg",
  41562. extra: 1560/1484,
  41563. bottom: 76/1636
  41564. }
  41565. },
  41566. },
  41567. [
  41568. {
  41569. name: "Smallest",
  41570. height: math.unit(25, "feet"),
  41571. default: true
  41572. },
  41573. {
  41574. name: "Normal",
  41575. height: math.unit(200, "feet")
  41576. },
  41577. {
  41578. name: "Macro",
  41579. height: math.unit(200000, "feet")
  41580. },
  41581. {
  41582. name: "Multiversal Original",
  41583. height: math.unit(10000, "multiverses")
  41584. },
  41585. ]
  41586. ))
  41587. characterMakers.push(() => makeCharacter(
  41588. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  41589. {
  41590. front: {
  41591. height: math.unit(8, "feet"),
  41592. weight: math.unit(553, "lb"),
  41593. name: "Front",
  41594. image: {
  41595. source: "./media/characters/tawendeh/front.svg",
  41596. extra: 2365/2268,
  41597. bottom: 83/2448
  41598. }
  41599. },
  41600. frontClothed: {
  41601. height: math.unit(8, "feet"),
  41602. weight: math.unit(553, "lb"),
  41603. name: "Front (Clothed)",
  41604. image: {
  41605. source: "./media/characters/tawendeh/front-clothed.svg",
  41606. extra: 2365/2268,
  41607. bottom: 83/2448
  41608. }
  41609. },
  41610. back: {
  41611. height: math.unit(8, "feet"),
  41612. weight: math.unit(553, "lb"),
  41613. name: "Back",
  41614. image: {
  41615. source: "./media/characters/tawendeh/back.svg",
  41616. extra: 2397/2294,
  41617. bottom: 42/2439
  41618. }
  41619. },
  41620. },
  41621. [
  41622. {
  41623. name: "Mortal Interaction",
  41624. height: math.unit(8, "feet"),
  41625. default: true
  41626. },
  41627. {
  41628. name: "Giant",
  41629. height: math.unit(80, "feet")
  41630. },
  41631. {
  41632. name: "Macro",
  41633. height: math.unit(800, "feet")
  41634. },
  41635. {
  41636. name: "Megamacro",
  41637. height: math.unit(8000, "feet")
  41638. },
  41639. {
  41640. name: "City-Crushing",
  41641. height: math.unit(24000, "feet")
  41642. },
  41643. {
  41644. name: "Mountain-Mashing",
  41645. height: math.unit(80000, "feet")
  41646. },
  41647. {
  41648. name: "Nation Nemesis",
  41649. height: math.unit(8e6, "feet")
  41650. },
  41651. {
  41652. name: "Continent Cracker",
  41653. height: math.unit(24e6, "feet")
  41654. },
  41655. {
  41656. name: "Earth-Eclipsing",
  41657. height: math.unit(2.4e8, "feet")
  41658. },
  41659. {
  41660. name: "Gas Giant Gulper",
  41661. height: math.unit(2.4e9, "feet")
  41662. },
  41663. {
  41664. name: "Sol-Swallowing",
  41665. height: math.unit(8e10, "feet")
  41666. },
  41667. {
  41668. name: "Galaxy Gulper",
  41669. height: math.unit(8, "galaxies")
  41670. },
  41671. {
  41672. name: "Cosmos Churner",
  41673. height: math.unit(8, "universes")
  41674. },
  41675. {
  41676. name: "Omnipotent Otter",
  41677. height: math.unit(80, "universes")
  41678. },
  41679. ]
  41680. ))
  41681. characterMakers.push(() => makeCharacter(
  41682. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  41683. {
  41684. front: {
  41685. height: math.unit(2.6, "meters"),
  41686. weight: math.unit(900, "kg"),
  41687. name: "Front",
  41688. image: {
  41689. source: "./media/characters/neesha/front.svg",
  41690. extra: 1803/1653,
  41691. bottom: 128/1931
  41692. }
  41693. },
  41694. },
  41695. [
  41696. {
  41697. name: "Normal",
  41698. height: math.unit(2.6, "meters"),
  41699. default: true
  41700. },
  41701. {
  41702. name: "Macro",
  41703. height: math.unit(50, "meters")
  41704. },
  41705. ]
  41706. ))
  41707. characterMakers.push(() => makeCharacter(
  41708. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  41709. {
  41710. front: {
  41711. height: math.unit(5, "feet"),
  41712. weight: math.unit(185, "lb"),
  41713. name: "Front",
  41714. image: {
  41715. source: "./media/characters/kyera/front.svg",
  41716. extra: 1875/1790,
  41717. bottom: 96/1971
  41718. }
  41719. },
  41720. },
  41721. [
  41722. {
  41723. name: "Normal",
  41724. height: math.unit(5, "feet"),
  41725. default: true
  41726. },
  41727. ]
  41728. ))
  41729. characterMakers.push(() => makeCharacter(
  41730. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  41731. {
  41732. front: {
  41733. height: math.unit(7 + 6/12, "feet"),
  41734. weight: math.unit(540, "lb"),
  41735. name: "Front",
  41736. image: {
  41737. source: "./media/characters/yuko/front.svg",
  41738. extra: 1282/1222,
  41739. bottom: 101/1383
  41740. }
  41741. },
  41742. frontClothed: {
  41743. height: math.unit(7 + 6/12, "feet"),
  41744. weight: math.unit(540, "lb"),
  41745. name: "Front (Clothed)",
  41746. image: {
  41747. source: "./media/characters/yuko/front-clothed.svg",
  41748. extra: 1282/1222,
  41749. bottom: 101/1383
  41750. }
  41751. },
  41752. },
  41753. [
  41754. {
  41755. name: "Normal",
  41756. height: math.unit(7 + 6/12, "feet"),
  41757. default: true
  41758. },
  41759. {
  41760. name: "Macro",
  41761. height: math.unit(26 + 9/12, "feet")
  41762. },
  41763. {
  41764. name: "Megamacro",
  41765. height: math.unit(300, "feet")
  41766. },
  41767. {
  41768. name: "Gigamacro",
  41769. height: math.unit(5000, "feet")
  41770. },
  41771. {
  41772. name: "Planetary",
  41773. height: math.unit(10000, "miles")
  41774. },
  41775. ]
  41776. ))
  41777. characterMakers.push(() => makeCharacter(
  41778. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  41779. {
  41780. front: {
  41781. height: math.unit(8 + 2/12, "feet"),
  41782. weight: math.unit(600, "lb"),
  41783. name: "Front",
  41784. image: {
  41785. source: "./media/characters/deam-nitrel/front.svg",
  41786. extra: 1308/1234,
  41787. bottom: 125/1433
  41788. }
  41789. },
  41790. },
  41791. [
  41792. {
  41793. name: "Normal",
  41794. height: math.unit(8 + 2/12, "feet"),
  41795. default: true
  41796. },
  41797. ]
  41798. ))
  41799. characterMakers.push(() => makeCharacter(
  41800. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  41801. {
  41802. front: {
  41803. height: math.unit(6.1, "feet"),
  41804. weight: math.unit(180, "lb"),
  41805. name: "Front",
  41806. image: {
  41807. source: "./media/characters/skyress/front.svg",
  41808. extra: 1045/915,
  41809. bottom: 28/1073
  41810. }
  41811. },
  41812. maw: {
  41813. height: math.unit(1, "feet"),
  41814. name: "Maw",
  41815. image: {
  41816. source: "./media/characters/skyress/maw.svg"
  41817. }
  41818. },
  41819. },
  41820. [
  41821. {
  41822. name: "Normal",
  41823. height: math.unit(6.1, "feet"),
  41824. default: true
  41825. },
  41826. {
  41827. name: "Macro",
  41828. height: math.unit(200, "feet")
  41829. },
  41830. ]
  41831. ))
  41832. characterMakers.push(() => makeCharacter(
  41833. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  41834. {
  41835. front: {
  41836. height: math.unit(4 + 2/12, "feet"),
  41837. weight: math.unit(40, "kg"),
  41838. name: "Front",
  41839. image: {
  41840. source: "./media/characters/amethyst-jones/front.svg",
  41841. extra: 1220/1150,
  41842. bottom: 101/1321
  41843. }
  41844. },
  41845. },
  41846. [
  41847. {
  41848. name: "Normal",
  41849. height: math.unit(4 + 2/12, "feet"),
  41850. default: true
  41851. },
  41852. ]
  41853. ))
  41854. characterMakers.push(() => makeCharacter(
  41855. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  41856. {
  41857. front: {
  41858. height: math.unit(1.7, "m"),
  41859. weight: math.unit(135, "lb"),
  41860. name: "Front",
  41861. image: {
  41862. source: "./media/characters/jade/front.svg",
  41863. extra: 1818/1767,
  41864. bottom: 32/1850
  41865. }
  41866. },
  41867. back: {
  41868. height: math.unit(1.7, "m"),
  41869. weight: math.unit(135, "lb"),
  41870. name: "Back",
  41871. image: {
  41872. source: "./media/characters/jade/back.svg",
  41873. extra: 1869/1809,
  41874. bottom: 35/1904
  41875. }
  41876. },
  41877. hand: {
  41878. height: math.unit(0.24, "m"),
  41879. name: "Hand",
  41880. image: {
  41881. source: "./media/characters/jade/hand.svg"
  41882. }
  41883. },
  41884. foot: {
  41885. height: math.unit(0.263, "m"),
  41886. name: "Foot",
  41887. image: {
  41888. source: "./media/characters/jade/foot.svg"
  41889. }
  41890. },
  41891. dick: {
  41892. height: math.unit(0.47, "m"),
  41893. name: "Dick",
  41894. image: {
  41895. source: "./media/characters/jade/dick.svg"
  41896. }
  41897. },
  41898. },
  41899. [
  41900. {
  41901. name: "Micro",
  41902. height: math.unit(22, "cm")
  41903. },
  41904. {
  41905. name: "Normal",
  41906. height: math.unit(1.7, "m"),
  41907. default: true
  41908. },
  41909. {
  41910. name: "Macro",
  41911. height: math.unit(152, "m")
  41912. },
  41913. ]
  41914. ))
  41915. characterMakers.push(() => makeCharacter(
  41916. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  41917. {
  41918. front: {
  41919. height: math.unit(100, "miles"),
  41920. weight: math.unit(20000, "tons"),
  41921. name: "Front",
  41922. image: {
  41923. source: "./media/characters/cookie/front.svg",
  41924. extra: 1125/1070,
  41925. bottom: 30/1155
  41926. }
  41927. },
  41928. },
  41929. [
  41930. {
  41931. name: "Big",
  41932. height: math.unit(50, "feet")
  41933. },
  41934. {
  41935. name: "Macro",
  41936. height: math.unit(100, "miles"),
  41937. default: true
  41938. },
  41939. {
  41940. name: "Megamacro",
  41941. height: math.unit(90000, "miles")
  41942. },
  41943. ]
  41944. ))
  41945. characterMakers.push(() => makeCharacter(
  41946. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  41947. {
  41948. front: {
  41949. height: math.unit(6, "feet"),
  41950. weight: math.unit(145, "lb"),
  41951. name: "Front",
  41952. image: {
  41953. source: "./media/characters/farzian/front.svg",
  41954. extra: 1902/1693,
  41955. bottom: 108/2010
  41956. }
  41957. },
  41958. },
  41959. [
  41960. {
  41961. name: "Macro",
  41962. height: math.unit(500, "feet"),
  41963. default: true
  41964. },
  41965. ]
  41966. ))
  41967. characterMakers.push(() => makeCharacter(
  41968. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  41969. {
  41970. front: {
  41971. height: math.unit(3 + 6/12, "feet"),
  41972. weight: math.unit(50, "lb"),
  41973. name: "Front",
  41974. image: {
  41975. source: "./media/characters/kimberly-tilson/front.svg",
  41976. extra: 1400/1322,
  41977. bottom: 36/1436
  41978. }
  41979. },
  41980. back: {
  41981. height: math.unit(3 + 6/12, "feet"),
  41982. weight: math.unit(50, "lb"),
  41983. name: "Back",
  41984. image: {
  41985. source: "./media/characters/kimberly-tilson/back.svg",
  41986. extra: 1370/1307,
  41987. bottom: 20/1390
  41988. }
  41989. },
  41990. },
  41991. [
  41992. {
  41993. name: "Normal",
  41994. height: math.unit(3 + 6/12, "feet"),
  41995. default: true
  41996. },
  41997. ]
  41998. ))
  41999. characterMakers.push(() => makeCharacter(
  42000. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  42001. {
  42002. front: {
  42003. height: math.unit(1148, "feet"),
  42004. weight: math.unit(34057, "lb"),
  42005. name: "Front",
  42006. image: {
  42007. source: "./media/characters/harthos/front.svg",
  42008. extra: 1391/1339,
  42009. bottom: 13/1404
  42010. }
  42011. },
  42012. },
  42013. [
  42014. {
  42015. name: "Macro",
  42016. height: math.unit(1148, "feet"),
  42017. default: true
  42018. },
  42019. ]
  42020. ))
  42021. characterMakers.push(() => makeCharacter(
  42022. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  42023. {
  42024. front: {
  42025. height: math.unit(15, "feet"),
  42026. name: "Front",
  42027. image: {
  42028. source: "./media/characters/hypatia/front.svg",
  42029. extra: 1653/1591,
  42030. bottom: 79/1732
  42031. }
  42032. },
  42033. },
  42034. [
  42035. {
  42036. name: "Normal",
  42037. height: math.unit(15, "feet")
  42038. },
  42039. {
  42040. name: "Small",
  42041. height: math.unit(300, "feet")
  42042. },
  42043. {
  42044. name: "Macro",
  42045. height: math.unit(2500, "feet"),
  42046. default: true
  42047. },
  42048. {
  42049. name: "Mega Macro",
  42050. height: math.unit(1500, "miles")
  42051. },
  42052. {
  42053. name: "Giga Macro",
  42054. height: math.unit(1.5e6, "miles")
  42055. },
  42056. ]
  42057. ))
  42058. characterMakers.push(() => makeCharacter(
  42059. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  42060. {
  42061. front: {
  42062. height: math.unit(6, "feet"),
  42063. weight: math.unit(200, "lb"),
  42064. name: "Front",
  42065. image: {
  42066. source: "./media/characters/wulver/front.svg",
  42067. extra: 1724/1632,
  42068. bottom: 130/1854
  42069. }
  42070. },
  42071. frontNsfw: {
  42072. height: math.unit(6, "feet"),
  42073. weight: math.unit(200, "lb"),
  42074. name: "Front (NSFW)",
  42075. image: {
  42076. source: "./media/characters/wulver/front-nsfw.svg",
  42077. extra: 1724/1632,
  42078. bottom: 130/1854
  42079. }
  42080. },
  42081. },
  42082. [
  42083. {
  42084. name: "Human-Sized",
  42085. height: math.unit(6, "feet")
  42086. },
  42087. {
  42088. name: "Normal",
  42089. height: math.unit(4, "meters"),
  42090. default: true
  42091. },
  42092. {
  42093. name: "Large",
  42094. height: math.unit(6, "m")
  42095. },
  42096. ]
  42097. ))
  42098. characterMakers.push(() => makeCharacter(
  42099. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  42100. {
  42101. front: {
  42102. height: math.unit(7, "feet"),
  42103. name: "Front",
  42104. image: {
  42105. source: "./media/characters/maru/front.svg",
  42106. extra: 1595/1570,
  42107. bottom: 0/1595
  42108. }
  42109. },
  42110. },
  42111. [
  42112. {
  42113. name: "Normal",
  42114. height: math.unit(7, "feet"),
  42115. default: true
  42116. },
  42117. {
  42118. name: "Macro",
  42119. height: math.unit(700, "feet")
  42120. },
  42121. {
  42122. name: "Mega Macro",
  42123. height: math.unit(25, "miles")
  42124. },
  42125. ]
  42126. ))
  42127. characterMakers.push(() => makeCharacter(
  42128. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  42129. {
  42130. front: {
  42131. height: math.unit(6, "feet"),
  42132. weight: math.unit(170, "lb"),
  42133. name: "Front",
  42134. image: {
  42135. source: "./media/characters/xenon/front.svg",
  42136. extra: 1376/1305,
  42137. bottom: 56/1432
  42138. }
  42139. },
  42140. back: {
  42141. height: math.unit(6, "feet"),
  42142. weight: math.unit(170, "lb"),
  42143. name: "Back",
  42144. image: {
  42145. source: "./media/characters/xenon/back.svg",
  42146. extra: 1328/1259,
  42147. bottom: 95/1423
  42148. }
  42149. },
  42150. maw: {
  42151. height: math.unit(0.52, "feet"),
  42152. name: "Maw",
  42153. image: {
  42154. source: "./media/characters/xenon/maw.svg"
  42155. }
  42156. },
  42157. handLeft: {
  42158. height: math.unit(0.82 * 169 / 153, "feet"),
  42159. name: "Hand (Left)",
  42160. image: {
  42161. source: "./media/characters/xenon/hand-left.svg"
  42162. }
  42163. },
  42164. handRight: {
  42165. height: math.unit(0.82, "feet"),
  42166. name: "Hand (Right)",
  42167. image: {
  42168. source: "./media/characters/xenon/hand-right.svg"
  42169. }
  42170. },
  42171. footLeft: {
  42172. height: math.unit(1.13, "feet"),
  42173. name: "Foot (Left)",
  42174. image: {
  42175. source: "./media/characters/xenon/foot-left.svg"
  42176. }
  42177. },
  42178. footRight: {
  42179. height: math.unit(1.13 * 194 / 196, "feet"),
  42180. name: "Foot (Right)",
  42181. image: {
  42182. source: "./media/characters/xenon/foot-right.svg"
  42183. }
  42184. },
  42185. },
  42186. [
  42187. {
  42188. name: "Micro",
  42189. height: math.unit(0.8, "inches")
  42190. },
  42191. {
  42192. name: "Normal",
  42193. height: math.unit(6, "feet")
  42194. },
  42195. {
  42196. name: "Macro",
  42197. height: math.unit(50, "feet"),
  42198. default: true
  42199. },
  42200. {
  42201. name: "Macro+",
  42202. height: math.unit(250, "feet")
  42203. },
  42204. {
  42205. name: "Megamacro",
  42206. height: math.unit(1500, "feet")
  42207. },
  42208. ]
  42209. ))
  42210. characterMakers.push(() => makeCharacter(
  42211. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  42212. {
  42213. front: {
  42214. height: math.unit(7 + 5/12, "feet"),
  42215. name: "Front",
  42216. image: {
  42217. source: "./media/characters/zane/front.svg",
  42218. extra: 1260/1203,
  42219. bottom: 94/1354
  42220. }
  42221. },
  42222. back: {
  42223. height: math.unit(5.05, "feet"),
  42224. name: "Back",
  42225. image: {
  42226. source: "./media/characters/zane/back.svg",
  42227. extra: 893/829,
  42228. bottom: 30/923
  42229. }
  42230. },
  42231. werewolf: {
  42232. height: math.unit(11, "feet"),
  42233. name: "Werewolf",
  42234. image: {
  42235. source: "./media/characters/zane/werewolf.svg",
  42236. extra: 1383/1323,
  42237. bottom: 89/1472
  42238. }
  42239. },
  42240. foot: {
  42241. height: math.unit(1.46, "feet"),
  42242. name: "Foot",
  42243. image: {
  42244. source: "./media/characters/zane/foot.svg"
  42245. }
  42246. },
  42247. footFront: {
  42248. height: math.unit(0.784, "feet"),
  42249. name: "Foot (Front)",
  42250. image: {
  42251. source: "./media/characters/zane/foot-front.svg"
  42252. }
  42253. },
  42254. dick: {
  42255. height: math.unit(1.95, "feet"),
  42256. name: "Dick",
  42257. image: {
  42258. source: "./media/characters/zane/dick.svg"
  42259. }
  42260. },
  42261. dickWerewolf: {
  42262. height: math.unit(3.77, "feet"),
  42263. name: "Dick (Werewolf)",
  42264. image: {
  42265. source: "./media/characters/zane/dick.svg"
  42266. }
  42267. },
  42268. },
  42269. [
  42270. {
  42271. name: "Normal",
  42272. height: math.unit(7 + 5/12, "feet"),
  42273. default: true
  42274. },
  42275. ]
  42276. ))
  42277. characterMakers.push(() => makeCharacter(
  42278. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  42279. {
  42280. front: {
  42281. height: math.unit(6 + 2/12, "feet"),
  42282. weight: math.unit(284, "lb"),
  42283. name: "Front",
  42284. image: {
  42285. source: "./media/characters/benni-desparque/front.svg",
  42286. extra: 1353/1126,
  42287. bottom: 69/1422
  42288. }
  42289. },
  42290. },
  42291. [
  42292. {
  42293. name: "Civilian",
  42294. height: math.unit(6 + 2/12, "feet")
  42295. },
  42296. {
  42297. name: "Normal",
  42298. height: math.unit(98, "feet"),
  42299. default: true
  42300. },
  42301. {
  42302. name: "Kaiju Fighter",
  42303. height: math.unit(268, "feet")
  42304. },
  42305. ]
  42306. ))
  42307. characterMakers.push(() => makeCharacter(
  42308. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  42309. {
  42310. front: {
  42311. height: math.unit(5, "feet"),
  42312. weight: math.unit(105, "lb"),
  42313. name: "Front",
  42314. image: {
  42315. source: "./media/characters/maxine/front.svg",
  42316. extra: 1386/1250,
  42317. bottom: 71/1457
  42318. }
  42319. },
  42320. },
  42321. [
  42322. {
  42323. name: "Normal",
  42324. height: math.unit(5, "feet"),
  42325. default: true
  42326. },
  42327. ]
  42328. ))
  42329. characterMakers.push(() => makeCharacter(
  42330. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  42331. {
  42332. front: {
  42333. height: math.unit(11 + 7/12, "feet"),
  42334. weight: math.unit(9576, "lb"),
  42335. name: "Front",
  42336. image: {
  42337. source: "./media/characters/scaly/front.svg",
  42338. extra: 888/867,
  42339. bottom: 36/924
  42340. }
  42341. },
  42342. },
  42343. [
  42344. {
  42345. name: "Normal",
  42346. height: math.unit(11 + 7/12, "feet"),
  42347. default: true
  42348. },
  42349. ]
  42350. ))
  42351. characterMakers.push(() => makeCharacter(
  42352. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  42353. {
  42354. front: {
  42355. height: math.unit(6 + 3/12, "feet"),
  42356. name: "Front",
  42357. image: {
  42358. source: "./media/characters/saelria/front.svg",
  42359. extra: 1243/1138,
  42360. bottom: 46/1289
  42361. }
  42362. },
  42363. },
  42364. [
  42365. {
  42366. name: "Micro",
  42367. height: math.unit(6, "inches"),
  42368. },
  42369. {
  42370. name: "Normal",
  42371. height: math.unit(6 + 3/12, "feet"),
  42372. default: true
  42373. },
  42374. {
  42375. name: "Macro",
  42376. height: math.unit(25, "feet")
  42377. },
  42378. ]
  42379. ))
  42380. characterMakers.push(() => makeCharacter(
  42381. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  42382. {
  42383. front: {
  42384. height: math.unit(80, "meters"),
  42385. weight: math.unit(7000, "tonnes"),
  42386. name: "Front",
  42387. image: {
  42388. source: "./media/characters/tef/front.svg",
  42389. extra: 2036/1991,
  42390. bottom: 54/2090
  42391. }
  42392. },
  42393. back: {
  42394. height: math.unit(80, "meters"),
  42395. weight: math.unit(7000, "tonnes"),
  42396. name: "Back",
  42397. image: {
  42398. source: "./media/characters/tef/back.svg",
  42399. extra: 2036/1991,
  42400. bottom: 54/2090
  42401. }
  42402. },
  42403. },
  42404. [
  42405. {
  42406. name: "Macro",
  42407. height: math.unit(80, "meters"),
  42408. default: true
  42409. },
  42410. ]
  42411. ))
  42412. characterMakers.push(() => makeCharacter(
  42413. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  42414. {
  42415. front: {
  42416. height: math.unit(13, "feet"),
  42417. weight: math.unit(6, "tons"),
  42418. name: "Front",
  42419. image: {
  42420. source: "./media/characters/rover/front.svg",
  42421. extra: 1233/1156,
  42422. bottom: 50/1283
  42423. }
  42424. },
  42425. back: {
  42426. height: math.unit(13, "feet"),
  42427. weight: math.unit(6, "tons"),
  42428. name: "Back",
  42429. image: {
  42430. source: "./media/characters/rover/back.svg",
  42431. extra: 1327/1258,
  42432. bottom: 39/1366
  42433. }
  42434. },
  42435. },
  42436. [
  42437. {
  42438. name: "Normal",
  42439. height: math.unit(13, "feet"),
  42440. default: true
  42441. },
  42442. {
  42443. name: "Macro",
  42444. height: math.unit(1300, "feet")
  42445. },
  42446. {
  42447. name: "Megamacro",
  42448. height: math.unit(1300, "miles")
  42449. },
  42450. {
  42451. name: "Gigamacro",
  42452. height: math.unit(1300000, "miles")
  42453. },
  42454. ]
  42455. ))
  42456. characterMakers.push(() => makeCharacter(
  42457. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  42458. {
  42459. front: {
  42460. height: math.unit(6, "feet"),
  42461. weight: math.unit(150, "lb"),
  42462. name: "Front",
  42463. image: {
  42464. source: "./media/characters/ariz/front.svg",
  42465. extra: 1401/1346,
  42466. bottom: 5/1406
  42467. }
  42468. },
  42469. },
  42470. [
  42471. {
  42472. name: "Normal",
  42473. height: math.unit(10, "feet"),
  42474. default: true
  42475. },
  42476. ]
  42477. ))
  42478. characterMakers.push(() => makeCharacter(
  42479. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  42480. {
  42481. front: {
  42482. height: math.unit(6, "feet"),
  42483. weight: math.unit(140, "lb"),
  42484. name: "Front",
  42485. image: {
  42486. source: "./media/characters/sigrun/front.svg",
  42487. extra: 1418/1359,
  42488. bottom: 27/1445
  42489. }
  42490. },
  42491. },
  42492. [
  42493. {
  42494. name: "Macro",
  42495. height: math.unit(35, "feet"),
  42496. default: true
  42497. },
  42498. ]
  42499. ))
  42500. characterMakers.push(() => makeCharacter(
  42501. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  42502. {
  42503. front: {
  42504. height: math.unit(6, "feet"),
  42505. weight: math.unit(150, "lb"),
  42506. name: "Front",
  42507. image: {
  42508. source: "./media/characters/numin/front.svg",
  42509. extra: 1433/1388,
  42510. bottom: 12/1445
  42511. }
  42512. },
  42513. },
  42514. [
  42515. {
  42516. name: "Macro",
  42517. height: math.unit(21.5, "km"),
  42518. default: true
  42519. },
  42520. ]
  42521. ))
  42522. characterMakers.push(() => makeCharacter(
  42523. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  42524. {
  42525. front: {
  42526. height: math.unit(6, "feet"),
  42527. weight: math.unit(463, "lb"),
  42528. name: "Front",
  42529. image: {
  42530. source: "./media/characters/melwa/front.svg",
  42531. extra: 1307/1248,
  42532. bottom: 93/1400
  42533. }
  42534. },
  42535. },
  42536. [
  42537. {
  42538. name: "Macro",
  42539. height: math.unit(50, "meters"),
  42540. default: true
  42541. },
  42542. ]
  42543. ))
  42544. characterMakers.push(() => makeCharacter(
  42545. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  42546. {
  42547. front: {
  42548. height: math.unit(325, "feet"),
  42549. name: "Front",
  42550. image: {
  42551. source: "./media/characters/zorkaiju/front.svg",
  42552. extra: 1955/1814,
  42553. bottom: 40/1995
  42554. }
  42555. },
  42556. frontExtended: {
  42557. height: math.unit(325, "feet"),
  42558. name: "Front (Extended)",
  42559. image: {
  42560. source: "./media/characters/zorkaiju/front-extended.svg",
  42561. extra: 1955/1814,
  42562. bottom: 40/1995
  42563. }
  42564. },
  42565. side: {
  42566. height: math.unit(325, "feet"),
  42567. name: "Side",
  42568. image: {
  42569. source: "./media/characters/zorkaiju/side.svg",
  42570. extra: 1495/1396,
  42571. bottom: 17/1512
  42572. }
  42573. },
  42574. sideExtended: {
  42575. height: math.unit(325, "feet"),
  42576. name: "Side (Extended)",
  42577. image: {
  42578. source: "./media/characters/zorkaiju/side-extended.svg",
  42579. extra: 1495/1396,
  42580. bottom: 17/1512
  42581. }
  42582. },
  42583. back: {
  42584. height: math.unit(325, "feet"),
  42585. name: "Back",
  42586. image: {
  42587. source: "./media/characters/zorkaiju/back.svg",
  42588. extra: 1959/1821,
  42589. bottom: 31/1990
  42590. }
  42591. },
  42592. backExtended: {
  42593. height: math.unit(325, "feet"),
  42594. name: "Back (Extended)",
  42595. image: {
  42596. source: "./media/characters/zorkaiju/back-extended.svg",
  42597. extra: 1959/1821,
  42598. bottom: 31/1990
  42599. }
  42600. },
  42601. hand: {
  42602. height: math.unit(58.4, "feet"),
  42603. name: "Hand",
  42604. image: {
  42605. source: "./media/characters/zorkaiju/hand.svg"
  42606. }
  42607. },
  42608. handExtended: {
  42609. height: math.unit(61.4, "feet"),
  42610. name: "Hand (Extended)",
  42611. image: {
  42612. source: "./media/characters/zorkaiju/hand-extended.svg"
  42613. }
  42614. },
  42615. foot: {
  42616. height: math.unit(95, "feet"),
  42617. name: "Foot",
  42618. image: {
  42619. source: "./media/characters/zorkaiju/foot.svg"
  42620. }
  42621. },
  42622. leftArm: {
  42623. height: math.unit(59, "feet"),
  42624. name: "Left Arm",
  42625. image: {
  42626. source: "./media/characters/zorkaiju/left-arm.svg"
  42627. }
  42628. },
  42629. rightArm: {
  42630. height: math.unit(59, "feet"),
  42631. name: "Right Arm",
  42632. image: {
  42633. source: "./media/characters/zorkaiju/right-arm.svg"
  42634. }
  42635. },
  42636. leftArmExtended: {
  42637. height: math.unit(59 * 1.033546, "feet"),
  42638. name: "Left Arm (Extended)",
  42639. image: {
  42640. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  42641. }
  42642. },
  42643. rightArmExtended: {
  42644. height: math.unit(59 * 1.0496, "feet"),
  42645. name: "Right Arm (Extended)",
  42646. image: {
  42647. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  42648. }
  42649. },
  42650. tail: {
  42651. height: math.unit(104, "feet"),
  42652. name: "Tail",
  42653. image: {
  42654. source: "./media/characters/zorkaiju/tail.svg"
  42655. }
  42656. },
  42657. tailExtended: {
  42658. height: math.unit(104, "feet"),
  42659. name: "Tail (Extended)",
  42660. image: {
  42661. source: "./media/characters/zorkaiju/tail-extended.svg"
  42662. }
  42663. },
  42664. tailBottom: {
  42665. height: math.unit(104, "feet"),
  42666. name: "Tail Bottom",
  42667. image: {
  42668. source: "./media/characters/zorkaiju/tail-bottom.svg"
  42669. }
  42670. },
  42671. crystal: {
  42672. height: math.unit(27.54, "feet"),
  42673. name: "Crystal",
  42674. image: {
  42675. source: "./media/characters/zorkaiju/crystal.svg"
  42676. }
  42677. },
  42678. },
  42679. [
  42680. {
  42681. name: "Kaiju",
  42682. height: math.unit(325, "feet"),
  42683. default: true
  42684. },
  42685. ]
  42686. ))
  42687. characterMakers.push(() => makeCharacter(
  42688. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  42689. {
  42690. front: {
  42691. height: math.unit(6 + 1/12, "feet"),
  42692. weight: math.unit(115, "lb"),
  42693. name: "Front",
  42694. image: {
  42695. source: "./media/characters/bailey-belfry/front.svg",
  42696. extra: 1240/1121,
  42697. bottom: 101/1341
  42698. }
  42699. },
  42700. },
  42701. [
  42702. {
  42703. name: "Normal",
  42704. height: math.unit(6 + 1/12, "feet"),
  42705. default: true
  42706. },
  42707. ]
  42708. ))
  42709. characterMakers.push(() => makeCharacter(
  42710. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  42711. {
  42712. side: {
  42713. height: math.unit(4, "meters"),
  42714. weight: math.unit(250, "kg"),
  42715. name: "Side",
  42716. image: {
  42717. source: "./media/characters/blacky/side.svg",
  42718. extra: 1027/919,
  42719. bottom: 43/1070
  42720. }
  42721. },
  42722. maw: {
  42723. height: math.unit(1, "meters"),
  42724. name: "Maw",
  42725. image: {
  42726. source: "./media/characters/blacky/maw.svg"
  42727. }
  42728. },
  42729. paw: {
  42730. height: math.unit(1, "meters"),
  42731. name: "Paw",
  42732. image: {
  42733. source: "./media/characters/blacky/paw.svg"
  42734. }
  42735. },
  42736. },
  42737. [
  42738. {
  42739. name: "Normal",
  42740. height: math.unit(4, "meters"),
  42741. default: true
  42742. },
  42743. ]
  42744. ))
  42745. characterMakers.push(() => makeCharacter(
  42746. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  42747. {
  42748. front: {
  42749. height: math.unit(170, "cm"),
  42750. weight: math.unit(66, "kg"),
  42751. name: "Front",
  42752. image: {
  42753. source: "./media/characters/thux-ei/front.svg",
  42754. extra: 1109/1011,
  42755. bottom: 8/1117
  42756. }
  42757. },
  42758. },
  42759. [
  42760. {
  42761. name: "Normal",
  42762. height: math.unit(170, "cm"),
  42763. default: true
  42764. },
  42765. ]
  42766. ))
  42767. characterMakers.push(() => makeCharacter(
  42768. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  42769. {
  42770. front: {
  42771. height: math.unit(5, "feet"),
  42772. weight: math.unit(120, "lb"),
  42773. name: "Front",
  42774. image: {
  42775. source: "./media/characters/roxanne-voltaire/front.svg",
  42776. extra: 1901/1779,
  42777. bottom: 53/1954
  42778. }
  42779. },
  42780. },
  42781. [
  42782. {
  42783. name: "Normal",
  42784. height: math.unit(5, "feet"),
  42785. default: true
  42786. },
  42787. {
  42788. name: "Giant",
  42789. height: math.unit(50, "feet")
  42790. },
  42791. {
  42792. name: "Titan",
  42793. height: math.unit(500, "feet")
  42794. },
  42795. {
  42796. name: "Macro",
  42797. height: math.unit(5000, "feet")
  42798. },
  42799. {
  42800. name: "Megamacro",
  42801. height: math.unit(50000, "feet")
  42802. },
  42803. {
  42804. name: "Gigamacro",
  42805. height: math.unit(500000, "feet")
  42806. },
  42807. {
  42808. name: "Teramacro",
  42809. height: math.unit(5e6, "feet")
  42810. },
  42811. ]
  42812. ))
  42813. characterMakers.push(() => makeCharacter(
  42814. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  42815. {
  42816. front: {
  42817. height: math.unit(6 + 2/12, "feet"),
  42818. name: "Front",
  42819. image: {
  42820. source: "./media/characters/squeaks/front.svg",
  42821. extra: 1823/1768,
  42822. bottom: 138/1961
  42823. }
  42824. },
  42825. },
  42826. [
  42827. {
  42828. name: "Micro",
  42829. height: math.unit(0.5, "inches")
  42830. },
  42831. {
  42832. name: "Normal",
  42833. height: math.unit(6 + 2/12, "feet"),
  42834. default: true
  42835. },
  42836. {
  42837. name: "Macro",
  42838. height: math.unit(600, "feet")
  42839. },
  42840. ]
  42841. ))
  42842. characterMakers.push(() => makeCharacter(
  42843. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  42844. {
  42845. front: {
  42846. height: math.unit(1.72, "meters"),
  42847. name: "Front",
  42848. image: {
  42849. source: "./media/characters/archinger/front.svg",
  42850. extra: 1861/1675,
  42851. bottom: 125/1986
  42852. }
  42853. },
  42854. back: {
  42855. height: math.unit(1.72, "meters"),
  42856. name: "Back",
  42857. image: {
  42858. source: "./media/characters/archinger/back.svg",
  42859. extra: 1844/1701,
  42860. bottom: 104/1948
  42861. }
  42862. },
  42863. cock: {
  42864. height: math.unit(0.59, "feet"),
  42865. name: "Cock",
  42866. image: {
  42867. source: "./media/characters/archinger/cock.svg"
  42868. }
  42869. },
  42870. },
  42871. [
  42872. {
  42873. name: "Normal",
  42874. height: math.unit(1.72, "meters"),
  42875. default: true
  42876. },
  42877. {
  42878. name: "Macro",
  42879. height: math.unit(84, "meters")
  42880. },
  42881. {
  42882. name: "Macro+",
  42883. height: math.unit(112, "meters")
  42884. },
  42885. {
  42886. name: "Macro++",
  42887. height: math.unit(960, "meters")
  42888. },
  42889. {
  42890. name: "Macro+++",
  42891. height: math.unit(4, "km")
  42892. },
  42893. {
  42894. name: "Macro++++",
  42895. height: math.unit(48, "km")
  42896. },
  42897. {
  42898. name: "Macro+++++",
  42899. height: math.unit(4500, "km")
  42900. },
  42901. ]
  42902. ))
  42903. characterMakers.push(() => makeCharacter(
  42904. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  42905. {
  42906. front: {
  42907. height: math.unit(5 + 5/12, "feet"),
  42908. name: "Front",
  42909. image: {
  42910. source: "./media/characters/alsnapz/front.svg",
  42911. extra: 1157/1065,
  42912. bottom: 42/1199
  42913. }
  42914. },
  42915. },
  42916. [
  42917. {
  42918. name: "Normal",
  42919. height: math.unit(5 + 5/12, "feet"),
  42920. default: true
  42921. },
  42922. ]
  42923. ))
  42924. characterMakers.push(() => makeCharacter(
  42925. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  42926. {
  42927. side: {
  42928. height: math.unit(3.2, "earths"),
  42929. name: "Side",
  42930. image: {
  42931. source: "./media/characters/mag/side.svg",
  42932. extra: 1331/1008,
  42933. bottom: 52/1383
  42934. }
  42935. },
  42936. wing: {
  42937. height: math.unit(1.94, "earths"),
  42938. name: "Wing",
  42939. image: {
  42940. source: "./media/characters/mag/wing.svg"
  42941. }
  42942. },
  42943. dick: {
  42944. height: math.unit(1.8, "earths"),
  42945. name: "Dick",
  42946. image: {
  42947. source: "./media/characters/mag/dick.svg"
  42948. }
  42949. },
  42950. ass: {
  42951. height: math.unit(1.33, "earths"),
  42952. name: "Ass",
  42953. image: {
  42954. source: "./media/characters/mag/ass.svg"
  42955. }
  42956. },
  42957. head: {
  42958. height: math.unit(1.1, "earths"),
  42959. name: "Head",
  42960. image: {
  42961. source: "./media/characters/mag/head.svg"
  42962. }
  42963. },
  42964. maw: {
  42965. height: math.unit(1.62, "earths"),
  42966. name: "Maw",
  42967. image: {
  42968. source: "./media/characters/mag/maw.svg"
  42969. }
  42970. },
  42971. },
  42972. [
  42973. {
  42974. name: "Small",
  42975. height: math.unit(162, "feet")
  42976. },
  42977. {
  42978. name: "Normal",
  42979. height: math.unit(3.2, "earths"),
  42980. default: true
  42981. },
  42982. ]
  42983. ))
  42984. characterMakers.push(() => makeCharacter(
  42985. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  42986. {
  42987. front: {
  42988. height: math.unit(512, "feet"),
  42989. weight: math.unit(63509, "tonnes"),
  42990. name: "Front",
  42991. image: {
  42992. source: "./media/characters/vorrel-harroc/front.svg",
  42993. extra: 1075/1063,
  42994. bottom: 62/1137
  42995. }
  42996. },
  42997. },
  42998. [
  42999. {
  43000. name: "Normal",
  43001. height: math.unit(10, "feet")
  43002. },
  43003. {
  43004. name: "Macro",
  43005. height: math.unit(512, "feet"),
  43006. default: true
  43007. },
  43008. {
  43009. name: "Megamacro",
  43010. height: math.unit(256, "miles")
  43011. },
  43012. {
  43013. name: "Gigamacro",
  43014. height: math.unit(4096, "miles")
  43015. },
  43016. ]
  43017. ))
  43018. characterMakers.push(() => makeCharacter(
  43019. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  43020. {
  43021. side: {
  43022. height: math.unit(50, "feet"),
  43023. name: "Side",
  43024. image: {
  43025. source: "./media/characters/froimar/side.svg",
  43026. extra: 855/638,
  43027. bottom: 99/954
  43028. }
  43029. },
  43030. },
  43031. [
  43032. {
  43033. name: "Macro",
  43034. height: math.unit(50, "feet"),
  43035. default: true
  43036. },
  43037. ]
  43038. ))
  43039. characterMakers.push(() => makeCharacter(
  43040. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  43041. {
  43042. front: {
  43043. height: math.unit(210, "miles"),
  43044. name: "Front",
  43045. image: {
  43046. source: "./media/characters/timothy/front.svg",
  43047. extra: 1007/943,
  43048. bottom: 62/1069
  43049. }
  43050. },
  43051. frontSkirt: {
  43052. height: math.unit(210, "miles"),
  43053. name: "Front (Skirt)",
  43054. image: {
  43055. source: "./media/characters/timothy/front-skirt.svg",
  43056. extra: 1007/943,
  43057. bottom: 62/1069
  43058. }
  43059. },
  43060. frontCoat: {
  43061. height: math.unit(210, "miles"),
  43062. name: "Front (Coat)",
  43063. image: {
  43064. source: "./media/characters/timothy/front-coat.svg",
  43065. extra: 1007/943,
  43066. bottom: 62/1069
  43067. }
  43068. },
  43069. },
  43070. [
  43071. {
  43072. name: "Macro",
  43073. height: math.unit(210, "miles"),
  43074. default: true
  43075. },
  43076. {
  43077. name: "Megamacro",
  43078. height: math.unit(210000, "miles")
  43079. },
  43080. ]
  43081. ))
  43082. characterMakers.push(() => makeCharacter(
  43083. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  43084. {
  43085. front: {
  43086. height: math.unit(188, "feet"),
  43087. name: "Front",
  43088. image: {
  43089. source: "./media/characters/pyotr/front.svg",
  43090. extra: 1912/1826,
  43091. bottom: 18/1930
  43092. }
  43093. },
  43094. },
  43095. [
  43096. {
  43097. name: "Macro",
  43098. height: math.unit(188, "feet"),
  43099. default: true
  43100. },
  43101. {
  43102. name: "Megamacro",
  43103. height: math.unit(8, "miles")
  43104. },
  43105. ]
  43106. ))
  43107. characterMakers.push(() => makeCharacter(
  43108. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  43109. {
  43110. side: {
  43111. height: math.unit(10, "feet"),
  43112. weight: math.unit(4500, "lb"),
  43113. name: "Side",
  43114. image: {
  43115. source: "./media/characters/ackart/side.svg",
  43116. extra: 1776/1668,
  43117. bottom: 116/1892
  43118. }
  43119. },
  43120. },
  43121. [
  43122. {
  43123. name: "Normal",
  43124. height: math.unit(10, "feet"),
  43125. default: true
  43126. },
  43127. ]
  43128. ))
  43129. characterMakers.push(() => makeCharacter(
  43130. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  43131. {
  43132. side: {
  43133. height: math.unit(21, "feet"),
  43134. name: "Side",
  43135. image: {
  43136. source: "./media/characters/nolow/side.svg",
  43137. extra: 1484/1434,
  43138. bottom: 85/1569
  43139. }
  43140. },
  43141. sideErect: {
  43142. height: math.unit(21, "feet"),
  43143. name: "Side-erect",
  43144. image: {
  43145. source: "./media/characters/nolow/side-erect.svg",
  43146. extra: 1484/1434,
  43147. bottom: 85/1569
  43148. }
  43149. },
  43150. },
  43151. [
  43152. {
  43153. name: "Regular",
  43154. height: math.unit(12, "feet")
  43155. },
  43156. {
  43157. name: "Big Chee",
  43158. height: math.unit(21, "feet"),
  43159. default: true
  43160. },
  43161. ]
  43162. ))
  43163. characterMakers.push(() => makeCharacter(
  43164. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  43165. {
  43166. front: {
  43167. height: math.unit(7, "feet"),
  43168. weight: math.unit(250, "lb"),
  43169. name: "Front",
  43170. image: {
  43171. source: "./media/characters/nines/front.svg",
  43172. extra: 1741/1607,
  43173. bottom: 41/1782
  43174. }
  43175. },
  43176. side: {
  43177. height: math.unit(7, "feet"),
  43178. weight: math.unit(250, "lb"),
  43179. name: "Side",
  43180. image: {
  43181. source: "./media/characters/nines/side.svg",
  43182. extra: 1854/1735,
  43183. bottom: 93/1947
  43184. }
  43185. },
  43186. back: {
  43187. height: math.unit(7, "feet"),
  43188. weight: math.unit(250, "lb"),
  43189. name: "Back",
  43190. image: {
  43191. source: "./media/characters/nines/back.svg",
  43192. extra: 1748/1615,
  43193. bottom: 20/1768
  43194. }
  43195. },
  43196. },
  43197. [
  43198. {
  43199. name: "Megamacro",
  43200. height: math.unit(99, "km"),
  43201. default: true
  43202. },
  43203. ]
  43204. ))
  43205. characterMakers.push(() => makeCharacter(
  43206. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  43207. {
  43208. front: {
  43209. height: math.unit(5 + 10/12, "feet"),
  43210. weight: math.unit(210, "lb"),
  43211. name: "Front",
  43212. image: {
  43213. source: "./media/characters/zenith/front.svg",
  43214. extra: 1531/1452,
  43215. bottom: 198/1729
  43216. }
  43217. },
  43218. back: {
  43219. height: math.unit(5 + 10/12, "feet"),
  43220. weight: math.unit(210, "lb"),
  43221. name: "Back",
  43222. image: {
  43223. source: "./media/characters/zenith/back.svg",
  43224. extra: 1571/1487,
  43225. bottom: 75/1646
  43226. }
  43227. },
  43228. },
  43229. [
  43230. {
  43231. name: "Normal",
  43232. height: math.unit(5 + 10/12, "feet"),
  43233. default: true
  43234. }
  43235. ]
  43236. ))
  43237. characterMakers.push(() => makeCharacter(
  43238. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  43239. {
  43240. front: {
  43241. height: math.unit(4, "feet"),
  43242. weight: math.unit(60, "lb"),
  43243. name: "Front",
  43244. image: {
  43245. source: "./media/characters/jasper/front.svg",
  43246. extra: 1450/1379,
  43247. bottom: 19/1469
  43248. }
  43249. },
  43250. },
  43251. [
  43252. {
  43253. name: "Normal",
  43254. height: math.unit(4, "feet"),
  43255. default: true
  43256. },
  43257. ]
  43258. ))
  43259. characterMakers.push(() => makeCharacter(
  43260. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  43261. {
  43262. front: {
  43263. height: math.unit(6 + 5/12, "feet"),
  43264. weight: math.unit(290, "lb"),
  43265. name: "Front",
  43266. image: {
  43267. source: "./media/characters/tiberius-thyben/front.svg",
  43268. extra: 757/739,
  43269. bottom: 39/796
  43270. }
  43271. },
  43272. },
  43273. [
  43274. {
  43275. name: "Micro",
  43276. height: math.unit(1.5, "inches")
  43277. },
  43278. {
  43279. name: "Normal",
  43280. height: math.unit(6 + 5/12, "feet"),
  43281. default: true
  43282. },
  43283. {
  43284. name: "Macro",
  43285. height: math.unit(300, "feet")
  43286. },
  43287. ]
  43288. ))
  43289. characterMakers.push(() => makeCharacter(
  43290. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  43291. {
  43292. front: {
  43293. height: math.unit(5 + 6/12, "feet"),
  43294. weight: math.unit(60, "kg"),
  43295. name: "Front",
  43296. image: {
  43297. source: "./media/characters/sabre/front.svg",
  43298. extra: 738/671,
  43299. bottom: 27/765
  43300. }
  43301. },
  43302. },
  43303. [
  43304. {
  43305. name: "Teeny",
  43306. height: math.unit(2, "inches")
  43307. },
  43308. {
  43309. name: "Smol",
  43310. height: math.unit(8, "inches")
  43311. },
  43312. {
  43313. name: "Normal",
  43314. height: math.unit(5 + 6/12, "feet"),
  43315. default: true
  43316. },
  43317. {
  43318. name: "Mini-Macro",
  43319. height: math.unit(15, "feet")
  43320. },
  43321. {
  43322. name: "Macro",
  43323. height: math.unit(50, "feet")
  43324. },
  43325. ]
  43326. ))
  43327. characterMakers.push(() => makeCharacter(
  43328. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  43329. {
  43330. front: {
  43331. height: math.unit(6 + 4/12, "feet"),
  43332. weight: math.unit(170, "lb"),
  43333. name: "Front",
  43334. image: {
  43335. source: "./media/characters/charlie/front.svg",
  43336. extra: 1348/1228,
  43337. bottom: 15/1363
  43338. }
  43339. },
  43340. },
  43341. [
  43342. {
  43343. name: "Macro",
  43344. height: math.unit(1700, "meters"),
  43345. default: true
  43346. },
  43347. {
  43348. name: "MegaMacro",
  43349. height: math.unit(20400, "meters")
  43350. },
  43351. ]
  43352. ))
  43353. characterMakers.push(() => makeCharacter(
  43354. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  43355. {
  43356. front: {
  43357. height: math.unit(6 + 3/12, "feet"),
  43358. weight: math.unit(185, "lb"),
  43359. name: "Front",
  43360. image: {
  43361. source: "./media/characters/susan-grant/front.svg",
  43362. extra: 1351/1327,
  43363. bottom: 26/1377
  43364. }
  43365. },
  43366. },
  43367. [
  43368. {
  43369. name: "Normal",
  43370. height: math.unit(6 + 3/12, "feet"),
  43371. default: true
  43372. },
  43373. {
  43374. name: "Macro",
  43375. height: math.unit(225, "feet")
  43376. },
  43377. {
  43378. name: "Macro+",
  43379. height: math.unit(900, "feet")
  43380. },
  43381. {
  43382. name: "MegaMacro",
  43383. height: math.unit(14400, "feet")
  43384. },
  43385. ]
  43386. ))
  43387. characterMakers.push(() => makeCharacter(
  43388. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  43389. {
  43390. front: {
  43391. height: math.unit(5 + 4/12, "feet"),
  43392. weight: math.unit(110, "lb"),
  43393. name: "Front",
  43394. image: {
  43395. source: "./media/characters/axel-isanov/front.svg",
  43396. extra: 1096/1065,
  43397. bottom: 13/1109
  43398. }
  43399. },
  43400. },
  43401. [
  43402. {
  43403. name: "Normal",
  43404. height: math.unit(5 + 4/12, "feet"),
  43405. default: true
  43406. },
  43407. ]
  43408. ))
  43409. characterMakers.push(() => makeCharacter(
  43410. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  43411. {
  43412. front: {
  43413. height: math.unit(9, "feet"),
  43414. weight: math.unit(467, "lb"),
  43415. name: "Front",
  43416. image: {
  43417. source: "./media/characters/necahual/front.svg",
  43418. extra: 920/873,
  43419. bottom: 26/946
  43420. }
  43421. },
  43422. back: {
  43423. height: math.unit(9, "feet"),
  43424. weight: math.unit(467, "lb"),
  43425. name: "Back",
  43426. image: {
  43427. source: "./media/characters/necahual/back.svg",
  43428. extra: 930/884,
  43429. bottom: 16/946
  43430. }
  43431. },
  43432. frontUnderwear: {
  43433. height: math.unit(9, "feet"),
  43434. weight: math.unit(467, "lb"),
  43435. name: "Front (Underwear)",
  43436. image: {
  43437. source: "./media/characters/necahual/front-underwear.svg",
  43438. extra: 920/873,
  43439. bottom: 26/946
  43440. }
  43441. },
  43442. frontDressed: {
  43443. height: math.unit(9, "feet"),
  43444. weight: math.unit(467, "lb"),
  43445. name: "Front (Dressed)",
  43446. image: {
  43447. source: "./media/characters/necahual/front-dressed.svg",
  43448. extra: 920/873,
  43449. bottom: 26/946
  43450. }
  43451. },
  43452. },
  43453. [
  43454. {
  43455. name: "Comprsesed",
  43456. height: math.unit(9, "feet")
  43457. },
  43458. {
  43459. name: "Natural",
  43460. height: math.unit(15, "feet"),
  43461. default: true
  43462. },
  43463. {
  43464. name: "Boosted",
  43465. height: math.unit(50, "feet")
  43466. },
  43467. {
  43468. name: "Boosted+",
  43469. height: math.unit(150, "feet")
  43470. },
  43471. {
  43472. name: "Max",
  43473. height: math.unit(500, "feet")
  43474. },
  43475. ]
  43476. ))
  43477. characterMakers.push(() => makeCharacter(
  43478. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  43479. {
  43480. front: {
  43481. height: math.unit(22 + 1/12, "feet"),
  43482. weight: math.unit(3200, "lb"),
  43483. name: "Front",
  43484. image: {
  43485. source: "./media/characters/theo-acacia/front.svg",
  43486. extra: 1796/1741,
  43487. bottom: 83/1879
  43488. }
  43489. },
  43490. frontUnderwear: {
  43491. height: math.unit(22 + 1/12, "feet"),
  43492. weight: math.unit(3200, "lb"),
  43493. name: "Front (Underwear)",
  43494. image: {
  43495. source: "./media/characters/theo-acacia/front-underwear.svg",
  43496. extra: 1796/1741,
  43497. bottom: 83/1879
  43498. }
  43499. },
  43500. frontNude: {
  43501. height: math.unit(22 + 1/12, "feet"),
  43502. weight: math.unit(3200, "lb"),
  43503. name: "Front (Nude)",
  43504. image: {
  43505. source: "./media/characters/theo-acacia/front-nude.svg",
  43506. extra: 1796/1741,
  43507. bottom: 83/1879
  43508. }
  43509. },
  43510. },
  43511. [
  43512. {
  43513. name: "Normal",
  43514. height: math.unit(22 + 1/12, "feet"),
  43515. default: true
  43516. },
  43517. ]
  43518. ))
  43519. characterMakers.push(() => makeCharacter(
  43520. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43521. {
  43522. front: {
  43523. height: math.unit(20, "feet"),
  43524. name: "Front",
  43525. image: {
  43526. source: "./media/characters/astra/front.svg",
  43527. extra: 1850/1714,
  43528. bottom: 106/1956
  43529. }
  43530. },
  43531. frontUndressed: {
  43532. height: math.unit(20, "feet"),
  43533. name: "Front (Undressed)",
  43534. image: {
  43535. source: "./media/characters/astra/front-undressed.svg",
  43536. extra: 1926/1749,
  43537. bottom: 0/1926
  43538. }
  43539. },
  43540. hand: {
  43541. height: math.unit(1.53, "feet"),
  43542. name: "Hand",
  43543. image: {
  43544. source: "./media/characters/astra/hand.svg"
  43545. }
  43546. },
  43547. paw: {
  43548. height: math.unit(1.53, "feet"),
  43549. name: "Paw",
  43550. image: {
  43551. source: "./media/characters/astra/paw.svg"
  43552. }
  43553. },
  43554. },
  43555. [
  43556. {
  43557. name: "Smallest",
  43558. height: math.unit(20, "feet")
  43559. },
  43560. {
  43561. name: "Normal",
  43562. height: math.unit(1e9, "miles"),
  43563. default: true
  43564. },
  43565. {
  43566. name: "Larger",
  43567. height: math.unit(5, "multiverses")
  43568. },
  43569. {
  43570. name: "Largest",
  43571. height: math.unit(1e9, "multiverses")
  43572. },
  43573. ]
  43574. ))
  43575. characterMakers.push(() => makeCharacter(
  43576. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43577. {
  43578. front: {
  43579. height: math.unit(8, "feet"),
  43580. name: "Front",
  43581. image: {
  43582. source: "./media/characters/breanna/front.svg",
  43583. extra: 1912/1632,
  43584. bottom: 33/1945
  43585. }
  43586. },
  43587. },
  43588. [
  43589. {
  43590. name: "Smallest",
  43591. height: math.unit(8, "feet")
  43592. },
  43593. {
  43594. name: "Normal",
  43595. height: math.unit(1, "mile"),
  43596. default: true
  43597. },
  43598. {
  43599. name: "Maximum",
  43600. height: math.unit(1500000000000, "lightyears")
  43601. },
  43602. ]
  43603. ))
  43604. characterMakers.push(() => makeCharacter(
  43605. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  43606. {
  43607. front: {
  43608. height: math.unit(5 + 11/12, "feet"),
  43609. weight: math.unit(155, "lb"),
  43610. name: "Front",
  43611. image: {
  43612. source: "./media/characters/cai/front.svg",
  43613. extra: 1823/1702,
  43614. bottom: 32/1855
  43615. }
  43616. },
  43617. back: {
  43618. height: math.unit(5 + 11/12, "feet"),
  43619. weight: math.unit(155, "lb"),
  43620. name: "Back",
  43621. image: {
  43622. source: "./media/characters/cai/back.svg",
  43623. extra: 1809/1708,
  43624. bottom: 31/1840
  43625. }
  43626. },
  43627. },
  43628. [
  43629. {
  43630. name: "Normal",
  43631. height: math.unit(5 + 11/12, "feet"),
  43632. default: true
  43633. },
  43634. {
  43635. name: "Big",
  43636. height: math.unit(15, "feet")
  43637. },
  43638. {
  43639. name: "Macro",
  43640. height: math.unit(200, "feet")
  43641. },
  43642. ]
  43643. ))
  43644. characterMakers.push(() => makeCharacter(
  43645. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  43646. {
  43647. front: {
  43648. height: math.unit(5 + 6/12, "feet"),
  43649. weight: math.unit(160, "lb"),
  43650. name: "Front",
  43651. image: {
  43652. source: "./media/characters/zanna-virtuedòttir/front.svg",
  43653. extra: 1227/1174,
  43654. bottom: 37/1264
  43655. }
  43656. },
  43657. },
  43658. [
  43659. {
  43660. name: "Macro",
  43661. height: math.unit(444, "meters"),
  43662. default: true
  43663. },
  43664. ]
  43665. ))
  43666. characterMakers.push(() => makeCharacter(
  43667. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  43668. {
  43669. front: {
  43670. height: math.unit(18 + 7/12, "feet"),
  43671. name: "Front",
  43672. image: {
  43673. source: "./media/characters/rex/front.svg",
  43674. extra: 1941/1807,
  43675. bottom: 66/2007
  43676. }
  43677. },
  43678. back: {
  43679. height: math.unit(18 + 7/12, "feet"),
  43680. name: "Back",
  43681. image: {
  43682. source: "./media/characters/rex/back.svg",
  43683. extra: 1937/1822,
  43684. bottom: 42/1979
  43685. }
  43686. },
  43687. boot: {
  43688. height: math.unit(3.45, "feet"),
  43689. name: "Boot",
  43690. image: {
  43691. source: "./media/characters/rex/boot.svg"
  43692. }
  43693. },
  43694. paw: {
  43695. height: math.unit(4.17, "feet"),
  43696. name: "Paw",
  43697. image: {
  43698. source: "./media/characters/rex/paw.svg"
  43699. }
  43700. },
  43701. head: {
  43702. height: math.unit(6.728, "feet"),
  43703. name: "Head",
  43704. image: {
  43705. source: "./media/characters/rex/head.svg"
  43706. }
  43707. },
  43708. },
  43709. [
  43710. {
  43711. name: "Nano",
  43712. height: math.unit(18 + 7/12, "feet")
  43713. },
  43714. {
  43715. name: "Micro",
  43716. height: math.unit(1.5, "megameters")
  43717. },
  43718. {
  43719. name: "Normal",
  43720. height: math.unit(440, "megameters"),
  43721. default: true
  43722. },
  43723. {
  43724. name: "Macro",
  43725. height: math.unit(2.5, "gigameters")
  43726. },
  43727. {
  43728. name: "Gigamacro",
  43729. height: math.unit(2, "galaxies")
  43730. },
  43731. ]
  43732. ))
  43733. characterMakers.push(() => makeCharacter(
  43734. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  43735. {
  43736. side: {
  43737. height: math.unit(32, "feet"),
  43738. weight: math.unit(250000, "lb"),
  43739. name: "Side",
  43740. image: {
  43741. source: "./media/characters/silverwing/side.svg",
  43742. extra: 1100/1019,
  43743. bottom: 204/1304
  43744. }
  43745. },
  43746. },
  43747. [
  43748. {
  43749. name: "Normal",
  43750. height: math.unit(32, "feet"),
  43751. default: true
  43752. },
  43753. ]
  43754. ))
  43755. characterMakers.push(() => makeCharacter(
  43756. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  43757. {
  43758. front: {
  43759. height: math.unit(6 + 6/12, "feet"),
  43760. weight: math.unit(350, "lb"),
  43761. name: "Front",
  43762. image: {
  43763. source: "./media/characters/tristan-hawthorne/front.svg",
  43764. extra: 1159/1124,
  43765. bottom: 37/1196
  43766. },
  43767. form: "labrador",
  43768. default: true
  43769. },
  43770. skunkFront: {
  43771. height: math.unit(4 + 6/12, "feet"),
  43772. weight: math.unit(120, "lb"),
  43773. name: "Front",
  43774. image: {
  43775. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  43776. extra: 1609/1551,
  43777. bottom: 169/1778
  43778. },
  43779. form: "skunk",
  43780. default: true
  43781. },
  43782. },
  43783. [
  43784. {
  43785. name: "Normal",
  43786. height: math.unit(6 + 6/12, "feet"),
  43787. form: "labrador",
  43788. default: true
  43789. },
  43790. {
  43791. name: "Normal",
  43792. height: math.unit(4 + 6/12, "feet"),
  43793. form: "skunk",
  43794. default: true
  43795. },
  43796. ],
  43797. {
  43798. "labrador": {
  43799. name: "Labrador",
  43800. default: true
  43801. },
  43802. "skunk": {
  43803. name: "Skunk"
  43804. }
  43805. }
  43806. ))
  43807. characterMakers.push(() => makeCharacter(
  43808. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  43809. {
  43810. front: {
  43811. height: math.unit(5 + 11/12, "feet"),
  43812. weight: math.unit(190, "lb"),
  43813. name: "Front",
  43814. image: {
  43815. source: "./media/characters/mizu/front.svg",
  43816. extra: 1988/1788,
  43817. bottom: 14/2002
  43818. }
  43819. },
  43820. },
  43821. [
  43822. {
  43823. name: "Normal",
  43824. height: math.unit(5 + 11/12, "feet"),
  43825. default: true
  43826. },
  43827. ]
  43828. ))
  43829. characterMakers.push(() => makeCharacter(
  43830. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  43831. {
  43832. front: {
  43833. height: math.unit(1.7, "feet"),
  43834. weight: math.unit(50, "lb"),
  43835. name: "Front",
  43836. image: {
  43837. source: "./media/characters/dechroma/front.svg",
  43838. extra: 1095/859,
  43839. bottom: 64/1159
  43840. }
  43841. },
  43842. },
  43843. [
  43844. {
  43845. name: "Normal",
  43846. height: math.unit(1.7, "feet"),
  43847. default: true
  43848. },
  43849. ]
  43850. ))
  43851. characterMakers.push(() => makeCharacter(
  43852. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  43853. {
  43854. side: {
  43855. height: math.unit(30, "feet"),
  43856. name: "Side",
  43857. image: {
  43858. source: "./media/characters/veluren-thanazel/side.svg",
  43859. extra: 1611/633,
  43860. bottom: 118/1729
  43861. }
  43862. },
  43863. front: {
  43864. height: math.unit(30, "feet"),
  43865. name: "Front",
  43866. image: {
  43867. source: "./media/characters/veluren-thanazel/front.svg",
  43868. extra: 1486/636,
  43869. bottom: 238/1724
  43870. }
  43871. },
  43872. head: {
  43873. height: math.unit(21.4, "feet"),
  43874. name: "Head",
  43875. image: {
  43876. source: "./media/characters/veluren-thanazel/head.svg"
  43877. }
  43878. },
  43879. genitals: {
  43880. height: math.unit(19.4, "feet"),
  43881. name: "Genitals",
  43882. image: {
  43883. source: "./media/characters/veluren-thanazel/genitals.svg"
  43884. }
  43885. },
  43886. },
  43887. [
  43888. {
  43889. name: "Social",
  43890. height: math.unit(6, "feet")
  43891. },
  43892. {
  43893. name: "Play",
  43894. height: math.unit(12, "feet")
  43895. },
  43896. {
  43897. name: "True",
  43898. height: math.unit(30, "feet"),
  43899. default: true
  43900. },
  43901. ]
  43902. ))
  43903. characterMakers.push(() => makeCharacter(
  43904. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  43905. {
  43906. front: {
  43907. height: math.unit(7 + 6/12, "feet"),
  43908. weight: math.unit(500, "kg"),
  43909. name: "Front",
  43910. image: {
  43911. source: "./media/characters/arcturas/front.svg",
  43912. extra: 1700/1500,
  43913. bottom: 145/1845
  43914. }
  43915. },
  43916. },
  43917. [
  43918. {
  43919. name: "Normal",
  43920. height: math.unit(7 + 6/12, "feet"),
  43921. default: true
  43922. },
  43923. ]
  43924. ))
  43925. characterMakers.push(() => makeCharacter(
  43926. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  43927. {
  43928. side: {
  43929. height: math.unit(6, "feet"),
  43930. weight: math.unit(2, "tons"),
  43931. name: "Side",
  43932. image: {
  43933. source: "./media/characters/vitaen/side.svg",
  43934. extra: 1157/617,
  43935. bottom: 122/1279
  43936. }
  43937. },
  43938. },
  43939. [
  43940. {
  43941. name: "Normal",
  43942. height: math.unit(6, "feet"),
  43943. default: true
  43944. },
  43945. ]
  43946. ))
  43947. characterMakers.push(() => makeCharacter(
  43948. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  43949. {
  43950. front: {
  43951. height: math.unit(19, "feet"),
  43952. name: "Front",
  43953. image: {
  43954. source: "./media/characters/fia-dreamweaver/front.svg",
  43955. extra: 1630/1504,
  43956. bottom: 25/1655
  43957. }
  43958. },
  43959. },
  43960. [
  43961. {
  43962. name: "Normal",
  43963. height: math.unit(19, "feet"),
  43964. default: true
  43965. },
  43966. ]
  43967. ))
  43968. characterMakers.push(() => makeCharacter(
  43969. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  43970. {
  43971. front: {
  43972. height: math.unit(5 + 4/12, "feet"),
  43973. name: "Front",
  43974. image: {
  43975. source: "./media/characters/artan/front.svg",
  43976. extra: 1618/1535,
  43977. bottom: 46/1664
  43978. }
  43979. },
  43980. back: {
  43981. height: math.unit(5 + 4/12, "feet"),
  43982. name: "Back",
  43983. image: {
  43984. source: "./media/characters/artan/back.svg",
  43985. extra: 1618/1543,
  43986. bottom: 31/1649
  43987. }
  43988. },
  43989. },
  43990. [
  43991. {
  43992. name: "Normal",
  43993. height: math.unit(5 + 4/12, "feet"),
  43994. default: true
  43995. },
  43996. ]
  43997. ))
  43998. characterMakers.push(() => makeCharacter(
  43999. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  44000. {
  44001. side: {
  44002. height: math.unit(182, "cm"),
  44003. weight: math.unit(1000, "lb"),
  44004. name: "Side",
  44005. image: {
  44006. source: "./media/characters/silver-dragon/side.svg",
  44007. extra: 710/287,
  44008. bottom: 88/798
  44009. }
  44010. },
  44011. },
  44012. [
  44013. {
  44014. name: "Normal",
  44015. height: math.unit(182, "cm"),
  44016. default: true
  44017. },
  44018. ]
  44019. ))
  44020. characterMakers.push(() => makeCharacter(
  44021. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  44022. {
  44023. side: {
  44024. height: math.unit(6 + 6/12, "feet"),
  44025. weight: math.unit(1.5, "tons"),
  44026. name: "Side",
  44027. image: {
  44028. source: "./media/characters/zephyr/side.svg",
  44029. extra: 1433/586,
  44030. bottom: 109/1542
  44031. }
  44032. },
  44033. },
  44034. [
  44035. {
  44036. name: "Normal",
  44037. height: math.unit(6 + 6/12, "feet"),
  44038. default: true
  44039. },
  44040. ]
  44041. ))
  44042. characterMakers.push(() => makeCharacter(
  44043. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  44044. {
  44045. side: {
  44046. height: math.unit(1, "feet"),
  44047. name: "Side",
  44048. image: {
  44049. source: "./media/characters/vixye/side.svg",
  44050. extra: 632/541,
  44051. bottom: 0/632
  44052. }
  44053. },
  44054. },
  44055. [
  44056. {
  44057. name: "Normal",
  44058. height: math.unit(1, "feet"),
  44059. default: true
  44060. },
  44061. {
  44062. name: "True",
  44063. height: math.unit(1e15, "multiverses")
  44064. },
  44065. ]
  44066. ))
  44067. characterMakers.push(() => makeCharacter(
  44068. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  44069. {
  44070. front: {
  44071. height: math.unit(8 + 2/12, "feet"),
  44072. weight: math.unit(650, "lb"),
  44073. name: "Front",
  44074. image: {
  44075. source: "./media/characters/darla-mac-lochlainn/front.svg",
  44076. extra: 1174/1137,
  44077. bottom: 82/1256
  44078. }
  44079. },
  44080. back: {
  44081. height: math.unit(8 + 2/12, "feet"),
  44082. weight: math.unit(650, "lb"),
  44083. name: "Back",
  44084. image: {
  44085. source: "./media/characters/darla-mac-lochlainn/back.svg",
  44086. extra: 1204/1157,
  44087. bottom: 46/1250
  44088. }
  44089. },
  44090. },
  44091. [
  44092. {
  44093. name: "Wildform",
  44094. height: math.unit(8 + 2/12, "feet"),
  44095. default: true
  44096. },
  44097. ]
  44098. ))
  44099. characterMakers.push(() => makeCharacter(
  44100. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  44101. {
  44102. front: {
  44103. height: math.unit(18, "feet"),
  44104. name: "Front",
  44105. image: {
  44106. source: "./media/characters/cyphin/front.svg",
  44107. extra: 970/886,
  44108. bottom: 42/1012
  44109. }
  44110. },
  44111. back: {
  44112. height: math.unit(18, "feet"),
  44113. name: "Back",
  44114. image: {
  44115. source: "./media/characters/cyphin/back.svg",
  44116. extra: 1009/894,
  44117. bottom: 24/1033
  44118. }
  44119. },
  44120. head: {
  44121. height: math.unit(5.05, "feet"),
  44122. name: "Head",
  44123. image: {
  44124. source: "./media/characters/cyphin/head.svg"
  44125. }
  44126. },
  44127. tailbud: {
  44128. height: math.unit(5, "feet"),
  44129. name: "Tailbud",
  44130. image: {
  44131. source: "./media/characters/cyphin/tailbud.svg"
  44132. }
  44133. },
  44134. },
  44135. [
  44136. ]
  44137. ))
  44138. characterMakers.push(() => makeCharacter(
  44139. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  44140. {
  44141. side: {
  44142. height: math.unit(10, "feet"),
  44143. weight: math.unit(6, "tons"),
  44144. name: "Side",
  44145. image: {
  44146. source: "./media/characters/raijin/side.svg",
  44147. extra: 1529/613,
  44148. bottom: 337/1866
  44149. }
  44150. },
  44151. },
  44152. [
  44153. {
  44154. name: "Normal",
  44155. height: math.unit(10, "feet"),
  44156. default: true
  44157. },
  44158. ]
  44159. ))
  44160. characterMakers.push(() => makeCharacter(
  44161. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  44162. {
  44163. side: {
  44164. height: math.unit(9, "feet"),
  44165. name: "Side",
  44166. image: {
  44167. source: "./media/characters/nilghais/side.svg",
  44168. extra: 1047/744,
  44169. bottom: 91/1138
  44170. }
  44171. },
  44172. head: {
  44173. height: math.unit(3.14, "feet"),
  44174. name: "Head",
  44175. image: {
  44176. source: "./media/characters/nilghais/head.svg"
  44177. }
  44178. },
  44179. mouth: {
  44180. height: math.unit(4.6, "feet"),
  44181. name: "Mouth",
  44182. image: {
  44183. source: "./media/characters/nilghais/mouth.svg"
  44184. }
  44185. },
  44186. wings: {
  44187. height: math.unit(24, "feet"),
  44188. name: "Wings",
  44189. image: {
  44190. source: "./media/characters/nilghais/wings.svg"
  44191. }
  44192. },
  44193. ass: {
  44194. height: math.unit(6.12, "feet"),
  44195. name: "Ass",
  44196. image: {
  44197. source: "./media/characters/nilghais/ass.svg"
  44198. }
  44199. },
  44200. },
  44201. [
  44202. {
  44203. name: "Normal",
  44204. height: math.unit(9, "feet"),
  44205. default: true
  44206. },
  44207. ]
  44208. ))
  44209. characterMakers.push(() => makeCharacter(
  44210. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  44211. {
  44212. regular: {
  44213. height: math.unit(16 + 2/12, "feet"),
  44214. weight: math.unit(2300, "lb"),
  44215. name: "Regular",
  44216. image: {
  44217. source: "./media/characters/zolgar/regular.svg",
  44218. extra: 1246/1004,
  44219. bottom: 124/1370
  44220. }
  44221. },
  44222. boxers: {
  44223. height: math.unit(16 + 2/12, "feet"),
  44224. weight: math.unit(2300, "lb"),
  44225. name: "Boxers",
  44226. image: {
  44227. source: "./media/characters/zolgar/boxers.svg",
  44228. extra: 1246/1004,
  44229. bottom: 124/1370
  44230. }
  44231. },
  44232. armored: {
  44233. height: math.unit(16 + 2/12, "feet"),
  44234. weight: math.unit(2300, "lb"),
  44235. name: "Armored",
  44236. image: {
  44237. source: "./media/characters/zolgar/armored.svg",
  44238. extra: 1246/1004,
  44239. bottom: 124/1370
  44240. }
  44241. },
  44242. goth: {
  44243. height: math.unit(16 + 2/12, "feet"),
  44244. weight: math.unit(2300, "lb"),
  44245. name: "Goth",
  44246. image: {
  44247. source: "./media/characters/zolgar/goth.svg",
  44248. extra: 1246/1004,
  44249. bottom: 124/1370
  44250. }
  44251. },
  44252. },
  44253. [
  44254. {
  44255. name: "Shrunken Down",
  44256. height: math.unit(9 + 2/12, "feet")
  44257. },
  44258. {
  44259. name: "Normal",
  44260. height: math.unit(16 + 2/12, "feet"),
  44261. default: true
  44262. },
  44263. ]
  44264. ))
  44265. characterMakers.push(() => makeCharacter(
  44266. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  44267. {
  44268. front: {
  44269. height: math.unit(6, "feet"),
  44270. weight: math.unit(168, "lb"),
  44271. name: "Front",
  44272. image: {
  44273. source: "./media/characters/luca/front.svg",
  44274. extra: 841/667,
  44275. bottom: 102/943
  44276. }
  44277. },
  44278. },
  44279. [
  44280. {
  44281. name: "Normal",
  44282. height: math.unit(6, "feet"),
  44283. default: true
  44284. },
  44285. ]
  44286. ))
  44287. characterMakers.push(() => makeCharacter(
  44288. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  44289. {
  44290. side: {
  44291. height: math.unit(7 + 3/12, "feet"),
  44292. weight: math.unit(312, "lb"),
  44293. name: "Side",
  44294. image: {
  44295. source: "./media/characters/zezo/side.svg",
  44296. extra: 1192/1067,
  44297. bottom: 63/1255
  44298. }
  44299. },
  44300. },
  44301. [
  44302. {
  44303. name: "Normal",
  44304. height: math.unit(7 + 3/12, "feet"),
  44305. default: true
  44306. },
  44307. ]
  44308. ))
  44309. characterMakers.push(() => makeCharacter(
  44310. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  44311. {
  44312. front: {
  44313. height: math.unit(5 + 5/12, "feet"),
  44314. weight: math.unit(170, "lb"),
  44315. name: "Front",
  44316. image: {
  44317. source: "./media/characters/mayso/front.svg",
  44318. extra: 1215/1108,
  44319. bottom: 16/1231
  44320. }
  44321. },
  44322. },
  44323. [
  44324. {
  44325. name: "Normal",
  44326. height: math.unit(5 + 5/12, "feet"),
  44327. default: true
  44328. },
  44329. ]
  44330. ))
  44331. characterMakers.push(() => makeCharacter(
  44332. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  44333. {
  44334. front: {
  44335. height: math.unit(4 + 3/12, "feet"),
  44336. weight: math.unit(80, "lb"),
  44337. name: "Front",
  44338. image: {
  44339. source: "./media/characters/hess/front.svg",
  44340. extra: 1200/1123,
  44341. bottom: 16/1216
  44342. }
  44343. },
  44344. },
  44345. [
  44346. {
  44347. name: "Normal",
  44348. height: math.unit(4 + 3/12, "feet"),
  44349. default: true
  44350. },
  44351. ]
  44352. ))
  44353. characterMakers.push(() => makeCharacter(
  44354. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  44355. {
  44356. front: {
  44357. height: math.unit(1.9, "meters"),
  44358. name: "Front",
  44359. image: {
  44360. source: "./media/characters/ashgar/front.svg",
  44361. extra: 1177/1146,
  44362. bottom: 99/1276
  44363. }
  44364. },
  44365. back: {
  44366. height: math.unit(1.9, "meters"),
  44367. name: "Back",
  44368. image: {
  44369. source: "./media/characters/ashgar/back.svg",
  44370. extra: 1201/1183,
  44371. bottom: 53/1254
  44372. }
  44373. },
  44374. feral: {
  44375. height: math.unit(1.4, "meters"),
  44376. name: "Feral",
  44377. image: {
  44378. source: "./media/characters/ashgar/feral.svg",
  44379. extra: 370/345,
  44380. bottom: 45/415
  44381. }
  44382. },
  44383. },
  44384. [
  44385. {
  44386. name: "Normal",
  44387. height: math.unit(1.9, "meters"),
  44388. default: true
  44389. },
  44390. ]
  44391. ))
  44392. characterMakers.push(() => makeCharacter(
  44393. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  44394. {
  44395. regular: {
  44396. height: math.unit(6, "feet"),
  44397. weight: math.unit(220, "lb"),
  44398. name: "Regular",
  44399. image: {
  44400. source: "./media/characters/phillip/regular.svg",
  44401. extra: 1373/1277,
  44402. bottom: 75/1448
  44403. }
  44404. },
  44405. dressed: {
  44406. height: math.unit(6, "feet"),
  44407. weight: math.unit(220, "lb"),
  44408. name: "Dressed",
  44409. image: {
  44410. source: "./media/characters/phillip/dressed.svg",
  44411. extra: 1373/1277,
  44412. bottom: 75/1448
  44413. }
  44414. },
  44415. paw: {
  44416. height: math.unit(1.44, "feet"),
  44417. name: "Paw",
  44418. image: {
  44419. source: "./media/characters/phillip/paw.svg"
  44420. }
  44421. },
  44422. },
  44423. [
  44424. {
  44425. name: "Normal",
  44426. height: math.unit(6, "feet"),
  44427. default: true
  44428. },
  44429. ]
  44430. ))
  44431. characterMakers.push(() => makeCharacter(
  44432. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  44433. {
  44434. side: {
  44435. height: math.unit(42, "feet"),
  44436. name: "Side",
  44437. image: {
  44438. source: "./media/characters/uvula/side.svg",
  44439. extra: 683/586,
  44440. bottom: 60/743
  44441. }
  44442. },
  44443. front: {
  44444. height: math.unit(42, "feet"),
  44445. name: "Front",
  44446. image: {
  44447. source: "./media/characters/uvula/front.svg",
  44448. extra: 705/613,
  44449. bottom: 54/759
  44450. }
  44451. },
  44452. maw: {
  44453. height: math.unit(23.5, "feet"),
  44454. name: "Maw",
  44455. image: {
  44456. source: "./media/characters/uvula/maw.svg"
  44457. }
  44458. },
  44459. },
  44460. [
  44461. {
  44462. name: "Original Size",
  44463. height: math.unit(14, "inches")
  44464. },
  44465. {
  44466. name: "Human Size",
  44467. height: math.unit(6, "feet")
  44468. },
  44469. {
  44470. name: "Big",
  44471. height: math.unit(42, "feet"),
  44472. default: true
  44473. },
  44474. {
  44475. name: "Bigger",
  44476. height: math.unit(100, "feet")
  44477. },
  44478. ]
  44479. ))
  44480. characterMakers.push(() => makeCharacter(
  44481. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  44482. {
  44483. front: {
  44484. height: math.unit(5 + 11/12, "feet"),
  44485. name: "Front",
  44486. image: {
  44487. source: "./media/characters/lannah/front.svg",
  44488. extra: 1208/1113,
  44489. bottom: 97/1305
  44490. }
  44491. },
  44492. },
  44493. [
  44494. {
  44495. name: "Normal",
  44496. height: math.unit(5 + 11/12, "feet"),
  44497. default: true
  44498. },
  44499. ]
  44500. ))
  44501. characterMakers.push(() => makeCharacter(
  44502. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  44503. {
  44504. front: {
  44505. height: math.unit(6 + 3/12, "feet"),
  44506. weight: math.unit(3.5, "tons"),
  44507. name: "Front",
  44508. image: {
  44509. source: "./media/characters/emberflame/front.svg",
  44510. extra: 1198/672,
  44511. bottom: 82/1280
  44512. }
  44513. },
  44514. side: {
  44515. height: math.unit(6 + 3/12, "feet"),
  44516. weight: math.unit(3.5, "tons"),
  44517. name: "Side",
  44518. image: {
  44519. source: "./media/characters/emberflame/side.svg",
  44520. extra: 938/527,
  44521. bottom: 56/994
  44522. }
  44523. },
  44524. },
  44525. [
  44526. {
  44527. name: "Normal",
  44528. height: math.unit(6 + 3/12, "feet"),
  44529. default: true
  44530. },
  44531. ]
  44532. ))
  44533. characterMakers.push(() => makeCharacter(
  44534. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  44535. {
  44536. side: {
  44537. height: math.unit(17.5, "feet"),
  44538. weight: math.unit(35, "tons"),
  44539. name: "Side",
  44540. image: {
  44541. source: "./media/characters/sophie-ambrose/side.svg",
  44542. extra: 1573/1242,
  44543. bottom: 71/1644
  44544. }
  44545. },
  44546. maw: {
  44547. height: math.unit(7.4, "feet"),
  44548. name: "Maw",
  44549. image: {
  44550. source: "./media/characters/sophie-ambrose/maw.svg"
  44551. }
  44552. },
  44553. },
  44554. [
  44555. {
  44556. name: "Normal",
  44557. height: math.unit(17.5, "feet"),
  44558. default: true
  44559. },
  44560. ]
  44561. ))
  44562. characterMakers.push(() => makeCharacter(
  44563. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  44564. {
  44565. front: {
  44566. height: math.unit(280, "feet"),
  44567. weight: math.unit(550, "tons"),
  44568. name: "Front",
  44569. image: {
  44570. source: "./media/characters/king-mugi/front.svg",
  44571. extra: 1102/947,
  44572. bottom: 104/1206
  44573. }
  44574. },
  44575. },
  44576. [
  44577. {
  44578. name: "King Mugi",
  44579. height: math.unit(280, "feet"),
  44580. default: true
  44581. },
  44582. ]
  44583. ))
  44584. characterMakers.push(() => makeCharacter(
  44585. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  44586. {
  44587. front: {
  44588. height: math.unit(64, "meters"),
  44589. name: "Front",
  44590. image: {
  44591. source: "./media/characters/nova-fox/front.svg",
  44592. extra: 1310/1246,
  44593. bottom: 65/1375
  44594. }
  44595. },
  44596. },
  44597. [
  44598. {
  44599. name: "Macro",
  44600. height: math.unit(64, "meters"),
  44601. default: true
  44602. },
  44603. ]
  44604. ))
  44605. characterMakers.push(() => makeCharacter(
  44606. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  44607. {
  44608. front: {
  44609. height: math.unit(6 + 3/12, "feet"),
  44610. weight: math.unit(170, "lb"),
  44611. name: "Front",
  44612. image: {
  44613. source: "./media/characters/sam-bat/front.svg",
  44614. extra: 1601/1411,
  44615. bottom: 125/1726
  44616. }
  44617. },
  44618. back: {
  44619. height: math.unit(6 + 3/12, "feet"),
  44620. weight: math.unit(170, "lb"),
  44621. name: "Back",
  44622. image: {
  44623. source: "./media/characters/sam-bat/back.svg",
  44624. extra: 1577/1405,
  44625. bottom: 58/1635
  44626. }
  44627. },
  44628. },
  44629. [
  44630. {
  44631. name: "Normal",
  44632. height: math.unit(6 + 3/12, "feet"),
  44633. default: true
  44634. },
  44635. ]
  44636. ))
  44637. characterMakers.push(() => makeCharacter(
  44638. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  44639. {
  44640. front: {
  44641. height: math.unit(59, "feet"),
  44642. weight: math.unit(40000, "lb"),
  44643. name: "Front",
  44644. image: {
  44645. source: "./media/characters/inari/front.svg",
  44646. extra: 1884/1350,
  44647. bottom: 95/1979
  44648. }
  44649. },
  44650. },
  44651. [
  44652. {
  44653. name: "Gigantamax",
  44654. height: math.unit(59, "feet"),
  44655. default: true
  44656. },
  44657. ]
  44658. ))
  44659. characterMakers.push(() => makeCharacter(
  44660. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  44661. {
  44662. front: {
  44663. height: math.unit(5 + 8/12, "feet"),
  44664. name: "Front",
  44665. image: {
  44666. source: "./media/characters/elizabeth/front.svg",
  44667. extra: 1395/1298,
  44668. bottom: 54/1449
  44669. }
  44670. },
  44671. mouth: {
  44672. height: math.unit(1.97, "feet"),
  44673. name: "Mouth",
  44674. image: {
  44675. source: "./media/characters/elizabeth/mouth.svg"
  44676. }
  44677. },
  44678. foot: {
  44679. height: math.unit(1.17, "feet"),
  44680. name: "Foot",
  44681. image: {
  44682. source: "./media/characters/elizabeth/foot.svg"
  44683. }
  44684. },
  44685. },
  44686. [
  44687. {
  44688. name: "Normal",
  44689. height: math.unit(5 + 8/12, "feet"),
  44690. default: true
  44691. },
  44692. {
  44693. name: "Minimacro",
  44694. height: math.unit(18, "feet")
  44695. },
  44696. {
  44697. name: "Macro",
  44698. height: math.unit(180, "feet")
  44699. },
  44700. ]
  44701. ))
  44702. characterMakers.push(() => makeCharacter(
  44703. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  44704. {
  44705. front: {
  44706. height: math.unit(5 + 2/12, "feet"),
  44707. name: "Front",
  44708. image: {
  44709. source: "./media/characters/october-gossamer/front.svg",
  44710. extra: 505/454,
  44711. bottom: 7/512
  44712. }
  44713. },
  44714. back: {
  44715. height: math.unit(5 + 2/12, "feet"),
  44716. name: "Back",
  44717. image: {
  44718. source: "./media/characters/october-gossamer/back.svg",
  44719. extra: 501/454,
  44720. bottom: 11/512
  44721. }
  44722. },
  44723. },
  44724. [
  44725. {
  44726. name: "Normal",
  44727. height: math.unit(5 + 2/12, "feet"),
  44728. default: true
  44729. },
  44730. ]
  44731. ))
  44732. characterMakers.push(() => makeCharacter(
  44733. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  44734. {
  44735. front: {
  44736. height: math.unit(5, "feet"),
  44737. name: "Front",
  44738. image: {
  44739. source: "./media/characters/epiglottis/front.svg",
  44740. extra: 923/849,
  44741. bottom: 17/940
  44742. }
  44743. },
  44744. },
  44745. [
  44746. {
  44747. name: "Original Size",
  44748. height: math.unit(10, "inches")
  44749. },
  44750. {
  44751. name: "Human Size",
  44752. height: math.unit(5, "feet"),
  44753. default: true
  44754. },
  44755. {
  44756. name: "Big",
  44757. height: math.unit(25, "feet")
  44758. },
  44759. {
  44760. name: "Bigger",
  44761. height: math.unit(50, "feet")
  44762. },
  44763. {
  44764. name: "oh lawd",
  44765. height: math.unit(75, "feet")
  44766. },
  44767. ]
  44768. ))
  44769. characterMakers.push(() => makeCharacter(
  44770. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  44771. {
  44772. front: {
  44773. height: math.unit(2 + 4/12, "feet"),
  44774. weight: math.unit(60, "lb"),
  44775. name: "Front",
  44776. image: {
  44777. source: "./media/characters/lerm/front.svg",
  44778. extra: 796/790,
  44779. bottom: 79/875
  44780. }
  44781. },
  44782. },
  44783. [
  44784. {
  44785. name: "Normal",
  44786. height: math.unit(2 + 4/12, "feet"),
  44787. default: true
  44788. },
  44789. ]
  44790. ))
  44791. characterMakers.push(() => makeCharacter(
  44792. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  44793. {
  44794. front: {
  44795. height: math.unit(5.5, "feet"),
  44796. weight: math.unit(130, "lb"),
  44797. name: "Front",
  44798. image: {
  44799. source: "./media/characters/xena-nebadon/front.svg",
  44800. extra: 1828/1730,
  44801. bottom: 79/1907
  44802. }
  44803. },
  44804. },
  44805. [
  44806. {
  44807. name: "Tiny Puppy",
  44808. height: math.unit(3, "inches")
  44809. },
  44810. {
  44811. name: "Normal",
  44812. height: math.unit(5.5, "feet"),
  44813. default: true
  44814. },
  44815. {
  44816. name: "Lotta Lady",
  44817. height: math.unit(12, "feet")
  44818. },
  44819. {
  44820. name: "Pretty Big",
  44821. height: math.unit(100, "feet")
  44822. },
  44823. {
  44824. name: "Big",
  44825. height: math.unit(500, "feet")
  44826. },
  44827. {
  44828. name: "Skyscraper Toys",
  44829. height: math.unit(2500, "feet")
  44830. },
  44831. {
  44832. name: "Plane Catcher",
  44833. height: math.unit(8, "miles")
  44834. },
  44835. {
  44836. name: "Planet Toys",
  44837. height: math.unit(15, "earths")
  44838. },
  44839. {
  44840. name: "Stardust",
  44841. height: math.unit(0.25, "galaxies")
  44842. },
  44843. {
  44844. name: "Snacks",
  44845. height: math.unit(70, "universes")
  44846. },
  44847. ]
  44848. ))
  44849. characterMakers.push(() => makeCharacter(
  44850. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  44851. {
  44852. front: {
  44853. height: math.unit(1.6, "meters"),
  44854. weight: math.unit(60, "kg"),
  44855. name: "Front",
  44856. image: {
  44857. source: "./media/characters/bounty/front.svg",
  44858. extra: 1426/1308,
  44859. bottom: 15/1441
  44860. }
  44861. },
  44862. back: {
  44863. height: math.unit(1.6, "meters"),
  44864. weight: math.unit(60, "kg"),
  44865. name: "Back",
  44866. image: {
  44867. source: "./media/characters/bounty/back.svg",
  44868. extra: 1417/1307,
  44869. bottom: 8/1425
  44870. }
  44871. },
  44872. },
  44873. [
  44874. {
  44875. name: "Normal",
  44876. height: math.unit(1.6, "meters"),
  44877. default: true
  44878. },
  44879. {
  44880. name: "Macro",
  44881. height: math.unit(300, "meters")
  44882. },
  44883. ]
  44884. ))
  44885. characterMakers.push(() => makeCharacter(
  44886. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  44887. {
  44888. front: {
  44889. height: math.unit(2 + 8/12, "feet"),
  44890. weight: math.unit(15, "lb"),
  44891. name: "Front",
  44892. image: {
  44893. source: "./media/characters/mochi/front.svg",
  44894. extra: 1022/852,
  44895. bottom: 435/1457
  44896. }
  44897. },
  44898. back: {
  44899. height: math.unit(2 + 8/12, "feet"),
  44900. weight: math.unit(15, "lb"),
  44901. name: "Back",
  44902. image: {
  44903. source: "./media/characters/mochi/back.svg",
  44904. extra: 1335/1119,
  44905. bottom: 39/1374
  44906. }
  44907. },
  44908. bird: {
  44909. height: math.unit(2 + 8/12, "feet"),
  44910. weight: math.unit(15, "lb"),
  44911. name: "Bird",
  44912. image: {
  44913. source: "./media/characters/mochi/bird.svg",
  44914. extra: 1251/1113,
  44915. bottom: 178/1429
  44916. }
  44917. },
  44918. kaiju: {
  44919. height: math.unit(154, "feet"),
  44920. weight: math.unit(1e7, "lb"),
  44921. name: "Kaiju",
  44922. image: {
  44923. source: "./media/characters/mochi/kaiju.svg",
  44924. extra: 460/324,
  44925. bottom: 40/500
  44926. }
  44927. },
  44928. head: {
  44929. height: math.unit(1.21, "feet"),
  44930. name: "Head",
  44931. image: {
  44932. source: "./media/characters/mochi/head.svg"
  44933. }
  44934. },
  44935. alternateTail: {
  44936. height: math.unit(2 + 8/12, "feet"),
  44937. weight: math.unit(45, "lb"),
  44938. name: "Alternate Tail",
  44939. image: {
  44940. source: "./media/characters/mochi/alternate-tail.svg",
  44941. extra: 139/76,
  44942. bottom: 45/184
  44943. }
  44944. },
  44945. },
  44946. [
  44947. {
  44948. name: "Micro",
  44949. height: math.unit(2, "inches")
  44950. },
  44951. {
  44952. name: "Normal",
  44953. height: math.unit(2 + 8/12, "feet"),
  44954. default: true
  44955. },
  44956. {
  44957. name: "Macro",
  44958. height: math.unit(106, "feet")
  44959. },
  44960. ]
  44961. ))
  44962. characterMakers.push(() => makeCharacter(
  44963. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  44964. {
  44965. front: {
  44966. height: math.unit(5.67, "feet"),
  44967. weight: math.unit(135, "lb"),
  44968. name: "Front",
  44969. image: {
  44970. source: "./media/characters/sarel/front.svg",
  44971. extra: 865/788,
  44972. bottom: 97/962
  44973. }
  44974. },
  44975. back: {
  44976. height: math.unit(5.67, "feet"),
  44977. weight: math.unit(135, "lb"),
  44978. name: "Back",
  44979. image: {
  44980. source: "./media/characters/sarel/back.svg",
  44981. extra: 857/777,
  44982. bottom: 32/889
  44983. }
  44984. },
  44985. chozoan: {
  44986. height: math.unit(5.67, "feet"),
  44987. weight: math.unit(135, "lb"),
  44988. name: "Chozoan",
  44989. image: {
  44990. source: "./media/characters/sarel/chozoan.svg",
  44991. extra: 865/788,
  44992. bottom: 97/962
  44993. }
  44994. },
  44995. current: {
  44996. height: math.unit(5.67, "feet"),
  44997. weight: math.unit(135, "lb"),
  44998. name: "Current",
  44999. image: {
  45000. source: "./media/characters/sarel/current.svg",
  45001. extra: 865/788,
  45002. bottom: 97/962
  45003. }
  45004. },
  45005. head: {
  45006. height: math.unit(1.77, "feet"),
  45007. name: "Head",
  45008. image: {
  45009. source: "./media/characters/sarel/head.svg"
  45010. }
  45011. },
  45012. claws: {
  45013. height: math.unit(1.8, "feet"),
  45014. name: "Claws",
  45015. image: {
  45016. source: "./media/characters/sarel/claws.svg"
  45017. }
  45018. },
  45019. clawsAlt: {
  45020. height: math.unit(1.8, "feet"),
  45021. name: "Claws-alt",
  45022. image: {
  45023. source: "./media/characters/sarel/claws-alt.svg"
  45024. }
  45025. },
  45026. },
  45027. [
  45028. {
  45029. name: "Normal",
  45030. height: math.unit(5.67, "feet"),
  45031. default: true
  45032. },
  45033. ]
  45034. ))
  45035. characterMakers.push(() => makeCharacter(
  45036. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  45037. {
  45038. front: {
  45039. height: math.unit(5500, "feet"),
  45040. name: "Front",
  45041. image: {
  45042. source: "./media/characters/alyonia/front.svg",
  45043. extra: 1200/1135,
  45044. bottom: 29/1229
  45045. }
  45046. },
  45047. back: {
  45048. height: math.unit(5500, "feet"),
  45049. name: "Back",
  45050. image: {
  45051. source: "./media/characters/alyonia/back.svg",
  45052. extra: 1205/1138,
  45053. bottom: 10/1215
  45054. }
  45055. },
  45056. },
  45057. [
  45058. {
  45059. name: "Small",
  45060. height: math.unit(10, "feet")
  45061. },
  45062. {
  45063. name: "Macro",
  45064. height: math.unit(500, "feet")
  45065. },
  45066. {
  45067. name: "Mega Macro",
  45068. height: math.unit(5500, "feet"),
  45069. default: true
  45070. },
  45071. {
  45072. name: "Mega Macro+",
  45073. height: math.unit(500000, "feet")
  45074. },
  45075. {
  45076. name: "Giga Macro",
  45077. height: math.unit(3000, "miles")
  45078. },
  45079. {
  45080. name: "Tera Macro",
  45081. height: math.unit(2.8e6, "miles")
  45082. },
  45083. {
  45084. name: "Galactic",
  45085. height: math.unit(120000, "lightyears")
  45086. },
  45087. ]
  45088. ))
  45089. characterMakers.push(() => makeCharacter(
  45090. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  45091. {
  45092. werewolf: {
  45093. height: math.unit(8, "feet"),
  45094. weight: math.unit(425, "lb"),
  45095. name: "Werewolf",
  45096. image: {
  45097. source: "./media/characters/autumn/werewolf.svg",
  45098. extra: 2154/2031,
  45099. bottom: 160/2314
  45100. }
  45101. },
  45102. human: {
  45103. height: math.unit(5 + 8/12, "feet"),
  45104. weight: math.unit(150, "lb"),
  45105. name: "Human",
  45106. image: {
  45107. source: "./media/characters/autumn/human.svg",
  45108. extra: 1200/1149,
  45109. bottom: 30/1230
  45110. }
  45111. },
  45112. },
  45113. [
  45114. {
  45115. name: "Normal",
  45116. height: math.unit(8, "feet"),
  45117. default: true
  45118. },
  45119. ]
  45120. ))
  45121. characterMakers.push(() => makeCharacter(
  45122. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  45123. {
  45124. front: {
  45125. height: math.unit(8 + 5/12, "feet"),
  45126. weight: math.unit(825, "lb"),
  45127. name: "Front",
  45128. image: {
  45129. source: "./media/characters/cobalt-charizard/front.svg",
  45130. extra: 1268/1155,
  45131. bottom: 122/1390
  45132. }
  45133. },
  45134. side: {
  45135. height: math.unit(8 + 5/12, "feet"),
  45136. weight: math.unit(825, "lb"),
  45137. name: "Side",
  45138. image: {
  45139. source: "./media/characters/cobalt-charizard/side.svg",
  45140. extra: 1348/1257,
  45141. bottom: 58/1406
  45142. }
  45143. },
  45144. gMax: {
  45145. height: math.unit(134 + 11/12, "feet"),
  45146. name: "G-Max",
  45147. image: {
  45148. source: "./media/characters/cobalt-charizard/g-max.svg",
  45149. extra: 1835/1541,
  45150. bottom: 151/1986
  45151. }
  45152. },
  45153. },
  45154. [
  45155. {
  45156. name: "Normal",
  45157. height: math.unit(8 + 5/12, "feet"),
  45158. default: true
  45159. },
  45160. ]
  45161. ))
  45162. characterMakers.push(() => makeCharacter(
  45163. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  45164. {
  45165. front: {
  45166. height: math.unit(6 + 3/12, "feet"),
  45167. weight: math.unit(210, "lb"),
  45168. name: "Front",
  45169. image: {
  45170. source: "./media/characters/stella/front.svg",
  45171. extra: 3549/3335,
  45172. bottom: 51/3600
  45173. }
  45174. },
  45175. },
  45176. [
  45177. {
  45178. name: "Normal",
  45179. height: math.unit(6 + 3/12, "feet"),
  45180. default: true
  45181. },
  45182. ]
  45183. ))
  45184. characterMakers.push(() => makeCharacter(
  45185. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  45186. {
  45187. front: {
  45188. height: math.unit(5, "feet"),
  45189. weight: math.unit(90, "lb"),
  45190. name: "Front",
  45191. image: {
  45192. source: "./media/characters/riley-bishop/front.svg",
  45193. extra: 1450/1428,
  45194. bottom: 152/1602
  45195. }
  45196. },
  45197. },
  45198. [
  45199. {
  45200. name: "Normal",
  45201. height: math.unit(5, "feet"),
  45202. default: true
  45203. },
  45204. ]
  45205. ))
  45206. characterMakers.push(() => makeCharacter(
  45207. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  45208. {
  45209. side: {
  45210. height: math.unit(8 + 2/12, "feet"),
  45211. weight: math.unit(500, "kg"),
  45212. name: "Side",
  45213. image: {
  45214. source: "./media/characters/theo-arcanine/side.svg",
  45215. extra: 1342/1074,
  45216. bottom: 111/1453
  45217. }
  45218. },
  45219. },
  45220. [
  45221. {
  45222. name: "Normal",
  45223. height: math.unit(8 + 2/12, "feet"),
  45224. default: true
  45225. },
  45226. ]
  45227. ))
  45228. characterMakers.push(() => makeCharacter(
  45229. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  45230. {
  45231. front: {
  45232. height: math.unit(4, "feet"),
  45233. name: "Front",
  45234. image: {
  45235. source: "./media/characters/kali/front.svg",
  45236. extra: 1921/1357,
  45237. bottom: 70/1991
  45238. }
  45239. },
  45240. },
  45241. [
  45242. {
  45243. name: "Normal",
  45244. height: math.unit(4, "feet"),
  45245. default: true
  45246. },
  45247. {
  45248. name: "Macro",
  45249. height: math.unit(32, "meters")
  45250. },
  45251. {
  45252. name: "Macro+",
  45253. height: math.unit(150, "meters")
  45254. },
  45255. {
  45256. name: "Megamacro",
  45257. height: math.unit(7500, "meters")
  45258. },
  45259. {
  45260. name: "Megamacro+",
  45261. height: math.unit(80, "kilometers")
  45262. },
  45263. ]
  45264. ))
  45265. characterMakers.push(() => makeCharacter(
  45266. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  45267. {
  45268. side: {
  45269. height: math.unit(5 + 11/12, "feet"),
  45270. weight: math.unit(236, "lb"),
  45271. name: "Side",
  45272. image: {
  45273. source: "./media/characters/gapp/side.svg",
  45274. extra: 775/340,
  45275. bottom: 58/833
  45276. }
  45277. },
  45278. mouth: {
  45279. height: math.unit(2.98, "feet"),
  45280. name: "Mouth",
  45281. image: {
  45282. source: "./media/characters/gapp/mouth.svg"
  45283. }
  45284. },
  45285. },
  45286. [
  45287. {
  45288. name: "Normal",
  45289. height: math.unit(5 + 1/12, "feet"),
  45290. default: true
  45291. },
  45292. ]
  45293. ))
  45294. characterMakers.push(() => makeCharacter(
  45295. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  45296. {
  45297. front: {
  45298. height: math.unit(6, "feet"),
  45299. name: "Front",
  45300. image: {
  45301. source: "./media/characters/persephone/front.svg",
  45302. extra: 1895/1717,
  45303. bottom: 96/1991
  45304. }
  45305. },
  45306. back: {
  45307. height: math.unit(6, "feet"),
  45308. name: "Back",
  45309. image: {
  45310. source: "./media/characters/persephone/back.svg",
  45311. extra: 1868/1679,
  45312. bottom: 26/1894
  45313. }
  45314. },
  45315. casual: {
  45316. height: math.unit(6, "feet"),
  45317. name: "Casual",
  45318. image: {
  45319. source: "./media/characters/persephone/casual.svg",
  45320. extra: 1713/1541,
  45321. bottom: 76/1789
  45322. }
  45323. },
  45324. },
  45325. [
  45326. {
  45327. name: "Human Size",
  45328. height: math.unit(6, "feet")
  45329. },
  45330. {
  45331. name: "Big Steppy",
  45332. height: math.unit(600, "meters"),
  45333. default: true
  45334. },
  45335. {
  45336. name: "Galaxy Brain",
  45337. height: math.unit(1, "zettameter")
  45338. },
  45339. ]
  45340. ))
  45341. characterMakers.push(() => makeCharacter(
  45342. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  45343. {
  45344. front: {
  45345. height: math.unit(1.85, "meters"),
  45346. name: "Front",
  45347. image: {
  45348. source: "./media/characters/riley-foxthing/front.svg",
  45349. extra: 1495/1354,
  45350. bottom: 122/1617
  45351. }
  45352. },
  45353. frontAlt: {
  45354. height: math.unit(1.85, "meters"),
  45355. name: "Front (Alt)",
  45356. image: {
  45357. source: "./media/characters/riley-foxthing/front-alt.svg",
  45358. extra: 1572/1389,
  45359. bottom: 116/1688
  45360. }
  45361. },
  45362. },
  45363. [
  45364. {
  45365. name: "Normal Sized",
  45366. height: math.unit(1.85, "meters"),
  45367. default: true
  45368. },
  45369. {
  45370. name: "Quite Sizable",
  45371. height: math.unit(5, "meters")
  45372. },
  45373. {
  45374. name: "Rather Large",
  45375. height: math.unit(20, "meters")
  45376. },
  45377. {
  45378. name: "Macro",
  45379. height: math.unit(450, "meters")
  45380. },
  45381. {
  45382. name: "Giga",
  45383. height: math.unit(5, "km")
  45384. },
  45385. ]
  45386. ))
  45387. characterMakers.push(() => makeCharacter(
  45388. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  45389. {
  45390. front: {
  45391. height: math.unit(6, "feet"),
  45392. weight: math.unit(200, "lb"),
  45393. name: "Front",
  45394. image: {
  45395. source: "./media/characters/blizzard/front.svg",
  45396. extra: 1136/990,
  45397. bottom: 136/1272
  45398. }
  45399. },
  45400. back: {
  45401. height: math.unit(6, "feet"),
  45402. weight: math.unit(200, "lb"),
  45403. name: "Back",
  45404. image: {
  45405. source: "./media/characters/blizzard/back.svg",
  45406. extra: 1175/1034,
  45407. bottom: 97/1272
  45408. }
  45409. },
  45410. sitting: {
  45411. height: math.unit(3.725, "feet"),
  45412. weight: math.unit(200, "lb"),
  45413. name: "Sitting",
  45414. image: {
  45415. source: "./media/characters/blizzard/sitting.svg",
  45416. extra: 581/485,
  45417. bottom: 90/671
  45418. }
  45419. },
  45420. frontWizard: {
  45421. height: math.unit(7.9, "feet"),
  45422. weight: math.unit(200, "lb"),
  45423. name: "Front (Wizard)",
  45424. image: {
  45425. source: "./media/characters/blizzard/front-wizard.svg"
  45426. }
  45427. },
  45428. backWizard: {
  45429. height: math.unit(7.9, "feet"),
  45430. weight: math.unit(200, "lb"),
  45431. name: "Back (Wizard)",
  45432. image: {
  45433. source: "./media/characters/blizzard/back-wizard.svg"
  45434. }
  45435. },
  45436. frontNsfw: {
  45437. height: math.unit(6, "feet"),
  45438. weight: math.unit(200, "lb"),
  45439. name: "Front (NSFW)",
  45440. image: {
  45441. source: "./media/characters/blizzard/front-nsfw.svg",
  45442. extra: 1136/990,
  45443. bottom: 136/1272
  45444. }
  45445. },
  45446. backNsfw: {
  45447. height: math.unit(6, "feet"),
  45448. weight: math.unit(200, "lb"),
  45449. name: "Back (NSFW)",
  45450. image: {
  45451. source: "./media/characters/blizzard/back-nsfw.svg",
  45452. extra: 1175/1034,
  45453. bottom: 97/1272
  45454. }
  45455. },
  45456. sittingNsfw: {
  45457. height: math.unit(3.725, "feet"),
  45458. weight: math.unit(200, "lb"),
  45459. name: "Sitting (NSFW)",
  45460. image: {
  45461. source: "./media/characters/blizzard/sitting-nsfw.svg",
  45462. extra: 581/485,
  45463. bottom: 90/671
  45464. }
  45465. },
  45466. wizardFrontNsfw: {
  45467. height: math.unit(7.9, "feet"),
  45468. weight: math.unit(200, "lb"),
  45469. name: "Wizard (Front, NSFW)",
  45470. image: {
  45471. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  45472. }
  45473. },
  45474. },
  45475. [
  45476. {
  45477. name: "Normal",
  45478. height: math.unit(6, "feet"),
  45479. default: true
  45480. },
  45481. ]
  45482. ))
  45483. characterMakers.push(() => makeCharacter(
  45484. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  45485. {
  45486. front: {
  45487. height: math.unit(5 + 2/12, "feet"),
  45488. name: "Front",
  45489. image: {
  45490. source: "./media/characters/lumi/front.svg",
  45491. extra: 1328/1268,
  45492. bottom: 103/1431
  45493. }
  45494. },
  45495. back: {
  45496. height: math.unit(5 + 2/12, "feet"),
  45497. name: "Back",
  45498. image: {
  45499. source: "./media/characters/lumi/back.svg",
  45500. extra: 1381/1327,
  45501. bottom: 43/1424
  45502. }
  45503. },
  45504. },
  45505. [
  45506. {
  45507. name: "Normal",
  45508. height: math.unit(5 + 2/12, "feet"),
  45509. default: true
  45510. },
  45511. ]
  45512. ))
  45513. characterMakers.push(() => makeCharacter(
  45514. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  45515. {
  45516. front: {
  45517. height: math.unit(5 + 9/12, "feet"),
  45518. name: "Front",
  45519. image: {
  45520. source: "./media/characters/aliya-cotton/front.svg",
  45521. extra: 577/564,
  45522. bottom: 29/606
  45523. }
  45524. },
  45525. },
  45526. [
  45527. {
  45528. name: "Normal",
  45529. height: math.unit(5 + 9/12, "feet"),
  45530. default: true
  45531. },
  45532. ]
  45533. ))
  45534. characterMakers.push(() => makeCharacter(
  45535. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  45536. {
  45537. front: {
  45538. height: math.unit(2.7, "meters"),
  45539. weight: math.unit(25000, "lb"),
  45540. name: "Front",
  45541. image: {
  45542. source: "./media/characters/noah-luxray/front.svg",
  45543. extra: 1644/825,
  45544. bottom: 339/1983
  45545. }
  45546. },
  45547. side: {
  45548. height: math.unit(2.97, "meters"),
  45549. weight: math.unit(25000, "lb"),
  45550. name: "Side",
  45551. image: {
  45552. source: "./media/characters/noah-luxray/side.svg",
  45553. extra: 1319/650,
  45554. bottom: 163/1482
  45555. }
  45556. },
  45557. dick: {
  45558. height: math.unit(7.4, "feet"),
  45559. weight: math.unit(2500, "lb"),
  45560. name: "Dick",
  45561. image: {
  45562. source: "./media/characters/noah-luxray/dick.svg"
  45563. }
  45564. },
  45565. dickAlt: {
  45566. height: math.unit(10.83, "feet"),
  45567. weight: math.unit(2500, "lb"),
  45568. name: "Dick-alt",
  45569. image: {
  45570. source: "./media/characters/noah-luxray/dick-alt.svg"
  45571. }
  45572. },
  45573. },
  45574. [
  45575. {
  45576. name: "BIG",
  45577. height: math.unit(2.7, "meters"),
  45578. default: true
  45579. },
  45580. ]
  45581. ))
  45582. characterMakers.push(() => makeCharacter(
  45583. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  45584. {
  45585. standing: {
  45586. height: math.unit(183, "cm"),
  45587. weight: math.unit(68, "kg"),
  45588. name: "Standing",
  45589. image: {
  45590. source: "./media/characters/arion/standing.svg",
  45591. extra: 1869/1807,
  45592. bottom: 93/1962
  45593. }
  45594. },
  45595. reclining: {
  45596. height: math.unit(70.5, "cm"),
  45597. weight: math.unit(68, "lb"),
  45598. name: "Reclining",
  45599. image: {
  45600. source: "./media/characters/arion/reclining.svg",
  45601. extra: 937/870,
  45602. bottom: 63/1000
  45603. }
  45604. },
  45605. },
  45606. [
  45607. {
  45608. name: "Colossus Size, Low",
  45609. height: math.unit(33, "meters"),
  45610. default: true
  45611. },
  45612. {
  45613. name: "Colossus Size, Mid",
  45614. height: math.unit(52, "meters")
  45615. },
  45616. {
  45617. name: "Colossus Size, High",
  45618. height: math.unit(60, "meters")
  45619. },
  45620. {
  45621. name: "Titan Size, Low",
  45622. height: math.unit(91, "meters"),
  45623. },
  45624. {
  45625. name: "Titan Size, Mid",
  45626. height: math.unit(122, "meters")
  45627. },
  45628. {
  45629. name: "Titan Size, High",
  45630. height: math.unit(162, "meters")
  45631. },
  45632. ]
  45633. ))
  45634. characterMakers.push(() => makeCharacter(
  45635. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  45636. {
  45637. front: {
  45638. height: math.unit(53, "meters"),
  45639. name: "Front",
  45640. image: {
  45641. source: "./media/characters/stellar-marbey/front.svg",
  45642. extra: 1913/1805,
  45643. bottom: 92/2005
  45644. }
  45645. },
  45646. back: {
  45647. height: math.unit(53, "meters"),
  45648. name: "Back",
  45649. image: {
  45650. source: "./media/characters/stellar-marbey/back.svg",
  45651. extra: 1960/1851,
  45652. bottom: 28/1988
  45653. }
  45654. },
  45655. mouth: {
  45656. height: math.unit(3.5, "meters"),
  45657. name: "Mouth",
  45658. image: {
  45659. source: "./media/characters/stellar-marbey/mouth.svg"
  45660. }
  45661. },
  45662. },
  45663. [
  45664. {
  45665. name: "Macro",
  45666. height: math.unit(53, "meters"),
  45667. default: true
  45668. },
  45669. ]
  45670. ))
  45671. characterMakers.push(() => makeCharacter(
  45672. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  45673. {
  45674. front: {
  45675. height: math.unit(8 + 1/12, "feet"),
  45676. weight: math.unit(233, "lb"),
  45677. name: "Front",
  45678. image: {
  45679. source: "./media/characters/matsu/front.svg",
  45680. extra: 832/772,
  45681. bottom: 40/872
  45682. }
  45683. },
  45684. back: {
  45685. height: math.unit(8 + 1/12, "feet"),
  45686. weight: math.unit(233, "lb"),
  45687. name: "Back",
  45688. image: {
  45689. source: "./media/characters/matsu/back.svg",
  45690. extra: 839/780,
  45691. bottom: 47/886
  45692. }
  45693. },
  45694. },
  45695. [
  45696. {
  45697. name: "Normal",
  45698. height: math.unit(8 + 1/12, "feet"),
  45699. default: true
  45700. },
  45701. ]
  45702. ))
  45703. characterMakers.push(() => makeCharacter(
  45704. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  45705. {
  45706. front: {
  45707. height: math.unit(4, "feet"),
  45708. weight: math.unit(148, "lb"),
  45709. name: "Front",
  45710. image: {
  45711. source: "./media/characters/thiz/front.svg",
  45712. extra: 1913/1748,
  45713. bottom: 62/1975
  45714. }
  45715. },
  45716. },
  45717. [
  45718. {
  45719. name: "Normal",
  45720. height: math.unit(4, "feet"),
  45721. default: true
  45722. },
  45723. ]
  45724. ))
  45725. characterMakers.push(() => makeCharacter(
  45726. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  45727. {
  45728. front: {
  45729. height: math.unit(7 + 6/12, "feet"),
  45730. weight: math.unit(267, "lb"),
  45731. name: "Front",
  45732. image: {
  45733. source: "./media/characters/marcel/front.svg",
  45734. extra: 1221/1096,
  45735. bottom: 76/1297
  45736. }
  45737. },
  45738. },
  45739. [
  45740. {
  45741. name: "Normal",
  45742. height: math.unit(7 + 6/12, "feet"),
  45743. default: true
  45744. },
  45745. ]
  45746. ))
  45747. characterMakers.push(() => makeCharacter(
  45748. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  45749. {
  45750. side: {
  45751. height: math.unit(42, "meters"),
  45752. name: "Side",
  45753. image: {
  45754. source: "./media/characters/flake/side.svg",
  45755. extra: 1525/1306,
  45756. bottom: 209/1734
  45757. }
  45758. },
  45759. },
  45760. [
  45761. {
  45762. name: "Normal",
  45763. height: math.unit(42, "meters"),
  45764. default: true
  45765. },
  45766. ]
  45767. ))
  45768. characterMakers.push(() => makeCharacter(
  45769. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  45770. {
  45771. dressed: {
  45772. height: math.unit(6 + 4/12, "feet"),
  45773. weight: math.unit(520, "lb"),
  45774. name: "Dressed",
  45775. image: {
  45776. source: "./media/characters/someonne/dressed.svg",
  45777. extra: 1020/1010,
  45778. bottom: 178/1198
  45779. }
  45780. },
  45781. undressed: {
  45782. height: math.unit(6 + 4/12, "feet"),
  45783. weight: math.unit(520, "lb"),
  45784. name: "Undressed",
  45785. image: {
  45786. source: "./media/characters/someonne/undressed.svg",
  45787. extra: 1019/1014,
  45788. bottom: 169/1188
  45789. }
  45790. },
  45791. },
  45792. [
  45793. {
  45794. name: "Normal",
  45795. height: math.unit(6 + 4/12, "feet"),
  45796. default: true
  45797. },
  45798. ]
  45799. ))
  45800. characterMakers.push(() => makeCharacter(
  45801. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  45802. {
  45803. front: {
  45804. height: math.unit(3, "feet"),
  45805. weight: math.unit(30, "lb"),
  45806. name: "Front",
  45807. image: {
  45808. source: "./media/characters/till/front.svg",
  45809. extra: 892/823,
  45810. bottom: 55/947
  45811. }
  45812. },
  45813. },
  45814. [
  45815. {
  45816. name: "Normal",
  45817. height: math.unit(3, "feet"),
  45818. default: true
  45819. },
  45820. ]
  45821. ))
  45822. characterMakers.push(() => makeCharacter(
  45823. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  45824. {
  45825. front: {
  45826. height: math.unit(9 + 8/12, "feet"),
  45827. weight: math.unit(800, "lb"),
  45828. name: "Front",
  45829. image: {
  45830. source: "./media/characters/sydney-heki/front.svg",
  45831. extra: 1360/1300,
  45832. bottom: 22/1382
  45833. }
  45834. },
  45835. back: {
  45836. height: math.unit(9 + 8/12, "feet"),
  45837. weight: math.unit(800, "lb"),
  45838. name: "Back",
  45839. image: {
  45840. source: "./media/characters/sydney-heki/back.svg",
  45841. extra: 1356/1293,
  45842. bottom: 12/1368
  45843. }
  45844. },
  45845. frontDressed: {
  45846. height: math.unit(9 + 8/12, "feet"),
  45847. weight: math.unit(800, "lb"),
  45848. name: "Front-dressed",
  45849. image: {
  45850. source: "./media/characters/sydney-heki/front-dressed.svg",
  45851. extra: 1360/1300,
  45852. bottom: 22/1382
  45853. }
  45854. },
  45855. },
  45856. [
  45857. {
  45858. name: "Normal",
  45859. height: math.unit(9 + 8/12, "feet"),
  45860. default: true
  45861. },
  45862. {
  45863. name: "Macro",
  45864. height: math.unit(500, "feet")
  45865. },
  45866. {
  45867. name: "Megamacro",
  45868. height: math.unit(3.6, "miles")
  45869. },
  45870. ]
  45871. ))
  45872. characterMakers.push(() => makeCharacter(
  45873. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  45874. {
  45875. front: {
  45876. height: math.unit(200, "cm"),
  45877. weight: math.unit(250, "lb"),
  45878. name: "Front",
  45879. image: {
  45880. source: "./media/characters/fowler-karlsson/front.svg",
  45881. extra: 897/845,
  45882. bottom: 123/1020
  45883. }
  45884. },
  45885. back: {
  45886. height: math.unit(200, "cm"),
  45887. weight: math.unit(250, "lb"),
  45888. name: "Back",
  45889. image: {
  45890. source: "./media/characters/fowler-karlsson/back.svg",
  45891. extra: 999/944,
  45892. bottom: 26/1025
  45893. }
  45894. },
  45895. dick: {
  45896. height: math.unit(1.92, "feet"),
  45897. weight: math.unit(150, "lb"),
  45898. name: "Dick",
  45899. image: {
  45900. source: "./media/characters/fowler-karlsson/dick.svg"
  45901. }
  45902. },
  45903. },
  45904. [
  45905. {
  45906. name: "Normal",
  45907. height: math.unit(200, "cm"),
  45908. default: true
  45909. },
  45910. {
  45911. name: "Smaller Macro",
  45912. height: math.unit(90, "m")
  45913. },
  45914. {
  45915. name: "Macro",
  45916. height: math.unit(150, "m")
  45917. },
  45918. {
  45919. name: "Bigger Macro",
  45920. height: math.unit(300, "m")
  45921. },
  45922. ]
  45923. ))
  45924. characterMakers.push(() => makeCharacter(
  45925. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  45926. {
  45927. side: {
  45928. height: math.unit(8 + 2/12, "feet"),
  45929. weight: math.unit(1, "tonne"),
  45930. name: "Side",
  45931. image: {
  45932. source: "./media/characters/rylide/side.svg",
  45933. extra: 1318/1034,
  45934. bottom: 106/1424
  45935. }
  45936. },
  45937. sitting: {
  45938. height: math.unit(303, "cm"),
  45939. weight: math.unit(1, "tonne"),
  45940. name: "Sitting",
  45941. image: {
  45942. source: "./media/characters/rylide/sitting.svg",
  45943. extra: 1303/1103,
  45944. bottom: 36/1339
  45945. }
  45946. },
  45947. },
  45948. [
  45949. {
  45950. name: "Normal",
  45951. height: math.unit(8 + 2/12, "feet"),
  45952. default: true
  45953. },
  45954. ]
  45955. ))
  45956. characterMakers.push(() => makeCharacter(
  45957. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  45958. {
  45959. front: {
  45960. height: math.unit(5 + 10/12, "feet"),
  45961. weight: math.unit(160, "lb"),
  45962. name: "Front",
  45963. image: {
  45964. source: "./media/characters/pudask/front.svg",
  45965. extra: 1616/1590,
  45966. bottom: 161/1777
  45967. }
  45968. },
  45969. },
  45970. [
  45971. {
  45972. name: "Ferret Height",
  45973. height: math.unit(2 + 5/12, "feet")
  45974. },
  45975. {
  45976. name: "Canon Height",
  45977. height: math.unit(5 + 10/12, "feet"),
  45978. default: true
  45979. },
  45980. ]
  45981. ))
  45982. characterMakers.push(() => makeCharacter(
  45983. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  45984. {
  45985. front: {
  45986. height: math.unit(3 + 6/12, "feet"),
  45987. weight: math.unit(60, "lb"),
  45988. name: "Front",
  45989. image: {
  45990. source: "./media/characters/ramita/front.svg",
  45991. extra: 1402/1232,
  45992. bottom: 62/1464
  45993. }
  45994. },
  45995. dressed: {
  45996. height: math.unit(3 + 6/12, "feet"),
  45997. weight: math.unit(60, "lb"),
  45998. name: "Dressed",
  45999. image: {
  46000. source: "./media/characters/ramita/dressed.svg",
  46001. extra: 1534/1249,
  46002. bottom: 50/1584
  46003. }
  46004. },
  46005. },
  46006. [
  46007. {
  46008. name: "Normal",
  46009. height: math.unit(3 + 6/12, "feet"),
  46010. default: true
  46011. },
  46012. ]
  46013. ))
  46014. characterMakers.push(() => makeCharacter(
  46015. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  46016. {
  46017. front: {
  46018. height: math.unit(8, "feet"),
  46019. name: "Front",
  46020. image: {
  46021. source: "./media/characters/ark/front.svg",
  46022. extra: 772/693,
  46023. bottom: 45/817
  46024. }
  46025. },
  46026. },
  46027. [
  46028. {
  46029. name: "Normal",
  46030. height: math.unit(8, "feet"),
  46031. default: true
  46032. },
  46033. ]
  46034. ))
  46035. characterMakers.push(() => makeCharacter(
  46036. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  46037. {
  46038. front: {
  46039. height: math.unit(6, "feet"),
  46040. weight: math.unit(250, "lb"),
  46041. volume: math.unit(5/8, "gallons"),
  46042. name: "Front",
  46043. image: {
  46044. source: "./media/characters/ludwig-horn/front.svg",
  46045. extra: 1782/1635,
  46046. bottom: 96/1878
  46047. }
  46048. },
  46049. back: {
  46050. height: math.unit(6, "feet"),
  46051. weight: math.unit(250, "lb"),
  46052. volume: math.unit(5/8, "gallons"),
  46053. name: "Back",
  46054. image: {
  46055. source: "./media/characters/ludwig-horn/back.svg",
  46056. extra: 1874/1729,
  46057. bottom: 27/1901
  46058. }
  46059. },
  46060. dick: {
  46061. height: math.unit(1.05, "feet"),
  46062. weight: math.unit(15, "lb"),
  46063. volume: math.unit(5/8, "gallons"),
  46064. name: "Dick",
  46065. image: {
  46066. source: "./media/characters/ludwig-horn/dick.svg"
  46067. }
  46068. },
  46069. },
  46070. [
  46071. {
  46072. name: "Small",
  46073. height: math.unit(6, "feet")
  46074. },
  46075. {
  46076. name: "Typical",
  46077. height: math.unit(12, "feet"),
  46078. default: true
  46079. },
  46080. {
  46081. name: "Building",
  46082. height: math.unit(80, "feet")
  46083. },
  46084. {
  46085. name: "Town",
  46086. height: math.unit(800, "feet")
  46087. },
  46088. {
  46089. name: "Kingdom",
  46090. height: math.unit(80000, "feet")
  46091. },
  46092. {
  46093. name: "Planet",
  46094. height: math.unit(8000000, "feet")
  46095. },
  46096. {
  46097. name: "Universe",
  46098. height: math.unit(8000000000, "feet")
  46099. },
  46100. {
  46101. name: "Transcended",
  46102. height: math.unit(8e27, "feet")
  46103. },
  46104. ]
  46105. ))
  46106. characterMakers.push(() => makeCharacter(
  46107. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  46108. {
  46109. front: {
  46110. height: math.unit(5, "feet"),
  46111. weight: math.unit(50, "kg"),
  46112. name: "Front",
  46113. image: {
  46114. source: "./media/characters/biot-avery/front.svg",
  46115. extra: 1295/1232,
  46116. bottom: 86/1381
  46117. }
  46118. },
  46119. },
  46120. [
  46121. {
  46122. name: "Normal",
  46123. height: math.unit(5, "feet"),
  46124. default: true
  46125. },
  46126. ]
  46127. ))
  46128. characterMakers.push(() => makeCharacter(
  46129. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  46130. {
  46131. front: {
  46132. height: math.unit(6, "feet"),
  46133. name: "Front",
  46134. image: {
  46135. source: "./media/characters/kitsune-kiro/front.svg",
  46136. extra: 1270/1158,
  46137. bottom: 42/1312
  46138. }
  46139. },
  46140. frontAlt: {
  46141. height: math.unit(6, "feet"),
  46142. name: "Front-alt",
  46143. image: {
  46144. source: "./media/characters/kitsune-kiro/front-alt.svg",
  46145. extra: 1130/1081,
  46146. bottom: 36/1166
  46147. }
  46148. },
  46149. },
  46150. [
  46151. {
  46152. name: "Smol",
  46153. height: math.unit(3, "feet")
  46154. },
  46155. {
  46156. name: "Normal",
  46157. height: math.unit(6, "feet"),
  46158. default: true
  46159. },
  46160. ]
  46161. ))
  46162. characterMakers.push(() => makeCharacter(
  46163. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  46164. {
  46165. front: {
  46166. height: math.unit(6, "feet"),
  46167. weight: math.unit(125, "lb"),
  46168. name: "Front",
  46169. image: {
  46170. source: "./media/characters/jack-thatcher/front.svg",
  46171. extra: 1474/1370,
  46172. bottom: 26/1500
  46173. }
  46174. },
  46175. back: {
  46176. height: math.unit(6, "feet"),
  46177. weight: math.unit(125, "lb"),
  46178. name: "Back",
  46179. image: {
  46180. source: "./media/characters/jack-thatcher/back.svg",
  46181. extra: 1489/1384,
  46182. bottom: 18/1507
  46183. }
  46184. },
  46185. },
  46186. [
  46187. {
  46188. name: "Normal",
  46189. height: math.unit(6, "feet"),
  46190. default: true
  46191. },
  46192. {
  46193. name: "Macro",
  46194. height: math.unit(75, "feet")
  46195. },
  46196. {
  46197. name: "Macro-er",
  46198. height: math.unit(250, "feet")
  46199. },
  46200. ]
  46201. ))
  46202. characterMakers.push(() => makeCharacter(
  46203. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  46204. {
  46205. front: {
  46206. height: math.unit(7, "feet"),
  46207. weight: math.unit(110, "kg"),
  46208. name: "Front",
  46209. image: {
  46210. source: "./media/characters/max-hyper/front.svg",
  46211. extra: 1969/1881,
  46212. bottom: 49/2018
  46213. }
  46214. },
  46215. },
  46216. [
  46217. {
  46218. name: "Normal",
  46219. height: math.unit(7, "feet"),
  46220. default: true
  46221. },
  46222. ]
  46223. ))
  46224. characterMakers.push(() => makeCharacter(
  46225. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  46226. {
  46227. front: {
  46228. height: math.unit(5 + 5/12, "feet"),
  46229. weight: math.unit(160, "lb"),
  46230. name: "Front",
  46231. image: {
  46232. source: "./media/characters/spook/front.svg",
  46233. extra: 794/791,
  46234. bottom: 54/848
  46235. }
  46236. },
  46237. back: {
  46238. height: math.unit(5 + 5/12, "feet"),
  46239. weight: math.unit(160, "lb"),
  46240. name: "Back",
  46241. image: {
  46242. source: "./media/characters/spook/back.svg",
  46243. extra: 812/798,
  46244. bottom: 32/844
  46245. }
  46246. },
  46247. },
  46248. [
  46249. {
  46250. name: "Normal",
  46251. height: math.unit(5 + 5/12, "feet"),
  46252. default: true
  46253. },
  46254. ]
  46255. ))
  46256. characterMakers.push(() => makeCharacter(
  46257. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  46258. {
  46259. front: {
  46260. height: math.unit(18, "feet"),
  46261. name: "Front",
  46262. image: {
  46263. source: "./media/characters/xeaduulix/front.svg",
  46264. extra: 1380/1166,
  46265. bottom: 110/1490
  46266. }
  46267. },
  46268. back: {
  46269. height: math.unit(18, "feet"),
  46270. name: "Back",
  46271. image: {
  46272. source: "./media/characters/xeaduulix/back.svg",
  46273. extra: 1592/1170,
  46274. bottom: 128/1720
  46275. }
  46276. },
  46277. frontNsfw: {
  46278. height: math.unit(18, "feet"),
  46279. name: "Front (NSFW)",
  46280. image: {
  46281. source: "./media/characters/xeaduulix/front-nsfw.svg",
  46282. extra: 1380/1166,
  46283. bottom: 110/1490
  46284. }
  46285. },
  46286. backNsfw: {
  46287. height: math.unit(18, "feet"),
  46288. name: "Back (NSFW)",
  46289. image: {
  46290. source: "./media/characters/xeaduulix/back-nsfw.svg",
  46291. extra: 1592/1170,
  46292. bottom: 128/1720
  46293. }
  46294. },
  46295. },
  46296. [
  46297. {
  46298. name: "Normal",
  46299. height: math.unit(18, "feet"),
  46300. default: true
  46301. },
  46302. ]
  46303. ))
  46304. characterMakers.push(() => makeCharacter(
  46305. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  46306. {
  46307. spreadWings: {
  46308. height: math.unit(20, "feet"),
  46309. name: "Spread Wings",
  46310. image: {
  46311. source: "./media/characters/fledge/spread-wings.svg",
  46312. extra: 693/635,
  46313. bottom: 26/719
  46314. }
  46315. },
  46316. front: {
  46317. height: math.unit(20, "feet"),
  46318. name: "Front",
  46319. image: {
  46320. source: "./media/characters/fledge/front.svg",
  46321. extra: 684/637,
  46322. bottom: 18/702
  46323. }
  46324. },
  46325. frontAlt: {
  46326. height: math.unit(20, "feet"),
  46327. name: "Front (Alt)",
  46328. image: {
  46329. source: "./media/characters/fledge/front-alt.svg",
  46330. extra: 708/664,
  46331. bottom: 13/721
  46332. }
  46333. },
  46334. back: {
  46335. height: math.unit(20, "feet"),
  46336. name: "Back",
  46337. image: {
  46338. source: "./media/characters/fledge/back.svg",
  46339. extra: 718/634,
  46340. bottom: 22/740
  46341. }
  46342. },
  46343. head: {
  46344. height: math.unit(5.55, "feet"),
  46345. name: "Head",
  46346. image: {
  46347. source: "./media/characters/fledge/head.svg"
  46348. }
  46349. },
  46350. headAlt: {
  46351. height: math.unit(5.1, "feet"),
  46352. name: "Head (Alt)",
  46353. image: {
  46354. source: "./media/characters/fledge/head-alt.svg"
  46355. }
  46356. },
  46357. },
  46358. [
  46359. {
  46360. name: "Small",
  46361. height: math.unit(6 + 2/12, "feet")
  46362. },
  46363. {
  46364. name: "Big",
  46365. height: math.unit(20, "feet"),
  46366. default: true
  46367. },
  46368. {
  46369. name: "Giant",
  46370. height: math.unit(100, "feet")
  46371. },
  46372. {
  46373. name: "Macro",
  46374. height: math.unit(200, "feet")
  46375. },
  46376. ]
  46377. ))
  46378. characterMakers.push(() => makeCharacter(
  46379. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  46380. {
  46381. front: {
  46382. height: math.unit(1, "meter"),
  46383. name: "Front",
  46384. image: {
  46385. source: "./media/characters/atlas-morenai/front.svg",
  46386. extra: 1275/1043,
  46387. bottom: 19/1294
  46388. }
  46389. },
  46390. back: {
  46391. height: math.unit(1, "meter"),
  46392. name: "Back",
  46393. image: {
  46394. source: "./media/characters/atlas-morenai/back.svg",
  46395. extra: 1141/1001,
  46396. bottom: 25/1166
  46397. }
  46398. },
  46399. },
  46400. [
  46401. {
  46402. name: "Normal",
  46403. height: math.unit(1, "meter"),
  46404. default: true
  46405. },
  46406. {
  46407. name: "Magic-Infused",
  46408. height: math.unit(5, "meters")
  46409. },
  46410. ]
  46411. ))
  46412. characterMakers.push(() => makeCharacter(
  46413. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  46414. {
  46415. front: {
  46416. height: math.unit(5, "meters"),
  46417. name: "Front",
  46418. image: {
  46419. source: "./media/characters/cintia/front.svg",
  46420. extra: 1312/1228,
  46421. bottom: 38/1350
  46422. }
  46423. },
  46424. back: {
  46425. height: math.unit(5, "meters"),
  46426. name: "Back",
  46427. image: {
  46428. source: "./media/characters/cintia/back.svg",
  46429. extra: 1260/1166,
  46430. bottom: 98/1358
  46431. }
  46432. },
  46433. frontDick: {
  46434. height: math.unit(5, "meters"),
  46435. name: "Front (Dick)",
  46436. image: {
  46437. source: "./media/characters/cintia/front-dick.svg",
  46438. extra: 1312/1228,
  46439. bottom: 38/1350
  46440. }
  46441. },
  46442. backDick: {
  46443. height: math.unit(5, "meters"),
  46444. name: "Back (Dick)",
  46445. image: {
  46446. source: "./media/characters/cintia/back-dick.svg",
  46447. extra: 1260/1166,
  46448. bottom: 98/1358
  46449. }
  46450. },
  46451. bust: {
  46452. height: math.unit(1.97, "meters"),
  46453. name: "Bust",
  46454. image: {
  46455. source: "./media/characters/cintia/bust.svg",
  46456. extra: 617/565,
  46457. bottom: 0/617
  46458. }
  46459. },
  46460. },
  46461. [
  46462. {
  46463. name: "Normal",
  46464. height: math.unit(5, "meters"),
  46465. default: true
  46466. },
  46467. ]
  46468. ))
  46469. characterMakers.push(() => makeCharacter(
  46470. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  46471. {
  46472. side: {
  46473. height: math.unit(100, "feet"),
  46474. name: "Side",
  46475. image: {
  46476. source: "./media/characters/denora/side.svg",
  46477. extra: 875/803,
  46478. bottom: 9/884
  46479. }
  46480. },
  46481. },
  46482. [
  46483. {
  46484. name: "Standard",
  46485. height: math.unit(100, "feet"),
  46486. default: true
  46487. },
  46488. {
  46489. name: "Grand",
  46490. height: math.unit(1000, "feet")
  46491. },
  46492. {
  46493. name: "Conquering",
  46494. height: math.unit(10000, "feet")
  46495. },
  46496. ]
  46497. ))
  46498. characterMakers.push(() => makeCharacter(
  46499. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  46500. {
  46501. dressed: {
  46502. height: math.unit(8 + 5/12, "feet"),
  46503. weight: math.unit(700, "lb"),
  46504. name: "Dressed",
  46505. image: {
  46506. source: "./media/characters/kiva/dressed.svg",
  46507. extra: 1102/1055,
  46508. bottom: 60/1162
  46509. }
  46510. },
  46511. nude: {
  46512. height: math.unit(8 + 5/12, "feet"),
  46513. weight: math.unit(700, "lb"),
  46514. name: "Nude",
  46515. image: {
  46516. source: "./media/characters/kiva/nude.svg",
  46517. extra: 1102/1055,
  46518. bottom: 60/1162
  46519. }
  46520. },
  46521. },
  46522. [
  46523. {
  46524. name: "Base Height",
  46525. height: math.unit(8 + 5/12, "feet"),
  46526. default: true
  46527. },
  46528. {
  46529. name: "Macro",
  46530. height: math.unit(100, "feet")
  46531. },
  46532. {
  46533. name: "Max",
  46534. height: math.unit(3280, "feet")
  46535. },
  46536. ]
  46537. ))
  46538. characterMakers.push(() => makeCharacter(
  46539. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  46540. {
  46541. front: {
  46542. height: math.unit(6 + 8/12, "feet"),
  46543. weight: math.unit(250, "lb"),
  46544. name: "Front",
  46545. image: {
  46546. source: "./media/characters/ztragon/front.svg",
  46547. extra: 1825/1684,
  46548. bottom: 98/1923
  46549. }
  46550. },
  46551. },
  46552. [
  46553. {
  46554. name: "Normal",
  46555. height: math.unit(6 + 8/12, "feet"),
  46556. default: true
  46557. },
  46558. {
  46559. name: "Macro",
  46560. height: math.unit(80, "feet")
  46561. },
  46562. ]
  46563. ))
  46564. characterMakers.push(() => makeCharacter(
  46565. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  46566. {
  46567. front: {
  46568. height: math.unit(10.4, "feet"),
  46569. weight: math.unit(2, "tons"),
  46570. name: "Front",
  46571. image: {
  46572. source: "./media/characters/yesenia/front.svg",
  46573. extra: 1479/1474,
  46574. bottom: 233/1712
  46575. }
  46576. },
  46577. },
  46578. [
  46579. {
  46580. name: "Normal",
  46581. height: math.unit(10.4, "feet"),
  46582. default: true
  46583. },
  46584. ]
  46585. ))
  46586. characterMakers.push(() => makeCharacter(
  46587. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  46588. {
  46589. normal: {
  46590. height: math.unit(6 + 1/12, "feet"),
  46591. weight: math.unit(180, "lb"),
  46592. name: "Normal",
  46593. image: {
  46594. source: "./media/characters/leanne-lycheborne/normal.svg",
  46595. extra: 1748/1660,
  46596. bottom: 98/1846
  46597. }
  46598. },
  46599. were: {
  46600. height: math.unit(12, "feet"),
  46601. weight: math.unit(1600, "lb"),
  46602. name: "Were",
  46603. image: {
  46604. source: "./media/characters/leanne-lycheborne/were.svg",
  46605. extra: 1485/1432,
  46606. bottom: 66/1551
  46607. }
  46608. },
  46609. },
  46610. [
  46611. {
  46612. name: "Normal",
  46613. height: math.unit(6 + 1/12, "feet"),
  46614. default: true
  46615. },
  46616. ]
  46617. ))
  46618. characterMakers.push(() => makeCharacter(
  46619. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  46620. {
  46621. side: {
  46622. height: math.unit(13, "feet"),
  46623. name: "Side",
  46624. image: {
  46625. source: "./media/characters/kira-tyler/side.svg",
  46626. extra: 693/393,
  46627. bottom: 58/751
  46628. }
  46629. },
  46630. },
  46631. [
  46632. {
  46633. name: "Normal",
  46634. height: math.unit(13, "feet"),
  46635. default: true
  46636. },
  46637. ]
  46638. ))
  46639. characterMakers.push(() => makeCharacter(
  46640. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  46641. {
  46642. front: {
  46643. height: math.unit(10.3, "feet"),
  46644. weight: math.unit(150, "lb"),
  46645. name: "Front",
  46646. image: {
  46647. source: "./media/characters/blaze/front.svg",
  46648. extra: 1378/1286,
  46649. bottom: 172/1550
  46650. }
  46651. },
  46652. },
  46653. [
  46654. {
  46655. name: "Normal",
  46656. height: math.unit(10.3, "feet"),
  46657. default: true
  46658. },
  46659. ]
  46660. ))
  46661. characterMakers.push(() => makeCharacter(
  46662. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  46663. {
  46664. side: {
  46665. height: math.unit(2, "meters"),
  46666. weight: math.unit(400, "kg"),
  46667. name: "Side",
  46668. image: {
  46669. source: "./media/characters/anu/side.svg",
  46670. extra: 506/394,
  46671. bottom: 18/524
  46672. }
  46673. },
  46674. },
  46675. [
  46676. {
  46677. name: "Humanoid",
  46678. height: math.unit(2, "meters")
  46679. },
  46680. {
  46681. name: "Normal",
  46682. height: math.unit(5, "meters"),
  46683. default: true
  46684. },
  46685. ]
  46686. ))
  46687. characterMakers.push(() => makeCharacter(
  46688. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  46689. {
  46690. front: {
  46691. height: math.unit(5 + 5/12, "feet"),
  46692. weight: math.unit(170, "lb"),
  46693. name: "Front",
  46694. image: {
  46695. source: "./media/characters/synx-the-lynx/front.svg",
  46696. extra: 1893/1745,
  46697. bottom: 17/1910
  46698. }
  46699. },
  46700. side: {
  46701. height: math.unit(5 + 5/12, "feet"),
  46702. weight: math.unit(170, "lb"),
  46703. name: "Side",
  46704. image: {
  46705. source: "./media/characters/synx-the-lynx/side.svg",
  46706. extra: 1884/1740,
  46707. bottom: 39/1923
  46708. }
  46709. },
  46710. back: {
  46711. height: math.unit(5 + 5/12, "feet"),
  46712. weight: math.unit(170, "lb"),
  46713. name: "Back",
  46714. image: {
  46715. source: "./media/characters/synx-the-lynx/back.svg",
  46716. extra: 1903/1755,
  46717. bottom: 14/1917
  46718. }
  46719. },
  46720. },
  46721. [
  46722. {
  46723. name: "Normal",
  46724. height: math.unit(5 + 5/12, "feet"),
  46725. default: true
  46726. },
  46727. ]
  46728. ))
  46729. characterMakers.push(() => makeCharacter(
  46730. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  46731. {
  46732. back: {
  46733. height: math.unit(15, "feet"),
  46734. name: "Back",
  46735. image: {
  46736. source: "./media/characters/nadezda-fex/back.svg",
  46737. extra: 1695/1481,
  46738. bottom: 25/1720
  46739. }
  46740. },
  46741. },
  46742. [
  46743. {
  46744. name: "Normal",
  46745. height: math.unit(15, "feet"),
  46746. default: true
  46747. },
  46748. {
  46749. name: "Macro",
  46750. height: math.unit(2.5, "miles")
  46751. },
  46752. {
  46753. name: "Goddess",
  46754. height: math.unit(2, "multiverses")
  46755. },
  46756. ]
  46757. ))
  46758. characterMakers.push(() => makeCharacter(
  46759. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  46760. {
  46761. front: {
  46762. height: math.unit(216, "cm"),
  46763. name: "Front",
  46764. image: {
  46765. source: "./media/characters/lev/front.svg",
  46766. extra: 1728/1670,
  46767. bottom: 82/1810
  46768. }
  46769. },
  46770. back: {
  46771. height: math.unit(216, "cm"),
  46772. name: "Back",
  46773. image: {
  46774. source: "./media/characters/lev/back.svg",
  46775. extra: 1738/1675,
  46776. bottom: 24/1762
  46777. }
  46778. },
  46779. dressed: {
  46780. height: math.unit(216, "cm"),
  46781. name: "Dressed",
  46782. image: {
  46783. source: "./media/characters/lev/dressed.svg",
  46784. extra: 1397/1351,
  46785. bottom: 73/1470
  46786. }
  46787. },
  46788. head: {
  46789. height: math.unit(0.51, "meter"),
  46790. name: "Head",
  46791. image: {
  46792. source: "./media/characters/lev/head.svg"
  46793. }
  46794. },
  46795. },
  46796. [
  46797. {
  46798. name: "Normal",
  46799. height: math.unit(216, "cm"),
  46800. default: true
  46801. },
  46802. {
  46803. name: "Relatively Macro",
  46804. height: math.unit(80, "meters")
  46805. },
  46806. {
  46807. name: "Megamacro",
  46808. height: math.unit(21600, "meters")
  46809. },
  46810. {
  46811. name: "Megamacro+",
  46812. height: math.unit(64800, "meters")
  46813. },
  46814. ]
  46815. ))
  46816. characterMakers.push(() => makeCharacter(
  46817. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  46818. {
  46819. front: {
  46820. height: math.unit(2, "meters"),
  46821. weight: math.unit(80, "kg"),
  46822. name: "Front",
  46823. image: {
  46824. source: "./media/characters/moka/front.svg",
  46825. extra: 1337/1255,
  46826. bottom: 58/1395
  46827. }
  46828. },
  46829. },
  46830. [
  46831. {
  46832. name: "Micro",
  46833. height: math.unit(15, "cm")
  46834. },
  46835. {
  46836. name: "Normal",
  46837. height: math.unit(2, "meters"),
  46838. default: true
  46839. },
  46840. {
  46841. name: "Macro",
  46842. height: math.unit(20, "meters"),
  46843. },
  46844. ]
  46845. ))
  46846. characterMakers.push(() => makeCharacter(
  46847. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  46848. {
  46849. front: {
  46850. height: math.unit(9, "feet"),
  46851. weight: math.unit(240, "lb"),
  46852. name: "Front",
  46853. image: {
  46854. source: "./media/characters/kuzco/front.svg",
  46855. extra: 1593/1487,
  46856. bottom: 32/1625
  46857. }
  46858. },
  46859. side: {
  46860. height: math.unit(9, "feet"),
  46861. weight: math.unit(240, "lb"),
  46862. name: "Side",
  46863. image: {
  46864. source: "./media/characters/kuzco/side.svg",
  46865. extra: 1575/1485,
  46866. bottom: 30/1605
  46867. }
  46868. },
  46869. back: {
  46870. height: math.unit(9, "feet"),
  46871. weight: math.unit(240, "lb"),
  46872. name: "Back",
  46873. image: {
  46874. source: "./media/characters/kuzco/back.svg",
  46875. extra: 1603/1514,
  46876. bottom: 14/1617
  46877. }
  46878. },
  46879. },
  46880. [
  46881. {
  46882. name: "Normal",
  46883. height: math.unit(9, "feet"),
  46884. default: true
  46885. },
  46886. ]
  46887. ))
  46888. characterMakers.push(() => makeCharacter(
  46889. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  46890. {
  46891. side: {
  46892. height: math.unit(2, "meters"),
  46893. weight: math.unit(300, "kg"),
  46894. name: "Side",
  46895. image: {
  46896. source: "./media/characters/ceruleus/side.svg",
  46897. extra: 1068/974,
  46898. bottom: 126/1194
  46899. }
  46900. },
  46901. maw: {
  46902. height: math.unit(0.8125, "meter"),
  46903. name: "Maw",
  46904. image: {
  46905. source: "./media/characters/ceruleus/maw.svg"
  46906. }
  46907. },
  46908. },
  46909. [
  46910. {
  46911. name: "Normal",
  46912. height: math.unit(16, "meters"),
  46913. default: true
  46914. },
  46915. ]
  46916. ))
  46917. characterMakers.push(() => makeCharacter(
  46918. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  46919. {
  46920. front: {
  46921. height: math.unit(9, "feet"),
  46922. weight: math.unit(500, "kg"),
  46923. name: "Front",
  46924. image: {
  46925. source: "./media/characters/acouya/front.svg",
  46926. extra: 1660/1473,
  46927. bottom: 28/1688
  46928. }
  46929. },
  46930. },
  46931. [
  46932. {
  46933. name: "Normal",
  46934. height: math.unit(9, "feet"),
  46935. default: true
  46936. },
  46937. ]
  46938. ))
  46939. characterMakers.push(() => makeCharacter(
  46940. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  46941. {
  46942. front: {
  46943. height: math.unit(5 + 6/12, "feet"),
  46944. weight: math.unit(195, "lb"),
  46945. name: "Front",
  46946. image: {
  46947. source: "./media/characters/vant/front.svg",
  46948. extra: 1396/1320,
  46949. bottom: 20/1416
  46950. }
  46951. },
  46952. back: {
  46953. height: math.unit(5 + 6/12, "feet"),
  46954. weight: math.unit(195, "lb"),
  46955. name: "Back",
  46956. image: {
  46957. source: "./media/characters/vant/back.svg",
  46958. extra: 1396/1320,
  46959. bottom: 20/1416
  46960. }
  46961. },
  46962. maw: {
  46963. height: math.unit(0.75, "feet"),
  46964. name: "Maw",
  46965. image: {
  46966. source: "./media/characters/vant/maw.svg"
  46967. }
  46968. },
  46969. paw: {
  46970. height: math.unit(1.07, "feet"),
  46971. name: "Paw",
  46972. image: {
  46973. source: "./media/characters/vant/paw.svg"
  46974. }
  46975. },
  46976. },
  46977. [
  46978. {
  46979. name: "Micro",
  46980. height: math.unit(0.25, "inches")
  46981. },
  46982. {
  46983. name: "Normal",
  46984. height: math.unit(5 + 6/12, "feet"),
  46985. default: true
  46986. },
  46987. {
  46988. name: "Macro",
  46989. height: math.unit(75, "feet")
  46990. },
  46991. ]
  46992. ))
  46993. characterMakers.push(() => makeCharacter(
  46994. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  46995. {
  46996. front: {
  46997. height: math.unit(30, "meters"),
  46998. weight: math.unit(363, "tons"),
  46999. name: "Front",
  47000. image: {
  47001. source: "./media/characters/ahra/front.svg",
  47002. extra: 1914/1814,
  47003. bottom: 46/1960
  47004. }
  47005. },
  47006. },
  47007. [
  47008. {
  47009. name: "Macro",
  47010. height: math.unit(30, "meters"),
  47011. default: true
  47012. },
  47013. ]
  47014. ))
  47015. characterMakers.push(() => makeCharacter(
  47016. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  47017. {
  47018. undressed: {
  47019. height: math.unit(2, "m"),
  47020. weight: math.unit(250, "kg"),
  47021. name: "Undressed",
  47022. image: {
  47023. source: "./media/characters/coriander/undressed.svg",
  47024. extra: 1757/1606,
  47025. bottom: 107/1864
  47026. }
  47027. },
  47028. dressed: {
  47029. height: math.unit(2, "m"),
  47030. weight: math.unit(250, "kg"),
  47031. name: "Dressed",
  47032. image: {
  47033. source: "./media/characters/coriander/dressed.svg",
  47034. extra: 1757/1606,
  47035. bottom: 107/1864
  47036. }
  47037. },
  47038. },
  47039. [
  47040. {
  47041. name: "Normal",
  47042. height: math.unit(4, "meters"),
  47043. default: true
  47044. },
  47045. {
  47046. name: "XL",
  47047. height: math.unit(6, "meters")
  47048. },
  47049. {
  47050. name: "XXL",
  47051. height: math.unit(8, "meters")
  47052. },
  47053. ]
  47054. ))
  47055. characterMakers.push(() => makeCharacter(
  47056. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  47057. {
  47058. front: {
  47059. height: math.unit(6, "feet"),
  47060. name: "Front",
  47061. image: {
  47062. source: "./media/characters/syrinx/front.svg",
  47063. extra: 1557/1259,
  47064. bottom: 171/1728
  47065. }
  47066. },
  47067. },
  47068. [
  47069. {
  47070. name: "Normal",
  47071. height: math.unit(6 + 3/12, "feet"),
  47072. default: true
  47073. },
  47074. ]
  47075. ))
  47076. characterMakers.push(() => makeCharacter(
  47077. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  47078. {
  47079. front: {
  47080. height: math.unit(11 + 6/12, "feet"),
  47081. weight: math.unit(1.5, "tons"),
  47082. name: "Front",
  47083. image: {
  47084. source: "./media/characters/bor/front.svg",
  47085. extra: 1189/1109,
  47086. bottom: 170/1359
  47087. }
  47088. },
  47089. },
  47090. [
  47091. {
  47092. name: "Normal",
  47093. height: math.unit(11 + 6/12, "feet"),
  47094. default: true
  47095. },
  47096. {
  47097. name: "Macro",
  47098. height: math.unit(32 + 9/12, "feet")
  47099. },
  47100. ]
  47101. ))
  47102. characterMakers.push(() => makeCharacter(
  47103. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  47104. {
  47105. anthro: {
  47106. height: math.unit(9, "feet"),
  47107. weight: math.unit(2076, "lb"),
  47108. name: "Anthro",
  47109. image: {
  47110. source: "./media/characters/abacus/anthro.svg",
  47111. extra: 1540/1494,
  47112. bottom: 233/1773
  47113. }
  47114. },
  47115. pigeon: {
  47116. height: math.unit(1, "feet"),
  47117. name: "Pigeon",
  47118. image: {
  47119. source: "./media/characters/abacus/pigeon.svg",
  47120. extra: 528/525,
  47121. bottom: 46/574
  47122. }
  47123. },
  47124. },
  47125. [
  47126. {
  47127. name: "Normal",
  47128. height: math.unit(9, "feet"),
  47129. default: true
  47130. },
  47131. ]
  47132. ))
  47133. characterMakers.push(() => makeCharacter(
  47134. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  47135. {
  47136. side: {
  47137. height: math.unit(6, "feet"),
  47138. name: "Side",
  47139. image: {
  47140. source: "./media/characters/delkhan/side.svg",
  47141. extra: 1884/1786,
  47142. bottom: 308/2192
  47143. }
  47144. },
  47145. head: {
  47146. height: math.unit(3.38, "feet"),
  47147. name: "Head",
  47148. image: {
  47149. source: "./media/characters/delkhan/head.svg"
  47150. }
  47151. },
  47152. },
  47153. [
  47154. {
  47155. name: "Normal",
  47156. height: math.unit(72, "feet"),
  47157. default: true
  47158. },
  47159. {
  47160. name: "Giant",
  47161. height: math.unit(172, "feet")
  47162. },
  47163. ]
  47164. ))
  47165. characterMakers.push(() => makeCharacter(
  47166. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  47167. {
  47168. standing: {
  47169. height: math.unit(6, "feet"),
  47170. name: "Standing",
  47171. image: {
  47172. source: "./media/characters/euchidat/standing.svg",
  47173. extra: 1612/1553,
  47174. bottom: 116/1728
  47175. }
  47176. },
  47177. leaning: {
  47178. height: math.unit(6, "feet"),
  47179. name: "Leaning",
  47180. image: {
  47181. source: "./media/characters/euchidat/leaning.svg",
  47182. extra: 1719/1674,
  47183. bottom: 27/1746
  47184. }
  47185. },
  47186. },
  47187. [
  47188. {
  47189. name: "Normal",
  47190. height: math.unit(175, "feet"),
  47191. default: true
  47192. },
  47193. {
  47194. name: "Megamacro",
  47195. height: math.unit(190, "miles")
  47196. },
  47197. {
  47198. name: "Gigamacro",
  47199. height: math.unit(190000, "miles")
  47200. },
  47201. ]
  47202. ))
  47203. characterMakers.push(() => makeCharacter(
  47204. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  47205. {
  47206. front: {
  47207. height: math.unit(6, "feet"),
  47208. weight: math.unit(150, "lb"),
  47209. name: "Front",
  47210. image: {
  47211. source: "./media/characters/rebecca-stack/front.svg",
  47212. extra: 1256/1201,
  47213. bottom: 18/1274
  47214. }
  47215. },
  47216. },
  47217. [
  47218. {
  47219. name: "Normal",
  47220. height: math.unit(5 + 8/12, "feet"),
  47221. default: true
  47222. },
  47223. {
  47224. name: "Demolitionist",
  47225. height: math.unit(200, "feet")
  47226. },
  47227. {
  47228. name: "Out of Control",
  47229. height: math.unit(2, "miles")
  47230. },
  47231. {
  47232. name: "Giga",
  47233. height: math.unit(7200, "miles")
  47234. },
  47235. ]
  47236. ))
  47237. characterMakers.push(() => makeCharacter(
  47238. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  47239. {
  47240. front: {
  47241. height: math.unit(6, "feet"),
  47242. weight: math.unit(150, "lb"),
  47243. name: "Front",
  47244. image: {
  47245. source: "./media/characters/jenny-cartwright/front.svg",
  47246. extra: 1384/1376,
  47247. bottom: 58/1442
  47248. }
  47249. },
  47250. },
  47251. [
  47252. {
  47253. name: "Normal",
  47254. height: math.unit(6 + 7/12, "feet"),
  47255. default: true
  47256. },
  47257. {
  47258. name: "Librarian",
  47259. height: math.unit(55, "feet")
  47260. },
  47261. {
  47262. name: "Sightseer",
  47263. height: math.unit(50, "miles")
  47264. },
  47265. {
  47266. name: "Giga",
  47267. height: math.unit(30000, "miles")
  47268. },
  47269. ]
  47270. ))
  47271. characterMakers.push(() => makeCharacter(
  47272. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  47273. {
  47274. nude: {
  47275. height: math.unit(8, "feet"),
  47276. weight: math.unit(225, "lb"),
  47277. name: "Nude",
  47278. image: {
  47279. source: "./media/characters/marvy/nude.svg",
  47280. extra: 1900/1683,
  47281. bottom: 89/1989
  47282. }
  47283. },
  47284. dressed: {
  47285. height: math.unit(8, "feet"),
  47286. weight: math.unit(225, "lb"),
  47287. name: "Dressed",
  47288. image: {
  47289. source: "./media/characters/marvy/dressed.svg",
  47290. extra: 1900/1683,
  47291. bottom: 89/1989
  47292. }
  47293. },
  47294. head: {
  47295. height: math.unit(2.85, "feet"),
  47296. name: "Head",
  47297. image: {
  47298. source: "./media/characters/marvy/head.svg"
  47299. }
  47300. },
  47301. },
  47302. [
  47303. {
  47304. name: "Normal",
  47305. height: math.unit(8, "feet"),
  47306. default: true
  47307. },
  47308. ]
  47309. ))
  47310. characterMakers.push(() => makeCharacter(
  47311. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  47312. {
  47313. front: {
  47314. height: math.unit(8, "feet"),
  47315. weight: math.unit(250, "lb"),
  47316. name: "Front",
  47317. image: {
  47318. source: "./media/characters/leah/front.svg",
  47319. extra: 1257/1149,
  47320. bottom: 109/1366
  47321. }
  47322. },
  47323. },
  47324. [
  47325. {
  47326. name: "Normal",
  47327. height: math.unit(8, "feet"),
  47328. default: true
  47329. },
  47330. {
  47331. name: "Minimacro",
  47332. height: math.unit(40, "feet")
  47333. },
  47334. {
  47335. name: "Macro",
  47336. height: math.unit(124, "feet")
  47337. },
  47338. {
  47339. name: "Megamacro",
  47340. height: math.unit(850, "feet")
  47341. },
  47342. ]
  47343. ))
  47344. characterMakers.push(() => makeCharacter(
  47345. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  47346. {
  47347. side: {
  47348. height: math.unit(13 + 6/12, "feet"),
  47349. weight: math.unit(3200, "lb"),
  47350. name: "Side",
  47351. image: {
  47352. source: "./media/characters/alvir/side.svg",
  47353. extra: 896/589,
  47354. bottom: 26/922
  47355. }
  47356. },
  47357. },
  47358. [
  47359. {
  47360. name: "Normal",
  47361. height: math.unit(13 + 6/12, "feet"),
  47362. default: true
  47363. },
  47364. ]
  47365. ))
  47366. characterMakers.push(() => makeCharacter(
  47367. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  47368. {
  47369. front: {
  47370. height: math.unit(5 + 4/12, "feet"),
  47371. weight: math.unit(236, "lb"),
  47372. name: "Front",
  47373. image: {
  47374. source: "./media/characters/zaina-khalil/front.svg",
  47375. extra: 1533/1485,
  47376. bottom: 94/1627
  47377. }
  47378. },
  47379. side: {
  47380. height: math.unit(5 + 4/12, "feet"),
  47381. weight: math.unit(236, "lb"),
  47382. name: "Side",
  47383. image: {
  47384. source: "./media/characters/zaina-khalil/side.svg",
  47385. extra: 1537/1498,
  47386. bottom: 66/1603
  47387. }
  47388. },
  47389. back: {
  47390. height: math.unit(5 + 4/12, "feet"),
  47391. weight: math.unit(236, "lb"),
  47392. name: "Back",
  47393. image: {
  47394. source: "./media/characters/zaina-khalil/back.svg",
  47395. extra: 1546/1494,
  47396. bottom: 89/1635
  47397. }
  47398. },
  47399. },
  47400. [
  47401. {
  47402. name: "Normal",
  47403. height: math.unit(5 + 4/12, "feet"),
  47404. default: true
  47405. },
  47406. ]
  47407. ))
  47408. characterMakers.push(() => makeCharacter(
  47409. { name: "Terry", species: ["husky"], tags: ["taur"] },
  47410. {
  47411. side: {
  47412. height: math.unit(12, "feet"),
  47413. weight: math.unit(4000, "lb"),
  47414. name: "Side",
  47415. image: {
  47416. source: "./media/characters/terry/side.svg",
  47417. extra: 1518/1439,
  47418. bottom: 149/1667
  47419. }
  47420. },
  47421. },
  47422. [
  47423. {
  47424. name: "Normal",
  47425. height: math.unit(12, "feet"),
  47426. default: true
  47427. },
  47428. ]
  47429. ))
  47430. characterMakers.push(() => makeCharacter(
  47431. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  47432. {
  47433. front: {
  47434. height: math.unit(12, "feet"),
  47435. weight: math.unit(1500, "lb"),
  47436. name: "Front",
  47437. image: {
  47438. source: "./media/characters/kahea/front.svg",
  47439. extra: 1722/1617,
  47440. bottom: 179/1901
  47441. }
  47442. },
  47443. },
  47444. [
  47445. {
  47446. name: "Normal",
  47447. height: math.unit(12, "feet"),
  47448. default: true
  47449. },
  47450. ]
  47451. ))
  47452. characterMakers.push(() => makeCharacter(
  47453. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  47454. {
  47455. demonFront: {
  47456. height: math.unit(36, "feet"),
  47457. name: "Front",
  47458. image: {
  47459. source: "./media/characters/alex-xuria/demon-front.svg",
  47460. extra: 1705/1673,
  47461. bottom: 198/1903
  47462. },
  47463. form: "demon",
  47464. default: true
  47465. },
  47466. demonBack: {
  47467. height: math.unit(36, "feet"),
  47468. name: "Back",
  47469. image: {
  47470. source: "./media/characters/alex-xuria/demon-back.svg",
  47471. extra: 1725/1693,
  47472. bottom: 70/1795
  47473. },
  47474. form: "demon"
  47475. },
  47476. demonHead: {
  47477. height: math.unit(2.14, "meters"),
  47478. name: "Head",
  47479. image: {
  47480. source: "./media/characters/alex-xuria/demon-head.svg"
  47481. },
  47482. form: "demon"
  47483. },
  47484. demonHand: {
  47485. height: math.unit(1.61, "meters"),
  47486. name: "Hand",
  47487. image: {
  47488. source: "./media/characters/alex-xuria/demon-hand.svg"
  47489. },
  47490. form: "demon"
  47491. },
  47492. demonPaw: {
  47493. height: math.unit(1.35, "meters"),
  47494. name: "Paw",
  47495. image: {
  47496. source: "./media/characters/alex-xuria/demon-paw.svg"
  47497. },
  47498. form: "demon"
  47499. },
  47500. demonFoot: {
  47501. height: math.unit(2.2, "meters"),
  47502. name: "Foot",
  47503. image: {
  47504. source: "./media/characters/alex-xuria/demon-foot.svg"
  47505. },
  47506. form: "demon"
  47507. },
  47508. demonCock: {
  47509. height: math.unit(1.74, "meters"),
  47510. name: "Cock",
  47511. image: {
  47512. source: "./media/characters/alex-xuria/demon-cock.svg"
  47513. },
  47514. form: "demon"
  47515. },
  47516. demonTailClosed: {
  47517. height: math.unit(1.47, "meters"),
  47518. name: "Tail (Closed)",
  47519. image: {
  47520. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  47521. },
  47522. form: "demon"
  47523. },
  47524. demonTailOpen: {
  47525. height: math.unit(2.85, "meters"),
  47526. name: "Tail (Open)",
  47527. image: {
  47528. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  47529. },
  47530. form: "demon"
  47531. },
  47532. incubusFront: {
  47533. height: math.unit(12, "feet"),
  47534. name: "Front",
  47535. image: {
  47536. source: "./media/characters/alex-xuria/incubus-front.svg",
  47537. extra: 1754/1677,
  47538. bottom: 125/1879
  47539. },
  47540. form: "incubus",
  47541. default: true
  47542. },
  47543. incubusBack: {
  47544. height: math.unit(12, "feet"),
  47545. name: "Back",
  47546. image: {
  47547. source: "./media/characters/alex-xuria/incubus-back.svg",
  47548. extra: 1702/1647,
  47549. bottom: 30/1732
  47550. },
  47551. form: "incubus"
  47552. },
  47553. incubusHead: {
  47554. height: math.unit(3.45, "feet"),
  47555. name: "Head",
  47556. image: {
  47557. source: "./media/characters/alex-xuria/incubus-head.svg"
  47558. },
  47559. form: "incubus"
  47560. },
  47561. rabbitFront: {
  47562. height: math.unit(6, "feet"),
  47563. name: "Front",
  47564. image: {
  47565. source: "./media/characters/alex-xuria/rabbit-front.svg",
  47566. extra: 1369/1349,
  47567. bottom: 45/1414
  47568. },
  47569. form: "rabbit",
  47570. default: true
  47571. },
  47572. rabbitSide: {
  47573. height: math.unit(6, "feet"),
  47574. name: "Side",
  47575. image: {
  47576. source: "./media/characters/alex-xuria/rabbit-side.svg",
  47577. extra: 1370/1356,
  47578. bottom: 37/1407
  47579. },
  47580. form: "rabbit"
  47581. },
  47582. rabbitBack: {
  47583. height: math.unit(6, "feet"),
  47584. name: "Back",
  47585. image: {
  47586. source: "./media/characters/alex-xuria/rabbit-back.svg",
  47587. extra: 1375/1358,
  47588. bottom: 43/1418
  47589. },
  47590. form: "rabbit"
  47591. },
  47592. },
  47593. [
  47594. {
  47595. name: "Normal",
  47596. height: math.unit(6, "feet"),
  47597. default: true,
  47598. form: "rabbit"
  47599. },
  47600. {
  47601. name: "Incubus",
  47602. height: math.unit(12, "feet"),
  47603. default: true,
  47604. form: "incubus"
  47605. },
  47606. {
  47607. name: "Demon",
  47608. height: math.unit(36, "feet"),
  47609. default: true,
  47610. form: "demon"
  47611. }
  47612. ],
  47613. {
  47614. "demon": {
  47615. name: "Demon",
  47616. default: true
  47617. },
  47618. "incubus": {
  47619. name: "Incubus",
  47620. },
  47621. "rabbit": {
  47622. name: "Rabbit"
  47623. }
  47624. }
  47625. ))
  47626. characterMakers.push(() => makeCharacter(
  47627. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  47628. {
  47629. front: {
  47630. height: math.unit(7 + 5/12, "feet"),
  47631. weight: math.unit(510, "lb"),
  47632. name: "Front",
  47633. image: {
  47634. source: "./media/characters/syrup/front.svg",
  47635. extra: 932/916,
  47636. bottom: 26/958
  47637. }
  47638. },
  47639. },
  47640. [
  47641. {
  47642. name: "Normal",
  47643. height: math.unit(7 + 5/12, "feet"),
  47644. default: true
  47645. },
  47646. {
  47647. name: "Big",
  47648. height: math.unit(50, "feet")
  47649. },
  47650. {
  47651. name: "Macro",
  47652. height: math.unit(300, "feet")
  47653. },
  47654. {
  47655. name: "Megamacro",
  47656. height: math.unit(1, "mile")
  47657. },
  47658. ]
  47659. ))
  47660. characterMakers.push(() => makeCharacter(
  47661. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  47662. {
  47663. front: {
  47664. height: math.unit(6 + 9/12, "feet"),
  47665. name: "Front",
  47666. image: {
  47667. source: "./media/characters/zeimne/front.svg",
  47668. extra: 1969/1806,
  47669. bottom: 53/2022
  47670. }
  47671. },
  47672. },
  47673. [
  47674. {
  47675. name: "Normal",
  47676. height: math.unit(6 + 9/12, "feet"),
  47677. default: true
  47678. },
  47679. {
  47680. name: "Giant",
  47681. height: math.unit(550, "feet")
  47682. },
  47683. {
  47684. name: "Mega",
  47685. height: math.unit(3, "miles")
  47686. },
  47687. {
  47688. name: "Giga",
  47689. height: math.unit(250, "miles")
  47690. },
  47691. {
  47692. name: "Tera",
  47693. height: math.unit(1, "AU")
  47694. },
  47695. ]
  47696. ))
  47697. characterMakers.push(() => makeCharacter(
  47698. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  47699. {
  47700. front: {
  47701. height: math.unit(5 + 2/12, "feet"),
  47702. name: "Front",
  47703. image: {
  47704. source: "./media/characters/grar/front.svg",
  47705. extra: 1331/1119,
  47706. bottom: 60/1391
  47707. }
  47708. },
  47709. back: {
  47710. height: math.unit(5 + 2/12, "feet"),
  47711. name: "Back",
  47712. image: {
  47713. source: "./media/characters/grar/back.svg",
  47714. extra: 1385/1169,
  47715. bottom: 23/1408
  47716. }
  47717. },
  47718. },
  47719. [
  47720. {
  47721. name: "Normal",
  47722. height: math.unit(5 + 2/12, "feet"),
  47723. default: true
  47724. },
  47725. ]
  47726. ))
  47727. characterMakers.push(() => makeCharacter(
  47728. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  47729. {
  47730. front: {
  47731. height: math.unit(13 + 7/12, "feet"),
  47732. weight: math.unit(2200, "lb"),
  47733. name: "Front",
  47734. image: {
  47735. source: "./media/characters/endraya/front.svg",
  47736. extra: 1289/1215,
  47737. bottom: 50/1339
  47738. }
  47739. },
  47740. nude: {
  47741. height: math.unit(13 + 7/12, "feet"),
  47742. weight: math.unit(2200, "lb"),
  47743. name: "Nude",
  47744. image: {
  47745. source: "./media/characters/endraya/nude.svg",
  47746. extra: 1247/1171,
  47747. bottom: 40/1287
  47748. }
  47749. },
  47750. head: {
  47751. height: math.unit(2.6, "feet"),
  47752. name: "Head",
  47753. image: {
  47754. source: "./media/characters/endraya/head.svg"
  47755. }
  47756. },
  47757. slit: {
  47758. height: math.unit(3.4, "feet"),
  47759. name: "Slit",
  47760. image: {
  47761. source: "./media/characters/endraya/slit.svg"
  47762. }
  47763. },
  47764. },
  47765. [
  47766. {
  47767. name: "Normal",
  47768. height: math.unit(13 + 7/12, "feet"),
  47769. default: true
  47770. },
  47771. {
  47772. name: "Macro",
  47773. height: math.unit(200, "feet")
  47774. },
  47775. ]
  47776. ))
  47777. characterMakers.push(() => makeCharacter(
  47778. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  47779. {
  47780. front: {
  47781. height: math.unit(1.81, "meters"),
  47782. weight: math.unit(69, "kg"),
  47783. name: "Front",
  47784. image: {
  47785. source: "./media/characters/rodryana/front.svg",
  47786. extra: 2002/1921,
  47787. bottom: 53/2055
  47788. }
  47789. },
  47790. back: {
  47791. height: math.unit(1.81, "meters"),
  47792. weight: math.unit(69, "kg"),
  47793. name: "Back",
  47794. image: {
  47795. source: "./media/characters/rodryana/back.svg",
  47796. extra: 1993/1926,
  47797. bottom: 48/2041
  47798. }
  47799. },
  47800. maw: {
  47801. height: math.unit(0.19769417475, "meters"),
  47802. name: "Maw",
  47803. image: {
  47804. source: "./media/characters/rodryana/maw.svg"
  47805. }
  47806. },
  47807. slit: {
  47808. height: math.unit(0.31631067961, "meters"),
  47809. name: "Slit",
  47810. image: {
  47811. source: "./media/characters/rodryana/slit.svg"
  47812. }
  47813. },
  47814. },
  47815. [
  47816. {
  47817. name: "Normal",
  47818. height: math.unit(1.81, "meters")
  47819. },
  47820. {
  47821. name: "Mini Macro",
  47822. height: math.unit(181, "meters")
  47823. },
  47824. {
  47825. name: "Macro",
  47826. height: math.unit(452, "meters"),
  47827. default: true
  47828. },
  47829. {
  47830. name: "Mega Macro",
  47831. height: math.unit(1.375, "km")
  47832. },
  47833. {
  47834. name: "Giga Macro",
  47835. height: math.unit(13.575, "km")
  47836. },
  47837. ]
  47838. ))
  47839. characterMakers.push(() => makeCharacter(
  47840. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  47841. {
  47842. front: {
  47843. height: math.unit(6, "feet"),
  47844. weight: math.unit(1000, "lb"),
  47845. name: "Front",
  47846. image: {
  47847. source: "./media/characters/asaya/front.svg",
  47848. extra: 1460/1200,
  47849. bottom: 71/1531
  47850. }
  47851. },
  47852. },
  47853. [
  47854. {
  47855. name: "Normal",
  47856. height: math.unit(8, "km"),
  47857. default: true
  47858. },
  47859. ]
  47860. ))
  47861. characterMakers.push(() => makeCharacter(
  47862. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  47863. {
  47864. front: {
  47865. height: math.unit(3.5, "meters"),
  47866. name: "Front",
  47867. image: {
  47868. source: "./media/characters/sarzu-and-israz/front.svg",
  47869. extra: 1570/1558,
  47870. bottom: 150/1720
  47871. },
  47872. },
  47873. back: {
  47874. height: math.unit(3.5, "meters"),
  47875. name: "Back",
  47876. image: {
  47877. source: "./media/characters/sarzu-and-israz/back.svg",
  47878. extra: 1523/1509,
  47879. bottom: 132/1655
  47880. },
  47881. },
  47882. frontFemale: {
  47883. height: math.unit(3.5, "meters"),
  47884. name: "Front (Female)",
  47885. image: {
  47886. source: "./media/characters/sarzu-and-israz/front-female.svg",
  47887. extra: 1570/1558,
  47888. bottom: 150/1720
  47889. },
  47890. },
  47891. frontHerm: {
  47892. height: math.unit(3.5, "meters"),
  47893. name: "Front (Herm)",
  47894. image: {
  47895. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  47896. extra: 1570/1558,
  47897. bottom: 150/1720
  47898. },
  47899. },
  47900. },
  47901. [
  47902. {
  47903. name: "Normal",
  47904. height: math.unit(3.5, "meters"),
  47905. default: true,
  47906. },
  47907. {
  47908. name: "Macro",
  47909. height: math.unit(65.5, "meters"),
  47910. },
  47911. ],
  47912. ))
  47913. characterMakers.push(() => makeCharacter(
  47914. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  47915. {
  47916. front: {
  47917. height: math.unit(6, "feet"),
  47918. weight: math.unit(250, "lb"),
  47919. name: "Front",
  47920. image: {
  47921. source: "./media/characters/zenimma/front.svg",
  47922. extra: 1346/1320,
  47923. bottom: 58/1404
  47924. }
  47925. },
  47926. back: {
  47927. height: math.unit(6, "feet"),
  47928. weight: math.unit(250, "lb"),
  47929. name: "Back",
  47930. image: {
  47931. source: "./media/characters/zenimma/back.svg",
  47932. extra: 1324/1308,
  47933. bottom: 44/1368
  47934. }
  47935. },
  47936. dick: {
  47937. height: math.unit(1.44, "feet"),
  47938. name: "Dick",
  47939. image: {
  47940. source: "./media/characters/zenimma/dick.svg"
  47941. }
  47942. },
  47943. },
  47944. [
  47945. {
  47946. name: "Canon Height",
  47947. height: math.unit(66, "miles"),
  47948. default: true
  47949. },
  47950. ]
  47951. ))
  47952. characterMakers.push(() => makeCharacter(
  47953. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  47954. {
  47955. nude: {
  47956. height: math.unit(6, "feet"),
  47957. weight: math.unit(150, "lb"),
  47958. name: "Nude",
  47959. image: {
  47960. source: "./media/characters/shavon/nude.svg",
  47961. extra: 1242/1096,
  47962. bottom: 98/1340
  47963. }
  47964. },
  47965. dressed: {
  47966. height: math.unit(6, "feet"),
  47967. weight: math.unit(150, "lb"),
  47968. name: "Dressed",
  47969. image: {
  47970. source: "./media/characters/shavon/dressed.svg",
  47971. extra: 1242/1096,
  47972. bottom: 98/1340
  47973. }
  47974. },
  47975. },
  47976. [
  47977. {
  47978. name: "Macro",
  47979. height: math.unit(255, "feet"),
  47980. default: true
  47981. },
  47982. ]
  47983. ))
  47984. characterMakers.push(() => makeCharacter(
  47985. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  47986. {
  47987. front: {
  47988. height: math.unit(6, "feet"),
  47989. name: "Front",
  47990. image: {
  47991. source: "./media/characters/steph/front.svg",
  47992. extra: 1430/1330,
  47993. bottom: 54/1484
  47994. }
  47995. },
  47996. },
  47997. [
  47998. {
  47999. name: "Normal",
  48000. height: math.unit(6, "feet"),
  48001. default: true
  48002. },
  48003. ]
  48004. ))
  48005. characterMakers.push(() => makeCharacter(
  48006. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  48007. {
  48008. front: {
  48009. height: math.unit(9, "feet"),
  48010. weight: math.unit(400, "lb"),
  48011. name: "Front",
  48012. image: {
  48013. source: "./media/characters/kil'aman/front.svg",
  48014. extra: 1210/1159,
  48015. bottom: 109/1319
  48016. }
  48017. },
  48018. head: {
  48019. height: math.unit(2.14, "feet"),
  48020. name: "Head",
  48021. image: {
  48022. source: "./media/characters/kil'aman/head.svg"
  48023. }
  48024. },
  48025. maw: {
  48026. height: math.unit(1.21, "feet"),
  48027. name: "Maw",
  48028. image: {
  48029. source: "./media/characters/kil'aman/maw.svg"
  48030. }
  48031. },
  48032. foot: {
  48033. height: math.unit(1.7, "feet"),
  48034. name: "Foot",
  48035. image: {
  48036. source: "./media/characters/kil'aman/foot.svg"
  48037. }
  48038. },
  48039. dick: {
  48040. height: math.unit(2.1, "feet"),
  48041. name: "Dick",
  48042. image: {
  48043. source: "./media/characters/kil'aman/dick.svg"
  48044. }
  48045. },
  48046. },
  48047. [
  48048. {
  48049. name: "Normal",
  48050. height: math.unit(9, "feet")
  48051. },
  48052. {
  48053. name: "Canon Height",
  48054. height: math.unit(10, "miles"),
  48055. default: true
  48056. },
  48057. {
  48058. name: "Maximum",
  48059. height: math.unit(6e9, "miles")
  48060. },
  48061. ]
  48062. ))
  48063. characterMakers.push(() => makeCharacter(
  48064. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  48065. {
  48066. front: {
  48067. height: math.unit(90, "feet"),
  48068. weight: math.unit(675000, "lb"),
  48069. name: "Front",
  48070. image: {
  48071. source: "./media/characters/qadan/front.svg",
  48072. extra: 1012/1004,
  48073. bottom: 78/1090
  48074. }
  48075. },
  48076. back: {
  48077. height: math.unit(90, "feet"),
  48078. weight: math.unit(675000, "lb"),
  48079. name: "Back",
  48080. image: {
  48081. source: "./media/characters/qadan/back.svg",
  48082. extra: 1042/1031,
  48083. bottom: 55/1097
  48084. }
  48085. },
  48086. armored: {
  48087. height: math.unit(90, "feet"),
  48088. weight: math.unit(675000, "lb"),
  48089. name: "Armored",
  48090. image: {
  48091. source: "./media/characters/qadan/armored.svg",
  48092. extra: 1047/1037,
  48093. bottom: 48/1095
  48094. }
  48095. },
  48096. },
  48097. [
  48098. {
  48099. name: "Normal",
  48100. height: math.unit(90, "feet"),
  48101. default: true
  48102. },
  48103. ]
  48104. ))
  48105. characterMakers.push(() => makeCharacter(
  48106. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  48107. {
  48108. front: {
  48109. height: math.unit(6, "feet"),
  48110. weight: math.unit(225, "lb"),
  48111. name: "Front",
  48112. image: {
  48113. source: "./media/characters/brooke/front.svg",
  48114. extra: 1050/1010,
  48115. bottom: 66/1116
  48116. }
  48117. },
  48118. back: {
  48119. height: math.unit(6, "feet"),
  48120. weight: math.unit(225, "lb"),
  48121. name: "Back",
  48122. image: {
  48123. source: "./media/characters/brooke/back.svg",
  48124. extra: 1053/1013,
  48125. bottom: 41/1094
  48126. }
  48127. },
  48128. dressed: {
  48129. height: math.unit(6, "feet"),
  48130. weight: math.unit(225, "lb"),
  48131. name: "Dressed",
  48132. image: {
  48133. source: "./media/characters/brooke/dressed.svg",
  48134. extra: 1050/1010,
  48135. bottom: 66/1116
  48136. }
  48137. },
  48138. },
  48139. [
  48140. {
  48141. name: "Canon Height",
  48142. height: math.unit(500, "miles"),
  48143. default: true
  48144. },
  48145. ]
  48146. ))
  48147. characterMakers.push(() => makeCharacter(
  48148. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  48149. {
  48150. front: {
  48151. height: math.unit(6 + 2/12, "feet"),
  48152. weight: math.unit(210, "lb"),
  48153. name: "Front",
  48154. image: {
  48155. source: "./media/characters/wubs/front.svg",
  48156. extra: 1345/1325,
  48157. bottom: 70/1415
  48158. }
  48159. },
  48160. back: {
  48161. height: math.unit(6 + 2/12, "feet"),
  48162. weight: math.unit(210, "lb"),
  48163. name: "Back",
  48164. image: {
  48165. source: "./media/characters/wubs/back.svg",
  48166. extra: 1296/1275,
  48167. bottom: 58/1354
  48168. }
  48169. },
  48170. },
  48171. [
  48172. {
  48173. name: "Normal",
  48174. height: math.unit(6 + 2/12, "feet"),
  48175. default: true
  48176. },
  48177. {
  48178. name: "Macro",
  48179. height: math.unit(1000, "feet")
  48180. },
  48181. {
  48182. name: "Megamacro",
  48183. height: math.unit(1, "mile")
  48184. },
  48185. ]
  48186. ))
  48187. characterMakers.push(() => makeCharacter(
  48188. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  48189. {
  48190. front: {
  48191. height: math.unit(4, "feet"),
  48192. weight: math.unit(120, "lb"),
  48193. name: "Front",
  48194. image: {
  48195. source: "./media/characters/blue/front.svg",
  48196. extra: 1636/1525,
  48197. bottom: 43/1679
  48198. }
  48199. },
  48200. back: {
  48201. height: math.unit(4, "feet"),
  48202. weight: math.unit(120, "lb"),
  48203. name: "Back",
  48204. image: {
  48205. source: "./media/characters/blue/back.svg",
  48206. extra: 1660/1560,
  48207. bottom: 57/1717
  48208. }
  48209. },
  48210. paws: {
  48211. height: math.unit(0.826, "feet"),
  48212. name: "Paws",
  48213. image: {
  48214. source: "./media/characters/blue/paws.svg"
  48215. }
  48216. },
  48217. },
  48218. [
  48219. {
  48220. name: "Micro",
  48221. height: math.unit(3, "inches")
  48222. },
  48223. {
  48224. name: "Normal",
  48225. height: math.unit(4, "feet"),
  48226. default: true
  48227. },
  48228. {
  48229. name: "Femenine Form",
  48230. height: math.unit(14, "feet")
  48231. },
  48232. {
  48233. name: "Werebat Form",
  48234. height: math.unit(18, "feet")
  48235. },
  48236. ]
  48237. ))
  48238. characterMakers.push(() => makeCharacter(
  48239. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  48240. {
  48241. female: {
  48242. height: math.unit(7 + 4/12, "feet"),
  48243. weight: math.unit(243, "lb"),
  48244. name: "Female",
  48245. image: {
  48246. source: "./media/characters/kaya/female.svg",
  48247. extra: 975/898,
  48248. bottom: 34/1009
  48249. }
  48250. },
  48251. herm: {
  48252. height: math.unit(7 + 4/12, "feet"),
  48253. weight: math.unit(243, "lb"),
  48254. name: "Herm",
  48255. image: {
  48256. source: "./media/characters/kaya/herm.svg",
  48257. extra: 975/898,
  48258. bottom: 34/1009
  48259. }
  48260. },
  48261. },
  48262. [
  48263. {
  48264. name: "Normal",
  48265. height: math.unit(7 + 4/12, "feet"),
  48266. default: true
  48267. },
  48268. ]
  48269. ))
  48270. characterMakers.push(() => makeCharacter(
  48271. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  48272. {
  48273. female: {
  48274. height: math.unit(9 + 4/12, "feet"),
  48275. weight: math.unit(398, "lb"),
  48276. name: "Female",
  48277. image: {
  48278. source: "./media/characters/kassandra/female.svg",
  48279. extra: 908/839,
  48280. bottom: 61/969
  48281. }
  48282. },
  48283. intersex: {
  48284. height: math.unit(9 + 4/12, "feet"),
  48285. weight: math.unit(398, "lb"),
  48286. name: "Intersex",
  48287. image: {
  48288. source: "./media/characters/kassandra/intersex.svg",
  48289. extra: 908/839,
  48290. bottom: 61/969
  48291. }
  48292. },
  48293. },
  48294. [
  48295. {
  48296. name: "Normal",
  48297. height: math.unit(9 + 4/12, "feet"),
  48298. default: true
  48299. },
  48300. ]
  48301. ))
  48302. characterMakers.push(() => makeCharacter(
  48303. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  48304. {
  48305. front: {
  48306. height: math.unit(3, "meters"),
  48307. name: "Front",
  48308. image: {
  48309. source: "./media/characters/amy/front.svg",
  48310. extra: 1380/1343,
  48311. bottom: 70/1450
  48312. }
  48313. },
  48314. back: {
  48315. height: math.unit(3, "meters"),
  48316. name: "Back",
  48317. image: {
  48318. source: "./media/characters/amy/back.svg",
  48319. extra: 1380/1347,
  48320. bottom: 66/1446
  48321. }
  48322. },
  48323. },
  48324. [
  48325. {
  48326. name: "Normal",
  48327. height: math.unit(3, "meters"),
  48328. default: true
  48329. },
  48330. ]
  48331. ))
  48332. characterMakers.push(() => makeCharacter(
  48333. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  48334. {
  48335. side: {
  48336. height: math.unit(47, "cm"),
  48337. weight: math.unit(10.8, "kg"),
  48338. name: "Side",
  48339. image: {
  48340. source: "./media/characters/alphaschakal/side.svg",
  48341. extra: 1058/568,
  48342. bottom: 62/1120
  48343. }
  48344. },
  48345. back: {
  48346. height: math.unit(78, "cm"),
  48347. weight: math.unit(10.8, "kg"),
  48348. name: "Back",
  48349. image: {
  48350. source: "./media/characters/alphaschakal/back.svg",
  48351. extra: 1102/942,
  48352. bottom: 185/1287
  48353. }
  48354. },
  48355. head: {
  48356. height: math.unit(28, "cm"),
  48357. name: "Head",
  48358. image: {
  48359. source: "./media/characters/alphaschakal/head.svg",
  48360. extra: 696/508,
  48361. bottom: 0/696
  48362. }
  48363. },
  48364. paw: {
  48365. height: math.unit(16, "cm"),
  48366. name: "Paw",
  48367. image: {
  48368. source: "./media/characters/alphaschakal/paw.svg"
  48369. }
  48370. },
  48371. },
  48372. [
  48373. {
  48374. name: "Normal",
  48375. height: math.unit(47, "cm"),
  48376. default: true
  48377. },
  48378. {
  48379. name: "Macro",
  48380. height: math.unit(340, "cm")
  48381. },
  48382. ]
  48383. ))
  48384. characterMakers.push(() => makeCharacter(
  48385. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  48386. {
  48387. front: {
  48388. height: math.unit(36, "earths"),
  48389. name: "Front",
  48390. image: {
  48391. source: "./media/characters/ecobyss/front.svg",
  48392. extra: 1282/1215,
  48393. bottom: 11/1293
  48394. }
  48395. },
  48396. back: {
  48397. height: math.unit(36, "earths"),
  48398. name: "Back",
  48399. image: {
  48400. source: "./media/characters/ecobyss/back.svg",
  48401. extra: 1291/1222,
  48402. bottom: 8/1299
  48403. }
  48404. },
  48405. },
  48406. [
  48407. {
  48408. name: "Normal",
  48409. height: math.unit(36, "earths"),
  48410. default: true
  48411. },
  48412. ]
  48413. ))
  48414. characterMakers.push(() => makeCharacter(
  48415. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  48416. {
  48417. front: {
  48418. height: math.unit(12, "feet"),
  48419. name: "Front",
  48420. image: {
  48421. source: "./media/characters/vasuk/front.svg",
  48422. extra: 1326/1207,
  48423. bottom: 64/1390
  48424. }
  48425. },
  48426. },
  48427. [
  48428. {
  48429. name: "Normal",
  48430. height: math.unit(12, "feet"),
  48431. default: true
  48432. },
  48433. ]
  48434. ))
  48435. characterMakers.push(() => makeCharacter(
  48436. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  48437. {
  48438. side: {
  48439. height: math.unit(100, "feet"),
  48440. name: "Side",
  48441. image: {
  48442. source: "./media/characters/linneaus/side.svg",
  48443. extra: 987/807,
  48444. bottom: 47/1034
  48445. }
  48446. },
  48447. },
  48448. [
  48449. {
  48450. name: "Macro",
  48451. height: math.unit(100, "feet"),
  48452. default: true
  48453. },
  48454. ]
  48455. ))
  48456. characterMakers.push(() => makeCharacter(
  48457. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  48458. {
  48459. front: {
  48460. height: math.unit(8, "feet"),
  48461. weight: math.unit(1200, "lb"),
  48462. name: "Front",
  48463. image: {
  48464. source: "./media/characters/nyterious-daligdig/front.svg",
  48465. extra: 1284/1094,
  48466. bottom: 84/1368
  48467. }
  48468. },
  48469. back: {
  48470. height: math.unit(8, "feet"),
  48471. weight: math.unit(1200, "lb"),
  48472. name: "Back",
  48473. image: {
  48474. source: "./media/characters/nyterious-daligdig/back.svg",
  48475. extra: 1301/1121,
  48476. bottom: 129/1430
  48477. }
  48478. },
  48479. mouth: {
  48480. height: math.unit(1.464, "feet"),
  48481. name: "Mouth",
  48482. image: {
  48483. source: "./media/characters/nyterious-daligdig/mouth.svg"
  48484. }
  48485. },
  48486. },
  48487. [
  48488. {
  48489. name: "Small",
  48490. height: math.unit(8, "feet"),
  48491. default: true
  48492. },
  48493. {
  48494. name: "Normal",
  48495. height: math.unit(15, "feet")
  48496. },
  48497. {
  48498. name: "Macro",
  48499. height: math.unit(90, "feet")
  48500. },
  48501. ]
  48502. ))
  48503. characterMakers.push(() => makeCharacter(
  48504. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  48505. {
  48506. front: {
  48507. height: math.unit(7 + 4/12, "feet"),
  48508. weight: math.unit(252, "lb"),
  48509. name: "Front",
  48510. image: {
  48511. source: "./media/characters/bandel/front.svg",
  48512. extra: 1946/1775,
  48513. bottom: 26/1972
  48514. }
  48515. },
  48516. back: {
  48517. height: math.unit(7 + 4/12, "feet"),
  48518. weight: math.unit(252, "lb"),
  48519. name: "Back",
  48520. image: {
  48521. source: "./media/characters/bandel/back.svg",
  48522. extra: 1940/1770,
  48523. bottom: 25/1965
  48524. }
  48525. },
  48526. maw: {
  48527. height: math.unit(2.15, "feet"),
  48528. name: "Maw",
  48529. image: {
  48530. source: "./media/characters/bandel/maw.svg"
  48531. }
  48532. },
  48533. stomach: {
  48534. height: math.unit(1.95, "feet"),
  48535. name: "Stomach",
  48536. image: {
  48537. source: "./media/characters/bandel/stomach.svg"
  48538. }
  48539. },
  48540. },
  48541. [
  48542. {
  48543. name: "Normal",
  48544. height: math.unit(7 + 4/12, "feet"),
  48545. default: true
  48546. },
  48547. ]
  48548. ))
  48549. characterMakers.push(() => makeCharacter(
  48550. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  48551. {
  48552. front: {
  48553. height: math.unit(10 + 5/12, "feet"),
  48554. weight: math.unit(773.5, "kg"),
  48555. name: "Front",
  48556. image: {
  48557. source: "./media/characters/zed/front.svg",
  48558. extra: 987/941,
  48559. bottom: 52/1039
  48560. }
  48561. },
  48562. },
  48563. [
  48564. {
  48565. name: "Short",
  48566. height: math.unit(5 + 4/12, "feet")
  48567. },
  48568. {
  48569. name: "Average",
  48570. height: math.unit(10 + 5/12, "feet"),
  48571. default: true
  48572. },
  48573. {
  48574. name: "Mini-Macro",
  48575. height: math.unit(24 + 9/12, "feet")
  48576. },
  48577. {
  48578. name: "Macro",
  48579. height: math.unit(249, "feet")
  48580. },
  48581. {
  48582. name: "Mega-Macro",
  48583. height: math.unit(12490, "feet")
  48584. },
  48585. {
  48586. name: "Giga-Macro",
  48587. height: math.unit(24.9, "miles")
  48588. },
  48589. {
  48590. name: "Tera-Macro",
  48591. height: math.unit(24900, "miles")
  48592. },
  48593. {
  48594. name: "Cosmic Scale",
  48595. height: math.unit(38.9, "lightyears")
  48596. },
  48597. {
  48598. name: "Universal Scale",
  48599. height: math.unit(138e12, "lightyears")
  48600. },
  48601. ]
  48602. ))
  48603. characterMakers.push(() => makeCharacter(
  48604. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  48605. {
  48606. front: {
  48607. height: math.unit(1561, "inches"),
  48608. name: "Front",
  48609. image: {
  48610. source: "./media/characters/ivan/front.svg",
  48611. extra: 1126/1071,
  48612. bottom: 26/1152
  48613. }
  48614. },
  48615. back: {
  48616. height: math.unit(1561, "inches"),
  48617. name: "Back",
  48618. image: {
  48619. source: "./media/characters/ivan/back.svg",
  48620. extra: 1134/1079,
  48621. bottom: 30/1164
  48622. }
  48623. },
  48624. },
  48625. [
  48626. {
  48627. name: "Normal",
  48628. height: math.unit(1561, "inches"),
  48629. default: true
  48630. },
  48631. ]
  48632. ))
  48633. characterMakers.push(() => makeCharacter(
  48634. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  48635. {
  48636. front: {
  48637. height: math.unit(5 + 7/12, "feet"),
  48638. weight: math.unit(150, "lb"),
  48639. name: "Front",
  48640. image: {
  48641. source: "./media/characters/robin-arctic-hare/front.svg",
  48642. extra: 1148/974,
  48643. bottom: 20/1168
  48644. }
  48645. },
  48646. },
  48647. [
  48648. {
  48649. name: "Normal",
  48650. height: math.unit(5 + 7/12, "feet"),
  48651. default: true
  48652. },
  48653. ]
  48654. ))
  48655. characterMakers.push(() => makeCharacter(
  48656. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  48657. {
  48658. side: {
  48659. height: math.unit(5, "feet"),
  48660. name: "Side",
  48661. image: {
  48662. source: "./media/characters/birch/side.svg",
  48663. extra: 985/796,
  48664. bottom: 111/1096
  48665. }
  48666. },
  48667. },
  48668. [
  48669. {
  48670. name: "Normal",
  48671. height: math.unit(5, "feet"),
  48672. default: true
  48673. },
  48674. ]
  48675. ))
  48676. characterMakers.push(() => makeCharacter(
  48677. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  48678. {
  48679. front: {
  48680. height: math.unit(4, "feet"),
  48681. name: "Front",
  48682. image: {
  48683. source: "./media/characters/rasp/front.svg",
  48684. extra: 561/478,
  48685. bottom: 74/635
  48686. }
  48687. },
  48688. },
  48689. [
  48690. {
  48691. name: "Normal",
  48692. height: math.unit(4, "feet"),
  48693. default: true
  48694. },
  48695. ]
  48696. ))
  48697. characterMakers.push(() => makeCharacter(
  48698. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  48699. {
  48700. front: {
  48701. height: math.unit(4 + 6/12, "feet"),
  48702. name: "Front",
  48703. image: {
  48704. source: "./media/characters/agatha/front.svg",
  48705. extra: 947/933,
  48706. bottom: 42/989
  48707. }
  48708. },
  48709. back: {
  48710. height: math.unit(4 + 6/12, "feet"),
  48711. name: "Back",
  48712. image: {
  48713. source: "./media/characters/agatha/back.svg",
  48714. extra: 935/922,
  48715. bottom: 48/983
  48716. }
  48717. },
  48718. },
  48719. [
  48720. {
  48721. name: "Normal",
  48722. height: math.unit(4 + 6 /12, "feet"),
  48723. default: true
  48724. },
  48725. {
  48726. name: "Max Size",
  48727. height: math.unit(500, "feet")
  48728. },
  48729. ]
  48730. ))
  48731. characterMakers.push(() => makeCharacter(
  48732. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  48733. {
  48734. side: {
  48735. height: math.unit(30, "feet"),
  48736. name: "Side",
  48737. image: {
  48738. source: "./media/characters/roggy/side.svg",
  48739. extra: 909/643,
  48740. bottom: 63/972
  48741. }
  48742. },
  48743. lounging: {
  48744. height: math.unit(20, "feet"),
  48745. name: "Lounging",
  48746. image: {
  48747. source: "./media/characters/roggy/lounging.svg",
  48748. extra: 643/479,
  48749. bottom: 145/788
  48750. }
  48751. },
  48752. handpaw: {
  48753. height: math.unit(13.1, "feet"),
  48754. name: "Handpaw",
  48755. image: {
  48756. source: "./media/characters/roggy/handpaw.svg"
  48757. }
  48758. },
  48759. footpaw: {
  48760. height: math.unit(15.8, "feet"),
  48761. name: "Footpaw",
  48762. image: {
  48763. source: "./media/characters/roggy/footpaw.svg"
  48764. }
  48765. },
  48766. },
  48767. [
  48768. {
  48769. name: "Menacing",
  48770. height: math.unit(30, "feet"),
  48771. default: true
  48772. },
  48773. ]
  48774. ))
  48775. characterMakers.push(() => makeCharacter(
  48776. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  48777. {
  48778. front: {
  48779. height: math.unit(5 + 7/12, "feet"),
  48780. weight: math.unit(135, "lb"),
  48781. name: "Front",
  48782. image: {
  48783. source: "./media/characters/naomi/front.svg",
  48784. extra: 1209/1154,
  48785. bottom: 129/1338
  48786. }
  48787. },
  48788. back: {
  48789. height: math.unit(5 + 7/12, "feet"),
  48790. weight: math.unit(135, "lb"),
  48791. name: "Back",
  48792. image: {
  48793. source: "./media/characters/naomi/back.svg",
  48794. extra: 1252/1190,
  48795. bottom: 23/1275
  48796. }
  48797. },
  48798. },
  48799. [
  48800. {
  48801. name: "Normal",
  48802. height: math.unit(5 + 7 /12, "feet"),
  48803. default: true
  48804. },
  48805. ]
  48806. ))
  48807. characterMakers.push(() => makeCharacter(
  48808. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  48809. {
  48810. side: {
  48811. height: math.unit(35, "meters"),
  48812. name: "Side",
  48813. image: {
  48814. source: "./media/characters/kimpi/side.svg",
  48815. extra: 419/382,
  48816. bottom: 63/482
  48817. }
  48818. },
  48819. hand: {
  48820. height: math.unit(8.96, "meters"),
  48821. name: "Hand",
  48822. image: {
  48823. source: "./media/characters/kimpi/hand.svg"
  48824. }
  48825. },
  48826. },
  48827. [
  48828. {
  48829. name: "Normal",
  48830. height: math.unit(35, "meters"),
  48831. default: true
  48832. },
  48833. ]
  48834. ))
  48835. characterMakers.push(() => makeCharacter(
  48836. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  48837. {
  48838. front: {
  48839. height: math.unit(4 + 4/12, "feet"),
  48840. name: "Front",
  48841. image: {
  48842. source: "./media/characters/pepper-purrloin/front.svg",
  48843. extra: 1141/1024,
  48844. bottom: 21/1162
  48845. }
  48846. },
  48847. },
  48848. [
  48849. {
  48850. name: "Normal",
  48851. height: math.unit(4 + 4/12, "feet"),
  48852. default: true
  48853. },
  48854. ]
  48855. ))
  48856. characterMakers.push(() => makeCharacter(
  48857. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  48858. {
  48859. front: {
  48860. height: math.unit(6 + 2/12, "feet"),
  48861. name: "Front",
  48862. image: {
  48863. source: "./media/characters/raphael/front.svg",
  48864. extra: 1101/962,
  48865. bottom: 59/1160
  48866. }
  48867. },
  48868. },
  48869. [
  48870. {
  48871. name: "Normal",
  48872. height: math.unit(6 + 2/12, "feet"),
  48873. default: true
  48874. },
  48875. ]
  48876. ))
  48877. characterMakers.push(() => makeCharacter(
  48878. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  48879. {
  48880. front: {
  48881. height: math.unit(6, "feet"),
  48882. weight: math.unit(150, "lb"),
  48883. name: "Front",
  48884. image: {
  48885. source: "./media/characters/victor-williams/front.svg",
  48886. extra: 1894/1825,
  48887. bottom: 67/1961
  48888. }
  48889. },
  48890. },
  48891. [
  48892. {
  48893. name: "Normal",
  48894. height: math.unit(6, "feet"),
  48895. default: true
  48896. },
  48897. ]
  48898. ))
  48899. characterMakers.push(() => makeCharacter(
  48900. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  48901. {
  48902. front: {
  48903. height: math.unit(5 + 8/12, "feet"),
  48904. weight: math.unit(150, "lb"),
  48905. name: "Front",
  48906. image: {
  48907. source: "./media/characters/rachel/front.svg",
  48908. extra: 1902/1787,
  48909. bottom: 46/1948
  48910. }
  48911. },
  48912. },
  48913. [
  48914. {
  48915. name: "Base Height",
  48916. height: math.unit(5 + 8/12, "feet"),
  48917. default: true
  48918. },
  48919. {
  48920. name: "Macro",
  48921. height: math.unit(200, "feet")
  48922. },
  48923. {
  48924. name: "Mega Macro",
  48925. height: math.unit(1, "mile")
  48926. },
  48927. {
  48928. name: "Giga Macro",
  48929. height: math.unit(1500, "miles")
  48930. },
  48931. {
  48932. name: "Tera Macro",
  48933. height: math.unit(8000, "miles")
  48934. },
  48935. {
  48936. name: "Tera Macro+",
  48937. height: math.unit(2e5, "miles")
  48938. },
  48939. ]
  48940. ))
  48941. characterMakers.push(() => makeCharacter(
  48942. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  48943. {
  48944. front: {
  48945. height: math.unit(6.5, "feet"),
  48946. name: "Front",
  48947. image: {
  48948. source: "./media/characters/svetlana-rozovskaya/front.svg",
  48949. extra: 860/819,
  48950. bottom: 307/1167
  48951. }
  48952. },
  48953. back: {
  48954. height: math.unit(6.5, "feet"),
  48955. name: "Back",
  48956. image: {
  48957. source: "./media/characters/svetlana-rozovskaya/back.svg",
  48958. extra: 880/837,
  48959. bottom: 395/1275
  48960. }
  48961. },
  48962. sleeping: {
  48963. height: math.unit(2.79, "feet"),
  48964. name: "Sleeping",
  48965. image: {
  48966. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  48967. extra: 465/383,
  48968. bottom: 263/728
  48969. }
  48970. },
  48971. maw: {
  48972. height: math.unit(2.52, "feet"),
  48973. name: "Maw",
  48974. image: {
  48975. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  48976. }
  48977. },
  48978. },
  48979. [
  48980. {
  48981. name: "Normal",
  48982. height: math.unit(6.5, "feet"),
  48983. default: true
  48984. },
  48985. ]
  48986. ))
  48987. characterMakers.push(() => makeCharacter(
  48988. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  48989. {
  48990. front: {
  48991. height: math.unit(5, "feet"),
  48992. name: "Front",
  48993. image: {
  48994. source: "./media/characters/nova-nerium/front.svg",
  48995. extra: 1548/1392,
  48996. bottom: 374/1922
  48997. }
  48998. },
  48999. back: {
  49000. height: math.unit(5, "feet"),
  49001. name: "Back",
  49002. image: {
  49003. source: "./media/characters/nova-nerium/back.svg",
  49004. extra: 1658/1468,
  49005. bottom: 257/1915
  49006. }
  49007. },
  49008. },
  49009. [
  49010. {
  49011. name: "Normal",
  49012. height: math.unit(5, "feet"),
  49013. default: true
  49014. },
  49015. ]
  49016. ))
  49017. characterMakers.push(() => makeCharacter(
  49018. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  49019. {
  49020. front: {
  49021. height: math.unit(5 + 4/12, "feet"),
  49022. name: "Front",
  49023. image: {
  49024. source: "./media/characters/ashe-pyriph/front.svg",
  49025. extra: 1935/1747,
  49026. bottom: 60/1995
  49027. }
  49028. },
  49029. },
  49030. [
  49031. {
  49032. name: "Normal",
  49033. height: math.unit(5 + 4/12, "feet"),
  49034. default: true
  49035. },
  49036. ]
  49037. ))
  49038. characterMakers.push(() => makeCharacter(
  49039. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  49040. {
  49041. front: {
  49042. height: math.unit(8.7, "feet"),
  49043. name: "Front",
  49044. image: {
  49045. source: "./media/characters/flicker-wisp/front.svg",
  49046. extra: 1835/1613,
  49047. bottom: 449/2284
  49048. }
  49049. },
  49050. side: {
  49051. height: math.unit(8.7, "feet"),
  49052. name: "Side",
  49053. image: {
  49054. source: "./media/characters/flicker-wisp/side.svg",
  49055. extra: 1841/1642,
  49056. bottom: 336/2177
  49057. },
  49058. default: true
  49059. },
  49060. maw: {
  49061. height: math.unit(3.35, "feet"),
  49062. name: "Maw",
  49063. image: {
  49064. source: "./media/characters/flicker-wisp/maw.svg",
  49065. extra: 2338/1506,
  49066. bottom: 0/2338
  49067. }
  49068. },
  49069. ovipositor: {
  49070. height: math.unit(4.95, "feet"),
  49071. name: "Ovipositor",
  49072. image: {
  49073. source: "./media/characters/flicker-wisp/ovipositor.svg"
  49074. }
  49075. },
  49076. egg: {
  49077. height: math.unit(0.385, "feet"),
  49078. weight: math.unit(2, "lb"),
  49079. name: "Egg",
  49080. image: {
  49081. source: "./media/characters/flicker-wisp/egg.svg"
  49082. }
  49083. },
  49084. },
  49085. [
  49086. {
  49087. name: "Normal",
  49088. height: math.unit(8.7, "feet"),
  49089. default: true
  49090. },
  49091. ]
  49092. ))
  49093. characterMakers.push(() => makeCharacter(
  49094. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  49095. {
  49096. side: {
  49097. height: math.unit(11, "feet"),
  49098. name: "Side",
  49099. image: {
  49100. source: "./media/characters/faefnul/side.svg",
  49101. extra: 1100/1007,
  49102. bottom: 0/1100
  49103. }
  49104. },
  49105. },
  49106. [
  49107. {
  49108. name: "Normal",
  49109. height: math.unit(11, "feet"),
  49110. default: true
  49111. },
  49112. ]
  49113. ))
  49114. characterMakers.push(() => makeCharacter(
  49115. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  49116. {
  49117. front: {
  49118. height: math.unit(6 + 2/12, "feet"),
  49119. name: "Front",
  49120. image: {
  49121. source: "./media/characters/shady/front.svg",
  49122. extra: 502/461,
  49123. bottom: 9/511
  49124. }
  49125. },
  49126. kneeling: {
  49127. height: math.unit(4.6, "feet"),
  49128. name: "Kneeling",
  49129. image: {
  49130. source: "./media/characters/shady/kneeling.svg",
  49131. extra: 1328/1219,
  49132. bottom: 117/1445
  49133. }
  49134. },
  49135. maw: {
  49136. height: math.unit(2, "feet"),
  49137. name: "Maw",
  49138. image: {
  49139. source: "./media/characters/shady/maw.svg"
  49140. }
  49141. },
  49142. },
  49143. [
  49144. {
  49145. name: "Nano",
  49146. height: math.unit(1, "mm")
  49147. },
  49148. {
  49149. name: "Micro",
  49150. height: math.unit(12, "mm")
  49151. },
  49152. {
  49153. name: "Tiny",
  49154. height: math.unit(3, "inches")
  49155. },
  49156. {
  49157. name: "Normal",
  49158. height: math.unit(6 + 2/12, "feet"),
  49159. default: true
  49160. },
  49161. {
  49162. name: "Big",
  49163. height: math.unit(15, "feet")
  49164. },
  49165. {
  49166. name: "Macro",
  49167. height: math.unit(150, "feet")
  49168. },
  49169. {
  49170. name: "Titanic",
  49171. height: math.unit(500, "feet")
  49172. },
  49173. ]
  49174. ))
  49175. characterMakers.push(() => makeCharacter(
  49176. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  49177. {
  49178. front: {
  49179. height: math.unit(12, "feet"),
  49180. name: "Front",
  49181. image: {
  49182. source: "./media/characters/fenrir/front.svg",
  49183. extra: 968/875,
  49184. bottom: 22/990
  49185. }
  49186. },
  49187. },
  49188. [
  49189. {
  49190. name: "Big",
  49191. height: math.unit(12, "feet"),
  49192. default: true
  49193. },
  49194. ]
  49195. ))
  49196. characterMakers.push(() => makeCharacter(
  49197. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  49198. {
  49199. front: {
  49200. height: math.unit(5 + 4/12, "feet"),
  49201. name: "Front",
  49202. image: {
  49203. source: "./media/characters/makar/front.svg",
  49204. extra: 1181/1112,
  49205. bottom: 78/1259
  49206. }
  49207. },
  49208. },
  49209. [
  49210. {
  49211. name: "Normal",
  49212. height: math.unit(5 + 4/12, "feet"),
  49213. default: true
  49214. },
  49215. ]
  49216. ))
  49217. characterMakers.push(() => makeCharacter(
  49218. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  49219. {
  49220. front: {
  49221. height: math.unit(5 + 7/12, "feet"),
  49222. name: "Front",
  49223. image: {
  49224. source: "./media/characters/callow/front.svg",
  49225. extra: 1482/1304,
  49226. bottom: 23/1505
  49227. }
  49228. },
  49229. back: {
  49230. height: math.unit(5 + 7/12, "feet"),
  49231. name: "Back",
  49232. image: {
  49233. source: "./media/characters/callow/back.svg",
  49234. extra: 1484/1296,
  49235. bottom: 25/1509
  49236. }
  49237. },
  49238. },
  49239. [
  49240. {
  49241. name: "Micro",
  49242. height: math.unit(3, "inches"),
  49243. default: true
  49244. },
  49245. {
  49246. name: "Normal",
  49247. height: math.unit(5 + 7/12, "feet")
  49248. },
  49249. ]
  49250. ))
  49251. characterMakers.push(() => makeCharacter(
  49252. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  49253. {
  49254. front: {
  49255. height: math.unit(6 + 2/12, "feet"),
  49256. name: "Front",
  49257. image: {
  49258. source: "./media/characters/natel/front.svg",
  49259. extra: 1833/1692,
  49260. bottom: 166/1999
  49261. }
  49262. },
  49263. },
  49264. [
  49265. {
  49266. name: "Normal",
  49267. height: math.unit(6 + 2/12, "feet"),
  49268. default: true
  49269. },
  49270. ]
  49271. ))
  49272. characterMakers.push(() => makeCharacter(
  49273. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  49274. {
  49275. front: {
  49276. height: math.unit(1.75, "meters"),
  49277. name: "Front",
  49278. image: {
  49279. source: "./media/characters/misu/front.svg",
  49280. extra: 1690/1558,
  49281. bottom: 234/1924
  49282. }
  49283. },
  49284. back: {
  49285. height: math.unit(1.75, "meters"),
  49286. name: "Back",
  49287. image: {
  49288. source: "./media/characters/misu/back.svg",
  49289. extra: 1762/1618,
  49290. bottom: 146/1908
  49291. }
  49292. },
  49293. frontNude: {
  49294. height: math.unit(1.75, "meters"),
  49295. name: "Front (Nude)",
  49296. image: {
  49297. source: "./media/characters/misu/front-nude.svg",
  49298. extra: 1690/1558,
  49299. bottom: 234/1924
  49300. }
  49301. },
  49302. backNude: {
  49303. height: math.unit(1.75, "meters"),
  49304. name: "Back (Nude)",
  49305. image: {
  49306. source: "./media/characters/misu/back-nude.svg",
  49307. extra: 1762/1618,
  49308. bottom: 146/1908
  49309. }
  49310. },
  49311. frontErect: {
  49312. height: math.unit(1.75, "meters"),
  49313. name: "Front (Erect)",
  49314. image: {
  49315. source: "./media/characters/misu/front-erect.svg",
  49316. extra: 1690/1558,
  49317. bottom: 234/1924
  49318. }
  49319. },
  49320. maw: {
  49321. height: math.unit(0.47, "meters"),
  49322. name: "Maw",
  49323. image: {
  49324. source: "./media/characters/misu/maw.svg"
  49325. }
  49326. },
  49327. head: {
  49328. height: math.unit(0.35, "meters"),
  49329. name: "Head",
  49330. image: {
  49331. source: "./media/characters/misu/head.svg"
  49332. }
  49333. },
  49334. rear: {
  49335. height: math.unit(0.47, "meters"),
  49336. name: "Rear",
  49337. image: {
  49338. source: "./media/characters/misu/rear.svg"
  49339. }
  49340. },
  49341. },
  49342. [
  49343. {
  49344. name: "Normal",
  49345. height: math.unit(1.75, "meters")
  49346. },
  49347. {
  49348. name: "Not good for the people",
  49349. height: math.unit(42, "meters")
  49350. },
  49351. {
  49352. name: "Not good for the neighborhood",
  49353. height: math.unit(135, "meters")
  49354. },
  49355. {
  49356. name: "Bit bigger problem",
  49357. height: math.unit(380, "meters"),
  49358. default: true
  49359. },
  49360. {
  49361. name: "Not good for the city",
  49362. height: math.unit(1.5, "km")
  49363. },
  49364. {
  49365. name: "Not good for the county",
  49366. height: math.unit(5.5, "km")
  49367. },
  49368. {
  49369. name: "Not good for the state",
  49370. height: math.unit(25, "km")
  49371. },
  49372. {
  49373. name: "Not good for the country",
  49374. height: math.unit(125, "km")
  49375. },
  49376. {
  49377. name: "Not good for the continent",
  49378. height: math.unit(2100, "km")
  49379. },
  49380. {
  49381. name: "Not good for the planet",
  49382. height: math.unit(35000, "km")
  49383. },
  49384. {
  49385. name: "Just no",
  49386. height: math.unit(8.5e18, "km")
  49387. },
  49388. ]
  49389. ))
  49390. characterMakers.push(() => makeCharacter(
  49391. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  49392. {
  49393. front: {
  49394. height: math.unit(6.5, "feet"),
  49395. name: "Front",
  49396. image: {
  49397. source: "./media/characters/poppy/front.svg",
  49398. extra: 1878/1812,
  49399. bottom: 43/1921
  49400. }
  49401. },
  49402. feet: {
  49403. height: math.unit(1.06, "feet"),
  49404. name: "Feet",
  49405. image: {
  49406. source: "./media/characters/poppy/feet.svg",
  49407. extra: 1083/1083,
  49408. bottom: 87/1170
  49409. }
  49410. },
  49411. },
  49412. [
  49413. {
  49414. name: "Human",
  49415. height: math.unit(6.5, "feet")
  49416. },
  49417. {
  49418. name: "Default",
  49419. height: math.unit(300, "feet"),
  49420. default: true
  49421. },
  49422. {
  49423. name: "Huge",
  49424. height: math.unit(850, "feet")
  49425. },
  49426. {
  49427. name: "Mega",
  49428. height: math.unit(8000, "feet")
  49429. },
  49430. {
  49431. name: "Giga",
  49432. height: math.unit(300, "miles")
  49433. },
  49434. ]
  49435. ))
  49436. characterMakers.push(() => makeCharacter(
  49437. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  49438. {
  49439. bipedal: {
  49440. height: math.unit(7, "feet"),
  49441. name: "Bipedal",
  49442. image: {
  49443. source: "./media/characters/zener/bipedal.svg",
  49444. extra: 874/805,
  49445. bottom: 109/983
  49446. }
  49447. },
  49448. quadrupedal: {
  49449. height: math.unit(4.64, "feet"),
  49450. name: "Quadrupedal",
  49451. image: {
  49452. source: "./media/characters/zener/quadrupedal.svg",
  49453. extra: 638/507,
  49454. bottom: 190/828
  49455. }
  49456. },
  49457. cock: {
  49458. height: math.unit(18, "inches"),
  49459. name: "Cock",
  49460. image: {
  49461. source: "./media/characters/zener/cock.svg"
  49462. }
  49463. },
  49464. },
  49465. [
  49466. {
  49467. name: "Normal",
  49468. height: math.unit(7, "feet"),
  49469. default: true
  49470. },
  49471. ]
  49472. ))
  49473. characterMakers.push(() => makeCharacter(
  49474. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  49475. {
  49476. nude: {
  49477. height: math.unit(5 + 6/12, "feet"),
  49478. name: "Nude",
  49479. image: {
  49480. source: "./media/characters/charlie-dog/nude.svg",
  49481. extra: 768/734,
  49482. bottom: 26/794
  49483. }
  49484. },
  49485. dressed: {
  49486. height: math.unit(5 + 6/12, "feet"),
  49487. name: "Dressed",
  49488. image: {
  49489. source: "./media/characters/charlie-dog/dressed.svg",
  49490. extra: 768/734,
  49491. bottom: 26/794
  49492. }
  49493. },
  49494. },
  49495. [
  49496. {
  49497. name: "Normal",
  49498. height: math.unit(5 + 6/12, "feet"),
  49499. default: true
  49500. },
  49501. ]
  49502. ))
  49503. characterMakers.push(() => makeCharacter(
  49504. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  49505. {
  49506. front: {
  49507. height: math.unit(6 + 4/12, "feet"),
  49508. name: "Front",
  49509. image: {
  49510. source: "./media/characters/ir'istrasz/front.svg",
  49511. extra: 1014/977,
  49512. bottom: 65/1079
  49513. }
  49514. },
  49515. back: {
  49516. height: math.unit(6 + 4/12, "feet"),
  49517. name: "Back",
  49518. image: {
  49519. source: "./media/characters/ir'istrasz/back.svg",
  49520. extra: 1024/992,
  49521. bottom: 34/1058
  49522. }
  49523. },
  49524. },
  49525. [
  49526. {
  49527. name: "Normal",
  49528. height: math.unit(6 + 4/12, "feet"),
  49529. default: true
  49530. },
  49531. ]
  49532. ))
  49533. characterMakers.push(() => makeCharacter(
  49534. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  49535. {
  49536. front: {
  49537. height: math.unit(5 + 8/12, "feet"),
  49538. name: "Front",
  49539. image: {
  49540. source: "./media/characters/dee-ditto/front.svg",
  49541. extra: 1874/1785,
  49542. bottom: 68/1942
  49543. }
  49544. },
  49545. back: {
  49546. height: math.unit(5 + 8/12, "feet"),
  49547. name: "Back",
  49548. image: {
  49549. source: "./media/characters/dee-ditto/back.svg",
  49550. extra: 1870/1783,
  49551. bottom: 77/1947
  49552. }
  49553. },
  49554. },
  49555. [
  49556. {
  49557. name: "Normal",
  49558. height: math.unit(5 + 8/12, "feet"),
  49559. default: true
  49560. },
  49561. ]
  49562. ))
  49563. characterMakers.push(() => makeCharacter(
  49564. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  49565. {
  49566. front: {
  49567. height: math.unit(7 + 6/12, "feet"),
  49568. name: "Front",
  49569. image: {
  49570. source: "./media/characters/fey/front.svg",
  49571. extra: 995/979,
  49572. bottom: 30/1025
  49573. }
  49574. },
  49575. back: {
  49576. height: math.unit(7 + 6/12, "feet"),
  49577. name: "Back",
  49578. image: {
  49579. source: "./media/characters/fey/back.svg",
  49580. extra: 1079/1008,
  49581. bottom: 5/1084
  49582. }
  49583. },
  49584. dressed: {
  49585. height: math.unit(7 + 6/12, "feet"),
  49586. name: "Dressed",
  49587. image: {
  49588. source: "./media/characters/fey/dressed.svg",
  49589. extra: 995/979,
  49590. bottom: 30/1025
  49591. }
  49592. },
  49593. },
  49594. [
  49595. {
  49596. name: "Normal",
  49597. height: math.unit(7 + 6/12, "feet"),
  49598. default: true
  49599. },
  49600. ]
  49601. ))
  49602. characterMakers.push(() => makeCharacter(
  49603. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  49604. {
  49605. standing: {
  49606. height: math.unit(17, "feet"),
  49607. name: "Standing",
  49608. image: {
  49609. source: "./media/characters/aster/standing.svg",
  49610. extra: 1798/1598,
  49611. bottom: 117/1915
  49612. }
  49613. },
  49614. },
  49615. [
  49616. {
  49617. name: "Normal",
  49618. height: math.unit(17, "feet"),
  49619. default: true
  49620. },
  49621. {
  49622. name: "Homewrecker",
  49623. height: math.unit(95, "feet")
  49624. },
  49625. {
  49626. name: "Planet Devourer",
  49627. height: math.unit(1008000, "miles")
  49628. },
  49629. ]
  49630. ))
  49631. characterMakers.push(() => makeCharacter(
  49632. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  49633. {
  49634. front: {
  49635. height: math.unit(6 + 5/12, "feet"),
  49636. weight: math.unit(265, "lb"),
  49637. name: "Front",
  49638. image: {
  49639. source: "./media/characters/devon-childs/front.svg",
  49640. extra: 1795/1721,
  49641. bottom: 41/1836
  49642. }
  49643. },
  49644. side: {
  49645. height: math.unit(6 + 5/12, "feet"),
  49646. weight: math.unit(265, "lb"),
  49647. name: "Side",
  49648. image: {
  49649. source: "./media/characters/devon-childs/side.svg",
  49650. extra: 1812/1738,
  49651. bottom: 30/1842
  49652. }
  49653. },
  49654. back: {
  49655. height: math.unit(6 + 5/12, "feet"),
  49656. weight: math.unit(265, "lb"),
  49657. name: "Back",
  49658. image: {
  49659. source: "./media/characters/devon-childs/back.svg",
  49660. extra: 1808/1735,
  49661. bottom: 23/1831
  49662. }
  49663. },
  49664. hand: {
  49665. height: math.unit(1.464, "feet"),
  49666. name: "Hand",
  49667. image: {
  49668. source: "./media/characters/devon-childs/hand.svg"
  49669. }
  49670. },
  49671. foot: {
  49672. height: math.unit(1.6, "feet"),
  49673. name: "Foot",
  49674. image: {
  49675. source: "./media/characters/devon-childs/foot.svg"
  49676. }
  49677. },
  49678. },
  49679. [
  49680. {
  49681. name: "Micro",
  49682. height: math.unit(7, "cm")
  49683. },
  49684. {
  49685. name: "Normal",
  49686. height: math.unit(6 + 5/12, "feet"),
  49687. default: true
  49688. },
  49689. {
  49690. name: "Macro",
  49691. height: math.unit(154, "feet")
  49692. },
  49693. ]
  49694. ))
  49695. characterMakers.push(() => makeCharacter(
  49696. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  49697. {
  49698. front: {
  49699. height: math.unit(6, "feet"),
  49700. weight: math.unit(180, "lb"),
  49701. name: "Front",
  49702. image: {
  49703. source: "./media/characters/lydemox-vir/front.svg",
  49704. extra: 1632/1435,
  49705. bottom: 58/1690
  49706. }
  49707. },
  49708. frontSFW: {
  49709. height: math.unit(6, "feet"),
  49710. weight: math.unit(180, "lb"),
  49711. name: "Front (SFW)",
  49712. image: {
  49713. source: "./media/characters/lydemox-vir/front-sfw.svg",
  49714. extra: 1632/1435,
  49715. bottom: 58/1690
  49716. }
  49717. },
  49718. back: {
  49719. height: math.unit(6, "feet"),
  49720. weight: math.unit(180, "lb"),
  49721. name: "Back",
  49722. image: {
  49723. source: "./media/characters/lydemox-vir/back.svg",
  49724. extra: 1593/1408,
  49725. bottom: 31/1624
  49726. }
  49727. },
  49728. paw: {
  49729. height: math.unit(1.85, "feet"),
  49730. name: "Paw",
  49731. image: {
  49732. source: "./media/characters/lydemox-vir/paw.svg"
  49733. }
  49734. },
  49735. dick: {
  49736. height: math.unit(1.8, "feet"),
  49737. name: "Dick",
  49738. image: {
  49739. source: "./media/characters/lydemox-vir/dick.svg"
  49740. }
  49741. },
  49742. },
  49743. [
  49744. {
  49745. name: "Macro",
  49746. height: math.unit(100, "feet"),
  49747. default: true
  49748. },
  49749. {
  49750. name: "Teramacro",
  49751. height: math.unit(1, "earth")
  49752. },
  49753. {
  49754. name: "Planetary",
  49755. height: math.unit(20, "earths")
  49756. },
  49757. ]
  49758. ))
  49759. characterMakers.push(() => makeCharacter(
  49760. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  49761. {
  49762. front: {
  49763. height: math.unit(15 + 8/12, "feet"),
  49764. weight: math.unit(1237, "kg"),
  49765. name: "Front",
  49766. image: {
  49767. source: "./media/characters/mia/front.svg",
  49768. extra: 1573/1446,
  49769. bottom: 58/1631
  49770. }
  49771. },
  49772. },
  49773. [
  49774. {
  49775. name: "Small",
  49776. height: math.unit(9 + 5/12, "feet")
  49777. },
  49778. {
  49779. name: "Normal",
  49780. height: math.unit(15 + 8/12, "feet"),
  49781. default: true
  49782. },
  49783. ]
  49784. ))
  49785. characterMakers.push(() => makeCharacter(
  49786. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  49787. {
  49788. front: {
  49789. height: math.unit(10 + 6/12, "feet"),
  49790. weight: math.unit(1.3, "tons"),
  49791. name: "Front",
  49792. image: {
  49793. source: "./media/characters/mr-graves/front.svg",
  49794. extra: 1779/1695,
  49795. bottom: 198/1977
  49796. }
  49797. },
  49798. },
  49799. [
  49800. {
  49801. name: "Normal",
  49802. height: math.unit(10 + 6 /12, "feet"),
  49803. default: true
  49804. },
  49805. ]
  49806. ))
  49807. characterMakers.push(() => makeCharacter(
  49808. { name: "Jess", species: ["human"], tags: ["anthro"] },
  49809. {
  49810. dressedFront: {
  49811. height: math.unit(5 + 8/12, "feet"),
  49812. weight: math.unit(125, "lb"),
  49813. name: "Dressed (Front)",
  49814. image: {
  49815. source: "./media/characters/jess/dressed-front.svg",
  49816. extra: 1176/1152,
  49817. bottom: 42/1218
  49818. }
  49819. },
  49820. dressedSide: {
  49821. height: math.unit(5 + 8/12, "feet"),
  49822. weight: math.unit(125, "lb"),
  49823. name: "Dressed (Side)",
  49824. image: {
  49825. source: "./media/characters/jess/dressed-side.svg",
  49826. extra: 1204/1190,
  49827. bottom: 6/1210
  49828. }
  49829. },
  49830. nudeFront: {
  49831. height: math.unit(5 + 8/12, "feet"),
  49832. weight: math.unit(125, "lb"),
  49833. name: "Nude (Front)",
  49834. image: {
  49835. source: "./media/characters/jess/nude-front.svg",
  49836. extra: 1176/1152,
  49837. bottom: 42/1218
  49838. }
  49839. },
  49840. nudeSide: {
  49841. height: math.unit(5 + 8/12, "feet"),
  49842. weight: math.unit(125, "lb"),
  49843. name: "Nude (Side)",
  49844. image: {
  49845. source: "./media/characters/jess/nude-side.svg",
  49846. extra: 1204/1190,
  49847. bottom: 6/1210
  49848. }
  49849. },
  49850. organsFront: {
  49851. height: math.unit(2.83799342105, "feet"),
  49852. name: "Organs (Front)",
  49853. image: {
  49854. source: "./media/characters/jess/organs-front.svg"
  49855. }
  49856. },
  49857. organsSide: {
  49858. height: math.unit(2.64225290474, "feet"),
  49859. name: "Organs (Side)",
  49860. image: {
  49861. source: "./media/characters/jess/organs-side.svg"
  49862. }
  49863. },
  49864. digestiveTractFront: {
  49865. height: math.unit(2.8106580871, "feet"),
  49866. name: "Digestive Tract (Front)",
  49867. image: {
  49868. source: "./media/characters/jess/digestive-tract-front.svg"
  49869. }
  49870. },
  49871. digestiveTractSide: {
  49872. height: math.unit(2.54365045014, "feet"),
  49873. name: "Digestive Tract (Side)",
  49874. image: {
  49875. source: "./media/characters/jess/digestive-tract-side.svg"
  49876. }
  49877. },
  49878. respiratorySystemFront: {
  49879. height: math.unit(1.11196233456, "feet"),
  49880. name: "Respiratory System (Front)",
  49881. image: {
  49882. source: "./media/characters/jess/respiratory-system-front.svg"
  49883. }
  49884. },
  49885. respiratorySystemSide: {
  49886. height: math.unit(0.89327966297, "feet"),
  49887. name: "Respiratory System (Side)",
  49888. image: {
  49889. source: "./media/characters/jess/respiratory-system-side.svg"
  49890. }
  49891. },
  49892. urinaryTractFront: {
  49893. height: math.unit(1.16126356186, "feet"),
  49894. name: "Urinary Tract (Front)",
  49895. image: {
  49896. source: "./media/characters/jess/urinary-tract-front.svg"
  49897. }
  49898. },
  49899. urinaryTractSide: {
  49900. height: math.unit(1.20910039627, "feet"),
  49901. name: "Urinary Tract (Side)",
  49902. image: {
  49903. source: "./media/characters/jess/urinary-tract-side.svg"
  49904. }
  49905. },
  49906. reproductiveOrgansFront: {
  49907. height: math.unit(0.48422591566, "feet"),
  49908. name: "Reproductive Organs (Front)",
  49909. image: {
  49910. source: "./media/characters/jess/reproductive-organs-front.svg"
  49911. }
  49912. },
  49913. reproductiveOrgansSide: {
  49914. height: math.unit(0.61553314481, "feet"),
  49915. name: "Reproductive Organs (Side)",
  49916. image: {
  49917. source: "./media/characters/jess/reproductive-organs-side.svg"
  49918. }
  49919. },
  49920. breastsFront: {
  49921. height: math.unit(0.47690395121, "feet"),
  49922. name: "Breasts (Front)",
  49923. image: {
  49924. source: "./media/characters/jess/breasts-front.svg"
  49925. }
  49926. },
  49927. breastsSide: {
  49928. height: math.unit(0.30556998307, "feet"),
  49929. name: "Breasts (Side)",
  49930. image: {
  49931. source: "./media/characters/jess/breasts-side.svg"
  49932. }
  49933. },
  49934. heartFront: {
  49935. height: math.unit(0.53011022622, "feet"),
  49936. name: "Heart (Front)",
  49937. image: {
  49938. source: "./media/characters/jess/heart-front.svg"
  49939. }
  49940. },
  49941. heartSide: {
  49942. height: math.unit(0.51790695213, "feet"),
  49943. name: "Heart (Side)",
  49944. image: {
  49945. source: "./media/characters/jess/heart-side.svg"
  49946. }
  49947. },
  49948. earsAndNoseFront: {
  49949. height: math.unit(0.29385483995, "feet"),
  49950. name: "Ears and Nose (Front)",
  49951. image: {
  49952. source: "./media/characters/jess/ears-and-nose-front.svg"
  49953. }
  49954. },
  49955. earsAndNoseSide: {
  49956. height: math.unit(0.18109658741, "feet"),
  49957. name: "Ears and Nose (Side)",
  49958. image: {
  49959. source: "./media/characters/jess/ears-and-nose-side.svg"
  49960. }
  49961. },
  49962. },
  49963. [
  49964. {
  49965. name: "Normal",
  49966. height: math.unit(5 + 8/12, "feet"),
  49967. default: true
  49968. },
  49969. ]
  49970. ))
  49971. characterMakers.push(() => makeCharacter(
  49972. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  49973. {
  49974. front: {
  49975. height: math.unit(6, "feet"),
  49976. weight: math.unit(6.64467e-7, "grams"),
  49977. name: "Front",
  49978. image: {
  49979. source: "./media/characters/wimpering/front.svg",
  49980. extra: 597/587,
  49981. bottom: 34/631
  49982. }
  49983. },
  49984. },
  49985. [
  49986. {
  49987. name: "Micro",
  49988. height: math.unit(0.4, "mm"),
  49989. default: true
  49990. },
  49991. ]
  49992. ))
  49993. characterMakers.push(() => makeCharacter(
  49994. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  49995. {
  49996. front: {
  49997. height: math.unit(5 + 2/12, "feet"),
  49998. weight: math.unit(110, "lb"),
  49999. name: "Front",
  50000. image: {
  50001. source: "./media/characters/keltre/front.svg",
  50002. extra: 1099/1057,
  50003. bottom: 22/1121
  50004. }
  50005. },
  50006. back: {
  50007. height: math.unit(5 + 2/12, "feet"),
  50008. weight: math.unit(110, "lb"),
  50009. name: "Back",
  50010. image: {
  50011. source: "./media/characters/keltre/back.svg",
  50012. extra: 1095/1053,
  50013. bottom: 17/1112
  50014. }
  50015. },
  50016. dressed: {
  50017. height: math.unit(5 + 2/12, "feet"),
  50018. weight: math.unit(110, "lb"),
  50019. name: "Dressed",
  50020. image: {
  50021. source: "./media/characters/keltre/dressed.svg",
  50022. extra: 1099/1057,
  50023. bottom: 22/1121
  50024. }
  50025. },
  50026. winter: {
  50027. height: math.unit(5 + 2/12, "feet"),
  50028. weight: math.unit(110, "lb"),
  50029. name: "Winter",
  50030. image: {
  50031. source: "./media/characters/keltre/winter.svg",
  50032. extra: 1099/1057,
  50033. bottom: 22/1121
  50034. }
  50035. },
  50036. head: {
  50037. height: math.unit(1.61 * 0.86, "feet"),
  50038. name: "Head",
  50039. image: {
  50040. source: "./media/characters/keltre/head.svg",
  50041. extra: 534/421,
  50042. bottom: 0/534
  50043. }
  50044. },
  50045. hand: {
  50046. height: math.unit(1.3 * 0.86, "feet"),
  50047. name: "Hand",
  50048. image: {
  50049. source: "./media/characters/keltre/hand.svg"
  50050. }
  50051. },
  50052. foot: {
  50053. height: math.unit(1.8 * 0.86, "feet"),
  50054. name: "Foot",
  50055. image: {
  50056. source: "./media/characters/keltre/foot.svg"
  50057. }
  50058. },
  50059. },
  50060. [
  50061. {
  50062. name: "Fine",
  50063. height: math.unit(1, "inch")
  50064. },
  50065. {
  50066. name: "Dimnutive",
  50067. height: math.unit(4, "inches")
  50068. },
  50069. {
  50070. name: "Tiny",
  50071. height: math.unit(1, "foot")
  50072. },
  50073. {
  50074. name: "Small",
  50075. height: math.unit(3, "feet")
  50076. },
  50077. {
  50078. name: "Normal",
  50079. height: math.unit(5 + 2/12, "feet"),
  50080. default: true
  50081. },
  50082. ]
  50083. ))
  50084. characterMakers.push(() => makeCharacter(
  50085. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  50086. {
  50087. front: {
  50088. height: math.unit(6 + 2/12, "feet"),
  50089. name: "Front",
  50090. image: {
  50091. source: "./media/characters/nox/front.svg",
  50092. extra: 1917/1830,
  50093. bottom: 74/1991
  50094. }
  50095. },
  50096. back: {
  50097. height: math.unit(6 + 2/12, "feet"),
  50098. name: "Back",
  50099. image: {
  50100. source: "./media/characters/nox/back.svg",
  50101. extra: 1896/1815,
  50102. bottom: 21/1917
  50103. }
  50104. },
  50105. head: {
  50106. height: math.unit(1.1, "feet"),
  50107. name: "Head",
  50108. image: {
  50109. source: "./media/characters/nox/head.svg",
  50110. extra: 874/704,
  50111. bottom: 0/874
  50112. }
  50113. },
  50114. tattoo: {
  50115. height: math.unit(0.729, "feet"),
  50116. name: "Tattoo",
  50117. image: {
  50118. source: "./media/characters/nox/tattoo.svg"
  50119. }
  50120. },
  50121. },
  50122. [
  50123. {
  50124. name: "Normal",
  50125. height: math.unit(6 + 2/12, "feet")
  50126. },
  50127. {
  50128. name: "Gigamacro",
  50129. height: math.unit(2, "earths"),
  50130. default: true
  50131. },
  50132. {
  50133. name: "Cosmic",
  50134. height: math.unit(867, "yottameters")
  50135. },
  50136. ]
  50137. ))
  50138. characterMakers.push(() => makeCharacter(
  50139. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  50140. {
  50141. front: {
  50142. height: math.unit(6, "feet"),
  50143. weight: math.unit(150, "lb"),
  50144. name: "Front",
  50145. image: {
  50146. source: "./media/characters/caspian/front.svg",
  50147. extra: 1443/1359,
  50148. bottom: 0/1443
  50149. }
  50150. },
  50151. back: {
  50152. height: math.unit(6, "feet"),
  50153. weight: math.unit(150, "lb"),
  50154. name: "Back",
  50155. image: {
  50156. source: "./media/characters/caspian/back.svg",
  50157. extra: 1379/1309,
  50158. bottom: 0/1379
  50159. }
  50160. },
  50161. head: {
  50162. height: math.unit(0.9, "feet"),
  50163. name: "Head",
  50164. image: {
  50165. source: "./media/characters/caspian/head.svg",
  50166. extra: 692/492,
  50167. bottom: 0/692
  50168. }
  50169. },
  50170. headAlt: {
  50171. height: math.unit(0.95, "feet"),
  50172. name: "Head (Alt)",
  50173. image: {
  50174. source: "./media/characters/caspian/head-alt.svg",
  50175. extra: 668/508,
  50176. bottom: 0/668
  50177. }
  50178. },
  50179. hand: {
  50180. height: math.unit(0.8, "feet"),
  50181. name: "Hand",
  50182. image: {
  50183. source: "./media/characters/caspian/hand.svg"
  50184. }
  50185. },
  50186. paw: {
  50187. height: math.unit(0.95, "feet"),
  50188. name: "Paw",
  50189. image: {
  50190. source: "./media/characters/caspian/paw.svg"
  50191. }
  50192. },
  50193. },
  50194. [
  50195. {
  50196. name: "Normal",
  50197. height: math.unit(162, "feet"),
  50198. default: true
  50199. },
  50200. ]
  50201. ))
  50202. characterMakers.push(() => makeCharacter(
  50203. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  50204. {
  50205. front: {
  50206. height: math.unit(6, "feet"),
  50207. name: "Front",
  50208. image: {
  50209. source: "./media/characters/myra-aisling/front.svg",
  50210. extra: 1268/1166,
  50211. bottom: 73/1341
  50212. }
  50213. },
  50214. back: {
  50215. height: math.unit(6, "feet"),
  50216. name: "Back",
  50217. image: {
  50218. source: "./media/characters/myra-aisling/back.svg",
  50219. extra: 1249/1149,
  50220. bottom: 79/1328
  50221. }
  50222. },
  50223. dressed: {
  50224. height: math.unit(6, "feet"),
  50225. name: "Dressed",
  50226. image: {
  50227. source: "./media/characters/myra-aisling/dressed.svg",
  50228. extra: 1290/1189,
  50229. bottom: 47/1337
  50230. }
  50231. },
  50232. hand: {
  50233. height: math.unit(1.1, "feet"),
  50234. name: "Hand",
  50235. image: {
  50236. source: "./media/characters/myra-aisling/hand.svg"
  50237. }
  50238. },
  50239. paw: {
  50240. height: math.unit(1.23, "feet"),
  50241. name: "Paw",
  50242. image: {
  50243. source: "./media/characters/myra-aisling/paw.svg"
  50244. }
  50245. },
  50246. },
  50247. [
  50248. {
  50249. name: "Normal",
  50250. height: math.unit(160, "feet"),
  50251. default: true
  50252. },
  50253. ]
  50254. ))
  50255. characterMakers.push(() => makeCharacter(
  50256. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  50257. {
  50258. front: {
  50259. height: math.unit(6, "feet"),
  50260. name: "Front",
  50261. image: {
  50262. source: "./media/characters/tenley-sidero/front.svg",
  50263. extra: 1365/1276,
  50264. bottom: 47/1412
  50265. }
  50266. },
  50267. back: {
  50268. height: math.unit(6, "feet"),
  50269. name: "Back",
  50270. image: {
  50271. source: "./media/characters/tenley-sidero/back.svg",
  50272. extra: 1383/1283,
  50273. bottom: 35/1418
  50274. }
  50275. },
  50276. dressed: {
  50277. height: math.unit(6, "feet"),
  50278. name: "Dressed",
  50279. image: {
  50280. source: "./media/characters/tenley-sidero/dressed.svg",
  50281. extra: 1364/1275,
  50282. bottom: 42/1406
  50283. }
  50284. },
  50285. head: {
  50286. height: math.unit(1.47, "feet"),
  50287. name: "Head",
  50288. image: {
  50289. source: "./media/characters/tenley-sidero/head.svg",
  50290. extra: 610/490,
  50291. bottom: 0/610
  50292. }
  50293. },
  50294. },
  50295. [
  50296. {
  50297. name: "Normal",
  50298. height: math.unit(154, "feet"),
  50299. default: true
  50300. },
  50301. ]
  50302. ))
  50303. characterMakers.push(() => makeCharacter(
  50304. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  50305. {
  50306. front: {
  50307. height: math.unit(5, "inches"),
  50308. name: "Front",
  50309. image: {
  50310. source: "./media/characters/mallory/front.svg",
  50311. extra: 1919/1678,
  50312. bottom: 29/1948
  50313. }
  50314. },
  50315. hand: {
  50316. height: math.unit(0.73, "inches"),
  50317. name: "Hand",
  50318. image: {
  50319. source: "./media/characters/mallory/hand.svg"
  50320. }
  50321. },
  50322. paw: {
  50323. height: math.unit(0.68, "inches"),
  50324. name: "Paw",
  50325. image: {
  50326. source: "./media/characters/mallory/paw.svg"
  50327. }
  50328. },
  50329. },
  50330. [
  50331. {
  50332. name: "Small",
  50333. height: math.unit(5, "inches"),
  50334. default: true
  50335. },
  50336. ]
  50337. ))
  50338. characterMakers.push(() => makeCharacter(
  50339. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  50340. {
  50341. naked: {
  50342. height: math.unit(6, "feet"),
  50343. name: "Naked",
  50344. image: {
  50345. source: "./media/characters/mab/naked.svg",
  50346. extra: 1855/1757,
  50347. bottom: 208/2063
  50348. }
  50349. },
  50350. outside: {
  50351. height: math.unit(6, "feet"),
  50352. name: "Outside",
  50353. image: {
  50354. source: "./media/characters/mab/outside.svg",
  50355. extra: 1855/1757,
  50356. bottom: 208/2063
  50357. }
  50358. },
  50359. party: {
  50360. height: math.unit(6, "feet"),
  50361. name: "Party",
  50362. image: {
  50363. source: "./media/characters/mab/party.svg",
  50364. extra: 1855/1757,
  50365. bottom: 208/2063
  50366. }
  50367. },
  50368. },
  50369. [
  50370. {
  50371. name: "Normal",
  50372. height: math.unit(165, "feet"),
  50373. default: true
  50374. },
  50375. ]
  50376. ))
  50377. characterMakers.push(() => makeCharacter(
  50378. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  50379. {
  50380. feral: {
  50381. height: math.unit(12, "feet"),
  50382. weight: math.unit(20000, "lb"),
  50383. name: "Side",
  50384. image: {
  50385. source: "./media/characters/winter/feral.svg",
  50386. extra: 1286/943,
  50387. bottom: 112/1398
  50388. },
  50389. form: "feral",
  50390. default: true
  50391. },
  50392. feralNsfw: {
  50393. height: math.unit(12, "feet"),
  50394. weight: math.unit(20000, "lb"),
  50395. name: "Side (NSFW)",
  50396. image: {
  50397. source: "./media/characters/winter/feral-nsfw.svg",
  50398. extra: 1286/943,
  50399. bottom: 112/1398
  50400. },
  50401. form: "feral"
  50402. },
  50403. dick: {
  50404. height: math.unit(3.79, "feet"),
  50405. name: "Dick",
  50406. image: {
  50407. source: "./media/characters/winter/dick.svg"
  50408. },
  50409. form: "feral"
  50410. },
  50411. anthro: {
  50412. height: math.unit(12, "feet"),
  50413. weight: math.unit(10, "tons"),
  50414. name: "Anthro",
  50415. image: {
  50416. source: "./media/characters/winter/anthro.svg",
  50417. extra: 1701/1553,
  50418. bottom: 64/1765
  50419. },
  50420. form: "anthro",
  50421. default: true
  50422. },
  50423. },
  50424. [
  50425. {
  50426. name: "Big",
  50427. height: math.unit(12, "feet"),
  50428. default: true,
  50429. form: "feral"
  50430. },
  50431. {
  50432. name: "Big",
  50433. height: math.unit(12, "feet"),
  50434. default: true,
  50435. form: "anthro"
  50436. },
  50437. ],
  50438. {
  50439. "feral": {
  50440. name: "Feral",
  50441. default: true
  50442. },
  50443. "anthro": {
  50444. name: "Anthro"
  50445. }
  50446. }
  50447. ))
  50448. characterMakers.push(() => makeCharacter(
  50449. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  50450. {
  50451. front: {
  50452. height: math.unit(4.1, "inches"),
  50453. name: "Front",
  50454. image: {
  50455. source: "./media/characters/alto/front.svg",
  50456. extra: 736/627,
  50457. bottom: 90/826
  50458. }
  50459. },
  50460. },
  50461. [
  50462. {
  50463. name: "Normal",
  50464. height: math.unit(4.1, "inches"),
  50465. default: true
  50466. },
  50467. ]
  50468. ))
  50469. characterMakers.push(() => makeCharacter(
  50470. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  50471. {
  50472. sitting: {
  50473. height: math.unit(3, "feet"),
  50474. name: "Sitting",
  50475. image: {
  50476. source: "./media/characters/ratstrid-v/sitting.svg",
  50477. extra: 355/310,
  50478. bottom: 136/491
  50479. }
  50480. },
  50481. },
  50482. [
  50483. {
  50484. name: "Normal",
  50485. height: math.unit(3, "feet"),
  50486. default: true
  50487. },
  50488. ]
  50489. ))
  50490. characterMakers.push(() => makeCharacter(
  50491. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  50492. {
  50493. back: {
  50494. height: math.unit(6, "feet"),
  50495. weight: math.unit(450, "lb"),
  50496. name: "Back",
  50497. image: {
  50498. source: "./media/characters/siz/back.svg",
  50499. extra: 1449/1274,
  50500. bottom: 13/1462
  50501. }
  50502. },
  50503. },
  50504. [
  50505. {
  50506. name: "Smallest",
  50507. height: math.unit(18 + 3/12, "feet")
  50508. },
  50509. {
  50510. name: "Modest",
  50511. height: math.unit(56 + 8/12, "feet"),
  50512. default: true
  50513. },
  50514. {
  50515. name: "Largest",
  50516. height: math.unit(3590, "feet")
  50517. },
  50518. ]
  50519. ))
  50520. characterMakers.push(() => makeCharacter(
  50521. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  50522. {
  50523. front: {
  50524. height: math.unit(5 + 9/12, "feet"),
  50525. weight: math.unit(150, "lb"),
  50526. name: "Front",
  50527. image: {
  50528. source: "./media/characters/ven/front.svg",
  50529. extra: 1372/1320,
  50530. bottom: 73/1445
  50531. }
  50532. },
  50533. side: {
  50534. height: math.unit(5 + 9/12, "feet"),
  50535. weight: math.unit(1150, "lb"),
  50536. name: "Side",
  50537. image: {
  50538. source: "./media/characters/ven/side.svg",
  50539. extra: 1119/1070,
  50540. bottom: 42/1161
  50541. },
  50542. default: true
  50543. },
  50544. },
  50545. [
  50546. {
  50547. name: "Normal",
  50548. height: math.unit(5 + 9/12, "feet"),
  50549. default: true
  50550. },
  50551. ]
  50552. ))
  50553. characterMakers.push(() => makeCharacter(
  50554. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  50555. {
  50556. front: {
  50557. height: math.unit(12, "feet"),
  50558. weight: math.unit(1000, "kg"),
  50559. name: "Front",
  50560. image: {
  50561. source: "./media/characters/maple/front.svg",
  50562. extra: 1193/1081,
  50563. bottom: 22/1215
  50564. }
  50565. },
  50566. },
  50567. [
  50568. {
  50569. name: "Compressed",
  50570. height: math.unit(7, "feet")
  50571. },
  50572. {
  50573. name: "Normal",
  50574. height: math.unit(12, "feet"),
  50575. default: true
  50576. },
  50577. ]
  50578. ))
  50579. characterMakers.push(() => makeCharacter(
  50580. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  50581. {
  50582. front: {
  50583. height: math.unit(9, "feet"),
  50584. weight: math.unit(1500, "lb"),
  50585. name: "Front",
  50586. image: {
  50587. source: "./media/characters/nora/front.svg",
  50588. extra: 1348/1286,
  50589. bottom: 218/1566
  50590. }
  50591. },
  50592. erect: {
  50593. height: math.unit(9, "feet"),
  50594. weight: math.unit(11500, "lb"),
  50595. name: "Erect",
  50596. image: {
  50597. source: "./media/characters/nora/erect.svg",
  50598. extra: 1488/1433,
  50599. bottom: 133/1621
  50600. }
  50601. },
  50602. },
  50603. [
  50604. {
  50605. name: "Normal",
  50606. height: math.unit(9, "feet"),
  50607. default: true
  50608. },
  50609. ]
  50610. ))
  50611. characterMakers.push(() => makeCharacter(
  50612. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  50613. {
  50614. front: {
  50615. height: math.unit(25, "feet"),
  50616. weight: math.unit(27500, "lb"),
  50617. name: "Front",
  50618. image: {
  50619. source: "./media/characters/north-caudin/front.svg",
  50620. extra: 1184/1082,
  50621. bottom: 23/1207
  50622. }
  50623. },
  50624. },
  50625. [
  50626. {
  50627. name: "Compressed",
  50628. height: math.unit(10, "feet")
  50629. },
  50630. {
  50631. name: "Normal",
  50632. height: math.unit(25, "feet"),
  50633. default: true
  50634. },
  50635. ]
  50636. ))
  50637. characterMakers.push(() => makeCharacter(
  50638. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  50639. {
  50640. front: {
  50641. height: math.unit(9, "feet"),
  50642. weight: math.unit(1250, "lb"),
  50643. name: "Front",
  50644. image: {
  50645. source: "./media/characters/merrian/front.svg",
  50646. extra: 2393/2304,
  50647. bottom: 40/2433
  50648. }
  50649. },
  50650. },
  50651. [
  50652. {
  50653. name: "Normal",
  50654. height: math.unit(9, "feet"),
  50655. default: true
  50656. },
  50657. ]
  50658. ))
  50659. characterMakers.push(() => makeCharacter(
  50660. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  50661. {
  50662. front: {
  50663. height: math.unit(9, "feet"),
  50664. weight: math.unit(1000, "lb"),
  50665. name: "Front",
  50666. image: {
  50667. source: "./media/characters/hazel/front.svg",
  50668. extra: 2351/2298,
  50669. bottom: 38/2389
  50670. }
  50671. },
  50672. },
  50673. [
  50674. {
  50675. name: "Normal",
  50676. height: math.unit(9, "feet"),
  50677. default: true
  50678. },
  50679. ]
  50680. ))
  50681. characterMakers.push(() => makeCharacter(
  50682. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  50683. {
  50684. front: {
  50685. height: math.unit(13, "feet"),
  50686. weight: math.unit(3200, "lb"),
  50687. name: "Front",
  50688. image: {
  50689. source: "./media/characters/emma/front.svg",
  50690. extra: 2263/2029,
  50691. bottom: 68/2331
  50692. }
  50693. },
  50694. },
  50695. [
  50696. {
  50697. name: "Normal",
  50698. height: math.unit(13, "feet"),
  50699. default: true
  50700. },
  50701. ]
  50702. ))
  50703. characterMakers.push(() => makeCharacter(
  50704. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  50705. {
  50706. front: {
  50707. height: math.unit(11 + 9/12, "feet"),
  50708. weight: math.unit(2500, "lb"),
  50709. name: "Front",
  50710. image: {
  50711. source: "./media/characters/ilumina/front.svg",
  50712. extra: 2248/2209,
  50713. bottom: 164/2412
  50714. }
  50715. },
  50716. },
  50717. [
  50718. {
  50719. name: "Normal",
  50720. height: math.unit(11 + 9/12, "feet"),
  50721. default: true
  50722. },
  50723. ]
  50724. ))
  50725. characterMakers.push(() => makeCharacter(
  50726. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  50727. {
  50728. front: {
  50729. height: math.unit(8 + 10/12, "feet"),
  50730. weight: math.unit(1350, "lb"),
  50731. name: "Front",
  50732. image: {
  50733. source: "./media/characters/moonshine/front.svg",
  50734. extra: 2395/2288,
  50735. bottom: 40/2435
  50736. }
  50737. },
  50738. },
  50739. [
  50740. {
  50741. name: "Normal",
  50742. height: math.unit(8 + 10/12, "feet"),
  50743. default: true
  50744. },
  50745. ]
  50746. ))
  50747. characterMakers.push(() => makeCharacter(
  50748. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  50749. {
  50750. front: {
  50751. height: math.unit(14, "feet"),
  50752. weight: math.unit(3400, "lb"),
  50753. name: "Front",
  50754. image: {
  50755. source: "./media/characters/aletia/front.svg",
  50756. extra: 1185/1052,
  50757. bottom: 21/1206
  50758. }
  50759. },
  50760. },
  50761. [
  50762. {
  50763. name: "Compressed",
  50764. height: math.unit(8, "feet")
  50765. },
  50766. {
  50767. name: "Normal",
  50768. height: math.unit(14, "feet"),
  50769. default: true
  50770. },
  50771. ]
  50772. ))
  50773. characterMakers.push(() => makeCharacter(
  50774. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  50775. {
  50776. front: {
  50777. height: math.unit(17, "feet"),
  50778. weight: math.unit(6500, "lb"),
  50779. name: "Front",
  50780. image: {
  50781. source: "./media/characters/deidra/front.svg",
  50782. extra: 1201/1081,
  50783. bottom: 16/1217
  50784. }
  50785. },
  50786. },
  50787. [
  50788. {
  50789. name: "Compressed",
  50790. height: math.unit(9 + 6/12, "feet")
  50791. },
  50792. {
  50793. name: "Normal",
  50794. height: math.unit(17, "feet"),
  50795. default: true
  50796. },
  50797. ]
  50798. ))
  50799. characterMakers.push(() => makeCharacter(
  50800. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  50801. {
  50802. front: {
  50803. height: math.unit(7 + 4/12, "feet"),
  50804. weight: math.unit(280, "lb"),
  50805. name: "Front",
  50806. image: {
  50807. source: "./media/characters/freki-yrmori/front.svg",
  50808. extra: 1286/1182,
  50809. bottom: 29/1315
  50810. }
  50811. },
  50812. maw: {
  50813. height: math.unit(0.9, "feet"),
  50814. name: "Maw",
  50815. image: {
  50816. source: "./media/characters/freki-yrmori/maw.svg"
  50817. }
  50818. },
  50819. },
  50820. [
  50821. {
  50822. name: "Normal",
  50823. height: math.unit(7 + 4/12, "feet"),
  50824. default: true
  50825. },
  50826. {
  50827. name: "Macro",
  50828. height: math.unit(38.5, "meters")
  50829. },
  50830. ]
  50831. ))
  50832. characterMakers.push(() => makeCharacter(
  50833. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  50834. {
  50835. side: {
  50836. height: math.unit(47.2, "meters"),
  50837. weight: math.unit(10000, "tons"),
  50838. name: "Side",
  50839. image: {
  50840. source: "./media/characters/aetherios/side.svg",
  50841. extra: 2363/642,
  50842. bottom: 221/2584
  50843. }
  50844. },
  50845. top: {
  50846. height: math.unit(240, "meters"),
  50847. weight: math.unit(10000, "tons"),
  50848. name: "Top",
  50849. image: {
  50850. source: "./media/characters/aetherios/top.svg"
  50851. }
  50852. },
  50853. bottom: {
  50854. height: math.unit(240, "meters"),
  50855. weight: math.unit(10000, "tons"),
  50856. name: "Bottom",
  50857. image: {
  50858. source: "./media/characters/aetherios/bottom.svg"
  50859. }
  50860. },
  50861. head: {
  50862. height: math.unit(38.6, "meters"),
  50863. name: "Head",
  50864. image: {
  50865. source: "./media/characters/aetherios/head.svg",
  50866. extra: 1335/1112,
  50867. bottom: 0/1335
  50868. }
  50869. },
  50870. front: {
  50871. height: math.unit(29, "meters"),
  50872. name: "Front",
  50873. image: {
  50874. source: "./media/characters/aetherios/front.svg",
  50875. extra: 1266/953,
  50876. bottom: 158/1424
  50877. }
  50878. },
  50879. maw: {
  50880. height: math.unit(16.37, "meters"),
  50881. name: "Maw",
  50882. image: {
  50883. source: "./media/characters/aetherios/maw.svg",
  50884. extra: 748/637,
  50885. bottom: 0/748
  50886. },
  50887. extraAttributes: {
  50888. preyCapacity: {
  50889. name: "Capacity",
  50890. power: 3,
  50891. type: "volume",
  50892. base: math.unit(1000, "people")
  50893. },
  50894. tongueSize: {
  50895. name: "Tongue Size",
  50896. power: 2,
  50897. type: "area",
  50898. base: math.unit(21, "m^2")
  50899. }
  50900. }
  50901. },
  50902. forepaw: {
  50903. height: math.unit(18, "meters"),
  50904. name: "Forepaw",
  50905. image: {
  50906. source: "./media/characters/aetherios/forepaw.svg"
  50907. }
  50908. },
  50909. hindpaw: {
  50910. height: math.unit(23, "meters"),
  50911. name: "Hindpaw",
  50912. image: {
  50913. source: "./media/characters/aetherios/hindpaw.svg"
  50914. }
  50915. },
  50916. genitals: {
  50917. height: math.unit(42, "meters"),
  50918. name: "Genitals",
  50919. image: {
  50920. source: "./media/characters/aetherios/genitals.svg"
  50921. }
  50922. },
  50923. },
  50924. [
  50925. {
  50926. name: "Normal",
  50927. height: math.unit(47.2, "meters"),
  50928. default: true
  50929. },
  50930. {
  50931. name: "Macro",
  50932. height: math.unit(160, "meters")
  50933. },
  50934. {
  50935. name: "Mega",
  50936. height: math.unit(1.87, "km")
  50937. },
  50938. {
  50939. name: "Giga",
  50940. height: math.unit(40000, "km")
  50941. },
  50942. {
  50943. name: "Stellar",
  50944. height: math.unit(158000000, "km")
  50945. },
  50946. {
  50947. name: "Cosmic",
  50948. height: math.unit(9.46e12, "km")
  50949. },
  50950. ]
  50951. ))
  50952. characterMakers.push(() => makeCharacter(
  50953. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  50954. {
  50955. front: {
  50956. height: math.unit(5 + 4/12, "feet"),
  50957. weight: math.unit(80, "lb"),
  50958. name: "Front",
  50959. image: {
  50960. source: "./media/characters/mizu-gieeg/front.svg",
  50961. extra: 850/709,
  50962. bottom: 52/902
  50963. }
  50964. },
  50965. back: {
  50966. height: math.unit(5 + 4/12, "feet"),
  50967. weight: math.unit(80, "lb"),
  50968. name: "Back",
  50969. image: {
  50970. source: "./media/characters/mizu-gieeg/back.svg",
  50971. extra: 882/745,
  50972. bottom: 25/907
  50973. }
  50974. },
  50975. },
  50976. [
  50977. {
  50978. name: "Normal",
  50979. height: math.unit(5 + 4/12, "feet"),
  50980. default: true
  50981. },
  50982. ]
  50983. ))
  50984. characterMakers.push(() => makeCharacter(
  50985. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  50986. {
  50987. front: {
  50988. height: math.unit(6, "feet"),
  50989. name: "Front",
  50990. image: {
  50991. source: "./media/characters/roselle-st-papier/front.svg",
  50992. extra: 1430/1280,
  50993. bottom: 37/1467
  50994. }
  50995. },
  50996. back: {
  50997. height: math.unit(6, "feet"),
  50998. name: "Back",
  50999. image: {
  51000. source: "./media/characters/roselle-st-papier/back.svg",
  51001. extra: 1491/1296,
  51002. bottom: 23/1514
  51003. }
  51004. },
  51005. ear: {
  51006. height: math.unit(1.26, "feet"),
  51007. name: "Ear",
  51008. image: {
  51009. source: "./media/characters/roselle-st-papier/ear.svg"
  51010. }
  51011. },
  51012. },
  51013. [
  51014. {
  51015. name: "Normal",
  51016. height: math.unit(150, "feet"),
  51017. default: true
  51018. },
  51019. ]
  51020. ))
  51021. characterMakers.push(() => makeCharacter(
  51022. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  51023. {
  51024. front: {
  51025. height: math.unit(1, "inches"),
  51026. name: "Front",
  51027. image: {
  51028. source: "./media/characters/valargent/front.svg",
  51029. extra: 1825/1694,
  51030. bottom: 62/1887
  51031. }
  51032. },
  51033. back: {
  51034. height: math.unit(1, "inches"),
  51035. name: "Back",
  51036. image: {
  51037. source: "./media/characters/valargent/back.svg",
  51038. extra: 1775/1682,
  51039. bottom: 88/1863
  51040. }
  51041. },
  51042. },
  51043. [
  51044. {
  51045. name: "Micro",
  51046. height: math.unit(1, "inch"),
  51047. default: true
  51048. },
  51049. ]
  51050. ))
  51051. characterMakers.push(() => makeCharacter(
  51052. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  51053. {
  51054. front: {
  51055. height: math.unit(3.4, "meters"),
  51056. name: "Front",
  51057. image: {
  51058. source: "./media/characters/zarina/front.svg",
  51059. extra: 1733/1425,
  51060. bottom: 93/1826
  51061. }
  51062. },
  51063. squatting: {
  51064. height: math.unit(2.14, "meters"),
  51065. name: "Squatting",
  51066. image: {
  51067. source: "./media/characters/zarina/squatting.svg",
  51068. extra: 1073/788,
  51069. bottom: 63/1136
  51070. }
  51071. },
  51072. back: {
  51073. height: math.unit(2.14, "meters"),
  51074. name: "Back",
  51075. image: {
  51076. source: "./media/characters/zarina/back.svg",
  51077. extra: 1128/885,
  51078. bottom: 0/1128
  51079. }
  51080. },
  51081. },
  51082. [
  51083. {
  51084. name: "Normal",
  51085. height: math.unit(3.4, "meters"),
  51086. default: true
  51087. },
  51088. {
  51089. name: "Big",
  51090. height: math.unit(5, "meters")
  51091. },
  51092. {
  51093. name: "Macro",
  51094. height: math.unit(110, "meters")
  51095. },
  51096. ]
  51097. ))
  51098. characterMakers.push(() => makeCharacter(
  51099. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  51100. {
  51101. front: {
  51102. height: math.unit(7, "feet"),
  51103. name: "Front",
  51104. image: {
  51105. source: "./media/characters/ventus-astro-fox/front.svg",
  51106. extra: 1792/1623,
  51107. bottom: 28/1820
  51108. }
  51109. },
  51110. back: {
  51111. height: math.unit(7, "feet"),
  51112. name: "Back",
  51113. image: {
  51114. source: "./media/characters/ventus-astro-fox/back.svg",
  51115. extra: 1789/1620,
  51116. bottom: 31/1820
  51117. }
  51118. },
  51119. outfit: {
  51120. height: math.unit(7, "feet"),
  51121. name: "Outfit",
  51122. image: {
  51123. source: "./media/characters/ventus-astro-fox/outfit.svg",
  51124. extra: 1054/925,
  51125. bottom: 15/1069
  51126. }
  51127. },
  51128. head: {
  51129. height: math.unit(1.12, "feet"),
  51130. name: "Head",
  51131. image: {
  51132. source: "./media/characters/ventus-astro-fox/head.svg",
  51133. extra: 866/504,
  51134. bottom: 0/866
  51135. }
  51136. },
  51137. hand: {
  51138. height: math.unit(1, "feet"),
  51139. name: "Hand",
  51140. image: {
  51141. source: "./media/characters/ventus-astro-fox/hand.svg"
  51142. }
  51143. },
  51144. paw: {
  51145. height: math.unit(1.5, "feet"),
  51146. name: "Paw",
  51147. image: {
  51148. source: "./media/characters/ventus-astro-fox/paw.svg"
  51149. }
  51150. },
  51151. },
  51152. [
  51153. {
  51154. name: "Normal",
  51155. height: math.unit(7, "feet"),
  51156. default: true
  51157. },
  51158. {
  51159. name: "Macro",
  51160. height: math.unit(200, "feet")
  51161. },
  51162. {
  51163. name: "Cosmic",
  51164. height: math.unit(3, "universes")
  51165. },
  51166. ]
  51167. ))
  51168. characterMakers.push(() => makeCharacter(
  51169. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  51170. {
  51171. front: {
  51172. height: math.unit(3, "meters"),
  51173. weight: math.unit(7000, "lb"),
  51174. name: "Front",
  51175. image: {
  51176. source: "./media/characters/core-t/front.svg",
  51177. extra: 5729/4941,
  51178. bottom: 1129/6858
  51179. }
  51180. },
  51181. },
  51182. [
  51183. {
  51184. name: "Big",
  51185. height: math.unit(3, "meters"),
  51186. default: true
  51187. },
  51188. ]
  51189. ))
  51190. characterMakers.push(() => makeCharacter(
  51191. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  51192. {
  51193. normal: {
  51194. height: math.unit(6 + 6/12, "feet"),
  51195. weight: math.unit(275, "lb"),
  51196. name: "Front",
  51197. image: {
  51198. source: "./media/characters/cadbunny/normal.svg",
  51199. extra: 1129/947,
  51200. bottom: 93/1222
  51201. },
  51202. default: true,
  51203. form: "normal"
  51204. },
  51205. gigantamax: {
  51206. height: math.unit(26, "feet"),
  51207. weight: math.unit(16000, "lb"),
  51208. name: "Front",
  51209. image: {
  51210. source: "./media/characters/cadbunny/gigantamax.svg",
  51211. extra: 1133/944,
  51212. bottom: 90/1223
  51213. },
  51214. default: true,
  51215. form: "gigantamax"
  51216. },
  51217. },
  51218. [
  51219. {
  51220. name: "Normal",
  51221. height: math.unit(6 + 6/12, "feet"),
  51222. default: true,
  51223. form: "normal"
  51224. },
  51225. {
  51226. name: "Small",
  51227. height: math.unit(26, "feet"),
  51228. default: true,
  51229. form: "gigantamax"
  51230. },
  51231. {
  51232. name: "Large",
  51233. height: math.unit(78, "feet"),
  51234. form: "gigantamax"
  51235. },
  51236. ],
  51237. {
  51238. "normal": {
  51239. name: "Normal",
  51240. default: true
  51241. },
  51242. "gigantamax": {
  51243. name: "Gigantamax"
  51244. }
  51245. }
  51246. ))
  51247. characterMakers.push(() => makeCharacter(
  51248. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  51249. {
  51250. anthroFront: {
  51251. height: math.unit(8, "feet"),
  51252. weight: math.unit(300, "lb"),
  51253. name: "Front",
  51254. image: {
  51255. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  51256. extra: 1272/1176,
  51257. bottom: 53/1325
  51258. },
  51259. form: "anthro",
  51260. default: true
  51261. },
  51262. feralSide: {
  51263. height: math.unit(4, "feet"),
  51264. weight: math.unit(250, "lb"),
  51265. name: "Side",
  51266. image: {
  51267. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  51268. extra: 731/621,
  51269. bottom: 0/731
  51270. },
  51271. form: "feral",
  51272. default: true
  51273. },
  51274. },
  51275. [
  51276. {
  51277. name: "Regular",
  51278. height: math.unit(8, "feet"),
  51279. form: "anthro"
  51280. },
  51281. {
  51282. name: "Macro",
  51283. height: math.unit(250, "feet"),
  51284. form: "anthro",
  51285. default: true
  51286. },
  51287. {
  51288. name: "Regular",
  51289. height: math.unit(4, "feet"),
  51290. form: "feral"
  51291. },
  51292. {
  51293. name: "Macro",
  51294. height: math.unit(125, "feet"),
  51295. form: "feral",
  51296. default: true
  51297. },
  51298. ],
  51299. {
  51300. "anthro": {
  51301. name: "Anthro",
  51302. default: true
  51303. },
  51304. "feral": {
  51305. name: "Feral",
  51306. },
  51307. }
  51308. ))
  51309. characterMakers.push(() => makeCharacter(
  51310. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  51311. {
  51312. front: {
  51313. height: math.unit(11 + 10/12, "feet"),
  51314. weight: math.unit(1587, "kg"),
  51315. name: "Front",
  51316. image: {
  51317. source: "./media/characters/maple-javira-dragon/front.svg",
  51318. extra: 1136/744,
  51319. bottom: 73/1209
  51320. }
  51321. },
  51322. side: {
  51323. height: math.unit(11 + 10/12, "feet"),
  51324. weight: math.unit(1587, "kg"),
  51325. name: "Side",
  51326. image: {
  51327. source: "./media/characters/maple-javira-dragon/side.svg",
  51328. extra: 712/505,
  51329. bottom: 17/729
  51330. }
  51331. },
  51332. head: {
  51333. height: math.unit(8.05, "feet"),
  51334. name: "Head",
  51335. image: {
  51336. source: "./media/characters/maple-javira-dragon/head.svg",
  51337. extra: 1420/1344,
  51338. bottom: 0/1420
  51339. }
  51340. },
  51341. },
  51342. [
  51343. {
  51344. name: "Normal",
  51345. height: math.unit(11 + 10/12, "feet"),
  51346. default: true
  51347. },
  51348. ]
  51349. ))
  51350. characterMakers.push(() => makeCharacter(
  51351. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  51352. {
  51353. front: {
  51354. height: math.unit(117, "cm"),
  51355. weight: math.unit(50, "kg"),
  51356. name: "Front",
  51357. image: {
  51358. source: "./media/characters/sonia-wyverntail/front.svg",
  51359. extra: 708/592,
  51360. bottom: 25/733
  51361. }
  51362. },
  51363. },
  51364. [
  51365. {
  51366. name: "Normal",
  51367. height: math.unit(117, "cm"),
  51368. default: true
  51369. },
  51370. ]
  51371. ))
  51372. characterMakers.push(() => makeCharacter(
  51373. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  51374. {
  51375. front: {
  51376. height: math.unit(6 + 5/12, "feet"),
  51377. name: "Front",
  51378. image: {
  51379. source: "./media/characters/micah/front.svg",
  51380. extra: 1758/1546,
  51381. bottom: 214/1972
  51382. }
  51383. },
  51384. },
  51385. [
  51386. {
  51387. name: "Normal",
  51388. height: math.unit(6 + 5/12, "feet"),
  51389. default: true
  51390. },
  51391. ]
  51392. ))
  51393. characterMakers.push(() => makeCharacter(
  51394. { name: "Zarya", species: ["skunk"], tags: ["anthro"] },
  51395. {
  51396. front: {
  51397. height: math.unit(1.75, "meters"),
  51398. weight: math.unit(100, "kg"),
  51399. name: "Front",
  51400. image: {
  51401. source: "./media/characters/zarya/front.svg",
  51402. extra: 741/735,
  51403. bottom: 44/785
  51404. },
  51405. extraAttributes: {
  51406. "tailLength": {
  51407. name: "Tail Length",
  51408. power: 1,
  51409. type: "length",
  51410. base: math.unit(180, "cm")
  51411. },
  51412. "pawLength": {
  51413. name: "Paw Length",
  51414. power: 1,
  51415. type: "length",
  51416. base: math.unit(31, "cm")
  51417. },
  51418. }
  51419. },
  51420. side: {
  51421. height: math.unit(1.75, "meters"),
  51422. weight: math.unit(100, "kg"),
  51423. name: "Side",
  51424. image: {
  51425. source: "./media/characters/zarya/side.svg",
  51426. extra: 776/770,
  51427. bottom: 17/793
  51428. },
  51429. extraAttributes: {
  51430. "tailLength": {
  51431. name: "Tail Length",
  51432. power: 1,
  51433. type: "length",
  51434. base: math.unit(180, "cm")
  51435. },
  51436. "pawLength": {
  51437. name: "Paw Length",
  51438. power: 1,
  51439. type: "length",
  51440. base: math.unit(31, "cm")
  51441. },
  51442. }
  51443. },
  51444. back: {
  51445. height: math.unit(1.75, "meters"),
  51446. weight: math.unit(100, "kg"),
  51447. name: "Back",
  51448. image: {
  51449. source: "./media/characters/zarya/back.svg",
  51450. extra: 741/735,
  51451. bottom: 44/785
  51452. },
  51453. extraAttributes: {
  51454. "tailLength": {
  51455. name: "Tail Length",
  51456. power: 1,
  51457. type: "length",
  51458. base: math.unit(180, "cm")
  51459. },
  51460. "pawLength": {
  51461. name: "Paw Length",
  51462. power: 1,
  51463. type: "length",
  51464. base: math.unit(31, "cm")
  51465. },
  51466. }
  51467. },
  51468. frontNoTail: {
  51469. height: math.unit(1.75, "meters"),
  51470. weight: math.unit(100, "kg"),
  51471. name: "Front (No Tail)",
  51472. image: {
  51473. source: "./media/characters/zarya/front-no-tail.svg",
  51474. extra: 741/735,
  51475. bottom: 44/785
  51476. },
  51477. extraAttributes: {
  51478. "tailLength": {
  51479. name: "Tail Length",
  51480. power: 1,
  51481. type: "length",
  51482. base: math.unit(180, "cm")
  51483. },
  51484. "pawLength": {
  51485. name: "Paw Length",
  51486. power: 1,
  51487. type: "length",
  51488. base: math.unit(31, "cm")
  51489. },
  51490. }
  51491. },
  51492. dressed: {
  51493. height: math.unit(1.75, "meters"),
  51494. weight: math.unit(100, "kg"),
  51495. name: "Dressed",
  51496. image: {
  51497. source: "./media/characters/zarya/dressed.svg",
  51498. extra: 683/672,
  51499. bottom: 79/762
  51500. },
  51501. extraAttributes: {
  51502. "tailLength": {
  51503. name: "Tail Length",
  51504. power: 1,
  51505. type: "length",
  51506. base: math.unit(180, "cm")
  51507. },
  51508. "pawLength": {
  51509. name: "Paw Length",
  51510. power: 1,
  51511. type: "length",
  51512. base: math.unit(31, "cm")
  51513. },
  51514. }
  51515. },
  51516. },
  51517. [
  51518. {
  51519. name: "Micro",
  51520. height: math.unit(5, "cm")
  51521. },
  51522. {
  51523. name: "Normal",
  51524. height: math.unit(1.75, "meters"),
  51525. default: true
  51526. },
  51527. {
  51528. name: "Macro",
  51529. height: math.unit(122, "meters")
  51530. },
  51531. ]
  51532. ))
  51533. characterMakers.push(() => makeCharacter(
  51534. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  51535. {
  51536. front: {
  51537. height: math.unit(7.5, "feet"),
  51538. name: "Front",
  51539. image: {
  51540. source: "./media/characters/sven-hatisson/front.svg",
  51541. extra: 917/857,
  51542. bottom: 42/959
  51543. }
  51544. },
  51545. back: {
  51546. height: math.unit(7.5, "feet"),
  51547. name: "Back",
  51548. image: {
  51549. source: "./media/characters/sven-hatisson/back.svg",
  51550. extra: 903/856,
  51551. bottom: 15/918
  51552. }
  51553. },
  51554. },
  51555. [
  51556. {
  51557. name: "Base Height",
  51558. height: math.unit(7.5, "feet")
  51559. },
  51560. {
  51561. name: "Usual Height",
  51562. height: math.unit(13.5, "feet"),
  51563. default: true
  51564. },
  51565. {
  51566. name: "Smaller Macro",
  51567. height: math.unit(85, "feet")
  51568. },
  51569. {
  51570. name: "Moderate Macro",
  51571. height: math.unit(320, "feet")
  51572. },
  51573. {
  51574. name: "Large Macro",
  51575. height: math.unit(1000, "feet")
  51576. },
  51577. {
  51578. name: "Largest Size",
  51579. height: math.unit(2, "miles")
  51580. },
  51581. ]
  51582. ))
  51583. characterMakers.push(() => makeCharacter(
  51584. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  51585. {
  51586. side: {
  51587. height: math.unit(1.8, "meters"),
  51588. weight: math.unit(275, "kg"),
  51589. name: "Side",
  51590. image: {
  51591. source: "./media/characters/terra/side.svg",
  51592. extra: 1273/1147,
  51593. bottom: 0/1273
  51594. }
  51595. },
  51596. },
  51597. [
  51598. {
  51599. name: "Normal",
  51600. height: math.unit(16.2, "meters"),
  51601. default: true
  51602. },
  51603. ]
  51604. ))
  51605. characterMakers.push(() => makeCharacter(
  51606. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  51607. {
  51608. borzoiFront: {
  51609. height: math.unit(6 + 9/12, "feet"),
  51610. name: "Front",
  51611. image: {
  51612. source: "./media/characters/rae/borzoi-front.svg",
  51613. extra: 1161/1098,
  51614. bottom: 31/1192
  51615. },
  51616. form: "borzoi",
  51617. default: true
  51618. },
  51619. werewolfFront: {
  51620. height: math.unit(8 + 7/12, "feet"),
  51621. name: "Front",
  51622. image: {
  51623. source: "./media/characters/rae/werewolf-front.svg",
  51624. extra: 1411/1334,
  51625. bottom: 127/1538
  51626. },
  51627. form: "werewolf",
  51628. default: true
  51629. },
  51630. },
  51631. [
  51632. {
  51633. name: "Normal",
  51634. height: math.unit(6 + 9/12, "feet"),
  51635. default: true,
  51636. form: "borzoi"
  51637. },
  51638. {
  51639. name: "Normal",
  51640. height: math.unit(8 + 7/12, "feet"),
  51641. default: true,
  51642. form: "werewolf"
  51643. },
  51644. ],
  51645. {
  51646. "borzoi": {
  51647. name: "Borzoi",
  51648. default: true
  51649. },
  51650. "werewolf": {
  51651. name: "Werewolf",
  51652. },
  51653. }
  51654. ))
  51655. characterMakers.push(() => makeCharacter(
  51656. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  51657. {
  51658. front: {
  51659. height: math.unit(8 + 7/12, "feet"),
  51660. weight: math.unit(482, "lb"),
  51661. name: "Front",
  51662. image: {
  51663. source: "./media/characters/kit/front.svg",
  51664. extra: 1247/1103,
  51665. bottom: 41/1288
  51666. }
  51667. },
  51668. back: {
  51669. height: math.unit(8 + 7/12, "feet"),
  51670. weight: math.unit(482, "lb"),
  51671. name: "Back",
  51672. image: {
  51673. source: "./media/characters/kit/back.svg",
  51674. extra: 1252/1123,
  51675. bottom: 21/1273
  51676. }
  51677. },
  51678. paw: {
  51679. height: math.unit(1.46, "feet"),
  51680. name: "Paw",
  51681. image: {
  51682. source: "./media/characters/kit/paw.svg"
  51683. }
  51684. },
  51685. },
  51686. [
  51687. {
  51688. name: "Normal",
  51689. height: math.unit(2.61, "meters"),
  51690. default: true
  51691. },
  51692. {
  51693. name: "\"Tall\"",
  51694. height: math.unit(8.21, "meters")
  51695. },
  51696. {
  51697. name: "Tall",
  51698. height: math.unit(19.6, "meters")
  51699. },
  51700. {
  51701. name: "Very Tall",
  51702. height: math.unit(57.91, "meters")
  51703. },
  51704. {
  51705. name: "Semi-Macro",
  51706. height: math.unit(138.64, "meters")
  51707. },
  51708. {
  51709. name: "Macro",
  51710. height: math.unit(831.99, "meters")
  51711. },
  51712. {
  51713. name: "EX-Macro",
  51714. height: math.unit(96451121, "meters")
  51715. },
  51716. {
  51717. name: "S1-Omnipotent",
  51718. height: math.unit(4.42074e+9, "meters")
  51719. },
  51720. {
  51721. name: "S2-Omnipotent",
  51722. height: math.unit(9.42074e+17, "meters")
  51723. },
  51724. {
  51725. name: "Omnipotent",
  51726. height: math.unit(4.23112e+24, "meters")
  51727. },
  51728. {
  51729. name: "Hypergod",
  51730. height: math.unit(5.05176e+27, "meters")
  51731. },
  51732. {
  51733. name: "Hypergod-EX",
  51734. height: math.unit(9.45532e+49, "meters")
  51735. },
  51736. {
  51737. name: "Hypergod-SP",
  51738. height: math.unit(9.45532e+195, "meters")
  51739. },
  51740. ]
  51741. ))
  51742. characterMakers.push(() => makeCharacter(
  51743. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  51744. {
  51745. side: {
  51746. height: math.unit(0.6, "meters"),
  51747. weight: math.unit(24, "kg"),
  51748. name: "Side",
  51749. image: {
  51750. source: "./media/characters/celeste/side.svg",
  51751. extra: 810/517,
  51752. bottom: 53/863
  51753. }
  51754. },
  51755. },
  51756. [
  51757. {
  51758. name: "Velociraptor",
  51759. height: math.unit(0.6, "meters"),
  51760. default: true
  51761. },
  51762. {
  51763. name: "Utahraptor",
  51764. height: math.unit(1.8, "meters")
  51765. },
  51766. {
  51767. name: "Gallimimus",
  51768. height: math.unit(4.0, "meters")
  51769. },
  51770. {
  51771. name: "Large",
  51772. height: math.unit(20, "meters")
  51773. },
  51774. {
  51775. name: "Planetary",
  51776. height: math.unit(50, "megameters")
  51777. },
  51778. {
  51779. name: "Stellar",
  51780. height: math.unit(1.5, "gigameters")
  51781. },
  51782. {
  51783. name: "Galactic",
  51784. height: math.unit(100, "exameters")
  51785. },
  51786. ]
  51787. ))
  51788. characterMakers.push(() => makeCharacter(
  51789. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  51790. {
  51791. front: {
  51792. height: math.unit(6, "feet"),
  51793. weight: math.unit(210, "lb"),
  51794. name: "Front",
  51795. image: {
  51796. source: "./media/characters/glacia/front.svg",
  51797. extra: 958/901,
  51798. bottom: 45/1003
  51799. }
  51800. },
  51801. },
  51802. [
  51803. {
  51804. name: "Macro",
  51805. height: math.unit(1000, "meters"),
  51806. default: true
  51807. },
  51808. ]
  51809. ))
  51810. characterMakers.push(() => makeCharacter(
  51811. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  51812. {
  51813. front: {
  51814. height: math.unit(4, "meters"),
  51815. name: "Front",
  51816. image: {
  51817. source: "./media/characters/giri/front.svg",
  51818. extra: 966/894,
  51819. bottom: 21/987
  51820. }
  51821. },
  51822. },
  51823. [
  51824. {
  51825. name: "Normal",
  51826. height: math.unit(4, "meters"),
  51827. default: true
  51828. },
  51829. ]
  51830. ))
  51831. characterMakers.push(() => makeCharacter(
  51832. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  51833. {
  51834. back: {
  51835. height: math.unit(4, "feet"),
  51836. weight: math.unit(37, "lb"),
  51837. name: "Back",
  51838. image: {
  51839. source: "./media/characters/tin/back.svg",
  51840. extra: 845/780,
  51841. bottom: 28/873
  51842. }
  51843. },
  51844. },
  51845. [
  51846. {
  51847. name: "Normal",
  51848. height: math.unit(4, "feet"),
  51849. default: true
  51850. },
  51851. ]
  51852. ))
  51853. characterMakers.push(() => makeCharacter(
  51854. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  51855. {
  51856. front: {
  51857. height: math.unit(25, "feet"),
  51858. name: "Front",
  51859. image: {
  51860. source: "./media/characters/cadenza-vivace/front.svg",
  51861. extra: 1842/1578,
  51862. bottom: 30/1872
  51863. }
  51864. },
  51865. },
  51866. [
  51867. {
  51868. name: "Macro",
  51869. height: math.unit(25, "feet"),
  51870. default: true
  51871. },
  51872. ]
  51873. ))
  51874. characterMakers.push(() => makeCharacter(
  51875. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  51876. {
  51877. front: {
  51878. height: math.unit(10, "feet"),
  51879. weight: math.unit(625, "kg"),
  51880. name: "Front",
  51881. image: {
  51882. source: "./media/characters/zain/front.svg",
  51883. extra: 1682/1498,
  51884. bottom: 223/1905
  51885. }
  51886. },
  51887. back: {
  51888. height: math.unit(10, "feet"),
  51889. weight: math.unit(625, "kg"),
  51890. name: "Back",
  51891. image: {
  51892. source: "./media/characters/zain/back.svg",
  51893. extra: 1814/1657,
  51894. bottom: 152/1966
  51895. }
  51896. },
  51897. head: {
  51898. height: math.unit(10, "feet"),
  51899. weight: math.unit(625, "kg"),
  51900. name: "Head",
  51901. image: {
  51902. source: "./media/characters/zain/head.svg",
  51903. extra: 1059/762,
  51904. bottom: 0/1059
  51905. }
  51906. },
  51907. },
  51908. [
  51909. {
  51910. name: "Normal",
  51911. height: math.unit(10, "feet"),
  51912. default: true
  51913. },
  51914. ]
  51915. ))
  51916. characterMakers.push(() => makeCharacter(
  51917. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  51918. {
  51919. front: {
  51920. height: math.unit(6 + 5/12, "feet"),
  51921. weight: math.unit(750, "lb"),
  51922. name: "Front",
  51923. image: {
  51924. source: "./media/characters/ruchex/front.svg",
  51925. extra: 877/820,
  51926. bottom: 17/894
  51927. },
  51928. extraAttributes: {
  51929. "width": {
  51930. name: "Width",
  51931. power: 1,
  51932. type: "length",
  51933. base: math.unit(4.757, "feet")
  51934. },
  51935. }
  51936. },
  51937. },
  51938. [
  51939. {
  51940. name: "Normal",
  51941. height: math.unit(6 + 5/12, "feet"),
  51942. default: true
  51943. },
  51944. ]
  51945. ))
  51946. characterMakers.push(() => makeCharacter(
  51947. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  51948. {
  51949. dressedFront: {
  51950. height: math.unit(191, "cm"),
  51951. weight: math.unit(80, "kg"),
  51952. name: "Front",
  51953. image: {
  51954. source: "./media/characters/buster/dressed-front.svg",
  51955. extra: 1022/973,
  51956. bottom: 69/1091
  51957. }
  51958. },
  51959. dressedBack: {
  51960. height: math.unit(191, "cm"),
  51961. weight: math.unit(80, "kg"),
  51962. name: "Back",
  51963. image: {
  51964. source: "./media/characters/buster/dressed-back.svg",
  51965. extra: 1018/970,
  51966. bottom: 55/1073
  51967. }
  51968. },
  51969. nudeFront: {
  51970. height: math.unit(191, "cm"),
  51971. weight: math.unit(80, "kg"),
  51972. name: "Front (Nude)",
  51973. image: {
  51974. source: "./media/characters/buster/nude-front.svg",
  51975. extra: 1022/973,
  51976. bottom: 69/1091
  51977. }
  51978. },
  51979. nudeBack: {
  51980. height: math.unit(191, "cm"),
  51981. weight: math.unit(80, "kg"),
  51982. name: "Back (Nude)",
  51983. image: {
  51984. source: "./media/characters/buster/nude-back.svg",
  51985. extra: 1018/970,
  51986. bottom: 55/1073
  51987. }
  51988. },
  51989. dick: {
  51990. height: math.unit(2.59, "feet"),
  51991. name: "Dick",
  51992. image: {
  51993. source: "./media/characters/buster/dick.svg"
  51994. }
  51995. },
  51996. ass: {
  51997. height: math.unit(1.2, "feet"),
  51998. name: "Ass",
  51999. image: {
  52000. source: "./media/characters/buster/ass.svg"
  52001. }
  52002. },
  52003. },
  52004. [
  52005. {
  52006. name: "Normal",
  52007. height: math.unit(191, "cm"),
  52008. default: true
  52009. },
  52010. ]
  52011. ))
  52012. characterMakers.push(() => makeCharacter(
  52013. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  52014. {
  52015. side: {
  52016. height: math.unit(8.1, "feet"),
  52017. weight: math.unit(3500, "lb"),
  52018. name: "Side",
  52019. image: {
  52020. source: "./media/characters/sonya/side.svg",
  52021. extra: 1730/1317,
  52022. bottom: 86/1816
  52023. }
  52024. },
  52025. },
  52026. [
  52027. {
  52028. name: "Normal",
  52029. height: math.unit(8.1, "feet"),
  52030. default: true
  52031. },
  52032. ]
  52033. ))
  52034. characterMakers.push(() => makeCharacter(
  52035. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  52036. {
  52037. front: {
  52038. height: math.unit(6, "feet"),
  52039. weight: math.unit(150, "lb"),
  52040. name: "Front",
  52041. image: {
  52042. source: "./media/characters/cadence-andrysiak/front.svg",
  52043. extra: 1164/1121,
  52044. bottom: 60/1224
  52045. }
  52046. },
  52047. back: {
  52048. height: math.unit(6, "feet"),
  52049. weight: math.unit(150, "lb"),
  52050. name: "Back",
  52051. image: {
  52052. source: "./media/characters/cadence-andrysiak/back.svg",
  52053. extra: 1200/1165,
  52054. bottom: 9/1209
  52055. }
  52056. },
  52057. dressed: {
  52058. height: math.unit(6, "feet"),
  52059. weight: math.unit(150, "lb"),
  52060. name: "Dressed",
  52061. image: {
  52062. source: "./media/characters/cadence-andrysiak/dressed.svg",
  52063. extra: 1164/1121,
  52064. bottom: 60/1224
  52065. }
  52066. },
  52067. },
  52068. [
  52069. {
  52070. name: "Micro",
  52071. height: math.unit(1, "mm")
  52072. },
  52073. {
  52074. name: "Normal",
  52075. height: math.unit(6, "feet"),
  52076. default: true
  52077. },
  52078. ]
  52079. ))
  52080. characterMakers.push(() => makeCharacter(
  52081. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  52082. {
  52083. front: {
  52084. height: math.unit(60, "inches"),
  52085. weight: math.unit(16, "lb"),
  52086. preyCapacity: math.unit(80, "liters"),
  52087. name: "Front",
  52088. image: {
  52089. source: "./media/characters/penny-lynx/front.svg",
  52090. extra: 1959/1769,
  52091. bottom: 49/2008
  52092. }
  52093. },
  52094. },
  52095. [
  52096. {
  52097. name: "Nokia",
  52098. height: math.unit(2, "inches")
  52099. },
  52100. {
  52101. name: "Desktop",
  52102. height: math.unit(24, "inches")
  52103. },
  52104. {
  52105. name: "TV",
  52106. height: math.unit(60, "inches")
  52107. },
  52108. {
  52109. name: "Jumbotron",
  52110. height: math.unit(12, "feet")
  52111. },
  52112. {
  52113. name: "Billboard",
  52114. height: math.unit(48, "feet"),
  52115. default: true
  52116. },
  52117. {
  52118. name: "IMAX",
  52119. height: math.unit(96, "feet")
  52120. },
  52121. {
  52122. name: "SINGULARITY",
  52123. height: math.unit(864938, "miles")
  52124. },
  52125. ]
  52126. ))
  52127. characterMakers.push(() => makeCharacter(
  52128. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  52129. {
  52130. front: {
  52131. height: math.unit(5 + 4/12, "feet"),
  52132. weight: math.unit(230, "lb"),
  52133. name: "Front",
  52134. image: {
  52135. source: "./media/characters/sukebe/front.svg",
  52136. extra: 2130/2038,
  52137. bottom: 90/2220
  52138. }
  52139. },
  52140. back: {
  52141. height: math.unit(3.48, "feet"),
  52142. weight: math.unit(230, "lb"),
  52143. name: "Back",
  52144. image: {
  52145. source: "./media/characters/sukebe/back.svg",
  52146. extra: 1670/1604,
  52147. bottom: 0/1670
  52148. }
  52149. },
  52150. },
  52151. [
  52152. {
  52153. name: "Normal",
  52154. height: math.unit(5 + 4/12, "feet"),
  52155. default: true
  52156. },
  52157. ]
  52158. ))
  52159. characterMakers.push(() => makeCharacter(
  52160. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  52161. {
  52162. front: {
  52163. height: math.unit(6, "feet"),
  52164. name: "Front",
  52165. image: {
  52166. source: "./media/characters/nylla/front.svg",
  52167. extra: 1868/1699,
  52168. bottom: 97/1965
  52169. }
  52170. },
  52171. back: {
  52172. height: math.unit(6, "feet"),
  52173. name: "Back",
  52174. image: {
  52175. source: "./media/characters/nylla/back.svg",
  52176. extra: 1889/1712,
  52177. bottom: 93/1982
  52178. }
  52179. },
  52180. frontNsfw: {
  52181. height: math.unit(6, "feet"),
  52182. name: "Front (NSFW)",
  52183. image: {
  52184. source: "./media/characters/nylla/front-nsfw.svg",
  52185. extra: 1868/1699,
  52186. bottom: 97/1965
  52187. },
  52188. extraAttributes: {
  52189. "dickLength": {
  52190. name: "Dick Length",
  52191. power: 1,
  52192. type: "length",
  52193. base: math.unit(1.4, "feet")
  52194. },
  52195. "cumVolume": {
  52196. name: "Cum Volume",
  52197. power: 3,
  52198. type: "volume",
  52199. base: math.unit(100, "mL")
  52200. },
  52201. }
  52202. },
  52203. backNsfw: {
  52204. height: math.unit(6, "feet"),
  52205. name: "Back (NSFW)",
  52206. image: {
  52207. source: "./media/characters/nylla/back-nsfw.svg",
  52208. extra: 1889/1712,
  52209. bottom: 93/1982
  52210. }
  52211. },
  52212. maw: {
  52213. height: math.unit(2.10, "feet"),
  52214. name: "Maw",
  52215. image: {
  52216. source: "./media/characters/nylla/maw.svg"
  52217. }
  52218. },
  52219. paws: {
  52220. height: math.unit(2.06, "feet"),
  52221. name: "Paws",
  52222. image: {
  52223. source: "./media/characters/nylla/paws.svg"
  52224. }
  52225. },
  52226. muzzle: {
  52227. height: math.unit(0.61, "feet"),
  52228. name: "Muzzle",
  52229. image: {
  52230. source: "./media/characters/nylla/muzzle.svg"
  52231. }
  52232. },
  52233. sheath: {
  52234. height: math.unit(1.305, "feet"),
  52235. name: "Sheath",
  52236. image: {
  52237. source: "./media/characters/nylla/sheath.svg"
  52238. }
  52239. },
  52240. },
  52241. [
  52242. {
  52243. name: "Micro",
  52244. height: math.unit(7.5, "inches")
  52245. },
  52246. {
  52247. name: "Normal",
  52248. height: math.unit(7, "feet"),
  52249. default: true
  52250. },
  52251. {
  52252. name: "Macro",
  52253. height: math.unit(60, "feet")
  52254. },
  52255. {
  52256. name: "Mega",
  52257. height: math.unit(200, "feet")
  52258. },
  52259. ]
  52260. ))
  52261. characterMakers.push(() => makeCharacter(
  52262. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  52263. {
  52264. front: {
  52265. height: math.unit(10, "feet"),
  52266. weight: math.unit(2300, "lb"),
  52267. name: "Front",
  52268. image: {
  52269. source: "./media/characters/hunt3r/front.svg",
  52270. extra: 1909/1742,
  52271. bottom: 46/1955
  52272. }
  52273. },
  52274. },
  52275. [
  52276. {
  52277. name: "Normal",
  52278. height: math.unit(10, "feet"),
  52279. default: true
  52280. },
  52281. ]
  52282. ))
  52283. characterMakers.push(() => makeCharacter(
  52284. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  52285. {
  52286. dressed: {
  52287. height: math.unit(11, "feet"),
  52288. weight: math.unit(18500, "lb"),
  52289. preyCapacity: math.unit(9, "people"),
  52290. name: "Dressed",
  52291. image: {
  52292. source: "./media/characters/cylphis/dressed.svg",
  52293. extra: 1028/1003,
  52294. bottom: 75/1103
  52295. },
  52296. },
  52297. undressed: {
  52298. height: math.unit(11, "feet"),
  52299. weight: math.unit(18500, "lb"),
  52300. preyCapacity: math.unit(9, "people"),
  52301. name: "Undressed",
  52302. image: {
  52303. source: "./media/characters/cylphis/undressed.svg",
  52304. extra: 1028/1003,
  52305. bottom: 75/1103
  52306. }
  52307. },
  52308. full: {
  52309. height: math.unit(11, "feet"),
  52310. weight: math.unit(18500 + 150*9, "lb"),
  52311. preyCapacity: math.unit(9, "people"),
  52312. name: "Full",
  52313. image: {
  52314. source: "./media/characters/cylphis/full.svg",
  52315. extra: 1028/1003,
  52316. bottom: 75/1103
  52317. }
  52318. },
  52319. },
  52320. [
  52321. {
  52322. name: "Small",
  52323. height: math.unit(8, "feet")
  52324. },
  52325. {
  52326. name: "Normal",
  52327. height: math.unit(11, "feet"),
  52328. default: true
  52329. },
  52330. ]
  52331. ))
  52332. characterMakers.push(() => makeCharacter(
  52333. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  52334. {
  52335. front: {
  52336. height: math.unit(2 + 7/12, "feet"),
  52337. name: "Front",
  52338. image: {
  52339. source: "./media/characters/orishan/front.svg",
  52340. extra: 1058/1023,
  52341. bottom: 23/1081
  52342. }
  52343. },
  52344. back: {
  52345. height: math.unit(2 + 7/12, "feet"),
  52346. name: "Back",
  52347. image: {
  52348. source: "./media/characters/orishan/back.svg",
  52349. extra: 1058/1023,
  52350. bottom: 23/1081
  52351. }
  52352. },
  52353. },
  52354. [
  52355. {
  52356. name: "Micro",
  52357. height: math.unit(2, "cm")
  52358. },
  52359. {
  52360. name: "Normal",
  52361. height: math.unit(2 + 7/12, "feet"),
  52362. default: true
  52363. },
  52364. ]
  52365. ))
  52366. characterMakers.push(() => makeCharacter(
  52367. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  52368. {
  52369. front: {
  52370. height: math.unit(3, "meters"),
  52371. weight: math.unit(508, "kg"),
  52372. name: "Front",
  52373. image: {
  52374. source: "./media/characters/seranis/front.svg",
  52375. extra: 1478/1454,
  52376. bottom: 41/1519
  52377. }
  52378. },
  52379. },
  52380. [
  52381. {
  52382. name: "Normal",
  52383. height: math.unit(3, "meters"),
  52384. default: true
  52385. },
  52386. {
  52387. name: "Macro",
  52388. height: math.unit(108, "meters")
  52389. },
  52390. {
  52391. name: "Megamacro",
  52392. height: math.unit(1250, "meters")
  52393. },
  52394. ]
  52395. ))
  52396. characterMakers.push(() => makeCharacter(
  52397. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  52398. {
  52399. undressed: {
  52400. height: math.unit(5 + 3/12, "feet"),
  52401. name: "Undressed",
  52402. image: {
  52403. source: "./media/characters/ankou/undressed.svg",
  52404. extra: 1301/1213,
  52405. bottom: 87/1388
  52406. }
  52407. },
  52408. dressed: {
  52409. height: math.unit(5 + 3/12, "feet"),
  52410. name: "Dressed",
  52411. image: {
  52412. source: "./media/characters/ankou/dressed.svg",
  52413. extra: 1301/1213,
  52414. bottom: 87/1388
  52415. }
  52416. },
  52417. head: {
  52418. height: math.unit(1.61, "feet"),
  52419. name: "Head",
  52420. image: {
  52421. source: "./media/characters/ankou/head.svg"
  52422. }
  52423. },
  52424. },
  52425. [
  52426. {
  52427. name: "Normal",
  52428. height: math.unit(5 + 3/12, "feet"),
  52429. default: true
  52430. },
  52431. ]
  52432. ))
  52433. characterMakers.push(() => makeCharacter(
  52434. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  52435. {
  52436. side: {
  52437. height: math.unit(6 + 3/12, "feet"),
  52438. weight: math.unit(200, "kg"),
  52439. name: "Side",
  52440. image: {
  52441. source: "./media/characters/juniper-skunktaur/side.svg",
  52442. extra: 1574/1229,
  52443. bottom: 38/1612
  52444. }
  52445. },
  52446. front: {
  52447. height: math.unit(6 + 3/12, "feet"),
  52448. weight: math.unit(200, "kg"),
  52449. name: "Front",
  52450. image: {
  52451. source: "./media/characters/juniper-skunktaur/front.svg",
  52452. extra: 1337/1278,
  52453. bottom: 22/1359
  52454. }
  52455. },
  52456. back: {
  52457. height: math.unit(6 + 3/12, "feet"),
  52458. weight: math.unit(200, "kg"),
  52459. name: "Back",
  52460. image: {
  52461. source: "./media/characters/juniper-skunktaur/back.svg",
  52462. extra: 1618/1273,
  52463. bottom: 13/1631
  52464. }
  52465. },
  52466. top: {
  52467. height: math.unit(2.62, "feet"),
  52468. weight: math.unit(200, "kg"),
  52469. name: "Top",
  52470. image: {
  52471. source: "./media/characters/juniper-skunktaur/top.svg"
  52472. }
  52473. },
  52474. },
  52475. [
  52476. {
  52477. name: "Normal",
  52478. height: math.unit(6 + 3/12, "feet"),
  52479. default: true
  52480. },
  52481. ]
  52482. ))
  52483. characterMakers.push(() => makeCharacter(
  52484. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  52485. {
  52486. front: {
  52487. height: math.unit(20.5, "feet"),
  52488. name: "Front",
  52489. image: {
  52490. source: "./media/characters/rei/front.svg",
  52491. extra: 1349/1195,
  52492. bottom: 31/1380
  52493. }
  52494. },
  52495. back: {
  52496. height: math.unit(20.5, "feet"),
  52497. name: "Back",
  52498. image: {
  52499. source: "./media/characters/rei/back.svg",
  52500. extra: 1358/1204,
  52501. bottom: 22/1380
  52502. }
  52503. },
  52504. pawsDigi: {
  52505. height: math.unit(3.45, "feet"),
  52506. name: "Paws (Digi)",
  52507. image: {
  52508. source: "./media/characters/rei/paws-digi.svg"
  52509. }
  52510. },
  52511. pawsPlanti: {
  52512. height: math.unit(3.45, "feet"),
  52513. name: "Paws (Planti)",
  52514. image: {
  52515. source: "./media/characters/rei/paws-planti.svg"
  52516. }
  52517. },
  52518. },
  52519. [
  52520. {
  52521. name: "Normal",
  52522. height: math.unit(20.5, "feet"),
  52523. default: true
  52524. },
  52525. ]
  52526. ))
  52527. characterMakers.push(() => makeCharacter(
  52528. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  52529. {
  52530. front: {
  52531. height: math.unit(5 + 11/12, "feet"),
  52532. name: "Front",
  52533. image: {
  52534. source: "./media/characters/carina/front.svg",
  52535. extra: 1720/1449,
  52536. bottom: 14/1734
  52537. }
  52538. },
  52539. back: {
  52540. height: math.unit(5 + 11/12, "feet"),
  52541. name: "Back",
  52542. image: {
  52543. source: "./media/characters/carina/back.svg",
  52544. extra: 1493/1445,
  52545. bottom: 17/1510
  52546. }
  52547. },
  52548. paw: {
  52549. height: math.unit(0.92, "feet"),
  52550. name: "Paw",
  52551. image: {
  52552. source: "./media/characters/carina/paw.svg"
  52553. }
  52554. },
  52555. },
  52556. [
  52557. {
  52558. name: "Normal",
  52559. height: math.unit(5 + 11/12, "feet"),
  52560. default: true
  52561. },
  52562. ]
  52563. ))
  52564. characterMakers.push(() => makeCharacter(
  52565. { name: "Maya", species: ["cat"], tags: ["anthro"] },
  52566. {
  52567. front: {
  52568. height: math.unit(4.88, "meters"),
  52569. name: "Front",
  52570. image: {
  52571. source: "./media/characters/maya/front.svg",
  52572. extra: 1222/1145,
  52573. bottom: 57/1279
  52574. }
  52575. },
  52576. },
  52577. [
  52578. {
  52579. name: "Normal",
  52580. height: math.unit(4.88, "meters"),
  52581. default: true
  52582. },
  52583. {
  52584. name: "Macro",
  52585. height: math.unit(38.1, "meters")
  52586. },
  52587. {
  52588. name: "Macro+",
  52589. height: math.unit(152.4, "meters")
  52590. },
  52591. {
  52592. name: "Macro++",
  52593. height: math.unit(16.09, "km")
  52594. },
  52595. {
  52596. name: "Mega-macro",
  52597. height: math.unit(700, "megameters")
  52598. },
  52599. ]
  52600. ))
  52601. characterMakers.push(() => makeCharacter(
  52602. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  52603. {
  52604. front: {
  52605. height: math.unit(6 + 2/12, "feet"),
  52606. weight: math.unit(500, "lb"),
  52607. preyCapacity: math.unit(4, "people"),
  52608. name: "Front",
  52609. image: {
  52610. source: "./media/characters/yepir/front.svg"
  52611. }
  52612. },
  52613. side: {
  52614. height: math.unit(6 + 2/12, "feet"),
  52615. weight: math.unit(500, "lb"),
  52616. preyCapacity: math.unit(4, "people"),
  52617. name: "Side",
  52618. image: {
  52619. source: "./media/characters/yepir/side.svg"
  52620. }
  52621. },
  52622. paw: {
  52623. height: math.unit(1.05, "feet"),
  52624. name: "Paw",
  52625. image: {
  52626. source: "./media/characters/yepir/paw.svg"
  52627. }
  52628. },
  52629. },
  52630. [
  52631. {
  52632. name: "Normal",
  52633. height: math.unit(6 + 2/12, "feet"),
  52634. default: true
  52635. },
  52636. ]
  52637. ))
  52638. characterMakers.push(() => makeCharacter(
  52639. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  52640. {
  52641. front: {
  52642. height: math.unit(5 + 4/12, "feet"),
  52643. name: "Front",
  52644. image: {
  52645. source: "./media/characters/russec/front.svg",
  52646. extra: 1926/1626,
  52647. bottom: 72/1998
  52648. }
  52649. },
  52650. back: {
  52651. height: math.unit(5 + 4/12, "feet"),
  52652. name: "Back",
  52653. image: {
  52654. source: "./media/characters/russec/back.svg",
  52655. extra: 1910/1591,
  52656. bottom: 48/1958
  52657. }
  52658. },
  52659. },
  52660. [
  52661. {
  52662. name: "Small",
  52663. height: math.unit(5 + 4/12, "feet")
  52664. },
  52665. {
  52666. name: "Normal",
  52667. height: math.unit(72, "feet"),
  52668. default: true
  52669. },
  52670. ]
  52671. ))
  52672. characterMakers.push(() => makeCharacter(
  52673. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  52674. {
  52675. side: {
  52676. height: math.unit(12, "feet"),
  52677. name: "Side",
  52678. image: {
  52679. source: "./media/characters/cianus/side.svg",
  52680. extra: 808/526,
  52681. bottom: 61/869
  52682. }
  52683. },
  52684. },
  52685. [
  52686. {
  52687. name: "Normal",
  52688. height: math.unit(12, "feet"),
  52689. default: true
  52690. },
  52691. ]
  52692. ))
  52693. characterMakers.push(() => makeCharacter(
  52694. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  52695. {
  52696. front: {
  52697. height: math.unit(9 + 6/12, "feet"),
  52698. weight: math.unit(300, "lb"),
  52699. name: "Front",
  52700. image: {
  52701. source: "./media/characters/ahab/front.svg",
  52702. extra: 1897/1868,
  52703. bottom: 121/2018
  52704. }
  52705. },
  52706. frontNsfw: {
  52707. height: math.unit(9 + 6/12, "feet"),
  52708. weight: math.unit(300, "lb"),
  52709. name: "Front-nsfw",
  52710. image: {
  52711. source: "./media/characters/ahab/front-nsfw.svg",
  52712. extra: 1897/1868,
  52713. bottom: 121/2018
  52714. }
  52715. },
  52716. },
  52717. [
  52718. {
  52719. name: "Normal",
  52720. height: math.unit(9 + 6/12, "feet")
  52721. },
  52722. {
  52723. name: "Macro",
  52724. height: math.unit(657, "feet"),
  52725. default: true
  52726. },
  52727. ]
  52728. ))
  52729. characterMakers.push(() => makeCharacter(
  52730. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  52731. {
  52732. front: {
  52733. height: math.unit(2.69, "meters"),
  52734. weight: math.unit(132, "kg"),
  52735. name: "Front",
  52736. image: {
  52737. source: "./media/characters/aarkus/front.svg",
  52738. extra: 1400/1231,
  52739. bottom: 34/1434
  52740. }
  52741. },
  52742. back: {
  52743. height: math.unit(2.69, "meters"),
  52744. weight: math.unit(132, "kg"),
  52745. name: "Back",
  52746. image: {
  52747. source: "./media/characters/aarkus/back.svg",
  52748. extra: 1381/1218,
  52749. bottom: 30/1411
  52750. }
  52751. },
  52752. frontNsfw: {
  52753. height: math.unit(2.69, "meters"),
  52754. weight: math.unit(132, "kg"),
  52755. name: "Front (NSFW)",
  52756. image: {
  52757. source: "./media/characters/aarkus/front-nsfw.svg",
  52758. extra: 1400/1231,
  52759. bottom: 34/1434
  52760. }
  52761. },
  52762. foot: {
  52763. height: math.unit(1.45, "feet"),
  52764. name: "Foot",
  52765. image: {
  52766. source: "./media/characters/aarkus/foot.svg"
  52767. }
  52768. },
  52769. head: {
  52770. height: math.unit(2.85, "feet"),
  52771. name: "Head",
  52772. image: {
  52773. source: "./media/characters/aarkus/head.svg"
  52774. }
  52775. },
  52776. headAlt: {
  52777. height: math.unit(3.07, "feet"),
  52778. name: "Head (Alt)",
  52779. image: {
  52780. source: "./media/characters/aarkus/head-alt.svg"
  52781. }
  52782. },
  52783. mouth: {
  52784. height: math.unit(1.25, "feet"),
  52785. name: "Mouth",
  52786. image: {
  52787. source: "./media/characters/aarkus/mouth.svg"
  52788. }
  52789. },
  52790. dick: {
  52791. height: math.unit(1.77, "feet"),
  52792. name: "Dick",
  52793. image: {
  52794. source: "./media/characters/aarkus/dick.svg"
  52795. }
  52796. },
  52797. },
  52798. [
  52799. {
  52800. name: "Normal",
  52801. height: math.unit(2.69, "meters"),
  52802. default: true
  52803. },
  52804. {
  52805. name: "Macro",
  52806. height: math.unit(269, "meters")
  52807. },
  52808. {
  52809. name: "Macro+",
  52810. height: math.unit(672.5, "meters")
  52811. },
  52812. {
  52813. name: "Megamacro",
  52814. height: math.unit(2.017, "km")
  52815. },
  52816. ]
  52817. ))
  52818. characterMakers.push(() => makeCharacter(
  52819. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  52820. {
  52821. front: {
  52822. height: math.unit(23.47, "cm"),
  52823. weight: math.unit(600, "grams"),
  52824. name: "Front",
  52825. image: {
  52826. source: "./media/characters/diode/front.svg",
  52827. extra: 1778/1396,
  52828. bottom: 95/1873
  52829. }
  52830. },
  52831. side: {
  52832. height: math.unit(23.47, "cm"),
  52833. weight: math.unit(600, "grams"),
  52834. name: "Side",
  52835. image: {
  52836. source: "./media/characters/diode/side.svg",
  52837. extra: 1831/1404,
  52838. bottom: 86/1917
  52839. }
  52840. },
  52841. wings: {
  52842. height: math.unit(0.683, "feet"),
  52843. name: "Wings",
  52844. image: {
  52845. source: "./media/characters/diode/wings.svg"
  52846. }
  52847. },
  52848. },
  52849. [
  52850. {
  52851. name: "Normal",
  52852. height: math.unit(23.47, "cm"),
  52853. default: true
  52854. },
  52855. ]
  52856. ))
  52857. characterMakers.push(() => makeCharacter(
  52858. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  52859. {
  52860. front: {
  52861. height: math.unit(6 + 3/12, "feet"),
  52862. weight: math.unit(250, "lb"),
  52863. name: "Front",
  52864. image: {
  52865. source: "./media/characters/reika/front.svg",
  52866. extra: 1120/1078,
  52867. bottom: 86/1206
  52868. }
  52869. },
  52870. },
  52871. [
  52872. {
  52873. name: "Normal",
  52874. height: math.unit(6 + 3/12, "feet"),
  52875. default: true
  52876. },
  52877. ]
  52878. ))
  52879. characterMakers.push(() => makeCharacter(
  52880. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  52881. {
  52882. front: {
  52883. height: math.unit(16 + 8/12, "feet"),
  52884. weight: math.unit(9000, "lb"),
  52885. name: "Front",
  52886. image: {
  52887. source: "./media/characters/lokuto-takama/front.svg",
  52888. extra: 1774/1632,
  52889. bottom: 147/1921
  52890. },
  52891. extraAttributes: {
  52892. "bustWidth": {
  52893. name: "Bust Width",
  52894. power: 1,
  52895. type: "length",
  52896. base: math.unit(2.4, "meters")
  52897. },
  52898. "breastWeight": {
  52899. name: "Breast Weight",
  52900. power: 3,
  52901. type: "mass",
  52902. base: math.unit(1000, "kg")
  52903. },
  52904. }
  52905. },
  52906. },
  52907. [
  52908. {
  52909. name: "Normal",
  52910. height: math.unit(16 + 8/12, "feet"),
  52911. default: true
  52912. },
  52913. ]
  52914. ))
  52915. characterMakers.push(() => makeCharacter(
  52916. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  52917. {
  52918. front: {
  52919. height: math.unit(10, "cm"),
  52920. weight: math.unit(850, "grams"),
  52921. name: "Front",
  52922. image: {
  52923. source: "./media/characters/owak-bone/front.svg",
  52924. extra: 1965/1801,
  52925. bottom: 31/1996
  52926. }
  52927. },
  52928. },
  52929. [
  52930. {
  52931. name: "Normal",
  52932. height: math.unit(10, "cm"),
  52933. default: true
  52934. },
  52935. ]
  52936. ))
  52937. characterMakers.push(() => makeCharacter(
  52938. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  52939. {
  52940. front: {
  52941. height: math.unit(2 + 6/12, "feet"),
  52942. weight: math.unit(9, "lb"),
  52943. name: "Front",
  52944. image: {
  52945. source: "./media/characters/muffin/front.svg",
  52946. extra: 1220/1195,
  52947. bottom: 84/1304
  52948. }
  52949. },
  52950. },
  52951. [
  52952. {
  52953. name: "Normal",
  52954. height: math.unit(2 + 6/12, "feet"),
  52955. default: true
  52956. },
  52957. ]
  52958. ))
  52959. characterMakers.push(() => makeCharacter(
  52960. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  52961. {
  52962. front: {
  52963. height: math.unit(7, "feet"),
  52964. name: "Front",
  52965. image: {
  52966. source: "./media/characters/chimera/front.svg",
  52967. extra: 1752/1614,
  52968. bottom: 68/1820
  52969. }
  52970. },
  52971. },
  52972. [
  52973. {
  52974. name: "Normal",
  52975. height: math.unit(7, "feet")
  52976. },
  52977. {
  52978. name: "Gigamacro",
  52979. height: math.unit(2.9, "gigameters"),
  52980. default: true
  52981. },
  52982. {
  52983. name: "Universal",
  52984. height: math.unit(1.56e26, "yottameters")
  52985. },
  52986. ]
  52987. ))
  52988. characterMakers.push(() => makeCharacter(
  52989. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  52990. {
  52991. front: {
  52992. height: math.unit(3, "feet"),
  52993. weight: math.unit(20, "lb"),
  52994. name: "Front",
  52995. image: {
  52996. source: "./media/characters/kit-fennec-fox/front.svg",
  52997. extra: 1027/932,
  52998. bottom: 16/1043
  52999. }
  53000. },
  53001. back: {
  53002. height: math.unit(3, "feet"),
  53003. weight: math.unit(20, "lb"),
  53004. name: "Back",
  53005. image: {
  53006. source: "./media/characters/kit-fennec-fox/back.svg",
  53007. extra: 1027/932,
  53008. bottom: 16/1043
  53009. }
  53010. },
  53011. },
  53012. [
  53013. {
  53014. name: "Normal",
  53015. height: math.unit(3, "feet"),
  53016. default: true
  53017. },
  53018. ]
  53019. ))
  53020. characterMakers.push(() => makeCharacter(
  53021. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  53022. {
  53023. front: {
  53024. height: math.unit(167, "cm"),
  53025. name: "Front",
  53026. image: {
  53027. source: "./media/characters/blue-otter/front.svg",
  53028. extra: 1951/1920,
  53029. bottom: 31/1982
  53030. }
  53031. },
  53032. },
  53033. [
  53034. {
  53035. name: "Otter-Sized",
  53036. height: math.unit(100, "cm")
  53037. },
  53038. {
  53039. name: "Normal",
  53040. height: math.unit(167, "cm"),
  53041. default: true
  53042. },
  53043. ]
  53044. ))
  53045. characterMakers.push(() => makeCharacter(
  53046. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  53047. {
  53048. front: {
  53049. height: math.unit(4 + 4/12, "feet"),
  53050. name: "Front",
  53051. image: {
  53052. source: "./media/characters/maverick-leopard-gecko/front.svg",
  53053. extra: 1072/1067,
  53054. bottom: 117/1189
  53055. }
  53056. },
  53057. back: {
  53058. height: math.unit(4 + 4/12, "feet"),
  53059. name: "Back",
  53060. image: {
  53061. source: "./media/characters/maverick-leopard-gecko/back.svg",
  53062. extra: 1135/1129,
  53063. bottom: 57/1192
  53064. }
  53065. },
  53066. head: {
  53067. height: math.unit(1.77, "feet"),
  53068. name: "Head",
  53069. image: {
  53070. source: "./media/characters/maverick-leopard-gecko/head.svg"
  53071. }
  53072. },
  53073. },
  53074. [
  53075. {
  53076. name: "Normal",
  53077. height: math.unit(4 + 4/12, "feet"),
  53078. default: true
  53079. },
  53080. ]
  53081. ))
  53082. characterMakers.push(() => makeCharacter(
  53083. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  53084. {
  53085. front: {
  53086. height: math.unit(2, "inches"),
  53087. name: "Front",
  53088. image: {
  53089. source: "./media/characters/carley-hartford/front.svg",
  53090. extra: 1035/988,
  53091. bottom: 23/1058
  53092. }
  53093. },
  53094. back: {
  53095. height: math.unit(2, "inches"),
  53096. name: "Back",
  53097. image: {
  53098. source: "./media/characters/carley-hartford/back.svg",
  53099. extra: 1035/988,
  53100. bottom: 23/1058
  53101. }
  53102. },
  53103. dressed: {
  53104. height: math.unit(2, "inches"),
  53105. name: "Dressed",
  53106. image: {
  53107. source: "./media/characters/carley-hartford/dressed.svg",
  53108. extra: 651/620,
  53109. bottom: 0/651
  53110. }
  53111. },
  53112. },
  53113. [
  53114. {
  53115. name: "Micro",
  53116. height: math.unit(2, "inches"),
  53117. default: true
  53118. },
  53119. {
  53120. name: "Macro",
  53121. height: math.unit(6 + 3/12, "feet")
  53122. },
  53123. ]
  53124. ))
  53125. characterMakers.push(() => makeCharacter(
  53126. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  53127. {
  53128. front: {
  53129. height: math.unit(2 + 3/12, "feet"),
  53130. weight: math.unit(15 + 7/16, "lb"),
  53131. name: "Front",
  53132. image: {
  53133. source: "./media/characters/duke/front.svg",
  53134. extra: 910/815,
  53135. bottom: 30/940
  53136. }
  53137. },
  53138. },
  53139. [
  53140. {
  53141. name: "Normal",
  53142. height: math.unit(2 + 3/12, "feet"),
  53143. default: true
  53144. },
  53145. ]
  53146. ))
  53147. characterMakers.push(() => makeCharacter(
  53148. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  53149. {
  53150. front: {
  53151. height: math.unit(5 + 4/12, "feet"),
  53152. weight: math.unit(156, "lb"),
  53153. name: "Front",
  53154. image: {
  53155. source: "./media/characters/dein/front.svg",
  53156. extra: 855/815,
  53157. bottom: 48/903
  53158. }
  53159. },
  53160. side: {
  53161. height: math.unit(5 + 4/12, "feet"),
  53162. weight: math.unit(156, "lb"),
  53163. name: "side",
  53164. image: {
  53165. source: "./media/characters/dein/side.svg",
  53166. extra: 846/803,
  53167. bottom: 25/871
  53168. }
  53169. },
  53170. maw: {
  53171. height: math.unit(1.45, "feet"),
  53172. name: "Maw",
  53173. image: {
  53174. source: "./media/characters/dein/maw.svg"
  53175. }
  53176. },
  53177. },
  53178. [
  53179. {
  53180. name: "Ferret Sized",
  53181. height: math.unit(2 + 5/12, "feet")
  53182. },
  53183. {
  53184. name: "Normal",
  53185. height: math.unit(5 + 4/12, "feet"),
  53186. default: true
  53187. },
  53188. ]
  53189. ))
  53190. characterMakers.push(() => makeCharacter(
  53191. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  53192. {
  53193. front: {
  53194. height: math.unit(84 + 8/12, "feet"),
  53195. weight: math.unit(942180, "lb"),
  53196. name: "Front",
  53197. image: {
  53198. source: "./media/characters/daurine-arima/front.svg",
  53199. extra: 1989/1782,
  53200. bottom: 37/2026
  53201. }
  53202. },
  53203. side: {
  53204. height: math.unit(84 + 8/12, "feet"),
  53205. weight: math.unit(942180, "lb"),
  53206. name: "Side",
  53207. image: {
  53208. source: "./media/characters/daurine-arima/side.svg",
  53209. extra: 1997/1790,
  53210. bottom: 21/2018
  53211. }
  53212. },
  53213. back: {
  53214. height: math.unit(84 + 8/12, "feet"),
  53215. weight: math.unit(942180, "lb"),
  53216. name: "Back",
  53217. image: {
  53218. source: "./media/characters/daurine-arima/back.svg",
  53219. extra: 1992/1800,
  53220. bottom: 12/2004
  53221. }
  53222. },
  53223. head: {
  53224. height: math.unit(15.5, "feet"),
  53225. name: "Head",
  53226. image: {
  53227. source: "./media/characters/daurine-arima/head.svg"
  53228. }
  53229. },
  53230. headAlt: {
  53231. height: math.unit(19.19, "feet"),
  53232. name: "Head (Alt)",
  53233. image: {
  53234. source: "./media/characters/daurine-arima/head-alt.svg"
  53235. }
  53236. },
  53237. },
  53238. [
  53239. {
  53240. name: "Minimum height",
  53241. height: math.unit(8 + 10/12, "feet")
  53242. },
  53243. {
  53244. name: "Comfort height",
  53245. height: math.unit(19 + 6 /12, "feet")
  53246. },
  53247. {
  53248. name: "\"Normal\" height",
  53249. height: math.unit(28 + 10/12, "feet")
  53250. },
  53251. {
  53252. name: "Base height",
  53253. height: math.unit(84 + 8/12, "feet"),
  53254. default: true
  53255. },
  53256. {
  53257. name: "Mini-macro",
  53258. height: math.unit(2360, "feet")
  53259. },
  53260. {
  53261. name: "Macro",
  53262. height: math.unit(10, "miles")
  53263. },
  53264. {
  53265. name: "Goddess",
  53266. height: math.unit(9.99e40, "yottameters")
  53267. },
  53268. ]
  53269. ))
  53270. characterMakers.push(() => makeCharacter(
  53271. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  53272. {
  53273. front: {
  53274. height: math.unit(2.3, "meters"),
  53275. name: "Front",
  53276. image: {
  53277. source: "./media/characters/cilenomon/front.svg",
  53278. extra: 1963/1778,
  53279. bottom: 54/2017
  53280. }
  53281. },
  53282. },
  53283. [
  53284. {
  53285. name: "Normal",
  53286. height: math.unit(2.3, "meters"),
  53287. default: true
  53288. },
  53289. {
  53290. name: "Big",
  53291. height: math.unit(5, "meters")
  53292. },
  53293. {
  53294. name: "Macro",
  53295. height: math.unit(30, "meters")
  53296. },
  53297. {
  53298. name: "True",
  53299. height: math.unit(1, "universe")
  53300. },
  53301. ]
  53302. ))
  53303. characterMakers.push(() => makeCharacter(
  53304. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  53305. {
  53306. front: {
  53307. height: math.unit(5, "feet"),
  53308. name: "Front",
  53309. image: {
  53310. source: "./media/characters/sen-mink/front.svg",
  53311. extra: 1727/1675,
  53312. bottom: 35/1762
  53313. }
  53314. },
  53315. },
  53316. [
  53317. {
  53318. name: "Normal",
  53319. height: math.unit(5, "feet"),
  53320. default: true
  53321. },
  53322. ]
  53323. ))
  53324. characterMakers.push(() => makeCharacter(
  53325. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  53326. {
  53327. front: {
  53328. height: math.unit(5.42999, "feet"),
  53329. weight: math.unit(100, "lb"),
  53330. name: "Front",
  53331. image: {
  53332. source: "./media/characters/ophois/front.svg",
  53333. extra: 1429/1286,
  53334. bottom: 60/1489
  53335. }
  53336. },
  53337. },
  53338. [
  53339. {
  53340. name: "Normal",
  53341. height: math.unit(5.42999, "feet"),
  53342. default: true
  53343. },
  53344. ]
  53345. ))
  53346. characterMakers.push(() => makeCharacter(
  53347. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  53348. {
  53349. front: {
  53350. height: math.unit(2, "meters"),
  53351. name: "Front",
  53352. image: {
  53353. source: "./media/characters/riley/front.svg",
  53354. extra: 1779/1754,
  53355. bottom: 139/1918
  53356. }
  53357. },
  53358. },
  53359. [
  53360. {
  53361. name: "Normal",
  53362. height: math.unit(2, "meters"),
  53363. default: true
  53364. },
  53365. ]
  53366. ))
  53367. characterMakers.push(() => makeCharacter(
  53368. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  53369. {
  53370. front: {
  53371. height: math.unit(6 + 2/12, "feet"),
  53372. weight: math.unit(195, "lb"),
  53373. preyCapacity: math.unit(6, "people"),
  53374. name: "Front",
  53375. image: {
  53376. source: "./media/characters/shuken-flash/front.svg",
  53377. extra: 1905/1739,
  53378. bottom: 65/1970
  53379. }
  53380. },
  53381. back: {
  53382. height: math.unit(6 + 2/12, "feet"),
  53383. weight: math.unit(195, "lb"),
  53384. preyCapacity: math.unit(6, "people"),
  53385. name: "Back",
  53386. image: {
  53387. source: "./media/characters/shuken-flash/back.svg",
  53388. extra: 1912/1751,
  53389. bottom: 13/1925
  53390. }
  53391. },
  53392. },
  53393. [
  53394. {
  53395. name: "Normal",
  53396. height: math.unit(6 + 2/12, "feet"),
  53397. default: true
  53398. },
  53399. ]
  53400. ))
  53401. characterMakers.push(() => makeCharacter(
  53402. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  53403. {
  53404. front: {
  53405. height: math.unit(5 + 9/12, "feet"),
  53406. weight: math.unit(150, "lb"),
  53407. name: "Front",
  53408. image: {
  53409. source: "./media/characters/plat/front.svg",
  53410. extra: 1816/1703,
  53411. bottom: 43/1859
  53412. }
  53413. },
  53414. side: {
  53415. height: math.unit(5 + 9/12, "feet"),
  53416. weight: math.unit(300, "lb"),
  53417. name: "Side",
  53418. image: {
  53419. source: "./media/characters/plat/side.svg",
  53420. extra: 1824/1699,
  53421. bottom: 18/1842
  53422. }
  53423. },
  53424. },
  53425. [
  53426. {
  53427. name: "Normal",
  53428. height: math.unit(5 + 9/12, "feet"),
  53429. default: true
  53430. },
  53431. ]
  53432. ))
  53433. characterMakers.push(() => makeCharacter(
  53434. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  53435. {
  53436. front: {
  53437. height: math.unit(9, "feet"),
  53438. weight: math.unit(1800, "lb"),
  53439. name: "Front",
  53440. image: {
  53441. source: "./media/characters/elaine/front.svg",
  53442. extra: 1833/1354,
  53443. bottom: 25/1858
  53444. }
  53445. },
  53446. back: {
  53447. height: math.unit(8.8, "feet"),
  53448. weight: math.unit(1800, "lb"),
  53449. name: "Back",
  53450. image: {
  53451. source: "./media/characters/elaine/back.svg",
  53452. extra: 1641/1233,
  53453. bottom: 53/1694
  53454. }
  53455. },
  53456. },
  53457. [
  53458. {
  53459. name: "Normal",
  53460. height: math.unit(9, "feet"),
  53461. default: true
  53462. },
  53463. ]
  53464. ))
  53465. characterMakers.push(() => makeCharacter(
  53466. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  53467. {
  53468. front: {
  53469. height: math.unit(17 + 9/12, "feet"),
  53470. weight: math.unit(8000, "lb"),
  53471. name: "Front",
  53472. image: {
  53473. source: "./media/characters/vera-raven/front.svg",
  53474. extra: 1457/1412,
  53475. bottom: 121/1578
  53476. }
  53477. },
  53478. side: {
  53479. height: math.unit(17 + 9/12, "feet"),
  53480. weight: math.unit(8000, "lb"),
  53481. name: "Side",
  53482. image: {
  53483. source: "./media/characters/vera-raven/side.svg",
  53484. extra: 1510/1464,
  53485. bottom: 54/1564
  53486. }
  53487. },
  53488. },
  53489. [
  53490. {
  53491. name: "Normal",
  53492. height: math.unit(17 + 9/12, "feet"),
  53493. default: true
  53494. },
  53495. ]
  53496. ))
  53497. characterMakers.push(() => makeCharacter(
  53498. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  53499. {
  53500. dressed: {
  53501. height: math.unit(6 + 9/12, "feet"),
  53502. name: "Dressed",
  53503. image: {
  53504. source: "./media/characters/nakisha/dressed.svg",
  53505. extra: 1909/1757,
  53506. bottom: 48/1957
  53507. }
  53508. },
  53509. nude: {
  53510. height: math.unit(6 + 9/12, "feet"),
  53511. name: "Nude",
  53512. image: {
  53513. source: "./media/characters/nakisha/nude.svg",
  53514. extra: 1917/1765,
  53515. bottom: 34/1951
  53516. }
  53517. },
  53518. },
  53519. [
  53520. {
  53521. name: "Normal",
  53522. height: math.unit(6 + 9/12, "feet"),
  53523. default: true
  53524. },
  53525. ]
  53526. ))
  53527. characterMakers.push(() => makeCharacter(
  53528. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  53529. {
  53530. front: {
  53531. height: math.unit(87, "meters"),
  53532. name: "Front",
  53533. image: {
  53534. source: "./media/characters/serafin/front.svg",
  53535. extra: 1919/1776,
  53536. bottom: 65/1984
  53537. }
  53538. },
  53539. },
  53540. [
  53541. {
  53542. name: "Normal",
  53543. height: math.unit(87, "meters"),
  53544. default: true
  53545. },
  53546. ]
  53547. ))
  53548. characterMakers.push(() => makeCharacter(
  53549. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  53550. {
  53551. front: {
  53552. height: math.unit(6, "feet"),
  53553. weight: math.unit(200, "lb"),
  53554. name: "Front",
  53555. image: {
  53556. source: "./media/characters/poptart/front.svg",
  53557. extra: 615/583,
  53558. bottom: 23/638
  53559. }
  53560. },
  53561. back: {
  53562. height: math.unit(6, "feet"),
  53563. weight: math.unit(200, "lb"),
  53564. name: "Back",
  53565. image: {
  53566. source: "./media/characters/poptart/back.svg",
  53567. extra: 617/584,
  53568. bottom: 22/639
  53569. }
  53570. },
  53571. frontNsfw: {
  53572. height: math.unit(6, "feet"),
  53573. weight: math.unit(200, "lb"),
  53574. name: "Front (NSFW)",
  53575. image: {
  53576. source: "./media/characters/poptart/front-nsfw.svg",
  53577. extra: 615/583,
  53578. bottom: 23/638
  53579. }
  53580. },
  53581. backNsfw: {
  53582. height: math.unit(6, "feet"),
  53583. weight: math.unit(200, "lb"),
  53584. name: "Back (NSFW)",
  53585. image: {
  53586. source: "./media/characters/poptart/back-nsfw.svg",
  53587. extra: 617/584,
  53588. bottom: 22/639
  53589. }
  53590. },
  53591. hand: {
  53592. height: math.unit(1.14, "feet"),
  53593. name: "Hand",
  53594. image: {
  53595. source: "./media/characters/poptart/hand.svg"
  53596. }
  53597. },
  53598. foot: {
  53599. height: math.unit(1.5, "feet"),
  53600. name: "Foot",
  53601. image: {
  53602. source: "./media/characters/poptart/foot.svg"
  53603. }
  53604. },
  53605. },
  53606. [
  53607. {
  53608. name: "Normal",
  53609. height: math.unit(6, "feet"),
  53610. default: true
  53611. },
  53612. {
  53613. name: "Grande",
  53614. height: math.unit(350, "feet")
  53615. },
  53616. {
  53617. name: "Massif",
  53618. height: math.unit(967, "feet")
  53619. },
  53620. ]
  53621. ))
  53622. characterMakers.push(() => makeCharacter(
  53623. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  53624. {
  53625. hyenaSide: {
  53626. height: math.unit(120, "cm"),
  53627. weight: math.unit(120, "lb"),
  53628. name: "Side",
  53629. image: {
  53630. source: "./media/characters/trance/hyena-side.svg",
  53631. extra: 998/904,
  53632. bottom: 76/1074
  53633. }
  53634. },
  53635. },
  53636. [
  53637. {
  53638. name: "Normal",
  53639. height: math.unit(120, "cm"),
  53640. default: true
  53641. },
  53642. {
  53643. name: "Dire",
  53644. height: math.unit(230, "cm")
  53645. },
  53646. {
  53647. name: "Macro",
  53648. height: math.unit(37, "feet")
  53649. },
  53650. ]
  53651. ))
  53652. characterMakers.push(() => makeCharacter(
  53653. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  53654. {
  53655. front: {
  53656. height: math.unit(6 + 3/12, "feet"),
  53657. name: "Front",
  53658. image: {
  53659. source: "./media/characters/michael-berretta/front.svg",
  53660. extra: 515/494,
  53661. bottom: 20/535
  53662. }
  53663. },
  53664. back: {
  53665. height: math.unit(6 + 3/12, "feet"),
  53666. name: "Back",
  53667. image: {
  53668. source: "./media/characters/michael-berretta/back.svg",
  53669. extra: 520/497,
  53670. bottom: 21/541
  53671. }
  53672. },
  53673. frontNsfw: {
  53674. height: math.unit(6 + 3/12, "feet"),
  53675. name: "Front (NSFW)",
  53676. image: {
  53677. source: "./media/characters/michael-berretta/front-nsfw.svg",
  53678. extra: 515/494,
  53679. bottom: 20/535
  53680. }
  53681. },
  53682. dick: {
  53683. height: math.unit(1, "feet"),
  53684. name: "Dick",
  53685. image: {
  53686. source: "./media/characters/michael-berretta/dick.svg"
  53687. }
  53688. },
  53689. },
  53690. [
  53691. {
  53692. name: "Normal",
  53693. height: math.unit(6 + 3/12, "feet"),
  53694. default: true
  53695. },
  53696. {
  53697. name: "Big",
  53698. height: math.unit(12, "feet")
  53699. },
  53700. {
  53701. name: "Macro",
  53702. height: math.unit(187.5, "feet")
  53703. },
  53704. ]
  53705. ))
  53706. characterMakers.push(() => makeCharacter(
  53707. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  53708. {
  53709. front: {
  53710. height: math.unit(9 + 9/12, "feet"),
  53711. weight: math.unit(1244, "lb"),
  53712. name: "Front",
  53713. image: {
  53714. source: "./media/characters/stella-edgecomb/front.svg",
  53715. extra: 1835/1706,
  53716. bottom: 49/1884
  53717. }
  53718. },
  53719. pen: {
  53720. height: math.unit(0.95, "feet"),
  53721. name: "Pen",
  53722. image: {
  53723. source: "./media/characters/stella-edgecomb/pen.svg"
  53724. }
  53725. },
  53726. },
  53727. [
  53728. {
  53729. name: "Cozy Bear",
  53730. height: math.unit(0.5, "inches")
  53731. },
  53732. {
  53733. name: "Normal",
  53734. height: math.unit(9 + 9/12, "feet"),
  53735. default: true
  53736. },
  53737. {
  53738. name: "Giga Bear",
  53739. height: math.unit(1, "mile")
  53740. },
  53741. {
  53742. name: "Great Bear",
  53743. height: math.unit(53, "miles")
  53744. },
  53745. {
  53746. name: "Goddess Bear",
  53747. height: math.unit(40000, "miles")
  53748. },
  53749. {
  53750. name: "Sun Bear",
  53751. height: math.unit(900000, "miles")
  53752. },
  53753. ]
  53754. ))
  53755. characterMakers.push(() => makeCharacter(
  53756. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  53757. {
  53758. anthroFront: {
  53759. height: math.unit(556, "cm"),
  53760. weight: math.unit(2650, "kg"),
  53761. preyCapacity: math.unit(3, "people"),
  53762. name: "Front",
  53763. image: {
  53764. source: "./media/characters/ash´iika/front.svg",
  53765. extra: 710/673,
  53766. bottom: 15/725
  53767. },
  53768. form: "anthro",
  53769. default: true
  53770. },
  53771. anthroSide: {
  53772. height: math.unit(556, "cm"),
  53773. weight: math.unit(2650, "kg"),
  53774. preyCapacity: math.unit(3, "people"),
  53775. name: "Side",
  53776. image: {
  53777. source: "./media/characters/ash´iika/side.svg",
  53778. extra: 696/676,
  53779. bottom: 13/709
  53780. },
  53781. form: "anthro"
  53782. },
  53783. anthroDressed: {
  53784. height: math.unit(556, "cm"),
  53785. weight: math.unit(2650, "kg"),
  53786. preyCapacity: math.unit(3, "people"),
  53787. name: "Dressed",
  53788. image: {
  53789. source: "./media/characters/ash´iika/dressed.svg",
  53790. extra: 710/673,
  53791. bottom: 15/725
  53792. },
  53793. form: "anthro"
  53794. },
  53795. anthroHead: {
  53796. height: math.unit(3.5, "feet"),
  53797. name: "Head",
  53798. image: {
  53799. source: "./media/characters/ash´iika/head.svg",
  53800. extra: 348/291,
  53801. bottom: 45/393
  53802. },
  53803. form: "anthro"
  53804. },
  53805. feralSide: {
  53806. height: math.unit(870, "cm"),
  53807. weight: math.unit(17500, "kg"),
  53808. preyCapacity: math.unit(15, "people"),
  53809. name: "Side",
  53810. image: {
  53811. source: "./media/characters/ash´iika/feral.svg",
  53812. extra: 595/199,
  53813. bottom: 7/602
  53814. },
  53815. form: "feral",
  53816. default: true,
  53817. },
  53818. },
  53819. [
  53820. {
  53821. name: "Normal",
  53822. height: math.unit(556, "cm"),
  53823. default: true,
  53824. form: "anthro"
  53825. },
  53826. {
  53827. name: "Macro",
  53828. height: math.unit(88, "meters"),
  53829. form: "anthro"
  53830. },
  53831. {
  53832. name: "Normal",
  53833. height: math.unit(870, "cm"),
  53834. default: true,
  53835. form: "feral"
  53836. },
  53837. {
  53838. name: "Large",
  53839. height: math.unit(25, "meters"),
  53840. form: "feral"
  53841. },
  53842. ],
  53843. {
  53844. "anthro": {
  53845. name: "Anthro",
  53846. default: true
  53847. },
  53848. "feral": {
  53849. name: "Feral",
  53850. },
  53851. }
  53852. ))
  53853. characterMakers.push(() => makeCharacter(
  53854. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  53855. {
  53856. front: {
  53857. height: math.unit(10, "feet"),
  53858. weight: math.unit(800, "lb"),
  53859. name: "Front",
  53860. image: {
  53861. source: "./media/characters/yen/front.svg",
  53862. extra: 443/411,
  53863. bottom: 6/449
  53864. }
  53865. },
  53866. sleeping: {
  53867. height: math.unit(10, "feet"),
  53868. weight: math.unit(800, "lb"),
  53869. name: "Sleeping",
  53870. image: {
  53871. source: "./media/characters/yen/sleeping.svg",
  53872. extra: 470/422,
  53873. bottom: 0/470
  53874. }
  53875. },
  53876. head: {
  53877. height: math.unit(2.2, "feet"),
  53878. name: "Head",
  53879. image: {
  53880. source: "./media/characters/yen/head.svg"
  53881. }
  53882. },
  53883. headAlt: {
  53884. height: math.unit(2.1, "feet"),
  53885. name: "Head (Alt)",
  53886. image: {
  53887. source: "./media/characters/yen/head-alt.svg"
  53888. }
  53889. },
  53890. },
  53891. [
  53892. {
  53893. name: "Normal",
  53894. height: math.unit(10, "feet"),
  53895. default: true
  53896. },
  53897. ]
  53898. ))
  53899. characterMakers.push(() => makeCharacter(
  53900. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  53901. {
  53902. front: {
  53903. height: math.unit(12, "feet"),
  53904. name: "Front",
  53905. image: {
  53906. source: "./media/characters/citra/front.svg",
  53907. extra: 1950/1710,
  53908. bottom: 47/1997
  53909. }
  53910. },
  53911. },
  53912. [
  53913. {
  53914. name: "Normal",
  53915. height: math.unit(12, "feet"),
  53916. default: true
  53917. },
  53918. ]
  53919. ))
  53920. characterMakers.push(() => makeCharacter(
  53921. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  53922. {
  53923. side: {
  53924. height: math.unit(7 + 10/12, "feet"),
  53925. name: "Side",
  53926. image: {
  53927. source: "./media/characters/sholstim/side.svg",
  53928. extra: 786/682,
  53929. bottom: 40/826
  53930. }
  53931. },
  53932. },
  53933. [
  53934. {
  53935. name: "Normal",
  53936. height: math.unit(7 + 10/12, "feet"),
  53937. default: true
  53938. },
  53939. ]
  53940. ))
  53941. characterMakers.push(() => makeCharacter(
  53942. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  53943. {
  53944. front: {
  53945. height: math.unit(3.10, "meters"),
  53946. name: "Front",
  53947. image: {
  53948. source: "./media/characters/aggyn/front.svg",
  53949. extra: 1188/963,
  53950. bottom: 24/1212
  53951. }
  53952. },
  53953. },
  53954. [
  53955. {
  53956. name: "Normal",
  53957. height: math.unit(3.10, "meters"),
  53958. default: true
  53959. },
  53960. ]
  53961. ))
  53962. characterMakers.push(() => makeCharacter(
  53963. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  53964. {
  53965. front: {
  53966. height: math.unit(7 + 5/12, "feet"),
  53967. weight: math.unit(687, "lb"),
  53968. name: "Front",
  53969. image: {
  53970. source: "./media/characters/alsandair-hergenroether/front.svg",
  53971. extra: 1251/1186,
  53972. bottom: 75/1326
  53973. }
  53974. },
  53975. back: {
  53976. height: math.unit(7 + 5/12, "feet"),
  53977. weight: math.unit(687, "lb"),
  53978. name: "Back",
  53979. image: {
  53980. source: "./media/characters/alsandair-hergenroether/back.svg",
  53981. extra: 1290/1229,
  53982. bottom: 17/1307
  53983. }
  53984. },
  53985. },
  53986. [
  53987. {
  53988. name: "Max Compression",
  53989. height: math.unit(7 + 5/12, "feet"),
  53990. default: true
  53991. },
  53992. {
  53993. name: "\"Normal\"",
  53994. height: math.unit(2, "universes")
  53995. },
  53996. ]
  53997. ))
  53998. characterMakers.push(() => makeCharacter(
  53999. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  54000. {
  54001. front: {
  54002. height: math.unit(4 + 1/12, "feet"),
  54003. weight: math.unit(92, "lb"),
  54004. name: "Front",
  54005. image: {
  54006. source: "./media/characters/ie/front.svg",
  54007. extra: 1585/1352,
  54008. bottom: 91/1676
  54009. }
  54010. },
  54011. },
  54012. [
  54013. {
  54014. name: "Normal",
  54015. height: math.unit(4 + 1/12, "feet"),
  54016. default: true
  54017. },
  54018. ]
  54019. ))
  54020. characterMakers.push(() => makeCharacter(
  54021. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  54022. {
  54023. anthro: {
  54024. height: math.unit(6, "feet"),
  54025. weight: math.unit(150, "lb"),
  54026. name: "Front",
  54027. image: {
  54028. source: "./media/characters/willow/anthro.svg",
  54029. extra: 1073/986,
  54030. bottom: 34/1107
  54031. },
  54032. form: "anthro",
  54033. default: true
  54034. },
  54035. taur: {
  54036. height: math.unit(6, "feet"),
  54037. weight: math.unit(150, "lb"),
  54038. name: "Side",
  54039. image: {
  54040. source: "./media/characters/willow/taur.svg",
  54041. extra: 647/512,
  54042. bottom: 136/783
  54043. },
  54044. form: "taur",
  54045. default: true
  54046. },
  54047. },
  54048. [
  54049. {
  54050. name: "Humanoid",
  54051. height: math.unit(2.7, "meters"),
  54052. form: "anthro"
  54053. },
  54054. {
  54055. name: "Normal",
  54056. height: math.unit(9, "meters"),
  54057. form: "anthro",
  54058. default: true
  54059. },
  54060. {
  54061. name: "Humanoid",
  54062. height: math.unit(2.1, "meters"),
  54063. form: "taur"
  54064. },
  54065. {
  54066. name: "Normal",
  54067. height: math.unit(7, "meters"),
  54068. form: "taur",
  54069. default: true
  54070. },
  54071. ],
  54072. {
  54073. "anthro": {
  54074. name: "Anthro",
  54075. default: true
  54076. },
  54077. "taur": {
  54078. name: "Taur",
  54079. },
  54080. }
  54081. ))
  54082. characterMakers.push(() => makeCharacter(
  54083. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  54084. {
  54085. front: {
  54086. height: math.unit(2 + 5/12, "feet"),
  54087. name: "Front",
  54088. image: {
  54089. source: "./media/characters/kyan/front.svg",
  54090. extra: 460/334,
  54091. bottom: 23/483
  54092. },
  54093. extraAttributes: {
  54094. "toeLength": {
  54095. name: "Toe Length",
  54096. power: 1,
  54097. type: "length",
  54098. base: math.unit(7, "cm")
  54099. },
  54100. "toeclawLength": {
  54101. name: "Toeclaw Length",
  54102. power: 1,
  54103. type: "length",
  54104. base: math.unit(4.7, "cm")
  54105. },
  54106. "earHeight": {
  54107. name: "Ear Height",
  54108. power: 1,
  54109. type: "length",
  54110. base: math.unit(14.1, "cm")
  54111. },
  54112. }
  54113. },
  54114. paws: {
  54115. height: math.unit(0.45, "feet"),
  54116. name: "Paws",
  54117. image: {
  54118. source: "./media/characters/kyan/paws.svg",
  54119. extra: 581/581,
  54120. bottom: 114/695
  54121. }
  54122. },
  54123. },
  54124. [
  54125. {
  54126. name: "Normal",
  54127. height: math.unit(2 + 5/12, "feet"),
  54128. default: true
  54129. },
  54130. ]
  54131. ))
  54132. characterMakers.push(() => makeCharacter(
  54133. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  54134. {
  54135. front: {
  54136. height: math.unit(2 + 2/3, "feet"),
  54137. name: "Front",
  54138. image: {
  54139. source: "./media/characters/xazzon/front.svg",
  54140. extra: 1109/984,
  54141. bottom: 42/1151
  54142. }
  54143. },
  54144. back: {
  54145. height: math.unit(2 + 2/3, "feet"),
  54146. name: "Back",
  54147. image: {
  54148. source: "./media/characters/xazzon/back.svg",
  54149. extra: 1095/971,
  54150. bottom: 23/1118
  54151. }
  54152. },
  54153. },
  54154. [
  54155. {
  54156. name: "Normal",
  54157. height: math.unit(2 + 2/3, "feet"),
  54158. default: true
  54159. },
  54160. ]
  54161. ))
  54162. characterMakers.push(() => makeCharacter(
  54163. { name: "Aurora Beagsidhe", species: ["catgirl"], tags: ["anthro"] },
  54164. {
  54165. dressed: {
  54166. height: math.unit(5 + 7/12, "feet"),
  54167. weight: math.unit(173, "lb"),
  54168. name: "Dressed",
  54169. image: {
  54170. source: "./media/characters/aurora-beagsidhe/dressed.svg",
  54171. extra: 3262/2862,
  54172. bottom: 188/3450
  54173. }
  54174. },
  54175. undressed: {
  54176. height: math.unit(5 + 7/12, "feet"),
  54177. weight: math.unit(173, "lb"),
  54178. name: "Undressed",
  54179. image: {
  54180. source: "./media/characters/aurora-beagsidhe/undressed.svg",
  54181. extra: 3262/2862,
  54182. bottom: 188/3450
  54183. }
  54184. },
  54185. },
  54186. [
  54187. {
  54188. name: "The void",
  54189. height: math.unit(7.29193e-34, "angstroms")
  54190. },
  54191. {
  54192. name: "Uh-Oh.",
  54193. height: math.unit(5.734e-7, "angstroms")
  54194. },
  54195. {
  54196. name: "Pico",
  54197. height: math.unit(0.876, "angstroms")
  54198. },
  54199. {
  54200. name: "Nano",
  54201. height: math.unit(0.000134200, "mm")
  54202. },
  54203. {
  54204. name: "Micro",
  54205. height: math.unit(0.0673020, "mm")
  54206. },
  54207. {
  54208. name: "Tiny",
  54209. height: math.unit(2.4, "mm")
  54210. },
  54211. {
  54212. name: "Actual Normal",
  54213. height: math.unit(3, "inches"),
  54214. default: true
  54215. },
  54216. {
  54217. name: "Normal",
  54218. height: math.unit(5 + 8/12, "feet")
  54219. },
  54220. {
  54221. name: "Giant",
  54222. height: math.unit(12, "feet")
  54223. },
  54224. {
  54225. name: "City Ruler",
  54226. height: math.unit(270, "meters")
  54227. },
  54228. {
  54229. name: "Giga",
  54230. height: math.unit(1117.6, "km")
  54231. },
  54232. {
  54233. name: "All-Powerful Queen",
  54234. height: math.unit(70.8, "gigameters")
  54235. },
  54236. {
  54237. name: "'Goddess'",
  54238. height: math.unit(600, "yottameters")
  54239. },
  54240. {
  54241. name: "Biggest!",
  54242. height: math.unit(4.23e5, "yottameters")
  54243. },
  54244. ]
  54245. ))
  54246. characterMakers.push(() => makeCharacter(
  54247. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  54248. {
  54249. front: {
  54250. height: math.unit(8, "feet"),
  54251. weight: math.unit(300, "lb"),
  54252. name: "Front",
  54253. image: {
  54254. source: "./media/characters/khyla-shadowsong/front.svg",
  54255. extra: 861/798,
  54256. bottom: 32/893
  54257. }
  54258. },
  54259. side: {
  54260. height: math.unit(8, "feet"),
  54261. weight: math.unit(300, "lb"),
  54262. name: "Side",
  54263. image: {
  54264. source: "./media/characters/khyla-shadowsong/side.svg",
  54265. extra: 790/750,
  54266. bottom: 87/877
  54267. }
  54268. },
  54269. back: {
  54270. height: math.unit(8, "feet"),
  54271. weight: math.unit(300, "lb"),
  54272. name: "Back",
  54273. image: {
  54274. source: "./media/characters/khyla-shadowsong/back.svg",
  54275. extra: 855/808,
  54276. bottom: 14/869
  54277. }
  54278. },
  54279. head: {
  54280. height: math.unit(2.7, "feet"),
  54281. name: "Head",
  54282. image: {
  54283. source: "./media/characters/khyla-shadowsong/head.svg"
  54284. }
  54285. },
  54286. },
  54287. [
  54288. {
  54289. name: "Micro",
  54290. height: math.unit(6, "inches")
  54291. },
  54292. {
  54293. name: "Normal",
  54294. height: math.unit(8, "feet"),
  54295. default: true
  54296. },
  54297. ]
  54298. ))
  54299. characterMakers.push(() => makeCharacter(
  54300. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  54301. {
  54302. hyperFront: {
  54303. height: math.unit(9 + 4/12, "feet"),
  54304. weight: math.unit(2000, "lb"),
  54305. name: "Front",
  54306. image: {
  54307. source: "./media/characters/tiden/hyper-front.svg",
  54308. extra: 400/382,
  54309. bottom: 6/406
  54310. },
  54311. form: "hyper",
  54312. },
  54313. regularFront: {
  54314. height: math.unit(7 + 10/12, "feet"),
  54315. weight: math.unit(470, "lb"),
  54316. name: "Front",
  54317. image: {
  54318. source: "./media/characters/tiden/regular-front.svg",
  54319. extra: 468/442,
  54320. bottom: 6/474
  54321. },
  54322. form: "regular",
  54323. },
  54324. },
  54325. [
  54326. {
  54327. name: "Normal",
  54328. height: math.unit(9 + 4/12, "feet"),
  54329. default: true,
  54330. form: "hyper"
  54331. },
  54332. {
  54333. name: "Normal",
  54334. height: math.unit(7 + 10/12, "feet"),
  54335. default: true,
  54336. form: "regular"
  54337. },
  54338. ],
  54339. {
  54340. "hyper": {
  54341. name: "Hyper",
  54342. default: true
  54343. },
  54344. "regular": {
  54345. name: "Regular",
  54346. },
  54347. }
  54348. ))
  54349. characterMakers.push(() => makeCharacter(
  54350. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  54351. {
  54352. side: {
  54353. height: math.unit(6, "feet"),
  54354. weight: math.unit(150, "lb"),
  54355. name: "Side",
  54356. image: {
  54357. source: "./media/characters/jason-crowe/side.svg",
  54358. extra: 1771/766,
  54359. bottom: 219/1990
  54360. }
  54361. },
  54362. },
  54363. [
  54364. {
  54365. name: "Pocket Gryphon",
  54366. height: math.unit(6, "cm")
  54367. },
  54368. {
  54369. name: "Raven",
  54370. height: math.unit(60, "cm")
  54371. },
  54372. {
  54373. name: "Normal",
  54374. height: math.unit(1, "meter"),
  54375. default: true
  54376. },
  54377. ]
  54378. ))
  54379. characterMakers.push(() => makeCharacter(
  54380. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  54381. {
  54382. front: {
  54383. height: math.unit(9 + 6/12, "feet"),
  54384. weight: math.unit(1100, "lb"),
  54385. name: "Front",
  54386. image: {
  54387. source: "./media/characters/django/front.svg",
  54388. extra: 1231/1136,
  54389. bottom: 34/1265
  54390. }
  54391. },
  54392. side: {
  54393. height: math.unit(9 + 6/12, "feet"),
  54394. weight: math.unit(1100, "lb"),
  54395. name: "Side",
  54396. image: {
  54397. source: "./media/characters/django/side.svg",
  54398. extra: 1267/1174,
  54399. bottom: 9/1276
  54400. }
  54401. },
  54402. },
  54403. [
  54404. {
  54405. name: "Normal",
  54406. height: math.unit(9 + 6/12, "feet"),
  54407. default: true
  54408. },
  54409. {
  54410. name: "Macro 1",
  54411. height: math.unit(50, "feet")
  54412. },
  54413. {
  54414. name: "Macro 2",
  54415. height: math.unit(500, "feet")
  54416. },
  54417. {
  54418. name: "Mega Macro",
  54419. height: math.unit(5300, "feet")
  54420. },
  54421. ]
  54422. ))
  54423. characterMakers.push(() => makeCharacter(
  54424. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  54425. {
  54426. frontSfw: {
  54427. height: math.unit(120, "cm"),
  54428. weight: math.unit(15, "kg"),
  54429. name: "Front (SFW)",
  54430. image: {
  54431. source: "./media/characters/eri/front-sfw.svg",
  54432. extra: 1014/939,
  54433. bottom: 37/1051
  54434. },
  54435. form: "moth",
  54436. },
  54437. frontNsfw: {
  54438. height: math.unit(120, "cm"),
  54439. weight: math.unit(15, "kg"),
  54440. name: "Front (NSFW)",
  54441. image: {
  54442. source: "./media/characters/eri/front-nsfw.svg",
  54443. extra: 1014/939,
  54444. bottom: 37/1051
  54445. },
  54446. form: "moth",
  54447. default: true
  54448. },
  54449. egg: {
  54450. height: math.unit(10, "cm"),
  54451. name: "Egg",
  54452. image: {
  54453. source: "./media/characters/eri/egg.svg"
  54454. },
  54455. form: "egg",
  54456. default: true
  54457. },
  54458. },
  54459. [
  54460. {
  54461. name: "Normal",
  54462. height: math.unit(120, "cm"),
  54463. default: true,
  54464. form: "moth"
  54465. },
  54466. {
  54467. name: "Normal",
  54468. height: math.unit(10, "cm"),
  54469. default: true,
  54470. form: "egg"
  54471. },
  54472. ],
  54473. {
  54474. "moth": {
  54475. name: "Moth",
  54476. default: true
  54477. },
  54478. "egg": {
  54479. name: "Egg",
  54480. },
  54481. }
  54482. ))
  54483. characterMakers.push(() => makeCharacter(
  54484. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  54485. {
  54486. front: {
  54487. height: math.unit(200, "feet"),
  54488. name: "Front",
  54489. image: {
  54490. source: "./media/characters/bishop-dowser/front.svg",
  54491. extra: 933/868,
  54492. bottom: 106/1039
  54493. }
  54494. },
  54495. },
  54496. [
  54497. {
  54498. name: "Giant",
  54499. height: math.unit(200, "feet"),
  54500. default: true
  54501. },
  54502. ]
  54503. ))
  54504. characterMakers.push(() => makeCharacter(
  54505. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  54506. {
  54507. front: {
  54508. height: math.unit(2, "meters"),
  54509. preyCapacity: math.unit(3, "people"),
  54510. name: "Front",
  54511. image: {
  54512. source: "./media/characters/fryra/front.svg",
  54513. extra: 1025/948,
  54514. bottom: 30/1055
  54515. },
  54516. extraAttributes: {
  54517. "breastVolume": {
  54518. name: "Breast Volume",
  54519. power: 3,
  54520. type: "volume",
  54521. base: math.unit(8, "liters")
  54522. },
  54523. }
  54524. },
  54525. back: {
  54526. height: math.unit(2, "meters"),
  54527. preyCapacity: math.unit(3, "people"),
  54528. name: "Back",
  54529. image: {
  54530. source: "./media/characters/fryra/back.svg",
  54531. extra: 993/938,
  54532. bottom: 38/1031
  54533. },
  54534. extraAttributes: {
  54535. "breastVolume": {
  54536. name: "Breast Volume",
  54537. power: 3,
  54538. type: "volume",
  54539. base: math.unit(8, "liters")
  54540. },
  54541. }
  54542. },
  54543. head: {
  54544. height: math.unit(1.33, "feet"),
  54545. name: "Head",
  54546. image: {
  54547. source: "./media/characters/fryra/head.svg"
  54548. }
  54549. },
  54550. maw: {
  54551. height: math.unit(0.56, "feet"),
  54552. name: "Maw",
  54553. image: {
  54554. source: "./media/characters/fryra/maw.svg"
  54555. }
  54556. },
  54557. },
  54558. [
  54559. {
  54560. name: "Micro",
  54561. height: math.unit(5, "cm")
  54562. },
  54563. {
  54564. name: "Normal",
  54565. height: math.unit(2, "meters"),
  54566. default: true
  54567. },
  54568. {
  54569. name: "Small Macro",
  54570. height: math.unit(8, "meters")
  54571. },
  54572. {
  54573. name: "Macro",
  54574. height: math.unit(50, "meters")
  54575. },
  54576. {
  54577. name: "Megamacro",
  54578. height: math.unit(1, "km")
  54579. },
  54580. {
  54581. name: "Planetary",
  54582. height: math.unit(300000, "km")
  54583. },
  54584. {
  54585. name: "Universal",
  54586. height: math.unit(250, "lightyears")
  54587. },
  54588. {
  54589. name: "Fabric of Reality",
  54590. height: math.unit(1000, "multiverses")
  54591. },
  54592. ]
  54593. ))
  54594. characterMakers.push(() => makeCharacter(
  54595. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  54596. {
  54597. frontDressed: {
  54598. height: math.unit(6 + 2/12, "feet"),
  54599. name: "Front (Dressed)",
  54600. image: {
  54601. source: "./media/characters/fiera/front-dressed.svg",
  54602. extra: 1883/1793,
  54603. bottom: 70/1953
  54604. }
  54605. },
  54606. backDressed: {
  54607. height: math.unit(6 + 2/12, "feet"),
  54608. name: "Back (Dressed)",
  54609. image: {
  54610. source: "./media/characters/fiera/back-dressed.svg",
  54611. extra: 1847/1780,
  54612. bottom: 70/1917
  54613. }
  54614. },
  54615. frontNude: {
  54616. height: math.unit(6 + 2/12, "feet"),
  54617. name: "Front (Nude)",
  54618. image: {
  54619. source: "./media/characters/fiera/front-nude.svg",
  54620. extra: 1875/1785,
  54621. bottom: 66/1941
  54622. }
  54623. },
  54624. backNude: {
  54625. height: math.unit(6 + 2/12, "feet"),
  54626. name: "Back (Nude)",
  54627. image: {
  54628. source: "./media/characters/fiera/back-nude.svg",
  54629. extra: 1855/1788,
  54630. bottom: 44/1899
  54631. }
  54632. },
  54633. maw: {
  54634. height: math.unit(1.3, "feet"),
  54635. name: "Maw",
  54636. image: {
  54637. source: "./media/characters/fiera/maw.svg"
  54638. }
  54639. },
  54640. paw: {
  54641. height: math.unit(1, "feet"),
  54642. name: "Paw",
  54643. image: {
  54644. source: "./media/characters/fiera/paw.svg"
  54645. }
  54646. },
  54647. shoe: {
  54648. height: math.unit(1.05, "feet"),
  54649. name: "Shoe",
  54650. image: {
  54651. source: "./media/characters/fiera/shoe.svg"
  54652. }
  54653. },
  54654. },
  54655. [
  54656. {
  54657. name: "Normal",
  54658. height: math.unit(6 + 2/12, "feet"),
  54659. default: true
  54660. },
  54661. {
  54662. name: "Size Difference",
  54663. height: math.unit(13, "feet")
  54664. },
  54665. {
  54666. name: "Macro",
  54667. height: math.unit(60, "feet")
  54668. },
  54669. {
  54670. name: "Mega Macro",
  54671. height: math.unit(200, "feet")
  54672. },
  54673. ]
  54674. ))
  54675. characterMakers.push(() => makeCharacter(
  54676. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  54677. {
  54678. back: {
  54679. height: math.unit(6, "feet"),
  54680. name: "Back",
  54681. image: {
  54682. source: "./media/characters/flare/back.svg",
  54683. extra: 1883/1765,
  54684. bottom: 32/1915
  54685. }
  54686. },
  54687. },
  54688. [
  54689. {
  54690. name: "Normal",
  54691. height: math.unit(6 + 2/12, "feet"),
  54692. default: true
  54693. },
  54694. {
  54695. name: "Size Difference",
  54696. height: math.unit(13, "feet")
  54697. },
  54698. {
  54699. name: "Macro",
  54700. height: math.unit(60, "feet")
  54701. },
  54702. {
  54703. name: "Macro 2",
  54704. height: math.unit(100, "feet")
  54705. },
  54706. {
  54707. name: "Mega Macro",
  54708. height: math.unit(200, "feet")
  54709. },
  54710. ]
  54711. ))
  54712. characterMakers.push(() => makeCharacter(
  54713. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  54714. {
  54715. front: {
  54716. height: math.unit(2.2, "m"),
  54717. weight: math.unit(300, "kg"),
  54718. name: "Front",
  54719. image: {
  54720. source: "./media/characters/hanna/front.svg",
  54721. extra: 1696/1502,
  54722. bottom: 206/1902
  54723. }
  54724. },
  54725. },
  54726. [
  54727. {
  54728. name: "Humanoid",
  54729. height: math.unit(2.2, "meters")
  54730. },
  54731. {
  54732. name: "Normal",
  54733. height: math.unit(4.8, "meters"),
  54734. default: true
  54735. },
  54736. ]
  54737. ))
  54738. characterMakers.push(() => makeCharacter(
  54739. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  54740. {
  54741. front: {
  54742. height: math.unit(2.8, "meters"),
  54743. name: "Front",
  54744. image: {
  54745. source: "./media/characters/argo/front.svg",
  54746. extra: 731/518,
  54747. bottom: 84/815
  54748. }
  54749. },
  54750. },
  54751. [
  54752. {
  54753. name: "Normal",
  54754. height: math.unit(3, "meters"),
  54755. default: true
  54756. },
  54757. ]
  54758. ))
  54759. characterMakers.push(() => makeCharacter(
  54760. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  54761. {
  54762. side: {
  54763. height: math.unit(3.8, "meters"),
  54764. name: "Side",
  54765. image: {
  54766. source: "./media/characters/sybil/side.svg",
  54767. extra: 382/361,
  54768. bottom: 25/407
  54769. }
  54770. },
  54771. },
  54772. [
  54773. {
  54774. name: "Normal",
  54775. height: math.unit(3.8, "meters"),
  54776. default: true
  54777. },
  54778. ]
  54779. ))
  54780. characterMakers.push(() => makeCharacter(
  54781. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  54782. {
  54783. side: {
  54784. height: math.unit(6, "meters"),
  54785. name: "Side",
  54786. image: {
  54787. source: "./media/characters/plum/side.svg",
  54788. extra: 858/755,
  54789. bottom: 45/903
  54790. },
  54791. form: "taur",
  54792. default: true
  54793. },
  54794. back: {
  54795. height: math.unit(6.3, "meters"),
  54796. name: "Back",
  54797. image: {
  54798. source: "./media/characters/plum/back.svg",
  54799. extra: 887/813,
  54800. bottom: 32/919
  54801. },
  54802. form: "taur",
  54803. },
  54804. feral: {
  54805. height: math.unit(5.5, "meter"),
  54806. name: "Front",
  54807. image: {
  54808. source: "./media/characters/plum/feral.svg",
  54809. extra: 568/403,
  54810. bottom: 51/619
  54811. },
  54812. form: "feral",
  54813. default: true
  54814. },
  54815. head: {
  54816. height: math.unit(1.46, "meter"),
  54817. name: "Head",
  54818. image: {
  54819. source: "./media/characters/plum/head.svg"
  54820. },
  54821. form: "taur"
  54822. },
  54823. tailTop: {
  54824. height: math.unit(5.6, "meter"),
  54825. name: "Tail (Top)",
  54826. image: {
  54827. source: "./media/characters/plum/tail-top.svg"
  54828. },
  54829. form: "taur",
  54830. },
  54831. tailBottom: {
  54832. height: math.unit(5.6, "meter"),
  54833. name: "Tail (Bottom)",
  54834. image: {
  54835. source: "./media/characters/plum/tail-bottom.svg"
  54836. },
  54837. form: "taur",
  54838. },
  54839. feralHead: {
  54840. height: math.unit(2.56549521, "meter"),
  54841. name: "Head",
  54842. image: {
  54843. source: "./media/characters/plum/head.svg"
  54844. },
  54845. form: "feral"
  54846. },
  54847. feralTailTop: {
  54848. height: math.unit(5.44728435, "meter"),
  54849. name: "Tail (Top)",
  54850. image: {
  54851. source: "./media/characters/plum/tail-top.svg"
  54852. },
  54853. form: "feral",
  54854. },
  54855. feralTailBottom: {
  54856. height: math.unit(5.44728435, "meter"),
  54857. name: "Tail (Bottom)",
  54858. image: {
  54859. source: "./media/characters/plum/tail-bottom.svg"
  54860. },
  54861. form: "feral",
  54862. },
  54863. },
  54864. [
  54865. {
  54866. name: "Normal",
  54867. height: math.unit(6, "meters"),
  54868. default: true,
  54869. form: "taur"
  54870. },
  54871. {
  54872. name: "Normal",
  54873. height: math.unit(5.5, "meters"),
  54874. default: true,
  54875. form: "feral"
  54876. },
  54877. ],
  54878. {
  54879. "taur": {
  54880. name: "Taur",
  54881. default: true
  54882. },
  54883. "feral": {
  54884. name: "Feral",
  54885. },
  54886. }
  54887. ))
  54888. characterMakers.push(() => makeCharacter(
  54889. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  54890. {
  54891. front: {
  54892. height: math.unit(6, "feet"),
  54893. weight: math.unit(115, "lb"),
  54894. name: "Front",
  54895. image: {
  54896. source: "./media/characters/celeste-kitsune/front.svg",
  54897. extra: 393/366,
  54898. bottom: 7/400
  54899. }
  54900. },
  54901. side: {
  54902. height: math.unit(6, "feet"),
  54903. weight: math.unit(115, "lb"),
  54904. name: "Side",
  54905. image: {
  54906. source: "./media/characters/celeste-kitsune/side.svg",
  54907. extra: 818/765,
  54908. bottom: 40/858
  54909. }
  54910. },
  54911. },
  54912. [
  54913. {
  54914. name: "Megamacro",
  54915. height: math.unit(1500, "miles"),
  54916. default: true
  54917. },
  54918. ]
  54919. ))
  54920. characterMakers.push(() => makeCharacter(
  54921. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  54922. {
  54923. front: {
  54924. height: math.unit(8, "meters"),
  54925. name: "Front",
  54926. image: {
  54927. source: "./media/characters/io/front.svg",
  54928. extra: 865/722,
  54929. bottom: 58/923
  54930. }
  54931. },
  54932. back: {
  54933. height: math.unit(8, "meters"),
  54934. name: "Back",
  54935. image: {
  54936. source: "./media/characters/io/back.svg",
  54937. extra: 920/776,
  54938. bottom: 42/962
  54939. }
  54940. },
  54941. head: {
  54942. height: math.unit(5.09, "meters"),
  54943. name: "Head",
  54944. image: {
  54945. source: "./media/characters/io/head.svg"
  54946. }
  54947. },
  54948. hand: {
  54949. height: math.unit(1.6, "meters"),
  54950. name: "Hand",
  54951. image: {
  54952. source: "./media/characters/io/hand.svg"
  54953. }
  54954. },
  54955. foot: {
  54956. height: math.unit(2.4, "meters"),
  54957. name: "Foot",
  54958. image: {
  54959. source: "./media/characters/io/foot.svg"
  54960. }
  54961. },
  54962. },
  54963. [
  54964. {
  54965. name: "Normal",
  54966. height: math.unit(8, "meters"),
  54967. default: true
  54968. },
  54969. ]
  54970. ))
  54971. characterMakers.push(() => makeCharacter(
  54972. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  54973. {
  54974. side: {
  54975. height: math.unit(6 + 3/12, "feet"),
  54976. weight: math.unit(225, "lb"),
  54977. name: "Side",
  54978. image: {
  54979. source: "./media/characters/silas/side.svg",
  54980. extra: 703/653,
  54981. bottom: 23/726
  54982. },
  54983. extraAttributes: {
  54984. "pawLength": {
  54985. name: "Paw Length",
  54986. power: 1,
  54987. type: "length",
  54988. base: math.unit(12, "inches")
  54989. },
  54990. "pawWidth": {
  54991. name: "Paw Width",
  54992. power: 1,
  54993. type: "length",
  54994. base: math.unit(4.5, "inches")
  54995. },
  54996. "pawArea": {
  54997. name: "Paw Area",
  54998. power: 2,
  54999. type: "area",
  55000. base: math.unit(12 * 4.5, "inches^2")
  55001. },
  55002. }
  55003. },
  55004. },
  55005. [
  55006. {
  55007. name: "Normal",
  55008. height: math.unit(6 + 3/12, "feet"),
  55009. default: true
  55010. },
  55011. ]
  55012. ))
  55013. characterMakers.push(() => makeCharacter(
  55014. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  55015. {
  55016. back: {
  55017. height: math.unit(1.6, "meters"),
  55018. weight: math.unit(150, "lb"),
  55019. name: "Back",
  55020. image: {
  55021. source: "./media/characters/zari/back.svg",
  55022. extra: 424/411,
  55023. bottom: 32/456
  55024. },
  55025. extraAttributes: {
  55026. "bladderCapacity": {
  55027. name: "Bladder Size",
  55028. power: 3,
  55029. type: "volume",
  55030. base: math.unit(500, "mL")
  55031. },
  55032. "bladderFlow": {
  55033. name: "Flow Rate",
  55034. power: 3,
  55035. type: "volume",
  55036. base: math.unit(25, "mL")
  55037. },
  55038. }
  55039. },
  55040. },
  55041. [
  55042. {
  55043. name: "Normal",
  55044. height: math.unit(1.6, "meters"),
  55045. default: true
  55046. },
  55047. ]
  55048. ))
  55049. characterMakers.push(() => makeCharacter(
  55050. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  55051. {
  55052. front: {
  55053. height: math.unit(25, "feet"),
  55054. weight: math.unit(5, "tons"),
  55055. name: "Front",
  55056. image: {
  55057. source: "./media/characters/charlie-human/front.svg",
  55058. extra: 1870/1740,
  55059. bottom: 102/1972
  55060. },
  55061. extraAttributes: {
  55062. "dickLength": {
  55063. name: "Dick Length",
  55064. power: 1,
  55065. type: "length",
  55066. base: math.unit(9, "feet")
  55067. },
  55068. }
  55069. },
  55070. back: {
  55071. height: math.unit(25, "feet"),
  55072. weight: math.unit(5, "tons"),
  55073. name: "Back",
  55074. image: {
  55075. source: "./media/characters/charlie-human/back.svg",
  55076. extra: 1858/1733,
  55077. bottom: 105/1963
  55078. },
  55079. extraAttributes: {
  55080. "dickLength": {
  55081. name: "Dick Length",
  55082. power: 1,
  55083. type: "length",
  55084. base: math.unit(9, "feet")
  55085. },
  55086. }
  55087. },
  55088. },
  55089. [
  55090. {
  55091. name: "\"Normal\"",
  55092. height: math.unit(6 + 4/12, "feet")
  55093. },
  55094. {
  55095. name: "Big",
  55096. height: math.unit(25, "feet"),
  55097. default: true
  55098. },
  55099. ]
  55100. ))
  55101. characterMakers.push(() => makeCharacter(
  55102. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  55103. {
  55104. front: {
  55105. height: math.unit(6 + 4/12, "feet"),
  55106. weight: math.unit(320, "lb"),
  55107. name: "Front",
  55108. image: {
  55109. source: "./media/characters/ookitsu/front.svg",
  55110. extra: 1160/976,
  55111. bottom: 38/1198
  55112. }
  55113. },
  55114. frontNsfw: {
  55115. height: math.unit(6 + 4/12, "feet"),
  55116. weight: math.unit(320, "lb"),
  55117. name: "Front (NSFW)",
  55118. image: {
  55119. source: "./media/characters/ookitsu/front-nsfw.svg",
  55120. extra: 1160/976,
  55121. bottom: 38/1198
  55122. }
  55123. },
  55124. back: {
  55125. height: math.unit(6 + 4/12, "feet"),
  55126. weight: math.unit(320, "lb"),
  55127. name: "Back",
  55128. image: {
  55129. source: "./media/characters/ookitsu/back.svg",
  55130. extra: 1030/975,
  55131. bottom: 70/1100
  55132. }
  55133. },
  55134. head: {
  55135. height: math.unit(1.79, "feet"),
  55136. name: "Head",
  55137. image: {
  55138. source: "./media/characters/ookitsu/head.svg"
  55139. }
  55140. },
  55141. hand: {
  55142. height: math.unit(0.92, "feet"),
  55143. name: "Hand",
  55144. image: {
  55145. source: "./media/characters/ookitsu/hand.svg"
  55146. }
  55147. },
  55148. tails: {
  55149. height: math.unit(3.3, "feet"),
  55150. name: "Tails",
  55151. image: {
  55152. source: "./media/characters/ookitsu/tails.svg"
  55153. }
  55154. },
  55155. dick: {
  55156. height: math.unit(1.10833, "feet"),
  55157. name: "Dick",
  55158. image: {
  55159. source: "./media/characters/ookitsu/dick.svg"
  55160. }
  55161. },
  55162. },
  55163. [
  55164. {
  55165. name: "Normal",
  55166. height: math.unit(6 + 4/12, "feet"),
  55167. default: true
  55168. },
  55169. {
  55170. name: "Macro",
  55171. height: math.unit(30, "feet")
  55172. },
  55173. ]
  55174. ))
  55175. characterMakers.push(() => makeCharacter(
  55176. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  55177. {
  55178. anthroFront: {
  55179. height: math.unit(6, "feet"),
  55180. weight: math.unit(250, "lb"),
  55181. name: "Front",
  55182. image: {
  55183. source: "./media/characters/jhusky/anthro-front.svg",
  55184. extra: 474/439,
  55185. bottom: 7/481
  55186. },
  55187. form: "anthro",
  55188. default: true
  55189. },
  55190. taurSideSfw: {
  55191. height: math.unit(6 + 4/12, "feet"),
  55192. weight: math.unit(500, "lb"),
  55193. name: "Side (SFW)",
  55194. image: {
  55195. source: "./media/characters/jhusky/taur-side-sfw.svg",
  55196. extra: 1741/1629,
  55197. bottom: 196/1937
  55198. },
  55199. form: "taur",
  55200. default: true
  55201. },
  55202. taurSideNsfw: {
  55203. height: math.unit(6 + 4/12, "feet"),
  55204. weight: math.unit(500, "lb"),
  55205. name: "Taur (NSFW)",
  55206. image: {
  55207. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  55208. extra: 1741/1629,
  55209. bottom: 196/1937
  55210. },
  55211. form: "taur",
  55212. },
  55213. },
  55214. [
  55215. {
  55216. name: "Huge",
  55217. height: math.unit(500, "feet"),
  55218. form: "anthro"
  55219. },
  55220. {
  55221. name: "Macro",
  55222. height: math.unit(1000, "feet"),
  55223. default: true,
  55224. form: "anthro"
  55225. },
  55226. {
  55227. name: "Megamacro",
  55228. height: math.unit(10000, "feet"),
  55229. form: "anthro"
  55230. },
  55231. {
  55232. name: "Huge",
  55233. height: math.unit(528, "feet"),
  55234. form: "taur"
  55235. },
  55236. {
  55237. name: "Macro",
  55238. height: math.unit(1056, "feet"),
  55239. default: true,
  55240. form: "taur"
  55241. },
  55242. {
  55243. name: "Megamacro",
  55244. height: math.unit(10556, "feet"),
  55245. form: "taur"
  55246. },
  55247. ],
  55248. {
  55249. "anthro": {
  55250. name: "Anthro",
  55251. default: true
  55252. },
  55253. "taur": {
  55254. name: "Taur",
  55255. },
  55256. }
  55257. ))
  55258. characterMakers.push(() => makeCharacter(
  55259. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  55260. {
  55261. front: {
  55262. height: math.unit(8, "feet"),
  55263. weight: math.unit(500, "lb"),
  55264. name: "Front",
  55265. image: {
  55266. source: "./media/characters/armail/front.svg",
  55267. extra: 1753/1669,
  55268. bottom: 155/1908
  55269. }
  55270. },
  55271. back: {
  55272. height: math.unit(8, "feet"),
  55273. weight: math.unit(500, "lb"),
  55274. name: "Back",
  55275. image: {
  55276. source: "./media/characters/armail/back.svg",
  55277. extra: 1872/1803,
  55278. bottom: 63/1935
  55279. }
  55280. },
  55281. },
  55282. [
  55283. {
  55284. name: "Micro",
  55285. height: math.unit(0.25, "feet")
  55286. },
  55287. {
  55288. name: "Normal",
  55289. height: math.unit(8, "feet"),
  55290. default: true
  55291. },
  55292. {
  55293. name: "Mini-macro",
  55294. height: math.unit(30, "feet")
  55295. },
  55296. {
  55297. name: "Macro",
  55298. height: math.unit(400, "feet")
  55299. },
  55300. {
  55301. name: "Mega-macro",
  55302. height: math.unit(6000, "feet")
  55303. },
  55304. ]
  55305. ))
  55306. characterMakers.push(() => makeCharacter(
  55307. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  55308. {
  55309. front: {
  55310. height: math.unit(6 + 7/12, "feet"),
  55311. weight: math.unit(210, "lb"),
  55312. name: "Front",
  55313. image: {
  55314. source: "./media/characters/wilfred-t-buxton/front.svg",
  55315. extra: 1068/882,
  55316. bottom: 28/1096
  55317. }
  55318. },
  55319. },
  55320. [
  55321. {
  55322. name: "Normal",
  55323. height: math.unit(6 + 7/12, "feet"),
  55324. default: true
  55325. },
  55326. ]
  55327. ))
  55328. characterMakers.push(() => makeCharacter(
  55329. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  55330. {
  55331. front: {
  55332. height: math.unit(5 + 2/12, "feet"),
  55333. weight: math.unit(120, "lb"),
  55334. name: "Front",
  55335. image: {
  55336. source: "./media/characters/leighton-marrow/front.svg",
  55337. extra: 441/409,
  55338. bottom: 37/478
  55339. }
  55340. },
  55341. },
  55342. [
  55343. {
  55344. name: "Normal",
  55345. height: math.unit(5 + 2/12, "feet"),
  55346. default: true
  55347. },
  55348. ]
  55349. ))
  55350. characterMakers.push(() => makeCharacter(
  55351. { name: "Licos", species: ["werewolf"], tags: ["anthro", "taur"] },
  55352. {
  55353. front: {
  55354. height: math.unit(4, "meters"),
  55355. weight: math.unit(1200, "kg"),
  55356. name: "Front",
  55357. image: {
  55358. source: "./media/characters/licos/front.svg",
  55359. extra: 1727/1604,
  55360. bottom: 101/1828
  55361. },
  55362. form: "anthro",
  55363. default: true
  55364. },
  55365. taur_side: {
  55366. height: math.unit(20, "meters"),
  55367. weight: math.unit(1100000, "kg"),
  55368. name: "Side",
  55369. image: {
  55370. source: "./media/characters/licos/taur.svg",
  55371. extra: 1158/1091,
  55372. bottom: 80/1238
  55373. },
  55374. form: "taur",
  55375. default: true
  55376. },
  55377. },
  55378. [
  55379. {
  55380. name: "Normal",
  55381. height: math.unit(4, "meters"),
  55382. default: true,
  55383. form: "anthro"
  55384. },
  55385. {
  55386. name: "Normal",
  55387. height: math.unit(20, "meters"),
  55388. default: true,
  55389. form: "taur"
  55390. },
  55391. ],
  55392. {
  55393. "anthro": {
  55394. name: "Anthro",
  55395. default: true
  55396. },
  55397. "taur": {
  55398. name: "Taur",
  55399. },
  55400. }
  55401. ))
  55402. characterMakers.push(() => makeCharacter(
  55403. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  55404. {
  55405. front: {
  55406. height: math.unit(10 + 3/12, "feet"),
  55407. name: "Front",
  55408. image: {
  55409. source: "./media/characters/theo-monkey/front.svg",
  55410. extra: 1735/1658,
  55411. bottom: 73/1808
  55412. }
  55413. },
  55414. back: {
  55415. height: math.unit(10 + 3/12, "feet"),
  55416. name: "Back",
  55417. image: {
  55418. source: "./media/characters/theo-monkey/back.svg",
  55419. extra: 1742/1664,
  55420. bottom: 33/1775
  55421. }
  55422. },
  55423. head: {
  55424. height: math.unit(2.29, "feet"),
  55425. name: "Head",
  55426. image: {
  55427. source: "./media/characters/theo-monkey/head.svg"
  55428. }
  55429. },
  55430. handPalm: {
  55431. height: math.unit(1.73, "feet"),
  55432. name: "Hand (Palm)",
  55433. image: {
  55434. source: "./media/characters/theo-monkey/hand-palm.svg"
  55435. }
  55436. },
  55437. handBack: {
  55438. height: math.unit(1.63, "feet"),
  55439. name: "Hand (Back)",
  55440. image: {
  55441. source: "./media/characters/theo-monkey/hand-back.svg"
  55442. }
  55443. },
  55444. footSole: {
  55445. height: math.unit(2.15, "feet"),
  55446. name: "Foot (Sole)",
  55447. image: {
  55448. source: "./media/characters/theo-monkey/foot-sole.svg"
  55449. }
  55450. },
  55451. footSide: {
  55452. height: math.unit(1.6, "feet"),
  55453. name: "Foot (Side)",
  55454. image: {
  55455. source: "./media/characters/theo-monkey/foot-side.svg"
  55456. }
  55457. },
  55458. },
  55459. [
  55460. {
  55461. name: "Normal",
  55462. height: math.unit(10 + 3/12, "feet"),
  55463. default: true
  55464. },
  55465. ]
  55466. ))
  55467. characterMakers.push(() => makeCharacter(
  55468. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  55469. {
  55470. front: {
  55471. height: math.unit(11, "feet"),
  55472. weight: math.unit(3000, "lb"),
  55473. preyCapacity: math.unit(10, "people"),
  55474. name: "Front",
  55475. image: {
  55476. source: "./media/characters/brook/front.svg",
  55477. extra: 909/835,
  55478. bottom: 108/1017
  55479. }
  55480. },
  55481. back: {
  55482. height: math.unit(11, "feet"),
  55483. weight: math.unit(3000, "lb"),
  55484. preyCapacity: math.unit(10, "people"),
  55485. name: "Back",
  55486. image: {
  55487. source: "./media/characters/brook/back.svg",
  55488. extra: 976/916,
  55489. bottom: 34/1010
  55490. }
  55491. },
  55492. backAlt: {
  55493. height: math.unit(11, "feet"),
  55494. weight: math.unit(3000, "lb"),
  55495. preyCapacity: math.unit(10, "people"),
  55496. name: "Back (Alt)",
  55497. image: {
  55498. source: "./media/characters/brook/back-alt.svg",
  55499. extra: 1283/1213,
  55500. bottom: 35/1318
  55501. }
  55502. },
  55503. bust: {
  55504. height: math.unit(9.0859030837, "feet"),
  55505. weight: math.unit(3000, "lb"),
  55506. preyCapacity: math.unit(10, "people"),
  55507. name: "Bust",
  55508. image: {
  55509. source: "./media/characters/brook/bust.svg",
  55510. extra: 2043/1923,
  55511. bottom: 0/2043
  55512. }
  55513. },
  55514. },
  55515. [
  55516. {
  55517. name: "Small",
  55518. height: math.unit(11, "feet"),
  55519. default: true
  55520. },
  55521. {
  55522. name: "Towering",
  55523. height: math.unit(5, "km")
  55524. },
  55525. {
  55526. name: "Enormous",
  55527. height: math.unit(25, "earths")
  55528. },
  55529. ]
  55530. ))
  55531. characterMakers.push(() => makeCharacter(
  55532. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  55533. {
  55534. front: {
  55535. height: math.unit(4, "feet"),
  55536. weight: math.unit(150, "lb"),
  55537. name: "Front",
  55538. image: {
  55539. source: "./media/characters/squishi/front.svg",
  55540. extra: 1428/1271,
  55541. bottom: 30/1458
  55542. },
  55543. extraAttributes: {
  55544. "pawSize": {
  55545. name: "Paw Size",
  55546. power: 1,
  55547. type: "length",
  55548. base: math.unit(14, "ShoeSizeMensUS"),
  55549. defaultUnit: "ShoeSizeMensUS"
  55550. },
  55551. }
  55552. },
  55553. side: {
  55554. height: math.unit(4, "feet"),
  55555. weight: math.unit(150, "lb"),
  55556. name: "Side",
  55557. image: {
  55558. source: "./media/characters/squishi/side.svg",
  55559. extra: 1428/1271,
  55560. bottom: 30/1458
  55561. },
  55562. extraAttributes: {
  55563. "pawSize": {
  55564. name: "Paw Size",
  55565. power: 1,
  55566. type: "length",
  55567. base: math.unit(14, "ShoeSizeMensUS"),
  55568. defaultUnit: "ShoeSizeMensUS"
  55569. },
  55570. }
  55571. },
  55572. back: {
  55573. height: math.unit(4, "feet"),
  55574. weight: math.unit(150, "lb"),
  55575. name: "Back",
  55576. image: {
  55577. source: "./media/characters/squishi/back.svg",
  55578. extra: 1428/1271,
  55579. bottom: 30/1458
  55580. },
  55581. extraAttributes: {
  55582. "pawSize": {
  55583. name: "Paw Size",
  55584. power: 1,
  55585. type: "length",
  55586. base: math.unit(14, "ShoeSizeMensUS"),
  55587. defaultUnit: "ShoeSizeMensUS"
  55588. },
  55589. }
  55590. },
  55591. },
  55592. [
  55593. {
  55594. name: "Normal",
  55595. height: math.unit(4, "feet"),
  55596. default: true
  55597. },
  55598. ]
  55599. ))
  55600. characterMakers.push(() => makeCharacter(
  55601. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  55602. {
  55603. front: {
  55604. height: math.unit(7 + 8/12, "feet"),
  55605. weight: math.unit(333, "lb"),
  55606. name: "Front",
  55607. image: {
  55608. source: "./media/characters/vincent-vasroc/front.svg",
  55609. extra: 1962/1860,
  55610. bottom: 41/2003
  55611. }
  55612. },
  55613. back: {
  55614. height: math.unit(7 + 8/12, "feet"),
  55615. weight: math.unit(333, "lb"),
  55616. name: "Back",
  55617. image: {
  55618. source: "./media/characters/vincent-vasroc/back.svg",
  55619. extra: 1952/1815,
  55620. bottom: 33/1985
  55621. }
  55622. },
  55623. paw: {
  55624. height: math.unit(1.24, "feet"),
  55625. name: "Paw",
  55626. image: {
  55627. source: "./media/characters/vincent-vasroc/paw.svg"
  55628. }
  55629. },
  55630. ear: {
  55631. height: math.unit(0.75, "feet"),
  55632. name: "Ear",
  55633. image: {
  55634. source: "./media/characters/vincent-vasroc/ear.svg"
  55635. }
  55636. },
  55637. },
  55638. [
  55639. {
  55640. name: "Nano",
  55641. height: math.unit(92, "micrometers")
  55642. },
  55643. {
  55644. name: "Normal",
  55645. height: math.unit(7 + 8/12, "feet"),
  55646. default: true
  55647. },
  55648. ]
  55649. ))
  55650. characterMakers.push(() => makeCharacter(
  55651. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  55652. {
  55653. frontNsfw: {
  55654. height: math.unit(40, "feet"),
  55655. weight: math.unit(58, "tons"),
  55656. name: "Front (NSFW)",
  55657. image: {
  55658. source: "./media/characters/ru-kahn/front-nsfw.svg",
  55659. extra: 1265/965,
  55660. bottom: 155/1420
  55661. }
  55662. },
  55663. frontSfw: {
  55664. height: math.unit(40, "feet"),
  55665. weight: math.unit(58, "tons"),
  55666. name: "Front (SFW)",
  55667. image: {
  55668. source: "./media/characters/ru-kahn/front-sfw.svg",
  55669. extra: 1265/965,
  55670. bottom: 80/1345
  55671. }
  55672. },
  55673. },
  55674. [
  55675. {
  55676. name: "Small",
  55677. height: math.unit(4, "feet")
  55678. },
  55679. {
  55680. name: "Normal",
  55681. height: math.unit(40, "feet"),
  55682. default: true
  55683. },
  55684. {
  55685. name: "Macro",
  55686. height: math.unit(400, "feet")
  55687. },
  55688. ]
  55689. ))
  55690. characterMakers.push(() => makeCharacter(
  55691. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  55692. {
  55693. frontNude: {
  55694. height: math.unit(6 + 5/12, "feet"),
  55695. name: "Front (Nude)",
  55696. image: {
  55697. source: "./media/characters/sylvie-laforge/front-nude.svg",
  55698. extra: 1369/1366,
  55699. bottom: 68/1437
  55700. }
  55701. },
  55702. frontDressed: {
  55703. height: math.unit(6 + 5/12, "feet"),
  55704. name: "Front (Dressed)",
  55705. image: {
  55706. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  55707. extra: 1369/1366,
  55708. bottom: 68/1437
  55709. }
  55710. },
  55711. },
  55712. [
  55713. {
  55714. name: "Normal",
  55715. height: math.unit(6 + 5/12, "feet"),
  55716. default: true
  55717. },
  55718. {
  55719. name: "Maximum",
  55720. height: math.unit(1930, "feet")
  55721. },
  55722. ]
  55723. ))
  55724. characterMakers.push(() => makeCharacter(
  55725. { name: "Kaja", species: ["zoroark"], tags: ["anthro"] },
  55726. {
  55727. front: {
  55728. height: math.unit(5 + 6/12, "feet"),
  55729. name: "Front",
  55730. image: {
  55731. source: "./media/characters/kaja/front.svg",
  55732. extra: 1874/1514,
  55733. bottom: 117/1991
  55734. }
  55735. },
  55736. },
  55737. [
  55738. {
  55739. name: "Normal",
  55740. height: math.unit(5 + 6/12, "feet"),
  55741. default: true
  55742. },
  55743. ]
  55744. ))
  55745. characterMakers.push(() => makeCharacter(
  55746. { name: "Mark Smith", species: ["husky"], tags: ["anthro"] },
  55747. {
  55748. front: {
  55749. height: math.unit(5 + 9/12, "feet"),
  55750. weight: math.unit(200, "lb"),
  55751. name: "Front",
  55752. image: {
  55753. source: "./media/characters/mark-smith/front.svg",
  55754. extra: 1004/943,
  55755. bottom: 58/1062
  55756. }
  55757. },
  55758. back: {
  55759. height: math.unit(5 + 9/12, "feet"),
  55760. weight: math.unit(200, "lb"),
  55761. name: "Back",
  55762. image: {
  55763. source: "./media/characters/mark-smith/back.svg",
  55764. extra: 1023/953,
  55765. bottom: 24/1047
  55766. }
  55767. },
  55768. head: {
  55769. height: math.unit(1.82, "feet"),
  55770. name: "Head",
  55771. image: {
  55772. source: "./media/characters/mark-smith/head.svg"
  55773. }
  55774. },
  55775. hand: {
  55776. height: math.unit(1.4, "feet"),
  55777. name: "Hand",
  55778. image: {
  55779. source: "./media/characters/mark-smith/hand.svg"
  55780. }
  55781. },
  55782. paw: {
  55783. height: math.unit(1.69, "feet"),
  55784. name: "Paw",
  55785. image: {
  55786. source: "./media/characters/mark-smith/paw.svg"
  55787. }
  55788. },
  55789. },
  55790. [
  55791. {
  55792. name: "Micro",
  55793. height: math.unit(0.25, "inches")
  55794. },
  55795. {
  55796. name: "Normal",
  55797. height: math.unit(5 + 9/12, "feet"),
  55798. default: true
  55799. },
  55800. {
  55801. name: "Macro",
  55802. height: math.unit(500, "feet")
  55803. },
  55804. ]
  55805. ))
  55806. characterMakers.push(() => makeCharacter(
  55807. { name: "Rebecca 'Becky' Houston", species: ["gryphon"], tags: ["anthro"] },
  55808. {
  55809. frontNude: {
  55810. height: math.unit(6, "feet"),
  55811. name: "Front (Nude)",
  55812. image: {
  55813. source: "./media/characters/rebecca-becky-houston/front-nude.svg",
  55814. extra: 1384/1321,
  55815. bottom: 57/1441
  55816. }
  55817. },
  55818. frontDressed: {
  55819. height: math.unit(6, "feet"),
  55820. name: "Front (Dressed)",
  55821. image: {
  55822. source: "./media/characters/rebecca-becky-houston/front-dressed.svg",
  55823. extra: 1384/1321,
  55824. bottom: 57/1441
  55825. }
  55826. },
  55827. },
  55828. [
  55829. {
  55830. name: "Normal",
  55831. height: math.unit(6, "feet"),
  55832. default: true
  55833. },
  55834. {
  55835. name: "Maximum",
  55836. height: math.unit(1776, "feet")
  55837. },
  55838. ]
  55839. ))
  55840. characterMakers.push(() => makeCharacter(
  55841. { name: "Devos", species: ["dragon"], tags: ["feral"] },
  55842. {
  55843. front: {
  55844. height: math.unit(2 + 4/12, "feet"),
  55845. weight: math.unit(350, "lb"),
  55846. name: "Front",
  55847. image: {
  55848. source: "./media/characters/devos/front.svg",
  55849. extra: 958/852,
  55850. bottom: 143/1101
  55851. }
  55852. },
  55853. },
  55854. [
  55855. {
  55856. name: "Base",
  55857. height: math.unit(2 + 4/12, "feet"),
  55858. default: true
  55859. },
  55860. ]
  55861. ))
  55862. characterMakers.push(() => makeCharacter(
  55863. { name: "Hiveheart", species: ["sliver"], tags: ["anthro"] },
  55864. {
  55865. front: {
  55866. height: math.unit(9 + 2/12, "feet"),
  55867. name: "Front",
  55868. image: {
  55869. source: "./media/characters/hiveheart/front.svg",
  55870. extra: 394/364,
  55871. bottom: 65/459
  55872. }
  55873. },
  55874. back: {
  55875. height: math.unit(9 + 2/12, "feet"),
  55876. name: "Back",
  55877. image: {
  55878. source: "./media/characters/hiveheart/back.svg",
  55879. extra: 374/357,
  55880. bottom: 63/437
  55881. }
  55882. },
  55883. },
  55884. [
  55885. {
  55886. name: "Base",
  55887. height: math.unit(9 + 2/12, "feet"),
  55888. default: true
  55889. },
  55890. ]
  55891. ))
  55892. characterMakers.push(() => makeCharacter(
  55893. { name: "Bryn", species: ["moth"], tags: ["anthro"] },
  55894. {
  55895. front: {
  55896. height: math.unit(2.5, "inches"),
  55897. weight: math.unit(0.6, "oz"),
  55898. name: "Front",
  55899. image: {
  55900. source: "./media/characters/bryn/front.svg",
  55901. extra: 1480/1205,
  55902. bottom: 27/1507
  55903. }
  55904. },
  55905. back: {
  55906. height: math.unit(2.5, "inches"),
  55907. weight: math.unit(0.6, "oz"),
  55908. name: "Back",
  55909. image: {
  55910. source: "./media/characters/bryn/back.svg",
  55911. extra: 1475/1201,
  55912. bottom: 39/1514
  55913. }
  55914. },
  55915. foot: {
  55916. height: math.unit(0.4, "inches"),
  55917. name: "Foot",
  55918. image: {
  55919. source: "./media/characters/bryn/foot.svg"
  55920. }
  55921. },
  55922. },
  55923. [
  55924. {
  55925. name: "Normal",
  55926. height: math.unit(2.5, "inches"),
  55927. default: true
  55928. },
  55929. ]
  55930. ))
  55931. characterMakers.push(() => makeCharacter(
  55932. { name: "Delta", species: ["dragon"], tags: ["feral"] },
  55933. {
  55934. side: {
  55935. height: math.unit(7, "feet"),
  55936. weight: math.unit(657, "kg"),
  55937. name: "Side",
  55938. image: {
  55939. source: "./media/characters/delta/side.svg",
  55940. extra: 781/212,
  55941. bottom: 7/788
  55942. },
  55943. extraAttributes: {
  55944. "wingspan": {
  55945. name: "Wingspan",
  55946. power: 1,
  55947. type: "length",
  55948. base: math.unit(48, "feet")
  55949. },
  55950. "length": {
  55951. name: "Length",
  55952. power: 1,
  55953. type: "length",
  55954. base: math.unit(21, "feet")
  55955. },
  55956. "pawSize": {
  55957. name: "Paw Size",
  55958. power: 2,
  55959. type: "area",
  55960. base: math.unit(1.5*1.4, "feet^2")
  55961. },
  55962. }
  55963. },
  55964. },
  55965. [
  55966. {
  55967. name: "Normal",
  55968. height: math.unit(6, "feet"),
  55969. default: true
  55970. },
  55971. ]
  55972. ))
  55973. characterMakers.push(() => makeCharacter(
  55974. { name: "Pyrow", species: ["sergix"], tags: ["anthro"] },
  55975. {
  55976. front: {
  55977. height: math.unit(6, "feet"),
  55978. name: "Front",
  55979. image: {
  55980. source: "./media/characters/pyrow/front.svg",
  55981. extra: 513/486,
  55982. bottom: 14/527
  55983. }
  55984. },
  55985. frontWing: {
  55986. height: math.unit(6, "feet"),
  55987. name: "Front (Wing)",
  55988. image: {
  55989. source: "./media/characters/pyrow/front-wing.svg",
  55990. extra: 539/383,
  55991. bottom: 20/559
  55992. }
  55993. },
  55994. back: {
  55995. height: math.unit(6, "feet"),
  55996. name: "Back",
  55997. image: {
  55998. source: "./media/characters/pyrow/back.svg",
  55999. extra: 500/473,
  56000. bottom: 9/509
  56001. }
  56002. },
  56003. },
  56004. [
  56005. {
  56006. name: "Normal",
  56007. height: math.unit(6, "feet"),
  56008. default: true
  56009. },
  56010. ]
  56011. ))
  56012. characterMakers.push(() => makeCharacter(
  56013. { name: "Velikan", species: ["behemoth"], tags: ["anthro"] },
  56014. {
  56015. front: {
  56016. height: math.unit(5, "meters"),
  56017. weight: math.unit(3, "tonnes"),
  56018. name: "Front",
  56019. image: {
  56020. source: "./media/characters/velikan/front.svg",
  56021. extra: 867/744,
  56022. bottom: 71/938
  56023. },
  56024. extraAttributes: {
  56025. "shoeSize": {
  56026. name: "Shoe Size",
  56027. power: 1,
  56028. type: "length",
  56029. base: math.unit(135, "ShoeSizeUK"),
  56030. defaultUnit: "ShoeSizeUK"
  56031. },
  56032. }
  56033. },
  56034. },
  56035. [
  56036. {
  56037. name: "Normal",
  56038. height: math.unit(5, "meters"),
  56039. default: true
  56040. },
  56041. {
  56042. name: "Macro",
  56043. height: math.unit(1, "km")
  56044. },
  56045. {
  56046. name: "Mega Macro",
  56047. height: math.unit(100, "km")
  56048. },
  56049. {
  56050. name: "Giga Macro",
  56051. height: math.unit(2, "megameters")
  56052. },
  56053. {
  56054. name: "Planetary",
  56055. height: math.unit(22, "megameters")
  56056. },
  56057. {
  56058. name: "Solar",
  56059. height: math.unit(8, "gigameters")
  56060. },
  56061. {
  56062. name: "Cosmic",
  56063. height: math.unit(10, "zettameters")
  56064. },
  56065. {
  56066. name: "Omni",
  56067. height: math.unit(9e260, "multiverses")
  56068. },
  56069. ]
  56070. ))
  56071. characterMakers.push(() => makeCharacter(
  56072. { name: "Sabiki", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  56073. {
  56074. front: {
  56075. height: math.unit(4 + 3/12, "feet"),
  56076. weight: math.unit(90, "lb"),
  56077. name: "Front",
  56078. image: {
  56079. source: "./media/characters/sabiki/front.svg",
  56080. extra: 1662/1423,
  56081. bottom: 65/1727
  56082. }
  56083. },
  56084. },
  56085. [
  56086. {
  56087. name: "Normal",
  56088. height: math.unit(4 + 3/12, "feet"),
  56089. default: true
  56090. },
  56091. ]
  56092. ))
  56093. characterMakers.push(() => makeCharacter(
  56094. { name: "Carmel", species: ["ant"], tags: ["anthro"] },
  56095. {
  56096. frontSfw: {
  56097. height: math.unit(2, "mm"),
  56098. name: "Front (SFW)",
  56099. image: {
  56100. source: "./media/characters/carmel/front-sfw.svg",
  56101. extra: 1131/1006,
  56102. bottom: 66/1197
  56103. }
  56104. },
  56105. frontNsfw: {
  56106. height: math.unit(2, "mm"),
  56107. name: "Front (NSFW)",
  56108. image: {
  56109. source: "./media/characters/carmel/front-nsfw.svg",
  56110. extra: 1131/1006,
  56111. bottom: 66/1197
  56112. }
  56113. },
  56114. foot: {
  56115. height: math.unit(0.3, "mm"),
  56116. name: "Foot",
  56117. image: {
  56118. source: "./media/characters/carmel/foot.svg"
  56119. }
  56120. },
  56121. tongue: {
  56122. height: math.unit(0.71, "mm"),
  56123. name: "Tongue",
  56124. image: {
  56125. source: "./media/characters/carmel/tongue.svg"
  56126. }
  56127. },
  56128. dick: {
  56129. height: math.unit(0.085, "mm"),
  56130. name: "Dick",
  56131. image: {
  56132. source: "./media/characters/carmel/dick.svg"
  56133. }
  56134. },
  56135. },
  56136. [
  56137. {
  56138. name: "Micro",
  56139. height: math.unit(2, "mm"),
  56140. default: true
  56141. },
  56142. {
  56143. name: "Normal",
  56144. height: math.unit(4 + 8/12, "feet")
  56145. },
  56146. {
  56147. name: "Mega Macro",
  56148. height: math.unit(250, "feet")
  56149. },
  56150. {
  56151. name: "BIGGER",
  56152. height: math.unit(1000, "feet")
  56153. },
  56154. {
  56155. name: "BIGGEST",
  56156. height: math.unit(2, "miles")
  56157. },
  56158. ]
  56159. ))
  56160. characterMakers.push(() => makeCharacter(
  56161. { name: "Tamani", species: ["lion"], tags: ["anthro", "feral"] },
  56162. {
  56163. front: {
  56164. height: math.unit(6.5, "feet"),
  56165. weight: math.unit(198, "lb"),
  56166. name: "Front",
  56167. image: {
  56168. source: "./media/characters/tamani/anthro.svg",
  56169. extra: 930/890,
  56170. bottom: 34/964
  56171. },
  56172. form: "anthro",
  56173. default: true
  56174. },
  56175. side: {
  56176. height: math.unit(6, "feet"),
  56177. weight: math.unit(198*2, "lb"),
  56178. name: "Side",
  56179. image: {
  56180. source: "./media/characters/tamani/feral.svg",
  56181. extra: 559/519,
  56182. bottom: 43/602
  56183. },
  56184. form: "feral"
  56185. },
  56186. },
  56187. [
  56188. {
  56189. name: "Normal",
  56190. height: math.unit(6.5, "feet"),
  56191. default: true,
  56192. form: "anthro"
  56193. },
  56194. {
  56195. name: "Normal",
  56196. height: math.unit(6, "feet"),
  56197. default: true,
  56198. form: "feral"
  56199. },
  56200. ],
  56201. {
  56202. "anthro": {
  56203. name: "Anthro",
  56204. default: true
  56205. },
  56206. "feral": {
  56207. name: "Feral",
  56208. },
  56209. }
  56210. ))
  56211. characterMakers.push(() => makeCharacter(
  56212. { name: "Dex", species: ["eastern-cottontail-rabbit"], tags: ["anthro"] },
  56213. {
  56214. front: {
  56215. height: math.unit(4 + 1/12, "feet"),
  56216. weight: math.unit(114, "lb"),
  56217. name: "Front",
  56218. image: {
  56219. source: "./media/characters/dex/front.svg",
  56220. extra: 787/680,
  56221. bottom: 18/805
  56222. }
  56223. },
  56224. side: {
  56225. height: math.unit(4 + 1/12, "feet"),
  56226. weight: math.unit(114, "lb"),
  56227. name: "Side",
  56228. image: {
  56229. source: "./media/characters/dex/side.svg",
  56230. extra: 785/680,
  56231. bottom: 12/797
  56232. }
  56233. },
  56234. back: {
  56235. height: math.unit(4 + 1/12, "feet"),
  56236. weight: math.unit(114, "lb"),
  56237. name: "Back",
  56238. image: {
  56239. source: "./media/characters/dex/back.svg",
  56240. extra: 785/681,
  56241. bottom: 17/802
  56242. }
  56243. },
  56244. loungewear: {
  56245. height: math.unit(4 + 1/12, "feet"),
  56246. weight: math.unit(114, "lb"),
  56247. name: "Loungewear",
  56248. image: {
  56249. source: "./media/characters/dex/loungewear.svg",
  56250. extra: 787/680,
  56251. bottom: 18/805
  56252. }
  56253. },
  56254. workout: {
  56255. height: math.unit(4 + 1/12, "feet"),
  56256. weight: math.unit(114, "lb"),
  56257. name: "Workout",
  56258. image: {
  56259. source: "./media/characters/dex/workout.svg",
  56260. extra: 787/680,
  56261. bottom: 18/805
  56262. }
  56263. },
  56264. schoolUniform: {
  56265. height: math.unit(4 + 1/12, "feet"),
  56266. weight: math.unit(114, "lb"),
  56267. name: "School-uniform",
  56268. image: {
  56269. source: "./media/characters/dex/school-uniform.svg",
  56270. extra: 787/680,
  56271. bottom: 18/805
  56272. }
  56273. },
  56274. maw: {
  56275. height: math.unit(0.55, "feet"),
  56276. name: "Maw",
  56277. image: {
  56278. source: "./media/characters/dex/maw.svg"
  56279. }
  56280. },
  56281. paw: {
  56282. height: math.unit(0.87, "feet"),
  56283. name: "Paw",
  56284. image: {
  56285. source: "./media/characters/dex/paw.svg"
  56286. }
  56287. },
  56288. bust: {
  56289. height: math.unit(1.67, "feet"),
  56290. name: "Bust",
  56291. image: {
  56292. source: "./media/characters/dex/bust.svg"
  56293. }
  56294. },
  56295. },
  56296. [
  56297. {
  56298. name: "Normal",
  56299. height: math.unit(4 + 1/12, "feet"),
  56300. default: true
  56301. },
  56302. ]
  56303. ))
  56304. characterMakers.push(() => makeCharacter(
  56305. { name: "Silke", species: ["sylveon"], tags: ["anthro"] },
  56306. {
  56307. front: {
  56308. height: math.unit(4 + 3/12, "feet"),
  56309. weight: math.unit(60, "lb"),
  56310. name: "Front",
  56311. image: {
  56312. source: "./media/characters/silke/front.svg",
  56313. extra: 1334/1122,
  56314. bottom: 21/1355
  56315. }
  56316. },
  56317. back: {
  56318. height: math.unit(4 + 3/12, "feet"),
  56319. weight: math.unit(60, "lb"),
  56320. name: "Back",
  56321. image: {
  56322. source: "./media/characters/silke/back.svg",
  56323. extra: 1328/1092,
  56324. bottom: 16/1344
  56325. }
  56326. },
  56327. dressed: {
  56328. height: math.unit(4 + 3/12, "feet"),
  56329. weight: math.unit(60, "lb"),
  56330. name: "Dressed",
  56331. image: {
  56332. source: "./media/characters/silke/dressed.svg",
  56333. extra: 1334/1122,
  56334. bottom: 43/1377
  56335. }
  56336. },
  56337. },
  56338. [
  56339. {
  56340. name: "Normal",
  56341. height: math.unit(4 + 3/12, "feet"),
  56342. default: true
  56343. },
  56344. ]
  56345. ))
  56346. characterMakers.push(() => makeCharacter(
  56347. { name: "Wireshark", species: ["thresher-shark"], tags: ["anthro"] },
  56348. {
  56349. front: {
  56350. height: math.unit(1.58, "meters"),
  56351. weight: math.unit(47, "kg"),
  56352. name: "Front",
  56353. image: {
  56354. source: "./media/characters/wireshark/front.svg",
  56355. extra: 883/838,
  56356. bottom: 66/949
  56357. }
  56358. },
  56359. },
  56360. [
  56361. {
  56362. name: "Normal",
  56363. height: math.unit(1.58, "meters"),
  56364. default: true
  56365. },
  56366. ]
  56367. ))
  56368. characterMakers.push(() => makeCharacter(
  56369. { name: "Gallagher", species: ["shark", "cyborg", "ai"], tags: ["anthro"] },
  56370. {
  56371. front: {
  56372. height: math.unit(6, "meters"),
  56373. weight: math.unit(15000, "kg"),
  56374. name: "Front",
  56375. image: {
  56376. source: "./media/characters/gallagher/front.svg",
  56377. extra: 532/493,
  56378. bottom: 0/532
  56379. }
  56380. },
  56381. },
  56382. [
  56383. {
  56384. name: "Normal",
  56385. height: math.unit(6, "meters"),
  56386. default: true
  56387. },
  56388. ]
  56389. ))
  56390. characterMakers.push(() => makeCharacter(
  56391. { name: "Alice", species: ["black-tip-reef-shark"], tags: ["anthro"] },
  56392. {
  56393. front: {
  56394. height: math.unit(2.4, "meters"),
  56395. weight: math.unit(270, "kg"),
  56396. name: "Front",
  56397. image: {
  56398. source: "./media/characters/alice/front.svg",
  56399. extra: 950/900,
  56400. bottom: 36/986
  56401. }
  56402. },
  56403. side: {
  56404. height: math.unit(2.4, "meters"),
  56405. weight: math.unit(270, "kg"),
  56406. name: "Side",
  56407. image: {
  56408. source: "./media/characters/alice/side.svg",
  56409. extra: 921/876,
  56410. bottom: 19/940
  56411. }
  56412. },
  56413. dressed: {
  56414. height: math.unit(2.4, "meters"),
  56415. weight: math.unit(270, "kg"),
  56416. name: "Dressed",
  56417. image: {
  56418. source: "./media/characters/alice/dressed.svg",
  56419. extra: 905/850,
  56420. bottom: 81/986
  56421. }
  56422. },
  56423. fishnet: {
  56424. height: math.unit(2.4, "meters"),
  56425. weight: math.unit(270, "kg"),
  56426. name: "Fishnet",
  56427. image: {
  56428. source: "./media/characters/alice/fishnet.svg",
  56429. extra: 905/850,
  56430. bottom: 81/986
  56431. }
  56432. },
  56433. },
  56434. [
  56435. {
  56436. name: "Normal",
  56437. height: math.unit(2.4, "meters"),
  56438. default: true
  56439. },
  56440. ]
  56441. ))
  56442. characterMakers.push(() => makeCharacter(
  56443. { name: "Fio", species: ["deer"], tags: ["anthro"] },
  56444. {
  56445. front: {
  56446. height: math.unit(175.25, "feet"),
  56447. name: "Front",
  56448. image: {
  56449. source: "./media/characters/fio/front.svg",
  56450. extra: 1883/1591,
  56451. bottom: 34/1917
  56452. }
  56453. },
  56454. },
  56455. [
  56456. {
  56457. name: "Normal",
  56458. height: math.unit(175.25, "cm"),
  56459. default: true
  56460. },
  56461. ]
  56462. ))
  56463. characterMakers.push(() => makeCharacter(
  56464. { name: "Hass", species: ["quetzalcoatlus-northropi"], tags: ["feral"] },
  56465. {
  56466. side: {
  56467. height: math.unit(6, "meters"),
  56468. weight: math.unit(3400, "kg"),
  56469. preyCapacity: math.unit(1700, "liters"),
  56470. name: "Side",
  56471. image: {
  56472. source: "./media/characters/hass/side.svg",
  56473. extra: 1058/997,
  56474. bottom: 177/1235
  56475. }
  56476. },
  56477. feeding: {
  56478. height: math.unit(6*0.63, "meters"),
  56479. weight: math.unit(3400, "kg"),
  56480. preyCapacity: math.unit(1700, "liters"),
  56481. name: "Feeding",
  56482. image: {
  56483. source: "./media/characters/hass/feeding.svg",
  56484. extra: 689/579,
  56485. bottom: 146/835
  56486. }
  56487. },
  56488. guts: {
  56489. height: math.unit(6, "meters"),
  56490. weight: math.unit(3400, "kg"),
  56491. name: "Guts",
  56492. image: {
  56493. source: "./media/characters/hass/guts.svg",
  56494. extra: 1223/1198,
  56495. bottom: 182/1405
  56496. }
  56497. },
  56498. dickFront: {
  56499. height: math.unit(1.4, "meters"),
  56500. name: "Dick (Front)",
  56501. image: {
  56502. source: "./media/characters/hass/dick-front.svg"
  56503. }
  56504. },
  56505. dickSide: {
  56506. height: math.unit(1.3, "meters"),
  56507. name: "Dick (Side)",
  56508. image: {
  56509. source: "./media/characters/hass/dick-side.svg"
  56510. }
  56511. },
  56512. dickBack: {
  56513. height: math.unit(1.4, "meters"),
  56514. name: "Dick (Back)",
  56515. image: {
  56516. source: "./media/characters/hass/dick-back.svg"
  56517. }
  56518. },
  56519. },
  56520. [
  56521. {
  56522. name: "Normal",
  56523. height: math.unit(6, "meters"),
  56524. default: true
  56525. },
  56526. ]
  56527. ))
  56528. characterMakers.push(() => makeCharacter(
  56529. { name: "Hickory Finnegan", species: ["fennec-fox"], tags: ["anthro"] },
  56530. {
  56531. front: {
  56532. height: math.unit(4, "feet"),
  56533. weight: math.unit(60, "lb"),
  56534. name: "Front",
  56535. image: {
  56536. source: "./media/characters/hickory-finnegan/front.svg",
  56537. extra: 444/411,
  56538. bottom: 10/454
  56539. }
  56540. },
  56541. side: {
  56542. height: math.unit(4, "feet"),
  56543. weight: math.unit(60, "lb"),
  56544. name: "Side",
  56545. image: {
  56546. source: "./media/characters/hickory-finnegan/side.svg",
  56547. extra: 444/411,
  56548. bottom: 10/454
  56549. }
  56550. },
  56551. back: {
  56552. height: math.unit(4, "feet"),
  56553. weight: math.unit(60, "lb"),
  56554. name: "Back",
  56555. image: {
  56556. source: "./media/characters/hickory-finnegan/back.svg",
  56557. extra: 444/411,
  56558. bottom: 10/454
  56559. }
  56560. },
  56561. },
  56562. [
  56563. {
  56564. name: "Normal",
  56565. height: math.unit(4, "feet"),
  56566. default: true
  56567. },
  56568. ]
  56569. ))
  56570. characterMakers.push(() => makeCharacter(
  56571. { name: "Robin Phox", species: ["snivy", "yoshi", "delphox", "mienshao", "inteleon", "reshiram", "samurott"], tags: ["anthro"] },
  56572. {
  56573. snivy_front: {
  56574. height: math.unit(2, "feet"),
  56575. weight: math.unit(17.9, "lb"),
  56576. name: "Front",
  56577. image: {
  56578. source: "./media/characters/robin-phox/snivy-front.svg",
  56579. extra: 569/504,
  56580. bottom: 33/602
  56581. },
  56582. form: "snivy",
  56583. default: true
  56584. },
  56585. snivy_frontNsfw: {
  56586. height: math.unit(2, "feet"),
  56587. weight: math.unit(17.9, "lb"),
  56588. name: "Front (NSFW)",
  56589. image: {
  56590. source: "./media/characters/robin-phox/snivy-front-nsfw.svg",
  56591. extra: 569/504,
  56592. bottom: 33/602
  56593. },
  56594. form: "snivy",
  56595. },
  56596. snivy_back: {
  56597. height: math.unit(2, "feet"),
  56598. weight: math.unit(17.9, "lb"),
  56599. name: "Back",
  56600. image: {
  56601. source: "./media/characters/robin-phox/snivy-back.svg",
  56602. extra: 577/508,
  56603. bottom: 21/598
  56604. },
  56605. form: "snivy",
  56606. },
  56607. snivy_foot: {
  56608. height: math.unit(0.68, "feet"),
  56609. name: "Foot",
  56610. image: {
  56611. source: "./media/characters/robin-phox/snivy-foot.svg"
  56612. },
  56613. form: "snivy",
  56614. },
  56615. snivy_sole: {
  56616. height: math.unit(0.68, "feet"),
  56617. name: "Sole",
  56618. image: {
  56619. source: "./media/characters/robin-phox/snivy-sole.svg"
  56620. },
  56621. form: "snivy",
  56622. },
  56623. yoshi_front: {
  56624. height: math.unit(6, "feet"),
  56625. weight: math.unit(150, "lb"),
  56626. name: "Front",
  56627. image: {
  56628. source: "./media/characters/robin-phox/yoshi-front.svg",
  56629. extra: 890/792,
  56630. bottom: 29/919
  56631. },
  56632. form: "yoshi",
  56633. default: true
  56634. },
  56635. yoshi_frontNsfw: {
  56636. height: math.unit(6, "feet"),
  56637. weight: math.unit(150, "lb"),
  56638. name: "Front (NSFW)",
  56639. image: {
  56640. source: "./media/characters/robin-phox/yoshi-front-nsfw.svg",
  56641. extra: 890/792,
  56642. bottom: 29/919
  56643. },
  56644. form: "yoshi",
  56645. },
  56646. yoshi_back: {
  56647. height: math.unit(6, "feet"),
  56648. weight: math.unit(150, "lb"),
  56649. name: "Back",
  56650. image: {
  56651. source: "./media/characters/robin-phox/yoshi-back.svg",
  56652. extra: 890/792,
  56653. bottom: 29/919
  56654. },
  56655. form: "yoshi",
  56656. },
  56657. yoshi_foot: {
  56658. height: math.unit(1.5, "feet"),
  56659. name: "Foot",
  56660. image: {
  56661. source: "./media/characters/robin-phox/yoshi-foot.svg"
  56662. },
  56663. form: "yoshi",
  56664. },
  56665. delphox_front: {
  56666. height: math.unit(4 + 11/12, "feet"),
  56667. weight: math.unit(86, "lb"),
  56668. name: "Front",
  56669. image: {
  56670. source: "./media/characters/robin-phox/delphox-front.svg",
  56671. extra: 1266/1069,
  56672. bottom: 32/1298
  56673. },
  56674. form: "delphox",
  56675. default: true
  56676. },
  56677. delphox_frontNsfw: {
  56678. height: math.unit(4 + 11/12, "feet"),
  56679. weight: math.unit(86, "lb"),
  56680. name: "Front (NSFW)",
  56681. image: {
  56682. source: "./media/characters/robin-phox/delphox-front-nsfw.svg",
  56683. extra: 1266/1069,
  56684. bottom: 32/1298
  56685. },
  56686. form: "delphox",
  56687. },
  56688. delphox_back: {
  56689. height: math.unit(4 + 11/12, "feet"),
  56690. weight: math.unit(86, "lb"),
  56691. name: "Back",
  56692. image: {
  56693. source: "./media/characters/robin-phox/delphox-back.svg",
  56694. extra: 1269/1083,
  56695. bottom: 15/1284
  56696. },
  56697. form: "delphox",
  56698. },
  56699. mienshao_front: {
  56700. height: math.unit(4 + 7/12, "feet"),
  56701. weight: math.unit(78.3, "lb"),
  56702. name: "Front",
  56703. image: {
  56704. source: "./media/characters/robin-phox/mienshao-front.svg",
  56705. extra: 1052/970,
  56706. bottom: 108/1160
  56707. },
  56708. form: "mienshao",
  56709. default: true
  56710. },
  56711. mienshao_frontNsfw: {
  56712. height: math.unit(4 + 7/12, "feet"),
  56713. weight: math.unit(78.3, "lb"),
  56714. name: "Front (NSFW)",
  56715. image: {
  56716. source: "./media/characters/robin-phox/mienshao-front-nsfw.svg",
  56717. extra: 1052/970,
  56718. bottom: 108/1160
  56719. },
  56720. form: "mienshao",
  56721. },
  56722. mienshao_back: {
  56723. height: math.unit(4 + 7/12, "feet"),
  56724. weight: math.unit(78.3, "lb"),
  56725. name: "Back",
  56726. image: {
  56727. source: "./media/characters/robin-phox/mienshao-back.svg",
  56728. extra: 1102/982,
  56729. bottom: 32/1134
  56730. },
  56731. form: "mienshao",
  56732. },
  56733. inteleon_front: {
  56734. height: math.unit(6 + 3/12, "feet"),
  56735. weight: math.unit(99.6, "lb"),
  56736. name: "Front",
  56737. image: {
  56738. source: "./media/characters/robin-phox/inteleon-front.svg",
  56739. extra: 910/799,
  56740. bottom: 76/986
  56741. },
  56742. form: "inteleon",
  56743. default: true
  56744. },
  56745. inteleon_frontNsfw: {
  56746. height: math.unit(6 + 3/12, "feet"),
  56747. weight: math.unit(99.6, "lb"),
  56748. name: "Front (NSFW)",
  56749. image: {
  56750. source: "./media/characters/robin-phox/inteleon-front-nsfw.svg",
  56751. extra: 910/799,
  56752. bottom: 76/986
  56753. },
  56754. form: "inteleon",
  56755. },
  56756. inteleon_back: {
  56757. height: math.unit(6 + 3/12, "feet"),
  56758. weight: math.unit(99.6, "lb"),
  56759. name: "Back",
  56760. image: {
  56761. source: "./media/characters/robin-phox/inteleon-back.svg",
  56762. extra: 907/796,
  56763. bottom: 25/932
  56764. },
  56765. form: "inteleon",
  56766. },
  56767. reshiram_front: {
  56768. height: math.unit(10 + 6/12, "feet"),
  56769. weight: math.unit(727.5, "lb"),
  56770. name: "Front",
  56771. image: {
  56772. source: "./media/characters/robin-phox/reshiram-front.svg",
  56773. extra: 1198/940,
  56774. bottom: 123/1321
  56775. },
  56776. form: "reshiram",
  56777. },
  56778. reshiram_frontNsfw: {
  56779. height: math.unit(10 + 6/12, "feet"),
  56780. weight: math.unit(727.5, "lb"),
  56781. name: "Front-nsfw",
  56782. image: {
  56783. source: "./media/characters/robin-phox/reshiram-front-nsfw.svg",
  56784. extra: 1198/940,
  56785. bottom: 123/1321
  56786. },
  56787. form: "reshiram",
  56788. },
  56789. reshiram_back: {
  56790. height: math.unit(10 + 6/12, "feet"),
  56791. weight: math.unit(727.5, "lb"),
  56792. name: "Back",
  56793. image: {
  56794. source: "./media/characters/robin-phox/reshiram-back.svg",
  56795. extra: 1024/904,
  56796. bottom: 85/1109
  56797. },
  56798. form: "reshiram",
  56799. },
  56800. samurott_front: {
  56801. height: math.unit(8, "feet"),
  56802. weight: math.unit(208.6, "lb"),
  56803. name: "Front",
  56804. image: {
  56805. source: "./media/characters/robin-phox/samurott-front.svg",
  56806. extra: 1048/984,
  56807. bottom: 100/1148
  56808. },
  56809. form: "samurott",
  56810. },
  56811. samurott_frontNsfw: {
  56812. height: math.unit(8, "feet"),
  56813. weight: math.unit(208.6, "lb"),
  56814. name: "Front-nsfw",
  56815. image: {
  56816. source: "./media/characters/robin-phox/samurott-front-nsfw.svg",
  56817. extra: 1048/984,
  56818. bottom: 100/1148
  56819. },
  56820. form: "samurott",
  56821. },
  56822. samurott_back: {
  56823. height: math.unit(8, "feet"),
  56824. weight: math.unit(208.6, "lb"),
  56825. name: "Back",
  56826. image: {
  56827. source: "./media/characters/robin-phox/samurott-back.svg",
  56828. extra: 1110/1042,
  56829. bottom: 12/1122
  56830. },
  56831. form: "samurott",
  56832. },
  56833. samurott_feral: {
  56834. height: math.unit(4 + 11/12, "feet"),
  56835. weight: math.unit(208.6, "lb"),
  56836. name: "Feral",
  56837. image: {
  56838. source: "./media/characters/robin-phox/samurott-feral.svg",
  56839. extra: 766/681,
  56840. bottom: 108/874
  56841. },
  56842. form: "samurott",
  56843. },
  56844. },
  56845. [
  56846. {
  56847. name: "Normal",
  56848. height: math.unit(2, "feet"),
  56849. default: true,
  56850. form: "snivy"
  56851. },
  56852. {
  56853. name: "Normal",
  56854. height: math.unit(6, "feet"),
  56855. default: true,
  56856. form: "yoshi"
  56857. },
  56858. {
  56859. name: "Normal",
  56860. height: math.unit(4 + 11/12, "feet"),
  56861. default: true,
  56862. form: "delphox"
  56863. },
  56864. {
  56865. name: "Normal",
  56866. height: math.unit(4 + 7/12, "feet"),
  56867. default: true,
  56868. form: "mienshao"
  56869. },
  56870. {
  56871. name: "Normal",
  56872. height: math.unit(6 + 3/12, "feet"),
  56873. default: true,
  56874. form: "inteleon"
  56875. },
  56876. {
  56877. name: "Normal",
  56878. height: math.unit(10 + 6/12, "feet"),
  56879. default: true,
  56880. form: "reshiram"
  56881. },
  56882. {
  56883. name: "Normal",
  56884. height: math.unit(8, "feet"),
  56885. default: true,
  56886. form: "samurott"
  56887. },
  56888. {
  56889. name: "Macro",
  56890. height: math.unit(500, "feet"),
  56891. allForms: true
  56892. },
  56893. {
  56894. name: "Mega Macro",
  56895. height: math.unit(10, "earths"),
  56896. allForms: true
  56897. },
  56898. {
  56899. name: "Giga Macro",
  56900. height: math.unit(1, "galaxy"),
  56901. allForms: true
  56902. },
  56903. {
  56904. name: "Godly Macro",
  56905. height: math.unit(1e10, "multiverses"),
  56906. allForms: true
  56907. },
  56908. ],
  56909. {
  56910. "snivy": {
  56911. name: "Snivy",
  56912. default: true
  56913. },
  56914. "yoshi": {
  56915. name: "Yoshi",
  56916. },
  56917. "delphox": {
  56918. name: "Delphox",
  56919. },
  56920. "mienshao": {
  56921. name: "Mienshao",
  56922. },
  56923. "inteleon": {
  56924. name: "Inteleon",
  56925. },
  56926. "reshiram": {
  56927. name: "Reshiram",
  56928. },
  56929. "samurott": {
  56930. name: "Samurott",
  56931. },
  56932. }
  56933. ))
  56934. characterMakers.push(() => makeCharacter(
  56935. { name: "Ash Leung", species: ["red-panda"], tags: ["anthro"] },
  56936. {
  56937. front: {
  56938. height: math.unit(4, "feet"),
  56939. name: "Front",
  56940. image: {
  56941. source: "./media/characters/ash-leung/front.svg",
  56942. extra: 1916/1792,
  56943. bottom: 50/1966
  56944. }
  56945. },
  56946. },
  56947. [
  56948. {
  56949. name: "Atomic",
  56950. height: math.unit(1, "angstrom")
  56951. },
  56952. {
  56953. name: "Microscopic",
  56954. height: math.unit(4000, "angstroms")
  56955. },
  56956. {
  56957. name: "Speck",
  56958. height: math.unit(1, "mm")
  56959. },
  56960. {
  56961. name: "Small",
  56962. height: math.unit(1, "inch")
  56963. },
  56964. {
  56965. name: "Normal",
  56966. height: math.unit(4, "feet"),
  56967. default: true
  56968. },
  56969. ]
  56970. ))
  56971. characterMakers.push(() => makeCharacter(
  56972. { name: "Carie", species: ["lucario"], tags: ["anthro"] },
  56973. {
  56974. frontDressed: {
  56975. height: math.unit(2.08, "meters"),
  56976. weight: math.unit(175, "lb"),
  56977. name: "Front (Dressed)",
  56978. image: {
  56979. source: "./media/characters/carie/front-dressed.svg",
  56980. extra: 456/417,
  56981. bottom: 7/463
  56982. }
  56983. },
  56984. backDressed: {
  56985. height: math.unit(2.08, "meters"),
  56986. weight: math.unit(175, "lb"),
  56987. name: "Back (Dressed)",
  56988. image: {
  56989. source: "./media/characters/carie/back-dressed.svg",
  56990. extra: 455/414,
  56991. bottom: 11/466
  56992. }
  56993. },
  56994. front: {
  56995. height: math.unit(2, "meters"),
  56996. weight: math.unit(175, "lb"),
  56997. name: "Front",
  56998. image: {
  56999. source: "./media/characters/carie/front.svg",
  57000. extra: 438/399,
  57001. bottom: 12/450
  57002. }
  57003. },
  57004. back: {
  57005. height: math.unit(2, "meters"),
  57006. weight: math.unit(175, "lb"),
  57007. name: "Back",
  57008. image: {
  57009. source: "./media/characters/carie/back.svg",
  57010. extra: 438/397,
  57011. bottom: 7/445
  57012. }
  57013. },
  57014. },
  57015. [
  57016. {
  57017. name: "Normal",
  57018. height: math.unit(2.08, "meters"),
  57019. default: true
  57020. },
  57021. {
  57022. name: "Macro",
  57023. height: math.unit(2.08e3, "meters")
  57024. },
  57025. {
  57026. name: "Mega Macro",
  57027. height: math.unit(2.08e6, "meters")
  57028. },
  57029. {
  57030. name: "Giga Macro",
  57031. height: math.unit(2.08e9, "meters")
  57032. },
  57033. {
  57034. name: "Tera Macro",
  57035. height: math.unit(2.08e12, "meters")
  57036. },
  57037. {
  57038. name: "Peta Macro",
  57039. height: math.unit(2.08e15, "meters")
  57040. },
  57041. {
  57042. name: "Exa Macro",
  57043. height: math.unit(2.08e18, "meters")
  57044. },
  57045. {
  57046. name: "Zetta Macro",
  57047. height: math.unit(2.08e21, "meters")
  57048. },
  57049. {
  57050. name: "Yotta Macro",
  57051. height: math.unit(2.08e24, "meters")
  57052. },
  57053. ]
  57054. ))
  57055. characterMakers.push(() => makeCharacter(
  57056. { name: "Sai Bree", species: ["sabertooth-tiger"], tags: ["anthro"] },
  57057. {
  57058. front: {
  57059. height: math.unit(5 + 2/12, "feet"),
  57060. weight: math.unit(120, "lb"),
  57061. name: "Front",
  57062. image: {
  57063. source: "./media/characters/sai-bree/front.svg",
  57064. extra: 1843/1702,
  57065. bottom: 91/1934
  57066. }
  57067. },
  57068. back: {
  57069. height: math.unit(5 + 2/12, "feet"),
  57070. weight: math.unit(120, "lb"),
  57071. name: "Back",
  57072. image: {
  57073. source: "./media/characters/sai-bree/back.svg",
  57074. extra: 1809/1637,
  57075. bottom: 56/1865
  57076. }
  57077. },
  57078. },
  57079. [
  57080. {
  57081. name: "Normal",
  57082. height: math.unit(5 + 2/12, "feet"),
  57083. default: true
  57084. },
  57085. {
  57086. name: "Macro",
  57087. height: math.unit(500, "feet")
  57088. },
  57089. ]
  57090. ))
  57091. characterMakers.push(() => makeCharacter(
  57092. { name: "Davwyn", species: ["dragon"], tags: ["feral"] },
  57093. {
  57094. side: {
  57095. height: math.unit(0.77, "meters"),
  57096. weight: math.unit(120, "lb"),
  57097. name: "Side",
  57098. image: {
  57099. source: "./media/characters/davwyn/side.svg",
  57100. extra: 1557/1225,
  57101. bottom: 131/1688
  57102. }
  57103. },
  57104. front: {
  57105. height: math.unit(0.835410, "meters"),
  57106. weight: math.unit(120, "lb"),
  57107. name: "Front",
  57108. image: {
  57109. source: "./media/characters/davwyn/front.svg",
  57110. extra: 870/843,
  57111. bottom: 175/1045
  57112. }
  57113. },
  57114. },
  57115. [
  57116. {
  57117. name: "Minidrake",
  57118. height: math.unit(0.77/4, "meters")
  57119. },
  57120. {
  57121. name: "Normal",
  57122. height: math.unit(0.77, "meters"),
  57123. default: true
  57124. },
  57125. ]
  57126. ))
  57127. characterMakers.push(() => makeCharacter(
  57128. { name: "Balans", species: ["dragon", "kangaroo"], tags: ["anthro"] },
  57129. {
  57130. front: {
  57131. height: math.unit(10 + 3/12, "feet"),
  57132. weight: math.unit(2857, "lb"),
  57133. name: "Front",
  57134. image: {
  57135. source: "./media/characters/balans/front.svg",
  57136. extra: 427/402,
  57137. bottom: 26/453
  57138. }
  57139. },
  57140. side: {
  57141. height: math.unit(10 + 3/12, "feet"),
  57142. weight: math.unit(2857, "lb"),
  57143. name: "Side",
  57144. image: {
  57145. source: "./media/characters/balans/side.svg",
  57146. extra: 397/371,
  57147. bottom: 17/414
  57148. }
  57149. },
  57150. back: {
  57151. height: math.unit(10 + 3/12, "feet"),
  57152. weight: math.unit(2857, "lb"),
  57153. name: "Back",
  57154. image: {
  57155. source: "./media/characters/balans/back.svg",
  57156. extra: 408/381,
  57157. bottom: 14/422
  57158. }
  57159. },
  57160. hand: {
  57161. height: math.unit(1.15, "feet"),
  57162. name: "Hand",
  57163. image: {
  57164. source: "./media/characters/balans/hand.svg"
  57165. }
  57166. },
  57167. footRest: {
  57168. height: math.unit(3.1, "feet"),
  57169. name: "Foot (Rest)",
  57170. image: {
  57171. source: "./media/characters/balans/foot-rest.svg"
  57172. }
  57173. },
  57174. footActive: {
  57175. height: math.unit(3.5, "feet"),
  57176. name: "Foot (Active)",
  57177. image: {
  57178. source: "./media/characters/balans/foot-active.svg"
  57179. }
  57180. },
  57181. },
  57182. [
  57183. {
  57184. name: "Normal",
  57185. height: math.unit(10 + 3/12, "feet"),
  57186. default: true
  57187. },
  57188. ]
  57189. ))
  57190. characterMakers.push(() => makeCharacter(
  57191. { name: "Eldkveikir", species: ["dragon"], tags: ["feral"] },
  57192. {
  57193. side: {
  57194. height: math.unit(9, "meters"),
  57195. weight: math.unit(114, "tonnes"),
  57196. name: "Side",
  57197. image: {
  57198. source: "./media/characters/eldkveikir/side.svg",
  57199. extra: 1927/338,
  57200. bottom: 42/1969
  57201. }
  57202. },
  57203. sitting: {
  57204. height: math.unit(13.4, "meters"),
  57205. weight: math.unit(114, "tonnes"),
  57206. name: "Sitting",
  57207. image: {
  57208. source: "./media/characters/eldkveikir/sitting.svg",
  57209. extra: 1108/963,
  57210. bottom: 610/1718
  57211. }
  57212. },
  57213. maw: {
  57214. height: math.unit(8.36, "meters"),
  57215. name: "Maw",
  57216. image: {
  57217. source: "./media/characters/eldkveikir/maw.svg"
  57218. }
  57219. },
  57220. hand: {
  57221. height: math.unit(4.84, "meters"),
  57222. name: "Hand",
  57223. image: {
  57224. source: "./media/characters/eldkveikir/hand.svg"
  57225. }
  57226. },
  57227. foot: {
  57228. height: math.unit(6.9, "meters"),
  57229. name: "Foot",
  57230. image: {
  57231. source: "./media/characters/eldkveikir/foot.svg"
  57232. }
  57233. },
  57234. genitals: {
  57235. height: math.unit(9.6, "meters"),
  57236. name: "Genitals",
  57237. image: {
  57238. source: "./media/characters/eldkveikir/genitals.svg"
  57239. }
  57240. },
  57241. },
  57242. [
  57243. {
  57244. name: "Normal",
  57245. height: math.unit(9, "meters"),
  57246. default: true
  57247. },
  57248. ]
  57249. ))
  57250. characterMakers.push(() => makeCharacter(
  57251. { name: "Arrow", species: ["wolf"], tags: ["anthro"] },
  57252. {
  57253. front: {
  57254. height: math.unit(14, "feet"),
  57255. weight: math.unit(4100, "lb"),
  57256. name: "Front",
  57257. image: {
  57258. source: "./media/characters/arrow/front.svg",
  57259. extra: 330/318,
  57260. bottom: 56/386
  57261. }
  57262. },
  57263. },
  57264. [
  57265. {
  57266. name: "Normal",
  57267. height: math.unit(14, "feet"),
  57268. default: true
  57269. },
  57270. {
  57271. name: "Minimacro",
  57272. height: math.unit(63, "feet")
  57273. },
  57274. {
  57275. name: "Macro",
  57276. height: math.unit(630, "feet")
  57277. },
  57278. {
  57279. name: "Megamacro",
  57280. height: math.unit(12600, "feet")
  57281. },
  57282. {
  57283. name: "Gigamacro",
  57284. height: math.unit(18000, "miles")
  57285. },
  57286. ]
  57287. ))
  57288. characterMakers.push(() => makeCharacter(
  57289. { name: "3YK-K0 Unit", species: ["synth"], tags: ["anthro"] },
  57290. {
  57291. front: {
  57292. height: math.unit(10, "feet"),
  57293. weight: math.unit(2.4, "tons"),
  57294. name: "Front",
  57295. image: {
  57296. source: "./media/characters/3yk-k0-unit/front.svg",
  57297. extra: 573/561,
  57298. bottom: 33/606
  57299. }
  57300. },
  57301. back: {
  57302. height: math.unit(10, "feet"),
  57303. weight: math.unit(2.4, "tons"),
  57304. name: "Back",
  57305. image: {
  57306. source: "./media/characters/3yk-k0-unit/back.svg",
  57307. extra: 614/573,
  57308. bottom: 32/646
  57309. }
  57310. },
  57311. maw: {
  57312. height: math.unit(2.15, "feet"),
  57313. name: "Maw",
  57314. image: {
  57315. source: "./media/characters/3yk-k0-unit/maw.svg"
  57316. }
  57317. },
  57318. },
  57319. [
  57320. {
  57321. name: "Normal",
  57322. height: math.unit(10, "feet"),
  57323. default: true
  57324. },
  57325. ]
  57326. ))
  57327. characterMakers.push(() => makeCharacter(
  57328. { name: "Nemo", species: ["dragon"], tags: ["anthro"] },
  57329. {
  57330. front: {
  57331. height: math.unit(8 + 8/12, "feet"),
  57332. name: "Front",
  57333. image: {
  57334. source: "./media/characters/nemo/front.svg",
  57335. extra: 1308/1217,
  57336. bottom: 57/1365
  57337. }
  57338. },
  57339. },
  57340. [
  57341. {
  57342. name: "Normal",
  57343. height: math.unit(8 + 8/12, "feet"),
  57344. default: true
  57345. },
  57346. ]
  57347. ))
  57348. characterMakers.push(() => makeCharacter(
  57349. { name: "Rexx", species: ["wolf"], tags: ["anthro"] },
  57350. {
  57351. front: {
  57352. height: math.unit(8, "feet"),
  57353. weight: math.unit(760, "lb"),
  57354. name: "Front",
  57355. image: {
  57356. source: "./media/characters/rexx/front.svg",
  57357. extra: 786/750,
  57358. bottom: 17/803
  57359. },
  57360. extraAttributes: {
  57361. "pawLength": {
  57362. name: "Paw Length",
  57363. power: 1,
  57364. type: "length",
  57365. base: math.unit(27, "inches")
  57366. },
  57367. }
  57368. },
  57369. },
  57370. [
  57371. {
  57372. name: "Micro",
  57373. height: math.unit(2, "inches")
  57374. },
  57375. {
  57376. name: "Normal",
  57377. height: math.unit(8, "feet"),
  57378. default: true
  57379. },
  57380. {
  57381. name: "Macro",
  57382. height: math.unit(150, "feet")
  57383. },
  57384. ]
  57385. ))
  57386. characterMakers.push(() => makeCharacter(
  57387. { name: "Draco", species: ["dragon"], tags: ["anthro"] },
  57388. {
  57389. front: {
  57390. height: math.unit(18, "feet"),
  57391. weight: math.unit(1975, "lb"),
  57392. name: "Front",
  57393. image: {
  57394. source: "./media/characters/draco/front.svg",
  57395. extra: 1325/1241,
  57396. bottom: 83/1408
  57397. }
  57398. },
  57399. back: {
  57400. height: math.unit(18, "feet"),
  57401. weight: math.unit(1975, "lb"),
  57402. name: "Back",
  57403. image: {
  57404. source: "./media/characters/draco/back.svg",
  57405. extra: 1332/1250,
  57406. bottom: 43/1375
  57407. }
  57408. },
  57409. dick: {
  57410. height: math.unit(7.5, "feet"),
  57411. name: "Dick",
  57412. image: {
  57413. source: "./media/characters/draco/dick.svg"
  57414. }
  57415. },
  57416. },
  57417. [
  57418. {
  57419. name: "Normal",
  57420. height: math.unit(18, "feet"),
  57421. default: true
  57422. },
  57423. ]
  57424. ))
  57425. characterMakers.push(() => makeCharacter(
  57426. { name: "Harriett", species: ["nedynvor"], tags: ["anthro"] },
  57427. {
  57428. front: {
  57429. height: math.unit(3.2, "meters"),
  57430. name: "Front",
  57431. image: {
  57432. source: "./media/characters/harriett/front.svg",
  57433. extra: 1966/1915,
  57434. bottom: 9/1975
  57435. }
  57436. },
  57437. },
  57438. [
  57439. {
  57440. name: "Normal",
  57441. height: math.unit(3.2, "meters"),
  57442. default: true
  57443. },
  57444. ]
  57445. ))
  57446. characterMakers.push(() => makeCharacter(
  57447. { name: "Serpentus", species: ["snake"], tags: ["anthro"] },
  57448. {
  57449. sitting: {
  57450. height: math.unit(0.8, "meter"),
  57451. name: "Sitting",
  57452. image: {
  57453. source: "./media/characters/serpentus/sitting.svg",
  57454. extra: 293/290,
  57455. bottom: 140/433
  57456. }
  57457. },
  57458. },
  57459. [
  57460. {
  57461. name: "Normal",
  57462. height: math.unit(0.8, "meter"),
  57463. default: true
  57464. },
  57465. ]
  57466. ))
  57467. characterMakers.push(() => makeCharacter(
  57468. { name: "Nova (Polecat)", species: ["marbled-polecat"], tags: ["anthro"] },
  57469. {
  57470. front: {
  57471. height: math.unit(5.7174385736, "feet"),
  57472. name: "Front",
  57473. image: {
  57474. source: "./media/characters/nova-polecat/front.svg",
  57475. extra: 1317/1216,
  57476. bottom: 92/1409
  57477. }
  57478. },
  57479. },
  57480. [
  57481. {
  57482. name: "Normal",
  57483. height: math.unit(5.7174385736, "feet"),
  57484. default: true
  57485. },
  57486. ]
  57487. ))
  57488. characterMakers.push(() => makeCharacter(
  57489. { name: "Mook", species: ["monkey", "ape"], tags: ["anthro"] },
  57490. {
  57491. front: {
  57492. height: math.unit(5 + 4/12, "feet"),
  57493. weight: math.unit(250, "lb"),
  57494. name: "Front",
  57495. image: {
  57496. source: "./media/characters/mook/front.svg",
  57497. extra: 1088/1037,
  57498. bottom: 132/1220
  57499. }
  57500. },
  57501. back: {
  57502. height: math.unit(5 + 1/12, "feet"),
  57503. weight: math.unit(250, "lb"),
  57504. name: "Back",
  57505. image: {
  57506. source: "./media/characters/mook/back.svg",
  57507. extra: 1184/905,
  57508. bottom: 96/1280
  57509. }
  57510. },
  57511. head: {
  57512. height: math.unit(1.85, "feet"),
  57513. name: "Head",
  57514. image: {
  57515. source: "./media/characters/mook/head.svg"
  57516. }
  57517. },
  57518. hand: {
  57519. height: math.unit(1.9, "feet"),
  57520. name: "Hand",
  57521. image: {
  57522. source: "./media/characters/mook/hand.svg"
  57523. }
  57524. },
  57525. palm: {
  57526. height: math.unit(1.84, "feet"),
  57527. name: "Palm",
  57528. image: {
  57529. source: "./media/characters/mook/palm.svg"
  57530. }
  57531. },
  57532. foot: {
  57533. height: math.unit(1.44, "feet"),
  57534. name: "Foot",
  57535. image: {
  57536. source: "./media/characters/mook/foot.svg"
  57537. }
  57538. },
  57539. sole: {
  57540. height: math.unit(1.44, "feet"),
  57541. name: "Sole",
  57542. image: {
  57543. source: "./media/characters/mook/sole.svg"
  57544. }
  57545. },
  57546. },
  57547. [
  57548. {
  57549. name: "Normal",
  57550. height: math.unit(5 + 4/12, "feet"),
  57551. default: true
  57552. },
  57553. {
  57554. name: "Big",
  57555. height: math.unit(12, "feet")
  57556. },
  57557. ]
  57558. ))
  57559. characterMakers.push(() => makeCharacter(
  57560. { name: "Kayla", species: ["human"], tags: ["anthro"] },
  57561. {
  57562. front: {
  57563. height: math.unit(6 + 10/12, "feet"),
  57564. weight: math.unit(233, "lb"),
  57565. name: "Front",
  57566. image: {
  57567. source: "./media/characters/kayla/front.svg",
  57568. extra: 1850/1775,
  57569. bottom: 65/1915
  57570. }
  57571. },
  57572. },
  57573. [
  57574. {
  57575. name: "Normal",
  57576. height: math.unit(6 + 10/12, "feet"),
  57577. default: true
  57578. },
  57579. {
  57580. name: "Amazonian",
  57581. height: math.unit(12 + 5/12, "feet")
  57582. },
  57583. {
  57584. name: "Mini Giantess",
  57585. height: math.unit(26, "feet")
  57586. },
  57587. {
  57588. name: "Giantess",
  57589. height: math.unit(200, "feet")
  57590. },
  57591. {
  57592. name: "Mega Giantess",
  57593. height: math.unit(2500, "feet")
  57594. },
  57595. {
  57596. name: "City Sized",
  57597. height: math.unit(50, "miles")
  57598. },
  57599. {
  57600. name: "Country Sized",
  57601. height: math.unit(500, "miles")
  57602. },
  57603. {
  57604. name: "Continent Sized",
  57605. height: math.unit(2500, "miles")
  57606. },
  57607. {
  57608. name: "Planet Sized",
  57609. height: math.unit(10000, "miles")
  57610. },
  57611. {
  57612. name: "Star Sized",
  57613. height: math.unit(5e6, "miles")
  57614. },
  57615. {
  57616. name: "Solar System Sized",
  57617. height: math.unit(125, "AU")
  57618. },
  57619. {
  57620. name: "Galaxy Sized",
  57621. height: math.unit(300e3, "lightyears")
  57622. },
  57623. {
  57624. name: "Universe Sized",
  57625. height: math.unit(200e9, "lightyears")
  57626. },
  57627. {
  57628. name: "Multiverse Sized",
  57629. height: math.unit(20, "exauniverses")
  57630. },
  57631. {
  57632. name: "Mother of Existence",
  57633. height: math.unit(1e6, "yottauniverses")
  57634. },
  57635. ]
  57636. ))
  57637. characterMakers.push(() => makeCharacter(
  57638. { name: "Kulve Ragnarok", species: ["kulve-taroth"], tags: ["taur"] },
  57639. {
  57640. side: {
  57641. height: math.unit(9.5, "meters"),
  57642. name: "Side",
  57643. image: {
  57644. source: "./media/characters/kulve-ragnarok/side.svg",
  57645. extra: 364/326,
  57646. bottom: 50/414
  57647. }
  57648. },
  57649. },
  57650. [
  57651. {
  57652. name: "Normal",
  57653. height: math.unit(9.5, "meters"),
  57654. default: true
  57655. },
  57656. ]
  57657. ))
  57658. characterMakers.push(() => makeCharacter(
  57659. { name: "Atlas (Goat)", species: ["goat"], tags: ["anthro"] },
  57660. {
  57661. front: {
  57662. height: math.unit(8 + 9/12, "feet"),
  57663. name: "Front",
  57664. image: {
  57665. source: "./media/characters/atlas-goat/front.svg",
  57666. extra: 1462/1323,
  57667. bottom: 12/1474
  57668. }
  57669. },
  57670. },
  57671. [
  57672. {
  57673. name: "Normal",
  57674. height: math.unit(8 + 9/12, "feet"),
  57675. default: true
  57676. },
  57677. {
  57678. name: "Skyline",
  57679. height: math.unit(845, "feet")
  57680. },
  57681. {
  57682. name: "Orbital",
  57683. height: math.unit(93000, "miles")
  57684. },
  57685. {
  57686. name: "Constellation",
  57687. height: math.unit(27000, "lightyears")
  57688. },
  57689. ]
  57690. ))
  57691. characterMakers.push(() => makeCharacter(
  57692. { name: "Xie Ling", species: ["irthos"], tags: ["anthro"] },
  57693. {
  57694. side: {
  57695. height: math.unit(1.8, "meters"),
  57696. weight: math.unit(120, "kg"),
  57697. name: "Side",
  57698. image: {
  57699. source: "./media/characters/xie-ling/side.svg",
  57700. extra: 646/574,
  57701. bottom: 44/690
  57702. }
  57703. },
  57704. },
  57705. [
  57706. {
  57707. name: "Tiny",
  57708. height: math.unit(1.80, "meters")
  57709. },
  57710. {
  57711. name: "Small",
  57712. height: math.unit(6, "meters")
  57713. },
  57714. {
  57715. name: "Medium",
  57716. height: math.unit(15, "meters")
  57717. },
  57718. {
  57719. name: "Normal",
  57720. height: math.unit(30, "meters"),
  57721. default: true
  57722. },
  57723. {
  57724. name: "Above Normal",
  57725. height: math.unit(60, "meters")
  57726. },
  57727. {
  57728. name: "Big",
  57729. height: math.unit(220, "meters")
  57730. },
  57731. {
  57732. name: "Giant",
  57733. height: math.unit(2.2, "km")
  57734. },
  57735. {
  57736. name: "Macro",
  57737. height: math.unit(25, "km")
  57738. },
  57739. {
  57740. name: "Mega Macro",
  57741. height: math.unit(350, "km")
  57742. },
  57743. {
  57744. name: "Mega Macro+",
  57745. height: math.unit(5000, "km")
  57746. },
  57747. {
  57748. name: "Goddess",
  57749. height: math.unit(3, "multiverses")
  57750. },
  57751. ]
  57752. ))
  57753. characterMakers.push(() => makeCharacter(
  57754. { name: "Sune Nemeruva", species: ["furred-dragon"], tags: ["anthro"] },
  57755. {
  57756. frontSfw: {
  57757. height: math.unit(5 + 11/12, "feet"),
  57758. weight: math.unit(210, "lb"),
  57759. name: "Front",
  57760. image: {
  57761. source: "./media/characters/sune-nemeruva/front-sfw.svg",
  57762. extra: 1928/1821,
  57763. bottom: 45/1973
  57764. }
  57765. },
  57766. backSfw: {
  57767. height: math.unit(5 + 11/12, "feet"),
  57768. weight: math.unit(210, "lb"),
  57769. name: "Back",
  57770. image: {
  57771. source: "./media/characters/sune-nemeruva/back-sfw.svg",
  57772. extra: 1920/1813,
  57773. bottom: 34/1954
  57774. }
  57775. },
  57776. frontNsfw: {
  57777. height: math.unit(5 + 11/12, "feet"),
  57778. weight: math.unit(210, "lb"),
  57779. name: "Front (NSFW)",
  57780. image: {
  57781. source: "./media/characters/sune-nemeruva/front-nsfw.svg",
  57782. extra: 1928/1821,
  57783. bottom: 45/1973
  57784. }
  57785. },
  57786. backNsfw: {
  57787. height: math.unit(5 + 11/12, "feet"),
  57788. weight: math.unit(210, "lb"),
  57789. name: "Back (NSFW)",
  57790. image: {
  57791. source: "./media/characters/sune-nemeruva/back-nsfw.svg",
  57792. extra: 1920/1813,
  57793. bottom: 34/1954
  57794. }
  57795. },
  57796. },
  57797. [
  57798. {
  57799. name: "Normal",
  57800. height: math.unit(5 + 11/12, "feet"),
  57801. default: true
  57802. },
  57803. {
  57804. name: "Goddess",
  57805. height: math.unit(20 + 3/12, "feet")
  57806. },
  57807. {
  57808. name: "Breaker of Man",
  57809. height: math.unit(329 + 9/12, "feet")
  57810. },
  57811. {
  57812. name: "Solar Justice",
  57813. height: math.unit(0.6, "solarradii")
  57814. },
  57815. {
  57816. name: "She Who Judges",
  57817. height: math.unit(1, "universe")
  57818. },
  57819. ]
  57820. ))
  57821. characterMakers.push(() => makeCharacter(
  57822. { name: "Managarmr", species: ["dragon", "deity"], tags: ["anthro"] },
  57823. {
  57824. casual_front: {
  57825. height: math.unit(6 + 1/12, "feet"),
  57826. weight: math.unit(190, "lb"),
  57827. preyCapacity: math.unit(1, "people"),
  57828. name: "Front",
  57829. image: {
  57830. source: "./media/characters/managarmr/casual-front.svg",
  57831. extra: 411/381,
  57832. bottom: 15/426
  57833. },
  57834. extraAttributes: {
  57835. "pawSize": {
  57836. name: "Paw Size",
  57837. power: 1,
  57838. type: "length",
  57839. base: math.unit(0.2, "meters")
  57840. },
  57841. },
  57842. form: "casual",
  57843. },
  57844. casual_back: {
  57845. height: math.unit(6 + 1/12, "feet"),
  57846. weight: math.unit(190, "lb"),
  57847. preyCapacity: math.unit(1, "people"),
  57848. name: "Back",
  57849. image: {
  57850. source: "./media/characters/managarmr/casual-back.svg",
  57851. extra: 413/383,
  57852. bottom: 13/426
  57853. },
  57854. extraAttributes: {
  57855. "pawSize": {
  57856. name: "Paw Size",
  57857. power: 1,
  57858. type: "length",
  57859. base: math.unit(0.2, "meters")
  57860. },
  57861. },
  57862. form: "casual",
  57863. },
  57864. base_front: {
  57865. height: math.unit(7, "feet"),
  57866. weight: math.unit(210, "lb"),
  57867. preyCapacity: math.unit(2, "people"),
  57868. name: "Front",
  57869. image: {
  57870. source: "./media/characters/managarmr/base-front.svg",
  57871. extra: 580/485,
  57872. bottom: 32/612
  57873. },
  57874. extraAttributes: {
  57875. "wingspan": {
  57876. name: "Wingspan",
  57877. power: 1,
  57878. type: "length",
  57879. base: math.unit(4, "meters")
  57880. },
  57881. "pawSize": {
  57882. name: "Paw Size",
  57883. power: 1,
  57884. type: "length",
  57885. base: math.unit(0.2, "meters")
  57886. },
  57887. },
  57888. form: "base",
  57889. },
  57890. "true-divine_front": {
  57891. height: math.unit(40, "feet"),
  57892. weight: math.unit(39000, "lb"),
  57893. preyCapacity: math.unit(375, "people"),
  57894. name: "Front",
  57895. image: {
  57896. source: "./media/characters/managarmr/true-divine-front.svg",
  57897. extra: 725/573,
  57898. bottom: 120/845
  57899. },
  57900. extraAttributes: {
  57901. "wingspan": {
  57902. name: "Wingspan",
  57903. power: 1,
  57904. type: "length",
  57905. base: math.unit(20, "meters")
  57906. },
  57907. "pawSize": {
  57908. name: "Paw Size",
  57909. power: 1,
  57910. type: "length",
  57911. base: math.unit(1.5, "meters")
  57912. },
  57913. },
  57914. form: "true-divine",
  57915. },
  57916. },
  57917. [
  57918. {
  57919. name: "Normal",
  57920. height: math.unit(6 + 1/12, "feet"),
  57921. form: "casual",
  57922. default: true
  57923. },
  57924. {
  57925. name: "Normal",
  57926. height: math.unit(7, "feet"),
  57927. form: "base",
  57928. default: true
  57929. },
  57930. ],
  57931. {
  57932. "casual": {
  57933. name: "Casual",
  57934. default: true
  57935. },
  57936. "base": {
  57937. name: "Base",
  57938. },
  57939. "true-divine": {
  57940. name: "True Divine",
  57941. },
  57942. }
  57943. ))
  57944. characterMakers.push(() => makeCharacter(
  57945. { name: "Mystra", species: ["sergal", "deity"], tags: ["anthro"] },
  57946. {
  57947. front: {
  57948. height: math.unit(1.8, "meters"),
  57949. weight: math.unit(110, "kg"),
  57950. name: "Front",
  57951. image: {
  57952. source: "./media/characters/mystra/front.svg",
  57953. extra: 529/442,
  57954. bottom: 31/560
  57955. }
  57956. },
  57957. frontLewd: {
  57958. height: math.unit(1.8, "meters"),
  57959. weight: math.unit(110, "kg"),
  57960. name: "Front (Lewd)",
  57961. image: {
  57962. source: "./media/characters/mystra/front-lewd.svg",
  57963. extra: 529/442,
  57964. bottom: 31/560
  57965. }
  57966. },
  57967. head: {
  57968. height: math.unit(1.63, "feet"),
  57969. name: "Head",
  57970. image: {
  57971. source: "./media/characters/mystra/head.svg"
  57972. }
  57973. },
  57974. paw: {
  57975. height: math.unit(1.9, "feet"),
  57976. name: "Paw",
  57977. image: {
  57978. source: "./media/characters/mystra/paw.svg"
  57979. }
  57980. },
  57981. },
  57982. [
  57983. {
  57984. name: "Incognito",
  57985. height: math.unit(2.3, "meters")
  57986. },
  57987. {
  57988. name: "Small Macro",
  57989. height: math.unit(300, "meters")
  57990. },
  57991. {
  57992. name: "Small Mega",
  57993. height: math.unit(2, "km")
  57994. },
  57995. {
  57996. name: "Mega",
  57997. height: math.unit(30, "km")
  57998. },
  57999. {
  58000. name: "Small Giga",
  58001. height: math.unit(100, "km")
  58002. },
  58003. {
  58004. name: "Giga",
  58005. height: math.unit(1000, "km"),
  58006. default: true
  58007. },
  58008. {
  58009. name: "Continental",
  58010. height: math.unit(5000, "km")
  58011. },
  58012. {
  58013. name: "Terra",
  58014. height: math.unit(20000, "km")
  58015. },
  58016. {
  58017. name: "Solar",
  58018. height: math.unit(2e6, "km")
  58019. },
  58020. {
  58021. name: "Galactic",
  58022. height: math.unit(528502, "lightyears")
  58023. },
  58024. {
  58025. name: "Universal",
  58026. height: math.unit(20, "universes")
  58027. },
  58028. ]
  58029. ))
  58030. characterMakers.push(() => makeCharacter(
  58031. { name: "Caleb", species: ["lion", "cobra", "dragon", "chimera", "deity"], tags: ["anthro"] },
  58032. {
  58033. front: {
  58034. height: math.unit(2, "meters"),
  58035. weight: math.unit(140, "kg"),
  58036. name: "Front",
  58037. image: {
  58038. source: "./media/characters/caleb/front.svg",
  58039. extra: 873/817,
  58040. bottom: 47/920
  58041. }
  58042. },
  58043. back: {
  58044. height: math.unit(2, "meters"),
  58045. weight: math.unit(140, "kg"),
  58046. name: "Back",
  58047. image: {
  58048. source: "./media/characters/caleb/back.svg",
  58049. extra: 877/828,
  58050. bottom: 24/901
  58051. }
  58052. },
  58053. snakeTail: {
  58054. height: math.unit(1.44, "feet"),
  58055. name: "Snake Tail",
  58056. image: {
  58057. source: "./media/characters/caleb/snake-tail.svg"
  58058. }
  58059. },
  58060. dick: {
  58061. height: math.unit(2.6, "feet"),
  58062. name: "Dick",
  58063. image: {
  58064. source: "./media/characters/caleb/dick.svg"
  58065. }
  58066. },
  58067. },
  58068. [
  58069. {
  58070. name: "Incognito",
  58071. height: math.unit(3, "meters")
  58072. },
  58073. {
  58074. name: "Home Size",
  58075. height: math.unit(200, "meters"),
  58076. default: true
  58077. },
  58078. {
  58079. name: "Macro",
  58080. height: math.unit(500, "meters")
  58081. },
  58082. {
  58083. name: "Big Macro",
  58084. height: math.unit(5, "km")
  58085. },
  58086. {
  58087. name: "Giga",
  58088. height: math.unit(250, "km")
  58089. },
  58090. {
  58091. name: "Giga+",
  58092. height: math.unit(5000, "km")
  58093. },
  58094. {
  58095. name: "Small Terra",
  58096. height: math.unit(35e3, "km")
  58097. },
  58098. {
  58099. name: "Terra",
  58100. height: math.unit(2e6, "km")
  58101. },
  58102. {
  58103. name: "Terra+",
  58104. height: math.unit(1.5e6, "km")
  58105. },
  58106. ]
  58107. ))
  58108. characterMakers.push(() => makeCharacter(
  58109. { name: "Gilirian", species: ["giraffe", "zebra", "deity"], tags: ["anthro"] },
  58110. {
  58111. front: {
  58112. height: math.unit(2, "meters"),
  58113. weight: math.unit(120, "kg"),
  58114. name: "Front",
  58115. image: {
  58116. source: "./media/characters/gilirian/front.svg",
  58117. extra: 805/737,
  58118. bottom: 13/818
  58119. }
  58120. },
  58121. side: {
  58122. height: math.unit(2, "meters"),
  58123. weight: math.unit(120, "kg"),
  58124. name: "Side",
  58125. image: {
  58126. source: "./media/characters/gilirian/side.svg",
  58127. extra: 810/746,
  58128. bottom: 6/816
  58129. }
  58130. },
  58131. back: {
  58132. height: math.unit(2, "meters"),
  58133. weight: math.unit(120, "kg"),
  58134. name: "Back",
  58135. image: {
  58136. source: "./media/characters/gilirian/back.svg",
  58137. extra: 815/745,
  58138. bottom: 15/830
  58139. }
  58140. },
  58141. frontNsfw: {
  58142. height: math.unit(2, "meters"),
  58143. weight: math.unit(120, "kg"),
  58144. name: "Front (NSFW)",
  58145. image: {
  58146. source: "./media/characters/gilirian/front-nsfw.svg",
  58147. extra: 805/737,
  58148. bottom: 13/818
  58149. }
  58150. },
  58151. sideNsfw: {
  58152. height: math.unit(2, "meters"),
  58153. weight: math.unit(120, "kg"),
  58154. name: "Side (NSFW)",
  58155. image: {
  58156. source: "./media/characters/gilirian/side-nsfw.svg",
  58157. extra: 810/746,
  58158. bottom: 6/816
  58159. }
  58160. },
  58161. },
  58162. [
  58163. {
  58164. name: "Incognito",
  58165. height: math.unit(2, "meters"),
  58166. default: true
  58167. },
  58168. {
  58169. name: "Macro",
  58170. height: math.unit(250, "meters")
  58171. },
  58172. {
  58173. name: "Big Macro",
  58174. height: math.unit(1500, "meters")
  58175. },
  58176. {
  58177. name: "Mega",
  58178. height: math.unit(40, "km")
  58179. },
  58180. {
  58181. name: "Giga",
  58182. height: math.unit(300, "km")
  58183. },
  58184. {
  58185. name: "Extra Giga",
  58186. height: math.unit(5000, "km")
  58187. },
  58188. {
  58189. name: "Small Terra",
  58190. height: math.unit(10e3, "km")
  58191. },
  58192. {
  58193. name: "Terra",
  58194. height: math.unit(3e5, "km")
  58195. },
  58196. {
  58197. name: "Galactic",
  58198. height: math.unit(369950, "lightyears")
  58199. },
  58200. ]
  58201. ))
  58202. characterMakers.push(() => makeCharacter(
  58203. { name: "Tarken", species: ["t-rex", "kaiju", "deity"], tags: ["anthro"] },
  58204. {
  58205. front: {
  58206. height: math.unit(2.5, "meters"),
  58207. weight: math.unit(230, "lb"),
  58208. name: "Front",
  58209. image: {
  58210. source: "./media/characters/tarken/front.svg",
  58211. extra: 764/720,
  58212. bottom: 49/813
  58213. }
  58214. },
  58215. back: {
  58216. height: math.unit(2.5, "meters"),
  58217. weight: math.unit(230, "lb"),
  58218. name: "Back",
  58219. image: {
  58220. source: "./media/characters/tarken/back.svg",
  58221. extra: 756/720,
  58222. bottom: 35/791
  58223. }
  58224. },
  58225. frontNsfw: {
  58226. height: math.unit(2.5, "meters"),
  58227. weight: math.unit(230, "lb"),
  58228. name: "Front (NSFW)",
  58229. image: {
  58230. source: "./media/characters/tarken/front-nsfw.svg",
  58231. extra: 764/720,
  58232. bottom: 49/813
  58233. }
  58234. },
  58235. backNsfw: {
  58236. height: math.unit(2.5, "meters"),
  58237. weight: math.unit(230, "lb"),
  58238. name: "Back (NSFW)",
  58239. image: {
  58240. source: "./media/characters/tarken/back-nsfw.svg",
  58241. extra: 756/720,
  58242. bottom: 35/791
  58243. }
  58244. },
  58245. head: {
  58246. height: math.unit(2.22, "feet"),
  58247. name: "Head",
  58248. image: {
  58249. source: "./media/characters/tarken/head.svg"
  58250. }
  58251. },
  58252. tail: {
  58253. height: math.unit(5.25, "feet"),
  58254. name: "Tail",
  58255. image: {
  58256. source: "./media/characters/tarken/tail.svg"
  58257. }
  58258. },
  58259. dick: {
  58260. height: math.unit(1.95, "feet"),
  58261. name: "Dick",
  58262. image: {
  58263. source: "./media/characters/tarken/dick.svg"
  58264. }
  58265. },
  58266. hand: {
  58267. height: math.unit(1.78, "feet"),
  58268. name: "Hand",
  58269. image: {
  58270. source: "./media/characters/tarken/hand.svg"
  58271. }
  58272. },
  58273. beam: {
  58274. height: math.unit(1.5, "feet"),
  58275. name: "Beam",
  58276. image: {
  58277. source: "./media/characters/tarken/beam.svg"
  58278. }
  58279. },
  58280. },
  58281. [
  58282. {
  58283. name: "Original Size",
  58284. height: math.unit(2.5, "meters")
  58285. },
  58286. {
  58287. name: "Macro",
  58288. height: math.unit(150, "meters"),
  58289. default: true
  58290. },
  58291. {
  58292. name: "Macro+",
  58293. height: math.unit(300, "meters")
  58294. },
  58295. {
  58296. name: "Mega",
  58297. height: math.unit(2, "km")
  58298. },
  58299. {
  58300. name: "Mega+",
  58301. height: math.unit(35, "km")
  58302. },
  58303.  {
  58304. name: "Mega++",
  58305. height: math.unit(60, "km")
  58306. },
  58307. {
  58308. name: "Giga",
  58309. height: math.unit(200, "km")
  58310. },
  58311. {
  58312. name: "Giga+",
  58313. height: math.unit(2500, "km")
  58314. },
  58315. {
  58316. name: "Giga++",
  58317. height: math.unit(6600, "km")
  58318. },
  58319. {
  58320. name: "Terra",
  58321. height: math.unit(20000, "km")
  58322. },
  58323. {
  58324. name: "Terra+",
  58325. height: math.unit(300000, "km")
  58326. },
  58327. ]
  58328. ))
  58329. characterMakers.push(() => makeCharacter(
  58330. { name: "Otreus", species: ["magpie", "hippogriff", "deity"], tags: ["anthro"] },
  58331. {
  58332. magpie_dressed: {
  58333. height: math.unit(1.7, "meters"),
  58334. weight: math.unit(70, "kg"),
  58335. name: "Dressed",
  58336. image: {
  58337. source: "./media/characters/otreus/magpie-dressed.svg",
  58338. extra: 691/672,
  58339. bottom: 116/807
  58340. },
  58341. form: "magpie",
  58342. default: true
  58343. },
  58344. magpie_nude: {
  58345. height: math.unit(1.7, "meters"),
  58346. weight: math.unit(70, "kg"),
  58347. name: "Nude",
  58348. image: {
  58349. source: "./media/characters/otreus/magpie-nude.svg",
  58350. extra: 691/672,
  58351. bottom: 116/807
  58352. },
  58353. form: "magpie",
  58354. },
  58355. magpie_dressedLewd: {
  58356. height: math.unit(1.7, "meters"),
  58357. weight: math.unit(70, "kg"),
  58358. name: "Dressed (Lewd)",
  58359. image: {
  58360. source: "./media/characters/otreus/magpie-dressed-lewd.svg",
  58361. extra: 691/672,
  58362. bottom: 116/807
  58363. },
  58364. form: "magpie",
  58365. },
  58366. magpie_nudeLewd: {
  58367. height: math.unit(1.7, "meters"),
  58368. weight: math.unit(70, "kg"),
  58369. name: "Nude (Lewd)",
  58370. image: {
  58371. source: "./media/characters/otreus/magpie-nude-lewd.svg",
  58372. extra: 691/672,
  58373. bottom: 116/807
  58374. },
  58375. form: "magpie",
  58376. },
  58377. magpie_leftFoot: {
  58378. height: math.unit(1.58, "feet"),
  58379. name: "Left Foot",
  58380. image: {
  58381. source: "./media/characters/otreus/magpie-left-foot.svg"
  58382. },
  58383. form: "magpie",
  58384. },
  58385. magpie_rightFoot: {
  58386. height: math.unit(1.58, "feet"),
  58387. name: "Right Foot",
  58388. image: {
  58389. source: "./media/characters/otreus/magpie-right-foot.svg"
  58390. },
  58391. form: "magpie",
  58392. },
  58393. magpie_wingspan: {
  58394. height: math.unit(2, "meters"),
  58395. weight: math.unit(70, "kg"),
  58396. name: "Wingspan",
  58397. image: {
  58398. source: "./media/characters/otreus/magpie-wingspan.svg"
  58399. },
  58400. extraAttributes: {
  58401. "wingspan": {
  58402. name: "Wingspan",
  58403. power: 1,
  58404. type: "length",
  58405. base: math.unit(3.35, "meters")
  58406. },
  58407. },
  58408. form: "magpie",
  58409. },
  58410. hippogriff_dressed: {
  58411. height: math.unit(1.7, "meters"),
  58412. weight: math.unit(70, "kg"),
  58413. name: "Dressed",
  58414. image: {
  58415. source: "./media/characters/otreus/hippogriff-dressed.svg",
  58416. extra: 710/689,
  58417. bottom: 67/777
  58418. },
  58419. form: "hippogriff",
  58420. default: true
  58421. },
  58422. hippogriff_nude: {
  58423. height: math.unit(1.7, "meters"),
  58424. weight: math.unit(70, "kg"),
  58425. name: "Nude",
  58426. image: {
  58427. source: "./media/characters/otreus/hippogriff-nude.svg",
  58428. extra: 710/689,
  58429. bottom: 67/777
  58430. },
  58431. form: "hippogriff",
  58432. },
  58433. hippogriff_dressedLewd: {
  58434. height: math.unit(1.7, "meters"),
  58435. weight: math.unit(70, "kg"),
  58436. name: "Dressed (Lewd)",
  58437. image: {
  58438. source: "./media/characters/otreus/hippogriff-dressed-lewd.svg",
  58439. extra: 710/689,
  58440. bottom: 67/777
  58441. },
  58442. form: "hippogriff",
  58443. },
  58444. hippogriff_nudeLewd: {
  58445. height: math.unit(1.7, "meters"),
  58446. weight: math.unit(70, "kg"),
  58447. name: "Nude (Lewd)",
  58448. image: {
  58449. source: "./media/characters/otreus/hippogriff-nude-lewd.svg",
  58450. extra: 710/689,
  58451. bottom: 67/777
  58452. },
  58453. form: "hippogriff",
  58454. },
  58455. },
  58456. [
  58457. {
  58458. name: "Original Size",
  58459. height: math.unit(1.7, "meters"),
  58460. allForms: true
  58461. },
  58462. {
  58463. name: "Incognito Size",
  58464. height: math.unit(2, "meters"),
  58465. allForms: true
  58466. },
  58467. {
  58468. name: "Mega",
  58469. height: math.unit(2, "km"),
  58470. allForms: true
  58471. },
  58472. {
  58473. name: "Mega+",
  58474. height: math.unit(40, "km"),
  58475. allForms: true
  58476. },
  58477. {
  58478. name: "Giga",
  58479. height: math.unit(250, "km"),
  58480. allForms: true
  58481. },
  58482. {
  58483. name: "Giga+",
  58484. height: math.unit(3000, "km"),
  58485. allForms: true
  58486. },
  58487. {
  58488. name: "Terra",
  58489. height: math.unit(20000, "km"),
  58490. allForms: true
  58491. },
  58492. {
  58493. name: "Solar (Home Size)",
  58494. height: math.unit(3e6, "km"),
  58495. allForms: true,
  58496. default: true
  58497. },
  58498. ],
  58499. {
  58500. "magpie": {
  58501. name: "Magpie",
  58502. default: true
  58503. },
  58504. "hippogriff": {
  58505. name: "Hippogriff",
  58506. },
  58507. }
  58508. ))
  58509. characterMakers.push(() => makeCharacter(
  58510. { name: "Thalia", species: ["flying-fox", "fox", "deity"], tags: ["anthro"] },
  58511. {
  58512. frontDressed: {
  58513. height: math.unit(1.8, "meters"),
  58514. weight: math.unit(90, "kg"),
  58515. name: "Front (Dressed)",
  58516. image: {
  58517. source: "./media/characters/thalia/front-dressed.svg",
  58518. extra: 478/402,
  58519. bottom: 55/533
  58520. }
  58521. },
  58522. backDressed: {
  58523. height: math.unit(1.8, "meters"),
  58524. weight: math.unit(90, "kg"),
  58525. name: "Back (Dressed)",
  58526. image: {
  58527. source: "./media/characters/thalia/back-dressed.svg",
  58528. extra: 500/424,
  58529. bottom: 15/515
  58530. }
  58531. },
  58532. frontNude: {
  58533. height: math.unit(1.8, "meters"),
  58534. weight: math.unit(90, "kg"),
  58535. name: "Front (Nude)",
  58536. image: {
  58537. source: "./media/characters/thalia/front-nude.svg",
  58538. extra: 478/402,
  58539. bottom: 55/533
  58540. }
  58541. },
  58542. backNude: {
  58543. height: math.unit(1.8, "meters"),
  58544. weight: math.unit(90, "kg"),
  58545. name: "Back (Nude)",
  58546. image: {
  58547. source: "./media/characters/thalia/back-nude.svg",
  58548. extra: 500/424,
  58549. bottom: 15/515
  58550. }
  58551. },
  58552. },
  58553. [
  58554. {
  58555. name: "Incognito",
  58556. height: math.unit(3, "meters")
  58557. },
  58558. {
  58559. name: "Macro",
  58560. height: math.unit(500, "meters")
  58561. },
  58562. {
  58563. name: "Mega",
  58564. height: math.unit(5, "km")
  58565. },
  58566. {
  58567. name: "Mega+",
  58568. height: math.unit(30, "km")
  58569. },
  58570. {
  58571. name: "Giga",
  58572. height: math.unit(350, "km")
  58573. },
  58574. {
  58575. name: "Giga+",
  58576. height: math.unit(4000, "km")
  58577. },
  58578. {
  58579. name: "Terra",
  58580. height: math.unit(35000, "km")
  58581. },
  58582. {
  58583. name: "Original Size",
  58584. height: math.unit(130000, "km")
  58585. },
  58586. {
  58587. name: "Solar (Home Size)",
  58588. height: math.unit(4e6, "km"),
  58589. default: true
  58590. },
  58591. ]
  58592. ))
  58593. characterMakers.push(() => makeCharacter(
  58594. { name: "Shango", species: ["african-wild-dog", "deity"], tags: ["anthro"] },
  58595. {
  58596. front: {
  58597. height: math.unit(1.8, "meters"),
  58598. weight: math.unit(95, "kg"),
  58599. name: "Front",
  58600. image: {
  58601. source: "./media/characters/shango/front.svg",
  58602. extra: 1925/1774,
  58603. bottom: 67/1992
  58604. }
  58605. },
  58606. back: {
  58607. height: math.unit(1.8, "meters"),
  58608. weight: math.unit(95, "kg"),
  58609. name: "Back",
  58610. image: {
  58611. source: "./media/characters/shango/back.svg",
  58612. extra: 1915/1766,
  58613. bottom: 52/1967
  58614. }
  58615. },
  58616. frontLewd: {
  58617. height: math.unit(1.8, "meters"),
  58618. weight: math.unit(95, "kg"),
  58619. name: "Front (Lewd)",
  58620. image: {
  58621. source: "./media/characters/shango/front-lewd.svg",
  58622. extra: 1925/1774,
  58623. bottom: 67/1992
  58624. }
  58625. },
  58626. backLewd: {
  58627. height: math.unit(1.8, "meters"),
  58628. weight: math.unit(95, "kg"),
  58629. name: "Back (Lewd)",
  58630. image: {
  58631. source: "./media/characters/shango/back-lewd.svg",
  58632. extra: 1915/1766,
  58633. bottom: 52/1967
  58634. }
  58635. },
  58636. maw: {
  58637. height: math.unit(1.64, "feet"),
  58638. name: "Maw",
  58639. image: {
  58640. source: "./media/characters/shango/maw.svg"
  58641. }
  58642. },
  58643. dick: {
  58644. height: math.unit(2.14, "feet"),
  58645. name: "Dick",
  58646. image: {
  58647. source: "./media/characters/shango/dick.svg"
  58648. }
  58649. },
  58650. },
  58651. [
  58652. {
  58653. name: "Incognito",
  58654. height: math.unit(1.8, "meters")
  58655. },
  58656. {
  58657. name: "Home Size",
  58658. height: math.unit(60, "meters"),
  58659. default: true
  58660. },
  58661. {
  58662. name: "Macro",
  58663. height: math.unit(450, "meters")
  58664. },
  58665. {
  58666. name: "Mega",
  58667. height: math.unit(6, "km")
  58668. },
  58669. {
  58670. name: "Mega+",
  58671. height: math.unit(35, "km")
  58672. },
  58673. {
  58674. name: "Giga",
  58675. height: math.unit(500, "km")
  58676. },
  58677. {
  58678. name: "Giga+",
  58679. height: math.unit(5000, "km")
  58680. },
  58681. {
  58682. name: "Terra",
  58683. height: math.unit(60000, "km")
  58684. },
  58685. {
  58686. name: "Terra+",
  58687. height: math.unit(400000, "km")
  58688. },
  58689. ]
  58690. ))
  58691. characterMakers.push(() => makeCharacter(
  58692. { name: "Osiris (Gryphon)", species: ["gryphon", "snow-leopard", "peregrine-falcon", "deity"], tags: ["anthro"] },
  58693. {
  58694. front: {
  58695. height: math.unit(2, "meters"),
  58696. weight: math.unit(95, "kg"),
  58697. name: "Front",
  58698. image: {
  58699. source: "./media/characters/osiris-gryphon/front.svg",
  58700. extra: 1508/1313,
  58701. bottom: 87/1595
  58702. }
  58703. },
  58704. back: {
  58705. height: math.unit(2, "meters"),
  58706. weight: math.unit(95, "kg"),
  58707. name: "Back",
  58708. image: {
  58709. source: "./media/characters/osiris-gryphon/back.svg",
  58710. extra: 1436/1309,
  58711. bottom: 64/1500
  58712. }
  58713. },
  58714. frontLewd: {
  58715. height: math.unit(2, "meters"),
  58716. weight: math.unit(95, "kg"),
  58717. name: "Front-lewd",
  58718. image: {
  58719. source: "./media/characters/osiris-gryphon/front-lewd.svg",
  58720. extra: 1508/1313,
  58721. bottom: 87/1595
  58722. }
  58723. },
  58724. wing: {
  58725. height: math.unit(6.3333, "feet"),
  58726. name: "Wing",
  58727. image: {
  58728. source: "./media/characters/osiris-gryphon/wing.svg"
  58729. }
  58730. },
  58731. },
  58732. [
  58733. {
  58734. name: "Incognito",
  58735. height: math.unit(2, "meters")
  58736. },
  58737. {
  58738. name: "Home Size",
  58739. height: math.unit(30, "meters"),
  58740. default: true
  58741. },
  58742. {
  58743. name: "Macro",
  58744. height: math.unit(100, "meters")
  58745. },
  58746. {
  58747. name: "Macro+",
  58748. height: math.unit(350, "meters")
  58749. },
  58750. {
  58751. name: "Mega",
  58752. height: math.unit(40, "km")
  58753. },
  58754. {
  58755. name: "Giga",
  58756. height: math.unit(300, "km")
  58757. },
  58758. {
  58759. name: "Giga+",
  58760. height: math.unit(2000, "km")
  58761. },
  58762. {
  58763. name: "Terra",
  58764. height: math.unit(30000, "km")
  58765. },
  58766. ]
  58767. ))
  58768. characterMakers.push(() => makeCharacter(
  58769. { name: "Atlas (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  58770. {
  58771. front: {
  58772. height: math.unit(2.5, "meters"),
  58773. weight: math.unit(200, "kg"),
  58774. name: "Front",
  58775. image: {
  58776. source: "./media/characters/atlas-dragon/front.svg",
  58777. extra: 745/462,
  58778. bottom: 36/781
  58779. }
  58780. },
  58781. back: {
  58782. height: math.unit(2.5, "meters"),
  58783. weight: math.unit(200, "kg"),
  58784. name: "Back",
  58785. image: {
  58786. source: "./media/characters/atlas-dragon/back.svg",
  58787. extra: 848/822,
  58788. bottom: 57/905
  58789. }
  58790. },
  58791. frontLewd: {
  58792. height: math.unit(2.5, "meters"),
  58793. weight: math.unit(200, "kg"),
  58794. name: "Front (Lewd)",
  58795. image: {
  58796. source: "./media/characters/atlas-dragon/front-lewd.svg",
  58797. extra: 745/462,
  58798. bottom: 36/781
  58799. }
  58800. },
  58801. backLewd: {
  58802. height: math.unit(2.5, "meters"),
  58803. weight: math.unit(200, "kg"),
  58804. name: "Back (Lewd)",
  58805. image: {
  58806. source: "./media/characters/atlas-dragon/back-lewd.svg",
  58807. extra: 848/822,
  58808. bottom: 57/905
  58809. }
  58810. },
  58811. },
  58812. [
  58813. {
  58814. name: "Incognito",
  58815. height: math.unit(2.5, "meters")
  58816. },
  58817. {
  58818. name: "Small Macro",
  58819. height: math.unit(50, "meters")
  58820. },
  58821. {
  58822. name: "Macro",
  58823. height: math.unit(350, "meters")
  58824. },
  58825. {
  58826. name: "Mega",
  58827. height: math.unit(5.5, "kilometers")
  58828. },
  58829. {
  58830. name: "Mega+",
  58831. height: math.unit(50, "km")
  58832. },
  58833. {
  58834. name: "Giga",
  58835. height: math.unit(350, "km")
  58836. },
  58837. {
  58838. name: "Giga+",
  58839. height: math.unit(2000, "km")
  58840. },
  58841. {
  58842. name: "Giga++",
  58843. height: math.unit(6500, "km")
  58844. },
  58845. {
  58846. name: "Terra",
  58847. height: math.unit(30000, "km")
  58848. },
  58849. {
  58850. name: "Terra+",
  58851. height: math.unit(250000, "km")
  58852. },
  58853. {
  58854. name: "True Size",
  58855. height: math.unit(100, "multiverses"),
  58856. default: true
  58857. },
  58858. ]
  58859. ))
  58860. characterMakers.push(() => makeCharacter(
  58861. { name: "Chey", species: ["coyote", "deity"], tags: ["anthro"] },
  58862. {
  58863. front: {
  58864. height: math.unit(1.8, "m"),
  58865. weight: math.unit(120, "kg"),
  58866. name: "Front",
  58867. image: {
  58868. source: "./media/characters/chey/front.svg",
  58869. extra: 1359/1270,
  58870. bottom: 18/1377
  58871. }
  58872. },
  58873. arm: {
  58874. height: math.unit(2.05, "feet"),
  58875. name: "Arm",
  58876. image: {
  58877. source: "./media/characters/chey/arm.svg"
  58878. }
  58879. },
  58880. head: {
  58881. height: math.unit(1.89, "feet"),
  58882. name: "Head",
  58883. image: {
  58884. source: "./media/characters/chey/head.svg"
  58885. }
  58886. },
  58887. },
  58888. [
  58889. {
  58890. name: "Original Size",
  58891. height: math.unit(5, "cm")
  58892. },
  58893. {
  58894. name: "Incognito Size",
  58895. height: math.unit(2.4, "m")
  58896. },
  58897. {
  58898. name: "Home Size",
  58899. height: math.unit(200, "meters"),
  58900. default: true
  58901. },
  58902. {
  58903. name: "Mega",
  58904. height: math.unit(2, "km")
  58905. },
  58906. {
  58907. name: "Giga (Preferred Size)",
  58908. height: math.unit(2000, "km")
  58909. },
  58910. {
  58911. name: "Giga+",
  58912. height: math.unit(6000, "km")
  58913. },
  58914. {
  58915. name: "Terra",
  58916. height: math.unit(17000, "km")
  58917. },
  58918. {
  58919. name: "Terra+",
  58920. height: math.unit(75000, "km")
  58921. },
  58922. {
  58923. name: "Terra++",
  58924. height: math.unit(225000, "km")
  58925. },
  58926. ]
  58927. ))
  58928. characterMakers.push(() => makeCharacter(
  58929. { name: "Ragnarok", species: ["suicune"], tags: ["taur"] },
  58930. {
  58931. side: {
  58932. height: math.unit(7.8, "meters"),
  58933. name: "Side",
  58934. image: {
  58935. source: "./media/characters/ragnarok/side.svg",
  58936. extra: 725/621,
  58937. bottom: 72/797
  58938. }
  58939. },
  58940. },
  58941. [
  58942. {
  58943. name: "Normal",
  58944. height: math.unit(7.8, "meters"),
  58945. default: true
  58946. },
  58947. ]
  58948. ))
  58949. characterMakers.push(() => makeCharacter(
  58950. { name: "Nima", species: ["hyena", "shark", "deity"], tags: ["anthro"] },
  58951. {
  58952. hyena_front: {
  58953. height: math.unit(2.1, "meters"),
  58954. weight: math.unit(110, "kg"),
  58955. name: "Front",
  58956. image: {
  58957. source: "./media/characters/nima/hyena-front.svg",
  58958. extra: 1904/1796,
  58959. bottom: 67/1971
  58960. },
  58961. form: "hyena",
  58962. },
  58963. hyena_back: {
  58964. height: math.unit(2.1, "meters"),
  58965. weight: math.unit(110, "kg"),
  58966. name: "Back",
  58967. image: {
  58968. source: "./media/characters/nima/hyena-back.svg",
  58969. extra: 1964/1884,
  58970. bottom: 35/1999
  58971. },
  58972. form: "hyena",
  58973. },
  58974. shark_front: {
  58975. height: math.unit(1.95, "meters"),
  58976. weight: math.unit(110, "kg"),
  58977. name: "Front",
  58978. image: {
  58979. source: "./media/characters/nima/shark-front.svg",
  58980. extra: 2238/2013,
  58981. bottom: 0/223
  58982. },
  58983. form: "shark",
  58984. },
  58985. paw: {
  58986. height: math.unit(1, "feet"),
  58987. name: "Paw",
  58988. image: {
  58989. source: "./media/characters/nima/paw.svg"
  58990. }
  58991. },
  58992. circlet: {
  58993. height: math.unit(0.3, "feet"),
  58994. name: "Circlet",
  58995. image: {
  58996. source: "./media/characters/nima/circlet.svg"
  58997. }
  58998. },
  58999. necklace: {
  59000. height: math.unit(1.2, "feet"),
  59001. name: "Necklace",
  59002. image: {
  59003. source: "./media/characters/nima/necklace.svg"
  59004. }
  59005. },
  59006. bracelet: {
  59007. height: math.unit(0.51, "feet"),
  59008. name: "Bracelet",
  59009. image: {
  59010. source: "./media/characters/nima/bracelet.svg"
  59011. }
  59012. },
  59013. armband: {
  59014. height: math.unit(1.3, "feet"),
  59015. name: "Armband",
  59016. image: {
  59017. source: "./media/characters/nima/armband.svg"
  59018. }
  59019. },
  59020. },
  59021. [
  59022. {
  59023. name: "Incognito",
  59024. height: math.unit(2.1, "meters"),
  59025. allForms: true
  59026. },
  59027. {
  59028. name: "Small Macro",
  59029. height: math.unit(50, "meters"),
  59030. allForms: true
  59031. },
  59032. {
  59033. name: "Macro",
  59034. height: math.unit(200, "meters"),
  59035. allForms: true
  59036. },
  59037. {
  59038. name: "Mega",
  59039. height: math.unit(2.5, "km"),
  59040. allForms: true
  59041. },
  59042. {
  59043. name: "Mega+",
  59044. height: math.unit(30, "km"),
  59045. allForms: true
  59046. },
  59047. {
  59048. name: "Giga (Home Size)",
  59049. height: math.unit(400, "km"),
  59050. allForms: true,
  59051. default: true
  59052. },
  59053. {
  59054. name: "Giga+",
  59055. height: math.unit(2500, "km"),
  59056. allForms: true
  59057. },
  59058. {
  59059. name: "Giga++",
  59060. height: math.unit(8000, "km"),
  59061. allForms: true
  59062. },
  59063. {
  59064. name: "Terra",
  59065. height: math.unit(20000, "km"),
  59066. allForms: true
  59067. },
  59068. {
  59069. name: "Terra+",
  59070. height: math.unit(70000, "km"),
  59071. allForms: true
  59072. },
  59073. {
  59074. name: "Terra++",
  59075. height: math.unit(600000, "km"),
  59076. allForms: true
  59077. },
  59078. {
  59079. name: "Galactic",
  59080. height: math.unit(40, "galaxies"),
  59081. allForms: true
  59082. },
  59083. {
  59084. name: "Universal",
  59085. height: math.unit(40, "universes"),
  59086. allForms: true
  59087. },
  59088. ],
  59089. {
  59090. "hyena": {
  59091. name: "Hyena",
  59092. default: true
  59093. },
  59094. "shark": {
  59095. name: "Shark",
  59096. },
  59097. }
  59098. ))
  59099. characterMakers.push(() => makeCharacter(
  59100. { name: "Adelaide", species: ["deinonychus"], tags: ["anthro", "feral"] },
  59101. {
  59102. anthro_front: {
  59103. height: math.unit(1.5, "meters"),
  59104. name: "Front",
  59105. image: {
  59106. source: "./media/characters/adelaide/anthro-front.svg",
  59107. extra: 860/783,
  59108. bottom: 60/920
  59109. },
  59110. form: "anthro",
  59111. default: true
  59112. },
  59113. hand: {
  59114. height: math.unit(0.65, "feet"),
  59115. name: "Hand",
  59116. image: {
  59117. source: "./media/characters/adelaide/hand.svg"
  59118. },
  59119. form: "anthro"
  59120. },
  59121. foot: {
  59122. height: math.unit(1.38 * 259 / 314, "feet"),
  59123. name: "Foot",
  59124. image: {
  59125. source: "./media/characters/adelaide/foot.svg",
  59126. extra: 259/259,
  59127. bottom: 55/314
  59128. },
  59129. form: "anthro"
  59130. },
  59131. feather: {
  59132. height: math.unit(0.85, "feet"),
  59133. name: "Feather",
  59134. image: {
  59135. source: "./media/characters/adelaide/feather.svg"
  59136. },
  59137. form: "anthro"
  59138. },
  59139. feral_side: {
  59140. height: math.unit(1, "meters"),
  59141. name: "Side",
  59142. image: {
  59143. source: "./media/characters/adelaide/feral-side.svg",
  59144. extra: 550/467,
  59145. bottom: 37/587
  59146. },
  59147. form: "feral",
  59148. default: true
  59149. },
  59150. feral_hand: {
  59151. height: math.unit(0.58, "feet"),
  59152. name: "Hand",
  59153. image: {
  59154. source: "./media/characters/adelaide/hand.svg"
  59155. },
  59156. form: "feral"
  59157. },
  59158. feral_foot: {
  59159. height: math.unit(1.2 * 259 / 314, "feet"),
  59160. name: "Foot",
  59161. image: {
  59162. source: "./media/characters/adelaide/foot.svg",
  59163. extra: 259/259,
  59164. bottom: 55/314
  59165. },
  59166. form: "feral"
  59167. },
  59168. feral_feather: {
  59169. height: math.unit(0.63, "feet"),
  59170. name: "Feather",
  59171. image: {
  59172. source: "./media/characters/adelaide/feather.svg"
  59173. },
  59174. form: "feral"
  59175. },
  59176. },
  59177. [
  59178. {
  59179. name: "Normal",
  59180. height: math.unit(1.5, "meters"),
  59181. form: "anthro",
  59182. default: true
  59183. },
  59184. {
  59185. name: "Normal",
  59186. height: math.unit(1, "meters"),
  59187. form: "feral",
  59188. default: true
  59189. },
  59190. ],
  59191. {
  59192. "anthro": {
  59193. name: "Anthro",
  59194. default: true
  59195. },
  59196. "feral": {
  59197. name: "Feral",
  59198. },
  59199. }
  59200. ))
  59201. characterMakers.push(() => makeCharacter(
  59202. { name: "Goa", species: ["chocobo"], tags: ["taur"] },
  59203. {
  59204. front: {
  59205. height: math.unit(2.5, "meters"),
  59206. name: "Front",
  59207. image: {
  59208. source: "./media/characters/goa/front.svg",
  59209. extra: 1109/1013,
  59210. bottom: 150/1259
  59211. }
  59212. },
  59213. },
  59214. [
  59215. {
  59216. name: "Normal",
  59217. height: math.unit(2.5, "meters"),
  59218. default: true
  59219. },
  59220. ]
  59221. ))
  59222. characterMakers.push(() => makeCharacter(
  59223. { name: "Kiki (Weavile)", species: ["weavile"], tags: ["anthro"] },
  59224. {
  59225. front: {
  59226. height: math.unit(2, "meters"),
  59227. weight: math.unit(100, "kg"),
  59228. name: "Front",
  59229. image: {
  59230. source: "./media/characters/kiki-weavile/front.svg",
  59231. extra: 357/332,
  59232. bottom: 60/417
  59233. }
  59234. },
  59235. },
  59236. [
  59237. {
  59238. name: "Normal",
  59239. height: math.unit(2, "meters"),
  59240. default: true
  59241. },
  59242. ]
  59243. ))
  59244. characterMakers.push(() => makeCharacter(
  59245. { name: "Liza", species: ["stilio"], tags: ["taur"] },
  59246. {
  59247. side: {
  59248. height: math.unit(1.6, "meters"),
  59249. name: "Side",
  59250. image: {
  59251. source: "./media/characters/liza/side.svg",
  59252. extra: 943/915,
  59253. bottom: 72/1015
  59254. }
  59255. },
  59256. },
  59257. [
  59258. {
  59259. name: "Normal",
  59260. height: math.unit(1.6, "meters"),
  59261. default: true
  59262. },
  59263. ]
  59264. ))
  59265. characterMakers.push(() => makeCharacter(
  59266. { name: "Persephone Sweetbreath", species: ["hyena", "gnoll"], tags: ["taur"] },
  59267. {
  59268. side: {
  59269. height: math.unit(2.5, "meters"),
  59270. name: "Side",
  59271. image: {
  59272. source: "./media/characters/persephone-sweetbreath/side.svg",
  59273. extra: 796/700,
  59274. bottom: 44/840
  59275. }
  59276. },
  59277. },
  59278. [
  59279. {
  59280. name: "Normal",
  59281. height: math.unit(2.5, "meters"),
  59282. default: true
  59283. },
  59284. ]
  59285. ))
  59286. characterMakers.push(() => makeCharacter(
  59287. { name: "Pierce", species: ["dragon"], tags: ["feral"] },
  59288. {
  59289. front: {
  59290. height: math.unit(32, "meters"),
  59291. name: "Front",
  59292. image: {
  59293. source: "./media/characters/pierce/front.svg",
  59294. extra: 1695/1475,
  59295. bottom: 185/1880
  59296. }
  59297. },
  59298. side: {
  59299. height: math.unit(32, "meters"),
  59300. name: "Side",
  59301. image: {
  59302. source: "./media/characters/pierce/side.svg",
  59303. extra: 974/859,
  59304. bottom: 43/1017
  59305. }
  59306. },
  59307. frontWingless: {
  59308. height: math.unit(32, "meters"),
  59309. name: "Front (Wingless)",
  59310. image: {
  59311. source: "./media/characters/pierce/front-wingless.svg",
  59312. extra: 1695/1475,
  59313. bottom: 185/1880
  59314. }
  59315. },
  59316. sideWingless: {
  59317. height: math.unit(32, "meters"),
  59318. name: "Side (Wingless)",
  59319. image: {
  59320. source: "./media/characters/pierce/side-wingless.svg",
  59321. extra: 974/859,
  59322. bottom: 43/1017
  59323. }
  59324. },
  59325. maw: {
  59326. height: math.unit(19.3, "meters"),
  59327. name: "Maw",
  59328. image: {
  59329. source: "./media/characters/pierce/maw.svg"
  59330. }
  59331. },
  59332. },
  59333. [
  59334. {
  59335. name: "Small",
  59336. height: math.unit(8.5, "meters")
  59337. },
  59338. {
  59339. name: "Normal",
  59340. height: math.unit(32, "meters"),
  59341. default: true
  59342. },
  59343. ]
  59344. ))
  59345. characterMakers.push(() => makeCharacter(
  59346. { name: "Shira", species: ["cobra", "deity"], tags: ["anthro"] },
  59347. {
  59348. front: {
  59349. height: math.unit(2.3, "meters"),
  59350. weight: math.unit(165, "kg"),
  59351. name: "Front",
  59352. image: {
  59353. source: "./media/characters/shira/front.svg",
  59354. extra: 924/919,
  59355. bottom: 17/941
  59356. }
  59357. },
  59358. back: {
  59359. height: math.unit(2.3, "meters"),
  59360. weight: math.unit(165, "kg"),
  59361. name: "Back",
  59362. image: {
  59363. source: "./media/characters/shira/back.svg",
  59364. extra: 928/922,
  59365. bottom: 18/946
  59366. }
  59367. },
  59368. frontLewd: {
  59369. height: math.unit(2.3, "meters"),
  59370. weight: math.unit(165, "kg"),
  59371. name: "Front (Lewd)",
  59372. image: {
  59373. source: "./media/characters/shira/front-lewd.svg",
  59374. extra: 924/919,
  59375. bottom: 17/941
  59376. }
  59377. },
  59378. backLewd: {
  59379. height: math.unit(2.3, "meters"),
  59380. weight: math.unit(165, "kg"),
  59381. name: "Back (Lewd)",
  59382. image: {
  59383. source: "./media/characters/shira/back-lewd.svg",
  59384. extra: 928/922,
  59385. bottom: 18/946
  59386. }
  59387. },
  59388. maw: {
  59389. height: math.unit(1.14, "feet"),
  59390. name: "Maw",
  59391. image: {
  59392. source: "./media/characters/shira/maw.svg"
  59393. }
  59394. },
  59395. },
  59396. [
  59397. {
  59398. name: "Incognito",
  59399. height: math.unit(2.3, "meters")
  59400. },
  59401. {
  59402. name: "Home Size",
  59403. height: math.unit(150, "meters"),
  59404. default: true
  59405. },
  59406. {
  59407. name: "Macro",
  59408. height: math.unit(2, "km")
  59409. },
  59410. {
  59411. name: "Mega",
  59412. height: math.unit(30, "km")
  59413. },
  59414. {
  59415. name: "Giga",
  59416. height: math.unit(450, "km")
  59417. },
  59418. {
  59419. name: "Giga+",
  59420. height: math.unit(3000, "km")
  59421. },
  59422. {
  59423. name: "Giga++",
  59424. height: math.unit(6000, "km")
  59425. },
  59426. {
  59427. name: "Terra",
  59428. height: math.unit(80000, "km")
  59429. },
  59430. {
  59431. name: "Terra+",
  59432. height: math.unit(350000, "km")
  59433. },
  59434. {
  59435. name: "Solar",
  59436. height: math.unit(1e6, "km")
  59437. },
  59438. ]
  59439. ))
  59440. characterMakers.push(() => makeCharacter(
  59441. { name: "Daxerios", species: ["wolf", "cerberus"], tags: ["anthro"] },
  59442. {
  59443. front: {
  59444. height: math.unit(2, "meters"),
  59445. weight: math.unit(160, "kg"),
  59446. name: "Front",
  59447. image: {
  59448. source: "./media/characters/daxerios/front.svg",
  59449. extra: 1334/1277,
  59450. bottom: 45/1379
  59451. }
  59452. },
  59453. frontLewd: {
  59454. height: math.unit(2, "meters"),
  59455. weight: math.unit(160, "kg"),
  59456. name: "Front (Lewd)",
  59457. image: {
  59458. source: "./media/characters/daxerios/front-lewd.svg",
  59459. extra: 1334/1277,
  59460. bottom: 45/1379
  59461. }
  59462. },
  59463. dick: {
  59464. height: math.unit(2.35, "feet"),
  59465. name: "Dick",
  59466. image: {
  59467. source: "./media/characters/daxerios/dick.svg"
  59468. }
  59469. },
  59470. },
  59471. [
  59472. {
  59473. name: "\"Small\"",
  59474. height: math.unit(5, "meters")
  59475. },
  59476. {
  59477. name: "Original Size",
  59478. height: math.unit(500, "meters"),
  59479. default: true
  59480. },
  59481. {
  59482. name: "Mega",
  59483. height: math.unit(2, "km")
  59484. },
  59485. {
  59486. name: "Mega+",
  59487. height: math.unit(35, "km")
  59488. },
  59489. {
  59490. name: "Giga",
  59491. height: math.unit(250, "km")
  59492. },
  59493. {
  59494. name: "Giga+",
  59495. height: math.unit(3000, "km")
  59496. },
  59497. {
  59498. name: "Terra",
  59499. height: math.unit(25000, "km")
  59500. },
  59501. {
  59502. name: "Terra+",
  59503. height: math.unit(300000, "km")
  59504. },
  59505. {
  59506. name: "Solar",
  59507. height: math.unit(1e6, "km")
  59508. },
  59509. ]
  59510. ))
  59511. //characters
  59512. function makeCharacters() {
  59513. const results = [];
  59514. characterMakers.forEach(character => {
  59515. results.push(character());
  59516. });
  59517. return results;
  59518. }