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.
 
 
 

61805 lines
1.5 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.preyCapacity) {
  46. views[key].attributes.preyCapacity = {
  47. name: "Prey Capacity",
  48. power: 3,
  49. type: "volume",
  50. base: value.preyCapacity,
  51. defaultUnit: "people"
  52. }
  53. }
  54. if (value.energyNeed) {
  55. views[key].attributes.capacity = {
  56. name: "Food Intake",
  57. power: 3 * 3 / 4,
  58. type: "energy",
  59. base: value.energyNeed
  60. }
  61. }
  62. if (value.extraAttributes) {
  63. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  64. views[key].attributes[attrKey] = attrValue
  65. })
  66. }
  67. });
  68. return createEntityMaker(info, views, defaultSizes, forms);
  69. }
  70. const speciesData = {
  71. animal: {
  72. name: "Animal"
  73. },
  74. dog: {
  75. name: "Dog",
  76. parents: [
  77. "canine"
  78. ]
  79. },
  80. canine: {
  81. name: "Canine",
  82. parents: [
  83. "mammal"
  84. ]
  85. },
  86. crux: {
  87. name: "Crux",
  88. parents: [
  89. "mammal"
  90. ]
  91. },
  92. mammal: {
  93. name: "Mammal",
  94. parents: [
  95. "animal"
  96. ]
  97. },
  98. "rough-collie": {
  99. name: "Rough Collie",
  100. parents: [
  101. "dog"
  102. ]
  103. },
  104. dragon: {
  105. name: "Dragon",
  106. parents: [
  107. "reptile"
  108. ]
  109. },
  110. reptile: {
  111. name: "Reptile",
  112. parents: [
  113. "animal"
  114. ]
  115. },
  116. woodpecker: {
  117. name: "Woodpecker",
  118. parents: [
  119. "avian"
  120. ]
  121. },
  122. avian: {
  123. name: "Avian",
  124. parents: [
  125. "animal"
  126. ]
  127. },
  128. kitsune: {
  129. name: "Kitsune",
  130. parents: [
  131. "fox"
  132. ]
  133. },
  134. fox: {
  135. name: "Fox",
  136. parents: [
  137. "mammal"
  138. ]
  139. },
  140. pokemon: {
  141. name: "Pokemon",
  142. parents: [
  143. "video-games"
  144. ]
  145. },
  146. tiger: {
  147. name: "Tiger",
  148. parents: [
  149. "cat"
  150. ]
  151. },
  152. cat: {
  153. name: "Cat",
  154. parents: [
  155. "feliform"
  156. ]
  157. },
  158. "blue-jay": {
  159. name: "Blue Jay",
  160. parents: [
  161. "corvid"
  162. ]
  163. },
  164. wolf: {
  165. name: "Wolf",
  166. parents: [
  167. "mammal"
  168. ]
  169. },
  170. coyote: {
  171. name: "Coyote",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. raccoon: {
  177. name: "Raccoon",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. weasel: {
  183. name: "Weasel",
  184. parents: [
  185. "mustelid"
  186. ]
  187. },
  188. "red-panda": {
  189. name: "Red Panda",
  190. parents: [
  191. "mammal"
  192. ]
  193. },
  194. dolphin: {
  195. name: "Dolphin",
  196. parents: [
  197. "mammal"
  198. ]
  199. },
  200. "african-wild-dog": {
  201. name: "African Wild Dog",
  202. parents: [
  203. "canine"
  204. ]
  205. },
  206. "hyena": {
  207. name: "Hyena",
  208. parents: [
  209. "feliform"
  210. ]
  211. },
  212. "carbuncle": {
  213. name: "Carbuncle",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. bat: {
  219. name: "Bat",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "leaf-nosed-bat": {
  225. name: "Leaf-Nosed Bat",
  226. parents: [
  227. "bat"
  228. ]
  229. },
  230. "fish": {
  231. name: "Fish",
  232. parents: [
  233. "animal"
  234. ]
  235. },
  236. "ram": {
  237. name: "Ram",
  238. parents: [
  239. "mammal"
  240. ]
  241. },
  242. "demon": {
  243. name: "Demon",
  244. parents: [
  245. "supernatural"
  246. ]
  247. },
  248. "cougar": {
  249. name: "Cougar",
  250. parents: [
  251. "cat"
  252. ]
  253. },
  254. "goat": {
  255. name: "Goat",
  256. parents: [
  257. "mammal"
  258. ]
  259. },
  260. "lion": {
  261. name: "Lion",
  262. parents: [
  263. "cat"
  264. ]
  265. },
  266. "harpy-eager": {
  267. name: "Harpy Eagle",
  268. parents: [
  269. "avian"
  270. ]
  271. },
  272. "deer": {
  273. name: "Deer",
  274. parents: [
  275. "mammal"
  276. ]
  277. },
  278. "phoenix": {
  279. name: "Phoenix",
  280. parents: [
  281. "avian"
  282. ]
  283. },
  284. "aeromorph": {
  285. name: "Aeromorph",
  286. parents: [
  287. "machine"
  288. ]
  289. },
  290. "machine": {
  291. name: "Machine",
  292. },
  293. "android": {
  294. name: "Android",
  295. parents: [
  296. "machine"
  297. ]
  298. },
  299. "jackal": {
  300. name: "Jackal",
  301. parents: [
  302. "canine"
  303. ]
  304. },
  305. "corvid": {
  306. name: "Corvid",
  307. parents: [
  308. "passerine"
  309. ]
  310. },
  311. "pharaoh-hound": {
  312. name: "Pharaoh Hound",
  313. parents: [
  314. "dog"
  315. ]
  316. },
  317. "skunk": {
  318. name: "Skunk",
  319. parents: [
  320. "mammal"
  321. ]
  322. },
  323. "shark": {
  324. name: "Shark",
  325. parents: [
  326. "fish"
  327. ]
  328. },
  329. "black-panther": {
  330. name: "Black Panther",
  331. parents: [
  332. "cat"
  333. ]
  334. },
  335. "umbra": {
  336. name: "Umbra",
  337. parents: [
  338. "animal"
  339. ]
  340. },
  341. "raven": {
  342. name: "Raven",
  343. parents: [
  344. "corvid"
  345. ]
  346. },
  347. "snow-leopard": {
  348. name: "Snow Leopard",
  349. parents: [
  350. "cat"
  351. ]
  352. },
  353. "barbary-lion": {
  354. name: "Barbary Lion",
  355. parents: [
  356. "lion"
  357. ]
  358. },
  359. "dra'gal": {
  360. name: "Dra'Gal",
  361. parents: [
  362. "mammal"
  363. ]
  364. },
  365. "german-shepherd": {
  366. name: "German Shepherd",
  367. parents: [
  368. "dog"
  369. ]
  370. },
  371. "bayleef": {
  372. name: "Bayleef",
  373. parents: [
  374. "pokemon",
  375. "plant",
  376. "animal"
  377. ]
  378. },
  379. "mouse": {
  380. name: "Mouse",
  381. parents: [
  382. "rodent"
  383. ]
  384. },
  385. "rat": {
  386. name: "Rat",
  387. parents: [
  388. "mammal"
  389. ]
  390. },
  391. "hoshiko-beast": {
  392. name: "Hoshiko Beast",
  393. parents: ["animal"]
  394. },
  395. "snow-jugani": {
  396. name: "Snow Jugani",
  397. parents: ["cat"]
  398. },
  399. "patamon": {
  400. name: "Patamon",
  401. parents: ["digimon", "guinea-pig"]
  402. },
  403. "digimon": {
  404. name: "Digimon",
  405. parents: [
  406. "video-games"
  407. ]
  408. },
  409. "jugani": {
  410. name: "Jugani",
  411. parents: ["cat"]
  412. },
  413. "luxray": {
  414. name: "Luxray",
  415. parents: ["pokemon", "lion"]
  416. },
  417. "mech": {
  418. name: "Mech",
  419. parents: ["machine"]
  420. },
  421. "zoid": {
  422. name: "Zoid",
  423. parents: ["mech"]
  424. },
  425. "monster": {
  426. name: "Monster",
  427. parents: ["animal"]
  428. },
  429. "foo-dog": {
  430. name: "Foo Dog",
  431. parents: ["mammal"]
  432. },
  433. "elephant": {
  434. name: "Elephant",
  435. parents: ["mammal"]
  436. },
  437. "eagle": {
  438. name: "Eagle",
  439. parents: ["bird-of-prey"]
  440. },
  441. "cow": {
  442. name: "Cow",
  443. parents: ["mammal"]
  444. },
  445. "crocodile": {
  446. name: "Crocodile",
  447. parents: ["reptile"]
  448. },
  449. "borzoi": {
  450. name: "Borzoi",
  451. parents: ["dog"]
  452. },
  453. "snake": {
  454. name: "Snake",
  455. parents: ["reptile"]
  456. },
  457. "horned-bush-viper": {
  458. name: "Horned Bush Viper",
  459. parents: ["viper"]
  460. },
  461. "cobra": {
  462. name: "Cobra",
  463. parents: ["snake"]
  464. },
  465. "harpy-eagle": {
  466. name: "Harpy Eagle",
  467. parents: ["eagle"]
  468. },
  469. "raptor": {
  470. name: "Raptor",
  471. parents: ["dinosaur"]
  472. },
  473. "dinosaur": {
  474. name: "Dinosaur",
  475. parents: ["reptile"]
  476. },
  477. "veilhound": {
  478. name: "Veilhound",
  479. parents: ["hellhound"]
  480. },
  481. "hellhound": {
  482. name: "Hellhound",
  483. parents: ["canine", "demon"]
  484. },
  485. "insect": {
  486. name: "Insect",
  487. parents: ["animal"]
  488. },
  489. "beetle": {
  490. name: "Beetle",
  491. parents: ["insect"]
  492. },
  493. "moth": {
  494. name: "Moth",
  495. parents: ["insect"]
  496. },
  497. "eastern-dragon": {
  498. name: "Eastern Dragon",
  499. parents: ["dragon"]
  500. },
  501. "jaguar": {
  502. name: "Jaguar",
  503. parents: ["cat"]
  504. },
  505. "horse": {
  506. name: "Horse",
  507. parents: ["mammal"]
  508. },
  509. "sergal": {
  510. name: "Sergal",
  511. parents: ["mammal", "avian", "vilous"]
  512. },
  513. "gryphon": {
  514. name: "Gryphon",
  515. parents: ["lion", "eagle"]
  516. },
  517. "robot": {
  518. name: "Robot",
  519. parents: ["machine"]
  520. },
  521. "medihound": {
  522. name: "Medihound",
  523. parents: ["robot", "dog"]
  524. },
  525. "sylveon": {
  526. name: "Sylveon",
  527. parents: ["pokemon"]
  528. },
  529. "catgirl": {
  530. name: "Catgirl",
  531. parents: ["mammal"]
  532. },
  533. "cowgirl": {
  534. name: "Cowgirl",
  535. parents: ["mammal"]
  536. },
  537. "pony": {
  538. name: "Pony",
  539. parents: ["horse"]
  540. },
  541. "rabbit": {
  542. name: "Rabbit",
  543. parents: ["leporidae"]
  544. },
  545. "fennec-fox": {
  546. name: "Fennec Fox",
  547. parents: ["fox"]
  548. },
  549. "azodian": {
  550. name: "Azodian",
  551. parents: ["mouse"]
  552. },
  553. "shiba-inu": {
  554. name: "Shiba Inu",
  555. parents: ["dog"]
  556. },
  557. "changeling": {
  558. name: "Changeling",
  559. parents: ["insect"]
  560. },
  561. "cheetah": {
  562. name: "Cheetah",
  563. parents: ["cat"]
  564. },
  565. "golden-jackal": {
  566. name: "Golden Jackal",
  567. parents: ["jackal"]
  568. },
  569. "manectric": {
  570. name: "Manectric",
  571. parents: ["pokemon", "wolf"]
  572. },
  573. "rat": {
  574. name: "Rat",
  575. parents: ["rodent"]
  576. },
  577. "rodent": {
  578. name: "Rodent",
  579. parents: ["mammal"]
  580. },
  581. "octocoon": {
  582. name: "Octocoon",
  583. parents: ["raccoon", "octopus"]
  584. },
  585. "octopus": {
  586. name: "Octopus",
  587. parents: ["fish"]
  588. },
  589. "werewolf": {
  590. name: "Werewolf",
  591. parents: ["wolf", "werebeast"]
  592. },
  593. "werebeast": {
  594. name: "Werebeast",
  595. parents: ["monster"]
  596. },
  597. "meerkat": {
  598. name: "Meerkat",
  599. parents: ["mammal"]
  600. },
  601. "human": {
  602. name: "Human",
  603. parents: ["mammal"]
  604. },
  605. "geth": {
  606. name: "Geth",
  607. parents: ["android"]
  608. },
  609. "husky": {
  610. name: "Husky",
  611. parents: ["dog"]
  612. },
  613. "long-eared-bat": {
  614. name: "Long Eared Bat",
  615. parents: ["bat"]
  616. },
  617. "lizard": {
  618. name: "Lizard",
  619. parents: ["reptile"]
  620. },
  621. "salamander": {
  622. name: "Salamander",
  623. parents: ["lizard"]
  624. },
  625. "chameleon": {
  626. name: "Chameleon",
  627. parents: ["lizard"]
  628. },
  629. "gecko": {
  630. name: "Gecko",
  631. parents: ["lizard"]
  632. },
  633. "kobold": {
  634. name: "Kobold",
  635. parents: ["reptile"]
  636. },
  637. "charizard": {
  638. name: "Charizard",
  639. parents: ["pokemon", "dragon"]
  640. },
  641. "lugia": {
  642. name: "Lugia",
  643. parents: ["pokemon", "avian"]
  644. },
  645. "cerberus": {
  646. name: "Cerberus",
  647. parents: ["dog"]
  648. },
  649. "tyrantrum": {
  650. name: "Tyrantrum",
  651. parents: ["pokemon"]
  652. },
  653. "lemur": {
  654. name: "Lemur",
  655. parents: ["mammal"]
  656. },
  657. "kelpie": {
  658. name: "Kelpie",
  659. parents: ["horse", "monster"]
  660. },
  661. "labrador": {
  662. name: "Labrador",
  663. parents: ["dog"]
  664. },
  665. "sylveon": {
  666. name: "Sylveon",
  667. parents: ["eeveelution"]
  668. },
  669. "eeveelution": {
  670. name: "Eeveelution",
  671. parents: ["pokemon", "cat"]
  672. },
  673. "polar-bear": {
  674. name: "Polar Bear",
  675. parents: ["bear"]
  676. },
  677. "bear": {
  678. name: "Bear",
  679. parents: ["mammal"]
  680. },
  681. "absol": {
  682. name: "Absol",
  683. parents: ["pokemon", "cat"]
  684. },
  685. "wolver": {
  686. name: "Wolver",
  687. parents: ["mammal"]
  688. },
  689. "rottweiler": {
  690. name: "Rottweiler",
  691. parents: ["dog"]
  692. },
  693. "zebra": {
  694. name: "Zebra",
  695. parents: ["horse"]
  696. },
  697. "yoshi": {
  698. name: "Yoshi",
  699. parents: ["dinosaur"]
  700. },
  701. "lynx": {
  702. name: "Lynx",
  703. parents: ["cat"]
  704. },
  705. "unknown": {
  706. name: "Unknown",
  707. parents: []
  708. },
  709. "thylacine": {
  710. name: "Thylacine",
  711. parents: ["mammal"]
  712. },
  713. "gabumon": {
  714. name: "Gabumon",
  715. parents: ["digimon"]
  716. },
  717. "border-collie": {
  718. name: "Border Collie",
  719. parents: ["dog"]
  720. },
  721. "imp": {
  722. name: "Imp",
  723. parents: ["demon"]
  724. },
  725. "kangaroo": {
  726. name: "Kangaroo",
  727. parents: ["marsupial"]
  728. },
  729. "renamon": {
  730. name: "Renamon",
  731. parents: ["digimon", "fox"]
  732. },
  733. "candy-orca-dragon": {
  734. name: "Candy Orca Dragon",
  735. parents: ["fish", "dragon", "candy"]
  736. },
  737. "sabertooth-tiger": {
  738. name: "Sabertooth Tiger",
  739. parents: ["cat"]
  740. },
  741. "espurr": {
  742. name: "Espurr",
  743. parents: ["pokemon", "cat"]
  744. },
  745. "otter": {
  746. name: "Otter",
  747. parents: ["mustelid"]
  748. },
  749. "elemental": {
  750. name: "Elemental",
  751. parents: ["mammal"]
  752. },
  753. "mew": {
  754. name: "Mew",
  755. parents: ["pokemon"]
  756. },
  757. "goodra": {
  758. name: "Goodra",
  759. parents: ["pokemon"]
  760. },
  761. "fairy": {
  762. name: "Fairy",
  763. parents: ["magical"]
  764. },
  765. "typhlosion": {
  766. name: "Typhlosion",
  767. parents: ["pokemon"]
  768. },
  769. "magical": {
  770. name: "Magical",
  771. parents: []
  772. },
  773. "xenomorph": {
  774. name: "Xenomorph",
  775. parents: ["monster", "alien"]
  776. },
  777. "charr": {
  778. name: "Charr",
  779. parents: ["cat"]
  780. },
  781. "siberian-husky": {
  782. name: "Siberian Husky",
  783. parents: ["husky"]
  784. },
  785. "alligator": {
  786. name: "Alligator",
  787. parents: ["reptile"]
  788. },
  789. "bernese-mountain-dog": {
  790. name: "Bernese Mountain Dog",
  791. parents: ["dog"]
  792. },
  793. "reshiram": {
  794. name: "Reshiram",
  795. parents: ["pokemon", "dragon"]
  796. },
  797. "grizzly-bear": {
  798. name: "Grizzly Bear",
  799. parents: ["bear"]
  800. },
  801. "water-monitor": {
  802. name: "Water Monitor",
  803. parents: ["lizard"]
  804. },
  805. "banchofossa": {
  806. name: "Banchofossa",
  807. parents: ["mammal"]
  808. },
  809. "kirin": {
  810. name: "Kirin",
  811. parents: ["monster"]
  812. },
  813. "quilava": {
  814. name: "Quilava",
  815. parents: ["pokemon"]
  816. },
  817. "seviper": {
  818. name: "Seviper",
  819. parents: ["pokemon", "viper"]
  820. },
  821. "flying-fox": {
  822. name: "Flying Fox",
  823. parents: ["bat"]
  824. },
  825. "keynain": {
  826. name: "Keynain",
  827. parents: ["avian"]
  828. },
  829. "lucario": {
  830. name: "Lucario",
  831. parents: ["pokemon", "jackal"]
  832. },
  833. "siamese-cat": {
  834. name: "Siamese Cat",
  835. parents: ["cat"]
  836. },
  837. "spider": {
  838. name: "Spider",
  839. parents: ["insect"]
  840. },
  841. "samurott": {
  842. name: "Samurott",
  843. parents: ["pokemon", "otter"]
  844. },
  845. "megalodon": {
  846. name: "Megalodon",
  847. parents: ["shark"]
  848. },
  849. "unicorn": {
  850. name: "Unicorn",
  851. parents: ["horse"]
  852. },
  853. "greninja": {
  854. name: "Greninja",
  855. parents: ["pokemon", "frog"]
  856. },
  857. "water-dragon": {
  858. name: "Water Dragon",
  859. parents: ["dragon"]
  860. },
  861. "cross-fox": {
  862. name: "Cross Fox",
  863. parents: ["fox"]
  864. },
  865. "synth": {
  866. name: "Synth",
  867. parents: ["machine"]
  868. },
  869. "construct": {
  870. name: "Construct",
  871. parents: []
  872. },
  873. "mexican-wolf": {
  874. name: "Mexican Wolf",
  875. parents: ["wolf"]
  876. },
  877. "leopard": {
  878. name: "Leopard",
  879. parents: ["cat"]
  880. },
  881. "pig": {
  882. name: "Pig",
  883. parents: ["mammal"]
  884. },
  885. "ampharos": {
  886. name: "Ampharos",
  887. parents: ["pokemon", "sheep"]
  888. },
  889. "orca": {
  890. name: "Orca",
  891. parents: ["fish"]
  892. },
  893. "lycanroc": {
  894. name: "Lycanroc",
  895. parents: ["pokemon", "wolf"]
  896. },
  897. "surkanu": {
  898. name: "Surkanu",
  899. parents: ["monster"]
  900. },
  901. "seal": {
  902. name: "Seal",
  903. parents: ["mammal"]
  904. },
  905. "keldeo": {
  906. name: "Keldeo",
  907. parents: ["pokemon"]
  908. },
  909. "great-dane": {
  910. name: "Great Dane",
  911. parents: ["dog"]
  912. },
  913. "black-backed-jackal": {
  914. name: "Black Backed Jackal",
  915. parents: ["jackal"]
  916. },
  917. "sheep": {
  918. name: "Sheep",
  919. parents: ["mammal"]
  920. },
  921. "leopard-seal": {
  922. name: "Leopard Seal",
  923. parents: ["seal"]
  924. },
  925. "zoroark": {
  926. name: "Zoroark",
  927. parents: ["pokemon", "fox"]
  928. },
  929. "maned-wolf": {
  930. name: "Maned Wolf",
  931. parents: ["canine"]
  932. },
  933. "dracha": {
  934. name: "Dracha",
  935. parents: ["dragon"]
  936. },
  937. "wolxi": {
  938. name: "Wolxi",
  939. parents: ["mammal", "alien"]
  940. },
  941. "dratini": {
  942. name: "Dratini",
  943. parents: ["pokemon", "dragon"]
  944. },
  945. "skaven": {
  946. name: "Skaven",
  947. parents: ["rat"]
  948. },
  949. "mongoose": {
  950. name: "Mongoose",
  951. parents: ["mammal"]
  952. },
  953. "lopunny": {
  954. name: "Lopunny",
  955. parents: ["pokemon", "rabbit"]
  956. },
  957. "feraligatr": {
  958. name: "Feraligatr",
  959. parents: ["pokemon", "alligator"]
  960. },
  961. "houndoom": {
  962. name: "Houndoom",
  963. parents: ["pokemon", "dog"]
  964. },
  965. "protogen": {
  966. name: "Protogen",
  967. parents: ["machine"]
  968. },
  969. "saint-bernard": {
  970. name: "Saint Bernard",
  971. parents: ["dog"]
  972. },
  973. "crow": {
  974. name: "Crow",
  975. parents: ["corvid"]
  976. },
  977. "delphox": {
  978. name: "Delphox",
  979. parents: ["pokemon", "fox"]
  980. },
  981. "moose": {
  982. name: "Moose",
  983. parents: ["mammal"]
  984. },
  985. "joraxian": {
  986. name: "Joraxian",
  987. parents: ["monster", "canine", "demon"]
  988. },
  989. "nimbat": {
  990. name: "Nimbat",
  991. parents: ["mammal"]
  992. },
  993. "aardwolf": {
  994. name: "Aardwolf",
  995. parents: ["canine"]
  996. },
  997. "fluudrani": {
  998. name: "Fluudrani",
  999. parents: ["animal"]
  1000. },
  1001. "arcanine": {
  1002. name: "Arcanine",
  1003. parents: ["pokemon", "dog"]
  1004. },
  1005. "inteleon": {
  1006. name: "Inteleon",
  1007. parents: ["pokemon", "fish"]
  1008. },
  1009. "ninetales": {
  1010. name: "Ninetales",
  1011. parents: ["pokemon", "kitsune"]
  1012. },
  1013. "tigrex": {
  1014. name: "Tigrex",
  1015. parents: ["tiger"]
  1016. },
  1017. "zorua": {
  1018. name: "Zorua",
  1019. parents: ["pokemon", "fox"]
  1020. },
  1021. "vulpix": {
  1022. name: "Vulpix",
  1023. parents: ["pokemon", "fox"]
  1024. },
  1025. "barghest": {
  1026. name: "Barghest",
  1027. parents: ["monster"]
  1028. },
  1029. "gray-wolf": {
  1030. name: "Gray Wolf",
  1031. parents: ["wolf"]
  1032. },
  1033. "ruppells-fox": {
  1034. name: "Rüppell's Fox",
  1035. parents: ["fox"]
  1036. },
  1037. "bull-terrier": {
  1038. name: "Bull Terrier",
  1039. parents: ["dog"]
  1040. },
  1041. "european-honey-buzzard": {
  1042. name: "European Honey Buzzard",
  1043. parents: ["avian"]
  1044. },
  1045. "t-rex": {
  1046. name: "Tyrannosaurus Rex",
  1047. parents: ["theropod"]
  1048. },
  1049. "mactarian": {
  1050. name: "Mactarian",
  1051. parents: ["shark", "monster"]
  1052. },
  1053. "mewtwo-y": {
  1054. name: "Mewtwo Y",
  1055. parents: ["mewtwo"]
  1056. },
  1057. "mewtwo": {
  1058. name: "Mewtwo",
  1059. parents: ["pokemon"]
  1060. },
  1061. "eevee": {
  1062. name: "Eevee",
  1063. parents: ["eeveelution"]
  1064. },
  1065. "mienshao": {
  1066. name: "Mienshao",
  1067. parents: ["pokemon"]
  1068. },
  1069. "sugar-glider": {
  1070. name: "Sugar Glider",
  1071. parents: ["opossum"]
  1072. },
  1073. "spectral-bat": {
  1074. name: "Spectral Bat",
  1075. parents: ["bat"]
  1076. },
  1077. "scolipede": {
  1078. name: "Scolipede",
  1079. parents: ["pokemon", "insect"]
  1080. },
  1081. "jackalope": {
  1082. name: "Jackalope",
  1083. parents: ["rabbit", "antelope"]
  1084. },
  1085. "caracal": {
  1086. name: "Caracal",
  1087. parents: ["cat"]
  1088. },
  1089. "stoat": {
  1090. name: "Stoat",
  1091. parents: ["mammal"]
  1092. },
  1093. "african-golden-cat": {
  1094. name: "African Golden Cat",
  1095. parents: ["cat"]
  1096. },
  1097. "gigantosaurus": {
  1098. name: "Gigantosaurus",
  1099. parents: ["dinosaur"]
  1100. },
  1101. "zorgoia": {
  1102. name: "Zorgoia",
  1103. parents: ["mammal"]
  1104. },
  1105. "monitor-lizard": {
  1106. name: "Monitor Lizard",
  1107. parents: ["lizard"]
  1108. },
  1109. "ziralkia": {
  1110. name: "Ziralkia",
  1111. parents: ["mammal"]
  1112. },
  1113. "kiiasi": {
  1114. name: "Kiiasi",
  1115. parents: ["animal"]
  1116. },
  1117. "synx": {
  1118. name: "Synx",
  1119. parents: ["monster"]
  1120. },
  1121. "panther": {
  1122. name: "Panther",
  1123. parents: ["cat"]
  1124. },
  1125. "azumarill": {
  1126. name: "Azumarill",
  1127. parents: ["pokemon"]
  1128. },
  1129. "river-snaptail": {
  1130. name: "River Snaptail",
  1131. parents: ["otter", "crocodile"]
  1132. },
  1133. "great-blue-heron": {
  1134. name: "Great Blue Heron",
  1135. parents: ["avian"]
  1136. },
  1137. "smeargle": {
  1138. name: "Smeargle",
  1139. parents: ["pokemon"]
  1140. },
  1141. "vendeilen": {
  1142. name: "Vendeilen",
  1143. parents: ["monster"]
  1144. },
  1145. "ventura": {
  1146. name: "Ventura",
  1147. parents: ["canine"]
  1148. },
  1149. "clouded-leopard": {
  1150. name: "Clouded Leopard",
  1151. parents: ["leopard"]
  1152. },
  1153. "argonian": {
  1154. name: "Argonian",
  1155. parents: ["lizard"]
  1156. },
  1157. "salazzle": {
  1158. name: "Salazzle",
  1159. parents: ["pokemon", "lizard"]
  1160. },
  1161. "je-stoff-drachen": {
  1162. name: "Je-Stoff Drachen",
  1163. parents: ["dragon"]
  1164. },
  1165. "finnish-spitz-dog": {
  1166. name: "Finnish Spitz Dog",
  1167. parents: ["dog"]
  1168. },
  1169. "gray-fox": {
  1170. name: "Gray Fox",
  1171. parents: ["fox"]
  1172. },
  1173. "opossum": {
  1174. name: "Opossum",
  1175. parents: ["mammal"]
  1176. },
  1177. "antelope": {
  1178. name: "Antelope",
  1179. parents: ["mammal"]
  1180. },
  1181. "weavile": {
  1182. name: "Weavile",
  1183. parents: ["pokemon"]
  1184. },
  1185. "pikachu": {
  1186. name: "Pikachu",
  1187. parents: ["pokemon", "mouse"]
  1188. },
  1189. "grovyle": {
  1190. name: "Grovyle",
  1191. parents: ["pokemon", "plant"]
  1192. },
  1193. "sthara": {
  1194. name: "Sthara",
  1195. parents: ["snow-leopard", "reptile"]
  1196. },
  1197. "star-warrior": {
  1198. name: "Star Warrior",
  1199. parents: ["magical"]
  1200. },
  1201. "dragonoid": {
  1202. name: "Dragonoid",
  1203. parents: ["dragon"]
  1204. },
  1205. "suicune": {
  1206. name: "Suicune",
  1207. parents: ["pokemon"]
  1208. },
  1209. "vole": {
  1210. name: "Vole",
  1211. parents: ["mammal"]
  1212. },
  1213. "blaziken": {
  1214. name: "Blaziken",
  1215. parents: ["pokemon", "avian"]
  1216. },
  1217. "buizel": {
  1218. name: "Buizel",
  1219. parents: ["pokemon", "fish"]
  1220. },
  1221. "floatzel": {
  1222. name: "Floatzel",
  1223. parents: ["pokemon", "fish"]
  1224. },
  1225. "umok": {
  1226. name: "Umok",
  1227. parents: ["avian"]
  1228. },
  1229. "sea-monster": {
  1230. name: "Sea Monster",
  1231. parents: ["monster", "fish"]
  1232. },
  1233. "egyptian-vulture": {
  1234. name: "Egyptian Vulture",
  1235. parents: ["avian"]
  1236. },
  1237. "doberman": {
  1238. name: "Doberman",
  1239. parents: ["dog"]
  1240. },
  1241. "zangoose": {
  1242. name: "Zangoose",
  1243. parents: ["pokemon", "mongoose"]
  1244. },
  1245. "mongoose": {
  1246. name: "Mongoose",
  1247. parents: ["mammal"]
  1248. },
  1249. "wickerbeast": {
  1250. name: "Wickerbeast",
  1251. parents: ["monster"]
  1252. },
  1253. "zenari": {
  1254. name: "Zenari",
  1255. parents: ["lizard"]
  1256. },
  1257. "plant": {
  1258. name: "Plant",
  1259. parents: []
  1260. },
  1261. "raskatox": {
  1262. name: "Raskatox",
  1263. parents: ["raccoon", "skunk", "cat", "fox"]
  1264. },
  1265. "mikromare": {
  1266. name: "mikromare",
  1267. parents: ["alien"]
  1268. },
  1269. "alien": {
  1270. name: "Alien",
  1271. parents: ["animal"]
  1272. },
  1273. "deity": {
  1274. name: "Deity",
  1275. parents: []
  1276. },
  1277. "skarlan": {
  1278. name: "Skarlan",
  1279. parents: ["slug", "dragon"]
  1280. },
  1281. "slug": {
  1282. name: "Slug",
  1283. parents: ["mollusk"]
  1284. },
  1285. "mollusk": {
  1286. name: "Mollusk",
  1287. parents: ["animal"]
  1288. },
  1289. "chimera": {
  1290. name: "Chimera",
  1291. parents: ["monster"]
  1292. },
  1293. "gestalt": {
  1294. name: "Gestalt",
  1295. parents: ["construct"]
  1296. },
  1297. "mimic": {
  1298. name: "Mimic",
  1299. parents: ["monster"]
  1300. },
  1301. "calico-rat": {
  1302. name: "Calico Rat",
  1303. parents: ["rat"]
  1304. },
  1305. "panda": {
  1306. name: "Panda",
  1307. parents: ["mammal"]
  1308. },
  1309. "oni": {
  1310. name: "Oni",
  1311. parents: ["monster"]
  1312. },
  1313. "pegasus": {
  1314. name: "Pegasus",
  1315. parents: ["horse"]
  1316. },
  1317. "vulpera": {
  1318. name: "Vulpera",
  1319. parents: ["fennec-fox"]
  1320. },
  1321. "ceratosaurus": {
  1322. name: "Ceratosaurus",
  1323. parents: ["dinosaur"]
  1324. },
  1325. "nykur": {
  1326. name: "Nykur",
  1327. parents: ["horse", "monster"]
  1328. },
  1329. "giraffe": {
  1330. name: "Giraffe",
  1331. parents: ["mammal"]
  1332. },
  1333. "tauren": {
  1334. name: "Tauren",
  1335. parents: ["cow"]
  1336. },
  1337. "draconi": {
  1338. name: "Draconi",
  1339. parents: ["alien", "cat", "cyborg"]
  1340. },
  1341. "dire-wolf": {
  1342. name: "Dire Wolf",
  1343. parents: ["wolf"]
  1344. },
  1345. "ferromorph": {
  1346. name: "Ferromorph",
  1347. parents: ["construct"]
  1348. },
  1349. "meowth": {
  1350. name: "Meowth",
  1351. parents: ["cat", "pokemon"]
  1352. },
  1353. "pavodragon": {
  1354. name: "Pavodragon",
  1355. parents: ["dragon"]
  1356. },
  1357. "aaltranae": {
  1358. name: "Aaltranae",
  1359. parents: ["dragon"]
  1360. },
  1361. "cyborg": {
  1362. name: "Cyborg",
  1363. parents: ["machine"]
  1364. },
  1365. "draptor": {
  1366. name: "Draptor",
  1367. parents: ["dragon"]
  1368. },
  1369. "candy": {
  1370. name: "Candy",
  1371. parents: []
  1372. },
  1373. "drenath": {
  1374. name: "Drenath",
  1375. parents: ["dragon", "snake", "rabbit"]
  1376. },
  1377. "coyju": {
  1378. name: "Coyju",
  1379. parents: ["coyote", "kaiju"]
  1380. },
  1381. "kaiju": {
  1382. name: "Kaiju",
  1383. parents: ["monster"]
  1384. },
  1385. "nickit": {
  1386. name: "Nickit",
  1387. parents: ["pokemon", "cat"]
  1388. },
  1389. "lopunny": {
  1390. name: "Lopunny",
  1391. parents: ["pokemon", "rabbit"]
  1392. },
  1393. "korean-jindo-dog": {
  1394. name: "Korean Jindo Dog",
  1395. parents: ["dog"]
  1396. },
  1397. "naga": {
  1398. name: "Naga",
  1399. parents: ["snake", "monster"]
  1400. },
  1401. "undead": {
  1402. name: "Undead",
  1403. parents: ["monster"]
  1404. },
  1405. "whale": {
  1406. name: "Whale",
  1407. parents: ["fish"]
  1408. },
  1409. "gelato-bee": {
  1410. name: "Gelato Bee",
  1411. parents: ["bee"]
  1412. },
  1413. "bee": {
  1414. name: "Bee",
  1415. parents: ["insect"]
  1416. },
  1417. "gardevoir": {
  1418. name: "Gardevoir",
  1419. parents: ["pokemon"]
  1420. },
  1421. "ant": {
  1422. name: "Ant",
  1423. parents: ["insect"]
  1424. },
  1425. "frog": {
  1426. name: "Frog",
  1427. parents: ["amphibian"]
  1428. },
  1429. "amphibian": {
  1430. name: "Amphibian",
  1431. parents: ["animal"]
  1432. },
  1433. "pangolin": {
  1434. name: "Pangolin",
  1435. parents: ["mammal"]
  1436. },
  1437. "uragi'viidorn": {
  1438. name: "Uragi'viidorn",
  1439. parents: ["avian", "bear"]
  1440. },
  1441. "gryphdelphais": {
  1442. name: "Gryphdelphais",
  1443. parents: ["dolphin", "gryphon"]
  1444. },
  1445. "plush": {
  1446. name: "Plush",
  1447. parents: ["construct"]
  1448. },
  1449. "draiger": {
  1450. name: "Draiger",
  1451. parents: ["dragon","tiger"]
  1452. },
  1453. "foxsky": {
  1454. name: "Foxsky",
  1455. parents: ["fox", "husky"]
  1456. },
  1457. "umbreon": {
  1458. name: "Umbreon",
  1459. parents: ["eeveelution"]
  1460. },
  1461. "slime-dragon": {
  1462. name: "Slime Dragon",
  1463. parents: ["dragon", "goo"]
  1464. },
  1465. "enderman": {
  1466. name: "Enderman",
  1467. parents: ["monster"]
  1468. },
  1469. "gremlin": {
  1470. name: "Gremlin",
  1471. parents: ["monster"]
  1472. },
  1473. "dragonsune": {
  1474. name: "Dragonsune",
  1475. parents: ["dragon", "kitsune"]
  1476. },
  1477. "ghost": {
  1478. name: "Ghost",
  1479. parents: ["supernatural"]
  1480. },
  1481. "false-vampire-bat": {
  1482. name: "False Vampire Bat",
  1483. parents: ["bat"]
  1484. },
  1485. "succubus": {
  1486. name: "Succubus",
  1487. parents: ["demon"]
  1488. },
  1489. "mia": {
  1490. name: "Mia",
  1491. parents: ["canine"]
  1492. },
  1493. "rainbow": {
  1494. name: "Rainbow",
  1495. parents: ["monster"]
  1496. },
  1497. "solgaleo": {
  1498. name: "Solgaleo",
  1499. parents: ["pokemon"]
  1500. },
  1501. "lucent-nargacuga": {
  1502. name: "Lucent Nargacuga",
  1503. parents: ["nargacuga"]
  1504. },
  1505. "monster-hunter": {
  1506. name: "Monster Hunter",
  1507. parents: ["monster", "video-games"]
  1508. },
  1509. "leviathan": {
  1510. "name": "Leviathan",
  1511. "url": "sea-monster"
  1512. },
  1513. "bull": {
  1514. name: "Bull",
  1515. parents: ["mammal"]
  1516. },
  1517. "tanuki": {
  1518. name: "Tanuki",
  1519. parents: ["monster"]
  1520. },
  1521. "chakat": {
  1522. name: "Chakat",
  1523. parents: ["cat"]
  1524. },
  1525. "hydra": {
  1526. name: "Hydra",
  1527. parents: ["monster"]
  1528. },
  1529. "zigzagoon": {
  1530. name: "Zigzagoon",
  1531. parents: ["raccoon", "pokemon"]
  1532. },
  1533. "vulture": {
  1534. name: "Vulture",
  1535. parents: ["avian"]
  1536. },
  1537. "eastern-dragon": {
  1538. name: "Eastern Dragon",
  1539. parents: ["dragon"]
  1540. },
  1541. "gryffon": {
  1542. name: "Gryffon",
  1543. parents: ["phoenix", "red-panda"]
  1544. },
  1545. "amtsvane": {
  1546. name: "Amtsvane",
  1547. parents: ["reptile"]
  1548. },
  1549. "kigavi": {
  1550. name: "Kigavi",
  1551. parents: ["avian"]
  1552. },
  1553. "turian": {
  1554. name: "Turian",
  1555. parents: ["avian"]
  1556. },
  1557. "zeraora": {
  1558. name: "Zeraora",
  1559. parents: ["pokemon", "cat"]
  1560. },
  1561. "sandshrew": {
  1562. name: "Sandshrew",
  1563. parents: ["pokemon", "pangolin"]
  1564. },
  1565. "valais-blacknose-sheep": {
  1566. name: "Valais Blacknose Sheep",
  1567. parents: ["sheep"]
  1568. },
  1569. "novaleit": {
  1570. name: "Novaleit",
  1571. parents: ["mammal"]
  1572. },
  1573. "dunnoh": {
  1574. name: "Dunnoh",
  1575. parents: ["mammal"]
  1576. },
  1577. "lunaral-dragon": {
  1578. name: "Lunaral Dragon",
  1579. parents: ["dragon"]
  1580. },
  1581. "arctic-wolf": {
  1582. name: "Arctic Wolf",
  1583. parents: ["wolf"]
  1584. },
  1585. "donkey": {
  1586. name: "Donkey",
  1587. parents: ["horse"]
  1588. },
  1589. "chinchilla": {
  1590. name: "Chinchilla",
  1591. parents: ["rodent"]
  1592. },
  1593. "felkin": {
  1594. name: "Felkin",
  1595. parents: ["dragon"]
  1596. },
  1597. "tykeriel": {
  1598. name: "Tykeriel",
  1599. parents: ["avian"]
  1600. },
  1601. "folf": {
  1602. name: "Folf",
  1603. parents: ["fox", "wolf"]
  1604. },
  1605. "pooltoy": {
  1606. name: "Pooltoy",
  1607. parents: ["construct"]
  1608. },
  1609. "demi": {
  1610. name: "Demi",
  1611. parents: ["human"]
  1612. },
  1613. "stegosaurus": {
  1614. name: "Stegosaurus",
  1615. parents: ["dinosaur"]
  1616. },
  1617. "computer-virus": {
  1618. name: "Computer Virus",
  1619. parents: ["program"]
  1620. },
  1621. "program": {
  1622. name: "Program",
  1623. parents: ["construct"]
  1624. },
  1625. "space-springhare": {
  1626. name: "Space Springhare",
  1627. parents: ["hare"]
  1628. },
  1629. "river-drake": {
  1630. name: "River Drake",
  1631. parents: ["dragon"]
  1632. },
  1633. "djinn": {
  1634. "name": "Djinn",
  1635. "url": "supernatural"
  1636. },
  1637. "supernatural": {
  1638. name: "Supernatural",
  1639. parents: ["monster"]
  1640. },
  1641. "grasshopper-mouse": {
  1642. name: "Grasshopper Mouse",
  1643. parents: ["mouse"]
  1644. },
  1645. "somali-cat": {
  1646. name: "Somali Cat",
  1647. parents: ["cat"]
  1648. },
  1649. "minccino": {
  1650. name: "Minccino",
  1651. parents: ["pokemon", "chinchilla"]
  1652. },
  1653. "pine-marten": {
  1654. name: "Pine Marten",
  1655. parents: ["marten"]
  1656. },
  1657. "marten": {
  1658. name: "Marten",
  1659. parents: ["mustelid"]
  1660. },
  1661. "mustelid": {
  1662. name: "Mustelid",
  1663. parents: ["mammal"]
  1664. },
  1665. "caribou": {
  1666. name: "Caribou",
  1667. parents: ["deer"]
  1668. },
  1669. "gnoll": {
  1670. name: "Gnoll",
  1671. parents: ["hyena", "monster"]
  1672. },
  1673. "peacekeeper": {
  1674. name: "Peacekeeper",
  1675. parents: ["human"]
  1676. },
  1677. "river-otter": {
  1678. name: "River Otter",
  1679. parents: ["otter"]
  1680. },
  1681. "dhole": {
  1682. name: "Dhole",
  1683. parents: ["canine"]
  1684. },
  1685. "springbok": {
  1686. name: "Springbok",
  1687. parents: ["antelope"]
  1688. },
  1689. "marsupial": {
  1690. name: "Marsupial",
  1691. parents: ["mammal"]
  1692. },
  1693. "townsend-big-eared-bat": {
  1694. name: "Townsend Big-eared Bat",
  1695. parents: ["bat"]
  1696. },
  1697. "squirrel": {
  1698. name: "Squirrel",
  1699. parents: ["rodent"]
  1700. },
  1701. "magpie": {
  1702. name: "Magpie",
  1703. parents: ["corvid"]
  1704. },
  1705. "civet": {
  1706. name: "Civet",
  1707. parents: ["feliform"]
  1708. },
  1709. "feliform": {
  1710. name: "Feliform",
  1711. parents: ["mammal"]
  1712. },
  1713. "tiefling": {
  1714. name: "Tiefling",
  1715. parents: ["devil"]
  1716. },
  1717. "devil": {
  1718. name: "Devil",
  1719. parents: ["supernatural"]
  1720. },
  1721. "sika-deer": {
  1722. name: "Sika Deer",
  1723. parents: ["deer"]
  1724. },
  1725. "vaporeon": {
  1726. name: "Vaporeon",
  1727. parents: ["eeveelution"]
  1728. },
  1729. "leafeon": {
  1730. name: "Leafeon",
  1731. parents: ["eeveelution"]
  1732. },
  1733. "jolteon": {
  1734. name: "Jolteon",
  1735. parents: ["eeveelution"]
  1736. },
  1737. "spireborn": {
  1738. name: "Spireborn",
  1739. parents: ["zorgoia"]
  1740. },
  1741. "vampire": {
  1742. name: "Vampire",
  1743. parents: ["monster"]
  1744. },
  1745. "extraplanar": {
  1746. name: "Extraplanar",
  1747. parents: []
  1748. },
  1749. "goo": {
  1750. name: "Goo",
  1751. parents: []
  1752. },
  1753. "skink": {
  1754. name: "Skink",
  1755. parents: ["lizard"]
  1756. },
  1757. "bat-eared-fox": {
  1758. name: "Bat-eared Fox",
  1759. parents: ["fox"]
  1760. },
  1761. "belted-kingfisher": {
  1762. name: "Belted Kingfisher",
  1763. parents: ["avian"]
  1764. },
  1765. "omnifalcon": {
  1766. name: "Omnifalcon",
  1767. parents: ["gryphon", "falcon", "harpy-eagle"]
  1768. },
  1769. "falcon": {
  1770. name: "Falcon",
  1771. parents: ["bird-of-prey"]
  1772. },
  1773. "avali": {
  1774. name: "Avali",
  1775. parents: ["avian", "alien"]
  1776. },
  1777. "arctic-fox": {
  1778. name: "Arctic Fox",
  1779. parents: ["fox"]
  1780. },
  1781. "snow-tiger": {
  1782. name: "Snow Tiger",
  1783. parents: ["tiger"]
  1784. },
  1785. "marble-fox": {
  1786. name: "Marble Fox",
  1787. parents: ["fox"]
  1788. },
  1789. "king-wickerbeast": {
  1790. name: "King Wickerbeast",
  1791. parents: ["wickerbeast"]
  1792. },
  1793. "wickerbeast": {
  1794. name: "Wickerbeast",
  1795. parents: ["mammal"]
  1796. },
  1797. "european-polecat": {
  1798. name: "European Polecat",
  1799. parents: ["polecat"]
  1800. },
  1801. "polecat": {
  1802. name: "Polecat",
  1803. parents: ["mustelid"]
  1804. },
  1805. "teshari": {
  1806. name: "Teshari",
  1807. parents: ["avian", "raptor"]
  1808. },
  1809. "alicorn": {
  1810. name: "Alicorn",
  1811. parents: ["horse"]
  1812. },
  1813. "atlas-moth": {
  1814. name: "Atlas Moth",
  1815. parents: ["moth"]
  1816. },
  1817. "owlbear": {
  1818. name: "Owlbear",
  1819. parents: ["owl", "bear", "monster"]
  1820. },
  1821. "owl": {
  1822. name: "Owl",
  1823. parents: ["avian"]
  1824. },
  1825. "silvertongue": {
  1826. name: "Silvertongue",
  1827. parents: ["reptile"]
  1828. },
  1829. "ahuizotl": {
  1830. name: "Ahuizotl",
  1831. parents: ["monster"]
  1832. },
  1833. "ender-dragon": {
  1834. name: "Ender Dragon",
  1835. parents: ["dragon"]
  1836. },
  1837. "bruhathkayosaurus": {
  1838. name: "Bruhathkayosaurus",
  1839. parents: ["sauropod"]
  1840. },
  1841. "sauropod": {
  1842. name: "Sauropod",
  1843. parents: ["dinosaur"]
  1844. },
  1845. "black-sable-antelope": {
  1846. name: "Black Sable Antelope",
  1847. parents: ["antelope"]
  1848. },
  1849. "slime": {
  1850. name: "Slime",
  1851. parents: ["goo"]
  1852. },
  1853. "utahraptor": {
  1854. name: "Utahraptor",
  1855. parents: ["raptor"]
  1856. },
  1857. "indian-giant-squirrel": {
  1858. name: "Indian Giant Squirrel",
  1859. parents: ["squirrel"]
  1860. },
  1861. "golden-retriever": {
  1862. name: "Golden Retriever",
  1863. parents: ["dog"]
  1864. },
  1865. "triceratops": {
  1866. name: "Triceratops",
  1867. parents: ["dinosaur"]
  1868. },
  1869. "drake": {
  1870. name: "Drake",
  1871. parents: ["dragon"]
  1872. },
  1873. "okapi": {
  1874. name: "Okapi",
  1875. parents: ["giraffe"]
  1876. },
  1877. "arctic-hare": {
  1878. name: "Arctic Hare",
  1879. parents: ["hare"]
  1880. },
  1881. "hare": {
  1882. name: "Hare",
  1883. parents: ["leporidae"]
  1884. },
  1885. "leporidae": {
  1886. name: "Leporidae",
  1887. parents: ["mammal"]
  1888. },
  1889. "leopard-gecko": {
  1890. name: "Leopard Gecko",
  1891. parents: ["gecko"]
  1892. },
  1893. "dreamspawn": {
  1894. name: "Dreamspawn",
  1895. parents: ["illusion"]
  1896. },
  1897. "illusion": {
  1898. name: "Illusion",
  1899. parents: []
  1900. },
  1901. "purrloin": {
  1902. name: "Purrloin",
  1903. parents: ["cat", "pokemon"]
  1904. },
  1905. "noivern": {
  1906. name: "Noivern",
  1907. parents: ["bat", "dragon", "pokemon"]
  1908. },
  1909. "hedgehog": {
  1910. name: "Hedgehog",
  1911. parents: ["mammal"]
  1912. },
  1913. "liger": {
  1914. name: "Liger",
  1915. parents: ["lion", "tiger", "hybrid"]
  1916. },
  1917. "hybrid": {
  1918. name: "Hybrid",
  1919. parents: []
  1920. },
  1921. "drider": {
  1922. name: "Drider",
  1923. parents: ["spider"]
  1924. },
  1925. "sabresune": {
  1926. name: "Sabresune",
  1927. parents: ["kitsune", "sabertooth-tiger"]
  1928. },
  1929. "ditto": {
  1930. name: "Ditto",
  1931. parents: ["pokemon", "goo"]
  1932. },
  1933. "amogus": {
  1934. name: "Amogus",
  1935. parents: ["deity"]
  1936. },
  1937. "ferret": {
  1938. name: "Ferret",
  1939. parents: ["mustelid"]
  1940. },
  1941. "guinea-pig": {
  1942. name: "Guinea Pig",
  1943. parents: ["rodent"]
  1944. },
  1945. "viper": {
  1946. name: "Viper",
  1947. parents: ["snake"]
  1948. },
  1949. "cinderace": {
  1950. name: "Cinderace",
  1951. parents: ["pokemon", "rabbit"]
  1952. },
  1953. "caudin": {
  1954. name: "Caudin",
  1955. parents: ["dragon"]
  1956. },
  1957. "red-winged-blackbird": {
  1958. name: "Red-Winged Blackbird",
  1959. parents: ["avian"]
  1960. },
  1961. "hooded-wheater": {
  1962. name: "Hooded Wheater",
  1963. parents: ["passerine"]
  1964. },
  1965. "passerine": {
  1966. name: "Passerine",
  1967. parents: ["avian"]
  1968. },
  1969. "gieeg": {
  1970. name: "Gieeg",
  1971. parents: ["alien"]
  1972. },
  1973. "ringtail": {
  1974. name: "Ringtail",
  1975. parents: ["raccoon"]
  1976. },
  1977. "hisuian-zoroark": {
  1978. name: "Hisuian Zoroark",
  1979. parents: ["zoroark", "hisuian"]
  1980. },
  1981. "hisuian": {
  1982. name: "Hisuian",
  1983. parents: ["regional-pokemon"]
  1984. },
  1985. "regional-pokemon": {
  1986. name: "Regional Pokemon",
  1987. parents: ["pokemon"]
  1988. },
  1989. "cybeast": {
  1990. name: "Cybeast",
  1991. parents: ["computer-virus"]
  1992. },
  1993. "javira-dragon": {
  1994. name: "Javira Dragon",
  1995. parents: ["dragon"]
  1996. },
  1997. "koopew": {
  1998. name: "Koopew",
  1999. parents: ["dragon", "alien"]
  2000. },
  2001. "nevrean": {
  2002. name: "Nevrean",
  2003. parents: ["avian", "vilous"]
  2004. },
  2005. "vilous": {
  2006. name: "Vilous Species",
  2007. parents: []
  2008. },
  2009. "titanoboa": {
  2010. name: "Titanoboa",
  2011. parents: ["snake"]
  2012. },
  2013. "raichu": {
  2014. name: "Raichu",
  2015. parents: ["pikachu"]
  2016. },
  2017. "taur": {
  2018. name: "Taur",
  2019. parents: []
  2020. },
  2021. "continental-giant-rabbit": {
  2022. name: "Continental Giant Rabbit",
  2023. parents: ["rabbit"]
  2024. },
  2025. "demigryph": {
  2026. name: "Demigryph",
  2027. parents: ["lion", "eagle"]
  2028. },
  2029. "bald-eagle": {
  2030. name: "Bald Eagle",
  2031. parents: ["eagle"]
  2032. },
  2033. "kestrel": {
  2034. name: "Kestrel",
  2035. parents: ["falcon"]
  2036. },
  2037. "mockingbird": {
  2038. name: "Mockingbird",
  2039. parents: ["songbird"]
  2040. },
  2041. "songbird": {
  2042. name: "Songbird",
  2043. parents: ["avian"]
  2044. },
  2045. "bird-of-prey": {
  2046. name: "Bird of Prey",
  2047. parents: ["avian"]
  2048. },
  2049. "marowak": {
  2050. name: "Marowak",
  2051. parents: ["pokemon", "reptile"]
  2052. },
  2053. "joltik": {
  2054. name: "Joltik",
  2055. parents: ["pokemon", "insect"]
  2056. },
  2057. "mink": {
  2058. name: "Mink",
  2059. parents: ["mustelid"]
  2060. },
  2061. "sandcat": {
  2062. name: "Sandcat",
  2063. parents: ["cat"]
  2064. },
  2065. "hrothgar": {
  2066. name: "Hrothgar",
  2067. parents: ["cat"]
  2068. },
  2069. "garchomp": {
  2070. name: "Garchomp",
  2071. parents: ["dragon", "pokemon"]
  2072. },
  2073. "nargacuga": {
  2074. name: "Nargacuga",
  2075. parents: ["monster-hunter"]
  2076. },
  2077. "sable": {
  2078. name: "Sable",
  2079. parents: ["marten"]
  2080. },
  2081. "deino": {
  2082. name: "Deino",
  2083. parents: ["pokemon", "dinosaur"]
  2084. },
  2085. "housecat": {
  2086. name: "Housecat",
  2087. parents: ["cat"]
  2088. },
  2089. "bombay-cat": {
  2090. name: "Bombay Cat",
  2091. parents: ["housecat"]
  2092. },
  2093. "maine-coon": {
  2094. name: "Maine Coon",
  2095. parents: ["housecat"]
  2096. },
  2097. "coelacanth": {
  2098. name: "Coelacanth",
  2099. parents: ["fish"]
  2100. },
  2101. "silvally": {
  2102. name: "Silvally",
  2103. parents: ["legendary-pokemon"]
  2104. },
  2105. "legendary-pokemon": {
  2106. name: "Legendary Pokemon",
  2107. parents: ["pokemon"]
  2108. },
  2109. "great-maccao": {
  2110. name: "Great Maccao",
  2111. parents: ["monster-hunter", "raptor"]
  2112. },
  2113. "shapeshifter": {
  2114. name: "shapeshifter",
  2115. parents: []
  2116. },
  2117. "obstagoon": {
  2118. name: "Obstagoon",
  2119. parents: ["zigzagoon"]
  2120. },
  2121. "thomsons-gazelle": {
  2122. name: "Thomsons Gazelle",
  2123. parents: ["gazelle"]
  2124. },
  2125. "gazelle": {
  2126. name: "Gazelle",
  2127. parents: ["antelope"]
  2128. },
  2129. "monkey": {
  2130. name: "Monkey",
  2131. parents: ["primate"]
  2132. },
  2133. "serval": {
  2134. name: "Serval",
  2135. parents: ["cat"]
  2136. },
  2137. "swampert": {
  2138. name: "Swampert",
  2139. parents: ["pokemon"]
  2140. },
  2141. "red-fox": {
  2142. name: "Red Fox",
  2143. parents: ["fox"]
  2144. },
  2145. "sliver": {
  2146. name: "Sliver",
  2147. parents: ["alien"]
  2148. },
  2149. "sergix": {
  2150. name: "Sergix",
  2151. parents: ["demon", "sergal", "phoenix"]
  2152. },
  2153. "behemoth": {
  2154. name: "Behemoth",
  2155. parents: ["monster", "dragon", "final-fantasy"]
  2156. },
  2157. "final-fantasy": {
  2158. name: "Final Fantasy",
  2159. parents: ["video-games"]
  2160. },
  2161. "video-games": {
  2162. name: "Video Games",
  2163. parents: []
  2164. },
  2165. "eastern-cottontail-rabbit": {
  2166. name: "Eastern Cottontail Rabbit",
  2167. parents: ["rabbit"]
  2168. },
  2169. "thresher-shark": {
  2170. name: "Thresher Shark",
  2171. parents: ["shark"]
  2172. },
  2173. "ai": {
  2174. name: "AI",
  2175. parents: []
  2176. },
  2177. "black-tip-reef-shark": {
  2178. name: "Black Tip Reef Shark",
  2179. parents: ["shark"]
  2180. },
  2181. "quetzalcoatlus-northropi": {
  2182. name: "Quetzalcoatlus Northropi",
  2183. parents: ["dinosaur"]
  2184. },
  2185. "snivy": {
  2186. name: "Snivy",
  2187. parents: ["pokemon", "snake"]
  2188. },
  2189. "nedynvor": {
  2190. name: "Nedynvor",
  2191. parents: ["avian"]
  2192. },
  2193. "marbled-polecat": {
  2194. name: "Marbled Polecat",
  2195. parents: ["polecat"]
  2196. },
  2197. "ape": {
  2198. name: "Ape",
  2199. parents: ["primate"]
  2200. },
  2201. "primate": {
  2202. name: "Primate",
  2203. parents: ["mammal"]
  2204. },
  2205. "kulve-taroth": {
  2206. name: "Kulve Taroth",
  2207. parents: ["monster-hunter", "dragon"]
  2208. },
  2209. "irthos": {
  2210. name: "Irthos",
  2211. parents: ["dragon"]
  2212. },
  2213. "furred-dragon": {
  2214. name: "Furred Dragon",
  2215. parents: ["dragon"]
  2216. },
  2217. "hippogriff": {
  2218. name: "Hippogriff",
  2219. parents: ["gryphon", "horse"]
  2220. },
  2221. "peregrine-falcon": {
  2222. name: "Peregrine Falcon",
  2223. parents: ["falcon"]
  2224. },
  2225. "deinonychus": {
  2226. name: "Deinonychus",
  2227. parents: ["theropod"]
  2228. },
  2229. "theropod": {
  2230. name: "Theropod",
  2231. parents: ["dinosaur"]
  2232. },
  2233. "chocobo": {
  2234. name: "Chocobo",
  2235. parents: ["avian"]
  2236. },
  2237. "stilio": {
  2238. name: "Stilio",
  2239. parents: ["snake"]
  2240. },
  2241. "kardox": {
  2242. name: "Kardox",
  2243. parents: ["wolf", "dragon", "horse"]
  2244. },
  2245. "food": {
  2246. name: "Food",
  2247. parents: ["object"]
  2248. },
  2249. "object": {
  2250. name: "Object",
  2251. parents: []
  2252. },
  2253. "honey-badger": {
  2254. name: "honey-badger",
  2255. parents: ["badger"]
  2256. },
  2257. "badger": {
  2258. name: "Badger",
  2259. parents: ["mustelid"]
  2260. },
  2261. "rattlesnake": {
  2262. name: "Rattlesnake",
  2263. parents: ["snake"]
  2264. },
  2265. "diamondback": {
  2266. name: "Diamondback",
  2267. parents: ["snake"]
  2268. },
  2269. "spidox": {
  2270. name: "Spidox",
  2271. parents: ["spider", "fox"]
  2272. },
  2273. }
  2274. //species
  2275. function getSpeciesInfo(speciesList) {
  2276. let result = new Set();
  2277. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2278. result.add(entry)
  2279. });
  2280. return Array.from(result);
  2281. };
  2282. function getSpeciesInfoHelper(species) {
  2283. if (!speciesData[species]) {
  2284. console.warn(species + " doesn't exist");
  2285. return [];
  2286. }
  2287. if (speciesData[species].parents) {
  2288. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2289. } else {
  2290. return [species];
  2291. }
  2292. }
  2293. characterMakers.push(() => makeCharacter(
  2294. {
  2295. name: "Fen",
  2296. species: ["crux"],
  2297. description: {
  2298. title: "Bio",
  2299. text: "Very furry. Sheds on everything."
  2300. },
  2301. tags: [
  2302. "anthro",
  2303. "goo"
  2304. ]
  2305. },
  2306. {
  2307. front: {
  2308. height: math.unit(12, "feet"),
  2309. weight: math.unit(2400, "lb"),
  2310. preyCapacity: math.unit(1, "people"),
  2311. name: "Front",
  2312. image: {
  2313. source: "./media/characters/fen/front.svg",
  2314. extra: 1804/1562,
  2315. bottom: 205/2009
  2316. },
  2317. extraAttributes: {
  2318. pawSize: {
  2319. name: "Paw Size",
  2320. power: 2,
  2321. type: "area",
  2322. base: math.unit(0.35, "m^2")
  2323. }
  2324. }
  2325. },
  2326. diving: {
  2327. height: math.unit(4.9, "meters"),
  2328. weight: math.unit(2400, "lb"),
  2329. name: "Diving",
  2330. image: {
  2331. source: "./media/characters/fen/diving.svg"
  2332. }
  2333. },
  2334. sleeby: {
  2335. height: math.unit(3.45, "meters"),
  2336. weight: math.unit(2400, "lb"),
  2337. name: "Sleeby",
  2338. image: {
  2339. source: "./media/characters/fen/sleeby.svg"
  2340. }
  2341. },
  2342. goo: {
  2343. height: math.unit(12, "feet"),
  2344. weight: math.unit(3600, "lb"),
  2345. volume: math.unit(1000, "liters"),
  2346. preyCapacity: math.unit(6, "people"),
  2347. name: "Goo",
  2348. image: {
  2349. source: "./media/characters/fen/goo.svg",
  2350. extra: 1307/1071,
  2351. bottom: 134/1441
  2352. }
  2353. },
  2354. horror: {
  2355. height: math.unit(13.6, "feet"),
  2356. weight: math.unit(2400, "lb"),
  2357. preyCapacity: math.unit(1, "people"),
  2358. name: "Horror",
  2359. image: {
  2360. source: "./media/characters/fen/horror.svg",
  2361. extra: 893/797,
  2362. bottom: 0/893
  2363. }
  2364. },
  2365. gooNsfw: {
  2366. height: math.unit(12, "feet"),
  2367. weight: math.unit(3750, "lb"),
  2368. volume: math.unit(1000, "liters"),
  2369. preyCapacity: math.unit(6, "people"),
  2370. name: "Goo (NSFW)",
  2371. image: {
  2372. source: "./media/characters/fen/goo-nsfw.svg",
  2373. extra: 1875/1734,
  2374. bottom: 122/1997
  2375. }
  2376. },
  2377. maw: {
  2378. height: math.unit(5.03, "feet"),
  2379. name: "Maw",
  2380. image: {
  2381. source: "./media/characters/fen/maw.svg"
  2382. }
  2383. },
  2384. gooCeiling: {
  2385. height: math.unit(6.6, "feet"),
  2386. weight: math.unit(3000, "lb"),
  2387. volume: math.unit(1000, "liters"),
  2388. preyCapacity: math.unit(6, "people"),
  2389. name: "Maw (Goo)",
  2390. image: {
  2391. source: "./media/characters/fen/goo-maw.svg"
  2392. }
  2393. },
  2394. paw: {
  2395. height: math.unit(3.77, "feet"),
  2396. name: "Paw",
  2397. image: {
  2398. source: "./media/characters/fen/paw.svg"
  2399. },
  2400. extraAttributes: {
  2401. "toeSize": {
  2402. name: "Toe Size",
  2403. power: 2,
  2404. type: "area",
  2405. base: math.unit(0.02875, "m^2")
  2406. },
  2407. "pawSize": {
  2408. name: "Paw Size",
  2409. power: 2,
  2410. type: "area",
  2411. base: math.unit(0.378, "m^2")
  2412. },
  2413. }
  2414. },
  2415. tail: {
  2416. height: math.unit(12.1, "feet"),
  2417. name: "Tail",
  2418. image: {
  2419. source: "./media/characters/fen/tail.svg"
  2420. }
  2421. },
  2422. tailFull: {
  2423. height: math.unit(12.1, "feet"),
  2424. name: "Full Tail",
  2425. image: {
  2426. source: "./media/characters/fen/tail-full.svg"
  2427. }
  2428. },
  2429. back: {
  2430. height: math.unit(12, "feet"),
  2431. weight: math.unit(2400, "lb"),
  2432. name: "Back",
  2433. image: {
  2434. source: "./media/characters/fen/back.svg",
  2435. },
  2436. info: {
  2437. description: {
  2438. mode: "append",
  2439. text: "\n\nHe is not currently looking at you."
  2440. }
  2441. }
  2442. },
  2443. full: {
  2444. height: math.unit(1.85, "meter"),
  2445. weight: math.unit(3200, "lb"),
  2446. name: "Full",
  2447. image: {
  2448. source: "./media/characters/fen/full.svg",
  2449. extra: 1133/859,
  2450. bottom: 145/1278
  2451. },
  2452. info: {
  2453. description: {
  2454. mode: "append",
  2455. text: "\n\nMunch."
  2456. }
  2457. }
  2458. },
  2459. gooLounging: {
  2460. height: math.unit(4.53, "feet"),
  2461. weight: math.unit(3000, "lb"),
  2462. preyCapacity: math.unit(6, "people"),
  2463. name: "Goo (Lounging)",
  2464. image: {
  2465. source: "./media/characters/fen/goo-lounging.svg",
  2466. bottom: 116 / 613
  2467. }
  2468. },
  2469. lounging: {
  2470. height: math.unit(10.52, "feet"),
  2471. weight: math.unit(2400, "lb"),
  2472. name: "Lounging",
  2473. image: {
  2474. source: "./media/characters/fen/lounging.svg"
  2475. }
  2476. },
  2477. },
  2478. [
  2479. {
  2480. name: "Small",
  2481. height: math.unit(2.2428, "meter")
  2482. },
  2483. {
  2484. name: "Normal",
  2485. height: math.unit(12, "feet"),
  2486. default: true,
  2487. },
  2488. {
  2489. name: "Big",
  2490. height: math.unit(20, "feet")
  2491. },
  2492. {
  2493. name: "Minimacro",
  2494. height: math.unit(40, "feet"),
  2495. info: {
  2496. description: {
  2497. mode: "append",
  2498. text: "\n\nTOO DAMN BIG"
  2499. }
  2500. }
  2501. },
  2502. {
  2503. name: "Macro",
  2504. height: math.unit(100, "feet"),
  2505. info: {
  2506. description: {
  2507. mode: "append",
  2508. text: "\n\nTOO DAMN BIG"
  2509. }
  2510. }
  2511. },
  2512. {
  2513. name: "Megamacro",
  2514. height: math.unit(2, "miles")
  2515. },
  2516. {
  2517. name: "Gigamacro",
  2518. height: math.unit(10, "earths")
  2519. },
  2520. ]
  2521. ))
  2522. characterMakers.push(() => makeCharacter(
  2523. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2524. {
  2525. front: {
  2526. height: math.unit(183, "cm"),
  2527. weight: math.unit(80, "kg"),
  2528. name: "Front",
  2529. image: {
  2530. source: "./media/characters/sofia-fluttertail/front.svg",
  2531. bottom: 0.01,
  2532. extra: 2154 / 2081
  2533. }
  2534. },
  2535. frontAlt: {
  2536. height: math.unit(183, "cm"),
  2537. weight: math.unit(80, "kg"),
  2538. name: "Front (alt)",
  2539. image: {
  2540. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2541. }
  2542. },
  2543. back: {
  2544. height: math.unit(183, "cm"),
  2545. weight: math.unit(80, "kg"),
  2546. name: "Back",
  2547. image: {
  2548. source: "./media/characters/sofia-fluttertail/back.svg"
  2549. }
  2550. },
  2551. kneeling: {
  2552. height: math.unit(125, "cm"),
  2553. weight: math.unit(80, "kg"),
  2554. name: "Kneeling",
  2555. image: {
  2556. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2557. extra: 1033 / 977,
  2558. bottom: 23.7 / 1057
  2559. }
  2560. },
  2561. maw: {
  2562. height: math.unit(183 / 5, "cm"),
  2563. name: "Maw",
  2564. image: {
  2565. source: "./media/characters/sofia-fluttertail/maw.svg"
  2566. }
  2567. },
  2568. mawcloseup: {
  2569. height: math.unit(183 / 5 * 0.41, "cm"),
  2570. name: "Maw (Closeup)",
  2571. image: {
  2572. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2573. }
  2574. },
  2575. paws: {
  2576. height: math.unit(1.17, "feet"),
  2577. name: "Paws",
  2578. image: {
  2579. source: "./media/characters/sofia-fluttertail/paws.svg",
  2580. extra: 851 / 851,
  2581. bottom: 17 / 868
  2582. }
  2583. },
  2584. },
  2585. [
  2586. {
  2587. name: "Normal",
  2588. height: math.unit(1.83, "meter")
  2589. },
  2590. {
  2591. name: "Size Thief",
  2592. height: math.unit(18, "feet")
  2593. },
  2594. {
  2595. name: "50 Foot Collie",
  2596. height: math.unit(50, "feet")
  2597. },
  2598. {
  2599. name: "Macro",
  2600. height: math.unit(96, "feet"),
  2601. default: true
  2602. },
  2603. {
  2604. name: "Megamerger",
  2605. height: math.unit(650, "feet")
  2606. },
  2607. ]
  2608. ))
  2609. characterMakers.push(() => makeCharacter(
  2610. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2611. {
  2612. front: {
  2613. height: math.unit(7, "feet"),
  2614. weight: math.unit(100, "kg"),
  2615. name: "Front",
  2616. image: {
  2617. source: "./media/characters/march/front.svg",
  2618. extra: 1992/1851,
  2619. bottom: 39/2031
  2620. }
  2621. },
  2622. foot: {
  2623. height: math.unit(0.9, "feet"),
  2624. name: "Foot",
  2625. image: {
  2626. source: "./media/characters/march/foot.svg"
  2627. }
  2628. },
  2629. },
  2630. [
  2631. {
  2632. name: "Normal",
  2633. height: math.unit(7.9, "feet")
  2634. },
  2635. {
  2636. name: "Macro",
  2637. height: math.unit(220, "meters")
  2638. },
  2639. {
  2640. name: "Megamacro",
  2641. height: math.unit(2.98, "km"),
  2642. default: true
  2643. },
  2644. {
  2645. name: "Gigamacro",
  2646. height: math.unit(15963, "km")
  2647. },
  2648. {
  2649. name: "Teramacro",
  2650. height: math.unit(2980000000, "km")
  2651. },
  2652. {
  2653. name: "Examacro",
  2654. height: math.unit(250, "parsecs")
  2655. },
  2656. ]
  2657. ))
  2658. characterMakers.push(() => makeCharacter(
  2659. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2660. {
  2661. front: {
  2662. height: math.unit(6, "feet"),
  2663. weight: math.unit(60, "kg"),
  2664. name: "Front",
  2665. image: {
  2666. source: "./media/characters/noir/front.svg",
  2667. extra: 1,
  2668. bottom: 0.032
  2669. }
  2670. },
  2671. },
  2672. [
  2673. {
  2674. name: "Normal",
  2675. height: math.unit(6.6, "feet")
  2676. },
  2677. {
  2678. name: "Macro",
  2679. height: math.unit(500, "feet")
  2680. },
  2681. {
  2682. name: "Megamacro",
  2683. height: math.unit(2.5, "km"),
  2684. default: true
  2685. },
  2686. {
  2687. name: "Gigamacro",
  2688. height: math.unit(22500, "km")
  2689. },
  2690. {
  2691. name: "Teramacro",
  2692. height: math.unit(2500000000, "km")
  2693. },
  2694. {
  2695. name: "Examacro",
  2696. height: math.unit(200, "parsecs")
  2697. },
  2698. ]
  2699. ))
  2700. characterMakers.push(() => makeCharacter(
  2701. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2702. {
  2703. front: {
  2704. height: math.unit(7, "feet"),
  2705. weight: math.unit(100, "kg"),
  2706. name: "Front",
  2707. image: {
  2708. source: "./media/characters/okuri/front.svg",
  2709. extra: 739/665,
  2710. bottom: 39/778
  2711. }
  2712. },
  2713. back: {
  2714. height: math.unit(7, "feet"),
  2715. weight: math.unit(100, "kg"),
  2716. name: "Back",
  2717. image: {
  2718. source: "./media/characters/okuri/back.svg",
  2719. extra: 734/653,
  2720. bottom: 13/747
  2721. }
  2722. },
  2723. sitting: {
  2724. height: math.unit(2.95, "feet"),
  2725. weight: math.unit(100, "kg"),
  2726. name: "Sitting",
  2727. image: {
  2728. source: "./media/characters/okuri/sitting.svg",
  2729. extra: 370/318,
  2730. bottom: 99/469
  2731. }
  2732. },
  2733. },
  2734. [
  2735. {
  2736. name: "Smallest",
  2737. height: math.unit(5 + 2/12, "feet")
  2738. },
  2739. {
  2740. name: "Smaller",
  2741. height: math.unit(300, "feet")
  2742. },
  2743. {
  2744. name: "Small",
  2745. height: math.unit(1000, "feet")
  2746. },
  2747. {
  2748. name: "Macro",
  2749. height: math.unit(1, "mile")
  2750. },
  2751. {
  2752. name: "Mega Macro (Small)",
  2753. height: math.unit(20, "km")
  2754. },
  2755. {
  2756. name: "Mega Macro (Large)",
  2757. height: math.unit(600, "km")
  2758. },
  2759. {
  2760. name: "Giga Macro",
  2761. height: math.unit(10000, "km")
  2762. },
  2763. {
  2764. name: "Normal",
  2765. height: math.unit(577560, "km"),
  2766. default: true
  2767. },
  2768. {
  2769. name: "Large",
  2770. height: math.unit(4, "galaxies")
  2771. },
  2772. {
  2773. name: "Largest",
  2774. height: math.unit(15, "multiverses")
  2775. },
  2776. ]
  2777. ))
  2778. characterMakers.push(() => makeCharacter(
  2779. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2780. {
  2781. front: {
  2782. height: math.unit(7, "feet"),
  2783. weight: math.unit(100, "kg"),
  2784. name: "Front",
  2785. image: {
  2786. source: "./media/characters/manny/front.svg",
  2787. extra: 1,
  2788. bottom: 0.06
  2789. }
  2790. },
  2791. back: {
  2792. height: math.unit(7, "feet"),
  2793. weight: math.unit(100, "kg"),
  2794. name: "Back",
  2795. image: {
  2796. source: "./media/characters/manny/back.svg",
  2797. extra: 1,
  2798. bottom: 0.014
  2799. }
  2800. },
  2801. },
  2802. [
  2803. {
  2804. name: "Normal",
  2805. height: math.unit(7, "feet"),
  2806. },
  2807. {
  2808. name: "Macro",
  2809. height: math.unit(78, "feet"),
  2810. default: true
  2811. },
  2812. {
  2813. name: "Macro+",
  2814. height: math.unit(300, "meters")
  2815. },
  2816. {
  2817. name: "Macro++",
  2818. height: math.unit(2400, "meters")
  2819. },
  2820. {
  2821. name: "Megamacro",
  2822. height: math.unit(5167, "meters")
  2823. },
  2824. {
  2825. name: "Gigamacro",
  2826. height: math.unit(41769, "miles")
  2827. },
  2828. ]
  2829. ))
  2830. characterMakers.push(() => makeCharacter(
  2831. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2832. {
  2833. front: {
  2834. height: math.unit(7, "feet"),
  2835. weight: math.unit(100, "kg"),
  2836. name: "Front",
  2837. image: {
  2838. source: "./media/characters/adake/front-1.svg"
  2839. }
  2840. },
  2841. frontAlt: {
  2842. height: math.unit(7, "feet"),
  2843. weight: math.unit(100, "kg"),
  2844. name: "Front (Alt)",
  2845. image: {
  2846. source: "./media/characters/adake/front-2.svg",
  2847. extra: 1,
  2848. bottom: 0.01
  2849. }
  2850. },
  2851. back: {
  2852. height: math.unit(7, "feet"),
  2853. weight: math.unit(100, "kg"),
  2854. name: "Back",
  2855. image: {
  2856. source: "./media/characters/adake/back.svg",
  2857. }
  2858. },
  2859. kneel: {
  2860. height: math.unit(5.385, "feet"),
  2861. weight: math.unit(100, "kg"),
  2862. name: "Kneeling",
  2863. image: {
  2864. source: "./media/characters/adake/kneel.svg",
  2865. bottom: 0.052
  2866. }
  2867. },
  2868. },
  2869. [
  2870. {
  2871. name: "Normal",
  2872. height: math.unit(7, "feet"),
  2873. },
  2874. {
  2875. name: "Macro",
  2876. height: math.unit(78, "feet"),
  2877. default: true
  2878. },
  2879. {
  2880. name: "Macro+",
  2881. height: math.unit(300, "meters")
  2882. },
  2883. {
  2884. name: "Macro++",
  2885. height: math.unit(2400, "meters")
  2886. },
  2887. {
  2888. name: "Megamacro",
  2889. height: math.unit(5167, "meters")
  2890. },
  2891. {
  2892. name: "Gigamacro",
  2893. height: math.unit(41769, "miles")
  2894. },
  2895. ]
  2896. ))
  2897. characterMakers.push(() => makeCharacter(
  2898. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2899. {
  2900. front: {
  2901. height: math.unit(1.65, "meters"),
  2902. weight: math.unit(50, "kg"),
  2903. name: "Front",
  2904. image: {
  2905. source: "./media/characters/elijah/front.svg",
  2906. extra: 858 / 830,
  2907. bottom: 95.5 / 953.8559
  2908. }
  2909. },
  2910. back: {
  2911. height: math.unit(1.65, "meters"),
  2912. weight: math.unit(50, "kg"),
  2913. name: "Back",
  2914. image: {
  2915. source: "./media/characters/elijah/back.svg",
  2916. extra: 895 / 850,
  2917. bottom: 5.3 / 897.956
  2918. }
  2919. },
  2920. frontNsfw: {
  2921. height: math.unit(1.65, "meters"),
  2922. weight: math.unit(50, "kg"),
  2923. name: "Front (NSFW)",
  2924. image: {
  2925. source: "./media/characters/elijah/front-nsfw.svg",
  2926. extra: 858 / 830,
  2927. bottom: 95.5 / 953.8559
  2928. }
  2929. },
  2930. backNsfw: {
  2931. height: math.unit(1.65, "meters"),
  2932. weight: math.unit(50, "kg"),
  2933. name: "Back (NSFW)",
  2934. image: {
  2935. source: "./media/characters/elijah/back-nsfw.svg",
  2936. extra: 895 / 850,
  2937. bottom: 5.3 / 897.956
  2938. }
  2939. },
  2940. dick: {
  2941. height: math.unit(1, "feet"),
  2942. name: "Dick",
  2943. image: {
  2944. source: "./media/characters/elijah/dick.svg"
  2945. }
  2946. },
  2947. beakOpen: {
  2948. height: math.unit(1.25, "feet"),
  2949. name: "Beak (Open)",
  2950. image: {
  2951. source: "./media/characters/elijah/beak-open.svg"
  2952. }
  2953. },
  2954. beakShut: {
  2955. height: math.unit(1.25, "feet"),
  2956. name: "Beak (Shut)",
  2957. image: {
  2958. source: "./media/characters/elijah/beak-shut.svg"
  2959. }
  2960. },
  2961. footFlexing: {
  2962. height: math.unit(1.61, "feet"),
  2963. name: "Foot (Flexing)",
  2964. image: {
  2965. source: "./media/characters/elijah/foot-flexing.svg"
  2966. }
  2967. },
  2968. footStepping: {
  2969. height: math.unit(1.44, "feet"),
  2970. name: "Foot (Stepping)",
  2971. image: {
  2972. source: "./media/characters/elijah/foot-stepping.svg"
  2973. }
  2974. },
  2975. plantigradeLeg: {
  2976. height: math.unit(2.34, "feet"),
  2977. name: "Plantigrade Leg",
  2978. image: {
  2979. source: "./media/characters/elijah/plantigrade-leg.svg"
  2980. }
  2981. },
  2982. plantigradeFootLeft: {
  2983. height: math.unit(0.9, "feet"),
  2984. name: "Plantigrade Foot (Left)",
  2985. image: {
  2986. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2987. }
  2988. },
  2989. plantigradeFootRight: {
  2990. height: math.unit(0.9, "feet"),
  2991. name: "Plantigrade Foot (Right)",
  2992. image: {
  2993. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2994. }
  2995. },
  2996. },
  2997. [
  2998. {
  2999. name: "Normal",
  3000. height: math.unit(1.65, "meters")
  3001. },
  3002. {
  3003. name: "Macro",
  3004. height: math.unit(55, "meters"),
  3005. default: true
  3006. },
  3007. {
  3008. name: "Macro+",
  3009. height: math.unit(105, "meters")
  3010. },
  3011. ]
  3012. ))
  3013. characterMakers.push(() => makeCharacter(
  3014. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  3015. {
  3016. front: {
  3017. height: math.unit(7 + 2/12, "feet"),
  3018. weight: math.unit(320, "kg"),
  3019. preyCapacity: math.unit(0.276549935, "people"),
  3020. name: "Front",
  3021. image: {
  3022. source: "./media/characters/rai/front.svg",
  3023. extra: 1802/1696,
  3024. bottom: 68/1870
  3025. },
  3026. form: "anthro",
  3027. default: true
  3028. },
  3029. frontDressed: {
  3030. height: math.unit(7 + 2/12, "feet"),
  3031. weight: math.unit(320, "kg"),
  3032. preyCapacity: math.unit(0.276549935, "people"),
  3033. name: "Front (Dressed)",
  3034. image: {
  3035. source: "./media/characters/rai/front-dressed.svg",
  3036. extra: 1802/1696,
  3037. bottom: 68/1870
  3038. },
  3039. form: "anthro"
  3040. },
  3041. side: {
  3042. height: math.unit(7 + 2/12, "feet"),
  3043. weight: math.unit(320, "kg"),
  3044. preyCapacity: math.unit(0.276549935, "people"),
  3045. name: "Side",
  3046. image: {
  3047. source: "./media/characters/rai/side.svg",
  3048. extra: 1789/1710,
  3049. bottom: 115/1904
  3050. },
  3051. form: "anthro"
  3052. },
  3053. back: {
  3054. height: math.unit(7 + 2/12, "feet"),
  3055. weight: math.unit(320, "kg"),
  3056. preyCapacity: math.unit(0.276549935, "people"),
  3057. name: "Back",
  3058. image: {
  3059. source: "./media/characters/rai/back.svg",
  3060. extra: 1770/1707,
  3061. bottom: 28/1798
  3062. },
  3063. form: "anthro"
  3064. },
  3065. feral: {
  3066. height: math.unit(9.5, "feet"),
  3067. weight: math.unit(640, "kg"),
  3068. preyCapacity: math.unit(4, "people"),
  3069. name: "Feral",
  3070. image: {
  3071. source: "./media/characters/rai/feral.svg",
  3072. extra: 945/553,
  3073. bottom: 176/1121
  3074. },
  3075. form: "feral",
  3076. default: true
  3077. },
  3078. dragon: {
  3079. height: math.unit(23, "feet"),
  3080. weight: math.unit(50000, "lb"),
  3081. name: "Dragon",
  3082. image: {
  3083. source: "./media/characters/rai/dragon.svg",
  3084. extra: 2498 / 2030,
  3085. bottom: 85.2 / 2584
  3086. },
  3087. form: "dragon",
  3088. default: true
  3089. },
  3090. maw: {
  3091. height: math.unit(1.69, "feet"),
  3092. name: "Maw",
  3093. image: {
  3094. source: "./media/characters/rai/maw.svg"
  3095. },
  3096. form: "anthro"
  3097. },
  3098. },
  3099. [
  3100. {
  3101. name: "Normal",
  3102. height: math.unit(7 + 2/12, "feet"),
  3103. form: "anthro"
  3104. },
  3105. {
  3106. name: "Big",
  3107. height: math.unit(11, "feet"),
  3108. form: "anthro"
  3109. },
  3110. {
  3111. name: "Minimacro",
  3112. height: math.unit(77, "feet"),
  3113. form: "anthro"
  3114. },
  3115. {
  3116. name: "Macro",
  3117. height: math.unit(302, "feet"),
  3118. default: true,
  3119. form: "anthro"
  3120. },
  3121. {
  3122. name: "Normal",
  3123. height: math.unit(9.5, "feet"),
  3124. form: "feral",
  3125. default: true
  3126. },
  3127. {
  3128. name: "Normal",
  3129. height: math.unit(23, "feet"),
  3130. form: "dragon",
  3131. default: true
  3132. }
  3133. ],
  3134. {
  3135. "anthro": {
  3136. name: "Anthro",
  3137. default: true
  3138. },
  3139. "feral": {
  3140. name: "Feral",
  3141. },
  3142. "dragon": {
  3143. name: "Dragon",
  3144. },
  3145. }
  3146. ))
  3147. characterMakers.push(() => makeCharacter(
  3148. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  3149. {
  3150. frontDressed: {
  3151. height: math.unit(216, "feet"),
  3152. weight: math.unit(7000000, "lb"),
  3153. preyCapacity: math.unit(1321, "people"),
  3154. name: "Front (Dressed)",
  3155. image: {
  3156. source: "./media/characters/jazzy/front-dressed.svg",
  3157. extra: 2738 / 2651,
  3158. bottom: 41.8 / 2786
  3159. }
  3160. },
  3161. backDressed: {
  3162. height: math.unit(216, "feet"),
  3163. weight: math.unit(7000000, "lb"),
  3164. preyCapacity: math.unit(1321, "people"),
  3165. name: "Back (Dressed)",
  3166. image: {
  3167. source: "./media/characters/jazzy/back-dressed.svg",
  3168. extra: 2775 / 2673,
  3169. bottom: 36.8 / 2817
  3170. }
  3171. },
  3172. front: {
  3173. height: math.unit(216, "feet"),
  3174. weight: math.unit(7000000, "lb"),
  3175. preyCapacity: math.unit(1321, "people"),
  3176. name: "Front",
  3177. image: {
  3178. source: "./media/characters/jazzy/front.svg",
  3179. extra: 2738 / 2651,
  3180. bottom: 41.8 / 2786
  3181. }
  3182. },
  3183. back: {
  3184. height: math.unit(216, "feet"),
  3185. weight: math.unit(7000000, "lb"),
  3186. preyCapacity: math.unit(1321, "people"),
  3187. name: "Back",
  3188. image: {
  3189. source: "./media/characters/jazzy/back.svg",
  3190. extra: 2775 / 2673,
  3191. bottom: 36.8 / 2817
  3192. }
  3193. },
  3194. maw: {
  3195. height: math.unit(20, "feet"),
  3196. name: "Maw",
  3197. image: {
  3198. source: "./media/characters/jazzy/maw.svg"
  3199. }
  3200. },
  3201. paws: {
  3202. height: math.unit(27.5, "feet"),
  3203. name: "Paws",
  3204. image: {
  3205. source: "./media/characters/jazzy/paws.svg"
  3206. }
  3207. },
  3208. eye: {
  3209. height: math.unit(4.4, "feet"),
  3210. name: "Eye",
  3211. image: {
  3212. source: "./media/characters/jazzy/eye.svg"
  3213. }
  3214. },
  3215. droneOffense: {
  3216. height: math.unit(9.5, "inches"),
  3217. name: "Drone (Offense)",
  3218. image: {
  3219. source: "./media/characters/jazzy/drone-offense.svg"
  3220. }
  3221. },
  3222. droneRecon: {
  3223. height: math.unit(9.5, "inches"),
  3224. name: "Drone (Recon)",
  3225. image: {
  3226. source: "./media/characters/jazzy/drone-recon.svg"
  3227. }
  3228. },
  3229. droneDefense: {
  3230. height: math.unit(9.5, "inches"),
  3231. name: "Drone (Defense)",
  3232. image: {
  3233. source: "./media/characters/jazzy/drone-defense.svg"
  3234. }
  3235. },
  3236. },
  3237. [
  3238. {
  3239. name: "Macro",
  3240. height: math.unit(216, "feet"),
  3241. default: true
  3242. },
  3243. ]
  3244. ))
  3245. characterMakers.push(() => makeCharacter(
  3246. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3247. {
  3248. front: {
  3249. height: math.unit(9 + 6/12, "feet"),
  3250. weight: math.unit(700, "lb"),
  3251. name: "Front",
  3252. image: {
  3253. source: "./media/characters/flamm/front.svg",
  3254. extra: 1736/1596,
  3255. bottom: 93/1829
  3256. }
  3257. },
  3258. buff: {
  3259. height: math.unit(9 + 6/12, "feet"),
  3260. weight: math.unit(950, "lb"),
  3261. name: "Buff",
  3262. image: {
  3263. source: "./media/characters/flamm/buff.svg",
  3264. extra: 3018/2874,
  3265. bottom: 221/3239
  3266. }
  3267. },
  3268. },
  3269. [
  3270. {
  3271. name: "Normal",
  3272. height: math.unit(9.5, "feet")
  3273. },
  3274. {
  3275. name: "Macro",
  3276. height: math.unit(200, "feet"),
  3277. default: true
  3278. },
  3279. ]
  3280. ))
  3281. characterMakers.push(() => makeCharacter(
  3282. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3283. {
  3284. front: {
  3285. height: math.unit(5 + 3/12, "feet"),
  3286. weight: math.unit(60, "kg"),
  3287. name: "Front",
  3288. image: {
  3289. source: "./media/characters/zephiro/front.svg",
  3290. extra: 1873/1761,
  3291. bottom: 147/2020
  3292. }
  3293. },
  3294. side: {
  3295. height: math.unit(5 + 3/12, "feet"),
  3296. weight: math.unit(60, "kg"),
  3297. name: "Side",
  3298. image: {
  3299. source: "./media/characters/zephiro/side.svg",
  3300. extra: 1929/1827,
  3301. bottom: 65/1994
  3302. }
  3303. },
  3304. back: {
  3305. height: math.unit(5 + 3/12, "feet"),
  3306. weight: math.unit(60, "kg"),
  3307. name: "Back",
  3308. image: {
  3309. source: "./media/characters/zephiro/back.svg",
  3310. extra: 1926/1816,
  3311. bottom: 41/1967
  3312. }
  3313. },
  3314. hand: {
  3315. height: math.unit(0.68, "feet"),
  3316. name: "Hand",
  3317. image: {
  3318. source: "./media/characters/zephiro/hand.svg"
  3319. }
  3320. },
  3321. paw: {
  3322. height: math.unit(1, "feet"),
  3323. name: "Paw",
  3324. image: {
  3325. source: "./media/characters/zephiro/paw.svg"
  3326. }
  3327. },
  3328. beans: {
  3329. height: math.unit(0.93, "feet"),
  3330. name: "Beans",
  3331. image: {
  3332. source: "./media/characters/zephiro/beans.svg"
  3333. }
  3334. },
  3335. },
  3336. [
  3337. {
  3338. name: "Micro",
  3339. height: math.unit(3, "inches")
  3340. },
  3341. {
  3342. name: "Normal",
  3343. height: math.unit(5 + 3 / 12, "feet"),
  3344. default: true
  3345. },
  3346. {
  3347. name: "Macro",
  3348. height: math.unit(118, "feet")
  3349. },
  3350. ]
  3351. ))
  3352. characterMakers.push(() => makeCharacter(
  3353. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3354. {
  3355. front: {
  3356. height: math.unit(5, "feet"),
  3357. weight: math.unit(90, "kg"),
  3358. preyCapacity: math.unit(14, "people"),
  3359. name: "Front",
  3360. image: {
  3361. source: "./media/characters/fory/front.svg",
  3362. extra: 2862 / 2674,
  3363. bottom: 180 / 3043.8
  3364. },
  3365. form: "weaselbun",
  3366. default: true,
  3367. extraAttributes: {
  3368. "pawSize": {
  3369. name: "Paw Size",
  3370. power: 2,
  3371. type: "area",
  3372. base: math.unit(0.1596, "m^2")
  3373. },
  3374. "pawLength": {
  3375. name: "Paw Length",
  3376. power: 1,
  3377. type: "length",
  3378. base: math.unit(0.7, "m")
  3379. }
  3380. }
  3381. },
  3382. back: {
  3383. height: math.unit(5, "feet"),
  3384. weight: math.unit(90, "kg"),
  3385. preyCapacity: math.unit(14, "people"),
  3386. name: "Back",
  3387. image: {
  3388. source: "./media/characters/fory/back.svg",
  3389. extra: 1790/1672,
  3390. bottom: 84/1874
  3391. },
  3392. form: "weaselbun",
  3393. extraAttributes: {
  3394. "pawSize": {
  3395. name: "Paw Size",
  3396. power: 2,
  3397. type: "area",
  3398. base: math.unit(0.1596, "m^2")
  3399. },
  3400. "pawLength": {
  3401. name: "Paw Length",
  3402. power: 1,
  3403. type: "length",
  3404. base: math.unit(0.7, "m")
  3405. }
  3406. }
  3407. },
  3408. paw: {
  3409. height: math.unit(2.14, "feet"),
  3410. name: "Paw",
  3411. image: {
  3412. source: "./media/characters/fory/paw.svg"
  3413. },
  3414. form: "weaselbun",
  3415. extraAttributes: {
  3416. "pawSize": {
  3417. name: "Paw Size",
  3418. power: 2,
  3419. type: "area",
  3420. base: math.unit(0.1596, "m^2")
  3421. },
  3422. "pawLength": {
  3423. name: "Paw Length",
  3424. power: 1,
  3425. type: "length",
  3426. base: math.unit(0.48, "m")
  3427. }
  3428. }
  3429. },
  3430. bunBack: {
  3431. height: math.unit(3, "feet"),
  3432. weight: math.unit(20, "kg"),
  3433. preyCapacity: math.unit(3, "people"),
  3434. name: "Back",
  3435. image: {
  3436. source: "./media/characters/fory/bun-back.svg",
  3437. extra: 1749/1564,
  3438. bottom: 246/1995
  3439. },
  3440. form: "bun",
  3441. default: true,
  3442. extraAttributes: {
  3443. "pawSize": {
  3444. name: "Paw Size",
  3445. power: 2,
  3446. type: "area",
  3447. base: math.unit(0.072, "m^2")
  3448. },
  3449. "pawLength": {
  3450. name: "Paw Length",
  3451. power: 1,
  3452. type: "length",
  3453. base: math.unit(0.45, "m")
  3454. }
  3455. }
  3456. },
  3457. },
  3458. [
  3459. {
  3460. name: "Normal",
  3461. height: math.unit(5, "feet"),
  3462. form: "weaselbun"
  3463. },
  3464. {
  3465. name: "Macro",
  3466. height: math.unit(50, "feet"),
  3467. default: true,
  3468. form: "weaselbun"
  3469. },
  3470. {
  3471. name: "Megamacro",
  3472. height: math.unit(10, "miles"),
  3473. form: "weaselbun"
  3474. },
  3475. {
  3476. name: "Gigamacro",
  3477. height: math.unit(5, "earths"),
  3478. form: "weaselbun"
  3479. },
  3480. {
  3481. name: "Normal",
  3482. height: math.unit(3, "feet"),
  3483. default: true,
  3484. form: "bun"
  3485. },
  3486. {
  3487. name: "Fun-Size",
  3488. height: math.unit(12, "feet"),
  3489. form: "bun"
  3490. },
  3491. {
  3492. name: "Macro",
  3493. height: math.unit(100, "feet"),
  3494. form: "bun"
  3495. },
  3496. {
  3497. name: "Planetary",
  3498. height: math.unit(3, "earths"),
  3499. form: "bun"
  3500. },
  3501. ],
  3502. {
  3503. "weaselbun": {
  3504. name: "Weaselbun",
  3505. default: true
  3506. },
  3507. "bun": {
  3508. name: "Bun",
  3509. },
  3510. }
  3511. ))
  3512. characterMakers.push(() => makeCharacter(
  3513. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3514. {
  3515. front: {
  3516. height: math.unit(7, "feet"),
  3517. weight: math.unit(90, "kg"),
  3518. name: "Front",
  3519. image: {
  3520. source: "./media/characters/kurrikage/front.svg",
  3521. extra: 1845/1733,
  3522. bottom: 119/1964
  3523. }
  3524. },
  3525. back: {
  3526. height: math.unit(7, "feet"),
  3527. weight: math.unit(90, "kg"),
  3528. name: "Back",
  3529. image: {
  3530. source: "./media/characters/kurrikage/back.svg",
  3531. extra: 1790/1677,
  3532. bottom: 61/1851
  3533. }
  3534. },
  3535. dressed: {
  3536. height: math.unit(7, "feet"),
  3537. weight: math.unit(90, "kg"),
  3538. name: "Dressed",
  3539. image: {
  3540. source: "./media/characters/kurrikage/dressed.svg",
  3541. extra: 1845/1733,
  3542. bottom: 119/1964
  3543. }
  3544. },
  3545. foot: {
  3546. height: math.unit(1.5, "feet"),
  3547. name: "Foot",
  3548. image: {
  3549. source: "./media/characters/kurrikage/foot.svg"
  3550. }
  3551. },
  3552. staff: {
  3553. height: math.unit(6.7, "feet"),
  3554. name: "Staff",
  3555. image: {
  3556. source: "./media/characters/kurrikage/staff.svg"
  3557. }
  3558. },
  3559. peek: {
  3560. height: math.unit(1.05, "feet"),
  3561. name: "Peeking",
  3562. image: {
  3563. source: "./media/characters/kurrikage/peek.svg",
  3564. bottom: 0.08
  3565. }
  3566. },
  3567. },
  3568. [
  3569. {
  3570. name: "Normal",
  3571. height: math.unit(12, "feet"),
  3572. default: true
  3573. },
  3574. {
  3575. name: "Big",
  3576. height: math.unit(20, "feet")
  3577. },
  3578. {
  3579. name: "Macro",
  3580. height: math.unit(500, "feet")
  3581. },
  3582. {
  3583. name: "Megamacro",
  3584. height: math.unit(20, "miles")
  3585. },
  3586. ]
  3587. ))
  3588. characterMakers.push(() => makeCharacter(
  3589. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3590. {
  3591. front: {
  3592. height: math.unit(6, "feet"),
  3593. weight: math.unit(75, "kg"),
  3594. name: "Front",
  3595. image: {
  3596. source: "./media/characters/shingo/front.svg",
  3597. extra: 1900/1825,
  3598. bottom: 82/1982
  3599. }
  3600. },
  3601. side: {
  3602. height: math.unit(6, "feet"),
  3603. weight: math.unit(75, "kg"),
  3604. name: "Side",
  3605. image: {
  3606. source: "./media/characters/shingo/side.svg",
  3607. extra: 1930/1865,
  3608. bottom: 16/1946
  3609. }
  3610. },
  3611. back: {
  3612. height: math.unit(6, "feet"),
  3613. weight: math.unit(75, "kg"),
  3614. name: "Back",
  3615. image: {
  3616. source: "./media/characters/shingo/back.svg",
  3617. extra: 1922/1852,
  3618. bottom: 16/1938
  3619. }
  3620. },
  3621. frontDressed: {
  3622. height: math.unit(6, "feet"),
  3623. weight: math.unit(150, "lb"),
  3624. name: "Front-dressed",
  3625. image: {
  3626. source: "./media/characters/shingo/front-dressed.svg",
  3627. extra: 1900/1825,
  3628. bottom: 82/1982
  3629. }
  3630. },
  3631. paw: {
  3632. height: math.unit(1.29, "feet"),
  3633. name: "Paw",
  3634. image: {
  3635. source: "./media/characters/shingo/paw.svg"
  3636. }
  3637. },
  3638. hand: {
  3639. height: math.unit(1.07, "feet"),
  3640. name: "Hand",
  3641. image: {
  3642. source: "./media/characters/shingo/hand.svg"
  3643. }
  3644. },
  3645. frontAlt: {
  3646. height: math.unit(6, "feet"),
  3647. weight: math.unit(75, "kg"),
  3648. name: "Front (Alt)",
  3649. image: {
  3650. source: "./media/characters/shingo/front-alt.svg",
  3651. extra: 3511 / 3338,
  3652. bottom: 0.005
  3653. }
  3654. },
  3655. frontAlt2: {
  3656. height: math.unit(6, "feet"),
  3657. weight: math.unit(75, "kg"),
  3658. name: "Front (Alt 2)",
  3659. image: {
  3660. source: "./media/characters/shingo/front-alt-2.svg",
  3661. extra: 706/681,
  3662. bottom: 11/717
  3663. }
  3664. },
  3665. pawAlt: {
  3666. height: math.unit(1, "feet"),
  3667. name: "Paw (Alt)",
  3668. image: {
  3669. source: "./media/characters/shingo/paw-alt.svg"
  3670. }
  3671. },
  3672. },
  3673. [
  3674. {
  3675. name: "Micro",
  3676. height: math.unit(4, "inches")
  3677. },
  3678. {
  3679. name: "Normal",
  3680. height: math.unit(6, "feet"),
  3681. default: true
  3682. },
  3683. {
  3684. name: "Macro",
  3685. height: math.unit(108, "feet")
  3686. },
  3687. {
  3688. name: "Macro+",
  3689. height: math.unit(1500, "feet")
  3690. },
  3691. ]
  3692. ))
  3693. characterMakers.push(() => makeCharacter(
  3694. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3695. {
  3696. side: {
  3697. height: math.unit(6, "feet"),
  3698. weight: math.unit(75, "kg"),
  3699. name: "Side",
  3700. image: {
  3701. source: "./media/characters/aigey/side.svg"
  3702. }
  3703. },
  3704. },
  3705. [
  3706. {
  3707. name: "Macro",
  3708. height: math.unit(200, "feet"),
  3709. default: true
  3710. },
  3711. {
  3712. name: "Megamacro",
  3713. height: math.unit(100, "miles")
  3714. },
  3715. ]
  3716. )
  3717. )
  3718. characterMakers.push(() => makeCharacter(
  3719. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3720. {
  3721. front: {
  3722. height: math.unit(5 + 5 / 12, "feet"),
  3723. weight: math.unit(75, "kg"),
  3724. name: "Front",
  3725. image: {
  3726. source: "./media/characters/natasha/front.svg",
  3727. extra: 859 / 824,
  3728. bottom: 23 / 879.6
  3729. }
  3730. },
  3731. frontNsfw: {
  3732. height: math.unit(5 + 5 / 12, "feet"),
  3733. weight: math.unit(75, "kg"),
  3734. name: "Front (NSFW)",
  3735. image: {
  3736. source: "./media/characters/natasha/front-nsfw.svg",
  3737. extra: 859 / 824,
  3738. bottom: 23 / 879.6
  3739. }
  3740. },
  3741. frontErect: {
  3742. height: math.unit(5 + 5 / 12, "feet"),
  3743. weight: math.unit(75, "kg"),
  3744. name: "Front (Erect)",
  3745. image: {
  3746. source: "./media/characters/natasha/front-erect.svg",
  3747. extra: 859 / 824,
  3748. bottom: 23 / 879.6
  3749. }
  3750. },
  3751. back: {
  3752. height: math.unit(5 + 5 / 12, "feet"),
  3753. weight: math.unit(75, "kg"),
  3754. name: "Back",
  3755. image: {
  3756. source: "./media/characters/natasha/back.svg",
  3757. extra: 887.9 / 852.6,
  3758. bottom: 9.7 / 896.4
  3759. }
  3760. },
  3761. backAlt: {
  3762. height: math.unit(5 + 5 / 12, "feet"),
  3763. weight: math.unit(75, "kg"),
  3764. name: "Back (Alt)",
  3765. image: {
  3766. source: "./media/characters/natasha/back-alt.svg",
  3767. extra: 1236.7 / 1192,
  3768. bottom: 22.3 / 1258.2
  3769. }
  3770. },
  3771. dick: {
  3772. height: math.unit(1.772, "feet"),
  3773. name: "Dick",
  3774. image: {
  3775. source: "./media/characters/natasha/dick.svg"
  3776. }
  3777. },
  3778. paw: {
  3779. height: math.unit(0.250, "meters"),
  3780. name: "Paw",
  3781. image: {
  3782. source: "./media/characters/natasha/paw.svg"
  3783. },
  3784. extraAttributes: {
  3785. "toeSize": {
  3786. name: "Toe Size",
  3787. power: 2,
  3788. type: "area",
  3789. base: math.unit(0.0024, "m^2")
  3790. },
  3791. "padSize": {
  3792. name: "Pad Size",
  3793. power: 2,
  3794. type: "area",
  3795. base: math.unit(0.00889, "m^2")
  3796. },
  3797. "pawSize": {
  3798. name: "Paw Size",
  3799. power: 2,
  3800. type: "area",
  3801. base: math.unit(0.023667, "m^2")
  3802. },
  3803. }
  3804. },
  3805. },
  3806. [
  3807. {
  3808. name: "Shortstack",
  3809. height: math.unit(3, "feet"),
  3810. default: true
  3811. },
  3812. {
  3813. name: "Normal",
  3814. height: math.unit(5 + 5 / 12, "feet")
  3815. },
  3816. {
  3817. name: "Large",
  3818. height: math.unit(12, "feet")
  3819. },
  3820. {
  3821. name: "Macro",
  3822. height: math.unit(100, "feet")
  3823. },
  3824. {
  3825. name: "Macro+",
  3826. height: math.unit(260, "feet")
  3827. },
  3828. {
  3829. name: "Macro++",
  3830. height: math.unit(1, "mile")
  3831. },
  3832. ]
  3833. ))
  3834. characterMakers.push(() => makeCharacter(
  3835. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3836. {
  3837. front: {
  3838. height: math.unit(6, "feet"),
  3839. weight: math.unit(75, "kg"),
  3840. name: "Front",
  3841. image: {
  3842. source: "./media/characters/malik/front.svg",
  3843. extra: 1750/1561,
  3844. bottom: 80/1830
  3845. },
  3846. extraAttributes: {
  3847. "toeSize": {
  3848. name: "Toe Size",
  3849. power: 2,
  3850. type: "area",
  3851. base: math.unit(0.0159, "m^2")
  3852. },
  3853. "pawSize": {
  3854. name: "Paw Size",
  3855. power: 2,
  3856. type: "area",
  3857. base: math.unit(0.09834, "m^2")
  3858. },
  3859. }
  3860. },
  3861. side: {
  3862. height: math.unit(6, "feet"),
  3863. weight: math.unit(75, "kg"),
  3864. name: "Side",
  3865. image: {
  3866. source: "./media/characters/malik/side.svg",
  3867. extra: 1802/1685,
  3868. bottom: 42/1844
  3869. },
  3870. extraAttributes: {
  3871. "toeSize": {
  3872. name: "Toe Size",
  3873. power: 2,
  3874. type: "area",
  3875. base: math.unit(0.0159, "m^2")
  3876. },
  3877. "pawSize": {
  3878. name: "Paw Size",
  3879. power: 2,
  3880. type: "area",
  3881. base: math.unit(0.09834, "m^2")
  3882. },
  3883. }
  3884. },
  3885. back: {
  3886. height: math.unit(6, "feet"),
  3887. weight: math.unit(75, "kg"),
  3888. name: "Back",
  3889. image: {
  3890. source: "./media/characters/malik/back.svg",
  3891. extra: 1803/1607,
  3892. bottom: 33/1836
  3893. },
  3894. extraAttributes: {
  3895. "toeSize": {
  3896. name: "Toe Size",
  3897. power: 2,
  3898. type: "area",
  3899. base: math.unit(0.0159, "m^2")
  3900. },
  3901. "pawSize": {
  3902. name: "Paw Size",
  3903. power: 2,
  3904. type: "area",
  3905. base: math.unit(0.09834, "m^2")
  3906. },
  3907. }
  3908. },
  3909. },
  3910. [
  3911. {
  3912. name: "Macro",
  3913. height: math.unit(156, "feet"),
  3914. default: true
  3915. },
  3916. {
  3917. name: "Macro+",
  3918. height: math.unit(1188, "feet")
  3919. },
  3920. ]
  3921. ))
  3922. characterMakers.push(() => makeCharacter(
  3923. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3924. {
  3925. front: {
  3926. height: math.unit(6, "feet"),
  3927. weight: math.unit(75, "kg"),
  3928. name: "Front",
  3929. image: {
  3930. source: "./media/characters/sefer/front.svg",
  3931. extra: 848 / 659,
  3932. bottom: 28.3 / 876.442
  3933. }
  3934. },
  3935. back: {
  3936. height: math.unit(6, "feet"),
  3937. weight: math.unit(75, "kg"),
  3938. name: "Back",
  3939. image: {
  3940. source: "./media/characters/sefer/back.svg",
  3941. extra: 864 / 695,
  3942. bottom: 10 / 871
  3943. }
  3944. },
  3945. frontDressed: {
  3946. height: math.unit(6, "feet"),
  3947. weight: math.unit(75, "kg"),
  3948. name: "Dressed",
  3949. image: {
  3950. source: "./media/characters/sefer/dressed.svg",
  3951. extra: 839 / 653,
  3952. bottom: 37.6 / 878
  3953. }
  3954. },
  3955. },
  3956. [
  3957. {
  3958. name: "Normal",
  3959. height: math.unit(6, "feet"),
  3960. default: true
  3961. },
  3962. {
  3963. name: "Big",
  3964. height: math.unit(8, "meters")
  3965. },
  3966. ]
  3967. ))
  3968. characterMakers.push(() => makeCharacter(
  3969. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3970. {
  3971. body: {
  3972. height: math.unit(2.2428, "meter"),
  3973. weight: math.unit(124.738, "kg"),
  3974. name: "Body",
  3975. image: {
  3976. extra: 1225 / 1050,
  3977. source: "./media/characters/north/front.svg"
  3978. }
  3979. }
  3980. },
  3981. [
  3982. {
  3983. name: "Micro",
  3984. height: math.unit(4, "inches")
  3985. },
  3986. {
  3987. name: "Macro",
  3988. height: math.unit(63, "meters")
  3989. },
  3990. {
  3991. name: "Megamacro",
  3992. height: math.unit(101, "miles"),
  3993. default: true
  3994. }
  3995. ]
  3996. ))
  3997. characterMakers.push(() => makeCharacter(
  3998. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3999. {
  4000. angled: {
  4001. height: math.unit(4, "meter"),
  4002. weight: math.unit(150, "kg"),
  4003. name: "Angled",
  4004. image: {
  4005. source: "./media/characters/talan/angled-sfw.svg",
  4006. bottom: 29 / 3734
  4007. }
  4008. },
  4009. angledNsfw: {
  4010. height: math.unit(4, "meter"),
  4011. weight: math.unit(150, "kg"),
  4012. name: "Angled (NSFW)",
  4013. image: {
  4014. source: "./media/characters/talan/angled-nsfw.svg",
  4015. bottom: 29 / 3734
  4016. }
  4017. },
  4018. frontNsfw: {
  4019. height: math.unit(4, "meter"),
  4020. weight: math.unit(150, "kg"),
  4021. name: "Front (NSFW)",
  4022. image: {
  4023. source: "./media/characters/talan/front-nsfw.svg",
  4024. bottom: 29 / 3734
  4025. }
  4026. },
  4027. sideNsfw: {
  4028. height: math.unit(4, "meter"),
  4029. weight: math.unit(150, "kg"),
  4030. name: "Side (NSFW)",
  4031. image: {
  4032. source: "./media/characters/talan/side-nsfw.svg",
  4033. bottom: 29 / 3734
  4034. }
  4035. },
  4036. back: {
  4037. height: math.unit(4, "meter"),
  4038. weight: math.unit(150, "kg"),
  4039. name: "Back",
  4040. image: {
  4041. source: "./media/characters/talan/back.svg"
  4042. }
  4043. },
  4044. dickBottom: {
  4045. height: math.unit(0.621, "meter"),
  4046. name: "Dick (Bottom)",
  4047. image: {
  4048. source: "./media/characters/talan/dick-bottom.svg"
  4049. }
  4050. },
  4051. dickTop: {
  4052. height: math.unit(0.621, "meter"),
  4053. name: "Dick (Top)",
  4054. image: {
  4055. source: "./media/characters/talan/dick-top.svg"
  4056. }
  4057. },
  4058. dickSide: {
  4059. height: math.unit(0.305, "meter"),
  4060. name: "Dick (Side)",
  4061. image: {
  4062. source: "./media/characters/talan/dick-side.svg"
  4063. }
  4064. },
  4065. dickFront: {
  4066. height: math.unit(0.305, "meter"),
  4067. name: "Dick (Front)",
  4068. image: {
  4069. source: "./media/characters/talan/dick-front.svg"
  4070. }
  4071. },
  4072. },
  4073. [
  4074. {
  4075. name: "Normal",
  4076. height: math.unit(4, "meters")
  4077. },
  4078. {
  4079. name: "Macro",
  4080. height: math.unit(100, "meters")
  4081. },
  4082. {
  4083. name: "Megamacro",
  4084. height: math.unit(2, "miles"),
  4085. default: true
  4086. },
  4087. {
  4088. name: "Gigamacro",
  4089. height: math.unit(5000, "miles")
  4090. },
  4091. {
  4092. name: "Teramacro",
  4093. height: math.unit(100, "parsecs")
  4094. }
  4095. ]
  4096. ))
  4097. characterMakers.push(() => makeCharacter(
  4098. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  4099. {
  4100. front: {
  4101. height: math.unit(2, "meter"),
  4102. weight: math.unit(90, "kg"),
  4103. name: "Front",
  4104. image: {
  4105. source: "./media/characters/gael'rathus/front.svg"
  4106. }
  4107. },
  4108. frontAlt: {
  4109. height: math.unit(2, "meter"),
  4110. weight: math.unit(90, "kg"),
  4111. name: "Front (alt)",
  4112. image: {
  4113. source: "./media/characters/gael'rathus/front-alt.svg"
  4114. }
  4115. },
  4116. frontAlt2: {
  4117. height: math.unit(2, "meter"),
  4118. weight: math.unit(90, "kg"),
  4119. name: "Front (alt 2)",
  4120. image: {
  4121. source: "./media/characters/gael'rathus/front-alt-2.svg"
  4122. }
  4123. }
  4124. },
  4125. [
  4126. {
  4127. name: "Normal",
  4128. height: math.unit(9, "feet"),
  4129. default: true
  4130. },
  4131. {
  4132. name: "Large",
  4133. height: math.unit(25, "feet")
  4134. },
  4135. {
  4136. name: "Macro",
  4137. height: math.unit(0.25, "miles")
  4138. },
  4139. {
  4140. name: "Megamacro",
  4141. height: math.unit(10, "miles")
  4142. }
  4143. ]
  4144. ))
  4145. characterMakers.push(() => makeCharacter(
  4146. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  4147. {
  4148. side: {
  4149. height: math.unit(2, "meter"),
  4150. weight: math.unit(140, "kg"),
  4151. name: "Side",
  4152. image: {
  4153. source: "./media/characters/sosha/side.svg",
  4154. extra: 1170/1006,
  4155. bottom: 94/1264
  4156. }
  4157. },
  4158. maw: {
  4159. height: math.unit(2.87, "feet"),
  4160. name: "Maw",
  4161. image: {
  4162. source: "./media/characters/sosha/maw.svg",
  4163. extra: 966/865,
  4164. bottom: 0/966
  4165. }
  4166. },
  4167. cooch: {
  4168. height: math.unit(5.6, "feet"),
  4169. name: "Cooch",
  4170. image: {
  4171. source: "./media/characters/sosha/cooch.svg"
  4172. }
  4173. },
  4174. },
  4175. [
  4176. {
  4177. name: "Normal",
  4178. height: math.unit(12, "feet"),
  4179. default: true
  4180. }
  4181. ]
  4182. ))
  4183. characterMakers.push(() => makeCharacter(
  4184. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4185. {
  4186. side: {
  4187. height: math.unit(5 + 5 / 12, "feet"),
  4188. weight: math.unit(170, "kg"),
  4189. name: "Side",
  4190. image: {
  4191. source: "./media/characters/runnola/side.svg",
  4192. extra: 741 / 448,
  4193. bottom: 0.05
  4194. }
  4195. },
  4196. },
  4197. [
  4198. {
  4199. name: "Small",
  4200. height: math.unit(3, "feet")
  4201. },
  4202. {
  4203. name: "Normal",
  4204. height: math.unit(5 + 5 / 12, "feet"),
  4205. default: true
  4206. },
  4207. {
  4208. name: "Big",
  4209. height: math.unit(10, "feet")
  4210. },
  4211. ]
  4212. ))
  4213. characterMakers.push(() => makeCharacter(
  4214. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4215. {
  4216. front: {
  4217. height: math.unit(2, "meter"),
  4218. weight: math.unit(50, "kg"),
  4219. name: "Front",
  4220. image: {
  4221. source: "./media/characters/kurribird/front.svg",
  4222. bottom: 0.015
  4223. }
  4224. },
  4225. frontAlt: {
  4226. height: math.unit(1.5, "meter"),
  4227. weight: math.unit(50, "kg"),
  4228. name: "Front (Alt)",
  4229. image: {
  4230. source: "./media/characters/kurribird/front-alt.svg",
  4231. extra: 1.45
  4232. }
  4233. },
  4234. },
  4235. [
  4236. {
  4237. name: "Normal",
  4238. height: math.unit(7, "feet")
  4239. },
  4240. {
  4241. name: "Big",
  4242. height: math.unit(12, "feet"),
  4243. default: true
  4244. },
  4245. {
  4246. name: "Macro",
  4247. height: math.unit(1500, "feet")
  4248. },
  4249. {
  4250. name: "Megamacro",
  4251. height: math.unit(2, "miles")
  4252. }
  4253. ]
  4254. ))
  4255. characterMakers.push(() => makeCharacter(
  4256. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4257. {
  4258. front: {
  4259. height: math.unit(2, "meter"),
  4260. weight: math.unit(80, "kg"),
  4261. name: "Front",
  4262. image: {
  4263. source: "./media/characters/elbial/front.svg",
  4264. extra: 1643 / 1556,
  4265. bottom: 60.2 / 1696
  4266. }
  4267. },
  4268. side: {
  4269. height: math.unit(2, "meter"),
  4270. weight: math.unit(80, "kg"),
  4271. name: "Side",
  4272. image: {
  4273. source: "./media/characters/elbial/side.svg",
  4274. extra: 1601/1528,
  4275. bottom: 97/1698
  4276. }
  4277. },
  4278. back: {
  4279. height: math.unit(2, "meter"),
  4280. weight: math.unit(80, "kg"),
  4281. name: "Back",
  4282. image: {
  4283. source: "./media/characters/elbial/back.svg",
  4284. extra: 1653/1569,
  4285. bottom: 20/1673
  4286. }
  4287. },
  4288. frontDressed: {
  4289. height: math.unit(2, "meter"),
  4290. weight: math.unit(80, "kg"),
  4291. name: "Front (Dressed)",
  4292. image: {
  4293. source: "./media/characters/elbial/front-dressed.svg",
  4294. extra: 1638/1569,
  4295. bottom: 70/1708
  4296. }
  4297. },
  4298. genitals: {
  4299. height: math.unit(2 / 3.367, "meter"),
  4300. name: "Genitals",
  4301. image: {
  4302. source: "./media/characters/elbial/genitals.svg"
  4303. }
  4304. },
  4305. },
  4306. [
  4307. {
  4308. name: "Large",
  4309. height: math.unit(100, "feet")
  4310. },
  4311. {
  4312. name: "Macro",
  4313. height: math.unit(500, "feet"),
  4314. default: true
  4315. },
  4316. {
  4317. name: "Megamacro",
  4318. height: math.unit(10, "miles")
  4319. },
  4320. {
  4321. name: "Gigamacro",
  4322. height: math.unit(25000, "miles")
  4323. },
  4324. {
  4325. name: "Full-Size",
  4326. height: math.unit(8000000, "gigaparsecs")
  4327. }
  4328. ]
  4329. ))
  4330. characterMakers.push(() => makeCharacter(
  4331. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4332. {
  4333. front: {
  4334. height: math.unit(2, "meter"),
  4335. weight: math.unit(60, "kg"),
  4336. name: "Front",
  4337. image: {
  4338. source: "./media/characters/noah/front.svg"
  4339. }
  4340. },
  4341. talons: {
  4342. height: math.unit(0.315, "meter"),
  4343. name: "Talons",
  4344. image: {
  4345. source: "./media/characters/noah/talons.svg"
  4346. }
  4347. }
  4348. },
  4349. [
  4350. {
  4351. name: "Large",
  4352. height: math.unit(50, "feet")
  4353. },
  4354. {
  4355. name: "Macro",
  4356. height: math.unit(750, "feet"),
  4357. default: true
  4358. },
  4359. {
  4360. name: "Megamacro",
  4361. height: math.unit(50, "miles")
  4362. },
  4363. {
  4364. name: "Gigamacro",
  4365. height: math.unit(100000, "miles")
  4366. },
  4367. {
  4368. name: "Full-Size",
  4369. height: math.unit(3000000000, "miles")
  4370. }
  4371. ]
  4372. ))
  4373. characterMakers.push(() => makeCharacter(
  4374. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4375. {
  4376. front: {
  4377. height: math.unit(2, "meter"),
  4378. weight: math.unit(80, "kg"),
  4379. name: "Front",
  4380. image: {
  4381. source: "./media/characters/natalya/front.svg"
  4382. }
  4383. },
  4384. back: {
  4385. height: math.unit(2, "meter"),
  4386. weight: math.unit(80, "kg"),
  4387. name: "Back",
  4388. image: {
  4389. source: "./media/characters/natalya/back.svg"
  4390. }
  4391. }
  4392. },
  4393. [
  4394. {
  4395. name: "Normal",
  4396. height: math.unit(150, "feet"),
  4397. default: true
  4398. },
  4399. {
  4400. name: "Megamacro",
  4401. height: math.unit(5, "miles")
  4402. },
  4403. {
  4404. name: "Full-Size",
  4405. height: math.unit(600, "kiloparsecs")
  4406. }
  4407. ]
  4408. ))
  4409. characterMakers.push(() => makeCharacter(
  4410. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4411. {
  4412. front: {
  4413. height: math.unit(2, "meter"),
  4414. weight: math.unit(50, "kg"),
  4415. name: "Front",
  4416. image: {
  4417. source: "./media/characters/erestrebah/front.svg",
  4418. extra: 1262/1162,
  4419. bottom: 96/1358
  4420. }
  4421. },
  4422. back: {
  4423. height: math.unit(2, "meter"),
  4424. weight: math.unit(50, "kg"),
  4425. name: "Back",
  4426. image: {
  4427. source: "./media/characters/erestrebah/back.svg",
  4428. extra: 1257/1139,
  4429. bottom: 13/1270
  4430. }
  4431. },
  4432. wing: {
  4433. height: math.unit(2, "meter"),
  4434. weight: math.unit(50, "kg"),
  4435. name: "Wing",
  4436. image: {
  4437. source: "./media/characters/erestrebah/wing.svg",
  4438. extra: 1262/1162,
  4439. bottom: 96/1358
  4440. }
  4441. },
  4442. mouth: {
  4443. height: math.unit(0.39, "feet"),
  4444. name: "Mouth",
  4445. image: {
  4446. source: "./media/characters/erestrebah/mouth.svg"
  4447. }
  4448. }
  4449. },
  4450. [
  4451. {
  4452. name: "Normal",
  4453. height: math.unit(10, "feet")
  4454. },
  4455. {
  4456. name: "Large",
  4457. height: math.unit(50, "feet"),
  4458. default: true
  4459. },
  4460. {
  4461. name: "Macro",
  4462. height: math.unit(300, "feet")
  4463. },
  4464. {
  4465. name: "Macro+",
  4466. height: math.unit(750, "feet")
  4467. },
  4468. {
  4469. name: "Megamacro",
  4470. height: math.unit(3, "miles")
  4471. }
  4472. ]
  4473. ))
  4474. characterMakers.push(() => makeCharacter(
  4475. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4476. {
  4477. front: {
  4478. height: math.unit(2, "meter"),
  4479. weight: math.unit(80, "kg"),
  4480. name: "Front",
  4481. image: {
  4482. source: "./media/characters/jennifer/front.svg",
  4483. bottom: 0.11,
  4484. extra: 1.16
  4485. }
  4486. },
  4487. frontAlt: {
  4488. height: math.unit(2, "meter"),
  4489. weight: math.unit(80, "kg"),
  4490. name: "Front (Alt)",
  4491. image: {
  4492. source: "./media/characters/jennifer/front-alt.svg"
  4493. }
  4494. }
  4495. },
  4496. [
  4497. {
  4498. name: "Canon Height",
  4499. height: math.unit(120, "feet"),
  4500. default: true
  4501. },
  4502. {
  4503. name: "Macro+",
  4504. height: math.unit(300, "feet")
  4505. },
  4506. {
  4507. name: "Megamacro",
  4508. height: math.unit(20000, "feet")
  4509. }
  4510. ]
  4511. ))
  4512. characterMakers.push(() => makeCharacter(
  4513. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4514. {
  4515. front: {
  4516. height: math.unit(2, "meter"),
  4517. weight: math.unit(50, "kg"),
  4518. name: "Front",
  4519. image: {
  4520. source: "./media/characters/kalista/front.svg",
  4521. extra: 1314/1145,
  4522. bottom: 101/1415
  4523. }
  4524. },
  4525. back: {
  4526. height: math.unit(2, "meter"),
  4527. weight: math.unit(50, "kg"),
  4528. name: "Back",
  4529. image: {
  4530. source: "./media/characters/kalista/back.svg",
  4531. extra: 1366 / 1156,
  4532. bottom: 33.9 / 1362.78
  4533. }
  4534. }
  4535. },
  4536. [
  4537. {
  4538. name: "Uncomfortably Small",
  4539. height: math.unit(10, "feet")
  4540. },
  4541. {
  4542. name: "Small",
  4543. height: math.unit(30, "feet")
  4544. },
  4545. {
  4546. name: "Macro",
  4547. height: math.unit(100, "feet"),
  4548. default: true
  4549. },
  4550. {
  4551. name: "Macro+",
  4552. height: math.unit(2000, "feet")
  4553. },
  4554. {
  4555. name: "True Form",
  4556. height: math.unit(8924, "miles")
  4557. }
  4558. ]
  4559. ))
  4560. characterMakers.push(() => makeCharacter(
  4561. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4562. {
  4563. front: {
  4564. height: math.unit(2, "meter"),
  4565. weight: math.unit(120, "kg"),
  4566. name: "Front",
  4567. image: {
  4568. source: "./media/characters/ggv/front.svg"
  4569. }
  4570. },
  4571. side: {
  4572. height: math.unit(2, "meter"),
  4573. weight: math.unit(120, "kg"),
  4574. name: "Side",
  4575. image: {
  4576. source: "./media/characters/ggv/side.svg"
  4577. }
  4578. }
  4579. },
  4580. [
  4581. {
  4582. name: "Extremely Puny",
  4583. height: math.unit(9 + 5 / 12, "feet")
  4584. },
  4585. {
  4586. name: "Horribly Small",
  4587. height: math.unit(47.7, "miles"),
  4588. default: true
  4589. },
  4590. {
  4591. name: "Reasonably Sized",
  4592. height: math.unit(25000, "parsecs")
  4593. },
  4594. {
  4595. name: "Slightly Uncompressed",
  4596. height: math.unit(7.77e31, "parsecs")
  4597. },
  4598. {
  4599. name: "Omniversal",
  4600. height: math.unit(1e300, "meters")
  4601. },
  4602. ]
  4603. ))
  4604. characterMakers.push(() => makeCharacter(
  4605. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4606. {
  4607. front: {
  4608. height: math.unit(2, "meter"),
  4609. weight: math.unit(75, "lb"),
  4610. name: "Front",
  4611. image: {
  4612. source: "./media/characters/napalm/front.svg"
  4613. }
  4614. },
  4615. back: {
  4616. height: math.unit(2, "meter"),
  4617. weight: math.unit(75, "lb"),
  4618. name: "Back",
  4619. image: {
  4620. source: "./media/characters/napalm/back.svg"
  4621. }
  4622. }
  4623. },
  4624. [
  4625. {
  4626. name: "Standard",
  4627. height: math.unit(55, "feet"),
  4628. default: true
  4629. }
  4630. ]
  4631. ))
  4632. characterMakers.push(() => makeCharacter(
  4633. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4634. {
  4635. front: {
  4636. height: math.unit(7 + 5 / 6, "feet"),
  4637. weight: math.unit(325, "lb"),
  4638. name: "Front",
  4639. image: {
  4640. source: "./media/characters/asana/front.svg",
  4641. extra: 1133 / 1060,
  4642. bottom: 15.2 / 1148.6
  4643. }
  4644. },
  4645. back: {
  4646. height: math.unit(7 + 5 / 6, "feet"),
  4647. weight: math.unit(325, "lb"),
  4648. name: "Back",
  4649. image: {
  4650. source: "./media/characters/asana/back.svg",
  4651. extra: 1114 / 1043,
  4652. bottom: 5 / 1120
  4653. }
  4654. },
  4655. dressedDark: {
  4656. height: math.unit(7 + 5 / 6, "feet"),
  4657. weight: math.unit(325, "lb"),
  4658. name: "Dressed (Dark)",
  4659. image: {
  4660. source: "./media/characters/asana/dressed-dark.svg",
  4661. extra: 1133 / 1060,
  4662. bottom: 15.2 / 1148.6
  4663. }
  4664. },
  4665. dressedLight: {
  4666. height: math.unit(7 + 5 / 6, "feet"),
  4667. weight: math.unit(325, "lb"),
  4668. name: "Dressed (Light)",
  4669. image: {
  4670. source: "./media/characters/asana/dressed-light.svg",
  4671. extra: 1133 / 1060,
  4672. bottom: 15.2 / 1148.6
  4673. }
  4674. },
  4675. },
  4676. [
  4677. {
  4678. name: "Standard",
  4679. height: math.unit(7 + 5 / 6, "feet"),
  4680. default: true
  4681. },
  4682. {
  4683. name: "Large",
  4684. height: math.unit(10, "meters")
  4685. },
  4686. {
  4687. name: "Macro",
  4688. height: math.unit(2500, "meters")
  4689. },
  4690. {
  4691. name: "Megamacro",
  4692. height: math.unit(5e6, "meters")
  4693. },
  4694. {
  4695. name: "Examacro",
  4696. height: math.unit(5e12, "lightyears")
  4697. },
  4698. {
  4699. name: "Max Size",
  4700. height: math.unit(1e31, "lightyears")
  4701. }
  4702. ]
  4703. ))
  4704. characterMakers.push(() => makeCharacter(
  4705. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4706. {
  4707. front: {
  4708. height: math.unit(2, "meter"),
  4709. weight: math.unit(60, "kg"),
  4710. name: "Front",
  4711. image: {
  4712. source: "./media/characters/ebony/front.svg",
  4713. bottom: 0.03,
  4714. extra: 1045 / 810 + 0.03
  4715. }
  4716. },
  4717. side: {
  4718. height: math.unit(2, "meter"),
  4719. weight: math.unit(60, "kg"),
  4720. name: "Side",
  4721. image: {
  4722. source: "./media/characters/ebony/side.svg",
  4723. bottom: 0.03,
  4724. extra: 1045 / 810 + 0.03
  4725. }
  4726. },
  4727. back: {
  4728. height: math.unit(2, "meter"),
  4729. weight: math.unit(60, "kg"),
  4730. name: "Back",
  4731. image: {
  4732. source: "./media/characters/ebony/back.svg",
  4733. bottom: 0.01,
  4734. extra: 1045 / 810 + 0.01
  4735. }
  4736. },
  4737. },
  4738. [
  4739. // TODO check why I did this lol
  4740. {
  4741. name: "Standard",
  4742. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4743. default: true
  4744. },
  4745. {
  4746. name: "Macro",
  4747. height: math.unit(200, "feet")
  4748. },
  4749. {
  4750. name: "Gigamacro",
  4751. height: math.unit(13000, "km")
  4752. }
  4753. ]
  4754. ))
  4755. characterMakers.push(() => makeCharacter(
  4756. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4757. {
  4758. front: {
  4759. height: math.unit(6, "feet"),
  4760. weight: math.unit(175, "lb"),
  4761. name: "Front",
  4762. image: {
  4763. source: "./media/characters/mountain/front.svg",
  4764. extra: 972 / 955,
  4765. bottom: 64 / 1036.6
  4766. }
  4767. },
  4768. back: {
  4769. height: math.unit(6, "feet"),
  4770. weight: math.unit(175, "lb"),
  4771. name: "Back",
  4772. image: {
  4773. source: "./media/characters/mountain/back.svg",
  4774. extra: 970 / 950,
  4775. bottom: 28.25 / 999
  4776. }
  4777. },
  4778. },
  4779. [
  4780. {
  4781. name: "Large",
  4782. height: math.unit(20, "meters")
  4783. },
  4784. {
  4785. name: "Macro",
  4786. height: math.unit(300, "meters")
  4787. },
  4788. {
  4789. name: "Gigamacro",
  4790. height: math.unit(10000, "km"),
  4791. default: true
  4792. },
  4793. {
  4794. name: "Examacro",
  4795. height: math.unit(10e9, "lightyears")
  4796. }
  4797. ]
  4798. ))
  4799. characterMakers.push(() => makeCharacter(
  4800. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4801. {
  4802. front: {
  4803. height: math.unit(8, "feet"),
  4804. weight: math.unit(500, "lb"),
  4805. name: "Front",
  4806. image: {
  4807. source: "./media/characters/rick/front.svg"
  4808. }
  4809. }
  4810. },
  4811. [
  4812. {
  4813. name: "Normal",
  4814. height: math.unit(8, "feet"),
  4815. default: true
  4816. },
  4817. {
  4818. name: "Macro",
  4819. height: math.unit(5, "km")
  4820. }
  4821. ]
  4822. ))
  4823. characterMakers.push(() => makeCharacter(
  4824. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4825. {
  4826. front: {
  4827. height: math.unit(8, "feet"),
  4828. weight: math.unit(120, "lb"),
  4829. name: "Front",
  4830. image: {
  4831. source: "./media/characters/ona/front.svg"
  4832. }
  4833. },
  4834. frontAlt: {
  4835. height: math.unit(8, "feet"),
  4836. weight: math.unit(120, "lb"),
  4837. name: "Front (Alt)",
  4838. image: {
  4839. source: "./media/characters/ona/front-alt.svg"
  4840. }
  4841. },
  4842. back: {
  4843. height: math.unit(8, "feet"),
  4844. weight: math.unit(120, "lb"),
  4845. name: "Back",
  4846. image: {
  4847. source: "./media/characters/ona/back.svg"
  4848. }
  4849. },
  4850. foot: {
  4851. height: math.unit(1.1, "feet"),
  4852. name: "Foot",
  4853. image: {
  4854. source: "./media/characters/ona/foot.svg"
  4855. }
  4856. }
  4857. },
  4858. [
  4859. {
  4860. name: "Megamacro",
  4861. height: math.unit(70, "km"),
  4862. default: true
  4863. },
  4864. {
  4865. name: "Gigamacro",
  4866. height: math.unit(681818, "miles")
  4867. },
  4868. {
  4869. name: "Examacro",
  4870. height: math.unit(3800000, "lightyears")
  4871. },
  4872. ]
  4873. ))
  4874. characterMakers.push(() => makeCharacter(
  4875. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4876. {
  4877. front: {
  4878. height: math.unit(12, "feet"),
  4879. weight: math.unit(3000, "lb"),
  4880. name: "Front",
  4881. image: {
  4882. source: "./media/characters/mech/front.svg",
  4883. extra: 2900 / 2770,
  4884. bottom: 110 / 3010
  4885. }
  4886. },
  4887. back: {
  4888. height: math.unit(12, "feet"),
  4889. weight: math.unit(3000, "lb"),
  4890. name: "Back",
  4891. image: {
  4892. source: "./media/characters/mech/back.svg",
  4893. extra: 3011 / 2890,
  4894. bottom: 94 / 3105
  4895. }
  4896. },
  4897. maw: {
  4898. height: math.unit(3.07, "feet"),
  4899. name: "Maw",
  4900. image: {
  4901. source: "./media/characters/mech/maw.svg"
  4902. }
  4903. },
  4904. head: {
  4905. height: math.unit(3.07, "feet"),
  4906. name: "Head",
  4907. image: {
  4908. source: "./media/characters/mech/head.svg"
  4909. }
  4910. },
  4911. dick: {
  4912. height: math.unit(1.43, "feet"),
  4913. name: "Dick",
  4914. image: {
  4915. source: "./media/characters/mech/dick.svg"
  4916. }
  4917. },
  4918. },
  4919. [
  4920. {
  4921. name: "Normal",
  4922. height: math.unit(12, "feet")
  4923. },
  4924. {
  4925. name: "Macro",
  4926. height: math.unit(300, "feet"),
  4927. default: true
  4928. },
  4929. {
  4930. name: "Macro+",
  4931. height: math.unit(1500, "feet")
  4932. },
  4933. ]
  4934. ))
  4935. characterMakers.push(() => makeCharacter(
  4936. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4937. {
  4938. front: {
  4939. height: math.unit(1.3, "meter"),
  4940. weight: math.unit(30, "kg"),
  4941. name: "Front",
  4942. image: {
  4943. source: "./media/characters/gregory/front.svg",
  4944. }
  4945. }
  4946. },
  4947. [
  4948. {
  4949. name: "Normal",
  4950. height: math.unit(1.3, "meter"),
  4951. default: true
  4952. },
  4953. {
  4954. name: "Macro",
  4955. height: math.unit(20, "meter")
  4956. }
  4957. ]
  4958. ))
  4959. characterMakers.push(() => makeCharacter(
  4960. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4961. {
  4962. front: {
  4963. height: math.unit(2.8, "meter"),
  4964. weight: math.unit(200, "kg"),
  4965. name: "Front",
  4966. image: {
  4967. source: "./media/characters/elory/front.svg",
  4968. }
  4969. }
  4970. },
  4971. [
  4972. {
  4973. name: "Normal",
  4974. height: math.unit(2.8, "meter"),
  4975. default: true
  4976. },
  4977. {
  4978. name: "Macro",
  4979. height: math.unit(38, "meter")
  4980. }
  4981. ]
  4982. ))
  4983. characterMakers.push(() => makeCharacter(
  4984. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4985. {
  4986. front: {
  4987. height: math.unit(470, "feet"),
  4988. weight: math.unit(924, "tons"),
  4989. name: "Front",
  4990. image: {
  4991. source: "./media/characters/angelpatamon/front.svg",
  4992. }
  4993. }
  4994. },
  4995. [
  4996. {
  4997. name: "Normal",
  4998. height: math.unit(470, "feet"),
  4999. default: true
  5000. },
  5001. {
  5002. name: "Deity Size I",
  5003. height: math.unit(28651.2, "km")
  5004. },
  5005. {
  5006. name: "Deity Size II",
  5007. height: math.unit(171907.2, "km")
  5008. }
  5009. ]
  5010. ))
  5011. characterMakers.push(() => makeCharacter(
  5012. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  5013. {
  5014. side: {
  5015. height: math.unit(7.2, "meter"),
  5016. weight: math.unit(8.2, "tons"),
  5017. name: "Side",
  5018. image: {
  5019. source: "./media/characters/cryae/side.svg",
  5020. extra: 3500 / 1500
  5021. }
  5022. }
  5023. },
  5024. [
  5025. {
  5026. name: "Normal",
  5027. height: math.unit(7.2, "meter"),
  5028. default: true
  5029. }
  5030. ]
  5031. ))
  5032. characterMakers.push(() => makeCharacter(
  5033. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  5034. {
  5035. front: {
  5036. height: math.unit(6, "feet"),
  5037. weight: math.unit(175, "lb"),
  5038. name: "Front",
  5039. image: {
  5040. source: "./media/characters/xera/front.svg",
  5041. extra: 2377 / 1972,
  5042. bottom: 75.5 / 2452
  5043. }
  5044. },
  5045. side: {
  5046. height: math.unit(6, "feet"),
  5047. weight: math.unit(175, "lb"),
  5048. name: "Side",
  5049. image: {
  5050. source: "./media/characters/xera/side.svg",
  5051. extra: 2345 / 2019,
  5052. bottom: 39.7 / 2384
  5053. }
  5054. },
  5055. back: {
  5056. height: math.unit(6, "feet"),
  5057. weight: math.unit(175, "lb"),
  5058. name: "Back",
  5059. image: {
  5060. source: "./media/characters/xera/back.svg",
  5061. extra: 2095 / 1984,
  5062. bottom: 67 / 2166
  5063. }
  5064. },
  5065. },
  5066. [
  5067. {
  5068. name: "Small",
  5069. height: math.unit(10, "feet")
  5070. },
  5071. {
  5072. name: "Macro",
  5073. height: math.unit(500, "meters"),
  5074. default: true
  5075. },
  5076. {
  5077. name: "Macro+",
  5078. height: math.unit(10, "km")
  5079. },
  5080. {
  5081. name: "Gigamacro",
  5082. height: math.unit(25000, "km")
  5083. },
  5084. {
  5085. name: "Teramacro",
  5086. height: math.unit(3e6, "km")
  5087. }
  5088. ]
  5089. ))
  5090. characterMakers.push(() => makeCharacter(
  5091. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  5092. {
  5093. front: {
  5094. height: math.unit(6, "feet"),
  5095. weight: math.unit(175, "lb"),
  5096. name: "Front",
  5097. image: {
  5098. source: "./media/characters/nebula/front.svg",
  5099. extra: 2566 / 2362,
  5100. bottom: 81 / 2644
  5101. }
  5102. }
  5103. },
  5104. [
  5105. {
  5106. name: "Small",
  5107. height: math.unit(4.5, "meters")
  5108. },
  5109. {
  5110. name: "Macro",
  5111. height: math.unit(1500, "meters"),
  5112. default: true
  5113. },
  5114. {
  5115. name: "Megamacro",
  5116. height: math.unit(150, "km")
  5117. },
  5118. {
  5119. name: "Gigamacro",
  5120. height: math.unit(27000, "km")
  5121. }
  5122. ]
  5123. ))
  5124. characterMakers.push(() => makeCharacter(
  5125. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  5126. {
  5127. front: {
  5128. height: math.unit(6, "feet"),
  5129. weight: math.unit(225, "lb"),
  5130. name: "Front",
  5131. image: {
  5132. source: "./media/characters/abysgar/front.svg",
  5133. extra: 1739/1614,
  5134. bottom: 71/1810
  5135. }
  5136. },
  5137. frontNsfw: {
  5138. height: math.unit(6, "feet"),
  5139. weight: math.unit(225, "lb"),
  5140. name: "Front (NSFW)",
  5141. image: {
  5142. source: "./media/characters/abysgar/front-nsfw.svg",
  5143. extra: 1739/1614,
  5144. bottom: 71/1810
  5145. }
  5146. },
  5147. back: {
  5148. height: math.unit(4.6, "feet"),
  5149. weight: math.unit(225, "lb"),
  5150. name: "Back",
  5151. image: {
  5152. source: "./media/characters/abysgar/back.svg",
  5153. extra: 1384/1327,
  5154. bottom: 0/1384
  5155. }
  5156. },
  5157. head: {
  5158. height: math.unit(1.25, "feet"),
  5159. name: "Head",
  5160. image: {
  5161. source: "./media/characters/abysgar/head.svg",
  5162. extra: 669/569,
  5163. bottom: 0/669
  5164. }
  5165. },
  5166. },
  5167. [
  5168. {
  5169. name: "Small",
  5170. height: math.unit(4.5, "meters")
  5171. },
  5172. {
  5173. name: "Macro",
  5174. height: math.unit(1250, "meters"),
  5175. default: true
  5176. },
  5177. {
  5178. name: "Megamacro",
  5179. height: math.unit(125, "km")
  5180. },
  5181. {
  5182. name: "Gigamacro",
  5183. height: math.unit(26000, "km")
  5184. }
  5185. ]
  5186. ))
  5187. characterMakers.push(() => makeCharacter(
  5188. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5189. {
  5190. front: {
  5191. height: math.unit(6, "feet"),
  5192. weight: math.unit(180, "lb"),
  5193. name: "Front",
  5194. image: {
  5195. source: "./media/characters/yakuz/front.svg"
  5196. }
  5197. }
  5198. },
  5199. [
  5200. {
  5201. name: "Small",
  5202. height: math.unit(5, "meters")
  5203. },
  5204. {
  5205. name: "Macro",
  5206. height: math.unit(1500, "meters"),
  5207. default: true
  5208. },
  5209. {
  5210. name: "Megamacro",
  5211. height: math.unit(200, "km")
  5212. },
  5213. {
  5214. name: "Gigamacro",
  5215. height: math.unit(100000, "km")
  5216. }
  5217. ]
  5218. ))
  5219. characterMakers.push(() => makeCharacter(
  5220. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5221. {
  5222. front: {
  5223. height: math.unit(6, "feet"),
  5224. weight: math.unit(175, "lb"),
  5225. name: "Front",
  5226. image: {
  5227. source: "./media/characters/mirova/front.svg",
  5228. extra: 3334 / 3071,
  5229. bottom: 42 / 3375.6
  5230. }
  5231. }
  5232. },
  5233. [
  5234. {
  5235. name: "Small",
  5236. height: math.unit(5, "meters")
  5237. },
  5238. {
  5239. name: "Macro",
  5240. height: math.unit(900, "meters"),
  5241. default: true
  5242. },
  5243. {
  5244. name: "Megamacro",
  5245. height: math.unit(135, "km")
  5246. },
  5247. {
  5248. name: "Gigamacro",
  5249. height: math.unit(20000, "km")
  5250. }
  5251. ]
  5252. ))
  5253. characterMakers.push(() => makeCharacter(
  5254. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5255. {
  5256. side: {
  5257. height: math.unit(28.35, "feet"),
  5258. weight: math.unit(99.75, "tons"),
  5259. name: "Side",
  5260. image: {
  5261. source: "./media/characters/asana-mech/side.svg",
  5262. extra: 923 / 699,
  5263. bottom: 50 / 975
  5264. }
  5265. },
  5266. chaingun: {
  5267. height: math.unit(7, "feet"),
  5268. weight: math.unit(2400, "lb"),
  5269. name: "Chaingun",
  5270. image: {
  5271. source: "./media/characters/asana-mech/chaingun.svg"
  5272. }
  5273. },
  5274. laser: {
  5275. height: math.unit(7.12, "feet"),
  5276. weight: math.unit(2000, "lb"),
  5277. name: "Laser",
  5278. image: {
  5279. source: "./media/characters/asana-mech/laser.svg"
  5280. }
  5281. },
  5282. },
  5283. [
  5284. {
  5285. name: "Normal",
  5286. height: math.unit(28.35, "feet"),
  5287. default: true
  5288. },
  5289. {
  5290. name: "Macro",
  5291. height: math.unit(2500, "feet")
  5292. },
  5293. {
  5294. name: "Megamacro",
  5295. height: math.unit(25, "miles")
  5296. },
  5297. {
  5298. name: "Examacro",
  5299. height: math.unit(6e8, "lightyears")
  5300. },
  5301. ]
  5302. ))
  5303. characterMakers.push(() => makeCharacter(
  5304. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5305. {
  5306. front: {
  5307. height: math.unit(5, "meters"),
  5308. weight: math.unit(1000, "kg"),
  5309. name: "Front",
  5310. image: {
  5311. source: "./media/characters/asche/front.svg",
  5312. extra: 1258 / 1190,
  5313. bottom: 47 / 1305
  5314. }
  5315. },
  5316. frontUnderwear: {
  5317. height: math.unit(5, "meters"),
  5318. weight: math.unit(1000, "kg"),
  5319. name: "Front (Underwear)",
  5320. image: {
  5321. source: "./media/characters/asche/front-underwear.svg",
  5322. extra: 1258 / 1190,
  5323. bottom: 47 / 1305
  5324. }
  5325. },
  5326. frontDressed: {
  5327. height: math.unit(5, "meters"),
  5328. weight: math.unit(1000, "kg"),
  5329. name: "Front (Dressed)",
  5330. image: {
  5331. source: "./media/characters/asche/front-dressed.svg",
  5332. extra: 1258 / 1190,
  5333. bottom: 47 / 1305
  5334. }
  5335. },
  5336. frontArmor: {
  5337. height: math.unit(5, "meters"),
  5338. weight: math.unit(1000, "kg"),
  5339. name: "Front (Armored)",
  5340. image: {
  5341. source: "./media/characters/asche/front-armored.svg",
  5342. extra: 1374 / 1308,
  5343. bottom: 23 / 1397
  5344. }
  5345. },
  5346. mp724: {
  5347. height: math.unit(0.96, "meters"),
  5348. weight: math.unit(38, "kg"),
  5349. name: "H&K MP724",
  5350. image: {
  5351. source: "./media/characters/asche/h&k-mp724.svg"
  5352. }
  5353. },
  5354. side: {
  5355. height: math.unit(5, "meters"),
  5356. weight: math.unit(1000, "kg"),
  5357. name: "Side",
  5358. image: {
  5359. source: "./media/characters/asche/side.svg",
  5360. extra: 1717 / 1609,
  5361. bottom: 0.005
  5362. }
  5363. },
  5364. back: {
  5365. height: math.unit(5, "meters"),
  5366. weight: math.unit(1000, "kg"),
  5367. name: "Back",
  5368. image: {
  5369. source: "./media/characters/asche/back.svg",
  5370. extra: 1570 / 1501
  5371. }
  5372. },
  5373. },
  5374. [
  5375. {
  5376. name: "DEFCON 5",
  5377. height: math.unit(5, "meters")
  5378. },
  5379. {
  5380. name: "DEFCON 4",
  5381. height: math.unit(500, "meters"),
  5382. default: true
  5383. },
  5384. {
  5385. name: "DEFCON 3",
  5386. height: math.unit(5, "km")
  5387. },
  5388. {
  5389. name: "DEFCON 2",
  5390. height: math.unit(500, "km")
  5391. },
  5392. {
  5393. name: "DEFCON 1",
  5394. height: math.unit(500000, "km")
  5395. },
  5396. {
  5397. name: "DEFCON 0",
  5398. height: math.unit(3, "gigaparsecs")
  5399. },
  5400. ]
  5401. ))
  5402. characterMakers.push(() => makeCharacter(
  5403. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5404. {
  5405. front: {
  5406. height: math.unit(7, "feet"),
  5407. weight: math.unit(92.7, "kg"),
  5408. name: "Front",
  5409. image: {
  5410. source: "./media/characters/gale/front.svg",
  5411. extra: 977/919,
  5412. bottom: 105/1082
  5413. }
  5414. },
  5415. side: {
  5416. height: math.unit(6.7, "feet"),
  5417. weight: math.unit(92.7, "kg"),
  5418. name: "Side",
  5419. image: {
  5420. source: "./media/characters/gale/side.svg",
  5421. extra: 978/922,
  5422. bottom: 140/1118
  5423. }
  5424. },
  5425. back: {
  5426. height: math.unit(7, "feet"),
  5427. weight: math.unit(92.7, "kg"),
  5428. name: "Back",
  5429. image: {
  5430. source: "./media/characters/gale/back.svg",
  5431. extra: 966/920,
  5432. bottom: 61/1027
  5433. }
  5434. },
  5435. maw: {
  5436. height: math.unit(2.23, "feet"),
  5437. name: "Maw",
  5438. image: {
  5439. source: "./media/characters/gale/maw.svg"
  5440. }
  5441. },
  5442. foot: {
  5443. height: math.unit(2.1, "feet"),
  5444. name: "Foot",
  5445. image: {
  5446. source: "./media/characters/gale/foot.svg"
  5447. }
  5448. },
  5449. },
  5450. [
  5451. {
  5452. name: "Normal",
  5453. height: math.unit(7, "feet")
  5454. },
  5455. {
  5456. name: "Macro",
  5457. height: math.unit(150, "feet"),
  5458. default: true
  5459. },
  5460. {
  5461. name: "Macro+",
  5462. height: math.unit(300, "feet")
  5463. },
  5464. ]
  5465. ))
  5466. characterMakers.push(() => makeCharacter(
  5467. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5468. {
  5469. front: {
  5470. height: math.unit(5 + 10/12, "feet"),
  5471. weight: math.unit(67, "kg"),
  5472. name: "Front",
  5473. image: {
  5474. source: "./media/characters/draylen/front.svg",
  5475. extra: 832/777,
  5476. bottom: 85/917
  5477. }
  5478. }
  5479. },
  5480. [
  5481. {
  5482. name: "Normal",
  5483. height: math.unit(5 + 10/12, "feet")
  5484. },
  5485. {
  5486. name: "Macro",
  5487. height: math.unit(150, "feet"),
  5488. default: true
  5489. }
  5490. ]
  5491. ))
  5492. characterMakers.push(() => makeCharacter(
  5493. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5494. {
  5495. front: {
  5496. height: math.unit(7 + 9 / 12, "feet"),
  5497. weight: math.unit(379, "lbs"),
  5498. name: "Front",
  5499. image: {
  5500. source: "./media/characters/chez/front.svg"
  5501. }
  5502. },
  5503. side: {
  5504. height: math.unit(7 + 9 / 12, "feet"),
  5505. weight: math.unit(379, "lbs"),
  5506. name: "Side",
  5507. image: {
  5508. source: "./media/characters/chez/side.svg"
  5509. }
  5510. }
  5511. },
  5512. [
  5513. {
  5514. name: "Normal",
  5515. height: math.unit(7 + 9 / 12, "feet"),
  5516. default: true
  5517. },
  5518. {
  5519. name: "God King",
  5520. height: math.unit(9750000, "meters")
  5521. }
  5522. ]
  5523. ))
  5524. characterMakers.push(() => makeCharacter(
  5525. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5526. {
  5527. front: {
  5528. height: math.unit(6, "feet"),
  5529. weight: math.unit(275, "lbs"),
  5530. name: "Front",
  5531. image: {
  5532. source: "./media/characters/kaylum/front.svg",
  5533. bottom: 0.01,
  5534. extra: 1166 / 1031
  5535. }
  5536. },
  5537. frontWingless: {
  5538. height: math.unit(6, "feet"),
  5539. weight: math.unit(275, "lbs"),
  5540. name: "Front (Wingless)",
  5541. image: {
  5542. source: "./media/characters/kaylum/front-wingless.svg",
  5543. bottom: 0.01,
  5544. extra: 1117 / 1031
  5545. }
  5546. }
  5547. },
  5548. [
  5549. {
  5550. name: "Normal",
  5551. height: math.unit(3.05, "meters")
  5552. },
  5553. {
  5554. name: "Master",
  5555. height: math.unit(5.5, "meters")
  5556. },
  5557. {
  5558. name: "Rampage",
  5559. height: math.unit(19, "meters")
  5560. },
  5561. {
  5562. name: "Macro Lite",
  5563. height: math.unit(37, "meters")
  5564. },
  5565. {
  5566. name: "Hyper Predator",
  5567. height: math.unit(61, "meters")
  5568. },
  5569. {
  5570. name: "Macro",
  5571. height: math.unit(138, "meters"),
  5572. default: true
  5573. }
  5574. ]
  5575. ))
  5576. characterMakers.push(() => makeCharacter(
  5577. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5578. {
  5579. front: {
  5580. height: math.unit(5 + 5 / 12, "feet"),
  5581. weight: math.unit(120, "lbs"),
  5582. name: "Front",
  5583. image: {
  5584. source: "./media/characters/geta/front.svg",
  5585. extra: 1003/933,
  5586. bottom: 21/1024
  5587. }
  5588. },
  5589. paw: {
  5590. height: math.unit(0.35, "feet"),
  5591. name: "Paw",
  5592. image: {
  5593. source: "./media/characters/geta/paw.svg"
  5594. }
  5595. },
  5596. },
  5597. [
  5598. {
  5599. name: "Micro",
  5600. height: math.unit(3, "inches"),
  5601. default: true
  5602. },
  5603. {
  5604. name: "Normal",
  5605. height: math.unit(5 + 5 / 12, "feet")
  5606. }
  5607. ]
  5608. ))
  5609. characterMakers.push(() => makeCharacter(
  5610. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5611. {
  5612. front: {
  5613. height: math.unit(6, "feet"),
  5614. weight: math.unit(300, "lbs"),
  5615. name: "Front",
  5616. image: {
  5617. source: "./media/characters/tyrnn/front.svg"
  5618. }
  5619. }
  5620. },
  5621. [
  5622. {
  5623. name: "Main Height",
  5624. height: math.unit(355, "feet"),
  5625. default: true
  5626. },
  5627. {
  5628. name: "Fave. Height",
  5629. height: math.unit(2400, "feet")
  5630. }
  5631. ]
  5632. ))
  5633. characterMakers.push(() => makeCharacter(
  5634. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5635. {
  5636. front: {
  5637. height: math.unit(6, "feet"),
  5638. weight: math.unit(300, "lbs"),
  5639. name: "Front",
  5640. image: {
  5641. source: "./media/characters/appledectomy/front.svg"
  5642. }
  5643. }
  5644. },
  5645. [
  5646. {
  5647. name: "Macro",
  5648. height: math.unit(2500, "feet")
  5649. },
  5650. {
  5651. name: "Megamacro",
  5652. height: math.unit(50, "miles"),
  5653. default: true
  5654. },
  5655. {
  5656. name: "Gigamacro",
  5657. height: math.unit(5000, "miles")
  5658. },
  5659. {
  5660. name: "Teramacro",
  5661. height: math.unit(250000, "miles")
  5662. },
  5663. ]
  5664. ))
  5665. characterMakers.push(() => makeCharacter(
  5666. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5667. {
  5668. front: {
  5669. height: math.unit(6, "feet"),
  5670. weight: math.unit(200, "lbs"),
  5671. name: "Front",
  5672. image: {
  5673. source: "./media/characters/vulpes/front.svg",
  5674. extra: 573 / 543,
  5675. bottom: 0.033
  5676. }
  5677. },
  5678. side: {
  5679. height: math.unit(6, "feet"),
  5680. weight: math.unit(200, "lbs"),
  5681. name: "Side",
  5682. image: {
  5683. source: "./media/characters/vulpes/side.svg",
  5684. extra: 577 / 549,
  5685. bottom: 11 / 588
  5686. }
  5687. },
  5688. back: {
  5689. height: math.unit(6, "feet"),
  5690. weight: math.unit(200, "lbs"),
  5691. name: "Back",
  5692. image: {
  5693. source: "./media/characters/vulpes/back.svg",
  5694. extra: 573 / 549,
  5695. bottom: 20 / 593
  5696. }
  5697. },
  5698. feet: {
  5699. height: math.unit(1.276, "feet"),
  5700. name: "Feet",
  5701. image: {
  5702. source: "./media/characters/vulpes/feet.svg"
  5703. }
  5704. },
  5705. maw: {
  5706. height: math.unit(1.18, "feet"),
  5707. name: "Maw",
  5708. image: {
  5709. source: "./media/characters/vulpes/maw.svg"
  5710. }
  5711. },
  5712. },
  5713. [
  5714. {
  5715. name: "Micro",
  5716. height: math.unit(2, "inches")
  5717. },
  5718. {
  5719. name: "Normal",
  5720. height: math.unit(6.3, "feet")
  5721. },
  5722. {
  5723. name: "Macro",
  5724. height: math.unit(850, "feet")
  5725. },
  5726. {
  5727. name: "Megamacro",
  5728. height: math.unit(7500, "feet"),
  5729. default: true
  5730. },
  5731. {
  5732. name: "Gigamacro",
  5733. height: math.unit(570000, "miles")
  5734. }
  5735. ]
  5736. ))
  5737. characterMakers.push(() => makeCharacter(
  5738. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5739. {
  5740. front: {
  5741. height: math.unit(6, "feet"),
  5742. weight: math.unit(210, "lbs"),
  5743. name: "Front",
  5744. image: {
  5745. source: "./media/characters/rain-fallen/front.svg"
  5746. }
  5747. },
  5748. side: {
  5749. height: math.unit(6, "feet"),
  5750. weight: math.unit(210, "lbs"),
  5751. name: "Side",
  5752. image: {
  5753. source: "./media/characters/rain-fallen/side.svg"
  5754. }
  5755. },
  5756. back: {
  5757. height: math.unit(6, "feet"),
  5758. weight: math.unit(210, "lbs"),
  5759. name: "Back",
  5760. image: {
  5761. source: "./media/characters/rain-fallen/back.svg"
  5762. }
  5763. },
  5764. feral: {
  5765. height: math.unit(9, "feet"),
  5766. weight: math.unit(700, "lbs"),
  5767. name: "Feral",
  5768. image: {
  5769. source: "./media/characters/rain-fallen/feral.svg"
  5770. }
  5771. },
  5772. },
  5773. [
  5774. {
  5775. name: "Meddling with Mortals",
  5776. height: math.unit(8 + 8/12, "feet")
  5777. },
  5778. {
  5779. name: "Normal",
  5780. height: math.unit(5, "meter")
  5781. },
  5782. {
  5783. name: "Macro",
  5784. height: math.unit(150, "meter"),
  5785. default: true
  5786. },
  5787. {
  5788. name: "Megamacro",
  5789. height: math.unit(278e6, "meter")
  5790. },
  5791. {
  5792. name: "Gigamacro",
  5793. height: math.unit(2e9, "meter")
  5794. },
  5795. {
  5796. name: "Teramacro",
  5797. height: math.unit(8e12, "meter")
  5798. },
  5799. {
  5800. name: "Devourer",
  5801. height: math.unit(14, "zettameters")
  5802. },
  5803. {
  5804. name: "Scarlet King",
  5805. height: math.unit(18, "yottameters")
  5806. },
  5807. {
  5808. name: "Void",
  5809. height: math.unit(1e88, "yottameters")
  5810. }
  5811. ]
  5812. ))
  5813. characterMakers.push(() => makeCharacter(
  5814. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5815. {
  5816. standing: {
  5817. height: math.unit(6, "feet"),
  5818. weight: math.unit(180, "lbs"),
  5819. name: "Standing",
  5820. image: {
  5821. source: "./media/characters/zaakira/standing.svg",
  5822. extra: 1599/1504,
  5823. bottom: 39/1638
  5824. }
  5825. },
  5826. laying: {
  5827. height: math.unit(3.3, "feet"),
  5828. weight: math.unit(180, "lbs"),
  5829. name: "Laying",
  5830. image: {
  5831. source: "./media/characters/zaakira/laying.svg"
  5832. }
  5833. },
  5834. },
  5835. [
  5836. {
  5837. name: "Normal",
  5838. height: math.unit(12, "feet")
  5839. },
  5840. {
  5841. name: "Macro",
  5842. height: math.unit(279, "feet"),
  5843. default: true
  5844. }
  5845. ]
  5846. ))
  5847. characterMakers.push(() => makeCharacter(
  5848. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5849. {
  5850. femSfw: {
  5851. height: math.unit(8, "feet"),
  5852. weight: math.unit(350, "lb"),
  5853. name: "Fem",
  5854. image: {
  5855. source: "./media/characters/sigvald/fem-sfw.svg",
  5856. extra: 182 / 164,
  5857. bottom: 8.7 / 190.5
  5858. }
  5859. },
  5860. femNsfw: {
  5861. height: math.unit(8, "feet"),
  5862. weight: math.unit(350, "lb"),
  5863. name: "Fem (NSFW)",
  5864. image: {
  5865. source: "./media/characters/sigvald/fem-nsfw.svg",
  5866. extra: 182 / 164,
  5867. bottom: 8.7 / 190.5
  5868. }
  5869. },
  5870. maleNsfw: {
  5871. height: math.unit(8, "feet"),
  5872. weight: math.unit(350, "lb"),
  5873. name: "Male (NSFW)",
  5874. image: {
  5875. source: "./media/characters/sigvald/male-nsfw.svg",
  5876. extra: 182 / 164,
  5877. bottom: 8.7 / 190.5
  5878. }
  5879. },
  5880. hermNsfw: {
  5881. height: math.unit(8, "feet"),
  5882. weight: math.unit(350, "lb"),
  5883. name: "Herm (NSFW)",
  5884. image: {
  5885. source: "./media/characters/sigvald/herm-nsfw.svg",
  5886. extra: 182 / 164,
  5887. bottom: 8.7 / 190.5
  5888. }
  5889. },
  5890. dick: {
  5891. height: math.unit(2.36, "feet"),
  5892. name: "Dick",
  5893. image: {
  5894. source: "./media/characters/sigvald/dick.svg"
  5895. }
  5896. },
  5897. eye: {
  5898. height: math.unit(0.31, "feet"),
  5899. name: "Eye",
  5900. image: {
  5901. source: "./media/characters/sigvald/eye.svg"
  5902. }
  5903. },
  5904. mouth: {
  5905. height: math.unit(0.92, "feet"),
  5906. name: "Mouth",
  5907. image: {
  5908. source: "./media/characters/sigvald/mouth.svg"
  5909. }
  5910. },
  5911. paws: {
  5912. height: math.unit(2.2, "feet"),
  5913. name: "Paws",
  5914. image: {
  5915. source: "./media/characters/sigvald/paws.svg"
  5916. }
  5917. }
  5918. },
  5919. [
  5920. {
  5921. name: "Normal",
  5922. height: math.unit(8, "feet")
  5923. },
  5924. {
  5925. name: "Large",
  5926. height: math.unit(12, "feet")
  5927. },
  5928. {
  5929. name: "Larger",
  5930. height: math.unit(20, "feet")
  5931. },
  5932. {
  5933. name: "Macro",
  5934. height: math.unit(150, "feet")
  5935. },
  5936. {
  5937. name: "Macro+",
  5938. height: math.unit(200, "feet"),
  5939. default: true
  5940. },
  5941. ]
  5942. ))
  5943. characterMakers.push(() => makeCharacter(
  5944. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5945. {
  5946. side: {
  5947. height: math.unit(12, "feet"),
  5948. weight: math.unit(2000, "kg"),
  5949. name: "Side",
  5950. image: {
  5951. source: "./media/characters/scott/side.svg",
  5952. extra: 754 / 724,
  5953. bottom: 0.069
  5954. }
  5955. },
  5956. upright: {
  5957. height: math.unit(12, "feet"),
  5958. weight: math.unit(2000, "kg"),
  5959. name: "Upright",
  5960. image: {
  5961. source: "./media/characters/scott/upright.svg",
  5962. extra: 3881 / 3722,
  5963. bottom: 0.05
  5964. }
  5965. },
  5966. },
  5967. [
  5968. {
  5969. name: "Normal",
  5970. height: math.unit(12, "feet"),
  5971. default: true
  5972. },
  5973. ]
  5974. ))
  5975. characterMakers.push(() => makeCharacter(
  5976. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5977. {
  5978. side: {
  5979. height: math.unit(8, "meters"),
  5980. weight: math.unit(84755, "lbs"),
  5981. name: "Side",
  5982. image: {
  5983. source: "./media/characters/tobias/side.svg",
  5984. extra: 1474 / 1096,
  5985. bottom: 38.9 / 1513.1235
  5986. }
  5987. },
  5988. },
  5989. [
  5990. {
  5991. name: "Normal",
  5992. height: math.unit(8, "meters"),
  5993. default: true
  5994. },
  5995. ]
  5996. ))
  5997. characterMakers.push(() => makeCharacter(
  5998. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5999. {
  6000. front: {
  6001. height: math.unit(5.5, "feet"),
  6002. weight: math.unit(400, "lbs"),
  6003. name: "Front",
  6004. image: {
  6005. source: "./media/characters/kieran/front.svg",
  6006. extra: 2694 / 2364,
  6007. bottom: 217 / 2908
  6008. }
  6009. },
  6010. side: {
  6011. height: math.unit(5.5, "feet"),
  6012. weight: math.unit(400, "lbs"),
  6013. name: "Side",
  6014. image: {
  6015. source: "./media/characters/kieran/side.svg",
  6016. extra: 875 / 777,
  6017. bottom: 84.6 / 959
  6018. }
  6019. },
  6020. },
  6021. [
  6022. {
  6023. name: "Normal",
  6024. height: math.unit(5.5, "feet"),
  6025. default: true
  6026. },
  6027. ]
  6028. ))
  6029. characterMakers.push(() => makeCharacter(
  6030. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  6031. {
  6032. side: {
  6033. height: math.unit(2, "meters"),
  6034. weight: math.unit(70, "kg"),
  6035. name: "Side",
  6036. image: {
  6037. source: "./media/characters/sanya/side.svg",
  6038. bottom: 0.02,
  6039. extra: 1.02
  6040. }
  6041. },
  6042. },
  6043. [
  6044. {
  6045. name: "Small",
  6046. height: math.unit(2, "meters")
  6047. },
  6048. {
  6049. name: "Normal",
  6050. height: math.unit(3, "meters")
  6051. },
  6052. {
  6053. name: "Macro",
  6054. height: math.unit(16, "meters"),
  6055. default: true
  6056. },
  6057. ]
  6058. ))
  6059. characterMakers.push(() => makeCharacter(
  6060. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  6061. {
  6062. front: {
  6063. height: math.unit(2, "meters"),
  6064. weight: math.unit(120, "kg"),
  6065. name: "Front",
  6066. image: {
  6067. source: "./media/characters/miranda/front.svg",
  6068. extra: 195 / 185,
  6069. bottom: 10.9 / 206.5
  6070. }
  6071. },
  6072. back: {
  6073. height: math.unit(2, "meters"),
  6074. weight: math.unit(120, "kg"),
  6075. name: "Back",
  6076. image: {
  6077. source: "./media/characters/miranda/back.svg",
  6078. extra: 201 / 193,
  6079. bottom: 2.3 / 203.7
  6080. }
  6081. },
  6082. },
  6083. [
  6084. {
  6085. name: "Normal",
  6086. height: math.unit(10, "feet"),
  6087. default: true
  6088. }
  6089. ]
  6090. ))
  6091. characterMakers.push(() => makeCharacter(
  6092. { name: "James", species: ["deer"], tags: ["anthro"] },
  6093. {
  6094. side: {
  6095. height: math.unit(2, "meters"),
  6096. weight: math.unit(100, "kg"),
  6097. name: "Front",
  6098. image: {
  6099. source: "./media/characters/james/front.svg",
  6100. extra: 10 / 8.5
  6101. }
  6102. },
  6103. },
  6104. [
  6105. {
  6106. name: "Normal",
  6107. height: math.unit(8.5, "feet"),
  6108. default: true
  6109. }
  6110. ]
  6111. ))
  6112. characterMakers.push(() => makeCharacter(
  6113. { name: "Heather", species: ["cow"], tags: ["taur"] },
  6114. {
  6115. side: {
  6116. height: math.unit(9.5, "feet"),
  6117. weight: math.unit(2500, "lbs"),
  6118. name: "Side",
  6119. image: {
  6120. source: "./media/characters/heather/side.svg"
  6121. }
  6122. },
  6123. },
  6124. [
  6125. {
  6126. name: "Normal",
  6127. height: math.unit(9.5, "feet"),
  6128. default: true
  6129. }
  6130. ]
  6131. ))
  6132. characterMakers.push(() => makeCharacter(
  6133. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  6134. {
  6135. side: {
  6136. height: math.unit(6.5, "feet"),
  6137. weight: math.unit(400, "lbs"),
  6138. name: "Side",
  6139. image: {
  6140. source: "./media/characters/lukas/side.svg",
  6141. extra: 7.25 / 6.5
  6142. }
  6143. },
  6144. },
  6145. [
  6146. {
  6147. name: "Normal",
  6148. height: math.unit(6.5, "feet"),
  6149. default: true
  6150. }
  6151. ]
  6152. ))
  6153. characterMakers.push(() => makeCharacter(
  6154. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  6155. {
  6156. side: {
  6157. height: math.unit(5, "feet"),
  6158. weight: math.unit(3000, "lbs"),
  6159. name: "Side",
  6160. image: {
  6161. source: "./media/characters/louise/side.svg"
  6162. }
  6163. },
  6164. },
  6165. [
  6166. {
  6167. name: "Normal",
  6168. height: math.unit(5, "feet"),
  6169. default: true
  6170. }
  6171. ]
  6172. ))
  6173. characterMakers.push(() => makeCharacter(
  6174. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6175. {
  6176. side: {
  6177. height: math.unit(6, "feet"),
  6178. weight: math.unit(150, "lbs"),
  6179. name: "Side",
  6180. image: {
  6181. source: "./media/characters/ramona/side.svg",
  6182. extra: 871/854,
  6183. bottom: 41/912
  6184. }
  6185. },
  6186. },
  6187. [
  6188. {
  6189. name: "Normal",
  6190. height: math.unit(6 + 4/12, "feet")
  6191. },
  6192. {
  6193. name: "Minimacro",
  6194. height: math.unit(5.3, "meters"),
  6195. default: true
  6196. },
  6197. {
  6198. name: "Macro",
  6199. height: math.unit(20, "stories")
  6200. },
  6201. {
  6202. name: "Macro+",
  6203. height: math.unit(50, "stories")
  6204. },
  6205. ]
  6206. ))
  6207. characterMakers.push(() => makeCharacter(
  6208. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6209. {
  6210. standing: {
  6211. height: math.unit(5.75, "feet"),
  6212. weight: math.unit(160, "lbs"),
  6213. name: "Standing",
  6214. image: {
  6215. source: "./media/characters/deerpuff/standing.svg",
  6216. extra: 682 / 624
  6217. }
  6218. },
  6219. sitting: {
  6220. height: math.unit(5.75 / 1.79, "feet"),
  6221. weight: math.unit(160, "lbs"),
  6222. name: "Sitting",
  6223. image: {
  6224. source: "./media/characters/deerpuff/sitting.svg",
  6225. bottom: 44 / 400,
  6226. extra: 1
  6227. }
  6228. },
  6229. taurLaying: {
  6230. height: math.unit(6, "feet"),
  6231. weight: math.unit(400, "lbs"),
  6232. name: "Taur (Laying)",
  6233. image: {
  6234. source: "./media/characters/deerpuff/taur-laying.svg"
  6235. }
  6236. },
  6237. },
  6238. [
  6239. {
  6240. name: "Puffball",
  6241. height: math.unit(6, "inches")
  6242. },
  6243. {
  6244. name: "Normalpuff",
  6245. height: math.unit(5.75, "feet")
  6246. },
  6247. {
  6248. name: "Macropuff",
  6249. height: math.unit(1500, "feet"),
  6250. default: true
  6251. },
  6252. {
  6253. name: "Megapuff",
  6254. height: math.unit(500, "miles")
  6255. },
  6256. {
  6257. name: "Gigapuff",
  6258. height: math.unit(250000, "miles")
  6259. },
  6260. {
  6261. name: "Omegapuff",
  6262. height: math.unit(1000, "lightyears")
  6263. },
  6264. ]
  6265. ))
  6266. characterMakers.push(() => makeCharacter(
  6267. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6268. {
  6269. stomping: {
  6270. height: math.unit(6, "feet"),
  6271. weight: math.unit(170, "lbs"),
  6272. name: "Stomping",
  6273. image: {
  6274. source: "./media/characters/vivian/stomping.svg"
  6275. }
  6276. },
  6277. sitting: {
  6278. height: math.unit(6 / 1.75, "feet"),
  6279. weight: math.unit(170, "lbs"),
  6280. name: "Sitting",
  6281. image: {
  6282. source: "./media/characters/vivian/sitting.svg",
  6283. bottom: 1 / 6.4,
  6284. extra: 1,
  6285. }
  6286. },
  6287. },
  6288. [
  6289. {
  6290. name: "Normal",
  6291. height: math.unit(7, "feet"),
  6292. default: true
  6293. },
  6294. {
  6295. name: "Macro",
  6296. height: math.unit(10, "stories")
  6297. },
  6298. {
  6299. name: "Macro+",
  6300. height: math.unit(30, "stories")
  6301. },
  6302. {
  6303. name: "Megamacro",
  6304. height: math.unit(10, "miles")
  6305. },
  6306. {
  6307. name: "Megamacro+",
  6308. height: math.unit(2750000, "meters")
  6309. },
  6310. ]
  6311. ))
  6312. characterMakers.push(() => makeCharacter(
  6313. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6314. {
  6315. front: {
  6316. height: math.unit(6, "feet"),
  6317. weight: math.unit(160, "lbs"),
  6318. name: "Front",
  6319. image: {
  6320. source: "./media/characters/prince/front.svg",
  6321. extra: 1938/1682,
  6322. bottom: 45/1983
  6323. }
  6324. },
  6325. back: {
  6326. height: math.unit(6, "feet"),
  6327. weight: math.unit(160, "lbs"),
  6328. name: "Back",
  6329. image: {
  6330. source: "./media/characters/prince/back.svg",
  6331. extra: 1955/1726,
  6332. bottom: 6/1961
  6333. }
  6334. },
  6335. },
  6336. [
  6337. {
  6338. name: "Normal",
  6339. height: math.unit(7.75, "feet"),
  6340. default: true
  6341. },
  6342. {
  6343. name: "Not cute",
  6344. height: math.unit(17, "feet")
  6345. },
  6346. {
  6347. name: "I said NOT",
  6348. height: math.unit(91, "feet")
  6349. },
  6350. {
  6351. name: "Please stop",
  6352. height: math.unit(560, "feet")
  6353. },
  6354. {
  6355. name: "What have you done",
  6356. height: math.unit(2200, "feet")
  6357. },
  6358. {
  6359. name: "Deer God",
  6360. height: math.unit(3.6, "miles")
  6361. },
  6362. ]
  6363. ))
  6364. characterMakers.push(() => makeCharacter(
  6365. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6366. {
  6367. standing: {
  6368. height: math.unit(6, "feet"),
  6369. weight: math.unit(300, "lbs"),
  6370. name: "Standing",
  6371. image: {
  6372. source: "./media/characters/psymon/standing.svg",
  6373. extra: 1888 / 1810,
  6374. bottom: 0.05
  6375. }
  6376. },
  6377. slithering: {
  6378. height: math.unit(6, "feet"),
  6379. weight: math.unit(300, "lbs"),
  6380. name: "Slithering",
  6381. image: {
  6382. source: "./media/characters/psymon/slithering.svg",
  6383. extra: 1330 / 1224
  6384. }
  6385. },
  6386. slitheringAlt: {
  6387. height: math.unit(6, "feet"),
  6388. weight: math.unit(300, "lbs"),
  6389. name: "Slithering (Alt)",
  6390. image: {
  6391. source: "./media/characters/psymon/slithering-alt.svg",
  6392. extra: 1330 / 1224
  6393. }
  6394. },
  6395. },
  6396. [
  6397. {
  6398. name: "Normal",
  6399. height: math.unit(11.25, "feet"),
  6400. default: true
  6401. },
  6402. {
  6403. name: "Large",
  6404. height: math.unit(27, "feet")
  6405. },
  6406. {
  6407. name: "Giant",
  6408. height: math.unit(87, "feet")
  6409. },
  6410. {
  6411. name: "Macro",
  6412. height: math.unit(365, "feet")
  6413. },
  6414. {
  6415. name: "Megamacro",
  6416. height: math.unit(3, "miles")
  6417. },
  6418. {
  6419. name: "World Serpent",
  6420. height: math.unit(8000, "miles")
  6421. },
  6422. ]
  6423. ))
  6424. characterMakers.push(() => makeCharacter(
  6425. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6426. {
  6427. front: {
  6428. height: math.unit(6, "feet"),
  6429. weight: math.unit(180, "lbs"),
  6430. name: "Front",
  6431. image: {
  6432. source: "./media/characters/daimos/front.svg",
  6433. extra: 4160 / 3897,
  6434. bottom: 0.021
  6435. }
  6436. }
  6437. },
  6438. [
  6439. {
  6440. name: "Normal",
  6441. height: math.unit(8, "feet"),
  6442. default: true
  6443. },
  6444. {
  6445. name: "Big Dog",
  6446. height: math.unit(22, "feet")
  6447. },
  6448. {
  6449. name: "Macro",
  6450. height: math.unit(127, "feet")
  6451. },
  6452. {
  6453. name: "Megamacro",
  6454. height: math.unit(3600, "feet")
  6455. },
  6456. ]
  6457. ))
  6458. characterMakers.push(() => makeCharacter(
  6459. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6460. {
  6461. side: {
  6462. height: math.unit(6, "feet"),
  6463. weight: math.unit(180, "lbs"),
  6464. name: "Side",
  6465. image: {
  6466. source: "./media/characters/blake/side.svg",
  6467. extra: 1212 / 1120,
  6468. bottom: 0.05
  6469. }
  6470. },
  6471. crouched: {
  6472. height: math.unit(6 * 0.57, "feet"),
  6473. weight: math.unit(180, "lbs"),
  6474. name: "Crouched",
  6475. image: {
  6476. source: "./media/characters/blake/crouched.svg",
  6477. extra: 840 / 587,
  6478. bottom: 0.04
  6479. }
  6480. },
  6481. bent: {
  6482. height: math.unit(6 * 0.75, "feet"),
  6483. weight: math.unit(180, "lbs"),
  6484. name: "Bent",
  6485. image: {
  6486. source: "./media/characters/blake/bent.svg",
  6487. extra: 592 / 544,
  6488. bottom: 0.035
  6489. }
  6490. },
  6491. },
  6492. [
  6493. {
  6494. name: "Normal",
  6495. height: math.unit(8 + 1 / 6, "feet"),
  6496. default: true
  6497. },
  6498. {
  6499. name: "Big Backside",
  6500. height: math.unit(37, "feet")
  6501. },
  6502. {
  6503. name: "Subway Shredder",
  6504. height: math.unit(72, "feet")
  6505. },
  6506. {
  6507. name: "City Carver",
  6508. height: math.unit(1675, "feet")
  6509. },
  6510. {
  6511. name: "Tectonic Tweaker",
  6512. height: math.unit(2300, "miles")
  6513. },
  6514. ]
  6515. ))
  6516. characterMakers.push(() => makeCharacter(
  6517. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6518. {
  6519. front: {
  6520. height: math.unit(6, "feet"),
  6521. weight: math.unit(180, "lbs"),
  6522. name: "Front",
  6523. image: {
  6524. source: "./media/characters/guisetto/front.svg",
  6525. extra: 856 / 817,
  6526. bottom: 0.06
  6527. }
  6528. },
  6529. airborne: {
  6530. height: math.unit(6, "feet"),
  6531. weight: math.unit(180, "lbs"),
  6532. name: "Airborne",
  6533. image: {
  6534. source: "./media/characters/guisetto/airborne.svg",
  6535. extra: 584 / 525
  6536. }
  6537. },
  6538. },
  6539. [
  6540. {
  6541. name: "Normal",
  6542. height: math.unit(10 + 11 / 12, "feet"),
  6543. default: true
  6544. },
  6545. {
  6546. name: "Large",
  6547. height: math.unit(35, "feet")
  6548. },
  6549. {
  6550. name: "Macro",
  6551. height: math.unit(475, "feet")
  6552. },
  6553. ]
  6554. ))
  6555. characterMakers.push(() => makeCharacter(
  6556. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6557. {
  6558. front: {
  6559. height: math.unit(6, "feet"),
  6560. weight: math.unit(180, "lbs"),
  6561. name: "Front",
  6562. image: {
  6563. source: "./media/characters/luxor/front.svg",
  6564. extra: 2940 / 2152
  6565. }
  6566. },
  6567. back: {
  6568. height: math.unit(6, "feet"),
  6569. weight: math.unit(180, "lbs"),
  6570. name: "Back",
  6571. image: {
  6572. source: "./media/characters/luxor/back.svg",
  6573. extra: 1083 / 960
  6574. }
  6575. },
  6576. },
  6577. [
  6578. {
  6579. name: "Normal",
  6580. height: math.unit(5 + 5 / 6, "feet"),
  6581. default: true
  6582. },
  6583. {
  6584. name: "Lamp",
  6585. height: math.unit(50, "feet")
  6586. },
  6587. {
  6588. name: "Lämp",
  6589. height: math.unit(300, "feet")
  6590. },
  6591. {
  6592. name: "The sun is a lamp",
  6593. height: math.unit(250000, "miles")
  6594. },
  6595. ]
  6596. ))
  6597. characterMakers.push(() => makeCharacter(
  6598. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6599. {
  6600. front: {
  6601. height: math.unit(6, "feet"),
  6602. weight: math.unit(50, "lbs"),
  6603. name: "Front",
  6604. image: {
  6605. source: "./media/characters/huoyan/front.svg"
  6606. }
  6607. },
  6608. side: {
  6609. height: math.unit(6, "feet"),
  6610. weight: math.unit(180, "lbs"),
  6611. name: "Side",
  6612. image: {
  6613. source: "./media/characters/huoyan/side.svg"
  6614. }
  6615. },
  6616. },
  6617. [
  6618. {
  6619. name: "Chef",
  6620. height: math.unit(9, "feet")
  6621. },
  6622. {
  6623. name: "Normal",
  6624. height: math.unit(65, "feet"),
  6625. default: true
  6626. },
  6627. {
  6628. name: "Macro",
  6629. height: math.unit(780, "feet")
  6630. },
  6631. {
  6632. name: "Flaming Mountain",
  6633. height: math.unit(4.8, "miles")
  6634. },
  6635. {
  6636. name: "Celestial",
  6637. height: math.unit(765000, "miles")
  6638. },
  6639. ]
  6640. ))
  6641. characterMakers.push(() => makeCharacter(
  6642. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6643. {
  6644. front: {
  6645. height: math.unit(5 + 3 / 4, "feet"),
  6646. weight: math.unit(120, "lbs"),
  6647. name: "Front",
  6648. image: {
  6649. source: "./media/characters/tails/front.svg"
  6650. }
  6651. }
  6652. },
  6653. [
  6654. {
  6655. name: "Normal",
  6656. height: math.unit(5 + 3 / 4, "feet"),
  6657. default: true
  6658. }
  6659. ]
  6660. ))
  6661. characterMakers.push(() => makeCharacter(
  6662. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6663. {
  6664. front: {
  6665. height: math.unit(4, "feet"),
  6666. weight: math.unit(50, "lbs"),
  6667. name: "Front",
  6668. image: {
  6669. source: "./media/characters/rainy/front.svg"
  6670. }
  6671. }
  6672. },
  6673. [
  6674. {
  6675. name: "Macro",
  6676. height: math.unit(800, "feet"),
  6677. default: true
  6678. }
  6679. ]
  6680. ))
  6681. characterMakers.push(() => makeCharacter(
  6682. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6683. {
  6684. front: {
  6685. height: math.unit(6, "feet"),
  6686. weight: math.unit(150, "lbs"),
  6687. name: "Front",
  6688. image: {
  6689. source: "./media/characters/rainier/front.svg"
  6690. }
  6691. }
  6692. },
  6693. [
  6694. {
  6695. name: "Micro",
  6696. height: math.unit(2, "mm"),
  6697. default: true
  6698. }
  6699. ]
  6700. ))
  6701. characterMakers.push(() => makeCharacter(
  6702. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6703. {
  6704. front: {
  6705. height: math.unit(8 + 4/12, "feet"),
  6706. weight: math.unit(450, "kilograms"),
  6707. volume: math.unit(5, "cups"),
  6708. name: "Front",
  6709. image: {
  6710. source: "./media/characters/andy-renard/front.svg",
  6711. extra: 1839/1726,
  6712. bottom: 134/1973
  6713. }
  6714. },
  6715. back: {
  6716. height: math.unit(8 + 4/12, "feet"),
  6717. weight: math.unit(450, "kilograms"),
  6718. volume: math.unit(5, "cups"),
  6719. name: "Back",
  6720. image: {
  6721. source: "./media/characters/andy-renard/back.svg",
  6722. extra: 1838/1710,
  6723. bottom: 105/1943
  6724. }
  6725. },
  6726. },
  6727. [
  6728. {
  6729. name: "Tall",
  6730. height: math.unit(8 + 4/12, "feet")
  6731. },
  6732. {
  6733. name: "Mini Macro",
  6734. height: math.unit(15, "feet"),
  6735. default: true
  6736. },
  6737. {
  6738. name: "Macro",
  6739. height: math.unit(100, "feet")
  6740. },
  6741. {
  6742. name: "Mega Macro",
  6743. height: math.unit(1000, "feet")
  6744. },
  6745. {
  6746. name: "Giga Macro",
  6747. height: math.unit(10, "miles")
  6748. },
  6749. {
  6750. name: "God Macro",
  6751. height: math.unit(1, "multiverse")
  6752. },
  6753. ]
  6754. ))
  6755. characterMakers.push(() => makeCharacter(
  6756. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6757. {
  6758. front: {
  6759. height: math.unit(6, "feet"),
  6760. weight: math.unit(210, "lbs"),
  6761. name: "Front",
  6762. image: {
  6763. source: "./media/characters/cimmaron/front-sfw.svg",
  6764. extra: 701 / 676,
  6765. bottom: 0.046
  6766. }
  6767. },
  6768. back: {
  6769. height: math.unit(6, "feet"),
  6770. weight: math.unit(210, "lbs"),
  6771. name: "Back",
  6772. image: {
  6773. source: "./media/characters/cimmaron/back-sfw.svg",
  6774. extra: 701 / 676,
  6775. bottom: 0.046
  6776. }
  6777. },
  6778. frontNsfw: {
  6779. height: math.unit(6, "feet"),
  6780. weight: math.unit(210, "lbs"),
  6781. name: "Front (NSFW)",
  6782. image: {
  6783. source: "./media/characters/cimmaron/front-nsfw.svg",
  6784. extra: 701 / 676,
  6785. bottom: 0.046
  6786. }
  6787. },
  6788. backNsfw: {
  6789. height: math.unit(6, "feet"),
  6790. weight: math.unit(210, "lbs"),
  6791. name: "Back (NSFW)",
  6792. image: {
  6793. source: "./media/characters/cimmaron/back-nsfw.svg",
  6794. extra: 701 / 676,
  6795. bottom: 0.046
  6796. }
  6797. },
  6798. dick: {
  6799. height: math.unit(1.714, "feet"),
  6800. name: "Dick",
  6801. image: {
  6802. source: "./media/characters/cimmaron/dick.svg"
  6803. }
  6804. },
  6805. },
  6806. [
  6807. {
  6808. name: "Normal",
  6809. height: math.unit(6, "feet"),
  6810. default: true
  6811. },
  6812. {
  6813. name: "Macro Mayor",
  6814. height: math.unit(350, "meters")
  6815. },
  6816. ]
  6817. ))
  6818. characterMakers.push(() => makeCharacter(
  6819. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6820. {
  6821. front: {
  6822. height: math.unit(6, "feet"),
  6823. weight: math.unit(200, "lbs"),
  6824. name: "Front",
  6825. image: {
  6826. source: "./media/characters/akari/front.svg",
  6827. extra: 962 / 901,
  6828. bottom: 0.04
  6829. }
  6830. }
  6831. },
  6832. [
  6833. {
  6834. name: "Micro",
  6835. height: math.unit(5, "inches"),
  6836. default: true
  6837. },
  6838. {
  6839. name: "Normal",
  6840. height: math.unit(7, "feet")
  6841. },
  6842. ]
  6843. ))
  6844. characterMakers.push(() => makeCharacter(
  6845. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6846. {
  6847. front: {
  6848. height: math.unit(6, "feet"),
  6849. weight: math.unit(140, "lbs"),
  6850. name: "Front",
  6851. image: {
  6852. source: "./media/characters/cynosura/front.svg",
  6853. extra: 437/410,
  6854. bottom: 9/446
  6855. }
  6856. },
  6857. back: {
  6858. height: math.unit(6, "feet"),
  6859. weight: math.unit(140, "lbs"),
  6860. name: "Back",
  6861. image: {
  6862. source: "./media/characters/cynosura/back.svg",
  6863. extra: 1304/1160,
  6864. bottom: 71/1375
  6865. }
  6866. },
  6867. },
  6868. [
  6869. {
  6870. name: "Micro",
  6871. height: math.unit(4, "inches")
  6872. },
  6873. {
  6874. name: "Normal",
  6875. height: math.unit(5.75, "feet"),
  6876. default: true
  6877. },
  6878. {
  6879. name: "Tall",
  6880. height: math.unit(10, "feet")
  6881. },
  6882. {
  6883. name: "Big",
  6884. height: math.unit(20, "feet")
  6885. },
  6886. {
  6887. name: "Macro",
  6888. height: math.unit(50, "feet")
  6889. },
  6890. ]
  6891. ))
  6892. characterMakers.push(() => makeCharacter(
  6893. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6894. {
  6895. front: {
  6896. height: math.unit(13 + 2/12, "feet"),
  6897. weight: math.unit(800, "kg"),
  6898. name: "Front",
  6899. image: {
  6900. source: "./media/characters/gin/front.svg",
  6901. extra: 1312/1191,
  6902. bottom: 45/1357
  6903. }
  6904. },
  6905. mouth: {
  6906. height: math.unit(2.39 * 1.8, "feet"),
  6907. name: "Mouth",
  6908. image: {
  6909. source: "./media/characters/gin/mouth.svg"
  6910. }
  6911. },
  6912. hand: {
  6913. height: math.unit(1.57 * 2.19, "feet"),
  6914. name: "Hand",
  6915. image: {
  6916. source: "./media/characters/gin/hand.svg"
  6917. }
  6918. },
  6919. foot: {
  6920. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6921. name: "Foot",
  6922. image: {
  6923. source: "./media/characters/gin/foot.svg"
  6924. }
  6925. },
  6926. sole: {
  6927. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6928. name: "Sole",
  6929. image: {
  6930. source: "./media/characters/gin/sole.svg"
  6931. }
  6932. },
  6933. },
  6934. [
  6935. {
  6936. name: "Very Small",
  6937. height: math.unit(13 + 2 / 12, "feet")
  6938. },
  6939. {
  6940. name: "Micro",
  6941. height: math.unit(600, "miles")
  6942. },
  6943. {
  6944. name: "Regular",
  6945. height: math.unit(20, "earths"),
  6946. default: true
  6947. },
  6948. {
  6949. name: "Macro",
  6950. height: math.unit(2.2, "solarradii")
  6951. },
  6952. {
  6953. name: "Teramacro",
  6954. height: math.unit(1.2, "galaxies")
  6955. },
  6956. {
  6957. name: "Omegamacro",
  6958. height: math.unit(200, "universes")
  6959. },
  6960. ]
  6961. ))
  6962. characterMakers.push(() => makeCharacter(
  6963. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6964. {
  6965. front: {
  6966. height: math.unit(6 + 1 / 6, "feet"),
  6967. weight: math.unit(178, "lbs"),
  6968. name: "Front",
  6969. image: {
  6970. source: "./media/characters/guy/front.svg"
  6971. }
  6972. }
  6973. },
  6974. [
  6975. {
  6976. name: "Normal",
  6977. height: math.unit(6 + 1 / 6, "feet"),
  6978. default: true
  6979. },
  6980. {
  6981. name: "Large",
  6982. height: math.unit(25 + 7 / 12, "feet")
  6983. },
  6984. {
  6985. name: "Macro",
  6986. height: math.unit(60 + 9 / 12, "feet")
  6987. },
  6988. {
  6989. name: "Macro+",
  6990. height: math.unit(246, "feet")
  6991. },
  6992. {
  6993. name: "Macro++",
  6994. height: math.unit(878, "feet")
  6995. }
  6996. ]
  6997. ))
  6998. characterMakers.push(() => makeCharacter(
  6999. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  7000. {
  7001. front: {
  7002. height: math.unit(9, "feet"),
  7003. weight: math.unit(800, "lbs"),
  7004. name: "Front",
  7005. image: {
  7006. source: "./media/characters/tiberius/front.svg",
  7007. extra: 2295 / 2071
  7008. }
  7009. },
  7010. back: {
  7011. height: math.unit(9, "feet"),
  7012. weight: math.unit(800, "lbs"),
  7013. name: "Back",
  7014. image: {
  7015. source: "./media/characters/tiberius/back.svg",
  7016. extra: 2373 / 2160
  7017. }
  7018. },
  7019. },
  7020. [
  7021. {
  7022. name: "Normal",
  7023. height: math.unit(9, "feet"),
  7024. default: true
  7025. }
  7026. ]
  7027. ))
  7028. characterMakers.push(() => makeCharacter(
  7029. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  7030. {
  7031. front: {
  7032. height: math.unit(6, "feet"),
  7033. weight: math.unit(600, "lbs"),
  7034. name: "Front",
  7035. image: {
  7036. source: "./media/characters/surgo/front.svg",
  7037. extra: 3591 / 2227
  7038. }
  7039. },
  7040. back: {
  7041. height: math.unit(6, "feet"),
  7042. weight: math.unit(600, "lbs"),
  7043. name: "Back",
  7044. image: {
  7045. source: "./media/characters/surgo/back.svg",
  7046. extra: 3557 / 2228
  7047. }
  7048. },
  7049. laying: {
  7050. height: math.unit(6 * 0.85, "feet"),
  7051. weight: math.unit(600, "lbs"),
  7052. name: "Laying",
  7053. image: {
  7054. source: "./media/characters/surgo/laying.svg"
  7055. }
  7056. },
  7057. },
  7058. [
  7059. {
  7060. name: "Normal",
  7061. height: math.unit(6, "feet"),
  7062. default: true
  7063. }
  7064. ]
  7065. ))
  7066. characterMakers.push(() => makeCharacter(
  7067. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  7068. {
  7069. side: {
  7070. height: math.unit(6, "feet"),
  7071. weight: math.unit(150, "lbs"),
  7072. name: "Side",
  7073. image: {
  7074. source: "./media/characters/cibus/side.svg",
  7075. extra: 800 / 400
  7076. }
  7077. },
  7078. },
  7079. [
  7080. {
  7081. name: "Normal",
  7082. height: math.unit(6, "feet"),
  7083. default: true
  7084. }
  7085. ]
  7086. ))
  7087. characterMakers.push(() => makeCharacter(
  7088. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  7089. {
  7090. front: {
  7091. height: math.unit(6, "feet"),
  7092. weight: math.unit(240, "lbs"),
  7093. name: "Front",
  7094. image: {
  7095. source: "./media/characters/nibbles/front.svg"
  7096. }
  7097. },
  7098. side: {
  7099. height: math.unit(6, "feet"),
  7100. weight: math.unit(240, "lbs"),
  7101. name: "Side",
  7102. image: {
  7103. source: "./media/characters/nibbles/side.svg"
  7104. }
  7105. },
  7106. },
  7107. [
  7108. {
  7109. name: "Normal",
  7110. height: math.unit(9, "feet"),
  7111. default: true
  7112. }
  7113. ]
  7114. ))
  7115. characterMakers.push(() => makeCharacter(
  7116. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  7117. {
  7118. side: {
  7119. height: math.unit(5 + 1 / 6, "feet"),
  7120. weight: math.unit(130, "lbs"),
  7121. name: "Side",
  7122. image: {
  7123. source: "./media/characters/rikky/side.svg",
  7124. extra: 851 / 801
  7125. }
  7126. },
  7127. },
  7128. [
  7129. {
  7130. name: "Normal",
  7131. height: math.unit(5 + 1 / 6, "feet")
  7132. },
  7133. {
  7134. name: "Macro",
  7135. height: math.unit(152, "feet"),
  7136. default: true
  7137. },
  7138. {
  7139. name: "Megamacro",
  7140. height: math.unit(7, "miles")
  7141. }
  7142. ]
  7143. ))
  7144. characterMakers.push(() => makeCharacter(
  7145. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  7146. {
  7147. side: {
  7148. height: math.unit(370, "cm"),
  7149. weight: math.unit(350, "lbs"),
  7150. name: "Side",
  7151. image: {
  7152. source: "./media/characters/malfressa/side.svg"
  7153. }
  7154. },
  7155. walking: {
  7156. height: math.unit(370, "cm"),
  7157. weight: math.unit(350, "lbs"),
  7158. name: "Walking",
  7159. image: {
  7160. source: "./media/characters/malfressa/walking.svg"
  7161. }
  7162. },
  7163. feral: {
  7164. height: math.unit(2500, "cm"),
  7165. weight: math.unit(100000, "lbs"),
  7166. name: "Feral",
  7167. image: {
  7168. source: "./media/characters/malfressa/feral.svg",
  7169. extra: 2108 / 837,
  7170. bottom: 0.02
  7171. }
  7172. },
  7173. },
  7174. [
  7175. {
  7176. name: "Normal",
  7177. height: math.unit(370, "cm")
  7178. },
  7179. {
  7180. name: "Macro",
  7181. height: math.unit(300, "meters"),
  7182. default: true
  7183. }
  7184. ]
  7185. ))
  7186. characterMakers.push(() => makeCharacter(
  7187. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7188. {
  7189. front: {
  7190. height: math.unit(6, "feet"),
  7191. weight: math.unit(60, "kg"),
  7192. name: "Front",
  7193. image: {
  7194. source: "./media/characters/jaro/front.svg",
  7195. extra: 845/817,
  7196. bottom: 45/890
  7197. }
  7198. },
  7199. back: {
  7200. height: math.unit(6, "feet"),
  7201. weight: math.unit(60, "kg"),
  7202. name: "Back",
  7203. image: {
  7204. source: "./media/characters/jaro/back.svg",
  7205. extra: 847/817,
  7206. bottom: 34/881
  7207. }
  7208. },
  7209. },
  7210. [
  7211. {
  7212. name: "Micro",
  7213. height: math.unit(7, "inches")
  7214. },
  7215. {
  7216. name: "Normal",
  7217. height: math.unit(5.5, "feet"),
  7218. default: true
  7219. },
  7220. {
  7221. name: "Minimacro",
  7222. height: math.unit(20, "feet")
  7223. },
  7224. {
  7225. name: "Macro",
  7226. height: math.unit(200, "meters")
  7227. }
  7228. ]
  7229. ))
  7230. characterMakers.push(() => makeCharacter(
  7231. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7232. {
  7233. front: {
  7234. height: math.unit(6, "feet"),
  7235. weight: math.unit(195, "lb"),
  7236. name: "Front",
  7237. image: {
  7238. source: "./media/characters/rogue/front.svg"
  7239. }
  7240. },
  7241. },
  7242. [
  7243. {
  7244. name: "Macro",
  7245. height: math.unit(90, "feet"),
  7246. default: true
  7247. },
  7248. ]
  7249. ))
  7250. characterMakers.push(() => makeCharacter(
  7251. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7252. {
  7253. standing: {
  7254. height: math.unit(5 + 8 / 12, "feet"),
  7255. weight: math.unit(140, "lb"),
  7256. name: "Standing",
  7257. image: {
  7258. source: "./media/characters/piper/standing.svg",
  7259. extra: 1440/1284,
  7260. bottom: 66/1506
  7261. }
  7262. },
  7263. running: {
  7264. height: math.unit(5 + 8 / 12, "feet"),
  7265. weight: math.unit(140, "lb"),
  7266. name: "Running",
  7267. image: {
  7268. source: "./media/characters/piper/running.svg",
  7269. extra: 3948/3655,
  7270. bottom: 0/3948
  7271. }
  7272. },
  7273. sole: {
  7274. height: math.unit(0.81, "feet"),
  7275. weight: math.unit(2, "kg"),
  7276. name: "Sole",
  7277. image: {
  7278. source: "./media/characters/piper/sole.svg"
  7279. }
  7280. },
  7281. nipple: {
  7282. height: math.unit(0.25, "feet"),
  7283. weight: math.unit(1.5, "lb"),
  7284. name: "Nipple",
  7285. image: {
  7286. source: "./media/characters/piper/nipple.svg"
  7287. }
  7288. },
  7289. head: {
  7290. height: math.unit(1.1, "feet"),
  7291. name: "Head",
  7292. image: {
  7293. source: "./media/characters/piper/head.svg"
  7294. }
  7295. },
  7296. },
  7297. [
  7298. {
  7299. name: "Micro",
  7300. height: math.unit(2, "inches")
  7301. },
  7302. {
  7303. name: "Normal",
  7304. height: math.unit(5 + 8 / 12, "feet")
  7305. },
  7306. {
  7307. name: "Macro",
  7308. height: math.unit(250, "feet"),
  7309. default: true
  7310. },
  7311. {
  7312. name: "Megamacro",
  7313. height: math.unit(7, "miles")
  7314. },
  7315. ]
  7316. ))
  7317. characterMakers.push(() => makeCharacter(
  7318. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7319. {
  7320. front: {
  7321. height: math.unit(6, "feet"),
  7322. weight: math.unit(220, "lb"),
  7323. name: "Front",
  7324. image: {
  7325. source: "./media/characters/gemini/front.svg"
  7326. }
  7327. },
  7328. back: {
  7329. height: math.unit(6, "feet"),
  7330. weight: math.unit(220, "lb"),
  7331. name: "Back",
  7332. image: {
  7333. source: "./media/characters/gemini/back.svg"
  7334. }
  7335. },
  7336. kneeling: {
  7337. height: math.unit(6 / 1.5, "feet"),
  7338. weight: math.unit(220, "lb"),
  7339. name: "Kneeling",
  7340. image: {
  7341. source: "./media/characters/gemini/kneeling.svg",
  7342. bottom: 0.02
  7343. }
  7344. },
  7345. },
  7346. [
  7347. {
  7348. name: "Macro",
  7349. height: math.unit(300, "meters"),
  7350. default: true
  7351. },
  7352. {
  7353. name: "Megamacro",
  7354. height: math.unit(6900, "meters")
  7355. },
  7356. ]
  7357. ))
  7358. characterMakers.push(() => makeCharacter(
  7359. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7360. {
  7361. anthro: {
  7362. height: math.unit(2.35, "meters"),
  7363. weight: math.unit(73, "kg"),
  7364. name: "Anthro",
  7365. image: {
  7366. source: "./media/characters/alicia/anthro.svg",
  7367. extra: 2571 / 2385,
  7368. bottom: 75 / 2648
  7369. }
  7370. },
  7371. paw: {
  7372. height: math.unit(1.32, "feet"),
  7373. name: "Paw",
  7374. image: {
  7375. source: "./media/characters/alicia/paw.svg"
  7376. }
  7377. },
  7378. feral: {
  7379. height: math.unit(1.69, "meters"),
  7380. weight: math.unit(73, "kg"),
  7381. name: "Feral",
  7382. image: {
  7383. source: "./media/characters/alicia/feral.svg",
  7384. extra: 2123 / 1715,
  7385. bottom: 222 / 2349
  7386. }
  7387. },
  7388. },
  7389. [
  7390. {
  7391. name: "Normal",
  7392. height: math.unit(2.35, "meters")
  7393. },
  7394. {
  7395. name: "Macro",
  7396. height: math.unit(60, "meters"),
  7397. default: true
  7398. },
  7399. {
  7400. name: "Megamacro",
  7401. height: math.unit(10000, "kilometers")
  7402. },
  7403. ]
  7404. ))
  7405. characterMakers.push(() => makeCharacter(
  7406. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7407. {
  7408. front: {
  7409. height: math.unit(7, "feet"),
  7410. weight: math.unit(250, "lbs"),
  7411. name: "Front",
  7412. image: {
  7413. source: "./media/characters/archy/front.svg"
  7414. }
  7415. }
  7416. },
  7417. [
  7418. {
  7419. name: "Micro",
  7420. height: math.unit(1, "inch")
  7421. },
  7422. {
  7423. name: "Shorty",
  7424. height: math.unit(5, "feet")
  7425. },
  7426. {
  7427. name: "Normal",
  7428. height: math.unit(7, "feet")
  7429. },
  7430. {
  7431. name: "Macro",
  7432. height: math.unit(600, "meters"),
  7433. default: true
  7434. },
  7435. {
  7436. name: "Megamacro",
  7437. height: math.unit(1, "mile")
  7438. },
  7439. ]
  7440. ))
  7441. characterMakers.push(() => makeCharacter(
  7442. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7443. {
  7444. front: {
  7445. height: math.unit(1.65, "meters"),
  7446. weight: math.unit(74, "kg"),
  7447. name: "Front",
  7448. image: {
  7449. source: "./media/characters/berri/front.svg",
  7450. extra: 857 / 837,
  7451. bottom: 18 / 877
  7452. }
  7453. },
  7454. bum: {
  7455. height: math.unit(1.46, "feet"),
  7456. name: "Bum",
  7457. image: {
  7458. source: "./media/characters/berri/bum.svg"
  7459. }
  7460. },
  7461. mouth: {
  7462. height: math.unit(0.44, "feet"),
  7463. name: "Mouth",
  7464. image: {
  7465. source: "./media/characters/berri/mouth.svg"
  7466. }
  7467. },
  7468. paw: {
  7469. height: math.unit(0.826, "feet"),
  7470. name: "Paw",
  7471. image: {
  7472. source: "./media/characters/berri/paw.svg"
  7473. }
  7474. },
  7475. },
  7476. [
  7477. {
  7478. name: "Normal",
  7479. height: math.unit(1.65, "meters")
  7480. },
  7481. {
  7482. name: "Macro",
  7483. height: math.unit(60, "m"),
  7484. default: true
  7485. },
  7486. {
  7487. name: "Megamacro",
  7488. height: math.unit(9.213, "km")
  7489. },
  7490. {
  7491. name: "Planet Eater",
  7492. height: math.unit(489, "megameters")
  7493. },
  7494. {
  7495. name: "Teramacro",
  7496. height: math.unit(2471635000000, "meters")
  7497. },
  7498. {
  7499. name: "Examacro",
  7500. height: math.unit(8.0624e+26, "meters")
  7501. }
  7502. ]
  7503. ))
  7504. characterMakers.push(() => makeCharacter(
  7505. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7506. {
  7507. front: {
  7508. height: math.unit(1.72, "meters"),
  7509. weight: math.unit(68, "kg"),
  7510. name: "Front",
  7511. image: {
  7512. source: "./media/characters/lexi/front.svg"
  7513. }
  7514. }
  7515. },
  7516. [
  7517. {
  7518. name: "Very Smol",
  7519. height: math.unit(10, "mm")
  7520. },
  7521. {
  7522. name: "Micro",
  7523. height: math.unit(6.8, "cm"),
  7524. default: true
  7525. },
  7526. {
  7527. name: "Normal",
  7528. height: math.unit(1.72, "m")
  7529. }
  7530. ]
  7531. ))
  7532. characterMakers.push(() => makeCharacter(
  7533. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7534. {
  7535. front: {
  7536. height: math.unit(1.69, "meters"),
  7537. weight: math.unit(68, "kg"),
  7538. name: "Front",
  7539. image: {
  7540. source: "./media/characters/martin/front.svg",
  7541. extra: 596 / 581
  7542. }
  7543. }
  7544. },
  7545. [
  7546. {
  7547. name: "Micro",
  7548. height: math.unit(6.85, "cm"),
  7549. default: true
  7550. },
  7551. {
  7552. name: "Normal",
  7553. height: math.unit(1.69, "m")
  7554. }
  7555. ]
  7556. ))
  7557. characterMakers.push(() => makeCharacter(
  7558. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7559. {
  7560. front: {
  7561. height: math.unit(1.69, "meters"),
  7562. weight: math.unit(68, "kg"),
  7563. name: "Front",
  7564. image: {
  7565. source: "./media/characters/juno/front.svg"
  7566. }
  7567. }
  7568. },
  7569. [
  7570. {
  7571. name: "Micro",
  7572. height: math.unit(7, "cm")
  7573. },
  7574. {
  7575. name: "Normal",
  7576. height: math.unit(1.89, "m")
  7577. },
  7578. {
  7579. name: "Macro",
  7580. height: math.unit(353, "meters"),
  7581. default: true
  7582. }
  7583. ]
  7584. ))
  7585. characterMakers.push(() => makeCharacter(
  7586. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7587. {
  7588. front: {
  7589. height: math.unit(1.93, "meters"),
  7590. weight: math.unit(83, "kg"),
  7591. name: "Front",
  7592. image: {
  7593. source: "./media/characters/samantha/front.svg"
  7594. }
  7595. },
  7596. frontClothed: {
  7597. height: math.unit(1.93, "meters"),
  7598. weight: math.unit(83, "kg"),
  7599. name: "Front (Clothed)",
  7600. image: {
  7601. source: "./media/characters/samantha/front-clothed.svg"
  7602. }
  7603. },
  7604. back: {
  7605. height: math.unit(1.93, "meters"),
  7606. weight: math.unit(83, "kg"),
  7607. name: "Back",
  7608. image: {
  7609. source: "./media/characters/samantha/back.svg"
  7610. }
  7611. },
  7612. },
  7613. [
  7614. {
  7615. name: "Normal",
  7616. height: math.unit(1.93, "m")
  7617. },
  7618. {
  7619. name: "Macro",
  7620. height: math.unit(74, "meters"),
  7621. default: true
  7622. },
  7623. {
  7624. name: "Macro+",
  7625. height: math.unit(223, "meters"),
  7626. },
  7627. {
  7628. name: "Megamacro",
  7629. height: math.unit(8381, "meters"),
  7630. },
  7631. {
  7632. name: "Megamacro+",
  7633. height: math.unit(12000, "kilometers")
  7634. },
  7635. ]
  7636. ))
  7637. characterMakers.push(() => makeCharacter(
  7638. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7639. {
  7640. front: {
  7641. height: math.unit(1.92, "meters"),
  7642. weight: math.unit(80, "kg"),
  7643. name: "Front",
  7644. image: {
  7645. source: "./media/characters/dr-clay/front.svg"
  7646. }
  7647. },
  7648. frontClothed: {
  7649. height: math.unit(1.92, "meters"),
  7650. weight: math.unit(80, "kg"),
  7651. name: "Front (Clothed)",
  7652. image: {
  7653. source: "./media/characters/dr-clay/front-clothed.svg"
  7654. }
  7655. }
  7656. },
  7657. [
  7658. {
  7659. name: "Normal",
  7660. height: math.unit(1.92, "m")
  7661. },
  7662. {
  7663. name: "Macro",
  7664. height: math.unit(214, "meters"),
  7665. default: true
  7666. },
  7667. {
  7668. name: "Macro+",
  7669. height: math.unit(12.237, "meters"),
  7670. },
  7671. {
  7672. name: "Megamacro",
  7673. height: math.unit(557, "megameters"),
  7674. },
  7675. {
  7676. name: "Unimaginable",
  7677. height: math.unit(120e9, "lightyears")
  7678. },
  7679. ]
  7680. ))
  7681. characterMakers.push(() => makeCharacter(
  7682. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7683. {
  7684. front: {
  7685. height: math.unit(2, "meters"),
  7686. weight: math.unit(80, "kg"),
  7687. name: "Front",
  7688. image: {
  7689. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7690. }
  7691. }
  7692. },
  7693. [
  7694. {
  7695. name: "Teramacro",
  7696. height: math.unit(500000, "lightyears"),
  7697. default: true
  7698. },
  7699. ]
  7700. ))
  7701. characterMakers.push(() => makeCharacter(
  7702. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7703. {
  7704. crux: {
  7705. height: math.unit(2, "meters"),
  7706. weight: math.unit(150, "kg"),
  7707. name: "Crux",
  7708. image: {
  7709. source: "./media/characters/vemus/crux.svg",
  7710. extra: 1074/936,
  7711. bottom: 23/1097
  7712. }
  7713. },
  7714. skunkTanuki: {
  7715. height: math.unit(2, "meters"),
  7716. weight: math.unit(150, "kg"),
  7717. name: "Skunk-Tanuki",
  7718. image: {
  7719. source: "./media/characters/vemus/skunk-tanuki.svg",
  7720. extra: 926/893,
  7721. bottom: 20/946
  7722. }
  7723. },
  7724. },
  7725. [
  7726. {
  7727. name: "Normal",
  7728. height: math.unit(4, "meters"),
  7729. default: true
  7730. },
  7731. {
  7732. name: "Big",
  7733. height: math.unit(8, "meters")
  7734. },
  7735. {
  7736. name: "Macro",
  7737. height: math.unit(100, "meters")
  7738. },
  7739. {
  7740. name: "Macro+",
  7741. height: math.unit(1500, "meters")
  7742. },
  7743. {
  7744. name: "Stellar",
  7745. height: math.unit(14e8, "meters")
  7746. },
  7747. ]
  7748. ))
  7749. characterMakers.push(() => makeCharacter(
  7750. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7751. {
  7752. front: {
  7753. height: math.unit(2, "meters"),
  7754. weight: math.unit(70, "kg"),
  7755. name: "Front",
  7756. image: {
  7757. source: "./media/characters/beherit/front.svg",
  7758. extra: 1234/1109,
  7759. bottom: 55/1289
  7760. }
  7761. }
  7762. },
  7763. [
  7764. {
  7765. name: "Normal",
  7766. height: math.unit(6, "feet")
  7767. },
  7768. {
  7769. name: "Lorg",
  7770. height: math.unit(25, "feet"),
  7771. default: true
  7772. },
  7773. {
  7774. name: "Lorger",
  7775. height: math.unit(75, "feet")
  7776. },
  7777. {
  7778. name: "Macro",
  7779. height: math.unit(200, "meters")
  7780. },
  7781. ]
  7782. ))
  7783. characterMakers.push(() => makeCharacter(
  7784. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7785. {
  7786. front: {
  7787. height: math.unit(2, "meters"),
  7788. weight: math.unit(150, "kg"),
  7789. name: "Front",
  7790. image: {
  7791. source: "./media/characters/everett/front.svg",
  7792. extra: 1017/866,
  7793. bottom: 86/1103
  7794. }
  7795. },
  7796. paw: {
  7797. height: math.unit(2 / 3.6, "meters"),
  7798. name: "Paw",
  7799. image: {
  7800. source: "./media/characters/everett/paw.svg"
  7801. }
  7802. },
  7803. },
  7804. [
  7805. {
  7806. name: "Normal",
  7807. height: math.unit(15, "feet"),
  7808. default: true
  7809. },
  7810. {
  7811. name: "Lorg",
  7812. height: math.unit(70, "feet"),
  7813. default: true
  7814. },
  7815. {
  7816. name: "Lorger",
  7817. height: math.unit(250, "feet")
  7818. },
  7819. {
  7820. name: "Macro",
  7821. height: math.unit(500, "meters")
  7822. },
  7823. ]
  7824. ))
  7825. characterMakers.push(() => makeCharacter(
  7826. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7827. {
  7828. front: {
  7829. height: math.unit(2, "meters"),
  7830. weight: math.unit(86, "kg"),
  7831. name: "Front",
  7832. image: {
  7833. source: "./media/characters/rose/front.svg",
  7834. extra: 1785/1636,
  7835. bottom: 30/1815
  7836. },
  7837. form: "liom",
  7838. default: true
  7839. },
  7840. frontSporty: {
  7841. height: math.unit(2, "meters"),
  7842. weight: math.unit(86, "kg"),
  7843. name: "Front (Sporty)",
  7844. image: {
  7845. source: "./media/characters/rose/front-sporty.svg",
  7846. extra: 350/335,
  7847. bottom: 10/360
  7848. },
  7849. form: "liom"
  7850. },
  7851. frontAlt: {
  7852. height: math.unit(1.6, "meters"),
  7853. weight: math.unit(86, "kg"),
  7854. name: "Front (Alt)",
  7855. image: {
  7856. source: "./media/characters/rose/front-alt.svg",
  7857. extra: 299/283,
  7858. bottom: 3/302
  7859. },
  7860. form: "liom"
  7861. },
  7862. plush: {
  7863. height: math.unit(2, "meters"),
  7864. weight: math.unit(86/3, "kg"),
  7865. name: "Plush",
  7866. image: {
  7867. source: "./media/characters/rose/plush.svg",
  7868. extra: 361/337,
  7869. bottom: 11/372
  7870. },
  7871. form: "plush",
  7872. default: true
  7873. },
  7874. faeStanding: {
  7875. height: math.unit(10, "cm"),
  7876. weight: math.unit(10, "grams"),
  7877. name: "Standing",
  7878. image: {
  7879. source: "./media/characters/rose/fae-standing.svg",
  7880. extra: 1189/1060,
  7881. bottom: 27/1216
  7882. },
  7883. form: "fae",
  7884. default: true
  7885. },
  7886. faeSitting: {
  7887. height: math.unit(5, "cm"),
  7888. weight: math.unit(10, "grams"),
  7889. name: "Sitting",
  7890. image: {
  7891. source: "./media/characters/rose/fae-sitting.svg",
  7892. extra: 737/577,
  7893. bottom: 356/1093
  7894. },
  7895. form: "fae"
  7896. },
  7897. faePaw: {
  7898. height: math.unit(1.35, "cm"),
  7899. name: "Paw",
  7900. image: {
  7901. source: "./media/characters/rose/fae-paw.svg"
  7902. },
  7903. form: "fae"
  7904. },
  7905. },
  7906. [
  7907. {
  7908. name: "True Micro",
  7909. height: math.unit(9, "cm"),
  7910. form: "liom"
  7911. },
  7912. {
  7913. name: "Micro",
  7914. height: math.unit(16, "cm"),
  7915. form: "liom"
  7916. },
  7917. {
  7918. name: "Normal",
  7919. height: math.unit(1.85, "meters"),
  7920. default: true,
  7921. form: "liom"
  7922. },
  7923. {
  7924. name: "Mini-Macro",
  7925. height: math.unit(5, "meters"),
  7926. form: "liom"
  7927. },
  7928. {
  7929. name: "Macro",
  7930. height: math.unit(15, "meters"),
  7931. form: "liom"
  7932. },
  7933. {
  7934. name: "True Macro",
  7935. height: math.unit(40, "meters"),
  7936. form: "liom"
  7937. },
  7938. {
  7939. name: "City Scale",
  7940. height: math.unit(1, "km"),
  7941. form: "liom"
  7942. },
  7943. {
  7944. name: "Plushie",
  7945. height: math.unit(9, "cm"),
  7946. form: "plush",
  7947. default: true
  7948. },
  7949. {
  7950. name: "Fae",
  7951. height: math.unit(10, "cm"),
  7952. form: "fae",
  7953. default: true
  7954. },
  7955. ],
  7956. {
  7957. "liom": {
  7958. name: "Liom"
  7959. },
  7960. "plush": {
  7961. name: "Plush"
  7962. },
  7963. "fae": {
  7964. name: "Fae Fox",
  7965. default: true
  7966. }
  7967. }
  7968. ))
  7969. characterMakers.push(() => makeCharacter(
  7970. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7971. {
  7972. front: {
  7973. height: math.unit(2, "meters"),
  7974. weight: math.unit(350, "lbs"),
  7975. name: "Front",
  7976. image: {
  7977. source: "./media/characters/regal/front.svg"
  7978. }
  7979. },
  7980. back: {
  7981. height: math.unit(2, "meters"),
  7982. weight: math.unit(350, "lbs"),
  7983. name: "Back",
  7984. image: {
  7985. source: "./media/characters/regal/back.svg"
  7986. }
  7987. },
  7988. },
  7989. [
  7990. {
  7991. name: "Macro",
  7992. height: math.unit(350, "feet"),
  7993. default: true
  7994. }
  7995. ]
  7996. ))
  7997. characterMakers.push(() => makeCharacter(
  7998. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7999. {
  8000. front: {
  8001. height: math.unit(4 + 11 / 12, "feet"),
  8002. weight: math.unit(100, "lbs"),
  8003. name: "Front",
  8004. image: {
  8005. source: "./media/characters/opal/front.svg"
  8006. }
  8007. },
  8008. frontAlt: {
  8009. height: math.unit(4 + 11 / 12, "feet"),
  8010. weight: math.unit(100, "lbs"),
  8011. name: "Front (Alt)",
  8012. image: {
  8013. source: "./media/characters/opal/front-alt.svg"
  8014. }
  8015. },
  8016. },
  8017. [
  8018. {
  8019. name: "Small",
  8020. height: math.unit(4 + 11 / 12, "feet")
  8021. },
  8022. {
  8023. name: "Normal",
  8024. height: math.unit(20, "feet"),
  8025. default: true
  8026. },
  8027. {
  8028. name: "Macro",
  8029. height: math.unit(120, "feet")
  8030. },
  8031. {
  8032. name: "Megamacro",
  8033. height: math.unit(80, "miles")
  8034. },
  8035. {
  8036. name: "True Size",
  8037. height: math.unit(100000, "lightyears")
  8038. },
  8039. ]
  8040. ))
  8041. characterMakers.push(() => makeCharacter(
  8042. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  8043. {
  8044. front: {
  8045. height: math.unit(6, "feet"),
  8046. weight: math.unit(200, "lbs"),
  8047. name: "Front",
  8048. image: {
  8049. source: "./media/characters/vector-wuff/front.svg"
  8050. }
  8051. }
  8052. },
  8053. [
  8054. {
  8055. name: "Normal",
  8056. height: math.unit(2.8, "meters")
  8057. },
  8058. {
  8059. name: "Macro",
  8060. height: math.unit(450, "meters"),
  8061. default: true
  8062. },
  8063. {
  8064. name: "Megamacro",
  8065. height: math.unit(15, "kilometers")
  8066. }
  8067. ]
  8068. ))
  8069. characterMakers.push(() => makeCharacter(
  8070. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  8071. {
  8072. front: {
  8073. height: math.unit(6, "feet"),
  8074. weight: math.unit(256, "lbs"),
  8075. name: "Front",
  8076. image: {
  8077. source: "./media/characters/dannik/front.svg"
  8078. }
  8079. }
  8080. },
  8081. [
  8082. {
  8083. name: "Macro",
  8084. height: math.unit(69.57, "meters"),
  8085. default: true
  8086. },
  8087. ]
  8088. ))
  8089. characterMakers.push(() => makeCharacter(
  8090. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  8091. {
  8092. front: {
  8093. height: math.unit(6, "feet"),
  8094. weight: math.unit(120, "lbs"),
  8095. name: "Front",
  8096. image: {
  8097. source: "./media/characters/azura-saharah/front.svg"
  8098. }
  8099. },
  8100. back: {
  8101. height: math.unit(6, "feet"),
  8102. weight: math.unit(120, "lbs"),
  8103. name: "Back",
  8104. image: {
  8105. source: "./media/characters/azura-saharah/back.svg"
  8106. }
  8107. },
  8108. },
  8109. [
  8110. {
  8111. name: "Macro",
  8112. height: math.unit(100, "feet"),
  8113. default: true
  8114. },
  8115. ]
  8116. ))
  8117. characterMakers.push(() => makeCharacter(
  8118. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  8119. {
  8120. side: {
  8121. height: math.unit(5 + 4 / 12, "feet"),
  8122. weight: math.unit(163, "lbs"),
  8123. name: "Side",
  8124. image: {
  8125. source: "./media/characters/kennedy/side.svg"
  8126. }
  8127. }
  8128. },
  8129. [
  8130. {
  8131. name: "Standard Doggo",
  8132. height: math.unit(5 + 4 / 12, "feet")
  8133. },
  8134. {
  8135. name: "Big Doggo",
  8136. height: math.unit(25 + 3 / 12, "feet"),
  8137. default: true
  8138. },
  8139. ]
  8140. ))
  8141. characterMakers.push(() => makeCharacter(
  8142. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  8143. {
  8144. front: {
  8145. height: math.unit(5 + 5/12, "feet"),
  8146. weight: math.unit(100, "lbs"),
  8147. name: "Front",
  8148. image: {
  8149. source: "./media/characters/odios-de-lunar/front.svg",
  8150. extra: 1468/1323,
  8151. bottom: 22/1490
  8152. }
  8153. }
  8154. },
  8155. [
  8156. {
  8157. name: "Micro",
  8158. height: math.unit(3, "inches")
  8159. },
  8160. {
  8161. name: "Normal",
  8162. height: math.unit(5.5, "feet"),
  8163. default: true
  8164. },
  8165. {
  8166. name: "Macro",
  8167. height: math.unit(100, "feet")
  8168. },
  8169. ]
  8170. ))
  8171. characterMakers.push(() => makeCharacter(
  8172. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8173. {
  8174. back: {
  8175. height: math.unit(6, "feet"),
  8176. weight: math.unit(220, "lbs"),
  8177. name: "Back",
  8178. image: {
  8179. source: "./media/characters/mandake/back.svg"
  8180. }
  8181. }
  8182. },
  8183. [
  8184. {
  8185. name: "Normal",
  8186. height: math.unit(7, "feet"),
  8187. default: true
  8188. },
  8189. {
  8190. name: "Macro",
  8191. height: math.unit(78, "feet")
  8192. },
  8193. {
  8194. name: "Macro+",
  8195. height: math.unit(300, "meters")
  8196. },
  8197. {
  8198. name: "Macro++",
  8199. height: math.unit(2400, "feet")
  8200. },
  8201. {
  8202. name: "Megamacro",
  8203. height: math.unit(5167, "meters")
  8204. },
  8205. {
  8206. name: "Gigamacro",
  8207. height: math.unit(41769, "miles")
  8208. },
  8209. ]
  8210. ))
  8211. characterMakers.push(() => makeCharacter(
  8212. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8213. {
  8214. front: {
  8215. height: math.unit(6, "feet"),
  8216. weight: math.unit(120, "lbs"),
  8217. name: "Front",
  8218. image: {
  8219. source: "./media/characters/yozey/front.svg"
  8220. }
  8221. },
  8222. frontAlt: {
  8223. height: math.unit(6, "feet"),
  8224. weight: math.unit(120, "lbs"),
  8225. name: "Front (Alt)",
  8226. image: {
  8227. source: "./media/characters/yozey/front-alt.svg"
  8228. }
  8229. },
  8230. side: {
  8231. height: math.unit(6, "feet"),
  8232. weight: math.unit(120, "lbs"),
  8233. name: "Side",
  8234. image: {
  8235. source: "./media/characters/yozey/side.svg"
  8236. }
  8237. },
  8238. },
  8239. [
  8240. {
  8241. name: "Micro",
  8242. height: math.unit(3, "inches"),
  8243. default: true
  8244. },
  8245. {
  8246. name: "Normal",
  8247. height: math.unit(6, "feet")
  8248. }
  8249. ]
  8250. ))
  8251. characterMakers.push(() => makeCharacter(
  8252. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8253. {
  8254. front: {
  8255. height: math.unit(6, "feet"),
  8256. weight: math.unit(103, "lbs"),
  8257. name: "Front",
  8258. image: {
  8259. source: "./media/characters/valeska-voss/front.svg"
  8260. }
  8261. }
  8262. },
  8263. [
  8264. {
  8265. name: "Mini-Sized Sub",
  8266. height: math.unit(3.1, "inches")
  8267. },
  8268. {
  8269. name: "Mid-Sized Sub",
  8270. height: math.unit(6.2, "inches")
  8271. },
  8272. {
  8273. name: "Full-Sized Sub",
  8274. height: math.unit(9.3, "inches")
  8275. },
  8276. {
  8277. name: "Normal",
  8278. height: math.unit(5 + 2 / 12, "foot"),
  8279. default: true
  8280. },
  8281. ]
  8282. ))
  8283. characterMakers.push(() => makeCharacter(
  8284. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8285. {
  8286. front: {
  8287. height: math.unit(6, "feet"),
  8288. weight: math.unit(160, "lbs"),
  8289. name: "Front",
  8290. image: {
  8291. source: "./media/characters/gene-zeta/front.svg",
  8292. extra: 3006 / 2826,
  8293. bottom: 182 / 3188
  8294. }
  8295. }
  8296. },
  8297. [
  8298. {
  8299. name: "Micro",
  8300. height: math.unit(6, "inches")
  8301. },
  8302. {
  8303. name: "Normal",
  8304. height: math.unit(5 + 11 / 12, "foot"),
  8305. default: true
  8306. },
  8307. {
  8308. name: "Macro",
  8309. height: math.unit(140, "feet")
  8310. },
  8311. {
  8312. name: "Supercharged",
  8313. height: math.unit(2500, "feet")
  8314. },
  8315. ]
  8316. ))
  8317. characterMakers.push(() => makeCharacter(
  8318. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8319. {
  8320. front: {
  8321. height: math.unit(6, "feet"),
  8322. weight: math.unit(350, "lbs"),
  8323. name: "Front",
  8324. image: {
  8325. source: "./media/characters/razinox/front.svg",
  8326. extra: 1686 / 1548,
  8327. bottom: 28.2 / 1868
  8328. }
  8329. },
  8330. back: {
  8331. height: math.unit(6, "feet"),
  8332. weight: math.unit(350, "lbs"),
  8333. name: "Back",
  8334. image: {
  8335. source: "./media/characters/razinox/back.svg",
  8336. extra: 1660 / 1590,
  8337. bottom: 15 / 1665
  8338. }
  8339. },
  8340. },
  8341. [
  8342. {
  8343. name: "Normal",
  8344. height: math.unit(10 + 8 / 12, "foot")
  8345. },
  8346. {
  8347. name: "Minimacro",
  8348. height: math.unit(15, "foot")
  8349. },
  8350. {
  8351. name: "Macro",
  8352. height: math.unit(60, "foot"),
  8353. default: true
  8354. },
  8355. {
  8356. name: "Megamacro",
  8357. height: math.unit(5, "miles")
  8358. },
  8359. {
  8360. name: "Gigamacro",
  8361. height: math.unit(6000, "miles")
  8362. },
  8363. ]
  8364. ))
  8365. characterMakers.push(() => makeCharacter(
  8366. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8367. {
  8368. front: {
  8369. height: math.unit(6, "feet"),
  8370. weight: math.unit(150, "lbs"),
  8371. name: "Front",
  8372. image: {
  8373. source: "./media/characters/cobalt/front.svg"
  8374. }
  8375. }
  8376. },
  8377. [
  8378. {
  8379. name: "Normal",
  8380. height: math.unit(8 + 1 / 12, "foot")
  8381. },
  8382. {
  8383. name: "Macro",
  8384. height: math.unit(111, "foot"),
  8385. default: true
  8386. },
  8387. {
  8388. name: "Supracosmic",
  8389. height: math.unit(1e42, "feet")
  8390. },
  8391. ]
  8392. ))
  8393. characterMakers.push(() => makeCharacter(
  8394. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8395. {
  8396. front: {
  8397. height: math.unit(5, "inches"),
  8398. name: "Front",
  8399. image: {
  8400. source: "./media/characters/amanda/front.svg",
  8401. extra: 926/791,
  8402. bottom: 38/964
  8403. }
  8404. },
  8405. back: {
  8406. height: math.unit(5, "inches"),
  8407. name: "Back",
  8408. image: {
  8409. source: "./media/characters/amanda/back.svg",
  8410. extra: 909/805,
  8411. bottom: 43/952
  8412. }
  8413. },
  8414. },
  8415. [
  8416. {
  8417. name: "Micro",
  8418. height: math.unit(5, "inches"),
  8419. default: true
  8420. },
  8421. ]
  8422. ))
  8423. characterMakers.push(() => makeCharacter(
  8424. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8425. {
  8426. front: {
  8427. height: math.unit(2.75, "meters"),
  8428. weight: math.unit(1200, "lb"),
  8429. name: "Front",
  8430. image: {
  8431. source: "./media/characters/teal/front.svg",
  8432. extra: 2463 / 2320,
  8433. bottom: 166 / 2629
  8434. }
  8435. },
  8436. back: {
  8437. height: math.unit(2.75, "meters"),
  8438. weight: math.unit(1200, "lb"),
  8439. name: "Back",
  8440. image: {
  8441. source: "./media/characters/teal/back.svg",
  8442. extra: 2580 / 2489,
  8443. bottom: 151 / 2731
  8444. }
  8445. },
  8446. sitting: {
  8447. height: math.unit(1.9, "meters"),
  8448. weight: math.unit(1200, "lb"),
  8449. name: "Sitting",
  8450. image: {
  8451. source: "./media/characters/teal/sitting.svg",
  8452. extra: 623 / 590,
  8453. bottom: 121 / 744
  8454. }
  8455. },
  8456. standing: {
  8457. height: math.unit(2.75, "meters"),
  8458. weight: math.unit(1200, "lb"),
  8459. name: "Standing",
  8460. image: {
  8461. source: "./media/characters/teal/standing.svg",
  8462. extra: 923 / 893,
  8463. bottom: 60 / 983
  8464. }
  8465. },
  8466. stretching: {
  8467. height: math.unit(3.65, "meters"),
  8468. weight: math.unit(1200, "lb"),
  8469. name: "Stretching",
  8470. image: {
  8471. source: "./media/characters/teal/stretching.svg",
  8472. extra: 1276 / 1244,
  8473. bottom: 0 / 1276
  8474. }
  8475. },
  8476. legged: {
  8477. height: math.unit(1.3, "meters"),
  8478. weight: math.unit(100, "lb"),
  8479. name: "Legged",
  8480. image: {
  8481. source: "./media/characters/teal/legged.svg",
  8482. extra: 462 / 437,
  8483. bottom: 24 / 486
  8484. }
  8485. },
  8486. naga: {
  8487. height: math.unit(5.4, "meters"),
  8488. weight: math.unit(4000, "lb"),
  8489. name: "Naga",
  8490. image: {
  8491. source: "./media/characters/teal/naga.svg",
  8492. extra: 1902 / 1858,
  8493. bottom: 0 / 1902
  8494. }
  8495. },
  8496. hand: {
  8497. height: math.unit(0.52, "meters"),
  8498. name: "Hand",
  8499. image: {
  8500. source: "./media/characters/teal/hand.svg"
  8501. }
  8502. },
  8503. maw: {
  8504. height: math.unit(0.43, "meters"),
  8505. name: "Maw",
  8506. image: {
  8507. source: "./media/characters/teal/maw.svg"
  8508. }
  8509. },
  8510. slit: {
  8511. height: math.unit(0.25, "meters"),
  8512. name: "Slit",
  8513. image: {
  8514. source: "./media/characters/teal/slit.svg"
  8515. }
  8516. },
  8517. },
  8518. [
  8519. {
  8520. name: "Normal",
  8521. height: math.unit(2.75, "meters"),
  8522. default: true
  8523. },
  8524. {
  8525. name: "Macro",
  8526. height: math.unit(300, "feet")
  8527. },
  8528. {
  8529. name: "Macro+",
  8530. height: math.unit(2000, "feet")
  8531. },
  8532. ]
  8533. ))
  8534. characterMakers.push(() => makeCharacter(
  8535. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8536. {
  8537. frontCat: {
  8538. height: math.unit(6, "feet"),
  8539. weight: math.unit(180, "lbs"),
  8540. name: "Front (Cat)",
  8541. image: {
  8542. source: "./media/characters/ravin-amulet/front-cat.svg"
  8543. }
  8544. },
  8545. frontCatAlt: {
  8546. height: math.unit(6, "feet"),
  8547. weight: math.unit(180, "lbs"),
  8548. name: "Front (Alt, Cat)",
  8549. image: {
  8550. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8551. }
  8552. },
  8553. frontWerewolf: {
  8554. height: math.unit(6 * 1.2, "feet"),
  8555. weight: math.unit(225, "lbs"),
  8556. name: "Front (Werewolf)",
  8557. image: {
  8558. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8559. }
  8560. },
  8561. backWerewolf: {
  8562. height: math.unit(6 * 1.2, "feet"),
  8563. weight: math.unit(225, "lbs"),
  8564. name: "Back (Werewolf)",
  8565. image: {
  8566. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8567. }
  8568. },
  8569. },
  8570. [
  8571. {
  8572. name: "Nano",
  8573. height: math.unit(1, "micrometer")
  8574. },
  8575. {
  8576. name: "Micro",
  8577. height: math.unit(1, "inch")
  8578. },
  8579. {
  8580. name: "Normal",
  8581. height: math.unit(6, "feet"),
  8582. default: true
  8583. },
  8584. {
  8585. name: "Macro",
  8586. height: math.unit(60, "feet")
  8587. }
  8588. ]
  8589. ))
  8590. characterMakers.push(() => makeCharacter(
  8591. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8592. {
  8593. front: {
  8594. height: math.unit(6, "feet"),
  8595. weight: math.unit(165, "lbs"),
  8596. name: "Front",
  8597. image: {
  8598. source: "./media/characters/fluoresce/front.svg"
  8599. }
  8600. }
  8601. },
  8602. [
  8603. {
  8604. name: "Micro",
  8605. height: math.unit(6, "cm")
  8606. },
  8607. {
  8608. name: "Normal",
  8609. height: math.unit(5 + 7 / 12, "feet"),
  8610. default: true
  8611. },
  8612. {
  8613. name: "Macro",
  8614. height: math.unit(56, "feet")
  8615. },
  8616. {
  8617. name: "Megamacro",
  8618. height: math.unit(1.9, "miles")
  8619. },
  8620. ]
  8621. ))
  8622. characterMakers.push(() => makeCharacter(
  8623. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8624. {
  8625. front: {
  8626. height: math.unit(9 + 6 / 12, "feet"),
  8627. weight: math.unit(523, "lbs"),
  8628. name: "Side",
  8629. image: {
  8630. source: "./media/characters/aurora/side.svg",
  8631. extra: 474/393,
  8632. bottom: 5/479
  8633. }
  8634. }
  8635. },
  8636. [
  8637. {
  8638. name: "Normal",
  8639. height: math.unit(9 + 6 / 12, "feet")
  8640. },
  8641. {
  8642. name: "Macro",
  8643. height: math.unit(96, "feet"),
  8644. default: true
  8645. },
  8646. {
  8647. name: "Macro+",
  8648. height: math.unit(243, "feet")
  8649. },
  8650. ]
  8651. ))
  8652. characterMakers.push(() => makeCharacter(
  8653. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8654. {
  8655. front: {
  8656. height: math.unit(194, "cm"),
  8657. weight: math.unit(90, "kg"),
  8658. name: "Front",
  8659. image: {
  8660. source: "./media/characters/ranek/front.svg",
  8661. extra: 1862/1791,
  8662. bottom: 80/1942
  8663. }
  8664. },
  8665. back: {
  8666. height: math.unit(194, "cm"),
  8667. weight: math.unit(90, "kg"),
  8668. name: "Back",
  8669. image: {
  8670. source: "./media/characters/ranek/back.svg",
  8671. extra: 1853/1787,
  8672. bottom: 74/1927
  8673. }
  8674. },
  8675. feral: {
  8676. height: math.unit(30, "cm"),
  8677. weight: math.unit(1.6, "lbs"),
  8678. name: "Feral",
  8679. image: {
  8680. source: "./media/characters/ranek/feral.svg",
  8681. extra: 990/631,
  8682. bottom: 29/1019
  8683. }
  8684. },
  8685. },
  8686. [
  8687. {
  8688. name: "Normal",
  8689. height: math.unit(194, "cm"),
  8690. default: true
  8691. },
  8692. {
  8693. name: "Macro",
  8694. height: math.unit(100, "meters")
  8695. },
  8696. ]
  8697. ))
  8698. characterMakers.push(() => makeCharacter(
  8699. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8700. {
  8701. front: {
  8702. height: math.unit(5 + 6 / 12, "feet"),
  8703. weight: math.unit(153, "lbs"),
  8704. name: "Front",
  8705. image: {
  8706. source: "./media/characters/andrew-cooper/front.svg"
  8707. }
  8708. },
  8709. },
  8710. [
  8711. {
  8712. name: "Nano",
  8713. height: math.unit(1, "mm")
  8714. },
  8715. {
  8716. name: "Micro",
  8717. height: math.unit(2, "inches")
  8718. },
  8719. {
  8720. name: "Normal",
  8721. height: math.unit(5 + 6 / 12, "feet"),
  8722. default: true
  8723. }
  8724. ]
  8725. ))
  8726. characterMakers.push(() => makeCharacter(
  8727. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8728. {
  8729. front: {
  8730. height: math.unit(6, "feet"),
  8731. weight: math.unit(180, "lbs"),
  8732. name: "Front",
  8733. image: {
  8734. source: "./media/characters/akane-sato/front.svg",
  8735. extra: 1219 / 1140
  8736. }
  8737. },
  8738. back: {
  8739. height: math.unit(6, "feet"),
  8740. weight: math.unit(180, "lbs"),
  8741. name: "Back",
  8742. image: {
  8743. source: "./media/characters/akane-sato/back.svg",
  8744. extra: 1219 / 1170
  8745. }
  8746. },
  8747. },
  8748. [
  8749. {
  8750. name: "Normal",
  8751. height: math.unit(2.5, "meters")
  8752. },
  8753. {
  8754. name: "Macro",
  8755. height: math.unit(250, "meters"),
  8756. default: true
  8757. },
  8758. {
  8759. name: "Megamacro",
  8760. height: math.unit(25, "km")
  8761. },
  8762. ]
  8763. ))
  8764. characterMakers.push(() => makeCharacter(
  8765. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8766. {
  8767. front: {
  8768. height: math.unit(6, "feet"),
  8769. weight: math.unit(65, "kg"),
  8770. name: "Front",
  8771. image: {
  8772. source: "./media/characters/rook/front.svg",
  8773. extra: 960 / 950
  8774. }
  8775. }
  8776. },
  8777. [
  8778. {
  8779. name: "Normal",
  8780. height: math.unit(8.8, "feet")
  8781. },
  8782. {
  8783. name: "Macro",
  8784. height: math.unit(88, "feet"),
  8785. default: true
  8786. },
  8787. {
  8788. name: "Megamacro",
  8789. height: math.unit(8, "miles")
  8790. },
  8791. ]
  8792. ))
  8793. characterMakers.push(() => makeCharacter(
  8794. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8795. {
  8796. front: {
  8797. height: math.unit(12 + 2 / 12, "feet"),
  8798. weight: math.unit(808, "lbs"),
  8799. name: "Front",
  8800. image: {
  8801. source: "./media/characters/prodigy/front.svg"
  8802. }
  8803. }
  8804. },
  8805. [
  8806. {
  8807. name: "Normal",
  8808. height: math.unit(12 + 2 / 12, "feet"),
  8809. default: true
  8810. },
  8811. {
  8812. name: "Macro",
  8813. height: math.unit(143, "feet")
  8814. },
  8815. {
  8816. name: "Macro+",
  8817. height: math.unit(400, "feet")
  8818. },
  8819. ]
  8820. ))
  8821. characterMakers.push(() => makeCharacter(
  8822. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8823. {
  8824. front: {
  8825. height: math.unit(6, "feet"),
  8826. weight: math.unit(225, "lbs"),
  8827. name: "Front",
  8828. image: {
  8829. source: "./media/characters/daniel/front.svg"
  8830. }
  8831. },
  8832. leaning: {
  8833. height: math.unit(6, "feet"),
  8834. weight: math.unit(225, "lbs"),
  8835. name: "Leaning",
  8836. image: {
  8837. source: "./media/characters/daniel/leaning.svg"
  8838. }
  8839. },
  8840. },
  8841. [
  8842. {
  8843. name: "Macro",
  8844. height: math.unit(1000, "feet"),
  8845. default: true
  8846. },
  8847. ]
  8848. ))
  8849. characterMakers.push(() => makeCharacter(
  8850. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8851. {
  8852. front: {
  8853. height: math.unit(6, "feet"),
  8854. weight: math.unit(88, "lbs"),
  8855. name: "Front",
  8856. image: {
  8857. source: "./media/characters/chiros/front.svg",
  8858. extra: 306 / 226
  8859. }
  8860. },
  8861. side: {
  8862. height: math.unit(6, "feet"),
  8863. weight: math.unit(88, "lbs"),
  8864. name: "Side",
  8865. image: {
  8866. source: "./media/characters/chiros/side.svg",
  8867. extra: 306 / 226
  8868. }
  8869. },
  8870. },
  8871. [
  8872. {
  8873. name: "Normal",
  8874. height: math.unit(6, "cm"),
  8875. default: true
  8876. },
  8877. ]
  8878. ))
  8879. characterMakers.push(() => makeCharacter(
  8880. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8881. {
  8882. front: {
  8883. height: math.unit(6, "feet"),
  8884. weight: math.unit(100, "lbs"),
  8885. name: "Front",
  8886. image: {
  8887. source: "./media/characters/selka/front.svg",
  8888. extra: 947 / 887
  8889. }
  8890. }
  8891. },
  8892. [
  8893. {
  8894. name: "Normal",
  8895. height: math.unit(5, "cm"),
  8896. default: true
  8897. },
  8898. ]
  8899. ))
  8900. characterMakers.push(() => makeCharacter(
  8901. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8902. {
  8903. front: {
  8904. height: math.unit(8 + 3 / 12, "feet"),
  8905. weight: math.unit(424, "lbs"),
  8906. name: "Front",
  8907. image: {
  8908. source: "./media/characters/verin/front.svg",
  8909. extra: 1845 / 1550
  8910. }
  8911. },
  8912. frontArmored: {
  8913. height: math.unit(8 + 3 / 12, "feet"),
  8914. weight: math.unit(424, "lbs"),
  8915. name: "Front (Armored)",
  8916. image: {
  8917. source: "./media/characters/verin/front-armor.svg",
  8918. extra: 1845 / 1550,
  8919. bottom: 0.01
  8920. }
  8921. },
  8922. back: {
  8923. height: math.unit(8 + 3 / 12, "feet"),
  8924. weight: math.unit(424, "lbs"),
  8925. name: "Back",
  8926. image: {
  8927. source: "./media/characters/verin/back.svg",
  8928. bottom: 0.1,
  8929. extra: 1
  8930. }
  8931. },
  8932. foot: {
  8933. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8934. name: "Foot",
  8935. image: {
  8936. source: "./media/characters/verin/foot.svg"
  8937. }
  8938. },
  8939. },
  8940. [
  8941. {
  8942. name: "Normal",
  8943. height: math.unit(8 + 3 / 12, "feet")
  8944. },
  8945. {
  8946. name: "Minimacro",
  8947. height: math.unit(21, "feet"),
  8948. default: true
  8949. },
  8950. {
  8951. name: "Macro",
  8952. height: math.unit(626, "feet")
  8953. },
  8954. ]
  8955. ))
  8956. characterMakers.push(() => makeCharacter(
  8957. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8958. {
  8959. front: {
  8960. height: math.unit(2.718, "meters"),
  8961. weight: math.unit(150, "lbs"),
  8962. name: "Front",
  8963. image: {
  8964. source: "./media/characters/sovrim-terraquian/front.svg",
  8965. extra: 1752/1689,
  8966. bottom: 36/1788
  8967. }
  8968. },
  8969. back: {
  8970. height: math.unit(2.718, "meters"),
  8971. weight: math.unit(150, "lbs"),
  8972. name: "Back",
  8973. image: {
  8974. source: "./media/characters/sovrim-terraquian/back.svg",
  8975. extra: 1698/1657,
  8976. bottom: 58/1756
  8977. }
  8978. },
  8979. tongue: {
  8980. height: math.unit(2.865, "feet"),
  8981. name: "Tongue",
  8982. image: {
  8983. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8984. }
  8985. },
  8986. hand: {
  8987. height: math.unit(1.61, "feet"),
  8988. name: "Hand",
  8989. image: {
  8990. source: "./media/characters/sovrim-terraquian/hand.svg"
  8991. }
  8992. },
  8993. foot: {
  8994. height: math.unit(1.05, "feet"),
  8995. name: "Foot",
  8996. image: {
  8997. source: "./media/characters/sovrim-terraquian/foot.svg"
  8998. }
  8999. },
  9000. footAlt: {
  9001. height: math.unit(0.88, "feet"),
  9002. name: "Foot (Alt)",
  9003. image: {
  9004. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  9005. }
  9006. },
  9007. },
  9008. [
  9009. {
  9010. name: "Micro",
  9011. height: math.unit(2, "inches")
  9012. },
  9013. {
  9014. name: "Small",
  9015. height: math.unit(1, "meter")
  9016. },
  9017. {
  9018. name: "Normal",
  9019. height: math.unit(Math.E, "meters"),
  9020. default: true
  9021. },
  9022. {
  9023. name: "Macro",
  9024. height: math.unit(20, "meters")
  9025. },
  9026. {
  9027. name: "Macro+",
  9028. height: math.unit(400, "meters")
  9029. },
  9030. ]
  9031. ))
  9032. characterMakers.push(() => makeCharacter(
  9033. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  9034. {
  9035. front: {
  9036. height: math.unit(7, "feet"),
  9037. weight: math.unit(489, "lbs"),
  9038. name: "Front",
  9039. image: {
  9040. source: "./media/characters/reece-silvermane/front.svg",
  9041. bottom: 0.02,
  9042. extra: 1
  9043. }
  9044. },
  9045. },
  9046. [
  9047. {
  9048. name: "Macro",
  9049. height: math.unit(1.5, "miles"),
  9050. default: true
  9051. },
  9052. ]
  9053. ))
  9054. characterMakers.push(() => makeCharacter(
  9055. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  9056. {
  9057. front: {
  9058. height: math.unit(6, "feet"),
  9059. weight: math.unit(78, "kg"),
  9060. name: "Front",
  9061. image: {
  9062. source: "./media/characters/kane/front.svg",
  9063. extra: 978 / 899
  9064. }
  9065. },
  9066. back: {
  9067. height: math.unit(6, "feet"),
  9068. weight: math.unit(78, "kg"),
  9069. name: "Back",
  9070. image: {
  9071. source: "./media/characters/kane/back.svg",
  9072. extra: 1966/1800,
  9073. bottom: 0/1966
  9074. }
  9075. },
  9076. head: {
  9077. height: math.unit(1.4, "feet"),
  9078. name: "Head",
  9079. image: {
  9080. source: "./media/characters/kane/head.svg"
  9081. }
  9082. },
  9083. },
  9084. [
  9085. {
  9086. name: "Normal",
  9087. height: math.unit(2.1, "m"),
  9088. },
  9089. {
  9090. name: "Macro",
  9091. height: math.unit(1, "km"),
  9092. default: true
  9093. },
  9094. ]
  9095. ))
  9096. characterMakers.push(() => makeCharacter(
  9097. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  9098. {
  9099. front: {
  9100. height: math.unit(6, "feet"),
  9101. weight: math.unit(200, "kg"),
  9102. name: "Front",
  9103. image: {
  9104. source: "./media/characters/tegon/front.svg",
  9105. bottom: 0.01,
  9106. extra: 1
  9107. }
  9108. },
  9109. },
  9110. [
  9111. {
  9112. name: "Micro",
  9113. height: math.unit(1, "inch")
  9114. },
  9115. {
  9116. name: "Normal",
  9117. height: math.unit(6 + 3 / 12, "feet"),
  9118. default: true
  9119. },
  9120. {
  9121. name: "Macro",
  9122. height: math.unit(300, "feet")
  9123. },
  9124. {
  9125. name: "Megamacro",
  9126. height: math.unit(69, "miles")
  9127. },
  9128. ]
  9129. ))
  9130. characterMakers.push(() => makeCharacter(
  9131. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  9132. {
  9133. side: {
  9134. height: math.unit(6, "feet"),
  9135. weight: math.unit(2304, "lbs"),
  9136. name: "Side",
  9137. image: {
  9138. source: "./media/characters/arcturax/side.svg",
  9139. extra: 790 / 376,
  9140. bottom: 0.01
  9141. }
  9142. },
  9143. },
  9144. [
  9145. {
  9146. name: "Micro",
  9147. height: math.unit(2, "inch")
  9148. },
  9149. {
  9150. name: "Normal",
  9151. height: math.unit(6, "feet")
  9152. },
  9153. {
  9154. name: "Macro",
  9155. height: math.unit(39, "feet"),
  9156. default: true
  9157. },
  9158. {
  9159. name: "Megamacro",
  9160. height: math.unit(7, "miles")
  9161. },
  9162. ]
  9163. ))
  9164. characterMakers.push(() => makeCharacter(
  9165. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  9166. {
  9167. front: {
  9168. height: math.unit(6, "feet"),
  9169. weight: math.unit(50, "lbs"),
  9170. name: "Front",
  9171. image: {
  9172. source: "./media/characters/sentri/front.svg",
  9173. extra: 1750 / 1570,
  9174. bottom: 0.025
  9175. }
  9176. },
  9177. frontAlt: {
  9178. height: math.unit(6, "feet"),
  9179. weight: math.unit(50, "lbs"),
  9180. name: "Front (Alt)",
  9181. image: {
  9182. source: "./media/characters/sentri/front-alt.svg",
  9183. extra: 1750 / 1570,
  9184. bottom: 0.025
  9185. }
  9186. },
  9187. },
  9188. [
  9189. {
  9190. name: "Normal",
  9191. height: math.unit(15, "feet"),
  9192. default: true
  9193. },
  9194. {
  9195. name: "Macro",
  9196. height: math.unit(2500, "feet")
  9197. }
  9198. ]
  9199. ))
  9200. characterMakers.push(() => makeCharacter(
  9201. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9202. {
  9203. front: {
  9204. height: math.unit(5 + 8 / 12, "feet"),
  9205. weight: math.unit(130, "lbs"),
  9206. name: "Front",
  9207. image: {
  9208. source: "./media/characters/corvin/front.svg",
  9209. extra: 1803 / 1629
  9210. }
  9211. },
  9212. frontShirt: {
  9213. height: math.unit(5 + 8 / 12, "feet"),
  9214. weight: math.unit(130, "lbs"),
  9215. name: "Front (Shirt)",
  9216. image: {
  9217. source: "./media/characters/corvin/front-shirt.svg",
  9218. extra: 1803 / 1629
  9219. }
  9220. },
  9221. frontPoncho: {
  9222. height: math.unit(5 + 8 / 12, "feet"),
  9223. weight: math.unit(130, "lbs"),
  9224. name: "Front (Poncho)",
  9225. image: {
  9226. source: "./media/characters/corvin/front-poncho.svg",
  9227. extra: 1803 / 1629
  9228. }
  9229. },
  9230. side: {
  9231. height: math.unit(5 + 8 / 12, "feet"),
  9232. weight: math.unit(130, "lbs"),
  9233. name: "Side",
  9234. image: {
  9235. source: "./media/characters/corvin/side.svg",
  9236. extra: 1012 / 945
  9237. }
  9238. },
  9239. back: {
  9240. height: math.unit(5 + 8 / 12, "feet"),
  9241. weight: math.unit(130, "lbs"),
  9242. name: "Back",
  9243. image: {
  9244. source: "./media/characters/corvin/back.svg",
  9245. extra: 1803 / 1629
  9246. }
  9247. },
  9248. },
  9249. [
  9250. {
  9251. name: "Micro",
  9252. height: math.unit(3, "inches")
  9253. },
  9254. {
  9255. name: "Normal",
  9256. height: math.unit(5 + 8 / 12, "feet")
  9257. },
  9258. {
  9259. name: "Macro",
  9260. height: math.unit(300, "feet"),
  9261. default: true
  9262. },
  9263. {
  9264. name: "Megamacro",
  9265. height: math.unit(500, "miles")
  9266. }
  9267. ]
  9268. ))
  9269. characterMakers.push(() => makeCharacter(
  9270. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9271. {
  9272. front: {
  9273. height: math.unit(6, "feet"),
  9274. weight: math.unit(135, "lbs"),
  9275. name: "Front",
  9276. image: {
  9277. source: "./media/characters/q/front.svg",
  9278. extra: 854 / 752,
  9279. bottom: 0.005
  9280. }
  9281. },
  9282. back: {
  9283. height: math.unit(6, "feet"),
  9284. weight: math.unit(130, "lbs"),
  9285. name: "Back",
  9286. image: {
  9287. source: "./media/characters/q/back.svg",
  9288. extra: 854 / 752
  9289. }
  9290. },
  9291. },
  9292. [
  9293. {
  9294. name: "Macro",
  9295. height: math.unit(90, "feet"),
  9296. default: true
  9297. },
  9298. {
  9299. name: "Extra Macro",
  9300. height: math.unit(300, "feet"),
  9301. },
  9302. {
  9303. name: "BIG WALF",
  9304. height: math.unit(750, "feet"),
  9305. },
  9306. ]
  9307. ))
  9308. characterMakers.push(() => makeCharacter(
  9309. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9310. {
  9311. front: {
  9312. height: math.unit(3, "feet"),
  9313. weight: math.unit(28, "lbs"),
  9314. name: "Front",
  9315. image: {
  9316. source: "./media/characters/citrine/front.svg"
  9317. }
  9318. }
  9319. },
  9320. [
  9321. {
  9322. name: "Normal",
  9323. height: math.unit(3, "feet"),
  9324. default: true
  9325. }
  9326. ]
  9327. ))
  9328. characterMakers.push(() => makeCharacter(
  9329. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9330. {
  9331. front: {
  9332. height: math.unit(14, "feet"),
  9333. weight: math.unit(1450, "kg"),
  9334. preyCapacity: math.unit(15, "people"),
  9335. name: "Front",
  9336. image: {
  9337. source: "./media/characters/aura-starwind/front.svg",
  9338. extra: 1440/1327,
  9339. bottom: 11/1451
  9340. }
  9341. },
  9342. side: {
  9343. height: math.unit(14, "feet"),
  9344. weight: math.unit(1450, "kg"),
  9345. preyCapacity: math.unit(15, "people"),
  9346. name: "Side",
  9347. image: {
  9348. source: "./media/characters/aura-starwind/side.svg",
  9349. extra: 1654 / 1497
  9350. }
  9351. },
  9352. taur: {
  9353. height: math.unit(18, "feet"),
  9354. weight: math.unit(5500, "kg"),
  9355. preyCapacity: math.unit(50, "people"),
  9356. name: "Taur",
  9357. image: {
  9358. source: "./media/characters/aura-starwind/taur.svg",
  9359. extra: 1760 / 1650
  9360. }
  9361. },
  9362. feral: {
  9363. height: math.unit(46, "feet"),
  9364. weight: math.unit(25000, "kg"),
  9365. preyCapacity: math.unit(120, "people"),
  9366. name: "Feral",
  9367. image: {
  9368. source: "./media/characters/aura-starwind/feral.svg"
  9369. }
  9370. },
  9371. },
  9372. [
  9373. {
  9374. name: "Normal",
  9375. height: math.unit(14, "feet"),
  9376. default: true
  9377. },
  9378. {
  9379. name: "Macro",
  9380. height: math.unit(50, "meters")
  9381. },
  9382. {
  9383. name: "Megamacro",
  9384. height: math.unit(5000, "meters")
  9385. },
  9386. {
  9387. name: "Gigamacro",
  9388. height: math.unit(100000, "kilometers")
  9389. },
  9390. ]
  9391. ))
  9392. characterMakers.push(() => makeCharacter(
  9393. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9394. {
  9395. front: {
  9396. height: math.unit(2 + 7 / 12, "feet"),
  9397. weight: math.unit(32, "lbs"),
  9398. name: "Front",
  9399. image: {
  9400. source: "./media/characters/rivet/front.svg",
  9401. extra: 1716 / 1658,
  9402. bottom: 0.03
  9403. }
  9404. },
  9405. foot: {
  9406. height: math.unit(0.551, "feet"),
  9407. name: "Rivet's Foot",
  9408. image: {
  9409. source: "./media/characters/rivet/foot.svg"
  9410. },
  9411. rename: true
  9412. }
  9413. },
  9414. [
  9415. {
  9416. name: "Micro",
  9417. height: math.unit(1.5, "inches"),
  9418. },
  9419. {
  9420. name: "Normal",
  9421. height: math.unit(2 + 7 / 12, "feet"),
  9422. default: true
  9423. },
  9424. {
  9425. name: "Macro",
  9426. height: math.unit(85, "feet")
  9427. },
  9428. {
  9429. name: "Megamacro",
  9430. height: math.unit(2.2, "km")
  9431. }
  9432. ]
  9433. ))
  9434. characterMakers.push(() => makeCharacter(
  9435. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9436. {
  9437. front: {
  9438. height: math.unit(5 + 9 / 12, "feet"),
  9439. weight: math.unit(150, "lbs"),
  9440. name: "Front",
  9441. image: {
  9442. source: "./media/characters/coffee/front.svg",
  9443. extra: 946/880,
  9444. bottom: 66/1012
  9445. }
  9446. },
  9447. foot: {
  9448. height: math.unit(1.29, "feet"),
  9449. name: "Foot",
  9450. image: {
  9451. source: "./media/characters/coffee/foot.svg"
  9452. }
  9453. },
  9454. },
  9455. [
  9456. {
  9457. name: "Micro",
  9458. height: math.unit(2, "inches"),
  9459. },
  9460. {
  9461. name: "Normal",
  9462. height: math.unit(5 + 9 / 12, "feet"),
  9463. default: true
  9464. },
  9465. {
  9466. name: "Macro",
  9467. height: math.unit(800, "feet")
  9468. },
  9469. {
  9470. name: "Megamacro",
  9471. height: math.unit(25, "miles")
  9472. }
  9473. ]
  9474. ))
  9475. characterMakers.push(() => makeCharacter(
  9476. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9477. {
  9478. front: {
  9479. height: math.unit(6, "feet"),
  9480. weight: math.unit(200, "lbs"),
  9481. name: "Front",
  9482. image: {
  9483. source: "./media/characters/chari-gal/front.svg",
  9484. extra: 735/649,
  9485. bottom: 55/790
  9486. },
  9487. form: "normal",
  9488. default: true
  9489. },
  9490. back: {
  9491. height: math.unit(6, "feet"),
  9492. weight: math.unit(200, "lb"),
  9493. name: "Back",
  9494. image: {
  9495. source: "./media/characters/chari-gal/back.svg",
  9496. extra: 762/666,
  9497. bottom: 31/793
  9498. },
  9499. form: "normal"
  9500. },
  9501. mouth: {
  9502. height: math.unit(1.35, "feet"),
  9503. name: "Mouth",
  9504. image: {
  9505. source: "./media/characters/chari-gal/mouth.svg"
  9506. },
  9507. form: "normal"
  9508. },
  9509. gigantamax: {
  9510. height: math.unit(6 * 16, "feet"),
  9511. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9512. name: "Gigantamax",
  9513. image: {
  9514. source: "./media/characters/chari-gal/gigantamax-front.svg",
  9515. extra: 1507/1149,
  9516. bottom: 254/1761
  9517. },
  9518. form: "gigantamax",
  9519. default: true
  9520. },
  9521. },
  9522. [
  9523. {
  9524. name: "Normal",
  9525. height: math.unit(5 + 7 / 12, "feet"),
  9526. form: "normal",
  9527. },
  9528. {
  9529. name: "Macro",
  9530. height: math.unit(200, "feet"),
  9531. default: true,
  9532. form: "normal"
  9533. },
  9534. {
  9535. name: "Normal",
  9536. height: math.unit(16 * (5 + 7 / 12), "feet"),
  9537. form: "gigantamax",
  9538. },
  9539. {
  9540. name: "Macro",
  9541. height: math.unit(16 * 200, "feet"),
  9542. default: true,
  9543. form: "gigantamax"
  9544. },
  9545. ],
  9546. {
  9547. "normal": {
  9548. name: "Normal",
  9549. default: true
  9550. },
  9551. "gigantamax": {
  9552. name: "Gigantamax",
  9553. },
  9554. }
  9555. ))
  9556. characterMakers.push(() => makeCharacter(
  9557. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9558. {
  9559. front: {
  9560. height: math.unit(6, "feet"),
  9561. weight: math.unit(150, "lbs"),
  9562. name: "Front",
  9563. image: {
  9564. source: "./media/characters/nova/front.svg",
  9565. extra: 5000 / 4722,
  9566. bottom: 0.02
  9567. }
  9568. }
  9569. },
  9570. [
  9571. {
  9572. name: "Micro-",
  9573. height: math.unit(0.8, "inches")
  9574. },
  9575. {
  9576. name: "Micro",
  9577. height: math.unit(2, "inches"),
  9578. default: true
  9579. },
  9580. ]
  9581. ))
  9582. characterMakers.push(() => makeCharacter(
  9583. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9584. {
  9585. koboldFront: {
  9586. height: math.unit(3 + 1 / 12, "feet"),
  9587. weight: math.unit(21.7, "lbs"),
  9588. name: "Front",
  9589. image: {
  9590. source: "./media/characters/argent/kobold-front.svg",
  9591. extra: 1471 / 1331,
  9592. bottom: 100.8 / 1575.5
  9593. },
  9594. form: "kobold",
  9595. default: true
  9596. },
  9597. dragonFront: {
  9598. height: math.unit(75, "inches"),
  9599. name: "Front",
  9600. image: {
  9601. source: "./media/characters/argent/dragon-front.svg",
  9602. extra: 1389/1248,
  9603. bottom: 54/1443
  9604. },
  9605. form: "dragon",
  9606. },
  9607. dragonBack: {
  9608. height: math.unit(75, "inches"),
  9609. name: "Back",
  9610. image: {
  9611. source: "./media/characters/argent/dragon-back.svg",
  9612. extra: 1399/1271,
  9613. bottom: 23/1422
  9614. },
  9615. form: "dragon",
  9616. },
  9617. dragonDressed: {
  9618. height: math.unit(75, "inches"),
  9619. name: "Dressed",
  9620. image: {
  9621. source: "./media/characters/argent/dragon-dressed.svg",
  9622. extra: 1350/1215,
  9623. bottom: 26/1376
  9624. },
  9625. form: "dragon"
  9626. },
  9627. dragonHead: {
  9628. height: math.unit(23.5, "inches"),
  9629. name: "Head",
  9630. image: {
  9631. source: "./media/characters/argent/dragon-head.svg"
  9632. },
  9633. form: "dragon",
  9634. },
  9635. },
  9636. [
  9637. {
  9638. name: "Micro",
  9639. height: math.unit(2, "inches"),
  9640. form: "kobold",
  9641. },
  9642. {
  9643. name: "Normal",
  9644. height: math.unit(3 + 1 / 12, "feet"),
  9645. form: "kobold",
  9646. default: true
  9647. },
  9648. {
  9649. name: "Macro",
  9650. height: math.unit(120, "feet"),
  9651. form: "kobold",
  9652. },
  9653. {
  9654. name: "Speck",
  9655. height: math.unit(1, "mm"),
  9656. form: "dragon",
  9657. },
  9658. {
  9659. name: "Tiny",
  9660. height: math.unit(1, "cm"),
  9661. form: "dragon",
  9662. },
  9663. {
  9664. name: "Micro",
  9665. height: math.unit(5, "cm"),
  9666. form: "dragon",
  9667. },
  9668. {
  9669. name: "Normal",
  9670. height: math.unit(75, "inches"),
  9671. form: "dragon",
  9672. default: true
  9673. },
  9674. {
  9675. name: "Extra Tall",
  9676. height: math.unit(9, "feet"),
  9677. form: "dragon",
  9678. },
  9679. {
  9680. name: "Inconvenient",
  9681. height: math.unit(5, "meters"),
  9682. form: "dragon",
  9683. },
  9684. {
  9685. name: "Macro",
  9686. height: math.unit(70, "meters"),
  9687. form: "dragon",
  9688. },
  9689. {
  9690. name: "Macro+",
  9691. height: math.unit(250, "meters"),
  9692. form: "dragon",
  9693. },
  9694. {
  9695. name: "Megamacro",
  9696. height: math.unit(20, "km"),
  9697. form: "dragon",
  9698. },
  9699. {
  9700. name: "Mountainous",
  9701. height: math.unit(100, "km"),
  9702. form: "dragon",
  9703. },
  9704. {
  9705. name: "Continental",
  9706. height: math.unit(2, "megameters"),
  9707. form: "dragon",
  9708. },
  9709. {
  9710. name: "Too Big",
  9711. height: math.unit(900, "megameters"),
  9712. form: "dragon",
  9713. },
  9714. ],
  9715. {
  9716. "kobold": {
  9717. name: "Kobold",
  9718. default: true
  9719. },
  9720. "dragon": {
  9721. name: "Dragon",
  9722. },
  9723. }
  9724. ))
  9725. characterMakers.push(() => makeCharacter(
  9726. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9727. {
  9728. lamp: {
  9729. height: math.unit(7 * 1559 / 989, "feet"),
  9730. name: "Magic Lamp",
  9731. image: {
  9732. source: "./media/characters/mira-al-cul/lamp.svg",
  9733. extra: 1617 / 1559
  9734. }
  9735. },
  9736. front: {
  9737. height: math.unit(7, "feet"),
  9738. name: "Front",
  9739. image: {
  9740. source: "./media/characters/mira-al-cul/front.svg",
  9741. extra: 1044 / 990
  9742. }
  9743. },
  9744. },
  9745. [
  9746. {
  9747. name: "Heavily Restricted",
  9748. height: math.unit(7 * 1559 / 989, "feet")
  9749. },
  9750. {
  9751. name: "Freshly Freed",
  9752. height: math.unit(50 * 1559 / 989, "feet")
  9753. },
  9754. {
  9755. name: "World Encompassing",
  9756. height: math.unit(10000 * 1559 / 989, "miles")
  9757. },
  9758. {
  9759. name: "Galactic",
  9760. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9761. },
  9762. {
  9763. name: "Palmed Universe",
  9764. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9765. default: true
  9766. },
  9767. {
  9768. name: "Multiversal Matriarch",
  9769. height: math.unit(8.87e10, "yottameters")
  9770. },
  9771. {
  9772. name: "Void Mother",
  9773. height: math.unit(3.14e110, "yottaparsecs")
  9774. },
  9775. {
  9776. name: "Toying with Transcendence",
  9777. height: math.unit(1e307, "meters")
  9778. },
  9779. ]
  9780. ))
  9781. characterMakers.push(() => makeCharacter(
  9782. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9783. {
  9784. front: {
  9785. height: math.unit(17 + 1 / 12, "feet"),
  9786. weight: math.unit(476.2 * 5, "lbs"),
  9787. name: "Front",
  9788. image: {
  9789. source: "./media/characters/kuro-shi-uchū/front.svg",
  9790. extra: 2329 / 1835,
  9791. bottom: 0.02
  9792. }
  9793. },
  9794. },
  9795. [
  9796. {
  9797. name: "Micro",
  9798. height: math.unit(2, "inches")
  9799. },
  9800. {
  9801. name: "Normal",
  9802. height: math.unit(12, "meters")
  9803. },
  9804. {
  9805. name: "Planetary",
  9806. height: math.unit(0.00929, "AU"),
  9807. default: true
  9808. },
  9809. {
  9810. name: "Universal",
  9811. height: math.unit(20, "gigaparsecs")
  9812. },
  9813. ]
  9814. ))
  9815. characterMakers.push(() => makeCharacter(
  9816. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9817. {
  9818. front: {
  9819. height: math.unit(5 + 2 / 12, "feet"),
  9820. weight: math.unit(120, "lbs"),
  9821. name: "Front",
  9822. image: {
  9823. source: "./media/characters/katherine/front.svg",
  9824. extra: 2075 / 1969
  9825. }
  9826. },
  9827. dress: {
  9828. height: math.unit(5 + 2 / 12, "feet"),
  9829. weight: math.unit(120, "lbs"),
  9830. name: "Dress",
  9831. image: {
  9832. source: "./media/characters/katherine/dress.svg",
  9833. extra: 2258 / 2064
  9834. }
  9835. },
  9836. },
  9837. [
  9838. {
  9839. name: "Micro",
  9840. height: math.unit(1, "inches"),
  9841. default: true
  9842. },
  9843. {
  9844. name: "Normal",
  9845. height: math.unit(5 + 2 / 12, "feet")
  9846. },
  9847. {
  9848. name: "Macro",
  9849. height: math.unit(100, "meters")
  9850. },
  9851. {
  9852. name: "Megamacro",
  9853. height: math.unit(80, "miles")
  9854. },
  9855. ]
  9856. ))
  9857. characterMakers.push(() => makeCharacter(
  9858. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9859. {
  9860. front: {
  9861. height: math.unit(7 + 8 / 12, "feet"),
  9862. weight: math.unit(250, "lbs"),
  9863. name: "Front",
  9864. image: {
  9865. source: "./media/characters/yevis/front.svg",
  9866. extra: 1938 / 1755
  9867. }
  9868. }
  9869. },
  9870. [
  9871. {
  9872. name: "Mortal",
  9873. height: math.unit(7 + 8 / 12, "feet")
  9874. },
  9875. {
  9876. name: "Battle",
  9877. height: math.unit(25 + 11 / 12, "feet")
  9878. },
  9879. {
  9880. name: "Wrath",
  9881. height: math.unit(1654 + 11 / 12, "feet")
  9882. },
  9883. {
  9884. name: "Planet Destroyer",
  9885. height: math.unit(12000, "miles")
  9886. },
  9887. {
  9888. name: "Galaxy Conqueror",
  9889. height: math.unit(1.45, "zettameters"),
  9890. default: true
  9891. },
  9892. {
  9893. name: "Universal War",
  9894. height: math.unit(184, "gigaparsecs")
  9895. },
  9896. {
  9897. name: "Eternity War",
  9898. height: math.unit(1.98e55, "yottaparsecs")
  9899. },
  9900. ]
  9901. ))
  9902. characterMakers.push(() => makeCharacter(
  9903. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9904. {
  9905. front: {
  9906. height: math.unit(5 + 8 / 12, "feet"),
  9907. weight: math.unit(63, "kg"),
  9908. name: "Front",
  9909. image: {
  9910. source: "./media/characters/xavier/front.svg",
  9911. extra: 944 / 883
  9912. }
  9913. },
  9914. frontStretch: {
  9915. height: math.unit(5 + 8 / 12, "feet"),
  9916. weight: math.unit(63, "kg"),
  9917. name: "Stretching",
  9918. image: {
  9919. source: "./media/characters/xavier/front-stretch.svg",
  9920. extra: 962 / 820
  9921. }
  9922. },
  9923. },
  9924. [
  9925. {
  9926. name: "Normal",
  9927. height: math.unit(5 + 8 / 12, "feet")
  9928. },
  9929. {
  9930. name: "Macro",
  9931. height: math.unit(100, "meters"),
  9932. default: true
  9933. },
  9934. {
  9935. name: "McLargeHuge",
  9936. height: math.unit(10, "miles")
  9937. },
  9938. ]
  9939. ))
  9940. characterMakers.push(() => makeCharacter(
  9941. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9942. {
  9943. front: {
  9944. height: math.unit(5 + 5 / 12, "feet"),
  9945. weight: math.unit(150, "lb"),
  9946. name: "Front",
  9947. image: {
  9948. source: "./media/characters/joshii/front.svg",
  9949. extra: 765 / 653,
  9950. bottom: 51 / 816
  9951. }
  9952. },
  9953. foot: {
  9954. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9955. name: "Foot",
  9956. image: {
  9957. source: "./media/characters/joshii/foot.svg"
  9958. }
  9959. },
  9960. },
  9961. [
  9962. {
  9963. name: "Micro",
  9964. height: math.unit(2, "inches")
  9965. },
  9966. {
  9967. name: "Normal",
  9968. height: math.unit(5 + 5 / 12, "feet")
  9969. },
  9970. {
  9971. name: "Macro",
  9972. height: math.unit(785, "feet"),
  9973. default: true
  9974. },
  9975. {
  9976. name: "Megamacro",
  9977. height: math.unit(24.5, "miles")
  9978. },
  9979. ]
  9980. ))
  9981. characterMakers.push(() => makeCharacter(
  9982. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9983. {
  9984. front: {
  9985. height: math.unit(6, "feet"),
  9986. weight: math.unit(150, "lb"),
  9987. name: "Front",
  9988. image: {
  9989. source: "./media/characters/goddess-elizabeth/front.svg",
  9990. extra: 1800 / 1525,
  9991. bottom: 0.005
  9992. }
  9993. },
  9994. foot: {
  9995. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9996. name: "Foot",
  9997. image: {
  9998. source: "./media/characters/goddess-elizabeth/foot.svg"
  9999. }
  10000. },
  10001. mouth: {
  10002. height: math.unit(6, "feet"),
  10003. name: "Mouth",
  10004. image: {
  10005. source: "./media/characters/goddess-elizabeth/mouth.svg"
  10006. }
  10007. },
  10008. },
  10009. [
  10010. {
  10011. name: "Micro",
  10012. height: math.unit(12, "feet")
  10013. },
  10014. {
  10015. name: "Normal",
  10016. height: math.unit(80, "miles"),
  10017. default: true
  10018. },
  10019. {
  10020. name: "Macro",
  10021. height: math.unit(15000, "parsecs")
  10022. },
  10023. ]
  10024. ))
  10025. characterMakers.push(() => makeCharacter(
  10026. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  10027. {
  10028. front: {
  10029. height: math.unit(5 + 9 / 12, "feet"),
  10030. weight: math.unit(144, "lb"),
  10031. name: "Front",
  10032. image: {
  10033. source: "./media/characters/kara/front.svg"
  10034. }
  10035. },
  10036. feet: {
  10037. height: math.unit(6 / 6.765, "feet"),
  10038. name: "Kara's Feet",
  10039. rename: true,
  10040. image: {
  10041. source: "./media/characters/kara/feet.svg"
  10042. }
  10043. },
  10044. },
  10045. [
  10046. {
  10047. name: "Normal",
  10048. height: math.unit(5 + 9 / 12, "feet")
  10049. },
  10050. {
  10051. name: "Macro",
  10052. height: math.unit(174, "feet"),
  10053. default: true
  10054. },
  10055. ]
  10056. ))
  10057. characterMakers.push(() => makeCharacter(
  10058. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  10059. {
  10060. front: {
  10061. height: math.unit(18, "feet"),
  10062. weight: math.unit(4050, "lb"),
  10063. name: "Front",
  10064. image: {
  10065. source: "./media/characters/tyrone/front.svg",
  10066. extra: 2405 / 2270,
  10067. bottom: 182 / 2587
  10068. }
  10069. },
  10070. },
  10071. [
  10072. {
  10073. name: "Normal",
  10074. height: math.unit(18, "feet"),
  10075. default: true
  10076. },
  10077. {
  10078. name: "Macro",
  10079. height: math.unit(300, "feet")
  10080. },
  10081. {
  10082. name: "Megamacro",
  10083. height: math.unit(15, "km")
  10084. },
  10085. {
  10086. name: "Gigamacro",
  10087. height: math.unit(500, "km")
  10088. },
  10089. {
  10090. name: "Teramacro",
  10091. height: math.unit(0.5, "gigameters")
  10092. },
  10093. {
  10094. name: "Omnimacro",
  10095. height: math.unit(1e252, "yottauniverse")
  10096. },
  10097. ]
  10098. ))
  10099. characterMakers.push(() => makeCharacter(
  10100. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  10101. {
  10102. front: {
  10103. height: math.unit(7 + 8 / 12, "feet"),
  10104. weight: math.unit(120, "lb"),
  10105. name: "Front",
  10106. image: {
  10107. source: "./media/characters/danny/front.svg",
  10108. extra: 1490 / 1350
  10109. }
  10110. },
  10111. back: {
  10112. height: math.unit(7 + 8 / 12, "feet"),
  10113. weight: math.unit(120, "lb"),
  10114. name: "Back",
  10115. image: {
  10116. source: "./media/characters/danny/back.svg",
  10117. extra: 1490 / 1350
  10118. }
  10119. },
  10120. },
  10121. [
  10122. {
  10123. name: "Normal",
  10124. height: math.unit(7 + 8 / 12, "feet"),
  10125. default: true
  10126. },
  10127. ]
  10128. ))
  10129. characterMakers.push(() => makeCharacter(
  10130. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  10131. {
  10132. front: {
  10133. height: math.unit(3.5, "inches"),
  10134. weight: math.unit(19, "grams"),
  10135. name: "Front",
  10136. image: {
  10137. source: "./media/characters/mallow/front.svg",
  10138. extra: 471 / 431
  10139. }
  10140. },
  10141. back: {
  10142. height: math.unit(3.5, "inches"),
  10143. weight: math.unit(19, "grams"),
  10144. name: "Back",
  10145. image: {
  10146. source: "./media/characters/mallow/back.svg",
  10147. extra: 471 / 431
  10148. }
  10149. },
  10150. },
  10151. [
  10152. {
  10153. name: "Normal",
  10154. height: math.unit(3.5, "inches"),
  10155. default: true
  10156. },
  10157. ]
  10158. ))
  10159. characterMakers.push(() => makeCharacter(
  10160. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  10161. {
  10162. front: {
  10163. height: math.unit(9, "feet"),
  10164. weight: math.unit(230, "kg"),
  10165. name: "Front",
  10166. image: {
  10167. source: "./media/characters/starry-aqua/front.svg"
  10168. }
  10169. },
  10170. back: {
  10171. height: math.unit(9, "feet"),
  10172. weight: math.unit(230, "kg"),
  10173. name: "Back",
  10174. image: {
  10175. source: "./media/characters/starry-aqua/back.svg"
  10176. }
  10177. },
  10178. hand: {
  10179. height: math.unit(9 * 0.1168, "feet"),
  10180. name: "Hand",
  10181. image: {
  10182. source: "./media/characters/starry-aqua/hand.svg"
  10183. }
  10184. },
  10185. foot: {
  10186. height: math.unit(9 * 0.18, "feet"),
  10187. name: "Foot",
  10188. image: {
  10189. source: "./media/characters/starry-aqua/foot.svg"
  10190. }
  10191. }
  10192. },
  10193. [
  10194. {
  10195. name: "Micro",
  10196. height: math.unit(3, "inches")
  10197. },
  10198. {
  10199. name: "Normal",
  10200. height: math.unit(9, "feet")
  10201. },
  10202. {
  10203. name: "Macro",
  10204. height: math.unit(300, "feet"),
  10205. default: true
  10206. },
  10207. {
  10208. name: "Megamacro",
  10209. height: math.unit(3200, "feet")
  10210. }
  10211. ]
  10212. ))
  10213. characterMakers.push(() => makeCharacter(
  10214. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  10215. {
  10216. front: {
  10217. height: math.unit(15, "feet"),
  10218. weight: math.unit(5026, "lb"),
  10219. name: "Front",
  10220. image: {
  10221. source: "./media/characters/luka-towers/front.svg",
  10222. extra: 1269/1133,
  10223. bottom: 51/1320
  10224. }
  10225. },
  10226. },
  10227. [
  10228. {
  10229. name: "Normal",
  10230. height: math.unit(15, "feet"),
  10231. default: true
  10232. },
  10233. {
  10234. name: "Minimacro",
  10235. height: math.unit(25, "feet")
  10236. },
  10237. {
  10238. name: "Macro",
  10239. height: math.unit(320, "feet")
  10240. },
  10241. {
  10242. name: "Megamacro",
  10243. height: math.unit(35000, "feet")
  10244. },
  10245. {
  10246. name: "Gigamacro",
  10247. height: math.unit(4000, "miles")
  10248. },
  10249. {
  10250. name: "Teramacro",
  10251. height: math.unit(15000, "miles")
  10252. },
  10253. ]
  10254. ))
  10255. characterMakers.push(() => makeCharacter(
  10256. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10257. {
  10258. front: {
  10259. height: math.unit(6, "feet"),
  10260. weight: math.unit(150, "lb"),
  10261. name: "Front",
  10262. image: {
  10263. source: "./media/characters/natalie-nightring/front.svg",
  10264. extra: 1,
  10265. bottom: 0.06
  10266. }
  10267. },
  10268. },
  10269. [
  10270. {
  10271. name: "Uh Oh",
  10272. height: math.unit(0.1, "mm")
  10273. },
  10274. {
  10275. name: "Small",
  10276. height: math.unit(3, "inches")
  10277. },
  10278. {
  10279. name: "Human Scale",
  10280. height: math.unit(6, "feet")
  10281. },
  10282. {
  10283. name: "Librarian",
  10284. height: math.unit(50, "feet"),
  10285. default: true
  10286. },
  10287. {
  10288. name: "Immense",
  10289. height: math.unit(200, "miles")
  10290. },
  10291. ]
  10292. ))
  10293. characterMakers.push(() => makeCharacter(
  10294. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10295. {
  10296. front: {
  10297. height: math.unit(6, "feet"),
  10298. weight: math.unit(180, "lbs"),
  10299. name: "Front",
  10300. image: {
  10301. source: "./media/characters/danni-rosie/front.svg",
  10302. extra: 1260 / 1128,
  10303. bottom: 0.022
  10304. }
  10305. },
  10306. },
  10307. [
  10308. {
  10309. name: "Micro",
  10310. height: math.unit(2, "inches"),
  10311. default: true
  10312. },
  10313. ]
  10314. ))
  10315. characterMakers.push(() => makeCharacter(
  10316. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10317. {
  10318. front: {
  10319. height: math.unit(5 + 9 / 12, "feet"),
  10320. weight: math.unit(220, "lb"),
  10321. name: "Front",
  10322. image: {
  10323. source: "./media/characters/samantha-kruse/front.svg",
  10324. extra: (985 / 935),
  10325. bottom: 0.03
  10326. }
  10327. },
  10328. frontUndressed: {
  10329. height: math.unit(5 + 9 / 12, "feet"),
  10330. weight: math.unit(220, "lb"),
  10331. name: "Front (Undressed)",
  10332. image: {
  10333. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10334. extra: (973 / 923),
  10335. bottom: 0.025
  10336. }
  10337. },
  10338. fat: {
  10339. height: math.unit(5 + 9 / 12, "feet"),
  10340. weight: math.unit(900, "lb"),
  10341. name: "Front (Fat)",
  10342. image: {
  10343. source: "./media/characters/samantha-kruse/fat.svg",
  10344. extra: 2688 / 2561
  10345. }
  10346. },
  10347. },
  10348. [
  10349. {
  10350. name: "Normal",
  10351. height: math.unit(5 + 9 / 12, "feet"),
  10352. default: true
  10353. }
  10354. ]
  10355. ))
  10356. characterMakers.push(() => makeCharacter(
  10357. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10358. {
  10359. back: {
  10360. height: math.unit(5 + 4 / 12, "feet"),
  10361. weight: math.unit(4963, "lb"),
  10362. name: "Back",
  10363. image: {
  10364. source: "./media/characters/amelia-rosie/back.svg",
  10365. extra: 1113 / 963,
  10366. bottom: 0.01
  10367. }
  10368. },
  10369. },
  10370. [
  10371. {
  10372. name: "Level 0",
  10373. height: math.unit(5 + 4 / 12, "feet")
  10374. },
  10375. {
  10376. name: "Level 1",
  10377. height: math.unit(164597, "feet"),
  10378. default: true
  10379. },
  10380. {
  10381. name: "Level 2",
  10382. height: math.unit(956243, "miles")
  10383. },
  10384. {
  10385. name: "Level 3",
  10386. height: math.unit(29421709423, "miles")
  10387. },
  10388. {
  10389. name: "Level 4",
  10390. height: math.unit(154, "lightyears")
  10391. },
  10392. {
  10393. name: "Level 5",
  10394. height: math.unit(4738272, "lightyears")
  10395. },
  10396. {
  10397. name: "Level 6",
  10398. height: math.unit(145787152896, "lightyears")
  10399. },
  10400. ]
  10401. ))
  10402. characterMakers.push(() => makeCharacter(
  10403. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10404. {
  10405. front: {
  10406. height: math.unit(5 + 11 / 12, "feet"),
  10407. weight: math.unit(65, "kg"),
  10408. name: "Front",
  10409. image: {
  10410. source: "./media/characters/rook-kitara/front.svg",
  10411. extra: 1347 / 1274,
  10412. bottom: 0.005
  10413. }
  10414. },
  10415. },
  10416. [
  10417. {
  10418. name: "Totally Unfair",
  10419. height: math.unit(1.8, "mm")
  10420. },
  10421. {
  10422. name: "Lap Rookie",
  10423. height: math.unit(1.4, "feet")
  10424. },
  10425. {
  10426. name: "Normal",
  10427. height: math.unit(5 + 11 / 12, "feet"),
  10428. default: true
  10429. },
  10430. {
  10431. name: "How Did This Happen",
  10432. height: math.unit(80, "miles")
  10433. }
  10434. ]
  10435. ))
  10436. characterMakers.push(() => makeCharacter(
  10437. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10438. {
  10439. front: {
  10440. height: math.unit(7, "feet"),
  10441. weight: math.unit(300, "lb"),
  10442. name: "Front",
  10443. image: {
  10444. source: "./media/characters/pisces/front.svg",
  10445. extra: 2255 / 2115,
  10446. bottom: 0.03
  10447. }
  10448. },
  10449. back: {
  10450. height: math.unit(7, "feet"),
  10451. weight: math.unit(300, "lb"),
  10452. name: "Back",
  10453. image: {
  10454. source: "./media/characters/pisces/back.svg",
  10455. extra: 2146 / 2055,
  10456. bottom: 0.04
  10457. }
  10458. },
  10459. },
  10460. [
  10461. {
  10462. name: "Normal",
  10463. height: math.unit(7, "feet"),
  10464. default: true
  10465. },
  10466. {
  10467. name: "Swimming Pool",
  10468. height: math.unit(12.2, "meters")
  10469. },
  10470. {
  10471. name: "Olympic Swimming Pool",
  10472. height: math.unit(56.3, "meters")
  10473. },
  10474. {
  10475. name: "Lake Superior",
  10476. height: math.unit(93900, "meters")
  10477. },
  10478. {
  10479. name: "Mediterranean Sea",
  10480. height: math.unit(644457, "meters")
  10481. },
  10482. {
  10483. name: "World's Oceans",
  10484. height: math.unit(4567491, "meters")
  10485. },
  10486. ]
  10487. ))
  10488. characterMakers.push(() => makeCharacter(
  10489. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10490. {
  10491. front: {
  10492. height: math.unit(2.3, "meters"),
  10493. weight: math.unit(120, "kg"),
  10494. name: "Front",
  10495. image: {
  10496. source: "./media/characters/zelas/front.svg"
  10497. }
  10498. },
  10499. side: {
  10500. height: math.unit(2.3, "meters"),
  10501. weight: math.unit(120, "kg"),
  10502. name: "Side",
  10503. image: {
  10504. source: "./media/characters/zelas/side.svg"
  10505. }
  10506. },
  10507. back: {
  10508. height: math.unit(2.3, "meters"),
  10509. weight: math.unit(120, "kg"),
  10510. name: "Back",
  10511. image: {
  10512. source: "./media/characters/zelas/back.svg"
  10513. }
  10514. },
  10515. foot: {
  10516. height: math.unit(1.116, "feet"),
  10517. name: "Foot",
  10518. image: {
  10519. source: "./media/characters/zelas/foot.svg"
  10520. }
  10521. },
  10522. },
  10523. [
  10524. {
  10525. name: "Normal",
  10526. height: math.unit(2.3, "meters")
  10527. },
  10528. {
  10529. name: "Macro",
  10530. height: math.unit(30, "meters"),
  10531. default: true
  10532. },
  10533. ]
  10534. ))
  10535. characterMakers.push(() => makeCharacter(
  10536. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10537. {
  10538. front: {
  10539. height: math.unit(1, "inch"),
  10540. weight: math.unit(0.21, "grams"),
  10541. name: "Front",
  10542. image: {
  10543. source: "./media/characters/talbot/front.svg",
  10544. extra: 594 / 544
  10545. }
  10546. },
  10547. },
  10548. [
  10549. {
  10550. name: "Micro",
  10551. height: math.unit(1, "inch"),
  10552. default: true
  10553. },
  10554. ]
  10555. ))
  10556. characterMakers.push(() => makeCharacter(
  10557. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10558. {
  10559. front: {
  10560. height: math.unit(3 + 3 / 12, "feet"),
  10561. weight: math.unit(51.8, "lb"),
  10562. name: "Front",
  10563. image: {
  10564. source: "./media/characters/fliss/front.svg",
  10565. extra: 840 / 640
  10566. }
  10567. },
  10568. },
  10569. [
  10570. {
  10571. name: "Teeny Tiny",
  10572. height: math.unit(1, "mm")
  10573. },
  10574. {
  10575. name: "Small",
  10576. height: math.unit(1, "inch"),
  10577. default: true
  10578. },
  10579. {
  10580. name: "Standard Sylveon",
  10581. height: math.unit(3 + 3 / 12, "feet")
  10582. },
  10583. {
  10584. name: "Large Nuisance",
  10585. height: math.unit(33, "feet")
  10586. },
  10587. {
  10588. name: "City Filler",
  10589. height: math.unit(3000, "feet")
  10590. },
  10591. {
  10592. name: "New Horizon",
  10593. height: math.unit(6000, "miles")
  10594. },
  10595. ]
  10596. ))
  10597. characterMakers.push(() => makeCharacter(
  10598. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10599. {
  10600. front: {
  10601. height: math.unit(5, "cm"),
  10602. weight: math.unit(1.94, "g"),
  10603. name: "Front",
  10604. image: {
  10605. source: "./media/characters/fleta/front.svg",
  10606. extra: 835 / 803
  10607. }
  10608. },
  10609. back: {
  10610. height: math.unit(5, "cm"),
  10611. weight: math.unit(1.94, "g"),
  10612. name: "Back",
  10613. image: {
  10614. source: "./media/characters/fleta/back.svg",
  10615. extra: 835 / 803
  10616. }
  10617. },
  10618. },
  10619. [
  10620. {
  10621. name: "Micro",
  10622. height: math.unit(5, "cm"),
  10623. default: true
  10624. },
  10625. ]
  10626. ))
  10627. characterMakers.push(() => makeCharacter(
  10628. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10629. {
  10630. front: {
  10631. height: math.unit(6, "feet"),
  10632. weight: math.unit(225, "lb"),
  10633. name: "Front",
  10634. image: {
  10635. source: "./media/characters/dominic/front.svg",
  10636. extra: 1770 / 1620,
  10637. bottom: 0.025
  10638. }
  10639. },
  10640. back: {
  10641. height: math.unit(6, "feet"),
  10642. weight: math.unit(225, "lb"),
  10643. name: "Back",
  10644. image: {
  10645. source: "./media/characters/dominic/back.svg",
  10646. extra: 1745 / 1620,
  10647. bottom: 0.065
  10648. }
  10649. },
  10650. },
  10651. [
  10652. {
  10653. name: "Nano",
  10654. height: math.unit(0.1, "mm")
  10655. },
  10656. {
  10657. name: "Micro-",
  10658. height: math.unit(1, "mm")
  10659. },
  10660. {
  10661. name: "Micro",
  10662. height: math.unit(4, "inches")
  10663. },
  10664. {
  10665. name: "Normal",
  10666. height: math.unit(6 + 4 / 12, "feet"),
  10667. default: true
  10668. },
  10669. {
  10670. name: "Macro",
  10671. height: math.unit(115, "feet")
  10672. },
  10673. {
  10674. name: "Macro+",
  10675. height: math.unit(955, "feet")
  10676. },
  10677. {
  10678. name: "Megamacro",
  10679. height: math.unit(8990, "feet")
  10680. },
  10681. {
  10682. name: "Gigmacro",
  10683. height: math.unit(9310, "miles")
  10684. },
  10685. {
  10686. name: "Teramacro",
  10687. height: math.unit(1567005010, "miles")
  10688. },
  10689. {
  10690. name: "Examacro",
  10691. height: math.unit(1425, "parsecs")
  10692. },
  10693. ]
  10694. ))
  10695. characterMakers.push(() => makeCharacter(
  10696. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10697. {
  10698. front: {
  10699. height: math.unit(400, "feet"),
  10700. weight: math.unit(44444444, "lb"),
  10701. name: "Front",
  10702. image: {
  10703. source: "./media/characters/major-colonel/front.svg"
  10704. }
  10705. },
  10706. back: {
  10707. height: math.unit(400, "feet"),
  10708. weight: math.unit(44444444, "lb"),
  10709. name: "Back",
  10710. image: {
  10711. source: "./media/characters/major-colonel/back.svg"
  10712. }
  10713. },
  10714. },
  10715. [
  10716. {
  10717. name: "Macro",
  10718. height: math.unit(400, "feet"),
  10719. default: true
  10720. },
  10721. ]
  10722. ))
  10723. characterMakers.push(() => makeCharacter(
  10724. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10725. {
  10726. catFront: {
  10727. height: math.unit(6, "feet"),
  10728. weight: math.unit(120, "lb"),
  10729. name: "Front (Cat Side)",
  10730. image: {
  10731. source: "./media/characters/axel-lycan/cat-front.svg",
  10732. extra: 430 / 402,
  10733. bottom: 43 / 472.35
  10734. }
  10735. },
  10736. catBack: {
  10737. height: math.unit(6, "feet"),
  10738. weight: math.unit(120, "lb"),
  10739. name: "Back (Cat Side)",
  10740. image: {
  10741. source: "./media/characters/axel-lycan/cat-back.svg",
  10742. extra: 447 / 419,
  10743. bottom: 23.3 / 469
  10744. }
  10745. },
  10746. wolfFront: {
  10747. height: math.unit(6, "feet"),
  10748. weight: math.unit(120, "lb"),
  10749. name: "Front (Wolf Side)",
  10750. image: {
  10751. source: "./media/characters/axel-lycan/wolf-front.svg",
  10752. extra: 485 / 456,
  10753. bottom: 19 / 504
  10754. }
  10755. },
  10756. wolfBack: {
  10757. height: math.unit(6, "feet"),
  10758. weight: math.unit(120, "lb"),
  10759. name: "Back (Wolf Side)",
  10760. image: {
  10761. source: "./media/characters/axel-lycan/wolf-back.svg",
  10762. extra: 475 / 438,
  10763. bottom: 39.2 / 514
  10764. }
  10765. },
  10766. },
  10767. [
  10768. {
  10769. name: "Macro",
  10770. height: math.unit(1, "km"),
  10771. default: true
  10772. },
  10773. ]
  10774. ))
  10775. characterMakers.push(() => makeCharacter(
  10776. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10777. {
  10778. front: {
  10779. height: math.unit(5 + 9 / 12, "feet"),
  10780. weight: math.unit(175, "lb"),
  10781. name: "Front",
  10782. image: {
  10783. source: "./media/characters/vanrel-hyena/front.svg",
  10784. extra: 1086 / 1010,
  10785. bottom: 0.04
  10786. }
  10787. },
  10788. },
  10789. [
  10790. {
  10791. name: "Normal",
  10792. height: math.unit(5 + 9 / 12, "feet"),
  10793. default: true
  10794. },
  10795. ]
  10796. ))
  10797. characterMakers.push(() => makeCharacter(
  10798. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10799. {
  10800. front: {
  10801. height: math.unit(6, "feet"),
  10802. weight: math.unit(103, "lb"),
  10803. name: "Front",
  10804. image: {
  10805. source: "./media/characters/abbott-absol/front.svg",
  10806. extra: 2010 / 1842
  10807. }
  10808. },
  10809. },
  10810. [
  10811. {
  10812. name: "Megamicro",
  10813. height: math.unit(0.1, "mm")
  10814. },
  10815. {
  10816. name: "Micro",
  10817. height: math.unit(1, "inch")
  10818. },
  10819. {
  10820. name: "Normal",
  10821. height: math.unit(6, "feet"),
  10822. default: true
  10823. },
  10824. ]
  10825. ))
  10826. characterMakers.push(() => makeCharacter(
  10827. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10828. {
  10829. front: {
  10830. height: math.unit(6, "feet"),
  10831. weight: math.unit(264, "lb"),
  10832. name: "Front",
  10833. image: {
  10834. source: "./media/characters/hector/front.svg",
  10835. extra: 2280 / 2130,
  10836. bottom: 0.07
  10837. }
  10838. },
  10839. },
  10840. [
  10841. {
  10842. name: "Normal",
  10843. height: math.unit(12.25, "foot"),
  10844. default: true
  10845. },
  10846. {
  10847. name: "Macro",
  10848. height: math.unit(160, "feet")
  10849. },
  10850. ]
  10851. ))
  10852. characterMakers.push(() => makeCharacter(
  10853. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10854. {
  10855. front: {
  10856. height: math.unit(6, "feet"),
  10857. weight: math.unit(150, "lb"),
  10858. name: "Front",
  10859. image: {
  10860. source: "./media/characters/sal/front.svg",
  10861. extra: 1846 / 1699,
  10862. bottom: 0.04
  10863. }
  10864. },
  10865. },
  10866. [
  10867. {
  10868. name: "Megamacro",
  10869. height: math.unit(10, "miles"),
  10870. default: true
  10871. },
  10872. ]
  10873. ))
  10874. characterMakers.push(() => makeCharacter(
  10875. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10876. {
  10877. front: {
  10878. height: math.unit(3, "meters"),
  10879. weight: math.unit(450, "kg"),
  10880. name: "front",
  10881. image: {
  10882. source: "./media/characters/ranger/front.svg",
  10883. extra: 2401 / 2243,
  10884. bottom: 0.05
  10885. }
  10886. },
  10887. },
  10888. [
  10889. {
  10890. name: "Normal",
  10891. height: math.unit(3, "meters"),
  10892. default: true
  10893. },
  10894. ]
  10895. ))
  10896. characterMakers.push(() => makeCharacter(
  10897. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10898. {
  10899. front: {
  10900. height: math.unit(14, "feet"),
  10901. weight: math.unit(800, "kg"),
  10902. name: "Front",
  10903. image: {
  10904. source: "./media/characters/theresa/front.svg",
  10905. extra: 3575 / 3346,
  10906. bottom: 0.03
  10907. }
  10908. },
  10909. },
  10910. [
  10911. {
  10912. name: "Normal",
  10913. height: math.unit(14, "feet"),
  10914. default: true
  10915. },
  10916. ]
  10917. ))
  10918. characterMakers.push(() => makeCharacter(
  10919. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10920. {
  10921. front: {
  10922. height: math.unit(6, "feet"),
  10923. weight: math.unit(3, "kg"),
  10924. name: "Front",
  10925. image: {
  10926. source: "./media/characters/ine/front.svg",
  10927. extra: 678 / 539,
  10928. bottom: 0.023
  10929. }
  10930. },
  10931. },
  10932. [
  10933. {
  10934. name: "Normal",
  10935. height: math.unit(2.265, "feet"),
  10936. default: true
  10937. },
  10938. ]
  10939. ))
  10940. characterMakers.push(() => makeCharacter(
  10941. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10942. {
  10943. front: {
  10944. height: math.unit(5, "feet"),
  10945. weight: math.unit(30, "kg"),
  10946. name: "Front",
  10947. image: {
  10948. source: "./media/characters/vial/front.svg",
  10949. extra: 1365 / 1277,
  10950. bottom: 0.04
  10951. }
  10952. },
  10953. },
  10954. [
  10955. {
  10956. name: "Normal",
  10957. height: math.unit(5, "feet"),
  10958. default: true
  10959. },
  10960. ]
  10961. ))
  10962. characterMakers.push(() => makeCharacter(
  10963. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10964. {
  10965. side: {
  10966. height: math.unit(3.4, "meters"),
  10967. weight: math.unit(1000, "lb"),
  10968. name: "Side",
  10969. image: {
  10970. source: "./media/characters/rovoska/side.svg",
  10971. extra: 4403 / 1515
  10972. }
  10973. },
  10974. },
  10975. [
  10976. {
  10977. name: "Normal",
  10978. height: math.unit(3.4, "meters"),
  10979. default: true
  10980. },
  10981. ]
  10982. ))
  10983. characterMakers.push(() => makeCharacter(
  10984. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10985. {
  10986. front: {
  10987. height: math.unit(8, "feet"),
  10988. weight: math.unit(315, "lb"),
  10989. name: "Front",
  10990. image: {
  10991. source: "./media/characters/gunner-rotthbauer/front.svg"
  10992. }
  10993. },
  10994. back: {
  10995. height: math.unit(8, "feet"),
  10996. weight: math.unit(315, "lb"),
  10997. name: "Back",
  10998. image: {
  10999. source: "./media/characters/gunner-rotthbauer/back.svg"
  11000. }
  11001. },
  11002. },
  11003. [
  11004. {
  11005. name: "Micro",
  11006. height: math.unit(3.5, "inches")
  11007. },
  11008. {
  11009. name: "Normal",
  11010. height: math.unit(8, "feet"),
  11011. default: true
  11012. },
  11013. {
  11014. name: "Macro",
  11015. height: math.unit(250, "feet")
  11016. },
  11017. {
  11018. name: "Megamacro",
  11019. height: math.unit(1, "AU")
  11020. },
  11021. ]
  11022. ))
  11023. characterMakers.push(() => makeCharacter(
  11024. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  11025. {
  11026. front: {
  11027. height: math.unit(5 + 5 / 12, "feet"),
  11028. weight: math.unit(140, "lb"),
  11029. name: "Front",
  11030. image: {
  11031. source: "./media/characters/allatia/front.svg",
  11032. extra: 1227 / 1180,
  11033. bottom: 0.027
  11034. }
  11035. },
  11036. },
  11037. [
  11038. {
  11039. name: "Normal",
  11040. height: math.unit(5 + 5 / 12, "feet")
  11041. },
  11042. {
  11043. name: "Macro",
  11044. height: math.unit(250, "feet"),
  11045. default: true
  11046. },
  11047. {
  11048. name: "Megamacro",
  11049. height: math.unit(8, "miles")
  11050. }
  11051. ]
  11052. ))
  11053. characterMakers.push(() => makeCharacter(
  11054. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  11055. {
  11056. front: {
  11057. height: math.unit(6, "feet"),
  11058. weight: math.unit(120, "lb"),
  11059. name: "Front",
  11060. image: {
  11061. source: "./media/characters/tene/front.svg",
  11062. extra: 814/750,
  11063. bottom: 36/850
  11064. }
  11065. },
  11066. stomping: {
  11067. height: math.unit(2.025, "meters"),
  11068. weight: math.unit(120, "lb"),
  11069. name: "Stomping",
  11070. image: {
  11071. source: "./media/characters/tene/stomping.svg",
  11072. extra: 885/821,
  11073. bottom: 15/900
  11074. }
  11075. },
  11076. sitting: {
  11077. height: math.unit(1, "meter"),
  11078. weight: math.unit(120, "lb"),
  11079. name: "Sitting",
  11080. image: {
  11081. source: "./media/characters/tene/sitting.svg",
  11082. extra: 396/366,
  11083. bottom: 79/475
  11084. }
  11085. },
  11086. smiling: {
  11087. height: math.unit(1.2, "feet"),
  11088. name: "Smiling",
  11089. image: {
  11090. source: "./media/characters/tene/smiling.svg",
  11091. extra: 1364/1071,
  11092. bottom: 0/1364
  11093. }
  11094. },
  11095. smug: {
  11096. height: math.unit(1.3, "feet"),
  11097. name: "Smug",
  11098. image: {
  11099. source: "./media/characters/tene/smug.svg",
  11100. extra: 1323/1082,
  11101. bottom: 0/1323
  11102. }
  11103. },
  11104. feral: {
  11105. height: math.unit(3.9, "feet"),
  11106. weight: math.unit(250, "lb"),
  11107. name: "Feral",
  11108. image: {
  11109. source: "./media/characters/tene/feral.svg",
  11110. extra: 717 / 458,
  11111. bottom: 0.179
  11112. }
  11113. },
  11114. },
  11115. [
  11116. {
  11117. name: "Normal",
  11118. height: math.unit(6, "feet")
  11119. },
  11120. {
  11121. name: "Macro",
  11122. height: math.unit(300, "feet"),
  11123. default: true
  11124. },
  11125. {
  11126. name: "Megamacro",
  11127. height: math.unit(5, "miles")
  11128. },
  11129. ]
  11130. ))
  11131. characterMakers.push(() => makeCharacter(
  11132. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  11133. {
  11134. side: {
  11135. height: math.unit(6, "feet"),
  11136. name: "Side",
  11137. image: {
  11138. source: "./media/characters/evander/side.svg",
  11139. extra: 877 / 477
  11140. }
  11141. },
  11142. },
  11143. [
  11144. {
  11145. name: "Normal",
  11146. height: math.unit(0.83, "meters"),
  11147. default: true
  11148. },
  11149. ]
  11150. ))
  11151. characterMakers.push(() => makeCharacter(
  11152. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  11153. {
  11154. front: {
  11155. height: math.unit(12, "feet"),
  11156. weight: math.unit(1000, "lb"),
  11157. name: "Front",
  11158. image: {
  11159. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  11160. extra: 1762 / 1611
  11161. }
  11162. },
  11163. back: {
  11164. height: math.unit(12, "feet"),
  11165. weight: math.unit(1000, "lb"),
  11166. name: "Back",
  11167. image: {
  11168. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  11169. extra: 1762 / 1611
  11170. }
  11171. },
  11172. },
  11173. [
  11174. {
  11175. name: "Normal",
  11176. height: math.unit(12, "feet"),
  11177. default: true
  11178. },
  11179. {
  11180. name: "Kaiju",
  11181. height: math.unit(150, "feet")
  11182. },
  11183. ]
  11184. ))
  11185. characterMakers.push(() => makeCharacter(
  11186. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  11187. {
  11188. front: {
  11189. height: math.unit(6, "feet"),
  11190. weight: math.unit(150, "lb"),
  11191. name: "Front",
  11192. image: {
  11193. source: "./media/characters/zero-alurus/front.svg"
  11194. }
  11195. },
  11196. back: {
  11197. height: math.unit(6, "feet"),
  11198. weight: math.unit(150, "lb"),
  11199. name: "Back",
  11200. image: {
  11201. source: "./media/characters/zero-alurus/back.svg"
  11202. }
  11203. },
  11204. },
  11205. [
  11206. {
  11207. name: "Normal",
  11208. height: math.unit(5 + 10 / 12, "feet")
  11209. },
  11210. {
  11211. name: "Macro",
  11212. height: math.unit(60, "feet"),
  11213. default: true
  11214. },
  11215. {
  11216. name: "Macro+",
  11217. height: math.unit(450, "feet")
  11218. },
  11219. ]
  11220. ))
  11221. characterMakers.push(() => makeCharacter(
  11222. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  11223. {
  11224. front: {
  11225. height: math.unit(6, "feet"),
  11226. weight: math.unit(200, "lb"),
  11227. name: "Front",
  11228. image: {
  11229. source: "./media/characters/mega-shi/front.svg",
  11230. extra: 1279 / 1250,
  11231. bottom: 0.02
  11232. }
  11233. },
  11234. back: {
  11235. height: math.unit(6, "feet"),
  11236. weight: math.unit(200, "lb"),
  11237. name: "Back",
  11238. image: {
  11239. source: "./media/characters/mega-shi/back.svg",
  11240. extra: 1279 / 1250,
  11241. bottom: 0.02
  11242. }
  11243. },
  11244. },
  11245. [
  11246. {
  11247. name: "Micro",
  11248. height: math.unit(16 + 6 / 12, "feet")
  11249. },
  11250. {
  11251. name: "Third Dimension",
  11252. height: math.unit(40, "meters")
  11253. },
  11254. {
  11255. name: "Normal",
  11256. height: math.unit(660, "feet"),
  11257. default: true
  11258. },
  11259. {
  11260. name: "Megamacro",
  11261. height: math.unit(10, "miles")
  11262. },
  11263. {
  11264. name: "Planetary Launch",
  11265. height: math.unit(500, "miles")
  11266. },
  11267. {
  11268. name: "Interstellar",
  11269. height: math.unit(1e9, "miles")
  11270. },
  11271. {
  11272. name: "Leaving the Universe",
  11273. height: math.unit(1, "gigaparsec")
  11274. },
  11275. {
  11276. name: "Travelling Universes",
  11277. height: math.unit(30e15, "parsecs")
  11278. },
  11279. ]
  11280. ))
  11281. characterMakers.push(() => makeCharacter(
  11282. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11283. {
  11284. front: {
  11285. height: math.unit(5 + 4/12, "feet"),
  11286. weight: math.unit(120, "lb"),
  11287. name: "Front",
  11288. image: {
  11289. source: "./media/characters/odyssey/front.svg",
  11290. extra: 1747/1571,
  11291. bottom: 47/1794
  11292. }
  11293. },
  11294. side: {
  11295. height: math.unit(5.1, "feet"),
  11296. weight: math.unit(120, "lb"),
  11297. name: "Side",
  11298. image: {
  11299. source: "./media/characters/odyssey/side.svg",
  11300. extra: 1847/1619,
  11301. bottom: 47/1894
  11302. }
  11303. },
  11304. lounging: {
  11305. height: math.unit(1.464, "feet"),
  11306. weight: math.unit(120, "lb"),
  11307. name: "Lounging",
  11308. image: {
  11309. source: "./media/characters/odyssey/lounging.svg",
  11310. extra: 1235/837,
  11311. bottom: 551/1786
  11312. }
  11313. },
  11314. },
  11315. [
  11316. {
  11317. name: "Normal",
  11318. height: math.unit(5 + 4 / 12, "feet")
  11319. },
  11320. {
  11321. name: "Macro",
  11322. height: math.unit(1, "km")
  11323. },
  11324. {
  11325. name: "Megamacro",
  11326. height: math.unit(3000, "km")
  11327. },
  11328. {
  11329. name: "Gigamacro",
  11330. height: math.unit(1, "AU"),
  11331. default: true
  11332. },
  11333. {
  11334. name: "Omniversal",
  11335. height: math.unit(100e14, "lightyears")
  11336. },
  11337. ]
  11338. ))
  11339. characterMakers.push(() => makeCharacter(
  11340. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11341. {
  11342. front: {
  11343. height: math.unit(5 + 10/12, "feet"),
  11344. name: "Front",
  11345. image: {
  11346. source: "./media/characters/mekuto/front.svg",
  11347. extra: 875/835,
  11348. bottom: 46/921
  11349. }
  11350. },
  11351. },
  11352. [
  11353. {
  11354. name: "Minimicro",
  11355. height: math.unit(0.2, "inches")
  11356. },
  11357. {
  11358. name: "Micro",
  11359. height: math.unit(1.5, "inches")
  11360. },
  11361. {
  11362. name: "Normal",
  11363. height: math.unit(5 + 10 / 12, "feet"),
  11364. default: true
  11365. },
  11366. {
  11367. name: "Minimacro",
  11368. height: math.unit(17 + 9 / 12, "feet")
  11369. },
  11370. {
  11371. name: "Macro",
  11372. height: math.unit(177.5, "feet")
  11373. },
  11374. {
  11375. name: "Megamacro",
  11376. height: math.unit(152, "miles")
  11377. },
  11378. ]
  11379. ))
  11380. characterMakers.push(() => makeCharacter(
  11381. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11382. {
  11383. front: {
  11384. height: math.unit(6.5, "inches"),
  11385. weight: math.unit(13, "oz"),
  11386. name: "Front",
  11387. image: {
  11388. source: "./media/characters/dafydd-tomos/front.svg",
  11389. extra: 2990 / 2603,
  11390. bottom: 0.03
  11391. }
  11392. },
  11393. },
  11394. [
  11395. {
  11396. name: "Micro",
  11397. height: math.unit(6.5, "inches"),
  11398. default: true
  11399. },
  11400. ]
  11401. ))
  11402. characterMakers.push(() => makeCharacter(
  11403. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11404. {
  11405. front: {
  11406. height: math.unit(6, "feet"),
  11407. weight: math.unit(150, "lb"),
  11408. name: "Front",
  11409. image: {
  11410. source: "./media/characters/splinter/front.svg",
  11411. extra: 2990 / 2882,
  11412. bottom: 0.04
  11413. }
  11414. },
  11415. back: {
  11416. height: math.unit(6, "feet"),
  11417. weight: math.unit(150, "lb"),
  11418. name: "Back",
  11419. image: {
  11420. source: "./media/characters/splinter/back.svg",
  11421. extra: 2990 / 2882,
  11422. bottom: 0.04
  11423. }
  11424. },
  11425. },
  11426. [
  11427. {
  11428. name: "Normal",
  11429. height: math.unit(6, "feet")
  11430. },
  11431. {
  11432. name: "Macro",
  11433. height: math.unit(230, "meters"),
  11434. default: true
  11435. },
  11436. ]
  11437. ))
  11438. characterMakers.push(() => makeCharacter(
  11439. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11440. {
  11441. front: {
  11442. height: math.unit(4 + 10 / 12, "feet"),
  11443. weight: math.unit(480, "lb"),
  11444. name: "Front",
  11445. image: {
  11446. source: "./media/characters/snow-gabumon/front.svg",
  11447. extra: 1140 / 963,
  11448. bottom: 0.058
  11449. }
  11450. },
  11451. back: {
  11452. height: math.unit(4 + 10 / 12, "feet"),
  11453. weight: math.unit(480, "lb"),
  11454. name: "Back",
  11455. image: {
  11456. source: "./media/characters/snow-gabumon/back.svg",
  11457. extra: 1115 / 962,
  11458. bottom: 0.041
  11459. }
  11460. },
  11461. frontUndresed: {
  11462. height: math.unit(4 + 10 / 12, "feet"),
  11463. weight: math.unit(480, "lb"),
  11464. name: "Front (Undressed)",
  11465. image: {
  11466. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11467. extra: 1061 / 960,
  11468. bottom: 0.045
  11469. }
  11470. },
  11471. },
  11472. [
  11473. {
  11474. name: "Micro",
  11475. height: math.unit(1, "inch")
  11476. },
  11477. {
  11478. name: "Normal",
  11479. height: math.unit(4 + 10 / 12, "feet"),
  11480. default: true
  11481. },
  11482. {
  11483. name: "Macro",
  11484. height: math.unit(200, "feet")
  11485. },
  11486. {
  11487. name: "Megamacro",
  11488. height: math.unit(120, "miles")
  11489. },
  11490. {
  11491. name: "Gigamacro",
  11492. height: math.unit(9800, "miles")
  11493. },
  11494. ]
  11495. ))
  11496. characterMakers.push(() => makeCharacter(
  11497. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11498. {
  11499. front: {
  11500. height: math.unit(1.7, "meters"),
  11501. weight: math.unit(140, "lb"),
  11502. name: "Front",
  11503. image: {
  11504. source: "./media/characters/moody/front.svg",
  11505. extra: 3226 / 3007,
  11506. bottom: 0.087
  11507. }
  11508. },
  11509. },
  11510. [
  11511. {
  11512. name: "Micro",
  11513. height: math.unit(1, "mm")
  11514. },
  11515. {
  11516. name: "Normal",
  11517. height: math.unit(1.7, "meters"),
  11518. default: true
  11519. },
  11520. {
  11521. name: "Macro",
  11522. height: math.unit(80, "meters")
  11523. },
  11524. {
  11525. name: "Macro+",
  11526. height: math.unit(500, "meters")
  11527. },
  11528. ]
  11529. ))
  11530. characterMakers.push(() => makeCharacter(
  11531. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11532. {
  11533. front: {
  11534. height: math.unit(6, "feet"),
  11535. weight: math.unit(150, "lb"),
  11536. name: "Front",
  11537. image: {
  11538. source: "./media/characters/zyas/front.svg",
  11539. extra: 1180 / 1120,
  11540. bottom: 0.045
  11541. }
  11542. },
  11543. },
  11544. [
  11545. {
  11546. name: "Normal",
  11547. height: math.unit(10, "feet"),
  11548. default: true
  11549. },
  11550. {
  11551. name: "Macro",
  11552. height: math.unit(500, "feet")
  11553. },
  11554. {
  11555. name: "Megamacro",
  11556. height: math.unit(5, "miles")
  11557. },
  11558. {
  11559. name: "Teramacro",
  11560. height: math.unit(150000, "miles")
  11561. },
  11562. ]
  11563. ))
  11564. characterMakers.push(() => makeCharacter(
  11565. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11566. {
  11567. front: {
  11568. height: math.unit(6, "feet"),
  11569. weight: math.unit(150, "lb"),
  11570. name: "Front",
  11571. image: {
  11572. source: "./media/characters/cuon/front.svg",
  11573. extra: 1390 / 1320,
  11574. bottom: 0.008
  11575. }
  11576. },
  11577. },
  11578. [
  11579. {
  11580. name: "Micro",
  11581. height: math.unit(3, "inches")
  11582. },
  11583. {
  11584. name: "Normal",
  11585. height: math.unit(18 + 9 / 12, "feet"),
  11586. default: true
  11587. },
  11588. {
  11589. name: "Macro",
  11590. height: math.unit(360, "feet")
  11591. },
  11592. {
  11593. name: "Megamacro",
  11594. height: math.unit(360, "miles")
  11595. },
  11596. ]
  11597. ))
  11598. characterMakers.push(() => makeCharacter(
  11599. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11600. {
  11601. front: {
  11602. height: math.unit(2.4, "meters"),
  11603. weight: math.unit(70, "kg"),
  11604. name: "Front",
  11605. image: {
  11606. source: "./media/characters/nyanuxk/front.svg",
  11607. extra: 1172 / 1084,
  11608. bottom: 0.065
  11609. }
  11610. },
  11611. side: {
  11612. height: math.unit(2.4, "meters"),
  11613. weight: math.unit(70, "kg"),
  11614. name: "Side",
  11615. image: {
  11616. source: "./media/characters/nyanuxk/side.svg",
  11617. extra: 1190 / 1132,
  11618. bottom: 0.007
  11619. }
  11620. },
  11621. back: {
  11622. height: math.unit(2.4, "meters"),
  11623. weight: math.unit(70, "kg"),
  11624. name: "Back",
  11625. image: {
  11626. source: "./media/characters/nyanuxk/back.svg",
  11627. extra: 1200 / 1141,
  11628. bottom: 0.015
  11629. }
  11630. },
  11631. foot: {
  11632. height: math.unit(0.52, "meters"),
  11633. name: "Foot",
  11634. image: {
  11635. source: "./media/characters/nyanuxk/foot.svg"
  11636. }
  11637. },
  11638. },
  11639. [
  11640. {
  11641. name: "Micro",
  11642. height: math.unit(2, "cm")
  11643. },
  11644. {
  11645. name: "Normal",
  11646. height: math.unit(2.4, "meters"),
  11647. default: true
  11648. },
  11649. {
  11650. name: "Smaller Macro",
  11651. height: math.unit(120, "meters")
  11652. },
  11653. {
  11654. name: "Bigger Macro",
  11655. height: math.unit(1.2, "km")
  11656. },
  11657. {
  11658. name: "Megamacro",
  11659. height: math.unit(15, "kilometers")
  11660. },
  11661. {
  11662. name: "Gigamacro",
  11663. height: math.unit(2000, "km")
  11664. },
  11665. {
  11666. name: "Teramacro",
  11667. height: math.unit(500000, "km")
  11668. },
  11669. ]
  11670. ))
  11671. characterMakers.push(() => makeCharacter(
  11672. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11673. {
  11674. side: {
  11675. height: math.unit(6, "feet"),
  11676. name: "Side",
  11677. image: {
  11678. source: "./media/characters/ailbhe/side.svg",
  11679. extra: 757 / 464,
  11680. bottom: 0.041
  11681. }
  11682. },
  11683. },
  11684. [
  11685. {
  11686. name: "Normal",
  11687. height: math.unit(1.07, "meters"),
  11688. default: true
  11689. },
  11690. ]
  11691. ))
  11692. characterMakers.push(() => makeCharacter(
  11693. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11694. {
  11695. front: {
  11696. height: math.unit(6, "feet"),
  11697. weight: math.unit(120, "kg"),
  11698. name: "Front",
  11699. image: {
  11700. source: "./media/characters/zevulfius/front.svg",
  11701. extra: 965 / 903
  11702. }
  11703. },
  11704. side: {
  11705. height: math.unit(6, "feet"),
  11706. weight: math.unit(120, "kg"),
  11707. name: "Side",
  11708. image: {
  11709. source: "./media/characters/zevulfius/side.svg",
  11710. extra: 939 / 900
  11711. }
  11712. },
  11713. back: {
  11714. height: math.unit(6, "feet"),
  11715. weight: math.unit(120, "kg"),
  11716. name: "Back",
  11717. image: {
  11718. source: "./media/characters/zevulfius/back.svg",
  11719. extra: 918 / 854,
  11720. bottom: 0.005
  11721. }
  11722. },
  11723. foot: {
  11724. height: math.unit(6 / 3.72, "feet"),
  11725. name: "Foot",
  11726. image: {
  11727. source: "./media/characters/zevulfius/foot.svg"
  11728. }
  11729. },
  11730. },
  11731. [
  11732. {
  11733. name: "Macro",
  11734. height: math.unit(750, "meters")
  11735. },
  11736. {
  11737. name: "Megamacro",
  11738. height: math.unit(20, "km"),
  11739. default: true
  11740. },
  11741. {
  11742. name: "Gigamacro",
  11743. height: math.unit(2000, "km")
  11744. },
  11745. {
  11746. name: "Teramacro",
  11747. height: math.unit(250000, "km")
  11748. },
  11749. ]
  11750. ))
  11751. characterMakers.push(() => makeCharacter(
  11752. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11753. {
  11754. front: {
  11755. height: math.unit(100, "feet"),
  11756. weight: math.unit(350, "kg"),
  11757. name: "Front",
  11758. image: {
  11759. source: "./media/characters/rikes/front.svg",
  11760. extra: 1565 / 1483,
  11761. bottom: 0.017
  11762. }
  11763. },
  11764. },
  11765. [
  11766. {
  11767. name: "Macro",
  11768. height: math.unit(100, "feet"),
  11769. default: true
  11770. },
  11771. ]
  11772. ))
  11773. characterMakers.push(() => makeCharacter(
  11774. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11775. {
  11776. front: {
  11777. height: math.unit(8, "feet"),
  11778. weight: math.unit(356, "lb"),
  11779. name: "Front",
  11780. image: {
  11781. source: "./media/characters/adam-silver-mane/front.svg",
  11782. extra: 1036/937,
  11783. bottom: 63/1099
  11784. }
  11785. },
  11786. side: {
  11787. height: math.unit(8, "feet"),
  11788. weight: math.unit(356, "lb"),
  11789. name: "Side",
  11790. image: {
  11791. source: "./media/characters/adam-silver-mane/side.svg",
  11792. extra: 997/901,
  11793. bottom: 59/1056
  11794. }
  11795. },
  11796. frontNsfw: {
  11797. height: math.unit(8, "feet"),
  11798. weight: math.unit(356, "lb"),
  11799. name: "Front (NSFW)",
  11800. image: {
  11801. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11802. extra: 1036/937,
  11803. bottom: 63/1099
  11804. }
  11805. },
  11806. sideNsfw: {
  11807. height: math.unit(8, "feet"),
  11808. weight: math.unit(356, "lb"),
  11809. name: "Side (NSFW)",
  11810. image: {
  11811. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11812. extra: 997/901,
  11813. bottom: 59/1056
  11814. }
  11815. },
  11816. dick: {
  11817. height: math.unit(2.1, "feet"),
  11818. name: "Dick",
  11819. image: {
  11820. source: "./media/characters/adam-silver-mane/dick.svg"
  11821. }
  11822. },
  11823. taur: {
  11824. height: math.unit(16, "feet"),
  11825. weight: math.unit(1500, "kg"),
  11826. name: "Taur",
  11827. image: {
  11828. source: "./media/characters/adam-silver-mane/taur.svg",
  11829. extra: 1713 / 1571,
  11830. bottom: 0.01
  11831. }
  11832. },
  11833. },
  11834. [
  11835. {
  11836. name: "Normal",
  11837. height: math.unit(8, "feet")
  11838. },
  11839. {
  11840. name: "Minimacro",
  11841. height: math.unit(80, "feet")
  11842. },
  11843. {
  11844. name: "MDA",
  11845. height: math.unit(80, "meters")
  11846. },
  11847. {
  11848. name: "Macro",
  11849. height: math.unit(800, "feet"),
  11850. default: true
  11851. },
  11852. {
  11853. name: "Megamacro",
  11854. height: math.unit(8000, "feet")
  11855. },
  11856. {
  11857. name: "Gigamacro",
  11858. height: math.unit(800, "miles")
  11859. },
  11860. {
  11861. name: "Teramacro",
  11862. height: math.unit(80000, "miles")
  11863. },
  11864. {
  11865. name: "Celestial",
  11866. height: math.unit(8e6, "miles")
  11867. },
  11868. {
  11869. name: "Star Dragon",
  11870. height: math.unit(800000, "parsecs")
  11871. },
  11872. {
  11873. name: "Godly",
  11874. height: math.unit(800, "teraparsecs")
  11875. },
  11876. ]
  11877. ))
  11878. characterMakers.push(() => makeCharacter(
  11879. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11880. {
  11881. front: {
  11882. height: math.unit(6, "feet"),
  11883. weight: math.unit(150, "lb"),
  11884. name: "Front",
  11885. image: {
  11886. source: "./media/characters/ky'owin/front.svg",
  11887. extra: 3862/3053,
  11888. bottom: 74/3936
  11889. }
  11890. },
  11891. },
  11892. [
  11893. {
  11894. name: "Normal",
  11895. height: math.unit(6 + 8 / 12, "feet")
  11896. },
  11897. {
  11898. name: "Large",
  11899. height: math.unit(68, "feet")
  11900. },
  11901. {
  11902. name: "Macro",
  11903. height: math.unit(132, "feet")
  11904. },
  11905. {
  11906. name: "Macro+",
  11907. height: math.unit(340, "feet")
  11908. },
  11909. {
  11910. name: "Macro++",
  11911. height: math.unit(680, "feet"),
  11912. default: true
  11913. },
  11914. {
  11915. name: "Megamacro",
  11916. height: math.unit(1, "mile")
  11917. },
  11918. {
  11919. name: "Megamacro+",
  11920. height: math.unit(10, "miles")
  11921. },
  11922. ]
  11923. ))
  11924. characterMakers.push(() => makeCharacter(
  11925. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11926. {
  11927. front: {
  11928. height: math.unit(4, "feet"),
  11929. weight: math.unit(50, "lb"),
  11930. name: "Front",
  11931. image: {
  11932. source: "./media/characters/mal/front.svg",
  11933. extra: 785 / 724,
  11934. bottom: 0.07
  11935. }
  11936. },
  11937. },
  11938. [
  11939. {
  11940. name: "Micro",
  11941. height: math.unit(4, "inches")
  11942. },
  11943. {
  11944. name: "Normal",
  11945. height: math.unit(4, "feet"),
  11946. default: true
  11947. },
  11948. {
  11949. name: "Macro",
  11950. height: math.unit(200, "feet")
  11951. },
  11952. ]
  11953. ))
  11954. characterMakers.push(() => makeCharacter(
  11955. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11956. {
  11957. front: {
  11958. height: math.unit(6, "feet"),
  11959. weight: math.unit(150, "lb"),
  11960. name: "Front",
  11961. image: {
  11962. source: "./media/characters/jordan-deware/front.svg",
  11963. extra: 1191 / 1012
  11964. }
  11965. },
  11966. },
  11967. [
  11968. {
  11969. name: "Nano",
  11970. height: math.unit(0.01, "mm")
  11971. },
  11972. {
  11973. name: "Minimicro",
  11974. height: math.unit(1, "mm")
  11975. },
  11976. {
  11977. name: "Micro",
  11978. height: math.unit(0.5, "inches")
  11979. },
  11980. {
  11981. name: "Normal",
  11982. height: math.unit(4, "feet"),
  11983. default: true
  11984. },
  11985. {
  11986. name: "Minimacro",
  11987. height: math.unit(40, "meters")
  11988. },
  11989. {
  11990. name: "Small Macro",
  11991. height: math.unit(400, "meters")
  11992. },
  11993. {
  11994. name: "Macro",
  11995. height: math.unit(4, "miles")
  11996. },
  11997. {
  11998. name: "Megamacro",
  11999. height: math.unit(40, "miles")
  12000. },
  12001. {
  12002. name: "Megamacro+",
  12003. height: math.unit(400, "miles")
  12004. },
  12005. {
  12006. name: "Gigamacro",
  12007. height: math.unit(400000, "miles")
  12008. },
  12009. ]
  12010. ))
  12011. characterMakers.push(() => makeCharacter(
  12012. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  12013. {
  12014. side: {
  12015. height: math.unit(6, "feet"),
  12016. weight: math.unit(150, "lb"),
  12017. name: "Side",
  12018. image: {
  12019. source: "./media/characters/kimiko/side.svg",
  12020. extra: 600 / 358
  12021. }
  12022. },
  12023. },
  12024. [
  12025. {
  12026. name: "Normal",
  12027. height: math.unit(15, "feet"),
  12028. default: true
  12029. },
  12030. {
  12031. name: "Macro",
  12032. height: math.unit(220, "feet")
  12033. },
  12034. {
  12035. name: "Macro+",
  12036. height: math.unit(1450, "feet")
  12037. },
  12038. {
  12039. name: "Megamacro",
  12040. height: math.unit(11500, "feet")
  12041. },
  12042. {
  12043. name: "Gigamacro",
  12044. height: math.unit(9500, "miles")
  12045. },
  12046. {
  12047. name: "Teramacro",
  12048. height: math.unit(2208005005, "miles")
  12049. },
  12050. {
  12051. name: "Examacro",
  12052. height: math.unit(2750, "parsecs")
  12053. },
  12054. {
  12055. name: "Zettamacro",
  12056. height: math.unit(101500, "parsecs")
  12057. },
  12058. ]
  12059. ))
  12060. characterMakers.push(() => makeCharacter(
  12061. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  12062. {
  12063. front: {
  12064. height: math.unit(6, "feet"),
  12065. weight: math.unit(70, "kg"),
  12066. name: "Front",
  12067. image: {
  12068. source: "./media/characters/andrew-sleepy/front.svg"
  12069. }
  12070. },
  12071. side: {
  12072. height: math.unit(6, "feet"),
  12073. weight: math.unit(70, "kg"),
  12074. name: "Side",
  12075. image: {
  12076. source: "./media/characters/andrew-sleepy/side.svg"
  12077. }
  12078. },
  12079. },
  12080. [
  12081. {
  12082. name: "Micro",
  12083. height: math.unit(1, "mm"),
  12084. default: true
  12085. },
  12086. ]
  12087. ))
  12088. characterMakers.push(() => makeCharacter(
  12089. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  12090. {
  12091. front: {
  12092. height: math.unit(6, "feet"),
  12093. weight: math.unit(150, "lb"),
  12094. name: "Front",
  12095. image: {
  12096. source: "./media/characters/judio/front.svg",
  12097. extra: 1258 / 1110
  12098. }
  12099. },
  12100. },
  12101. [
  12102. {
  12103. name: "Normal",
  12104. height: math.unit(5 + 6 / 12, "feet")
  12105. },
  12106. {
  12107. name: "Macro",
  12108. height: math.unit(1000, "feet"),
  12109. default: true
  12110. },
  12111. {
  12112. name: "Megamacro",
  12113. height: math.unit(10, "miles")
  12114. },
  12115. ]
  12116. ))
  12117. characterMakers.push(() => makeCharacter(
  12118. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  12119. {
  12120. frontDressed: {
  12121. height: math.unit(6, "feet"),
  12122. weight: math.unit(68, "kg"),
  12123. name: "Front (Dressed)",
  12124. image: {
  12125. source: "./media/characters/nomaxice/front-dressed.svg",
  12126. extra: 1137/824,
  12127. bottom: 74/1211
  12128. }
  12129. },
  12130. frontShorts: {
  12131. height: math.unit(6, "feet"),
  12132. weight: math.unit(68, "kg"),
  12133. name: "Front (Shorts)",
  12134. image: {
  12135. source: "./media/characters/nomaxice/front-shorts.svg",
  12136. extra: 1137/824,
  12137. bottom: 74/1211
  12138. }
  12139. },
  12140. back: {
  12141. height: math.unit(6, "feet"),
  12142. weight: math.unit(68, "kg"),
  12143. name: "Back",
  12144. image: {
  12145. source: "./media/characters/nomaxice/back.svg",
  12146. extra: 822/786,
  12147. bottom: 39/861
  12148. }
  12149. },
  12150. hand: {
  12151. height: math.unit(0.565, "feet"),
  12152. name: "Hand",
  12153. image: {
  12154. source: "./media/characters/nomaxice/hand.svg"
  12155. }
  12156. },
  12157. foot: {
  12158. height: math.unit(1, "feet"),
  12159. name: "Foot",
  12160. image: {
  12161. source: "./media/characters/nomaxice/foot.svg"
  12162. }
  12163. },
  12164. },
  12165. [
  12166. {
  12167. name: "Micro",
  12168. height: math.unit(8, "cm")
  12169. },
  12170. {
  12171. name: "Norm",
  12172. height: math.unit(1.82, "m")
  12173. },
  12174. {
  12175. name: "Norm+",
  12176. height: math.unit(8.8, "feet"),
  12177. default: true
  12178. },
  12179. {
  12180. name: "Big",
  12181. height: math.unit(8, "meters")
  12182. },
  12183. {
  12184. name: "Macro",
  12185. height: math.unit(18, "meters")
  12186. },
  12187. {
  12188. name: "Macro+",
  12189. height: math.unit(88, "meters")
  12190. },
  12191. ]
  12192. ))
  12193. characterMakers.push(() => makeCharacter(
  12194. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  12195. {
  12196. front: {
  12197. height: math.unit(12, "feet"),
  12198. weight: math.unit(1.5, "tons"),
  12199. name: "Front",
  12200. image: {
  12201. source: "./media/characters/dydros/front.svg",
  12202. extra: 863 / 800,
  12203. bottom: 0.015
  12204. }
  12205. },
  12206. back: {
  12207. height: math.unit(12, "feet"),
  12208. weight: math.unit(1.5, "tons"),
  12209. name: "Back",
  12210. image: {
  12211. source: "./media/characters/dydros/back.svg",
  12212. extra: 900 / 843,
  12213. bottom: 0.005
  12214. }
  12215. },
  12216. },
  12217. [
  12218. {
  12219. name: "Normal",
  12220. height: math.unit(12, "feet"),
  12221. default: true
  12222. },
  12223. ]
  12224. ))
  12225. characterMakers.push(() => makeCharacter(
  12226. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12227. {
  12228. front: {
  12229. height: math.unit(6, "feet"),
  12230. weight: math.unit(100, "kg"),
  12231. name: "Front",
  12232. image: {
  12233. source: "./media/characters/riggi/front.svg",
  12234. extra: 5787 / 5303
  12235. }
  12236. },
  12237. hyper: {
  12238. height: math.unit(6 * 5 / 3, "feet"),
  12239. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12240. name: "Hyper",
  12241. image: {
  12242. source: "./media/characters/riggi/hyper.svg",
  12243. extra: 3595 / 3485
  12244. }
  12245. },
  12246. },
  12247. [
  12248. {
  12249. name: "Small Macro",
  12250. height: math.unit(50, "feet")
  12251. },
  12252. {
  12253. name: "Default",
  12254. height: math.unit(200, "feet"),
  12255. default: true
  12256. },
  12257. {
  12258. name: "Loom",
  12259. height: math.unit(10000, "feet")
  12260. },
  12261. {
  12262. name: "Cruising Altitude",
  12263. height: math.unit(30000, "feet")
  12264. },
  12265. {
  12266. name: "Megamacro",
  12267. height: math.unit(100, "miles")
  12268. },
  12269. {
  12270. name: "Continent Sized",
  12271. height: math.unit(2800, "miles")
  12272. },
  12273. {
  12274. name: "Earth Sized",
  12275. height: math.unit(8000, "miles")
  12276. },
  12277. ]
  12278. ))
  12279. characterMakers.push(() => makeCharacter(
  12280. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12281. {
  12282. front: {
  12283. height: math.unit(6, "feet"),
  12284. weight: math.unit(250, "lb"),
  12285. name: "Front",
  12286. image: {
  12287. source: "./media/characters/alexi/front.svg",
  12288. extra: 3483 / 3291,
  12289. bottom: 0.04
  12290. }
  12291. },
  12292. back: {
  12293. height: math.unit(6, "feet"),
  12294. weight: math.unit(250, "lb"),
  12295. name: "Back",
  12296. image: {
  12297. source: "./media/characters/alexi/back.svg",
  12298. extra: 3533 / 3356,
  12299. bottom: 0.021
  12300. }
  12301. },
  12302. frontTransforming: {
  12303. height: math.unit(8.58, "feet"),
  12304. weight: math.unit(1300, "lb"),
  12305. name: "Transforming",
  12306. image: {
  12307. source: "./media/characters/alexi/front-transforming.svg",
  12308. extra: 437 / 409,
  12309. bottom: 19 / 458.66
  12310. }
  12311. },
  12312. frontTransformed: {
  12313. height: math.unit(12.5, "feet"),
  12314. weight: math.unit(4000, "lb"),
  12315. name: "Transformed",
  12316. image: {
  12317. source: "./media/characters/alexi/front-transformed.svg",
  12318. extra: 639 / 614,
  12319. bottom: 30.55 / 671
  12320. }
  12321. },
  12322. },
  12323. [
  12324. {
  12325. name: "Normal",
  12326. height: math.unit(14, "feet"),
  12327. default: true
  12328. },
  12329. {
  12330. name: "Minimacro",
  12331. height: math.unit(30, "meters")
  12332. },
  12333. {
  12334. name: "Macro",
  12335. height: math.unit(500, "meters")
  12336. },
  12337. {
  12338. name: "Megamacro",
  12339. height: math.unit(9000, "km")
  12340. },
  12341. {
  12342. name: "Teramacro",
  12343. height: math.unit(384000, "km")
  12344. },
  12345. ]
  12346. ))
  12347. characterMakers.push(() => makeCharacter(
  12348. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12349. {
  12350. front: {
  12351. height: math.unit(6, "feet"),
  12352. weight: math.unit(150, "lb"),
  12353. name: "Front",
  12354. image: {
  12355. source: "./media/characters/kayroo/front.svg",
  12356. extra: 1153 / 1038,
  12357. bottom: 0.06
  12358. }
  12359. },
  12360. foot: {
  12361. height: math.unit(6, "feet"),
  12362. weight: math.unit(150, "lb"),
  12363. name: "Foot",
  12364. image: {
  12365. source: "./media/characters/kayroo/foot.svg"
  12366. }
  12367. },
  12368. },
  12369. [
  12370. {
  12371. name: "Normal",
  12372. height: math.unit(8, "feet"),
  12373. default: true
  12374. },
  12375. {
  12376. name: "Minimacro",
  12377. height: math.unit(250, "feet")
  12378. },
  12379. {
  12380. name: "Macro",
  12381. height: math.unit(2800, "feet")
  12382. },
  12383. {
  12384. name: "Megamacro",
  12385. height: math.unit(5200, "feet")
  12386. },
  12387. {
  12388. name: "Gigamacro",
  12389. height: math.unit(27000, "feet")
  12390. },
  12391. {
  12392. name: "Omega",
  12393. height: math.unit(45000, "feet")
  12394. },
  12395. ]
  12396. ))
  12397. characterMakers.push(() => makeCharacter(
  12398. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12399. {
  12400. front: {
  12401. height: math.unit(18, "feet"),
  12402. weight: math.unit(5800, "lb"),
  12403. name: "Front",
  12404. image: {
  12405. source: "./media/characters/rhys/front.svg",
  12406. extra: 3386 / 3090,
  12407. bottom: 0.07
  12408. }
  12409. },
  12410. },
  12411. [
  12412. {
  12413. name: "Normal",
  12414. height: math.unit(18, "feet"),
  12415. default: true
  12416. },
  12417. {
  12418. name: "Working Size",
  12419. height: math.unit(200, "feet")
  12420. },
  12421. {
  12422. name: "Demolition Size",
  12423. height: math.unit(2000, "feet")
  12424. },
  12425. {
  12426. name: "Maximum Licensed Size",
  12427. height: math.unit(5, "miles")
  12428. },
  12429. {
  12430. name: "Maximum Observed Size",
  12431. height: math.unit(10, "yottameters")
  12432. },
  12433. ]
  12434. ))
  12435. characterMakers.push(() => makeCharacter(
  12436. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12437. {
  12438. front: {
  12439. height: math.unit(6, "feet"),
  12440. weight: math.unit(250, "lb"),
  12441. name: "Front",
  12442. image: {
  12443. source: "./media/characters/toto/front.svg",
  12444. extra: 527 / 479,
  12445. bottom: 0.05
  12446. }
  12447. },
  12448. },
  12449. [
  12450. {
  12451. name: "Micro",
  12452. height: math.unit(3, "feet")
  12453. },
  12454. {
  12455. name: "Normal",
  12456. height: math.unit(10, "feet")
  12457. },
  12458. {
  12459. name: "Macro",
  12460. height: math.unit(150, "feet"),
  12461. default: true
  12462. },
  12463. {
  12464. name: "Megamacro",
  12465. height: math.unit(1200, "feet")
  12466. },
  12467. ]
  12468. ))
  12469. characterMakers.push(() => makeCharacter(
  12470. { name: "King", species: ["lion"], tags: ["anthro"] },
  12471. {
  12472. back: {
  12473. height: math.unit(6, "feet"),
  12474. weight: math.unit(150, "lb"),
  12475. name: "Back",
  12476. image: {
  12477. source: "./media/characters/king/back.svg"
  12478. }
  12479. },
  12480. },
  12481. [
  12482. {
  12483. name: "Micro",
  12484. height: math.unit(2, "inches")
  12485. },
  12486. {
  12487. name: "Normal",
  12488. height: math.unit(8, "feet")
  12489. },
  12490. {
  12491. name: "Macro",
  12492. height: math.unit(200, "feet"),
  12493. default: true
  12494. },
  12495. {
  12496. name: "Megamacro",
  12497. height: math.unit(50, "miles")
  12498. },
  12499. ]
  12500. ))
  12501. characterMakers.push(() => makeCharacter(
  12502. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12503. {
  12504. front: {
  12505. height: math.unit(11, "feet"),
  12506. weight: math.unit(1400, "lb"),
  12507. name: "Front",
  12508. image: {
  12509. source: "./media/characters/cordite/front.svg",
  12510. extra: 1919/1827,
  12511. bottom: 40/1959
  12512. }
  12513. },
  12514. side: {
  12515. height: math.unit(11, "feet"),
  12516. weight: math.unit(1400, "lb"),
  12517. name: "Side",
  12518. image: {
  12519. source: "./media/characters/cordite/side.svg",
  12520. extra: 1908/1793,
  12521. bottom: 38/1946
  12522. }
  12523. },
  12524. back: {
  12525. height: math.unit(11, "feet"),
  12526. weight: math.unit(1400, "lb"),
  12527. name: "Back",
  12528. image: {
  12529. source: "./media/characters/cordite/back.svg",
  12530. extra: 1938/1837,
  12531. bottom: 10/1948
  12532. }
  12533. },
  12534. feral: {
  12535. height: math.unit(2, "feet"),
  12536. weight: math.unit(90, "lb"),
  12537. name: "Feral",
  12538. image: {
  12539. source: "./media/characters/cordite/feral.svg",
  12540. extra: 1260 / 755,
  12541. bottom: 0.05
  12542. }
  12543. },
  12544. },
  12545. [
  12546. {
  12547. name: "Normal",
  12548. height: math.unit(11, "feet"),
  12549. default: true
  12550. },
  12551. ]
  12552. ))
  12553. characterMakers.push(() => makeCharacter(
  12554. { name: "Pianostrong", species: ["husky"], 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/pianostrong/front.svg",
  12562. extra: 6577 / 6254,
  12563. bottom: 0.02
  12564. }
  12565. },
  12566. side: {
  12567. height: math.unit(6, "feet"),
  12568. weight: math.unit(150, "lb"),
  12569. name: "Side",
  12570. image: {
  12571. source: "./media/characters/pianostrong/side.svg",
  12572. extra: 6106 / 5730
  12573. }
  12574. },
  12575. back: {
  12576. height: math.unit(6, "feet"),
  12577. weight: math.unit(150, "lb"),
  12578. name: "Back",
  12579. image: {
  12580. source: "./media/characters/pianostrong/back.svg",
  12581. extra: 6085 / 5733,
  12582. bottom: 0.01
  12583. }
  12584. },
  12585. },
  12586. [
  12587. {
  12588. name: "Macro",
  12589. height: math.unit(100, "feet")
  12590. },
  12591. {
  12592. name: "Macro+",
  12593. height: math.unit(300, "feet"),
  12594. default: true
  12595. },
  12596. {
  12597. name: "Macro++",
  12598. height: math.unit(1000, "feet")
  12599. },
  12600. ]
  12601. ))
  12602. characterMakers.push(() => makeCharacter(
  12603. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12604. {
  12605. front: {
  12606. height: math.unit(6, "feet"),
  12607. weight: math.unit(150, "lb"),
  12608. name: "Front",
  12609. image: {
  12610. source: "./media/characters/kona/front.svg",
  12611. extra: 2960 / 2629,
  12612. bottom: 0.005
  12613. }
  12614. },
  12615. },
  12616. [
  12617. {
  12618. name: "Normal",
  12619. height: math.unit(11 + 8 / 12, "feet")
  12620. },
  12621. {
  12622. name: "Macro",
  12623. height: math.unit(850, "feet"),
  12624. default: true
  12625. },
  12626. {
  12627. name: "Macro+",
  12628. height: math.unit(1.5, "km"),
  12629. default: true
  12630. },
  12631. {
  12632. name: "Megamacro",
  12633. height: math.unit(80, "miles")
  12634. },
  12635. {
  12636. name: "Gigamacro",
  12637. height: math.unit(3500, "miles")
  12638. },
  12639. ]
  12640. ))
  12641. characterMakers.push(() => makeCharacter(
  12642. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12643. {
  12644. side: {
  12645. height: math.unit(1.9, "meters"),
  12646. weight: math.unit(326, "kg"),
  12647. name: "Side",
  12648. image: {
  12649. source: "./media/characters/levi/side.svg",
  12650. extra: 1704 / 1334,
  12651. bottom: 0.02
  12652. }
  12653. },
  12654. },
  12655. [
  12656. {
  12657. name: "Normal",
  12658. height: math.unit(1.9, "meters"),
  12659. default: true
  12660. },
  12661. {
  12662. name: "Macro",
  12663. height: math.unit(20, "meters")
  12664. },
  12665. {
  12666. name: "Macro+",
  12667. height: math.unit(200, "meters")
  12668. },
  12669. {
  12670. name: "Megamacro",
  12671. height: math.unit(2, "km")
  12672. },
  12673. {
  12674. name: "Megamacro+",
  12675. height: math.unit(20, "km")
  12676. },
  12677. {
  12678. name: "Gigamacro",
  12679. height: math.unit(2500, "km")
  12680. },
  12681. {
  12682. name: "Gigamacro+",
  12683. height: math.unit(120000, "km")
  12684. },
  12685. {
  12686. name: "Teramacro",
  12687. height: math.unit(7.77e6, "km")
  12688. },
  12689. ]
  12690. ))
  12691. characterMakers.push(() => makeCharacter(
  12692. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12693. {
  12694. front: {
  12695. height: math.unit(6 + 4/12, "feet"),
  12696. weight: math.unit(190, "lb"),
  12697. name: "Front",
  12698. image: {
  12699. source: "./media/characters/bmc/front.svg",
  12700. extra: 1626/1472,
  12701. bottom: 79/1705
  12702. }
  12703. },
  12704. back: {
  12705. height: math.unit(6 + 4/12, "feet"),
  12706. weight: math.unit(190, "lb"),
  12707. name: "Back",
  12708. image: {
  12709. source: "./media/characters/bmc/back.svg",
  12710. extra: 1640/1479,
  12711. bottom: 45/1685
  12712. }
  12713. },
  12714. frontArmor: {
  12715. height: math.unit(6 + 4/12, "feet"),
  12716. weight: math.unit(190, "lb"),
  12717. name: "Front-armor",
  12718. image: {
  12719. source: "./media/characters/bmc/front-armor.svg",
  12720. extra: 1538/1468,
  12721. bottom: 79/1617
  12722. }
  12723. },
  12724. },
  12725. [
  12726. {
  12727. name: "Human-sized",
  12728. height: math.unit(6 + 4 / 12, "feet")
  12729. },
  12730. {
  12731. name: "Interactive Size",
  12732. height: math.unit(25, "feet")
  12733. },
  12734. {
  12735. name: "Small",
  12736. height: math.unit(250, "feet")
  12737. },
  12738. {
  12739. name: "Normal",
  12740. height: math.unit(1250, "feet"),
  12741. default: true
  12742. },
  12743. {
  12744. name: "Good Day",
  12745. height: math.unit(88, "miles")
  12746. },
  12747. {
  12748. name: "Largest Measured Size",
  12749. height: math.unit(105.960, "galaxies")
  12750. },
  12751. ]
  12752. ))
  12753. characterMakers.push(() => makeCharacter(
  12754. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12755. {
  12756. front: {
  12757. height: math.unit(20, "feet"),
  12758. weight: math.unit(2016, "kg"),
  12759. name: "Front",
  12760. image: {
  12761. source: "./media/characters/sven-the-kaiju/front.svg",
  12762. extra: 1277/1250,
  12763. bottom: 35/1312
  12764. }
  12765. },
  12766. mouth: {
  12767. height: math.unit(1.85, "feet"),
  12768. name: "Mouth",
  12769. image: {
  12770. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12771. }
  12772. },
  12773. },
  12774. [
  12775. {
  12776. name: "Fairy",
  12777. height: math.unit(6, "inches")
  12778. },
  12779. {
  12780. name: "Normal",
  12781. height: math.unit(20, "feet"),
  12782. default: true
  12783. },
  12784. {
  12785. name: "Rampage",
  12786. height: math.unit(200, "feet")
  12787. },
  12788. {
  12789. name: "Archfey Forest Guardian",
  12790. height: math.unit(1, "mile")
  12791. },
  12792. ]
  12793. ))
  12794. characterMakers.push(() => makeCharacter(
  12795. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12796. {
  12797. front: {
  12798. height: math.unit(4, "meters"),
  12799. weight: math.unit(2, "tons"),
  12800. name: "Front",
  12801. image: {
  12802. source: "./media/characters/marik/front.svg",
  12803. extra: 1057 / 1003,
  12804. bottom: 0.08
  12805. }
  12806. },
  12807. },
  12808. [
  12809. {
  12810. name: "Normal",
  12811. height: math.unit(4, "meters"),
  12812. default: true
  12813. },
  12814. {
  12815. name: "Macro",
  12816. height: math.unit(20, "meters")
  12817. },
  12818. {
  12819. name: "Megamacro",
  12820. height: math.unit(50, "km")
  12821. },
  12822. {
  12823. name: "Gigamacro",
  12824. height: math.unit(100, "km")
  12825. },
  12826. {
  12827. name: "Alpha Macro",
  12828. height: math.unit(7.88e7, "yottameters")
  12829. },
  12830. ]
  12831. ))
  12832. characterMakers.push(() => makeCharacter(
  12833. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12834. {
  12835. front: {
  12836. height: math.unit(6, "feet"),
  12837. weight: math.unit(110, "lb"),
  12838. name: "Front",
  12839. image: {
  12840. source: "./media/characters/mel/front.svg",
  12841. extra: 736 / 617,
  12842. bottom: 0.017
  12843. }
  12844. },
  12845. },
  12846. [
  12847. {
  12848. name: "Pico",
  12849. height: math.unit(3, "pm")
  12850. },
  12851. {
  12852. name: "Nano",
  12853. height: math.unit(3, "nm")
  12854. },
  12855. {
  12856. name: "Micro",
  12857. height: math.unit(0.3, "mm"),
  12858. default: true
  12859. },
  12860. {
  12861. name: "Micro+",
  12862. height: math.unit(3, "mm")
  12863. },
  12864. {
  12865. name: "Normal",
  12866. height: math.unit(5 + 10.5 / 12, "feet")
  12867. },
  12868. ]
  12869. ))
  12870. characterMakers.push(() => makeCharacter(
  12871. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12872. {
  12873. kaiju: {
  12874. height: math.unit(1.75, "meters"),
  12875. weight: math.unit(55, "kg"),
  12876. name: "Kaiju",
  12877. image: {
  12878. source: "./media/characters/lykonous/kaiju.svg",
  12879. extra: 1055 / 946,
  12880. bottom: 0.135
  12881. }
  12882. },
  12883. },
  12884. [
  12885. {
  12886. name: "Normal",
  12887. height: math.unit(2.5, "meters"),
  12888. default: true
  12889. },
  12890. {
  12891. name: "Kaiju Dragon",
  12892. height: math.unit(60, "meters")
  12893. },
  12894. {
  12895. name: "Mega Kaiju",
  12896. height: math.unit(120, "km")
  12897. },
  12898. {
  12899. name: "Giga Kaiju",
  12900. height: math.unit(200, "megameters")
  12901. },
  12902. {
  12903. name: "Terra Kaiju",
  12904. height: math.unit(400, "gigameters")
  12905. },
  12906. {
  12907. name: "Kaiju Dragon God",
  12908. height: math.unit(13000, "exaparsecs")
  12909. },
  12910. ]
  12911. ))
  12912. characterMakers.push(() => makeCharacter(
  12913. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12914. {
  12915. front: {
  12916. height: math.unit(6, "feet"),
  12917. weight: math.unit(150, "lb"),
  12918. name: "Front",
  12919. image: {
  12920. source: "./media/characters/blü/front.svg",
  12921. extra: 1883 / 1564,
  12922. bottom: 0.031
  12923. }
  12924. },
  12925. },
  12926. [
  12927. {
  12928. name: "Normal",
  12929. height: math.unit(13, "feet"),
  12930. default: true
  12931. },
  12932. {
  12933. name: "Big Boi",
  12934. height: math.unit(150, "meters")
  12935. },
  12936. {
  12937. name: "Mini Stomper",
  12938. height: math.unit(300, "meters")
  12939. },
  12940. {
  12941. name: "Macro",
  12942. height: math.unit(1000, "meters")
  12943. },
  12944. {
  12945. name: "Megamacro",
  12946. height: math.unit(11000, "meters")
  12947. },
  12948. {
  12949. name: "Gigamacro",
  12950. height: math.unit(11000, "km")
  12951. },
  12952. {
  12953. name: "Teramacro",
  12954. height: math.unit(420000, "km")
  12955. },
  12956. {
  12957. name: "Examacro",
  12958. height: math.unit(120, "parsecs")
  12959. },
  12960. {
  12961. name: "God Tho",
  12962. height: math.unit(98000000000, "parsecs")
  12963. },
  12964. ]
  12965. ))
  12966. characterMakers.push(() => makeCharacter(
  12967. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12968. {
  12969. taurFront: {
  12970. height: math.unit(6, "feet"),
  12971. weight: math.unit(200, "lb"),
  12972. name: "Taur (Front)",
  12973. image: {
  12974. source: "./media/characters/scales/taur-front.svg",
  12975. extra: 1,
  12976. bottom: 0.05
  12977. }
  12978. },
  12979. taurBack: {
  12980. height: math.unit(6, "feet"),
  12981. weight: math.unit(200, "lb"),
  12982. name: "Taur (Back)",
  12983. image: {
  12984. source: "./media/characters/scales/taur-back.svg",
  12985. extra: 1,
  12986. bottom: 0.08
  12987. }
  12988. },
  12989. anthro: {
  12990. height: math.unit(6 * 7 / 12, "feet"),
  12991. weight: math.unit(100, "lb"),
  12992. name: "Anthro",
  12993. image: {
  12994. source: "./media/characters/scales/anthro.svg",
  12995. extra: 1,
  12996. bottom: 0.06
  12997. }
  12998. },
  12999. },
  13000. [
  13001. {
  13002. name: "Normal",
  13003. height: math.unit(12, "feet"),
  13004. default: true
  13005. },
  13006. ]
  13007. ))
  13008. characterMakers.push(() => makeCharacter(
  13009. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  13010. {
  13011. front: {
  13012. height: math.unit(6, "feet"),
  13013. weight: math.unit(150, "lb"),
  13014. name: "Front",
  13015. image: {
  13016. source: "./media/characters/koragos/front.svg",
  13017. extra: 841 / 794,
  13018. bottom: 0.035
  13019. }
  13020. },
  13021. back: {
  13022. height: math.unit(6, "feet"),
  13023. weight: math.unit(150, "lb"),
  13024. name: "Back",
  13025. image: {
  13026. source: "./media/characters/koragos/back.svg",
  13027. extra: 841 / 810,
  13028. bottom: 0.022
  13029. }
  13030. },
  13031. },
  13032. [
  13033. {
  13034. name: "Normal",
  13035. height: math.unit(6 + 11 / 12, "feet"),
  13036. default: true
  13037. },
  13038. {
  13039. name: "Macro",
  13040. height: math.unit(490, "feet")
  13041. },
  13042. {
  13043. name: "Megamacro",
  13044. height: math.unit(10, "miles")
  13045. },
  13046. {
  13047. name: "Gigamacro",
  13048. height: math.unit(50, "miles")
  13049. },
  13050. ]
  13051. ))
  13052. characterMakers.push(() => makeCharacter(
  13053. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  13054. {
  13055. front: {
  13056. height: math.unit(6, "feet"),
  13057. weight: math.unit(250, "lb"),
  13058. name: "Front",
  13059. image: {
  13060. source: "./media/characters/xylrem/front.svg",
  13061. extra: 3323 / 3050,
  13062. bottom: 0.065
  13063. }
  13064. },
  13065. },
  13066. [
  13067. {
  13068. name: "Micro",
  13069. height: math.unit(4, "feet")
  13070. },
  13071. {
  13072. name: "Normal",
  13073. height: math.unit(16, "feet"),
  13074. default: true
  13075. },
  13076. {
  13077. name: "Macro",
  13078. height: math.unit(2720, "feet")
  13079. },
  13080. {
  13081. name: "Megamacro",
  13082. height: math.unit(25000, "miles")
  13083. },
  13084. ]
  13085. ))
  13086. characterMakers.push(() => makeCharacter(
  13087. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  13088. {
  13089. front: {
  13090. height: math.unit(8, "feet"),
  13091. weight: math.unit(250, "kg"),
  13092. name: "Front",
  13093. image: {
  13094. source: "./media/characters/ikideru/front.svg",
  13095. extra: 930 / 870,
  13096. bottom: 0.087
  13097. }
  13098. },
  13099. back: {
  13100. height: math.unit(8, "feet"),
  13101. weight: math.unit(250, "kg"),
  13102. name: "Back",
  13103. image: {
  13104. source: "./media/characters/ikideru/back.svg",
  13105. extra: 919 / 852,
  13106. bottom: 0.055
  13107. }
  13108. },
  13109. },
  13110. [
  13111. {
  13112. name: "Rare",
  13113. height: math.unit(8, "feet"),
  13114. default: true
  13115. },
  13116. {
  13117. name: "Playful Loom",
  13118. height: math.unit(80, "feet")
  13119. },
  13120. {
  13121. name: "City Leaner",
  13122. height: math.unit(230, "feet")
  13123. },
  13124. {
  13125. name: "Megamacro",
  13126. height: math.unit(2500, "feet")
  13127. },
  13128. {
  13129. name: "Gigamacro",
  13130. height: math.unit(26400, "feet")
  13131. },
  13132. {
  13133. name: "Tectonic Shifter",
  13134. height: math.unit(1.7, "megameters")
  13135. },
  13136. {
  13137. name: "Planet Carer",
  13138. height: math.unit(21, "megameters")
  13139. },
  13140. {
  13141. name: "God",
  13142. height: math.unit(11157.22, "parsecs")
  13143. },
  13144. ]
  13145. ))
  13146. characterMakers.push(() => makeCharacter(
  13147. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  13148. {
  13149. front: {
  13150. height: math.unit(6, "feet"),
  13151. weight: math.unit(120, "lb"),
  13152. name: "Front",
  13153. image: {
  13154. source: "./media/characters/neo/front.svg"
  13155. }
  13156. },
  13157. },
  13158. [
  13159. {
  13160. name: "Micro",
  13161. height: math.unit(2, "inches"),
  13162. default: true
  13163. },
  13164. {
  13165. name: "Human Size",
  13166. height: math.unit(5 + 8 / 12, "feet")
  13167. },
  13168. ]
  13169. ))
  13170. characterMakers.push(() => makeCharacter(
  13171. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  13172. {
  13173. front: {
  13174. height: math.unit(13 + 10 / 12, "feet"),
  13175. weight: math.unit(5320, "lb"),
  13176. name: "Front",
  13177. image: {
  13178. source: "./media/characters/chauncey-chantz/front.svg",
  13179. extra: 1587 / 1435,
  13180. bottom: 0.02
  13181. }
  13182. },
  13183. },
  13184. [
  13185. {
  13186. name: "Normal",
  13187. height: math.unit(13 + 10 / 12, "feet"),
  13188. default: true
  13189. },
  13190. {
  13191. name: "Macro",
  13192. height: math.unit(45, "feet")
  13193. },
  13194. {
  13195. name: "Megamacro",
  13196. height: math.unit(250, "miles")
  13197. },
  13198. {
  13199. name: "Planetary",
  13200. height: math.unit(10000, "miles")
  13201. },
  13202. {
  13203. name: "Galactic",
  13204. height: math.unit(40000, "parsecs")
  13205. },
  13206. {
  13207. name: "Universal",
  13208. height: math.unit(1, "yottameter")
  13209. },
  13210. ]
  13211. ))
  13212. characterMakers.push(() => makeCharacter(
  13213. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  13214. {
  13215. front: {
  13216. height: math.unit(6, "feet"),
  13217. weight: math.unit(150, "lb"),
  13218. name: "Front",
  13219. image: {
  13220. source: "./media/characters/epifox/front.svg",
  13221. extra: 1,
  13222. bottom: 0.075
  13223. }
  13224. },
  13225. },
  13226. [
  13227. {
  13228. name: "Micro",
  13229. height: math.unit(6, "inches")
  13230. },
  13231. {
  13232. name: "Normal",
  13233. height: math.unit(12, "feet"),
  13234. default: true
  13235. },
  13236. {
  13237. name: "Macro",
  13238. height: math.unit(3810, "feet")
  13239. },
  13240. {
  13241. name: "Megamacro",
  13242. height: math.unit(500, "miles")
  13243. },
  13244. ]
  13245. ))
  13246. characterMakers.push(() => makeCharacter(
  13247. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13248. {
  13249. front: {
  13250. height: math.unit(1.8796, "m"),
  13251. weight: math.unit(230, "lb"),
  13252. name: "Front",
  13253. image: {
  13254. source: "./media/characters/colin-t/front.svg",
  13255. extra: 1272 / 1193,
  13256. bottom: 0.07
  13257. }
  13258. },
  13259. },
  13260. [
  13261. {
  13262. name: "Micro",
  13263. height: math.unit(0.571, "meters")
  13264. },
  13265. {
  13266. name: "Normal",
  13267. height: math.unit(1.8796, "meters"),
  13268. default: true
  13269. },
  13270. {
  13271. name: "Tall",
  13272. height: math.unit(4, "meters")
  13273. },
  13274. {
  13275. name: "Macro",
  13276. height: math.unit(67.241, "meters")
  13277. },
  13278. {
  13279. name: "Megamacro",
  13280. height: math.unit(371.856, "meters")
  13281. },
  13282. {
  13283. name: "Planetary",
  13284. height: math.unit(12631.5689, "km")
  13285. },
  13286. ]
  13287. ))
  13288. characterMakers.push(() => makeCharacter(
  13289. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13290. {
  13291. front: {
  13292. height: math.unit(1.85, "meters"),
  13293. weight: math.unit(80, "kg"),
  13294. name: "Front",
  13295. image: {
  13296. source: "./media/characters/matvei/front.svg",
  13297. extra: 456/447,
  13298. bottom: 8/464
  13299. }
  13300. },
  13301. back: {
  13302. height: math.unit(1.85, "meters"),
  13303. weight: math.unit(80, "kg"),
  13304. name: "Back",
  13305. image: {
  13306. source: "./media/characters/matvei/back.svg",
  13307. extra: 434/427,
  13308. bottom: 11/445
  13309. }
  13310. },
  13311. },
  13312. [
  13313. {
  13314. name: "Normal",
  13315. height: math.unit(1.85, "meters"),
  13316. default: true
  13317. },
  13318. ]
  13319. ))
  13320. characterMakers.push(() => makeCharacter(
  13321. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13322. {
  13323. front: {
  13324. height: math.unit(5 + 9 / 12, "feet"),
  13325. weight: math.unit(70, "lb"),
  13326. name: "Front",
  13327. image: {
  13328. source: "./media/characters/quincy/front.svg",
  13329. extra: 3041 / 2751
  13330. }
  13331. },
  13332. back: {
  13333. height: math.unit(5 + 9 / 12, "feet"),
  13334. weight: math.unit(70, "lb"),
  13335. name: "Back",
  13336. image: {
  13337. source: "./media/characters/quincy/back.svg",
  13338. extra: 3041 / 2751
  13339. }
  13340. },
  13341. flying: {
  13342. height: math.unit(5 + 4 / 12, "feet"),
  13343. weight: math.unit(70, "lb"),
  13344. name: "Flying",
  13345. image: {
  13346. source: "./media/characters/quincy/flying.svg",
  13347. extra: 1044 / 930
  13348. }
  13349. },
  13350. },
  13351. [
  13352. {
  13353. name: "Micro",
  13354. height: math.unit(3, "cm")
  13355. },
  13356. {
  13357. name: "Normal",
  13358. height: math.unit(5 + 9 / 12, "feet")
  13359. },
  13360. {
  13361. name: "Macro",
  13362. height: math.unit(200, "meters"),
  13363. default: true
  13364. },
  13365. {
  13366. name: "Megamacro",
  13367. height: math.unit(1000, "meters")
  13368. },
  13369. ]
  13370. ))
  13371. characterMakers.push(() => makeCharacter(
  13372. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13373. {
  13374. front: {
  13375. height: math.unit(3 + 11/12, "feet"),
  13376. weight: math.unit(50, "lb"),
  13377. name: "Front",
  13378. image: {
  13379. source: "./media/characters/vanrel/front.svg",
  13380. extra: 1104/949,
  13381. bottom: 52/1156
  13382. }
  13383. },
  13384. back: {
  13385. height: math.unit(3 + 11/12, "feet"),
  13386. weight: math.unit(50, "lb"),
  13387. name: "Back",
  13388. image: {
  13389. source: "./media/characters/vanrel/back.svg",
  13390. extra: 1119/976,
  13391. bottom: 37/1156
  13392. }
  13393. },
  13394. tome: {
  13395. height: math.unit(1.35, "feet"),
  13396. weight: math.unit(10, "lb"),
  13397. name: "Vanrel's Tome",
  13398. rename: true,
  13399. image: {
  13400. source: "./media/characters/vanrel/tome.svg"
  13401. }
  13402. },
  13403. beans: {
  13404. height: math.unit(0.89, "feet"),
  13405. name: "Beans",
  13406. image: {
  13407. source: "./media/characters/vanrel/beans.svg"
  13408. }
  13409. },
  13410. },
  13411. [
  13412. {
  13413. name: "Normal",
  13414. height: math.unit(3 + 11/12, "feet"),
  13415. default: true
  13416. },
  13417. ]
  13418. ))
  13419. characterMakers.push(() => makeCharacter(
  13420. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13421. {
  13422. front: {
  13423. height: math.unit(7 + 5 / 12, "feet"),
  13424. name: "Front",
  13425. image: {
  13426. source: "./media/characters/kuiper-vanrel/front.svg",
  13427. extra: 1219/1169,
  13428. bottom: 69/1288
  13429. }
  13430. },
  13431. back: {
  13432. height: math.unit(7 + 5 / 12, "feet"),
  13433. name: "Back",
  13434. image: {
  13435. source: "./media/characters/kuiper-vanrel/back.svg",
  13436. extra: 1236/1193,
  13437. bottom: 27/1263
  13438. }
  13439. },
  13440. foot: {
  13441. height: math.unit(0.55, "meters"),
  13442. name: "Foot",
  13443. image: {
  13444. source: "./media/characters/kuiper-vanrel/foot.svg",
  13445. }
  13446. },
  13447. battle: {
  13448. height: math.unit(6.824, "feet"),
  13449. name: "Battle",
  13450. image: {
  13451. source: "./media/characters/kuiper-vanrel/battle.svg",
  13452. extra: 1466 / 1327,
  13453. bottom: 29 / 1492.5
  13454. }
  13455. },
  13456. meerkui: {
  13457. height: math.unit(18, "inches"),
  13458. name: "Meerkui",
  13459. image: {
  13460. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13461. extra: 1354/1289,
  13462. bottom: 69/1423
  13463. }
  13464. },
  13465. },
  13466. [
  13467. {
  13468. name: "Normal",
  13469. height: math.unit(7 + 5 / 12, "feet"),
  13470. default: true
  13471. },
  13472. ]
  13473. ))
  13474. characterMakers.push(() => makeCharacter(
  13475. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13476. {
  13477. front: {
  13478. height: math.unit(8 + 5 / 12, "feet"),
  13479. name: "Front",
  13480. image: {
  13481. source: "./media/characters/keset-vanrel/front.svg",
  13482. extra: 1231/1148,
  13483. bottom: 82/1313
  13484. }
  13485. },
  13486. back: {
  13487. height: math.unit(8 + 5 / 12, "feet"),
  13488. name: "Back",
  13489. image: {
  13490. source: "./media/characters/keset-vanrel/back.svg",
  13491. extra: 1240/1174,
  13492. bottom: 33/1273
  13493. }
  13494. },
  13495. hand: {
  13496. height: math.unit(0.6, "meters"),
  13497. name: "Hand",
  13498. image: {
  13499. source: "./media/characters/keset-vanrel/hand.svg"
  13500. }
  13501. },
  13502. foot: {
  13503. height: math.unit(0.94978, "meters"),
  13504. name: "Foot",
  13505. image: {
  13506. source: "./media/characters/keset-vanrel/foot.svg"
  13507. }
  13508. },
  13509. battle: {
  13510. height: math.unit(7.408, "feet"),
  13511. name: "Battle",
  13512. image: {
  13513. source: "./media/characters/keset-vanrel/battle.svg",
  13514. extra: 1890 / 1386,
  13515. bottom: 73.28 / 1970
  13516. }
  13517. },
  13518. },
  13519. [
  13520. {
  13521. name: "Normal",
  13522. height: math.unit(8 + 5 / 12, "feet"),
  13523. default: true
  13524. },
  13525. ]
  13526. ))
  13527. characterMakers.push(() => makeCharacter(
  13528. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13529. {
  13530. front: {
  13531. height: math.unit(6, "feet"),
  13532. weight: math.unit(150, "lb"),
  13533. name: "Front",
  13534. image: {
  13535. source: "./media/characters/neos/front.svg",
  13536. extra: 1696 / 992,
  13537. bottom: 0.14
  13538. }
  13539. },
  13540. },
  13541. [
  13542. {
  13543. name: "Normal",
  13544. height: math.unit(54, "cm"),
  13545. default: true
  13546. },
  13547. {
  13548. name: "Macro",
  13549. height: math.unit(100, "m")
  13550. },
  13551. {
  13552. name: "Megamacro",
  13553. height: math.unit(10, "km")
  13554. },
  13555. {
  13556. name: "Megamacro+",
  13557. height: math.unit(100, "km")
  13558. },
  13559. {
  13560. name: "Gigamacro",
  13561. height: math.unit(100, "Mm")
  13562. },
  13563. {
  13564. name: "Teramacro",
  13565. height: math.unit(100, "Gm")
  13566. },
  13567. {
  13568. name: "Examacro",
  13569. height: math.unit(100, "Em")
  13570. },
  13571. {
  13572. name: "Godly",
  13573. height: math.unit(10000, "Ym")
  13574. },
  13575. {
  13576. name: "Beyond Godly",
  13577. height: math.unit(25, "multiverses")
  13578. },
  13579. ]
  13580. ))
  13581. characterMakers.push(() => makeCharacter(
  13582. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13583. {
  13584. feminine: {
  13585. height: math.unit(5, "feet"),
  13586. weight: math.unit(100, "lb"),
  13587. name: "Feminine",
  13588. image: {
  13589. source: "./media/characters/sammy-mouse/feminine.svg",
  13590. extra: 2526 / 2425,
  13591. bottom: 0.123
  13592. }
  13593. },
  13594. masculine: {
  13595. height: math.unit(5, "feet"),
  13596. weight: math.unit(100, "lb"),
  13597. name: "Masculine",
  13598. image: {
  13599. source: "./media/characters/sammy-mouse/masculine.svg",
  13600. extra: 2526 / 2425,
  13601. bottom: 0.123
  13602. }
  13603. },
  13604. },
  13605. [
  13606. {
  13607. name: "Micro",
  13608. height: math.unit(5, "inches")
  13609. },
  13610. {
  13611. name: "Normal",
  13612. height: math.unit(5, "feet"),
  13613. default: true
  13614. },
  13615. {
  13616. name: "Macro",
  13617. height: math.unit(60, "feet")
  13618. },
  13619. ]
  13620. ))
  13621. characterMakers.push(() => makeCharacter(
  13622. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13623. {
  13624. front: {
  13625. height: math.unit(4, "feet"),
  13626. weight: math.unit(50, "lb"),
  13627. name: "Front",
  13628. image: {
  13629. source: "./media/characters/kole/front.svg",
  13630. extra: 1423 / 1303,
  13631. bottom: 0.025
  13632. }
  13633. },
  13634. back: {
  13635. height: math.unit(4, "feet"),
  13636. weight: math.unit(50, "lb"),
  13637. name: "Back",
  13638. image: {
  13639. source: "./media/characters/kole/back.svg",
  13640. extra: 1426 / 1280,
  13641. bottom: 0.02
  13642. }
  13643. },
  13644. },
  13645. [
  13646. {
  13647. name: "Normal",
  13648. height: math.unit(4, "feet"),
  13649. default: true
  13650. },
  13651. ]
  13652. ))
  13653. characterMakers.push(() => makeCharacter(
  13654. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13655. {
  13656. front: {
  13657. height: math.unit(2.5, "feet"),
  13658. weight: math.unit(32, "lb"),
  13659. name: "Front",
  13660. image: {
  13661. source: "./media/characters/rufran/front.svg",
  13662. extra: 1313/885,
  13663. bottom: 94/1407
  13664. }
  13665. },
  13666. side: {
  13667. height: math.unit(2.5, "feet"),
  13668. weight: math.unit(32, "lb"),
  13669. name: "Side",
  13670. image: {
  13671. source: "./media/characters/rufran/side.svg",
  13672. extra: 1109/852,
  13673. bottom: 118/1227
  13674. }
  13675. },
  13676. back: {
  13677. height: math.unit(2.5, "feet"),
  13678. weight: math.unit(32, "lb"),
  13679. name: "Back",
  13680. image: {
  13681. source: "./media/characters/rufran/back.svg",
  13682. extra: 1280/878,
  13683. bottom: 131/1411
  13684. }
  13685. },
  13686. mouth: {
  13687. height: math.unit(1.13, "feet"),
  13688. name: "Mouth",
  13689. image: {
  13690. source: "./media/characters/rufran/mouth.svg"
  13691. }
  13692. },
  13693. foot: {
  13694. height: math.unit(1.33, "feet"),
  13695. name: "Foot",
  13696. image: {
  13697. source: "./media/characters/rufran/foot.svg"
  13698. }
  13699. },
  13700. koboldFront: {
  13701. height: math.unit(2 + 6 / 12, "feet"),
  13702. weight: math.unit(20, "lb"),
  13703. name: "Front (Kobold)",
  13704. image: {
  13705. source: "./media/characters/rufran/kobold-front.svg",
  13706. extra: 2041 / 1839,
  13707. bottom: 0.055
  13708. }
  13709. },
  13710. koboldBack: {
  13711. height: math.unit(2 + 6 / 12, "feet"),
  13712. weight: math.unit(20, "lb"),
  13713. name: "Back (Kobold)",
  13714. image: {
  13715. source: "./media/characters/rufran/kobold-back.svg",
  13716. extra: 2054 / 1839,
  13717. bottom: 0.01
  13718. }
  13719. },
  13720. koboldHand: {
  13721. height: math.unit(0.2166, "meters"),
  13722. name: "Hand (Kobold)",
  13723. image: {
  13724. source: "./media/characters/rufran/kobold-hand.svg"
  13725. }
  13726. },
  13727. koboldFoot: {
  13728. height: math.unit(0.185, "meters"),
  13729. name: "Foot (Kobold)",
  13730. image: {
  13731. source: "./media/characters/rufran/kobold-foot.svg"
  13732. }
  13733. },
  13734. },
  13735. [
  13736. {
  13737. name: "Micro",
  13738. height: math.unit(1, "inch")
  13739. },
  13740. {
  13741. name: "Normal",
  13742. height: math.unit(2 + 6 / 12, "feet"),
  13743. default: true
  13744. },
  13745. {
  13746. name: "Big",
  13747. height: math.unit(60, "feet")
  13748. },
  13749. {
  13750. name: "Macro",
  13751. height: math.unit(325, "feet")
  13752. },
  13753. ]
  13754. ))
  13755. characterMakers.push(() => makeCharacter(
  13756. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13757. {
  13758. front: {
  13759. height: math.unit(0.3, "meters"),
  13760. weight: math.unit(3.5, "kg"),
  13761. name: "Front",
  13762. image: {
  13763. source: "./media/characters/chip/front.svg",
  13764. extra: 748 / 674
  13765. }
  13766. },
  13767. },
  13768. [
  13769. {
  13770. name: "Micro",
  13771. height: math.unit(1, "inch"),
  13772. default: true
  13773. },
  13774. ]
  13775. ))
  13776. characterMakers.push(() => makeCharacter(
  13777. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13778. {
  13779. side: {
  13780. height: math.unit(2.3, "meters"),
  13781. weight: math.unit(3500, "lb"),
  13782. name: "Side",
  13783. image: {
  13784. source: "./media/characters/torvid/side.svg",
  13785. extra: 1972 / 722,
  13786. bottom: 0.035
  13787. }
  13788. },
  13789. },
  13790. [
  13791. {
  13792. name: "Normal",
  13793. height: math.unit(2.3, "meters"),
  13794. default: true
  13795. },
  13796. ]
  13797. ))
  13798. characterMakers.push(() => makeCharacter(
  13799. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13800. {
  13801. front: {
  13802. height: math.unit(2, "meters"),
  13803. weight: math.unit(150.5, "kg"),
  13804. name: "Front",
  13805. image: {
  13806. source: "./media/characters/susan/front.svg",
  13807. extra: 693 / 635,
  13808. bottom: 0.05
  13809. }
  13810. },
  13811. },
  13812. [
  13813. {
  13814. name: "Megamacro",
  13815. height: math.unit(505, "miles"),
  13816. default: true
  13817. },
  13818. ]
  13819. ))
  13820. characterMakers.push(() => makeCharacter(
  13821. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13822. {
  13823. front: {
  13824. height: math.unit(6, "feet"),
  13825. weight: math.unit(150, "lb"),
  13826. name: "Front",
  13827. image: {
  13828. source: "./media/characters/raindrops/front.svg",
  13829. extra: 2655 / 2461,
  13830. bottom: 49 / 2705
  13831. }
  13832. },
  13833. back: {
  13834. height: math.unit(6, "feet"),
  13835. weight: math.unit(150, "lb"),
  13836. name: "Back",
  13837. image: {
  13838. source: "./media/characters/raindrops/back.svg",
  13839. extra: 2574 / 2400,
  13840. bottom: 65 / 2634
  13841. }
  13842. },
  13843. },
  13844. [
  13845. {
  13846. name: "Micro",
  13847. height: math.unit(6, "inches")
  13848. },
  13849. {
  13850. name: "Normal",
  13851. height: math.unit(6 + 2 / 12, "feet")
  13852. },
  13853. {
  13854. name: "Macro",
  13855. height: math.unit(131, "feet"),
  13856. default: true
  13857. },
  13858. {
  13859. name: "Megamacro",
  13860. height: math.unit(15, "miles")
  13861. },
  13862. {
  13863. name: "Gigamacro",
  13864. height: math.unit(4000, "miles")
  13865. },
  13866. {
  13867. name: "Teramacro",
  13868. height: math.unit(315000, "miles")
  13869. },
  13870. ]
  13871. ))
  13872. characterMakers.push(() => makeCharacter(
  13873. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13874. {
  13875. front: {
  13876. height: math.unit(2.794, "meters"),
  13877. weight: math.unit(325, "kg"),
  13878. name: "Front",
  13879. image: {
  13880. source: "./media/characters/tezwa/front.svg",
  13881. extra: 2083 / 1906,
  13882. bottom: 0.031
  13883. }
  13884. },
  13885. foot: {
  13886. height: math.unit(0.687, "meters"),
  13887. name: "Foot",
  13888. image: {
  13889. source: "./media/characters/tezwa/foot.svg"
  13890. }
  13891. },
  13892. },
  13893. [
  13894. {
  13895. name: "Normal",
  13896. height: math.unit(9 + 2 / 12, "feet"),
  13897. default: true
  13898. },
  13899. ]
  13900. ))
  13901. characterMakers.push(() => makeCharacter(
  13902. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13903. {
  13904. front: {
  13905. height: math.unit(58, "feet"),
  13906. weight: math.unit(89000, "lb"),
  13907. name: "Front",
  13908. image: {
  13909. source: "./media/characters/typhus/front.svg",
  13910. extra: 816 / 800,
  13911. bottom: 0.065
  13912. }
  13913. },
  13914. },
  13915. [
  13916. {
  13917. name: "Macro",
  13918. height: math.unit(58, "feet"),
  13919. default: true
  13920. },
  13921. ]
  13922. ))
  13923. characterMakers.push(() => makeCharacter(
  13924. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13925. {
  13926. front: {
  13927. height: math.unit(12, "feet"),
  13928. weight: math.unit(6, "tonnes"),
  13929. name: "Front",
  13930. image: {
  13931. source: "./media/characters/lyra-von-wulf/front.svg",
  13932. extra: 1,
  13933. bottom: 0.10
  13934. }
  13935. },
  13936. frontMecha: {
  13937. height: math.unit(12, "feet"),
  13938. weight: math.unit(12, "tonnes"),
  13939. name: "Front (Mecha)",
  13940. image: {
  13941. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13942. extra: 1,
  13943. bottom: 0.042
  13944. }
  13945. },
  13946. maw: {
  13947. height: math.unit(2.2, "feet"),
  13948. name: "Maw",
  13949. image: {
  13950. source: "./media/characters/lyra-von-wulf/maw.svg"
  13951. }
  13952. },
  13953. },
  13954. [
  13955. {
  13956. name: "Normal",
  13957. height: math.unit(12, "feet"),
  13958. default: true
  13959. },
  13960. {
  13961. name: "Classic",
  13962. height: math.unit(50, "feet")
  13963. },
  13964. {
  13965. name: "Macro",
  13966. height: math.unit(500, "feet")
  13967. },
  13968. {
  13969. name: "Megamacro",
  13970. height: math.unit(1, "mile")
  13971. },
  13972. {
  13973. name: "Gigamacro",
  13974. height: math.unit(400, "miles")
  13975. },
  13976. {
  13977. name: "Teramacro",
  13978. height: math.unit(22000, "miles")
  13979. },
  13980. {
  13981. name: "Solarmacro",
  13982. height: math.unit(8600000, "miles")
  13983. },
  13984. {
  13985. name: "Galactic",
  13986. height: math.unit(1057000, "lightyears")
  13987. },
  13988. ]
  13989. ))
  13990. characterMakers.push(() => makeCharacter(
  13991. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13992. {
  13993. front: {
  13994. height: math.unit(6 + 10 / 12, "feet"),
  13995. weight: math.unit(150, "lb"),
  13996. name: "Front",
  13997. image: {
  13998. source: "./media/characters/dixon/front.svg",
  13999. extra: 3361 / 3209,
  14000. bottom: 0.01
  14001. }
  14002. },
  14003. },
  14004. [
  14005. {
  14006. name: "Normal",
  14007. height: math.unit(6 + 10 / 12, "feet"),
  14008. default: true
  14009. },
  14010. {
  14011. name: "Big",
  14012. height: math.unit(12, "meters")
  14013. },
  14014. {
  14015. name: "Macro",
  14016. height: math.unit(500, "meters")
  14017. },
  14018. {
  14019. name: "Megamacro",
  14020. height: math.unit(2, "km")
  14021. },
  14022. ]
  14023. ))
  14024. characterMakers.push(() => makeCharacter(
  14025. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  14026. {
  14027. front: {
  14028. height: math.unit(185, "cm"),
  14029. weight: math.unit(68, "kg"),
  14030. name: "Front",
  14031. image: {
  14032. source: "./media/characters/kauko/front.svg",
  14033. extra: 1455 / 1421,
  14034. bottom: 0.03
  14035. }
  14036. },
  14037. back: {
  14038. height: math.unit(185, "cm"),
  14039. weight: math.unit(68, "kg"),
  14040. name: "Back",
  14041. image: {
  14042. source: "./media/characters/kauko/back.svg",
  14043. extra: 1455 / 1421,
  14044. bottom: 0.004
  14045. }
  14046. },
  14047. },
  14048. [
  14049. {
  14050. name: "Normal",
  14051. height: math.unit(185, "cm"),
  14052. default: true
  14053. },
  14054. ]
  14055. ))
  14056. characterMakers.push(() => makeCharacter(
  14057. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  14058. {
  14059. frontSfw: {
  14060. height: math.unit(5, "meters"),
  14061. weight: math.unit(4250, "lb"),
  14062. name: "Front",
  14063. image: {
  14064. source: "./media/characters/varg/front-sfw.svg",
  14065. extra: 1103/1010,
  14066. bottom: 50/1153
  14067. },
  14068. form: "anthro",
  14069. default: true
  14070. },
  14071. backSfw: {
  14072. height: math.unit(5, "meters"),
  14073. weight: math.unit(4250, "lb"),
  14074. name: "Back",
  14075. image: {
  14076. source: "./media/characters/varg/back-sfw.svg",
  14077. extra: 1038/1022,
  14078. bottom: 36/1074
  14079. },
  14080. form: "anthro"
  14081. },
  14082. frontNsfw: {
  14083. height: math.unit(5, "meters"),
  14084. weight: math.unit(4250, "lb"),
  14085. name: "Front (NSFW)",
  14086. image: {
  14087. source: "./media/characters/varg/front-nsfw.svg",
  14088. extra: 1103/1010,
  14089. bottom: 50/1153
  14090. },
  14091. form: "anthro"
  14092. },
  14093. sheath: {
  14094. height: math.unit(3.8, "feet"),
  14095. weight: math.unit(90, "kilograms"),
  14096. name: "Sheath",
  14097. image: {
  14098. source: "./media/characters/varg/sheath.svg"
  14099. },
  14100. form: "anthro"
  14101. },
  14102. dick: {
  14103. height: math.unit(4.6, "feet"),
  14104. weight: math.unit(451, "kilograms"),
  14105. name: "Dick",
  14106. image: {
  14107. source: "./media/characters/varg/dick.svg"
  14108. },
  14109. form: "anthro"
  14110. },
  14111. feralSfw: {
  14112. height: math.unit(5, "meters"),
  14113. weight: math.unit(100000, "lb"),
  14114. name: "Side",
  14115. image: {
  14116. source: "./media/characters/varg/feral-sfw.svg",
  14117. extra: 1065/511,
  14118. bottom: 211/1276
  14119. },
  14120. form: "feral",
  14121. default: true
  14122. },
  14123. feralNsfw: {
  14124. height: math.unit(5, "meters"),
  14125. weight: math.unit(100000, "lb"),
  14126. name: "Side (NSFW)",
  14127. image: {
  14128. source: "./media/characters/varg/feral-nsfw.svg",
  14129. extra: 1065/511,
  14130. bottom: 211/1276
  14131. },
  14132. form: "feral",
  14133. },
  14134. feralSheath: {
  14135. height: math.unit(9.8, "feet"),
  14136. weight: math.unit(2000, "kilograms"),
  14137. name: "Sheath",
  14138. image: {
  14139. source: "./media/characters/varg/sheath.svg"
  14140. },
  14141. form: "feral"
  14142. },
  14143. feralDick: {
  14144. height: math.unit(13.11, "feet"),
  14145. weight: math.unit(10440, "kilograms"),
  14146. name: "Dick",
  14147. image: {
  14148. source: "./media/characters/varg/dick.svg"
  14149. },
  14150. form: "feral"
  14151. },
  14152. },
  14153. [
  14154. {
  14155. name: "Normal",
  14156. height: math.unit(5, "meters"),
  14157. form: "anthro"
  14158. },
  14159. {
  14160. name: "Macro",
  14161. height: math.unit(200, "meters"),
  14162. form: "anthro"
  14163. },
  14164. {
  14165. name: "Megamacro",
  14166. height: math.unit(20, "kilometers"),
  14167. form: "anthro"
  14168. },
  14169. {
  14170. name: "True Size",
  14171. height: math.unit(211, "km"),
  14172. form: "anthro",
  14173. default: true
  14174. },
  14175. {
  14176. name: "Gigamacro",
  14177. height: math.unit(1000, "km"),
  14178. form: "anthro"
  14179. },
  14180. {
  14181. name: "Gigamacro+",
  14182. height: math.unit(8000, "km"),
  14183. form: "anthro"
  14184. },
  14185. {
  14186. name: "Teramacro",
  14187. height: math.unit(1000000, "km"),
  14188. form: "anthro"
  14189. },
  14190. {
  14191. name: "Normal",
  14192. height: math.unit(5, "meters"),
  14193. form: "feral"
  14194. },
  14195. {
  14196. name: "Macro",
  14197. height: math.unit(200, "meters"),
  14198. form: "feral"
  14199. },
  14200. {
  14201. name: "Megamacro",
  14202. height: math.unit(20, "kilometers"),
  14203. form: "feral"
  14204. },
  14205. {
  14206. name: "True Size",
  14207. height: math.unit(211, "km"),
  14208. form: "feral",
  14209. default: true
  14210. },
  14211. {
  14212. name: "Gigamacro",
  14213. height: math.unit(1000, "km"),
  14214. form: "feral"
  14215. },
  14216. {
  14217. name: "Gigamacro+",
  14218. height: math.unit(8000, "km"),
  14219. form: "feral"
  14220. },
  14221. {
  14222. name: "Teramacro",
  14223. height: math.unit(1000000, "km"),
  14224. form: "feral"
  14225. },
  14226. ],
  14227. {
  14228. "anthro": {
  14229. name: "Anthro",
  14230. default: true
  14231. },
  14232. "feral": {
  14233. name: "Feral",
  14234. },
  14235. }
  14236. ))
  14237. characterMakers.push(() => makeCharacter(
  14238. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  14239. {
  14240. front: {
  14241. height: math.unit(7 + 7 / 12, "feet"),
  14242. weight: math.unit(267, "lb"),
  14243. name: "Front",
  14244. image: {
  14245. source: "./media/characters/dayza/front.svg",
  14246. extra: 1262 / 1200,
  14247. bottom: 0.035
  14248. }
  14249. },
  14250. side: {
  14251. height: math.unit(7 + 7 / 12, "feet"),
  14252. weight: math.unit(267, "lb"),
  14253. name: "Side",
  14254. image: {
  14255. source: "./media/characters/dayza/side.svg",
  14256. extra: 1295 / 1245,
  14257. bottom: 0.05
  14258. }
  14259. },
  14260. back: {
  14261. height: math.unit(7 + 7 / 12, "feet"),
  14262. weight: math.unit(267, "lb"),
  14263. name: "Back",
  14264. image: {
  14265. source: "./media/characters/dayza/back.svg",
  14266. extra: 1241 / 1170
  14267. }
  14268. },
  14269. },
  14270. [
  14271. {
  14272. name: "Normal",
  14273. height: math.unit(7 + 7 / 12, "feet"),
  14274. default: true
  14275. },
  14276. {
  14277. name: "Macro",
  14278. height: math.unit(155, "feet")
  14279. },
  14280. ]
  14281. ))
  14282. characterMakers.push(() => makeCharacter(
  14283. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14284. {
  14285. front: {
  14286. height: math.unit(6 + 5 / 12, "feet"),
  14287. weight: math.unit(160, "lb"),
  14288. name: "Front",
  14289. image: {
  14290. source: "./media/characters/xanthos/front.svg",
  14291. extra: 1,
  14292. bottom: 0.04
  14293. }
  14294. },
  14295. back: {
  14296. height: math.unit(6 + 5 / 12, "feet"),
  14297. weight: math.unit(160, "lb"),
  14298. name: "Back",
  14299. image: {
  14300. source: "./media/characters/xanthos/back.svg",
  14301. extra: 1,
  14302. bottom: 0.03
  14303. }
  14304. },
  14305. hand: {
  14306. height: math.unit(0.928, "feet"),
  14307. name: "Hand",
  14308. image: {
  14309. source: "./media/characters/xanthos/hand.svg"
  14310. }
  14311. },
  14312. foot: {
  14313. height: math.unit(1.286, "feet"),
  14314. name: "Foot",
  14315. image: {
  14316. source: "./media/characters/xanthos/foot.svg"
  14317. }
  14318. },
  14319. },
  14320. [
  14321. {
  14322. name: "Normal",
  14323. height: math.unit(6 + 5 / 12, "feet"),
  14324. default: true
  14325. },
  14326. {
  14327. name: "Normal+",
  14328. height: math.unit(6, "meters")
  14329. },
  14330. {
  14331. name: "Macro",
  14332. height: math.unit(40, "feet")
  14333. },
  14334. {
  14335. name: "Macro+",
  14336. height: math.unit(200, "meters")
  14337. },
  14338. {
  14339. name: "Megamacro",
  14340. height: math.unit(20, "km")
  14341. },
  14342. {
  14343. name: "Megamacro+",
  14344. height: math.unit(100, "km")
  14345. },
  14346. {
  14347. name: "Gigamacro",
  14348. height: math.unit(200, "megameters")
  14349. },
  14350. {
  14351. name: "Gigamacro+",
  14352. height: math.unit(1.5, "gigameters")
  14353. },
  14354. ]
  14355. ))
  14356. characterMakers.push(() => makeCharacter(
  14357. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  14358. {
  14359. front: {
  14360. height: math.unit(6 + 3 / 12, "feet"),
  14361. weight: math.unit(215, "lb"),
  14362. name: "Front",
  14363. image: {
  14364. source: "./media/characters/grynn/front.svg",
  14365. extra: 4627 / 4209,
  14366. bottom: 0.047
  14367. }
  14368. },
  14369. },
  14370. [
  14371. {
  14372. name: "Micro",
  14373. height: math.unit(6, "inches")
  14374. },
  14375. {
  14376. name: "Normal",
  14377. height: math.unit(6 + 3 / 12, "feet"),
  14378. default: true
  14379. },
  14380. {
  14381. name: "Big",
  14382. height: math.unit(104, "feet")
  14383. },
  14384. {
  14385. name: "Macro",
  14386. height: math.unit(944, "feet")
  14387. },
  14388. {
  14389. name: "Macro+",
  14390. height: math.unit(9480, "feet")
  14391. },
  14392. {
  14393. name: "Megamacro",
  14394. height: math.unit(78752, "feet")
  14395. },
  14396. {
  14397. name: "Megamacro+",
  14398. height: math.unit(630128, "feet")
  14399. },
  14400. {
  14401. name: "Megamacro++",
  14402. height: math.unit(3150695, "feet")
  14403. },
  14404. ]
  14405. ))
  14406. characterMakers.push(() => makeCharacter(
  14407. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  14408. {
  14409. front: {
  14410. height: math.unit(7 + 5 / 12, "feet"),
  14411. weight: math.unit(450, "lb"),
  14412. name: "Front",
  14413. image: {
  14414. source: "./media/characters/mocha-aura/front.svg",
  14415. extra: 1907 / 1817,
  14416. bottom: 0.04
  14417. }
  14418. },
  14419. back: {
  14420. height: math.unit(7 + 5 / 12, "feet"),
  14421. weight: math.unit(450, "lb"),
  14422. name: "Back",
  14423. image: {
  14424. source: "./media/characters/mocha-aura/back.svg",
  14425. extra: 1900 / 1825,
  14426. bottom: 0.045
  14427. }
  14428. },
  14429. },
  14430. [
  14431. {
  14432. name: "Nano",
  14433. height: math.unit(1, "nm")
  14434. },
  14435. {
  14436. name: "Megamicro",
  14437. height: math.unit(1, "mm")
  14438. },
  14439. {
  14440. name: "Micro",
  14441. height: math.unit(3, "inches")
  14442. },
  14443. {
  14444. name: "Normal",
  14445. height: math.unit(7 + 5 / 12, "feet"),
  14446. default: true
  14447. },
  14448. {
  14449. name: "Macro",
  14450. height: math.unit(30, "feet")
  14451. },
  14452. {
  14453. name: "Megamacro",
  14454. height: math.unit(3500, "feet")
  14455. },
  14456. {
  14457. name: "Teramacro",
  14458. height: math.unit(500000, "miles")
  14459. },
  14460. {
  14461. name: "Petamacro",
  14462. height: math.unit(50000000000000000, "parsecs")
  14463. },
  14464. ]
  14465. ))
  14466. characterMakers.push(() => makeCharacter(
  14467. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  14468. {
  14469. front: {
  14470. height: math.unit(6, "feet"),
  14471. weight: math.unit(150, "lb"),
  14472. name: "Front",
  14473. image: {
  14474. source: "./media/characters/ilisha-devya/front.svg",
  14475. extra: 1053/1049,
  14476. bottom: 270/1323
  14477. }
  14478. },
  14479. back: {
  14480. height: math.unit(6, "feet"),
  14481. weight: math.unit(150, "lb"),
  14482. name: "Back",
  14483. image: {
  14484. source: "./media/characters/ilisha-devya/back.svg",
  14485. extra: 1131/1128,
  14486. bottom: 39/1170
  14487. }
  14488. },
  14489. },
  14490. [
  14491. {
  14492. name: "Macro",
  14493. height: math.unit(500, "feet"),
  14494. default: true
  14495. },
  14496. {
  14497. name: "Megamacro",
  14498. height: math.unit(10, "miles")
  14499. },
  14500. {
  14501. name: "Gigamacro",
  14502. height: math.unit(100000, "miles")
  14503. },
  14504. {
  14505. name: "Examacro",
  14506. height: math.unit(1e9, "lightyears")
  14507. },
  14508. {
  14509. name: "Omniversal",
  14510. height: math.unit(1e33, "lightyears")
  14511. },
  14512. {
  14513. name: "Beyond Infinite",
  14514. height: math.unit(1e100, "lightyears")
  14515. },
  14516. ]
  14517. ))
  14518. characterMakers.push(() => makeCharacter(
  14519. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  14520. {
  14521. Side: {
  14522. height: math.unit(6, "feet"),
  14523. weight: math.unit(150, "lb"),
  14524. name: "Side",
  14525. image: {
  14526. source: "./media/characters/mira/side.svg",
  14527. extra: 900 / 799,
  14528. bottom: 0.02
  14529. }
  14530. },
  14531. },
  14532. [
  14533. {
  14534. name: "Human Size",
  14535. height: math.unit(6, "feet")
  14536. },
  14537. {
  14538. name: "Macro",
  14539. height: math.unit(100, "feet"),
  14540. default: true
  14541. },
  14542. {
  14543. name: "Megamacro",
  14544. height: math.unit(10, "miles")
  14545. },
  14546. {
  14547. name: "Gigamacro",
  14548. height: math.unit(25000, "miles")
  14549. },
  14550. {
  14551. name: "Teramacro",
  14552. height: math.unit(300, "AU")
  14553. },
  14554. {
  14555. name: "Full Size",
  14556. height: math.unit(4.5e10, "lightyears")
  14557. },
  14558. ]
  14559. ))
  14560. characterMakers.push(() => makeCharacter(
  14561. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  14562. {
  14563. front: {
  14564. height: math.unit(6, "feet"),
  14565. weight: math.unit(150, "lb"),
  14566. name: "Front",
  14567. image: {
  14568. source: "./media/characters/holly/front.svg",
  14569. extra: 639 / 606
  14570. }
  14571. },
  14572. back: {
  14573. height: math.unit(6, "feet"),
  14574. weight: math.unit(150, "lb"),
  14575. name: "Back",
  14576. image: {
  14577. source: "./media/characters/holly/back.svg",
  14578. extra: 623 / 598
  14579. }
  14580. },
  14581. frontWorking: {
  14582. height: math.unit(6, "feet"),
  14583. weight: math.unit(150, "lb"),
  14584. name: "Front (Working)",
  14585. image: {
  14586. source: "./media/characters/holly/front-working.svg",
  14587. extra: 607 / 577,
  14588. bottom: 0.048
  14589. }
  14590. },
  14591. },
  14592. [
  14593. {
  14594. name: "Normal",
  14595. height: math.unit(12 + 3 / 12, "feet"),
  14596. default: true
  14597. },
  14598. ]
  14599. ))
  14600. characterMakers.push(() => makeCharacter(
  14601. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  14602. {
  14603. front: {
  14604. height: math.unit(6, "feet"),
  14605. weight: math.unit(150, "lb"),
  14606. name: "Front",
  14607. image: {
  14608. source: "./media/characters/porter/front.svg",
  14609. extra: 1,
  14610. bottom: 0.01
  14611. }
  14612. },
  14613. frontRobes: {
  14614. height: math.unit(6, "feet"),
  14615. weight: math.unit(150, "lb"),
  14616. name: "Front (Robes)",
  14617. image: {
  14618. source: "./media/characters/porter/front-robes.svg",
  14619. extra: 1.01,
  14620. bottom: 0.01
  14621. }
  14622. },
  14623. },
  14624. [
  14625. {
  14626. name: "Normal",
  14627. height: math.unit(11 + 9 / 12, "feet"),
  14628. default: true
  14629. },
  14630. ]
  14631. ))
  14632. characterMakers.push(() => makeCharacter(
  14633. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  14634. {
  14635. legendary: {
  14636. height: math.unit(6, "feet"),
  14637. weight: math.unit(150, "lb"),
  14638. name: "Legendary",
  14639. image: {
  14640. source: "./media/characters/lucy/legendary.svg",
  14641. extra: 1355 / 1100,
  14642. bottom: 0.045
  14643. }
  14644. },
  14645. },
  14646. [
  14647. {
  14648. name: "Legendary",
  14649. height: math.unit(86882 * 2, "miles"),
  14650. default: true
  14651. },
  14652. ]
  14653. ))
  14654. characterMakers.push(() => makeCharacter(
  14655. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  14656. {
  14657. front: {
  14658. height: math.unit(6, "feet"),
  14659. weight: math.unit(150, "lb"),
  14660. name: "Front",
  14661. image: {
  14662. source: "./media/characters/drusilla/front.svg",
  14663. extra: 678 / 635,
  14664. bottom: 0.03
  14665. }
  14666. },
  14667. back: {
  14668. height: math.unit(6, "feet"),
  14669. weight: math.unit(150, "lb"),
  14670. name: "Back",
  14671. image: {
  14672. source: "./media/characters/drusilla/back.svg",
  14673. extra: 678 / 635,
  14674. bottom: 0.005
  14675. }
  14676. },
  14677. },
  14678. [
  14679. {
  14680. name: "Macro",
  14681. height: math.unit(100, "feet")
  14682. },
  14683. {
  14684. name: "Canon Height",
  14685. height: math.unit(2000, "feet"),
  14686. default: true
  14687. },
  14688. ]
  14689. ))
  14690. characterMakers.push(() => makeCharacter(
  14691. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  14692. {
  14693. front: {
  14694. height: math.unit(6, "feet"),
  14695. weight: math.unit(180, "lb"),
  14696. name: "Front",
  14697. image: {
  14698. source: "./media/characters/renard-thatch/front.svg",
  14699. extra: 2411 / 2275,
  14700. bottom: 0.01
  14701. }
  14702. },
  14703. frontPosing: {
  14704. height: math.unit(6, "feet"),
  14705. weight: math.unit(180, "lb"),
  14706. name: "Front (Posing)",
  14707. image: {
  14708. source: "./media/characters/renard-thatch/front-posing.svg",
  14709. extra: 2381 / 2261,
  14710. bottom: 0.01
  14711. }
  14712. },
  14713. back: {
  14714. height: math.unit(6, "feet"),
  14715. weight: math.unit(180, "lb"),
  14716. name: "Back",
  14717. image: {
  14718. source: "./media/characters/renard-thatch/back.svg",
  14719. extra: 2428 / 2288
  14720. }
  14721. },
  14722. },
  14723. [
  14724. {
  14725. name: "Micro",
  14726. height: math.unit(3, "inches")
  14727. },
  14728. {
  14729. name: "Default",
  14730. height: math.unit(6, "feet"),
  14731. default: true
  14732. },
  14733. {
  14734. name: "Macro",
  14735. height: math.unit(75, "feet")
  14736. },
  14737. ]
  14738. ))
  14739. characterMakers.push(() => makeCharacter(
  14740. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  14741. {
  14742. front: {
  14743. height: math.unit(1450, "feet"),
  14744. weight: math.unit(1.21e6, "tons"),
  14745. name: "Front",
  14746. image: {
  14747. source: "./media/characters/sekvra/front.svg",
  14748. extra: 1193/1190,
  14749. bottom: 78/1271
  14750. }
  14751. },
  14752. side: {
  14753. height: math.unit(1450, "feet"),
  14754. weight: math.unit(1.21e6, "tons"),
  14755. name: "Side",
  14756. image: {
  14757. source: "./media/characters/sekvra/side.svg",
  14758. extra: 1193/1190,
  14759. bottom: 52/1245
  14760. }
  14761. },
  14762. back: {
  14763. height: math.unit(1450, "feet"),
  14764. weight: math.unit(1.21e6, "tons"),
  14765. name: "Back",
  14766. image: {
  14767. source: "./media/characters/sekvra/back.svg",
  14768. extra: 1219/1216,
  14769. bottom: 21/1240
  14770. }
  14771. },
  14772. frontClothed: {
  14773. height: math.unit(1450, "feet"),
  14774. weight: math.unit(1.21e6, "tons"),
  14775. name: "Front (Clothed)",
  14776. image: {
  14777. source: "./media/characters/sekvra/front-clothed.svg",
  14778. extra: 1192/1189,
  14779. bottom: 79/1271
  14780. }
  14781. },
  14782. },
  14783. [
  14784. {
  14785. name: "Macro",
  14786. height: math.unit(1450, "feet"),
  14787. default: true
  14788. },
  14789. {
  14790. name: "Megamacro",
  14791. height: math.unit(15000, "feet")
  14792. },
  14793. ]
  14794. ))
  14795. characterMakers.push(() => makeCharacter(
  14796. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14797. {
  14798. front: {
  14799. height: math.unit(6, "feet"),
  14800. weight: math.unit(150, "lb"),
  14801. name: "Front",
  14802. image: {
  14803. source: "./media/characters/carmine/front.svg",
  14804. extra: 1,
  14805. bottom: 0.035
  14806. }
  14807. },
  14808. frontArmor: {
  14809. height: math.unit(6, "feet"),
  14810. weight: math.unit(150, "lb"),
  14811. name: "Front (Armor)",
  14812. image: {
  14813. source: "./media/characters/carmine/front-armor.svg",
  14814. extra: 1,
  14815. bottom: 0.035
  14816. }
  14817. },
  14818. },
  14819. [
  14820. {
  14821. name: "Large",
  14822. height: math.unit(1, "mile")
  14823. },
  14824. {
  14825. name: "Huge",
  14826. height: math.unit(40, "miles"),
  14827. default: true
  14828. },
  14829. {
  14830. name: "Colossal",
  14831. height: math.unit(2500, "miles")
  14832. },
  14833. ]
  14834. ))
  14835. characterMakers.push(() => makeCharacter(
  14836. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  14837. {
  14838. front: {
  14839. height: math.unit(6, "feet"),
  14840. weight: math.unit(150, "lb"),
  14841. name: "Front",
  14842. image: {
  14843. source: "./media/characters/elyssia/front.svg",
  14844. extra: 2201 / 2035,
  14845. bottom: 0.05
  14846. }
  14847. },
  14848. frontClothed: {
  14849. height: math.unit(6, "feet"),
  14850. weight: math.unit(150, "lb"),
  14851. name: "Front (Clothed)",
  14852. image: {
  14853. source: "./media/characters/elyssia/front-clothed.svg",
  14854. extra: 2201 / 2035,
  14855. bottom: 0.05
  14856. }
  14857. },
  14858. back: {
  14859. height: math.unit(6, "feet"),
  14860. weight: math.unit(150, "lb"),
  14861. name: "Back",
  14862. image: {
  14863. source: "./media/characters/elyssia/back.svg",
  14864. extra: 2201 / 2035,
  14865. bottom: 0.013
  14866. }
  14867. },
  14868. },
  14869. [
  14870. {
  14871. name: "Smaller",
  14872. height: math.unit(150, "feet")
  14873. },
  14874. {
  14875. name: "Standard",
  14876. height: math.unit(1400, "feet"),
  14877. default: true
  14878. },
  14879. {
  14880. name: "Distracted",
  14881. height: math.unit(15000, "feet")
  14882. },
  14883. ]
  14884. ))
  14885. characterMakers.push(() => makeCharacter(
  14886. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  14887. {
  14888. front: {
  14889. height: math.unit(7 + 4/12, "feet"),
  14890. weight: math.unit(690, "lb"),
  14891. name: "Front",
  14892. image: {
  14893. source: "./media/characters/geno-maxwell/front.svg",
  14894. extra: 984/856,
  14895. bottom: 87/1071
  14896. }
  14897. },
  14898. back: {
  14899. height: math.unit(7 + 4/12, "feet"),
  14900. weight: math.unit(690, "lb"),
  14901. name: "Back",
  14902. image: {
  14903. source: "./media/characters/geno-maxwell/back.svg",
  14904. extra: 981/854,
  14905. bottom: 57/1038
  14906. }
  14907. },
  14908. frontCostume: {
  14909. height: math.unit(7 + 4/12, "feet"),
  14910. weight: math.unit(690, "lb"),
  14911. name: "Front (Costume)",
  14912. image: {
  14913. source: "./media/characters/geno-maxwell/front-costume.svg",
  14914. extra: 984/856,
  14915. bottom: 87/1071
  14916. }
  14917. },
  14918. backcostume: {
  14919. height: math.unit(7 + 4/12, "feet"),
  14920. weight: math.unit(690, "lb"),
  14921. name: "Back (Costume)",
  14922. image: {
  14923. source: "./media/characters/geno-maxwell/back-costume.svg",
  14924. extra: 981/854,
  14925. bottom: 57/1038
  14926. }
  14927. },
  14928. },
  14929. [
  14930. {
  14931. name: "Micro",
  14932. height: math.unit(3, "inches")
  14933. },
  14934. {
  14935. name: "Normal",
  14936. height: math.unit(7 + 4 / 12, "feet"),
  14937. default: true
  14938. },
  14939. {
  14940. name: "Macro",
  14941. height: math.unit(220, "feet")
  14942. },
  14943. {
  14944. name: "Megamacro",
  14945. height: math.unit(11, "miles")
  14946. },
  14947. ]
  14948. ))
  14949. characterMakers.push(() => makeCharacter(
  14950. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  14951. {
  14952. front: {
  14953. height: math.unit(7 + 4/12, "feet"),
  14954. weight: math.unit(750, "lb"),
  14955. name: "Front",
  14956. image: {
  14957. source: "./media/characters/regena-maxwell/front.svg",
  14958. extra: 984/856,
  14959. bottom: 87/1071
  14960. }
  14961. },
  14962. back: {
  14963. height: math.unit(7 + 4/12, "feet"),
  14964. weight: math.unit(750, "lb"),
  14965. name: "Back",
  14966. image: {
  14967. source: "./media/characters/regena-maxwell/back.svg",
  14968. extra: 981/854,
  14969. bottom: 57/1038
  14970. }
  14971. },
  14972. frontCostume: {
  14973. height: math.unit(7 + 4/12, "feet"),
  14974. weight: math.unit(750, "lb"),
  14975. name: "Front (Costume)",
  14976. image: {
  14977. source: "./media/characters/regena-maxwell/front-costume.svg",
  14978. extra: 984/856,
  14979. bottom: 87/1071
  14980. }
  14981. },
  14982. backcostume: {
  14983. height: math.unit(7 + 4/12, "feet"),
  14984. weight: math.unit(750, "lb"),
  14985. name: "Back (Costume)",
  14986. image: {
  14987. source: "./media/characters/regena-maxwell/back-costume.svg",
  14988. extra: 981/854,
  14989. bottom: 57/1038
  14990. }
  14991. },
  14992. },
  14993. [
  14994. {
  14995. name: "Normal",
  14996. height: math.unit(7 + 4 / 12, "feet"),
  14997. default: true
  14998. },
  14999. {
  15000. name: "Macro",
  15001. height: math.unit(220, "feet")
  15002. },
  15003. {
  15004. name: "Megamacro",
  15005. height: math.unit(11, "miles")
  15006. },
  15007. ]
  15008. ))
  15009. characterMakers.push(() => makeCharacter(
  15010. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  15011. {
  15012. front: {
  15013. height: math.unit(6, "feet"),
  15014. weight: math.unit(150, "lb"),
  15015. name: "Front",
  15016. image: {
  15017. source: "./media/characters/x-gliding-dragon-x/front.svg",
  15018. extra: 860 / 690,
  15019. bottom: 0.03
  15020. }
  15021. },
  15022. },
  15023. [
  15024. {
  15025. name: "Normal",
  15026. height: math.unit(1.7, "meters"),
  15027. default: true
  15028. },
  15029. ]
  15030. ))
  15031. characterMakers.push(() => makeCharacter(
  15032. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  15033. {
  15034. front: {
  15035. height: math.unit(6, "feet"),
  15036. weight: math.unit(150, "lb"),
  15037. name: "Front",
  15038. image: {
  15039. source: "./media/characters/quilly/front.svg",
  15040. extra: 890 / 776
  15041. }
  15042. },
  15043. },
  15044. [
  15045. {
  15046. name: "Gigamacro",
  15047. height: math.unit(404090, "miles"),
  15048. default: true
  15049. },
  15050. ]
  15051. ))
  15052. characterMakers.push(() => makeCharacter(
  15053. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  15054. {
  15055. front: {
  15056. height: math.unit(7 + 8 / 12, "feet"),
  15057. weight: math.unit(350, "lb"),
  15058. name: "Front",
  15059. image: {
  15060. source: "./media/characters/tempest/front.svg",
  15061. extra: 1175 / 1086,
  15062. bottom: 0.02
  15063. }
  15064. },
  15065. },
  15066. [
  15067. {
  15068. name: "Normal",
  15069. height: math.unit(7 + 8 / 12, "feet"),
  15070. default: true
  15071. },
  15072. ]
  15073. ))
  15074. characterMakers.push(() => makeCharacter(
  15075. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  15076. {
  15077. side: {
  15078. height: math.unit(4 + 5 / 12, "feet"),
  15079. weight: math.unit(80, "lb"),
  15080. name: "Side",
  15081. image: {
  15082. source: "./media/characters/rodger/side.svg",
  15083. extra: 1235 / 1118
  15084. }
  15085. },
  15086. },
  15087. [
  15088. {
  15089. name: "Micro",
  15090. height: math.unit(1, "inch")
  15091. },
  15092. {
  15093. name: "Normal",
  15094. height: math.unit(4 + 5 / 12, "feet"),
  15095. default: true
  15096. },
  15097. {
  15098. name: "Macro",
  15099. height: math.unit(120, "feet")
  15100. },
  15101. ]
  15102. ))
  15103. characterMakers.push(() => makeCharacter(
  15104. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  15105. {
  15106. front: {
  15107. height: math.unit(6, "feet"),
  15108. weight: math.unit(150, "lb"),
  15109. name: "Front",
  15110. image: {
  15111. source: "./media/characters/danyel/front.svg",
  15112. extra: 1185 / 1123,
  15113. bottom: 0.05
  15114. }
  15115. },
  15116. },
  15117. [
  15118. {
  15119. name: "Shrunken",
  15120. height: math.unit(0.5, "mm")
  15121. },
  15122. {
  15123. name: "Micro",
  15124. height: math.unit(1, "mm"),
  15125. default: true
  15126. },
  15127. {
  15128. name: "Upsized",
  15129. height: math.unit(5 + 5 / 12, "feet")
  15130. },
  15131. ]
  15132. ))
  15133. characterMakers.push(() => makeCharacter(
  15134. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  15135. {
  15136. front: {
  15137. height: math.unit(5 + 6 / 12, "feet"),
  15138. weight: math.unit(200, "lb"),
  15139. name: "Front",
  15140. image: {
  15141. source: "./media/characters/vivian-bijoux/front.svg",
  15142. extra: 1217/1209,
  15143. bottom: 76/1293
  15144. }
  15145. },
  15146. back: {
  15147. height: math.unit(5 + 6 / 12, "feet"),
  15148. weight: math.unit(200, "lb"),
  15149. name: "Back",
  15150. image: {
  15151. source: "./media/characters/vivian-bijoux/back.svg",
  15152. extra: 1214/1208,
  15153. bottom: 51/1265
  15154. }
  15155. },
  15156. dressed: {
  15157. height: math.unit(5 + 6 / 12, "feet"),
  15158. weight: math.unit(200, "lb"),
  15159. name: "Dressed",
  15160. image: {
  15161. source: "./media/characters/vivian-bijoux/dressed.svg",
  15162. extra: 1217/1209,
  15163. bottom: 76/1293
  15164. }
  15165. },
  15166. },
  15167. [
  15168. {
  15169. name: "Normal",
  15170. height: math.unit(5 + 6 / 12, "feet"),
  15171. default: true
  15172. },
  15173. {
  15174. name: "Bad Dream",
  15175. height: math.unit(500, "feet")
  15176. },
  15177. {
  15178. name: "Nightmare",
  15179. height: math.unit(500, "miles")
  15180. },
  15181. ]
  15182. ))
  15183. characterMakers.push(() => makeCharacter(
  15184. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  15185. {
  15186. front: {
  15187. height: math.unit(6 + 1 / 12, "feet"),
  15188. weight: math.unit(260, "lb"),
  15189. name: "Front",
  15190. image: {
  15191. source: "./media/characters/zeta/front.svg",
  15192. extra: 1968 / 1889,
  15193. bottom: 0.06
  15194. }
  15195. },
  15196. back: {
  15197. height: math.unit(6 + 1 / 12, "feet"),
  15198. weight: math.unit(260, "lb"),
  15199. name: "Back",
  15200. image: {
  15201. source: "./media/characters/zeta/back.svg",
  15202. extra: 1944 / 1858,
  15203. bottom: 0.03
  15204. }
  15205. },
  15206. hand: {
  15207. height: math.unit(1.112, "feet"),
  15208. name: "Hand",
  15209. image: {
  15210. source: "./media/characters/zeta/hand.svg"
  15211. }
  15212. },
  15213. foot: {
  15214. height: math.unit(1.48, "feet"),
  15215. name: "Foot",
  15216. image: {
  15217. source: "./media/characters/zeta/foot.svg"
  15218. }
  15219. },
  15220. },
  15221. [
  15222. {
  15223. name: "Micro",
  15224. height: math.unit(6, "inches")
  15225. },
  15226. {
  15227. name: "Normal",
  15228. height: math.unit(6 + 1 / 12, "feet"),
  15229. default: true
  15230. },
  15231. {
  15232. name: "Macro",
  15233. height: math.unit(20, "feet")
  15234. },
  15235. ]
  15236. ))
  15237. characterMakers.push(() => makeCharacter(
  15238. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  15239. {
  15240. front: {
  15241. height: math.unit(6, "feet"),
  15242. weight: math.unit(150, "lb"),
  15243. name: "Front",
  15244. image: {
  15245. source: "./media/characters/jamie-larsen/front.svg",
  15246. extra: 962 / 933,
  15247. bottom: 0.02
  15248. }
  15249. },
  15250. back: {
  15251. height: math.unit(6, "feet"),
  15252. weight: math.unit(150, "lb"),
  15253. name: "Back",
  15254. image: {
  15255. source: "./media/characters/jamie-larsen/back.svg",
  15256. extra: 997 / 946
  15257. }
  15258. },
  15259. },
  15260. [
  15261. {
  15262. name: "Macro",
  15263. height: math.unit(28 + 7 / 12, "feet"),
  15264. default: true
  15265. },
  15266. {
  15267. name: "Macro+",
  15268. height: math.unit(180, "feet")
  15269. },
  15270. {
  15271. name: "Megamacro",
  15272. height: math.unit(10, "miles")
  15273. },
  15274. {
  15275. name: "Gigamacro",
  15276. height: math.unit(200000, "miles")
  15277. },
  15278. ]
  15279. ))
  15280. characterMakers.push(() => makeCharacter(
  15281. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15282. {
  15283. front: {
  15284. height: math.unit(6, "feet"),
  15285. weight: math.unit(120, "lb"),
  15286. name: "Front",
  15287. image: {
  15288. source: "./media/characters/vance/front.svg",
  15289. extra: 1980 / 1890,
  15290. bottom: 0.09
  15291. }
  15292. },
  15293. back: {
  15294. height: math.unit(6, "feet"),
  15295. weight: math.unit(120, "lb"),
  15296. name: "Back",
  15297. image: {
  15298. source: "./media/characters/vance/back.svg",
  15299. extra: 2081 / 1994,
  15300. bottom: 0.014
  15301. }
  15302. },
  15303. hand: {
  15304. height: math.unit(0.88, "feet"),
  15305. name: "Hand",
  15306. image: {
  15307. source: "./media/characters/vance/hand.svg"
  15308. }
  15309. },
  15310. foot: {
  15311. height: math.unit(0.64, "feet"),
  15312. name: "Foot",
  15313. image: {
  15314. source: "./media/characters/vance/foot.svg"
  15315. }
  15316. },
  15317. },
  15318. [
  15319. {
  15320. name: "Small",
  15321. height: math.unit(90, "feet"),
  15322. default: true
  15323. },
  15324. {
  15325. name: "Macro",
  15326. height: math.unit(100, "meters")
  15327. },
  15328. {
  15329. name: "Megamacro",
  15330. height: math.unit(15, "miles")
  15331. },
  15332. ]
  15333. ))
  15334. characterMakers.push(() => makeCharacter(
  15335. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  15336. {
  15337. front: {
  15338. height: math.unit(6, "feet"),
  15339. weight: math.unit(180, "lb"),
  15340. name: "Front",
  15341. image: {
  15342. source: "./media/characters/xochitl/front.svg",
  15343. extra: 2297 / 2261,
  15344. bottom: 0.065
  15345. }
  15346. },
  15347. back: {
  15348. height: math.unit(6, "feet"),
  15349. weight: math.unit(180, "lb"),
  15350. name: "Back",
  15351. image: {
  15352. source: "./media/characters/xochitl/back.svg",
  15353. extra: 2386 / 2354,
  15354. bottom: 0.01
  15355. }
  15356. },
  15357. foot: {
  15358. height: math.unit(6 / 5 * 1.15, "feet"),
  15359. weight: math.unit(150, "lb"),
  15360. name: "Foot",
  15361. image: {
  15362. source: "./media/characters/xochitl/foot.svg"
  15363. }
  15364. },
  15365. },
  15366. [
  15367. {
  15368. name: "Macro",
  15369. height: math.unit(80, "feet")
  15370. },
  15371. {
  15372. name: "Macro+",
  15373. height: math.unit(400, "feet"),
  15374. default: true
  15375. },
  15376. {
  15377. name: "Gigamacro",
  15378. height: math.unit(80000, "miles")
  15379. },
  15380. {
  15381. name: "Gigamacro+",
  15382. height: math.unit(400000, "miles")
  15383. },
  15384. {
  15385. name: "Teramacro",
  15386. height: math.unit(300, "AU")
  15387. },
  15388. ]
  15389. ))
  15390. characterMakers.push(() => makeCharacter(
  15391. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  15392. {
  15393. front: {
  15394. height: math.unit(6, "feet"),
  15395. weight: math.unit(150, "lb"),
  15396. name: "Front",
  15397. image: {
  15398. source: "./media/characters/vincent/front.svg",
  15399. extra: 1130 / 1080,
  15400. bottom: 0.055
  15401. }
  15402. },
  15403. beak: {
  15404. height: math.unit(6 * 0.1, "feet"),
  15405. name: "Beak",
  15406. image: {
  15407. source: "./media/characters/vincent/beak.svg"
  15408. }
  15409. },
  15410. hand: {
  15411. height: math.unit(6 * 0.85, "feet"),
  15412. weight: math.unit(150, "lb"),
  15413. name: "Hand",
  15414. image: {
  15415. source: "./media/characters/vincent/hand.svg"
  15416. }
  15417. },
  15418. foot: {
  15419. height: math.unit(6 * 0.19, "feet"),
  15420. weight: math.unit(150, "lb"),
  15421. name: "Foot",
  15422. image: {
  15423. source: "./media/characters/vincent/foot.svg"
  15424. }
  15425. },
  15426. },
  15427. [
  15428. {
  15429. name: "Base",
  15430. height: math.unit(6 + 5 / 12, "feet"),
  15431. default: true
  15432. },
  15433. {
  15434. name: "Macro",
  15435. height: math.unit(300, "feet")
  15436. },
  15437. {
  15438. name: "Megamacro",
  15439. height: math.unit(2, "miles")
  15440. },
  15441. {
  15442. name: "Gigamacro",
  15443. height: math.unit(1000, "miles")
  15444. },
  15445. ]
  15446. ))
  15447. characterMakers.push(() => makeCharacter(
  15448. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  15449. {
  15450. front: {
  15451. height: math.unit(2, "meters"),
  15452. weight: math.unit(500, "kg"),
  15453. name: "Front",
  15454. image: {
  15455. source: "./media/characters/coatl/front.svg",
  15456. extra: 3948 / 3500,
  15457. bottom: 0.082
  15458. }
  15459. },
  15460. },
  15461. [
  15462. {
  15463. name: "Normal",
  15464. height: math.unit(4, "meters")
  15465. },
  15466. {
  15467. name: "Macro",
  15468. height: math.unit(100, "meters"),
  15469. default: true
  15470. },
  15471. {
  15472. name: "Macro+",
  15473. height: math.unit(300, "meters")
  15474. },
  15475. {
  15476. name: "Megamacro",
  15477. height: math.unit(3, "gigameters")
  15478. },
  15479. {
  15480. name: "Megamacro+",
  15481. height: math.unit(300, "terameters")
  15482. },
  15483. {
  15484. name: "Megamacro++",
  15485. height: math.unit(3, "lightyears")
  15486. },
  15487. ]
  15488. ))
  15489. characterMakers.push(() => makeCharacter(
  15490. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  15491. {
  15492. front: {
  15493. height: math.unit(6, "feet"),
  15494. weight: math.unit(50, "kg"),
  15495. name: "front",
  15496. image: {
  15497. source: "./media/characters/shiroryu/front.svg",
  15498. extra: 1990 / 1935
  15499. }
  15500. },
  15501. },
  15502. [
  15503. {
  15504. name: "Mortal Mingling",
  15505. height: math.unit(3, "meters")
  15506. },
  15507. {
  15508. name: "Kaiju-ish",
  15509. height: math.unit(250, "meters")
  15510. },
  15511. {
  15512. name: "Somewhat Godly",
  15513. height: math.unit(400, "km"),
  15514. default: true
  15515. },
  15516. {
  15517. name: "Planetary",
  15518. height: math.unit(300, "megameters")
  15519. },
  15520. {
  15521. name: "Galaxy-dwarfing",
  15522. height: math.unit(450, "kiloparsecs")
  15523. },
  15524. {
  15525. name: "Universe Eater",
  15526. height: math.unit(150, "gigaparsecs")
  15527. },
  15528. {
  15529. name: "Almost Immeasurable",
  15530. height: math.unit(1.3e266, "yottaparsecs")
  15531. },
  15532. ]
  15533. ))
  15534. characterMakers.push(() => makeCharacter(
  15535. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  15536. {
  15537. front: {
  15538. height: math.unit(6, "feet"),
  15539. weight: math.unit(150, "lb"),
  15540. name: "Front",
  15541. image: {
  15542. source: "./media/characters/umeko/front.svg",
  15543. extra: 1,
  15544. bottom: 0.019
  15545. }
  15546. },
  15547. frontArmored: {
  15548. height: math.unit(6, "feet"),
  15549. weight: math.unit(150, "lb"),
  15550. name: "Front (Armored)",
  15551. image: {
  15552. source: "./media/characters/umeko/front-armored.svg",
  15553. extra: 1,
  15554. bottom: 0.021
  15555. }
  15556. },
  15557. },
  15558. [
  15559. {
  15560. name: "Macro",
  15561. height: math.unit(220, "feet"),
  15562. default: true
  15563. },
  15564. {
  15565. name: "Guardian Dragon",
  15566. height: math.unit(50, "miles")
  15567. },
  15568. {
  15569. name: "Cosmic",
  15570. height: math.unit(800000, "miles")
  15571. },
  15572. ]
  15573. ))
  15574. characterMakers.push(() => makeCharacter(
  15575. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  15576. {
  15577. front: {
  15578. height: math.unit(6, "feet"),
  15579. weight: math.unit(150, "lb"),
  15580. name: "Front",
  15581. image: {
  15582. source: "./media/characters/cassidy/front.svg",
  15583. extra: 810/808,
  15584. bottom: 41/851
  15585. }
  15586. },
  15587. },
  15588. [
  15589. {
  15590. name: "Canon Height",
  15591. height: math.unit(120, "feet"),
  15592. default: true
  15593. },
  15594. {
  15595. name: "Macro+",
  15596. height: math.unit(400, "feet")
  15597. },
  15598. {
  15599. name: "Macro++",
  15600. height: math.unit(4000, "feet")
  15601. },
  15602. {
  15603. name: "Megamacro",
  15604. height: math.unit(3, "miles")
  15605. },
  15606. ]
  15607. ))
  15608. characterMakers.push(() => makeCharacter(
  15609. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  15610. {
  15611. front: {
  15612. height: math.unit(6, "feet"),
  15613. weight: math.unit(150, "lb"),
  15614. name: "Front",
  15615. image: {
  15616. source: "./media/characters/isaac/front.svg",
  15617. extra: 896 / 815,
  15618. bottom: 0.11
  15619. }
  15620. },
  15621. },
  15622. [
  15623. {
  15624. name: "Human Size",
  15625. height: math.unit(8, "feet"),
  15626. default: true
  15627. },
  15628. {
  15629. name: "Macro",
  15630. height: math.unit(400, "feet")
  15631. },
  15632. {
  15633. name: "Megamacro",
  15634. height: math.unit(50, "miles")
  15635. },
  15636. {
  15637. name: "Canon Height",
  15638. height: math.unit(200, "AU")
  15639. },
  15640. ]
  15641. ))
  15642. characterMakers.push(() => makeCharacter(
  15643. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  15644. {
  15645. front: {
  15646. height: math.unit(6, "feet"),
  15647. weight: math.unit(72, "kg"),
  15648. name: "Front",
  15649. image: {
  15650. source: "./media/characters/sleekit/front.svg",
  15651. extra: 4693 / 4487,
  15652. bottom: 0.012
  15653. }
  15654. },
  15655. },
  15656. [
  15657. {
  15658. name: "Minimum Height",
  15659. height: math.unit(10, "meters")
  15660. },
  15661. {
  15662. name: "Smaller",
  15663. height: math.unit(25, "meters")
  15664. },
  15665. {
  15666. name: "Larger",
  15667. height: math.unit(38, "meters"),
  15668. default: true
  15669. },
  15670. {
  15671. name: "Maximum height",
  15672. height: math.unit(100, "meters")
  15673. },
  15674. ]
  15675. ))
  15676. characterMakers.push(() => makeCharacter(
  15677. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  15678. {
  15679. front: {
  15680. height: math.unit(6, "feet"),
  15681. weight: math.unit(150, "lb"),
  15682. name: "Front",
  15683. image: {
  15684. source: "./media/characters/nillia/front.svg",
  15685. extra: 2195 / 2037,
  15686. bottom: 0.005
  15687. }
  15688. },
  15689. back: {
  15690. height: math.unit(6, "feet"),
  15691. weight: math.unit(150, "lb"),
  15692. name: "Back",
  15693. image: {
  15694. source: "./media/characters/nillia/back.svg",
  15695. extra: 2195 / 2037,
  15696. bottom: 0.005
  15697. }
  15698. },
  15699. },
  15700. [
  15701. {
  15702. name: "Canon Height",
  15703. height: math.unit(489, "feet"),
  15704. default: true
  15705. }
  15706. ]
  15707. ))
  15708. characterMakers.push(() => makeCharacter(
  15709. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  15710. {
  15711. front: {
  15712. height: math.unit(6, "feet"),
  15713. weight: math.unit(150, "lb"),
  15714. name: "Front",
  15715. image: {
  15716. source: "./media/characters/mesmyriza/front.svg",
  15717. extra: 2067 / 1784,
  15718. bottom: 0.035
  15719. }
  15720. },
  15721. foot: {
  15722. height: math.unit(6 / (250 / 35), "feet"),
  15723. name: "Foot",
  15724. image: {
  15725. source: "./media/characters/mesmyriza/foot.svg"
  15726. }
  15727. },
  15728. },
  15729. [
  15730. {
  15731. name: "Macro",
  15732. height: math.unit(457, "meters"),
  15733. default: true
  15734. },
  15735. {
  15736. name: "Megamacro",
  15737. height: math.unit(8, "megameters")
  15738. },
  15739. ]
  15740. ))
  15741. characterMakers.push(() => makeCharacter(
  15742. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  15743. {
  15744. front: {
  15745. height: math.unit(6, "feet"),
  15746. weight: math.unit(250, "lb"),
  15747. name: "Front",
  15748. image: {
  15749. source: "./media/characters/saudade/front.svg",
  15750. extra: 1172 / 1139,
  15751. bottom: 0.035
  15752. }
  15753. },
  15754. },
  15755. [
  15756. {
  15757. name: "Micro",
  15758. height: math.unit(3, "inches")
  15759. },
  15760. {
  15761. name: "Normal",
  15762. height: math.unit(6, "feet"),
  15763. default: true
  15764. },
  15765. {
  15766. name: "Macro",
  15767. height: math.unit(50, "feet")
  15768. },
  15769. {
  15770. name: "Megamacro",
  15771. height: math.unit(2800, "feet")
  15772. },
  15773. ]
  15774. ))
  15775. characterMakers.push(() => makeCharacter(
  15776. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15777. {
  15778. front: {
  15779. height: math.unit(5 + 4 / 12, "feet"),
  15780. weight: math.unit(100, "lb"),
  15781. name: "Front",
  15782. image: {
  15783. source: "./media/characters/keireer/front.svg",
  15784. extra: 716 / 666,
  15785. bottom: 0.05
  15786. }
  15787. },
  15788. },
  15789. [
  15790. {
  15791. name: "Normal",
  15792. height: math.unit(5 + 4 / 12, "feet"),
  15793. default: true
  15794. },
  15795. ]
  15796. ))
  15797. characterMakers.push(() => makeCharacter(
  15798. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15799. {
  15800. front: {
  15801. height: math.unit(5.5, "feet"),
  15802. weight: math.unit(90, "kg"),
  15803. name: "Front",
  15804. image: {
  15805. source: "./media/characters/mirja/front.svg",
  15806. extra: 1452/1262,
  15807. bottom: 67/1519
  15808. }
  15809. },
  15810. frontDressed: {
  15811. height: math.unit(5.5, "feet"),
  15812. weight: math.unit(90, "lb"),
  15813. name: "Front (Dressed)",
  15814. image: {
  15815. source: "./media/characters/mirja/dressed.svg",
  15816. extra: 1452/1262,
  15817. bottom: 67/1519
  15818. }
  15819. },
  15820. back: {
  15821. height: math.unit(6, "feet"),
  15822. weight: math.unit(90, "lb"),
  15823. name: "Back",
  15824. image: {
  15825. source: "./media/characters/mirja/back.svg",
  15826. extra: 1892/1795,
  15827. bottom: 48/1940
  15828. }
  15829. },
  15830. maw: {
  15831. height: math.unit(1.312, "feet"),
  15832. name: "Maw",
  15833. image: {
  15834. source: "./media/characters/mirja/maw.svg"
  15835. }
  15836. },
  15837. paw: {
  15838. height: math.unit(1.15, "feet"),
  15839. name: "Paw",
  15840. image: {
  15841. source: "./media/characters/mirja/paw.svg"
  15842. }
  15843. },
  15844. },
  15845. [
  15846. {
  15847. name: "\"Incognito\"",
  15848. height: math.unit(3, "meters")
  15849. },
  15850. {
  15851. name: "Strolling Size",
  15852. height: math.unit(15, "km")
  15853. },
  15854. {
  15855. name: "Larger Strolling Size",
  15856. height: math.unit(400, "km")
  15857. },
  15858. {
  15859. name: "Preferred Size",
  15860. height: math.unit(5000, "km"),
  15861. default: true
  15862. },
  15863. {
  15864. name: "True Size",
  15865. height: math.unit(30657809462086840000000000000000, "parsecs"),
  15866. },
  15867. ]
  15868. ))
  15869. characterMakers.push(() => makeCharacter(
  15870. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  15871. {
  15872. front: {
  15873. height: math.unit(15, "feet"),
  15874. weight: math.unit(880, "kg"),
  15875. name: "Front",
  15876. image: {
  15877. source: "./media/characters/nightraver/front.svg",
  15878. extra: 2444 / 2160,
  15879. bottom: 0.027
  15880. }
  15881. },
  15882. back: {
  15883. height: math.unit(15, "feet"),
  15884. weight: math.unit(880, "kg"),
  15885. name: "Back",
  15886. image: {
  15887. source: "./media/characters/nightraver/back.svg",
  15888. extra: 2309 / 2180,
  15889. bottom: 0.005
  15890. }
  15891. },
  15892. sole: {
  15893. height: math.unit(2.878, "feet"),
  15894. name: "Sole",
  15895. image: {
  15896. source: "./media/characters/nightraver/sole.svg"
  15897. }
  15898. },
  15899. foot: {
  15900. height: math.unit(2.285, "feet"),
  15901. name: "Foot",
  15902. image: {
  15903. source: "./media/characters/nightraver/foot.svg"
  15904. }
  15905. },
  15906. maw: {
  15907. height: math.unit(2.67, "feet"),
  15908. name: "Maw",
  15909. image: {
  15910. source: "./media/characters/nightraver/maw.svg"
  15911. }
  15912. },
  15913. },
  15914. [
  15915. {
  15916. name: "Micro",
  15917. height: math.unit(1, "cm")
  15918. },
  15919. {
  15920. name: "Normal",
  15921. height: math.unit(15, "feet"),
  15922. default: true
  15923. },
  15924. {
  15925. name: "Macro",
  15926. height: math.unit(300, "feet")
  15927. },
  15928. {
  15929. name: "Megamacro",
  15930. height: math.unit(300, "miles")
  15931. },
  15932. {
  15933. name: "Gigamacro",
  15934. height: math.unit(10000, "miles")
  15935. },
  15936. ]
  15937. ))
  15938. characterMakers.push(() => makeCharacter(
  15939. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  15940. {
  15941. side: {
  15942. height: math.unit(2, "inches"),
  15943. weight: math.unit(5, "grams"),
  15944. name: "Side",
  15945. image: {
  15946. source: "./media/characters/arc/side.svg"
  15947. }
  15948. },
  15949. },
  15950. [
  15951. {
  15952. name: "Micro",
  15953. height: math.unit(2, "inches"),
  15954. default: true
  15955. },
  15956. ]
  15957. ))
  15958. characterMakers.push(() => makeCharacter(
  15959. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  15960. {
  15961. front: {
  15962. height: math.unit(1.1938, "meters"),
  15963. weight: math.unit(54, "kg"),
  15964. name: "Front",
  15965. image: {
  15966. source: "./media/characters/nebula-shahar/front.svg",
  15967. extra: 1642 / 1436,
  15968. bottom: 0.06
  15969. }
  15970. },
  15971. },
  15972. [
  15973. {
  15974. name: "Megamicro",
  15975. height: math.unit(0.3, "mm")
  15976. },
  15977. {
  15978. name: "Micro",
  15979. height: math.unit(3, "cm")
  15980. },
  15981. {
  15982. name: "Normal",
  15983. height: math.unit(138, "cm"),
  15984. default: true
  15985. },
  15986. {
  15987. name: "Macro",
  15988. height: math.unit(30, "m")
  15989. },
  15990. ]
  15991. ))
  15992. characterMakers.push(() => makeCharacter(
  15993. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  15994. {
  15995. front: {
  15996. height: math.unit(5.24, "feet"),
  15997. weight: math.unit(150, "lb"),
  15998. name: "Front",
  15999. image: {
  16000. source: "./media/characters/shayla/front.svg",
  16001. extra: 1512 / 1414,
  16002. bottom: 0.01
  16003. }
  16004. },
  16005. back: {
  16006. height: math.unit(5.24, "feet"),
  16007. weight: math.unit(150, "lb"),
  16008. name: "Back",
  16009. image: {
  16010. source: "./media/characters/shayla/back.svg",
  16011. extra: 1512 / 1414
  16012. }
  16013. },
  16014. hand: {
  16015. height: math.unit(0.7781496062992126, "feet"),
  16016. name: "Hand",
  16017. image: {
  16018. source: "./media/characters/shayla/hand.svg"
  16019. }
  16020. },
  16021. foot: {
  16022. height: math.unit(1.4206036745406823, "feet"),
  16023. name: "Foot",
  16024. image: {
  16025. source: "./media/characters/shayla/foot.svg"
  16026. }
  16027. },
  16028. },
  16029. [
  16030. {
  16031. name: "Micro",
  16032. height: math.unit(0.32, "feet")
  16033. },
  16034. {
  16035. name: "Normal",
  16036. height: math.unit(5.24, "feet"),
  16037. default: true
  16038. },
  16039. {
  16040. name: "Macro",
  16041. height: math.unit(492.12, "feet")
  16042. },
  16043. {
  16044. name: "Megamacro",
  16045. height: math.unit(186.41, "miles")
  16046. },
  16047. ]
  16048. ))
  16049. characterMakers.push(() => makeCharacter(
  16050. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  16051. {
  16052. front: {
  16053. height: math.unit(2.2, "m"),
  16054. weight: math.unit(120, "kg"),
  16055. name: "Front",
  16056. image: {
  16057. source: "./media/characters/pia-jr/front.svg",
  16058. extra: 1000 / 970,
  16059. bottom: 0.035
  16060. }
  16061. },
  16062. hand: {
  16063. height: math.unit(0.759 * 7.21 / 6, "feet"),
  16064. name: "Hand",
  16065. image: {
  16066. source: "./media/characters/pia-jr/hand.svg"
  16067. }
  16068. },
  16069. paw: {
  16070. height: math.unit(1.185 * 7.21 / 6, "feet"),
  16071. name: "Paw",
  16072. image: {
  16073. source: "./media/characters/pia-jr/paw.svg"
  16074. }
  16075. },
  16076. },
  16077. [
  16078. {
  16079. name: "Micro",
  16080. height: math.unit(1.2, "cm")
  16081. },
  16082. {
  16083. name: "Normal",
  16084. height: math.unit(2.2, "m"),
  16085. default: true
  16086. },
  16087. {
  16088. name: "Macro",
  16089. height: math.unit(180, "m")
  16090. },
  16091. {
  16092. name: "Megamacro",
  16093. height: math.unit(420, "km")
  16094. },
  16095. ]
  16096. ))
  16097. characterMakers.push(() => makeCharacter(
  16098. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  16099. {
  16100. front: {
  16101. height: math.unit(2, "m"),
  16102. weight: math.unit(115, "kg"),
  16103. name: "Front",
  16104. image: {
  16105. source: "./media/characters/pia-sr/front.svg",
  16106. extra: 760 / 730,
  16107. bottom: 0.015
  16108. }
  16109. },
  16110. back: {
  16111. height: math.unit(2, "m"),
  16112. weight: math.unit(115, "kg"),
  16113. name: "Back",
  16114. image: {
  16115. source: "./media/characters/pia-sr/back.svg",
  16116. extra: 760 / 730,
  16117. bottom: 0.01
  16118. }
  16119. },
  16120. hand: {
  16121. height: math.unit(0.89 * 6.56 / 6, "feet"),
  16122. name: "Hand",
  16123. image: {
  16124. source: "./media/characters/pia-sr/hand.svg"
  16125. }
  16126. },
  16127. foot: {
  16128. height: math.unit(1.83, "feet"),
  16129. name: "Foot",
  16130. image: {
  16131. source: "./media/characters/pia-sr/foot.svg"
  16132. }
  16133. },
  16134. },
  16135. [
  16136. {
  16137. name: "Micro",
  16138. height: math.unit(88, "mm")
  16139. },
  16140. {
  16141. name: "Normal",
  16142. height: math.unit(2, "m"),
  16143. default: true
  16144. },
  16145. {
  16146. name: "Macro",
  16147. height: math.unit(200, "m")
  16148. },
  16149. {
  16150. name: "Megamacro",
  16151. height: math.unit(420, "km")
  16152. },
  16153. ]
  16154. ))
  16155. characterMakers.push(() => makeCharacter(
  16156. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  16157. {
  16158. front: {
  16159. height: math.unit(8 + 2 / 12, "feet"),
  16160. weight: math.unit(300, "lb"),
  16161. name: "Front",
  16162. image: {
  16163. source: "./media/characters/kibibyte/front.svg",
  16164. extra: 2221 / 2098,
  16165. bottom: 0.04
  16166. }
  16167. },
  16168. },
  16169. [
  16170. {
  16171. name: "Normal",
  16172. height: math.unit(8 + 2 / 12, "feet"),
  16173. default: true
  16174. },
  16175. {
  16176. name: "Socialable Macro",
  16177. height: math.unit(50, "feet")
  16178. },
  16179. {
  16180. name: "Macro",
  16181. height: math.unit(300, "feet")
  16182. },
  16183. {
  16184. name: "Megamacro",
  16185. height: math.unit(500, "miles")
  16186. },
  16187. ]
  16188. ))
  16189. characterMakers.push(() => makeCharacter(
  16190. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  16191. {
  16192. front: {
  16193. height: math.unit(6, "feet"),
  16194. weight: math.unit(150, "lb"),
  16195. name: "Front",
  16196. image: {
  16197. source: "./media/characters/felix/front.svg",
  16198. extra: 762 / 722,
  16199. bottom: 0.02
  16200. }
  16201. },
  16202. frontClothed: {
  16203. height: math.unit(6, "feet"),
  16204. weight: math.unit(150, "lb"),
  16205. name: "Front (Clothed)",
  16206. image: {
  16207. source: "./media/characters/felix/front-clothed.svg",
  16208. extra: 762 / 722,
  16209. bottom: 0.02
  16210. }
  16211. },
  16212. },
  16213. [
  16214. {
  16215. name: "Normal",
  16216. height: math.unit(6 + 8 / 12, "feet"),
  16217. default: true
  16218. },
  16219. {
  16220. name: "Macro",
  16221. height: math.unit(2600, "feet")
  16222. },
  16223. {
  16224. name: "Megamacro",
  16225. height: math.unit(450, "miles")
  16226. },
  16227. ]
  16228. ))
  16229. characterMakers.push(() => makeCharacter(
  16230. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  16231. {
  16232. front: {
  16233. height: math.unit(6 + 1 / 12, "feet"),
  16234. weight: math.unit(250, "lb"),
  16235. name: "Front",
  16236. image: {
  16237. source: "./media/characters/tobo/front.svg",
  16238. extra: 608 / 586,
  16239. bottom: 0.023
  16240. }
  16241. },
  16242. back: {
  16243. height: math.unit(6 + 1 / 12, "feet"),
  16244. weight: math.unit(250, "lb"),
  16245. name: "Back",
  16246. image: {
  16247. source: "./media/characters/tobo/back.svg",
  16248. extra: 608 / 586
  16249. }
  16250. },
  16251. },
  16252. [
  16253. {
  16254. name: "Nano",
  16255. height: math.unit(2, "nm")
  16256. },
  16257. {
  16258. name: "Megamicro",
  16259. height: math.unit(0.1, "mm")
  16260. },
  16261. {
  16262. name: "Micro",
  16263. height: math.unit(1, "inch"),
  16264. default: true
  16265. },
  16266. {
  16267. name: "Human-sized",
  16268. height: math.unit(6 + 1 / 12, "feet")
  16269. },
  16270. {
  16271. name: "Macro",
  16272. height: math.unit(250, "feet")
  16273. },
  16274. {
  16275. name: "Megamacro",
  16276. height: math.unit(75, "miles")
  16277. },
  16278. {
  16279. name: "Texas-sized",
  16280. height: math.unit(750, "miles")
  16281. },
  16282. {
  16283. name: "Teramacro",
  16284. height: math.unit(50000, "miles")
  16285. },
  16286. ]
  16287. ))
  16288. characterMakers.push(() => makeCharacter(
  16289. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  16290. {
  16291. front: {
  16292. height: math.unit(6, "feet"),
  16293. weight: math.unit(269, "lb"),
  16294. name: "Front",
  16295. image: {
  16296. source: "./media/characters/danny-kapowsky/front.svg",
  16297. extra: 766 / 736,
  16298. bottom: 0.044
  16299. }
  16300. },
  16301. back: {
  16302. height: math.unit(6, "feet"),
  16303. weight: math.unit(269, "lb"),
  16304. name: "Back",
  16305. image: {
  16306. source: "./media/characters/danny-kapowsky/back.svg",
  16307. extra: 797 / 760,
  16308. bottom: 0.025
  16309. }
  16310. },
  16311. },
  16312. [
  16313. {
  16314. name: "Macro",
  16315. height: math.unit(150, "feet"),
  16316. default: true
  16317. },
  16318. {
  16319. name: "Macro+",
  16320. height: math.unit(200, "feet")
  16321. },
  16322. {
  16323. name: "Macro++",
  16324. height: math.unit(300, "feet")
  16325. },
  16326. {
  16327. name: "Macro+++",
  16328. height: math.unit(400, "feet")
  16329. },
  16330. ]
  16331. ))
  16332. characterMakers.push(() => makeCharacter(
  16333. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  16334. {
  16335. side: {
  16336. height: math.unit(6, "feet"),
  16337. weight: math.unit(170, "lb"),
  16338. name: "Side",
  16339. image: {
  16340. source: "./media/characters/finn/side.svg",
  16341. extra: 1953 / 1807,
  16342. bottom: 0.057
  16343. }
  16344. },
  16345. },
  16346. [
  16347. {
  16348. name: "Megamacro",
  16349. height: math.unit(14445, "feet"),
  16350. default: true
  16351. },
  16352. ]
  16353. ))
  16354. characterMakers.push(() => makeCharacter(
  16355. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  16356. {
  16357. front: {
  16358. height: math.unit(5 + 6 / 12, "feet"),
  16359. weight: math.unit(125, "lb"),
  16360. name: "Front",
  16361. image: {
  16362. source: "./media/characters/roy/front.svg",
  16363. extra: 1,
  16364. bottom: 0.11
  16365. }
  16366. },
  16367. },
  16368. [
  16369. {
  16370. name: "Micro",
  16371. height: math.unit(3, "inches"),
  16372. default: true
  16373. },
  16374. {
  16375. name: "Normal",
  16376. height: math.unit(5 + 6 / 12, "feet")
  16377. },
  16378. {
  16379. name: "Lesser Macro",
  16380. height: math.unit(60, "feet")
  16381. },
  16382. {
  16383. name: "Greater Macro",
  16384. height: math.unit(120, "feet")
  16385. },
  16386. ]
  16387. ))
  16388. characterMakers.push(() => makeCharacter(
  16389. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  16390. {
  16391. front: {
  16392. height: math.unit(6, "feet"),
  16393. weight: math.unit(100, "lb"),
  16394. name: "Front",
  16395. image: {
  16396. source: "./media/characters/aevsivs/front.svg",
  16397. extra: 1,
  16398. bottom: 0.03
  16399. }
  16400. },
  16401. back: {
  16402. height: math.unit(6, "feet"),
  16403. weight: math.unit(100, "lb"),
  16404. name: "Back",
  16405. image: {
  16406. source: "./media/characters/aevsivs/back.svg"
  16407. }
  16408. },
  16409. },
  16410. [
  16411. {
  16412. name: "Micro",
  16413. height: math.unit(2, "inches"),
  16414. default: true
  16415. },
  16416. {
  16417. name: "Normal",
  16418. height: math.unit(5, "feet")
  16419. },
  16420. ]
  16421. ))
  16422. characterMakers.push(() => makeCharacter(
  16423. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  16424. {
  16425. front: {
  16426. height: math.unit(5 + 7 / 12, "feet"),
  16427. weight: math.unit(159, "lb"),
  16428. name: "Front",
  16429. image: {
  16430. source: "./media/characters/hildegard/front.svg",
  16431. extra: 289 / 269,
  16432. bottom: 7.63 / 297.8
  16433. }
  16434. },
  16435. back: {
  16436. height: math.unit(5 + 7 / 12, "feet"),
  16437. weight: math.unit(159, "lb"),
  16438. name: "Back",
  16439. image: {
  16440. source: "./media/characters/hildegard/back.svg",
  16441. extra: 280 / 260,
  16442. bottom: 2.3 / 282
  16443. }
  16444. },
  16445. },
  16446. [
  16447. {
  16448. name: "Normal",
  16449. height: math.unit(5 + 7 / 12, "feet"),
  16450. default: true
  16451. },
  16452. ]
  16453. ))
  16454. characterMakers.push(() => makeCharacter(
  16455. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  16456. {
  16457. bernard: {
  16458. height: math.unit(2 + 7 / 12, "feet"),
  16459. weight: math.unit(66, "lb"),
  16460. name: "Bernard",
  16461. rename: true,
  16462. image: {
  16463. source: "./media/characters/bernard-wilder/bernard.svg",
  16464. extra: 192 / 128,
  16465. bottom: 0.05
  16466. }
  16467. },
  16468. wilder: {
  16469. height: math.unit(5 + 8 / 12, "feet"),
  16470. weight: math.unit(143, "lb"),
  16471. name: "Wilder",
  16472. rename: true,
  16473. image: {
  16474. source: "./media/characters/bernard-wilder/wilder.svg",
  16475. extra: 361 / 312,
  16476. bottom: 0.02
  16477. }
  16478. },
  16479. },
  16480. [
  16481. {
  16482. name: "Normal",
  16483. height: math.unit(2 + 7 / 12, "feet"),
  16484. default: true
  16485. },
  16486. ]
  16487. ))
  16488. characterMakers.push(() => makeCharacter(
  16489. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  16490. {
  16491. anthro: {
  16492. height: math.unit(6 + 1 / 12, "feet"),
  16493. weight: math.unit(155, "lb"),
  16494. name: "Anthro",
  16495. image: {
  16496. source: "./media/characters/hearth/anthro.svg",
  16497. extra: 1178/1136,
  16498. bottom: 28/1206
  16499. }
  16500. },
  16501. feral: {
  16502. height: math.unit(3.78, "feet"),
  16503. weight: math.unit(35, "kg"),
  16504. name: "Feral",
  16505. image: {
  16506. source: "./media/characters/hearth/feral.svg",
  16507. extra: 153 / 135,
  16508. bottom: 0.03
  16509. }
  16510. },
  16511. },
  16512. [
  16513. {
  16514. name: "Normal",
  16515. height: math.unit(6 + 1 / 12, "feet"),
  16516. default: true
  16517. },
  16518. ]
  16519. ))
  16520. characterMakers.push(() => makeCharacter(
  16521. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  16522. {
  16523. front: {
  16524. height: math.unit(6, "feet"),
  16525. weight: math.unit(182, "lb"),
  16526. name: "Front",
  16527. image: {
  16528. source: "./media/characters/ingrid/front.svg",
  16529. extra: 294 / 268,
  16530. bottom: 0.027
  16531. }
  16532. },
  16533. },
  16534. [
  16535. {
  16536. name: "Normal",
  16537. height: math.unit(6, "feet"),
  16538. default: true
  16539. },
  16540. ]
  16541. ))
  16542. characterMakers.push(() => makeCharacter(
  16543. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  16544. {
  16545. eevee: {
  16546. height: math.unit(2 + 10 / 12, "feet"),
  16547. weight: math.unit(86, "lb"),
  16548. name: "Malgam",
  16549. image: {
  16550. source: "./media/characters/malgam/eevee.svg",
  16551. extra: 952/784,
  16552. bottom: 38/990
  16553. }
  16554. },
  16555. sylveon: {
  16556. height: math.unit(4, "feet"),
  16557. weight: math.unit(101, "lb"),
  16558. name: "Future Malgam",
  16559. rename: true,
  16560. image: {
  16561. source: "./media/characters/malgam/sylveon.svg",
  16562. extra: 371 / 325,
  16563. bottom: 0.015
  16564. }
  16565. },
  16566. gigantamax: {
  16567. height: math.unit(50, "feet"),
  16568. name: "Gigantamax Malgam",
  16569. rename: true,
  16570. image: {
  16571. source: "./media/characters/malgam/gigantamax.svg"
  16572. }
  16573. },
  16574. },
  16575. [
  16576. {
  16577. name: "Normal",
  16578. height: math.unit(2 + 10 / 12, "feet"),
  16579. default: true
  16580. },
  16581. ]
  16582. ))
  16583. characterMakers.push(() => makeCharacter(
  16584. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  16585. {
  16586. front: {
  16587. height: math.unit(5 + 11 / 12, "feet"),
  16588. weight: math.unit(188, "lb"),
  16589. name: "Front",
  16590. image: {
  16591. source: "./media/characters/fleur/front.svg",
  16592. extra: 309 / 283,
  16593. bottom: 0.007
  16594. }
  16595. },
  16596. },
  16597. [
  16598. {
  16599. name: "Normal",
  16600. height: math.unit(5 + 11 / 12, "feet"),
  16601. default: true
  16602. },
  16603. ]
  16604. ))
  16605. characterMakers.push(() => makeCharacter(
  16606. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  16607. {
  16608. front: {
  16609. height: math.unit(5 + 4 / 12, "feet"),
  16610. weight: math.unit(122, "lb"),
  16611. name: "Front",
  16612. image: {
  16613. source: "./media/characters/jude/front.svg",
  16614. extra: 288 / 273,
  16615. bottom: 0.03
  16616. }
  16617. },
  16618. },
  16619. [
  16620. {
  16621. name: "Normal",
  16622. height: math.unit(5 + 4 / 12, "feet"),
  16623. default: true
  16624. },
  16625. ]
  16626. ))
  16627. characterMakers.push(() => makeCharacter(
  16628. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  16629. {
  16630. front: {
  16631. height: math.unit(5 + 11 / 12, "feet"),
  16632. weight: math.unit(190, "lb"),
  16633. name: "Front",
  16634. image: {
  16635. source: "./media/characters/seara/front.svg",
  16636. extra: 1,
  16637. bottom: 0.05
  16638. }
  16639. },
  16640. },
  16641. [
  16642. {
  16643. name: "Normal",
  16644. height: math.unit(5 + 11 / 12, "feet"),
  16645. default: true
  16646. },
  16647. ]
  16648. ))
  16649. characterMakers.push(() => makeCharacter(
  16650. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  16651. {
  16652. front: {
  16653. height: math.unit(16 + 5 / 12, "feet"),
  16654. weight: math.unit(524, "lb"),
  16655. name: "Front",
  16656. image: {
  16657. source: "./media/characters/caspian-lugia/front.svg",
  16658. extra: 1,
  16659. bottom: 0.04
  16660. }
  16661. },
  16662. },
  16663. [
  16664. {
  16665. name: "Normal",
  16666. height: math.unit(16 + 5 / 12, "feet"),
  16667. default: true
  16668. },
  16669. ]
  16670. ))
  16671. characterMakers.push(() => makeCharacter(
  16672. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  16673. {
  16674. front: {
  16675. height: math.unit(5 + 7 / 12, "feet"),
  16676. weight: math.unit(170, "lb"),
  16677. name: "Front",
  16678. image: {
  16679. source: "./media/characters/mika/front.svg",
  16680. extra: 1,
  16681. bottom: 0.016
  16682. }
  16683. },
  16684. },
  16685. [
  16686. {
  16687. name: "Normal",
  16688. height: math.unit(5 + 7 / 12, "feet"),
  16689. default: true
  16690. },
  16691. ]
  16692. ))
  16693. characterMakers.push(() => makeCharacter(
  16694. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  16695. {
  16696. front: {
  16697. height: math.unit(6 + 2 / 12, "feet"),
  16698. weight: math.unit(268, "lb"),
  16699. name: "Front",
  16700. image: {
  16701. source: "./media/characters/sol/front.svg",
  16702. extra: 247 / 231,
  16703. bottom: 0.05
  16704. }
  16705. },
  16706. },
  16707. [
  16708. {
  16709. name: "Normal",
  16710. height: math.unit(6 + 2 / 12, "feet"),
  16711. default: true
  16712. },
  16713. ]
  16714. ))
  16715. characterMakers.push(() => makeCharacter(
  16716. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  16717. {
  16718. buizel: {
  16719. height: math.unit(2 + 5 / 12, "feet"),
  16720. weight: math.unit(87, "lb"),
  16721. name: "Front",
  16722. image: {
  16723. source: "./media/characters/umiko/buizel.svg",
  16724. extra: 172 / 157,
  16725. bottom: 0.01
  16726. },
  16727. form: "buizel",
  16728. default: true
  16729. },
  16730. floatzel: {
  16731. height: math.unit(5 + 9 / 12, "feet"),
  16732. weight: math.unit(250, "lb"),
  16733. name: "Front",
  16734. image: {
  16735. source: "./media/characters/umiko/floatzel.svg",
  16736. extra: 1076/1006,
  16737. bottom: 15/1091
  16738. },
  16739. form: "floatzel",
  16740. default: true
  16741. },
  16742. },
  16743. [
  16744. {
  16745. name: "Normal",
  16746. height: math.unit(2 + 5 / 12, "feet"),
  16747. form: "buizel",
  16748. default: true
  16749. },
  16750. {
  16751. name: "Normal",
  16752. height: math.unit(5 + 9 / 12, "feet"),
  16753. form: "floatzel",
  16754. default: true
  16755. },
  16756. ],
  16757. {
  16758. "buizel": {
  16759. name: "Buizel"
  16760. },
  16761. "floatzel": {
  16762. name: "Floatzel",
  16763. default: true
  16764. }
  16765. }
  16766. ))
  16767. characterMakers.push(() => makeCharacter(
  16768. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  16769. {
  16770. front: {
  16771. height: math.unit(6 + 2 / 12, "feet"),
  16772. weight: math.unit(146, "lb"),
  16773. name: "Front",
  16774. image: {
  16775. source: "./media/characters/iliac/front.svg",
  16776. extra: 389 / 365,
  16777. bottom: 0.035
  16778. }
  16779. },
  16780. },
  16781. [
  16782. {
  16783. name: "Normal",
  16784. height: math.unit(6 + 2 / 12, "feet"),
  16785. default: true
  16786. },
  16787. ]
  16788. ))
  16789. characterMakers.push(() => makeCharacter(
  16790. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16791. {
  16792. front: {
  16793. height: math.unit(6, "feet"),
  16794. weight: math.unit(170, "lb"),
  16795. name: "Front",
  16796. image: {
  16797. source: "./media/characters/topaz/front.svg",
  16798. extra: 317 / 303,
  16799. bottom: 0.055
  16800. }
  16801. },
  16802. },
  16803. [
  16804. {
  16805. name: "Normal",
  16806. height: math.unit(6, "feet"),
  16807. default: true
  16808. },
  16809. ]
  16810. ))
  16811. characterMakers.push(() => makeCharacter(
  16812. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  16813. {
  16814. front: {
  16815. height: math.unit(5 + 11 / 12, "feet"),
  16816. weight: math.unit(144, "lb"),
  16817. name: "Front",
  16818. image: {
  16819. source: "./media/characters/gabriel/front.svg",
  16820. extra: 285 / 262,
  16821. bottom: 0.004
  16822. }
  16823. },
  16824. },
  16825. [
  16826. {
  16827. name: "Normal",
  16828. height: math.unit(5 + 11 / 12, "feet"),
  16829. default: true
  16830. },
  16831. ]
  16832. ))
  16833. characterMakers.push(() => makeCharacter(
  16834. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  16835. {
  16836. side: {
  16837. height: math.unit(6 + 5 / 12, "feet"),
  16838. weight: math.unit(300, "lb"),
  16839. name: "Side",
  16840. image: {
  16841. source: "./media/characters/tempest-suicune/side.svg",
  16842. extra: 195 / 154,
  16843. bottom: 0.04
  16844. }
  16845. },
  16846. },
  16847. [
  16848. {
  16849. name: "Normal",
  16850. height: math.unit(6 + 5 / 12, "feet"),
  16851. default: true
  16852. },
  16853. ]
  16854. ))
  16855. characterMakers.push(() => makeCharacter(
  16856. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  16857. {
  16858. front: {
  16859. height: math.unit(7 + 2 / 12, "feet"),
  16860. weight: math.unit(322, "lb"),
  16861. name: "Front",
  16862. image: {
  16863. source: "./media/characters/vulcan/front.svg",
  16864. extra: 154 / 147,
  16865. bottom: 0.04
  16866. }
  16867. },
  16868. },
  16869. [
  16870. {
  16871. name: "Normal",
  16872. height: math.unit(7 + 2 / 12, "feet"),
  16873. default: true
  16874. },
  16875. ]
  16876. ))
  16877. characterMakers.push(() => makeCharacter(
  16878. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  16879. {
  16880. front: {
  16881. height: math.unit(5 + 10 / 12, "feet"),
  16882. weight: math.unit(264, "lb"),
  16883. name: "Front",
  16884. image: {
  16885. source: "./media/characters/gault/front.svg",
  16886. extra: 161 / 140,
  16887. bottom: 0.028
  16888. }
  16889. },
  16890. },
  16891. [
  16892. {
  16893. name: "Normal",
  16894. height: math.unit(5 + 10 / 12, "feet"),
  16895. default: true
  16896. },
  16897. ]
  16898. ))
  16899. characterMakers.push(() => makeCharacter(
  16900. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  16901. {
  16902. front: {
  16903. height: math.unit(6, "feet"),
  16904. weight: math.unit(150, "lb"),
  16905. name: "Front",
  16906. image: {
  16907. source: "./media/characters/shard/front.svg",
  16908. extra: 273 / 238,
  16909. bottom: 0.02
  16910. }
  16911. },
  16912. },
  16913. [
  16914. {
  16915. name: "Normal",
  16916. height: math.unit(3 + 6 / 12, "feet"),
  16917. default: true
  16918. },
  16919. ]
  16920. ))
  16921. characterMakers.push(() => makeCharacter(
  16922. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  16923. {
  16924. front: {
  16925. height: math.unit(5 + 11 / 12, "feet"),
  16926. weight: math.unit(146, "lb"),
  16927. name: "Front",
  16928. image: {
  16929. source: "./media/characters/ashe/front.svg",
  16930. extra: 400 / 373,
  16931. bottom: 0.01
  16932. }
  16933. },
  16934. },
  16935. [
  16936. {
  16937. name: "Normal",
  16938. height: math.unit(5 + 11 / 12, "feet"),
  16939. default: true
  16940. },
  16941. ]
  16942. ))
  16943. characterMakers.push(() => makeCharacter(
  16944. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  16945. {
  16946. front: {
  16947. height: math.unit(5 + 5 / 12, "feet"),
  16948. weight: math.unit(135, "lb"),
  16949. name: "Front",
  16950. image: {
  16951. source: "./media/characters/beatrix/front.svg",
  16952. extra: 392 / 379,
  16953. bottom: 0.01
  16954. }
  16955. },
  16956. },
  16957. [
  16958. {
  16959. name: "Normal",
  16960. height: math.unit(6, "feet"),
  16961. default: true
  16962. },
  16963. ]
  16964. ))
  16965. characterMakers.push(() => makeCharacter(
  16966. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  16967. {
  16968. front: {
  16969. height: math.unit(6 + 2/12, "feet"),
  16970. weight: math.unit(135, "lb"),
  16971. name: "Front",
  16972. image: {
  16973. source: "./media/characters/ignatius/front.svg",
  16974. extra: 1380/1259,
  16975. bottom: 27/1407
  16976. }
  16977. },
  16978. },
  16979. [
  16980. {
  16981. name: "Normal",
  16982. height: math.unit(6 + 2/12, "feet"),
  16983. default: true
  16984. },
  16985. ]
  16986. ))
  16987. characterMakers.push(() => makeCharacter(
  16988. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  16989. {
  16990. front: {
  16991. height: math.unit(6 + 2 / 12, "feet"),
  16992. weight: math.unit(138, "lb"),
  16993. name: "Front",
  16994. image: {
  16995. source: "./media/characters/mei-li/front.svg",
  16996. extra: 237 / 229,
  16997. bottom: 0.03
  16998. }
  16999. },
  17000. },
  17001. [
  17002. {
  17003. name: "Normal",
  17004. height: math.unit(6 + 2 / 12, "feet"),
  17005. default: true
  17006. },
  17007. ]
  17008. ))
  17009. characterMakers.push(() => makeCharacter(
  17010. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  17011. {
  17012. front: {
  17013. height: math.unit(2 + 4 / 12, "feet"),
  17014. weight: math.unit(62, "lb"),
  17015. name: "Front",
  17016. image: {
  17017. source: "./media/characters/puru/front.svg",
  17018. extra: 206 / 149,
  17019. bottom: 0.06
  17020. }
  17021. },
  17022. },
  17023. [
  17024. {
  17025. name: "Normal",
  17026. height: math.unit(2 + 4 / 12, "feet"),
  17027. default: true
  17028. },
  17029. ]
  17030. ))
  17031. characterMakers.push(() => makeCharacter(
  17032. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  17033. {
  17034. anthro: {
  17035. height: math.unit(5 + 8/12, "feet"),
  17036. weight: math.unit(200, "lb"),
  17037. energyNeed: math.unit(2000, "kcal"),
  17038. name: "Anthro",
  17039. image: {
  17040. source: "./media/characters/kee/anthro.svg",
  17041. extra: 3251/3184,
  17042. bottom: 250/3501
  17043. }
  17044. },
  17045. taur: {
  17046. height: math.unit(11, "feet"),
  17047. weight: math.unit(500, "lb"),
  17048. energyNeed: math.unit(5000, "kcal"),
  17049. name: "Taur",
  17050. image: {
  17051. source: "./media/characters/kee/taur.svg",
  17052. extra: 1362/1320,
  17053. bottom: 83/1445
  17054. }
  17055. },
  17056. },
  17057. [
  17058. {
  17059. name: "Normal",
  17060. height: math.unit(5 + 8/12, "feet"),
  17061. default: true
  17062. },
  17063. {
  17064. name: "Macro",
  17065. height: math.unit(35, "feet")
  17066. },
  17067. ]
  17068. ))
  17069. characterMakers.push(() => makeCharacter(
  17070. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  17071. {
  17072. anthro: {
  17073. height: math.unit(7, "feet"),
  17074. weight: math.unit(190, "lb"),
  17075. name: "Anthro",
  17076. image: {
  17077. source: "./media/characters/cobalt-dracha/anthro.svg",
  17078. extra: 231 / 225,
  17079. bottom: 0.04
  17080. }
  17081. },
  17082. feral: {
  17083. height: math.unit(9 + 7 / 12, "feet"),
  17084. weight: math.unit(294, "lb"),
  17085. name: "Feral",
  17086. image: {
  17087. source: "./media/characters/cobalt-dracha/feral.svg",
  17088. extra: 692 / 633,
  17089. bottom: 0.05
  17090. }
  17091. },
  17092. },
  17093. [
  17094. {
  17095. name: "Normal",
  17096. height: math.unit(7, "feet"),
  17097. default: true
  17098. },
  17099. ]
  17100. ))
  17101. characterMakers.push(() => makeCharacter(
  17102. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  17103. {
  17104. fallen: {
  17105. height: math.unit(11 + 8 / 12, "feet"),
  17106. weight: math.unit(485, "lb"),
  17107. name: "Java (Fallen)",
  17108. rename: true,
  17109. image: {
  17110. source: "./media/characters/java/fallen.svg",
  17111. extra: 226 / 208,
  17112. bottom: 0.005
  17113. }
  17114. },
  17115. godkin: {
  17116. height: math.unit(10 + 6 / 12, "feet"),
  17117. weight: math.unit(328, "lb"),
  17118. name: "Java (Godkin)",
  17119. rename: true,
  17120. image: {
  17121. source: "./media/characters/java/godkin.svg",
  17122. extra: 1104/1068,
  17123. bottom: 36/1140
  17124. }
  17125. },
  17126. },
  17127. [
  17128. {
  17129. name: "Normal",
  17130. height: math.unit(11 + 8 / 12, "feet"),
  17131. default: true
  17132. },
  17133. ]
  17134. ))
  17135. characterMakers.push(() => makeCharacter(
  17136. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  17137. {
  17138. front: {
  17139. height: math.unit(5 + 9 / 12, "feet"),
  17140. weight: math.unit(170, "lb"),
  17141. name: "Front",
  17142. image: {
  17143. source: "./media/characters/purna/front.svg",
  17144. extra: 239 / 229,
  17145. bottom: 0.01
  17146. }
  17147. },
  17148. },
  17149. [
  17150. {
  17151. name: "Normal",
  17152. height: math.unit(5 + 9 / 12, "feet"),
  17153. default: true
  17154. },
  17155. ]
  17156. ))
  17157. characterMakers.push(() => makeCharacter(
  17158. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  17159. {
  17160. front: {
  17161. height: math.unit(5 + 9 / 12, "feet"),
  17162. weight: math.unit(142, "lb"),
  17163. name: "Front",
  17164. image: {
  17165. source: "./media/characters/kuva/front.svg",
  17166. extra: 281 / 271,
  17167. bottom: 0.006
  17168. }
  17169. },
  17170. },
  17171. [
  17172. {
  17173. name: "Normal",
  17174. height: math.unit(5 + 9 / 12, "feet"),
  17175. default: true
  17176. },
  17177. ]
  17178. ))
  17179. characterMakers.push(() => makeCharacter(
  17180. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  17181. {
  17182. anthro: {
  17183. height: math.unit(9 + 2 / 12, "feet"),
  17184. weight: math.unit(270, "lb"),
  17185. name: "Anthro",
  17186. image: {
  17187. source: "./media/characters/embra/anthro.svg",
  17188. extra: 200 / 187,
  17189. bottom: 0.02
  17190. }
  17191. },
  17192. feral: {
  17193. height: math.unit(18 + 8 / 12, "feet"),
  17194. weight: math.unit(576, "lb"),
  17195. name: "Feral",
  17196. image: {
  17197. source: "./media/characters/embra/feral.svg",
  17198. extra: 152 / 137,
  17199. bottom: 0.037
  17200. }
  17201. },
  17202. },
  17203. [
  17204. {
  17205. name: "Normal",
  17206. height: math.unit(9 + 2 / 12, "feet"),
  17207. default: true
  17208. },
  17209. ]
  17210. ))
  17211. characterMakers.push(() => makeCharacter(
  17212. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  17213. {
  17214. anthro: {
  17215. height: math.unit(10 + 9 / 12, "feet"),
  17216. weight: math.unit(224, "lb"),
  17217. name: "Anthro",
  17218. image: {
  17219. source: "./media/characters/grottos/anthro.svg",
  17220. extra: 350 / 332,
  17221. bottom: 0.045
  17222. }
  17223. },
  17224. feral: {
  17225. height: math.unit(20 + 7 / 12, "feet"),
  17226. weight: math.unit(629, "lb"),
  17227. name: "Feral",
  17228. image: {
  17229. source: "./media/characters/grottos/feral.svg",
  17230. extra: 207 / 190,
  17231. bottom: 0.05
  17232. }
  17233. },
  17234. },
  17235. [
  17236. {
  17237. name: "Normal",
  17238. height: math.unit(10 + 9 / 12, "feet"),
  17239. default: true
  17240. },
  17241. ]
  17242. ))
  17243. characterMakers.push(() => makeCharacter(
  17244. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17245. {
  17246. anthro: {
  17247. height: math.unit(9 + 6 / 12, "feet"),
  17248. weight: math.unit(298, "lb"),
  17249. name: "Anthro",
  17250. image: {
  17251. source: "./media/characters/frifna/anthro.svg",
  17252. extra: 282 / 269,
  17253. bottom: 0.015
  17254. }
  17255. },
  17256. feral: {
  17257. height: math.unit(16 + 2 / 12, "feet"),
  17258. weight: math.unit(624, "lb"),
  17259. name: "Feral",
  17260. image: {
  17261. source: "./media/characters/frifna/feral.svg"
  17262. }
  17263. },
  17264. },
  17265. [
  17266. {
  17267. name: "Normal",
  17268. height: math.unit(9 + 6 / 12, "feet"),
  17269. default: true
  17270. },
  17271. ]
  17272. ))
  17273. characterMakers.push(() => makeCharacter(
  17274. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17275. {
  17276. front: {
  17277. height: math.unit(6 + 2 / 12, "feet"),
  17278. weight: math.unit(168, "lb"),
  17279. name: "Front",
  17280. image: {
  17281. source: "./media/characters/elise/front.svg",
  17282. extra: 276 / 271
  17283. }
  17284. },
  17285. },
  17286. [
  17287. {
  17288. name: "Normal",
  17289. height: math.unit(6 + 2 / 12, "feet"),
  17290. default: true
  17291. },
  17292. ]
  17293. ))
  17294. characterMakers.push(() => makeCharacter(
  17295. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  17296. {
  17297. front: {
  17298. height: math.unit(5 + 10 / 12, "feet"),
  17299. weight: math.unit(210, "lb"),
  17300. name: "Front",
  17301. image: {
  17302. source: "./media/characters/glade/front.svg",
  17303. extra: 258 / 247,
  17304. bottom: 0.008
  17305. }
  17306. },
  17307. },
  17308. [
  17309. {
  17310. name: "Normal",
  17311. height: math.unit(5 + 10 / 12, "feet"),
  17312. default: true
  17313. },
  17314. ]
  17315. ))
  17316. characterMakers.push(() => makeCharacter(
  17317. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  17318. {
  17319. front: {
  17320. height: math.unit(5 + 10 / 12, "feet"),
  17321. weight: math.unit(129, "lb"),
  17322. name: "Front",
  17323. image: {
  17324. source: "./media/characters/rina/front.svg",
  17325. extra: 266 / 255,
  17326. bottom: 0.005
  17327. }
  17328. },
  17329. },
  17330. [
  17331. {
  17332. name: "Normal",
  17333. height: math.unit(5 + 10 / 12, "feet"),
  17334. default: true
  17335. },
  17336. ]
  17337. ))
  17338. characterMakers.push(() => makeCharacter(
  17339. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  17340. {
  17341. front: {
  17342. height: math.unit(6 + 1 / 12, "feet"),
  17343. weight: math.unit(192, "lb"),
  17344. name: "Front",
  17345. image: {
  17346. source: "./media/characters/veronica/front.svg",
  17347. extra: 319 / 309,
  17348. bottom: 0.005
  17349. }
  17350. },
  17351. },
  17352. [
  17353. {
  17354. name: "Normal",
  17355. height: math.unit(6 + 1 / 12, "feet"),
  17356. default: true
  17357. },
  17358. ]
  17359. ))
  17360. characterMakers.push(() => makeCharacter(
  17361. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  17362. {
  17363. front: {
  17364. height: math.unit(9 + 3 / 12, "feet"),
  17365. weight: math.unit(1100, "lb"),
  17366. name: "Front",
  17367. image: {
  17368. source: "./media/characters/braxton/front.svg",
  17369. extra: 1057 / 984,
  17370. bottom: 0.05
  17371. }
  17372. },
  17373. },
  17374. [
  17375. {
  17376. name: "Normal",
  17377. height: math.unit(9 + 3 / 12, "feet")
  17378. },
  17379. {
  17380. name: "Giant",
  17381. height: math.unit(300, "feet"),
  17382. default: true
  17383. },
  17384. {
  17385. name: "Macro",
  17386. height: math.unit(700, "feet")
  17387. },
  17388. {
  17389. name: "Megamacro",
  17390. height: math.unit(6000, "feet")
  17391. },
  17392. ]
  17393. ))
  17394. characterMakers.push(() => makeCharacter(
  17395. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  17396. {
  17397. front: {
  17398. height: math.unit(6 + 7 / 12, "feet"),
  17399. weight: math.unit(150, "lb"),
  17400. name: "Front",
  17401. image: {
  17402. source: "./media/characters/blue-feyonics/front.svg",
  17403. extra: 1403 / 1306,
  17404. bottom: 0.047
  17405. }
  17406. },
  17407. },
  17408. [
  17409. {
  17410. name: "Normal",
  17411. height: math.unit(6 + 7 / 12, "feet"),
  17412. default: true
  17413. },
  17414. ]
  17415. ))
  17416. characterMakers.push(() => makeCharacter(
  17417. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  17418. {
  17419. front: {
  17420. height: math.unit(1.8, "meters"),
  17421. weight: math.unit(60, "kg"),
  17422. name: "Front",
  17423. image: {
  17424. source: "./media/characters/maxwell/front.svg",
  17425. extra: 2060 / 1873
  17426. }
  17427. },
  17428. },
  17429. [
  17430. {
  17431. name: "Micro",
  17432. height: math.unit(1, "mm")
  17433. },
  17434. {
  17435. name: "Normal",
  17436. height: math.unit(1.8, "meter"),
  17437. default: true
  17438. },
  17439. {
  17440. name: "Macro",
  17441. height: math.unit(30, "meters")
  17442. },
  17443. {
  17444. name: "Megamacro",
  17445. height: math.unit(10, "km")
  17446. },
  17447. ]
  17448. ))
  17449. characterMakers.push(() => makeCharacter(
  17450. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  17451. {
  17452. front: {
  17453. height: math.unit(6, "feet"),
  17454. weight: math.unit(150, "lb"),
  17455. name: "Front",
  17456. image: {
  17457. source: "./media/characters/jack/front.svg",
  17458. extra: 1754 / 1640,
  17459. bottom: 0.01
  17460. }
  17461. },
  17462. },
  17463. [
  17464. {
  17465. name: "Normal",
  17466. height: math.unit(80000, "feet"),
  17467. default: true
  17468. },
  17469. {
  17470. name: "Max size",
  17471. height: math.unit(10, "lightyears")
  17472. },
  17473. ]
  17474. ))
  17475. characterMakers.push(() => makeCharacter(
  17476. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  17477. {
  17478. urban: {
  17479. height: math.unit(5, "feet"),
  17480. weight: math.unit(240, "lb"),
  17481. name: "Urban",
  17482. image: {
  17483. source: "./media/characters/cafat/urban.svg",
  17484. extra: 1223/1126,
  17485. bottom: 205/1428
  17486. }
  17487. },
  17488. summer: {
  17489. height: math.unit(5, "feet"),
  17490. weight: math.unit(240, "lb"),
  17491. name: "Summer",
  17492. image: {
  17493. source: "./media/characters/cafat/summer.svg",
  17494. extra: 1223/1126,
  17495. bottom: 205/1428
  17496. }
  17497. },
  17498. winter: {
  17499. height: math.unit(5, "feet"),
  17500. weight: math.unit(240, "lb"),
  17501. name: "Winter",
  17502. image: {
  17503. source: "./media/characters/cafat/winter.svg",
  17504. extra: 1223/1126,
  17505. bottom: 205/1428
  17506. }
  17507. },
  17508. lingerie: {
  17509. height: math.unit(5, "feet"),
  17510. weight: math.unit(240, "lb"),
  17511. name: "Lingerie",
  17512. image: {
  17513. source: "./media/characters/cafat/lingerie.svg",
  17514. extra: 1223/1126,
  17515. bottom: 205/1428
  17516. }
  17517. },
  17518. upright: {
  17519. height: math.unit(6.3, "feet"),
  17520. weight: math.unit(240, "lb"),
  17521. name: "Upright",
  17522. image: {
  17523. source: "./media/characters/cafat/upright.svg",
  17524. bottom: 0.01
  17525. }
  17526. },
  17527. uprightFull: {
  17528. height: math.unit(6.3, "feet"),
  17529. weight: math.unit(240, "lb"),
  17530. name: "Upright (Full)",
  17531. image: {
  17532. source: "./media/characters/cafat/upright-full.svg",
  17533. bottom: 0.01
  17534. }
  17535. },
  17536. },
  17537. [
  17538. {
  17539. name: "Small",
  17540. height: math.unit(5, "feet"),
  17541. default: true
  17542. },
  17543. {
  17544. name: "Large",
  17545. height: math.unit(13, "feet")
  17546. },
  17547. ]
  17548. ))
  17549. characterMakers.push(() => makeCharacter(
  17550. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  17551. {
  17552. front: {
  17553. height: math.unit(6, "feet"),
  17554. weight: math.unit(150, "lb"),
  17555. name: "Front",
  17556. image: {
  17557. source: "./media/characters/verin-raharra/front.svg",
  17558. extra: 5019 / 4835,
  17559. bottom: 0.023
  17560. }
  17561. },
  17562. },
  17563. [
  17564. {
  17565. name: "Normal",
  17566. height: math.unit(7 + 5 / 12, "feet"),
  17567. default: true
  17568. },
  17569. {
  17570. name: "Upsized",
  17571. height: math.unit(20, "feet")
  17572. },
  17573. ]
  17574. ))
  17575. characterMakers.push(() => makeCharacter(
  17576. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  17577. {
  17578. front: {
  17579. height: math.unit(7, "feet"),
  17580. weight: math.unit(230, "lb"),
  17581. name: "Front",
  17582. image: {
  17583. source: "./media/characters/nakata/front.svg",
  17584. extra: 1.005,
  17585. bottom: 0.01
  17586. }
  17587. },
  17588. },
  17589. [
  17590. {
  17591. name: "Normal",
  17592. height: math.unit(7, "feet"),
  17593. default: true
  17594. },
  17595. {
  17596. name: "Big",
  17597. height: math.unit(14, "feet")
  17598. },
  17599. {
  17600. name: "Macro",
  17601. height: math.unit(400, "feet")
  17602. },
  17603. ]
  17604. ))
  17605. characterMakers.push(() => makeCharacter(
  17606. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  17607. {
  17608. front: {
  17609. height: math.unit(4.91, "feet"),
  17610. weight: math.unit(100, "lb"),
  17611. name: "Front",
  17612. image: {
  17613. source: "./media/characters/lily/front.svg",
  17614. extra: 1585 / 1415,
  17615. bottom: 0.02
  17616. }
  17617. },
  17618. },
  17619. [
  17620. {
  17621. name: "Normal",
  17622. height: math.unit(4.91, "feet"),
  17623. default: true
  17624. },
  17625. ]
  17626. ))
  17627. characterMakers.push(() => makeCharacter(
  17628. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  17629. {
  17630. laying: {
  17631. height: math.unit(4 + 4 / 12, "feet"),
  17632. weight: math.unit(600, "lb"),
  17633. name: "Laying",
  17634. image: {
  17635. source: "./media/characters/sheila/laying.svg",
  17636. extra: 1333 / 1265,
  17637. bottom: 0.16
  17638. }
  17639. },
  17640. },
  17641. [
  17642. {
  17643. name: "Normal",
  17644. height: math.unit(4 + 4 / 12, "feet"),
  17645. default: true
  17646. },
  17647. ]
  17648. ))
  17649. characterMakers.push(() => makeCharacter(
  17650. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  17651. {
  17652. front: {
  17653. height: math.unit(6, "feet"),
  17654. weight: math.unit(190, "lb"),
  17655. name: "Front",
  17656. image: {
  17657. source: "./media/characters/sax/front.svg",
  17658. extra: 1187 / 973,
  17659. bottom: 0.042
  17660. }
  17661. },
  17662. },
  17663. [
  17664. {
  17665. name: "Micro",
  17666. height: math.unit(4, "inches"),
  17667. default: true
  17668. },
  17669. ]
  17670. ))
  17671. characterMakers.push(() => makeCharacter(
  17672. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  17673. {
  17674. front: {
  17675. height: math.unit(6, "feet"),
  17676. weight: math.unit(150, "lb"),
  17677. name: "Front",
  17678. image: {
  17679. source: "./media/characters/pandora/front.svg",
  17680. extra: 2720 / 2556,
  17681. bottom: 0.015
  17682. }
  17683. },
  17684. back: {
  17685. height: math.unit(6, "feet"),
  17686. weight: math.unit(150, "lb"),
  17687. name: "Back",
  17688. image: {
  17689. source: "./media/characters/pandora/back.svg",
  17690. extra: 2720 / 2556,
  17691. bottom: 0.01
  17692. }
  17693. },
  17694. beans: {
  17695. height: math.unit(6 / 8, "feet"),
  17696. name: "Beans",
  17697. image: {
  17698. source: "./media/characters/pandora/beans.svg"
  17699. }
  17700. },
  17701. collar: {
  17702. height: math.unit(0.31, "feet"),
  17703. name: "Collar",
  17704. image: {
  17705. source: "./media/characters/pandora/collar.svg"
  17706. }
  17707. },
  17708. skirt: {
  17709. height: math.unit(6, "feet"),
  17710. weight: math.unit(150, "lb"),
  17711. name: "Skirt",
  17712. image: {
  17713. source: "./media/characters/pandora/skirt.svg",
  17714. extra: 1622 / 1525,
  17715. bottom: 0.015
  17716. }
  17717. },
  17718. hoodie: {
  17719. height: math.unit(6, "feet"),
  17720. weight: math.unit(150, "lb"),
  17721. name: "Hoodie",
  17722. image: {
  17723. source: "./media/characters/pandora/hoodie.svg",
  17724. extra: 1622 / 1525,
  17725. bottom: 0.015
  17726. }
  17727. },
  17728. casual: {
  17729. height: math.unit(6, "feet"),
  17730. weight: math.unit(150, "lb"),
  17731. name: "Casual",
  17732. image: {
  17733. source: "./media/characters/pandora/casual.svg",
  17734. extra: 1622 / 1525,
  17735. bottom: 0.015
  17736. }
  17737. },
  17738. },
  17739. [
  17740. {
  17741. name: "Normal",
  17742. height: math.unit(6, "feet")
  17743. },
  17744. {
  17745. name: "Big Steppy",
  17746. height: math.unit(1, "km"),
  17747. default: true
  17748. },
  17749. {
  17750. name: "Galactic Steppy",
  17751. height: math.unit(2, "gigameters")
  17752. },
  17753. ]
  17754. ))
  17755. characterMakers.push(() => makeCharacter(
  17756. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  17757. {
  17758. side: {
  17759. height: math.unit(10, "feet"),
  17760. weight: math.unit(800, "kg"),
  17761. name: "Side",
  17762. image: {
  17763. source: "./media/characters/venio-darcony/side.svg",
  17764. extra: 1373 / 1003,
  17765. bottom: 0.037
  17766. }
  17767. },
  17768. front: {
  17769. height: math.unit(19, "feet"),
  17770. weight: math.unit(800, "kg"),
  17771. name: "Front",
  17772. image: {
  17773. source: "./media/characters/venio-darcony/front.svg"
  17774. }
  17775. },
  17776. back: {
  17777. height: math.unit(19, "feet"),
  17778. weight: math.unit(800, "kg"),
  17779. name: "Back",
  17780. image: {
  17781. source: "./media/characters/venio-darcony/back.svg"
  17782. }
  17783. },
  17784. sideNsfw: {
  17785. height: math.unit(10, "feet"),
  17786. weight: math.unit(800, "kg"),
  17787. name: "Side (NSFW)",
  17788. image: {
  17789. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17790. extra: 1373 / 1003,
  17791. bottom: 0.037
  17792. }
  17793. },
  17794. frontNsfw: {
  17795. height: math.unit(19, "feet"),
  17796. weight: math.unit(800, "kg"),
  17797. name: "Front (NSFW)",
  17798. image: {
  17799. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17800. }
  17801. },
  17802. backNsfw: {
  17803. height: math.unit(19, "feet"),
  17804. weight: math.unit(800, "kg"),
  17805. name: "Back (NSFW)",
  17806. image: {
  17807. source: "./media/characters/venio-darcony/back-nsfw.svg"
  17808. }
  17809. },
  17810. sideArmored: {
  17811. height: math.unit(10, "feet"),
  17812. weight: math.unit(800, "kg"),
  17813. name: "Side (Armored)",
  17814. image: {
  17815. source: "./media/characters/venio-darcony/side-armored.svg",
  17816. extra: 1373 / 1003,
  17817. bottom: 0.037
  17818. }
  17819. },
  17820. frontArmored: {
  17821. height: math.unit(19, "feet"),
  17822. weight: math.unit(900, "kg"),
  17823. name: "Front (Armored)",
  17824. image: {
  17825. source: "./media/characters/venio-darcony/front-armored.svg"
  17826. }
  17827. },
  17828. backArmored: {
  17829. height: math.unit(19, "feet"),
  17830. weight: math.unit(900, "kg"),
  17831. name: "Back (Armored)",
  17832. image: {
  17833. source: "./media/characters/venio-darcony/back-armored.svg"
  17834. }
  17835. },
  17836. sword: {
  17837. height: math.unit(10, "feet"),
  17838. weight: math.unit(50, "lb"),
  17839. name: "Sword",
  17840. image: {
  17841. source: "./media/characters/venio-darcony/sword.svg"
  17842. }
  17843. },
  17844. },
  17845. [
  17846. {
  17847. name: "Normal",
  17848. height: math.unit(10, "feet")
  17849. },
  17850. {
  17851. name: "Macro",
  17852. height: math.unit(130, "feet"),
  17853. default: true
  17854. },
  17855. {
  17856. name: "Macro+",
  17857. height: math.unit(240, "feet")
  17858. },
  17859. ]
  17860. ))
  17861. characterMakers.push(() => makeCharacter(
  17862. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  17863. {
  17864. front: {
  17865. height: math.unit(6, "feet"),
  17866. weight: math.unit(150, "lb"),
  17867. name: "Front",
  17868. image: {
  17869. source: "./media/characters/veski/front.svg",
  17870. extra: 1299 / 1225,
  17871. bottom: 0.04
  17872. }
  17873. },
  17874. back: {
  17875. height: math.unit(6, "feet"),
  17876. weight: math.unit(150, "lb"),
  17877. name: "Back",
  17878. image: {
  17879. source: "./media/characters/veski/back.svg",
  17880. extra: 1299 / 1225,
  17881. bottom: 0.008
  17882. }
  17883. },
  17884. maw: {
  17885. height: math.unit(1.5 * 1.21, "feet"),
  17886. name: "Maw",
  17887. image: {
  17888. source: "./media/characters/veski/maw.svg"
  17889. }
  17890. },
  17891. },
  17892. [
  17893. {
  17894. name: "Macro",
  17895. height: math.unit(2, "km"),
  17896. default: true
  17897. },
  17898. ]
  17899. ))
  17900. characterMakers.push(() => makeCharacter(
  17901. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  17902. {
  17903. front: {
  17904. height: math.unit(5 + 7 / 12, "feet"),
  17905. name: "Front",
  17906. image: {
  17907. source: "./media/characters/isabelle/front.svg",
  17908. extra: 2130 / 1976,
  17909. bottom: 0.05
  17910. }
  17911. },
  17912. },
  17913. [
  17914. {
  17915. name: "Supermicro",
  17916. height: math.unit(10, "micrometers")
  17917. },
  17918. {
  17919. name: "Micro",
  17920. height: math.unit(1, "inch")
  17921. },
  17922. {
  17923. name: "Tiny",
  17924. height: math.unit(5, "inches")
  17925. },
  17926. {
  17927. name: "Standard",
  17928. height: math.unit(5 + 7 / 12, "inches")
  17929. },
  17930. {
  17931. name: "Macro",
  17932. height: math.unit(80, "meters"),
  17933. default: true
  17934. },
  17935. {
  17936. name: "Megamacro",
  17937. height: math.unit(250, "meters")
  17938. },
  17939. {
  17940. name: "Gigamacro",
  17941. height: math.unit(5, "km")
  17942. },
  17943. {
  17944. name: "Cosmic",
  17945. height: math.unit(2.5e6, "miles")
  17946. },
  17947. ]
  17948. ))
  17949. characterMakers.push(() => makeCharacter(
  17950. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  17951. {
  17952. front: {
  17953. height: math.unit(6, "feet"),
  17954. weight: math.unit(150, "lb"),
  17955. name: "Front",
  17956. image: {
  17957. source: "./media/characters/hanzo/front.svg",
  17958. extra: 374 / 344,
  17959. bottom: 0.02
  17960. }
  17961. },
  17962. },
  17963. [
  17964. {
  17965. name: "Normal",
  17966. height: math.unit(8, "feet"),
  17967. default: true
  17968. },
  17969. ]
  17970. ))
  17971. characterMakers.push(() => makeCharacter(
  17972. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  17973. {
  17974. front: {
  17975. height: math.unit(7, "feet"),
  17976. weight: math.unit(130, "lb"),
  17977. name: "Front",
  17978. image: {
  17979. source: "./media/characters/anna/front.svg",
  17980. extra: 169 / 145,
  17981. bottom: 0.06
  17982. }
  17983. },
  17984. full: {
  17985. height: math.unit(4.96, "feet"),
  17986. weight: math.unit(220, "lb"),
  17987. name: "Full",
  17988. image: {
  17989. source: "./media/characters/anna/full.svg",
  17990. extra: 138 / 114,
  17991. bottom: 0.15
  17992. }
  17993. },
  17994. tongue: {
  17995. height: math.unit(2.53, "feet"),
  17996. name: "Tongue",
  17997. image: {
  17998. source: "./media/characters/anna/tongue.svg"
  17999. }
  18000. },
  18001. },
  18002. [
  18003. {
  18004. name: "Normal",
  18005. height: math.unit(7, "feet"),
  18006. default: true
  18007. },
  18008. ]
  18009. ))
  18010. characterMakers.push(() => makeCharacter(
  18011. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  18012. {
  18013. front: {
  18014. height: math.unit(7, "feet"),
  18015. weight: math.unit(150, "lb"),
  18016. name: "Front",
  18017. image: {
  18018. source: "./media/characters/ian-corvid/front.svg",
  18019. extra: 150 / 142,
  18020. bottom: 0.02
  18021. }
  18022. },
  18023. back: {
  18024. height: math.unit(7, "feet"),
  18025. weight: math.unit(150, "lb"),
  18026. name: "Back",
  18027. image: {
  18028. source: "./media/characters/ian-corvid/back.svg",
  18029. extra: 150 / 143,
  18030. bottom: 0.01
  18031. }
  18032. },
  18033. stomping: {
  18034. height: math.unit(7, "feet"),
  18035. weight: math.unit(150, "lb"),
  18036. name: "Stomping",
  18037. image: {
  18038. source: "./media/characters/ian-corvid/stomping.svg",
  18039. extra: 76 / 72
  18040. }
  18041. },
  18042. sitting: {
  18043. height: math.unit(7 / 1.8, "feet"),
  18044. weight: math.unit(150, "lb"),
  18045. name: "Sitting",
  18046. image: {
  18047. source: "./media/characters/ian-corvid/sitting.svg",
  18048. extra: 1400 / 1269,
  18049. bottom: 0.15
  18050. }
  18051. },
  18052. },
  18053. [
  18054. {
  18055. name: "Tiny Microw",
  18056. height: math.unit(1, "inch")
  18057. },
  18058. {
  18059. name: "Microw",
  18060. height: math.unit(6, "inches")
  18061. },
  18062. {
  18063. name: "Crow",
  18064. height: math.unit(7 + 1 / 12, "feet"),
  18065. default: true
  18066. },
  18067. {
  18068. name: "Macrow",
  18069. height: math.unit(176, "feet")
  18070. },
  18071. ]
  18072. ))
  18073. characterMakers.push(() => makeCharacter(
  18074. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  18075. {
  18076. front: {
  18077. height: math.unit(5 + 7 / 12, "feet"),
  18078. weight: math.unit(147, "lb"),
  18079. name: "Front",
  18080. image: {
  18081. source: "./media/characters/natalie-kellon/front.svg",
  18082. extra: 1214 / 1141,
  18083. bottom: 0.02
  18084. }
  18085. },
  18086. },
  18087. [
  18088. {
  18089. name: "Micro",
  18090. height: math.unit(1 / 16, "inch")
  18091. },
  18092. {
  18093. name: "Tiny",
  18094. height: math.unit(4, "inches")
  18095. },
  18096. {
  18097. name: "Normal",
  18098. height: math.unit(5 + 7 / 12, "feet"),
  18099. default: true
  18100. },
  18101. {
  18102. name: "Amazon",
  18103. height: math.unit(12, "feet")
  18104. },
  18105. {
  18106. name: "Giantess",
  18107. height: math.unit(160, "meters")
  18108. },
  18109. {
  18110. name: "Titaness",
  18111. height: math.unit(800, "meters")
  18112. },
  18113. ]
  18114. ))
  18115. characterMakers.push(() => makeCharacter(
  18116. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  18117. {
  18118. front: {
  18119. height: math.unit(6, "feet"),
  18120. weight: math.unit(150, "lb"),
  18121. name: "Front",
  18122. image: {
  18123. source: "./media/characters/alluria/front.svg",
  18124. extra: 806 / 738,
  18125. bottom: 0.01
  18126. }
  18127. },
  18128. side: {
  18129. height: math.unit(6, "feet"),
  18130. weight: math.unit(150, "lb"),
  18131. name: "Side",
  18132. image: {
  18133. source: "./media/characters/alluria/side.svg",
  18134. extra: 800 / 750,
  18135. }
  18136. },
  18137. back: {
  18138. height: math.unit(6, "feet"),
  18139. weight: math.unit(150, "lb"),
  18140. name: "Back",
  18141. image: {
  18142. source: "./media/characters/alluria/back.svg",
  18143. extra: 806 / 738,
  18144. }
  18145. },
  18146. frontMaid: {
  18147. height: math.unit(6, "feet"),
  18148. weight: math.unit(150, "lb"),
  18149. name: "Front (Maid)",
  18150. image: {
  18151. source: "./media/characters/alluria/front-maid.svg",
  18152. extra: 806 / 738,
  18153. bottom: 0.01
  18154. }
  18155. },
  18156. sideMaid: {
  18157. height: math.unit(6, "feet"),
  18158. weight: math.unit(150, "lb"),
  18159. name: "Side (Maid)",
  18160. image: {
  18161. source: "./media/characters/alluria/side-maid.svg",
  18162. extra: 800 / 750,
  18163. bottom: 0.005
  18164. }
  18165. },
  18166. backMaid: {
  18167. height: math.unit(6, "feet"),
  18168. weight: math.unit(150, "lb"),
  18169. name: "Back (Maid)",
  18170. image: {
  18171. source: "./media/characters/alluria/back-maid.svg",
  18172. extra: 806 / 738,
  18173. }
  18174. },
  18175. },
  18176. [
  18177. {
  18178. name: "Micro",
  18179. height: math.unit(6, "inches"),
  18180. default: true
  18181. },
  18182. ]
  18183. ))
  18184. characterMakers.push(() => makeCharacter(
  18185. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  18186. {
  18187. front: {
  18188. height: math.unit(6, "feet"),
  18189. weight: math.unit(150, "lb"),
  18190. name: "Front",
  18191. image: {
  18192. source: "./media/characters/kyle/front.svg",
  18193. extra: 1069 / 962,
  18194. bottom: 77.228 / 1727.45
  18195. }
  18196. },
  18197. },
  18198. [
  18199. {
  18200. name: "Macro",
  18201. height: math.unit(150, "feet"),
  18202. default: true
  18203. },
  18204. ]
  18205. ))
  18206. characterMakers.push(() => makeCharacter(
  18207. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  18208. {
  18209. front: {
  18210. height: math.unit(6, "feet"),
  18211. weight: math.unit(300, "lb"),
  18212. name: "Front",
  18213. image: {
  18214. source: "./media/characters/duncan/front.svg",
  18215. extra: 1650 / 1482,
  18216. bottom: 0.05
  18217. }
  18218. },
  18219. },
  18220. [
  18221. {
  18222. name: "Macro",
  18223. height: math.unit(100, "feet"),
  18224. default: true
  18225. },
  18226. ]
  18227. ))
  18228. characterMakers.push(() => makeCharacter(
  18229. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  18230. {
  18231. front: {
  18232. height: math.unit(5 + 4 / 12, "feet"),
  18233. weight: math.unit(220, "lb"),
  18234. name: "Front",
  18235. image: {
  18236. source: "./media/characters/memory/front.svg",
  18237. extra: 3641 / 3545,
  18238. bottom: 0.03
  18239. }
  18240. },
  18241. back: {
  18242. height: math.unit(5 + 4 / 12, "feet"),
  18243. weight: math.unit(220, "lb"),
  18244. name: "Back",
  18245. image: {
  18246. source: "./media/characters/memory/back.svg",
  18247. extra: 3641 / 3545,
  18248. bottom: 0.025
  18249. }
  18250. },
  18251. frontSkirt: {
  18252. height: math.unit(5 + 4 / 12, "feet"),
  18253. weight: math.unit(220, "lb"),
  18254. name: "Front (Skirt)",
  18255. image: {
  18256. source: "./media/characters/memory/front-skirt.svg",
  18257. extra: 3641 / 3545,
  18258. bottom: 0.03
  18259. }
  18260. },
  18261. frontDress: {
  18262. height: math.unit(5 + 4 / 12, "feet"),
  18263. weight: math.unit(220, "lb"),
  18264. name: "Front (Dress)",
  18265. image: {
  18266. source: "./media/characters/memory/front-dress.svg",
  18267. extra: 3641 / 3545,
  18268. bottom: 0.03
  18269. }
  18270. },
  18271. },
  18272. [
  18273. {
  18274. name: "Micro",
  18275. height: math.unit(6, "inches"),
  18276. default: true
  18277. },
  18278. {
  18279. name: "Normal",
  18280. height: math.unit(5 + 4 / 12, "feet")
  18281. },
  18282. ]
  18283. ))
  18284. characterMakers.push(() => makeCharacter(
  18285. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  18286. {
  18287. front: {
  18288. height: math.unit(4 + 11 / 12, "feet"),
  18289. weight: math.unit(100, "lb"),
  18290. name: "Front",
  18291. image: {
  18292. source: "./media/characters/luno/front.svg",
  18293. extra: 1535 / 1487,
  18294. bottom: 0.03
  18295. }
  18296. },
  18297. },
  18298. [
  18299. {
  18300. name: "Micro",
  18301. height: math.unit(3, "inches")
  18302. },
  18303. {
  18304. name: "Normal",
  18305. height: math.unit(4 + 11 / 12, "feet"),
  18306. default: true
  18307. },
  18308. {
  18309. name: "Macro",
  18310. height: math.unit(300, "feet")
  18311. },
  18312. {
  18313. name: "Megamacro",
  18314. height: math.unit(700, "miles")
  18315. },
  18316. ]
  18317. ))
  18318. characterMakers.push(() => makeCharacter(
  18319. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  18320. {
  18321. front: {
  18322. height: math.unit(6 + 2 / 12, "feet"),
  18323. weight: math.unit(170, "lb"),
  18324. name: "Front",
  18325. image: {
  18326. source: "./media/characters/jamesy/front.svg",
  18327. extra: 440 / 382,
  18328. bottom: 0.005
  18329. }
  18330. },
  18331. },
  18332. [
  18333. {
  18334. name: "Micro",
  18335. height: math.unit(3, "inches")
  18336. },
  18337. {
  18338. name: "Normal",
  18339. height: math.unit(6 + 2 / 12, "feet"),
  18340. default: true
  18341. },
  18342. {
  18343. name: "Macro",
  18344. height: math.unit(300, "feet")
  18345. },
  18346. {
  18347. name: "Megamacro",
  18348. height: math.unit(700, "miles")
  18349. },
  18350. ]
  18351. ))
  18352. characterMakers.push(() => makeCharacter(
  18353. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  18354. {
  18355. front: {
  18356. height: math.unit(6, "feet"),
  18357. weight: math.unit(160, "lb"),
  18358. name: "Front",
  18359. image: {
  18360. source: "./media/characters/mark/front.svg",
  18361. extra: 3300 / 3100,
  18362. bottom: 136.42 / 3440.47
  18363. }
  18364. },
  18365. },
  18366. [
  18367. {
  18368. name: "Macro",
  18369. height: math.unit(120, "meters")
  18370. },
  18371. {
  18372. name: "Bigger Macro",
  18373. height: math.unit(350, "meters")
  18374. },
  18375. {
  18376. name: "Megamacro",
  18377. height: math.unit(8, "km"),
  18378. default: true
  18379. },
  18380. {
  18381. name: "Continental",
  18382. height: math.unit(4550, "km")
  18383. },
  18384. {
  18385. name: "Planetary",
  18386. height: math.unit(65000, "km")
  18387. },
  18388. ]
  18389. ))
  18390. characterMakers.push(() => makeCharacter(
  18391. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  18392. {
  18393. front: {
  18394. height: math.unit(6, "feet"),
  18395. weight: math.unit(400, "lb"),
  18396. name: "Front",
  18397. image: {
  18398. source: "./media/characters/mac/front.svg",
  18399. extra: 1048 / 987.7,
  18400. bottom: 60 / 1107.6,
  18401. }
  18402. },
  18403. },
  18404. [
  18405. {
  18406. name: "Macro",
  18407. height: math.unit(500, "feet"),
  18408. default: true
  18409. },
  18410. ]
  18411. ))
  18412. characterMakers.push(() => makeCharacter(
  18413. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  18414. {
  18415. front: {
  18416. height: math.unit(5 + 2 / 12, "feet"),
  18417. weight: math.unit(190, "lb"),
  18418. name: "Front",
  18419. image: {
  18420. source: "./media/characters/bari/front.svg",
  18421. extra: 3156 / 2880,
  18422. bottom: 0.03
  18423. }
  18424. },
  18425. back: {
  18426. height: math.unit(5 + 2 / 12, "feet"),
  18427. weight: math.unit(190, "lb"),
  18428. name: "Back",
  18429. image: {
  18430. source: "./media/characters/bari/back.svg",
  18431. extra: 3260 / 2834,
  18432. bottom: 0.025
  18433. }
  18434. },
  18435. frontPlush: {
  18436. height: math.unit(5 + 2 / 12, "feet"),
  18437. weight: math.unit(190, "lb"),
  18438. name: "Front (Plush)",
  18439. image: {
  18440. source: "./media/characters/bari/front-plush.svg",
  18441. extra: 1112 / 1061,
  18442. bottom: 0.002
  18443. }
  18444. },
  18445. },
  18446. [
  18447. {
  18448. name: "Micro",
  18449. height: math.unit(3, "inches")
  18450. },
  18451. {
  18452. name: "Normal",
  18453. height: math.unit(5 + 2 / 12, "feet"),
  18454. default: true
  18455. },
  18456. {
  18457. name: "Macro",
  18458. height: math.unit(20, "feet")
  18459. },
  18460. ]
  18461. ))
  18462. characterMakers.push(() => makeCharacter(
  18463. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  18464. {
  18465. front: {
  18466. height: math.unit(6 + 1 / 12, "feet"),
  18467. weight: math.unit(275, "lb"),
  18468. name: "Front",
  18469. image: {
  18470. source: "./media/characters/hunter-misha-raven/front.svg"
  18471. }
  18472. },
  18473. },
  18474. [
  18475. {
  18476. name: "Mortal",
  18477. height: math.unit(6 + 1 / 12, "feet")
  18478. },
  18479. {
  18480. name: "Divine",
  18481. height: math.unit(1.12134e34, "parsecs"),
  18482. default: true
  18483. },
  18484. ]
  18485. ))
  18486. characterMakers.push(() => makeCharacter(
  18487. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  18488. {
  18489. front: {
  18490. height: math.unit(6 + 3 / 12, "feet"),
  18491. weight: math.unit(220, "lb"),
  18492. name: "Front",
  18493. image: {
  18494. source: "./media/characters/max-calore/front.svg",
  18495. extra: 1700 / 1648,
  18496. bottom: 0.01
  18497. }
  18498. },
  18499. back: {
  18500. height: math.unit(6 + 3 / 12, "feet"),
  18501. weight: math.unit(220, "lb"),
  18502. name: "Back",
  18503. image: {
  18504. source: "./media/characters/max-calore/back.svg",
  18505. extra: 1700 / 1648,
  18506. bottom: 0.01
  18507. }
  18508. },
  18509. },
  18510. [
  18511. {
  18512. name: "Normal",
  18513. height: math.unit(6 + 3 / 12, "feet"),
  18514. default: true
  18515. },
  18516. ]
  18517. ))
  18518. characterMakers.push(() => makeCharacter(
  18519. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  18520. {
  18521. side: {
  18522. height: math.unit(2 + 8 / 12, "feet"),
  18523. weight: math.unit(99, "lb"),
  18524. name: "Side",
  18525. image: {
  18526. source: "./media/characters/aspen/side.svg",
  18527. extra: 152 / 138,
  18528. bottom: 0.032
  18529. }
  18530. },
  18531. },
  18532. [
  18533. {
  18534. name: "Normal",
  18535. height: math.unit(2 + 8 / 12, "feet"),
  18536. default: true
  18537. },
  18538. ]
  18539. ))
  18540. characterMakers.push(() => makeCharacter(
  18541. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  18542. {
  18543. side: {
  18544. height: math.unit(3 + 2 / 12, "feet"),
  18545. weight: math.unit(224, "lb"),
  18546. name: "Side",
  18547. image: {
  18548. source: "./media/characters/sheila-feral-wolf/side.svg",
  18549. extra: 179 / 166,
  18550. bottom: 0.03
  18551. }
  18552. },
  18553. },
  18554. [
  18555. {
  18556. name: "Normal",
  18557. height: math.unit(3 + 2 / 12, "feet"),
  18558. default: true
  18559. },
  18560. ]
  18561. ))
  18562. characterMakers.push(() => makeCharacter(
  18563. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  18564. {
  18565. side: {
  18566. height: math.unit(1 + 9 / 12, "feet"),
  18567. weight: math.unit(38, "lb"),
  18568. name: "Side",
  18569. image: {
  18570. source: "./media/characters/michelle/side.svg",
  18571. extra: 147 / 136.7,
  18572. bottom: 0.03
  18573. }
  18574. },
  18575. },
  18576. [
  18577. {
  18578. name: "Normal",
  18579. height: math.unit(1 + 9 / 12, "feet"),
  18580. default: true
  18581. },
  18582. ]
  18583. ))
  18584. characterMakers.push(() => makeCharacter(
  18585. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  18586. {
  18587. front: {
  18588. height: math.unit(1.54, "feet"),
  18589. weight: math.unit(50, "lb"),
  18590. name: "Front",
  18591. image: {
  18592. source: "./media/characters/nino/front.svg"
  18593. }
  18594. },
  18595. },
  18596. [
  18597. {
  18598. name: "Normal",
  18599. height: math.unit(1.54, "feet"),
  18600. default: true
  18601. },
  18602. ]
  18603. ))
  18604. characterMakers.push(() => makeCharacter(
  18605. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  18606. {
  18607. front: {
  18608. height: math.unit(1.49, "feet"),
  18609. weight: math.unit(45, "lb"),
  18610. name: "Front",
  18611. image: {
  18612. source: "./media/characters/viola/front.svg"
  18613. }
  18614. },
  18615. },
  18616. [
  18617. {
  18618. name: "Normal",
  18619. height: math.unit(1.49, "feet"),
  18620. default: true
  18621. },
  18622. ]
  18623. ))
  18624. characterMakers.push(() => makeCharacter(
  18625. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  18626. {
  18627. front: {
  18628. height: math.unit(6 + 5 / 12, "feet"),
  18629. weight: math.unit(580, "lb"),
  18630. name: "Front",
  18631. image: {
  18632. source: "./media/characters/atlas/front.svg",
  18633. extra: 298.5 / 290,
  18634. bottom: 0.015
  18635. }
  18636. },
  18637. },
  18638. [
  18639. {
  18640. name: "Normal",
  18641. height: math.unit(6 + 5 / 12, "feet"),
  18642. default: true
  18643. },
  18644. ]
  18645. ))
  18646. characterMakers.push(() => makeCharacter(
  18647. { name: "Davy", species: ["cat"], tags: ["feral"] },
  18648. {
  18649. side: {
  18650. height: math.unit(15.6, "inches"),
  18651. weight: math.unit(10, "lb"),
  18652. name: "Side",
  18653. image: {
  18654. source: "./media/characters/davy/side.svg",
  18655. extra: 200 / 170,
  18656. bottom: 0.01
  18657. }
  18658. },
  18659. },
  18660. [
  18661. {
  18662. name: "Normal",
  18663. height: math.unit(15.6, "inches"),
  18664. default: true
  18665. },
  18666. ]
  18667. ))
  18668. characterMakers.push(() => makeCharacter(
  18669. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  18670. {
  18671. side: {
  18672. height: math.unit(4 + 8 / 12, "feet"),
  18673. weight: math.unit(166, "lb"),
  18674. name: "Side",
  18675. image: {
  18676. source: "./media/characters/fiona/side.svg",
  18677. extra: 232 / 220,
  18678. bottom: 0.03
  18679. }
  18680. },
  18681. },
  18682. [
  18683. {
  18684. name: "Normal",
  18685. height: math.unit(4 + 8 / 12, "feet"),
  18686. default: true
  18687. },
  18688. ]
  18689. ))
  18690. characterMakers.push(() => makeCharacter(
  18691. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  18692. {
  18693. front: {
  18694. height: math.unit(26, "inches"),
  18695. weight: math.unit(35, "lb"),
  18696. name: "Front",
  18697. image: {
  18698. source: "./media/characters/lyla/front.svg",
  18699. bottom: 0.1
  18700. }
  18701. },
  18702. },
  18703. [
  18704. {
  18705. name: "Normal",
  18706. height: math.unit(3, "feet"),
  18707. default: true
  18708. },
  18709. ]
  18710. ))
  18711. characterMakers.push(() => makeCharacter(
  18712. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  18713. {
  18714. side: {
  18715. height: math.unit(1.8, "feet"),
  18716. weight: math.unit(44, "lb"),
  18717. name: "Side",
  18718. image: {
  18719. source: "./media/characters/perseus/side.svg",
  18720. bottom: 0.21
  18721. }
  18722. },
  18723. },
  18724. [
  18725. {
  18726. name: "Normal",
  18727. height: math.unit(1.8, "feet"),
  18728. default: true
  18729. },
  18730. ]
  18731. ))
  18732. characterMakers.push(() => makeCharacter(
  18733. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  18734. {
  18735. side: {
  18736. height: math.unit(4 + 2 / 12, "feet"),
  18737. weight: math.unit(20, "lb"),
  18738. name: "Side",
  18739. image: {
  18740. source: "./media/characters/remus/side.svg"
  18741. }
  18742. },
  18743. },
  18744. [
  18745. {
  18746. name: "Normal",
  18747. height: math.unit(4 + 2 / 12, "feet"),
  18748. default: true
  18749. },
  18750. ]
  18751. ))
  18752. characterMakers.push(() => makeCharacter(
  18753. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  18754. {
  18755. front: {
  18756. height: math.unit(4 + 11 / 12, "feet"),
  18757. weight: math.unit(114, "lb"),
  18758. name: "Front",
  18759. image: {
  18760. source: "./media/characters/raf/front.svg",
  18761. extra: 1504/1339,
  18762. bottom: 26/1530
  18763. }
  18764. },
  18765. side: {
  18766. height: math.unit(4 + 11 / 12, "feet"),
  18767. weight: math.unit(114, "lb"),
  18768. name: "Side",
  18769. image: {
  18770. source: "./media/characters/raf/side.svg",
  18771. extra: 1466/1316,
  18772. bottom: 29/1495
  18773. }
  18774. },
  18775. paw: {
  18776. height: math.unit(1.45, "feet"),
  18777. name: "Paw",
  18778. image: {
  18779. source: "./media/characters/raf/paw.svg"
  18780. },
  18781. extraAttributes: {
  18782. "toeSize": {
  18783. name: "Toe Size",
  18784. power: 2,
  18785. type: "area",
  18786. base: math.unit(0.004, "m^2")
  18787. },
  18788. "padSize": {
  18789. name: "Pad Size",
  18790. power: 2,
  18791. type: "area",
  18792. base: math.unit(0.04, "m^2")
  18793. },
  18794. "footSize": {
  18795. name: "Foot Size",
  18796. power: 2,
  18797. type: "area",
  18798. base: math.unit(0.08, "m^2")
  18799. },
  18800. }
  18801. },
  18802. },
  18803. [
  18804. {
  18805. name: "Micro",
  18806. height: math.unit(2, "inches")
  18807. },
  18808. {
  18809. name: "Normal",
  18810. height: math.unit(4 + 11 / 12, "feet"),
  18811. default: true
  18812. },
  18813. {
  18814. name: "Macro",
  18815. height: math.unit(70, "feet")
  18816. },
  18817. ]
  18818. ))
  18819. characterMakers.push(() => makeCharacter(
  18820. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  18821. {
  18822. front: {
  18823. height: math.unit(1.5, "meters"),
  18824. weight: math.unit(68, "kg"),
  18825. name: "Front",
  18826. image: {
  18827. source: "./media/characters/liam-einarr/front.svg",
  18828. extra: 2822 / 2666
  18829. }
  18830. },
  18831. back: {
  18832. height: math.unit(1.5, "meters"),
  18833. weight: math.unit(68, "kg"),
  18834. name: "Back",
  18835. image: {
  18836. source: "./media/characters/liam-einarr/back.svg",
  18837. extra: 2822 / 2666,
  18838. bottom: 0.015
  18839. }
  18840. },
  18841. },
  18842. [
  18843. {
  18844. name: "Normal",
  18845. height: math.unit(1.5, "meters"),
  18846. default: true
  18847. },
  18848. {
  18849. name: "Macro",
  18850. height: math.unit(150, "meters")
  18851. },
  18852. {
  18853. name: "Megamacro",
  18854. height: math.unit(35, "km")
  18855. },
  18856. ]
  18857. ))
  18858. characterMakers.push(() => makeCharacter(
  18859. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  18860. {
  18861. front: {
  18862. height: math.unit(6, "feet"),
  18863. weight: math.unit(75, "kg"),
  18864. name: "Front",
  18865. image: {
  18866. source: "./media/characters/linda/front.svg",
  18867. extra: 930 / 874,
  18868. bottom: 0.004
  18869. }
  18870. },
  18871. },
  18872. [
  18873. {
  18874. name: "Normal",
  18875. height: math.unit(6, "feet"),
  18876. default: true
  18877. },
  18878. ]
  18879. ))
  18880. characterMakers.push(() => makeCharacter(
  18881. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  18882. {
  18883. front: {
  18884. height: math.unit(6 + 8 / 12, "feet"),
  18885. weight: math.unit(220, "lb"),
  18886. name: "Front",
  18887. image: {
  18888. source: "./media/characters/caylex/front.svg",
  18889. extra: 821 / 772,
  18890. bottom: 0.07
  18891. }
  18892. },
  18893. back: {
  18894. height: math.unit(6 + 8 / 12, "feet"),
  18895. weight: math.unit(220, "lb"),
  18896. name: "Back",
  18897. image: {
  18898. source: "./media/characters/caylex/back.svg",
  18899. extra: 821 / 772,
  18900. bottom: 0.022
  18901. }
  18902. },
  18903. hand: {
  18904. height: math.unit(1.25, "feet"),
  18905. name: "Hand",
  18906. image: {
  18907. source: "./media/characters/caylex/hand.svg"
  18908. }
  18909. },
  18910. foot: {
  18911. height: math.unit(1.6, "feet"),
  18912. name: "Foot",
  18913. image: {
  18914. source: "./media/characters/caylex/foot.svg"
  18915. }
  18916. },
  18917. armored: {
  18918. height: math.unit(6 + 8 / 12, "feet"),
  18919. weight: math.unit(250, "lb"),
  18920. name: "Armored",
  18921. image: {
  18922. source: "./media/characters/caylex/armored.svg",
  18923. extra: 1420 / 1310,
  18924. bottom: 0.045
  18925. }
  18926. },
  18927. },
  18928. [
  18929. {
  18930. name: "Normal",
  18931. height: math.unit(6 + 8 / 12, "feet"),
  18932. default: true
  18933. },
  18934. {
  18935. name: "Normal+",
  18936. height: math.unit(12, "feet")
  18937. },
  18938. ]
  18939. ))
  18940. characterMakers.push(() => makeCharacter(
  18941. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  18942. {
  18943. front: {
  18944. height: math.unit(7 + 6 / 12, "feet"),
  18945. weight: math.unit(288, "lb"),
  18946. name: "Front",
  18947. image: {
  18948. source: "./media/characters/alana/front.svg",
  18949. extra: 679 / 653,
  18950. bottom: 22.5 / 701
  18951. }
  18952. },
  18953. },
  18954. [
  18955. {
  18956. name: "Normal",
  18957. height: math.unit(7 + 6 / 12, "feet")
  18958. },
  18959. {
  18960. name: "Large",
  18961. height: math.unit(50, "feet")
  18962. },
  18963. {
  18964. name: "Macro",
  18965. height: math.unit(100, "feet"),
  18966. default: true
  18967. },
  18968. {
  18969. name: "Macro+",
  18970. height: math.unit(200, "feet")
  18971. },
  18972. ]
  18973. ))
  18974. characterMakers.push(() => makeCharacter(
  18975. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  18976. {
  18977. front: {
  18978. height: math.unit(6 + 1 / 12, "feet"),
  18979. weight: math.unit(210, "lb"),
  18980. name: "Front",
  18981. image: {
  18982. source: "./media/characters/hasani/front.svg",
  18983. extra: 244 / 232,
  18984. bottom: 0.01
  18985. }
  18986. },
  18987. back: {
  18988. height: math.unit(6 + 1 / 12, "feet"),
  18989. weight: math.unit(210, "lb"),
  18990. name: "Back",
  18991. image: {
  18992. source: "./media/characters/hasani/back.svg",
  18993. extra: 244 / 232,
  18994. bottom: 0.01
  18995. }
  18996. },
  18997. },
  18998. [
  18999. {
  19000. name: "Normal",
  19001. height: math.unit(6 + 1 / 12, "feet")
  19002. },
  19003. {
  19004. name: "Macro",
  19005. height: math.unit(175, "feet"),
  19006. default: true
  19007. },
  19008. ]
  19009. ))
  19010. characterMakers.push(() => makeCharacter(
  19011. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  19012. {
  19013. front: {
  19014. height: math.unit(1.82, "meters"),
  19015. weight: math.unit(140, "lb"),
  19016. name: "Front",
  19017. image: {
  19018. source: "./media/characters/nita/front.svg",
  19019. extra: 2473 / 2363,
  19020. bottom: 0.01
  19021. }
  19022. },
  19023. },
  19024. [
  19025. {
  19026. name: "Normal",
  19027. height: math.unit(1.82, "m")
  19028. },
  19029. {
  19030. name: "Macro",
  19031. height: math.unit(300, "m")
  19032. },
  19033. {
  19034. name: "Mistake Canon",
  19035. height: math.unit(0.5, "miles"),
  19036. default: true
  19037. },
  19038. {
  19039. name: "Big Mistake",
  19040. height: math.unit(13, "miles")
  19041. },
  19042. {
  19043. name: "Playing God",
  19044. height: math.unit(2450, "miles")
  19045. },
  19046. ]
  19047. ))
  19048. characterMakers.push(() => makeCharacter(
  19049. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  19050. {
  19051. front: {
  19052. height: math.unit(4, "feet"),
  19053. weight: math.unit(120, "lb"),
  19054. name: "Front",
  19055. image: {
  19056. source: "./media/characters/shiriko/front.svg",
  19057. extra: 970/934,
  19058. bottom: 5/975
  19059. }
  19060. },
  19061. },
  19062. [
  19063. {
  19064. name: "Normal",
  19065. height: math.unit(4, "feet"),
  19066. default: true
  19067. },
  19068. ]
  19069. ))
  19070. characterMakers.push(() => makeCharacter(
  19071. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  19072. {
  19073. front: {
  19074. height: math.unit(6, "feet"),
  19075. name: "front",
  19076. image: {
  19077. source: "./media/characters/deja/front.svg",
  19078. extra: 926 / 840,
  19079. bottom: 0.07
  19080. }
  19081. },
  19082. },
  19083. [
  19084. {
  19085. name: "Planck Length",
  19086. height: math.unit(1.6e-35, "meters")
  19087. },
  19088. {
  19089. name: "Normal",
  19090. height: math.unit(30.48, "meters"),
  19091. default: true
  19092. },
  19093. {
  19094. name: "Universal",
  19095. height: math.unit(8.8e26, "meters")
  19096. },
  19097. ]
  19098. ))
  19099. characterMakers.push(() => makeCharacter(
  19100. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  19101. {
  19102. side: {
  19103. height: math.unit(8, "feet"),
  19104. weight: math.unit(6300, "lb"),
  19105. name: "Side",
  19106. image: {
  19107. source: "./media/characters/anima/side.svg",
  19108. bottom: 0.035
  19109. }
  19110. },
  19111. },
  19112. [
  19113. {
  19114. name: "Normal",
  19115. height: math.unit(8, "feet"),
  19116. default: true
  19117. },
  19118. ]
  19119. ))
  19120. characterMakers.push(() => makeCharacter(
  19121. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  19122. {
  19123. front: {
  19124. height: math.unit(8, "feet"),
  19125. weight: math.unit(350, "lb"),
  19126. name: "Front",
  19127. image: {
  19128. source: "./media/characters/bianca/front.svg",
  19129. extra: 234 / 225,
  19130. bottom: 0.03
  19131. }
  19132. },
  19133. },
  19134. [
  19135. {
  19136. name: "Normal",
  19137. height: math.unit(8, "feet"),
  19138. default: true
  19139. },
  19140. ]
  19141. ))
  19142. characterMakers.push(() => makeCharacter(
  19143. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  19144. {
  19145. front: {
  19146. height: math.unit(11 + 5/12, "feet"),
  19147. weight: math.unit(1200, "lb"),
  19148. name: "Front",
  19149. image: {
  19150. source: "./media/characters/adinia/front.svg",
  19151. extra: 1767/1641,
  19152. bottom: 44/1811
  19153. },
  19154. extraAttributes: {
  19155. "energyIntake": {
  19156. name: "Energy Intake",
  19157. power: 3,
  19158. type: "energy",
  19159. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19160. },
  19161. }
  19162. },
  19163. back: {
  19164. height: math.unit(11 + 5/12, "feet"),
  19165. weight: math.unit(1200, "lb"),
  19166. name: "Back",
  19167. image: {
  19168. source: "./media/characters/adinia/back.svg",
  19169. extra: 1834/1684,
  19170. bottom: 14/1848
  19171. },
  19172. extraAttributes: {
  19173. "energyIntake": {
  19174. name: "Energy Intake",
  19175. power: 3,
  19176. type: "energy",
  19177. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19178. },
  19179. }
  19180. },
  19181. maw: {
  19182. height: math.unit(3.79, "feet"),
  19183. name: "Maw",
  19184. image: {
  19185. source: "./media/characters/adinia/maw.svg"
  19186. }
  19187. },
  19188. rump: {
  19189. height: math.unit(4.6, "feet"),
  19190. name: "Rump",
  19191. image: {
  19192. source: "./media/characters/adinia/rump.svg"
  19193. }
  19194. },
  19195. },
  19196. [
  19197. {
  19198. name: "Normal",
  19199. height: math.unit(11 + 5 / 12, "feet"),
  19200. default: true
  19201. },
  19202. ]
  19203. ))
  19204. characterMakers.push(() => makeCharacter(
  19205. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  19206. {
  19207. front: {
  19208. height: math.unit(3, "meters"),
  19209. weight: math.unit(200, "kg"),
  19210. name: "Front",
  19211. image: {
  19212. source: "./media/characters/lykasa/front.svg",
  19213. extra: 1076 / 976,
  19214. bottom: 0.06
  19215. }
  19216. },
  19217. },
  19218. [
  19219. {
  19220. name: "Normal",
  19221. height: math.unit(3, "meters")
  19222. },
  19223. {
  19224. name: "Kaiju",
  19225. height: math.unit(120, "meters"),
  19226. default: true
  19227. },
  19228. {
  19229. name: "Mega Kaiju",
  19230. height: math.unit(240, "km")
  19231. },
  19232. {
  19233. name: "Giga Kaiju",
  19234. height: math.unit(400, "megameters")
  19235. },
  19236. {
  19237. name: "Tera Kaiju",
  19238. height: math.unit(800, "gigameters")
  19239. },
  19240. {
  19241. name: "Kaiju Dragon Goddess",
  19242. height: math.unit(26, "zettaparsecs")
  19243. },
  19244. ]
  19245. ))
  19246. characterMakers.push(() => makeCharacter(
  19247. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  19248. {
  19249. side: {
  19250. height: math.unit(283 / 124 * 6, "feet"),
  19251. weight: math.unit(35000, "lb"),
  19252. name: "Side",
  19253. image: {
  19254. source: "./media/characters/malfaren/side.svg",
  19255. extra: 1310/529,
  19256. bottom: 24/1334
  19257. }
  19258. },
  19259. front: {
  19260. height: math.unit(22.36, "feet"),
  19261. weight: math.unit(35000, "lb"),
  19262. name: "Front",
  19263. image: {
  19264. source: "./media/characters/malfaren/front.svg",
  19265. extra: 1237/1115,
  19266. bottom: 32/1269
  19267. }
  19268. },
  19269. maw: {
  19270. height: math.unit(6.9, "feet"),
  19271. name: "Maw",
  19272. image: {
  19273. source: "./media/characters/malfaren/maw.svg"
  19274. }
  19275. },
  19276. dick: {
  19277. height: math.unit(6.19, "feet"),
  19278. name: "Dick",
  19279. image: {
  19280. source: "./media/characters/malfaren/dick.svg"
  19281. }
  19282. },
  19283. eye: {
  19284. height: math.unit(0.69, "feet"),
  19285. name: "Eye",
  19286. image: {
  19287. source: "./media/characters/malfaren/eye.svg"
  19288. }
  19289. },
  19290. },
  19291. [
  19292. {
  19293. name: "Big",
  19294. height: math.unit(283 / 162 * 6, "feet"),
  19295. },
  19296. {
  19297. name: "Bigger",
  19298. height: math.unit(283 / 124 * 6, "feet")
  19299. },
  19300. {
  19301. name: "Massive",
  19302. height: math.unit(283 / 92 * 6, "feet"),
  19303. default: true
  19304. },
  19305. {
  19306. name: "👀💦",
  19307. height: math.unit(283 / 73 * 6, "feet"),
  19308. },
  19309. ]
  19310. ))
  19311. characterMakers.push(() => makeCharacter(
  19312. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  19313. {
  19314. front: {
  19315. height: math.unit(1.7, "m"),
  19316. weight: math.unit(70, "kg"),
  19317. name: "Front",
  19318. image: {
  19319. source: "./media/characters/kernel/front.svg",
  19320. extra: 222 / 210,
  19321. bottom: 0.007
  19322. }
  19323. },
  19324. },
  19325. [
  19326. {
  19327. name: "Nano",
  19328. height: math.unit(17, "micrometers")
  19329. },
  19330. {
  19331. name: "Micro",
  19332. height: math.unit(1.7, "mm")
  19333. },
  19334. {
  19335. name: "Small",
  19336. height: math.unit(1.7, "cm")
  19337. },
  19338. {
  19339. name: "Normal",
  19340. height: math.unit(1.7, "m"),
  19341. default: true
  19342. },
  19343. ]
  19344. ))
  19345. characterMakers.push(() => makeCharacter(
  19346. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  19347. {
  19348. front: {
  19349. height: math.unit(1.75, "meters"),
  19350. weight: math.unit(65, "kg"),
  19351. name: "Front",
  19352. image: {
  19353. source: "./media/characters/jayne-folest/front.svg",
  19354. extra: 2115 / 2007,
  19355. bottom: 0.02
  19356. }
  19357. },
  19358. back: {
  19359. height: math.unit(1.75, "meters"),
  19360. weight: math.unit(65, "kg"),
  19361. name: "Back",
  19362. image: {
  19363. source: "./media/characters/jayne-folest/back.svg",
  19364. extra: 2115 / 2007,
  19365. bottom: 0.005
  19366. }
  19367. },
  19368. frontClothed: {
  19369. height: math.unit(1.75, "meters"),
  19370. weight: math.unit(65, "kg"),
  19371. name: "Front (Clothed)",
  19372. image: {
  19373. source: "./media/characters/jayne-folest/front-clothed.svg",
  19374. extra: 2115 / 2007,
  19375. bottom: 0.035
  19376. }
  19377. },
  19378. hand: {
  19379. height: math.unit(1 / 1.260, "feet"),
  19380. name: "Hand",
  19381. image: {
  19382. source: "./media/characters/jayne-folest/hand.svg"
  19383. }
  19384. },
  19385. foot: {
  19386. height: math.unit(1 / 0.918, "feet"),
  19387. name: "Foot",
  19388. image: {
  19389. source: "./media/characters/jayne-folest/foot.svg"
  19390. }
  19391. },
  19392. },
  19393. [
  19394. {
  19395. name: "Micro",
  19396. height: math.unit(4, "cm")
  19397. },
  19398. {
  19399. name: "Normal",
  19400. height: math.unit(1.75, "meters")
  19401. },
  19402. {
  19403. name: "Macro",
  19404. height: math.unit(47.5, "meters"),
  19405. default: true
  19406. },
  19407. ]
  19408. ))
  19409. characterMakers.push(() => makeCharacter(
  19410. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  19411. {
  19412. front: {
  19413. height: math.unit(180, "cm"),
  19414. weight: math.unit(70, "kg"),
  19415. name: "Front",
  19416. image: {
  19417. source: "./media/characters/algier/front.svg",
  19418. extra: 596 / 572,
  19419. bottom: 0.04
  19420. }
  19421. },
  19422. back: {
  19423. height: math.unit(180, "cm"),
  19424. weight: math.unit(70, "kg"),
  19425. name: "Back",
  19426. image: {
  19427. source: "./media/characters/algier/back.svg",
  19428. extra: 596 / 572,
  19429. bottom: 0.025
  19430. }
  19431. },
  19432. frontdressed: {
  19433. height: math.unit(180, "cm"),
  19434. weight: math.unit(150, "kg"),
  19435. name: "Front-dressed",
  19436. image: {
  19437. source: "./media/characters/algier/front-dressed.svg",
  19438. extra: 596 / 572,
  19439. bottom: 0.038
  19440. }
  19441. },
  19442. },
  19443. [
  19444. {
  19445. name: "Micro",
  19446. height: math.unit(5, "cm")
  19447. },
  19448. {
  19449. name: "Normal",
  19450. height: math.unit(180, "cm"),
  19451. default: true
  19452. },
  19453. {
  19454. name: "Macro",
  19455. height: math.unit(64, "m")
  19456. },
  19457. ]
  19458. ))
  19459. characterMakers.push(() => makeCharacter(
  19460. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  19461. {
  19462. upright: {
  19463. height: math.unit(7, "feet"),
  19464. weight: math.unit(300, "lb"),
  19465. name: "Upright",
  19466. image: {
  19467. source: "./media/characters/pretzel/upright.svg",
  19468. extra: 534 / 522,
  19469. bottom: 0.065
  19470. }
  19471. },
  19472. sprawling: {
  19473. height: math.unit(3.75, "feet"),
  19474. weight: math.unit(300, "lb"),
  19475. name: "Sprawling",
  19476. image: {
  19477. source: "./media/characters/pretzel/sprawling.svg",
  19478. extra: 314 / 281,
  19479. bottom: 0.1
  19480. }
  19481. },
  19482. tongue: {
  19483. height: math.unit(2, "feet"),
  19484. name: "Tongue",
  19485. image: {
  19486. source: "./media/characters/pretzel/tongue.svg"
  19487. }
  19488. },
  19489. },
  19490. [
  19491. {
  19492. name: "Normal",
  19493. height: math.unit(7, "feet"),
  19494. default: true
  19495. },
  19496. {
  19497. name: "Oversized",
  19498. height: math.unit(15, "feet")
  19499. },
  19500. {
  19501. name: "Huge",
  19502. height: math.unit(30, "feet")
  19503. },
  19504. {
  19505. name: "Macro",
  19506. height: math.unit(250, "feet")
  19507. },
  19508. ]
  19509. ))
  19510. characterMakers.push(() => makeCharacter(
  19511. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  19512. {
  19513. sideFront: {
  19514. height: math.unit(5 + 2 / 12, "feet"),
  19515. weight: math.unit(120, "lb"),
  19516. name: "Front Side",
  19517. image: {
  19518. source: "./media/characters/roxi/side-front.svg",
  19519. extra: 2924 / 2717,
  19520. bottom: 0.08
  19521. }
  19522. },
  19523. sideBack: {
  19524. height: math.unit(5 + 2 / 12, "feet"),
  19525. weight: math.unit(120, "lb"),
  19526. name: "Back Side",
  19527. image: {
  19528. source: "./media/characters/roxi/side-back.svg",
  19529. extra: 2904 / 2693,
  19530. bottom: 0.06
  19531. }
  19532. },
  19533. front: {
  19534. height: math.unit(5 + 2 / 12, "feet"),
  19535. weight: math.unit(120, "lb"),
  19536. name: "Front",
  19537. image: {
  19538. source: "./media/characters/roxi/front.svg",
  19539. extra: 2028 / 1907,
  19540. bottom: 0.01
  19541. }
  19542. },
  19543. frontAlt: {
  19544. height: math.unit(5 + 2 / 12, "feet"),
  19545. weight: math.unit(120, "lb"),
  19546. name: "Front (Alt)",
  19547. image: {
  19548. source: "./media/characters/roxi/front-alt.svg",
  19549. extra: 1828 / 1798,
  19550. bottom: 0.01
  19551. }
  19552. },
  19553. sitting: {
  19554. height: math.unit(2.8, "feet"),
  19555. weight: math.unit(120, "lb"),
  19556. name: "Sitting",
  19557. image: {
  19558. source: "./media/characters/roxi/sitting.svg",
  19559. extra: 2660 / 2462,
  19560. bottom: 0.1
  19561. }
  19562. },
  19563. },
  19564. [
  19565. {
  19566. name: "Normal",
  19567. height: math.unit(5 + 2 / 12, "feet"),
  19568. default: true
  19569. },
  19570. ]
  19571. ))
  19572. characterMakers.push(() => makeCharacter(
  19573. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  19574. {
  19575. side: {
  19576. height: math.unit(55, "feet"),
  19577. weight: math.unit(153, "tons"),
  19578. name: "Side",
  19579. image: {
  19580. source: "./media/characters/shadow/side.svg",
  19581. extra: 701 / 628,
  19582. bottom: 0.02
  19583. }
  19584. },
  19585. flying: {
  19586. height: math.unit(145, "feet"),
  19587. weight: math.unit(153, "tons"),
  19588. name: "Flying",
  19589. image: {
  19590. source: "./media/characters/shadow/flying.svg"
  19591. }
  19592. },
  19593. },
  19594. [
  19595. {
  19596. name: "Normal",
  19597. height: math.unit(55, "feet"),
  19598. default: true
  19599. },
  19600. ]
  19601. ))
  19602. characterMakers.push(() => makeCharacter(
  19603. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  19604. {
  19605. front: {
  19606. height: math.unit(6, "feet"),
  19607. weight: math.unit(200, "lb"),
  19608. name: "Front",
  19609. image: {
  19610. source: "./media/characters/marcie/front.svg",
  19611. extra: 960 / 876,
  19612. bottom: 58 / 1017.87
  19613. }
  19614. },
  19615. },
  19616. [
  19617. {
  19618. name: "Macro",
  19619. height: math.unit(1, "mile"),
  19620. default: true
  19621. },
  19622. ]
  19623. ))
  19624. characterMakers.push(() => makeCharacter(
  19625. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  19626. {
  19627. front: {
  19628. height: math.unit(7, "feet"),
  19629. weight: math.unit(200, "lb"),
  19630. name: "Front",
  19631. image: {
  19632. source: "./media/characters/kachina/front.svg",
  19633. extra: 1290.68 / 1119,
  19634. bottom: 36.5 / 1327.18
  19635. }
  19636. },
  19637. },
  19638. [
  19639. {
  19640. name: "Normal",
  19641. height: math.unit(7, "feet"),
  19642. default: true
  19643. },
  19644. ]
  19645. ))
  19646. characterMakers.push(() => makeCharacter(
  19647. { name: "Kash", species: ["canine"], tags: ["feral"] },
  19648. {
  19649. looking: {
  19650. height: math.unit(2, "meters"),
  19651. weight: math.unit(300, "kg"),
  19652. name: "Looking",
  19653. image: {
  19654. source: "./media/characters/kash/looking.svg",
  19655. extra: 474 / 344,
  19656. bottom: 0.03
  19657. }
  19658. },
  19659. side: {
  19660. height: math.unit(2, "meters"),
  19661. weight: math.unit(300, "kg"),
  19662. name: "Side",
  19663. image: {
  19664. source: "./media/characters/kash/side.svg",
  19665. extra: 302 / 251,
  19666. bottom: 0.03
  19667. }
  19668. },
  19669. front: {
  19670. height: math.unit(2, "meters"),
  19671. weight: math.unit(300, "kg"),
  19672. name: "Front",
  19673. image: {
  19674. source: "./media/characters/kash/front.svg",
  19675. extra: 495 / 360,
  19676. bottom: 0.015
  19677. }
  19678. },
  19679. },
  19680. [
  19681. {
  19682. name: "Normal",
  19683. height: math.unit(2, "meters"),
  19684. default: true
  19685. },
  19686. {
  19687. name: "Big",
  19688. height: math.unit(3, "meters")
  19689. },
  19690. {
  19691. name: "Large",
  19692. height: math.unit(5, "meters")
  19693. },
  19694. ]
  19695. ))
  19696. characterMakers.push(() => makeCharacter(
  19697. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  19698. {
  19699. feeding: {
  19700. height: math.unit(6.7, "feet"),
  19701. weight: math.unit(350, "lb"),
  19702. name: "Feeding",
  19703. image: {
  19704. source: "./media/characters/lalim/feeding.svg",
  19705. }
  19706. },
  19707. },
  19708. [
  19709. {
  19710. name: "Normal",
  19711. height: math.unit(6.7, "feet"),
  19712. default: true
  19713. },
  19714. ]
  19715. ))
  19716. characterMakers.push(() => makeCharacter(
  19717. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  19718. {
  19719. front: {
  19720. height: math.unit(9.5, "feet"),
  19721. weight: math.unit(600, "lb"),
  19722. name: "Front",
  19723. image: {
  19724. source: "./media/characters/de'vout/front.svg",
  19725. extra: 1443 / 1328,
  19726. bottom: 0.025
  19727. }
  19728. },
  19729. back: {
  19730. height: math.unit(9.5, "feet"),
  19731. weight: math.unit(600, "lb"),
  19732. name: "Back",
  19733. image: {
  19734. source: "./media/characters/de'vout/back.svg",
  19735. extra: 1443 / 1328
  19736. }
  19737. },
  19738. frontDressed: {
  19739. height: math.unit(9.5, "feet"),
  19740. weight: math.unit(600, "lb"),
  19741. name: "Front (Dressed",
  19742. image: {
  19743. source: "./media/characters/de'vout/front-dressed.svg",
  19744. extra: 1443 / 1328,
  19745. bottom: 0.025
  19746. }
  19747. },
  19748. backDressed: {
  19749. height: math.unit(9.5, "feet"),
  19750. weight: math.unit(600, "lb"),
  19751. name: "Back (Dressed",
  19752. image: {
  19753. source: "./media/characters/de'vout/back-dressed.svg",
  19754. extra: 1443 / 1328
  19755. }
  19756. },
  19757. },
  19758. [
  19759. {
  19760. name: "Normal",
  19761. height: math.unit(9.5, "feet"),
  19762. default: true
  19763. },
  19764. ]
  19765. ))
  19766. characterMakers.push(() => makeCharacter(
  19767. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  19768. {
  19769. front: {
  19770. height: math.unit(8, "feet"),
  19771. weight: math.unit(225, "lb"),
  19772. name: "Front",
  19773. image: {
  19774. source: "./media/characters/talana/front.svg",
  19775. extra: 1410 / 1300,
  19776. bottom: 0.015
  19777. }
  19778. },
  19779. frontDressed: {
  19780. height: math.unit(8, "feet"),
  19781. weight: math.unit(225, "lb"),
  19782. name: "Front (Dressed",
  19783. image: {
  19784. source: "./media/characters/talana/front-dressed.svg",
  19785. extra: 1410 / 1300,
  19786. bottom: 0.015
  19787. }
  19788. },
  19789. },
  19790. [
  19791. {
  19792. name: "Normal",
  19793. height: math.unit(8, "feet"),
  19794. default: true
  19795. },
  19796. ]
  19797. ))
  19798. characterMakers.push(() => makeCharacter(
  19799. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19800. {
  19801. side: {
  19802. height: math.unit(7.2, "feet"),
  19803. weight: math.unit(150, "lb"),
  19804. name: "Side",
  19805. image: {
  19806. source: "./media/characters/xeauvok/side.svg",
  19807. extra: 1975 / 1523,
  19808. bottom: 0.07
  19809. }
  19810. },
  19811. },
  19812. [
  19813. {
  19814. name: "Normal",
  19815. height: math.unit(7.2, "feet"),
  19816. default: true
  19817. },
  19818. ]
  19819. ))
  19820. characterMakers.push(() => makeCharacter(
  19821. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  19822. {
  19823. side: {
  19824. height: math.unit(4, "meters"),
  19825. weight: math.unit(2200, "kg"),
  19826. name: "Side",
  19827. image: {
  19828. source: "./media/characters/zara/side.svg",
  19829. extra: 765/744,
  19830. bottom: 156/921
  19831. }
  19832. },
  19833. },
  19834. [
  19835. {
  19836. name: "Normal",
  19837. height: math.unit(4, "meters"),
  19838. default: true
  19839. },
  19840. ]
  19841. ))
  19842. characterMakers.push(() => makeCharacter(
  19843. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  19844. {
  19845. side: {
  19846. height: math.unit(6, "feet"),
  19847. weight: math.unit(150, "lb"),
  19848. name: "Side",
  19849. image: {
  19850. source: "./media/characters/richard-dragon/side.svg",
  19851. extra: 845 / 340,
  19852. bottom: 0.017
  19853. }
  19854. },
  19855. maw: {
  19856. height: math.unit(2.97, "feet"),
  19857. name: "Maw",
  19858. image: {
  19859. source: "./media/characters/richard-dragon/maw.svg"
  19860. }
  19861. },
  19862. },
  19863. [
  19864. ]
  19865. ))
  19866. characterMakers.push(() => makeCharacter(
  19867. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  19868. {
  19869. front: {
  19870. height: math.unit(4, "feet"),
  19871. weight: math.unit(100, "lb"),
  19872. name: "Front",
  19873. image: {
  19874. source: "./media/characters/richard-smeargle/front.svg",
  19875. extra: 2952 / 2820,
  19876. bottom: 0.028
  19877. }
  19878. },
  19879. },
  19880. [
  19881. {
  19882. name: "Normal",
  19883. height: math.unit(4, "feet"),
  19884. default: true
  19885. },
  19886. {
  19887. name: "Dynamax",
  19888. height: math.unit(20, "meters")
  19889. },
  19890. ]
  19891. ))
  19892. characterMakers.push(() => makeCharacter(
  19893. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  19894. {
  19895. front: {
  19896. height: math.unit(6, "feet"),
  19897. weight: math.unit(110, "lb"),
  19898. name: "Front",
  19899. image: {
  19900. source: "./media/characters/klay/front.svg",
  19901. extra: 962 / 883,
  19902. bottom: 0.04
  19903. }
  19904. },
  19905. back: {
  19906. height: math.unit(6, "feet"),
  19907. weight: math.unit(110, "lb"),
  19908. name: "Back",
  19909. image: {
  19910. source: "./media/characters/klay/back.svg",
  19911. extra: 962 / 883
  19912. }
  19913. },
  19914. beans: {
  19915. height: math.unit(1.15, "feet"),
  19916. name: "Beans",
  19917. image: {
  19918. source: "./media/characters/klay/beans.svg"
  19919. }
  19920. },
  19921. },
  19922. [
  19923. {
  19924. name: "Micro",
  19925. height: math.unit(6, "inches")
  19926. },
  19927. {
  19928. name: "Mini",
  19929. height: math.unit(3, "feet")
  19930. },
  19931. {
  19932. name: "Normal",
  19933. height: math.unit(6, "feet"),
  19934. default: true
  19935. },
  19936. {
  19937. name: "Big",
  19938. height: math.unit(25, "feet")
  19939. },
  19940. {
  19941. name: "Macro",
  19942. height: math.unit(100, "feet")
  19943. },
  19944. {
  19945. name: "Megamacro",
  19946. height: math.unit(400, "feet")
  19947. },
  19948. ]
  19949. ))
  19950. characterMakers.push(() => makeCharacter(
  19951. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  19952. {
  19953. front: {
  19954. height: math.unit(6, "feet"),
  19955. weight: math.unit(160, "lb"),
  19956. name: "Front",
  19957. image: {
  19958. source: "./media/characters/marcus/front.svg",
  19959. extra: 734 / 676,
  19960. bottom: 0.03
  19961. }
  19962. },
  19963. },
  19964. [
  19965. {
  19966. name: "Little",
  19967. height: math.unit(6, "feet")
  19968. },
  19969. {
  19970. name: "Normal",
  19971. height: math.unit(110, "feet"),
  19972. default: true
  19973. },
  19974. {
  19975. name: "Macro",
  19976. height: math.unit(250, "feet")
  19977. },
  19978. {
  19979. name: "Megamacro",
  19980. height: math.unit(1000, "feet")
  19981. },
  19982. ]
  19983. ))
  19984. characterMakers.push(() => makeCharacter(
  19985. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  19986. {
  19987. front: {
  19988. height: math.unit(7, "feet"),
  19989. weight: math.unit(275, "lb"),
  19990. name: "Front",
  19991. image: {
  19992. source: "./media/characters/claude-delroute/front.svg",
  19993. extra: 902/827,
  19994. bottom: 26/928
  19995. }
  19996. },
  19997. side: {
  19998. height: math.unit(7, "feet"),
  19999. weight: math.unit(275, "lb"),
  20000. name: "Side",
  20001. image: {
  20002. source: "./media/characters/claude-delroute/side.svg",
  20003. extra: 908/853,
  20004. bottom: 16/924
  20005. }
  20006. },
  20007. back: {
  20008. height: math.unit(7, "feet"),
  20009. weight: math.unit(275, "lb"),
  20010. name: "Back",
  20011. image: {
  20012. source: "./media/characters/claude-delroute/back.svg",
  20013. extra: 911/829,
  20014. bottom: 18/929
  20015. }
  20016. },
  20017. maw: {
  20018. height: math.unit(0.6407, "meters"),
  20019. name: "Maw",
  20020. image: {
  20021. source: "./media/characters/claude-delroute/maw.svg"
  20022. }
  20023. },
  20024. },
  20025. [
  20026. {
  20027. name: "Normal",
  20028. height: math.unit(7, "feet"),
  20029. default: true
  20030. },
  20031. {
  20032. name: "Lorge",
  20033. height: math.unit(20, "feet")
  20034. },
  20035. ]
  20036. ))
  20037. characterMakers.push(() => makeCharacter(
  20038. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  20039. {
  20040. front: {
  20041. height: math.unit(8 + 4 / 12, "feet"),
  20042. weight: math.unit(600, "lb"),
  20043. name: "Front",
  20044. image: {
  20045. source: "./media/characters/dragonien/front.svg",
  20046. extra: 100 / 94,
  20047. bottom: 3.3 / 103.3445
  20048. }
  20049. },
  20050. back: {
  20051. height: math.unit(8 + 4 / 12, "feet"),
  20052. weight: math.unit(600, "lb"),
  20053. name: "Back",
  20054. image: {
  20055. source: "./media/characters/dragonien/back.svg",
  20056. extra: 776 / 746,
  20057. bottom: 6.4 / 782.0616
  20058. }
  20059. },
  20060. foot: {
  20061. height: math.unit(1.54, "feet"),
  20062. name: "Foot",
  20063. image: {
  20064. source: "./media/characters/dragonien/foot.svg",
  20065. }
  20066. },
  20067. },
  20068. [
  20069. {
  20070. name: "Normal",
  20071. height: math.unit(8 + 4 / 12, "feet"),
  20072. default: true
  20073. },
  20074. {
  20075. name: "Macro",
  20076. height: math.unit(200, "feet")
  20077. },
  20078. {
  20079. name: "Megamacro",
  20080. height: math.unit(1, "mile")
  20081. },
  20082. {
  20083. name: "Gigamacro",
  20084. height: math.unit(1000, "miles")
  20085. },
  20086. ]
  20087. ))
  20088. characterMakers.push(() => makeCharacter(
  20089. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  20090. {
  20091. front: {
  20092. height: math.unit(5 + 2 / 12, "feet"),
  20093. weight: math.unit(110, "lb"),
  20094. name: "Front",
  20095. image: {
  20096. source: "./media/characters/desta/front.svg",
  20097. extra: 767 / 726,
  20098. bottom: 11.7 / 779
  20099. }
  20100. },
  20101. back: {
  20102. height: math.unit(5 + 2 / 12, "feet"),
  20103. weight: math.unit(110, "lb"),
  20104. name: "Back",
  20105. image: {
  20106. source: "./media/characters/desta/back.svg",
  20107. extra: 777 / 728,
  20108. bottom: 6 / 784
  20109. }
  20110. },
  20111. frontAlt: {
  20112. height: math.unit(5 + 2 / 12, "feet"),
  20113. weight: math.unit(110, "lb"),
  20114. name: "Front",
  20115. image: {
  20116. source: "./media/characters/desta/front-alt.svg",
  20117. extra: 1482 / 1417
  20118. }
  20119. },
  20120. side: {
  20121. height: math.unit(5 + 2 / 12, "feet"),
  20122. weight: math.unit(110, "lb"),
  20123. name: "Side",
  20124. image: {
  20125. source: "./media/characters/desta/side.svg",
  20126. extra: 2579 / 2491,
  20127. bottom: 0.053
  20128. }
  20129. },
  20130. },
  20131. [
  20132. {
  20133. name: "Micro",
  20134. height: math.unit(6, "inches")
  20135. },
  20136. {
  20137. name: "Normal",
  20138. height: math.unit(5 + 2 / 12, "feet"),
  20139. default: true
  20140. },
  20141. {
  20142. name: "Macro",
  20143. height: math.unit(62, "feet")
  20144. },
  20145. {
  20146. name: "Megamacro",
  20147. height: math.unit(1800, "feet")
  20148. },
  20149. ]
  20150. ))
  20151. characterMakers.push(() => makeCharacter(
  20152. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  20153. {
  20154. front: {
  20155. height: math.unit(10, "feet"),
  20156. weight: math.unit(700, "lb"),
  20157. name: "Front",
  20158. image: {
  20159. source: "./media/characters/storm-alystar/front.svg",
  20160. extra: 2112 / 1898,
  20161. bottom: 0.034
  20162. }
  20163. },
  20164. },
  20165. [
  20166. {
  20167. name: "Micro",
  20168. height: math.unit(3.5, "inches")
  20169. },
  20170. {
  20171. name: "Normal",
  20172. height: math.unit(10, "feet"),
  20173. default: true
  20174. },
  20175. {
  20176. name: "Macro",
  20177. height: math.unit(400, "feet")
  20178. },
  20179. {
  20180. name: "Deific",
  20181. height: math.unit(60, "miles")
  20182. },
  20183. ]
  20184. ))
  20185. characterMakers.push(() => makeCharacter(
  20186. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  20187. {
  20188. front: {
  20189. height: math.unit(2.35, "meters"),
  20190. weight: math.unit(119, "kg"),
  20191. name: "Front",
  20192. image: {
  20193. source: "./media/characters/ilia/front.svg",
  20194. extra: 1285 / 1255,
  20195. bottom: 0.06
  20196. }
  20197. },
  20198. },
  20199. [
  20200. {
  20201. name: "Normal",
  20202. height: math.unit(2.35, "meters")
  20203. },
  20204. {
  20205. name: "Macro",
  20206. height: math.unit(140, "meters"),
  20207. default: true
  20208. },
  20209. {
  20210. name: "Megamacro",
  20211. height: math.unit(100, "miles")
  20212. },
  20213. ]
  20214. ))
  20215. characterMakers.push(() => makeCharacter(
  20216. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  20217. {
  20218. front: {
  20219. height: math.unit(6 + 5 / 12, "feet"),
  20220. weight: math.unit(190, "lb"),
  20221. name: "Front",
  20222. image: {
  20223. source: "./media/characters/kingdead/front.svg",
  20224. extra: 1228 / 1177
  20225. }
  20226. },
  20227. },
  20228. [
  20229. {
  20230. name: "Micro",
  20231. height: math.unit(7, "inches")
  20232. },
  20233. {
  20234. name: "Normal",
  20235. height: math.unit(6 + 5 / 12, "feet")
  20236. },
  20237. {
  20238. name: "Macro",
  20239. height: math.unit(150, "feet"),
  20240. default: true
  20241. },
  20242. {
  20243. name: "Megamacro",
  20244. height: math.unit(200, "miles")
  20245. },
  20246. ]
  20247. ))
  20248. characterMakers.push(() => makeCharacter(
  20249. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  20250. {
  20251. front: {
  20252. height: math.unit(8, "feet"),
  20253. weight: math.unit(600, "lb"),
  20254. name: "Front",
  20255. image: {
  20256. source: "./media/characters/kyrehx/front.svg",
  20257. extra: 1195 / 1095,
  20258. bottom: 0.034
  20259. }
  20260. },
  20261. },
  20262. [
  20263. {
  20264. name: "Micro",
  20265. height: math.unit(2, "inches")
  20266. },
  20267. {
  20268. name: "Normal",
  20269. height: math.unit(8, "feet"),
  20270. default: true
  20271. },
  20272. {
  20273. name: "Macro",
  20274. height: math.unit(255, "feet")
  20275. },
  20276. ]
  20277. ))
  20278. characterMakers.push(() => makeCharacter(
  20279. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  20280. {
  20281. front: {
  20282. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20283. weight: math.unit(184, "lb"),
  20284. name: "Front",
  20285. image: {
  20286. source: "./media/characters/xang/front.svg",
  20287. extra: 845 / 755
  20288. }
  20289. },
  20290. },
  20291. [
  20292. {
  20293. name: "Normal",
  20294. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20295. default: true
  20296. },
  20297. {
  20298. name: "Macro",
  20299. height: math.unit(0.935 * 146, "feet")
  20300. },
  20301. {
  20302. name: "Megamacro",
  20303. height: math.unit(0.935 * 3, "miles")
  20304. },
  20305. ]
  20306. ))
  20307. characterMakers.push(() => makeCharacter(
  20308. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  20309. {
  20310. frontDressed: {
  20311. height: math.unit(5 + 7 / 12, "feet"),
  20312. weight: math.unit(140, "lb"),
  20313. name: "Front (Dressed)",
  20314. image: {
  20315. source: "./media/characters/doc-weardno/front-dressed.svg",
  20316. extra: 263 / 234
  20317. }
  20318. },
  20319. backDressed: {
  20320. height: math.unit(5 + 7 / 12, "feet"),
  20321. weight: math.unit(140, "lb"),
  20322. name: "Back (Dressed)",
  20323. image: {
  20324. source: "./media/characters/doc-weardno/back-dressed.svg",
  20325. extra: 266 / 238
  20326. }
  20327. },
  20328. front: {
  20329. height: math.unit(5 + 7 / 12, "feet"),
  20330. weight: math.unit(140, "lb"),
  20331. name: "Front",
  20332. image: {
  20333. source: "./media/characters/doc-weardno/front.svg",
  20334. extra: 254 / 233
  20335. }
  20336. },
  20337. },
  20338. [
  20339. {
  20340. name: "Micro",
  20341. height: math.unit(3, "inches")
  20342. },
  20343. {
  20344. name: "Normal",
  20345. height: math.unit(5 + 7 / 12, "feet"),
  20346. default: true
  20347. },
  20348. {
  20349. name: "Macro",
  20350. height: math.unit(25, "feet")
  20351. },
  20352. {
  20353. name: "Megamacro",
  20354. height: math.unit(2, "miles")
  20355. },
  20356. ]
  20357. ))
  20358. characterMakers.push(() => makeCharacter(
  20359. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  20360. {
  20361. front: {
  20362. height: math.unit(6 + 2 / 12, "feet"),
  20363. weight: math.unit(153, "lb"),
  20364. name: "Front",
  20365. image: {
  20366. source: "./media/characters/seth-whilst/front.svg",
  20367. bottom: 0.07
  20368. }
  20369. },
  20370. },
  20371. [
  20372. {
  20373. name: "Micro",
  20374. height: math.unit(5, "inches")
  20375. },
  20376. {
  20377. name: "Normal",
  20378. height: math.unit(6 + 2 / 12, "feet"),
  20379. default: true
  20380. },
  20381. ]
  20382. ))
  20383. characterMakers.push(() => makeCharacter(
  20384. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  20385. {
  20386. front: {
  20387. height: math.unit(3, "inches"),
  20388. weight: math.unit(8, "grams"),
  20389. name: "Front",
  20390. image: {
  20391. source: "./media/characters/pocket-jabari/front.svg",
  20392. extra: 1024 / 974,
  20393. bottom: 0.039
  20394. }
  20395. },
  20396. },
  20397. [
  20398. {
  20399. name: "Minimicro",
  20400. height: math.unit(8, "mm")
  20401. },
  20402. {
  20403. name: "Micro",
  20404. height: math.unit(3, "inches"),
  20405. default: true
  20406. },
  20407. {
  20408. name: "Normal",
  20409. height: math.unit(3, "feet")
  20410. },
  20411. ]
  20412. ))
  20413. characterMakers.push(() => makeCharacter(
  20414. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  20415. {
  20416. frontDressed: {
  20417. height: math.unit(15, "feet"),
  20418. weight: math.unit(3280, "lb"),
  20419. name: "Front (Dressed)",
  20420. image: {
  20421. source: "./media/characters/sapphy/front-dressed.svg",
  20422. extra: 1951/1654,
  20423. bottom: 194/2145
  20424. },
  20425. form: "anthro",
  20426. default: true
  20427. },
  20428. backDressed: {
  20429. height: math.unit(15, "feet"),
  20430. weight: math.unit(3280, "lb"),
  20431. name: "Back (Dressed)",
  20432. image: {
  20433. source: "./media/characters/sapphy/back-dressed.svg",
  20434. extra: 2058/1918,
  20435. bottom: 125/2183
  20436. },
  20437. form: "anthro"
  20438. },
  20439. frontNude: {
  20440. height: math.unit(15, "feet"),
  20441. weight: math.unit(3280, "lb"),
  20442. name: "Front (Nude)",
  20443. image: {
  20444. source: "./media/characters/sapphy/front-nude.svg",
  20445. extra: 1951/1654,
  20446. bottom: 194/2145
  20447. },
  20448. form: "anthro"
  20449. },
  20450. backNude: {
  20451. height: math.unit(15, "feet"),
  20452. weight: math.unit(3280, "lb"),
  20453. name: "Back (Nude)",
  20454. image: {
  20455. source: "./media/characters/sapphy/back-nude.svg",
  20456. extra: 2058/1918,
  20457. bottom: 125/2183
  20458. },
  20459. form: "anthro"
  20460. },
  20461. full: {
  20462. height: math.unit(15, "feet"),
  20463. weight: math.unit(3280, "lb"),
  20464. name: "Full",
  20465. image: {
  20466. source: "./media/characters/sapphy/full.svg",
  20467. extra: 1396/1317,
  20468. bottom: 44/1440
  20469. },
  20470. form: "anthro"
  20471. },
  20472. dick: {
  20473. height: math.unit(3.8, "feet"),
  20474. name: "Dick",
  20475. image: {
  20476. source: "./media/characters/sapphy/dick.svg"
  20477. },
  20478. form: "anthro"
  20479. },
  20480. feral: {
  20481. height: math.unit(35, "feet"),
  20482. weight: math.unit(160, "tons"),
  20483. name: "Feral",
  20484. image: {
  20485. source: "./media/characters/sapphy/feral.svg",
  20486. extra: 1050/573,
  20487. bottom: 60/1110
  20488. },
  20489. form: "feral",
  20490. default: true
  20491. },
  20492. },
  20493. [
  20494. {
  20495. name: "Normal",
  20496. height: math.unit(15, "feet"),
  20497. form: "anthro"
  20498. },
  20499. {
  20500. name: "Casual Macro",
  20501. height: math.unit(120, "feet"),
  20502. form: "anthro"
  20503. },
  20504. {
  20505. name: "Macro",
  20506. height: math.unit(2150, "feet"),
  20507. default: true,
  20508. form: "anthro"
  20509. },
  20510. {
  20511. name: "Megamacro",
  20512. height: math.unit(8, "miles"),
  20513. form: "anthro"
  20514. },
  20515. {
  20516. name: "Galaxy Mom",
  20517. height: math.unit(6, "megalightyears"),
  20518. form: "anthro"
  20519. },
  20520. {
  20521. name: "Normal",
  20522. height: math.unit(35, "feet"),
  20523. form: "feral",
  20524. default: true
  20525. },
  20526. {
  20527. name: "Macro",
  20528. height: math.unit(300, "feet"),
  20529. form: "feral"
  20530. },
  20531. {
  20532. name: "Galaxy Mom",
  20533. height: math.unit(10, "megalightyears"),
  20534. form: "feral"
  20535. },
  20536. ],
  20537. {
  20538. "anthro": {
  20539. name: "Anthro",
  20540. default: true
  20541. },
  20542. "feral": {
  20543. name: "Feral"
  20544. }
  20545. }
  20546. ))
  20547. characterMakers.push(() => makeCharacter(
  20548. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  20549. {
  20550. hyenaFront: {
  20551. height: math.unit(6, "feet"),
  20552. weight: math.unit(190, "lb"),
  20553. name: "Front",
  20554. image: {
  20555. source: "./media/characters/kiro/hyena-front.svg",
  20556. extra: 927/839,
  20557. bottom: 91/1018
  20558. },
  20559. form: "hyena",
  20560. default: true
  20561. },
  20562. front: {
  20563. height: math.unit(6, "feet"),
  20564. weight: math.unit(170, "lb"),
  20565. name: "Front",
  20566. image: {
  20567. source: "./media/characters/kiro/front.svg",
  20568. extra: 1064 / 1012,
  20569. bottom: 0.052
  20570. },
  20571. form: "folf",
  20572. default: true
  20573. },
  20574. },
  20575. [
  20576. {
  20577. name: "Micro",
  20578. height: math.unit(6, "inches"),
  20579. form: "folf"
  20580. },
  20581. {
  20582. name: "Normal",
  20583. height: math.unit(6, "feet"),
  20584. form: "folf",
  20585. default: true
  20586. },
  20587. {
  20588. name: "Macro",
  20589. height: math.unit(72, "feet"),
  20590. form: "folf"
  20591. },
  20592. {
  20593. name: "Micro",
  20594. height: math.unit(6, "inches"),
  20595. form: "hyena"
  20596. },
  20597. {
  20598. name: "Normal",
  20599. height: math.unit(6, "feet"),
  20600. form: "hyena",
  20601. default: true
  20602. },
  20603. {
  20604. name: "Macro",
  20605. height: math.unit(72, "feet"),
  20606. form: "hyena"
  20607. },
  20608. ],
  20609. {
  20610. "hyena": {
  20611. name: "Hyena",
  20612. default: true
  20613. },
  20614. "folf": {
  20615. name: "Folf",
  20616. },
  20617. }
  20618. ))
  20619. characterMakers.push(() => makeCharacter(
  20620. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  20621. {
  20622. front: {
  20623. height: math.unit(5 + 9 / 12, "feet"),
  20624. weight: math.unit(175, "lb"),
  20625. name: "Front",
  20626. image: {
  20627. source: "./media/characters/irishfox/front.svg",
  20628. extra: 1912 / 1680,
  20629. bottom: 0.02
  20630. }
  20631. },
  20632. },
  20633. [
  20634. {
  20635. name: "Nano",
  20636. height: math.unit(1, "mm")
  20637. },
  20638. {
  20639. name: "Micro",
  20640. height: math.unit(2, "inches")
  20641. },
  20642. {
  20643. name: "Normal",
  20644. height: math.unit(5 + 9 / 12, "feet"),
  20645. default: true
  20646. },
  20647. {
  20648. name: "Macro",
  20649. height: math.unit(45, "feet")
  20650. },
  20651. ]
  20652. ))
  20653. characterMakers.push(() => makeCharacter(
  20654. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  20655. {
  20656. front: {
  20657. height: math.unit(6 + 1 / 12, "feet"),
  20658. weight: math.unit(75, "lb"),
  20659. name: "Front",
  20660. image: {
  20661. source: "./media/characters/aronai-sieyes/front.svg",
  20662. extra: 1532/1450,
  20663. bottom: 42/1574
  20664. }
  20665. },
  20666. side: {
  20667. height: math.unit(6 + 1 / 12, "feet"),
  20668. weight: math.unit(75, "lb"),
  20669. name: "Side",
  20670. image: {
  20671. source: "./media/characters/aronai-sieyes/side.svg",
  20672. extra: 1422/1365,
  20673. bottom: 148/1570
  20674. }
  20675. },
  20676. back: {
  20677. height: math.unit(6 + 1 / 12, "feet"),
  20678. weight: math.unit(75, "lb"),
  20679. name: "Back",
  20680. image: {
  20681. source: "./media/characters/aronai-sieyes/back.svg",
  20682. extra: 1526/1464,
  20683. bottom: 51/1577
  20684. }
  20685. },
  20686. dressed: {
  20687. height: math.unit(6 + 1 / 12, "feet"),
  20688. weight: math.unit(75, "lb"),
  20689. name: "Dressed",
  20690. image: {
  20691. source: "./media/characters/aronai-sieyes/dressed.svg",
  20692. extra: 1559/1483,
  20693. bottom: 39/1598
  20694. }
  20695. },
  20696. slit: {
  20697. height: math.unit(1.3, "feet"),
  20698. name: "Slit",
  20699. image: {
  20700. source: "./media/characters/aronai-sieyes/slit.svg"
  20701. }
  20702. },
  20703. slitSpread: {
  20704. height: math.unit(0.9, "feet"),
  20705. name: "Slit (Spread)",
  20706. image: {
  20707. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  20708. }
  20709. },
  20710. rump: {
  20711. height: math.unit(1.3, "feet"),
  20712. name: "Rump",
  20713. image: {
  20714. source: "./media/characters/aronai-sieyes/rump.svg"
  20715. }
  20716. },
  20717. maw: {
  20718. height: math.unit(1.25, "feet"),
  20719. name: "Maw",
  20720. image: {
  20721. source: "./media/characters/aronai-sieyes/maw.svg"
  20722. }
  20723. },
  20724. feral: {
  20725. height: math.unit(18, "feet"),
  20726. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  20727. name: "Feral",
  20728. image: {
  20729. source: "./media/characters/aronai-sieyes/feral.svg",
  20730. extra: 1530 / 1240,
  20731. bottom: 0.035
  20732. }
  20733. },
  20734. },
  20735. [
  20736. {
  20737. name: "Micro",
  20738. height: math.unit(2, "inches")
  20739. },
  20740. {
  20741. name: "Normal",
  20742. height: math.unit(6 + 1 / 12, "feet"),
  20743. default: true
  20744. }
  20745. ]
  20746. ))
  20747. characterMakers.push(() => makeCharacter(
  20748. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  20749. {
  20750. front: {
  20751. height: math.unit(12, "feet"),
  20752. weight: math.unit(410, "kg"),
  20753. name: "Front",
  20754. image: {
  20755. source: "./media/characters/xuna/front.svg",
  20756. extra: 2184 / 1980
  20757. }
  20758. },
  20759. side: {
  20760. height: math.unit(12, "feet"),
  20761. weight: math.unit(410, "kg"),
  20762. name: "Side",
  20763. image: {
  20764. source: "./media/characters/xuna/side.svg",
  20765. extra: 2184 / 1980
  20766. }
  20767. },
  20768. back: {
  20769. height: math.unit(12, "feet"),
  20770. weight: math.unit(410, "kg"),
  20771. name: "Back",
  20772. image: {
  20773. source: "./media/characters/xuna/back.svg",
  20774. extra: 2184 / 1980
  20775. }
  20776. },
  20777. },
  20778. [
  20779. {
  20780. name: "Nano glow",
  20781. height: math.unit(10, "nm")
  20782. },
  20783. {
  20784. name: "Micro floof",
  20785. height: math.unit(0.3, "m")
  20786. },
  20787. {
  20788. name: "Huggable softy boi",
  20789. height: math.unit(3.6576, "m"),
  20790. default: true
  20791. },
  20792. {
  20793. name: "Admirable floof",
  20794. height: math.unit(80, "meters")
  20795. },
  20796. {
  20797. name: "Gentle macro",
  20798. height: math.unit(300, "meters")
  20799. },
  20800. {
  20801. name: "Very careful floof",
  20802. height: math.unit(3200, "meters")
  20803. },
  20804. {
  20805. name: "The mega floof",
  20806. height: math.unit(36000, "meters")
  20807. },
  20808. {
  20809. name: "Giga-fur-Wicker",
  20810. height: math.unit(4800000, "meters")
  20811. },
  20812. {
  20813. name: "Licky world",
  20814. height: math.unit(20000000, "meters")
  20815. },
  20816. {
  20817. name: "Floofy cyan sun",
  20818. height: math.unit(1500000000, "meters")
  20819. },
  20820. {
  20821. name: "Milky Wicker",
  20822. height: math.unit(1000000000000000000000, "meters")
  20823. },
  20824. {
  20825. name: "The observing Wicker",
  20826. height: math.unit(999999999999999999999999999, "meters")
  20827. },
  20828. ]
  20829. ))
  20830. characterMakers.push(() => makeCharacter(
  20831. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20832. {
  20833. front: {
  20834. height: math.unit(5 + 9 / 12, "feet"),
  20835. weight: math.unit(150, "lb"),
  20836. name: "Front",
  20837. image: {
  20838. source: "./media/characters/arokha-sieyes/front.svg",
  20839. extra: 1425 / 1284,
  20840. bottom: 0.05
  20841. }
  20842. },
  20843. },
  20844. [
  20845. {
  20846. name: "Normal",
  20847. height: math.unit(5 + 9 / 12, "feet")
  20848. },
  20849. {
  20850. name: "Macro",
  20851. height: math.unit(30, "meters"),
  20852. default: true
  20853. },
  20854. ]
  20855. ))
  20856. characterMakers.push(() => makeCharacter(
  20857. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20858. {
  20859. front: {
  20860. height: math.unit(6, "feet"),
  20861. weight: math.unit(180, "lb"),
  20862. name: "Front",
  20863. image: {
  20864. source: "./media/characters/arokh-sieyes/front.svg",
  20865. extra: 1830 / 1769,
  20866. bottom: 0.01
  20867. }
  20868. },
  20869. },
  20870. [
  20871. {
  20872. name: "Normal",
  20873. height: math.unit(6, "feet")
  20874. },
  20875. {
  20876. name: "Macro",
  20877. height: math.unit(30, "meters"),
  20878. default: true
  20879. },
  20880. ]
  20881. ))
  20882. characterMakers.push(() => makeCharacter(
  20883. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  20884. {
  20885. side: {
  20886. height: math.unit(13 + 1 / 12, "feet"),
  20887. weight: math.unit(8.5, "tonnes"),
  20888. preyCapacity: math.unit(36, "people"),
  20889. name: "Side",
  20890. image: {
  20891. source: "./media/characters/goldeneye/side.svg",
  20892. extra: 1139/741,
  20893. bottom: 98/1237
  20894. }
  20895. },
  20896. front: {
  20897. height: math.unit(5.1, "feet"),
  20898. weight: math.unit(8.5, "tonnes"),
  20899. preyCapacity: math.unit(36, "people"),
  20900. name: "Front",
  20901. image: {
  20902. source: "./media/characters/goldeneye/front.svg",
  20903. extra: 635/365,
  20904. bottom: 598/1233
  20905. }
  20906. },
  20907. maw: {
  20908. height: math.unit(6.6, "feet"),
  20909. name: "Maw",
  20910. image: {
  20911. source: "./media/characters/goldeneye/maw.svg"
  20912. }
  20913. },
  20914. headFront: {
  20915. height: math.unit(8, "feet"),
  20916. name: "Head (Front)",
  20917. image: {
  20918. source: "./media/characters/goldeneye/head-front.svg"
  20919. }
  20920. },
  20921. headSide: {
  20922. height: math.unit(6, "feet"),
  20923. name: "Head (Side)",
  20924. image: {
  20925. source: "./media/characters/goldeneye/head-side.svg"
  20926. }
  20927. },
  20928. headBack: {
  20929. height: math.unit(8, "feet"),
  20930. name: "Head (Back)",
  20931. image: {
  20932. source: "./media/characters/goldeneye/head-back.svg"
  20933. }
  20934. },
  20935. paw: {
  20936. height: math.unit(3.4, "feet"),
  20937. name: "Paw",
  20938. image: {
  20939. source: "./media/characters/goldeneye/paw.svg"
  20940. }
  20941. },
  20942. toering: {
  20943. height: math.unit(0.45, "feet"),
  20944. name: "Toering",
  20945. image: {
  20946. source: "./media/characters/goldeneye/toering.svg"
  20947. }
  20948. },
  20949. eyes: {
  20950. height: math.unit(0.5, "feet"),
  20951. name: "Eyes",
  20952. image: {
  20953. source: "./media/characters/goldeneye/eyes.svg"
  20954. }
  20955. },
  20956. },
  20957. [
  20958. {
  20959. name: "Normal",
  20960. height: math.unit(13 + 1 / 12, "feet"),
  20961. default: true
  20962. },
  20963. ]
  20964. ))
  20965. characterMakers.push(() => makeCharacter(
  20966. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  20967. {
  20968. front: {
  20969. height: math.unit(6 + 1 / 12, "feet"),
  20970. weight: math.unit(210, "lb"),
  20971. name: "Front",
  20972. image: {
  20973. source: "./media/characters/leonardo-lycheborne/front.svg",
  20974. extra: 776/723,
  20975. bottom: 34/810
  20976. }
  20977. },
  20978. side: {
  20979. height: math.unit(6 + 1 / 12, "feet"),
  20980. weight: math.unit(210, "lb"),
  20981. name: "Side",
  20982. image: {
  20983. source: "./media/characters/leonardo-lycheborne/side.svg",
  20984. extra: 780/728,
  20985. bottom: 12/792
  20986. }
  20987. },
  20988. back: {
  20989. height: math.unit(6 + 1 / 12, "feet"),
  20990. weight: math.unit(210, "lb"),
  20991. name: "Back",
  20992. image: {
  20993. source: "./media/characters/leonardo-lycheborne/back.svg",
  20994. extra: 775/721,
  20995. bottom: 17/792
  20996. }
  20997. },
  20998. hand: {
  20999. height: math.unit(1.08, "feet"),
  21000. name: "Hand",
  21001. image: {
  21002. source: "./media/characters/leonardo-lycheborne/hand.svg"
  21003. }
  21004. },
  21005. foot: {
  21006. height: math.unit(1.32, "feet"),
  21007. name: "Foot",
  21008. image: {
  21009. source: "./media/characters/leonardo-lycheborne/foot.svg"
  21010. }
  21011. },
  21012. maw: {
  21013. height: math.unit(1, "feet"),
  21014. name: "Maw",
  21015. image: {
  21016. source: "./media/characters/leonardo-lycheborne/maw.svg"
  21017. }
  21018. },
  21019. were: {
  21020. height: math.unit(20, "feet"),
  21021. weight: math.unit(7800, "lb"),
  21022. name: "Were",
  21023. image: {
  21024. source: "./media/characters/leonardo-lycheborne/were.svg",
  21025. extra: 1224/1165,
  21026. bottom: 72/1296
  21027. }
  21028. },
  21029. feral: {
  21030. height: math.unit(7.5, "feet"),
  21031. weight: math.unit(600, "lb"),
  21032. name: "Feral",
  21033. image: {
  21034. source: "./media/characters/leonardo-lycheborne/feral.svg",
  21035. extra: 797/702,
  21036. bottom: 139/936
  21037. }
  21038. },
  21039. taur: {
  21040. height: math.unit(11, "feet"),
  21041. weight: math.unit(3300, "lb"),
  21042. name: "Taur",
  21043. image: {
  21044. source: "./media/characters/leonardo-lycheborne/taur.svg",
  21045. extra: 1271/1197,
  21046. bottom: 47/1318
  21047. }
  21048. },
  21049. barghest: {
  21050. height: math.unit(11, "feet"),
  21051. weight: math.unit(1300, "lb"),
  21052. name: "Barghest",
  21053. image: {
  21054. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  21055. extra: 1291/1204,
  21056. bottom: 37/1328
  21057. }
  21058. },
  21059. dick: {
  21060. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  21061. name: "Dick",
  21062. image: {
  21063. source: "./media/characters/leonardo-lycheborne/dick.svg"
  21064. }
  21065. },
  21066. dickWere: {
  21067. height: math.unit((20) / 3.8, "feet"),
  21068. name: "Dick (Were)",
  21069. image: {
  21070. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  21071. }
  21072. },
  21073. },
  21074. [
  21075. {
  21076. name: "Normal",
  21077. height: math.unit(6 + 1 / 12, "feet"),
  21078. default: true
  21079. },
  21080. ]
  21081. ))
  21082. characterMakers.push(() => makeCharacter(
  21083. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  21084. {
  21085. front: {
  21086. height: math.unit(10, "feet"),
  21087. weight: math.unit(350, "lb"),
  21088. name: "Front",
  21089. image: {
  21090. source: "./media/characters/jet/front.svg",
  21091. extra: 2050 / 1980,
  21092. bottom: 0.013
  21093. }
  21094. },
  21095. back: {
  21096. height: math.unit(10, "feet"),
  21097. weight: math.unit(350, "lb"),
  21098. name: "Back",
  21099. image: {
  21100. source: "./media/characters/jet/back.svg",
  21101. extra: 2050 / 1980,
  21102. bottom: 0.013
  21103. }
  21104. },
  21105. },
  21106. [
  21107. {
  21108. name: "Micro",
  21109. height: math.unit(6, "inches")
  21110. },
  21111. {
  21112. name: "Normal",
  21113. height: math.unit(10, "feet"),
  21114. default: true
  21115. },
  21116. {
  21117. name: "Macro",
  21118. height: math.unit(100, "feet")
  21119. },
  21120. ]
  21121. ))
  21122. characterMakers.push(() => makeCharacter(
  21123. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  21124. {
  21125. front: {
  21126. height: math.unit(15, "feet"),
  21127. weight: math.unit(2800, "lb"),
  21128. name: "Front",
  21129. image: {
  21130. source: "./media/characters/tanarath/front.svg",
  21131. extra: 2392 / 2220,
  21132. bottom: 0.03
  21133. }
  21134. },
  21135. back: {
  21136. height: math.unit(15, "feet"),
  21137. weight: math.unit(2800, "lb"),
  21138. name: "Back",
  21139. image: {
  21140. source: "./media/characters/tanarath/back.svg",
  21141. extra: 2392 / 2220,
  21142. bottom: 0.03
  21143. }
  21144. },
  21145. },
  21146. [
  21147. {
  21148. name: "Normal",
  21149. height: math.unit(15, "feet"),
  21150. default: true
  21151. },
  21152. ]
  21153. ))
  21154. characterMakers.push(() => makeCharacter(
  21155. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  21156. {
  21157. front: {
  21158. height: math.unit(7 + 1 / 12, "feet"),
  21159. weight: math.unit(175, "lb"),
  21160. name: "Front",
  21161. image: {
  21162. source: "./media/characters/patty-cattybatty/front.svg",
  21163. extra: 908 / 874,
  21164. bottom: 0.025
  21165. }
  21166. },
  21167. },
  21168. [
  21169. {
  21170. name: "Micro",
  21171. height: math.unit(1, "inch")
  21172. },
  21173. {
  21174. name: "Normal",
  21175. height: math.unit(7 + 1 / 12, "feet")
  21176. },
  21177. {
  21178. name: "Mini Macro",
  21179. height: math.unit(155, "feet")
  21180. },
  21181. {
  21182. name: "Macro",
  21183. height: math.unit(1077, "feet")
  21184. },
  21185. {
  21186. name: "Mega Macro",
  21187. height: math.unit(47650, "feet"),
  21188. default: true
  21189. },
  21190. {
  21191. name: "Giga Macro",
  21192. height: math.unit(440, "miles")
  21193. },
  21194. {
  21195. name: "Tera Macro",
  21196. height: math.unit(8700, "miles")
  21197. },
  21198. {
  21199. name: "Planetary Macro",
  21200. height: math.unit(32700, "miles")
  21201. },
  21202. {
  21203. name: "Solar Macro",
  21204. height: math.unit(550000, "miles")
  21205. },
  21206. {
  21207. name: "Celestial Macro",
  21208. height: math.unit(2.5, "AU")
  21209. },
  21210. ]
  21211. ))
  21212. characterMakers.push(() => makeCharacter(
  21213. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  21214. {
  21215. front: {
  21216. height: math.unit(4 + 5 / 12, "feet"),
  21217. weight: math.unit(90, "lb"),
  21218. name: "Front",
  21219. image: {
  21220. source: "./media/characters/cappu/front.svg",
  21221. extra: 1247 / 1152,
  21222. bottom: 0.012
  21223. }
  21224. },
  21225. },
  21226. [
  21227. {
  21228. name: "Normal",
  21229. height: math.unit(4 + 5 / 12, "feet"),
  21230. default: true
  21231. },
  21232. ]
  21233. ))
  21234. characterMakers.push(() => makeCharacter(
  21235. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  21236. {
  21237. frontDressed: {
  21238. height: math.unit(70, "cm"),
  21239. weight: math.unit(6, "kg"),
  21240. name: "Front (Dressed)",
  21241. image: {
  21242. source: "./media/characters/sebi/front-dressed.svg",
  21243. extra: 713.5 / 686.5,
  21244. bottom: 0.003
  21245. }
  21246. },
  21247. front: {
  21248. height: math.unit(70, "cm"),
  21249. weight: math.unit(5, "kg"),
  21250. name: "Front",
  21251. image: {
  21252. source: "./media/characters/sebi/front.svg",
  21253. extra: 713.5 / 686.5,
  21254. bottom: 0.003
  21255. }
  21256. }
  21257. },
  21258. [
  21259. {
  21260. name: "Normal",
  21261. height: math.unit(70, "cm"),
  21262. default: true
  21263. },
  21264. {
  21265. name: "Macro",
  21266. height: math.unit(8, "meters")
  21267. },
  21268. ]
  21269. ))
  21270. characterMakers.push(() => makeCharacter(
  21271. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21272. {
  21273. front: {
  21274. height: math.unit(6, "feet"),
  21275. weight: math.unit(150, "lb"),
  21276. name: "Front",
  21277. image: {
  21278. source: "./media/characters/typhek/front.svg",
  21279. extra: 1948 / 1929,
  21280. bottom: 0.025
  21281. }
  21282. },
  21283. side: {
  21284. height: math.unit(6, "feet"),
  21285. weight: math.unit(150, "lb"),
  21286. name: "Side",
  21287. image: {
  21288. source: "./media/characters/typhek/side.svg",
  21289. extra: 2034 / 2010,
  21290. bottom: 0.003
  21291. }
  21292. },
  21293. back: {
  21294. height: math.unit(6, "feet"),
  21295. weight: math.unit(150, "lb"),
  21296. name: "Back",
  21297. image: {
  21298. source: "./media/characters/typhek/back.svg",
  21299. extra: 2005 / 1978,
  21300. bottom: 0.004
  21301. }
  21302. },
  21303. palm: {
  21304. height: math.unit(1.2, "feet"),
  21305. name: "Palm",
  21306. image: {
  21307. source: "./media/characters/typhek/palm.svg"
  21308. }
  21309. },
  21310. fist: {
  21311. height: math.unit(1.1, "feet"),
  21312. name: "Fist",
  21313. image: {
  21314. source: "./media/characters/typhek/fist.svg"
  21315. }
  21316. },
  21317. foot: {
  21318. height: math.unit(1.57, "feet"),
  21319. name: "Foot",
  21320. image: {
  21321. source: "./media/characters/typhek/foot.svg"
  21322. }
  21323. },
  21324. sole: {
  21325. height: math.unit(2.05, "feet"),
  21326. name: "Sole",
  21327. image: {
  21328. source: "./media/characters/typhek/sole.svg"
  21329. }
  21330. },
  21331. },
  21332. [
  21333. {
  21334. name: "Macro",
  21335. height: math.unit(40, "stories"),
  21336. default: true
  21337. },
  21338. {
  21339. name: "Megamacro",
  21340. height: math.unit(1, "mile")
  21341. },
  21342. {
  21343. name: "Gigamacro",
  21344. height: math.unit(4000, "solarradii")
  21345. },
  21346. {
  21347. name: "Universal",
  21348. height: math.unit(1.1, "universes")
  21349. }
  21350. ]
  21351. ))
  21352. characterMakers.push(() => makeCharacter(
  21353. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  21354. {
  21355. side: {
  21356. height: math.unit(5 + 7 / 12, "feet"),
  21357. weight: math.unit(150, "lb"),
  21358. name: "Side",
  21359. image: {
  21360. source: "./media/characters/kassy/side.svg",
  21361. extra: 1280 / 1225,
  21362. bottom: 0.002
  21363. }
  21364. },
  21365. front: {
  21366. height: math.unit(5 + 7 / 12, "feet"),
  21367. weight: math.unit(150, "lb"),
  21368. name: "Front",
  21369. image: {
  21370. source: "./media/characters/kassy/front.svg",
  21371. extra: 1280 / 1225,
  21372. bottom: 0.025
  21373. }
  21374. },
  21375. back: {
  21376. height: math.unit(5 + 7 / 12, "feet"),
  21377. weight: math.unit(150, "lb"),
  21378. name: "Back",
  21379. image: {
  21380. source: "./media/characters/kassy/back.svg",
  21381. extra: 1280 / 1225,
  21382. bottom: 0.002
  21383. }
  21384. },
  21385. foot: {
  21386. height: math.unit(1.266, "feet"),
  21387. name: "Foot",
  21388. image: {
  21389. source: "./media/characters/kassy/foot.svg"
  21390. }
  21391. },
  21392. },
  21393. [
  21394. {
  21395. name: "Normal",
  21396. height: math.unit(5 + 7 / 12, "feet")
  21397. },
  21398. {
  21399. name: "Macro",
  21400. height: math.unit(137, "feet"),
  21401. default: true
  21402. },
  21403. {
  21404. name: "Megamacro",
  21405. height: math.unit(1, "mile")
  21406. },
  21407. ]
  21408. ))
  21409. characterMakers.push(() => makeCharacter(
  21410. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  21411. {
  21412. front: {
  21413. height: math.unit(6 + 1 / 12, "feet"),
  21414. weight: math.unit(200, "lb"),
  21415. name: "Front",
  21416. image: {
  21417. source: "./media/characters/neil/front.svg",
  21418. extra: 1326 / 1250,
  21419. bottom: 0.023
  21420. }
  21421. },
  21422. },
  21423. [
  21424. {
  21425. name: "Normal",
  21426. height: math.unit(6 + 1 / 12, "feet"),
  21427. default: true
  21428. },
  21429. {
  21430. name: "Macro",
  21431. height: math.unit(200, "feet")
  21432. },
  21433. ]
  21434. ))
  21435. characterMakers.push(() => makeCharacter(
  21436. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  21437. {
  21438. front: {
  21439. height: math.unit(5 + 9 / 12, "feet"),
  21440. weight: math.unit(190, "lb"),
  21441. name: "Front",
  21442. image: {
  21443. source: "./media/characters/atticus/front.svg",
  21444. extra: 2934 / 2785,
  21445. bottom: 0.025
  21446. }
  21447. },
  21448. },
  21449. [
  21450. {
  21451. name: "Normal",
  21452. height: math.unit(5 + 9 / 12, "feet"),
  21453. default: true
  21454. },
  21455. {
  21456. name: "Macro",
  21457. height: math.unit(180, "feet")
  21458. },
  21459. ]
  21460. ))
  21461. characterMakers.push(() => makeCharacter(
  21462. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  21463. {
  21464. side: {
  21465. height: math.unit(9, "feet"),
  21466. weight: math.unit(650, "lb"),
  21467. name: "Side",
  21468. image: {
  21469. source: "./media/characters/milo/side.svg",
  21470. extra: 2644 / 2310,
  21471. bottom: 0.032
  21472. }
  21473. },
  21474. },
  21475. [
  21476. {
  21477. name: "Normal",
  21478. height: math.unit(9, "feet"),
  21479. default: true
  21480. },
  21481. {
  21482. name: "Macro",
  21483. height: math.unit(300, "feet")
  21484. },
  21485. ]
  21486. ))
  21487. characterMakers.push(() => makeCharacter(
  21488. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  21489. {
  21490. side: {
  21491. height: math.unit(8, "meters"),
  21492. weight: math.unit(90000, "kg"),
  21493. name: "Side",
  21494. image: {
  21495. source: "./media/characters/ijzer/side.svg",
  21496. extra: 2756 / 1600,
  21497. bottom: 0.01
  21498. }
  21499. },
  21500. },
  21501. [
  21502. {
  21503. name: "Small",
  21504. height: math.unit(3, "meters")
  21505. },
  21506. {
  21507. name: "Normal",
  21508. height: math.unit(8, "meters"),
  21509. default: true
  21510. },
  21511. {
  21512. name: "Normal+",
  21513. height: math.unit(10, "meters")
  21514. },
  21515. {
  21516. name: "Bigger",
  21517. height: math.unit(24, "meters")
  21518. },
  21519. {
  21520. name: "Huge",
  21521. height: math.unit(80, "meters")
  21522. },
  21523. ]
  21524. ))
  21525. characterMakers.push(() => makeCharacter(
  21526. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  21527. {
  21528. front: {
  21529. height: math.unit(6 + 2 / 12, "feet"),
  21530. weight: math.unit(153, "lb"),
  21531. name: "Front",
  21532. image: {
  21533. source: "./media/characters/luca-cervicum/front.svg",
  21534. extra: 370 / 327,
  21535. bottom: 0.015
  21536. }
  21537. },
  21538. back: {
  21539. height: math.unit(6 + 2 / 12, "feet"),
  21540. weight: math.unit(153, "lb"),
  21541. name: "Back",
  21542. image: {
  21543. source: "./media/characters/luca-cervicum/back.svg",
  21544. extra: 367 / 333,
  21545. bottom: 0.005
  21546. }
  21547. },
  21548. frontGear: {
  21549. height: math.unit(6 + 2 / 12, "feet"),
  21550. weight: math.unit(173, "lb"),
  21551. name: "Front (Gear)",
  21552. image: {
  21553. source: "./media/characters/luca-cervicum/front-gear.svg",
  21554. extra: 377 / 333,
  21555. bottom: 0.006
  21556. }
  21557. },
  21558. },
  21559. [
  21560. {
  21561. name: "Normal",
  21562. height: math.unit(6 + 2 / 12, "feet"),
  21563. default: true
  21564. },
  21565. ]
  21566. ))
  21567. characterMakers.push(() => makeCharacter(
  21568. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  21569. {
  21570. front: {
  21571. height: math.unit(6 + 1 / 12, "feet"),
  21572. weight: math.unit(304, "lb"),
  21573. name: "Front",
  21574. image: {
  21575. source: "./media/characters/oliver/front.svg",
  21576. extra: 157 / 143,
  21577. bottom: 0.08
  21578. }
  21579. },
  21580. },
  21581. [
  21582. {
  21583. name: "Normal",
  21584. height: math.unit(6 + 1 / 12, "feet"),
  21585. default: true
  21586. },
  21587. ]
  21588. ))
  21589. characterMakers.push(() => makeCharacter(
  21590. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  21591. {
  21592. front: {
  21593. height: math.unit(5 + 7 / 12, "feet"),
  21594. weight: math.unit(140, "lb"),
  21595. name: "Front",
  21596. image: {
  21597. source: "./media/characters/shane/front.svg",
  21598. extra: 304 / 289,
  21599. bottom: 0.005
  21600. }
  21601. },
  21602. },
  21603. [
  21604. {
  21605. name: "Normal",
  21606. height: math.unit(5 + 7 / 12, "feet"),
  21607. default: true
  21608. },
  21609. ]
  21610. ))
  21611. characterMakers.push(() => makeCharacter(
  21612. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  21613. {
  21614. front: {
  21615. height: math.unit(5 + 9 / 12, "feet"),
  21616. weight: math.unit(178, "lb"),
  21617. name: "Front",
  21618. image: {
  21619. source: "./media/characters/shin/front.svg",
  21620. extra: 159 / 151,
  21621. bottom: 0.015
  21622. }
  21623. },
  21624. },
  21625. [
  21626. {
  21627. name: "Normal",
  21628. height: math.unit(5 + 9 / 12, "feet"),
  21629. default: true
  21630. },
  21631. ]
  21632. ))
  21633. characterMakers.push(() => makeCharacter(
  21634. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  21635. {
  21636. front: {
  21637. height: math.unit(5 + 10 / 12, "feet"),
  21638. weight: math.unit(168, "lb"),
  21639. name: "Front",
  21640. image: {
  21641. source: "./media/characters/xerxes/front.svg",
  21642. extra: 282 / 260,
  21643. bottom: 0.045
  21644. }
  21645. },
  21646. },
  21647. [
  21648. {
  21649. name: "Normal",
  21650. height: math.unit(5 + 10 / 12, "feet"),
  21651. default: true
  21652. },
  21653. ]
  21654. ))
  21655. characterMakers.push(() => makeCharacter(
  21656. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  21657. {
  21658. front: {
  21659. height: math.unit(6 + 7 / 12, "feet"),
  21660. weight: math.unit(208, "lb"),
  21661. name: "Front",
  21662. image: {
  21663. source: "./media/characters/chaska/front.svg",
  21664. extra: 332 / 319,
  21665. bottom: 0.015
  21666. }
  21667. },
  21668. },
  21669. [
  21670. {
  21671. name: "Normal",
  21672. height: math.unit(6 + 7 / 12, "feet"),
  21673. default: true
  21674. },
  21675. ]
  21676. ))
  21677. characterMakers.push(() => makeCharacter(
  21678. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  21679. {
  21680. front: {
  21681. height: math.unit(5 + 8 / 12, "feet"),
  21682. weight: math.unit(208, "lb"),
  21683. name: "Front",
  21684. image: {
  21685. source: "./media/characters/enuk/front.svg",
  21686. extra: 437 / 406,
  21687. bottom: 0.02
  21688. }
  21689. },
  21690. },
  21691. [
  21692. {
  21693. name: "Normal",
  21694. height: math.unit(5 + 8 / 12, "feet"),
  21695. default: true
  21696. },
  21697. ]
  21698. ))
  21699. characterMakers.push(() => makeCharacter(
  21700. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  21701. {
  21702. front: {
  21703. height: math.unit(5 + 10 / 12, "feet"),
  21704. weight: math.unit(252, "lb"),
  21705. name: "Front",
  21706. image: {
  21707. source: "./media/characters/bruun/front.svg",
  21708. extra: 197 / 187,
  21709. bottom: 0.012
  21710. }
  21711. },
  21712. },
  21713. [
  21714. {
  21715. name: "Normal",
  21716. height: math.unit(5 + 10 / 12, "feet"),
  21717. default: true
  21718. },
  21719. ]
  21720. ))
  21721. characterMakers.push(() => makeCharacter(
  21722. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  21723. {
  21724. front: {
  21725. height: math.unit(6 + 10 / 12, "feet"),
  21726. weight: math.unit(255, "lb"),
  21727. name: "Front",
  21728. image: {
  21729. source: "./media/characters/alexeev/front.svg",
  21730. extra: 213 / 200,
  21731. bottom: 0.05
  21732. }
  21733. },
  21734. },
  21735. [
  21736. {
  21737. name: "Normal",
  21738. height: math.unit(6 + 10 / 12, "feet"),
  21739. default: true
  21740. },
  21741. ]
  21742. ))
  21743. characterMakers.push(() => makeCharacter(
  21744. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  21745. {
  21746. front: {
  21747. height: math.unit(2 + 8 / 12, "feet"),
  21748. weight: math.unit(22, "lb"),
  21749. name: "Front",
  21750. image: {
  21751. source: "./media/characters/evelyn/front.svg",
  21752. extra: 208 / 180
  21753. }
  21754. },
  21755. },
  21756. [
  21757. {
  21758. name: "Normal",
  21759. height: math.unit(2 + 8 / 12, "feet"),
  21760. default: true
  21761. },
  21762. ]
  21763. ))
  21764. characterMakers.push(() => makeCharacter(
  21765. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  21766. {
  21767. front: {
  21768. height: math.unit(5 + 9 / 12, "feet"),
  21769. weight: math.unit(139, "lb"),
  21770. name: "Front",
  21771. image: {
  21772. source: "./media/characters/inca/front.svg",
  21773. extra: 294 / 291,
  21774. bottom: 0.03
  21775. }
  21776. },
  21777. },
  21778. [
  21779. {
  21780. name: "Normal",
  21781. height: math.unit(5 + 9 / 12, "feet"),
  21782. default: true
  21783. },
  21784. ]
  21785. ))
  21786. characterMakers.push(() => makeCharacter(
  21787. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  21788. {
  21789. front: {
  21790. height: math.unit(6 + 3 / 12, "feet"),
  21791. weight: math.unit(185, "lb"),
  21792. name: "Front",
  21793. image: {
  21794. source: "./media/characters/mera/front.svg",
  21795. extra: 291 / 277,
  21796. bottom: 0.03
  21797. }
  21798. },
  21799. },
  21800. [
  21801. {
  21802. name: "Normal",
  21803. height: math.unit(6 + 3 / 12, "feet"),
  21804. default: true
  21805. },
  21806. ]
  21807. ))
  21808. characterMakers.push(() => makeCharacter(
  21809. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  21810. {
  21811. front: {
  21812. height: math.unit(6 + 7 / 12, "feet"),
  21813. weight: math.unit(160, "lb"),
  21814. name: "Front",
  21815. image: {
  21816. source: "./media/characters/ceres/front.svg",
  21817. extra: 1023 / 950,
  21818. bottom: 0.027
  21819. }
  21820. },
  21821. back: {
  21822. height: math.unit(6 + 7 / 12, "feet"),
  21823. weight: math.unit(160, "lb"),
  21824. name: "Back",
  21825. image: {
  21826. source: "./media/characters/ceres/back.svg",
  21827. extra: 1023 / 950
  21828. }
  21829. },
  21830. },
  21831. [
  21832. {
  21833. name: "Normal",
  21834. height: math.unit(6 + 7 / 12, "feet"),
  21835. default: true
  21836. },
  21837. ]
  21838. ))
  21839. characterMakers.push(() => makeCharacter(
  21840. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  21841. {
  21842. front: {
  21843. height: math.unit(5 + 10 / 12, "feet"),
  21844. weight: math.unit(150, "lb"),
  21845. name: "Front",
  21846. image: {
  21847. source: "./media/characters/kris/front.svg",
  21848. extra: 885 / 803,
  21849. bottom: 0.03
  21850. }
  21851. },
  21852. },
  21853. [
  21854. {
  21855. name: "Normal",
  21856. height: math.unit(5 + 10 / 12, "feet"),
  21857. default: true
  21858. },
  21859. ]
  21860. ))
  21861. characterMakers.push(() => makeCharacter(
  21862. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  21863. {
  21864. front: {
  21865. height: math.unit(7, "feet"),
  21866. weight: math.unit(120, "kg"),
  21867. name: "Front",
  21868. image: {
  21869. source: "./media/characters/taluthus/front.svg",
  21870. extra: 903 / 833,
  21871. bottom: 0.015
  21872. }
  21873. },
  21874. },
  21875. [
  21876. {
  21877. name: "Normal",
  21878. height: math.unit(7, "feet"),
  21879. default: true
  21880. },
  21881. {
  21882. name: "Macro",
  21883. height: math.unit(300, "feet")
  21884. },
  21885. ]
  21886. ))
  21887. characterMakers.push(() => makeCharacter(
  21888. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  21889. {
  21890. front: {
  21891. height: math.unit(5 + 9 / 12, "feet"),
  21892. weight: math.unit(145, "lb"),
  21893. name: "Front",
  21894. image: {
  21895. source: "./media/characters/dawn/front.svg",
  21896. extra: 2094 / 2016,
  21897. bottom: 0.025
  21898. }
  21899. },
  21900. back: {
  21901. height: math.unit(5 + 9 / 12, "feet"),
  21902. weight: math.unit(160, "lb"),
  21903. name: "Back",
  21904. image: {
  21905. source: "./media/characters/dawn/back.svg",
  21906. extra: 2112 / 2080,
  21907. bottom: 0.005
  21908. }
  21909. },
  21910. },
  21911. [
  21912. {
  21913. name: "Normal",
  21914. height: math.unit(6 + 7 / 12, "feet"),
  21915. default: true
  21916. },
  21917. ]
  21918. ))
  21919. characterMakers.push(() => makeCharacter(
  21920. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  21921. {
  21922. anthro: {
  21923. height: math.unit(8 + 3 / 12, "feet"),
  21924. weight: math.unit(450, "lb"),
  21925. name: "Anthro",
  21926. image: {
  21927. source: "./media/characters/arador/anthro.svg",
  21928. extra: 1835 / 1718,
  21929. bottom: 0.025
  21930. }
  21931. },
  21932. feral: {
  21933. height: math.unit(4, "feet"),
  21934. weight: math.unit(200, "lb"),
  21935. name: "Feral",
  21936. image: {
  21937. source: "./media/characters/arador/feral.svg",
  21938. extra: 1683 / 1514,
  21939. bottom: 0.07
  21940. }
  21941. },
  21942. },
  21943. [
  21944. {
  21945. name: "Normal",
  21946. height: math.unit(8 + 3 / 12, "feet")
  21947. },
  21948. {
  21949. name: "Macro",
  21950. height: math.unit(82.5, "feet"),
  21951. default: true
  21952. },
  21953. ]
  21954. ))
  21955. characterMakers.push(() => makeCharacter(
  21956. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  21957. {
  21958. front: {
  21959. height: math.unit(5 + 10 / 12, "feet"),
  21960. weight: math.unit(125, "lb"),
  21961. name: "Front",
  21962. image: {
  21963. source: "./media/characters/dharsi/front.svg",
  21964. extra: 716 / 630,
  21965. bottom: 0.035
  21966. }
  21967. },
  21968. },
  21969. [
  21970. {
  21971. name: "Nano",
  21972. height: math.unit(100, "nm")
  21973. },
  21974. {
  21975. name: "Micro",
  21976. height: math.unit(2, "inches")
  21977. },
  21978. {
  21979. name: "Normal",
  21980. height: math.unit(5 + 10 / 12, "feet"),
  21981. default: true
  21982. },
  21983. {
  21984. name: "Macro",
  21985. height: math.unit(1000, "feet")
  21986. },
  21987. {
  21988. name: "Megamacro",
  21989. height: math.unit(10, "miles")
  21990. },
  21991. {
  21992. name: "Gigamacro",
  21993. height: math.unit(3000, "miles")
  21994. },
  21995. {
  21996. name: "Teramacro",
  21997. height: math.unit(500000, "miles")
  21998. },
  21999. {
  22000. name: "Teramacro+",
  22001. height: math.unit(30, "galaxies")
  22002. },
  22003. ]
  22004. ))
  22005. characterMakers.push(() => makeCharacter(
  22006. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  22007. {
  22008. front: {
  22009. height: math.unit(6, "feet"),
  22010. weight: math.unit(150, "lb"),
  22011. name: "Front",
  22012. image: {
  22013. source: "./media/characters/deathy/front.svg",
  22014. extra: 1552 / 1463,
  22015. bottom: 0.025
  22016. }
  22017. },
  22018. side: {
  22019. height: math.unit(6, "feet"),
  22020. weight: math.unit(150, "lb"),
  22021. name: "Side",
  22022. image: {
  22023. source: "./media/characters/deathy/side.svg",
  22024. extra: 1604 / 1455,
  22025. bottom: 0.025
  22026. }
  22027. },
  22028. back: {
  22029. height: math.unit(6, "feet"),
  22030. weight: math.unit(150, "lb"),
  22031. name: "Back",
  22032. image: {
  22033. source: "./media/characters/deathy/back.svg",
  22034. extra: 1580 / 1463,
  22035. bottom: 0.005
  22036. }
  22037. },
  22038. },
  22039. [
  22040. {
  22041. name: "Micro",
  22042. height: math.unit(5, "millimeters")
  22043. },
  22044. {
  22045. name: "Normal",
  22046. height: math.unit(6 + 5 / 12, "feet"),
  22047. default: true
  22048. },
  22049. ]
  22050. ))
  22051. characterMakers.push(() => makeCharacter(
  22052. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  22053. {
  22054. front: {
  22055. height: math.unit(16, "feet"),
  22056. weight: math.unit(4000, "lb"),
  22057. name: "Front",
  22058. image: {
  22059. source: "./media/characters/juniper/front.svg",
  22060. bottom: 0.04
  22061. }
  22062. },
  22063. },
  22064. [
  22065. {
  22066. name: "Normal",
  22067. height: math.unit(16, "feet"),
  22068. default: true
  22069. },
  22070. ]
  22071. ))
  22072. characterMakers.push(() => makeCharacter(
  22073. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  22074. {
  22075. front: {
  22076. height: math.unit(6, "feet"),
  22077. weight: math.unit(150, "lb"),
  22078. name: "Front",
  22079. image: {
  22080. source: "./media/characters/hipster/front.svg",
  22081. extra: 1312 / 1209,
  22082. bottom: 0.025
  22083. }
  22084. },
  22085. back: {
  22086. height: math.unit(6, "feet"),
  22087. weight: math.unit(150, "lb"),
  22088. name: "Back",
  22089. image: {
  22090. source: "./media/characters/hipster/back.svg",
  22091. extra: 1281 / 1196,
  22092. bottom: 0.01
  22093. }
  22094. },
  22095. },
  22096. [
  22097. {
  22098. name: "Micro",
  22099. height: math.unit(1, "mm")
  22100. },
  22101. {
  22102. name: "Normal",
  22103. height: math.unit(4, "inches"),
  22104. default: true
  22105. },
  22106. {
  22107. name: "Macro",
  22108. height: math.unit(500, "feet")
  22109. },
  22110. {
  22111. name: "Megamacro",
  22112. height: math.unit(1000, "miles")
  22113. },
  22114. ]
  22115. ))
  22116. characterMakers.push(() => makeCharacter(
  22117. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  22118. {
  22119. front: {
  22120. height: math.unit(6, "feet"),
  22121. weight: math.unit(150, "lb"),
  22122. name: "Front",
  22123. image: {
  22124. source: "./media/characters/tendirmuldr/front.svg",
  22125. extra: 1878 / 1772,
  22126. bottom: 0.015
  22127. }
  22128. },
  22129. },
  22130. [
  22131. {
  22132. name: "Megamacro",
  22133. height: math.unit(1500, "miles"),
  22134. default: true
  22135. },
  22136. ]
  22137. ))
  22138. characterMakers.push(() => makeCharacter(
  22139. { name: "Mort", species: ["demon"], tags: ["feral"] },
  22140. {
  22141. front: {
  22142. height: math.unit(14, "feet"),
  22143. weight: math.unit(12000, "lb"),
  22144. name: "Front",
  22145. image: {
  22146. source: "./media/characters/mort/front.svg",
  22147. extra: 365 / 318,
  22148. bottom: 0.01
  22149. }
  22150. },
  22151. side: {
  22152. height: math.unit(14, "feet"),
  22153. weight: math.unit(12000, "lb"),
  22154. name: "Side",
  22155. image: {
  22156. source: "./media/characters/mort/side.svg",
  22157. extra: 365 / 318,
  22158. bottom: 0.052
  22159. },
  22160. default: true
  22161. },
  22162. back: {
  22163. height: math.unit(14, "feet"),
  22164. weight: math.unit(12000, "lb"),
  22165. name: "Back",
  22166. image: {
  22167. source: "./media/characters/mort/back.svg",
  22168. extra: 371 / 332,
  22169. bottom: 0.18
  22170. }
  22171. },
  22172. },
  22173. [
  22174. {
  22175. name: "Normal",
  22176. height: math.unit(14, "feet"),
  22177. default: true
  22178. },
  22179. ]
  22180. ))
  22181. characterMakers.push(() => makeCharacter(
  22182. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  22183. {
  22184. front: {
  22185. height: math.unit(8, "feet"),
  22186. weight: math.unit(1, "ton"),
  22187. name: "Front",
  22188. image: {
  22189. source: "./media/characters/lycoa/front.svg",
  22190. extra: 1836/1728,
  22191. bottom: 81/1917
  22192. }
  22193. },
  22194. back: {
  22195. height: math.unit(8, "feet"),
  22196. weight: math.unit(1, "ton"),
  22197. name: "Back",
  22198. image: {
  22199. source: "./media/characters/lycoa/back.svg",
  22200. extra: 1785/1720,
  22201. bottom: 91/1876
  22202. }
  22203. },
  22204. head: {
  22205. height: math.unit(1.6243, "feet"),
  22206. name: "Head",
  22207. image: {
  22208. source: "./media/characters/lycoa/head.svg",
  22209. extra: 1011/782,
  22210. bottom: 0/1011
  22211. }
  22212. },
  22213. tailmaw: {
  22214. height: math.unit(1.9, "feet"),
  22215. name: "Tailmaw",
  22216. image: {
  22217. source: "./media/characters/lycoa/tailmaw.svg"
  22218. }
  22219. },
  22220. tentacles: {
  22221. height: math.unit(2.1, "feet"),
  22222. name: "Tentacles",
  22223. image: {
  22224. source: "./media/characters/lycoa/tentacles.svg"
  22225. }
  22226. },
  22227. dick: {
  22228. height: math.unit(1.73, "feet"),
  22229. name: "Dick",
  22230. image: {
  22231. source: "./media/characters/lycoa/dick.svg"
  22232. }
  22233. },
  22234. },
  22235. [
  22236. {
  22237. name: "Normal",
  22238. height: math.unit(8, "feet"),
  22239. default: true
  22240. },
  22241. {
  22242. name: "Macro",
  22243. height: math.unit(30, "feet")
  22244. },
  22245. ]
  22246. ))
  22247. characterMakers.push(() => makeCharacter(
  22248. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  22249. {
  22250. front: {
  22251. height: math.unit(4 + 2 / 12, "feet"),
  22252. weight: math.unit(70, "lb"),
  22253. name: "Front",
  22254. image: {
  22255. source: "./media/characters/naldara/front.svg",
  22256. extra: 1664/1387,
  22257. bottom: 81/1745
  22258. },
  22259. form: "anthro",
  22260. default: true
  22261. },
  22262. naga: {
  22263. height: math.unit(20, "feet"),
  22264. weight: math.unit(15000, "kg"),
  22265. name: "Front",
  22266. image: {
  22267. source: "./media/characters/naldara/naga.svg",
  22268. extra: 1590/1396,
  22269. bottom: 285/1875
  22270. },
  22271. form: "naga",
  22272. default: true
  22273. },
  22274. },
  22275. [
  22276. {
  22277. name: "Normal",
  22278. height: math.unit(4 + 2 / 12, "feet"),
  22279. form: "anthro",
  22280. default: true
  22281. },
  22282. {
  22283. name: "Normal",
  22284. height: math.unit(20, "feet"),
  22285. form: "naga",
  22286. default: true
  22287. },
  22288. ],
  22289. {
  22290. "anthro": {
  22291. name: "Anthro",
  22292. default: true
  22293. },
  22294. "naga": {
  22295. name: "Naga"
  22296. }
  22297. }
  22298. ))
  22299. characterMakers.push(() => makeCharacter(
  22300. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  22301. {
  22302. front: {
  22303. height: math.unit(13 + 7 / 12, "feet"),
  22304. weight: math.unit(1500, "lb"),
  22305. name: "Front",
  22306. image: {
  22307. source: "./media/characters/briar/front.svg",
  22308. extra: 1223/1157,
  22309. bottom: 123/1346
  22310. }
  22311. },
  22312. },
  22313. [
  22314. {
  22315. name: "Normal",
  22316. height: math.unit(13 + 7 / 12, "feet"),
  22317. default: true
  22318. },
  22319. ]
  22320. ))
  22321. characterMakers.push(() => makeCharacter(
  22322. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  22323. {
  22324. side: {
  22325. height: math.unit(16, "feet"),
  22326. weight: math.unit(500, "lb"),
  22327. name: "Side",
  22328. image: {
  22329. source: "./media/characters/vanguard/side.svg",
  22330. extra: 1022/914,
  22331. bottom: 30/1052
  22332. }
  22333. },
  22334. sideAlt: {
  22335. height: math.unit(10, "feet"),
  22336. weight: math.unit(500, "lb"),
  22337. name: "Side (Alt)",
  22338. image: {
  22339. source: "./media/characters/vanguard/side-alt.svg",
  22340. extra: 502 / 425,
  22341. bottom: 0.087
  22342. }
  22343. },
  22344. },
  22345. [
  22346. {
  22347. name: "Normal",
  22348. height: math.unit(17.71, "feet"),
  22349. default: true
  22350. },
  22351. ]
  22352. ))
  22353. characterMakers.push(() => makeCharacter(
  22354. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  22355. {
  22356. front: {
  22357. height: math.unit(7.5, "feet"),
  22358. weight: math.unit(2, "lb"),
  22359. name: "Front",
  22360. image: {
  22361. source: "./media/characters/artemis/work-safe-front.svg",
  22362. extra: 1192 / 1075,
  22363. bottom: 0.07
  22364. },
  22365. form: "work-safe",
  22366. default: true
  22367. },
  22368. frontNsfw: {
  22369. height: math.unit(7.5, "feet"),
  22370. weight: math.unit(2, "lb"),
  22371. name: "Front",
  22372. image: {
  22373. source: "./media/characters/artemis/calibrating-front.svg",
  22374. extra: 1192 / 1075,
  22375. bottom: 0.07
  22376. },
  22377. form: "calibrating",
  22378. default: true
  22379. },
  22380. frontNsfwer: {
  22381. height: math.unit(7.5, "feet"),
  22382. weight: math.unit(2, "lb"),
  22383. name: "Front",
  22384. image: {
  22385. source: "./media/characters/artemis/oversize-load-front.svg",
  22386. extra: 1192 / 1075,
  22387. bottom: 0.07
  22388. },
  22389. form: "oversize-load",
  22390. default: true
  22391. },
  22392. side: {
  22393. height: math.unit(7.5, "feet"),
  22394. weight: math.unit(2, "lb"),
  22395. name: "Side",
  22396. image: {
  22397. source: "./media/characters/artemis/work-safe-side.svg",
  22398. extra: 1192 / 1075,
  22399. bottom: 0.07
  22400. },
  22401. form: "work-safe"
  22402. },
  22403. sideNsfw: {
  22404. height: math.unit(7.5, "feet"),
  22405. weight: math.unit(2, "lb"),
  22406. name: "Side",
  22407. image: {
  22408. source: "./media/characters/artemis/calibrating-side.svg",
  22409. extra: 1192 / 1075,
  22410. bottom: 0.07
  22411. },
  22412. form: "calibrating"
  22413. },
  22414. sideNsfwer: {
  22415. height: math.unit(7.5, "feet"),
  22416. weight: math.unit(2, "lb"),
  22417. name: "Side",
  22418. image: {
  22419. source: "./media/characters/artemis/oversize-load-side.svg",
  22420. extra: 1192 / 1075,
  22421. bottom: 0.07
  22422. },
  22423. form: "oversize-load"
  22424. },
  22425. maw: {
  22426. height: math.unit(1.1, "feet"),
  22427. name: "Maw",
  22428. image: {
  22429. source: "./media/characters/artemis/maw.svg"
  22430. },
  22431. form: "work-safe"
  22432. },
  22433. stomach: {
  22434. height: math.unit(0.95, "feet"),
  22435. name: "Stomach",
  22436. image: {
  22437. source: "./media/characters/artemis/stomach.svg"
  22438. },
  22439. form: "work-safe"
  22440. },
  22441. dickCanine: {
  22442. height: math.unit(1, "feet"),
  22443. name: "Dick (Canine)",
  22444. image: {
  22445. source: "./media/characters/artemis/dick-canine.svg"
  22446. },
  22447. form: "calibrating"
  22448. },
  22449. dickEquine: {
  22450. height: math.unit(0.85, "feet"),
  22451. name: "Dick (Equine)",
  22452. image: {
  22453. source: "./media/characters/artemis/dick-equine.svg"
  22454. },
  22455. form: "calibrating"
  22456. },
  22457. dickExotic: {
  22458. height: math.unit(0.85, "feet"),
  22459. name: "Dick (Exotic)",
  22460. image: {
  22461. source: "./media/characters/artemis/dick-exotic.svg"
  22462. },
  22463. form: "calibrating"
  22464. },
  22465. dickCanineBigger: {
  22466. height: math.unit(1 * 1.33, "feet"),
  22467. name: "Dick (Canine)",
  22468. image: {
  22469. source: "./media/characters/artemis/dick-canine.svg"
  22470. },
  22471. form: "oversize-load"
  22472. },
  22473. dickEquineBigger: {
  22474. height: math.unit(0.85 * 1.33, "feet"),
  22475. name: "Dick (Equine)",
  22476. image: {
  22477. source: "./media/characters/artemis/dick-equine.svg"
  22478. },
  22479. form: "oversize-load"
  22480. },
  22481. dickExoticBigger: {
  22482. height: math.unit(0.85 * 1.33, "feet"),
  22483. name: "Dick (Exotic)",
  22484. image: {
  22485. source: "./media/characters/artemis/dick-exotic.svg"
  22486. },
  22487. form: "oversize-load"
  22488. },
  22489. },
  22490. [
  22491. {
  22492. name: "Normal",
  22493. height: math.unit(7.5, "feet"),
  22494. form: "work-safe",
  22495. default: true
  22496. },
  22497. {
  22498. name: "Normal",
  22499. height: math.unit(7.5, "feet"),
  22500. form: "calibrating",
  22501. default: true
  22502. },
  22503. {
  22504. name: "Normal",
  22505. height: math.unit(7.5, "feet"),
  22506. form: "oversize-load",
  22507. default: true
  22508. },
  22509. {
  22510. name: "Enlarged",
  22511. height: math.unit(12, "feet"),
  22512. form: "work-safe",
  22513. },
  22514. {
  22515. name: "Enlarged",
  22516. height: math.unit(12, "feet"),
  22517. form: "calibrating",
  22518. },
  22519. {
  22520. name: "Enlarged",
  22521. height: math.unit(12, "feet"),
  22522. form: "oversize-load",
  22523. },
  22524. ],
  22525. {
  22526. "work-safe": {
  22527. name: "Work-Safe",
  22528. default: true
  22529. },
  22530. "calibrating": {
  22531. name: "Calibrating"
  22532. },
  22533. "oversize-load": {
  22534. name: "Oversize Load"
  22535. }
  22536. }
  22537. ))
  22538. characterMakers.push(() => makeCharacter(
  22539. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  22540. {
  22541. front: {
  22542. height: math.unit(5 + 3 / 12, "feet"),
  22543. weight: math.unit(160, "lb"),
  22544. name: "Front",
  22545. image: {
  22546. source: "./media/characters/kira/front.svg",
  22547. extra: 906 / 786,
  22548. bottom: 0.01
  22549. }
  22550. },
  22551. back: {
  22552. height: math.unit(5 + 3 / 12, "feet"),
  22553. weight: math.unit(160, "lb"),
  22554. name: "Back",
  22555. image: {
  22556. source: "./media/characters/kira/back.svg",
  22557. extra: 882 / 757,
  22558. bottom: 0.005
  22559. }
  22560. },
  22561. frontDressed: {
  22562. height: math.unit(5 + 3 / 12, "feet"),
  22563. weight: math.unit(160, "lb"),
  22564. name: "Front (Dressed)",
  22565. image: {
  22566. source: "./media/characters/kira/front-dressed.svg",
  22567. extra: 906 / 786,
  22568. bottom: 0.01
  22569. }
  22570. },
  22571. beans: {
  22572. height: math.unit(0.92, "feet"),
  22573. name: "Beans",
  22574. image: {
  22575. source: "./media/characters/kira/beans.svg"
  22576. }
  22577. },
  22578. },
  22579. [
  22580. {
  22581. name: "Normal",
  22582. height: math.unit(5 + 3 / 12, "feet"),
  22583. default: true
  22584. },
  22585. ]
  22586. ))
  22587. characterMakers.push(() => makeCharacter(
  22588. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  22589. {
  22590. front: {
  22591. height: math.unit(5 + 4 / 12, "feet"),
  22592. weight: math.unit(145, "lb"),
  22593. name: "Front",
  22594. image: {
  22595. source: "./media/characters/scramble/front.svg",
  22596. extra: 763 / 727,
  22597. bottom: 0.05
  22598. }
  22599. },
  22600. back: {
  22601. height: math.unit(5 + 4 / 12, "feet"),
  22602. weight: math.unit(145, "lb"),
  22603. name: "Back",
  22604. image: {
  22605. source: "./media/characters/scramble/back.svg",
  22606. extra: 826 / 737,
  22607. bottom: 0.002
  22608. }
  22609. },
  22610. },
  22611. [
  22612. {
  22613. name: "Normal",
  22614. height: math.unit(5 + 4 / 12, "feet"),
  22615. default: true
  22616. },
  22617. ]
  22618. ))
  22619. characterMakers.push(() => makeCharacter(
  22620. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  22621. {
  22622. side: {
  22623. height: math.unit(6 + 2 / 12, "feet"),
  22624. weight: math.unit(190, "lb"),
  22625. name: "Side",
  22626. image: {
  22627. source: "./media/characters/biscuit/side.svg",
  22628. extra: 858 / 791,
  22629. bottom: 0.044
  22630. }
  22631. },
  22632. },
  22633. [
  22634. {
  22635. name: "Normal",
  22636. height: math.unit(6 + 2 / 12, "feet"),
  22637. default: true
  22638. },
  22639. ]
  22640. ))
  22641. characterMakers.push(() => makeCharacter(
  22642. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  22643. {
  22644. front: {
  22645. height: math.unit(5 + 2 / 12, "feet"),
  22646. weight: math.unit(120, "lb"),
  22647. name: "Front",
  22648. image: {
  22649. source: "./media/characters/poffin/front.svg",
  22650. extra: 786 / 680,
  22651. bottom: 0.005
  22652. }
  22653. },
  22654. },
  22655. [
  22656. {
  22657. name: "Normal",
  22658. height: math.unit(5 + 2 / 12, "feet"),
  22659. default: true
  22660. },
  22661. ]
  22662. ))
  22663. characterMakers.push(() => makeCharacter(
  22664. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  22665. {
  22666. front: {
  22667. height: math.unit(6 + 3 / 12, "feet"),
  22668. weight: math.unit(519, "lb"),
  22669. name: "Front",
  22670. image: {
  22671. source: "./media/characters/dhari/front.svg",
  22672. extra: 1048 / 946,
  22673. bottom: 0.015
  22674. }
  22675. },
  22676. back: {
  22677. height: math.unit(6 + 3 / 12, "feet"),
  22678. weight: math.unit(519, "lb"),
  22679. name: "Back",
  22680. image: {
  22681. source: "./media/characters/dhari/back.svg",
  22682. extra: 1048 / 931,
  22683. bottom: 0.005
  22684. }
  22685. },
  22686. frontDressed: {
  22687. height: math.unit(6 + 3 / 12, "feet"),
  22688. weight: math.unit(519, "lb"),
  22689. name: "Front (Dressed)",
  22690. image: {
  22691. source: "./media/characters/dhari/front-dressed.svg",
  22692. extra: 1713 / 1546,
  22693. bottom: 0.02
  22694. }
  22695. },
  22696. backDressed: {
  22697. height: math.unit(6 + 3 / 12, "feet"),
  22698. weight: math.unit(519, "lb"),
  22699. name: "Back (Dressed)",
  22700. image: {
  22701. source: "./media/characters/dhari/back-dressed.svg",
  22702. extra: 1699 / 1537,
  22703. bottom: 0.01
  22704. }
  22705. },
  22706. maw: {
  22707. height: math.unit(0.95, "feet"),
  22708. name: "Maw",
  22709. image: {
  22710. source: "./media/characters/dhari/maw.svg"
  22711. }
  22712. },
  22713. wereFront: {
  22714. height: math.unit(12 + 8 / 12, "feet"),
  22715. weight: math.unit(4000, "lb"),
  22716. name: "Front (Were)",
  22717. image: {
  22718. source: "./media/characters/dhari/were-front.svg",
  22719. extra: 1065 / 969,
  22720. bottom: 0.015
  22721. }
  22722. },
  22723. wereBack: {
  22724. height: math.unit(12 + 8 / 12, "feet"),
  22725. weight: math.unit(4000, "lb"),
  22726. name: "Back (Were)",
  22727. image: {
  22728. source: "./media/characters/dhari/were-back.svg",
  22729. extra: 1065 / 969,
  22730. bottom: 0.012
  22731. }
  22732. },
  22733. wereMaw: {
  22734. height: math.unit(0.625, "meters"),
  22735. name: "Maw (Were)",
  22736. image: {
  22737. source: "./media/characters/dhari/were-maw.svg"
  22738. }
  22739. },
  22740. },
  22741. [
  22742. {
  22743. name: "Normal",
  22744. height: math.unit(6 + 3 / 12, "feet"),
  22745. default: true
  22746. },
  22747. ]
  22748. ))
  22749. characterMakers.push(() => makeCharacter(
  22750. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  22751. {
  22752. anthro: {
  22753. height: math.unit(5 + 7 / 12, "feet"),
  22754. weight: math.unit(175, "lb"),
  22755. name: "Anthro",
  22756. image: {
  22757. source: "./media/characters/rena-dyne/anthro.svg",
  22758. extra: 1849 / 1785,
  22759. bottom: 0.005
  22760. }
  22761. },
  22762. taur: {
  22763. height: math.unit(15 + 6 / 12, "feet"),
  22764. weight: math.unit(8000, "lb"),
  22765. name: "Taur",
  22766. image: {
  22767. source: "./media/characters/rena-dyne/taur.svg",
  22768. extra: 2315 / 2234,
  22769. bottom: 0.033
  22770. }
  22771. },
  22772. },
  22773. [
  22774. {
  22775. name: "Normal",
  22776. height: math.unit(5 + 7 / 12, "feet"),
  22777. default: true
  22778. },
  22779. ]
  22780. ))
  22781. characterMakers.push(() => makeCharacter(
  22782. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  22783. {
  22784. front: {
  22785. height: math.unit(8, "feet"),
  22786. weight: math.unit(600, "lb"),
  22787. name: "Front",
  22788. image: {
  22789. source: "./media/characters/weremeep/front.svg",
  22790. extra: 970/849,
  22791. bottom: 7/977
  22792. }
  22793. },
  22794. },
  22795. [
  22796. {
  22797. name: "Normal",
  22798. height: math.unit(8, "feet"),
  22799. default: true
  22800. },
  22801. {
  22802. name: "Lorg",
  22803. height: math.unit(12, "feet")
  22804. },
  22805. {
  22806. name: "Oh Lawd She Comin'",
  22807. height: math.unit(20, "feet")
  22808. },
  22809. ]
  22810. ))
  22811. characterMakers.push(() => makeCharacter(
  22812. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  22813. {
  22814. front: {
  22815. height: math.unit(4, "feet"),
  22816. weight: math.unit(90, "lb"),
  22817. name: "Front",
  22818. image: {
  22819. source: "./media/characters/reza/front.svg",
  22820. extra: 1183 / 1111,
  22821. bottom: 0.017
  22822. }
  22823. },
  22824. back: {
  22825. height: math.unit(4, "feet"),
  22826. weight: math.unit(90, "lb"),
  22827. name: "Back",
  22828. image: {
  22829. source: "./media/characters/reza/back.svg",
  22830. extra: 1183 / 1111,
  22831. bottom: 0.01
  22832. }
  22833. },
  22834. drake: {
  22835. height: math.unit(30, "feet"),
  22836. weight: math.unit(246960, "lb"),
  22837. name: "Drake",
  22838. image: {
  22839. source: "./media/characters/reza/drake.svg",
  22840. extra: 2350 / 2024,
  22841. bottom: 60.7 / 2403
  22842. }
  22843. },
  22844. },
  22845. [
  22846. {
  22847. name: "Normal",
  22848. height: math.unit(4, "feet"),
  22849. default: true
  22850. },
  22851. ]
  22852. ))
  22853. characterMakers.push(() => makeCharacter(
  22854. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  22855. {
  22856. side: {
  22857. height: math.unit(15, "feet"),
  22858. weight: math.unit(14, "tons"),
  22859. name: "Side",
  22860. image: {
  22861. source: "./media/characters/athea/side.svg",
  22862. extra: 960 / 540,
  22863. bottom: 0.003
  22864. }
  22865. },
  22866. sitting: {
  22867. height: math.unit(6 * 2.85, "feet"),
  22868. weight: math.unit(14, "tons"),
  22869. name: "Sitting",
  22870. image: {
  22871. source: "./media/characters/athea/sitting.svg",
  22872. extra: 621 / 581,
  22873. bottom: 0.075
  22874. }
  22875. },
  22876. maw: {
  22877. height: math.unit(7.59498031496063, "feet"),
  22878. name: "Maw",
  22879. image: {
  22880. source: "./media/characters/athea/maw.svg"
  22881. }
  22882. },
  22883. },
  22884. [
  22885. {
  22886. name: "Lap Cat",
  22887. height: math.unit(2.5, "feet")
  22888. },
  22889. {
  22890. name: "Minimacro",
  22891. height: math.unit(15, "feet"),
  22892. default: true
  22893. },
  22894. {
  22895. name: "Macro",
  22896. height: math.unit(120, "feet")
  22897. },
  22898. {
  22899. name: "Macro+",
  22900. height: math.unit(640, "feet")
  22901. },
  22902. {
  22903. name: "Colossus",
  22904. height: math.unit(2.2, "miles")
  22905. },
  22906. ]
  22907. ))
  22908. characterMakers.push(() => makeCharacter(
  22909. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  22910. {
  22911. front: {
  22912. height: math.unit(8 + 8 / 12, "feet"),
  22913. weight: math.unit(130, "kg"),
  22914. name: "Front",
  22915. image: {
  22916. source: "./media/characters/seroko/front.svg",
  22917. extra: 1385 / 1280,
  22918. bottom: 0.025
  22919. }
  22920. },
  22921. back: {
  22922. height: math.unit(8 + 8 / 12, "feet"),
  22923. weight: math.unit(130, "kg"),
  22924. name: "Back",
  22925. image: {
  22926. source: "./media/characters/seroko/back.svg",
  22927. extra: 1369 / 1238,
  22928. bottom: 0.018
  22929. }
  22930. },
  22931. frontDressed: {
  22932. height: math.unit(8 + 8 / 12, "feet"),
  22933. weight: math.unit(130, "kg"),
  22934. name: "Front (Dressed)",
  22935. image: {
  22936. source: "./media/characters/seroko/front-dressed.svg",
  22937. extra: 1366 / 1275,
  22938. bottom: 0.03
  22939. }
  22940. },
  22941. },
  22942. [
  22943. {
  22944. name: "Normal",
  22945. height: math.unit(8 + 8 / 12, "feet"),
  22946. default: true
  22947. },
  22948. ]
  22949. ))
  22950. characterMakers.push(() => makeCharacter(
  22951. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  22952. {
  22953. front: {
  22954. height: math.unit(5.5, "feet"),
  22955. weight: math.unit(160, "lb"),
  22956. name: "Front",
  22957. image: {
  22958. source: "./media/characters/quatzi/front.svg",
  22959. extra: 2346 / 2242,
  22960. bottom: 0.015
  22961. }
  22962. },
  22963. },
  22964. [
  22965. {
  22966. name: "Normal",
  22967. height: math.unit(5.5, "feet"),
  22968. default: true
  22969. },
  22970. {
  22971. name: "Big",
  22972. height: math.unit(7.7, "feet")
  22973. },
  22974. ]
  22975. ))
  22976. characterMakers.push(() => makeCharacter(
  22977. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  22978. {
  22979. front: {
  22980. height: math.unit(5 + 11 / 12, "feet"),
  22981. weight: math.unit(180, "lb"),
  22982. name: "Front",
  22983. image: {
  22984. source: "./media/characters/sen/front.svg",
  22985. extra: 1321 / 1254,
  22986. bottom: 0.015
  22987. }
  22988. },
  22989. side: {
  22990. height: math.unit(5 + 11 / 12, "feet"),
  22991. weight: math.unit(180, "lb"),
  22992. name: "Side",
  22993. image: {
  22994. source: "./media/characters/sen/side.svg",
  22995. extra: 1321 / 1254,
  22996. bottom: 0.007
  22997. }
  22998. },
  22999. back: {
  23000. height: math.unit(5 + 11 / 12, "feet"),
  23001. weight: math.unit(180, "lb"),
  23002. name: "Back",
  23003. image: {
  23004. source: "./media/characters/sen/back.svg",
  23005. extra: 1321 / 1254
  23006. }
  23007. },
  23008. },
  23009. [
  23010. {
  23011. name: "Normal",
  23012. height: math.unit(5 + 11 / 12, "feet"),
  23013. default: true
  23014. },
  23015. ]
  23016. ))
  23017. characterMakers.push(() => makeCharacter(
  23018. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  23019. {
  23020. front: {
  23021. height: math.unit(166.6, "cm"),
  23022. weight: math.unit(66.6, "kg"),
  23023. name: "Front",
  23024. image: {
  23025. source: "./media/characters/fruity/front.svg",
  23026. extra: 1510 / 1386,
  23027. bottom: 0.04
  23028. }
  23029. },
  23030. back: {
  23031. height: math.unit(166.6, "cm"),
  23032. weight: math.unit(66.6, "lb"),
  23033. name: "Back",
  23034. image: {
  23035. source: "./media/characters/fruity/back.svg",
  23036. extra: 1563 / 1435,
  23037. bottom: 0.005
  23038. }
  23039. },
  23040. },
  23041. [
  23042. {
  23043. name: "Normal",
  23044. height: math.unit(166.6, "cm"),
  23045. default: true
  23046. },
  23047. {
  23048. name: "Demonic",
  23049. height: math.unit(166.6, "feet")
  23050. },
  23051. ]
  23052. ))
  23053. characterMakers.push(() => makeCharacter(
  23054. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  23055. {
  23056. side: {
  23057. height: math.unit(10, "feet"),
  23058. weight: math.unit(500, "lb"),
  23059. name: "Side",
  23060. image: {
  23061. source: "./media/characters/zost/side.svg",
  23062. extra: 2870/2533,
  23063. bottom: 252/3122
  23064. }
  23065. },
  23066. mawFront: {
  23067. height: math.unit(1.08, "meters"),
  23068. name: "Maw (Front)",
  23069. image: {
  23070. source: "./media/characters/zost/maw-front.svg"
  23071. }
  23072. },
  23073. mawSide: {
  23074. height: math.unit(2.66, "feet"),
  23075. name: "Maw (Side)",
  23076. image: {
  23077. source: "./media/characters/zost/maw-side.svg"
  23078. }
  23079. },
  23080. wingspan: {
  23081. height: math.unit(7.4, "feet"),
  23082. name: "Wingspan",
  23083. image: {
  23084. source: "./media/characters/zost/wingspan.svg"
  23085. }
  23086. },
  23087. },
  23088. [
  23089. {
  23090. name: "Normal",
  23091. height: math.unit(10, "feet"),
  23092. default: true
  23093. },
  23094. ]
  23095. ))
  23096. characterMakers.push(() => makeCharacter(
  23097. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  23098. {
  23099. front: {
  23100. height: math.unit(5 + 4 / 12, "feet"),
  23101. weight: math.unit(120, "lb"),
  23102. name: "Front",
  23103. image: {
  23104. source: "./media/characters/luci/front.svg",
  23105. extra: 1985 / 1884,
  23106. bottom: 0.04
  23107. }
  23108. },
  23109. back: {
  23110. height: math.unit(5 + 4 / 12, "feet"),
  23111. weight: math.unit(120, "lb"),
  23112. name: "Back",
  23113. image: {
  23114. source: "./media/characters/luci/back.svg",
  23115. extra: 1892 / 1791,
  23116. bottom: 0.002
  23117. }
  23118. },
  23119. },
  23120. [
  23121. {
  23122. name: "Normal",
  23123. height: math.unit(5 + 4 / 12, "feet"),
  23124. default: true
  23125. },
  23126. ]
  23127. ))
  23128. characterMakers.push(() => makeCharacter(
  23129. { name: "2th", species: ["monster"], tags: ["anthro"] },
  23130. {
  23131. front: {
  23132. height: math.unit(1500, "feet"),
  23133. weight: math.unit(3.8e6, "tons"),
  23134. name: "Front",
  23135. image: {
  23136. source: "./media/characters/2th/front.svg",
  23137. extra: 3489 / 3350,
  23138. bottom: 0.1
  23139. }
  23140. },
  23141. foot: {
  23142. height: math.unit(461, "feet"),
  23143. name: "Foot",
  23144. image: {
  23145. source: "./media/characters/2th/foot.svg"
  23146. }
  23147. },
  23148. },
  23149. [
  23150. {
  23151. name: "\"Micro\"",
  23152. height: math.unit(15 + 7 / 12, "feet")
  23153. },
  23154. {
  23155. name: "Normal",
  23156. height: math.unit(1500, "feet"),
  23157. default: true
  23158. },
  23159. {
  23160. name: "Macro",
  23161. height: math.unit(5000, "feet")
  23162. },
  23163. {
  23164. name: "Megamacro",
  23165. height: math.unit(15, "miles")
  23166. },
  23167. {
  23168. name: "Gigamacro",
  23169. height: math.unit(4000, "miles")
  23170. },
  23171. {
  23172. name: "Galactic",
  23173. height: math.unit(50, "AU")
  23174. },
  23175. ]
  23176. ))
  23177. characterMakers.push(() => makeCharacter(
  23178. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  23179. {
  23180. front: {
  23181. height: math.unit(5 + 6 / 12, "feet"),
  23182. weight: math.unit(220, "lb"),
  23183. name: "Front",
  23184. image: {
  23185. source: "./media/characters/amethyst/front.svg",
  23186. extra: 2078 / 2040,
  23187. bottom: 0.045
  23188. }
  23189. },
  23190. back: {
  23191. height: math.unit(5 + 6 / 12, "feet"),
  23192. weight: math.unit(220, "lb"),
  23193. name: "Back",
  23194. image: {
  23195. source: "./media/characters/amethyst/back.svg",
  23196. extra: 2021 / 1989,
  23197. bottom: 0.02
  23198. }
  23199. },
  23200. },
  23201. [
  23202. {
  23203. name: "Normal",
  23204. height: math.unit(5 + 6 / 12, "feet"),
  23205. default: true
  23206. },
  23207. ]
  23208. ))
  23209. characterMakers.push(() => makeCharacter(
  23210. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  23211. {
  23212. front: {
  23213. height: math.unit(4 + 11 / 12, "feet"),
  23214. weight: math.unit(120, "lb"),
  23215. name: "Front",
  23216. image: {
  23217. source: "./media/characters/yumi-akiyama/front.svg",
  23218. extra: 1327 / 1235,
  23219. bottom: 0.02
  23220. }
  23221. },
  23222. back: {
  23223. height: math.unit(4 + 11 / 12, "feet"),
  23224. weight: math.unit(120, "lb"),
  23225. name: "Back",
  23226. image: {
  23227. source: "./media/characters/yumi-akiyama/back.svg",
  23228. extra: 1287 / 1245,
  23229. bottom: 0.002
  23230. }
  23231. },
  23232. },
  23233. [
  23234. {
  23235. name: "Galactic",
  23236. height: math.unit(50, "galaxies"),
  23237. default: true
  23238. },
  23239. {
  23240. name: "Universal",
  23241. height: math.unit(100, "universes")
  23242. },
  23243. ]
  23244. ))
  23245. characterMakers.push(() => makeCharacter(
  23246. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  23247. {
  23248. front: {
  23249. height: math.unit(8, "feet"),
  23250. weight: math.unit(500, "lb"),
  23251. name: "Front",
  23252. image: {
  23253. source: "./media/characters/rifter-yrmori/front.svg",
  23254. extra: 1180 / 1125,
  23255. bottom: 0.02
  23256. }
  23257. },
  23258. back: {
  23259. height: math.unit(8, "feet"),
  23260. weight: math.unit(500, "lb"),
  23261. name: "Back",
  23262. image: {
  23263. source: "./media/characters/rifter-yrmori/back.svg",
  23264. extra: 1190 / 1145,
  23265. bottom: 0.001
  23266. }
  23267. },
  23268. wings: {
  23269. height: math.unit(7.75, "feet"),
  23270. weight: math.unit(500, "lb"),
  23271. name: "Wings",
  23272. image: {
  23273. source: "./media/characters/rifter-yrmori/wings.svg",
  23274. extra: 1357 / 1285
  23275. }
  23276. },
  23277. maw: {
  23278. height: math.unit(0.8, "feet"),
  23279. name: "Maw",
  23280. image: {
  23281. source: "./media/characters/rifter-yrmori/maw.svg"
  23282. }
  23283. },
  23284. mawfront: {
  23285. height: math.unit(1.45, "feet"),
  23286. name: "Maw (Front)",
  23287. image: {
  23288. source: "./media/characters/rifter-yrmori/maw-front.svg"
  23289. }
  23290. },
  23291. },
  23292. [
  23293. {
  23294. name: "Normal",
  23295. height: math.unit(8, "feet"),
  23296. default: true
  23297. },
  23298. {
  23299. name: "Macro",
  23300. height: math.unit(42, "meters")
  23301. },
  23302. ]
  23303. ))
  23304. characterMakers.push(() => makeCharacter(
  23305. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  23306. {
  23307. were: {
  23308. height: math.unit(25 + 6 / 12, "feet"),
  23309. weight: math.unit(10000, "lb"),
  23310. name: "Were",
  23311. image: {
  23312. source: "./media/characters/tahajin/were.svg",
  23313. extra: 801 / 770,
  23314. bottom: 0.042
  23315. }
  23316. },
  23317. aquatic: {
  23318. height: math.unit(6 + 4 / 12, "feet"),
  23319. weight: math.unit(160, "lb"),
  23320. name: "Aquatic",
  23321. image: {
  23322. source: "./media/characters/tahajin/aquatic.svg",
  23323. extra: 572 / 542,
  23324. bottom: 0.04
  23325. }
  23326. },
  23327. chow: {
  23328. height: math.unit(8 + 11 / 12, "feet"),
  23329. weight: math.unit(450, "lb"),
  23330. name: "Chow",
  23331. image: {
  23332. source: "./media/characters/tahajin/chow.svg",
  23333. extra: 660 / 640,
  23334. bottom: 0.015
  23335. }
  23336. },
  23337. demiNaga: {
  23338. height: math.unit(6 + 8 / 12, "feet"),
  23339. weight: math.unit(300, "lb"),
  23340. name: "Demi Naga",
  23341. image: {
  23342. source: "./media/characters/tahajin/demi-naga.svg",
  23343. extra: 643 / 615,
  23344. bottom: 0.1
  23345. }
  23346. },
  23347. data: {
  23348. height: math.unit(5, "inches"),
  23349. weight: math.unit(0.1, "lb"),
  23350. name: "Data",
  23351. image: {
  23352. source: "./media/characters/tahajin/data.svg"
  23353. }
  23354. },
  23355. fluu: {
  23356. height: math.unit(5 + 7 / 12, "feet"),
  23357. weight: math.unit(140, "lb"),
  23358. name: "Fluu",
  23359. image: {
  23360. source: "./media/characters/tahajin/fluu.svg",
  23361. extra: 628 / 592,
  23362. bottom: 0.02
  23363. }
  23364. },
  23365. starWarrior: {
  23366. height: math.unit(4 + 5 / 12, "feet"),
  23367. weight: math.unit(50, "lb"),
  23368. name: "Star Warrior",
  23369. image: {
  23370. source: "./media/characters/tahajin/star-warrior.svg"
  23371. }
  23372. },
  23373. },
  23374. [
  23375. {
  23376. name: "Normal",
  23377. height: math.unit(25 + 6 / 12, "feet"),
  23378. default: true
  23379. },
  23380. ]
  23381. ))
  23382. characterMakers.push(() => makeCharacter(
  23383. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  23384. {
  23385. front: {
  23386. height: math.unit(8, "feet"),
  23387. weight: math.unit(350, "lb"),
  23388. name: "Front",
  23389. image: {
  23390. source: "./media/characters/gabira/front.svg",
  23391. extra: 1261/1154,
  23392. bottom: 51/1312
  23393. }
  23394. },
  23395. back: {
  23396. height: math.unit(8, "feet"),
  23397. weight: math.unit(350, "lb"),
  23398. name: "Back",
  23399. image: {
  23400. source: "./media/characters/gabira/back.svg",
  23401. extra: 1265/1163,
  23402. bottom: 46/1311
  23403. }
  23404. },
  23405. head: {
  23406. height: math.unit(2.85, "feet"),
  23407. name: "Head",
  23408. image: {
  23409. source: "./media/characters/gabira/head.svg"
  23410. }
  23411. },
  23412. },
  23413. [
  23414. {
  23415. name: "Normal",
  23416. height: math.unit(8, "feet"),
  23417. default: true
  23418. },
  23419. ]
  23420. ))
  23421. characterMakers.push(() => makeCharacter(
  23422. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  23423. {
  23424. front: {
  23425. height: math.unit(5 + 3 / 12, "feet"),
  23426. weight: math.unit(137, "lb"),
  23427. name: "Front",
  23428. image: {
  23429. source: "./media/characters/sasha-katraine/front.svg",
  23430. extra: 1745/1694,
  23431. bottom: 37/1782
  23432. }
  23433. },
  23434. back: {
  23435. height: math.unit(5 + 3 / 12, "feet"),
  23436. weight: math.unit(137, "lb"),
  23437. name: "Back",
  23438. image: {
  23439. source: "./media/characters/sasha-katraine/back.svg",
  23440. extra: 1776/1699,
  23441. bottom: 26/1802
  23442. }
  23443. },
  23444. },
  23445. [
  23446. {
  23447. name: "Micro",
  23448. height: math.unit(5, "inches")
  23449. },
  23450. {
  23451. name: "Normal",
  23452. height: math.unit(5 + 3 / 12, "feet"),
  23453. default: true
  23454. },
  23455. ]
  23456. ))
  23457. characterMakers.push(() => makeCharacter(
  23458. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  23459. {
  23460. side: {
  23461. height: math.unit(4, "inches"),
  23462. weight: math.unit(200, "grams"),
  23463. name: "Side",
  23464. image: {
  23465. source: "./media/characters/der/side.svg",
  23466. extra: 719 / 400,
  23467. bottom: 30.6 / 749.9187
  23468. }
  23469. },
  23470. },
  23471. [
  23472. {
  23473. name: "Micro",
  23474. height: math.unit(4, "inches"),
  23475. default: true
  23476. },
  23477. ]
  23478. ))
  23479. characterMakers.push(() => makeCharacter(
  23480. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  23481. {
  23482. side: {
  23483. height: math.unit(30, "meters"),
  23484. weight: math.unit(700, "tonnes"),
  23485. name: "Side",
  23486. image: {
  23487. source: "./media/characters/fixerdragon/side.svg",
  23488. extra: (1293.0514 - 116.03) / 1106.86,
  23489. bottom: 116.03 / 1293.0514
  23490. }
  23491. },
  23492. },
  23493. [
  23494. {
  23495. name: "Planck",
  23496. height: math.unit(1.6e-35, "meters")
  23497. },
  23498. {
  23499. name: "Micro",
  23500. height: math.unit(0.4, "meters")
  23501. },
  23502. {
  23503. name: "Normal",
  23504. height: math.unit(30, "meters"),
  23505. default: true
  23506. },
  23507. {
  23508. name: "Megamacro",
  23509. height: math.unit(1.2, "megameters")
  23510. },
  23511. {
  23512. name: "Teramacro",
  23513. height: math.unit(130, "terameters")
  23514. },
  23515. {
  23516. name: "Yottamacro",
  23517. height: math.unit(6200, "yottameters")
  23518. },
  23519. ]
  23520. ));
  23521. characterMakers.push(() => makeCharacter(
  23522. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  23523. {
  23524. front: {
  23525. height: math.unit(8, "feet"),
  23526. weight: math.unit(250, "lb"),
  23527. name: "Front",
  23528. image: {
  23529. source: "./media/characters/kite/front.svg",
  23530. extra: 2796 / 2659,
  23531. bottom: 0.002
  23532. }
  23533. },
  23534. },
  23535. [
  23536. {
  23537. name: "Normal",
  23538. height: math.unit(8, "feet"),
  23539. default: true
  23540. },
  23541. {
  23542. name: "Macro",
  23543. height: math.unit(360, "feet")
  23544. },
  23545. {
  23546. name: "Megamacro",
  23547. height: math.unit(1500, "feet")
  23548. },
  23549. ]
  23550. ))
  23551. characterMakers.push(() => makeCharacter(
  23552. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  23553. {
  23554. front: {
  23555. height: math.unit(5 + 11/12, "feet"),
  23556. weight: math.unit(170, "lb"),
  23557. name: "Front",
  23558. image: {
  23559. source: "./media/characters/poojawa-vynar/front.svg",
  23560. extra: 1735/1585,
  23561. bottom: 96/1831
  23562. }
  23563. },
  23564. back: {
  23565. height: math.unit(5 + 11/12, "feet"),
  23566. weight: math.unit(170, "lb"),
  23567. name: "Back",
  23568. image: {
  23569. source: "./media/characters/poojawa-vynar/back.svg",
  23570. extra: 1749/1607,
  23571. bottom: 28/1777
  23572. }
  23573. },
  23574. male: {
  23575. height: math.unit(5 + 11/12, "feet"),
  23576. weight: math.unit(170, "lb"),
  23577. name: "Male",
  23578. image: {
  23579. source: "./media/characters/poojawa-vynar/male.svg",
  23580. extra: 1855/1713,
  23581. bottom: 63/1918
  23582. }
  23583. },
  23584. taur: {
  23585. height: math.unit(5 + 11/12, "feet"),
  23586. weight: math.unit(170, "lb"),
  23587. name: "Taur",
  23588. image: {
  23589. source: "./media/characters/poojawa-vynar/taur.svg",
  23590. extra: 1151/1059,
  23591. bottom: 356/1507
  23592. }
  23593. },
  23594. frontDressed: {
  23595. height: math.unit(5 + 11/12, "feet"),
  23596. weight: math.unit(170, "lb"),
  23597. name: "Front (Dressed)",
  23598. image: {
  23599. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  23600. extra: 1735/1585,
  23601. bottom: 96/1831
  23602. }
  23603. },
  23604. backDressed: {
  23605. height: math.unit(5 + 11/12, "feet"),
  23606. weight: math.unit(170, "lb"),
  23607. name: "Back (Dressed)",
  23608. image: {
  23609. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  23610. extra: 1749/1607,
  23611. bottom: 28/1777
  23612. }
  23613. },
  23614. maleDressed: {
  23615. height: math.unit(5 + 11/12, "feet"),
  23616. weight: math.unit(170, "lb"),
  23617. name: "Male (Dressed)",
  23618. image: {
  23619. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  23620. extra: 1855/1713,
  23621. bottom: 63/1918
  23622. }
  23623. },
  23624. taurDressed: {
  23625. height: math.unit(5 + 11/12, "feet"),
  23626. weight: math.unit(170, "lb"),
  23627. name: "Taur (Dressed)",
  23628. image: {
  23629. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  23630. extra: 1151/1059,
  23631. bottom: 356/1507
  23632. }
  23633. },
  23634. maw: {
  23635. height: math.unit(1.46, "feet"),
  23636. name: "Maw",
  23637. image: {
  23638. source: "./media/characters/poojawa-vynar/maw.svg"
  23639. }
  23640. },
  23641. head: {
  23642. height: math.unit(2.34, "feet"),
  23643. name: "Head",
  23644. image: {
  23645. source: "./media/characters/poojawa-vynar/head.svg"
  23646. }
  23647. },
  23648. paw: {
  23649. height: math.unit(1.61, "feet"),
  23650. name: "Paw",
  23651. image: {
  23652. source: "./media/characters/poojawa-vynar/paw.svg"
  23653. }
  23654. },
  23655. pawToering: {
  23656. height: math.unit(1.72, "feet"),
  23657. name: "Paw (Toering)",
  23658. image: {
  23659. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  23660. }
  23661. },
  23662. toering: {
  23663. height: math.unit(2.9, "inches"),
  23664. name: "Toering",
  23665. image: {
  23666. source: "./media/characters/poojawa-vynar/toering.svg"
  23667. }
  23668. },
  23669. shaft: {
  23670. height: math.unit(0.625, "feet"),
  23671. name: "Shaft",
  23672. image: {
  23673. source: "./media/characters/poojawa-vynar/shaft.svg"
  23674. }
  23675. },
  23676. spade: {
  23677. height: math.unit(0.42, "feet"),
  23678. name: "Spade",
  23679. image: {
  23680. source: "./media/characters/poojawa-vynar/spade.svg"
  23681. }
  23682. },
  23683. },
  23684. [
  23685. {
  23686. name: "Shortstack",
  23687. height: math.unit(4, "feet")
  23688. },
  23689. {
  23690. name: "Normal",
  23691. height: math.unit(5 + 11 / 12, "feet"),
  23692. default: true
  23693. },
  23694. {
  23695. name: "Tauric",
  23696. height: math.unit(4, "meters")
  23697. },
  23698. ]
  23699. ))
  23700. characterMakers.push(() => makeCharacter(
  23701. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  23702. {
  23703. front: {
  23704. height: math.unit(293, "meters"),
  23705. weight: math.unit(70400, "tons"),
  23706. name: "Front",
  23707. image: {
  23708. source: "./media/characters/violette/front.svg",
  23709. extra: 1227 / 1180,
  23710. bottom: 0.005
  23711. }
  23712. },
  23713. back: {
  23714. height: math.unit(293, "meters"),
  23715. weight: math.unit(70400, "tons"),
  23716. name: "Back",
  23717. image: {
  23718. source: "./media/characters/violette/back.svg",
  23719. extra: 1227 / 1180,
  23720. bottom: 0.005
  23721. }
  23722. },
  23723. },
  23724. [
  23725. {
  23726. name: "Macro",
  23727. height: math.unit(293, "meters"),
  23728. default: true
  23729. },
  23730. ]
  23731. ))
  23732. characterMakers.push(() => makeCharacter(
  23733. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  23734. {
  23735. front: {
  23736. height: math.unit(1050, "feet"),
  23737. weight: math.unit(200000, "tons"),
  23738. name: "Front",
  23739. image: {
  23740. source: "./media/characters/alessandra/front.svg",
  23741. extra: 960 / 912,
  23742. bottom: 0.06
  23743. }
  23744. },
  23745. },
  23746. [
  23747. {
  23748. name: "Macro",
  23749. height: math.unit(1050, "feet")
  23750. },
  23751. {
  23752. name: "Macro+",
  23753. height: math.unit(900, "meters"),
  23754. default: true
  23755. },
  23756. ]
  23757. ))
  23758. characterMakers.push(() => makeCharacter(
  23759. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  23760. {
  23761. front: {
  23762. height: math.unit(5, "feet"),
  23763. weight: math.unit(187, "lb"),
  23764. name: "Front",
  23765. image: {
  23766. source: "./media/characters/person/front.svg",
  23767. extra: 3087 / 2945,
  23768. bottom: 91 / 3181
  23769. }
  23770. },
  23771. },
  23772. [
  23773. {
  23774. name: "Micro",
  23775. height: math.unit(3, "inches")
  23776. },
  23777. {
  23778. name: "Normal",
  23779. height: math.unit(5, "feet"),
  23780. default: true
  23781. },
  23782. {
  23783. name: "Macro",
  23784. height: math.unit(90, "feet")
  23785. },
  23786. {
  23787. name: "Max Size",
  23788. height: math.unit(280, "feet")
  23789. },
  23790. ]
  23791. ))
  23792. characterMakers.push(() => makeCharacter(
  23793. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  23794. {
  23795. front: {
  23796. height: math.unit(4.5, "meters"),
  23797. weight: math.unit(3200, "lb"),
  23798. name: "Front",
  23799. image: {
  23800. source: "./media/characters/ty/front.svg",
  23801. extra: 1038 / 960,
  23802. bottom: 31.156 / 1068
  23803. }
  23804. },
  23805. back: {
  23806. height: math.unit(4.5, "meters"),
  23807. weight: math.unit(3200, "lb"),
  23808. name: "Back",
  23809. image: {
  23810. source: "./media/characters/ty/back.svg",
  23811. extra: 1044 / 966,
  23812. bottom: 7.48 / 1049
  23813. }
  23814. },
  23815. },
  23816. [
  23817. {
  23818. name: "Normal",
  23819. height: math.unit(4.5, "meters"),
  23820. default: true
  23821. },
  23822. ]
  23823. ))
  23824. characterMakers.push(() => makeCharacter(
  23825. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  23826. {
  23827. front: {
  23828. height: math.unit(5 + 4 / 12, "feet"),
  23829. weight: math.unit(115, "lb"),
  23830. name: "Front",
  23831. image: {
  23832. source: "./media/characters/rocky/front.svg",
  23833. extra: 1012 / 975,
  23834. bottom: 54 / 1066
  23835. }
  23836. },
  23837. },
  23838. [
  23839. {
  23840. name: "Normal",
  23841. height: math.unit(5 + 4 / 12, "feet"),
  23842. default: true
  23843. },
  23844. ]
  23845. ))
  23846. characterMakers.push(() => makeCharacter(
  23847. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  23848. {
  23849. upright: {
  23850. height: math.unit(6, "meters"),
  23851. weight: math.unit(4000, "kg"),
  23852. name: "Upright",
  23853. image: {
  23854. source: "./media/characters/ruin/upright.svg",
  23855. extra: 668 / 661,
  23856. bottom: 42 / 799.8396
  23857. }
  23858. },
  23859. },
  23860. [
  23861. {
  23862. name: "Normal",
  23863. height: math.unit(6, "meters"),
  23864. default: true
  23865. },
  23866. ]
  23867. ))
  23868. characterMakers.push(() => makeCharacter(
  23869. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  23870. {
  23871. front: {
  23872. height: math.unit(5, "feet"),
  23873. weight: math.unit(106, "lb"),
  23874. name: "Front",
  23875. image: {
  23876. source: "./media/characters/robin/front.svg",
  23877. extra: 862 / 799,
  23878. bottom: 42.4 / 914.8856
  23879. }
  23880. },
  23881. },
  23882. [
  23883. {
  23884. name: "Normal",
  23885. height: math.unit(5, "feet"),
  23886. default: true
  23887. },
  23888. ]
  23889. ))
  23890. characterMakers.push(() => makeCharacter(
  23891. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  23892. {
  23893. side: {
  23894. height: math.unit(3, "feet"),
  23895. weight: math.unit(225, "lb"),
  23896. name: "Side",
  23897. image: {
  23898. source: "./media/characters/saian/side.svg",
  23899. extra: 566 / 356,
  23900. bottom: 79.7 / 643
  23901. }
  23902. },
  23903. maw: {
  23904. height: math.unit(2.85, "feet"),
  23905. name: "Maw",
  23906. image: {
  23907. source: "./media/characters/saian/maw.svg"
  23908. }
  23909. },
  23910. },
  23911. [
  23912. {
  23913. name: "Normal",
  23914. height: math.unit(3, "feet"),
  23915. default: true
  23916. },
  23917. ]
  23918. ))
  23919. characterMakers.push(() => makeCharacter(
  23920. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  23921. {
  23922. side: {
  23923. height: math.unit(8, "feet"),
  23924. weight: math.unit(300, "lb"),
  23925. name: "Side",
  23926. image: {
  23927. source: "./media/characters/equus-silvermane/side.svg",
  23928. extra: 2176 / 2050,
  23929. bottom: 65.7 / 2245
  23930. }
  23931. },
  23932. front: {
  23933. height: math.unit(8, "feet"),
  23934. weight: math.unit(300, "lb"),
  23935. name: "Front",
  23936. image: {
  23937. source: "./media/characters/equus-silvermane/front.svg",
  23938. extra: 4633 / 4400,
  23939. bottom: 71.3 / 4706.915
  23940. }
  23941. },
  23942. sideStepping: {
  23943. height: math.unit(8, "feet"),
  23944. weight: math.unit(300, "lb"),
  23945. name: "Side (Stepping)",
  23946. image: {
  23947. source: "./media/characters/equus-silvermane/side-stepping.svg",
  23948. extra: 1968 / 1860,
  23949. bottom: 16.4 / 1989
  23950. }
  23951. },
  23952. },
  23953. [
  23954. {
  23955. name: "Normal",
  23956. height: math.unit(8, "feet")
  23957. },
  23958. {
  23959. name: "Minimacro",
  23960. height: math.unit(75, "feet"),
  23961. default: true
  23962. },
  23963. {
  23964. name: "Macro",
  23965. height: math.unit(150, "feet")
  23966. },
  23967. {
  23968. name: "Macro+",
  23969. height: math.unit(1000, "feet")
  23970. },
  23971. {
  23972. name: "Megamacro",
  23973. height: math.unit(1, "mile")
  23974. },
  23975. ]
  23976. ))
  23977. characterMakers.push(() => makeCharacter(
  23978. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  23979. {
  23980. side: {
  23981. height: math.unit(20, "feet"),
  23982. weight: math.unit(30000, "kg"),
  23983. name: "Side",
  23984. image: {
  23985. source: "./media/characters/windar/side.svg",
  23986. extra: 1491 / 1248,
  23987. bottom: 82.56 / 1568
  23988. }
  23989. },
  23990. },
  23991. [
  23992. {
  23993. name: "Normal",
  23994. height: math.unit(20, "feet"),
  23995. default: true
  23996. },
  23997. ]
  23998. ))
  23999. characterMakers.push(() => makeCharacter(
  24000. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  24001. {
  24002. side: {
  24003. height: math.unit(15.66, "feet"),
  24004. weight: math.unit(150, "lb"),
  24005. name: "Side",
  24006. image: {
  24007. source: "./media/characters/melody/side.svg",
  24008. extra: 1097 / 944,
  24009. bottom: 11.8 / 1109
  24010. }
  24011. },
  24012. sideOutfit: {
  24013. height: math.unit(15.66, "feet"),
  24014. weight: math.unit(150, "lb"),
  24015. name: "Side (Outfit)",
  24016. image: {
  24017. source: "./media/characters/melody/side-outfit.svg",
  24018. extra: 1097 / 944,
  24019. bottom: 11.8 / 1109
  24020. }
  24021. },
  24022. },
  24023. [
  24024. {
  24025. name: "Normal",
  24026. height: math.unit(15.66, "feet"),
  24027. default: true
  24028. },
  24029. ]
  24030. ))
  24031. characterMakers.push(() => makeCharacter(
  24032. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  24033. {
  24034. armoredFront: {
  24035. height: math.unit(8, "feet"),
  24036. weight: math.unit(325, "lb"),
  24037. name: "Front",
  24038. image: {
  24039. source: "./media/characters/windera/armored-front.svg",
  24040. extra: 1830/1598,
  24041. bottom: 151/1981
  24042. },
  24043. form: "armored",
  24044. default: true
  24045. },
  24046. macroFront: {
  24047. height: math.unit(70, "feet"),
  24048. weight: math.unit(315453, "lb"),
  24049. name: "Front",
  24050. image: {
  24051. source: "./media/characters/windera/macro-front.svg",
  24052. extra: 963/883,
  24053. bottom: 23/986
  24054. },
  24055. form: "macro",
  24056. default: true
  24057. },
  24058. },
  24059. [
  24060. {
  24061. name: "Normal",
  24062. height: math.unit(8, "feet"),
  24063. default: true,
  24064. form: "armored"
  24065. },
  24066. {
  24067. name: "Normal",
  24068. height: math.unit(70, "feet"),
  24069. default: true,
  24070. form: "macro"
  24071. },
  24072. ],
  24073. {
  24074. "armored": {
  24075. name: "Armored",
  24076. default: true
  24077. },
  24078. "macro": {
  24079. name: "Macro",
  24080. },
  24081. }
  24082. ))
  24083. characterMakers.push(() => makeCharacter(
  24084. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  24085. {
  24086. front: {
  24087. height: math.unit(28.75, "feet"),
  24088. weight: math.unit(2000, "kg"),
  24089. name: "Front",
  24090. image: {
  24091. source: "./media/characters/sonear/front.svg",
  24092. extra: 1041.1 / 964.9,
  24093. bottom: 53.7 / 1096.6
  24094. }
  24095. },
  24096. },
  24097. [
  24098. {
  24099. name: "Normal",
  24100. height: math.unit(28.75, "feet"),
  24101. default: true
  24102. },
  24103. ]
  24104. ))
  24105. characterMakers.push(() => makeCharacter(
  24106. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  24107. {
  24108. side: {
  24109. height: math.unit(25.5, "feet"),
  24110. weight: math.unit(23000, "kg"),
  24111. name: "Side",
  24112. image: {
  24113. source: "./media/characters/kanara/side.svg"
  24114. }
  24115. },
  24116. },
  24117. [
  24118. {
  24119. name: "Normal",
  24120. height: math.unit(25.5, "feet"),
  24121. default: true
  24122. },
  24123. ]
  24124. ))
  24125. characterMakers.push(() => makeCharacter(
  24126. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  24127. {
  24128. side: {
  24129. height: math.unit(10, "feet"),
  24130. weight: math.unit(1000, "kg"),
  24131. name: "Side",
  24132. image: {
  24133. source: "./media/characters/ereus/side.svg",
  24134. extra: 1157 / 959,
  24135. bottom: 153 / 1312.5
  24136. }
  24137. },
  24138. },
  24139. [
  24140. {
  24141. name: "Normal",
  24142. height: math.unit(10, "feet"),
  24143. default: true
  24144. },
  24145. ]
  24146. ))
  24147. characterMakers.push(() => makeCharacter(
  24148. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  24149. {
  24150. side: {
  24151. height: math.unit(4.5, "feet"),
  24152. weight: math.unit(500, "lb"),
  24153. name: "Side",
  24154. image: {
  24155. source: "./media/characters/e-ter/side.svg",
  24156. extra: 1550 / 1248,
  24157. bottom: 146 / 1694
  24158. }
  24159. },
  24160. },
  24161. [
  24162. {
  24163. name: "Normal",
  24164. height: math.unit(4.5, "feet"),
  24165. default: true
  24166. },
  24167. ]
  24168. ))
  24169. characterMakers.push(() => makeCharacter(
  24170. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  24171. {
  24172. side: {
  24173. height: math.unit(9.7, "feet"),
  24174. weight: math.unit(4000, "kg"),
  24175. name: "Side",
  24176. image: {
  24177. source: "./media/characters/yamie/side.svg"
  24178. }
  24179. },
  24180. },
  24181. [
  24182. {
  24183. name: "Normal",
  24184. height: math.unit(9.7, "feet"),
  24185. default: true
  24186. },
  24187. ]
  24188. ))
  24189. characterMakers.push(() => makeCharacter(
  24190. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  24191. {
  24192. front: {
  24193. height: math.unit(50, "feet"),
  24194. weight: math.unit(50000, "kg"),
  24195. name: "Front",
  24196. image: {
  24197. source: "./media/characters/anders/front.svg",
  24198. extra: 570 / 539,
  24199. bottom: 14.7 / 586.7
  24200. }
  24201. },
  24202. },
  24203. [
  24204. {
  24205. name: "Large",
  24206. height: math.unit(50, "feet")
  24207. },
  24208. {
  24209. name: "Macro",
  24210. height: math.unit(2000, "feet"),
  24211. default: true
  24212. },
  24213. {
  24214. name: "Megamacro",
  24215. height: math.unit(12, "miles")
  24216. },
  24217. ]
  24218. ))
  24219. characterMakers.push(() => makeCharacter(
  24220. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  24221. {
  24222. front: {
  24223. height: math.unit(7 + 2 / 12, "feet"),
  24224. weight: math.unit(300, "lb"),
  24225. name: "Front",
  24226. image: {
  24227. source: "./media/characters/reban/front.svg",
  24228. extra: 1287/1212,
  24229. bottom: 148/1435
  24230. }
  24231. },
  24232. head: {
  24233. height: math.unit(1.95, "feet"),
  24234. name: "Head",
  24235. image: {
  24236. source: "./media/characters/reban/head.svg"
  24237. }
  24238. },
  24239. maw: {
  24240. height: math.unit(0.95, "feet"),
  24241. name: "Maw",
  24242. image: {
  24243. source: "./media/characters/reban/maw.svg"
  24244. }
  24245. },
  24246. foot: {
  24247. height: math.unit(1.65, "feet"),
  24248. name: "Foot",
  24249. image: {
  24250. source: "./media/characters/reban/foot.svg"
  24251. }
  24252. },
  24253. dick: {
  24254. height: math.unit(7 / 5, "feet"),
  24255. name: "Dick",
  24256. image: {
  24257. source: "./media/characters/reban/dick.svg"
  24258. }
  24259. },
  24260. },
  24261. [
  24262. {
  24263. name: "Natural Height",
  24264. height: math.unit(7 + 2 / 12, "feet")
  24265. },
  24266. {
  24267. name: "Macro",
  24268. height: math.unit(500, "feet"),
  24269. default: true
  24270. },
  24271. {
  24272. name: "Canon Height",
  24273. height: math.unit(50, "AU")
  24274. },
  24275. ]
  24276. ))
  24277. characterMakers.push(() => makeCharacter(
  24278. { name: "Terrance Keayes", species: ["vole"], 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/terrance-keayes/front.svg",
  24286. extra: 1.005,
  24287. bottom: 151 / 1615
  24288. }
  24289. },
  24290. side: {
  24291. height: math.unit(6, "feet"),
  24292. weight: math.unit(150, "lb"),
  24293. name: "Side",
  24294. image: {
  24295. source: "./media/characters/terrance-keayes/side.svg",
  24296. extra: 1.005,
  24297. bottom: 129.4 / 1544
  24298. }
  24299. },
  24300. back: {
  24301. height: math.unit(6, "feet"),
  24302. weight: math.unit(150, "lb"),
  24303. name: "Back",
  24304. image: {
  24305. source: "./media/characters/terrance-keayes/back.svg",
  24306. extra: 1.005,
  24307. bottom: 58.4 / 1557.3
  24308. }
  24309. },
  24310. dick: {
  24311. height: math.unit(6 * 0.208, "feet"),
  24312. name: "Dick",
  24313. image: {
  24314. source: "./media/characters/terrance-keayes/dick.svg"
  24315. }
  24316. },
  24317. },
  24318. [
  24319. {
  24320. name: "Canon Height",
  24321. height: math.unit(35, "miles"),
  24322. default: true
  24323. },
  24324. ]
  24325. ))
  24326. characterMakers.push(() => makeCharacter(
  24327. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  24328. {
  24329. front: {
  24330. height: math.unit(6, "feet"),
  24331. weight: math.unit(150, "lb"),
  24332. name: "Front",
  24333. image: {
  24334. source: "./media/characters/ofelia/front.svg",
  24335. extra: 1130/1117,
  24336. bottom: 91/1221
  24337. }
  24338. },
  24339. back: {
  24340. height: math.unit(6, "feet"),
  24341. weight: math.unit(150, "lb"),
  24342. name: "Back",
  24343. image: {
  24344. source: "./media/characters/ofelia/back.svg",
  24345. extra: 1172/1159,
  24346. bottom: 28/1200
  24347. }
  24348. },
  24349. maw: {
  24350. height: math.unit(1, "feet"),
  24351. name: "Maw",
  24352. image: {
  24353. source: "./media/characters/ofelia/maw.svg"
  24354. }
  24355. },
  24356. foot: {
  24357. height: math.unit(1.949, "feet"),
  24358. name: "Foot",
  24359. image: {
  24360. source: "./media/characters/ofelia/foot.svg"
  24361. }
  24362. },
  24363. },
  24364. [
  24365. {
  24366. name: "Canon Height",
  24367. height: math.unit(2000, "miles"),
  24368. default: true
  24369. },
  24370. ]
  24371. ))
  24372. characterMakers.push(() => makeCharacter(
  24373. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  24374. {
  24375. front: {
  24376. height: math.unit(6, "feet"),
  24377. weight: math.unit(150, "lb"),
  24378. name: "Front",
  24379. image: {
  24380. source: "./media/characters/samuel/front.svg",
  24381. extra: 265 / 258,
  24382. bottom: 2 / 266.1566
  24383. }
  24384. },
  24385. },
  24386. [
  24387. {
  24388. name: "Macro",
  24389. height: math.unit(100, "feet"),
  24390. default: true
  24391. },
  24392. {
  24393. name: "Full Size",
  24394. height: math.unit(1000, "miles")
  24395. },
  24396. ]
  24397. ))
  24398. characterMakers.push(() => makeCharacter(
  24399. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  24400. {
  24401. front: {
  24402. height: math.unit(6, "feet"),
  24403. weight: math.unit(300, "lb"),
  24404. name: "Front",
  24405. image: {
  24406. source: "./media/characters/beishir-kiel/front.svg",
  24407. extra: 569 / 547,
  24408. bottom: 41.9 / 609
  24409. }
  24410. },
  24411. maw: {
  24412. height: math.unit(6 * 0.202, "feet"),
  24413. name: "Maw",
  24414. image: {
  24415. source: "./media/characters/beishir-kiel/maw.svg"
  24416. }
  24417. },
  24418. },
  24419. [
  24420. {
  24421. name: "Macro",
  24422. height: math.unit(300, "feet"),
  24423. default: true
  24424. },
  24425. ]
  24426. ))
  24427. characterMakers.push(() => makeCharacter(
  24428. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  24429. {
  24430. front: {
  24431. height: math.unit(5 + 7/12, "feet"),
  24432. weight: math.unit(120, "lb"),
  24433. name: "Front",
  24434. image: {
  24435. source: "./media/characters/logan-grey/front.svg",
  24436. extra: 1836/1738,
  24437. bottom: 108/1944
  24438. }
  24439. },
  24440. back: {
  24441. height: math.unit(5 + 7/12, "feet"),
  24442. weight: math.unit(120, "lb"),
  24443. name: "Back",
  24444. image: {
  24445. source: "./media/characters/logan-grey/back.svg",
  24446. extra: 1880/1794,
  24447. bottom: 24/1904
  24448. }
  24449. },
  24450. frontSfw: {
  24451. height: math.unit(5 + 7/12, "feet"),
  24452. weight: math.unit(120, "lb"),
  24453. name: "Front (SFW)",
  24454. image: {
  24455. source: "./media/characters/logan-grey/front-sfw.svg",
  24456. extra: 1836/1738,
  24457. bottom: 108/1944
  24458. }
  24459. },
  24460. backSfw: {
  24461. height: math.unit(5 + 7/12, "feet"),
  24462. weight: math.unit(120, "lb"),
  24463. name: "Back (SFW)",
  24464. image: {
  24465. source: "./media/characters/logan-grey/back-sfw.svg",
  24466. extra: 1880/1794,
  24467. bottom: 24/1904
  24468. }
  24469. },
  24470. hands: {
  24471. height: math.unit(0.84, "feet"),
  24472. name: "Hands",
  24473. image: {
  24474. source: "./media/characters/logan-grey/hands.svg"
  24475. }
  24476. },
  24477. paws: {
  24478. height: math.unit(0.72, "feet"),
  24479. name: "Paws",
  24480. image: {
  24481. source: "./media/characters/logan-grey/paws.svg"
  24482. }
  24483. },
  24484. cock: {
  24485. height: math.unit(1.45, "feet"),
  24486. name: "Cock",
  24487. image: {
  24488. source: "./media/characters/logan-grey/cock.svg"
  24489. }
  24490. },
  24491. cockAlt: {
  24492. height: math.unit(1.437, "feet"),
  24493. name: "Cock (alt)",
  24494. image: {
  24495. source: "./media/characters/logan-grey/cock-alt.svg"
  24496. }
  24497. },
  24498. },
  24499. [
  24500. {
  24501. name: "Normal",
  24502. height: math.unit(5 + 8 / 12, "feet")
  24503. },
  24504. {
  24505. name: "The 500 Foot Femboy",
  24506. height: math.unit(500, "feet"),
  24507. default: true
  24508. },
  24509. {
  24510. name: "Megmacro",
  24511. height: math.unit(20, "miles")
  24512. },
  24513. ]
  24514. ))
  24515. characterMakers.push(() => makeCharacter(
  24516. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  24517. {
  24518. front: {
  24519. height: math.unit(8 + 2 / 12, "feet"),
  24520. weight: math.unit(275, "lb"),
  24521. name: "Front",
  24522. image: {
  24523. source: "./media/characters/draganta/front.svg",
  24524. extra: 1177 / 1135,
  24525. bottom: 33.46 / 1212.1
  24526. }
  24527. },
  24528. },
  24529. [
  24530. {
  24531. name: "Normal",
  24532. height: math.unit(8 + 6 / 12, "feet"),
  24533. default: true
  24534. },
  24535. {
  24536. name: "Macro",
  24537. height: math.unit(150, "feet")
  24538. },
  24539. {
  24540. name: "Megamacro",
  24541. height: math.unit(1000, "miles")
  24542. },
  24543. ]
  24544. ))
  24545. characterMakers.push(() => makeCharacter(
  24546. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  24547. {
  24548. front: {
  24549. height: math.unit(1.72, "m"),
  24550. weight: math.unit(80, "lb"),
  24551. name: "Front",
  24552. image: {
  24553. source: "./media/characters/voski/front.svg",
  24554. extra: 2076.22 / 2022.4,
  24555. bottom: 102.7 / 2177.3866
  24556. }
  24557. },
  24558. frontFlaccid: {
  24559. height: math.unit(1.72, "m"),
  24560. weight: math.unit(80, "lb"),
  24561. name: "Front (Flaccid)",
  24562. image: {
  24563. source: "./media/characters/voski/front-flaccid.svg",
  24564. extra: 2076.22 / 2022.4,
  24565. bottom: 102.7 / 2177.3866
  24566. }
  24567. },
  24568. frontErect: {
  24569. height: math.unit(1.72, "m"),
  24570. weight: math.unit(80, "lb"),
  24571. name: "Front (Erect)",
  24572. image: {
  24573. source: "./media/characters/voski/front-erect.svg",
  24574. extra: 2076.22 / 2022.4,
  24575. bottom: 102.7 / 2177.3866
  24576. }
  24577. },
  24578. back: {
  24579. height: math.unit(1.72, "m"),
  24580. weight: math.unit(80, "lb"),
  24581. name: "Back",
  24582. image: {
  24583. source: "./media/characters/voski/back.svg",
  24584. extra: 2104 / 2051,
  24585. bottom: 10.45 / 2113.63
  24586. }
  24587. },
  24588. },
  24589. [
  24590. {
  24591. name: "Normal",
  24592. height: math.unit(1.72, "m")
  24593. },
  24594. {
  24595. name: "Macro",
  24596. height: math.unit(55, "m"),
  24597. default: true
  24598. },
  24599. {
  24600. name: "Macro+",
  24601. height: math.unit(300, "m")
  24602. },
  24603. {
  24604. name: "Macro++",
  24605. height: math.unit(700, "m")
  24606. },
  24607. {
  24608. name: "Macro+++",
  24609. height: math.unit(4500, "m")
  24610. },
  24611. {
  24612. name: "Macro++++",
  24613. height: math.unit(45, "km")
  24614. },
  24615. {
  24616. name: "Macro+++++",
  24617. height: math.unit(1220, "km")
  24618. },
  24619. ]
  24620. ))
  24621. characterMakers.push(() => makeCharacter(
  24622. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  24623. {
  24624. front: {
  24625. height: math.unit(2.3, "m"),
  24626. weight: math.unit(304, "kg"),
  24627. name: "Front",
  24628. image: {
  24629. source: "./media/characters/icowom-lee/front.svg",
  24630. extra: 985 / 955,
  24631. bottom: 25.4 / 1012
  24632. }
  24633. },
  24634. fronttentacles: {
  24635. height: math.unit(2.3, "m"),
  24636. weight: math.unit(304, "kg"),
  24637. name: "Front-tentacles",
  24638. image: {
  24639. source: "./media/characters/icowom-lee/front-tentacles.svg",
  24640. extra: 985 / 955,
  24641. bottom: 25.4 / 1012
  24642. }
  24643. },
  24644. back: {
  24645. height: math.unit(2.3, "m"),
  24646. weight: math.unit(304, "kg"),
  24647. name: "Back",
  24648. image: {
  24649. source: "./media/characters/icowom-lee/back.svg",
  24650. extra: 975 / 954,
  24651. bottom: 9.5 / 985
  24652. }
  24653. },
  24654. backtentacles: {
  24655. height: math.unit(2.3, "m"),
  24656. weight: math.unit(304, "kg"),
  24657. name: "Back-tentacles",
  24658. image: {
  24659. source: "./media/characters/icowom-lee/back-tentacles.svg",
  24660. extra: 975 / 954,
  24661. bottom: 9.5 / 985
  24662. }
  24663. },
  24664. frontDressed: {
  24665. height: math.unit(2.3, "m"),
  24666. weight: math.unit(304, "kg"),
  24667. name: "Front (Dressed)",
  24668. image: {
  24669. source: "./media/characters/icowom-lee/front-dressed.svg",
  24670. extra: 3076 / 2933,
  24671. bottom: 51.4 / 3125.1889
  24672. }
  24673. },
  24674. rump: {
  24675. height: math.unit(0.776, "meters"),
  24676. name: "Rump",
  24677. image: {
  24678. source: "./media/characters/icowom-lee/rump.svg"
  24679. }
  24680. },
  24681. genitals: {
  24682. height: math.unit(0.78, "meters"),
  24683. name: "Genitals",
  24684. image: {
  24685. source: "./media/characters/icowom-lee/genitals.svg"
  24686. }
  24687. },
  24688. },
  24689. [
  24690. {
  24691. name: "Normal",
  24692. height: math.unit(2.3, "meters"),
  24693. default: true
  24694. },
  24695. {
  24696. name: "Macro",
  24697. height: math.unit(94, "meters"),
  24698. default: true
  24699. },
  24700. ]
  24701. ))
  24702. characterMakers.push(() => makeCharacter(
  24703. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  24704. {
  24705. front: {
  24706. height: math.unit(22, "meters"),
  24707. weight: math.unit(21000, "kg"),
  24708. name: "Front",
  24709. image: {
  24710. source: "./media/characters/shock-diamond/front.svg",
  24711. extra: 2204 / 2053,
  24712. bottom: 65 / 2239.47
  24713. }
  24714. },
  24715. frontNude: {
  24716. height: math.unit(22, "meters"),
  24717. weight: math.unit(21000, "kg"),
  24718. name: "Front (Nude)",
  24719. image: {
  24720. source: "./media/characters/shock-diamond/front-nude.svg",
  24721. extra: 2514 / 2285,
  24722. bottom: 13 / 2527.56
  24723. }
  24724. },
  24725. },
  24726. [
  24727. {
  24728. name: "Normal",
  24729. height: math.unit(3, "meters")
  24730. },
  24731. {
  24732. name: "Macro",
  24733. height: math.unit(22, "meters"),
  24734. default: true
  24735. },
  24736. ]
  24737. ))
  24738. characterMakers.push(() => makeCharacter(
  24739. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  24740. {
  24741. front: {
  24742. height: math.unit(5 + 4/12, "feet"),
  24743. weight: math.unit(125, "lb"),
  24744. name: "Front",
  24745. image: {
  24746. source: "./media/characters/rory/front.svg",
  24747. extra: 1790/1681,
  24748. bottom: 66/1856
  24749. },
  24750. form: "normal",
  24751. default: true
  24752. },
  24753. back: {
  24754. height: math.unit(5 + 4/12, "feet"),
  24755. weight: math.unit(125, "lb"),
  24756. name: "Back",
  24757. image: {
  24758. source: "./media/characters/rory/back.svg",
  24759. extra: 1805/1690,
  24760. bottom: 56/1861
  24761. },
  24762. form: "normal"
  24763. },
  24764. frontDressed: {
  24765. height: math.unit(5 + 4/12, "feet"),
  24766. weight: math.unit(125, "lb"),
  24767. name: "Front (Dressed)",
  24768. image: {
  24769. source: "./media/characters/rory/front-dressed.svg",
  24770. extra: 1790/1681,
  24771. bottom: 66/1856
  24772. },
  24773. form: "normal"
  24774. },
  24775. backDressed: {
  24776. height: math.unit(5 + 4/12, "feet"),
  24777. weight: math.unit(125, "lb"),
  24778. name: "Back (Dressed)",
  24779. image: {
  24780. source: "./media/characters/rory/back-dressed.svg",
  24781. extra: 1805/1690,
  24782. bottom: 56/1861
  24783. },
  24784. form: "normal"
  24785. },
  24786. frontNsfw: {
  24787. height: math.unit(5 + 4/12, "feet"),
  24788. weight: math.unit(125, "lb"),
  24789. name: "Front (NSFW)",
  24790. image: {
  24791. source: "./media/characters/rory/front-nsfw.svg",
  24792. extra: 1790/1681,
  24793. bottom: 66/1856
  24794. },
  24795. form: "normal"
  24796. },
  24797. backNsfw: {
  24798. height: math.unit(5 + 4/12, "feet"),
  24799. weight: math.unit(125, "lb"),
  24800. name: "Back (NSFW)",
  24801. image: {
  24802. source: "./media/characters/rory/back-nsfw.svg",
  24803. extra: 1805/1690,
  24804. bottom: 56/1861
  24805. },
  24806. form: "normal"
  24807. },
  24808. dick: {
  24809. height: math.unit(0.8, "feet"),
  24810. name: "Dick",
  24811. image: {
  24812. source: "./media/characters/rory/dick.svg"
  24813. },
  24814. form: "normal"
  24815. },
  24816. thicc_front: {
  24817. height: math.unit(5 + 4/12, "feet"),
  24818. weight: math.unit(195, "lb"),
  24819. name: "Front",
  24820. image: {
  24821. source: "./media/characters/rory/thicc-front.svg",
  24822. extra: 1220/1100,
  24823. bottom: 103/1323
  24824. },
  24825. form: "thicc",
  24826. default: true
  24827. },
  24828. thicc_back: {
  24829. height: math.unit(5 + 4/12, "feet"),
  24830. weight: math.unit(195, "lb"),
  24831. name: "Back",
  24832. image: {
  24833. source: "./media/characters/rory/thicc-back.svg",
  24834. extra: 1166/1086,
  24835. bottom: 35/1201
  24836. },
  24837. form: "thicc"
  24838. },
  24839. },
  24840. [
  24841. {
  24842. name: "Micro",
  24843. height: math.unit(3, "inches"),
  24844. allForms: true
  24845. },
  24846. {
  24847. name: "Normal",
  24848. height: math.unit(5 + 4/12, "feet"),
  24849. allForms: true,
  24850. default: true
  24851. },
  24852. {
  24853. name: "Macro",
  24854. height: math.unit(90, "feet"),
  24855. allForms: true
  24856. },
  24857. {
  24858. name: "Supercharged",
  24859. height: math.unit(270, "feet"),
  24860. allForms: true
  24861. },
  24862. ],
  24863. {
  24864. "normal": {
  24865. name: "Normal",
  24866. default: true
  24867. },
  24868. "thicc": {
  24869. name: "Thicc",
  24870. },
  24871. }
  24872. ))
  24873. characterMakers.push(() => makeCharacter(
  24874. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  24875. {
  24876. front: {
  24877. height: math.unit(5 + 9 / 12, "feet"),
  24878. weight: math.unit(190, "lb"),
  24879. name: "Front",
  24880. image: {
  24881. source: "./media/characters/sprisk/front.svg",
  24882. extra: 1225 / 1180,
  24883. bottom: 42.7 / 1266.4
  24884. }
  24885. },
  24886. frontNsfw: {
  24887. height: math.unit(5 + 9 / 12, "feet"),
  24888. weight: math.unit(190, "lb"),
  24889. name: "Front (NSFW)",
  24890. image: {
  24891. source: "./media/characters/sprisk/front-nsfw.svg",
  24892. extra: 1225 / 1180,
  24893. bottom: 42.7 / 1266.4
  24894. }
  24895. },
  24896. back: {
  24897. height: math.unit(5 + 9 / 12, "feet"),
  24898. weight: math.unit(190, "lb"),
  24899. name: "Back",
  24900. image: {
  24901. source: "./media/characters/sprisk/back.svg",
  24902. extra: 1247 / 1200,
  24903. bottom: 5.6 / 1253.04
  24904. }
  24905. },
  24906. },
  24907. [
  24908. {
  24909. name: "Tiny",
  24910. height: math.unit(2, "inches")
  24911. },
  24912. {
  24913. name: "Normal",
  24914. height: math.unit(5 + 9 / 12, "feet"),
  24915. default: true
  24916. },
  24917. {
  24918. name: "Mini Macro",
  24919. height: math.unit(18, "feet")
  24920. },
  24921. {
  24922. name: "Macro",
  24923. height: math.unit(100, "feet")
  24924. },
  24925. {
  24926. name: "MACRO",
  24927. height: math.unit(50, "miles")
  24928. },
  24929. {
  24930. name: "M A C R O",
  24931. height: math.unit(300, "miles")
  24932. },
  24933. ]
  24934. ))
  24935. characterMakers.push(() => makeCharacter(
  24936. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  24937. {
  24938. side: {
  24939. height: math.unit(15.6, "meters"),
  24940. weight: math.unit(700000, "kg"),
  24941. name: "Side",
  24942. image: {
  24943. source: "./media/characters/bunsen/side.svg",
  24944. extra: 1644 / 358
  24945. }
  24946. },
  24947. foot: {
  24948. height: math.unit(1.611 * 1644 / 358, "meter"),
  24949. name: "Foot",
  24950. image: {
  24951. source: "./media/characters/bunsen/foot.svg"
  24952. }
  24953. },
  24954. },
  24955. [
  24956. {
  24957. name: "Small",
  24958. height: math.unit(10, "feet")
  24959. },
  24960. {
  24961. name: "Normal",
  24962. height: math.unit(15.6, "meters"),
  24963. default: true
  24964. },
  24965. ]
  24966. ))
  24967. characterMakers.push(() => makeCharacter(
  24968. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  24969. {
  24970. front: {
  24971. height: math.unit(4 + 11 / 12, "feet"),
  24972. weight: math.unit(140, "lb"),
  24973. name: "Front",
  24974. image: {
  24975. source: "./media/characters/sesh/front.svg",
  24976. extra: 3420 / 3231,
  24977. bottom: 72 / 3949.5
  24978. }
  24979. },
  24980. },
  24981. [
  24982. {
  24983. name: "Normal",
  24984. height: math.unit(4 + 11 / 12, "feet")
  24985. },
  24986. {
  24987. name: "Grown",
  24988. height: math.unit(15, "feet"),
  24989. default: true
  24990. },
  24991. {
  24992. name: "Macro",
  24993. height: math.unit(1500, "feet")
  24994. },
  24995. {
  24996. name: "Megamacro",
  24997. height: math.unit(30, "miles")
  24998. },
  24999. {
  25000. name: "Continental",
  25001. height: math.unit(3000, "miles")
  25002. },
  25003. {
  25004. name: "Gravity Mass",
  25005. height: math.unit(300000, "miles")
  25006. },
  25007. {
  25008. name: "Planet Buster",
  25009. height: math.unit(30000000, "miles")
  25010. },
  25011. {
  25012. name: "Big",
  25013. height: math.unit(3000000000, "miles")
  25014. },
  25015. ]
  25016. ))
  25017. characterMakers.push(() => makeCharacter(
  25018. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  25019. {
  25020. front: {
  25021. height: math.unit(9, "feet"),
  25022. weight: math.unit(350, "lb"),
  25023. name: "Front",
  25024. image: {
  25025. source: "./media/characters/pepper/front.svg",
  25026. extra: 1448 / 1312,
  25027. bottom: 9.4 / 1457.88
  25028. }
  25029. },
  25030. back: {
  25031. height: math.unit(9, "feet"),
  25032. weight: math.unit(350, "lb"),
  25033. name: "Back",
  25034. image: {
  25035. source: "./media/characters/pepper/back.svg",
  25036. extra: 1423 / 1300,
  25037. bottom: 4.6 / 1429
  25038. }
  25039. },
  25040. maw: {
  25041. height: math.unit(0.932, "feet"),
  25042. name: "Maw",
  25043. image: {
  25044. source: "./media/characters/pepper/maw.svg"
  25045. }
  25046. },
  25047. },
  25048. [
  25049. {
  25050. name: "Normal",
  25051. height: math.unit(9, "feet"),
  25052. default: true
  25053. },
  25054. ]
  25055. ))
  25056. characterMakers.push(() => makeCharacter(
  25057. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  25058. {
  25059. front: {
  25060. height: math.unit(6, "feet"),
  25061. weight: math.unit(150, "lb"),
  25062. name: "Front",
  25063. image: {
  25064. source: "./media/characters/maelstrom/front.svg",
  25065. extra: 2100 / 1883,
  25066. bottom: 94 / 2196.7
  25067. }
  25068. },
  25069. },
  25070. [
  25071. {
  25072. name: "Less Kaiju",
  25073. height: math.unit(200, "feet")
  25074. },
  25075. {
  25076. name: "Kaiju",
  25077. height: math.unit(400, "feet"),
  25078. default: true
  25079. },
  25080. {
  25081. name: "Kaiju-er",
  25082. height: math.unit(600, "feet")
  25083. },
  25084. ]
  25085. ))
  25086. characterMakers.push(() => makeCharacter(
  25087. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  25088. {
  25089. front: {
  25090. height: math.unit(6 + 5 / 12, "feet"),
  25091. weight: math.unit(180, "lb"),
  25092. name: "Front",
  25093. image: {
  25094. source: "./media/characters/lexir/front.svg",
  25095. extra: 180 / 172,
  25096. bottom: 12 / 192
  25097. }
  25098. },
  25099. back: {
  25100. height: math.unit(6 + 5 / 12, "feet"),
  25101. weight: math.unit(180, "lb"),
  25102. name: "Back",
  25103. image: {
  25104. source: "./media/characters/lexir/back.svg",
  25105. extra: 1273/1201,
  25106. bottom: 39/1312
  25107. }
  25108. },
  25109. },
  25110. [
  25111. {
  25112. name: "Very Smal",
  25113. height: math.unit(1, "nm")
  25114. },
  25115. {
  25116. name: "Normal",
  25117. height: math.unit(6 + 5 / 12, "feet"),
  25118. default: true
  25119. },
  25120. {
  25121. name: "Macro",
  25122. height: math.unit(1, "mile")
  25123. },
  25124. {
  25125. name: "Megamacro",
  25126. height: math.unit(50, "miles")
  25127. },
  25128. ]
  25129. ))
  25130. characterMakers.push(() => makeCharacter(
  25131. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  25132. {
  25133. front: {
  25134. height: math.unit(1.5, "meters"),
  25135. weight: math.unit(100, "lb"),
  25136. name: "Front",
  25137. image: {
  25138. source: "./media/characters/maksio/front.svg",
  25139. extra: 1549 / 1531,
  25140. bottom: 123.7 / 1674.5429
  25141. }
  25142. },
  25143. back: {
  25144. height: math.unit(1.5, "meters"),
  25145. weight: math.unit(100, "lb"),
  25146. name: "Back",
  25147. image: {
  25148. source: "./media/characters/maksio/back.svg",
  25149. extra: 1541 / 1509,
  25150. bottom: 97 / 1639
  25151. }
  25152. },
  25153. hand: {
  25154. height: math.unit(0.621, "feet"),
  25155. name: "Hand",
  25156. image: {
  25157. source: "./media/characters/maksio/hand.svg"
  25158. }
  25159. },
  25160. foot: {
  25161. height: math.unit(1.611, "feet"),
  25162. name: "Foot",
  25163. image: {
  25164. source: "./media/characters/maksio/foot.svg"
  25165. }
  25166. },
  25167. },
  25168. [
  25169. {
  25170. name: "Shrunken",
  25171. height: math.unit(10, "cm")
  25172. },
  25173. {
  25174. name: "Normal",
  25175. height: math.unit(150, "cm"),
  25176. default: true
  25177. },
  25178. ]
  25179. ))
  25180. characterMakers.push(() => makeCharacter(
  25181. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  25182. {
  25183. front: {
  25184. height: math.unit(100, "feet"),
  25185. name: "Front",
  25186. image: {
  25187. source: "./media/characters/erza-bear/front.svg",
  25188. extra: 2449 / 2390,
  25189. bottom: 46 / 2494
  25190. }
  25191. },
  25192. back: {
  25193. height: math.unit(100, "feet"),
  25194. name: "Back",
  25195. image: {
  25196. source: "./media/characters/erza-bear/back.svg",
  25197. extra: 2489 / 2430,
  25198. bottom: 85.4 / 2480
  25199. }
  25200. },
  25201. tail: {
  25202. height: math.unit(42, "feet"),
  25203. name: "Tail",
  25204. image: {
  25205. source: "./media/characters/erza-bear/tail.svg"
  25206. }
  25207. },
  25208. tongue: {
  25209. height: math.unit(8, "feet"),
  25210. name: "Tongue",
  25211. image: {
  25212. source: "./media/characters/erza-bear/tongue.svg"
  25213. }
  25214. },
  25215. dick: {
  25216. height: math.unit(10.5, "feet"),
  25217. name: "Dick",
  25218. image: {
  25219. source: "./media/characters/erza-bear/dick.svg"
  25220. }
  25221. },
  25222. dickVertical: {
  25223. height: math.unit(16.9, "feet"),
  25224. name: "Dick (Vertical)",
  25225. image: {
  25226. source: "./media/characters/erza-bear/dick-vertical.svg"
  25227. }
  25228. },
  25229. },
  25230. [
  25231. {
  25232. name: "Macro",
  25233. height: math.unit(100, "feet"),
  25234. default: true
  25235. },
  25236. ]
  25237. ))
  25238. characterMakers.push(() => makeCharacter(
  25239. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  25240. {
  25241. front: {
  25242. height: math.unit(172, "cm"),
  25243. weight: math.unit(73, "kg"),
  25244. name: "Front",
  25245. image: {
  25246. source: "./media/characters/violet-flor/front.svg",
  25247. extra: 1530 / 1442,
  25248. bottom: 61.9 / 1588.8
  25249. }
  25250. },
  25251. back: {
  25252. height: math.unit(180, "cm"),
  25253. weight: math.unit(73, "kg"),
  25254. name: "Back",
  25255. image: {
  25256. source: "./media/characters/violet-flor/back.svg",
  25257. extra: 1692 / 1630,
  25258. bottom: 20 / 1712
  25259. }
  25260. },
  25261. },
  25262. [
  25263. {
  25264. name: "Normal",
  25265. height: math.unit(172, "cm"),
  25266. default: true
  25267. },
  25268. ]
  25269. ))
  25270. characterMakers.push(() => makeCharacter(
  25271. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  25272. {
  25273. front: {
  25274. height: math.unit(6, "feet"),
  25275. weight: math.unit(220, "lb"),
  25276. name: "Front",
  25277. image: {
  25278. source: "./media/characters/lynn-rhea/front.svg",
  25279. extra: 310 / 273
  25280. }
  25281. },
  25282. back: {
  25283. height: math.unit(6, "feet"),
  25284. weight: math.unit(220, "lb"),
  25285. name: "Back",
  25286. image: {
  25287. source: "./media/characters/lynn-rhea/back.svg",
  25288. extra: 310 / 273
  25289. }
  25290. },
  25291. dicks: {
  25292. height: math.unit(0.9, "feet"),
  25293. name: "Dicks",
  25294. image: {
  25295. source: "./media/characters/lynn-rhea/dicks.svg"
  25296. }
  25297. },
  25298. slit: {
  25299. height: math.unit(0.4, "feet"),
  25300. name: "Slit",
  25301. image: {
  25302. source: "./media/characters/lynn-rhea/slit.svg"
  25303. }
  25304. },
  25305. },
  25306. [
  25307. {
  25308. name: "Micro",
  25309. height: math.unit(1, "inch")
  25310. },
  25311. {
  25312. name: "Macro",
  25313. height: math.unit(60, "feet"),
  25314. default: true
  25315. },
  25316. {
  25317. name: "Megamacro",
  25318. height: math.unit(2, "miles")
  25319. },
  25320. {
  25321. name: "Gigamacro",
  25322. height: math.unit(3, "earths")
  25323. },
  25324. {
  25325. name: "Galactic",
  25326. height: math.unit(0.8, "galaxies")
  25327. },
  25328. ]
  25329. ))
  25330. characterMakers.push(() => makeCharacter(
  25331. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  25332. {
  25333. front: {
  25334. height: math.unit(1600, "feet"),
  25335. weight: math.unit(85758785169, "kg"),
  25336. name: "Front",
  25337. image: {
  25338. source: "./media/characters/valathos/front.svg",
  25339. extra: 1451 / 1339
  25340. }
  25341. },
  25342. },
  25343. [
  25344. {
  25345. name: "Macro",
  25346. height: math.unit(1600, "feet"),
  25347. default: true
  25348. },
  25349. ]
  25350. ))
  25351. characterMakers.push(() => makeCharacter(
  25352. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  25353. {
  25354. front: {
  25355. height: math.unit(7 + 5 / 12, "feet"),
  25356. weight: math.unit(300, "lb"),
  25357. name: "Front",
  25358. image: {
  25359. source: "./media/characters/azula/front.svg",
  25360. extra: 3208 / 2880,
  25361. bottom: 80.2 / 3277
  25362. }
  25363. },
  25364. back: {
  25365. height: math.unit(7 + 5 / 12, "feet"),
  25366. weight: math.unit(300, "lb"),
  25367. name: "Back",
  25368. image: {
  25369. source: "./media/characters/azula/back.svg",
  25370. extra: 3169 / 2822,
  25371. bottom: 150.6 / 3321
  25372. }
  25373. },
  25374. },
  25375. [
  25376. {
  25377. name: "Normal",
  25378. height: math.unit(7 + 5 / 12, "feet"),
  25379. default: true
  25380. },
  25381. {
  25382. name: "Big",
  25383. height: math.unit(20, "feet")
  25384. },
  25385. ]
  25386. ))
  25387. characterMakers.push(() => makeCharacter(
  25388. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  25389. {
  25390. front: {
  25391. height: math.unit(5 + 1 / 12, "feet"),
  25392. weight: math.unit(110, "lb"),
  25393. name: "Front",
  25394. image: {
  25395. source: "./media/characters/rupert/front.svg",
  25396. extra: 1549 / 1495,
  25397. bottom: 54.2 / 1604.4
  25398. }
  25399. },
  25400. },
  25401. [
  25402. {
  25403. name: "Normal",
  25404. height: math.unit(5 + 1 / 12, "feet"),
  25405. default: true
  25406. },
  25407. ]
  25408. ))
  25409. characterMakers.push(() => makeCharacter(
  25410. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  25411. {
  25412. front: {
  25413. height: math.unit(8 + 4 / 12, "feet"),
  25414. weight: math.unit(350, "lb"),
  25415. name: "Front",
  25416. image: {
  25417. source: "./media/characters/sheera-castellar/front.svg",
  25418. extra: 1957 / 1894,
  25419. bottom: 26.97 / 1975.017
  25420. }
  25421. },
  25422. side: {
  25423. height: math.unit(8 + 4 / 12, "feet"),
  25424. weight: math.unit(350, "lb"),
  25425. name: "Side",
  25426. image: {
  25427. source: "./media/characters/sheera-castellar/side.svg",
  25428. extra: 1957 / 1894
  25429. }
  25430. },
  25431. back: {
  25432. height: math.unit(8 + 4 / 12, "feet"),
  25433. weight: math.unit(350, "lb"),
  25434. name: "Back",
  25435. image: {
  25436. source: "./media/characters/sheera-castellar/back.svg",
  25437. extra: 1957 / 1894
  25438. }
  25439. },
  25440. angled: {
  25441. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  25442. weight: math.unit(350, "lb"),
  25443. name: "Angled",
  25444. image: {
  25445. source: "./media/characters/sheera-castellar/angled.svg",
  25446. extra: 1807 / 1707,
  25447. bottom: 68 / 1875
  25448. }
  25449. },
  25450. genitals: {
  25451. height: math.unit(2.2, "feet"),
  25452. name: "Genitals",
  25453. image: {
  25454. source: "./media/characters/sheera-castellar/genitals.svg"
  25455. }
  25456. },
  25457. taur: {
  25458. height: math.unit(10 + 6/12, "feet"),
  25459. name: "Taur",
  25460. image: {
  25461. source: "./media/characters/sheera-castellar/taur.svg",
  25462. extra: 2017/1909,
  25463. bottom: 185/2202
  25464. }
  25465. },
  25466. },
  25467. [
  25468. {
  25469. name: "Normal",
  25470. height: math.unit(8 + 4 / 12, "feet")
  25471. },
  25472. {
  25473. name: "Macro",
  25474. height: math.unit(150, "feet"),
  25475. default: true
  25476. },
  25477. {
  25478. name: "Macro+",
  25479. height: math.unit(800, "feet")
  25480. },
  25481. ]
  25482. ))
  25483. characterMakers.push(() => makeCharacter(
  25484. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  25485. {
  25486. front: {
  25487. height: math.unit(6, "feet"),
  25488. weight: math.unit(150, "lb"),
  25489. name: "Front",
  25490. image: {
  25491. source: "./media/characters/jaipur/front.svg",
  25492. extra: 3860 / 3731,
  25493. bottom: 287 / 4140
  25494. }
  25495. },
  25496. back: {
  25497. height: math.unit(6, "feet"),
  25498. weight: math.unit(150, "lb"),
  25499. name: "Back",
  25500. image: {
  25501. source: "./media/characters/jaipur/back.svg",
  25502. extra: 1637/1561,
  25503. bottom: 154/1791
  25504. }
  25505. },
  25506. },
  25507. [
  25508. {
  25509. name: "Normal",
  25510. height: math.unit(1.85, "meters"),
  25511. default: true
  25512. },
  25513. {
  25514. name: "Macro",
  25515. height: math.unit(150, "meters")
  25516. },
  25517. {
  25518. name: "Macro+",
  25519. height: math.unit(0.5, "miles")
  25520. },
  25521. {
  25522. name: "Macro++",
  25523. height: math.unit(2.5, "miles")
  25524. },
  25525. {
  25526. name: "Macro+++",
  25527. height: math.unit(12, "miles")
  25528. },
  25529. {
  25530. name: "Macro++++",
  25531. height: math.unit(120, "miles")
  25532. },
  25533. {
  25534. name: "Macro+++++",
  25535. height: math.unit(1200, "miles")
  25536. },
  25537. ]
  25538. ))
  25539. characterMakers.push(() => makeCharacter(
  25540. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  25541. {
  25542. front: {
  25543. height: math.unit(6, "feet"),
  25544. weight: math.unit(150, "lb"),
  25545. name: "Front",
  25546. image: {
  25547. source: "./media/characters/sheila-wolf/front.svg",
  25548. extra: 1931 / 1808,
  25549. bottom: 29.5 / 1960
  25550. }
  25551. },
  25552. dick: {
  25553. height: math.unit(1.464, "feet"),
  25554. name: "Dick",
  25555. image: {
  25556. source: "./media/characters/sheila-wolf/dick.svg"
  25557. }
  25558. },
  25559. muzzle: {
  25560. height: math.unit(0.513, "feet"),
  25561. name: "Muzzle",
  25562. image: {
  25563. source: "./media/characters/sheila-wolf/muzzle.svg"
  25564. }
  25565. },
  25566. },
  25567. [
  25568. {
  25569. name: "Macro",
  25570. height: math.unit(70, "feet"),
  25571. default: true
  25572. },
  25573. ]
  25574. ))
  25575. characterMakers.push(() => makeCharacter(
  25576. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  25577. {
  25578. front: {
  25579. height: math.unit(32, "meters"),
  25580. weight: math.unit(300000, "kg"),
  25581. name: "Front",
  25582. image: {
  25583. source: "./media/characters/almor/front.svg",
  25584. extra: 1408 / 1322,
  25585. bottom: 94.6 / 1506.5
  25586. }
  25587. },
  25588. },
  25589. [
  25590. {
  25591. name: "Macro",
  25592. height: math.unit(32, "meters"),
  25593. default: true
  25594. },
  25595. ]
  25596. ))
  25597. characterMakers.push(() => makeCharacter(
  25598. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  25599. {
  25600. front: {
  25601. height: math.unit(7, "feet"),
  25602. weight: math.unit(200, "lb"),
  25603. name: "Front",
  25604. image: {
  25605. source: "./media/characters/silver/front.svg",
  25606. extra: 472.1 / 450.5,
  25607. bottom: 26.5 / 499.424
  25608. }
  25609. },
  25610. },
  25611. [
  25612. {
  25613. name: "Normal",
  25614. height: math.unit(7, "feet"),
  25615. default: true
  25616. },
  25617. {
  25618. name: "Macro",
  25619. height: math.unit(800, "feet")
  25620. },
  25621. {
  25622. name: "Megamacro",
  25623. height: math.unit(250, "miles")
  25624. },
  25625. ]
  25626. ))
  25627. characterMakers.push(() => makeCharacter(
  25628. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  25629. {
  25630. front: {
  25631. height: math.unit(6, "feet"),
  25632. weight: math.unit(150, "lb"),
  25633. name: "Front",
  25634. image: {
  25635. source: "./media/characters/pliskin/front.svg",
  25636. extra: 1469 / 1359,
  25637. bottom: 70 / 1540
  25638. }
  25639. },
  25640. },
  25641. [
  25642. {
  25643. name: "Micro",
  25644. height: math.unit(3, "inches")
  25645. },
  25646. {
  25647. name: "Normal",
  25648. height: math.unit(5 + 11 / 12, "feet"),
  25649. default: true
  25650. },
  25651. {
  25652. name: "Macro",
  25653. height: math.unit(120, "feet")
  25654. },
  25655. ]
  25656. ))
  25657. characterMakers.push(() => makeCharacter(
  25658. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  25659. {
  25660. front: {
  25661. height: math.unit(6, "feet"),
  25662. weight: math.unit(150, "lb"),
  25663. name: "Front",
  25664. image: {
  25665. source: "./media/characters/sammy/front.svg",
  25666. extra: 1193 / 1089,
  25667. bottom: 30.5 / 1226
  25668. }
  25669. },
  25670. },
  25671. [
  25672. {
  25673. name: "Macro",
  25674. height: math.unit(1700, "feet"),
  25675. default: true
  25676. },
  25677. {
  25678. name: "Examacro",
  25679. height: math.unit(2.5e9, "lightyears")
  25680. },
  25681. ]
  25682. ))
  25683. characterMakers.push(() => makeCharacter(
  25684. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  25685. {
  25686. front: {
  25687. height: math.unit(21, "meters"),
  25688. weight: math.unit(12, "tonnes"),
  25689. name: "Front",
  25690. image: {
  25691. source: "./media/characters/kuru/front.svg",
  25692. extra: 4301 / 3785,
  25693. bottom: 371.3 / 4691
  25694. }
  25695. },
  25696. },
  25697. [
  25698. {
  25699. name: "Macro",
  25700. height: math.unit(21, "meters"),
  25701. default: true
  25702. },
  25703. ]
  25704. ))
  25705. characterMakers.push(() => makeCharacter(
  25706. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  25707. {
  25708. front: {
  25709. height: math.unit(23, "meters"),
  25710. weight: math.unit(12.2, "tonnes"),
  25711. name: "Front",
  25712. image: {
  25713. source: "./media/characters/rakka/front.svg",
  25714. extra: 4670 / 4169,
  25715. bottom: 301 / 4968.7
  25716. }
  25717. },
  25718. },
  25719. [
  25720. {
  25721. name: "Macro",
  25722. height: math.unit(23, "meters"),
  25723. default: true
  25724. },
  25725. ]
  25726. ))
  25727. characterMakers.push(() => makeCharacter(
  25728. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  25729. {
  25730. front: {
  25731. height: math.unit(6, "feet"),
  25732. weight: math.unit(150, "lb"),
  25733. name: "Front",
  25734. image: {
  25735. source: "./media/characters/rhys-feline/front.svg",
  25736. extra: 2488 / 2308,
  25737. bottom: 35.67 / 2519.19
  25738. }
  25739. },
  25740. },
  25741. [
  25742. {
  25743. name: "Really Small",
  25744. height: math.unit(1, "nm")
  25745. },
  25746. {
  25747. name: "Micro",
  25748. height: math.unit(4, "inches")
  25749. },
  25750. {
  25751. name: "Normal",
  25752. height: math.unit(4 + 10 / 12, "feet"),
  25753. default: true
  25754. },
  25755. {
  25756. name: "Macro",
  25757. height: math.unit(100, "feet")
  25758. },
  25759. {
  25760. name: "Megamacto",
  25761. height: math.unit(50, "miles")
  25762. },
  25763. ]
  25764. ))
  25765. characterMakers.push(() => makeCharacter(
  25766. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  25767. {
  25768. side: {
  25769. height: math.unit(30, "feet"),
  25770. weight: math.unit(35000, "kg"),
  25771. name: "Side",
  25772. image: {
  25773. source: "./media/characters/alydar/side.svg",
  25774. extra: 234 / 222,
  25775. bottom: 6.5 / 241
  25776. }
  25777. },
  25778. front: {
  25779. height: math.unit(30, "feet"),
  25780. weight: math.unit(35000, "kg"),
  25781. name: "Front",
  25782. image: {
  25783. source: "./media/characters/alydar/front.svg",
  25784. extra: 223.37 / 210.2,
  25785. bottom: 22.3 / 246.76
  25786. }
  25787. },
  25788. top: {
  25789. height: math.unit(64.54, "feet"),
  25790. weight: math.unit(35000, "kg"),
  25791. name: "Top",
  25792. image: {
  25793. source: "./media/characters/alydar/top.svg"
  25794. }
  25795. },
  25796. anthro: {
  25797. height: math.unit(30, "feet"),
  25798. weight: math.unit(9000, "kg"),
  25799. name: "Anthro",
  25800. image: {
  25801. source: "./media/characters/alydar/anthro.svg",
  25802. extra: 432 / 421,
  25803. bottom: 7.18 / 440
  25804. }
  25805. },
  25806. maw: {
  25807. height: math.unit(11.693, "feet"),
  25808. name: "Maw",
  25809. image: {
  25810. source: "./media/characters/alydar/maw.svg"
  25811. }
  25812. },
  25813. head: {
  25814. height: math.unit(11.693, "feet"),
  25815. name: "Head",
  25816. image: {
  25817. source: "./media/characters/alydar/head.svg"
  25818. }
  25819. },
  25820. headAlt: {
  25821. height: math.unit(12.861, "feet"),
  25822. name: "Head (Alt)",
  25823. image: {
  25824. source: "./media/characters/alydar/head-alt.svg"
  25825. }
  25826. },
  25827. wing: {
  25828. height: math.unit(20.712, "feet"),
  25829. name: "Wing",
  25830. image: {
  25831. source: "./media/characters/alydar/wing.svg"
  25832. }
  25833. },
  25834. wingFeather: {
  25835. height: math.unit(9.662, "feet"),
  25836. name: "Wing Feather",
  25837. image: {
  25838. source: "./media/characters/alydar/wing-feather.svg"
  25839. }
  25840. },
  25841. countourFeather: {
  25842. height: math.unit(4.154, "feet"),
  25843. name: "Contour Feather",
  25844. image: {
  25845. source: "./media/characters/alydar/contour-feather.svg"
  25846. }
  25847. },
  25848. },
  25849. [
  25850. {
  25851. name: "Diplomatic",
  25852. height: math.unit(13, "feet"),
  25853. default: true
  25854. },
  25855. {
  25856. name: "Small",
  25857. height: math.unit(30, "feet")
  25858. },
  25859. {
  25860. name: "Normal",
  25861. height: math.unit(95, "feet"),
  25862. default: true
  25863. },
  25864. {
  25865. name: "Large",
  25866. height: math.unit(285, "feet")
  25867. },
  25868. {
  25869. name: "Incomprehensible",
  25870. height: math.unit(450, "megameters")
  25871. },
  25872. ]
  25873. ))
  25874. characterMakers.push(() => makeCharacter(
  25875. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  25876. {
  25877. side: {
  25878. height: math.unit(11, "feet"),
  25879. weight: math.unit(1750, "kg"),
  25880. name: "Side",
  25881. image: {
  25882. source: "./media/characters/selicia/side.svg",
  25883. extra: 440 / 396,
  25884. bottom: 24.8 / 465.979
  25885. }
  25886. },
  25887. maw: {
  25888. height: math.unit(4.665, "feet"),
  25889. name: "Maw",
  25890. image: {
  25891. source: "./media/characters/selicia/maw.svg"
  25892. }
  25893. },
  25894. },
  25895. [
  25896. {
  25897. name: "Normal",
  25898. height: math.unit(11, "feet"),
  25899. default: true
  25900. },
  25901. ]
  25902. ))
  25903. characterMakers.push(() => makeCharacter(
  25904. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  25905. {
  25906. side: {
  25907. height: math.unit(2 + 6 / 12, "feet"),
  25908. weight: math.unit(30, "lb"),
  25909. name: "Side",
  25910. image: {
  25911. source: "./media/characters/layla/side.svg",
  25912. extra: 244 / 188,
  25913. bottom: 18.2 / 262.1
  25914. }
  25915. },
  25916. back: {
  25917. height: math.unit(2 + 6 / 12, "feet"),
  25918. weight: math.unit(30, "lb"),
  25919. name: "Back",
  25920. image: {
  25921. source: "./media/characters/layla/back.svg",
  25922. extra: 308 / 241.5,
  25923. bottom: 8.9 / 316.8
  25924. }
  25925. },
  25926. cumming: {
  25927. height: math.unit(2 + 6 / 12, "feet"),
  25928. weight: math.unit(30, "lb"),
  25929. name: "Cumming",
  25930. image: {
  25931. source: "./media/characters/layla/cumming.svg",
  25932. extra: 342 / 279,
  25933. bottom: 595 / 938
  25934. }
  25935. },
  25936. dickFlaccid: {
  25937. height: math.unit(2.595, "feet"),
  25938. name: "Flaccid Genitals",
  25939. image: {
  25940. source: "./media/characters/layla/dick-flaccid.svg"
  25941. }
  25942. },
  25943. dickErect: {
  25944. height: math.unit(2.359, "feet"),
  25945. name: "Erect Genitals",
  25946. image: {
  25947. source: "./media/characters/layla/dick-erect.svg"
  25948. }
  25949. },
  25950. dragon: {
  25951. height: math.unit(40, "feet"),
  25952. name: "Dragon",
  25953. image: {
  25954. source: "./media/characters/layla/dragon.svg",
  25955. extra: 610/535,
  25956. bottom: 367/977
  25957. }
  25958. },
  25959. taur: {
  25960. height: math.unit(30, "feet"),
  25961. name: "Taur",
  25962. image: {
  25963. source: "./media/characters/layla/taur.svg",
  25964. extra: 1268/1199,
  25965. bottom: 112/1380
  25966. }
  25967. },
  25968. },
  25969. [
  25970. {
  25971. name: "Micro",
  25972. height: math.unit(1, "inch")
  25973. },
  25974. {
  25975. name: "Small",
  25976. height: math.unit(1, "foot")
  25977. },
  25978. {
  25979. name: "Normal",
  25980. height: math.unit(2 + 6 / 12, "feet"),
  25981. default: true
  25982. },
  25983. {
  25984. name: "Macro",
  25985. height: math.unit(200, "feet")
  25986. },
  25987. {
  25988. name: "Megamacro",
  25989. height: math.unit(1000, "miles")
  25990. },
  25991. {
  25992. name: "Planetary",
  25993. height: math.unit(8000, "miles")
  25994. },
  25995. {
  25996. name: "True Layla",
  25997. height: math.unit(200000 * 7, "multiverses")
  25998. },
  25999. ]
  26000. ))
  26001. characterMakers.push(() => makeCharacter(
  26002. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  26003. {
  26004. back: {
  26005. height: math.unit(10.5, "feet"),
  26006. weight: math.unit(800, "lb"),
  26007. name: "Back",
  26008. image: {
  26009. source: "./media/characters/knox/back.svg",
  26010. extra: 1486 / 1089,
  26011. bottom: 107 / 1601.4
  26012. }
  26013. },
  26014. side: {
  26015. height: math.unit(10.5, "feet"),
  26016. weight: math.unit(800, "lb"),
  26017. name: "Side",
  26018. image: {
  26019. source: "./media/characters/knox/side.svg",
  26020. extra: 244 / 218,
  26021. bottom: 14 / 260
  26022. }
  26023. },
  26024. },
  26025. [
  26026. {
  26027. name: "Compact",
  26028. height: math.unit(10.5, "feet"),
  26029. default: true
  26030. },
  26031. {
  26032. name: "Dynamax",
  26033. height: math.unit(210, "feet")
  26034. },
  26035. {
  26036. name: "Full Macro",
  26037. height: math.unit(850, "feet")
  26038. },
  26039. ]
  26040. ))
  26041. characterMakers.push(() => makeCharacter(
  26042. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  26043. {
  26044. front: {
  26045. height: math.unit(28, "feet"),
  26046. weight: math.unit(10500, "lb"),
  26047. name: "Front",
  26048. image: {
  26049. source: "./media/characters/kayda/front.svg",
  26050. extra: 1536 / 1428,
  26051. bottom: 68.7 / 1603
  26052. }
  26053. },
  26054. back: {
  26055. height: math.unit(28, "feet"),
  26056. weight: math.unit(10500, "lb"),
  26057. name: "Back",
  26058. image: {
  26059. source: "./media/characters/kayda/back.svg",
  26060. extra: 1557 / 1464,
  26061. bottom: 39.5 / 1597.49
  26062. }
  26063. },
  26064. dick: {
  26065. height: math.unit(3.858, "feet"),
  26066. name: "Dick",
  26067. image: {
  26068. source: "./media/characters/kayda/dick.svg"
  26069. }
  26070. },
  26071. },
  26072. [
  26073. {
  26074. name: "Macro",
  26075. height: math.unit(28, "feet"),
  26076. default: true
  26077. },
  26078. ]
  26079. ))
  26080. characterMakers.push(() => makeCharacter(
  26081. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  26082. {
  26083. front: {
  26084. height: math.unit(10 + 11 / 12, "feet"),
  26085. weight: math.unit(1400, "lb"),
  26086. name: "Front",
  26087. image: {
  26088. source: "./media/characters/brian/front.svg",
  26089. extra: 737 / 692,
  26090. bottom: 55.4 / 785
  26091. }
  26092. },
  26093. },
  26094. [
  26095. {
  26096. name: "Normal",
  26097. height: math.unit(10 + 11 / 12, "feet"),
  26098. default: true
  26099. },
  26100. ]
  26101. ))
  26102. characterMakers.push(() => makeCharacter(
  26103. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  26104. {
  26105. front: {
  26106. height: math.unit(5 + 8 / 12, "feet"),
  26107. weight: math.unit(140, "lb"),
  26108. name: "Front",
  26109. image: {
  26110. source: "./media/characters/khemri/front.svg",
  26111. extra: 4780 / 4059,
  26112. bottom: 80.1 / 4859.25
  26113. }
  26114. },
  26115. },
  26116. [
  26117. {
  26118. name: "Micro",
  26119. height: math.unit(6, "inches")
  26120. },
  26121. {
  26122. name: "Normal",
  26123. height: math.unit(5 + 8 / 12, "feet"),
  26124. default: true
  26125. },
  26126. ]
  26127. ))
  26128. characterMakers.push(() => makeCharacter(
  26129. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  26130. {
  26131. front: {
  26132. height: math.unit(13, "feet"),
  26133. weight: math.unit(1700, "lb"),
  26134. name: "Front",
  26135. image: {
  26136. source: "./media/characters/felix-braveheart/front.svg",
  26137. extra: 1222 / 1157,
  26138. bottom: 53.2 / 1280
  26139. }
  26140. },
  26141. back: {
  26142. height: math.unit(13, "feet"),
  26143. weight: math.unit(1700, "lb"),
  26144. name: "Back",
  26145. image: {
  26146. source: "./media/characters/felix-braveheart/back.svg",
  26147. extra: 1277 / 1203,
  26148. bottom: 50.2 / 1327
  26149. }
  26150. },
  26151. feral: {
  26152. height: math.unit(6, "feet"),
  26153. weight: math.unit(400, "lb"),
  26154. name: "Feral",
  26155. image: {
  26156. source: "./media/characters/felix-braveheart/feral.svg",
  26157. extra: 682 / 625,
  26158. bottom: 6.9 / 688
  26159. }
  26160. },
  26161. },
  26162. [
  26163. {
  26164. name: "Normal",
  26165. height: math.unit(13, "feet"),
  26166. default: true
  26167. },
  26168. ]
  26169. ))
  26170. characterMakers.push(() => makeCharacter(
  26171. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  26172. {
  26173. side: {
  26174. height: math.unit(5 + 11 / 12, "feet"),
  26175. weight: math.unit(1400, "lb"),
  26176. name: "Side",
  26177. image: {
  26178. source: "./media/characters/shadow-blade/side.svg",
  26179. extra: 1726 / 1267,
  26180. bottom: 58.4 / 1785
  26181. }
  26182. },
  26183. },
  26184. [
  26185. {
  26186. name: "Normal",
  26187. height: math.unit(5 + 11 / 12, "feet"),
  26188. default: true
  26189. },
  26190. ]
  26191. ))
  26192. characterMakers.push(() => makeCharacter(
  26193. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  26194. {
  26195. front: {
  26196. height: math.unit(1 + 6 / 12, "feet"),
  26197. weight: math.unit(25, "lb"),
  26198. name: "Front",
  26199. image: {
  26200. source: "./media/characters/karla-halldor/front.svg",
  26201. extra: 1459 / 1383,
  26202. bottom: 12 / 1472
  26203. }
  26204. },
  26205. },
  26206. [
  26207. {
  26208. name: "Normal",
  26209. height: math.unit(1 + 6 / 12, "feet"),
  26210. default: true
  26211. },
  26212. ]
  26213. ))
  26214. characterMakers.push(() => makeCharacter(
  26215. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  26216. {
  26217. front: {
  26218. height: math.unit(6 + 2 / 12, "feet"),
  26219. weight: math.unit(160, "lb"),
  26220. name: "Front",
  26221. image: {
  26222. source: "./media/characters/ariam/front.svg",
  26223. extra: 1073/976,
  26224. bottom: 52/1125
  26225. }
  26226. },
  26227. back: {
  26228. height: math.unit(6 + 2/12, "feet"),
  26229. weight: math.unit(160, "lb"),
  26230. name: "Back",
  26231. image: {
  26232. source: "./media/characters/ariam/back.svg",
  26233. extra: 1103/1023,
  26234. bottom: 9/1112
  26235. }
  26236. },
  26237. dressed: {
  26238. height: math.unit(6 + 2/12, "feet"),
  26239. weight: math.unit(160, "lb"),
  26240. name: "Dressed",
  26241. image: {
  26242. source: "./media/characters/ariam/dressed.svg",
  26243. extra: 1099/1009,
  26244. bottom: 25/1124
  26245. }
  26246. },
  26247. squatting: {
  26248. height: math.unit(4.1, "feet"),
  26249. weight: math.unit(160, "lb"),
  26250. name: "Squatting",
  26251. image: {
  26252. source: "./media/characters/ariam/squatting.svg",
  26253. extra: 2617 / 2112,
  26254. bottom: 61.2 / 2681,
  26255. }
  26256. },
  26257. },
  26258. [
  26259. {
  26260. name: "Normal",
  26261. height: math.unit(6 + 2 / 12, "feet"),
  26262. default: true
  26263. },
  26264. {
  26265. name: "Normal+",
  26266. height: math.unit(4, "meters")
  26267. },
  26268. {
  26269. name: "Macro",
  26270. height: math.unit(50, "meters")
  26271. },
  26272. {
  26273. name: "Macro+",
  26274. height: math.unit(100, "meters")
  26275. },
  26276. {
  26277. name: "Megamacro",
  26278. height: math.unit(20, "km")
  26279. },
  26280. {
  26281. name: "Caretaker",
  26282. height: math.unit(444, "megameters")
  26283. },
  26284. ]
  26285. ))
  26286. characterMakers.push(() => makeCharacter(
  26287. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  26288. {
  26289. front: {
  26290. height: math.unit(1.67, "meters"),
  26291. weight: math.unit(140, "lb"),
  26292. name: "Front",
  26293. image: {
  26294. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  26295. extra: 438 / 410,
  26296. bottom: 0.75 / 439
  26297. }
  26298. },
  26299. },
  26300. [
  26301. {
  26302. name: "Shrunken",
  26303. height: math.unit(7.6, "cm")
  26304. },
  26305. {
  26306. name: "Human Scale",
  26307. height: math.unit(1.67, "meters")
  26308. },
  26309. {
  26310. name: "Wolxi Scale",
  26311. height: math.unit(36.7, "meters"),
  26312. default: true
  26313. },
  26314. ]
  26315. ))
  26316. characterMakers.push(() => makeCharacter(
  26317. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  26318. {
  26319. front: {
  26320. height: math.unit(1.73, "meters"),
  26321. weight: math.unit(240, "lb"),
  26322. name: "Front",
  26323. image: {
  26324. source: "./media/characters/izue-two-mothers/front.svg",
  26325. extra: 469 / 437,
  26326. bottom: 1.24 / 470.6
  26327. }
  26328. },
  26329. },
  26330. [
  26331. {
  26332. name: "Shrunken",
  26333. height: math.unit(7.86, "cm")
  26334. },
  26335. {
  26336. name: "Human Scale",
  26337. height: math.unit(1.73, "meters")
  26338. },
  26339. {
  26340. name: "Wolxi Scale",
  26341. height: math.unit(38, "meters"),
  26342. default: true
  26343. },
  26344. ]
  26345. ))
  26346. characterMakers.push(() => makeCharacter(
  26347. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  26348. {
  26349. front: {
  26350. height: math.unit(1.55, "meters"),
  26351. weight: math.unit(120, "lb"),
  26352. name: "Front",
  26353. image: {
  26354. source: "./media/characters/teeku-love-shack/front.svg",
  26355. extra: 387 / 362,
  26356. bottom: 1.51 / 388
  26357. }
  26358. },
  26359. },
  26360. [
  26361. {
  26362. name: "Shrunken",
  26363. height: math.unit(7, "cm")
  26364. },
  26365. {
  26366. name: "Human Scale",
  26367. height: math.unit(1.55, "meters")
  26368. },
  26369. {
  26370. name: "Wolxi Scale",
  26371. height: math.unit(34.1, "meters"),
  26372. default: true
  26373. },
  26374. ]
  26375. ))
  26376. characterMakers.push(() => makeCharacter(
  26377. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  26378. {
  26379. front: {
  26380. height: math.unit(1.83, "meters"),
  26381. weight: math.unit(135, "lb"),
  26382. name: "Front",
  26383. image: {
  26384. source: "./media/characters/dejma-the-red/front.svg",
  26385. extra: 480 / 458,
  26386. bottom: 1.8 / 482
  26387. }
  26388. },
  26389. },
  26390. [
  26391. {
  26392. name: "Shrunken",
  26393. height: math.unit(8.3, "cm")
  26394. },
  26395. {
  26396. name: "Human Scale",
  26397. height: math.unit(1.83, "meters")
  26398. },
  26399. {
  26400. name: "Wolxi Scale",
  26401. height: math.unit(40, "meters"),
  26402. default: true
  26403. },
  26404. ]
  26405. ))
  26406. characterMakers.push(() => makeCharacter(
  26407. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  26408. {
  26409. front: {
  26410. height: math.unit(1.78, "meters"),
  26411. weight: math.unit(65, "kg"),
  26412. name: "Front",
  26413. image: {
  26414. source: "./media/characters/aki/front.svg",
  26415. extra: 452 / 415
  26416. }
  26417. },
  26418. frontNsfw: {
  26419. height: math.unit(1.78, "meters"),
  26420. weight: math.unit(65, "kg"),
  26421. name: "Front (NSFW)",
  26422. image: {
  26423. source: "./media/characters/aki/front-nsfw.svg",
  26424. extra: 452 / 415
  26425. }
  26426. },
  26427. back: {
  26428. height: math.unit(1.78, "meters"),
  26429. weight: math.unit(65, "kg"),
  26430. name: "Back",
  26431. image: {
  26432. source: "./media/characters/aki/back.svg",
  26433. extra: 452 / 415
  26434. }
  26435. },
  26436. rump: {
  26437. height: math.unit(2.05, "feet"),
  26438. name: "Rump",
  26439. image: {
  26440. source: "./media/characters/aki/rump.svg"
  26441. }
  26442. },
  26443. dick: {
  26444. height: math.unit(0.95, "feet"),
  26445. name: "Dick",
  26446. image: {
  26447. source: "./media/characters/aki/dick.svg"
  26448. }
  26449. },
  26450. },
  26451. [
  26452. {
  26453. name: "Micro",
  26454. height: math.unit(15, "cm")
  26455. },
  26456. {
  26457. name: "Normal",
  26458. height: math.unit(178, "cm"),
  26459. default: true
  26460. },
  26461. {
  26462. name: "Macro",
  26463. height: math.unit(214, "m")
  26464. },
  26465. {
  26466. name: "Macro+",
  26467. height: math.unit(534, "m")
  26468. },
  26469. ]
  26470. ))
  26471. characterMakers.push(() => makeCharacter(
  26472. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  26473. {
  26474. front: {
  26475. height: math.unit(5 + 5 / 12, "feet"),
  26476. weight: math.unit(120, "lb"),
  26477. name: "Front",
  26478. image: {
  26479. source: "./media/characters/ari/front.svg",
  26480. extra: 1550/1471,
  26481. bottom: 39/1589
  26482. }
  26483. },
  26484. },
  26485. [
  26486. {
  26487. name: "Normal",
  26488. height: math.unit(5 + 5 / 12, "feet")
  26489. },
  26490. {
  26491. name: "Macro",
  26492. height: math.unit(100, "feet"),
  26493. default: true
  26494. },
  26495. {
  26496. name: "Megamacro",
  26497. height: math.unit(100, "miles")
  26498. },
  26499. {
  26500. name: "Gigamacro",
  26501. height: math.unit(80000, "miles")
  26502. },
  26503. ]
  26504. ))
  26505. characterMakers.push(() => makeCharacter(
  26506. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  26507. {
  26508. side: {
  26509. height: math.unit(9, "feet"),
  26510. weight: math.unit(400, "kg"),
  26511. name: "Side",
  26512. image: {
  26513. source: "./media/characters/bolt/side.svg",
  26514. extra: 1126 / 896,
  26515. bottom: 60 / 1187.3,
  26516. }
  26517. },
  26518. },
  26519. [
  26520. {
  26521. name: "Micro",
  26522. height: math.unit(5, "inches")
  26523. },
  26524. {
  26525. name: "Normal",
  26526. height: math.unit(9, "feet"),
  26527. default: true
  26528. },
  26529. {
  26530. name: "Macro",
  26531. height: math.unit(700, "feet")
  26532. },
  26533. {
  26534. name: "Max Size",
  26535. height: math.unit(1.52e22, "yottameters")
  26536. },
  26537. ]
  26538. ))
  26539. characterMakers.push(() => makeCharacter(
  26540. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  26541. {
  26542. front: {
  26543. height: math.unit(4.3, "meters"),
  26544. weight: math.unit(3, "tons"),
  26545. name: "Front",
  26546. image: {
  26547. source: "./media/characters/draekon-sylviar/front.svg",
  26548. extra: 2072/1512,
  26549. bottom: 74/2146
  26550. }
  26551. },
  26552. back: {
  26553. height: math.unit(4.3, "meters"),
  26554. weight: math.unit(3, "tons"),
  26555. name: "Back",
  26556. image: {
  26557. source: "./media/characters/draekon-sylviar/back.svg",
  26558. extra: 1639/1483,
  26559. bottom: 41/1680
  26560. }
  26561. },
  26562. feral: {
  26563. height: math.unit(1.15, "meters"),
  26564. weight: math.unit(3, "tons"),
  26565. name: "Feral",
  26566. image: {
  26567. source: "./media/characters/draekon-sylviar/feral.svg",
  26568. extra: 1033/395,
  26569. bottom: 130/1163
  26570. }
  26571. },
  26572. maw: {
  26573. height: math.unit(1.3, "meters"),
  26574. name: "Maw",
  26575. image: {
  26576. source: "./media/characters/draekon-sylviar/maw.svg"
  26577. }
  26578. },
  26579. mawSeparated: {
  26580. height: math.unit(1.53, "meters"),
  26581. name: "Separated Maw",
  26582. image: {
  26583. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  26584. }
  26585. },
  26586. tail: {
  26587. height: math.unit(1.15, "meters"),
  26588. name: "Tail",
  26589. image: {
  26590. source: "./media/characters/draekon-sylviar/tail.svg"
  26591. }
  26592. },
  26593. tailDick: {
  26594. height: math.unit(1.15, "meters"),
  26595. name: "Tail (Dick)",
  26596. image: {
  26597. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  26598. }
  26599. },
  26600. tailDickSeparated: {
  26601. height: math.unit(1.19, "meters"),
  26602. name: "Tail (Separated Dick)",
  26603. image: {
  26604. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  26605. }
  26606. },
  26607. slit: {
  26608. height: math.unit(1, "meters"),
  26609. name: "Slit",
  26610. image: {
  26611. source: "./media/characters/draekon-sylviar/slit.svg"
  26612. }
  26613. },
  26614. dick: {
  26615. height: math.unit(1.15, "meters"),
  26616. name: "Dick",
  26617. image: {
  26618. source: "./media/characters/draekon-sylviar/dick.svg"
  26619. }
  26620. },
  26621. dickSeparated: {
  26622. height: math.unit(1.1, "meters"),
  26623. name: "Separated Dick",
  26624. image: {
  26625. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  26626. }
  26627. },
  26628. sheath: {
  26629. height: math.unit(1.15, "meters"),
  26630. name: "Sheath",
  26631. image: {
  26632. source: "./media/characters/draekon-sylviar/sheath.svg"
  26633. }
  26634. },
  26635. },
  26636. [
  26637. {
  26638. name: "Small",
  26639. height: math.unit(4.53 / 2, "meters"),
  26640. default: true
  26641. },
  26642. {
  26643. name: "Normal",
  26644. height: math.unit(4.53, "meters"),
  26645. default: true
  26646. },
  26647. {
  26648. name: "Large",
  26649. height: math.unit(4.53 * 2, "meters"),
  26650. },
  26651. ]
  26652. ))
  26653. characterMakers.push(() => makeCharacter(
  26654. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  26655. {
  26656. front: {
  26657. height: math.unit(6 + 2 / 12, "feet"),
  26658. weight: math.unit(180, "lb"),
  26659. name: "Front",
  26660. image: {
  26661. source: "./media/characters/brawler/front.svg",
  26662. extra: 3301 / 3027,
  26663. bottom: 138 / 3439
  26664. }
  26665. },
  26666. },
  26667. [
  26668. {
  26669. name: "Normal",
  26670. height: math.unit(6 + 2 / 12, "feet"),
  26671. default: true
  26672. },
  26673. ]
  26674. ))
  26675. characterMakers.push(() => makeCharacter(
  26676. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  26677. {
  26678. front: {
  26679. height: math.unit(11, "feet"),
  26680. weight: math.unit(1000, "lb"),
  26681. name: "Front",
  26682. image: {
  26683. source: "./media/characters/alex/front.svg",
  26684. bottom: 44.5 / 620
  26685. }
  26686. },
  26687. },
  26688. [
  26689. {
  26690. name: "Micro",
  26691. height: math.unit(5, "inches")
  26692. },
  26693. {
  26694. name: "Normal",
  26695. height: math.unit(11, "feet"),
  26696. default: true
  26697. },
  26698. {
  26699. name: "Macro",
  26700. height: math.unit(9.5e9, "feet")
  26701. },
  26702. {
  26703. name: "Max Size",
  26704. height: math.unit(1.4e283, "yottameters")
  26705. },
  26706. ]
  26707. ))
  26708. characterMakers.push(() => makeCharacter(
  26709. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  26710. {
  26711. female: {
  26712. height: math.unit(29.9, "m"),
  26713. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  26714. name: "Female",
  26715. image: {
  26716. source: "./media/characters/zenari/female.svg",
  26717. extra: 3281.6 / 3217,
  26718. bottom: 72.2 / 3353
  26719. }
  26720. },
  26721. male: {
  26722. height: math.unit(27.7, "m"),
  26723. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  26724. name: "Male",
  26725. image: {
  26726. source: "./media/characters/zenari/male.svg",
  26727. extra: 3008 / 2991,
  26728. bottom: 54.6 / 3069
  26729. }
  26730. },
  26731. },
  26732. [
  26733. {
  26734. name: "Macro",
  26735. height: math.unit(29.7, "meters"),
  26736. default: true
  26737. },
  26738. ]
  26739. ))
  26740. characterMakers.push(() => makeCharacter(
  26741. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  26742. {
  26743. female: {
  26744. height: math.unit(23.8, "m"),
  26745. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26746. name: "Female",
  26747. image: {
  26748. source: "./media/characters/mactarian/female.svg",
  26749. extra: 2662 / 2569,
  26750. bottom: 73 / 2736
  26751. }
  26752. },
  26753. male: {
  26754. height: math.unit(23.8, "m"),
  26755. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26756. name: "Male",
  26757. image: {
  26758. source: "./media/characters/mactarian/male.svg",
  26759. extra: 2673 / 2600,
  26760. bottom: 76 / 2750
  26761. }
  26762. },
  26763. },
  26764. [
  26765. {
  26766. name: "Macro",
  26767. height: math.unit(23.8, "meters"),
  26768. default: true
  26769. },
  26770. ]
  26771. ))
  26772. characterMakers.push(() => makeCharacter(
  26773. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  26774. {
  26775. female: {
  26776. height: math.unit(19.3, "m"),
  26777. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  26778. name: "Female",
  26779. image: {
  26780. source: "./media/characters/umok/female.svg",
  26781. extra: 2186 / 2078,
  26782. bottom: 87 / 2277
  26783. }
  26784. },
  26785. male: {
  26786. height: math.unit(19.5, "m"),
  26787. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  26788. name: "Male",
  26789. image: {
  26790. source: "./media/characters/umok/male.svg",
  26791. extra: 2233 / 2140,
  26792. bottom: 24.4 / 2258
  26793. }
  26794. },
  26795. },
  26796. [
  26797. {
  26798. name: "Macro",
  26799. height: math.unit(19.3, "meters"),
  26800. default: true
  26801. },
  26802. ]
  26803. ))
  26804. characterMakers.push(() => makeCharacter(
  26805. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  26806. {
  26807. female: {
  26808. height: math.unit(26.15, "m"),
  26809. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  26810. name: "Female",
  26811. image: {
  26812. source: "./media/characters/joraxian/female.svg",
  26813. extra: 2912 / 2824,
  26814. bottom: 36 / 2956
  26815. }
  26816. },
  26817. male: {
  26818. height: math.unit(25.4, "m"),
  26819. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  26820. name: "Male",
  26821. image: {
  26822. source: "./media/characters/joraxian/male.svg",
  26823. extra: 2877 / 2721,
  26824. bottom: 82 / 2967
  26825. }
  26826. },
  26827. },
  26828. [
  26829. {
  26830. name: "Macro",
  26831. height: math.unit(26.15, "meters"),
  26832. default: true
  26833. },
  26834. ]
  26835. ))
  26836. characterMakers.push(() => makeCharacter(
  26837. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  26838. {
  26839. female: {
  26840. height: math.unit(21.6, "m"),
  26841. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  26842. name: "Female",
  26843. image: {
  26844. source: "./media/characters/sthara/female.svg",
  26845. extra: 2516 / 2347,
  26846. bottom: 21.5 / 2537
  26847. }
  26848. },
  26849. male: {
  26850. height: math.unit(24, "m"),
  26851. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  26852. name: "Male",
  26853. image: {
  26854. source: "./media/characters/sthara/male.svg",
  26855. extra: 2732 / 2607,
  26856. bottom: 23 / 2732
  26857. }
  26858. },
  26859. },
  26860. [
  26861. {
  26862. name: "Macro",
  26863. height: math.unit(21.6, "meters"),
  26864. default: true
  26865. },
  26866. ]
  26867. ))
  26868. characterMakers.push(() => makeCharacter(
  26869. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  26870. {
  26871. front: {
  26872. height: math.unit(6 + 4 / 12, "feet"),
  26873. weight: math.unit(175, "lb"),
  26874. name: "Front",
  26875. image: {
  26876. source: "./media/characters/luka-bryzant/front.svg",
  26877. extra: 311 / 289,
  26878. bottom: 4 / 315
  26879. }
  26880. },
  26881. back: {
  26882. height: math.unit(6 + 4 / 12, "feet"),
  26883. weight: math.unit(175, "lb"),
  26884. name: "Back",
  26885. image: {
  26886. source: "./media/characters/luka-bryzant/back.svg",
  26887. extra: 311 / 289,
  26888. bottom: 3.8 / 313.7
  26889. }
  26890. },
  26891. },
  26892. [
  26893. {
  26894. name: "Micro",
  26895. height: math.unit(10, "inches")
  26896. },
  26897. {
  26898. name: "Normal",
  26899. height: math.unit(6 + 4 / 12, "feet"),
  26900. default: true
  26901. },
  26902. {
  26903. name: "Large",
  26904. height: math.unit(12, "feet")
  26905. },
  26906. ]
  26907. ))
  26908. characterMakers.push(() => makeCharacter(
  26909. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  26910. {
  26911. front: {
  26912. height: math.unit(5 + 7 / 12, "feet"),
  26913. weight: math.unit(185, "lb"),
  26914. name: "Front",
  26915. image: {
  26916. source: "./media/characters/aman-aquila/front.svg",
  26917. extra: 1013 / 976,
  26918. bottom: 45.6 / 1057
  26919. }
  26920. },
  26921. side: {
  26922. height: math.unit(5 + 7 / 12, "feet"),
  26923. weight: math.unit(185, "lb"),
  26924. name: "Side",
  26925. image: {
  26926. source: "./media/characters/aman-aquila/side.svg",
  26927. extra: 1054 / 1011,
  26928. bottom: 15 / 1070
  26929. }
  26930. },
  26931. back: {
  26932. height: math.unit(5 + 7 / 12, "feet"),
  26933. weight: math.unit(185, "lb"),
  26934. name: "Back",
  26935. image: {
  26936. source: "./media/characters/aman-aquila/back.svg",
  26937. extra: 1026 / 970,
  26938. bottom: 12 / 1039
  26939. }
  26940. },
  26941. head: {
  26942. height: math.unit(1.211, "feet"),
  26943. name: "Head",
  26944. image: {
  26945. source: "./media/characters/aman-aquila/head.svg",
  26946. }
  26947. },
  26948. },
  26949. [
  26950. {
  26951. name: "Minimicro",
  26952. height: math.unit(0.057, "inches")
  26953. },
  26954. {
  26955. name: "Micro",
  26956. height: math.unit(7, "inches")
  26957. },
  26958. {
  26959. name: "Mini",
  26960. height: math.unit(3 + 7 / 12, "feet")
  26961. },
  26962. {
  26963. name: "Normal",
  26964. height: math.unit(5 + 7 / 12, "feet"),
  26965. default: true
  26966. },
  26967. {
  26968. name: "Macro",
  26969. height: math.unit(157 + 7 / 12, "feet")
  26970. },
  26971. {
  26972. name: "Megamacro",
  26973. height: math.unit(1557 + 7 / 12, "feet")
  26974. },
  26975. {
  26976. name: "Gigamacro",
  26977. height: math.unit(15557 + 7 / 12, "feet")
  26978. },
  26979. ]
  26980. ))
  26981. characterMakers.push(() => makeCharacter(
  26982. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  26983. {
  26984. front: {
  26985. height: math.unit(3 + 2 / 12, "inches"),
  26986. weight: math.unit(0.3, "ounces"),
  26987. name: "Front",
  26988. image: {
  26989. source: "./media/characters/hiphae/front.svg",
  26990. extra: 1931 / 1683,
  26991. bottom: 24 / 1955
  26992. }
  26993. },
  26994. },
  26995. [
  26996. {
  26997. name: "Normal",
  26998. height: math.unit(3 + 1 / 2, "inches"),
  26999. default: true
  27000. },
  27001. ]
  27002. ))
  27003. characterMakers.push(() => makeCharacter(
  27004. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  27005. {
  27006. front: {
  27007. height: math.unit(5 + 10 / 12, "feet"),
  27008. weight: math.unit(165, "lb"),
  27009. name: "Front",
  27010. image: {
  27011. source: "./media/characters/nicky/front.svg",
  27012. extra: 3144 / 2886,
  27013. bottom: 45.6 / 3192
  27014. }
  27015. },
  27016. back: {
  27017. height: math.unit(5 + 10 / 12, "feet"),
  27018. weight: math.unit(165, "lb"),
  27019. name: "Back",
  27020. image: {
  27021. source: "./media/characters/nicky/back.svg",
  27022. extra: 3055 / 2804,
  27023. bottom: 28.4 / 3087
  27024. }
  27025. },
  27026. frontclothed: {
  27027. height: math.unit(5 + 10 / 12, "feet"),
  27028. weight: math.unit(165, "lb"),
  27029. name: "Front-clothed",
  27030. image: {
  27031. source: "./media/characters/nicky/front-clothed.svg",
  27032. extra: 3184.9 / 2926.9,
  27033. bottom: 86.5 / 3239.9
  27034. }
  27035. },
  27036. foot: {
  27037. height: math.unit(1.16, "feet"),
  27038. name: "Foot",
  27039. image: {
  27040. source: "./media/characters/nicky/foot.svg"
  27041. }
  27042. },
  27043. feet: {
  27044. height: math.unit(1.34, "feet"),
  27045. name: "Feet",
  27046. image: {
  27047. source: "./media/characters/nicky/feet.svg"
  27048. }
  27049. },
  27050. maw: {
  27051. height: math.unit(0.9, "feet"),
  27052. name: "Maw",
  27053. image: {
  27054. source: "./media/characters/nicky/maw.svg"
  27055. }
  27056. },
  27057. },
  27058. [
  27059. {
  27060. name: "Normal",
  27061. height: math.unit(5 + 10 / 12, "feet"),
  27062. default: true
  27063. },
  27064. {
  27065. name: "Macro",
  27066. height: math.unit(60, "feet")
  27067. },
  27068. {
  27069. name: "Megamacro",
  27070. height: math.unit(1, "mile")
  27071. },
  27072. ]
  27073. ))
  27074. characterMakers.push(() => makeCharacter(
  27075. { name: "Blair", species: ["seal"], tags: ["taur"] },
  27076. {
  27077. side: {
  27078. height: math.unit(10, "feet"),
  27079. weight: math.unit(600, "lb"),
  27080. name: "Side",
  27081. image: {
  27082. source: "./media/characters/blair/side.svg",
  27083. bottom: 16.6 / 475,
  27084. extra: 458 / 431
  27085. }
  27086. },
  27087. },
  27088. [
  27089. {
  27090. name: "Micro",
  27091. height: math.unit(8, "inches")
  27092. },
  27093. {
  27094. name: "Normal",
  27095. height: math.unit(10, "feet"),
  27096. default: true
  27097. },
  27098. {
  27099. name: "Macro",
  27100. height: math.unit(180, "feet")
  27101. },
  27102. ]
  27103. ))
  27104. characterMakers.push(() => makeCharacter(
  27105. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  27106. {
  27107. front: {
  27108. height: math.unit(5 + 4 / 12, "feet"),
  27109. weight: math.unit(125, "lb"),
  27110. name: "Front",
  27111. image: {
  27112. source: "./media/characters/fisher/front.svg",
  27113. extra: 444 / 390,
  27114. bottom: 2 / 444.8
  27115. }
  27116. },
  27117. },
  27118. [
  27119. {
  27120. name: "Micro",
  27121. height: math.unit(4, "inches")
  27122. },
  27123. {
  27124. name: "Normal",
  27125. height: math.unit(5 + 4 / 12, "feet"),
  27126. default: true
  27127. },
  27128. {
  27129. name: "Macro",
  27130. height: math.unit(100, "feet")
  27131. },
  27132. ]
  27133. ))
  27134. characterMakers.push(() => makeCharacter(
  27135. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  27136. {
  27137. front: {
  27138. height: math.unit(6.71, "feet"),
  27139. weight: math.unit(200, "lb"),
  27140. preyCapacity: math.unit(1000000, "people"),
  27141. name: "Front",
  27142. image: {
  27143. source: "./media/characters/gliss/front.svg",
  27144. extra: 2347 / 2231,
  27145. bottom: 113 / 2462
  27146. }
  27147. },
  27148. hammerspaceSize: {
  27149. height: math.unit(6.71 * 717, "feet"),
  27150. weight: math.unit(200, "lb"),
  27151. preyCapacity: math.unit(1000000, "people"),
  27152. name: "Hammerspace Size",
  27153. image: {
  27154. source: "./media/characters/gliss/front.svg",
  27155. extra: 2347 / 2231,
  27156. bottom: 113 / 2462
  27157. }
  27158. },
  27159. },
  27160. [
  27161. {
  27162. name: "Normal",
  27163. height: math.unit(6.71, "feet"),
  27164. default: true
  27165. },
  27166. ]
  27167. ))
  27168. characterMakers.push(() => makeCharacter(
  27169. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  27170. {
  27171. side: {
  27172. height: math.unit(1.44, "m"),
  27173. weight: math.unit(80, "kg"),
  27174. name: "Side",
  27175. image: {
  27176. source: "./media/characters/dune-anderson/side.svg",
  27177. bottom: 49 / 1426
  27178. }
  27179. },
  27180. },
  27181. [
  27182. {
  27183. name: "Wolf-sized",
  27184. height: math.unit(1.44, "meters")
  27185. },
  27186. {
  27187. name: "Normal",
  27188. height: math.unit(5.05, "meters"),
  27189. default: true
  27190. },
  27191. {
  27192. name: "Big",
  27193. height: math.unit(14.4, "meters")
  27194. },
  27195. {
  27196. name: "Huge",
  27197. height: math.unit(144, "meters")
  27198. },
  27199. ]
  27200. ))
  27201. characterMakers.push(() => makeCharacter(
  27202. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  27203. {
  27204. front: {
  27205. height: math.unit(7, "feet"),
  27206. weight: math.unit(425, "lb"),
  27207. name: "Front",
  27208. image: {
  27209. source: "./media/characters/hind/front.svg",
  27210. extra: 2091 / 1860,
  27211. bottom: 129 / 2220
  27212. }
  27213. },
  27214. back: {
  27215. height: math.unit(7, "feet"),
  27216. weight: math.unit(425, "lb"),
  27217. name: "Back",
  27218. image: {
  27219. source: "./media/characters/hind/back.svg",
  27220. extra: 2091 / 1860,
  27221. bottom: 24.6 / 2309
  27222. }
  27223. },
  27224. tail: {
  27225. height: math.unit(2.8, "feet"),
  27226. name: "Tail",
  27227. image: {
  27228. source: "./media/characters/hind/tail.svg"
  27229. }
  27230. },
  27231. head: {
  27232. height: math.unit(2.55, "feet"),
  27233. name: "Head",
  27234. image: {
  27235. source: "./media/characters/hind/head.svg"
  27236. }
  27237. },
  27238. },
  27239. [
  27240. {
  27241. name: "XS",
  27242. height: math.unit(0.7, "feet")
  27243. },
  27244. {
  27245. name: "Normal",
  27246. height: math.unit(7, "feet"),
  27247. default: true
  27248. },
  27249. {
  27250. name: "XL",
  27251. height: math.unit(70, "feet")
  27252. },
  27253. ]
  27254. ))
  27255. characterMakers.push(() => makeCharacter(
  27256. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  27257. {
  27258. front: {
  27259. height: math.unit(2.1, "meters"),
  27260. weight: math.unit(150, "lb"),
  27261. name: "Front",
  27262. image: {
  27263. source: "./media/characters/tharquench-sizestealer/front.svg",
  27264. extra: 1605/1470,
  27265. bottom: 36/1641
  27266. }
  27267. },
  27268. frontAlt: {
  27269. height: math.unit(2.1, "meters"),
  27270. weight: math.unit(150, "lb"),
  27271. name: "Front (Alt)",
  27272. image: {
  27273. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  27274. extra: 2318 / 2063,
  27275. bottom: 93.4 / 2410
  27276. }
  27277. },
  27278. },
  27279. [
  27280. {
  27281. name: "Nano",
  27282. height: math.unit(1, "mm")
  27283. },
  27284. {
  27285. name: "Micro",
  27286. height: math.unit(1, "cm")
  27287. },
  27288. {
  27289. name: "Normal",
  27290. height: math.unit(2.1, "meters"),
  27291. default: true
  27292. },
  27293. ]
  27294. ))
  27295. characterMakers.push(() => makeCharacter(
  27296. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  27297. {
  27298. front: {
  27299. height: math.unit(7 + 5 / 12, "feet"),
  27300. weight: math.unit(357, "lb"),
  27301. name: "Front",
  27302. image: {
  27303. source: "./media/characters/solex-draconov/front.svg",
  27304. extra: 1993 / 1865,
  27305. bottom: 117 / 2111
  27306. }
  27307. },
  27308. },
  27309. [
  27310. {
  27311. name: "Natural Height",
  27312. height: math.unit(7 + 5 / 12, "feet"),
  27313. default: true
  27314. },
  27315. {
  27316. name: "Macro",
  27317. height: math.unit(350, "feet")
  27318. },
  27319. {
  27320. name: "Macro+",
  27321. height: math.unit(1000, "feet")
  27322. },
  27323. {
  27324. name: "Megamacro",
  27325. height: math.unit(20, "km")
  27326. },
  27327. {
  27328. name: "Megamacro+",
  27329. height: math.unit(1000, "km")
  27330. },
  27331. {
  27332. name: "Gigamacro",
  27333. height: math.unit(2.5, "Gm")
  27334. },
  27335. {
  27336. name: "Teramacro",
  27337. height: math.unit(15, "Tm")
  27338. },
  27339. {
  27340. name: "Galactic",
  27341. height: math.unit(30, "Zm")
  27342. },
  27343. {
  27344. name: "Universal",
  27345. height: math.unit(21000, "Ym")
  27346. },
  27347. {
  27348. name: "Omniversal",
  27349. height: math.unit(9.861e50, "Ym")
  27350. },
  27351. {
  27352. name: "Existential",
  27353. height: math.unit(1e300, "meters")
  27354. },
  27355. ]
  27356. ))
  27357. characterMakers.push(() => makeCharacter(
  27358. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  27359. {
  27360. side: {
  27361. height: math.unit(25, "feet"),
  27362. weight: math.unit(90000, "lb"),
  27363. name: "Side",
  27364. image: {
  27365. source: "./media/characters/mandarax/side.svg",
  27366. extra: 614 / 332,
  27367. bottom: 55 / 630
  27368. }
  27369. },
  27370. lounging: {
  27371. height: math.unit(15.4, "feet"),
  27372. weight: math.unit(90000, "lb"),
  27373. name: "Lounging",
  27374. image: {
  27375. source: "./media/characters/mandarax/lounging.svg",
  27376. extra: 817/609,
  27377. bottom: 685/1502
  27378. }
  27379. },
  27380. head: {
  27381. height: math.unit(11.4, "feet"),
  27382. name: "Head",
  27383. image: {
  27384. source: "./media/characters/mandarax/head.svg"
  27385. }
  27386. },
  27387. belly: {
  27388. height: math.unit(33, "feet"),
  27389. name: "Belly",
  27390. preyCapacity: math.unit(500, "people"),
  27391. image: {
  27392. source: "./media/characters/mandarax/belly.svg"
  27393. }
  27394. },
  27395. dick: {
  27396. height: math.unit(8.46, "feet"),
  27397. name: "Dick",
  27398. image: {
  27399. source: "./media/characters/mandarax/dick.svg"
  27400. }
  27401. },
  27402. top: {
  27403. height: math.unit(28, "meters"),
  27404. name: "Top",
  27405. image: {
  27406. source: "./media/characters/mandarax/top.svg"
  27407. }
  27408. },
  27409. },
  27410. [
  27411. {
  27412. name: "Normal",
  27413. height: math.unit(25, "feet"),
  27414. default: true
  27415. },
  27416. ]
  27417. ))
  27418. characterMakers.push(() => makeCharacter(
  27419. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  27420. {
  27421. front: {
  27422. height: math.unit(5, "feet"),
  27423. weight: math.unit(90, "lb"),
  27424. name: "Front",
  27425. image: {
  27426. source: "./media/characters/pixil/front.svg",
  27427. extra: 2000 / 1618,
  27428. bottom: 12.3 / 2011
  27429. }
  27430. },
  27431. },
  27432. [
  27433. {
  27434. name: "Normal",
  27435. height: math.unit(5, "feet"),
  27436. default: true
  27437. },
  27438. {
  27439. name: "Megamacro",
  27440. height: math.unit(10, "miles"),
  27441. },
  27442. ]
  27443. ))
  27444. characterMakers.push(() => makeCharacter(
  27445. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  27446. {
  27447. front: {
  27448. height: math.unit(7 + 2 / 12, "feet"),
  27449. weight: math.unit(200, "lb"),
  27450. name: "Front",
  27451. image: {
  27452. source: "./media/characters/angel/front.svg",
  27453. extra: 1830 / 1737,
  27454. bottom: 22.6 / 1854,
  27455. }
  27456. },
  27457. },
  27458. [
  27459. {
  27460. name: "Normal",
  27461. height: math.unit(7 + 2 / 12, "feet"),
  27462. default: true
  27463. },
  27464. {
  27465. name: "Macro",
  27466. height: math.unit(1000, "feet")
  27467. },
  27468. {
  27469. name: "Megamacro",
  27470. height: math.unit(2, "miles")
  27471. },
  27472. {
  27473. name: "Gigamacro",
  27474. height: math.unit(20, "earths")
  27475. },
  27476. ]
  27477. ))
  27478. characterMakers.push(() => makeCharacter(
  27479. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  27480. {
  27481. front: {
  27482. height: math.unit(5, "feet"),
  27483. weight: math.unit(180, "lb"),
  27484. name: "Front",
  27485. image: {
  27486. source: "./media/characters/mekana/front.svg",
  27487. extra: 1671 / 1605,
  27488. bottom: 3.5 / 1691
  27489. }
  27490. },
  27491. side: {
  27492. height: math.unit(5, "feet"),
  27493. weight: math.unit(180, "lb"),
  27494. name: "Side",
  27495. image: {
  27496. source: "./media/characters/mekana/side.svg",
  27497. extra: 1671 / 1605,
  27498. bottom: 3.5 / 1691
  27499. }
  27500. },
  27501. back: {
  27502. height: math.unit(5, "feet"),
  27503. weight: math.unit(180, "lb"),
  27504. name: "Back",
  27505. image: {
  27506. source: "./media/characters/mekana/back.svg",
  27507. extra: 1671 / 1605,
  27508. bottom: 3.5 / 1691
  27509. }
  27510. },
  27511. },
  27512. [
  27513. {
  27514. name: "Normal",
  27515. height: math.unit(5, "feet"),
  27516. default: true
  27517. },
  27518. ]
  27519. ))
  27520. characterMakers.push(() => makeCharacter(
  27521. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  27522. {
  27523. front: {
  27524. height: math.unit(4 + 6 / 12, "feet"),
  27525. weight: math.unit(80, "lb"),
  27526. name: "Front",
  27527. image: {
  27528. source: "./media/characters/pixie/front.svg",
  27529. extra: 1924 / 1825,
  27530. bottom: 22.4 / 1946
  27531. }
  27532. },
  27533. },
  27534. [
  27535. {
  27536. name: "Normal",
  27537. height: math.unit(4 + 6 / 12, "feet"),
  27538. default: true
  27539. },
  27540. {
  27541. name: "Macro",
  27542. height: math.unit(40, "feet")
  27543. },
  27544. ]
  27545. ))
  27546. characterMakers.push(() => makeCharacter(
  27547. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  27548. {
  27549. front: {
  27550. height: math.unit(2.1, "meters"),
  27551. weight: math.unit(200, "lb"),
  27552. name: "Front",
  27553. image: {
  27554. source: "./media/characters/the-lascivious/front.svg",
  27555. extra: 1 / 0.893,
  27556. bottom: 3.5 / 573.7
  27557. }
  27558. },
  27559. },
  27560. [
  27561. {
  27562. name: "Human Scale",
  27563. height: math.unit(2.1, "meters")
  27564. },
  27565. {
  27566. name: "Wolxi Scale",
  27567. height: math.unit(46.2, "m"),
  27568. default: true
  27569. },
  27570. {
  27571. name: "Boinker of Buildings",
  27572. height: math.unit(10, "km")
  27573. },
  27574. {
  27575. name: "Shagger of Skyscrapers",
  27576. height: math.unit(40, "km")
  27577. },
  27578. {
  27579. name: "Banger of Boroughs",
  27580. height: math.unit(4000, "km")
  27581. },
  27582. {
  27583. name: "Screwer of States",
  27584. height: math.unit(100000, "km")
  27585. },
  27586. {
  27587. name: "Pounder of Planets",
  27588. height: math.unit(2000000, "km")
  27589. },
  27590. ]
  27591. ))
  27592. characterMakers.push(() => makeCharacter(
  27593. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  27594. {
  27595. front: {
  27596. height: math.unit(6, "feet"),
  27597. weight: math.unit(150, "lb"),
  27598. name: "Front",
  27599. image: {
  27600. source: "./media/characters/aj/front.svg",
  27601. extra: 2039 / 1562,
  27602. bottom: 40 / 2079
  27603. }
  27604. },
  27605. },
  27606. [
  27607. {
  27608. name: "Normal",
  27609. height: math.unit(11 + 6 / 12, "feet"),
  27610. default: true
  27611. },
  27612. {
  27613. name: "Megamacro",
  27614. height: math.unit(60, "megameters")
  27615. },
  27616. ]
  27617. ))
  27618. characterMakers.push(() => makeCharacter(
  27619. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  27620. {
  27621. side: {
  27622. height: math.unit(31 + 8 / 12, "feet"),
  27623. weight: math.unit(75000, "kg"),
  27624. name: "Side",
  27625. image: {
  27626. source: "./media/characters/koros/side.svg",
  27627. extra: 1442 / 1297,
  27628. bottom: 122.7 / 1562
  27629. }
  27630. },
  27631. dicksKingsCrown: {
  27632. height: math.unit(6, "feet"),
  27633. name: "Dicks (King's Crown)",
  27634. image: {
  27635. source: "./media/characters/koros/dicks-kings-crown.svg"
  27636. }
  27637. },
  27638. dicksTailSet: {
  27639. height: math.unit(3, "feet"),
  27640. name: "Dicks (Tail Set)",
  27641. image: {
  27642. source: "./media/characters/koros/dicks-tail-set.svg"
  27643. }
  27644. },
  27645. dickCumming: {
  27646. height: math.unit(7.98, "feet"),
  27647. name: "Dick (Cumming)",
  27648. image: {
  27649. source: "./media/characters/koros/dick-cumming.svg"
  27650. }
  27651. },
  27652. dicksBack: {
  27653. height: math.unit(5.9, "feet"),
  27654. name: "Dicks (Back)",
  27655. image: {
  27656. source: "./media/characters/koros/dicks-back.svg"
  27657. }
  27658. },
  27659. dicksFront: {
  27660. height: math.unit(3.72, "feet"),
  27661. name: "Dicks (Front)",
  27662. image: {
  27663. source: "./media/characters/koros/dicks-front.svg"
  27664. }
  27665. },
  27666. dicksPeeking: {
  27667. height: math.unit(3.0, "feet"),
  27668. name: "Dicks (Peeking)",
  27669. image: {
  27670. source: "./media/characters/koros/dicks-peeking.svg"
  27671. }
  27672. },
  27673. eye: {
  27674. height: math.unit(1.7, "feet"),
  27675. name: "Eye",
  27676. image: {
  27677. source: "./media/characters/koros/eye.svg"
  27678. }
  27679. },
  27680. headFront: {
  27681. height: math.unit(11.69, "feet"),
  27682. name: "Head (Front)",
  27683. image: {
  27684. source: "./media/characters/koros/head-front.svg"
  27685. }
  27686. },
  27687. headSide: {
  27688. height: math.unit(14, "feet"),
  27689. name: "Head (Side)",
  27690. image: {
  27691. source: "./media/characters/koros/head-side.svg"
  27692. }
  27693. },
  27694. leg: {
  27695. height: math.unit(17, "feet"),
  27696. name: "Leg",
  27697. image: {
  27698. source: "./media/characters/koros/leg.svg"
  27699. }
  27700. },
  27701. mawSide: {
  27702. height: math.unit(12.8, "feet"),
  27703. name: "Maw (Side)",
  27704. image: {
  27705. source: "./media/characters/koros/maw-side.svg"
  27706. }
  27707. },
  27708. mawSpitting: {
  27709. height: math.unit(17, "feet"),
  27710. name: "Maw (Spitting)",
  27711. image: {
  27712. source: "./media/characters/koros/maw-spitting.svg"
  27713. }
  27714. },
  27715. slit: {
  27716. height: math.unit(2.8, "feet"),
  27717. name: "Slit",
  27718. image: {
  27719. source: "./media/characters/koros/slit.svg"
  27720. }
  27721. },
  27722. stomach: {
  27723. height: math.unit(6.8, "feet"),
  27724. preyCapacity: math.unit(20, "people"),
  27725. name: "Stomach",
  27726. image: {
  27727. source: "./media/characters/koros/stomach.svg"
  27728. }
  27729. },
  27730. wingspanBottom: {
  27731. height: math.unit(114, "feet"),
  27732. name: "Wingspan (Bottom)",
  27733. image: {
  27734. source: "./media/characters/koros/wingspan-bottom.svg"
  27735. }
  27736. },
  27737. wingspanTop: {
  27738. height: math.unit(104, "feet"),
  27739. name: "Wingspan (Top)",
  27740. image: {
  27741. source: "./media/characters/koros/wingspan-top.svg"
  27742. }
  27743. },
  27744. },
  27745. [
  27746. {
  27747. name: "Normal",
  27748. height: math.unit(31 + 8 / 12, "feet"),
  27749. default: true
  27750. },
  27751. ]
  27752. ))
  27753. characterMakers.push(() => makeCharacter(
  27754. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  27755. {
  27756. front: {
  27757. height: math.unit(18 + 5 / 12, "feet"),
  27758. weight: math.unit(3750, "kg"),
  27759. name: "Front",
  27760. image: {
  27761. source: "./media/characters/vexx/front.svg",
  27762. extra: 426 / 396,
  27763. bottom: 31.5 / 458
  27764. }
  27765. },
  27766. maw: {
  27767. height: math.unit(6, "feet"),
  27768. name: "Maw",
  27769. image: {
  27770. source: "./media/characters/vexx/maw.svg"
  27771. }
  27772. },
  27773. },
  27774. [
  27775. {
  27776. name: "Normal",
  27777. height: math.unit(18 + 5 / 12, "feet"),
  27778. default: true
  27779. },
  27780. ]
  27781. ))
  27782. characterMakers.push(() => makeCharacter(
  27783. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  27784. {
  27785. front: {
  27786. height: math.unit(17 + 6 / 12, "feet"),
  27787. weight: math.unit(150, "lb"),
  27788. name: "Front",
  27789. image: {
  27790. source: "./media/characters/baadra/front.svg",
  27791. extra: 1694/1553,
  27792. bottom: 179/1873
  27793. }
  27794. },
  27795. frontAlt: {
  27796. height: math.unit(17 + 6 / 12, "feet"),
  27797. weight: math.unit(150, "lb"),
  27798. name: "Front (Alt)",
  27799. image: {
  27800. source: "./media/characters/baadra/front-alt.svg",
  27801. extra: 3137 / 2890,
  27802. bottom: 168.4 / 3305
  27803. }
  27804. },
  27805. back: {
  27806. height: math.unit(17 + 6 / 12, "feet"),
  27807. weight: math.unit(150, "lb"),
  27808. name: "Back",
  27809. image: {
  27810. source: "./media/characters/baadra/back.svg",
  27811. extra: 3142 / 2890,
  27812. bottom: 220 / 3371
  27813. }
  27814. },
  27815. head: {
  27816. height: math.unit(5.45, "feet"),
  27817. name: "Head",
  27818. image: {
  27819. source: "./media/characters/baadra/head.svg"
  27820. }
  27821. },
  27822. headAngry: {
  27823. height: math.unit(4.95, "feet"),
  27824. name: "Head (Angry)",
  27825. image: {
  27826. source: "./media/characters/baadra/head-angry.svg"
  27827. }
  27828. },
  27829. headOpen: {
  27830. height: math.unit(6, "feet"),
  27831. name: "Head (Open)",
  27832. image: {
  27833. source: "./media/characters/baadra/head-open.svg"
  27834. }
  27835. },
  27836. },
  27837. [
  27838. {
  27839. name: "Normal",
  27840. height: math.unit(17 + 6 / 12, "feet"),
  27841. default: true
  27842. },
  27843. ]
  27844. ))
  27845. characterMakers.push(() => makeCharacter(
  27846. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  27847. {
  27848. front: {
  27849. height: math.unit(7 + 3 / 12, "feet"),
  27850. weight: math.unit(180, "lb"),
  27851. name: "Front",
  27852. image: {
  27853. source: "./media/characters/juri/front.svg",
  27854. extra: 1401 / 1237,
  27855. bottom: 18.5 / 1418
  27856. }
  27857. },
  27858. side: {
  27859. height: math.unit(7 + 3 / 12, "feet"),
  27860. weight: math.unit(180, "lb"),
  27861. name: "Side",
  27862. image: {
  27863. source: "./media/characters/juri/side.svg",
  27864. extra: 1424 / 1242,
  27865. bottom: 18.5 / 1447
  27866. }
  27867. },
  27868. sitting: {
  27869. height: math.unit(6, "feet"),
  27870. weight: math.unit(180, "lb"),
  27871. name: "Sitting",
  27872. image: {
  27873. source: "./media/characters/juri/sitting.svg",
  27874. extra: 1270 / 1143,
  27875. bottom: 100 / 1343
  27876. }
  27877. },
  27878. back: {
  27879. height: math.unit(7 + 3 / 12, "feet"),
  27880. weight: math.unit(180, "lb"),
  27881. name: "Back",
  27882. image: {
  27883. source: "./media/characters/juri/back.svg",
  27884. extra: 1377 / 1240,
  27885. bottom: 23.7 / 1405
  27886. }
  27887. },
  27888. maw: {
  27889. height: math.unit(2.8, "feet"),
  27890. name: "Maw",
  27891. image: {
  27892. source: "./media/characters/juri/maw.svg"
  27893. }
  27894. },
  27895. stomach: {
  27896. height: math.unit(0.89, "feet"),
  27897. preyCapacity: math.unit(4, "liters"),
  27898. name: "Stomach",
  27899. image: {
  27900. source: "./media/characters/juri/stomach.svg"
  27901. }
  27902. },
  27903. },
  27904. [
  27905. {
  27906. name: "Normal",
  27907. height: math.unit(7 + 3 / 12, "feet"),
  27908. default: true
  27909. },
  27910. ]
  27911. ))
  27912. characterMakers.push(() => makeCharacter(
  27913. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  27914. {
  27915. fox: {
  27916. height: math.unit(5 + 6 / 12, "feet"),
  27917. weight: math.unit(140, "lb"),
  27918. name: "Fox",
  27919. image: {
  27920. source: "./media/characters/maxene-sita/fox.svg",
  27921. extra: 146 / 138,
  27922. bottom: 2.1 / 148.19
  27923. }
  27924. },
  27925. foxLaying: {
  27926. height: math.unit(1.70, "feet"),
  27927. weight: math.unit(140, "lb"),
  27928. name: "Fox (Laying)",
  27929. image: {
  27930. source: "./media/characters/maxene-sita/fox-laying.svg",
  27931. extra: 910 / 572,
  27932. bottom: 71 / 981
  27933. }
  27934. },
  27935. kitsune: {
  27936. height: math.unit(10, "feet"),
  27937. weight: math.unit(800, "lb"),
  27938. name: "Kitsune",
  27939. image: {
  27940. source: "./media/characters/maxene-sita/kitsune.svg",
  27941. extra: 185 / 176,
  27942. bottom: 4.7 / 189.9
  27943. }
  27944. },
  27945. hellhound: {
  27946. height: math.unit(10, "feet"),
  27947. weight: math.unit(700, "lb"),
  27948. name: "Hellhound",
  27949. image: {
  27950. source: "./media/characters/maxene-sita/hellhound.svg",
  27951. extra: 1600 / 1545,
  27952. bottom: 81 / 1681
  27953. }
  27954. },
  27955. },
  27956. [
  27957. {
  27958. name: "Normal",
  27959. height: math.unit(5 + 6 / 12, "feet"),
  27960. default: true
  27961. },
  27962. ]
  27963. ))
  27964. characterMakers.push(() => makeCharacter(
  27965. { name: "Maia", species: ["mew"], tags: ["feral"] },
  27966. {
  27967. front: {
  27968. height: math.unit(3 + 4 / 12, "feet"),
  27969. weight: math.unit(70, "lb"),
  27970. name: "Front",
  27971. image: {
  27972. source: "./media/characters/maia/front.svg",
  27973. extra: 227 / 219.5,
  27974. bottom: 40 / 267
  27975. }
  27976. },
  27977. back: {
  27978. height: math.unit(3 + 4 / 12, "feet"),
  27979. weight: math.unit(70, "lb"),
  27980. name: "Back",
  27981. image: {
  27982. source: "./media/characters/maia/back.svg",
  27983. extra: 237 / 225
  27984. }
  27985. },
  27986. },
  27987. [
  27988. {
  27989. name: "Normal",
  27990. height: math.unit(3 + 4 / 12, "feet"),
  27991. default: true
  27992. },
  27993. ]
  27994. ))
  27995. characterMakers.push(() => makeCharacter(
  27996. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  27997. {
  27998. front: {
  27999. height: math.unit(5 + 10 / 12, "feet"),
  28000. weight: math.unit(197, "lb"),
  28001. name: "Front",
  28002. image: {
  28003. source: "./media/characters/jabaro/front.svg",
  28004. extra: 225 / 216,
  28005. bottom: 5.06 / 230
  28006. }
  28007. },
  28008. back: {
  28009. height: math.unit(5 + 10 / 12, "feet"),
  28010. weight: math.unit(197, "lb"),
  28011. name: "Back",
  28012. image: {
  28013. source: "./media/characters/jabaro/back.svg",
  28014. extra: 225 / 219,
  28015. bottom: 1.9 / 227
  28016. }
  28017. },
  28018. },
  28019. [
  28020. {
  28021. name: "Normal",
  28022. height: math.unit(5 + 10 / 12, "feet"),
  28023. default: true
  28024. },
  28025. ]
  28026. ))
  28027. characterMakers.push(() => makeCharacter(
  28028. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  28029. {
  28030. front: {
  28031. height: math.unit(5 + 8 / 12, "feet"),
  28032. weight: math.unit(139, "lb"),
  28033. name: "Front",
  28034. image: {
  28035. source: "./media/characters/risa/front.svg",
  28036. extra: 270 / 260,
  28037. bottom: 11.2 / 282
  28038. }
  28039. },
  28040. back: {
  28041. height: math.unit(5 + 8 / 12, "feet"),
  28042. weight: math.unit(139, "lb"),
  28043. name: "Back",
  28044. image: {
  28045. source: "./media/characters/risa/back.svg",
  28046. extra: 264 / 255,
  28047. bottom: 4 / 268
  28048. }
  28049. },
  28050. },
  28051. [
  28052. {
  28053. name: "Normal",
  28054. height: math.unit(5 + 8 / 12, "feet"),
  28055. default: true
  28056. },
  28057. ]
  28058. ))
  28059. characterMakers.push(() => makeCharacter(
  28060. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  28061. {
  28062. front: {
  28063. height: math.unit(2 + 11 / 12, "feet"),
  28064. weight: math.unit(30, "lb"),
  28065. name: "Front",
  28066. image: {
  28067. source: "./media/characters/weatley/front.svg",
  28068. bottom: 10.7 / 414,
  28069. extra: 403.5 / 362
  28070. }
  28071. },
  28072. back: {
  28073. height: math.unit(2 + 11 / 12, "feet"),
  28074. weight: math.unit(30, "lb"),
  28075. name: "Back",
  28076. image: {
  28077. source: "./media/characters/weatley/back.svg",
  28078. bottom: 10.7 / 414,
  28079. extra: 403.5 / 362
  28080. }
  28081. },
  28082. },
  28083. [
  28084. {
  28085. name: "Normal",
  28086. height: math.unit(2 + 11 / 12, "feet"),
  28087. default: true
  28088. },
  28089. ]
  28090. ))
  28091. characterMakers.push(() => makeCharacter(
  28092. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  28093. {
  28094. front: {
  28095. height: math.unit(5 + 2 / 12, "feet"),
  28096. weight: math.unit(50, "kg"),
  28097. name: "Front",
  28098. image: {
  28099. source: "./media/characters/mercury-crescent/front.svg",
  28100. extra: 1088 / 1033,
  28101. bottom: 18.9 / 1109
  28102. }
  28103. },
  28104. },
  28105. [
  28106. {
  28107. name: "Normal",
  28108. height: math.unit(5 + 2 / 12, "feet"),
  28109. default: true
  28110. },
  28111. ]
  28112. ))
  28113. characterMakers.push(() => makeCharacter(
  28114. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  28115. {
  28116. front: {
  28117. height: math.unit(2, "feet"),
  28118. weight: math.unit(15, "kg"),
  28119. name: "Front",
  28120. image: {
  28121. source: "./media/characters/diamond-jones/front.svg",
  28122. extra: 727/723,
  28123. bottom: 46/773
  28124. }
  28125. },
  28126. },
  28127. [
  28128. {
  28129. name: "Normal",
  28130. height: math.unit(2, "feet"),
  28131. default: true
  28132. },
  28133. ]
  28134. ))
  28135. characterMakers.push(() => makeCharacter(
  28136. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  28137. {
  28138. front: {
  28139. height: math.unit(3, "feet"),
  28140. weight: math.unit(30, "kg"),
  28141. name: "Front",
  28142. image: {
  28143. source: "./media/characters/sweet-bit/front.svg",
  28144. extra: 675 / 567,
  28145. bottom: 27.7 / 703
  28146. }
  28147. },
  28148. },
  28149. [
  28150. {
  28151. name: "Normal",
  28152. height: math.unit(3, "feet"),
  28153. default: true
  28154. },
  28155. ]
  28156. ))
  28157. characterMakers.push(() => makeCharacter(
  28158. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  28159. {
  28160. side: {
  28161. height: math.unit(9.178, "feet"),
  28162. weight: math.unit(500, "lb"),
  28163. name: "Side",
  28164. image: {
  28165. source: "./media/characters/umbrazen/side.svg",
  28166. extra: 1730 / 1473,
  28167. bottom: 34.6 / 1765
  28168. }
  28169. },
  28170. },
  28171. [
  28172. {
  28173. name: "Normal",
  28174. height: math.unit(9.178, "feet"),
  28175. default: true
  28176. },
  28177. ]
  28178. ))
  28179. characterMakers.push(() => makeCharacter(
  28180. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  28181. {
  28182. front: {
  28183. height: math.unit(10, "feet"),
  28184. weight: math.unit(750, "lb"),
  28185. name: "Front",
  28186. image: {
  28187. source: "./media/characters/arlist/front.svg",
  28188. extra: 961 / 778,
  28189. bottom: 6.2 / 986
  28190. }
  28191. },
  28192. },
  28193. [
  28194. {
  28195. name: "Normal",
  28196. height: math.unit(10, "feet"),
  28197. default: true
  28198. },
  28199. ]
  28200. ))
  28201. characterMakers.push(() => makeCharacter(
  28202. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  28203. {
  28204. front: {
  28205. height: math.unit(5 + 1 / 12, "feet"),
  28206. weight: math.unit(110, "lb"),
  28207. name: "Front",
  28208. image: {
  28209. source: "./media/characters/aradel/front.svg",
  28210. extra: 324 / 303,
  28211. bottom: 3.6 / 329.4
  28212. }
  28213. },
  28214. },
  28215. [
  28216. {
  28217. name: "Normal",
  28218. height: math.unit(5 + 1 / 12, "feet"),
  28219. default: true
  28220. },
  28221. ]
  28222. ))
  28223. characterMakers.push(() => makeCharacter(
  28224. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  28225. {
  28226. dressed: {
  28227. height: math.unit(3 + 8 / 12, "feet"),
  28228. weight: math.unit(50, "lb"),
  28229. name: "Dressed",
  28230. image: {
  28231. source: "./media/characters/serryn/dressed.svg",
  28232. extra: 1792 / 1656,
  28233. bottom: 43.5 / 1840
  28234. }
  28235. },
  28236. nude: {
  28237. height: math.unit(3 + 8 / 12, "feet"),
  28238. weight: math.unit(50, "lb"),
  28239. name: "Nude",
  28240. image: {
  28241. source: "./media/characters/serryn/nude.svg",
  28242. extra: 1792 / 1656,
  28243. bottom: 43.5 / 1840
  28244. }
  28245. },
  28246. },
  28247. [
  28248. {
  28249. name: "Normal",
  28250. height: math.unit(3 + 8 / 12, "feet"),
  28251. default: true
  28252. },
  28253. ]
  28254. ))
  28255. characterMakers.push(() => makeCharacter(
  28256. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  28257. {
  28258. front: {
  28259. height: math.unit(7 + 10 / 12, "feet"),
  28260. weight: math.unit(255, "lb"),
  28261. name: "Front",
  28262. image: {
  28263. source: "./media/characters/xavier-thyme/front.svg",
  28264. extra: 3733 / 3642,
  28265. bottom: 131 / 3869
  28266. }
  28267. },
  28268. frontRaven: {
  28269. height: math.unit(7 + 10 / 12, "feet"),
  28270. weight: math.unit(255, "lb"),
  28271. name: "Front (Raven)",
  28272. image: {
  28273. source: "./media/characters/xavier-thyme/front-raven.svg",
  28274. extra: 4385 / 3642,
  28275. bottom: 131 / 4517
  28276. }
  28277. },
  28278. },
  28279. [
  28280. {
  28281. name: "Normal",
  28282. height: math.unit(7 + 10 / 12, "feet"),
  28283. default: true
  28284. },
  28285. ]
  28286. ))
  28287. characterMakers.push(() => makeCharacter(
  28288. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  28289. {
  28290. front: {
  28291. height: math.unit(1.6, "m"),
  28292. weight: math.unit(50, "kg"),
  28293. name: "Front",
  28294. image: {
  28295. source: "./media/characters/kiki/front.svg",
  28296. extra: 4682 / 3610,
  28297. bottom: 115 / 4777
  28298. }
  28299. },
  28300. },
  28301. [
  28302. {
  28303. name: "Normal",
  28304. height: math.unit(1.6, "meters"),
  28305. default: true
  28306. },
  28307. ]
  28308. ))
  28309. characterMakers.push(() => makeCharacter(
  28310. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  28311. {
  28312. front: {
  28313. height: math.unit(50, "m"),
  28314. weight: math.unit(500, "tonnes"),
  28315. name: "Front",
  28316. image: {
  28317. source: "./media/characters/ryoko/front.svg",
  28318. extra: 4632 / 3926,
  28319. bottom: 193 / 4823
  28320. }
  28321. },
  28322. },
  28323. [
  28324. {
  28325. name: "Normal",
  28326. height: math.unit(50, "meters"),
  28327. default: true
  28328. },
  28329. ]
  28330. ))
  28331. characterMakers.push(() => makeCharacter(
  28332. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  28333. {
  28334. front: {
  28335. height: math.unit(30, "m"),
  28336. weight: math.unit(22, "tonnes"),
  28337. name: "Front",
  28338. image: {
  28339. source: "./media/characters/elio/front.svg",
  28340. extra: 4582 / 3720,
  28341. bottom: 236 / 4828
  28342. }
  28343. },
  28344. },
  28345. [
  28346. {
  28347. name: "Normal",
  28348. height: math.unit(30, "meters"),
  28349. default: true
  28350. },
  28351. ]
  28352. ))
  28353. characterMakers.push(() => makeCharacter(
  28354. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  28355. {
  28356. front: {
  28357. height: math.unit(6 + 3 / 12, "feet"),
  28358. weight: math.unit(120, "lb"),
  28359. name: "Front",
  28360. image: {
  28361. source: "./media/characters/azura/front.svg",
  28362. extra: 1149 / 1135,
  28363. bottom: 45 / 1194
  28364. }
  28365. },
  28366. frontClothed: {
  28367. height: math.unit(6 + 3 / 12, "feet"),
  28368. weight: math.unit(120, "lb"),
  28369. name: "Front (Clothed)",
  28370. image: {
  28371. source: "./media/characters/azura/front-clothed.svg",
  28372. extra: 1149 / 1135,
  28373. bottom: 45 / 1194
  28374. }
  28375. },
  28376. },
  28377. [
  28378. {
  28379. name: "Normal",
  28380. height: math.unit(6 + 3 / 12, "feet"),
  28381. default: true
  28382. },
  28383. {
  28384. name: "Macro",
  28385. height: math.unit(20 + 6 / 12, "feet")
  28386. },
  28387. {
  28388. name: "Megamacro",
  28389. height: math.unit(12, "miles")
  28390. },
  28391. {
  28392. name: "Gigamacro",
  28393. height: math.unit(10000, "miles")
  28394. },
  28395. {
  28396. name: "Teramacro",
  28397. height: math.unit(900000, "miles")
  28398. },
  28399. ]
  28400. ))
  28401. characterMakers.push(() => makeCharacter(
  28402. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  28403. {
  28404. front: {
  28405. height: math.unit(12, "feet"),
  28406. weight: math.unit(1, "ton"),
  28407. capacity: math.unit(660000, "gallons"),
  28408. name: "Front",
  28409. image: {
  28410. source: "./media/characters/zeus/front.svg",
  28411. extra: 5005 / 4717,
  28412. bottom: 363 / 5388
  28413. }
  28414. },
  28415. },
  28416. [
  28417. {
  28418. name: "Normal",
  28419. height: math.unit(12, "feet")
  28420. },
  28421. {
  28422. name: "Preferred Size",
  28423. height: math.unit(0.5, "miles"),
  28424. default: true
  28425. },
  28426. {
  28427. name: "Giga Horse",
  28428. height: math.unit(300, "miles")
  28429. },
  28430. {
  28431. name: "Riding Planets",
  28432. height: math.unit(30, "megameters")
  28433. },
  28434. {
  28435. name: "Cosmic Giant",
  28436. height: math.unit(3, "zettameters")
  28437. },
  28438. {
  28439. name: "Breeding God",
  28440. height: math.unit(9.92e22, "yottameters")
  28441. },
  28442. ]
  28443. ))
  28444. characterMakers.push(() => makeCharacter(
  28445. { name: "Fang", species: ["monster"], tags: ["feral"] },
  28446. {
  28447. side: {
  28448. height: math.unit(9, "feet"),
  28449. weight: math.unit(1500, "kg"),
  28450. name: "Side",
  28451. image: {
  28452. source: "./media/characters/fang/side.svg",
  28453. extra: 924 / 866,
  28454. bottom: 47.5 / 972.3
  28455. }
  28456. },
  28457. },
  28458. [
  28459. {
  28460. name: "Normal",
  28461. height: math.unit(9, "feet"),
  28462. default: true
  28463. },
  28464. {
  28465. name: "Macro",
  28466. height: math.unit(75 + 6 / 12, "feet")
  28467. },
  28468. {
  28469. name: "Teramacro",
  28470. height: math.unit(50000, "miles")
  28471. },
  28472. ]
  28473. ))
  28474. characterMakers.push(() => makeCharacter(
  28475. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  28476. {
  28477. front: {
  28478. height: math.unit(10, "feet"),
  28479. weight: math.unit(2, "tons"),
  28480. name: "Front",
  28481. image: {
  28482. source: "./media/characters/rekhit/front.svg",
  28483. extra: 2796 / 2590,
  28484. bottom: 225 / 3022
  28485. }
  28486. },
  28487. },
  28488. [
  28489. {
  28490. name: "Normal",
  28491. height: math.unit(10, "feet"),
  28492. default: true
  28493. },
  28494. {
  28495. name: "Macro",
  28496. height: math.unit(500, "feet")
  28497. },
  28498. ]
  28499. ))
  28500. characterMakers.push(() => makeCharacter(
  28501. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  28502. {
  28503. front: {
  28504. height: math.unit(7 + 6.451 / 12, "feet"),
  28505. weight: math.unit(310, "lb"),
  28506. name: "Front",
  28507. image: {
  28508. source: "./media/characters/dahlia-verrick/front.svg",
  28509. extra: 1488 / 1365,
  28510. bottom: 6.2 / 1495
  28511. }
  28512. },
  28513. back: {
  28514. height: math.unit(7 + 6.451 / 12, "feet"),
  28515. weight: math.unit(310, "lb"),
  28516. name: "Back",
  28517. image: {
  28518. source: "./media/characters/dahlia-verrick/back.svg",
  28519. extra: 1472 / 1351,
  28520. bottom: 5.28 / 1477
  28521. }
  28522. },
  28523. frontBusiness: {
  28524. height: math.unit(7 + 6.451 / 12, "feet"),
  28525. weight: math.unit(200, "lb"),
  28526. name: "Front (Business)",
  28527. image: {
  28528. source: "./media/characters/dahlia-verrick/front-business.svg",
  28529. extra: 1478 / 1381,
  28530. bottom: 5.5 / 1484
  28531. }
  28532. },
  28533. frontCasual: {
  28534. height: math.unit(7 + 6.451 / 12, "feet"),
  28535. weight: math.unit(200, "lb"),
  28536. name: "Front (Casual)",
  28537. image: {
  28538. source: "./media/characters/dahlia-verrick/front-casual.svg",
  28539. extra: 1478 / 1381,
  28540. bottom: 5.5 / 1484
  28541. }
  28542. },
  28543. },
  28544. [
  28545. {
  28546. name: "Travel-Sized",
  28547. height: math.unit(7.45, "inches")
  28548. },
  28549. {
  28550. name: "Normal",
  28551. height: math.unit(7 + 6.451 / 12, "feet"),
  28552. default: true
  28553. },
  28554. {
  28555. name: "Hitting the Town",
  28556. height: math.unit(37 + 8 / 12, "feet")
  28557. },
  28558. {
  28559. name: "Stomp in the Suburbs",
  28560. height: math.unit(964 + 9.728 / 12, "feet")
  28561. },
  28562. {
  28563. name: "Sit on the City",
  28564. height: math.unit(61747 + 10.592 / 12, "feet")
  28565. },
  28566. {
  28567. name: "Glomp the Globe",
  28568. height: math.unit(252919327 + 4.832 / 12, "feet")
  28569. },
  28570. ]
  28571. ))
  28572. characterMakers.push(() => makeCharacter(
  28573. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  28574. {
  28575. front: {
  28576. height: math.unit(6 + 4 / 12, "feet"),
  28577. weight: math.unit(320, "lb"),
  28578. name: "Front",
  28579. image: {
  28580. source: "./media/characters/balina-mahigan/front.svg",
  28581. extra: 447 / 428,
  28582. bottom: 18 / 466
  28583. }
  28584. },
  28585. back: {
  28586. height: math.unit(6 + 4 / 12, "feet"),
  28587. weight: math.unit(320, "lb"),
  28588. name: "Back",
  28589. image: {
  28590. source: "./media/characters/balina-mahigan/back.svg",
  28591. extra: 445 / 428,
  28592. bottom: 4.07 / 448
  28593. }
  28594. },
  28595. arm: {
  28596. height: math.unit(1.88, "feet"),
  28597. name: "Arm",
  28598. image: {
  28599. source: "./media/characters/balina-mahigan/arm.svg"
  28600. }
  28601. },
  28602. backPort: {
  28603. height: math.unit(0.685, "feet"),
  28604. name: "Back Port",
  28605. image: {
  28606. source: "./media/characters/balina-mahigan/back-port.svg"
  28607. }
  28608. },
  28609. hoofpaw: {
  28610. height: math.unit(1.41, "feet"),
  28611. name: "Hoofpaw",
  28612. image: {
  28613. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  28614. }
  28615. },
  28616. leftHandBack: {
  28617. height: math.unit(0.938, "feet"),
  28618. name: "Left Hand (Back)",
  28619. image: {
  28620. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  28621. }
  28622. },
  28623. leftHandFront: {
  28624. height: math.unit(0.938, "feet"),
  28625. name: "Left Hand (Front)",
  28626. image: {
  28627. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  28628. }
  28629. },
  28630. rightHandBack: {
  28631. height: math.unit(0.95, "feet"),
  28632. name: "Right Hand (Back)",
  28633. image: {
  28634. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  28635. }
  28636. },
  28637. rightHandFront: {
  28638. height: math.unit(0.95, "feet"),
  28639. name: "Right Hand (Front)",
  28640. image: {
  28641. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  28642. }
  28643. },
  28644. },
  28645. [
  28646. {
  28647. name: "Normal",
  28648. height: math.unit(6 + 4 / 12, "feet"),
  28649. default: true
  28650. },
  28651. ]
  28652. ))
  28653. characterMakers.push(() => makeCharacter(
  28654. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  28655. {
  28656. front: {
  28657. height: math.unit(6, "feet"),
  28658. weight: math.unit(320, "lb"),
  28659. name: "Front",
  28660. image: {
  28661. source: "./media/characters/balina-mejeri/front.svg",
  28662. extra: 517 / 488,
  28663. bottom: 44.2 / 561
  28664. }
  28665. },
  28666. },
  28667. [
  28668. {
  28669. name: "Normal",
  28670. height: math.unit(6 + 4 / 12, "feet")
  28671. },
  28672. {
  28673. name: "Business",
  28674. height: math.unit(155, "feet"),
  28675. default: true
  28676. },
  28677. ]
  28678. ))
  28679. characterMakers.push(() => makeCharacter(
  28680. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  28681. {
  28682. kneeling: {
  28683. height: math.unit(6 + 4 / 12, "feet"),
  28684. weight: math.unit(300 * 20, "lb"),
  28685. name: "Kneeling",
  28686. image: {
  28687. source: "./media/characters/balbarian/kneeling.svg",
  28688. extra: 922 / 862,
  28689. bottom: 42.4 / 965
  28690. }
  28691. },
  28692. },
  28693. [
  28694. {
  28695. name: "Normal",
  28696. height: math.unit(6 + 4 / 12, "feet")
  28697. },
  28698. {
  28699. name: "Treasured",
  28700. height: math.unit(18 + 9 / 12, "feet"),
  28701. default: true
  28702. },
  28703. {
  28704. name: "Macro",
  28705. height: math.unit(900, "feet")
  28706. },
  28707. ]
  28708. ))
  28709. characterMakers.push(() => makeCharacter(
  28710. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  28711. {
  28712. front: {
  28713. height: math.unit(6 + 4 / 12, "feet"),
  28714. weight: math.unit(325, "lb"),
  28715. name: "Front",
  28716. image: {
  28717. source: "./media/characters/balina-amarini/front.svg",
  28718. extra: 415 / 403,
  28719. bottom: 19 / 433.4
  28720. }
  28721. },
  28722. back: {
  28723. height: math.unit(6 + 4 / 12, "feet"),
  28724. weight: math.unit(325, "lb"),
  28725. name: "Back",
  28726. image: {
  28727. source: "./media/characters/balina-amarini/back.svg",
  28728. extra: 415 / 403,
  28729. bottom: 13.5 / 432
  28730. }
  28731. },
  28732. overdrive: {
  28733. height: math.unit(6 + 4 / 12, "feet"),
  28734. weight: math.unit(400, "lb"),
  28735. name: "Overdrive",
  28736. image: {
  28737. source: "./media/characters/balina-amarini/overdrive.svg",
  28738. extra: 269 / 259,
  28739. bottom: 12 / 282
  28740. }
  28741. },
  28742. },
  28743. [
  28744. {
  28745. name: "Boom",
  28746. height: math.unit(9 + 10 / 12, "feet"),
  28747. default: true
  28748. },
  28749. {
  28750. name: "Macro",
  28751. height: math.unit(280, "feet")
  28752. },
  28753. ]
  28754. ))
  28755. characterMakers.push(() => makeCharacter(
  28756. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  28757. {
  28758. goddess: {
  28759. height: math.unit(600, "feet"),
  28760. weight: math.unit(2000000, "tons"),
  28761. name: "Goddess",
  28762. image: {
  28763. source: "./media/characters/lady-kubwa/goddess.svg",
  28764. extra: 1240.5 / 1223,
  28765. bottom: 22 / 1263
  28766. }
  28767. },
  28768. goddesser: {
  28769. height: math.unit(900, "feet"),
  28770. weight: math.unit(20000000, "lb"),
  28771. name: "Goddess-er",
  28772. image: {
  28773. source: "./media/characters/lady-kubwa/goddess-er.svg",
  28774. extra: 899 / 888,
  28775. bottom: 12.6 / 912
  28776. }
  28777. },
  28778. },
  28779. [
  28780. {
  28781. name: "Macro",
  28782. height: math.unit(600, "feet"),
  28783. default: true
  28784. },
  28785. {
  28786. name: "Megamacro",
  28787. height: math.unit(250, "miles")
  28788. },
  28789. ]
  28790. ))
  28791. characterMakers.push(() => makeCharacter(
  28792. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  28793. {
  28794. front: {
  28795. height: math.unit(7 + 7 / 12, "feet"),
  28796. weight: math.unit(250, "lb"),
  28797. name: "Front",
  28798. image: {
  28799. source: "./media/characters/tala-grovehorn/front.svg",
  28800. extra: 2636 / 2525,
  28801. bottom: 147 / 2781
  28802. }
  28803. },
  28804. back: {
  28805. height: math.unit(7 + 7 / 12, "feet"),
  28806. weight: math.unit(250, "lb"),
  28807. name: "Back",
  28808. image: {
  28809. source: "./media/characters/tala-grovehorn/back.svg",
  28810. extra: 2635 / 2539,
  28811. bottom: 100 / 2732.8
  28812. }
  28813. },
  28814. mouth: {
  28815. height: math.unit(1.15, "feet"),
  28816. name: "Mouth",
  28817. image: {
  28818. source: "./media/characters/tala-grovehorn/mouth.svg"
  28819. }
  28820. },
  28821. dick: {
  28822. height: math.unit(2.36, "feet"),
  28823. name: "Dick",
  28824. image: {
  28825. source: "./media/characters/tala-grovehorn/dick.svg"
  28826. }
  28827. },
  28828. slit: {
  28829. height: math.unit(0.61, "feet"),
  28830. name: "Slit",
  28831. image: {
  28832. source: "./media/characters/tala-grovehorn/slit.svg"
  28833. }
  28834. },
  28835. },
  28836. [
  28837. ]
  28838. ))
  28839. characterMakers.push(() => makeCharacter(
  28840. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  28841. {
  28842. front: {
  28843. height: math.unit(7 + 7 / 12, "feet"),
  28844. weight: math.unit(225, "lb"),
  28845. name: "Front",
  28846. image: {
  28847. source: "./media/characters/epona/front.svg",
  28848. extra: 2445 / 2290,
  28849. bottom: 251 / 2696
  28850. }
  28851. },
  28852. back: {
  28853. height: math.unit(7 + 7 / 12, "feet"),
  28854. weight: math.unit(225, "lb"),
  28855. name: "Back",
  28856. image: {
  28857. source: "./media/characters/epona/back.svg",
  28858. extra: 2546 / 2408,
  28859. bottom: 44 / 2589
  28860. }
  28861. },
  28862. genitals: {
  28863. height: math.unit(1.5, "feet"),
  28864. name: "Genitals",
  28865. image: {
  28866. source: "./media/characters/epona/genitals.svg"
  28867. }
  28868. },
  28869. },
  28870. [
  28871. {
  28872. name: "Normal",
  28873. height: math.unit(7 + 7 / 12, "feet"),
  28874. default: true
  28875. },
  28876. ]
  28877. ))
  28878. characterMakers.push(() => makeCharacter(
  28879. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  28880. {
  28881. front: {
  28882. height: math.unit(7, "feet"),
  28883. weight: math.unit(518, "lb"),
  28884. name: "Front",
  28885. image: {
  28886. source: "./media/characters/avia-bloodbourn/front.svg",
  28887. extra: 1466 / 1350,
  28888. bottom: 65 / 1527
  28889. }
  28890. },
  28891. },
  28892. [
  28893. ]
  28894. ))
  28895. characterMakers.push(() => makeCharacter(
  28896. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  28897. {
  28898. front: {
  28899. height: math.unit(9.35, "feet"),
  28900. weight: math.unit(600, "lb"),
  28901. name: "Front",
  28902. image: {
  28903. source: "./media/characters/amera/front.svg",
  28904. extra: 891 / 818,
  28905. bottom: 30 / 922.7
  28906. }
  28907. },
  28908. back: {
  28909. height: math.unit(9.35, "feet"),
  28910. weight: math.unit(600, "lb"),
  28911. name: "Back",
  28912. image: {
  28913. source: "./media/characters/amera/back.svg",
  28914. extra: 876 / 824,
  28915. bottom: 6.8 / 884
  28916. }
  28917. },
  28918. dick: {
  28919. height: math.unit(2.14, "feet"),
  28920. name: "Dick",
  28921. image: {
  28922. source: "./media/characters/amera/dick.svg"
  28923. }
  28924. },
  28925. },
  28926. [
  28927. {
  28928. name: "Normal",
  28929. height: math.unit(9.35, "feet"),
  28930. default: true
  28931. },
  28932. ]
  28933. ))
  28934. characterMakers.push(() => makeCharacter(
  28935. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  28936. {
  28937. kneeling: {
  28938. height: math.unit(3 + 4 / 12, "feet"),
  28939. weight: math.unit(90, "lb"),
  28940. name: "Kneeling",
  28941. image: {
  28942. source: "./media/characters/rosewen/kneeling.svg",
  28943. extra: 1835 / 1571,
  28944. bottom: 27.7 / 1862
  28945. }
  28946. },
  28947. },
  28948. [
  28949. {
  28950. name: "Normal",
  28951. height: math.unit(3 + 4 / 12, "feet"),
  28952. default: true
  28953. },
  28954. ]
  28955. ))
  28956. characterMakers.push(() => makeCharacter(
  28957. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  28958. {
  28959. front: {
  28960. height: math.unit(5 + 10 / 12, "feet"),
  28961. weight: math.unit(200, "lb"),
  28962. name: "Front",
  28963. image: {
  28964. source: "./media/characters/sabah/front.svg",
  28965. extra: 849 / 763,
  28966. bottom: 33.9 / 881
  28967. }
  28968. },
  28969. },
  28970. [
  28971. {
  28972. name: "Normal",
  28973. height: math.unit(5 + 10 / 12, "feet"),
  28974. default: true
  28975. },
  28976. ]
  28977. ))
  28978. characterMakers.push(() => makeCharacter(
  28979. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  28980. {
  28981. front: {
  28982. height: math.unit(3 + 5 / 12, "feet"),
  28983. weight: math.unit(40, "kg"),
  28984. name: "Front",
  28985. image: {
  28986. source: "./media/characters/purple-flame/front.svg",
  28987. extra: 1577 / 1412,
  28988. bottom: 97 / 1694
  28989. }
  28990. },
  28991. frontDressed: {
  28992. height: math.unit(3 + 5 / 12, "feet"),
  28993. weight: math.unit(40, "kg"),
  28994. name: "Front (Dressed)",
  28995. image: {
  28996. source: "./media/characters/purple-flame/front-dressed.svg",
  28997. extra: 1577 / 1412,
  28998. bottom: 97 / 1694
  28999. }
  29000. },
  29001. headphones: {
  29002. height: math.unit(0.85, "feet"),
  29003. name: "Headphones",
  29004. image: {
  29005. source: "./media/characters/purple-flame/headphones.svg"
  29006. }
  29007. },
  29008. },
  29009. [
  29010. {
  29011. name: "Really Small",
  29012. height: math.unit(5, "cm")
  29013. },
  29014. {
  29015. name: "Micro",
  29016. height: math.unit(1 + 5 / 12, "feet")
  29017. },
  29018. {
  29019. name: "Normal",
  29020. height: math.unit(3 + 5 / 12, "feet"),
  29021. default: true
  29022. },
  29023. {
  29024. name: "Minimacro",
  29025. height: math.unit(125, "feet")
  29026. },
  29027. {
  29028. name: "Macro",
  29029. height: math.unit(0.5, "miles")
  29030. },
  29031. {
  29032. name: "Megamacro",
  29033. height: math.unit(50, "miles")
  29034. },
  29035. {
  29036. name: "Gigantic",
  29037. height: math.unit(750, "miles")
  29038. },
  29039. {
  29040. name: "Planetary",
  29041. height: math.unit(15000, "miles")
  29042. },
  29043. ]
  29044. ))
  29045. characterMakers.push(() => makeCharacter(
  29046. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  29047. {
  29048. front: {
  29049. height: math.unit(14, "feet"),
  29050. weight: math.unit(959, "lb"),
  29051. name: "Front",
  29052. image: {
  29053. source: "./media/characters/arsenal/front.svg",
  29054. extra: 2357 / 2157,
  29055. bottom: 93 / 2458
  29056. }
  29057. },
  29058. },
  29059. [
  29060. {
  29061. name: "Normal",
  29062. height: math.unit(14, "feet"),
  29063. default: true
  29064. },
  29065. ]
  29066. ))
  29067. characterMakers.push(() => makeCharacter(
  29068. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  29069. {
  29070. front: {
  29071. height: math.unit(6, "feet"),
  29072. weight: math.unit(150, "lb"),
  29073. name: "Front",
  29074. image: {
  29075. source: "./media/characters/adira/front.svg",
  29076. extra: 1078 / 1029,
  29077. bottom: 87 / 1166
  29078. }
  29079. },
  29080. },
  29081. [
  29082. {
  29083. name: "Micro",
  29084. height: math.unit(4, "inches"),
  29085. default: true
  29086. },
  29087. {
  29088. name: "Macro",
  29089. height: math.unit(50, "feet")
  29090. },
  29091. ]
  29092. ))
  29093. characterMakers.push(() => makeCharacter(
  29094. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  29095. {
  29096. front: {
  29097. height: math.unit(16, "feet"),
  29098. weight: math.unit(1000, "lb"),
  29099. name: "Front",
  29100. image: {
  29101. source: "./media/characters/grim/front.svg",
  29102. extra: 622 / 614,
  29103. bottom: 18.1 / 642
  29104. }
  29105. },
  29106. back: {
  29107. height: math.unit(16, "feet"),
  29108. weight: math.unit(1000, "lb"),
  29109. name: "Back",
  29110. image: {
  29111. source: "./media/characters/grim/back.svg",
  29112. extra: 610.6 / 602,
  29113. bottom: 40.8 / 652
  29114. }
  29115. },
  29116. hunched: {
  29117. height: math.unit(9.75, "feet"),
  29118. weight: math.unit(1000, "lb"),
  29119. name: "Hunched",
  29120. image: {
  29121. source: "./media/characters/grim/hunched.svg",
  29122. extra: 304 / 297,
  29123. bottom: 35.4 / 394
  29124. }
  29125. },
  29126. },
  29127. [
  29128. {
  29129. name: "Normal",
  29130. height: math.unit(16, "feet"),
  29131. default: true
  29132. },
  29133. ]
  29134. ))
  29135. characterMakers.push(() => makeCharacter(
  29136. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  29137. {
  29138. front: {
  29139. height: math.unit(2.3, "meters"),
  29140. weight: math.unit(300, "lb"),
  29141. name: "Front",
  29142. image: {
  29143. source: "./media/characters/sinja/front-sfw.svg",
  29144. extra: 1393 / 1294,
  29145. bottom: 70 / 1463
  29146. }
  29147. },
  29148. frontNsfw: {
  29149. height: math.unit(2.3, "meters"),
  29150. weight: math.unit(300, "lb"),
  29151. name: "Front (NSFW)",
  29152. image: {
  29153. source: "./media/characters/sinja/front-nsfw.svg",
  29154. extra: 1393 / 1294,
  29155. bottom: 70 / 1463
  29156. }
  29157. },
  29158. back: {
  29159. height: math.unit(2.3, "meters"),
  29160. weight: math.unit(300, "lb"),
  29161. name: "Back",
  29162. image: {
  29163. source: "./media/characters/sinja/back.svg",
  29164. extra: 1393 / 1294,
  29165. bottom: 70 / 1463
  29166. }
  29167. },
  29168. head: {
  29169. height: math.unit(1.771, "feet"),
  29170. name: "Head",
  29171. image: {
  29172. source: "./media/characters/sinja/head.svg"
  29173. }
  29174. },
  29175. slit: {
  29176. height: math.unit(0.8, "feet"),
  29177. name: "Slit",
  29178. image: {
  29179. source: "./media/characters/sinja/slit.svg"
  29180. }
  29181. },
  29182. },
  29183. [
  29184. {
  29185. name: "Normal",
  29186. height: math.unit(2.3, "meters")
  29187. },
  29188. {
  29189. name: "Macro",
  29190. height: math.unit(91, "meters"),
  29191. default: true
  29192. },
  29193. {
  29194. name: "Megamacro",
  29195. height: math.unit(91440, "meters")
  29196. },
  29197. {
  29198. name: "Gigamacro",
  29199. height: math.unit(60960000, "meters")
  29200. },
  29201. {
  29202. name: "Teramacro",
  29203. height: math.unit(9144000000, "meters")
  29204. },
  29205. ]
  29206. ))
  29207. characterMakers.push(() => makeCharacter(
  29208. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  29209. {
  29210. front: {
  29211. height: math.unit(1.7, "meters"),
  29212. weight: math.unit(130, "lb"),
  29213. name: "Front",
  29214. image: {
  29215. source: "./media/characters/kyu/front.svg",
  29216. extra: 415 / 395,
  29217. bottom: 5 / 420
  29218. }
  29219. },
  29220. head: {
  29221. height: math.unit(1.75, "feet"),
  29222. name: "Head",
  29223. image: {
  29224. source: "./media/characters/kyu/head.svg"
  29225. }
  29226. },
  29227. foot: {
  29228. height: math.unit(0.81, "feet"),
  29229. name: "Foot",
  29230. image: {
  29231. source: "./media/characters/kyu/foot.svg"
  29232. }
  29233. },
  29234. },
  29235. [
  29236. {
  29237. name: "Normal",
  29238. height: math.unit(1.7, "meters")
  29239. },
  29240. {
  29241. name: "Macro",
  29242. height: math.unit(131, "feet"),
  29243. default: true
  29244. },
  29245. {
  29246. name: "Megamacro",
  29247. height: math.unit(91440, "meters")
  29248. },
  29249. {
  29250. name: "Gigamacro",
  29251. height: math.unit(60960000, "meters")
  29252. },
  29253. {
  29254. name: "Teramacro",
  29255. height: math.unit(9144000000, "meters")
  29256. },
  29257. ]
  29258. ))
  29259. characterMakers.push(() => makeCharacter(
  29260. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  29261. {
  29262. front: {
  29263. height: math.unit(7 + 1 / 12, "feet"),
  29264. weight: math.unit(250, "lb"),
  29265. name: "Front",
  29266. image: {
  29267. source: "./media/characters/joey/front.svg",
  29268. extra: 1791 / 1537,
  29269. bottom: 28 / 1816
  29270. }
  29271. },
  29272. },
  29273. [
  29274. {
  29275. name: "Micro",
  29276. height: math.unit(3, "inches")
  29277. },
  29278. {
  29279. name: "Normal",
  29280. height: math.unit(7 + 1 / 12, "feet"),
  29281. default: true
  29282. },
  29283. ]
  29284. ))
  29285. characterMakers.push(() => makeCharacter(
  29286. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  29287. {
  29288. front: {
  29289. height: math.unit(165, "cm"),
  29290. weight: math.unit(140, "lb"),
  29291. name: "Front",
  29292. image: {
  29293. source: "./media/characters/sam-evans/front.svg",
  29294. extra: 3417 / 3230,
  29295. bottom: 41.3 / 3417
  29296. }
  29297. },
  29298. frontSixTails: {
  29299. height: math.unit(165, "cm"),
  29300. weight: math.unit(140, "lb"),
  29301. name: "Front-six-tails",
  29302. image: {
  29303. source: "./media/characters/sam-evans/front-six-tails.svg",
  29304. extra: 3417 / 3230,
  29305. bottom: 41.3 / 3417
  29306. }
  29307. },
  29308. back: {
  29309. height: math.unit(165, "cm"),
  29310. weight: math.unit(140, "lb"),
  29311. name: "Back",
  29312. image: {
  29313. source: "./media/characters/sam-evans/back.svg",
  29314. extra: 3227 / 3032,
  29315. bottom: 6.8 / 3234
  29316. }
  29317. },
  29318. face: {
  29319. height: math.unit(0.68, "feet"),
  29320. name: "Face",
  29321. image: {
  29322. source: "./media/characters/sam-evans/face.svg"
  29323. }
  29324. },
  29325. },
  29326. [
  29327. {
  29328. name: "Normal",
  29329. height: math.unit(165, "cm"),
  29330. default: true
  29331. },
  29332. {
  29333. name: "Macro",
  29334. height: math.unit(100, "meters")
  29335. },
  29336. {
  29337. name: "Macro+",
  29338. height: math.unit(800, "meters")
  29339. },
  29340. {
  29341. name: "Macro++",
  29342. height: math.unit(3, "km")
  29343. },
  29344. {
  29345. name: "Macro+++",
  29346. height: math.unit(30, "km")
  29347. },
  29348. ]
  29349. ))
  29350. characterMakers.push(() => makeCharacter(
  29351. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  29352. {
  29353. front: {
  29354. height: math.unit(10, "feet"),
  29355. weight: math.unit(750, "lb"),
  29356. name: "Front",
  29357. image: {
  29358. source: "./media/characters/juliet-a/front.svg",
  29359. extra: 1766 / 1720,
  29360. bottom: 43 / 1809
  29361. }
  29362. },
  29363. back: {
  29364. height: math.unit(10, "feet"),
  29365. weight: math.unit(750, "lb"),
  29366. name: "Back",
  29367. image: {
  29368. source: "./media/characters/juliet-a/back.svg",
  29369. extra: 1781 / 1734,
  29370. bottom: 35 / 1810,
  29371. }
  29372. },
  29373. },
  29374. [
  29375. {
  29376. name: "Normal",
  29377. height: math.unit(10, "feet"),
  29378. default: true
  29379. },
  29380. {
  29381. name: "Dragon Form",
  29382. height: math.unit(250, "feet")
  29383. },
  29384. {
  29385. name: "Macro",
  29386. height: math.unit(1000, "feet")
  29387. },
  29388. {
  29389. name: "Megamacro",
  29390. height: math.unit(10000, "feet")
  29391. }
  29392. ]
  29393. ))
  29394. characterMakers.push(() => makeCharacter(
  29395. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  29396. {
  29397. regular: {
  29398. height: math.unit(7 + 3 / 12, "feet"),
  29399. weight: math.unit(260, "lb"),
  29400. name: "Regular",
  29401. image: {
  29402. source: "./media/characters/wild/regular.svg",
  29403. extra: 97.45 / 92,
  29404. bottom: 6.8 / 104.3
  29405. }
  29406. },
  29407. biggums: {
  29408. height: math.unit(8 + 6 / 12, "feet"),
  29409. weight: math.unit(425, "lb"),
  29410. name: "Biggums",
  29411. image: {
  29412. source: "./media/characters/wild/biggums.svg",
  29413. extra: 97.45 / 92,
  29414. bottom: 7.5 / 132.34
  29415. }
  29416. },
  29417. mawRegular: {
  29418. height: math.unit(1.24, "feet"),
  29419. name: "Maw (Regular)",
  29420. image: {
  29421. source: "./media/characters/wild/maw.svg"
  29422. }
  29423. },
  29424. mawBiggums: {
  29425. height: math.unit(1.47, "feet"),
  29426. name: "Maw (Biggums)",
  29427. image: {
  29428. source: "./media/characters/wild/maw.svg"
  29429. }
  29430. },
  29431. },
  29432. [
  29433. {
  29434. name: "Normal",
  29435. height: math.unit(7 + 3 / 12, "feet"),
  29436. default: true
  29437. },
  29438. ]
  29439. ))
  29440. characterMakers.push(() => makeCharacter(
  29441. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  29442. {
  29443. front: {
  29444. height: math.unit(2.5, "meters"),
  29445. weight: math.unit(200, "kg"),
  29446. name: "Front",
  29447. image: {
  29448. source: "./media/characters/vidar/front.svg",
  29449. extra: 2994 / 2795,
  29450. bottom: 56 / 3061
  29451. }
  29452. },
  29453. back: {
  29454. height: math.unit(2.5, "meters"),
  29455. weight: math.unit(200, "kg"),
  29456. name: "Back",
  29457. image: {
  29458. source: "./media/characters/vidar/back.svg",
  29459. extra: 3131 / 2928,
  29460. bottom: 13.5 / 3141.5
  29461. }
  29462. },
  29463. feral: {
  29464. height: math.unit(2.5, "meters"),
  29465. weight: math.unit(2000, "kg"),
  29466. name: "Feral",
  29467. image: {
  29468. source: "./media/characters/vidar/feral.svg",
  29469. extra: 2790 / 1765,
  29470. bottom: 6 / 2796
  29471. }
  29472. },
  29473. },
  29474. [
  29475. {
  29476. name: "Normal",
  29477. height: math.unit(2.5, "meters"),
  29478. default: true
  29479. },
  29480. {
  29481. name: "Macro",
  29482. height: math.unit(100, "meters")
  29483. },
  29484. ]
  29485. ))
  29486. characterMakers.push(() => makeCharacter(
  29487. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  29488. {
  29489. front: {
  29490. height: math.unit(5 + 9 / 12, "feet"),
  29491. weight: math.unit(120, "lb"),
  29492. name: "Front",
  29493. image: {
  29494. source: "./media/characters/ash/front.svg",
  29495. extra: 2189 / 1961,
  29496. bottom: 5.2 / 2194
  29497. }
  29498. },
  29499. },
  29500. [
  29501. {
  29502. name: "Normal",
  29503. height: math.unit(5 + 9 / 12, "feet"),
  29504. default: true
  29505. },
  29506. ]
  29507. ))
  29508. characterMakers.push(() => makeCharacter(
  29509. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  29510. {
  29511. front: {
  29512. height: math.unit(9, "feet"),
  29513. weight: math.unit(10000, "lb"),
  29514. name: "Front",
  29515. image: {
  29516. source: "./media/characters/gygabite/front.svg",
  29517. bottom: 31.7 / 537.8,
  29518. extra: 505 / 370
  29519. }
  29520. },
  29521. },
  29522. [
  29523. {
  29524. name: "Normal",
  29525. height: math.unit(9, "feet"),
  29526. default: true
  29527. },
  29528. ]
  29529. ))
  29530. characterMakers.push(() => makeCharacter(
  29531. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  29532. {
  29533. front: {
  29534. height: math.unit(12, "feet"),
  29535. weight: math.unit(4000, "lb"),
  29536. name: "Front",
  29537. image: {
  29538. source: "./media/characters/p0tat0/front.svg",
  29539. extra: 1065 / 921,
  29540. bottom: 55.7 / 1121.25
  29541. }
  29542. },
  29543. },
  29544. [
  29545. {
  29546. name: "Normal",
  29547. height: math.unit(12, "feet"),
  29548. default: true
  29549. },
  29550. ]
  29551. ))
  29552. characterMakers.push(() => makeCharacter(
  29553. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  29554. {
  29555. side: {
  29556. height: math.unit(6.5, "feet"),
  29557. weight: math.unit(800, "lb"),
  29558. name: "Side",
  29559. image: {
  29560. source: "./media/characters/dusk/side.svg",
  29561. extra: 615 / 373,
  29562. bottom: 53 / 664
  29563. }
  29564. },
  29565. sitting: {
  29566. height: math.unit(7, "feet"),
  29567. weight: math.unit(800, "lb"),
  29568. name: "Sitting",
  29569. image: {
  29570. source: "./media/characters/dusk/sitting.svg",
  29571. extra: 753 / 425,
  29572. bottom: 33 / 774
  29573. }
  29574. },
  29575. head: {
  29576. height: math.unit(6.1, "feet"),
  29577. name: "Head",
  29578. image: {
  29579. source: "./media/characters/dusk/head.svg"
  29580. }
  29581. },
  29582. },
  29583. [
  29584. {
  29585. name: "Normal",
  29586. height: math.unit(7, "feet"),
  29587. default: true
  29588. },
  29589. ]
  29590. ))
  29591. characterMakers.push(() => makeCharacter(
  29592. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  29593. {
  29594. front: {
  29595. height: math.unit(15, "feet"),
  29596. weight: math.unit(7000, "lb"),
  29597. name: "Front",
  29598. image: {
  29599. source: "./media/characters/jay-direwolf/front.svg",
  29600. extra: 1810 / 1732,
  29601. bottom: 66 / 1892
  29602. }
  29603. },
  29604. },
  29605. [
  29606. {
  29607. name: "Normal",
  29608. height: math.unit(15, "feet"),
  29609. default: true
  29610. },
  29611. ]
  29612. ))
  29613. characterMakers.push(() => makeCharacter(
  29614. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  29615. {
  29616. front: {
  29617. height: math.unit(4 + 9 / 12, "feet"),
  29618. weight: math.unit(130, "lb"),
  29619. name: "Front",
  29620. image: {
  29621. source: "./media/characters/anchovie/front.svg",
  29622. extra: 382 / 350,
  29623. bottom: 25 / 409
  29624. }
  29625. },
  29626. back: {
  29627. height: math.unit(4 + 9 / 12, "feet"),
  29628. weight: math.unit(130, "lb"),
  29629. name: "Back",
  29630. image: {
  29631. source: "./media/characters/anchovie/back.svg",
  29632. extra: 385 / 352,
  29633. bottom: 16.6 / 402
  29634. }
  29635. },
  29636. frontDressed: {
  29637. height: math.unit(4 + 9 / 12, "feet"),
  29638. weight: math.unit(130, "lb"),
  29639. name: "Front (Dressed)",
  29640. image: {
  29641. source: "./media/characters/anchovie/front-dressed.svg",
  29642. extra: 382 / 350,
  29643. bottom: 25 / 409
  29644. }
  29645. },
  29646. backDressed: {
  29647. height: math.unit(4 + 9 / 12, "feet"),
  29648. weight: math.unit(130, "lb"),
  29649. name: "Back (Dressed)",
  29650. image: {
  29651. source: "./media/characters/anchovie/back-dressed.svg",
  29652. extra: 385 / 352,
  29653. bottom: 16.6 / 402
  29654. }
  29655. },
  29656. },
  29657. [
  29658. {
  29659. name: "Micro",
  29660. height: math.unit(6.4, "inches")
  29661. },
  29662. {
  29663. name: "Normal",
  29664. height: math.unit(4 + 9 / 12, "feet"),
  29665. default: true
  29666. },
  29667. ]
  29668. ))
  29669. characterMakers.push(() => makeCharacter(
  29670. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  29671. {
  29672. front: {
  29673. height: math.unit(2, "meters"),
  29674. weight: math.unit(180, "lb"),
  29675. name: "Front",
  29676. image: {
  29677. source: "./media/characters/acidrenamon/front.svg",
  29678. extra: 987 / 890,
  29679. bottom: 22.8 / 1009
  29680. }
  29681. },
  29682. back: {
  29683. height: math.unit(2, "meters"),
  29684. weight: math.unit(180, "lb"),
  29685. name: "Back",
  29686. image: {
  29687. source: "./media/characters/acidrenamon/back.svg",
  29688. extra: 983 / 891,
  29689. bottom: 8.4 / 992
  29690. }
  29691. },
  29692. head: {
  29693. height: math.unit(1.92, "feet"),
  29694. name: "Head",
  29695. image: {
  29696. source: "./media/characters/acidrenamon/head.svg"
  29697. }
  29698. },
  29699. rump: {
  29700. height: math.unit(1.72, "feet"),
  29701. name: "Rump",
  29702. image: {
  29703. source: "./media/characters/acidrenamon/rump.svg"
  29704. }
  29705. },
  29706. tail: {
  29707. height: math.unit(4.2, "feet"),
  29708. name: "Tail",
  29709. image: {
  29710. source: "./media/characters/acidrenamon/tail.svg"
  29711. }
  29712. },
  29713. },
  29714. [
  29715. {
  29716. name: "Normal",
  29717. height: math.unit(2, "meters"),
  29718. default: true
  29719. },
  29720. {
  29721. name: "Minimacro",
  29722. height: math.unit(7, "meters")
  29723. },
  29724. {
  29725. name: "Macro",
  29726. height: math.unit(200, "meters")
  29727. },
  29728. {
  29729. name: "Gigamacro",
  29730. height: math.unit(0.2, "earths")
  29731. },
  29732. ]
  29733. ))
  29734. characterMakers.push(() => makeCharacter(
  29735. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  29736. {
  29737. front: {
  29738. height: math.unit(152, "feet"),
  29739. name: "Front",
  29740. image: {
  29741. source: "./media/characters/kenzie-lee/front.svg",
  29742. extra: 1869/1774,
  29743. bottom: 128/1997
  29744. }
  29745. },
  29746. side: {
  29747. height: math.unit(86, "feet"),
  29748. name: "Side",
  29749. image: {
  29750. source: "./media/characters/kenzie-lee/side.svg",
  29751. extra: 930/815,
  29752. bottom: 177/1107
  29753. }
  29754. },
  29755. paw: {
  29756. height: math.unit(15, "feet"),
  29757. name: "Paw",
  29758. image: {
  29759. source: "./media/characters/kenzie-lee/paw.svg"
  29760. }
  29761. },
  29762. },
  29763. [
  29764. {
  29765. name: "Kenzie Flea",
  29766. height: math.unit(2, "mm"),
  29767. default: true
  29768. },
  29769. {
  29770. name: "Micro",
  29771. height: math.unit(2, "inches")
  29772. },
  29773. {
  29774. name: "Normal",
  29775. height: math.unit(152, "feet")
  29776. },
  29777. {
  29778. name: "Megamacro",
  29779. height: math.unit(7, "miles")
  29780. },
  29781. {
  29782. name: "Gigamacro",
  29783. height: math.unit(8000, "miles")
  29784. },
  29785. ]
  29786. ))
  29787. characterMakers.push(() => makeCharacter(
  29788. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  29789. {
  29790. front: {
  29791. height: math.unit(6, "feet"),
  29792. name: "Front",
  29793. image: {
  29794. source: "./media/characters/withers/front.svg",
  29795. extra: 1935/1760,
  29796. bottom: 72/2007
  29797. }
  29798. },
  29799. back: {
  29800. height: math.unit(6, "feet"),
  29801. name: "Back",
  29802. image: {
  29803. source: "./media/characters/withers/back.svg",
  29804. extra: 1944/1792,
  29805. bottom: 12/1956
  29806. }
  29807. },
  29808. dressed: {
  29809. height: math.unit(6, "feet"),
  29810. name: "Dressed",
  29811. image: {
  29812. source: "./media/characters/withers/dressed.svg",
  29813. extra: 1937/1765,
  29814. bottom: 73/2010
  29815. }
  29816. },
  29817. phase1: {
  29818. height: math.unit(1.1, "feet"),
  29819. name: "Phase 1",
  29820. image: {
  29821. source: "./media/characters/withers/phase-1.svg",
  29822. extra: 1885/1232,
  29823. bottom: 0/1885
  29824. }
  29825. },
  29826. phase2: {
  29827. height: math.unit(1.05, "feet"),
  29828. name: "Phase 2",
  29829. image: {
  29830. source: "./media/characters/withers/phase-2.svg",
  29831. extra: 1792/1090,
  29832. bottom: 0/1792
  29833. }
  29834. },
  29835. partyWipe: {
  29836. height: math.unit(1.1, "feet"),
  29837. name: "Party Wipe",
  29838. image: {
  29839. source: "./media/characters/withers/party-wipe.svg",
  29840. extra: 1864/1207,
  29841. bottom: 0/1864
  29842. }
  29843. },
  29844. },
  29845. [
  29846. {
  29847. name: "Macro",
  29848. height: math.unit(167, "feet"),
  29849. default: true
  29850. },
  29851. {
  29852. name: "Megamacro",
  29853. height: math.unit(15, "miles")
  29854. }
  29855. ]
  29856. ))
  29857. characterMakers.push(() => makeCharacter(
  29858. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  29859. {
  29860. front: {
  29861. height: math.unit(6 + 7 / 12, "feet"),
  29862. weight: math.unit(250, "lb"),
  29863. name: "Front",
  29864. image: {
  29865. source: "./media/characters/nemoskii/front.svg",
  29866. extra: 2270 / 1734,
  29867. bottom: 86 / 2354
  29868. }
  29869. },
  29870. back: {
  29871. height: math.unit(6 + 7 / 12, "feet"),
  29872. weight: math.unit(250, "lb"),
  29873. name: "Back",
  29874. image: {
  29875. source: "./media/characters/nemoskii/back.svg",
  29876. extra: 1845 / 1788,
  29877. bottom: 10.5 / 1852
  29878. }
  29879. },
  29880. head: {
  29881. height: math.unit(1.31, "feet"),
  29882. name: "Head",
  29883. image: {
  29884. source: "./media/characters/nemoskii/head.svg"
  29885. }
  29886. },
  29887. },
  29888. [
  29889. {
  29890. name: "Micro",
  29891. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  29892. },
  29893. {
  29894. name: "Normal",
  29895. height: math.unit(6 + 7 / 12, "feet"),
  29896. default: true
  29897. },
  29898. {
  29899. name: "Macro",
  29900. height: math.unit((6 + 7 / 12) * 150, "feet")
  29901. },
  29902. {
  29903. name: "Macro+",
  29904. height: math.unit((6 + 7 / 12) * 500, "feet")
  29905. },
  29906. {
  29907. name: "Megamacro",
  29908. height: math.unit((6 + 7 / 12) * 100000, "feet")
  29909. },
  29910. ]
  29911. ))
  29912. characterMakers.push(() => makeCharacter(
  29913. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  29914. {
  29915. front: {
  29916. height: math.unit(1, "mile"),
  29917. weight: math.unit(265261.9, "lb"),
  29918. name: "Front",
  29919. image: {
  29920. source: "./media/characters/shui/front.svg",
  29921. extra: 1633 / 1564,
  29922. bottom: 91.5 / 1726
  29923. }
  29924. },
  29925. },
  29926. [
  29927. {
  29928. name: "Macro",
  29929. height: math.unit(1, "mile"),
  29930. default: true
  29931. },
  29932. ]
  29933. ))
  29934. characterMakers.push(() => makeCharacter(
  29935. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  29936. {
  29937. front: {
  29938. height: math.unit(12 + 6 / 12, "feet"),
  29939. weight: math.unit(1342, "lb"),
  29940. name: "Front",
  29941. image: {
  29942. source: "./media/characters/arokh-takakura/front.svg",
  29943. extra: 1089 / 1043,
  29944. bottom: 77.4 / 1176.7
  29945. }
  29946. },
  29947. back: {
  29948. height: math.unit(12 + 6 / 12, "feet"),
  29949. weight: math.unit(1342, "lb"),
  29950. name: "Back",
  29951. image: {
  29952. source: "./media/characters/arokh-takakura/back.svg",
  29953. extra: 1046 / 1019,
  29954. bottom: 102 / 1150
  29955. }
  29956. },
  29957. },
  29958. [
  29959. {
  29960. name: "Big",
  29961. height: math.unit(12 + 6 / 12, "feet"),
  29962. default: true
  29963. },
  29964. ]
  29965. ))
  29966. characterMakers.push(() => makeCharacter(
  29967. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  29968. {
  29969. front: {
  29970. height: math.unit(5 + 6 / 12, "feet"),
  29971. weight: math.unit(150, "lb"),
  29972. name: "Front",
  29973. image: {
  29974. source: "./media/characters/theo/front.svg",
  29975. extra: 1184 / 1131,
  29976. bottom: 7.4 / 1191
  29977. }
  29978. },
  29979. },
  29980. [
  29981. {
  29982. name: "Micro",
  29983. height: math.unit(5, "inches")
  29984. },
  29985. {
  29986. name: "Normal",
  29987. height: math.unit(5 + 6 / 12, "feet"),
  29988. default: true
  29989. },
  29990. ]
  29991. ))
  29992. characterMakers.push(() => makeCharacter(
  29993. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  29994. {
  29995. front: {
  29996. height: math.unit(5 + 9 / 12, "feet"),
  29997. weight: math.unit(130, "lb"),
  29998. name: "Front",
  29999. image: {
  30000. source: "./media/characters/cecelia-swift/front.svg",
  30001. extra: 502 / 484,
  30002. bottom: 23 / 523
  30003. }
  30004. },
  30005. back: {
  30006. height: math.unit(5 + 9 / 12, "feet"),
  30007. weight: math.unit(130, "lb"),
  30008. name: "Back",
  30009. image: {
  30010. source: "./media/characters/cecelia-swift/back.svg",
  30011. extra: 499 / 485,
  30012. bottom: 12 / 511
  30013. }
  30014. },
  30015. head: {
  30016. height: math.unit(0.90, "feet"),
  30017. name: "Head",
  30018. image: {
  30019. source: "./media/characters/cecelia-swift/head.svg"
  30020. }
  30021. },
  30022. rump: {
  30023. height: math.unit(1.75, "feet"),
  30024. name: "Rump",
  30025. image: {
  30026. source: "./media/characters/cecelia-swift/rump.svg"
  30027. }
  30028. },
  30029. },
  30030. [
  30031. {
  30032. name: "Normal",
  30033. height: math.unit(5 + 9 / 12, "feet"),
  30034. default: true
  30035. },
  30036. {
  30037. name: "Big",
  30038. height: math.unit(50, "feet")
  30039. },
  30040. {
  30041. name: "Macro",
  30042. height: math.unit(100, "feet")
  30043. },
  30044. {
  30045. name: "Macro+",
  30046. height: math.unit(500, "feet")
  30047. },
  30048. {
  30049. name: "Macro++",
  30050. height: math.unit(1000, "feet")
  30051. },
  30052. ]
  30053. ))
  30054. characterMakers.push(() => makeCharacter(
  30055. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  30056. {
  30057. front: {
  30058. height: math.unit(6, "feet"),
  30059. weight: math.unit(150, "lb"),
  30060. name: "Front",
  30061. image: {
  30062. source: "./media/characters/kaunan/front.svg",
  30063. extra: 2890 / 2523,
  30064. bottom: 49 / 2939
  30065. }
  30066. },
  30067. },
  30068. [
  30069. {
  30070. name: "Macro",
  30071. height: math.unit(150, "feet"),
  30072. default: true
  30073. },
  30074. ]
  30075. ))
  30076. characterMakers.push(() => makeCharacter(
  30077. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  30078. {
  30079. dressed: {
  30080. height: math.unit(175, "cm"),
  30081. weight: math.unit(60, "kg"),
  30082. name: "Dressed",
  30083. image: {
  30084. source: "./media/characters/fei/dressed.svg",
  30085. extra: 1402/1278,
  30086. bottom: 27/1429
  30087. }
  30088. },
  30089. nude: {
  30090. height: math.unit(175, "cm"),
  30091. weight: math.unit(60, "kg"),
  30092. name: "Nude",
  30093. image: {
  30094. source: "./media/characters/fei/nude.svg",
  30095. extra: 1402/1278,
  30096. bottom: 27/1429
  30097. }
  30098. },
  30099. heels: {
  30100. height: math.unit(0.466, "feet"),
  30101. name: "Heels",
  30102. image: {
  30103. source: "./media/characters/fei/heels.svg",
  30104. extra: 156/152,
  30105. bottom: 28/184
  30106. }
  30107. },
  30108. },
  30109. [
  30110. {
  30111. name: "Mortal",
  30112. height: math.unit(175, "cm")
  30113. },
  30114. {
  30115. name: "Normal",
  30116. height: math.unit(3500, "m")
  30117. },
  30118. {
  30119. name: "Stroll",
  30120. height: math.unit(18.4, "km"),
  30121. default: true
  30122. },
  30123. {
  30124. name: "Showoff",
  30125. height: math.unit(175, "km")
  30126. },
  30127. ]
  30128. ))
  30129. characterMakers.push(() => makeCharacter(
  30130. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  30131. {
  30132. front: {
  30133. height: math.unit(7, "feet"),
  30134. weight: math.unit(1000, "kg"),
  30135. name: "Front",
  30136. image: {
  30137. source: "./media/characters/edrax/front.svg",
  30138. extra: 2838 / 2550,
  30139. bottom: 130 / 2968
  30140. }
  30141. },
  30142. },
  30143. [
  30144. {
  30145. name: "Small",
  30146. height: math.unit(7, "feet")
  30147. },
  30148. {
  30149. name: "Normal",
  30150. height: math.unit(1500, "meters")
  30151. },
  30152. {
  30153. name: "Mega",
  30154. height: math.unit(12000000, "km"),
  30155. default: true
  30156. },
  30157. {
  30158. name: "Megamacro",
  30159. height: math.unit(10600000, "lightyears")
  30160. },
  30161. {
  30162. name: "Hypermacro",
  30163. height: math.unit(256, "yottameters")
  30164. },
  30165. ]
  30166. ))
  30167. characterMakers.push(() => makeCharacter(
  30168. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  30169. {
  30170. front: {
  30171. height: math.unit(10, "feet"),
  30172. weight: math.unit(750, "lb"),
  30173. name: "Front",
  30174. image: {
  30175. source: "./media/characters/clove/front.svg",
  30176. extra: 1918/1751,
  30177. bottom: 52/1970
  30178. }
  30179. },
  30180. back: {
  30181. height: math.unit(10, "feet"),
  30182. weight: math.unit(750, "lb"),
  30183. name: "Back",
  30184. image: {
  30185. source: "./media/characters/clove/back.svg",
  30186. extra: 1912/1747,
  30187. bottom: 50/1962
  30188. }
  30189. },
  30190. },
  30191. [
  30192. {
  30193. name: "Normal",
  30194. height: math.unit(10, "feet"),
  30195. default: true
  30196. },
  30197. ]
  30198. ))
  30199. characterMakers.push(() => makeCharacter(
  30200. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30201. {
  30202. front: {
  30203. height: math.unit(4, "feet"),
  30204. weight: math.unit(50, "lb"),
  30205. name: "Front",
  30206. image: {
  30207. source: "./media/characters/alex-rabbit/front.svg",
  30208. extra: 507 / 458,
  30209. bottom: 18.5 / 527
  30210. }
  30211. },
  30212. back: {
  30213. height: math.unit(4, "feet"),
  30214. weight: math.unit(50, "lb"),
  30215. name: "Back",
  30216. image: {
  30217. source: "./media/characters/alex-rabbit/back.svg",
  30218. extra: 502 / 460,
  30219. bottom: 18.9 / 521
  30220. }
  30221. },
  30222. },
  30223. [
  30224. {
  30225. name: "Normal",
  30226. height: math.unit(4, "feet"),
  30227. default: true
  30228. },
  30229. ]
  30230. ))
  30231. characterMakers.push(() => makeCharacter(
  30232. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  30233. {
  30234. front: {
  30235. height: math.unit(1 + 3 / 12, "feet"),
  30236. weight: math.unit(80, "lb"),
  30237. name: "Front",
  30238. image: {
  30239. source: "./media/characters/zander-rose/front.svg",
  30240. extra: 916 / 797,
  30241. bottom: 17 / 933
  30242. }
  30243. },
  30244. back: {
  30245. height: math.unit(1 + 3 / 12, "feet"),
  30246. weight: math.unit(80, "lb"),
  30247. name: "Back",
  30248. image: {
  30249. source: "./media/characters/zander-rose/back.svg",
  30250. extra: 903 / 779,
  30251. bottom: 31 / 934
  30252. }
  30253. },
  30254. },
  30255. [
  30256. {
  30257. name: "Normal",
  30258. height: math.unit(1 + 3 / 12, "feet"),
  30259. default: true
  30260. },
  30261. ]
  30262. ))
  30263. characterMakers.push(() => makeCharacter(
  30264. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  30265. {
  30266. anthro: {
  30267. height: math.unit(6, "feet"),
  30268. weight: math.unit(150, "lb"),
  30269. name: "Anthro",
  30270. image: {
  30271. source: "./media/characters/razz/anthro.svg",
  30272. extra: 1437 / 1343,
  30273. bottom: 48 / 1485
  30274. }
  30275. },
  30276. feral: {
  30277. height: math.unit(6, "feet"),
  30278. weight: math.unit(150, "lb"),
  30279. name: "Feral",
  30280. image: {
  30281. source: "./media/characters/razz/feral.svg",
  30282. extra: 2569 / 1385,
  30283. bottom: 95 / 2664
  30284. }
  30285. },
  30286. },
  30287. [
  30288. {
  30289. name: "Normal",
  30290. height: math.unit(6, "feet"),
  30291. default: true
  30292. },
  30293. ]
  30294. ))
  30295. characterMakers.push(() => makeCharacter(
  30296. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  30297. {
  30298. front: {
  30299. height: math.unit(9 + 4 / 12, "feet"),
  30300. weight: math.unit(500, "lb"),
  30301. name: "Front",
  30302. image: {
  30303. source: "./media/characters/morrigan/front.svg",
  30304. extra: 2707 / 2579,
  30305. bottom: 156 / 2863
  30306. }
  30307. },
  30308. },
  30309. [
  30310. {
  30311. name: "Normal",
  30312. height: math.unit(9 + 4 / 12, "feet"),
  30313. default: true
  30314. },
  30315. ]
  30316. ))
  30317. characterMakers.push(() => makeCharacter(
  30318. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  30319. {
  30320. front: {
  30321. height: math.unit(5, "stories"),
  30322. weight: math.unit(4000, "lb"),
  30323. name: "Front",
  30324. image: {
  30325. source: "./media/characters/jenene/front.svg",
  30326. extra: 1780 / 1710,
  30327. bottom: 57 / 1837
  30328. }
  30329. },
  30330. },
  30331. [
  30332. {
  30333. name: "Normal",
  30334. height: math.unit(5, "stories"),
  30335. default: true
  30336. },
  30337. ]
  30338. ))
  30339. characterMakers.push(() => makeCharacter(
  30340. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  30341. {
  30342. taurSfw: {
  30343. height: math.unit(10, "meters"),
  30344. weight: math.unit(17500, "kg"),
  30345. name: "Taur",
  30346. image: {
  30347. source: "./media/characters/faey/taur-sfw.svg",
  30348. extra: 1200 / 968,
  30349. bottom: 41 / 1241
  30350. }
  30351. },
  30352. chestmaw: {
  30353. height: math.unit(2.01, "meters"),
  30354. name: "Chestmaw",
  30355. image: {
  30356. source: "./media/characters/faey/chestmaw.svg"
  30357. }
  30358. },
  30359. foot: {
  30360. height: math.unit(2.43, "meters"),
  30361. name: "Foot",
  30362. image: {
  30363. source: "./media/characters/faey/foot.svg"
  30364. }
  30365. },
  30366. jaws: {
  30367. height: math.unit(1.66, "meters"),
  30368. name: "Jaws",
  30369. image: {
  30370. source: "./media/characters/faey/jaws.svg"
  30371. }
  30372. },
  30373. tongues: {
  30374. height: math.unit(2.01, "meters"),
  30375. name: "Tongues",
  30376. image: {
  30377. source: "./media/characters/faey/tongues.svg"
  30378. }
  30379. },
  30380. },
  30381. [
  30382. {
  30383. name: "Small",
  30384. height: math.unit(10, "meters"),
  30385. default: true
  30386. },
  30387. {
  30388. name: "Big",
  30389. height: math.unit(500000, "km")
  30390. },
  30391. ]
  30392. ))
  30393. characterMakers.push(() => makeCharacter(
  30394. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  30395. {
  30396. front: {
  30397. height: math.unit(7, "feet"),
  30398. weight: math.unit(275, "lb"),
  30399. name: "Front",
  30400. image: {
  30401. source: "./media/characters/roku/front.svg",
  30402. extra: 903 / 878,
  30403. bottom: 37 / 940
  30404. }
  30405. },
  30406. },
  30407. [
  30408. {
  30409. name: "Normal",
  30410. height: math.unit(7, "feet"),
  30411. default: true
  30412. },
  30413. {
  30414. name: "Macro",
  30415. height: math.unit(500, "feet")
  30416. },
  30417. {
  30418. name: "Megamacro",
  30419. height: math.unit(200, "miles")
  30420. },
  30421. ]
  30422. ))
  30423. characterMakers.push(() => makeCharacter(
  30424. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  30425. {
  30426. front: {
  30427. height: math.unit(6 + 2 / 12, "feet"),
  30428. weight: math.unit(150, "lb"),
  30429. name: "Front",
  30430. image: {
  30431. source: "./media/characters/lira/front.svg",
  30432. extra: 1727 / 1605,
  30433. bottom: 26 / 1753
  30434. }
  30435. },
  30436. back: {
  30437. height: math.unit(6 + 2 / 12, "feet"),
  30438. weight: math.unit(150, "lb"),
  30439. name: "Back",
  30440. image: {
  30441. source: "./media/characters/lira/back.svg",
  30442. extra: 1713/1621,
  30443. bottom: 20/1733
  30444. }
  30445. },
  30446. hand: {
  30447. height: math.unit(0.75, "feet"),
  30448. name: "Hand",
  30449. image: {
  30450. source: "./media/characters/lira/hand.svg"
  30451. }
  30452. },
  30453. maw: {
  30454. height: math.unit(0.65, "feet"),
  30455. name: "Maw",
  30456. image: {
  30457. source: "./media/characters/lira/maw.svg"
  30458. }
  30459. },
  30460. pawDigi: {
  30461. height: math.unit(1.6, "feet"),
  30462. name: "Paw Digi",
  30463. image: {
  30464. source: "./media/characters/lira/paw-digi.svg"
  30465. }
  30466. },
  30467. pawPlanti: {
  30468. height: math.unit(1.4, "feet"),
  30469. name: "Paw Planti",
  30470. image: {
  30471. source: "./media/characters/lira/paw-planti.svg"
  30472. }
  30473. },
  30474. },
  30475. [
  30476. {
  30477. name: "Normal",
  30478. height: math.unit(6 + 2 / 12, "feet"),
  30479. default: true
  30480. },
  30481. {
  30482. name: "Macro",
  30483. height: math.unit(100, "feet")
  30484. },
  30485. {
  30486. name: "Macro²",
  30487. height: math.unit(1600, "feet")
  30488. },
  30489. {
  30490. name: "Planetary",
  30491. height: math.unit(20, "earths")
  30492. },
  30493. ]
  30494. ))
  30495. characterMakers.push(() => makeCharacter(
  30496. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  30497. {
  30498. front: {
  30499. height: math.unit(6, "feet"),
  30500. weight: math.unit(150, "lb"),
  30501. name: "Front",
  30502. image: {
  30503. source: "./media/characters/hadjet/front.svg",
  30504. extra: 1480 / 1346,
  30505. bottom: 26 / 1506
  30506. }
  30507. },
  30508. frontNsfw: {
  30509. height: math.unit(6, "feet"),
  30510. weight: math.unit(150, "lb"),
  30511. name: "Front (NSFW)",
  30512. image: {
  30513. source: "./media/characters/hadjet/front-nsfw.svg",
  30514. extra: 1440 / 1358,
  30515. bottom: 52 / 1492
  30516. }
  30517. },
  30518. },
  30519. [
  30520. {
  30521. name: "Macro",
  30522. height: math.unit(10, "stories"),
  30523. default: true
  30524. },
  30525. {
  30526. name: "Megamacro",
  30527. height: math.unit(1.5, "miles")
  30528. },
  30529. {
  30530. name: "Megamacro+",
  30531. height: math.unit(5, "miles")
  30532. },
  30533. ]
  30534. ))
  30535. characterMakers.push(() => makeCharacter(
  30536. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  30537. {
  30538. side: {
  30539. height: math.unit(106, "feet"),
  30540. weight: math.unit(500, "tonnes"),
  30541. name: "Side",
  30542. image: {
  30543. source: "./media/characters/kodran/side.svg",
  30544. extra: 553 / 480,
  30545. bottom: 33 / 586
  30546. }
  30547. },
  30548. front: {
  30549. height: math.unit(132, "feet"),
  30550. weight: math.unit(500, "tonnes"),
  30551. name: "Front",
  30552. image: {
  30553. source: "./media/characters/kodran/front.svg",
  30554. extra: 667 / 643,
  30555. bottom: 42 / 709
  30556. }
  30557. },
  30558. flying: {
  30559. height: math.unit(350, "feet"),
  30560. weight: math.unit(500, "tonnes"),
  30561. name: "Flying",
  30562. image: {
  30563. source: "./media/characters/kodran/flying.svg"
  30564. }
  30565. },
  30566. foot: {
  30567. height: math.unit(33, "feet"),
  30568. name: "Foot",
  30569. image: {
  30570. source: "./media/characters/kodran/foot.svg"
  30571. }
  30572. },
  30573. footFront: {
  30574. height: math.unit(19, "feet"),
  30575. name: "Foot (Front)",
  30576. image: {
  30577. source: "./media/characters/kodran/foot-front.svg",
  30578. extra: 261 / 261,
  30579. bottom: 91 / 352
  30580. }
  30581. },
  30582. headFront: {
  30583. height: math.unit(53, "feet"),
  30584. name: "Head (Front)",
  30585. image: {
  30586. source: "./media/characters/kodran/head-front.svg"
  30587. }
  30588. },
  30589. headSide: {
  30590. height: math.unit(65, "feet"),
  30591. name: "Head (Side)",
  30592. image: {
  30593. source: "./media/characters/kodran/head-side.svg"
  30594. }
  30595. },
  30596. throat: {
  30597. height: math.unit(79, "feet"),
  30598. name: "Throat",
  30599. image: {
  30600. source: "./media/characters/kodran/throat.svg"
  30601. }
  30602. },
  30603. },
  30604. [
  30605. {
  30606. name: "Large",
  30607. height: math.unit(106, "feet"),
  30608. default: true
  30609. },
  30610. ]
  30611. ))
  30612. characterMakers.push(() => makeCharacter(
  30613. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  30614. {
  30615. side: {
  30616. height: math.unit(11, "feet"),
  30617. weight: math.unit(150, "lb"),
  30618. name: "Side",
  30619. image: {
  30620. source: "./media/characters/pyxaron/side.svg",
  30621. extra: 305 / 195,
  30622. bottom: 17 / 322
  30623. }
  30624. },
  30625. },
  30626. [
  30627. {
  30628. name: "Normal",
  30629. height: math.unit(11, "feet"),
  30630. default: true
  30631. },
  30632. ]
  30633. ))
  30634. characterMakers.push(() => makeCharacter(
  30635. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  30636. {
  30637. front: {
  30638. height: math.unit(6, "feet"),
  30639. weight: math.unit(150, "lb"),
  30640. name: "Front",
  30641. image: {
  30642. source: "./media/characters/meep/front.svg",
  30643. extra: 88 / 80,
  30644. bottom: 6 / 94
  30645. }
  30646. },
  30647. },
  30648. [
  30649. {
  30650. name: "Fun Sized",
  30651. height: math.unit(2, "inches"),
  30652. default: true
  30653. },
  30654. {
  30655. name: "Friend Sized",
  30656. height: math.unit(8, "inches")
  30657. },
  30658. ]
  30659. ))
  30660. characterMakers.push(() => makeCharacter(
  30661. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30662. {
  30663. front: {
  30664. height: math.unit(15, "feet"),
  30665. weight: math.unit(2500, "lb"),
  30666. name: "Front",
  30667. image: {
  30668. source: "./media/characters/holly-rabbit/front.svg",
  30669. extra: 1433 / 1233,
  30670. bottom: 125 / 1558
  30671. }
  30672. },
  30673. dick: {
  30674. height: math.unit(4.6, "feet"),
  30675. name: "Dick",
  30676. image: {
  30677. source: "./media/characters/holly-rabbit/dick.svg"
  30678. }
  30679. },
  30680. },
  30681. [
  30682. {
  30683. name: "Normal",
  30684. height: math.unit(15, "feet"),
  30685. default: true
  30686. },
  30687. {
  30688. name: "Macro",
  30689. height: math.unit(250, "feet")
  30690. },
  30691. {
  30692. name: "Macro+",
  30693. height: math.unit(2500, "feet")
  30694. },
  30695. ]
  30696. ))
  30697. characterMakers.push(() => makeCharacter(
  30698. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  30699. {
  30700. front: {
  30701. height: math.unit(3.02, "meters"),
  30702. weight: math.unit(500, "kg"),
  30703. name: "Front",
  30704. image: {
  30705. source: "./media/characters/drena/front.svg",
  30706. extra: 282 / 243,
  30707. bottom: 8 / 290
  30708. }
  30709. },
  30710. side: {
  30711. height: math.unit(3.02, "meters"),
  30712. weight: math.unit(500, "kg"),
  30713. name: "Side",
  30714. image: {
  30715. source: "./media/characters/drena/side.svg",
  30716. extra: 280 / 245,
  30717. bottom: 10 / 290
  30718. }
  30719. },
  30720. back: {
  30721. height: math.unit(3.02, "meters"),
  30722. weight: math.unit(500, "kg"),
  30723. name: "Back",
  30724. image: {
  30725. source: "./media/characters/drena/back.svg",
  30726. extra: 278 / 243,
  30727. bottom: 2 / 280
  30728. }
  30729. },
  30730. foot: {
  30731. height: math.unit(0.75, "meters"),
  30732. name: "Foot",
  30733. image: {
  30734. source: "./media/characters/drena/foot.svg"
  30735. }
  30736. },
  30737. maw: {
  30738. height: math.unit(0.82, "meters"),
  30739. name: "Maw",
  30740. image: {
  30741. source: "./media/characters/drena/maw.svg"
  30742. }
  30743. },
  30744. eating: {
  30745. height: math.unit(0.75, "meters"),
  30746. name: "Eating",
  30747. image: {
  30748. source: "./media/characters/drena/eating.svg"
  30749. }
  30750. },
  30751. rump: {
  30752. height: math.unit(0.93, "meters"),
  30753. name: "Rump",
  30754. image: {
  30755. source: "./media/characters/drena/rump.svg"
  30756. }
  30757. },
  30758. },
  30759. [
  30760. {
  30761. name: "Normal",
  30762. height: math.unit(3.02, "meters"),
  30763. default: true
  30764. },
  30765. ]
  30766. ))
  30767. characterMakers.push(() => makeCharacter(
  30768. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  30769. {
  30770. front: {
  30771. height: math.unit(6 + 4 / 12, "feet"),
  30772. weight: math.unit(250, "lb"),
  30773. name: "Front",
  30774. image: {
  30775. source: "./media/characters/remmyzilla/front.svg",
  30776. extra: 4033 / 3588,
  30777. bottom: 123 / 4156
  30778. }
  30779. },
  30780. back: {
  30781. height: math.unit(6 + 4 / 12, "feet"),
  30782. weight: math.unit(250, "lb"),
  30783. name: "Back",
  30784. image: {
  30785. source: "./media/characters/remmyzilla/back.svg",
  30786. extra: 2687 / 2555,
  30787. bottom: 48 / 2735
  30788. }
  30789. },
  30790. paw: {
  30791. height: math.unit(1.73, "feet"),
  30792. name: "Paw",
  30793. image: {
  30794. source: "./media/characters/remmyzilla/paw.svg"
  30795. },
  30796. extraAttributes: {
  30797. "toeSize": {
  30798. name: "Toe Size",
  30799. power: 2,
  30800. type: "area",
  30801. base: math.unit(0.0035, "m^2")
  30802. },
  30803. "padSize": {
  30804. name: "Pad Size",
  30805. power: 2,
  30806. type: "area",
  30807. base: math.unit(0.015, "m^2")
  30808. },
  30809. "pawsize": {
  30810. name: "Paw Size",
  30811. power: 2,
  30812. type: "area",
  30813. base: math.unit(0.072, "m^2")
  30814. },
  30815. }
  30816. },
  30817. maw: {
  30818. height: math.unit(1.73, "feet"),
  30819. name: "Maw",
  30820. image: {
  30821. source: "./media/characters/remmyzilla/maw.svg"
  30822. }
  30823. },
  30824. },
  30825. [
  30826. {
  30827. name: "Normal",
  30828. height: math.unit(6 + 4 / 12, "feet")
  30829. },
  30830. {
  30831. name: "Minimacro",
  30832. height: math.unit(12 + 8 / 12, "feet")
  30833. },
  30834. {
  30835. name: "Normal",
  30836. height: math.unit(640, "feet"),
  30837. default: true
  30838. },
  30839. {
  30840. name: "Megamacro",
  30841. height: math.unit(6400, "feet")
  30842. },
  30843. {
  30844. name: "Gigamacro",
  30845. height: math.unit(64000, "miles")
  30846. },
  30847. ]
  30848. ))
  30849. characterMakers.push(() => makeCharacter(
  30850. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  30851. {
  30852. front: {
  30853. height: math.unit(2.5, "meters"),
  30854. weight: math.unit(300, "lb"),
  30855. name: "Front",
  30856. image: {
  30857. source: "./media/characters/lawrence/front.svg",
  30858. extra: 357 / 335,
  30859. bottom: 30 / 387
  30860. }
  30861. },
  30862. back: {
  30863. height: math.unit(2.5, "meters"),
  30864. weight: math.unit(300, "lb"),
  30865. name: "Back",
  30866. image: {
  30867. source: "./media/characters/lawrence/back.svg",
  30868. extra: 357 / 338,
  30869. bottom: 16 / 373
  30870. }
  30871. },
  30872. head: {
  30873. height: math.unit(0.9, "meter"),
  30874. name: "Head",
  30875. image: {
  30876. source: "./media/characters/lawrence/head.svg"
  30877. }
  30878. },
  30879. maw: {
  30880. height: math.unit(0.7, "meter"),
  30881. name: "Maw",
  30882. image: {
  30883. source: "./media/characters/lawrence/maw.svg"
  30884. }
  30885. },
  30886. footBottom: {
  30887. height: math.unit(0.5, "meter"),
  30888. name: "Foot (Bottom)",
  30889. image: {
  30890. source: "./media/characters/lawrence/foot-bottom.svg"
  30891. }
  30892. },
  30893. footTop: {
  30894. height: math.unit(0.5, "meter"),
  30895. name: "Foot (Top)",
  30896. image: {
  30897. source: "./media/characters/lawrence/foot-top.svg"
  30898. }
  30899. },
  30900. },
  30901. [
  30902. {
  30903. name: "Normal",
  30904. height: math.unit(2.5, "meters"),
  30905. default: true
  30906. },
  30907. {
  30908. name: "Macro",
  30909. height: math.unit(95, "meters")
  30910. },
  30911. {
  30912. name: "Megamacro",
  30913. height: math.unit(150, "km")
  30914. },
  30915. ]
  30916. ))
  30917. characterMakers.push(() => makeCharacter(
  30918. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  30919. {
  30920. front: {
  30921. height: math.unit(4.2, "meters"),
  30922. preyCapacity: math.unit(50, "m^3"),
  30923. weight: math.unit(30, "tonnes"),
  30924. name: "Front",
  30925. image: {
  30926. source: "./media/characters/sydney/front.svg",
  30927. extra: 1177/1129,
  30928. bottom: 197/1374
  30929. },
  30930. extraAttributes: {
  30931. "length": {
  30932. name: "Length",
  30933. power: 1,
  30934. type: "length",
  30935. base: math.unit(21, "meters")
  30936. },
  30937. }
  30938. },
  30939. },
  30940. [
  30941. {
  30942. name: "Normal",
  30943. height: math.unit(4.2, "meters"),
  30944. default: true
  30945. },
  30946. ]
  30947. ))
  30948. characterMakers.push(() => makeCharacter(
  30949. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  30950. {
  30951. back: {
  30952. height: math.unit(201, "feet"),
  30953. name: "Back",
  30954. image: {
  30955. source: "./media/characters/jessica/back.svg",
  30956. extra: 273 / 259,
  30957. bottom: 7 / 280
  30958. }
  30959. },
  30960. },
  30961. [
  30962. {
  30963. name: "Normal",
  30964. height: math.unit(201, "feet"),
  30965. default: true
  30966. },
  30967. {
  30968. name: "Megamacro",
  30969. height: math.unit(8, "miles")
  30970. },
  30971. ]
  30972. ))
  30973. characterMakers.push(() => makeCharacter(
  30974. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  30975. {
  30976. side: {
  30977. height: math.unit(5.6, "m"),
  30978. weight: math.unit(8000, "kg"),
  30979. name: "Side",
  30980. image: {
  30981. source: "./media/characters/victoria/side.svg",
  30982. extra: 1542/1229,
  30983. bottom: 124/1666
  30984. }
  30985. },
  30986. maw: {
  30987. height: math.unit(7.14, "feet"),
  30988. name: "Maw",
  30989. image: {
  30990. source: "./media/characters/victoria/maw.svg"
  30991. }
  30992. },
  30993. },
  30994. [
  30995. {
  30996. name: "Normal",
  30997. height: math.unit(5.6, "m"),
  30998. default: true
  30999. },
  31000. ]
  31001. ))
  31002. characterMakers.push(() => makeCharacter(
  31003. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  31004. {
  31005. front: {
  31006. height: math.unit(5 + 6 / 12, "feet"),
  31007. name: "Front",
  31008. image: {
  31009. source: "./media/characters/cat/front.svg",
  31010. extra: 1449/1295,
  31011. bottom: 34/1483
  31012. },
  31013. form: "cat",
  31014. default: true
  31015. },
  31016. back: {
  31017. height: math.unit(5 + 6 / 12, "feet"),
  31018. name: "Back",
  31019. image: {
  31020. source: "./media/characters/cat/back.svg",
  31021. extra: 1466/1301,
  31022. bottom: 19/1485
  31023. },
  31024. form: "cat"
  31025. },
  31026. taur: {
  31027. height: math.unit(7, "feet"),
  31028. name: "Taur",
  31029. image: {
  31030. source: "./media/characters/cat/taur.svg",
  31031. extra: 1389/1233,
  31032. bottom: 83/1472
  31033. },
  31034. form: "taur",
  31035. default: true
  31036. },
  31037. lucarioFront: {
  31038. height: math.unit(4, "feet"),
  31039. name: "Lucario (Front)",
  31040. image: {
  31041. source: "./media/characters/cat/lucario-front.svg",
  31042. extra: 1149/1019,
  31043. bottom: 84/1233
  31044. },
  31045. form: "lucario",
  31046. default: true
  31047. },
  31048. lucarioBack: {
  31049. height: math.unit(4, "feet"),
  31050. name: "Lucario (Back)",
  31051. image: {
  31052. source: "./media/characters/cat/lucario-back.svg",
  31053. extra: 1190/1059,
  31054. bottom: 33/1223
  31055. },
  31056. form: "lucario"
  31057. },
  31058. megaLucario: {
  31059. height: math.unit(4, "feet"),
  31060. name: "Mega Lucario",
  31061. image: {
  31062. source: "./media/characters/cat/mega-lucario.svg",
  31063. extra: 1515 / 1319,
  31064. bottom: 63 / 1578
  31065. },
  31066. form: "lucario"
  31067. },
  31068. nickit: {
  31069. height: math.unit(2, "feet"),
  31070. name: "Nickit",
  31071. image: {
  31072. source: "./media/characters/cat/nickit.svg",
  31073. extra: 1980 / 1585,
  31074. bottom: 102 / 2082
  31075. },
  31076. form: "nickit",
  31077. default: true
  31078. },
  31079. lopunnyFront: {
  31080. height: math.unit(5, "feet"),
  31081. name: "Lopunny (Front)",
  31082. image: {
  31083. source: "./media/characters/cat/lopunny-front.svg",
  31084. extra: 1782 / 1469,
  31085. bottom: 38 / 1820
  31086. },
  31087. form: "lopunny",
  31088. default: true
  31089. },
  31090. lopunnyBack: {
  31091. height: math.unit(5, "feet"),
  31092. name: "Lopunny (Back)",
  31093. image: {
  31094. source: "./media/characters/cat/lopunny-back.svg",
  31095. extra: 1660 / 1490,
  31096. bottom: 25 / 1685
  31097. },
  31098. form: "lopunny"
  31099. },
  31100. },
  31101. [
  31102. {
  31103. name: "Really small",
  31104. height: math.unit(1, "nm")
  31105. },
  31106. {
  31107. name: "Micro",
  31108. height: math.unit(5, "inches")
  31109. },
  31110. {
  31111. name: "Normal",
  31112. height: math.unit(5 + 6 / 12, "feet"),
  31113. default: true
  31114. },
  31115. {
  31116. name: "Macro",
  31117. height: math.unit(50, "feet")
  31118. },
  31119. {
  31120. name: "Macro+",
  31121. height: math.unit(150, "feet")
  31122. },
  31123. {
  31124. name: "Megamacro",
  31125. height: math.unit(100, "miles")
  31126. },
  31127. ]
  31128. ))
  31129. characterMakers.push(() => makeCharacter(
  31130. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  31131. {
  31132. front: {
  31133. height: math.unit(63.4, "meters"),
  31134. weight: math.unit(3.28349e+6, "kilograms"),
  31135. name: "Front",
  31136. image: {
  31137. source: "./media/characters/kirina-violet/front.svg",
  31138. extra: 2812 / 2725,
  31139. bottom: 0 / 2812
  31140. }
  31141. },
  31142. back: {
  31143. height: math.unit(63.4, "meters"),
  31144. weight: math.unit(3.28349e+6, "kilograms"),
  31145. name: "Back",
  31146. image: {
  31147. source: "./media/characters/kirina-violet/back.svg",
  31148. extra: 2812 / 2725,
  31149. bottom: 0 / 2812
  31150. }
  31151. },
  31152. mouth: {
  31153. height: math.unit(4.35, "meters"),
  31154. name: "Mouth",
  31155. image: {
  31156. source: "./media/characters/kirina-violet/mouth.svg"
  31157. }
  31158. },
  31159. paw: {
  31160. height: math.unit(5.6, "meters"),
  31161. name: "Paw",
  31162. image: {
  31163. source: "./media/characters/kirina-violet/paw.svg"
  31164. }
  31165. },
  31166. tail: {
  31167. height: math.unit(18, "meters"),
  31168. name: "Tail",
  31169. image: {
  31170. source: "./media/characters/kirina-violet/tail.svg"
  31171. }
  31172. },
  31173. },
  31174. [
  31175. {
  31176. name: "Macro",
  31177. height: math.unit(63.4, "meters"),
  31178. default: true
  31179. },
  31180. ]
  31181. ))
  31182. characterMakers.push(() => makeCharacter(
  31183. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  31184. {
  31185. front: {
  31186. height: math.unit(75, "feet"),
  31187. name: "Front",
  31188. image: {
  31189. source: "./media/characters/cat-gigachu/front.svg",
  31190. extra: 1239/1027,
  31191. bottom: 32/1271
  31192. }
  31193. },
  31194. back: {
  31195. height: math.unit(75, "feet"),
  31196. name: "Back",
  31197. image: {
  31198. source: "./media/characters/cat-gigachu/back.svg",
  31199. extra: 1229/1030,
  31200. bottom: 9/1238
  31201. }
  31202. },
  31203. },
  31204. [
  31205. {
  31206. name: "Dynamax",
  31207. height: math.unit(75, "feet"),
  31208. default: true
  31209. },
  31210. ]
  31211. ))
  31212. characterMakers.push(() => makeCharacter(
  31213. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  31214. {
  31215. front: {
  31216. height: math.unit(6, "feet"),
  31217. weight: math.unit(150, "lb"),
  31218. name: "Front",
  31219. image: {
  31220. source: "./media/characters/sfaiyan/front.svg",
  31221. extra: 999 / 978,
  31222. bottom: 5 / 1004
  31223. }
  31224. },
  31225. },
  31226. [
  31227. {
  31228. name: "Normal",
  31229. height: math.unit(1.82, "meters")
  31230. },
  31231. {
  31232. name: "Giant",
  31233. height: math.unit(2.27, "km"),
  31234. default: true
  31235. },
  31236. ]
  31237. ))
  31238. characterMakers.push(() => makeCharacter(
  31239. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  31240. {
  31241. front: {
  31242. height: math.unit(179, "cm"),
  31243. weight: math.unit(100, "kg"),
  31244. name: "Front",
  31245. image: {
  31246. source: "./media/characters/raunehkeli/front.svg",
  31247. extra: 1934 / 1926,
  31248. bottom: 0 / 1934
  31249. }
  31250. },
  31251. },
  31252. [
  31253. {
  31254. name: "Normal",
  31255. height: math.unit(179, "cm")
  31256. },
  31257. {
  31258. name: "Maximum",
  31259. height: math.unit(575, "meters"),
  31260. default: true
  31261. },
  31262. ]
  31263. ))
  31264. characterMakers.push(() => makeCharacter(
  31265. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  31266. {
  31267. front: {
  31268. height: math.unit(6, "feet"),
  31269. weight: math.unit(150, "lb"),
  31270. name: "Front",
  31271. image: {
  31272. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  31273. extra: 2625 / 2518,
  31274. bottom: 60 / 2685
  31275. }
  31276. },
  31277. },
  31278. [
  31279. {
  31280. name: "Normal",
  31281. height: math.unit(6 + 2 / 12, "feet")
  31282. },
  31283. {
  31284. name: "Macro",
  31285. height: math.unit(1180, "feet"),
  31286. default: true
  31287. },
  31288. ]
  31289. ))
  31290. characterMakers.push(() => makeCharacter(
  31291. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  31292. {
  31293. front: {
  31294. height: math.unit(5 + 6 / 12, "feet"),
  31295. weight: math.unit(108, "lb"),
  31296. name: "Front",
  31297. image: {
  31298. source: "./media/characters/lilith-zott/front.svg",
  31299. extra: 2510 / 2238,
  31300. bottom: 100 / 2610
  31301. }
  31302. },
  31303. frontDressed: {
  31304. height: math.unit(5 + 6 / 12, "feet"),
  31305. weight: math.unit(108, "lb"),
  31306. name: "Front (Dressed)",
  31307. image: {
  31308. source: "./media/characters/lilith-zott/front-dressed.svg",
  31309. extra: 2510 / 2238,
  31310. bottom: 100 / 2610
  31311. }
  31312. },
  31313. },
  31314. [
  31315. {
  31316. name: "Normal",
  31317. height: math.unit(5 + 6 / 12, "feet")
  31318. },
  31319. {
  31320. name: "Macro",
  31321. height: math.unit(1030, "feet"),
  31322. default: true
  31323. },
  31324. ]
  31325. ))
  31326. characterMakers.push(() => makeCharacter(
  31327. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  31328. {
  31329. front: {
  31330. height: math.unit(6, "feet"),
  31331. weight: math.unit(150, "lb"),
  31332. name: "Front",
  31333. image: {
  31334. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  31335. extra: 2567 / 2435,
  31336. bottom: 39 / 2606
  31337. }
  31338. },
  31339. frontSuper: {
  31340. height: math.unit(6, "feet"),
  31341. name: "Front (Super)",
  31342. image: {
  31343. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  31344. extra: 2567 / 2435,
  31345. bottom: 39 / 2606
  31346. }
  31347. },
  31348. },
  31349. [
  31350. {
  31351. name: "Normal",
  31352. height: math.unit(5 + 10 / 12, "feet")
  31353. },
  31354. {
  31355. name: "Macro",
  31356. height: math.unit(1100, "feet"),
  31357. default: true
  31358. },
  31359. ]
  31360. ))
  31361. characterMakers.push(() => makeCharacter(
  31362. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  31363. {
  31364. front: {
  31365. height: math.unit(100, "miles"),
  31366. name: "Front",
  31367. image: {
  31368. source: "./media/characters/sona/front.svg",
  31369. extra: 2433 / 2201,
  31370. bottom: 53 / 2486
  31371. }
  31372. },
  31373. foot: {
  31374. height: math.unit(16.1, "miles"),
  31375. name: "Foot",
  31376. image: {
  31377. source: "./media/characters/sona/foot.svg"
  31378. }
  31379. },
  31380. },
  31381. [
  31382. {
  31383. name: "Macro",
  31384. height: math.unit(100, "miles"),
  31385. default: true
  31386. },
  31387. ]
  31388. ))
  31389. characterMakers.push(() => makeCharacter(
  31390. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  31391. {
  31392. front: {
  31393. height: math.unit(6, "feet"),
  31394. weight: math.unit(150, "lb"),
  31395. name: "Front",
  31396. image: {
  31397. source: "./media/characters/bailey/front.svg",
  31398. extra: 1778 / 1724,
  31399. bottom: 30 / 1808
  31400. }
  31401. },
  31402. },
  31403. [
  31404. {
  31405. name: "Micro",
  31406. height: math.unit(4, "inches")
  31407. },
  31408. {
  31409. name: "Normal",
  31410. height: math.unit(5 + 5 / 12, "feet"),
  31411. default: true
  31412. },
  31413. {
  31414. name: "Macro",
  31415. height: math.unit(250, "feet")
  31416. },
  31417. {
  31418. name: "Megamacro",
  31419. height: math.unit(100, "miles")
  31420. },
  31421. ]
  31422. ))
  31423. characterMakers.push(() => makeCharacter(
  31424. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  31425. {
  31426. front: {
  31427. height: math.unit(5 + 2 / 12, "feet"),
  31428. weight: math.unit(120, "lb"),
  31429. name: "Front",
  31430. image: {
  31431. source: "./media/characters/snaps/front.svg",
  31432. extra: 2370 / 2177,
  31433. bottom: 48 / 2418
  31434. }
  31435. },
  31436. back: {
  31437. height: math.unit(5 + 2 / 12, "feet"),
  31438. weight: math.unit(120, "lb"),
  31439. name: "Back",
  31440. image: {
  31441. source: "./media/characters/snaps/back.svg",
  31442. extra: 2408 / 2258,
  31443. bottom: 15 / 2423
  31444. }
  31445. },
  31446. },
  31447. [
  31448. {
  31449. name: "Micro",
  31450. height: math.unit(9, "inches")
  31451. },
  31452. {
  31453. name: "Normal",
  31454. height: math.unit(5 + 2 / 12, "feet"),
  31455. default: true
  31456. },
  31457. {
  31458. name: "Mini Macro",
  31459. height: math.unit(10, "feet")
  31460. },
  31461. ]
  31462. ))
  31463. characterMakers.push(() => makeCharacter(
  31464. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  31465. {
  31466. front: {
  31467. height: math.unit(1.8, "meters"),
  31468. weight: math.unit(85, "kg"),
  31469. name: "Front",
  31470. image: {
  31471. source: "./media/characters/azteck/front.svg",
  31472. extra: 2815 / 2625,
  31473. bottom: 89 / 2904
  31474. }
  31475. },
  31476. back: {
  31477. height: math.unit(1.8, "meters"),
  31478. weight: math.unit(85, "kg"),
  31479. name: "Back",
  31480. image: {
  31481. source: "./media/characters/azteck/back.svg",
  31482. extra: 2856 / 2648,
  31483. bottom: 85 / 2941
  31484. }
  31485. },
  31486. frontDressed: {
  31487. height: math.unit(1.8, "meters"),
  31488. weight: math.unit(85, "kg"),
  31489. name: "Front (Dressed)",
  31490. image: {
  31491. source: "./media/characters/azteck/front-dressed.svg",
  31492. extra: 2147 / 2003,
  31493. bottom: 68 / 2215
  31494. }
  31495. },
  31496. head: {
  31497. height: math.unit(0.47, "meters"),
  31498. weight: math.unit(85, "kg"),
  31499. name: "Head",
  31500. image: {
  31501. source: "./media/characters/azteck/head.svg"
  31502. }
  31503. },
  31504. },
  31505. [
  31506. {
  31507. name: "Bite sized",
  31508. height: math.unit(16, "cm")
  31509. },
  31510. {
  31511. name: "Normal",
  31512. height: math.unit(1.8, "meters"),
  31513. default: true
  31514. },
  31515. ]
  31516. ))
  31517. characterMakers.push(() => makeCharacter(
  31518. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  31519. {
  31520. front: {
  31521. height: math.unit(6, "feet"),
  31522. weight: math.unit(150, "lb"),
  31523. name: "Front",
  31524. image: {
  31525. source: "./media/characters/pidge/front.svg",
  31526. extra: 1936/1820,
  31527. bottom: 0/1936
  31528. }
  31529. },
  31530. back: {
  31531. height: math.unit(6, "feet"),
  31532. weight: math.unit(150, "lb"),
  31533. name: "Back",
  31534. image: {
  31535. source: "./media/characters/pidge/back.svg",
  31536. extra: 1938/1843,
  31537. bottom: 0/1938
  31538. }
  31539. },
  31540. casual: {
  31541. height: math.unit(6, "feet"),
  31542. weight: math.unit(150, "lb"),
  31543. name: "Casual",
  31544. image: {
  31545. source: "./media/characters/pidge/casual.svg",
  31546. extra: 1936/1820,
  31547. bottom: 0/1936
  31548. }
  31549. },
  31550. tech: {
  31551. height: math.unit(6, "feet"),
  31552. weight: math.unit(150, "lb"),
  31553. name: "Tech",
  31554. image: {
  31555. source: "./media/characters/pidge/tech.svg",
  31556. extra: 1802/1682,
  31557. bottom: 0/1802
  31558. }
  31559. },
  31560. head: {
  31561. height: math.unit(1.61, "feet"),
  31562. name: "Head",
  31563. image: {
  31564. source: "./media/characters/pidge/head.svg"
  31565. }
  31566. },
  31567. collar: {
  31568. height: math.unit(0.82, "feet"),
  31569. name: "Collar",
  31570. image: {
  31571. source: "./media/characters/pidge/collar.svg"
  31572. }
  31573. },
  31574. },
  31575. [
  31576. {
  31577. name: "Macro",
  31578. height: math.unit(2, "mile"),
  31579. default: true
  31580. },
  31581. {
  31582. name: "PUPPY",
  31583. height: math.unit(20, "miles")
  31584. },
  31585. ]
  31586. ))
  31587. characterMakers.push(() => makeCharacter(
  31588. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  31589. {
  31590. front: {
  31591. height: math.unit(6, "feet"),
  31592. weight: math.unit(150, "lb"),
  31593. name: "Front",
  31594. image: {
  31595. source: "./media/characters/en/front.svg",
  31596. extra: 1697 / 1563,
  31597. bottom: 103 / 1800
  31598. }
  31599. },
  31600. back: {
  31601. height: math.unit(6, "feet"),
  31602. weight: math.unit(150, "lb"),
  31603. name: "Back",
  31604. image: {
  31605. source: "./media/characters/en/back.svg",
  31606. extra: 1700 / 1570,
  31607. bottom: 51 / 1751
  31608. }
  31609. },
  31610. frontDressed: {
  31611. height: math.unit(6, "feet"),
  31612. weight: math.unit(150, "lb"),
  31613. name: "Front (Dressed)",
  31614. image: {
  31615. source: "./media/characters/en/front-dressed.svg",
  31616. extra: 1697 / 1563,
  31617. bottom: 103 / 1800
  31618. }
  31619. },
  31620. backDressed: {
  31621. height: math.unit(6, "feet"),
  31622. weight: math.unit(150, "lb"),
  31623. name: "Back (Dressed)",
  31624. image: {
  31625. source: "./media/characters/en/back-dressed.svg",
  31626. extra: 1700 / 1570,
  31627. bottom: 51 / 1751
  31628. }
  31629. },
  31630. },
  31631. [
  31632. {
  31633. name: "Macro",
  31634. height: math.unit(210, "feet"),
  31635. default: true
  31636. },
  31637. ]
  31638. ))
  31639. characterMakers.push(() => makeCharacter(
  31640. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  31641. {
  31642. front: {
  31643. height: math.unit(6, "feet"),
  31644. weight: math.unit(150, "lb"),
  31645. name: "Front",
  31646. image: {
  31647. source: "./media/characters/haze-orris/front.svg",
  31648. extra: 3975 / 3525,
  31649. bottom: 137 / 4112
  31650. }
  31651. },
  31652. },
  31653. [
  31654. {
  31655. name: "Micro",
  31656. height: math.unit(150, "mm"),
  31657. default: true
  31658. },
  31659. ]
  31660. ))
  31661. characterMakers.push(() => makeCharacter(
  31662. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  31663. {
  31664. front: {
  31665. height: math.unit(6, "feet"),
  31666. weight: math.unit(150, "lb"),
  31667. name: "Front",
  31668. image: {
  31669. source: "./media/characters/casselene-yaro/front.svg",
  31670. extra: 4721 / 4541,
  31671. bottom: 82 / 4803
  31672. }
  31673. },
  31674. back: {
  31675. height: math.unit(6, "feet"),
  31676. weight: math.unit(150, "lb"),
  31677. name: "Back",
  31678. image: {
  31679. source: "./media/characters/casselene-yaro/back.svg",
  31680. extra: 4569 / 4377,
  31681. bottom: 69 / 4638
  31682. }
  31683. },
  31684. dressed: {
  31685. height: math.unit(6, "feet"),
  31686. weight: math.unit(150, "lb"),
  31687. name: "Dressed",
  31688. image: {
  31689. source: "./media/characters/casselene-yaro/dressed.svg",
  31690. extra: 4721 / 4541,
  31691. bottom: 82 / 4803
  31692. }
  31693. },
  31694. maw: {
  31695. height: math.unit(1, "feet"),
  31696. name: "Maw",
  31697. image: {
  31698. source: "./media/characters/casselene-yaro/maw.svg"
  31699. }
  31700. },
  31701. },
  31702. [
  31703. {
  31704. name: "Macro",
  31705. height: math.unit(190, "feet"),
  31706. default: true
  31707. },
  31708. ]
  31709. ))
  31710. characterMakers.push(() => makeCharacter(
  31711. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  31712. {
  31713. front: {
  31714. height: math.unit(10, "feet"),
  31715. weight: math.unit(15015, "lb"),
  31716. name: "Front",
  31717. image: {
  31718. source: "./media/characters/platine/front.svg",
  31719. extra: 1741/1650,
  31720. bottom: 84/1825
  31721. }
  31722. },
  31723. side: {
  31724. height: math.unit(10, "feet"),
  31725. weight: math.unit(15015, "lb"),
  31726. name: "Side",
  31727. image: {
  31728. source: "./media/characters/platine/side.svg",
  31729. extra: 1790/1705,
  31730. bottom: 29/1819
  31731. }
  31732. },
  31733. },
  31734. [
  31735. {
  31736. name: "Normal",
  31737. height: math.unit(10, "feet"),
  31738. default: true
  31739. },
  31740. {
  31741. name: "Macro",
  31742. height: math.unit(100, "feet")
  31743. },
  31744. {
  31745. name: "Megamacro",
  31746. height: math.unit(1000, "feet")
  31747. },
  31748. ]
  31749. ))
  31750. characterMakers.push(() => makeCharacter(
  31751. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  31752. {
  31753. front: {
  31754. height: math.unit(15 + 5 / 12, "feet"),
  31755. weight: math.unit(4600, "lb"),
  31756. name: "Front",
  31757. image: {
  31758. source: "./media/characters/neapolitan-ananassa/front.svg",
  31759. extra: 2903 / 2736,
  31760. bottom: 0 / 2903
  31761. }
  31762. },
  31763. side: {
  31764. height: math.unit(15 + 5 / 12, "feet"),
  31765. weight: math.unit(4600, "lb"),
  31766. name: "Side",
  31767. image: {
  31768. source: "./media/characters/neapolitan-ananassa/side.svg",
  31769. extra: 2925 / 2719,
  31770. bottom: 0 / 2925
  31771. }
  31772. },
  31773. back: {
  31774. height: math.unit(15 + 5 / 12, "feet"),
  31775. weight: math.unit(4600, "lb"),
  31776. name: "Back",
  31777. image: {
  31778. source: "./media/characters/neapolitan-ananassa/back.svg",
  31779. extra: 2903 / 2736,
  31780. bottom: 0 / 2903
  31781. }
  31782. },
  31783. },
  31784. [
  31785. {
  31786. name: "Normal",
  31787. height: math.unit(15 + 5 / 12, "feet"),
  31788. default: true
  31789. },
  31790. {
  31791. name: "Post-Millenium",
  31792. height: math.unit(35 + 5 / 12, "feet")
  31793. },
  31794. {
  31795. name: "Post-Era",
  31796. height: math.unit(450 + 5 / 12, "feet")
  31797. },
  31798. ]
  31799. ))
  31800. characterMakers.push(() => makeCharacter(
  31801. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  31802. {
  31803. front: {
  31804. height: math.unit(300, "meters"),
  31805. weight: math.unit(125000, "tonnes"),
  31806. name: "Front",
  31807. image: {
  31808. source: "./media/characters/pazuzu/front.svg",
  31809. extra: 877 / 794,
  31810. bottom: 47 / 924
  31811. }
  31812. },
  31813. },
  31814. [
  31815. {
  31816. name: "Macro",
  31817. height: math.unit(300, "meters"),
  31818. default: true
  31819. },
  31820. ]
  31821. ))
  31822. characterMakers.push(() => makeCharacter(
  31823. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  31824. {
  31825. side: {
  31826. height: math.unit(10 + 7 / 12, "feet"),
  31827. weight: math.unit(2.5, "tons"),
  31828. name: "Side",
  31829. image: {
  31830. source: "./media/characters/aasha/side.svg",
  31831. extra: 1345 / 1245,
  31832. bottom: 111 / 1456
  31833. }
  31834. },
  31835. back: {
  31836. height: math.unit(10 + 7 / 12, "feet"),
  31837. weight: math.unit(2.5, "tons"),
  31838. name: "Back",
  31839. image: {
  31840. source: "./media/characters/aasha/back.svg",
  31841. extra: 1133 / 1057,
  31842. bottom: 257 / 1390
  31843. }
  31844. },
  31845. },
  31846. [
  31847. {
  31848. name: "Normal",
  31849. height: math.unit(10 + 7 / 12, "feet"),
  31850. default: true
  31851. },
  31852. ]
  31853. ))
  31854. characterMakers.push(() => makeCharacter(
  31855. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  31856. {
  31857. front: {
  31858. height: math.unit(6 + 3 / 12, "feet"),
  31859. name: "Front",
  31860. image: {
  31861. source: "./media/characters/nevan/front.svg",
  31862. extra: 704 / 704,
  31863. bottom: 28 / 732
  31864. }
  31865. },
  31866. back: {
  31867. height: math.unit(6 + 3 / 12, "feet"),
  31868. name: "Back",
  31869. image: {
  31870. source: "./media/characters/nevan/back.svg",
  31871. extra: 714 / 714,
  31872. bottom: 21 / 735
  31873. }
  31874. },
  31875. frontFlaccid: {
  31876. height: math.unit(6 + 3 / 12, "feet"),
  31877. name: "Front (Flaccid)",
  31878. image: {
  31879. source: "./media/characters/nevan/front-flaccid.svg",
  31880. extra: 704 / 704,
  31881. bottom: 28 / 732
  31882. }
  31883. },
  31884. frontErect: {
  31885. height: math.unit(6 + 3 / 12, "feet"),
  31886. name: "Front (Erect)",
  31887. image: {
  31888. source: "./media/characters/nevan/front-erect.svg",
  31889. extra: 704 / 704,
  31890. bottom: 28 / 732
  31891. }
  31892. },
  31893. backFlaccid: {
  31894. height: math.unit(6 + 3 / 12, "feet"),
  31895. name: "Back (Flaccid)",
  31896. image: {
  31897. source: "./media/characters/nevan/back-flaccid.svg",
  31898. extra: 714 / 714,
  31899. bottom: 21 / 735
  31900. }
  31901. },
  31902. },
  31903. [
  31904. {
  31905. name: "Normal",
  31906. height: math.unit(6 + 3 / 12, "feet"),
  31907. default: true
  31908. },
  31909. ]
  31910. ))
  31911. characterMakers.push(() => makeCharacter(
  31912. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  31913. {
  31914. front: {
  31915. height: math.unit(4, "feet"),
  31916. name: "Front",
  31917. image: {
  31918. source: "./media/characters/arhan/front.svg",
  31919. extra: 3368 / 3133,
  31920. bottom: 0 / 3368
  31921. }
  31922. },
  31923. side: {
  31924. height: math.unit(4, "feet"),
  31925. name: "Side",
  31926. image: {
  31927. source: "./media/characters/arhan/side.svg",
  31928. extra: 3347 / 3105,
  31929. bottom: 0 / 3347
  31930. }
  31931. },
  31932. tongue: {
  31933. height: math.unit(1.42, "feet"),
  31934. name: "Tongue",
  31935. image: {
  31936. source: "./media/characters/arhan/tongue.svg"
  31937. }
  31938. },
  31939. head: {
  31940. height: math.unit(0.85, "feet"),
  31941. name: "Head",
  31942. image: {
  31943. source: "./media/characters/arhan/head.svg"
  31944. }
  31945. },
  31946. },
  31947. [
  31948. {
  31949. name: "Normal",
  31950. height: math.unit(4, "feet"),
  31951. default: true
  31952. },
  31953. ]
  31954. ))
  31955. characterMakers.push(() => makeCharacter(
  31956. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  31957. {
  31958. front: {
  31959. height: math.unit(5 + 7.5 / 12, "feet"),
  31960. weight: math.unit(120, "lb"),
  31961. name: "Front",
  31962. image: {
  31963. source: "./media/characters/digi-duncan/front.svg",
  31964. extra: 330 / 326,
  31965. bottom: 16 / 346
  31966. }
  31967. },
  31968. side: {
  31969. height: math.unit(5 + 7.5 / 12, "feet"),
  31970. weight: math.unit(120, "lb"),
  31971. name: "Side",
  31972. image: {
  31973. source: "./media/characters/digi-duncan/side.svg",
  31974. extra: 341 / 337,
  31975. bottom: 1 / 342
  31976. }
  31977. },
  31978. back: {
  31979. height: math.unit(5 + 7.5 / 12, "feet"),
  31980. weight: math.unit(120, "lb"),
  31981. name: "Back",
  31982. image: {
  31983. source: "./media/characters/digi-duncan/back.svg",
  31984. extra: 330 / 326,
  31985. bottom: 12 / 342
  31986. }
  31987. },
  31988. },
  31989. [
  31990. {
  31991. name: "Speck",
  31992. height: math.unit(0.25, "mm")
  31993. },
  31994. {
  31995. name: "Micro",
  31996. height: math.unit(5, "mm")
  31997. },
  31998. {
  31999. name: "Tiny",
  32000. height: math.unit(0.5, "inches"),
  32001. default: true
  32002. },
  32003. {
  32004. name: "Human",
  32005. height: math.unit(5 + 7.5 / 12, "feet")
  32006. },
  32007. {
  32008. name: "Minigiant",
  32009. height: math.unit(8 + 5.25, "feet")
  32010. },
  32011. {
  32012. name: "Giant",
  32013. height: math.unit(2000, "feet")
  32014. },
  32015. {
  32016. name: "Mega",
  32017. height: math.unit(371.1, "miles")
  32018. },
  32019. ]
  32020. ))
  32021. characterMakers.push(() => makeCharacter(
  32022. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  32023. {
  32024. front: {
  32025. height: math.unit(2, "meters"),
  32026. weight: math.unit(350, "kg"),
  32027. name: "Front",
  32028. image: {
  32029. source: "./media/characters/jagaz-soulbreaker/front.svg",
  32030. extra: 898 / 838,
  32031. bottom: 9 / 907
  32032. }
  32033. },
  32034. },
  32035. [
  32036. {
  32037. name: "Micro",
  32038. height: math.unit(8, "meters")
  32039. },
  32040. {
  32041. name: "Normal",
  32042. height: math.unit(50, "meters"),
  32043. default: true
  32044. },
  32045. {
  32046. name: "Macro",
  32047. height: math.unit(500, "meters")
  32048. },
  32049. ]
  32050. ))
  32051. characterMakers.push(() => makeCharacter(
  32052. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  32053. {
  32054. front: {
  32055. height: math.unit(6 + 6 / 12, "feet"),
  32056. name: "Front",
  32057. image: {
  32058. source: "./media/characters/khardesh/front.svg",
  32059. extra: 1788/1596,
  32060. bottom: 66/1854
  32061. }
  32062. },
  32063. back: {
  32064. height: math.unit(6 + 6 / 12, "feet"),
  32065. name: "Back",
  32066. image: {
  32067. source: "./media/characters/khardesh/back.svg",
  32068. extra: 1781/1584,
  32069. bottom: 68/1849
  32070. }
  32071. },
  32072. },
  32073. [
  32074. {
  32075. name: "Normal",
  32076. height: math.unit(6 + 6 / 12, "feet"),
  32077. default: true
  32078. },
  32079. {
  32080. name: "Normal+",
  32081. height: math.unit(4, "meters")
  32082. },
  32083. {
  32084. name: "Macro",
  32085. height: math.unit(50, "meters")
  32086. },
  32087. {
  32088. name: "Macro+",
  32089. height: math.unit(100, "meters")
  32090. },
  32091. {
  32092. name: "Megamacro",
  32093. height: math.unit(20, "km")
  32094. },
  32095. ]
  32096. ))
  32097. characterMakers.push(() => makeCharacter(
  32098. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  32099. {
  32100. front: {
  32101. height: math.unit(6, "feet"),
  32102. weight: math.unit(150, "lb"),
  32103. name: "Front",
  32104. image: {
  32105. source: "./media/characters/kosho/front.svg",
  32106. extra: 1847 / 1847,
  32107. bottom: 86 / 1933
  32108. }
  32109. },
  32110. },
  32111. [
  32112. {
  32113. name: "Second-stage micro",
  32114. height: math.unit(0.5, "inches")
  32115. },
  32116. {
  32117. name: "First-stage micro",
  32118. height: math.unit(6, "inches")
  32119. },
  32120. {
  32121. name: "Normal",
  32122. height: math.unit(6, "feet"),
  32123. default: true
  32124. },
  32125. {
  32126. name: "First-stage macro",
  32127. height: math.unit(72, "feet")
  32128. },
  32129. {
  32130. name: "Second-stage macro",
  32131. height: math.unit(864, "feet")
  32132. },
  32133. ]
  32134. ))
  32135. characterMakers.push(() => makeCharacter(
  32136. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  32137. {
  32138. normal: {
  32139. height: math.unit(4 + 6 / 12, "feet"),
  32140. name: "Normal",
  32141. image: {
  32142. source: "./media/characters/hydra/normal.svg",
  32143. extra: 2833 / 2634,
  32144. bottom: 68 / 2901
  32145. }
  32146. },
  32147. smol: {
  32148. height: math.unit(0.705, "inches"),
  32149. name: "Smol",
  32150. image: {
  32151. source: "./media/characters/hydra/smol.svg",
  32152. extra: 2715 / 2540,
  32153. bottom: 0 / 2715
  32154. }
  32155. },
  32156. },
  32157. [
  32158. {
  32159. name: "Normal",
  32160. height: math.unit(4 + 6 / 12, "feet"),
  32161. default: true
  32162. }
  32163. ]
  32164. ))
  32165. characterMakers.push(() => makeCharacter(
  32166. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  32167. {
  32168. front: {
  32169. height: math.unit(0.6, "cm"),
  32170. name: "Front",
  32171. image: {
  32172. source: "./media/characters/daz/front.svg",
  32173. extra: 1682 / 1164,
  32174. bottom: 42 / 1724
  32175. }
  32176. },
  32177. },
  32178. [
  32179. {
  32180. name: "Normal",
  32181. height: math.unit(0.6, "cm"),
  32182. default: true
  32183. },
  32184. ]
  32185. ))
  32186. characterMakers.push(() => makeCharacter(
  32187. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  32188. {
  32189. front: {
  32190. height: math.unit(6, "feet"),
  32191. weight: math.unit(235, "lb"),
  32192. name: "Front",
  32193. image: {
  32194. source: "./media/characters/theo-pangolin/front.svg",
  32195. extra: 1996 / 1969,
  32196. bottom: 115 / 2111
  32197. }
  32198. },
  32199. back: {
  32200. height: math.unit(6, "feet"),
  32201. weight: math.unit(235, "lb"),
  32202. name: "Back",
  32203. image: {
  32204. source: "./media/characters/theo-pangolin/back.svg",
  32205. extra: 1979 / 1979,
  32206. bottom: 40 / 2019
  32207. }
  32208. },
  32209. feral: {
  32210. height: math.unit(2, "feet"),
  32211. weight: math.unit(30, "lb"),
  32212. name: "Feral",
  32213. image: {
  32214. source: "./media/characters/theo-pangolin/feral.svg",
  32215. extra: 803 / 791,
  32216. bottom: 181 / 984
  32217. }
  32218. },
  32219. footFive: {
  32220. height: math.unit(1.43, "feet"),
  32221. name: "Foot (Five Toes)",
  32222. image: {
  32223. source: "./media/characters/theo-pangolin/foot-five.svg"
  32224. }
  32225. },
  32226. footFour: {
  32227. height: math.unit(1.43, "feet"),
  32228. name: "Foot (Four Toes)",
  32229. image: {
  32230. source: "./media/characters/theo-pangolin/foot-four.svg"
  32231. }
  32232. },
  32233. handFour: {
  32234. height: math.unit(0.81, "feet"),
  32235. name: "Hand (Four Fingers)",
  32236. image: {
  32237. source: "./media/characters/theo-pangolin/hand-four.svg"
  32238. }
  32239. },
  32240. handThree: {
  32241. height: math.unit(0.81, "feet"),
  32242. name: "Hand (Three Fingers)",
  32243. image: {
  32244. source: "./media/characters/theo-pangolin/hand-three.svg"
  32245. }
  32246. },
  32247. headFront: {
  32248. height: math.unit(1.37, "feet"),
  32249. name: "Head (Front)",
  32250. image: {
  32251. source: "./media/characters/theo-pangolin/head-front.svg"
  32252. }
  32253. },
  32254. headSide: {
  32255. height: math.unit(1.43, "feet"),
  32256. name: "Head (Side)",
  32257. image: {
  32258. source: "./media/characters/theo-pangolin/head-side.svg"
  32259. }
  32260. },
  32261. tongue: {
  32262. height: math.unit(2.29, "feet"),
  32263. name: "Tongue",
  32264. image: {
  32265. source: "./media/characters/theo-pangolin/tongue.svg"
  32266. }
  32267. },
  32268. },
  32269. [
  32270. {
  32271. name: "Normal",
  32272. height: math.unit(6, "feet")
  32273. },
  32274. {
  32275. name: "Macro",
  32276. height: math.unit(400, "feet"),
  32277. default: true
  32278. },
  32279. ]
  32280. ))
  32281. characterMakers.push(() => makeCharacter(
  32282. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  32283. {
  32284. front: {
  32285. height: math.unit(6, "inches"),
  32286. weight: math.unit(0.036, "kg"),
  32287. name: "Front",
  32288. image: {
  32289. source: "./media/characters/renée/front.svg",
  32290. extra: 900 / 886,
  32291. bottom: 8 / 908
  32292. }
  32293. },
  32294. },
  32295. [
  32296. {
  32297. name: "Nano",
  32298. height: math.unit(1, "nm")
  32299. },
  32300. {
  32301. name: "Micro",
  32302. height: math.unit(1, "mm")
  32303. },
  32304. {
  32305. name: "Normal",
  32306. height: math.unit(6, "inches")
  32307. },
  32308. {
  32309. name: "Macro",
  32310. height: math.unit(2000, "feet"),
  32311. default: true
  32312. },
  32313. {
  32314. name: "Megamacro",
  32315. height: math.unit(2, "km")
  32316. },
  32317. {
  32318. name: "Gigamacro",
  32319. height: math.unit(2000, "km")
  32320. },
  32321. {
  32322. name: "Teramacro",
  32323. height: math.unit(250000, "km")
  32324. },
  32325. ]
  32326. ))
  32327. characterMakers.push(() => makeCharacter(
  32328. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  32329. {
  32330. front: {
  32331. height: math.unit(4, "meters"),
  32332. weight: math.unit(150, "kg"),
  32333. name: "Front",
  32334. image: {
  32335. source: "./media/characters/caledvwlch/front.svg",
  32336. extra: 1757/1537,
  32337. bottom: 31/1788
  32338. }
  32339. },
  32340. side: {
  32341. height: math.unit(4, "meters"),
  32342. weight: math.unit(150, "kg"),
  32343. name: "Side",
  32344. image: {
  32345. source: "./media/characters/caledvwlch/side.svg",
  32346. extra: 1605 / 1536,
  32347. bottom: 31 / 1636
  32348. }
  32349. },
  32350. back: {
  32351. height: math.unit(4, "meters"),
  32352. weight: math.unit(150, "kg"),
  32353. name: "Back",
  32354. image: {
  32355. source: "./media/characters/caledvwlch/back.svg",
  32356. extra: 1635 / 1565,
  32357. bottom: 27 / 1662
  32358. }
  32359. },
  32360. },
  32361. [
  32362. {
  32363. name: "\"Incognito\"",
  32364. height: math.unit(4, "meters")
  32365. },
  32366. {
  32367. name: "Small rampage",
  32368. height: math.unit(600, "meters")
  32369. },
  32370. {
  32371. name: "Mega",
  32372. height: math.unit(30, "km")
  32373. },
  32374. {
  32375. name: "Home-size",
  32376. height: math.unit(50, "km"),
  32377. default: true
  32378. },
  32379. {
  32380. name: "Giga",
  32381. height: math.unit(300, "km")
  32382. },
  32383. {
  32384. name: "Lounging",
  32385. height: math.unit(11000, "km")
  32386. },
  32387. {
  32388. name: "Planet snacking",
  32389. height: math.unit(2000000, "km")
  32390. },
  32391. ]
  32392. ))
  32393. characterMakers.push(() => makeCharacter(
  32394. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  32395. {
  32396. front: {
  32397. height: math.unit(6, "feet"),
  32398. weight: math.unit(215, "lb"),
  32399. name: "Front",
  32400. image: {
  32401. source: "./media/characters/sapphire-svell/front.svg",
  32402. extra: 495 / 455,
  32403. bottom: 20 / 515
  32404. }
  32405. },
  32406. back: {
  32407. height: math.unit(6, "feet"),
  32408. weight: math.unit(216, "lb"),
  32409. name: "Back",
  32410. image: {
  32411. source: "./media/characters/sapphire-svell/back.svg",
  32412. extra: 497 / 477,
  32413. bottom: 7 / 504
  32414. }
  32415. },
  32416. maw: {
  32417. height: math.unit(1.57, "feet"),
  32418. name: "Maw",
  32419. image: {
  32420. source: "./media/characters/sapphire-svell/maw.svg"
  32421. }
  32422. },
  32423. foot: {
  32424. height: math.unit(1.07, "feet"),
  32425. name: "Foot",
  32426. image: {
  32427. source: "./media/characters/sapphire-svell/foot.svg"
  32428. }
  32429. },
  32430. toering: {
  32431. height: math.unit(1.7, "inch"),
  32432. name: "Toering",
  32433. image: {
  32434. source: "./media/characters/sapphire-svell/toering.svg"
  32435. }
  32436. },
  32437. },
  32438. [
  32439. {
  32440. name: "Normal",
  32441. height: math.unit(300, "feet"),
  32442. default: true
  32443. },
  32444. {
  32445. name: "Augmented",
  32446. height: math.unit(1250, "feet")
  32447. },
  32448. {
  32449. name: "Unleashed",
  32450. height: math.unit(3000, "feet")
  32451. },
  32452. ]
  32453. ))
  32454. characterMakers.push(() => makeCharacter(
  32455. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  32456. {
  32457. side: {
  32458. height: math.unit(2 + 3 / 12, "feet"),
  32459. weight: math.unit(110, "lb"),
  32460. name: "Side",
  32461. image: {
  32462. source: "./media/characters/glitch-flux/side.svg",
  32463. extra: 997 / 805,
  32464. bottom: 20 / 1017
  32465. }
  32466. },
  32467. },
  32468. [
  32469. {
  32470. name: "Normal",
  32471. height: math.unit(2 + 3 / 12, "feet"),
  32472. default: true
  32473. },
  32474. ]
  32475. ))
  32476. characterMakers.push(() => makeCharacter(
  32477. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  32478. {
  32479. front: {
  32480. height: math.unit(4, "meters"),
  32481. name: "Front",
  32482. image: {
  32483. source: "./media/characters/mid/front.svg",
  32484. extra: 507 / 476,
  32485. bottom: 17 / 524
  32486. }
  32487. },
  32488. back: {
  32489. height: math.unit(4, "meters"),
  32490. name: "Back",
  32491. image: {
  32492. source: "./media/characters/mid/back.svg",
  32493. extra: 519 / 487,
  32494. bottom: 7 / 526
  32495. }
  32496. },
  32497. stuck: {
  32498. height: math.unit(2.2, "meters"),
  32499. name: "Stuck",
  32500. image: {
  32501. source: "./media/characters/mid/stuck.svg",
  32502. extra: 1951 / 1869,
  32503. bottom: 88 / 2039
  32504. }
  32505. }
  32506. },
  32507. [
  32508. {
  32509. name: "Normal",
  32510. height: math.unit(4, "meters"),
  32511. default: true
  32512. },
  32513. {
  32514. name: "Big",
  32515. height: math.unit(10, "meters")
  32516. },
  32517. {
  32518. name: "Macro",
  32519. height: math.unit(800, "meters")
  32520. },
  32521. {
  32522. name: "Megamacro",
  32523. height: math.unit(100, "km")
  32524. },
  32525. {
  32526. name: "Overgrown",
  32527. height: math.unit(1, "parsec")
  32528. },
  32529. ]
  32530. ))
  32531. characterMakers.push(() => makeCharacter(
  32532. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  32533. {
  32534. front: {
  32535. height: math.unit(2.5, "meters"),
  32536. weight: math.unit(225, "kg"),
  32537. name: "Front",
  32538. image: {
  32539. source: "./media/characters/iris/front.svg",
  32540. extra: 3348 / 3251,
  32541. bottom: 205 / 3553
  32542. }
  32543. },
  32544. maw: {
  32545. height: math.unit(0.56, "meter"),
  32546. name: "Maw",
  32547. image: {
  32548. source: "./media/characters/iris/maw.svg"
  32549. }
  32550. },
  32551. },
  32552. [
  32553. {
  32554. name: "Mewter cat",
  32555. height: math.unit(1.2, "meters")
  32556. },
  32557. {
  32558. name: "Normal",
  32559. height: math.unit(2.5, "meters"),
  32560. default: true
  32561. },
  32562. {
  32563. name: "Minimacro",
  32564. height: math.unit(18, "feet")
  32565. },
  32566. {
  32567. name: "Macro",
  32568. height: math.unit(140, "feet")
  32569. },
  32570. {
  32571. name: "Macro+",
  32572. height: math.unit(180, "meters")
  32573. },
  32574. {
  32575. name: "Megamacro",
  32576. height: math.unit(2746, "meters")
  32577. },
  32578. ]
  32579. ))
  32580. characterMakers.push(() => makeCharacter(
  32581. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  32582. {
  32583. front: {
  32584. height: math.unit(6, "feet"),
  32585. weight: math.unit(135, "lb"),
  32586. name: "Front",
  32587. image: {
  32588. source: "./media/characters/axel/front.svg",
  32589. extra: 908 / 908,
  32590. bottom: 58 / 966
  32591. }
  32592. },
  32593. side: {
  32594. height: math.unit(6, "feet"),
  32595. weight: math.unit(135, "lb"),
  32596. name: "Side",
  32597. image: {
  32598. source: "./media/characters/axel/side.svg",
  32599. extra: 958 / 958,
  32600. bottom: 11 / 969
  32601. }
  32602. },
  32603. back: {
  32604. height: math.unit(6, "feet"),
  32605. weight: math.unit(135, "lb"),
  32606. name: "Back",
  32607. image: {
  32608. source: "./media/characters/axel/back.svg",
  32609. extra: 887 / 887,
  32610. bottom: 34 / 921
  32611. }
  32612. },
  32613. head: {
  32614. height: math.unit(1.07, "feet"),
  32615. name: "Head",
  32616. image: {
  32617. source: "./media/characters/axel/head.svg"
  32618. }
  32619. },
  32620. beak: {
  32621. height: math.unit(1.4, "feet"),
  32622. name: "Beak",
  32623. image: {
  32624. source: "./media/characters/axel/beak.svg"
  32625. }
  32626. },
  32627. beakSide: {
  32628. height: math.unit(1.4, "feet"),
  32629. name: "Beak Side",
  32630. image: {
  32631. source: "./media/characters/axel/beak-side.svg"
  32632. }
  32633. },
  32634. sheath: {
  32635. height: math.unit(0.5, "feet"),
  32636. name: "Sheath",
  32637. image: {
  32638. source: "./media/characters/axel/sheath.svg"
  32639. }
  32640. },
  32641. dick: {
  32642. height: math.unit(0.98, "feet"),
  32643. name: "Dick",
  32644. image: {
  32645. source: "./media/characters/axel/dick.svg"
  32646. }
  32647. },
  32648. },
  32649. [
  32650. {
  32651. name: "Macro",
  32652. height: math.unit(68, "meters"),
  32653. default: true
  32654. },
  32655. ]
  32656. ))
  32657. characterMakers.push(() => makeCharacter(
  32658. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  32659. {
  32660. front: {
  32661. height: math.unit(3.5, "meters"),
  32662. weight: math.unit(1200, "kg"),
  32663. name: "Front",
  32664. image: {
  32665. source: "./media/characters/joanna/front.svg",
  32666. extra: 1596 / 1488,
  32667. bottom: 29 / 1625
  32668. }
  32669. },
  32670. back: {
  32671. height: math.unit(3.5, "meters"),
  32672. weight: math.unit(1200, "kg"),
  32673. name: "Back",
  32674. image: {
  32675. source: "./media/characters/joanna/back.svg",
  32676. extra: 1594 / 1495,
  32677. bottom: 26 / 1620
  32678. }
  32679. },
  32680. frontShorts: {
  32681. height: math.unit(3.5, "meters"),
  32682. weight: math.unit(1200, "kg"),
  32683. name: "Front (Shorts)",
  32684. image: {
  32685. source: "./media/characters/joanna/front-shorts.svg",
  32686. extra: 1596 / 1488,
  32687. bottom: 29 / 1625
  32688. }
  32689. },
  32690. frontBiker: {
  32691. height: math.unit(3.5, "meters"),
  32692. weight: math.unit(1200, "kg"),
  32693. name: "Front (Biker)",
  32694. image: {
  32695. source: "./media/characters/joanna/front-biker.svg",
  32696. extra: 1596 / 1488,
  32697. bottom: 29 / 1625
  32698. }
  32699. },
  32700. backBiker: {
  32701. height: math.unit(3.5, "meters"),
  32702. weight: math.unit(1200, "kg"),
  32703. name: "Back (Biker)",
  32704. image: {
  32705. source: "./media/characters/joanna/back-biker.svg",
  32706. extra: 1594 / 1495,
  32707. bottom: 88 / 1682
  32708. }
  32709. },
  32710. bikeLeft: {
  32711. height: math.unit(2.4, "meters"),
  32712. weight: math.unit(1600, "kg"),
  32713. name: "Bike (Left)",
  32714. image: {
  32715. source: "./media/characters/joanna/bike-left.svg",
  32716. extra: 720 / 720,
  32717. bottom: 8 / 728
  32718. }
  32719. },
  32720. bikeRight: {
  32721. height: math.unit(2.4, "meters"),
  32722. weight: math.unit(1600, "kg"),
  32723. name: "Bike (Right)",
  32724. image: {
  32725. source: "./media/characters/joanna/bike-right.svg",
  32726. extra: 720 / 720,
  32727. bottom: 8 / 728
  32728. }
  32729. },
  32730. },
  32731. [
  32732. {
  32733. name: "Incognito",
  32734. height: math.unit(3.5, "meters")
  32735. },
  32736. {
  32737. name: "Casual Big",
  32738. height: math.unit(200, "meters")
  32739. },
  32740. {
  32741. name: "Macro",
  32742. height: math.unit(600, "meters")
  32743. },
  32744. {
  32745. name: "Original",
  32746. height: math.unit(20, "km"),
  32747. default: true
  32748. },
  32749. {
  32750. name: "Giga",
  32751. height: math.unit(400, "km")
  32752. },
  32753. {
  32754. name: "Lounging",
  32755. height: math.unit(1500, "km")
  32756. },
  32757. {
  32758. name: "Planetary",
  32759. height: math.unit(200000, "km")
  32760. },
  32761. ]
  32762. ))
  32763. characterMakers.push(() => makeCharacter(
  32764. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  32765. {
  32766. front: {
  32767. height: math.unit(6, "feet"),
  32768. weight: math.unit(150, "lb"),
  32769. name: "Front",
  32770. image: {
  32771. source: "./media/characters/hugo-sigil/front.svg",
  32772. extra: 522 / 500,
  32773. bottom: 2 / 524
  32774. }
  32775. },
  32776. back: {
  32777. height: math.unit(6, "feet"),
  32778. weight: math.unit(150, "lb"),
  32779. name: "Back",
  32780. image: {
  32781. source: "./media/characters/hugo-sigil/back.svg",
  32782. extra: 519 / 495,
  32783. bottom: 5 / 524
  32784. }
  32785. },
  32786. maw: {
  32787. height: math.unit(1.4, "feet"),
  32788. weight: math.unit(150, "lb"),
  32789. name: "Maw",
  32790. image: {
  32791. source: "./media/characters/hugo-sigil/maw.svg"
  32792. }
  32793. },
  32794. feet: {
  32795. height: math.unit(1.56, "feet"),
  32796. weight: math.unit(150, "lb"),
  32797. name: "Feet",
  32798. image: {
  32799. source: "./media/characters/hugo-sigil/feet.svg",
  32800. extra: 177 / 177,
  32801. bottom: 12 / 189
  32802. }
  32803. },
  32804. },
  32805. [
  32806. {
  32807. name: "Normal",
  32808. height: math.unit(6, "feet")
  32809. },
  32810. {
  32811. name: "Macro",
  32812. height: math.unit(200, "feet"),
  32813. default: true
  32814. },
  32815. ]
  32816. ))
  32817. characterMakers.push(() => makeCharacter(
  32818. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  32819. {
  32820. front: {
  32821. height: math.unit(6, "feet"),
  32822. weight: math.unit(150, "lb"),
  32823. name: "Front",
  32824. image: {
  32825. source: "./media/characters/peri/front.svg",
  32826. extra: 2354 / 2233,
  32827. bottom: 49 / 2403
  32828. }
  32829. },
  32830. },
  32831. [
  32832. {
  32833. name: "Really Small",
  32834. height: math.unit(1, "nm")
  32835. },
  32836. {
  32837. name: "Micro",
  32838. height: math.unit(4, "inches")
  32839. },
  32840. {
  32841. name: "Normal",
  32842. height: math.unit(7, "inches"),
  32843. default: true
  32844. },
  32845. {
  32846. name: "Macro",
  32847. height: math.unit(400, "feet")
  32848. },
  32849. {
  32850. name: "Megamacro",
  32851. height: math.unit(100, "miles")
  32852. },
  32853. ]
  32854. ))
  32855. characterMakers.push(() => makeCharacter(
  32856. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  32857. {
  32858. frontSlim: {
  32859. height: math.unit(7, "feet"),
  32860. name: "Front (Slim)",
  32861. image: {
  32862. source: "./media/characters/issilora/front-slim.svg",
  32863. extra: 529 / 449,
  32864. bottom: 53 / 582
  32865. }
  32866. },
  32867. sideSlim: {
  32868. height: math.unit(7, "feet"),
  32869. name: "Side (Slim)",
  32870. image: {
  32871. source: "./media/characters/issilora/side-slim.svg",
  32872. extra: 570 / 480,
  32873. bottom: 30 / 600
  32874. }
  32875. },
  32876. backSlim: {
  32877. height: math.unit(7, "feet"),
  32878. name: "Back (Slim)",
  32879. image: {
  32880. source: "./media/characters/issilora/back-slim.svg",
  32881. extra: 537 / 455,
  32882. bottom: 46 / 583
  32883. }
  32884. },
  32885. frontBuff: {
  32886. height: math.unit(7, "feet"),
  32887. name: "Front (Buff)",
  32888. image: {
  32889. source: "./media/characters/issilora/front-buff.svg",
  32890. extra: 2310 / 2035,
  32891. bottom: 335 / 2645
  32892. }
  32893. },
  32894. head: {
  32895. height: math.unit(1.94, "feet"),
  32896. name: "Head",
  32897. image: {
  32898. source: "./media/characters/issilora/head.svg"
  32899. }
  32900. },
  32901. },
  32902. [
  32903. {
  32904. name: "Minimum",
  32905. height: math.unit(7, "feet")
  32906. },
  32907. {
  32908. name: "Comfortable",
  32909. height: math.unit(17, "feet")
  32910. },
  32911. {
  32912. name: "Fun Size",
  32913. height: math.unit(47, "feet")
  32914. },
  32915. {
  32916. name: "Natural Macro",
  32917. height: math.unit(137, "feet"),
  32918. default: true
  32919. },
  32920. {
  32921. name: "Maximum Kaiju",
  32922. height: math.unit(397, "feet")
  32923. },
  32924. ]
  32925. ))
  32926. characterMakers.push(() => makeCharacter(
  32927. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  32928. {
  32929. front: {
  32930. height: math.unit(50 + 9/12, "feet"),
  32931. weight: math.unit(32.8, "tons"),
  32932. name: "Front",
  32933. image: {
  32934. source: "./media/characters/irb'iiritaahn/front.svg",
  32935. extra: 1878/1826,
  32936. bottom: 326/2204
  32937. }
  32938. },
  32939. back: {
  32940. height: math.unit(50 + 9/12, "feet"),
  32941. weight: math.unit(32.8, "tons"),
  32942. name: "Back",
  32943. image: {
  32944. source: "./media/characters/irb'iiritaahn/back.svg",
  32945. extra: 2052/2018,
  32946. bottom: 152/2204
  32947. }
  32948. },
  32949. head: {
  32950. height: math.unit(12.86, "feet"),
  32951. name: "Head",
  32952. image: {
  32953. source: "./media/characters/irb'iiritaahn/head.svg"
  32954. }
  32955. },
  32956. maw: {
  32957. height: math.unit(9.66, "feet"),
  32958. name: "Maw",
  32959. image: {
  32960. source: "./media/characters/irb'iiritaahn/maw.svg"
  32961. }
  32962. },
  32963. frontDick: {
  32964. height: math.unit(8.78461, "feet"),
  32965. name: "Front Dick",
  32966. image: {
  32967. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  32968. }
  32969. },
  32970. rearDick: {
  32971. height: math.unit(8.78461, "feet"),
  32972. name: "Rear Dick",
  32973. image: {
  32974. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  32975. }
  32976. },
  32977. rearDickUnfolded: {
  32978. height: math.unit(8.78, "feet"),
  32979. name: "Rear Dick (Unfolded)",
  32980. image: {
  32981. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  32982. }
  32983. },
  32984. wings: {
  32985. height: math.unit(43, "feet"),
  32986. name: "Wings",
  32987. image: {
  32988. source: "./media/characters/irb'iiritaahn/wings.svg"
  32989. }
  32990. },
  32991. },
  32992. [
  32993. {
  32994. name: "Macro",
  32995. height: math.unit(50 + 9/12, "feet"),
  32996. default: true
  32997. },
  32998. ]
  32999. ))
  33000. characterMakers.push(() => makeCharacter(
  33001. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  33002. {
  33003. front: {
  33004. height: math.unit(205, "cm"),
  33005. weight: math.unit(102, "kg"),
  33006. name: "Front",
  33007. image: {
  33008. source: "./media/characters/irbisgreif/front.svg",
  33009. extra: 785/706,
  33010. bottom: 13/798
  33011. }
  33012. },
  33013. back: {
  33014. height: math.unit(205, "cm"),
  33015. weight: math.unit(102, "kg"),
  33016. name: "Back",
  33017. image: {
  33018. source: "./media/characters/irbisgreif/back.svg",
  33019. extra: 713/701,
  33020. bottom: 26/739
  33021. }
  33022. },
  33023. frontDressed: {
  33024. height: math.unit(216, "cm"),
  33025. weight: math.unit(102, "kg"),
  33026. name: "Front-dressed",
  33027. image: {
  33028. source: "./media/characters/irbisgreif/front-dressed.svg",
  33029. extra: 902/776,
  33030. bottom: 14/916
  33031. }
  33032. },
  33033. sideDressed: {
  33034. height: math.unit(195, "cm"),
  33035. weight: math.unit(102, "kg"),
  33036. name: "Side-dressed",
  33037. image: {
  33038. source: "./media/characters/irbisgreif/side-dressed.svg",
  33039. extra: 788/688,
  33040. bottom: 21/809
  33041. }
  33042. },
  33043. backDressed: {
  33044. height: math.unit(216, "cm"),
  33045. weight: math.unit(102, "kg"),
  33046. name: "Back-dressed",
  33047. image: {
  33048. source: "./media/characters/irbisgreif/back-dressed.svg",
  33049. extra: 901/783,
  33050. bottom: 10/911
  33051. }
  33052. },
  33053. dick: {
  33054. height: math.unit(0.49, "feet"),
  33055. name: "Dick",
  33056. image: {
  33057. source: "./media/characters/irbisgreif/dick.svg"
  33058. }
  33059. },
  33060. wingTop: {
  33061. height: math.unit(1.93 , "feet"),
  33062. name: "Wing-top",
  33063. image: {
  33064. source: "./media/characters/irbisgreif/wing-top.svg"
  33065. }
  33066. },
  33067. wingBottom: {
  33068. height: math.unit(1.93 , "feet"),
  33069. name: "Wing-bottom",
  33070. image: {
  33071. source: "./media/characters/irbisgreif/wing-bottom.svg"
  33072. }
  33073. },
  33074. },
  33075. [
  33076. {
  33077. name: "Normal",
  33078. height: math.unit(216, "cm"),
  33079. default: true
  33080. },
  33081. ]
  33082. ))
  33083. characterMakers.push(() => makeCharacter(
  33084. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  33085. {
  33086. front: {
  33087. height: math.unit(6, "feet"),
  33088. weight: math.unit(150, "lb"),
  33089. name: "Front",
  33090. image: {
  33091. source: "./media/characters/pride/front.svg",
  33092. extra: 1299/1230,
  33093. bottom: 18/1317
  33094. }
  33095. },
  33096. },
  33097. [
  33098. {
  33099. name: "Normal",
  33100. height: math.unit(7, "feet")
  33101. },
  33102. {
  33103. name: "Mini-macro",
  33104. height: math.unit(11, "feet")
  33105. },
  33106. {
  33107. name: "Macro",
  33108. height: math.unit(15, "meters"),
  33109. default: true
  33110. },
  33111. {
  33112. name: "Macro+",
  33113. height: math.unit(40, "meters")
  33114. },
  33115. ]
  33116. ))
  33117. characterMakers.push(() => makeCharacter(
  33118. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  33119. {
  33120. front: {
  33121. height: math.unit(4 + 2 / 12, "feet"),
  33122. weight: math.unit(95, "lb"),
  33123. name: "Front",
  33124. image: {
  33125. source: "./media/characters/vaelophis-nyx/front.svg",
  33126. extra: 2532/2330,
  33127. bottom: 0/2532
  33128. }
  33129. },
  33130. back: {
  33131. height: math.unit(4 + 2 / 12, "feet"),
  33132. weight: math.unit(95, "lb"),
  33133. name: "Back",
  33134. image: {
  33135. source: "./media/characters/vaelophis-nyx/back.svg",
  33136. extra: 2484/2361,
  33137. bottom: 0/2484
  33138. }
  33139. },
  33140. feralSide: {
  33141. height: math.unit(2 + 1/12, "feet"),
  33142. weight: math.unit(20, "lb"),
  33143. name: "Feral (Side)",
  33144. image: {
  33145. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  33146. extra: 1721/1581,
  33147. bottom: 70/1791
  33148. }
  33149. },
  33150. feralLazing: {
  33151. height: math.unit(1.08, "feet"),
  33152. weight: math.unit(20, "lb"),
  33153. name: "Feral (Lazing)",
  33154. image: {
  33155. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  33156. extra: 822/822,
  33157. bottom: 248/1070
  33158. }
  33159. },
  33160. ear: {
  33161. height: math.unit(0.416, "feet"),
  33162. name: "Ear",
  33163. image: {
  33164. source: "./media/characters/vaelophis-nyx/ear.svg"
  33165. }
  33166. },
  33167. eye: {
  33168. height: math.unit(0.0748, "feet"),
  33169. name: "Eye",
  33170. image: {
  33171. source: "./media/characters/vaelophis-nyx/eye.svg"
  33172. }
  33173. },
  33174. mouth: {
  33175. height: math.unit(0.378, "feet"),
  33176. name: "Mouth",
  33177. image: {
  33178. source: "./media/characters/vaelophis-nyx/mouth.svg"
  33179. }
  33180. },
  33181. spade: {
  33182. height: math.unit(0.55, "feet"),
  33183. name: "Spade",
  33184. image: {
  33185. source: "./media/characters/vaelophis-nyx/spade.svg"
  33186. }
  33187. },
  33188. },
  33189. [
  33190. {
  33191. name: "Normal",
  33192. height: math.unit(4 + 2/12, "feet"),
  33193. default: true
  33194. },
  33195. ]
  33196. ))
  33197. characterMakers.push(() => makeCharacter(
  33198. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  33199. {
  33200. front: {
  33201. height: math.unit(7, "feet"),
  33202. weight: math.unit(231, "lb"),
  33203. name: "Front",
  33204. image: {
  33205. source: "./media/characters/flux/front.svg",
  33206. extra: 919/871,
  33207. bottom: 0/919
  33208. }
  33209. },
  33210. back: {
  33211. height: math.unit(7, "feet"),
  33212. weight: math.unit(231, "lb"),
  33213. name: "Back",
  33214. image: {
  33215. source: "./media/characters/flux/back.svg",
  33216. extra: 1040/992,
  33217. bottom: 0/1040
  33218. }
  33219. },
  33220. frontDressed: {
  33221. height: math.unit(7, "feet"),
  33222. weight: math.unit(231, "lb"),
  33223. name: "Front (Dressed)",
  33224. image: {
  33225. source: "./media/characters/flux/front-dressed.svg",
  33226. extra: 919/871,
  33227. bottom: 0/919
  33228. }
  33229. },
  33230. feralSide: {
  33231. height: math.unit(5, "feet"),
  33232. weight: math.unit(150, "lb"),
  33233. name: "Feral (Side)",
  33234. image: {
  33235. source: "./media/characters/flux/feral-side.svg",
  33236. extra: 598/528,
  33237. bottom: 28/626
  33238. }
  33239. },
  33240. head: {
  33241. height: math.unit(1.585, "feet"),
  33242. name: "Head",
  33243. image: {
  33244. source: "./media/characters/flux/head.svg"
  33245. }
  33246. },
  33247. headSide: {
  33248. height: math.unit(1.74, "feet"),
  33249. name: "Head (Side)",
  33250. image: {
  33251. source: "./media/characters/flux/head-side.svg"
  33252. }
  33253. },
  33254. headSideFire: {
  33255. height: math.unit(1.76, "feet"),
  33256. name: "Head (Side, Fire)",
  33257. image: {
  33258. source: "./media/characters/flux/head-side-fire.svg"
  33259. }
  33260. },
  33261. },
  33262. [
  33263. {
  33264. name: "Normal",
  33265. height: math.unit(7, "feet"),
  33266. default: true
  33267. },
  33268. ]
  33269. ))
  33270. characterMakers.push(() => makeCharacter(
  33271. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  33272. {
  33273. front: {
  33274. height: math.unit(9, "feet"),
  33275. weight: math.unit(1012, "lb"),
  33276. name: "Front",
  33277. image: {
  33278. source: "./media/characters/ulfra-lupae/front.svg",
  33279. extra: 1083/1011,
  33280. bottom: 67/1150
  33281. }
  33282. },
  33283. },
  33284. [
  33285. {
  33286. name: "Micro",
  33287. height: math.unit(6, "inches")
  33288. },
  33289. {
  33290. name: "Socializing",
  33291. height: math.unit(6 + 5/12, "feet")
  33292. },
  33293. {
  33294. name: "Normal",
  33295. height: math.unit(9, "feet"),
  33296. default: true
  33297. },
  33298. {
  33299. name: "Macro",
  33300. height: math.unit(150, "feet")
  33301. },
  33302. ]
  33303. ))
  33304. characterMakers.push(() => makeCharacter(
  33305. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  33306. {
  33307. front: {
  33308. height: math.unit(5 + 2/12, "feet"),
  33309. weight: math.unit(120, "lb"),
  33310. name: "Front",
  33311. image: {
  33312. source: "./media/characters/timber/front.svg",
  33313. extra: 2814/2705,
  33314. bottom: 181/2995
  33315. }
  33316. },
  33317. },
  33318. [
  33319. {
  33320. name: "Normal",
  33321. height: math.unit(5 + 2/12, "feet"),
  33322. default: true
  33323. },
  33324. ]
  33325. ))
  33326. characterMakers.push(() => makeCharacter(
  33327. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  33328. {
  33329. front: {
  33330. height: math.unit(9, "feet"),
  33331. name: "Front",
  33332. image: {
  33333. source: "./media/characters/nicki/front.svg",
  33334. extra: 1240/990,
  33335. bottom: 45/1285
  33336. },
  33337. form: "anthro",
  33338. default: true
  33339. },
  33340. side: {
  33341. height: math.unit(9, "feet"),
  33342. name: "Side",
  33343. image: {
  33344. source: "./media/characters/nicki/side.svg",
  33345. extra: 1047/973,
  33346. bottom: 61/1108
  33347. },
  33348. form: "anthro"
  33349. },
  33350. back: {
  33351. height: math.unit(9, "feet"),
  33352. name: "Back",
  33353. image: {
  33354. source: "./media/characters/nicki/back.svg",
  33355. extra: 1006/965,
  33356. bottom: 39/1045
  33357. },
  33358. form: "anthro"
  33359. },
  33360. taur: {
  33361. height: math.unit(15, "feet"),
  33362. name: "Taur",
  33363. image: {
  33364. source: "./media/characters/nicki/taur.svg",
  33365. extra: 1592/1347,
  33366. bottom: 0/1592
  33367. },
  33368. form: "taur",
  33369. default: true
  33370. },
  33371. },
  33372. [
  33373. {
  33374. name: "Normal",
  33375. height: math.unit(9, "feet"),
  33376. form: "anthro",
  33377. default: true
  33378. },
  33379. {
  33380. name: "Normal",
  33381. height: math.unit(15, "feet"),
  33382. form: "taur",
  33383. default: true
  33384. }
  33385. ],
  33386. {
  33387. "anthro": {
  33388. name: "Anthro",
  33389. default: true
  33390. },
  33391. "taur": {
  33392. name: "Taur"
  33393. }
  33394. }
  33395. ))
  33396. characterMakers.push(() => makeCharacter(
  33397. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  33398. {
  33399. front: {
  33400. height: math.unit(7 + 10/12, "feet"),
  33401. weight: math.unit(3.5, "tons"),
  33402. name: "Front",
  33403. image: {
  33404. source: "./media/characters/lee/front.svg",
  33405. extra: 1773/1615,
  33406. bottom: 86/1859
  33407. }
  33408. },
  33409. hand: {
  33410. height: math.unit(1.78, "feet"),
  33411. name: "Hand",
  33412. image: {
  33413. source: "./media/characters/lee/hand.svg"
  33414. }
  33415. },
  33416. maw: {
  33417. height: math.unit(1.18, "feet"),
  33418. name: "Maw",
  33419. image: {
  33420. source: "./media/characters/lee/maw.svg"
  33421. }
  33422. },
  33423. },
  33424. [
  33425. {
  33426. name: "Normal",
  33427. height: math.unit(7 + 10/12, "feet"),
  33428. default: true
  33429. },
  33430. ]
  33431. ))
  33432. characterMakers.push(() => makeCharacter(
  33433. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  33434. {
  33435. front: {
  33436. height: math.unit(9, "feet"),
  33437. name: "Front",
  33438. image: {
  33439. source: "./media/characters/guti/front.svg",
  33440. extra: 4551/4355,
  33441. bottom: 123/4674
  33442. }
  33443. },
  33444. tongue: {
  33445. height: math.unit(1, "feet"),
  33446. name: "Tongue",
  33447. image: {
  33448. source: "./media/characters/guti/tongue.svg"
  33449. }
  33450. },
  33451. paw: {
  33452. height: math.unit(1.18, "feet"),
  33453. name: "Paw",
  33454. image: {
  33455. source: "./media/characters/guti/paw.svg"
  33456. }
  33457. },
  33458. },
  33459. [
  33460. {
  33461. name: "Normal",
  33462. height: math.unit(9, "feet"),
  33463. default: true
  33464. },
  33465. ]
  33466. ))
  33467. characterMakers.push(() => makeCharacter(
  33468. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  33469. {
  33470. side: {
  33471. height: math.unit(5, "meters"),
  33472. name: "Side",
  33473. image: {
  33474. source: "./media/characters/vesper/side.svg",
  33475. extra: 1605/1518,
  33476. bottom: 0/1605
  33477. }
  33478. },
  33479. },
  33480. [
  33481. {
  33482. name: "Small",
  33483. height: math.unit(5, "meters")
  33484. },
  33485. {
  33486. name: "Sage",
  33487. height: math.unit(100, "meters"),
  33488. default: true
  33489. },
  33490. {
  33491. name: "Fun Size",
  33492. height: math.unit(600, "meters")
  33493. },
  33494. {
  33495. name: "Goddess",
  33496. height: math.unit(20000, "km")
  33497. },
  33498. {
  33499. name: "Maximum",
  33500. height: math.unit(5, "galaxies")
  33501. },
  33502. ]
  33503. ))
  33504. characterMakers.push(() => makeCharacter(
  33505. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  33506. {
  33507. front: {
  33508. height: math.unit(6 + 3/12, "feet"),
  33509. weight: math.unit(190, "lb"),
  33510. name: "Front",
  33511. image: {
  33512. source: "./media/characters/gawain/front.svg",
  33513. extra: 2222/2139,
  33514. bottom: 90/2312
  33515. }
  33516. },
  33517. back: {
  33518. height: math.unit(6 + 3/12, "feet"),
  33519. weight: math.unit(190, "lb"),
  33520. name: "Back",
  33521. image: {
  33522. source: "./media/characters/gawain/back.svg",
  33523. extra: 2199/2111,
  33524. bottom: 73/2272
  33525. }
  33526. },
  33527. },
  33528. [
  33529. {
  33530. name: "Normal",
  33531. height: math.unit(6 + 3/12, "feet"),
  33532. default: true
  33533. },
  33534. ]
  33535. ))
  33536. characterMakers.push(() => makeCharacter(
  33537. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  33538. {
  33539. side: {
  33540. height: math.unit(3.5, "meters"),
  33541. weight: math.unit(16000, "lb"),
  33542. name: "Side",
  33543. image: {
  33544. source: "./media/characters/dascalti/side.svg",
  33545. extra: 392/273,
  33546. bottom: 47/439
  33547. }
  33548. },
  33549. breath: {
  33550. height: math.unit(7.4, "feet"),
  33551. name: "Breath",
  33552. image: {
  33553. source: "./media/characters/dascalti/breath.svg"
  33554. }
  33555. },
  33556. fed: {
  33557. height: math.unit(3.6, "meters"),
  33558. weight: math.unit(16000, "lb"),
  33559. name: "Fed",
  33560. image: {
  33561. source: "./media/characters/dascalti/fed.svg",
  33562. extra: 1419/820,
  33563. bottom: 95/1514
  33564. }
  33565. },
  33566. },
  33567. [
  33568. {
  33569. name: "Normal",
  33570. height: math.unit(3.5, "meters"),
  33571. default: true
  33572. },
  33573. ]
  33574. ))
  33575. characterMakers.push(() => makeCharacter(
  33576. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  33577. {
  33578. front: {
  33579. height: math.unit(3 + 5/12, "feet"),
  33580. name: "Front",
  33581. image: {
  33582. source: "./media/characters/mauve/front.svg",
  33583. extra: 1126/1033,
  33584. bottom: 65/1191
  33585. }
  33586. },
  33587. side: {
  33588. height: math.unit(3 + 5/12, "feet"),
  33589. name: "Side",
  33590. image: {
  33591. source: "./media/characters/mauve/side.svg",
  33592. extra: 1089/1001,
  33593. bottom: 29/1118
  33594. }
  33595. },
  33596. back: {
  33597. height: math.unit(3 + 5/12, "feet"),
  33598. name: "Back",
  33599. image: {
  33600. source: "./media/characters/mauve/back.svg",
  33601. extra: 1173/1053,
  33602. bottom: 109/1282
  33603. }
  33604. },
  33605. },
  33606. [
  33607. {
  33608. name: "Normal",
  33609. height: math.unit(3 + 5/12, "feet"),
  33610. default: true
  33611. },
  33612. ]
  33613. ))
  33614. characterMakers.push(() => makeCharacter(
  33615. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  33616. {
  33617. front: {
  33618. height: math.unit(6 + 3/12, "feet"),
  33619. weight: math.unit(430, "lb"),
  33620. name: "Front",
  33621. image: {
  33622. source: "./media/characters/carlos/front.svg",
  33623. extra: 1964/1913,
  33624. bottom: 70/2034
  33625. }
  33626. },
  33627. },
  33628. [
  33629. {
  33630. name: "Normal",
  33631. height: math.unit(6 + 3/12, "feet"),
  33632. default: true
  33633. },
  33634. ]
  33635. ))
  33636. characterMakers.push(() => makeCharacter(
  33637. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  33638. {
  33639. back: {
  33640. height: math.unit(5 + 10/12, "feet"),
  33641. weight: math.unit(200, "lb"),
  33642. name: "Back",
  33643. image: {
  33644. source: "./media/characters/jax/back.svg",
  33645. extra: 764/739,
  33646. bottom: 25/789
  33647. }
  33648. },
  33649. },
  33650. [
  33651. {
  33652. name: "Normal",
  33653. height: math.unit(5 + 10/12, "feet"),
  33654. default: true
  33655. },
  33656. ]
  33657. ))
  33658. characterMakers.push(() => makeCharacter(
  33659. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  33660. {
  33661. front: {
  33662. height: math.unit(8, "feet"),
  33663. weight: math.unit(250, "lb"),
  33664. name: "Front",
  33665. image: {
  33666. source: "./media/characters/eikthynir/front.svg",
  33667. extra: 1332/1166,
  33668. bottom: 82/1414
  33669. }
  33670. },
  33671. back: {
  33672. height: math.unit(8, "feet"),
  33673. weight: math.unit(250, "lb"),
  33674. name: "Back",
  33675. image: {
  33676. source: "./media/characters/eikthynir/back.svg",
  33677. extra: 1342/1190,
  33678. bottom: 19/1361
  33679. }
  33680. },
  33681. dick: {
  33682. height: math.unit(2.35, "feet"),
  33683. name: "Dick",
  33684. image: {
  33685. source: "./media/characters/eikthynir/dick.svg"
  33686. }
  33687. },
  33688. },
  33689. [
  33690. {
  33691. name: "Normal",
  33692. height: math.unit(8, "feet"),
  33693. default: true
  33694. },
  33695. ]
  33696. ))
  33697. characterMakers.push(() => makeCharacter(
  33698. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  33699. {
  33700. front: {
  33701. height: math.unit(99, "meters"),
  33702. weight: math.unit(13000, "tons"),
  33703. name: "Front",
  33704. image: {
  33705. source: "./media/characters/zlmos/front.svg",
  33706. extra: 2202/1992,
  33707. bottom: 315/2517
  33708. }
  33709. },
  33710. },
  33711. [
  33712. {
  33713. name: "Macro",
  33714. height: math.unit(99, "meters"),
  33715. default: true
  33716. },
  33717. ]
  33718. ))
  33719. characterMakers.push(() => makeCharacter(
  33720. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  33721. {
  33722. front: {
  33723. height: math.unit(6 + 5/12, "feet"),
  33724. name: "Front",
  33725. image: {
  33726. source: "./media/characters/purri/front.svg",
  33727. extra: 1698/1610,
  33728. bottom: 32/1730
  33729. }
  33730. },
  33731. frontAlt: {
  33732. height: math.unit(6 + 5/12, "feet"),
  33733. name: "Front (Alt)",
  33734. image: {
  33735. source: "./media/characters/purri/front-alt.svg",
  33736. extra: 450/420,
  33737. bottom: 26/476
  33738. }
  33739. },
  33740. boots: {
  33741. height: math.unit(5.5, "feet"),
  33742. name: "Boots",
  33743. image: {
  33744. source: "./media/characters/purri/boots.svg",
  33745. extra: 905/853,
  33746. bottom: 18/923
  33747. }
  33748. },
  33749. lying: {
  33750. height: math.unit(2, "feet"),
  33751. name: "Lying",
  33752. image: {
  33753. source: "./media/characters/purri/lying.svg",
  33754. extra: 940/843,
  33755. bottom: 146/1086
  33756. }
  33757. },
  33758. devious: {
  33759. height: math.unit(1.77, "feet"),
  33760. name: "Devious",
  33761. image: {
  33762. source: "./media/characters/purri/devious.svg",
  33763. extra: 1440/1155,
  33764. bottom: 147/1587
  33765. }
  33766. },
  33767. bean: {
  33768. height: math.unit(1.94, "feet"),
  33769. name: "Bean",
  33770. image: {
  33771. source: "./media/characters/purri/bean.svg"
  33772. }
  33773. },
  33774. },
  33775. [
  33776. {
  33777. name: "Micro",
  33778. height: math.unit(1, "mm")
  33779. },
  33780. {
  33781. name: "Normal",
  33782. height: math.unit(6 + 5/12, "feet"),
  33783. default: true
  33784. },
  33785. {
  33786. name: "Macro :3c",
  33787. height: math.unit(2, "miles")
  33788. },
  33789. ]
  33790. ))
  33791. characterMakers.push(() => makeCharacter(
  33792. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  33793. {
  33794. front: {
  33795. height: math.unit(6 + 2/12, "feet"),
  33796. weight: math.unit(250, "lb"),
  33797. name: "Front",
  33798. image: {
  33799. source: "./media/characters/moonlight/front.svg",
  33800. extra: 1044/908,
  33801. bottom: 56/1100
  33802. }
  33803. },
  33804. feral: {
  33805. height: math.unit(3 + 1/12, "feet"),
  33806. weight: math.unit(50, "kg"),
  33807. name: "Feral",
  33808. image: {
  33809. source: "./media/characters/moonlight/feral.svg",
  33810. extra: 3705/2791,
  33811. bottom: 145/3850
  33812. }
  33813. },
  33814. paw: {
  33815. height: math.unit(1, "feet"),
  33816. name: "Paw",
  33817. image: {
  33818. source: "./media/characters/moonlight/paw.svg"
  33819. }
  33820. },
  33821. paws: {
  33822. height: math.unit(0.98, "feet"),
  33823. name: "Paws",
  33824. image: {
  33825. source: "./media/characters/moonlight/paws.svg",
  33826. extra: 939/939,
  33827. bottom: 50/989
  33828. }
  33829. },
  33830. mouth: {
  33831. height: math.unit(0.48, "feet"),
  33832. name: "Mouth",
  33833. image: {
  33834. source: "./media/characters/moonlight/mouth.svg"
  33835. }
  33836. },
  33837. dick: {
  33838. height: math.unit(1.46, "feet"),
  33839. name: "Dick",
  33840. image: {
  33841. source: "./media/characters/moonlight/dick.svg"
  33842. }
  33843. },
  33844. },
  33845. [
  33846. {
  33847. name: "Normal",
  33848. height: math.unit(6 + 2/12, "feet"),
  33849. default: true
  33850. },
  33851. {
  33852. name: "Macro",
  33853. height: math.unit(300, "feet")
  33854. },
  33855. {
  33856. name: "Macro+",
  33857. height: math.unit(1, "mile")
  33858. },
  33859. {
  33860. name: "Mt. Moon",
  33861. height: math.unit(5, "miles")
  33862. },
  33863. {
  33864. name: "Megamacro",
  33865. height: math.unit(15, "miles")
  33866. },
  33867. ]
  33868. ))
  33869. characterMakers.push(() => makeCharacter(
  33870. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  33871. {
  33872. back: {
  33873. height: math.unit(6, "feet"),
  33874. weight: math.unit(150, "lb"),
  33875. name: "Back",
  33876. image: {
  33877. source: "./media/characters/sylen/back.svg",
  33878. extra: 1335/1273,
  33879. bottom: 107/1442
  33880. }
  33881. },
  33882. },
  33883. [
  33884. {
  33885. name: "Normal",
  33886. height: math.unit(5 + 5/12, "feet")
  33887. },
  33888. {
  33889. name: "Megamacro",
  33890. height: math.unit(3, "miles"),
  33891. default: true
  33892. },
  33893. ]
  33894. ))
  33895. characterMakers.push(() => makeCharacter(
  33896. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  33897. {
  33898. front: {
  33899. height: math.unit(6, "feet"),
  33900. weight: math.unit(190, "lb"),
  33901. name: "Front",
  33902. image: {
  33903. source: "./media/characters/huttser/front.svg",
  33904. extra: 1152/1058,
  33905. bottom: 23/1175
  33906. }
  33907. },
  33908. side: {
  33909. height: math.unit(6, "feet"),
  33910. weight: math.unit(190, "lb"),
  33911. name: "Side",
  33912. image: {
  33913. source: "./media/characters/huttser/side.svg",
  33914. extra: 1174/1065,
  33915. bottom: 18/1192
  33916. }
  33917. },
  33918. back: {
  33919. height: math.unit(6, "feet"),
  33920. weight: math.unit(190, "lb"),
  33921. name: "Back",
  33922. image: {
  33923. source: "./media/characters/huttser/back.svg",
  33924. extra: 1158/1056,
  33925. bottom: 12/1170
  33926. }
  33927. },
  33928. },
  33929. [
  33930. ]
  33931. ))
  33932. characterMakers.push(() => makeCharacter(
  33933. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  33934. {
  33935. side: {
  33936. height: math.unit(12 + 9/12, "feet"),
  33937. weight: math.unit(15000, "lb"),
  33938. name: "Side",
  33939. image: {
  33940. source: "./media/characters/faan/side.svg",
  33941. extra: 2747/2697,
  33942. bottom: 0/2747
  33943. }
  33944. },
  33945. front: {
  33946. height: math.unit(12 + 9/12, "feet"),
  33947. weight: math.unit(15000, "lb"),
  33948. name: "Front",
  33949. image: {
  33950. source: "./media/characters/faan/front.svg",
  33951. extra: 607/571,
  33952. bottom: 24/631
  33953. }
  33954. },
  33955. head: {
  33956. height: math.unit(2.85, "feet"),
  33957. name: "Head",
  33958. image: {
  33959. source: "./media/characters/faan/head.svg"
  33960. }
  33961. },
  33962. headAlt: {
  33963. height: math.unit(3.13, "feet"),
  33964. name: "Head-alt",
  33965. image: {
  33966. source: "./media/characters/faan/head-alt.svg"
  33967. }
  33968. },
  33969. },
  33970. [
  33971. {
  33972. name: "Normal",
  33973. height: math.unit(12 + 9/12, "feet"),
  33974. default: true
  33975. },
  33976. ]
  33977. ))
  33978. characterMakers.push(() => makeCharacter(
  33979. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  33980. {
  33981. front: {
  33982. height: math.unit(6, "feet"),
  33983. weight: math.unit(300, "lb"),
  33984. name: "Front",
  33985. image: {
  33986. source: "./media/characters/tanio/front.svg",
  33987. extra: 711/673,
  33988. bottom: 25/736
  33989. }
  33990. },
  33991. },
  33992. [
  33993. {
  33994. name: "Normal",
  33995. height: math.unit(6, "feet"),
  33996. default: true
  33997. },
  33998. ]
  33999. ))
  34000. characterMakers.push(() => makeCharacter(
  34001. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  34002. {
  34003. front: {
  34004. height: math.unit(3, "inches"),
  34005. name: "Front",
  34006. image: {
  34007. source: "./media/characters/noboru/front.svg",
  34008. extra: 1039/932,
  34009. bottom: 18/1057
  34010. }
  34011. },
  34012. },
  34013. [
  34014. {
  34015. name: "Micro",
  34016. height: math.unit(3, "inches"),
  34017. default: true
  34018. },
  34019. ]
  34020. ))
  34021. characterMakers.push(() => makeCharacter(
  34022. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  34023. {
  34024. front: {
  34025. height: math.unit(1.85, "meters"),
  34026. weight: math.unit(80, "kg"),
  34027. name: "Front",
  34028. image: {
  34029. source: "./media/characters/daniel-barrett/front.svg",
  34030. extra: 355/337,
  34031. bottom: 9/364
  34032. }
  34033. },
  34034. },
  34035. [
  34036. {
  34037. name: "Pico",
  34038. height: math.unit(0.0433, "mm")
  34039. },
  34040. {
  34041. name: "Nano",
  34042. height: math.unit(1.5, "mm")
  34043. },
  34044. {
  34045. name: "Micro",
  34046. height: math.unit(5.3, "cm"),
  34047. default: true
  34048. },
  34049. {
  34050. name: "Normal",
  34051. height: math.unit(1.85, "meters")
  34052. },
  34053. {
  34054. name: "Macro",
  34055. height: math.unit(64.7, "meters")
  34056. },
  34057. {
  34058. name: "Megamacro",
  34059. height: math.unit(2.26, "km")
  34060. },
  34061. {
  34062. name: "Gigamacro",
  34063. height: math.unit(79, "km")
  34064. },
  34065. {
  34066. name: "Teramacro",
  34067. height: math.unit(2765, "km")
  34068. },
  34069. {
  34070. name: "Petamacro",
  34071. height: math.unit(96678, "km")
  34072. },
  34073. ]
  34074. ))
  34075. characterMakers.push(() => makeCharacter(
  34076. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  34077. {
  34078. front: {
  34079. height: math.unit(30, "meters"),
  34080. weight: math.unit(400, "tons"),
  34081. name: "Front",
  34082. image: {
  34083. source: "./media/characters/zeel/front.svg",
  34084. extra: 2599/2599,
  34085. bottom: 226/2825
  34086. }
  34087. },
  34088. },
  34089. [
  34090. {
  34091. name: "Macro",
  34092. height: math.unit(30, "meters"),
  34093. default: true
  34094. },
  34095. ]
  34096. ))
  34097. characterMakers.push(() => makeCharacter(
  34098. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  34099. {
  34100. front: {
  34101. height: math.unit(6 + 7/12, "feet"),
  34102. weight: math.unit(210, "lb"),
  34103. name: "Front",
  34104. image: {
  34105. source: "./media/characters/tarn/front.svg",
  34106. extra: 3517/3220,
  34107. bottom: 91/3608
  34108. }
  34109. },
  34110. back: {
  34111. height: math.unit(6 + 7/12, "feet"),
  34112. weight: math.unit(210, "lb"),
  34113. name: "Back",
  34114. image: {
  34115. source: "./media/characters/tarn/back.svg",
  34116. extra: 3566/3241,
  34117. bottom: 34/3600
  34118. }
  34119. },
  34120. dick: {
  34121. height: math.unit(1.65, "feet"),
  34122. name: "Dick",
  34123. image: {
  34124. source: "./media/characters/tarn/dick.svg"
  34125. }
  34126. },
  34127. paw: {
  34128. height: math.unit(1.80, "feet"),
  34129. name: "Paw",
  34130. image: {
  34131. source: "./media/characters/tarn/paw.svg"
  34132. }
  34133. },
  34134. tongue: {
  34135. height: math.unit(0.97, "feet"),
  34136. name: "Tongue",
  34137. image: {
  34138. source: "./media/characters/tarn/tongue.svg"
  34139. }
  34140. },
  34141. },
  34142. [
  34143. {
  34144. name: "Micro",
  34145. height: math.unit(4, "inches")
  34146. },
  34147. {
  34148. name: "Normal",
  34149. height: math.unit(6 + 7/12, "feet"),
  34150. default: true
  34151. },
  34152. {
  34153. name: "Macro",
  34154. height: math.unit(300, "feet")
  34155. },
  34156. ]
  34157. ))
  34158. characterMakers.push(() => makeCharacter(
  34159. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  34160. {
  34161. front: {
  34162. height: math.unit(5 + 7/12, "feet"),
  34163. weight: math.unit(80, "kg"),
  34164. name: "Front",
  34165. image: {
  34166. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  34167. extra: 3023/2865,
  34168. bottom: 33/3056
  34169. }
  34170. },
  34171. back: {
  34172. height: math.unit(5 + 7/12, "feet"),
  34173. weight: math.unit(80, "kg"),
  34174. name: "Back",
  34175. image: {
  34176. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  34177. extra: 3020/2886,
  34178. bottom: 30/3050
  34179. }
  34180. },
  34181. dick: {
  34182. height: math.unit(0.98, "feet"),
  34183. name: "Dick",
  34184. image: {
  34185. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  34186. }
  34187. },
  34188. anatomy: {
  34189. height: math.unit(2.86, "feet"),
  34190. name: "Anatomy",
  34191. image: {
  34192. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  34193. }
  34194. },
  34195. },
  34196. [
  34197. {
  34198. name: "Really Small",
  34199. height: math.unit(2, "inches")
  34200. },
  34201. {
  34202. name: "Micro",
  34203. height: math.unit(5.583, "inches")
  34204. },
  34205. {
  34206. name: "Normal",
  34207. height: math.unit(5 + 7/12, "feet"),
  34208. default: true
  34209. },
  34210. {
  34211. name: "Macro",
  34212. height: math.unit(67, "feet")
  34213. },
  34214. {
  34215. name: "Megamacro",
  34216. height: math.unit(134, "feet")
  34217. },
  34218. ]
  34219. ))
  34220. characterMakers.push(() => makeCharacter(
  34221. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  34222. {
  34223. front: {
  34224. height: math.unit(9, "feet"),
  34225. weight: math.unit(120, "lb"),
  34226. name: "Front",
  34227. image: {
  34228. source: "./media/characters/sally/front.svg",
  34229. extra: 1506/1349,
  34230. bottom: 66/1572
  34231. }
  34232. },
  34233. },
  34234. [
  34235. {
  34236. name: "Normal",
  34237. height: math.unit(9, "feet"),
  34238. default: true
  34239. },
  34240. ]
  34241. ))
  34242. characterMakers.push(() => makeCharacter(
  34243. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  34244. {
  34245. front: {
  34246. height: math.unit(8, "feet"),
  34247. weight: math.unit(900, "lb"),
  34248. name: "Front",
  34249. image: {
  34250. source: "./media/characters/owen/front.svg",
  34251. extra: 1761/1657,
  34252. bottom: 74/1835
  34253. }
  34254. },
  34255. side: {
  34256. height: math.unit(8, "feet"),
  34257. weight: math.unit(900, "lb"),
  34258. name: "Side",
  34259. image: {
  34260. source: "./media/characters/owen/side.svg",
  34261. extra: 1797/1734,
  34262. bottom: 30/1827
  34263. }
  34264. },
  34265. back: {
  34266. height: math.unit(8, "feet"),
  34267. weight: math.unit(900, "lb"),
  34268. name: "Back",
  34269. image: {
  34270. source: "./media/characters/owen/back.svg",
  34271. extra: 1796/1706,
  34272. bottom: 59/1855
  34273. }
  34274. },
  34275. maw: {
  34276. height: math.unit(1.76, "feet"),
  34277. name: "Maw",
  34278. image: {
  34279. source: "./media/characters/owen/maw.svg"
  34280. }
  34281. },
  34282. },
  34283. [
  34284. {
  34285. name: "Normal",
  34286. height: math.unit(8, "feet"),
  34287. default: true
  34288. },
  34289. ]
  34290. ))
  34291. characterMakers.push(() => makeCharacter(
  34292. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  34293. {
  34294. front: {
  34295. height: math.unit(4, "feet"),
  34296. weight: math.unit(400, "lb"),
  34297. name: "Front",
  34298. image: {
  34299. source: "./media/characters/ryth/front.svg",
  34300. extra: 1920/1748,
  34301. bottom: 42/1962
  34302. }
  34303. },
  34304. back: {
  34305. height: math.unit(4, "feet"),
  34306. weight: math.unit(400, "lb"),
  34307. name: "Back",
  34308. image: {
  34309. source: "./media/characters/ryth/back.svg",
  34310. extra: 1897/1690,
  34311. bottom: 89/1986
  34312. }
  34313. },
  34314. mouth: {
  34315. height: math.unit(1.39, "feet"),
  34316. name: "Mouth",
  34317. image: {
  34318. source: "./media/characters/ryth/mouth.svg"
  34319. }
  34320. },
  34321. tailmaw: {
  34322. height: math.unit(1.23, "feet"),
  34323. name: "Tailmaw",
  34324. image: {
  34325. source: "./media/characters/ryth/tailmaw.svg"
  34326. }
  34327. },
  34328. goia: {
  34329. height: math.unit(4, "meters"),
  34330. weight: math.unit(10800, "lb"),
  34331. name: "Goia",
  34332. image: {
  34333. source: "./media/characters/ryth/goia.svg",
  34334. extra: 745/640,
  34335. bottom: 107/852
  34336. }
  34337. },
  34338. goiaFront: {
  34339. height: math.unit(4, "meters"),
  34340. weight: math.unit(10800, "lb"),
  34341. name: "Goia (Front)",
  34342. image: {
  34343. source: "./media/characters/ryth/goia-front.svg",
  34344. extra: 750/586,
  34345. bottom: 114/864
  34346. }
  34347. },
  34348. goiaMaw: {
  34349. height: math.unit(5.55, "feet"),
  34350. name: "Goia Maw",
  34351. image: {
  34352. source: "./media/characters/ryth/goia-maw.svg"
  34353. }
  34354. },
  34355. goiaForepaw: {
  34356. height: math.unit(3.5, "feet"),
  34357. name: "Goia Forepaw",
  34358. image: {
  34359. source: "./media/characters/ryth/goia-forepaw.svg"
  34360. }
  34361. },
  34362. goiaHindpaw: {
  34363. height: math.unit(5.55, "feet"),
  34364. name: "Goia Hindpaw",
  34365. image: {
  34366. source: "./media/characters/ryth/goia-hindpaw.svg"
  34367. }
  34368. },
  34369. },
  34370. [
  34371. {
  34372. name: "Normal",
  34373. height: math.unit(4, "feet"),
  34374. default: true
  34375. },
  34376. ]
  34377. ))
  34378. characterMakers.push(() => makeCharacter(
  34379. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  34380. {
  34381. front: {
  34382. height: math.unit(7, "feet"),
  34383. weight: math.unit(180, "lb"),
  34384. name: "Front",
  34385. image: {
  34386. source: "./media/characters/necrolance/front.svg",
  34387. extra: 1062/947,
  34388. bottom: 41/1103
  34389. }
  34390. },
  34391. back: {
  34392. height: math.unit(7, "feet"),
  34393. weight: math.unit(180, "lb"),
  34394. name: "Back",
  34395. image: {
  34396. source: "./media/characters/necrolance/back.svg",
  34397. extra: 1045/984,
  34398. bottom: 14/1059
  34399. }
  34400. },
  34401. wing: {
  34402. height: math.unit(2.67, "feet"),
  34403. name: "Wing",
  34404. image: {
  34405. source: "./media/characters/necrolance/wing.svg"
  34406. }
  34407. },
  34408. },
  34409. [
  34410. {
  34411. name: "Normal",
  34412. height: math.unit(7, "feet"),
  34413. default: true
  34414. },
  34415. ]
  34416. ))
  34417. characterMakers.push(() => makeCharacter(
  34418. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  34419. {
  34420. front: {
  34421. height: math.unit(76, "meters"),
  34422. weight: math.unit(30000, "tons"),
  34423. name: "Front",
  34424. image: {
  34425. source: "./media/characters/tyler/front.svg",
  34426. extra: 1640/1640,
  34427. bottom: 114/1754
  34428. }
  34429. },
  34430. },
  34431. [
  34432. {
  34433. name: "Macro",
  34434. height: math.unit(76, "meters"),
  34435. default: true
  34436. },
  34437. ]
  34438. ))
  34439. characterMakers.push(() => makeCharacter(
  34440. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  34441. {
  34442. front: {
  34443. height: math.unit(4 + 11/12, "feet"),
  34444. weight: math.unit(132, "lb"),
  34445. name: "Front",
  34446. image: {
  34447. source: "./media/characters/icey/front.svg",
  34448. extra: 2750/2550,
  34449. bottom: 33/2783
  34450. }
  34451. },
  34452. back: {
  34453. height: math.unit(4 + 11/12, "feet"),
  34454. weight: math.unit(132, "lb"),
  34455. name: "Back",
  34456. image: {
  34457. source: "./media/characters/icey/back.svg",
  34458. extra: 2624/2481,
  34459. bottom: 35/2659
  34460. }
  34461. },
  34462. },
  34463. [
  34464. {
  34465. name: "Normal",
  34466. height: math.unit(4 + 11/12, "feet"),
  34467. default: true
  34468. },
  34469. ]
  34470. ))
  34471. characterMakers.push(() => makeCharacter(
  34472. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  34473. {
  34474. front: {
  34475. height: math.unit(100, "feet"),
  34476. weight: math.unit(0, "lb"),
  34477. name: "Front",
  34478. image: {
  34479. source: "./media/characters/smile/front.svg",
  34480. extra: 2983/2912,
  34481. bottom: 162/3145
  34482. }
  34483. },
  34484. back: {
  34485. height: math.unit(100, "feet"),
  34486. weight: math.unit(0, "lb"),
  34487. name: "Back",
  34488. image: {
  34489. source: "./media/characters/smile/back.svg",
  34490. extra: 3143/3031,
  34491. bottom: 91/3234
  34492. }
  34493. },
  34494. head: {
  34495. height: math.unit(26.3, "feet"),
  34496. weight: math.unit(0, "lb"),
  34497. name: "Head",
  34498. image: {
  34499. source: "./media/characters/smile/head.svg"
  34500. }
  34501. },
  34502. collar: {
  34503. height: math.unit(5.3, "feet"),
  34504. weight: math.unit(0, "lb"),
  34505. name: "Collar",
  34506. image: {
  34507. source: "./media/characters/smile/collar.svg"
  34508. }
  34509. },
  34510. },
  34511. [
  34512. {
  34513. name: "Macro",
  34514. height: math.unit(100, "feet"),
  34515. default: true
  34516. },
  34517. ]
  34518. ))
  34519. characterMakers.push(() => makeCharacter(
  34520. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  34521. {
  34522. dragon: {
  34523. height: math.unit(26, "feet"),
  34524. weight: math.unit(36, "tons"),
  34525. name: "Dragon",
  34526. image: {
  34527. source: "./media/characters/arimphae/dragon.svg",
  34528. extra: 1574/983,
  34529. bottom: 357/1931
  34530. }
  34531. },
  34532. drake: {
  34533. height: math.unit(9, "feet"),
  34534. weight: math.unit(1.5, "tons"),
  34535. name: "Drake",
  34536. image: {
  34537. source: "./media/characters/arimphae/drake.svg",
  34538. extra: 1120/925,
  34539. bottom: 435/1555
  34540. }
  34541. },
  34542. },
  34543. [
  34544. {
  34545. name: "Small",
  34546. height: math.unit(26*5/9, "feet")
  34547. },
  34548. {
  34549. name: "Normal",
  34550. height: math.unit(26, "feet"),
  34551. default: true
  34552. },
  34553. ]
  34554. ))
  34555. characterMakers.push(() => makeCharacter(
  34556. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  34557. {
  34558. front: {
  34559. height: math.unit(8 + 9/12, "feet"),
  34560. name: "Front",
  34561. image: {
  34562. source: "./media/characters/xander/front.svg",
  34563. extra: 1237/974,
  34564. bottom: 94/1331
  34565. }
  34566. },
  34567. },
  34568. [
  34569. {
  34570. name: "Normal",
  34571. height: math.unit(8 + 9/12, "feet"),
  34572. default: true
  34573. },
  34574. {
  34575. name: "Gaze Grabber",
  34576. height: math.unit(13 + 8/12, "feet")
  34577. },
  34578. {
  34579. name: "Jaw Dropper",
  34580. height: math.unit(27, "feet")
  34581. },
  34582. {
  34583. name: "Show Stopper",
  34584. height: math.unit(136, "feet")
  34585. },
  34586. {
  34587. name: "Superstar",
  34588. height: math.unit(1.9e6, "miles")
  34589. },
  34590. ]
  34591. ))
  34592. characterMakers.push(() => makeCharacter(
  34593. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  34594. {
  34595. side: {
  34596. height: math.unit(2100, "feet"),
  34597. name: "Side",
  34598. image: {
  34599. source: "./media/characters/osiris/side.svg",
  34600. extra: 1105/939,
  34601. bottom: 167/1272
  34602. }
  34603. },
  34604. },
  34605. [
  34606. {
  34607. name: "Macro",
  34608. height: math.unit(2100, "feet"),
  34609. default: true
  34610. },
  34611. ]
  34612. ))
  34613. characterMakers.push(() => makeCharacter(
  34614. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  34615. {
  34616. front: {
  34617. height: math.unit(6 + 8/12, "feet"),
  34618. weight: math.unit(225, "lb"),
  34619. name: "Front",
  34620. image: {
  34621. source: "./media/characters/rhys-londe/front.svg",
  34622. extra: 2258/2141,
  34623. bottom: 188/2446
  34624. }
  34625. },
  34626. back: {
  34627. height: math.unit(6 + 8/12, "feet"),
  34628. weight: math.unit(225, "lb"),
  34629. name: "Back",
  34630. image: {
  34631. source: "./media/characters/rhys-londe/back.svg",
  34632. extra: 2237/2137,
  34633. bottom: 63/2300
  34634. }
  34635. },
  34636. frontNsfw: {
  34637. height: math.unit(6 + 8/12, "feet"),
  34638. weight: math.unit(225, "lb"),
  34639. name: "Front (NSFW)",
  34640. image: {
  34641. source: "./media/characters/rhys-londe/front-nsfw.svg",
  34642. extra: 2258/2141,
  34643. bottom: 188/2446
  34644. }
  34645. },
  34646. backNsfw: {
  34647. height: math.unit(6 + 8/12, "feet"),
  34648. weight: math.unit(225, "lb"),
  34649. name: "Back (NSFW)",
  34650. image: {
  34651. source: "./media/characters/rhys-londe/back-nsfw.svg",
  34652. extra: 2237/2137,
  34653. bottom: 63/2300
  34654. }
  34655. },
  34656. dick: {
  34657. height: math.unit(30, "inches"),
  34658. name: "Dick",
  34659. image: {
  34660. source: "./media/characters/rhys-londe/dick.svg"
  34661. }
  34662. },
  34663. maw: {
  34664. height: math.unit(1.6, "feet"),
  34665. name: "Maw",
  34666. image: {
  34667. source: "./media/characters/rhys-londe/maw.svg"
  34668. }
  34669. },
  34670. },
  34671. [
  34672. {
  34673. name: "Normal",
  34674. height: math.unit(6 + 8/12, "feet"),
  34675. default: true
  34676. },
  34677. ]
  34678. ))
  34679. characterMakers.push(() => makeCharacter(
  34680. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  34681. {
  34682. front: {
  34683. height: math.unit(3 + 10/12, "feet"),
  34684. weight: math.unit(90, "lb"),
  34685. name: "Front",
  34686. image: {
  34687. source: "./media/characters/taivas-ensim/front.svg",
  34688. extra: 1327/1216,
  34689. bottom: 96/1423
  34690. }
  34691. },
  34692. back: {
  34693. height: math.unit(3 + 10/12, "feet"),
  34694. weight: math.unit(90, "lb"),
  34695. name: "Back",
  34696. image: {
  34697. source: "./media/characters/taivas-ensim/back.svg",
  34698. extra: 1355/1247,
  34699. bottom: 11/1366
  34700. }
  34701. },
  34702. frontNsfw: {
  34703. height: math.unit(3 + 10/12, "feet"),
  34704. weight: math.unit(90, "lb"),
  34705. name: "Front (NSFW)",
  34706. image: {
  34707. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  34708. extra: 1327/1216,
  34709. bottom: 96/1423
  34710. }
  34711. },
  34712. backNsfw: {
  34713. height: math.unit(3 + 10/12, "feet"),
  34714. weight: math.unit(90, "lb"),
  34715. name: "Back (NSFW)",
  34716. image: {
  34717. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  34718. extra: 1355/1247,
  34719. bottom: 11/1366
  34720. }
  34721. },
  34722. },
  34723. [
  34724. {
  34725. name: "Normal",
  34726. height: math.unit(3 + 10/12, "feet"),
  34727. default: true
  34728. },
  34729. ]
  34730. ))
  34731. characterMakers.push(() => makeCharacter(
  34732. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  34733. {
  34734. front: {
  34735. height: math.unit(9 + 6/12, "feet"),
  34736. weight: math.unit(940, "lb"),
  34737. name: "Front",
  34738. image: {
  34739. source: "./media/characters/byliss/front.svg",
  34740. extra: 1327/1290,
  34741. bottom: 82/1409
  34742. }
  34743. },
  34744. back: {
  34745. height: math.unit(9 + 6/12, "feet"),
  34746. weight: math.unit(940, "lb"),
  34747. name: "Back",
  34748. image: {
  34749. source: "./media/characters/byliss/back.svg",
  34750. extra: 1376/1349,
  34751. bottom: 9/1385
  34752. }
  34753. },
  34754. frontNsfw: {
  34755. height: math.unit(9 + 6/12, "feet"),
  34756. weight: math.unit(940, "lb"),
  34757. name: "Front (NSFW)",
  34758. image: {
  34759. source: "./media/characters/byliss/front-nsfw.svg",
  34760. extra: 1327/1290,
  34761. bottom: 82/1409
  34762. }
  34763. },
  34764. backNsfw: {
  34765. height: math.unit(9 + 6/12, "feet"),
  34766. weight: math.unit(940, "lb"),
  34767. name: "Back (NSFW)",
  34768. image: {
  34769. source: "./media/characters/byliss/back-nsfw.svg",
  34770. extra: 1376/1349,
  34771. bottom: 9/1385
  34772. }
  34773. },
  34774. },
  34775. [
  34776. {
  34777. name: "Normal",
  34778. height: math.unit(9 + 6/12, "feet"),
  34779. default: true
  34780. },
  34781. ]
  34782. ))
  34783. characterMakers.push(() => makeCharacter(
  34784. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  34785. {
  34786. front: {
  34787. height: math.unit(5 + 2/12, "feet"),
  34788. weight: math.unit(200, "lb"),
  34789. name: "Front",
  34790. image: {
  34791. source: "./media/characters/noraly/front.svg",
  34792. extra: 4985/4773,
  34793. bottom: 150/5135
  34794. }
  34795. },
  34796. full: {
  34797. height: math.unit(5 + 2/12, "feet"),
  34798. weight: math.unit(164, "lb"),
  34799. name: "Full",
  34800. image: {
  34801. source: "./media/characters/noraly/full.svg",
  34802. extra: 1114/1059,
  34803. bottom: 35/1149
  34804. }
  34805. },
  34806. fuller: {
  34807. height: math.unit(5 + 2/12, "feet"),
  34808. weight: math.unit(230, "lb"),
  34809. name: "Fuller",
  34810. image: {
  34811. source: "./media/characters/noraly/fuller.svg",
  34812. extra: 1114/1059,
  34813. bottom: 35/1149
  34814. }
  34815. },
  34816. fullest: {
  34817. height: math.unit(5 + 2/12, "feet"),
  34818. weight: math.unit(300, "lb"),
  34819. name: "Fullest",
  34820. image: {
  34821. source: "./media/characters/noraly/fullest.svg",
  34822. extra: 1114/1059,
  34823. bottom: 35/1149
  34824. }
  34825. },
  34826. },
  34827. [
  34828. {
  34829. name: "Normal",
  34830. height: math.unit(5 + 2/12, "feet"),
  34831. default: true
  34832. },
  34833. ]
  34834. ))
  34835. characterMakers.push(() => makeCharacter(
  34836. { name: "Pera", species: ["snake"], tags: ["naga"] },
  34837. {
  34838. front: {
  34839. height: math.unit(5 + 2/12, "feet"),
  34840. weight: math.unit(210, "lb"),
  34841. name: "Front",
  34842. image: {
  34843. source: "./media/characters/pera/front.svg",
  34844. extra: 1560/1531,
  34845. bottom: 165/1725
  34846. }
  34847. },
  34848. back: {
  34849. height: math.unit(5 + 2/12, "feet"),
  34850. weight: math.unit(210, "lb"),
  34851. name: "Back",
  34852. image: {
  34853. source: "./media/characters/pera/back.svg",
  34854. extra: 1523/1493,
  34855. bottom: 152/1675
  34856. }
  34857. },
  34858. dick: {
  34859. height: math.unit(2.4, "feet"),
  34860. name: "Dick",
  34861. image: {
  34862. source: "./media/characters/pera/dick.svg"
  34863. }
  34864. },
  34865. },
  34866. [
  34867. {
  34868. name: "Normal",
  34869. height: math.unit(5 + 2/12, "feet"),
  34870. default: true
  34871. },
  34872. ]
  34873. ))
  34874. characterMakers.push(() => makeCharacter(
  34875. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  34876. {
  34877. front: {
  34878. height: math.unit(12, "feet"),
  34879. weight: math.unit(3200, "lb"),
  34880. name: "Front",
  34881. image: {
  34882. source: "./media/characters/julian/front.svg",
  34883. extra: 2962/2701,
  34884. bottom: 184/3146
  34885. }
  34886. },
  34887. maw: {
  34888. height: math.unit(5.35, "feet"),
  34889. name: "Maw",
  34890. image: {
  34891. source: "./media/characters/julian/maw.svg"
  34892. }
  34893. },
  34894. paw: {
  34895. height: math.unit(3.07, "feet"),
  34896. name: "Paw",
  34897. image: {
  34898. source: "./media/characters/julian/paw.svg"
  34899. }
  34900. },
  34901. },
  34902. [
  34903. {
  34904. name: "Default",
  34905. height: math.unit(12, "feet"),
  34906. default: true
  34907. },
  34908. {
  34909. name: "Big",
  34910. height: math.unit(50, "feet")
  34911. },
  34912. {
  34913. name: "Really Big",
  34914. height: math.unit(1, "mile")
  34915. },
  34916. {
  34917. name: "Extremely Big",
  34918. height: math.unit(100, "miles")
  34919. },
  34920. {
  34921. name: "Planet Hugger",
  34922. height: math.unit(200, "megameters")
  34923. },
  34924. {
  34925. name: "Unreasonably Big",
  34926. height: math.unit(1e300, "meters")
  34927. },
  34928. ]
  34929. ))
  34930. characterMakers.push(() => makeCharacter(
  34931. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  34932. {
  34933. solgooleo: {
  34934. height: math.unit(4, "meters"),
  34935. weight: math.unit(6000*1.5, "kg"),
  34936. volume: math.unit(6000, "liters"),
  34937. name: "Solgooleo",
  34938. image: {
  34939. source: "./media/characters/pi/solgooleo.svg",
  34940. extra: 388/331,
  34941. bottom: 29/417
  34942. }
  34943. },
  34944. },
  34945. [
  34946. {
  34947. name: "Normal",
  34948. height: math.unit(4, "meters"),
  34949. default: true
  34950. },
  34951. ]
  34952. ))
  34953. characterMakers.push(() => makeCharacter(
  34954. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  34955. {
  34956. front: {
  34957. height: math.unit(8, "feet"),
  34958. weight: math.unit(4, "tons"),
  34959. name: "Front",
  34960. image: {
  34961. source: "./media/characters/shaun/front.svg",
  34962. extra: 503/495,
  34963. bottom: 20/523
  34964. }
  34965. },
  34966. back: {
  34967. height: math.unit(8, "feet"),
  34968. weight: math.unit(4, "tons"),
  34969. name: "Back",
  34970. image: {
  34971. source: "./media/characters/shaun/back.svg",
  34972. extra: 487/480,
  34973. bottom: 20/507
  34974. }
  34975. },
  34976. },
  34977. [
  34978. {
  34979. name: "Lorg",
  34980. height: math.unit(8, "feet"),
  34981. default: true
  34982. },
  34983. ]
  34984. ))
  34985. characterMakers.push(() => makeCharacter(
  34986. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  34987. {
  34988. frontAnthro: {
  34989. height: math.unit(7, "feet"),
  34990. name: "Front",
  34991. image: {
  34992. source: "./media/characters/sini/front-anthro.svg",
  34993. extra: 726/678,
  34994. bottom: 35/761
  34995. },
  34996. form: "anthro",
  34997. default: true
  34998. },
  34999. backAnthro: {
  35000. height: math.unit(7, "feet"),
  35001. name: "Back",
  35002. image: {
  35003. source: "./media/characters/sini/back-anthro.svg",
  35004. extra: 743/701,
  35005. bottom: 12/755
  35006. },
  35007. form: "anthro",
  35008. },
  35009. frontAnthroNsfw: {
  35010. height: math.unit(7, "feet"),
  35011. name: "Front (NSFW)",
  35012. image: {
  35013. source: "./media/characters/sini/front-anthro-nsfw.svg",
  35014. extra: 726/678,
  35015. bottom: 35/761
  35016. },
  35017. form: "anthro"
  35018. },
  35019. backAnthroNsfw: {
  35020. height: math.unit(7, "feet"),
  35021. name: "Back (NSFW)",
  35022. image: {
  35023. source: "./media/characters/sini/back-anthro-nsfw.svg",
  35024. extra: 743/701,
  35025. bottom: 12/755
  35026. },
  35027. form: "anthro",
  35028. },
  35029. mawAnthro: {
  35030. height: math.unit(2.14, "feet"),
  35031. name: "Maw",
  35032. image: {
  35033. source: "./media/characters/sini/maw-anthro.svg"
  35034. },
  35035. form: "anthro"
  35036. },
  35037. dick: {
  35038. height: math.unit(1.45, "feet"),
  35039. name: "Dick",
  35040. image: {
  35041. source: "./media/characters/sini/dick-anthro.svg"
  35042. },
  35043. form: "anthro"
  35044. },
  35045. feral: {
  35046. height: math.unit(16, "feet"),
  35047. name: "Feral",
  35048. image: {
  35049. source: "./media/characters/sini/feral.svg",
  35050. extra: 814/605,
  35051. bottom: 11/825
  35052. },
  35053. form: "feral",
  35054. default: true
  35055. },
  35056. feralNsfw: {
  35057. height: math.unit(16, "feet"),
  35058. name: "Feral (NSFW)",
  35059. image: {
  35060. source: "./media/characters/sini/feral-nsfw.svg",
  35061. extra: 814/605,
  35062. bottom: 11/825
  35063. },
  35064. form: "feral"
  35065. },
  35066. mawFeral: {
  35067. height: math.unit(5.66, "feet"),
  35068. name: "Maw",
  35069. image: {
  35070. source: "./media/characters/sini/maw-feral.svg"
  35071. },
  35072. form: "feral",
  35073. },
  35074. pawFeral: {
  35075. height: math.unit(5.17, "feet"),
  35076. name: "Paw",
  35077. image: {
  35078. source: "./media/characters/sini/paw-feral.svg"
  35079. },
  35080. form: "feral",
  35081. },
  35082. rumpFeral: {
  35083. height: math.unit(13.11, "feet"),
  35084. name: "Rump",
  35085. image: {
  35086. source: "./media/characters/sini/rump-feral.svg"
  35087. },
  35088. form: "feral",
  35089. },
  35090. dickFeral: {
  35091. height: math.unit(1, "feet"),
  35092. name: "Dick",
  35093. image: {
  35094. source: "./media/characters/sini/dick-feral.svg"
  35095. },
  35096. form: "feral",
  35097. },
  35098. eyeFeral: {
  35099. height: math.unit(1.23, "feet"),
  35100. name: "Eye",
  35101. image: {
  35102. source: "./media/characters/sini/eye-feral.svg"
  35103. },
  35104. form: "feral",
  35105. },
  35106. },
  35107. [
  35108. {
  35109. name: "Normal",
  35110. height: math.unit(7, "feet"),
  35111. default: true,
  35112. form: "anthro"
  35113. },
  35114. {
  35115. name: "Normal",
  35116. height: math.unit(16, "feet"),
  35117. default: true,
  35118. form: "feral"
  35119. },
  35120. ],
  35121. {
  35122. "anthro": {
  35123. name: "Anthro",
  35124. default: true
  35125. },
  35126. "feral": {
  35127. name: "Feral",
  35128. }
  35129. }
  35130. ))
  35131. characterMakers.push(() => makeCharacter(
  35132. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  35133. {
  35134. side: {
  35135. height: math.unit(47.2, "meters"),
  35136. weight: math.unit(10000, "tons"),
  35137. name: "Side",
  35138. image: {
  35139. source: "./media/characters/raylldo/side.svg",
  35140. extra: 2363/642,
  35141. bottom: 221/2584
  35142. }
  35143. },
  35144. top: {
  35145. height: math.unit(240, "meters"),
  35146. weight: math.unit(10000, "tons"),
  35147. name: "Top",
  35148. image: {
  35149. source: "./media/characters/raylldo/top.svg"
  35150. }
  35151. },
  35152. bottom: {
  35153. height: math.unit(240, "meters"),
  35154. weight: math.unit(10000, "tons"),
  35155. name: "Bottom",
  35156. image: {
  35157. source: "./media/characters/raylldo/bottom.svg"
  35158. }
  35159. },
  35160. head: {
  35161. height: math.unit(38.6, "meters"),
  35162. name: "Head",
  35163. image: {
  35164. source: "./media/characters/raylldo/head.svg",
  35165. extra: 1335/1112,
  35166. bottom: 0/1335
  35167. }
  35168. },
  35169. maw: {
  35170. height: math.unit(16.37, "meters"),
  35171. name: "Maw",
  35172. image: {
  35173. source: "./media/characters/raylldo/maw.svg",
  35174. extra: 883/660,
  35175. bottom: 0/883
  35176. },
  35177. extraAttributes: {
  35178. preyCapacity: {
  35179. name: "Capacity",
  35180. power: 3,
  35181. type: "volume",
  35182. base: math.unit(1000, "people")
  35183. },
  35184. tongueSize: {
  35185. name: "Tongue Size",
  35186. power: 2,
  35187. type: "area",
  35188. base: math.unit(21, "m^2")
  35189. }
  35190. }
  35191. },
  35192. forepaw: {
  35193. height: math.unit(18, "meters"),
  35194. name: "Forepaw",
  35195. image: {
  35196. source: "./media/characters/raylldo/forepaw.svg"
  35197. }
  35198. },
  35199. hindpaw: {
  35200. height: math.unit(23, "meters"),
  35201. name: "Hindpaw",
  35202. image: {
  35203. source: "./media/characters/raylldo/hindpaw.svg"
  35204. }
  35205. },
  35206. genitals: {
  35207. height: math.unit(42, "meters"),
  35208. name: "Genitals",
  35209. image: {
  35210. source: "./media/characters/raylldo/genitals.svg"
  35211. }
  35212. },
  35213. },
  35214. [
  35215. {
  35216. name: "Normal",
  35217. height: math.unit(47.2, "meters"),
  35218. default: true
  35219. },
  35220. ]
  35221. ))
  35222. characterMakers.push(() => makeCharacter(
  35223. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  35224. {
  35225. anthroFront: {
  35226. height: math.unit(9, "feet"),
  35227. weight: math.unit(600, "lb"),
  35228. name: "Anthro (Front)",
  35229. image: {
  35230. source: "./media/characters/glint/anthro-front.svg",
  35231. extra: 1097/1018,
  35232. bottom: 28/1125
  35233. }
  35234. },
  35235. anthroBack: {
  35236. height: math.unit(9, "feet"),
  35237. weight: math.unit(600, "lb"),
  35238. name: "Anthro (Back)",
  35239. image: {
  35240. source: "./media/characters/glint/anthro-back.svg",
  35241. extra: 1154/997,
  35242. bottom: 36/1190
  35243. }
  35244. },
  35245. feral: {
  35246. height: math.unit(11, "feet"),
  35247. weight: math.unit(50000, "lb"),
  35248. name: "Feral",
  35249. image: {
  35250. source: "./media/characters/glint/feral.svg",
  35251. extra: 3035/1585,
  35252. bottom: 1169/4204
  35253. }
  35254. },
  35255. dickAnthro: {
  35256. height: math.unit(0.7, "meters"),
  35257. name: "Dick (Anthro)",
  35258. image: {
  35259. source: "./media/characters/glint/dick-anthro.svg"
  35260. }
  35261. },
  35262. dickFeral: {
  35263. height: math.unit(2.65, "meters"),
  35264. name: "Dick (Feral)",
  35265. image: {
  35266. source: "./media/characters/glint/dick-feral.svg"
  35267. }
  35268. },
  35269. slitHidden: {
  35270. height: math.unit(5.85, "meters"),
  35271. name: "Slit (Hidden)",
  35272. image: {
  35273. source: "./media/characters/glint/slit-hidden.svg"
  35274. }
  35275. },
  35276. slitErect: {
  35277. height: math.unit(5.85, "meters"),
  35278. name: "Slit (Erect)",
  35279. image: {
  35280. source: "./media/characters/glint/slit-erect.svg"
  35281. }
  35282. },
  35283. mawAnthro: {
  35284. height: math.unit(0.63, "meters"),
  35285. name: "Maw (Anthro)",
  35286. image: {
  35287. source: "./media/characters/glint/maw.svg"
  35288. }
  35289. },
  35290. mawFeral: {
  35291. height: math.unit(2.89, "meters"),
  35292. name: "Maw (Feral)",
  35293. image: {
  35294. source: "./media/characters/glint/maw.svg"
  35295. }
  35296. },
  35297. },
  35298. [
  35299. {
  35300. name: "Normal",
  35301. height: math.unit(9, "feet"),
  35302. default: true
  35303. },
  35304. ]
  35305. ))
  35306. characterMakers.push(() => makeCharacter(
  35307. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  35308. {
  35309. side: {
  35310. height: math.unit(15, "feet"),
  35311. weight: math.unit(5000, "kg"),
  35312. name: "Side",
  35313. image: {
  35314. source: "./media/characters/kairne/side.svg",
  35315. extra: 979/811,
  35316. bottom: 13/992
  35317. }
  35318. },
  35319. front: {
  35320. height: math.unit(15, "feet"),
  35321. weight: math.unit(5000, "kg"),
  35322. name: "Front",
  35323. image: {
  35324. source: "./media/characters/kairne/front.svg",
  35325. extra: 908/814,
  35326. bottom: 26/934
  35327. }
  35328. },
  35329. sideNsfw: {
  35330. height: math.unit(15, "feet"),
  35331. weight: math.unit(5000, "kg"),
  35332. name: "Side (NSFW)",
  35333. image: {
  35334. source: "./media/characters/kairne/side-nsfw.svg",
  35335. extra: 979/811,
  35336. bottom: 13/992
  35337. }
  35338. },
  35339. frontNsfw: {
  35340. height: math.unit(15, "feet"),
  35341. weight: math.unit(5000, "kg"),
  35342. name: "Front (NSFW)",
  35343. image: {
  35344. source: "./media/characters/kairne/front-nsfw.svg",
  35345. extra: 908/814,
  35346. bottom: 26/934
  35347. }
  35348. },
  35349. dickCaged: {
  35350. height: math.unit(0.65, "meters"),
  35351. name: "Dick-caged",
  35352. image: {
  35353. source: "./media/characters/kairne/dick-caged.svg"
  35354. }
  35355. },
  35356. dick: {
  35357. height: math.unit(0.79, "meters"),
  35358. name: "Dick",
  35359. image: {
  35360. source: "./media/characters/kairne/dick.svg"
  35361. }
  35362. },
  35363. genitals: {
  35364. height: math.unit(1.29, "meters"),
  35365. name: "Genitals",
  35366. image: {
  35367. source: "./media/characters/kairne/genitals.svg"
  35368. }
  35369. },
  35370. maw: {
  35371. height: math.unit(1.73, "meters"),
  35372. name: "Maw",
  35373. image: {
  35374. source: "./media/characters/kairne/maw.svg"
  35375. }
  35376. },
  35377. },
  35378. [
  35379. {
  35380. name: "Normal",
  35381. height: math.unit(15, "feet"),
  35382. default: true
  35383. },
  35384. ]
  35385. ))
  35386. characterMakers.push(() => makeCharacter(
  35387. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  35388. {
  35389. front: {
  35390. height: math.unit(5 + 8/12, "feet"),
  35391. weight: math.unit(139, "lb"),
  35392. name: "Front",
  35393. image: {
  35394. source: "./media/characters/biscuit-jackal/front.svg",
  35395. extra: 2106/1961,
  35396. bottom: 58/2164
  35397. }
  35398. },
  35399. back: {
  35400. height: math.unit(5 + 8/12, "feet"),
  35401. weight: math.unit(139, "lb"),
  35402. name: "Back",
  35403. image: {
  35404. source: "./media/characters/biscuit-jackal/back.svg",
  35405. extra: 2132/1976,
  35406. bottom: 57/2189
  35407. }
  35408. },
  35409. werejackal: {
  35410. height: math.unit(6 + 3/12, "feet"),
  35411. weight: math.unit(188, "lb"),
  35412. name: "Werejackal",
  35413. image: {
  35414. source: "./media/characters/biscuit-jackal/werejackal.svg",
  35415. extra: 2373/2178,
  35416. bottom: 53/2426
  35417. }
  35418. },
  35419. },
  35420. [
  35421. {
  35422. name: "Normal",
  35423. height: math.unit(5 + 8/12, "feet"),
  35424. default: true
  35425. },
  35426. ]
  35427. ))
  35428. characterMakers.push(() => makeCharacter(
  35429. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  35430. {
  35431. front: {
  35432. height: math.unit(140, "cm"),
  35433. weight: math.unit(45, "kg"),
  35434. name: "Front",
  35435. image: {
  35436. source: "./media/characters/tayra-white/front.svg",
  35437. extra: 2229/2192,
  35438. bottom: 75/2304
  35439. }
  35440. },
  35441. },
  35442. [
  35443. {
  35444. name: "Normal",
  35445. height: math.unit(140, "cm"),
  35446. default: true
  35447. },
  35448. ]
  35449. ))
  35450. characterMakers.push(() => makeCharacter(
  35451. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  35452. {
  35453. front: {
  35454. height: math.unit(4 + 5/12, "feet"),
  35455. name: "Front",
  35456. image: {
  35457. source: "./media/characters/scoop/front.svg",
  35458. extra: 1257/1136,
  35459. bottom: 69/1326
  35460. }
  35461. },
  35462. back: {
  35463. height: math.unit(4 + 5/12, "feet"),
  35464. name: "Back",
  35465. image: {
  35466. source: "./media/characters/scoop/back.svg",
  35467. extra: 1321/1152,
  35468. bottom: 32/1353
  35469. }
  35470. },
  35471. maw: {
  35472. height: math.unit(0.68, "feet"),
  35473. name: "Maw",
  35474. image: {
  35475. source: "./media/characters/scoop/maw.svg"
  35476. }
  35477. },
  35478. },
  35479. [
  35480. {
  35481. name: "Really Small",
  35482. height: math.unit(1, "mm")
  35483. },
  35484. {
  35485. name: "Micro",
  35486. height: math.unit(1, "inch")
  35487. },
  35488. {
  35489. name: "Normal",
  35490. height: math.unit(4 + 5/12, "feet"),
  35491. default: true
  35492. },
  35493. {
  35494. name: "Macro",
  35495. height: math.unit(200, "feet")
  35496. },
  35497. {
  35498. name: "Megamacro",
  35499. height: math.unit(3240, "feet")
  35500. },
  35501. {
  35502. name: "Teramacro",
  35503. height: math.unit(2500, "miles")
  35504. },
  35505. ]
  35506. ))
  35507. characterMakers.push(() => makeCharacter(
  35508. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  35509. {
  35510. front: {
  35511. height: math.unit(15 + 7/12, "feet"),
  35512. weight: math.unit(1150, "tons"),
  35513. name: "Front",
  35514. image: {
  35515. source: "./media/characters/saphinara/front.svg",
  35516. extra: 1837/1643,
  35517. bottom: 84/1921
  35518. },
  35519. form: "normal",
  35520. default: true
  35521. },
  35522. side: {
  35523. height: math.unit(15 + 7/12, "feet"),
  35524. weight: math.unit(1150, "tons"),
  35525. name: "Side",
  35526. image: {
  35527. source: "./media/characters/saphinara/side.svg",
  35528. extra: 605/547,
  35529. bottom: 6/611
  35530. },
  35531. form: "normal"
  35532. },
  35533. back: {
  35534. height: math.unit(15 + 7/12, "feet"),
  35535. weight: math.unit(1150, "tons"),
  35536. name: "Back",
  35537. image: {
  35538. source: "./media/characters/saphinara/back.svg",
  35539. extra: 591/531,
  35540. bottom: 13/604
  35541. },
  35542. form: "normal"
  35543. },
  35544. frontTail: {
  35545. height: math.unit(15 + 7/12, "feet"),
  35546. weight: math.unit(1150, "tons"),
  35547. name: "Front (Full Tail)",
  35548. image: {
  35549. source: "./media/characters/saphinara/front-tail.svg",
  35550. extra: 2256/1630,
  35551. bottom: 261/2517
  35552. },
  35553. form: "normal"
  35554. },
  35555. insides: {
  35556. height: math.unit(11.92, "feet"),
  35557. name: "Insides",
  35558. image: {
  35559. source: "./media/characters/saphinara/insides.svg"
  35560. },
  35561. form: "normal"
  35562. },
  35563. head: {
  35564. height: math.unit(4.17, "feet"),
  35565. name: "Head",
  35566. image: {
  35567. source: "./media/characters/saphinara/head.svg"
  35568. },
  35569. form: "normal"
  35570. },
  35571. tongue: {
  35572. height: math.unit(4.60, "feet"),
  35573. name: "Tongue",
  35574. image: {
  35575. source: "./media/characters/saphinara/tongue.svg"
  35576. },
  35577. form: "normal"
  35578. },
  35579. headEnraged: {
  35580. height: math.unit(5.55, "feet"),
  35581. name: "Head (Enraged)",
  35582. image: {
  35583. source: "./media/characters/saphinara/head-enraged.svg"
  35584. },
  35585. form: "normal"
  35586. },
  35587. wings: {
  35588. height: math.unit(11.95, "feet"),
  35589. name: "Wings",
  35590. image: {
  35591. source: "./media/characters/saphinara/wings.svg"
  35592. },
  35593. form: "normal"
  35594. },
  35595. feathers: {
  35596. height: math.unit(8.92, "feet"),
  35597. name: "Feathers",
  35598. image: {
  35599. source: "./media/characters/saphinara/feathers.svg"
  35600. },
  35601. form: "normal"
  35602. },
  35603. shackles: {
  35604. height: math.unit(2, "feet"),
  35605. name: "Shackles",
  35606. image: {
  35607. source: "./media/characters/saphinara/shackles.svg"
  35608. },
  35609. form: "normal"
  35610. },
  35611. eyes: {
  35612. height: math.unit(1.331, "feet"),
  35613. name: "Eyes",
  35614. image: {
  35615. source: "./media/characters/saphinara/eyes.svg"
  35616. },
  35617. form: "normal"
  35618. },
  35619. eyesEnraged: {
  35620. height: math.unit(1.331, "feet"),
  35621. name: "Eyes (Enraged)",
  35622. image: {
  35623. source: "./media/characters/saphinara/eyes-enraged.svg"
  35624. },
  35625. form: "normal"
  35626. },
  35627. trueFormSide: {
  35628. height: math.unit(200, "feet"),
  35629. weight: math.unit(1e7, "tons"),
  35630. name: "Side",
  35631. image: {
  35632. source: "./media/characters/saphinara/true-form-side.svg",
  35633. extra: 1399/770,
  35634. bottom: 97/1496
  35635. },
  35636. form: "true-form",
  35637. default: true
  35638. },
  35639. trueFormMaw: {
  35640. height: math.unit(71.5, "feet"),
  35641. name: "Maw",
  35642. image: {
  35643. source: "./media/characters/saphinara/true-form-maw.svg",
  35644. extra: 2302/1453,
  35645. bottom: 0/2302
  35646. },
  35647. form: "true-form"
  35648. },
  35649. meowberusSide: {
  35650. height: math.unit(75, "feet"),
  35651. weight: math.unit(180000, "kg"),
  35652. preyCapacity: math.unit(50000, "people"),
  35653. name: "Side",
  35654. image: {
  35655. source: "./media/characters/saphinara/meowberus-side.svg",
  35656. extra: 1400/711,
  35657. bottom: 126/1526
  35658. },
  35659. form: "meowberus",
  35660. extraAttributes: {
  35661. "pawArea": {
  35662. name: "Paw Size",
  35663. power: 2,
  35664. type: "area",
  35665. base: math.unit(35, "m^2")
  35666. }
  35667. }
  35668. },
  35669. },
  35670. [
  35671. {
  35672. name: "Normal",
  35673. height: math.unit(15 + 7/12, "feet"),
  35674. default: true,
  35675. form: "normal"
  35676. },
  35677. {
  35678. name: "Angry",
  35679. height: math.unit(30 + 6/12, "feet"),
  35680. form: "normal"
  35681. },
  35682. {
  35683. name: "Enraged",
  35684. height: math.unit(102 + 1/12, "feet"),
  35685. form: "normal"
  35686. },
  35687. {
  35688. name: "True",
  35689. height: math.unit(200, "feet"),
  35690. default: true,
  35691. form: "true-form"
  35692. },
  35693. {
  35694. name: "Normal",
  35695. height: math.unit(75, "feet"),
  35696. default: true,
  35697. form: "meowberus"
  35698. },
  35699. ],
  35700. {
  35701. "normal": {
  35702. name: "Normal",
  35703. default: true
  35704. },
  35705. "true-form": {
  35706. name: "True Form"
  35707. },
  35708. "meowberus": {
  35709. name: "Meowberus",
  35710. },
  35711. }
  35712. ))
  35713. characterMakers.push(() => makeCharacter(
  35714. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  35715. {
  35716. front: {
  35717. height: math.unit(6 + 8/12, "feet"),
  35718. weight: math.unit(300, "lb"),
  35719. name: "Front",
  35720. image: {
  35721. source: "./media/characters/jrain/front.svg",
  35722. extra: 3039/2865,
  35723. bottom: 399/3438
  35724. }
  35725. },
  35726. back: {
  35727. height: math.unit(6 + 8/12, "feet"),
  35728. weight: math.unit(300, "lb"),
  35729. name: "Back",
  35730. image: {
  35731. source: "./media/characters/jrain/back.svg",
  35732. extra: 3089/2938,
  35733. bottom: 172/3261
  35734. }
  35735. },
  35736. head: {
  35737. height: math.unit(2.14, "feet"),
  35738. name: "Head",
  35739. image: {
  35740. source: "./media/characters/jrain/head.svg"
  35741. }
  35742. },
  35743. maw: {
  35744. height: math.unit(1.77, "feet"),
  35745. name: "Maw",
  35746. image: {
  35747. source: "./media/characters/jrain/maw.svg"
  35748. }
  35749. },
  35750. leftHand: {
  35751. height: math.unit(1.1, "feet"),
  35752. name: "Left Hand",
  35753. image: {
  35754. source: "./media/characters/jrain/left-hand.svg"
  35755. }
  35756. },
  35757. rightHand: {
  35758. height: math.unit(1.1, "feet"),
  35759. name: "Right Hand",
  35760. image: {
  35761. source: "./media/characters/jrain/right-hand.svg"
  35762. }
  35763. },
  35764. eye: {
  35765. height: math.unit(0.35, "feet"),
  35766. name: "Eye",
  35767. image: {
  35768. source: "./media/characters/jrain/eye.svg"
  35769. }
  35770. },
  35771. },
  35772. [
  35773. {
  35774. name: "Normal",
  35775. height: math.unit(6 + 8/12, "feet"),
  35776. default: true
  35777. },
  35778. {
  35779. name: "Casually Large",
  35780. height: math.unit(25, "feet")
  35781. },
  35782. {
  35783. name: "Giant",
  35784. height: math.unit(100, "feet")
  35785. },
  35786. {
  35787. name: "Kaiju",
  35788. height: math.unit(300, "feet")
  35789. },
  35790. ]
  35791. ))
  35792. characterMakers.push(() => makeCharacter(
  35793. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  35794. {
  35795. dragon: {
  35796. height: math.unit(5, "meters"),
  35797. name: "Dragon",
  35798. image: {
  35799. source: "./media/characters/sabrina/dragon.svg",
  35800. extra: 3670 / 2365,
  35801. bottom: 333 / 4003
  35802. }
  35803. },
  35804. gryphon: {
  35805. height: math.unit(3, "meters"),
  35806. name: "Gryphon",
  35807. image: {
  35808. source: "./media/characters/sabrina/gryphon.svg",
  35809. extra: 1576 / 945,
  35810. bottom: 71 / 1647
  35811. }
  35812. },
  35813. snake: {
  35814. height: math.unit(12, "meters"),
  35815. name: "Snake",
  35816. image: {
  35817. source: "./media/characters/sabrina/snake.svg",
  35818. extra: 1758 / 1320,
  35819. bottom: 186 / 1944
  35820. }
  35821. },
  35822. collar: {
  35823. height: math.unit(1.86, "meters"),
  35824. name: "Collar",
  35825. image: {
  35826. source: "./media/characters/sabrina/collar.svg"
  35827. }
  35828. },
  35829. eye: {
  35830. height: math.unit(0.53, "meters"),
  35831. name: "Eye",
  35832. image: {
  35833. source: "./media/characters/sabrina/eye.svg"
  35834. }
  35835. },
  35836. foot: {
  35837. height: math.unit(1.86, "meters"),
  35838. name: "Foot",
  35839. image: {
  35840. source: "./media/characters/sabrina/foot.svg"
  35841. }
  35842. },
  35843. hand: {
  35844. height: math.unit(1.32, "meters"),
  35845. name: "Hand",
  35846. image: {
  35847. source: "./media/characters/sabrina/hand.svg"
  35848. }
  35849. },
  35850. head: {
  35851. height: math.unit(2.44, "meters"),
  35852. name: "Head",
  35853. image: {
  35854. source: "./media/characters/sabrina/head.svg"
  35855. }
  35856. },
  35857. headAngry: {
  35858. height: math.unit(2.44, "meters"),
  35859. name: "Head (Angry))",
  35860. image: {
  35861. source: "./media/characters/sabrina/head-angry.svg"
  35862. }
  35863. },
  35864. maw: {
  35865. height: math.unit(1.65, "meters"),
  35866. name: "Maw",
  35867. image: {
  35868. source: "./media/characters/sabrina/maw.svg"
  35869. }
  35870. },
  35871. spikes: {
  35872. height: math.unit(1.69, "meters"),
  35873. name: "Spikes",
  35874. image: {
  35875. source: "./media/characters/sabrina/spikes.svg"
  35876. }
  35877. },
  35878. stomach: {
  35879. height: math.unit(1.15, "meters"),
  35880. name: "Stomach",
  35881. image: {
  35882. source: "./media/characters/sabrina/stomach.svg"
  35883. }
  35884. },
  35885. tongue: {
  35886. height: math.unit(1.27, "meters"),
  35887. name: "Tongue",
  35888. image: {
  35889. source: "./media/characters/sabrina/tongue.svg"
  35890. }
  35891. },
  35892. wingDorsal: {
  35893. height: math.unit(4.85, "meters"),
  35894. name: "Wing (Dorsal)",
  35895. image: {
  35896. source: "./media/characters/sabrina/wing-dorsal.svg"
  35897. }
  35898. },
  35899. wingVentral: {
  35900. height: math.unit(4.85, "meters"),
  35901. name: "Wing (Ventral)",
  35902. image: {
  35903. source: "./media/characters/sabrina/wing-ventral.svg"
  35904. }
  35905. },
  35906. },
  35907. [
  35908. {
  35909. name: "Normal",
  35910. height: math.unit(5, "meters"),
  35911. default: true
  35912. },
  35913. ]
  35914. ))
  35915. characterMakers.push(() => makeCharacter(
  35916. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  35917. {
  35918. frontMaid: {
  35919. height: math.unit(5 + 5/12, "feet"),
  35920. weight: math.unit(130, "lb"),
  35921. name: "Front (Maid)",
  35922. image: {
  35923. source: "./media/characters/midnight-tales/front-maid.svg",
  35924. extra: 489/454,
  35925. bottom: 61/550
  35926. }
  35927. },
  35928. frontFormal: {
  35929. height: math.unit(5 + 5/12, "feet"),
  35930. weight: math.unit(130, "lb"),
  35931. name: "Front (Formal)",
  35932. image: {
  35933. source: "./media/characters/midnight-tales/front-formal.svg",
  35934. extra: 489/454,
  35935. bottom: 61/550
  35936. }
  35937. },
  35938. back: {
  35939. height: math.unit(5 + 5/12, "feet"),
  35940. weight: math.unit(130, "lb"),
  35941. name: "Back",
  35942. image: {
  35943. source: "./media/characters/midnight-tales/back.svg",
  35944. extra: 498/456,
  35945. bottom: 33/531
  35946. }
  35947. },
  35948. frontBeast: {
  35949. height: math.unit(40, "feet"),
  35950. weight: math.unit(64000, "lb"),
  35951. name: "Front (Beast)",
  35952. image: {
  35953. source: "./media/characters/midnight-tales/front-beast.svg",
  35954. extra: 927/860,
  35955. bottom: 53/980
  35956. }
  35957. },
  35958. backBeast: {
  35959. height: math.unit(40, "feet"),
  35960. weight: math.unit(64000, "lb"),
  35961. name: "Back (Beast)",
  35962. image: {
  35963. source: "./media/characters/midnight-tales/back-beast.svg",
  35964. extra: 929/855,
  35965. bottom: 16/945
  35966. }
  35967. },
  35968. footBeast: {
  35969. height: math.unit(6.7, "feet"),
  35970. name: "Foot (Beast)",
  35971. image: {
  35972. source: "./media/characters/midnight-tales/foot-beast.svg"
  35973. }
  35974. },
  35975. headBeast: {
  35976. height: math.unit(8, "feet"),
  35977. name: "Head (Beast)",
  35978. image: {
  35979. source: "./media/characters/midnight-tales/head-beast.svg"
  35980. }
  35981. },
  35982. },
  35983. [
  35984. {
  35985. name: "Normal",
  35986. height: math.unit(5 + 5 / 12, "feet"),
  35987. default: true
  35988. },
  35989. {
  35990. name: "Macro",
  35991. height: math.unit(25, "feet")
  35992. },
  35993. ]
  35994. ))
  35995. characterMakers.push(() => makeCharacter(
  35996. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  35997. {
  35998. front: {
  35999. height: math.unit(5 + 10/12, "feet"),
  36000. name: "Front",
  36001. image: {
  36002. source: "./media/characters/argon/front.svg",
  36003. extra: 2009/1935,
  36004. bottom: 118/2127
  36005. }
  36006. },
  36007. back: {
  36008. height: math.unit(5 + 10/12, "feet"),
  36009. name: "Back",
  36010. image: {
  36011. source: "./media/characters/argon/back.svg",
  36012. extra: 2047/1992,
  36013. bottom: 20/2067
  36014. }
  36015. },
  36016. frontDressed: {
  36017. height: math.unit(5 + 10/12, "feet"),
  36018. name: "Front (Dressed)",
  36019. image: {
  36020. source: "./media/characters/argon/front-dressed.svg",
  36021. extra: 2009/1935,
  36022. bottom: 118/2127
  36023. }
  36024. },
  36025. },
  36026. [
  36027. {
  36028. name: "Normal",
  36029. height: math.unit(5 + 10/12, "feet"),
  36030. default: true
  36031. },
  36032. ]
  36033. ))
  36034. characterMakers.push(() => makeCharacter(
  36035. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  36036. {
  36037. front: {
  36038. height: math.unit(8 + 6/12, "feet"),
  36039. weight: math.unit(1150, "lb"),
  36040. name: "Front",
  36041. image: {
  36042. source: "./media/characters/kichi/front.svg",
  36043. extra: 1267/1164,
  36044. bottom: 61/1328
  36045. }
  36046. },
  36047. back: {
  36048. height: math.unit(8 + 6/12, "feet"),
  36049. weight: math.unit(1150, "lb"),
  36050. name: "Back",
  36051. image: {
  36052. source: "./media/characters/kichi/back.svg",
  36053. extra: 1273/1166,
  36054. bottom: 33/1306
  36055. }
  36056. },
  36057. },
  36058. [
  36059. {
  36060. name: "Normal",
  36061. height: math.unit(8 + 6/12, "feet"),
  36062. default: true
  36063. },
  36064. ]
  36065. ))
  36066. characterMakers.push(() => makeCharacter(
  36067. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  36068. {
  36069. front: {
  36070. height: math.unit(6, "feet"),
  36071. weight: math.unit(210, "lb"),
  36072. name: "Front",
  36073. image: {
  36074. source: "./media/characters/manetel-greyscale/front.svg",
  36075. extra: 350/312,
  36076. bottom: 8/358
  36077. }
  36078. },
  36079. },
  36080. [
  36081. {
  36082. name: "Micro",
  36083. height: math.unit(2, "inches")
  36084. },
  36085. {
  36086. name: "Normal",
  36087. height: math.unit(6, "feet"),
  36088. default: true
  36089. },
  36090. {
  36091. name: "Minimacro",
  36092. height: math.unit(17, "feet")
  36093. },
  36094. {
  36095. name: "Macro",
  36096. height: math.unit(117, "feet")
  36097. },
  36098. ]
  36099. ))
  36100. characterMakers.push(() => makeCharacter(
  36101. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  36102. {
  36103. side: {
  36104. height: math.unit(5 + 1/12, "feet"),
  36105. weight: math.unit(418, "lb"),
  36106. name: "Side",
  36107. image: {
  36108. source: "./media/characters/softpurr/side.svg",
  36109. extra: 1993/1945,
  36110. bottom: 134/2127
  36111. }
  36112. },
  36113. front: {
  36114. height: math.unit(5 + 1/12, "feet"),
  36115. weight: math.unit(418, "lb"),
  36116. name: "Front",
  36117. image: {
  36118. source: "./media/characters/softpurr/front.svg",
  36119. extra: 1950/1856,
  36120. bottom: 174/2124
  36121. }
  36122. },
  36123. paw: {
  36124. height: math.unit(1, "feet"),
  36125. name: "Paw",
  36126. image: {
  36127. source: "./media/characters/softpurr/paw.svg"
  36128. }
  36129. },
  36130. },
  36131. [
  36132. {
  36133. name: "Normal",
  36134. height: math.unit(5 + 1/12, "feet"),
  36135. default: true
  36136. },
  36137. ]
  36138. ))
  36139. characterMakers.push(() => makeCharacter(
  36140. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  36141. {
  36142. front: {
  36143. height: math.unit(260, "meters"),
  36144. name: "Front",
  36145. image: {
  36146. source: "./media/characters/anahita/front.svg",
  36147. extra: 665/635,
  36148. bottom: 89/754
  36149. }
  36150. },
  36151. },
  36152. [
  36153. {
  36154. name: "Macro",
  36155. height: math.unit(260, "meters"),
  36156. default: true
  36157. },
  36158. ]
  36159. ))
  36160. characterMakers.push(() => makeCharacter(
  36161. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  36162. {
  36163. front: {
  36164. height: math.unit(4 + 10/12, "feet"),
  36165. weight: math.unit(160, "lb"),
  36166. name: "Front",
  36167. image: {
  36168. source: "./media/characters/chip-mouse/front.svg",
  36169. extra: 3528/3408,
  36170. bottom: 0/3528
  36171. }
  36172. },
  36173. frontNsfw: {
  36174. height: math.unit(4 + 10/12, "feet"),
  36175. weight: math.unit(160, "lb"),
  36176. name: "Front (NSFW)",
  36177. image: {
  36178. source: "./media/characters/chip-mouse/front-nsfw.svg",
  36179. extra: 3528/3408,
  36180. bottom: 0/3528
  36181. }
  36182. },
  36183. },
  36184. [
  36185. {
  36186. name: "Normal",
  36187. height: math.unit(4 + 10/12, "feet"),
  36188. default: true
  36189. },
  36190. ]
  36191. ))
  36192. characterMakers.push(() => makeCharacter(
  36193. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  36194. {
  36195. side: {
  36196. height: math.unit(10, "feet"),
  36197. weight: math.unit(14000, "lb"),
  36198. name: "Side",
  36199. image: {
  36200. source: "./media/characters/kremm/side.svg",
  36201. extra: 1390/1053,
  36202. bottom: 90/1480
  36203. }
  36204. },
  36205. gut: {
  36206. height: math.unit(5.8, "feet"),
  36207. name: "Gut",
  36208. image: {
  36209. source: "./media/characters/kremm/gut.svg"
  36210. }
  36211. },
  36212. ass: {
  36213. height: math.unit(6.1, "feet"),
  36214. name: "Ass",
  36215. image: {
  36216. source: "./media/characters/kremm/ass.svg"
  36217. }
  36218. },
  36219. jaws: {
  36220. height: math.unit(2.2, "feet"),
  36221. name: "Jaws",
  36222. image: {
  36223. source: "./media/characters/kremm/jaws.svg"
  36224. }
  36225. },
  36226. dick: {
  36227. height: math.unit(4.26, "feet"),
  36228. name: "Dick",
  36229. image: {
  36230. source: "./media/characters/kremm/dick.svg"
  36231. }
  36232. },
  36233. },
  36234. [
  36235. {
  36236. name: "Normal",
  36237. height: math.unit(10, "feet"),
  36238. default: true
  36239. },
  36240. ]
  36241. ))
  36242. characterMakers.push(() => makeCharacter(
  36243. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  36244. {
  36245. front: {
  36246. height: math.unit(30, "stories"),
  36247. name: "Front",
  36248. image: {
  36249. source: "./media/characters/kai/front.svg",
  36250. extra: 1892/1718,
  36251. bottom: 162/2054
  36252. }
  36253. },
  36254. },
  36255. [
  36256. {
  36257. name: "Macro",
  36258. height: math.unit(30, "stories"),
  36259. default: true
  36260. },
  36261. ]
  36262. ))
  36263. characterMakers.push(() => makeCharacter(
  36264. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  36265. {
  36266. front: {
  36267. height: math.unit(6 + 4/12, "feet"),
  36268. weight: math.unit(145, "lb"),
  36269. name: "Front",
  36270. image: {
  36271. source: "./media/characters/sykes/front.svg",
  36272. extra: 1321 / 1187,
  36273. bottom: 66 / 1387
  36274. }
  36275. },
  36276. back: {
  36277. height: math.unit(6 + 4/12, "feet"),
  36278. weight: math.unit(145, "lb"),
  36279. name: "Back",
  36280. image: {
  36281. source: "./media/characters/sykes/back.svg",
  36282. extra: 1326/1181,
  36283. bottom: 31/1357
  36284. }
  36285. },
  36286. traditionalOutfit: {
  36287. height: math.unit(6 + 4/12, "feet"),
  36288. weight: math.unit(145, "lb"),
  36289. name: "Traditional Outfit",
  36290. image: {
  36291. source: "./media/characters/sykes/traditional-outfit.svg",
  36292. extra: 1321 / 1187,
  36293. bottom: 66 / 1387
  36294. }
  36295. },
  36296. adventureOutfit: {
  36297. height: math.unit(6 + 4/12, "feet"),
  36298. weight: math.unit(145, "lb"),
  36299. name: "Adventure Outfit",
  36300. image: {
  36301. source: "./media/characters/sykes/adventure-outfit.svg",
  36302. extra: 1321 / 1187,
  36303. bottom: 66 / 1387
  36304. }
  36305. },
  36306. handLeft: {
  36307. height: math.unit(0.9, "feet"),
  36308. name: "Hand (Left)",
  36309. image: {
  36310. source: "./media/characters/sykes/hand-left.svg"
  36311. }
  36312. },
  36313. handRight: {
  36314. height: math.unit(0.839, "feet"),
  36315. name: "Hand (Right)",
  36316. image: {
  36317. source: "./media/characters/sykes/hand-right.svg"
  36318. }
  36319. },
  36320. leftFoot: {
  36321. height: math.unit(1.2, "feet"),
  36322. name: "Foot (Left)",
  36323. image: {
  36324. source: "./media/characters/sykes/foot-left.svg"
  36325. }
  36326. },
  36327. rightFoot: {
  36328. height: math.unit(1.2, "feet"),
  36329. name: "Foot (Right)",
  36330. image: {
  36331. source: "./media/characters/sykes/foot-right.svg"
  36332. }
  36333. },
  36334. maw: {
  36335. height: math.unit(1.93, "feet"),
  36336. name: "Maw",
  36337. image: {
  36338. source: "./media/characters/sykes/maw.svg"
  36339. }
  36340. },
  36341. teeth: {
  36342. height: math.unit(0.51, "feet"),
  36343. name: "Teeth",
  36344. image: {
  36345. source: "./media/characters/sykes/teeth.svg"
  36346. }
  36347. },
  36348. tongue: {
  36349. height: math.unit(2.13, "feet"),
  36350. name: "Tongue",
  36351. image: {
  36352. source: "./media/characters/sykes/tongue.svg"
  36353. }
  36354. },
  36355. uvula: {
  36356. height: math.unit(0.16, "feet"),
  36357. name: "Uvula",
  36358. image: {
  36359. source: "./media/characters/sykes/uvula.svg"
  36360. }
  36361. },
  36362. collar: {
  36363. height: math.unit(0.287, "feet"),
  36364. name: "Collar",
  36365. image: {
  36366. source: "./media/characters/sykes/collar.svg"
  36367. }
  36368. },
  36369. tail: {
  36370. height: math.unit(3.8, "feet"),
  36371. name: "Tail",
  36372. image: {
  36373. source: "./media/characters/sykes/tail.svg"
  36374. }
  36375. },
  36376. },
  36377. [
  36378. {
  36379. name: "Shrunken",
  36380. height: math.unit(5, "inches")
  36381. },
  36382. {
  36383. name: "Normal",
  36384. height: math.unit(6 + 4 / 12, "feet"),
  36385. default: true
  36386. },
  36387. {
  36388. name: "Big",
  36389. height: math.unit(15, "feet")
  36390. },
  36391. ]
  36392. ))
  36393. characterMakers.push(() => makeCharacter(
  36394. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  36395. {
  36396. front: {
  36397. height: math.unit(5 + 8/12, "feet"),
  36398. weight: math.unit(190, "lb"),
  36399. name: "Front",
  36400. image: {
  36401. source: "./media/characters/oven-otter/front.svg",
  36402. extra: 1809/1740,
  36403. bottom: 181/1990
  36404. }
  36405. },
  36406. back: {
  36407. height: math.unit(5 + 8/12, "feet"),
  36408. weight: math.unit(190, "lb"),
  36409. name: "Back",
  36410. image: {
  36411. source: "./media/characters/oven-otter/back.svg",
  36412. extra: 1709/1635,
  36413. bottom: 118/1827
  36414. }
  36415. },
  36416. hand: {
  36417. height: math.unit(1.07, "feet"),
  36418. name: "Hand",
  36419. image: {
  36420. source: "./media/characters/oven-otter/hand.svg"
  36421. }
  36422. },
  36423. beans: {
  36424. height: math.unit(1.74, "feet"),
  36425. name: "Beans",
  36426. image: {
  36427. source: "./media/characters/oven-otter/beans.svg"
  36428. }
  36429. },
  36430. },
  36431. [
  36432. {
  36433. name: "Micro",
  36434. height: math.unit(0.5, "inches")
  36435. },
  36436. {
  36437. name: "Normal",
  36438. height: math.unit(5 + 8/12, "feet"),
  36439. default: true
  36440. },
  36441. {
  36442. name: "Macro",
  36443. height: math.unit(250, "feet")
  36444. },
  36445. {
  36446. name: "Really High",
  36447. height: math.unit(420, "feet")
  36448. },
  36449. ]
  36450. ))
  36451. characterMakers.push(() => makeCharacter(
  36452. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  36453. {
  36454. front: {
  36455. height: math.unit(5, "meters"),
  36456. weight: math.unit(292000000000000, "kg"),
  36457. name: "Front",
  36458. image: {
  36459. source: "./media/characters/devourer/front.svg",
  36460. extra: 1800/1733,
  36461. bottom: 211/2011
  36462. }
  36463. },
  36464. maw: {
  36465. height: math.unit(1.1, "meter"),
  36466. name: "Maw",
  36467. image: {
  36468. source: "./media/characters/devourer/maw.svg"
  36469. }
  36470. },
  36471. },
  36472. [
  36473. {
  36474. name: "Small",
  36475. height: math.unit(3, "meters")
  36476. },
  36477. {
  36478. name: "Large",
  36479. height: math.unit(5, "meters"),
  36480. default: true
  36481. },
  36482. ]
  36483. ))
  36484. characterMakers.push(() => makeCharacter(
  36485. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  36486. {
  36487. front: {
  36488. height: math.unit(6, "feet"),
  36489. weight: math.unit(400, "lb"),
  36490. name: "Front",
  36491. image: {
  36492. source: "./media/characters/ellarby/front.svg",
  36493. extra: 1909/1763,
  36494. bottom: 80/1989
  36495. }
  36496. },
  36497. back: {
  36498. height: math.unit(6, "feet"),
  36499. weight: math.unit(400, "lb"),
  36500. name: "Back",
  36501. image: {
  36502. source: "./media/characters/ellarby/back.svg",
  36503. extra: 1914/1784,
  36504. bottom: 172/2086
  36505. }
  36506. },
  36507. },
  36508. [
  36509. {
  36510. name: "Mischief",
  36511. height: math.unit(18, "inches")
  36512. },
  36513. {
  36514. name: "Trouble",
  36515. height: math.unit(12, "feet")
  36516. },
  36517. {
  36518. name: "Havoc",
  36519. height: math.unit(200, "feet"),
  36520. default: true
  36521. },
  36522. {
  36523. name: "Pandemonium",
  36524. height: math.unit(1, "mile")
  36525. },
  36526. {
  36527. name: "Catastrophe",
  36528. height: math.unit(100, "miles")
  36529. },
  36530. ]
  36531. ))
  36532. characterMakers.push(() => makeCharacter(
  36533. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  36534. {
  36535. front: {
  36536. height: math.unit(4.7, "meters"),
  36537. weight: math.unit(6500, "kg"),
  36538. name: "Front",
  36539. image: {
  36540. source: "./media/characters/vex/front.svg",
  36541. extra: 1288/1140,
  36542. bottom: 100/1388
  36543. }
  36544. },
  36545. },
  36546. [
  36547. {
  36548. name: "Normal",
  36549. height: math.unit(4.7, "meters"),
  36550. default: true
  36551. },
  36552. ]
  36553. ))
  36554. characterMakers.push(() => makeCharacter(
  36555. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  36556. {
  36557. normal: {
  36558. height: math.unit(6, "feet"),
  36559. weight: math.unit(350, "lb"),
  36560. name: "Normal",
  36561. image: {
  36562. source: "./media/characters/teshy/normal.svg",
  36563. extra: 1795/1735,
  36564. bottom: 16/1811
  36565. }
  36566. },
  36567. monsterFront: {
  36568. height: math.unit(12, "feet"),
  36569. weight: math.unit(4700, "lb"),
  36570. name: "Monster (Front)",
  36571. image: {
  36572. source: "./media/characters/teshy/monster-front.svg",
  36573. extra: 2042/2034,
  36574. bottom: 128/2170
  36575. }
  36576. },
  36577. monsterSide: {
  36578. height: math.unit(12, "feet"),
  36579. weight: math.unit(4700, "lb"),
  36580. name: "Monster (Side)",
  36581. image: {
  36582. source: "./media/characters/teshy/monster-side.svg",
  36583. extra: 2067/2056,
  36584. bottom: 70/2137
  36585. }
  36586. },
  36587. monsterBack: {
  36588. height: math.unit(12, "feet"),
  36589. weight: math.unit(4700, "lb"),
  36590. name: "Monster (Back)",
  36591. image: {
  36592. source: "./media/characters/teshy/monster-back.svg",
  36593. extra: 1921/1914,
  36594. bottom: 171/2092
  36595. }
  36596. },
  36597. },
  36598. [
  36599. {
  36600. name: "Normal",
  36601. height: math.unit(6, "feet"),
  36602. default: true
  36603. },
  36604. ]
  36605. ))
  36606. characterMakers.push(() => makeCharacter(
  36607. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  36608. {
  36609. front: {
  36610. height: math.unit(6, "feet"),
  36611. name: "Front",
  36612. image: {
  36613. source: "./media/characters/ramey/front.svg",
  36614. extra: 790/787,
  36615. bottom: 27/817
  36616. }
  36617. },
  36618. },
  36619. [
  36620. {
  36621. name: "Normal",
  36622. height: math.unit(6, "feet"),
  36623. default: true
  36624. },
  36625. ]
  36626. ))
  36627. characterMakers.push(() => makeCharacter(
  36628. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  36629. {
  36630. front: {
  36631. height: math.unit(5 + 5/12, "feet"),
  36632. weight: math.unit(120, "lb"),
  36633. name: "Front",
  36634. image: {
  36635. source: "./media/characters/phirae/front.svg",
  36636. extra: 2491/2436,
  36637. bottom: 38/2529
  36638. }
  36639. },
  36640. },
  36641. [
  36642. {
  36643. name: "Normal",
  36644. height: math.unit(5 + 5/12, "feet"),
  36645. default: true
  36646. },
  36647. ]
  36648. ))
  36649. characterMakers.push(() => makeCharacter(
  36650. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  36651. {
  36652. front: {
  36653. height: math.unit(5 + 3/12, "feet"),
  36654. name: "Front",
  36655. image: {
  36656. source: "./media/characters/stagglas/front.svg",
  36657. extra: 962/882,
  36658. bottom: 53/1015
  36659. }
  36660. },
  36661. feral: {
  36662. height: math.unit(335, "cm"),
  36663. name: "Feral",
  36664. image: {
  36665. source: "./media/characters/stagglas/feral.svg",
  36666. extra: 1732/1090,
  36667. bottom: 48/1780
  36668. }
  36669. },
  36670. },
  36671. [
  36672. {
  36673. name: "Normal",
  36674. height: math.unit(5 + 3/12, "feet"),
  36675. default: true
  36676. },
  36677. ]
  36678. ))
  36679. characterMakers.push(() => makeCharacter(
  36680. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  36681. {
  36682. front: {
  36683. height: math.unit(5 + 4/12, "feet"),
  36684. weight: math.unit(145, "lb"),
  36685. name: "Front",
  36686. image: {
  36687. source: "./media/characters/starra/front.svg",
  36688. extra: 1790/1691,
  36689. bottom: 91/1881
  36690. }
  36691. },
  36692. },
  36693. [
  36694. {
  36695. name: "Normal",
  36696. height: math.unit(5 + 4/12, "feet"),
  36697. default: true
  36698. },
  36699. ]
  36700. ))
  36701. characterMakers.push(() => makeCharacter(
  36702. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  36703. {
  36704. front: {
  36705. height: math.unit(3.5, "meters"),
  36706. name: "Front",
  36707. image: {
  36708. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  36709. extra: 1248/972,
  36710. bottom: 38/1286
  36711. }
  36712. },
  36713. },
  36714. [
  36715. {
  36716. name: "Normal",
  36717. height: math.unit(3.5, "meters"),
  36718. default: true
  36719. },
  36720. ]
  36721. ))
  36722. characterMakers.push(() => makeCharacter(
  36723. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  36724. {
  36725. side: {
  36726. height: math.unit(8 + 2/12, "feet"),
  36727. weight: math.unit(1240, "lb"),
  36728. name: "Side",
  36729. image: {
  36730. source: "./media/characters/mika-valentine/side.svg",
  36731. extra: 2670/2501,
  36732. bottom: 250/2920
  36733. }
  36734. },
  36735. },
  36736. [
  36737. {
  36738. name: "Normal",
  36739. height: math.unit(8 + 2/12, "feet"),
  36740. default: true
  36741. },
  36742. ]
  36743. ))
  36744. characterMakers.push(() => makeCharacter(
  36745. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  36746. {
  36747. front: {
  36748. height: math.unit(7 + 2/12, "feet"),
  36749. name: "Front",
  36750. image: {
  36751. source: "./media/characters/xoltol/front.svg",
  36752. extra: 2212/2124,
  36753. bottom: 84/2296
  36754. }
  36755. },
  36756. side: {
  36757. height: math.unit(7 + 2/12, "feet"),
  36758. name: "Side",
  36759. image: {
  36760. source: "./media/characters/xoltol/side.svg",
  36761. extra: 2273/2197,
  36762. bottom: 26/2299
  36763. }
  36764. },
  36765. hand: {
  36766. height: math.unit(2.5, "feet"),
  36767. name: "Hand",
  36768. image: {
  36769. source: "./media/characters/xoltol/hand.svg"
  36770. }
  36771. },
  36772. },
  36773. [
  36774. {
  36775. name: "Small-ish",
  36776. height: math.unit(5 + 11/12, "feet")
  36777. },
  36778. {
  36779. name: "Normal",
  36780. height: math.unit(7 + 2/12, "feet")
  36781. },
  36782. {
  36783. name: "\"Macro\"",
  36784. height: math.unit(14 + 9/12, "feet"),
  36785. default: true
  36786. },
  36787. {
  36788. name: "Alternate Height",
  36789. height: math.unit(20, "feet")
  36790. },
  36791. {
  36792. name: "Actually Macro",
  36793. height: math.unit(100, "feet")
  36794. },
  36795. ]
  36796. ))
  36797. characterMakers.push(() => makeCharacter(
  36798. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  36799. {
  36800. front: {
  36801. height: math.unit(5 + 2/12, "feet"),
  36802. weight: math.unit(75, "kg"),
  36803. name: "Front",
  36804. image: {
  36805. source: "./media/characters/kotetsu-redwood/front.svg",
  36806. extra: 1053/942,
  36807. bottom: 60/1113
  36808. }
  36809. },
  36810. },
  36811. [
  36812. {
  36813. name: "Normal",
  36814. height: math.unit(5 + 2/12, "feet"),
  36815. default: true
  36816. },
  36817. ]
  36818. ))
  36819. characterMakers.push(() => makeCharacter(
  36820. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  36821. {
  36822. front: {
  36823. height: math.unit(2.4, "meters"),
  36824. weight: math.unit(125, "kg"),
  36825. name: "Front",
  36826. image: {
  36827. source: "./media/characters/lilith/front.svg",
  36828. extra: 1590/1513,
  36829. bottom: 203/1793
  36830. }
  36831. },
  36832. },
  36833. [
  36834. {
  36835. name: "Humanoid",
  36836. height: math.unit(2.4, "meters")
  36837. },
  36838. {
  36839. name: "Normal",
  36840. height: math.unit(6, "meters"),
  36841. default: true
  36842. },
  36843. {
  36844. name: "Largest",
  36845. height: math.unit(55, "meters")
  36846. },
  36847. ]
  36848. ))
  36849. characterMakers.push(() => makeCharacter(
  36850. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  36851. {
  36852. front: {
  36853. height: math.unit(8 + 4/12, "feet"),
  36854. weight: math.unit(535, "lb"),
  36855. name: "Front",
  36856. image: {
  36857. source: "./media/characters/beh'kah-bolger/front.svg",
  36858. extra: 1660/1603,
  36859. bottom: 37/1697
  36860. }
  36861. },
  36862. },
  36863. [
  36864. {
  36865. name: "Normal",
  36866. height: math.unit(8 + 4/12, "feet"),
  36867. default: true
  36868. },
  36869. {
  36870. name: "Kaiju",
  36871. height: math.unit(250, "feet")
  36872. },
  36873. {
  36874. name: "Still Growing",
  36875. height: math.unit(10, "miles")
  36876. },
  36877. {
  36878. name: "Continental",
  36879. height: math.unit(5000, "miles")
  36880. },
  36881. {
  36882. name: "Final Form",
  36883. height: math.unit(2500000, "miles")
  36884. },
  36885. ]
  36886. ))
  36887. characterMakers.push(() => makeCharacter(
  36888. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  36889. {
  36890. front: {
  36891. height: math.unit(7 + 2/12, "feet"),
  36892. weight: math.unit(230, "kg"),
  36893. name: "Front",
  36894. image: {
  36895. source: "./media/characters/tatyana-milewska/front.svg",
  36896. extra: 1199/1150,
  36897. bottom: 86/1285
  36898. }
  36899. },
  36900. },
  36901. [
  36902. {
  36903. name: "Normal",
  36904. height: math.unit(7 + 2/12, "feet"),
  36905. default: true
  36906. },
  36907. {
  36908. name: "Big",
  36909. height: math.unit(12, "feet")
  36910. },
  36911. {
  36912. name: "Minimacro",
  36913. height: math.unit(20, "feet")
  36914. },
  36915. {
  36916. name: "Macro",
  36917. height: math.unit(120, "feet")
  36918. },
  36919. ]
  36920. ))
  36921. characterMakers.push(() => makeCharacter(
  36922. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  36923. {
  36924. front: {
  36925. height: math.unit(7 + 8/12, "feet"),
  36926. weight: math.unit(152, "kg"),
  36927. name: "Front",
  36928. image: {
  36929. source: "./media/characters/helen-arri/front.svg",
  36930. extra: 440/423,
  36931. bottom: 14/454
  36932. }
  36933. },
  36934. back: {
  36935. height: math.unit(7 + 8/12, "feet"),
  36936. weight: math.unit(152, "kg"),
  36937. name: "Back",
  36938. image: {
  36939. source: "./media/characters/helen-arri/back.svg",
  36940. extra: 443/426,
  36941. bottom: 8/451
  36942. }
  36943. },
  36944. },
  36945. [
  36946. {
  36947. name: "Normal",
  36948. height: math.unit(7 + 8/12, "feet"),
  36949. default: true
  36950. },
  36951. {
  36952. name: "Big",
  36953. height: math.unit(14, "feet")
  36954. },
  36955. {
  36956. name: "Minimacro",
  36957. height: math.unit(24, "feet")
  36958. },
  36959. {
  36960. name: "Macro",
  36961. height: math.unit(140, "feet")
  36962. },
  36963. ]
  36964. ))
  36965. characterMakers.push(() => makeCharacter(
  36966. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  36967. {
  36968. front: {
  36969. height: math.unit(6, "meters"),
  36970. name: "Front",
  36971. image: {
  36972. source: "./media/characters/ehanu-rehu/front.svg",
  36973. extra: 1800/1800,
  36974. bottom: 59/1859
  36975. }
  36976. },
  36977. },
  36978. [
  36979. {
  36980. name: "Normal",
  36981. height: math.unit(6, "meters"),
  36982. default: true
  36983. },
  36984. ]
  36985. ))
  36986. characterMakers.push(() => makeCharacter(
  36987. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  36988. {
  36989. front: {
  36990. height: math.unit(7 + 3/12, "feet"),
  36991. name: "Front",
  36992. image: {
  36993. source: "./media/characters/renholder/front.svg",
  36994. extra: 3096/2960,
  36995. bottom: 250/3346
  36996. }
  36997. },
  36998. },
  36999. [
  37000. {
  37001. name: "Normal Bat",
  37002. height: math.unit(7 + 3/12, "feet"),
  37003. default: true
  37004. },
  37005. {
  37006. name: "Slightly Tall Bat",
  37007. height: math.unit(100, "feet")
  37008. },
  37009. {
  37010. name: "Big Bat",
  37011. height: math.unit(1000, "feet")
  37012. },
  37013. {
  37014. name: "City-Sized Bat",
  37015. height: math.unit(200000, "feet")
  37016. },
  37017. {
  37018. name: "Bigger Bat",
  37019. height: math.unit(10000, "miles")
  37020. },
  37021. {
  37022. name: "Solar Sized Bat",
  37023. height: math.unit(100, "AU")
  37024. },
  37025. {
  37026. name: "Galactic Bat",
  37027. height: math.unit(200000, "lightyears")
  37028. },
  37029. {
  37030. name: "Universally Known Bat",
  37031. height: math.unit(1, "universe")
  37032. },
  37033. ]
  37034. ))
  37035. characterMakers.push(() => makeCharacter(
  37036. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  37037. {
  37038. front: {
  37039. height: math.unit(6 + 11/12, "feet"),
  37040. weight: math.unit(250, "lb"),
  37041. name: "Front",
  37042. image: {
  37043. source: "./media/characters/cookiecat/front.svg",
  37044. extra: 893/827,
  37045. bottom: 14/907
  37046. }
  37047. },
  37048. },
  37049. [
  37050. {
  37051. name: "Micro",
  37052. height: math.unit(3, "inches")
  37053. },
  37054. {
  37055. name: "Normal",
  37056. height: math.unit(6 + 11/12, "feet"),
  37057. default: true
  37058. },
  37059. {
  37060. name: "Macro",
  37061. height: math.unit(100, "feet")
  37062. },
  37063. {
  37064. name: "Macro+",
  37065. height: math.unit(404, "feet")
  37066. },
  37067. {
  37068. name: "Megamacro",
  37069. height: math.unit(165, "miles")
  37070. },
  37071. {
  37072. name: "Planetary",
  37073. height: math.unit(4600, "miles")
  37074. },
  37075. ]
  37076. ))
  37077. characterMakers.push(() => makeCharacter(
  37078. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  37079. {
  37080. front: {
  37081. height: math.unit(10 + 3/12, "feet"),
  37082. weight: math.unit(1500, "lb"),
  37083. name: "Front",
  37084. image: {
  37085. source: "./media/characters/tux-kusanagi/front.svg",
  37086. extra: 944/840,
  37087. bottom: 39/983
  37088. }
  37089. },
  37090. back: {
  37091. height: math.unit(10 + 3/12, "feet"),
  37092. weight: math.unit(1500, "lb"),
  37093. name: "Back",
  37094. image: {
  37095. source: "./media/characters/tux-kusanagi/back.svg",
  37096. extra: 941/842,
  37097. bottom: 28/969
  37098. }
  37099. },
  37100. rump: {
  37101. height: math.unit(5.25, "feet"),
  37102. name: "Rump",
  37103. image: {
  37104. source: "./media/characters/tux-kusanagi/rump.svg"
  37105. }
  37106. },
  37107. beak: {
  37108. height: math.unit(1.54, "feet"),
  37109. name: "Beak",
  37110. image: {
  37111. source: "./media/characters/tux-kusanagi/beak.svg"
  37112. }
  37113. },
  37114. },
  37115. [
  37116. {
  37117. name: "Normal",
  37118. height: math.unit(10 + 3/12, "feet"),
  37119. default: true
  37120. },
  37121. ]
  37122. ))
  37123. characterMakers.push(() => makeCharacter(
  37124. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  37125. {
  37126. front: {
  37127. height: math.unit(58, "feet"),
  37128. weight: math.unit(200, "tons"),
  37129. name: "Front",
  37130. image: {
  37131. source: "./media/characters/uzarmazari/front.svg",
  37132. extra: 1575/1455,
  37133. bottom: 152/1727
  37134. }
  37135. },
  37136. back: {
  37137. height: math.unit(58, "feet"),
  37138. weight: math.unit(200, "tons"),
  37139. name: "Back",
  37140. image: {
  37141. source: "./media/characters/uzarmazari/back.svg",
  37142. extra: 1585/1510,
  37143. bottom: 157/1742
  37144. }
  37145. },
  37146. head: {
  37147. height: math.unit(26, "feet"),
  37148. name: "Head",
  37149. image: {
  37150. source: "./media/characters/uzarmazari/head.svg"
  37151. }
  37152. },
  37153. },
  37154. [
  37155. {
  37156. name: "Normal",
  37157. height: math.unit(58, "feet"),
  37158. default: true
  37159. },
  37160. ]
  37161. ))
  37162. characterMakers.push(() => makeCharacter(
  37163. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  37164. {
  37165. side: {
  37166. height: math.unit(15, "feet"),
  37167. name: "Side",
  37168. image: {
  37169. source: "./media/characters/akitu/side.svg",
  37170. extra: 1421/1321,
  37171. bottom: 157/1578
  37172. }
  37173. },
  37174. front: {
  37175. height: math.unit(15, "feet"),
  37176. name: "Front",
  37177. image: {
  37178. source: "./media/characters/akitu/front.svg",
  37179. extra: 1435/1326,
  37180. bottom: 232/1667
  37181. }
  37182. },
  37183. },
  37184. [
  37185. {
  37186. name: "Normal",
  37187. height: math.unit(15, "feet"),
  37188. default: true
  37189. },
  37190. ]
  37191. ))
  37192. characterMakers.push(() => makeCharacter(
  37193. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  37194. {
  37195. front: {
  37196. height: math.unit(10 + 8/12, "feet"),
  37197. name: "Front",
  37198. image: {
  37199. source: "./media/characters/azalie-croixland/front.svg",
  37200. extra: 1972/1856,
  37201. bottom: 31/2003
  37202. }
  37203. },
  37204. },
  37205. [
  37206. {
  37207. name: "Original Height",
  37208. height: math.unit(5 + 4/12, "feet")
  37209. },
  37210. {
  37211. name: "Normal Height",
  37212. height: math.unit(10 + 8/12, "feet"),
  37213. default: true
  37214. },
  37215. ]
  37216. ))
  37217. characterMakers.push(() => makeCharacter(
  37218. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  37219. {
  37220. side: {
  37221. height: math.unit(7 + 1/12, "feet"),
  37222. weight: math.unit(245, "lb"),
  37223. name: "Side",
  37224. image: {
  37225. source: "./media/characters/kavus-kazian/side.svg",
  37226. extra: 349/342,
  37227. bottom: 15/364
  37228. }
  37229. },
  37230. },
  37231. [
  37232. {
  37233. name: "Normal",
  37234. height: math.unit(7 + 1/12, "feet"),
  37235. default: true
  37236. },
  37237. ]
  37238. ))
  37239. characterMakers.push(() => makeCharacter(
  37240. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  37241. {
  37242. normalFront: {
  37243. height: math.unit(5 + 11/12, "feet"),
  37244. name: "Front",
  37245. image: {
  37246. source: "./media/characters/moonlight-rose/normal-front.svg",
  37247. extra: 1980/1825,
  37248. bottom: 18/1998
  37249. },
  37250. form: "normal",
  37251. default: true
  37252. },
  37253. normalBack: {
  37254. height: math.unit(5 + 11/12, "feet"),
  37255. name: "Back",
  37256. image: {
  37257. source: "./media/characters/moonlight-rose/normal-back.svg",
  37258. extra: 2010/1839,
  37259. bottom: 10/2020
  37260. },
  37261. form: "normal"
  37262. },
  37263. demonFront: {
  37264. height: math.unit(1.5, "earths"),
  37265. name: "Front",
  37266. image: {
  37267. source: "./media/characters/moonlight-rose/demon.svg",
  37268. extra: 1400/1294,
  37269. bottom: 45/1445
  37270. },
  37271. form: "demon",
  37272. default: true
  37273. },
  37274. terraFront: {
  37275. height: math.unit(1.5, "earths"),
  37276. name: "Front",
  37277. image: {
  37278. source: "./media/characters/moonlight-rose/terra.svg"
  37279. },
  37280. form: "terra",
  37281. default: true
  37282. },
  37283. jupiterFront: {
  37284. height: math.unit(69911*2, "km"),
  37285. name: "Front",
  37286. image: {
  37287. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  37288. extra: 1367/1286,
  37289. bottom: 55/1422
  37290. },
  37291. form: "jupiter",
  37292. default: true
  37293. },
  37294. neptuneFront: {
  37295. height: math.unit(24622*2, "feet"),
  37296. name: "Front",
  37297. image: {
  37298. source: "./media/characters/moonlight-rose/neptune-front.svg",
  37299. extra: 1851/1712,
  37300. bottom: 0/1851
  37301. },
  37302. form: "neptune",
  37303. default: true
  37304. },
  37305. },
  37306. [
  37307. {
  37308. name: "\"Natural\" Height",
  37309. height: math.unit(5 + 11/12, "feet"),
  37310. form: "normal"
  37311. },
  37312. {
  37313. name: "Smallest comfortable size",
  37314. height: math.unit(40, "meters"),
  37315. form: "normal"
  37316. },
  37317. {
  37318. name: "Common size",
  37319. height: math.unit(50, "km"),
  37320. form: "normal",
  37321. default: true
  37322. },
  37323. {
  37324. name: "Normal",
  37325. height: math.unit(1.5, "earths"),
  37326. form: "demon",
  37327. default: true
  37328. },
  37329. {
  37330. name: "Universal",
  37331. height: math.unit(15, "universes"),
  37332. form: "demon"
  37333. },
  37334. {
  37335. name: "Earth",
  37336. height: math.unit(1.5, "earths"),
  37337. form: "terra",
  37338. default: true
  37339. },
  37340. {
  37341. name: "Super Earth",
  37342. height: math.unit(67.5, "earths"),
  37343. form: "terra"
  37344. },
  37345. {
  37346. name: "Doesn't fit in a solar system...",
  37347. height: math.unit(1, "galaxy"),
  37348. form: "terra"
  37349. },
  37350. {
  37351. name: "Saturn",
  37352. height: math.unit(58232*2, "km"),
  37353. form: "jupiter"
  37354. },
  37355. {
  37356. name: "Jupiter",
  37357. height: math.unit(69911*2, "km"),
  37358. form: "jupiter",
  37359. default: true
  37360. },
  37361. {
  37362. name: "HD 100546 b",
  37363. height: math.unit(482938, "km"),
  37364. form: "jupiter"
  37365. },
  37366. {
  37367. name: "Enceladus",
  37368. height: math.unit(513*2, "km"),
  37369. form: "neptune"
  37370. },
  37371. {
  37372. name: "Europe",
  37373. height: math.unit(1560*2, "km"),
  37374. form: "neptune"
  37375. },
  37376. {
  37377. name: "Neptune",
  37378. height: math.unit(24622*2, "km"),
  37379. form: "neptune",
  37380. default: true
  37381. },
  37382. {
  37383. name: "CoRoT-9b",
  37384. height: math.unit(75067*2, "km"),
  37385. form: "neptune"
  37386. },
  37387. ],
  37388. {
  37389. "normal": {
  37390. name: "Normal",
  37391. default: true
  37392. },
  37393. "demon": {
  37394. name: "Demon"
  37395. },
  37396. "terra": {
  37397. name: "Terra"
  37398. },
  37399. "jupiter": {
  37400. name: "Jupiter"
  37401. },
  37402. "neptune": {
  37403. name: "Neptune"
  37404. }
  37405. }
  37406. ))
  37407. characterMakers.push(() => makeCharacter(
  37408. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  37409. {
  37410. front: {
  37411. height: math.unit(16, "feet"),
  37412. weight: math.unit(610, "kg"),
  37413. name: "Front",
  37414. image: {
  37415. source: "./media/characters/huckle/front.svg",
  37416. extra: 1731/1625,
  37417. bottom: 33/1764
  37418. }
  37419. },
  37420. back: {
  37421. height: math.unit(16, "feet"),
  37422. weight: math.unit(610, "kg"),
  37423. name: "Back",
  37424. image: {
  37425. source: "./media/characters/huckle/back.svg",
  37426. extra: 1738/1651,
  37427. bottom: 37/1775
  37428. }
  37429. },
  37430. laughing: {
  37431. height: math.unit(3.75, "feet"),
  37432. name: "Laughing",
  37433. image: {
  37434. source: "./media/characters/huckle/laughing.svg"
  37435. }
  37436. },
  37437. angry: {
  37438. height: math.unit(4.15, "feet"),
  37439. name: "Angry",
  37440. image: {
  37441. source: "./media/characters/huckle/angry.svg"
  37442. }
  37443. },
  37444. },
  37445. [
  37446. {
  37447. name: "Normal",
  37448. height: math.unit(16, "feet"),
  37449. default: true
  37450. },
  37451. {
  37452. name: "Mini Macro",
  37453. height: math.unit(463, "feet")
  37454. },
  37455. {
  37456. name: "Macro",
  37457. height: math.unit(1680, "meters")
  37458. },
  37459. {
  37460. name: "Mega Macro",
  37461. height: math.unit(175, "km")
  37462. },
  37463. {
  37464. name: "Terra Macro",
  37465. height: math.unit(32, "gigameters")
  37466. },
  37467. {
  37468. name: "Multiverse+",
  37469. height: math.unit(2.56e23, "yottameters")
  37470. },
  37471. ]
  37472. ))
  37473. characterMakers.push(() => makeCharacter(
  37474. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  37475. {
  37476. front: {
  37477. height: math.unit(6 + 9/12, "feet"),
  37478. weight: math.unit(280, "lb"),
  37479. name: "Front",
  37480. image: {
  37481. source: "./media/characters/candy/front.svg",
  37482. extra: 234/217,
  37483. bottom: 11/245
  37484. }
  37485. },
  37486. },
  37487. [
  37488. {
  37489. name: "Really Small",
  37490. height: math.unit(0.1, "nm")
  37491. },
  37492. {
  37493. name: "Micro",
  37494. height: math.unit(2, "inches")
  37495. },
  37496. {
  37497. name: "Normal",
  37498. height: math.unit(6 + 9/12, "feet"),
  37499. default: true
  37500. },
  37501. {
  37502. name: "Small Macro",
  37503. height: math.unit(69, "feet")
  37504. },
  37505. {
  37506. name: "Macro",
  37507. height: math.unit(160, "feet")
  37508. },
  37509. {
  37510. name: "Megamacro",
  37511. height: math.unit(22000, "miles")
  37512. },
  37513. {
  37514. name: "Gigamacro",
  37515. height: math.unit(50000, "miles")
  37516. },
  37517. ]
  37518. ))
  37519. characterMakers.push(() => makeCharacter(
  37520. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  37521. {
  37522. front: {
  37523. height: math.unit(4, "feet"),
  37524. weight: math.unit(90, "lb"),
  37525. name: "Front",
  37526. image: {
  37527. source: "./media/characters/joey-mcdonald/front.svg",
  37528. extra: 1059/852,
  37529. bottom: 33/1092
  37530. }
  37531. },
  37532. back: {
  37533. height: math.unit(4, "feet"),
  37534. weight: math.unit(90, "lb"),
  37535. name: "Back",
  37536. image: {
  37537. source: "./media/characters/joey-mcdonald/back.svg",
  37538. extra: 1077/879,
  37539. bottom: 5/1082
  37540. }
  37541. },
  37542. frontKobold: {
  37543. height: math.unit(4, "feet"),
  37544. weight: math.unit(100, "lb"),
  37545. name: "Front-kobold",
  37546. image: {
  37547. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  37548. extra: 1480/1367,
  37549. bottom: 0/1480
  37550. }
  37551. },
  37552. backKobold: {
  37553. height: math.unit(4, "feet"),
  37554. weight: math.unit(100, "lb"),
  37555. name: "Back-kobold",
  37556. image: {
  37557. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  37558. extra: 1449/1361,
  37559. bottom: 0/1449
  37560. }
  37561. },
  37562. },
  37563. [
  37564. {
  37565. name: "Normal",
  37566. height: math.unit(4, "feet"),
  37567. default: true
  37568. },
  37569. ]
  37570. ))
  37571. characterMakers.push(() => makeCharacter(
  37572. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  37573. {
  37574. front: {
  37575. height: math.unit(12 + 6/12, "feet"),
  37576. name: "Front",
  37577. image: {
  37578. source: "./media/characters/kass-lockheed/front.svg",
  37579. extra: 354/343,
  37580. bottom: 9/363
  37581. }
  37582. },
  37583. back: {
  37584. height: math.unit(12 + 6/12, "feet"),
  37585. name: "Back",
  37586. image: {
  37587. source: "./media/characters/kass-lockheed/back.svg",
  37588. extra: 364/352,
  37589. bottom: 3/367
  37590. }
  37591. },
  37592. dick: {
  37593. height: math.unit(3.12, "feet"),
  37594. name: "Dick",
  37595. image: {
  37596. source: "./media/characters/kass-lockheed/dick.svg"
  37597. }
  37598. },
  37599. head: {
  37600. height: math.unit(2.6, "feet"),
  37601. name: "Head",
  37602. image: {
  37603. source: "./media/characters/kass-lockheed/head.svg"
  37604. }
  37605. },
  37606. bleh: {
  37607. height: math.unit(2.85, "feet"),
  37608. name: "Bleh",
  37609. image: {
  37610. source: "./media/characters/kass-lockheed/bleh.svg"
  37611. }
  37612. },
  37613. smug: {
  37614. height: math.unit(2.85, "feet"),
  37615. name: "Smug",
  37616. image: {
  37617. source: "./media/characters/kass-lockheed/smug.svg"
  37618. }
  37619. },
  37620. },
  37621. [
  37622. {
  37623. name: "Normal",
  37624. height: math.unit(12 + 6/12, "feet"),
  37625. default: true
  37626. },
  37627. ]
  37628. ))
  37629. characterMakers.push(() => makeCharacter(
  37630. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  37631. {
  37632. front: {
  37633. height: math.unit(6 + 2/12, "feet"),
  37634. name: "Front",
  37635. image: {
  37636. source: "./media/characters/taylor/front.svg",
  37637. extra: 639/495,
  37638. bottom: 12/651
  37639. }
  37640. },
  37641. },
  37642. [
  37643. {
  37644. name: "Normal",
  37645. height: math.unit(6 + 2/12, "feet"),
  37646. default: true
  37647. },
  37648. {
  37649. name: "Big",
  37650. height: math.unit(15, "feet")
  37651. },
  37652. {
  37653. name: "Lorg",
  37654. height: math.unit(80, "feet")
  37655. },
  37656. {
  37657. name: "Too Lorg",
  37658. height: math.unit(120, "feet")
  37659. },
  37660. ]
  37661. ))
  37662. characterMakers.push(() => makeCharacter(
  37663. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  37664. {
  37665. front: {
  37666. height: math.unit(15, "feet"),
  37667. name: "Front",
  37668. image: {
  37669. source: "./media/characters/kaizer/front.svg",
  37670. extra: 1612/1436,
  37671. bottom: 43/1655
  37672. }
  37673. },
  37674. },
  37675. [
  37676. {
  37677. name: "Normal",
  37678. height: math.unit(15, "feet"),
  37679. default: true
  37680. },
  37681. ]
  37682. ))
  37683. characterMakers.push(() => makeCharacter(
  37684. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  37685. {
  37686. front: {
  37687. height: math.unit(2, "feet"),
  37688. weight: math.unit(30, "lb"),
  37689. name: "Front",
  37690. image: {
  37691. source: "./media/characters/sandy/front.svg",
  37692. extra: 1439/1307,
  37693. bottom: 194/1633
  37694. }
  37695. },
  37696. },
  37697. [
  37698. {
  37699. name: "Normal",
  37700. height: math.unit(2, "feet"),
  37701. default: true
  37702. },
  37703. ]
  37704. ))
  37705. characterMakers.push(() => makeCharacter(
  37706. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  37707. {
  37708. front: {
  37709. height: math.unit(3, "feet"),
  37710. name: "Front",
  37711. image: {
  37712. source: "./media/characters/mellvi/front.svg",
  37713. extra: 1831/1630,
  37714. bottom: 58/1889
  37715. }
  37716. },
  37717. },
  37718. [
  37719. {
  37720. name: "Normal",
  37721. height: math.unit(3, "feet"),
  37722. default: true
  37723. },
  37724. ]
  37725. ))
  37726. characterMakers.push(() => makeCharacter(
  37727. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  37728. {
  37729. front: {
  37730. height: math.unit(5 + 11/12, "feet"),
  37731. weight: math.unit(200, "lb"),
  37732. name: "Front",
  37733. image: {
  37734. source: "./media/characters/shirou/front.svg",
  37735. extra: 2491/2383,
  37736. bottom: 189/2680
  37737. }
  37738. },
  37739. back: {
  37740. height: math.unit(5 + 11/12, "feet"),
  37741. weight: math.unit(200, "lb"),
  37742. name: "Back",
  37743. image: {
  37744. source: "./media/characters/shirou/back.svg",
  37745. extra: 2554/2450,
  37746. bottom: 76/2630
  37747. }
  37748. },
  37749. },
  37750. [
  37751. {
  37752. name: "Normal",
  37753. height: math.unit(5 + 11/12, "feet"),
  37754. default: true
  37755. },
  37756. ]
  37757. ))
  37758. characterMakers.push(() => makeCharacter(
  37759. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  37760. {
  37761. front: {
  37762. height: math.unit(6 + 3/12, "feet"),
  37763. weight: math.unit(177, "lb"),
  37764. name: "Front",
  37765. image: {
  37766. source: "./media/characters/noryu/front.svg",
  37767. extra: 973/885,
  37768. bottom: 10/983
  37769. }
  37770. },
  37771. },
  37772. [
  37773. {
  37774. name: "Normal",
  37775. height: math.unit(6 + 3/12, "feet"),
  37776. default: true
  37777. },
  37778. ]
  37779. ))
  37780. characterMakers.push(() => makeCharacter(
  37781. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  37782. {
  37783. front: {
  37784. height: math.unit(5 + 6/12, "feet"),
  37785. weight: math.unit(170, "lb"),
  37786. name: "Front",
  37787. image: {
  37788. source: "./media/characters/mevolas-rubenido/front.svg",
  37789. extra: 2109/1901,
  37790. bottom: 96/2205
  37791. }
  37792. },
  37793. },
  37794. [
  37795. {
  37796. name: "Normal",
  37797. height: math.unit(5 + 6/12, "feet"),
  37798. default: true
  37799. },
  37800. ]
  37801. ))
  37802. characterMakers.push(() => makeCharacter(
  37803. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  37804. {
  37805. front: {
  37806. height: math.unit(100, "feet"),
  37807. name: "Front",
  37808. image: {
  37809. source: "./media/characters/dee/front.svg",
  37810. extra: 2153/2036,
  37811. bottom: 59/2212
  37812. }
  37813. },
  37814. back: {
  37815. height: math.unit(100, "feet"),
  37816. name: "Back",
  37817. image: {
  37818. source: "./media/characters/dee/back.svg",
  37819. extra: 2183/2058,
  37820. bottom: 75/2258
  37821. }
  37822. },
  37823. foot: {
  37824. height: math.unit(19.43, "feet"),
  37825. name: "Foot",
  37826. image: {
  37827. source: "./media/characters/dee/foot.svg"
  37828. }
  37829. },
  37830. hoof: {
  37831. height: math.unit(20.6, "feet"),
  37832. name: "Hoof",
  37833. image: {
  37834. source: "./media/characters/dee/hoof.svg"
  37835. }
  37836. },
  37837. },
  37838. [
  37839. {
  37840. name: "Macro",
  37841. height: math.unit(100, "feet"),
  37842. default: true
  37843. },
  37844. ]
  37845. ))
  37846. characterMakers.push(() => makeCharacter(
  37847. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  37848. {
  37849. front: {
  37850. height: math.unit(5 + 6/12, "feet"),
  37851. name: "Front",
  37852. image: {
  37853. source: "./media/characters/teh/front.svg",
  37854. extra: 1002/847,
  37855. bottom: 62/1064
  37856. }
  37857. },
  37858. },
  37859. [
  37860. {
  37861. name: "Normal",
  37862. height: math.unit(5 + 6/12, "feet"),
  37863. default: true
  37864. },
  37865. ]
  37866. ))
  37867. characterMakers.push(() => makeCharacter(
  37868. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  37869. {
  37870. side: {
  37871. height: math.unit(6 + 1/12, "feet"),
  37872. weight: math.unit(204, "lb"),
  37873. name: "Side",
  37874. image: {
  37875. source: "./media/characters/quicksilver-ayukoti/side.svg",
  37876. extra: 974/775,
  37877. bottom: 169/1143
  37878. }
  37879. },
  37880. sitting: {
  37881. height: math.unit(6 + 2/12, "feet"),
  37882. weight: math.unit(204, "lb"),
  37883. name: "Sitting",
  37884. image: {
  37885. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  37886. extra: 1175/964,
  37887. bottom: 378/1553
  37888. }
  37889. },
  37890. },
  37891. [
  37892. {
  37893. name: "Normal",
  37894. height: math.unit(6 + 1/12, "feet"),
  37895. default: true
  37896. },
  37897. ]
  37898. ))
  37899. characterMakers.push(() => makeCharacter(
  37900. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  37901. {
  37902. front: {
  37903. height: math.unit(6, "inches"),
  37904. name: "Front",
  37905. image: {
  37906. source: "./media/characters/tululi/front.svg",
  37907. extra: 1997/1876,
  37908. bottom: 20/2017
  37909. }
  37910. },
  37911. },
  37912. [
  37913. {
  37914. name: "Normal",
  37915. height: math.unit(6, "inches"),
  37916. default: true
  37917. },
  37918. ]
  37919. ))
  37920. characterMakers.push(() => makeCharacter(
  37921. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  37922. {
  37923. front: {
  37924. height: math.unit(4 + 1/12, "feet"),
  37925. name: "Front",
  37926. image: {
  37927. source: "./media/characters/star/front.svg",
  37928. extra: 1493/1189,
  37929. bottom: 48/1541
  37930. }
  37931. },
  37932. },
  37933. [
  37934. {
  37935. name: "Normal",
  37936. height: math.unit(4 + 1/12, "feet"),
  37937. default: true
  37938. },
  37939. ]
  37940. ))
  37941. characterMakers.push(() => makeCharacter(
  37942. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  37943. {
  37944. front: {
  37945. height: math.unit(6 + 3/12, "feet"),
  37946. name: "Front",
  37947. image: {
  37948. source: "./media/characters/comet/front.svg",
  37949. extra: 1681/1462,
  37950. bottom: 26/1707
  37951. }
  37952. },
  37953. },
  37954. [
  37955. {
  37956. name: "Normal",
  37957. height: math.unit(6 + 3/12, "feet"),
  37958. default: true
  37959. },
  37960. ]
  37961. ))
  37962. characterMakers.push(() => makeCharacter(
  37963. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  37964. {
  37965. front: {
  37966. height: math.unit(950, "feet"),
  37967. name: "Front",
  37968. image: {
  37969. source: "./media/characters/vortex/front.svg",
  37970. extra: 1497/1434,
  37971. bottom: 56/1553
  37972. }
  37973. },
  37974. maw: {
  37975. height: math.unit(285, "feet"),
  37976. name: "Maw",
  37977. image: {
  37978. source: "./media/characters/vortex/maw.svg"
  37979. }
  37980. },
  37981. },
  37982. [
  37983. {
  37984. name: "Macro",
  37985. height: math.unit(950, "feet"),
  37986. default: true
  37987. },
  37988. ]
  37989. ))
  37990. characterMakers.push(() => makeCharacter(
  37991. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  37992. {
  37993. front: {
  37994. height: math.unit(600, "feet"),
  37995. weight: math.unit(0.02, "grams"),
  37996. name: "Front",
  37997. image: {
  37998. source: "./media/characters/doodle/front.svg",
  37999. extra: 1578/1413,
  38000. bottom: 37/1615
  38001. }
  38002. },
  38003. },
  38004. [
  38005. {
  38006. name: "Macro",
  38007. height: math.unit(600, "feet"),
  38008. default: true
  38009. },
  38010. ]
  38011. ))
  38012. characterMakers.push(() => makeCharacter(
  38013. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  38014. {
  38015. front: {
  38016. height: math.unit(6 + 6/12, "feet"),
  38017. name: "Front",
  38018. image: {
  38019. source: "./media/characters/jai/front.svg",
  38020. extra: 1645/1534,
  38021. bottom: 115/1760
  38022. }
  38023. },
  38024. },
  38025. [
  38026. {
  38027. name: "Normal",
  38028. height: math.unit(6 + 6/12, "feet"),
  38029. default: true
  38030. },
  38031. ]
  38032. ))
  38033. characterMakers.push(() => makeCharacter(
  38034. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  38035. {
  38036. front: {
  38037. height: math.unit(6 + 8/12, "feet"),
  38038. name: "Front",
  38039. image: {
  38040. source: "./media/characters/pixel/front.svg",
  38041. extra: 1900/1735,
  38042. bottom: 63/1963
  38043. }
  38044. },
  38045. },
  38046. [
  38047. {
  38048. name: "Normal",
  38049. height: math.unit(6 + 8/12, "feet"),
  38050. default: true
  38051. },
  38052. ]
  38053. ))
  38054. characterMakers.push(() => makeCharacter(
  38055. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  38056. {
  38057. back: {
  38058. height: math.unit(4 + 1/12, "feet"),
  38059. weight: math.unit(75, "lb"),
  38060. name: "Back",
  38061. image: {
  38062. source: "./media/characters/rhett/back.svg",
  38063. extra: 930/878,
  38064. bottom: 25/955
  38065. }
  38066. },
  38067. front: {
  38068. height: math.unit(4 + 1/12, "feet"),
  38069. weight: math.unit(75, "lb"),
  38070. name: "Front",
  38071. image: {
  38072. source: "./media/characters/rhett/front.svg",
  38073. extra: 1682/1586,
  38074. bottom: 92/1774
  38075. }
  38076. },
  38077. },
  38078. [
  38079. {
  38080. name: "Micro",
  38081. height: math.unit(8, "inches")
  38082. },
  38083. {
  38084. name: "Tiny",
  38085. height: math.unit(2, "feet")
  38086. },
  38087. {
  38088. name: "Normal",
  38089. height: math.unit(4 + 1/12, "feet"),
  38090. default: true
  38091. },
  38092. ]
  38093. ))
  38094. characterMakers.push(() => makeCharacter(
  38095. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  38096. {
  38097. front: {
  38098. height: math.unit(3 + 3/12, "feet"),
  38099. name: "Front",
  38100. image: {
  38101. source: "./media/characters/penny/front.svg",
  38102. extra: 1406/1311,
  38103. bottom: 26/1432
  38104. }
  38105. },
  38106. },
  38107. [
  38108. {
  38109. name: "Normal",
  38110. height: math.unit(3 + 3/12, "feet"),
  38111. default: true
  38112. },
  38113. ]
  38114. ))
  38115. characterMakers.push(() => makeCharacter(
  38116. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  38117. {
  38118. front: {
  38119. height: math.unit(4 + 11/12, "feet"),
  38120. name: "Front",
  38121. image: {
  38122. source: "./media/characters/monty/front.svg",
  38123. extra: 1479/1209,
  38124. bottom: 0/1479
  38125. }
  38126. },
  38127. },
  38128. [
  38129. {
  38130. name: "Normal",
  38131. height: math.unit(4 + 11/12, "feet"),
  38132. default: true
  38133. },
  38134. ]
  38135. ))
  38136. characterMakers.push(() => makeCharacter(
  38137. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  38138. {
  38139. front: {
  38140. height: math.unit(8 + 4/12, "feet"),
  38141. name: "Front",
  38142. image: {
  38143. source: "./media/characters/sterling/front.svg",
  38144. extra: 1420/1236,
  38145. bottom: 27/1447
  38146. }
  38147. },
  38148. },
  38149. [
  38150. {
  38151. name: "Normal",
  38152. height: math.unit(8 + 4/12, "feet"),
  38153. default: true
  38154. },
  38155. ]
  38156. ))
  38157. characterMakers.push(() => makeCharacter(
  38158. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  38159. {
  38160. front: {
  38161. height: math.unit(15, "feet"),
  38162. name: "Front",
  38163. image: {
  38164. source: "./media/characters/marble/front.svg",
  38165. extra: 973/937,
  38166. bottom: 32/1005
  38167. }
  38168. },
  38169. },
  38170. [
  38171. {
  38172. name: "Normal",
  38173. height: math.unit(15, "feet"),
  38174. default: true
  38175. },
  38176. ]
  38177. ))
  38178. characterMakers.push(() => makeCharacter(
  38179. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  38180. {
  38181. front: {
  38182. height: math.unit(3, "inches"),
  38183. name: "Front",
  38184. image: {
  38185. source: "./media/characters/powder/front.svg",
  38186. extra: 1504/1334,
  38187. bottom: 518/2022
  38188. }
  38189. },
  38190. },
  38191. [
  38192. {
  38193. name: "Normal",
  38194. height: math.unit(3, "inches"),
  38195. default: true
  38196. },
  38197. ]
  38198. ))
  38199. characterMakers.push(() => makeCharacter(
  38200. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  38201. {
  38202. front: {
  38203. height: math.unit(4 + 5/12, "feet"),
  38204. name: "Front",
  38205. image: {
  38206. source: "./media/characters/joey-raccoon/front.svg",
  38207. extra: 1273/1197,
  38208. bottom: 0/1273
  38209. }
  38210. },
  38211. },
  38212. [
  38213. {
  38214. name: "Normal",
  38215. height: math.unit(4 + 5/12, "feet"),
  38216. default: true
  38217. },
  38218. ]
  38219. ))
  38220. characterMakers.push(() => makeCharacter(
  38221. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  38222. {
  38223. front: {
  38224. height: math.unit(8 + 4/12, "feet"),
  38225. name: "Front",
  38226. image: {
  38227. source: "./media/characters/vick/front.svg",
  38228. extra: 2187/2118,
  38229. bottom: 47/2234
  38230. }
  38231. },
  38232. },
  38233. [
  38234. {
  38235. name: "Normal",
  38236. height: math.unit(8 + 4/12, "feet"),
  38237. default: true
  38238. },
  38239. ]
  38240. ))
  38241. characterMakers.push(() => makeCharacter(
  38242. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  38243. {
  38244. front: {
  38245. height: math.unit(5 + 5/12, "feet"),
  38246. name: "Front",
  38247. image: {
  38248. source: "./media/characters/mitsy/front.svg",
  38249. extra: 1842/1695,
  38250. bottom: 0/1842
  38251. }
  38252. },
  38253. },
  38254. [
  38255. {
  38256. name: "Normal",
  38257. height: math.unit(5 + 5/12, "feet"),
  38258. default: true
  38259. },
  38260. ]
  38261. ))
  38262. characterMakers.push(() => makeCharacter(
  38263. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  38264. {
  38265. front: {
  38266. height: math.unit(6 + 3/12, "feet"),
  38267. name: "Front",
  38268. image: {
  38269. source: "./media/characters/silvy/front.svg",
  38270. extra: 1995/1836,
  38271. bottom: 225/2220
  38272. }
  38273. },
  38274. },
  38275. [
  38276. {
  38277. name: "Normal",
  38278. height: math.unit(6 + 3/12, "feet"),
  38279. default: true
  38280. },
  38281. ]
  38282. ))
  38283. characterMakers.push(() => makeCharacter(
  38284. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  38285. {
  38286. front: {
  38287. height: math.unit(3 + 8/12, "feet"),
  38288. name: "Front",
  38289. image: {
  38290. source: "./media/characters/rodney/front.svg",
  38291. extra: 1956/1747,
  38292. bottom: 31/1987
  38293. }
  38294. },
  38295. frontDressed: {
  38296. height: math.unit(2.9, "feet"),
  38297. name: "Front (Dressed)",
  38298. image: {
  38299. source: "./media/characters/rodney/front-dressed.svg",
  38300. extra: 1382/1241,
  38301. bottom: 385/1767
  38302. }
  38303. },
  38304. },
  38305. [
  38306. {
  38307. name: "Normal",
  38308. height: math.unit(3 + 8/12, "feet"),
  38309. default: true
  38310. },
  38311. ]
  38312. ))
  38313. characterMakers.push(() => makeCharacter(
  38314. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  38315. {
  38316. front: {
  38317. height: math.unit(5 + 9/12, "feet"),
  38318. weight: math.unit(194, "lbs"),
  38319. name: "Front",
  38320. image: {
  38321. source: "./media/characters/zakail-sudekai/front.svg",
  38322. extra: 2696/2533,
  38323. bottom: 248/2944
  38324. }
  38325. },
  38326. maw: {
  38327. height: math.unit(1.35, "feet"),
  38328. name: "Maw",
  38329. image: {
  38330. source: "./media/characters/zakail-sudekai/maw.svg"
  38331. }
  38332. },
  38333. },
  38334. [
  38335. {
  38336. name: "Normal",
  38337. height: math.unit(5 + 9/12, "feet"),
  38338. default: true
  38339. },
  38340. ]
  38341. ))
  38342. characterMakers.push(() => makeCharacter(
  38343. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  38344. {
  38345. front: {
  38346. height: math.unit(8 + 4/12, "feet"),
  38347. weight: math.unit(1200, "lb"),
  38348. name: "Front",
  38349. image: {
  38350. source: "./media/characters/eleanor/front.svg",
  38351. extra: 1226/1192,
  38352. bottom: 52/1278
  38353. }
  38354. },
  38355. back: {
  38356. height: math.unit(8 + 4/12, "feet"),
  38357. weight: math.unit(1200, "lb"),
  38358. name: "Back",
  38359. image: {
  38360. source: "./media/characters/eleanor/back.svg",
  38361. extra: 1242/1184,
  38362. bottom: 60/1302
  38363. }
  38364. },
  38365. head: {
  38366. height: math.unit(2.62, "feet"),
  38367. name: "Head",
  38368. image: {
  38369. source: "./media/characters/eleanor/head.svg"
  38370. }
  38371. },
  38372. },
  38373. [
  38374. {
  38375. name: "Normal",
  38376. height: math.unit(8 + 4/12, "feet"),
  38377. default: true
  38378. },
  38379. ]
  38380. ))
  38381. characterMakers.push(() => makeCharacter(
  38382. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  38383. {
  38384. front: {
  38385. height: math.unit(8 + 4/12, "feet"),
  38386. weight: math.unit(750, "lb"),
  38387. name: "Front",
  38388. image: {
  38389. source: "./media/characters/tanya/front.svg",
  38390. extra: 1749/1615,
  38391. bottom: 33/1782
  38392. }
  38393. },
  38394. },
  38395. [
  38396. {
  38397. name: "Normal",
  38398. height: math.unit(8 + 4/12, "feet"),
  38399. default: true
  38400. },
  38401. ]
  38402. ))
  38403. characterMakers.push(() => makeCharacter(
  38404. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  38405. {
  38406. front: {
  38407. height: math.unit(5, "feet"),
  38408. weight: math.unit(225, "lb"),
  38409. name: "Front",
  38410. image: {
  38411. source: "./media/characters/cindy/front.svg",
  38412. extra: 1320/1250,
  38413. bottom: 42/1362
  38414. }
  38415. },
  38416. frontDressed: {
  38417. height: math.unit(5, "feet"),
  38418. weight: math.unit(225, "lb"),
  38419. name: "Front (Dressed)",
  38420. image: {
  38421. source: "./media/characters/cindy/front-dressed.svg",
  38422. extra: 1320/1250,
  38423. bottom: 42/1362
  38424. }
  38425. },
  38426. back: {
  38427. height: math.unit(5, "feet"),
  38428. weight: math.unit(225, "lb"),
  38429. name: "Back",
  38430. image: {
  38431. source: "./media/characters/cindy/back.svg",
  38432. extra: 1384/1346,
  38433. bottom: 14/1398
  38434. }
  38435. },
  38436. },
  38437. [
  38438. {
  38439. name: "Normal",
  38440. height: math.unit(5, "feet"),
  38441. default: true
  38442. },
  38443. ]
  38444. ))
  38445. characterMakers.push(() => makeCharacter(
  38446. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  38447. {
  38448. front: {
  38449. height: math.unit(6 + 9/12, "feet"),
  38450. weight: math.unit(440, "lb"),
  38451. name: "Front",
  38452. image: {
  38453. source: "./media/characters/wilbur-owen/front.svg",
  38454. extra: 1575/1448,
  38455. bottom: 72/1647
  38456. }
  38457. },
  38458. back: {
  38459. height: math.unit(6 + 9/12, "feet"),
  38460. weight: math.unit(440, "lb"),
  38461. name: "Back",
  38462. image: {
  38463. source: "./media/characters/wilbur-owen/back.svg",
  38464. extra: 1578/1445,
  38465. bottom: 36/1614
  38466. }
  38467. },
  38468. },
  38469. [
  38470. {
  38471. name: "Normal",
  38472. height: math.unit(6 + 9/12, "feet"),
  38473. default: true
  38474. },
  38475. ]
  38476. ))
  38477. characterMakers.push(() => makeCharacter(
  38478. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  38479. {
  38480. front: {
  38481. height: math.unit(6 + 5/12, "feet"),
  38482. weight: math.unit(650, "lb"),
  38483. name: "Front",
  38484. image: {
  38485. source: "./media/characters/keegan/front.svg",
  38486. extra: 2387/2198,
  38487. bottom: 33/2420
  38488. }
  38489. },
  38490. side: {
  38491. height: math.unit(6 + 5/12, "feet"),
  38492. weight: math.unit(650, "lb"),
  38493. name: "Side",
  38494. image: {
  38495. source: "./media/characters/keegan/side.svg",
  38496. extra: 2390/2202,
  38497. bottom: 47/2437
  38498. }
  38499. },
  38500. back: {
  38501. height: math.unit(6 + 5/12, "feet"),
  38502. weight: math.unit(650, "lb"),
  38503. name: "Back",
  38504. image: {
  38505. source: "./media/characters/keegan/back.svg",
  38506. extra: 2418/2268,
  38507. bottom: 15/2433
  38508. }
  38509. },
  38510. frontSfw: {
  38511. height: math.unit(6 + 5/12, "feet"),
  38512. weight: math.unit(650, "lb"),
  38513. name: "Front (SFW)",
  38514. image: {
  38515. source: "./media/characters/keegan/front-sfw.svg",
  38516. extra: 2387/2198,
  38517. bottom: 33/2420
  38518. }
  38519. },
  38520. beans: {
  38521. height: math.unit(1.85, "feet"),
  38522. name: "Beans",
  38523. image: {
  38524. source: "./media/characters/keegan/beans.svg"
  38525. }
  38526. },
  38527. },
  38528. [
  38529. {
  38530. name: "Normal",
  38531. height: math.unit(6 + 5/12, "feet"),
  38532. default: true
  38533. },
  38534. ]
  38535. ))
  38536. characterMakers.push(() => makeCharacter(
  38537. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  38538. {
  38539. front: {
  38540. height: math.unit(9, "feet"),
  38541. name: "Front",
  38542. image: {
  38543. source: "./media/characters/colton/front.svg",
  38544. extra: 1589/1326,
  38545. bottom: 139/1728
  38546. }
  38547. },
  38548. },
  38549. [
  38550. {
  38551. name: "Normal",
  38552. height: math.unit(9, "feet"),
  38553. default: true
  38554. },
  38555. ]
  38556. ))
  38557. characterMakers.push(() => makeCharacter(
  38558. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  38559. {
  38560. front: {
  38561. height: math.unit(2 + 9/12, "feet"),
  38562. name: "Front",
  38563. image: {
  38564. source: "./media/characters/bora/front.svg",
  38565. extra: 1265/1250,
  38566. bottom: 24/1289
  38567. }
  38568. },
  38569. },
  38570. [
  38571. {
  38572. name: "Normal",
  38573. height: math.unit(2 + 9/12, "feet"),
  38574. default: true
  38575. },
  38576. ]
  38577. ))
  38578. characterMakers.push(() => makeCharacter(
  38579. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  38580. {
  38581. front: {
  38582. height: math.unit(8, "feet"),
  38583. name: "Front",
  38584. image: {
  38585. source: "./media/characters/myu-myu/front.svg",
  38586. extra: 1949/1857,
  38587. bottom: 90/2039
  38588. }
  38589. },
  38590. },
  38591. [
  38592. {
  38593. name: "Normal",
  38594. height: math.unit(8, "feet"),
  38595. default: true
  38596. },
  38597. {
  38598. name: "Big",
  38599. height: math.unit(15, "feet")
  38600. },
  38601. {
  38602. name: "BIG",
  38603. height: math.unit(25, "feet")
  38604. },
  38605. ]
  38606. ))
  38607. characterMakers.push(() => makeCharacter(
  38608. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  38609. {
  38610. side: {
  38611. height: math.unit(7 + 5/12, "feet"),
  38612. weight: math.unit(2800, "lb"),
  38613. name: "Side",
  38614. image: {
  38615. source: "./media/characters/haloren/side.svg",
  38616. extra: 1793/409,
  38617. bottom: 59/1852
  38618. }
  38619. },
  38620. frontPaw: {
  38621. height: math.unit(2.36, "feet"),
  38622. name: "Front paw",
  38623. image: {
  38624. source: "./media/characters/haloren/front-paw.svg"
  38625. }
  38626. },
  38627. hindPaw: {
  38628. height: math.unit(3.18, "feet"),
  38629. name: "Hind paw",
  38630. image: {
  38631. source: "./media/characters/haloren/hind-paw.svg"
  38632. }
  38633. },
  38634. maw: {
  38635. height: math.unit(5.05, "feet"),
  38636. name: "Maw",
  38637. image: {
  38638. source: "./media/characters/haloren/maw.svg"
  38639. }
  38640. },
  38641. dick: {
  38642. height: math.unit(2.90, "feet"),
  38643. name: "Dick",
  38644. image: {
  38645. source: "./media/characters/haloren/dick.svg"
  38646. }
  38647. },
  38648. },
  38649. [
  38650. {
  38651. name: "Normal",
  38652. height: math.unit(7 + 5/12, "feet"),
  38653. default: true
  38654. },
  38655. {
  38656. name: "Enhanced",
  38657. height: math.unit(14 + 3/12, "feet")
  38658. },
  38659. ]
  38660. ))
  38661. characterMakers.push(() => makeCharacter(
  38662. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  38663. {
  38664. front: {
  38665. height: math.unit(171, "cm"),
  38666. name: "Front",
  38667. image: {
  38668. source: "./media/characters/kimmy/front.svg",
  38669. extra: 1491/1435,
  38670. bottom: 53/1544
  38671. }
  38672. },
  38673. },
  38674. [
  38675. {
  38676. name: "Small",
  38677. height: math.unit(9, "cm")
  38678. },
  38679. {
  38680. name: "Normal",
  38681. height: math.unit(171, "cm"),
  38682. default: true
  38683. },
  38684. ]
  38685. ))
  38686. characterMakers.push(() => makeCharacter(
  38687. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  38688. {
  38689. front: {
  38690. height: math.unit(8, "feet"),
  38691. weight: math.unit(300, "lb"),
  38692. name: "Front",
  38693. image: {
  38694. source: "./media/characters/galeboomer/front.svg",
  38695. extra: 4651/4415,
  38696. bottom: 162/4813
  38697. }
  38698. },
  38699. back: {
  38700. height: math.unit(8, "feet"),
  38701. weight: math.unit(300, "lb"),
  38702. name: "Back",
  38703. image: {
  38704. source: "./media/characters/galeboomer/back.svg",
  38705. extra: 4544/4314,
  38706. bottom: 16/4560
  38707. }
  38708. },
  38709. frontAlt: {
  38710. height: math.unit(8, "feet"),
  38711. weight: math.unit(300, "lb"),
  38712. name: "Front (Alt)",
  38713. image: {
  38714. source: "./media/characters/galeboomer/front-alt.svg",
  38715. extra: 4458/4228,
  38716. bottom: 68/4526
  38717. }
  38718. },
  38719. maw: {
  38720. height: math.unit(1.2, "feet"),
  38721. name: "Maw",
  38722. image: {
  38723. source: "./media/characters/galeboomer/maw.svg"
  38724. }
  38725. },
  38726. },
  38727. [
  38728. {
  38729. name: "Normal",
  38730. height: math.unit(8, "feet"),
  38731. default: true
  38732. },
  38733. ]
  38734. ))
  38735. characterMakers.push(() => makeCharacter(
  38736. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  38737. {
  38738. front: {
  38739. height: math.unit(5 + 9/12, "feet"),
  38740. weight: math.unit(120, "lb"),
  38741. name: "Front",
  38742. image: {
  38743. source: "./media/characters/chyr/front.svg",
  38744. extra: 1323/1254,
  38745. bottom: 63/1386
  38746. }
  38747. },
  38748. back: {
  38749. height: math.unit(5 + 9/12, "feet"),
  38750. weight: math.unit(120, "lb"),
  38751. name: "Back",
  38752. image: {
  38753. source: "./media/characters/chyr/back.svg",
  38754. extra: 1323/1252,
  38755. bottom: 48/1371
  38756. }
  38757. },
  38758. },
  38759. [
  38760. {
  38761. name: "Normal",
  38762. height: math.unit(5 + 9/12, "feet"),
  38763. default: true
  38764. },
  38765. ]
  38766. ))
  38767. characterMakers.push(() => makeCharacter(
  38768. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  38769. {
  38770. front: {
  38771. height: math.unit(7, "feet"),
  38772. weight: math.unit(310, "lb"),
  38773. name: "Front",
  38774. image: {
  38775. source: "./media/characters/solarus/front.svg",
  38776. extra: 2415/2021,
  38777. bottom: 103/2518
  38778. }
  38779. },
  38780. back: {
  38781. height: math.unit(7, "feet"),
  38782. weight: math.unit(310, "lb"),
  38783. name: "Back",
  38784. image: {
  38785. source: "./media/characters/solarus/back.svg",
  38786. extra: 2463/2089,
  38787. bottom: 79/2542
  38788. }
  38789. },
  38790. },
  38791. [
  38792. {
  38793. name: "Normal",
  38794. height: math.unit(7, "feet"),
  38795. default: true
  38796. },
  38797. ]
  38798. ))
  38799. characterMakers.push(() => makeCharacter(
  38800. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  38801. {
  38802. front: {
  38803. height: math.unit(16, "feet"),
  38804. name: "Front",
  38805. image: {
  38806. source: "./media/characters/mutsuju-koizaemon/front.svg",
  38807. extra: 1844/1780,
  38808. bottom: 58/1902
  38809. }
  38810. },
  38811. winterCoat: {
  38812. height: math.unit(16, "feet"),
  38813. name: "Winter Coat",
  38814. image: {
  38815. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  38816. extra: 1807/1775,
  38817. bottom: 69/1876
  38818. }
  38819. },
  38820. },
  38821. [
  38822. {
  38823. name: "Normal",
  38824. height: math.unit(16, "feet"),
  38825. default: true
  38826. },
  38827. {
  38828. name: "Chicago Size",
  38829. height: math.unit(560, "feet")
  38830. },
  38831. ]
  38832. ))
  38833. characterMakers.push(() => makeCharacter(
  38834. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  38835. {
  38836. front: {
  38837. height: math.unit(11 + 6/12, "feet"),
  38838. weight: math.unit(1366, "lb"),
  38839. name: "Front",
  38840. image: {
  38841. source: "./media/characters/lexor/front.svg",
  38842. extra: 1560/1481,
  38843. bottom: 211/1771
  38844. }
  38845. },
  38846. back: {
  38847. height: math.unit(11 + 6/12, "feet"),
  38848. weight: math.unit(1366, "lb"),
  38849. name: "Back",
  38850. image: {
  38851. source: "./media/characters/lexor/back.svg",
  38852. extra: 1614/1533,
  38853. bottom: 76/1690
  38854. }
  38855. },
  38856. maw: {
  38857. height: math.unit(3, "feet"),
  38858. name: "Maw",
  38859. image: {
  38860. source: "./media/characters/lexor/maw.svg"
  38861. }
  38862. },
  38863. dick: {
  38864. height: math.unit(2.59, "feet"),
  38865. name: "Dick",
  38866. image: {
  38867. source: "./media/characters/lexor/dick.svg"
  38868. }
  38869. },
  38870. },
  38871. [
  38872. {
  38873. name: "Normal",
  38874. height: math.unit(11 + 6/12, "feet"),
  38875. default: true
  38876. },
  38877. ]
  38878. ))
  38879. characterMakers.push(() => makeCharacter(
  38880. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  38881. {
  38882. front: {
  38883. height: math.unit(5 + 8/12, "feet"),
  38884. name: "Front",
  38885. image: {
  38886. source: "./media/characters/magnum/front.svg",
  38887. extra: 942/855,
  38888. bottom: 26/968
  38889. }
  38890. },
  38891. },
  38892. [
  38893. {
  38894. name: "Normal",
  38895. height: math.unit(5 + 8/12, "feet"),
  38896. default: true
  38897. },
  38898. ]
  38899. ))
  38900. characterMakers.push(() => makeCharacter(
  38901. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  38902. {
  38903. front: {
  38904. height: math.unit(18 + 4/12, "feet"),
  38905. weight: math.unit(1500, "kg"),
  38906. name: "Front",
  38907. image: {
  38908. source: "./media/characters/solas-sharpsman/front.svg",
  38909. extra: 1698/1589,
  38910. bottom: 0/1698
  38911. }
  38912. },
  38913. },
  38914. [
  38915. {
  38916. name: "Normal",
  38917. height: math.unit(18 + 4/12, "feet"),
  38918. default: true
  38919. },
  38920. ]
  38921. ))
  38922. characterMakers.push(() => makeCharacter(
  38923. { name: "October", species: ["tiger"], tags: ["anthro"] },
  38924. {
  38925. front: {
  38926. height: math.unit(5 + 5/12, "feet"),
  38927. weight: math.unit(180, "lb"),
  38928. name: "Front",
  38929. image: {
  38930. source: "./media/characters/october/front.svg",
  38931. extra: 1800/1650,
  38932. bottom: 0/1800
  38933. }
  38934. },
  38935. frontNsfw: {
  38936. height: math.unit(5 + 5/12, "feet"),
  38937. weight: math.unit(180, "lb"),
  38938. name: "Front (NSFW)",
  38939. image: {
  38940. source: "./media/characters/october/front-nsfw.svg",
  38941. extra: 1392/1307,
  38942. bottom: 42/1434
  38943. }
  38944. },
  38945. },
  38946. [
  38947. {
  38948. name: "Normal",
  38949. height: math.unit(5 + 5/12, "feet"),
  38950. default: true
  38951. },
  38952. ]
  38953. ))
  38954. characterMakers.push(() => makeCharacter(
  38955. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  38956. {
  38957. front: {
  38958. height: math.unit(8 + 6/12, "feet"),
  38959. name: "Front",
  38960. image: {
  38961. source: "./media/characters/essynkardi/front.svg",
  38962. extra: 1914/1846,
  38963. bottom: 22/1936
  38964. }
  38965. },
  38966. },
  38967. [
  38968. {
  38969. name: "Normal",
  38970. height: math.unit(8 + 6/12, "feet"),
  38971. default: true
  38972. },
  38973. ]
  38974. ))
  38975. characterMakers.push(() => makeCharacter(
  38976. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  38977. {
  38978. front: {
  38979. height: math.unit(6 + 6/12, "feet"),
  38980. weight: math.unit(7, "lb"),
  38981. name: "Front",
  38982. image: {
  38983. source: "./media/characters/icky/front.svg",
  38984. extra: 813/782,
  38985. bottom: 66/879
  38986. }
  38987. },
  38988. back: {
  38989. height: math.unit(6 + 6/12, "feet"),
  38990. weight: math.unit(7, "lb"),
  38991. name: "Back",
  38992. image: {
  38993. source: "./media/characters/icky/back.svg",
  38994. extra: 754/735,
  38995. bottom: 56/810
  38996. }
  38997. },
  38998. },
  38999. [
  39000. {
  39001. name: "Normal",
  39002. height: math.unit(6 + 6/12, "feet"),
  39003. default: true
  39004. },
  39005. ]
  39006. ))
  39007. characterMakers.push(() => makeCharacter(
  39008. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  39009. {
  39010. front: {
  39011. height: math.unit(15, "feet"),
  39012. name: "Front",
  39013. image: {
  39014. source: "./media/characters/rojas/front.svg",
  39015. extra: 1462/1408,
  39016. bottom: 95/1557
  39017. }
  39018. },
  39019. back: {
  39020. height: math.unit(15, "feet"),
  39021. name: "Back",
  39022. image: {
  39023. source: "./media/characters/rojas/back.svg",
  39024. extra: 1023/954,
  39025. bottom: 28/1051
  39026. }
  39027. },
  39028. },
  39029. [
  39030. {
  39031. name: "Normal",
  39032. height: math.unit(15, "feet"),
  39033. default: true
  39034. },
  39035. ]
  39036. ))
  39037. characterMakers.push(() => makeCharacter(
  39038. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  39039. {
  39040. frontHuman: {
  39041. height: math.unit(5 + 7/12, "feet"),
  39042. name: "Front (Human)",
  39043. image: {
  39044. source: "./media/characters/alek-dryagan/front-human.svg",
  39045. extra: 1687/1667,
  39046. bottom: 69/1756
  39047. }
  39048. },
  39049. backHuman: {
  39050. height: math.unit(5 + 7/12, "feet"),
  39051. name: "Back (Human)",
  39052. image: {
  39053. source: "./media/characters/alek-dryagan/back-human.svg",
  39054. extra: 1670/1649,
  39055. bottom: 65/1735
  39056. }
  39057. },
  39058. frontDemi: {
  39059. height: math.unit(65, "feet"),
  39060. name: "Front (Demi)",
  39061. image: {
  39062. source: "./media/characters/alek-dryagan/front-demi.svg",
  39063. extra: 1669/1642,
  39064. bottom: 49/1718
  39065. }
  39066. },
  39067. backDemi: {
  39068. height: math.unit(65, "feet"),
  39069. name: "Back (Demi)",
  39070. image: {
  39071. source: "./media/characters/alek-dryagan/back-demi.svg",
  39072. extra: 1658/1637,
  39073. bottom: 40/1698
  39074. }
  39075. },
  39076. mawHuman: {
  39077. height: math.unit(0.3, "feet"),
  39078. name: "Maw (Human)",
  39079. image: {
  39080. source: "./media/characters/alek-dryagan/maw-human.svg"
  39081. }
  39082. },
  39083. mawDemi: {
  39084. height: math.unit(3.8, "feet"),
  39085. name: "Maw (Demi)",
  39086. image: {
  39087. source: "./media/characters/alek-dryagan/maw-demi.svg"
  39088. }
  39089. },
  39090. },
  39091. [
  39092. {
  39093. name: "Normal",
  39094. height: math.unit(5 + 7/12, "feet"),
  39095. default: true
  39096. },
  39097. ]
  39098. ))
  39099. characterMakers.push(() => makeCharacter(
  39100. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  39101. {
  39102. frontHuman: {
  39103. height: math.unit(5 + 2/12, "feet"),
  39104. name: "Front (Human)",
  39105. image: {
  39106. source: "./media/characters/gen/front-human.svg",
  39107. extra: 1627/1538,
  39108. bottom: 71/1698
  39109. }
  39110. },
  39111. backHuman: {
  39112. height: math.unit(5 + 2/12, "feet"),
  39113. name: "Back (Human)",
  39114. image: {
  39115. source: "./media/characters/gen/back-human.svg",
  39116. extra: 1638/1548,
  39117. bottom: 69/1707
  39118. }
  39119. },
  39120. frontDemi: {
  39121. height: math.unit(5 + 2/12, "feet"),
  39122. name: "Front (Demi)",
  39123. image: {
  39124. source: "./media/characters/gen/front-demi.svg",
  39125. extra: 1627/1538,
  39126. bottom: 71/1698
  39127. }
  39128. },
  39129. backDemi: {
  39130. height: math.unit(5 + 2/12, "feet"),
  39131. name: "Back (Demi)",
  39132. image: {
  39133. source: "./media/characters/gen/back-demi.svg",
  39134. extra: 1638/1548,
  39135. bottom: 69/1707
  39136. }
  39137. },
  39138. },
  39139. [
  39140. {
  39141. name: "Normal",
  39142. height: math.unit(5 + 2/12, "feet"),
  39143. default: true
  39144. },
  39145. ]
  39146. ))
  39147. characterMakers.push(() => makeCharacter(
  39148. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  39149. {
  39150. frontImp: {
  39151. height: math.unit(1 + 11/12, "feet"),
  39152. name: "Front (Imp)",
  39153. image: {
  39154. source: "./media/characters/max-kobold/front-imp.svg",
  39155. extra: 1238/1134,
  39156. bottom: 81/1319
  39157. }
  39158. },
  39159. backImp: {
  39160. height: math.unit(1 + 11/12, "feet"),
  39161. name: "Back (Imp)",
  39162. image: {
  39163. source: "./media/characters/max-kobold/back-imp.svg",
  39164. extra: 1334/1175,
  39165. bottom: 34/1368
  39166. }
  39167. },
  39168. frontDemi: {
  39169. height: math.unit(5 + 9/12, "feet"),
  39170. name: "Front (Demi)",
  39171. image: {
  39172. source: "./media/characters/max-kobold/front-demi.svg",
  39173. extra: 1715/1685,
  39174. bottom: 54/1769
  39175. }
  39176. },
  39177. backDemi: {
  39178. height: math.unit(5 + 9/12, "feet"),
  39179. name: "Back (Demi)",
  39180. image: {
  39181. source: "./media/characters/max-kobold/back-demi.svg",
  39182. extra: 1752/1729,
  39183. bottom: 41/1793
  39184. }
  39185. },
  39186. handImp: {
  39187. height: math.unit(0.45, "feet"),
  39188. name: "Hand (Imp)",
  39189. image: {
  39190. source: "./media/characters/max-kobold/hand.svg"
  39191. }
  39192. },
  39193. pawImp: {
  39194. height: math.unit(0.46, "feet"),
  39195. name: "Paw (Imp)",
  39196. image: {
  39197. source: "./media/characters/max-kobold/paw.svg"
  39198. }
  39199. },
  39200. handDemi: {
  39201. height: math.unit(0.80, "feet"),
  39202. name: "Hand (Demi)",
  39203. image: {
  39204. source: "./media/characters/max-kobold/hand.svg"
  39205. }
  39206. },
  39207. pawDemi: {
  39208. height: math.unit(1.1, "feet"),
  39209. name: "Paw (Demi)",
  39210. image: {
  39211. source: "./media/characters/max-kobold/paw.svg"
  39212. }
  39213. },
  39214. headImp: {
  39215. height: math.unit(1.33, "feet"),
  39216. name: "Head (Imp)",
  39217. image: {
  39218. source: "./media/characters/max-kobold/head-imp.svg"
  39219. }
  39220. },
  39221. mawImp: {
  39222. height: math.unit(0.75, "feet"),
  39223. name: "Maw (Imp)",
  39224. image: {
  39225. source: "./media/characters/max-kobold/maw-imp.svg"
  39226. }
  39227. },
  39228. mawDemi: {
  39229. height: math.unit(0.42, "feet"),
  39230. name: "Maw (Demi)",
  39231. image: {
  39232. source: "./media/characters/max-kobold/maw-demi.svg"
  39233. }
  39234. },
  39235. },
  39236. [
  39237. {
  39238. name: "Normal",
  39239. height: math.unit(1 + 11/12, "feet"),
  39240. default: true
  39241. },
  39242. ]
  39243. ))
  39244. characterMakers.push(() => makeCharacter(
  39245. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  39246. {
  39247. front: {
  39248. height: math.unit(7 + 5/12, "feet"),
  39249. name: "Front",
  39250. image: {
  39251. source: "./media/characters/carbon/front.svg",
  39252. extra: 1754/1689,
  39253. bottom: 65/1819
  39254. }
  39255. },
  39256. back: {
  39257. height: math.unit(7 + 5/12, "feet"),
  39258. name: "Back",
  39259. image: {
  39260. source: "./media/characters/carbon/back.svg",
  39261. extra: 1762/1695,
  39262. bottom: 24/1786
  39263. }
  39264. },
  39265. frontGigantamax: {
  39266. height: math.unit(150, "feet"),
  39267. name: "Front (Gigantamax)",
  39268. image: {
  39269. source: "./media/characters/carbon/front-gigantamax.svg",
  39270. extra: 1826/1669,
  39271. bottom: 59/1885
  39272. }
  39273. },
  39274. backGigantamax: {
  39275. height: math.unit(150, "feet"),
  39276. name: "Back (Gigantamax)",
  39277. image: {
  39278. source: "./media/characters/carbon/back-gigantamax.svg",
  39279. extra: 1796/1653,
  39280. bottom: 53/1849
  39281. }
  39282. },
  39283. maw: {
  39284. height: math.unit(0.48, "feet"),
  39285. name: "Maw",
  39286. image: {
  39287. source: "./media/characters/carbon/maw.svg"
  39288. }
  39289. },
  39290. mawGigantamax: {
  39291. height: math.unit(7.5, "feet"),
  39292. name: "Maw (Gigantamax)",
  39293. image: {
  39294. source: "./media/characters/carbon/maw-gigantamax.svg"
  39295. }
  39296. },
  39297. },
  39298. [
  39299. {
  39300. name: "Normal",
  39301. height: math.unit(7 + 5/12, "feet"),
  39302. default: true
  39303. },
  39304. ]
  39305. ))
  39306. characterMakers.push(() => makeCharacter(
  39307. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  39308. {
  39309. front: {
  39310. height: math.unit(6, "feet"),
  39311. name: "Front",
  39312. image: {
  39313. source: "./media/characters/maverick/front.svg",
  39314. extra: 1672/1661,
  39315. bottom: 85/1757
  39316. }
  39317. },
  39318. back: {
  39319. height: math.unit(6, "feet"),
  39320. name: "Back",
  39321. image: {
  39322. source: "./media/characters/maverick/back.svg",
  39323. extra: 1642/1631,
  39324. bottom: 38/1680
  39325. }
  39326. },
  39327. },
  39328. [
  39329. {
  39330. name: "Normal",
  39331. height: math.unit(6, "feet"),
  39332. default: true
  39333. },
  39334. ]
  39335. ))
  39336. characterMakers.push(() => makeCharacter(
  39337. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  39338. {
  39339. front: {
  39340. height: math.unit(15, "feet"),
  39341. weight: math.unit(615, "lb"),
  39342. name: "Front",
  39343. image: {
  39344. source: "./media/characters/grockle/front.svg",
  39345. extra: 1535/1427,
  39346. bottom: 56/1591
  39347. }
  39348. },
  39349. },
  39350. [
  39351. {
  39352. name: "Normal",
  39353. height: math.unit(15, "feet"),
  39354. default: true
  39355. },
  39356. {
  39357. name: "Large",
  39358. height: math.unit(150, "feet")
  39359. },
  39360. {
  39361. name: "Macro",
  39362. height: math.unit(1876, "feet")
  39363. },
  39364. {
  39365. name: "Mega Macro",
  39366. height: math.unit(121940, "feet")
  39367. },
  39368. {
  39369. name: "Giga Macro",
  39370. height: math.unit(750, "km")
  39371. },
  39372. {
  39373. name: "Tera Macro",
  39374. height: math.unit(750000, "km")
  39375. },
  39376. {
  39377. name: "Galactic",
  39378. height: math.unit(1.4e5, "km")
  39379. },
  39380. {
  39381. name: "Godlike",
  39382. height: math.unit(9.8e280, "galaxies")
  39383. },
  39384. ]
  39385. ))
  39386. characterMakers.push(() => makeCharacter(
  39387. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  39388. {
  39389. front: {
  39390. height: math.unit(11, "meters"),
  39391. weight: math.unit(20, "tonnes"),
  39392. name: "Front",
  39393. image: {
  39394. source: "./media/characters/alistair/front.svg",
  39395. extra: 1265/1009,
  39396. bottom: 93/1358
  39397. }
  39398. },
  39399. },
  39400. [
  39401. {
  39402. name: "Normal",
  39403. height: math.unit(11, "meters"),
  39404. default: true
  39405. },
  39406. ]
  39407. ))
  39408. characterMakers.push(() => makeCharacter(
  39409. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  39410. {
  39411. front: {
  39412. height: math.unit(5 + 8/12, "feet"),
  39413. name: "Front",
  39414. image: {
  39415. source: "./media/characters/haruka/front.svg",
  39416. extra: 2012/1952,
  39417. bottom: 0/2012
  39418. }
  39419. },
  39420. },
  39421. [
  39422. {
  39423. name: "Normal",
  39424. height: math.unit(5 + 8/12, "feet"),
  39425. default: true
  39426. },
  39427. ]
  39428. ))
  39429. characterMakers.push(() => makeCharacter(
  39430. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  39431. {
  39432. back: {
  39433. height: math.unit(9, "feet"),
  39434. name: "Back",
  39435. image: {
  39436. source: "./media/characters/vivian-sylveon/back.svg",
  39437. extra: 1853/1714,
  39438. bottom: 0/1853
  39439. }
  39440. },
  39441. },
  39442. [
  39443. {
  39444. name: "Normal",
  39445. height: math.unit(9, "feet"),
  39446. default: true
  39447. },
  39448. {
  39449. name: "Macro",
  39450. height: math.unit(500, "feet")
  39451. },
  39452. {
  39453. name: "Megamacro",
  39454. height: math.unit(600, "miles")
  39455. },
  39456. {
  39457. name: "Gigamacro",
  39458. height: math.unit(30000, "miles")
  39459. },
  39460. ]
  39461. ))
  39462. characterMakers.push(() => makeCharacter(
  39463. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  39464. {
  39465. anthro: {
  39466. height: math.unit(5 + 10/12, "feet"),
  39467. weight: math.unit(100, "lb"),
  39468. name: "Anthro",
  39469. image: {
  39470. source: "./media/characters/daiki/anthro.svg",
  39471. extra: 1115/1027,
  39472. bottom: 69/1184
  39473. }
  39474. },
  39475. feral: {
  39476. height: math.unit(200, "feet"),
  39477. name: "Feral",
  39478. image: {
  39479. source: "./media/characters/daiki/feral.svg",
  39480. extra: 1256/313,
  39481. bottom: 39/1295
  39482. }
  39483. },
  39484. feralHead: {
  39485. height: math.unit(171, "feet"),
  39486. name: "Feral Head",
  39487. image: {
  39488. source: "./media/characters/daiki/feral-head.svg"
  39489. }
  39490. },
  39491. manaDragon: {
  39492. height: math.unit(170, "meters"),
  39493. name: "Mana-dragon",
  39494. image: {
  39495. source: "./media/characters/daiki/mana-dragon.svg",
  39496. extra: 763/420,
  39497. bottom: 97/860
  39498. }
  39499. },
  39500. },
  39501. [
  39502. {
  39503. name: "Normal",
  39504. height: math.unit(5 + 10/12, "feet"),
  39505. default: true
  39506. },
  39507. ]
  39508. ))
  39509. characterMakers.push(() => makeCharacter(
  39510. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  39511. {
  39512. fullyEquippedFront: {
  39513. height: math.unit(3 + 1/12, "feet"),
  39514. weight: math.unit(24, "lb"),
  39515. name: "Fully Equipped (Front)",
  39516. image: {
  39517. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  39518. extra: 687/605,
  39519. bottom: 18/705
  39520. }
  39521. },
  39522. fullyEquippedBack: {
  39523. height: math.unit(3 + 1/12, "feet"),
  39524. weight: math.unit(24, "lb"),
  39525. name: "Fully Equipped (Back)",
  39526. image: {
  39527. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  39528. extra: 689/590,
  39529. bottom: 18/707
  39530. }
  39531. },
  39532. dailyWear: {
  39533. height: math.unit(3 + 1/12, "feet"),
  39534. weight: math.unit(24, "lb"),
  39535. name: "Daily Wear",
  39536. image: {
  39537. source: "./media/characters/tea-spot/daily-wear.svg",
  39538. extra: 701/620,
  39539. bottom: 21/722
  39540. }
  39541. },
  39542. maidWork: {
  39543. height: math.unit(3 + 1/12, "feet"),
  39544. weight: math.unit(24, "lb"),
  39545. name: "Maid Work",
  39546. image: {
  39547. source: "./media/characters/tea-spot/maid-work.svg",
  39548. extra: 693/609,
  39549. bottom: 15/708
  39550. }
  39551. },
  39552. },
  39553. [
  39554. {
  39555. name: "Normal",
  39556. height: math.unit(3 + 1/12, "feet"),
  39557. default: true
  39558. },
  39559. ]
  39560. ))
  39561. characterMakers.push(() => makeCharacter(
  39562. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  39563. {
  39564. front: {
  39565. height: math.unit(175, "cm"),
  39566. weight: math.unit(75, "kg"),
  39567. name: "Front",
  39568. image: {
  39569. source: "./media/characters/chee/front.svg",
  39570. extra: 1796/1740,
  39571. bottom: 40/1836
  39572. }
  39573. },
  39574. },
  39575. [
  39576. {
  39577. name: "Micro-Micro",
  39578. height: math.unit(1, "nm")
  39579. },
  39580. {
  39581. name: "Micro-erst",
  39582. height: math.unit(1, "micrometer")
  39583. },
  39584. {
  39585. name: "Micro-er",
  39586. height: math.unit(1, "cm")
  39587. },
  39588. {
  39589. name: "Normal",
  39590. height: math.unit(175, "cm"),
  39591. default: true
  39592. },
  39593. {
  39594. name: "Macro",
  39595. height: math.unit(100, "m")
  39596. },
  39597. {
  39598. name: "Macro-er",
  39599. height: math.unit(1, "km")
  39600. },
  39601. {
  39602. name: "Macro-erst",
  39603. height: math.unit(10, "km")
  39604. },
  39605. {
  39606. name: "Macro-Macro",
  39607. height: math.unit(100, "km")
  39608. },
  39609. ]
  39610. ))
  39611. characterMakers.push(() => makeCharacter(
  39612. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  39613. {
  39614. front: {
  39615. height: math.unit(11 + 9/12, "feet"),
  39616. weight: math.unit(935, "lb"),
  39617. name: "Front",
  39618. image: {
  39619. source: "./media/characters/kingsley/front.svg",
  39620. extra: 1803/1674,
  39621. bottom: 127/1930
  39622. }
  39623. },
  39624. frontNude: {
  39625. height: math.unit(11 + 9/12, "feet"),
  39626. weight: math.unit(935, "lb"),
  39627. name: "Front (Nude)",
  39628. image: {
  39629. source: "./media/characters/kingsley/front-nude.svg",
  39630. extra: 1803/1674,
  39631. bottom: 127/1930
  39632. }
  39633. },
  39634. },
  39635. [
  39636. {
  39637. name: "Normal",
  39638. height: math.unit(11 + 9/12, "feet"),
  39639. default: true
  39640. },
  39641. ]
  39642. ))
  39643. characterMakers.push(() => makeCharacter(
  39644. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  39645. {
  39646. side: {
  39647. height: math.unit(9, "feet"),
  39648. name: "Side",
  39649. image: {
  39650. source: "./media/characters/rymel/side.svg",
  39651. extra: 792/469,
  39652. bottom: 121/913
  39653. }
  39654. },
  39655. maw: {
  39656. height: math.unit(2.4, "meters"),
  39657. name: "Maw",
  39658. image: {
  39659. source: "./media/characters/rymel/maw.svg"
  39660. }
  39661. },
  39662. },
  39663. [
  39664. {
  39665. name: "House Drake",
  39666. height: math.unit(2, "feet")
  39667. },
  39668. {
  39669. name: "Reduced",
  39670. height: math.unit(4.5, "feet")
  39671. },
  39672. {
  39673. name: "Normal",
  39674. height: math.unit(9, "feet"),
  39675. default: true
  39676. },
  39677. ]
  39678. ))
  39679. characterMakers.push(() => makeCharacter(
  39680. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  39681. {
  39682. front: {
  39683. height: math.unit(1.74, "meters"),
  39684. weight: math.unit(55, "kg"),
  39685. name: "Front",
  39686. image: {
  39687. source: "./media/characters/rubus/front.svg",
  39688. extra: 1894/1742,
  39689. bottom: 44/1938
  39690. }
  39691. },
  39692. },
  39693. [
  39694. {
  39695. name: "Normal",
  39696. height: math.unit(1.74, "meters"),
  39697. default: true
  39698. },
  39699. ]
  39700. ))
  39701. characterMakers.push(() => makeCharacter(
  39702. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  39703. {
  39704. front: {
  39705. height: math.unit(5 + 2/12, "feet"),
  39706. weight: math.unit(112, "lb"),
  39707. name: "Front",
  39708. image: {
  39709. source: "./media/characters/cassie-kingston/front.svg",
  39710. extra: 1438/1390,
  39711. bottom: 47/1485
  39712. }
  39713. },
  39714. },
  39715. [
  39716. {
  39717. name: "Normal",
  39718. height: math.unit(5 + 2/12, "feet"),
  39719. default: true
  39720. },
  39721. {
  39722. name: "Macro",
  39723. height: math.unit(128, "feet")
  39724. },
  39725. {
  39726. name: "Megamacro",
  39727. height: math.unit(2.56, "miles")
  39728. },
  39729. ]
  39730. ))
  39731. characterMakers.push(() => makeCharacter(
  39732. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  39733. {
  39734. front: {
  39735. height: math.unit(7, "feet"),
  39736. name: "Front",
  39737. image: {
  39738. source: "./media/characters/fox/front.svg",
  39739. extra: 1798/1703,
  39740. bottom: 55/1853
  39741. }
  39742. },
  39743. back: {
  39744. height: math.unit(7, "feet"),
  39745. name: "Back",
  39746. image: {
  39747. source: "./media/characters/fox/back.svg",
  39748. extra: 1748/1649,
  39749. bottom: 32/1780
  39750. }
  39751. },
  39752. head: {
  39753. height: math.unit(1.95, "feet"),
  39754. name: "Head",
  39755. image: {
  39756. source: "./media/characters/fox/head.svg"
  39757. }
  39758. },
  39759. dick: {
  39760. height: math.unit(1.33, "feet"),
  39761. name: "Dick",
  39762. image: {
  39763. source: "./media/characters/fox/dick.svg"
  39764. }
  39765. },
  39766. foot: {
  39767. height: math.unit(1, "feet"),
  39768. name: "Foot",
  39769. image: {
  39770. source: "./media/characters/fox/foot.svg"
  39771. }
  39772. },
  39773. paw: {
  39774. height: math.unit(0.92, "feet"),
  39775. name: "Paw",
  39776. image: {
  39777. source: "./media/characters/fox/paw.svg"
  39778. }
  39779. },
  39780. },
  39781. [
  39782. {
  39783. name: "Small",
  39784. height: math.unit(3, "inches")
  39785. },
  39786. {
  39787. name: "\"Realistic\"",
  39788. height: math.unit(7, "feet")
  39789. },
  39790. {
  39791. name: "Normal",
  39792. height: math.unit(150, "feet"),
  39793. default: true
  39794. },
  39795. {
  39796. name: "BIG",
  39797. height: math.unit(1200, "feet")
  39798. },
  39799. {
  39800. name: "👀",
  39801. height: math.unit(5, "miles")
  39802. },
  39803. {
  39804. name: "👀👀👀",
  39805. height: math.unit(64, "miles")
  39806. },
  39807. ]
  39808. ))
  39809. characterMakers.push(() => makeCharacter(
  39810. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  39811. {
  39812. front: {
  39813. height: math.unit(625, "feet"),
  39814. name: "Front",
  39815. image: {
  39816. source: "./media/characters/asonja-rossa/front.svg",
  39817. extra: 1833/1686,
  39818. bottom: 24/1857
  39819. }
  39820. },
  39821. back: {
  39822. height: math.unit(625, "feet"),
  39823. name: "Back",
  39824. image: {
  39825. source: "./media/characters/asonja-rossa/back.svg",
  39826. extra: 1852/1753,
  39827. bottom: 26/1878
  39828. }
  39829. },
  39830. },
  39831. [
  39832. {
  39833. name: "Macro",
  39834. height: math.unit(625, "feet"),
  39835. default: true
  39836. },
  39837. ]
  39838. ))
  39839. characterMakers.push(() => makeCharacter(
  39840. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  39841. {
  39842. side: {
  39843. height: math.unit(8, "feet"),
  39844. name: "Side",
  39845. image: {
  39846. source: "./media/characters/rezukii/side.svg",
  39847. extra: 979/542,
  39848. bottom: 87/1066
  39849. }
  39850. },
  39851. sitting: {
  39852. height: math.unit(14.6, "feet"),
  39853. name: "Sitting",
  39854. image: {
  39855. source: "./media/characters/rezukii/sitting.svg",
  39856. extra: 1023/813,
  39857. bottom: 45/1068
  39858. }
  39859. },
  39860. },
  39861. [
  39862. {
  39863. name: "Tiny",
  39864. height: math.unit(2, "feet")
  39865. },
  39866. {
  39867. name: "Smol",
  39868. height: math.unit(4, "feet")
  39869. },
  39870. {
  39871. name: "Normal",
  39872. height: math.unit(8, "feet"),
  39873. default: true
  39874. },
  39875. {
  39876. name: "Big",
  39877. height: math.unit(12, "feet")
  39878. },
  39879. {
  39880. name: "Macro",
  39881. height: math.unit(30, "feet")
  39882. },
  39883. ]
  39884. ))
  39885. characterMakers.push(() => makeCharacter(
  39886. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  39887. {
  39888. front: {
  39889. height: math.unit(14, "feet"),
  39890. weight: math.unit(9.5, "tonnes"),
  39891. name: "Front",
  39892. image: {
  39893. source: "./media/characters/dawnheart/front.svg",
  39894. extra: 2792/2675,
  39895. bottom: 64/2856
  39896. }
  39897. },
  39898. },
  39899. [
  39900. {
  39901. name: "Normal",
  39902. height: math.unit(14, "feet"),
  39903. default: true
  39904. },
  39905. ]
  39906. ))
  39907. characterMakers.push(() => makeCharacter(
  39908. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  39909. {
  39910. front: {
  39911. height: math.unit(1.7, "m"),
  39912. name: "Front",
  39913. image: {
  39914. source: "./media/characters/gladi/front.svg",
  39915. extra: 1460/1362,
  39916. bottom: 19/1479
  39917. }
  39918. },
  39919. back: {
  39920. height: math.unit(1.7, "m"),
  39921. name: "Back",
  39922. image: {
  39923. source: "./media/characters/gladi/back.svg",
  39924. extra: 1459/1357,
  39925. bottom: 12/1471
  39926. }
  39927. },
  39928. feral: {
  39929. height: math.unit(2.05, "m"),
  39930. name: "Feral",
  39931. image: {
  39932. source: "./media/characters/gladi/feral.svg",
  39933. extra: 821/557,
  39934. bottom: 91/912
  39935. }
  39936. },
  39937. },
  39938. [
  39939. {
  39940. name: "Shortest",
  39941. height: math.unit(70, "cm")
  39942. },
  39943. {
  39944. name: "Normal",
  39945. height: math.unit(1.7, "m")
  39946. },
  39947. {
  39948. name: "Macro",
  39949. height: math.unit(10, "m"),
  39950. default: true
  39951. },
  39952. {
  39953. name: "Tallest",
  39954. height: math.unit(200, "m")
  39955. },
  39956. ]
  39957. ))
  39958. characterMakers.push(() => makeCharacter(
  39959. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  39960. {
  39961. front: {
  39962. height: math.unit(5 + 7/12, "feet"),
  39963. weight: math.unit(2, "tons"),
  39964. name: "Front",
  39965. image: {
  39966. source: "./media/characters/erdno/front.svg",
  39967. extra: 1234/1129,
  39968. bottom: 35/1269
  39969. }
  39970. },
  39971. angled: {
  39972. height: math.unit(5 + 7/12, "feet"),
  39973. weight: math.unit(2, "tons"),
  39974. name: "Angled",
  39975. image: {
  39976. source: "./media/characters/erdno/angled.svg",
  39977. extra: 1185/1139,
  39978. bottom: 36/1221
  39979. }
  39980. },
  39981. side: {
  39982. height: math.unit(5 + 7/12, "feet"),
  39983. weight: math.unit(2, "tons"),
  39984. name: "Side",
  39985. image: {
  39986. source: "./media/characters/erdno/side.svg",
  39987. extra: 1191/1144,
  39988. bottom: 40/1231
  39989. }
  39990. },
  39991. back: {
  39992. height: math.unit(5 + 7/12, "feet"),
  39993. weight: math.unit(2, "tons"),
  39994. name: "Back",
  39995. image: {
  39996. source: "./media/characters/erdno/back.svg",
  39997. extra: 1202/1146,
  39998. bottom: 17/1219
  39999. }
  40000. },
  40001. frontNsfw: {
  40002. height: math.unit(5 + 7/12, "feet"),
  40003. weight: math.unit(2, "tons"),
  40004. name: "Front (NSFW)",
  40005. image: {
  40006. source: "./media/characters/erdno/front-nsfw.svg",
  40007. extra: 1234/1129,
  40008. bottom: 35/1269
  40009. }
  40010. },
  40011. angledNsfw: {
  40012. height: math.unit(5 + 7/12, "feet"),
  40013. weight: math.unit(2, "tons"),
  40014. name: "Angled (NSFW)",
  40015. image: {
  40016. source: "./media/characters/erdno/angled-nsfw.svg",
  40017. extra: 1185/1139,
  40018. bottom: 36/1221
  40019. }
  40020. },
  40021. sideNsfw: {
  40022. height: math.unit(5 + 7/12, "feet"),
  40023. weight: math.unit(2, "tons"),
  40024. name: "Side (NSFW)",
  40025. image: {
  40026. source: "./media/characters/erdno/side-nsfw.svg",
  40027. extra: 1191/1144,
  40028. bottom: 40/1231
  40029. }
  40030. },
  40031. backNsfw: {
  40032. height: math.unit(5 + 7/12, "feet"),
  40033. weight: math.unit(2, "tons"),
  40034. name: "Back (NSFW)",
  40035. image: {
  40036. source: "./media/characters/erdno/back-nsfw.svg",
  40037. extra: 1202/1146,
  40038. bottom: 17/1219
  40039. }
  40040. },
  40041. frontHyper: {
  40042. height: math.unit(5 + 7/12, "feet"),
  40043. weight: math.unit(2, "tons"),
  40044. name: "Front (Hyper)",
  40045. image: {
  40046. source: "./media/characters/erdno/front-hyper.svg",
  40047. extra: 1298/1136,
  40048. bottom: 35/1333
  40049. }
  40050. },
  40051. },
  40052. [
  40053. {
  40054. name: "Normal",
  40055. height: math.unit(5 + 7/12, "feet"),
  40056. default: true
  40057. },
  40058. {
  40059. name: "Big",
  40060. height: math.unit(5.7, "meters")
  40061. },
  40062. {
  40063. name: "Macro",
  40064. height: math.unit(5.7, "kilometers")
  40065. },
  40066. {
  40067. name: "Megamacro",
  40068. height: math.unit(5.7, "earths")
  40069. },
  40070. ]
  40071. ))
  40072. characterMakers.push(() => makeCharacter(
  40073. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  40074. {
  40075. front: {
  40076. height: math.unit(5 + 10/12, "feet"),
  40077. weight: math.unit(150, "lb"),
  40078. name: "Front",
  40079. image: {
  40080. source: "./media/characters/jamie/front.svg",
  40081. extra: 1908/1768,
  40082. bottom: 19/1927
  40083. }
  40084. },
  40085. },
  40086. [
  40087. {
  40088. name: "Minimum",
  40089. height: math.unit(2, "cm")
  40090. },
  40091. {
  40092. name: "Micro",
  40093. height: math.unit(3, "inches")
  40094. },
  40095. {
  40096. name: "Normal",
  40097. height: math.unit(5 + 10/12, "feet"),
  40098. default: true
  40099. },
  40100. {
  40101. name: "Macro",
  40102. height: math.unit(150, "feet")
  40103. },
  40104. {
  40105. name: "Megamacro",
  40106. height: math.unit(10000, "m")
  40107. },
  40108. ]
  40109. ))
  40110. characterMakers.push(() => makeCharacter(
  40111. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  40112. {
  40113. front: {
  40114. height: math.unit(2, "meters"),
  40115. weight: math.unit(100, "kg"),
  40116. name: "Front",
  40117. image: {
  40118. source: "./media/characters/shiron/front.svg",
  40119. extra: 2103/1985,
  40120. bottom: 98/2201
  40121. }
  40122. },
  40123. back: {
  40124. height: math.unit(2, "meters"),
  40125. weight: math.unit(100, "kg"),
  40126. name: "Back",
  40127. image: {
  40128. source: "./media/characters/shiron/back.svg",
  40129. extra: 2110/2015,
  40130. bottom: 89/2199
  40131. }
  40132. },
  40133. hand: {
  40134. height: math.unit(0.96, "feet"),
  40135. name: "Hand",
  40136. image: {
  40137. source: "./media/characters/shiron/hand.svg"
  40138. }
  40139. },
  40140. foot: {
  40141. height: math.unit(1.464, "feet"),
  40142. name: "Foot",
  40143. image: {
  40144. source: "./media/characters/shiron/foot.svg"
  40145. }
  40146. },
  40147. },
  40148. [
  40149. {
  40150. name: "Normal",
  40151. height: math.unit(2, "meters")
  40152. },
  40153. {
  40154. name: "Macro",
  40155. height: math.unit(500, "meters"),
  40156. default: true
  40157. },
  40158. {
  40159. name: "Megamacro",
  40160. height: math.unit(20, "km")
  40161. },
  40162. ]
  40163. ))
  40164. characterMakers.push(() => makeCharacter(
  40165. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  40166. {
  40167. front: {
  40168. height: math.unit(6, "feet"),
  40169. name: "Front",
  40170. image: {
  40171. source: "./media/characters/sam/front.svg",
  40172. extra: 849/826,
  40173. bottom: 19/868
  40174. }
  40175. },
  40176. },
  40177. [
  40178. {
  40179. name: "Normal",
  40180. height: math.unit(6, "feet"),
  40181. default: true
  40182. },
  40183. ]
  40184. ))
  40185. characterMakers.push(() => makeCharacter(
  40186. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  40187. {
  40188. front: {
  40189. height: math.unit(8 + 4/12, "feet"),
  40190. weight: math.unit(122, "kg"),
  40191. name: "Front",
  40192. image: {
  40193. source: "./media/characters/namori-kurogawa/front.svg",
  40194. extra: 1894/1576,
  40195. bottom: 34/1928
  40196. }
  40197. },
  40198. },
  40199. [
  40200. {
  40201. name: "Normal",
  40202. height: math.unit(8 + 4/12, "feet"),
  40203. default: true
  40204. },
  40205. ]
  40206. ))
  40207. characterMakers.push(() => makeCharacter(
  40208. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  40209. {
  40210. front: {
  40211. height: math.unit(9, "feet"),
  40212. weight: math.unit(621, "lb"),
  40213. name: "Front",
  40214. image: {
  40215. source: "./media/characters/unmru/front.svg",
  40216. extra: 1853/1747,
  40217. bottom: 73/1926
  40218. }
  40219. },
  40220. side: {
  40221. height: math.unit(9, "feet"),
  40222. weight: math.unit(621, "lb"),
  40223. name: "Side",
  40224. image: {
  40225. source: "./media/characters/unmru/side.svg",
  40226. extra: 1781/1671,
  40227. bottom: 127/1908
  40228. }
  40229. },
  40230. back: {
  40231. height: math.unit(9, "feet"),
  40232. weight: math.unit(621, "lb"),
  40233. name: "Back",
  40234. image: {
  40235. source: "./media/characters/unmru/back.svg",
  40236. extra: 1894/1765,
  40237. bottom: 75/1969
  40238. }
  40239. },
  40240. dick: {
  40241. height: math.unit(3, "feet"),
  40242. weight: math.unit(35, "lb"),
  40243. name: "Dick",
  40244. image: {
  40245. source: "./media/characters/unmru/dick.svg"
  40246. }
  40247. },
  40248. },
  40249. [
  40250. {
  40251. name: "Normal",
  40252. height: math.unit(9, "feet")
  40253. },
  40254. {
  40255. name: "Natural",
  40256. height: math.unit(27, "feet"),
  40257. default: true
  40258. },
  40259. {
  40260. name: "Giant",
  40261. height: math.unit(90, "feet")
  40262. },
  40263. {
  40264. name: "Kaiju",
  40265. height: math.unit(270, "feet")
  40266. },
  40267. {
  40268. name: "Macro",
  40269. height: math.unit(900, "feet")
  40270. },
  40271. {
  40272. name: "Macro+",
  40273. height: math.unit(2700, "feet")
  40274. },
  40275. {
  40276. name: "Megamacro",
  40277. height: math.unit(9000, "feet")
  40278. },
  40279. {
  40280. name: "City-Crushing",
  40281. height: math.unit(27000, "feet")
  40282. },
  40283. {
  40284. name: "Mountain-Mashing",
  40285. height: math.unit(90000, "feet")
  40286. },
  40287. {
  40288. name: "Earth-Eclipsing",
  40289. height: math.unit(2.7e8, "feet")
  40290. },
  40291. {
  40292. name: "Sol-Swallowing",
  40293. height: math.unit(9e10, "feet")
  40294. },
  40295. {
  40296. name: "Majoris-Munching",
  40297. height: math.unit(2.7e13, "feet")
  40298. },
  40299. ]
  40300. ))
  40301. characterMakers.push(() => makeCharacter(
  40302. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  40303. {
  40304. front: {
  40305. height: math.unit(1, "inch"),
  40306. name: "Front",
  40307. image: {
  40308. source: "./media/characters/squeaks-mouse/front.svg",
  40309. extra: 352/308,
  40310. bottom: 25/377
  40311. }
  40312. },
  40313. },
  40314. [
  40315. {
  40316. name: "Micro",
  40317. height: math.unit(1, "inch"),
  40318. default: true
  40319. },
  40320. ]
  40321. ))
  40322. characterMakers.push(() => makeCharacter(
  40323. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  40324. {
  40325. side: {
  40326. height: math.unit(35, "feet"),
  40327. name: "Side",
  40328. image: {
  40329. source: "./media/characters/sayko/side.svg",
  40330. extra: 1697/1021,
  40331. bottom: 82/1779
  40332. }
  40333. },
  40334. head: {
  40335. height: math.unit(16, "feet"),
  40336. name: "Head",
  40337. image: {
  40338. source: "./media/characters/sayko/head.svg"
  40339. }
  40340. },
  40341. forepaw: {
  40342. height: math.unit(7.85, "feet"),
  40343. name: "Forepaw",
  40344. image: {
  40345. source: "./media/characters/sayko/forepaw.svg"
  40346. }
  40347. },
  40348. hindpaw: {
  40349. height: math.unit(8.8, "feet"),
  40350. name: "Hindpaw",
  40351. image: {
  40352. source: "./media/characters/sayko/hindpaw.svg"
  40353. }
  40354. },
  40355. },
  40356. [
  40357. {
  40358. name: "Normal",
  40359. height: math.unit(35, "feet"),
  40360. default: true
  40361. },
  40362. {
  40363. name: "Colossus",
  40364. height: math.unit(100, "meters")
  40365. },
  40366. {
  40367. name: "\"Small\" Deity",
  40368. height: math.unit(1, "km")
  40369. },
  40370. {
  40371. name: "\"Large\" Deity",
  40372. height: math.unit(15, "km")
  40373. },
  40374. ]
  40375. ))
  40376. characterMakers.push(() => makeCharacter(
  40377. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  40378. {
  40379. front: {
  40380. height: math.unit(6, "feet"),
  40381. weight: math.unit(250, "lb"),
  40382. name: "Front",
  40383. image: {
  40384. source: "./media/characters/mukiro/front.svg",
  40385. extra: 1368/1310,
  40386. bottom: 34/1402
  40387. }
  40388. },
  40389. },
  40390. [
  40391. {
  40392. name: "Normal",
  40393. height: math.unit(6, "feet"),
  40394. default: true
  40395. },
  40396. ]
  40397. ))
  40398. characterMakers.push(() => makeCharacter(
  40399. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  40400. {
  40401. front: {
  40402. height: math.unit(12 + 4/12, "feet"),
  40403. name: "Front",
  40404. image: {
  40405. source: "./media/characters/zeph-the-tiger-god/front.svg",
  40406. extra: 1346/1311,
  40407. bottom: 65/1411
  40408. }
  40409. },
  40410. },
  40411. [
  40412. {
  40413. name: "Base",
  40414. height: math.unit(12 + 4/12, "feet"),
  40415. default: true
  40416. },
  40417. {
  40418. name: "Macro",
  40419. height: math.unit(150, "feet")
  40420. },
  40421. {
  40422. name: "Mega",
  40423. height: math.unit(2, "miles")
  40424. },
  40425. {
  40426. name: "Demi God",
  40427. height: math.unit(4, "AU")
  40428. },
  40429. {
  40430. name: "God Size",
  40431. height: math.unit(1, "universe")
  40432. },
  40433. ]
  40434. ))
  40435. characterMakers.push(() => makeCharacter(
  40436. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  40437. {
  40438. front: {
  40439. height: math.unit(3 + 3/12, "feet"),
  40440. weight: math.unit(88, "lb"),
  40441. name: "Front",
  40442. image: {
  40443. source: "./media/characters/trey/front.svg",
  40444. extra: 1815/1509,
  40445. bottom: 60/1875
  40446. }
  40447. },
  40448. },
  40449. [
  40450. {
  40451. name: "Normal",
  40452. height: math.unit(3 + 3/12, "feet"),
  40453. default: true
  40454. },
  40455. ]
  40456. ))
  40457. characterMakers.push(() => makeCharacter(
  40458. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  40459. {
  40460. front: {
  40461. height: math.unit(4, "meters"),
  40462. name: "Front",
  40463. image: {
  40464. source: "./media/characters/adelonda/front.svg",
  40465. extra: 1077/982,
  40466. bottom: 39/1116
  40467. }
  40468. },
  40469. back: {
  40470. height: math.unit(4, "meters"),
  40471. name: "Back",
  40472. image: {
  40473. source: "./media/characters/adelonda/back.svg",
  40474. extra: 1105/1003,
  40475. bottom: 25/1130
  40476. }
  40477. },
  40478. feral: {
  40479. height: math.unit(40/1.5, "meters"),
  40480. name: "Feral",
  40481. image: {
  40482. source: "./media/characters/adelonda/feral.svg",
  40483. extra: 597/271,
  40484. bottom: 387/984
  40485. }
  40486. },
  40487. },
  40488. [
  40489. {
  40490. name: "Normal",
  40491. height: math.unit(4, "meters"),
  40492. default: true
  40493. },
  40494. ]
  40495. ))
  40496. characterMakers.push(() => makeCharacter(
  40497. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  40498. {
  40499. front: {
  40500. height: math.unit(8 + 4/12, "feet"),
  40501. weight: math.unit(670, "lb"),
  40502. name: "Front",
  40503. image: {
  40504. source: "./media/characters/acadiel/front.svg",
  40505. extra: 1901/1595,
  40506. bottom: 142/2043
  40507. }
  40508. },
  40509. },
  40510. [
  40511. {
  40512. name: "Normal",
  40513. height: math.unit(8 + 4/12, "feet"),
  40514. default: true
  40515. },
  40516. {
  40517. name: "Macro",
  40518. height: math.unit(200, "feet")
  40519. },
  40520. ]
  40521. ))
  40522. characterMakers.push(() => makeCharacter(
  40523. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  40524. {
  40525. front: {
  40526. height: math.unit(6 + 2/12, "feet"),
  40527. weight: math.unit(185, "lb"),
  40528. name: "Front",
  40529. image: {
  40530. source: "./media/characters/kayne-ein/front.svg",
  40531. extra: 1780/1560,
  40532. bottom: 81/1861
  40533. }
  40534. },
  40535. },
  40536. [
  40537. {
  40538. name: "Normal",
  40539. height: math.unit(6 + 2/12, "feet"),
  40540. default: true
  40541. },
  40542. {
  40543. name: "Transformation Stage",
  40544. height: math.unit(15, "feet")
  40545. },
  40546. {
  40547. name: "Macro",
  40548. height: math.unit(150, "feet")
  40549. },
  40550. {
  40551. name: "Earth's Shadow",
  40552. height: math.unit(6200, "miles")
  40553. },
  40554. {
  40555. name: "Universal Demon",
  40556. height: math.unit(28e9, "parsecs")
  40557. },
  40558. {
  40559. name: "Multiverse God",
  40560. height: math.unit(3, "multiverses")
  40561. },
  40562. ]
  40563. ))
  40564. characterMakers.push(() => makeCharacter(
  40565. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  40566. {
  40567. front: {
  40568. height: math.unit(5 + 5/12, "feet"),
  40569. name: "Front",
  40570. image: {
  40571. source: "./media/characters/fawn/front.svg",
  40572. extra: 1873/1731,
  40573. bottom: 95/1968
  40574. }
  40575. },
  40576. back: {
  40577. height: math.unit(5 + 5/12, "feet"),
  40578. name: "Back",
  40579. image: {
  40580. source: "./media/characters/fawn/back.svg",
  40581. extra: 1813/1700,
  40582. bottom: 14/1827
  40583. }
  40584. },
  40585. hoof: {
  40586. height: math.unit(1.45, "feet"),
  40587. name: "Hoof",
  40588. image: {
  40589. source: "./media/characters/fawn/hoof.svg"
  40590. }
  40591. },
  40592. },
  40593. [
  40594. {
  40595. name: "Normal",
  40596. height: math.unit(5 + 5/12, "feet"),
  40597. default: true
  40598. },
  40599. ]
  40600. ))
  40601. characterMakers.push(() => makeCharacter(
  40602. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  40603. {
  40604. front: {
  40605. height: math.unit(2 + 5/12, "feet"),
  40606. name: "Front",
  40607. image: {
  40608. source: "./media/characters/orion/front.svg",
  40609. extra: 1366/1304,
  40610. bottom: 43/1409
  40611. }
  40612. },
  40613. paw: {
  40614. height: math.unit(0.52, "feet"),
  40615. name: "Paw",
  40616. image: {
  40617. source: "./media/characters/orion/paw.svg"
  40618. }
  40619. },
  40620. },
  40621. [
  40622. {
  40623. name: "Normal",
  40624. height: math.unit(2 + 5/12, "feet"),
  40625. default: true
  40626. },
  40627. ]
  40628. ))
  40629. characterMakers.push(() => makeCharacter(
  40630. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  40631. {
  40632. front: {
  40633. height: math.unit(5 + 10/12, "feet"),
  40634. name: "Front",
  40635. image: {
  40636. source: "./media/characters/vera/front.svg",
  40637. extra: 1680/1575,
  40638. bottom: 49/1729
  40639. }
  40640. },
  40641. back: {
  40642. height: math.unit(5 + 10/12, "feet"),
  40643. name: "Back",
  40644. image: {
  40645. source: "./media/characters/vera/back.svg",
  40646. extra: 1700/1588,
  40647. bottom: 18/1718
  40648. }
  40649. },
  40650. arcanine: {
  40651. height: math.unit(6 + 8/12, "feet"),
  40652. name: "Arcanine",
  40653. image: {
  40654. source: "./media/characters/vera/arcanine.svg",
  40655. extra: 1590/1511,
  40656. bottom: 71/1661
  40657. }
  40658. },
  40659. maw: {
  40660. height: math.unit(0.82, "feet"),
  40661. name: "Maw",
  40662. image: {
  40663. source: "./media/characters/vera/maw.svg"
  40664. }
  40665. },
  40666. mawArcanine: {
  40667. height: math.unit(0.97, "feet"),
  40668. name: "Maw (Arcanine)",
  40669. image: {
  40670. source: "./media/characters/vera/maw-arcanine.svg"
  40671. }
  40672. },
  40673. paw: {
  40674. height: math.unit(0.75, "feet"),
  40675. name: "Paw",
  40676. image: {
  40677. source: "./media/characters/vera/paw.svg"
  40678. }
  40679. },
  40680. pawprint: {
  40681. height: math.unit(0.52, "feet"),
  40682. name: "Pawprint",
  40683. image: {
  40684. source: "./media/characters/vera/pawprint.svg"
  40685. }
  40686. },
  40687. },
  40688. [
  40689. {
  40690. name: "Normal",
  40691. height: math.unit(5 + 10/12, "feet"),
  40692. default: true
  40693. },
  40694. {
  40695. name: "Macro",
  40696. height: math.unit(75, "feet")
  40697. },
  40698. ]
  40699. ))
  40700. characterMakers.push(() => makeCharacter(
  40701. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  40702. {
  40703. front: {
  40704. height: math.unit(4, "feet"),
  40705. weight: math.unit(40, "lb"),
  40706. name: "Front",
  40707. image: {
  40708. source: "./media/characters/orvan-rabbit/front.svg",
  40709. extra: 1896/1642,
  40710. bottom: 29/1925
  40711. }
  40712. },
  40713. },
  40714. [
  40715. {
  40716. name: "Normal",
  40717. height: math.unit(4, "feet"),
  40718. default: true
  40719. },
  40720. ]
  40721. ))
  40722. characterMakers.push(() => makeCharacter(
  40723. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  40724. {
  40725. front: {
  40726. height: math.unit(6, "feet"),
  40727. weight: math.unit(168, "lb"),
  40728. name: "Front",
  40729. image: {
  40730. source: "./media/characters/lisa/front.svg",
  40731. extra: 2065/1867,
  40732. bottom: 46/2111
  40733. }
  40734. },
  40735. back: {
  40736. height: math.unit(6, "feet"),
  40737. weight: math.unit(168, "lb"),
  40738. name: "Back",
  40739. image: {
  40740. source: "./media/characters/lisa/back.svg",
  40741. extra: 1982/1838,
  40742. bottom: 29/2011
  40743. }
  40744. },
  40745. maw: {
  40746. height: math.unit(0.81, "feet"),
  40747. name: "Maw",
  40748. image: {
  40749. source: "./media/characters/lisa/maw.svg"
  40750. }
  40751. },
  40752. paw: {
  40753. height: math.unit(0.9, "feet"),
  40754. name: "Paw",
  40755. image: {
  40756. source: "./media/characters/lisa/paw.svg"
  40757. }
  40758. },
  40759. caribousune: {
  40760. height: math.unit(7 + 2/12, "feet"),
  40761. weight: math.unit(268, "lb"),
  40762. name: "Caribousune",
  40763. image: {
  40764. source: "./media/characters/lisa/caribousune.svg",
  40765. extra: 1843/1633,
  40766. bottom: 29/1872
  40767. }
  40768. },
  40769. frontCaribousune: {
  40770. height: math.unit(7 + 2/12, "feet"),
  40771. weight: math.unit(268, "lb"),
  40772. name: "Front (Caribousune)",
  40773. image: {
  40774. source: "./media/characters/lisa/front-caribousune.svg",
  40775. extra: 1818/1638,
  40776. bottom: 52/1870
  40777. }
  40778. },
  40779. sideCaribousune: {
  40780. height: math.unit(7 + 2/12, "feet"),
  40781. weight: math.unit(268, "lb"),
  40782. name: "Side (Caribousune)",
  40783. image: {
  40784. source: "./media/characters/lisa/side-caribousune.svg",
  40785. extra: 1851/1635,
  40786. bottom: 16/1867
  40787. }
  40788. },
  40789. backCaribousune: {
  40790. height: math.unit(7 + 2/12, "feet"),
  40791. weight: math.unit(268, "lb"),
  40792. name: "Back (Caribousune)",
  40793. image: {
  40794. source: "./media/characters/lisa/back-caribousune.svg",
  40795. extra: 1801/1604,
  40796. bottom: 44/1845
  40797. }
  40798. },
  40799. caribou: {
  40800. height: math.unit(7 + 2/12, "feet"),
  40801. weight: math.unit(268, "lb"),
  40802. name: "Caribou",
  40803. image: {
  40804. source: "./media/characters/lisa/caribou.svg",
  40805. extra: 1843/1633,
  40806. bottom: 29/1872
  40807. }
  40808. },
  40809. frontCaribou: {
  40810. height: math.unit(7 + 2/12, "feet"),
  40811. weight: math.unit(268, "lb"),
  40812. name: "Front (Caribou)",
  40813. image: {
  40814. source: "./media/characters/lisa/front-caribou.svg",
  40815. extra: 1818/1638,
  40816. bottom: 52/1870
  40817. }
  40818. },
  40819. sideCaribou: {
  40820. height: math.unit(7 + 2/12, "feet"),
  40821. weight: math.unit(268, "lb"),
  40822. name: "Side (Caribou)",
  40823. image: {
  40824. source: "./media/characters/lisa/side-caribou.svg",
  40825. extra: 1851/1635,
  40826. bottom: 16/1867
  40827. }
  40828. },
  40829. backCaribou: {
  40830. height: math.unit(7 + 2/12, "feet"),
  40831. weight: math.unit(268, "lb"),
  40832. name: "Back (Caribou)",
  40833. image: {
  40834. source: "./media/characters/lisa/back-caribou.svg",
  40835. extra: 1801/1604,
  40836. bottom: 44/1845
  40837. }
  40838. },
  40839. mawCaribou: {
  40840. height: math.unit(1.45, "feet"),
  40841. name: "Maw (Caribou)",
  40842. image: {
  40843. source: "./media/characters/lisa/maw-caribou.svg"
  40844. }
  40845. },
  40846. mawCaribousune: {
  40847. height: math.unit(1.45, "feet"),
  40848. name: "Maw (Caribousune)",
  40849. image: {
  40850. source: "./media/characters/lisa/maw-caribousune.svg"
  40851. }
  40852. },
  40853. pawCaribousune: {
  40854. height: math.unit(1.61, "feet"),
  40855. name: "Paw (Caribou)",
  40856. image: {
  40857. source: "./media/characters/lisa/paw-caribousune.svg"
  40858. }
  40859. },
  40860. },
  40861. [
  40862. {
  40863. name: "Normal",
  40864. height: math.unit(6, "feet")
  40865. },
  40866. {
  40867. name: "God Size",
  40868. height: math.unit(72, "feet"),
  40869. default: true
  40870. },
  40871. {
  40872. name: "Towering",
  40873. height: math.unit(288, "feet")
  40874. },
  40875. {
  40876. name: "City Size",
  40877. height: math.unit(48384, "feet")
  40878. },
  40879. {
  40880. name: "Continental",
  40881. height: math.unit(4200, "miles")
  40882. },
  40883. {
  40884. name: "Planet Eater",
  40885. height: math.unit(42, "earths")
  40886. },
  40887. {
  40888. name: "Star Swallower",
  40889. height: math.unit(42, "solarradii")
  40890. },
  40891. {
  40892. name: "System Swallower",
  40893. height: math.unit(84000, "AU")
  40894. },
  40895. {
  40896. name: "Galaxy Gobbler",
  40897. height: math.unit(42, "galaxies")
  40898. },
  40899. {
  40900. name: "Universe Devourer",
  40901. height: math.unit(42, "universes")
  40902. },
  40903. {
  40904. name: "Multiverse Muncher",
  40905. height: math.unit(42, "multiverses")
  40906. },
  40907. ]
  40908. ))
  40909. characterMakers.push(() => makeCharacter(
  40910. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  40911. {
  40912. front: {
  40913. height: math.unit(36, "feet"),
  40914. name: "Front",
  40915. image: {
  40916. source: "./media/characters/shadow-rat/front.svg",
  40917. extra: 1845/1758,
  40918. bottom: 83/1928
  40919. }
  40920. },
  40921. },
  40922. [
  40923. {
  40924. name: "Macro",
  40925. height: math.unit(36, "feet"),
  40926. default: true
  40927. },
  40928. ]
  40929. ))
  40930. characterMakers.push(() => makeCharacter(
  40931. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  40932. {
  40933. side: {
  40934. height: math.unit(8, "feet"),
  40935. weight: math.unit(2630, "lb"),
  40936. name: "Side",
  40937. image: {
  40938. source: "./media/characters/torallia/side.svg",
  40939. extra: 2164/2021,
  40940. bottom: 371/2535
  40941. }
  40942. },
  40943. },
  40944. [
  40945. {
  40946. name: "Mortal Interaction",
  40947. height: math.unit(8, "feet")
  40948. },
  40949. {
  40950. name: "Natural",
  40951. height: math.unit(24, "feet"),
  40952. default: true
  40953. },
  40954. {
  40955. name: "Giant",
  40956. height: math.unit(80, "feet")
  40957. },
  40958. {
  40959. name: "Kaiju",
  40960. height: math.unit(240, "feet")
  40961. },
  40962. {
  40963. name: "Macro",
  40964. height: math.unit(800, "feet")
  40965. },
  40966. {
  40967. name: "Macro+",
  40968. height: math.unit(2400, "feet")
  40969. },
  40970. {
  40971. name: "Macro++",
  40972. height: math.unit(8000, "feet")
  40973. },
  40974. {
  40975. name: "City-Crushing",
  40976. height: math.unit(24000, "feet")
  40977. },
  40978. {
  40979. name: "Mountain-Mashing",
  40980. height: math.unit(80000, "feet")
  40981. },
  40982. {
  40983. name: "District Demolisher",
  40984. height: math.unit(240000, "feet")
  40985. },
  40986. {
  40987. name: "Tri-County Terror",
  40988. height: math.unit(800000, "feet")
  40989. },
  40990. {
  40991. name: "State Smasher",
  40992. height: math.unit(2.4e6, "feet")
  40993. },
  40994. {
  40995. name: "Nation Nemesis",
  40996. height: math.unit(8e6, "feet")
  40997. },
  40998. {
  40999. name: "Continent Cracker",
  41000. height: math.unit(2.4e7, "feet")
  41001. },
  41002. {
  41003. name: "Planet-Pillaging",
  41004. height: math.unit(8e7, "feet")
  41005. },
  41006. {
  41007. name: "Earth-Eclipsing",
  41008. height: math.unit(2.4e8, "feet")
  41009. },
  41010. {
  41011. name: "Jovian-Jostling",
  41012. height: math.unit(8e8, "feet")
  41013. },
  41014. {
  41015. name: "Gas Giant Gulper",
  41016. height: math.unit(2.4e9, "feet")
  41017. },
  41018. {
  41019. name: "Astral Annihilator",
  41020. height: math.unit(8e9, "feet")
  41021. },
  41022. {
  41023. name: "Celestial Conqueror",
  41024. height: math.unit(2.4e10, "feet")
  41025. },
  41026. {
  41027. name: "Sol-Swallowing",
  41028. height: math.unit(8e10, "feet")
  41029. },
  41030. {
  41031. name: "Hunter of the Heavens",
  41032. height: math.unit(2.4e13, "feet")
  41033. },
  41034. ]
  41035. ))
  41036. characterMakers.push(() => makeCharacter(
  41037. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  41038. {
  41039. front: {
  41040. height: math.unit(6 + 8/12, "feet"),
  41041. weight: math.unit(250, "kilograms"),
  41042. volume: math.unit(28, "liters"),
  41043. name: "Front",
  41044. image: {
  41045. source: "./media/characters/rebecca-pawlson/front.svg",
  41046. extra: 1737/1596,
  41047. bottom: 107/1844
  41048. }
  41049. },
  41050. back: {
  41051. height: math.unit(6 + 8/12, "feet"),
  41052. weight: math.unit(250, "kilograms"),
  41053. volume: math.unit(28, "liters"),
  41054. name: "Back",
  41055. image: {
  41056. source: "./media/characters/rebecca-pawlson/back.svg",
  41057. extra: 1702/1523,
  41058. bottom: 86/1788
  41059. }
  41060. },
  41061. },
  41062. [
  41063. {
  41064. name: "Normal",
  41065. height: math.unit(6 + 8/12, "feet")
  41066. },
  41067. {
  41068. name: "Mini Macro",
  41069. height: math.unit(10, "feet"),
  41070. default: true
  41071. },
  41072. {
  41073. name: "Macro",
  41074. height: math.unit(100, "feet")
  41075. },
  41076. {
  41077. name: "Mega Macro",
  41078. height: math.unit(2500, "feet")
  41079. },
  41080. {
  41081. name: "Giga Macro",
  41082. height: math.unit(50, "miles")
  41083. },
  41084. ]
  41085. ))
  41086. characterMakers.push(() => makeCharacter(
  41087. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  41088. {
  41089. front: {
  41090. height: math.unit(7 + 6/12, "feet"),
  41091. weight: math.unit(600, "lb"),
  41092. name: "Front",
  41093. image: {
  41094. source: "./media/characters/moxie-nova/front.svg",
  41095. extra: 1734/1652,
  41096. bottom: 41/1775
  41097. }
  41098. },
  41099. },
  41100. [
  41101. {
  41102. name: "Normal",
  41103. height: math.unit(7 + 6/12, "feet"),
  41104. default: true
  41105. },
  41106. ]
  41107. ))
  41108. characterMakers.push(() => makeCharacter(
  41109. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  41110. {
  41111. goat: {
  41112. height: math.unit(4, "feet"),
  41113. weight: math.unit(180, "lb"),
  41114. name: "Goat",
  41115. image: {
  41116. source: "./media/characters/tiffany/goat.svg",
  41117. extra: 1845/1595,
  41118. bottom: 106/1951
  41119. }
  41120. },
  41121. front: {
  41122. height: math.unit(5, "feet"),
  41123. weight: math.unit(150, "lb"),
  41124. name: "Foxcoon",
  41125. image: {
  41126. source: "./media/characters/tiffany/foxcoon.svg",
  41127. extra: 1941/1845,
  41128. bottom: 58/1999
  41129. }
  41130. },
  41131. },
  41132. [
  41133. {
  41134. name: "Normal",
  41135. height: math.unit(5, "feet"),
  41136. default: true
  41137. },
  41138. ]
  41139. ))
  41140. characterMakers.push(() => makeCharacter(
  41141. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  41142. {
  41143. front: {
  41144. height: math.unit(8, "feet"),
  41145. weight: math.unit(300, "lb"),
  41146. name: "Front",
  41147. image: {
  41148. source: "./media/characters/raxinath/front.svg",
  41149. extra: 1407/1309,
  41150. bottom: 39/1446
  41151. }
  41152. },
  41153. back: {
  41154. height: math.unit(8, "feet"),
  41155. weight: math.unit(300, "lb"),
  41156. name: "Back",
  41157. image: {
  41158. source: "./media/characters/raxinath/back.svg",
  41159. extra: 1405/1315,
  41160. bottom: 9/1414
  41161. }
  41162. },
  41163. },
  41164. [
  41165. {
  41166. name: "Speck",
  41167. height: math.unit(0.5, "nm")
  41168. },
  41169. {
  41170. name: "Micro",
  41171. height: math.unit(3, "inches")
  41172. },
  41173. {
  41174. name: "Kobold",
  41175. height: math.unit(3, "feet")
  41176. },
  41177. {
  41178. name: "Normal",
  41179. height: math.unit(8, "feet"),
  41180. default: true
  41181. },
  41182. {
  41183. name: "Giant",
  41184. height: math.unit(50, "feet")
  41185. },
  41186. {
  41187. name: "Macro",
  41188. height: math.unit(1000, "feet")
  41189. },
  41190. {
  41191. name: "Megamacro",
  41192. height: math.unit(1, "mile")
  41193. },
  41194. ]
  41195. ))
  41196. characterMakers.push(() => makeCharacter(
  41197. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  41198. {
  41199. front: {
  41200. height: math.unit(10, "feet"),
  41201. weight: math.unit(1442, "lb"),
  41202. name: "Front",
  41203. image: {
  41204. source: "./media/characters/mal-dragon/front.svg",
  41205. extra: 1515/1444,
  41206. bottom: 113/1628
  41207. }
  41208. },
  41209. back: {
  41210. height: math.unit(10, "feet"),
  41211. weight: math.unit(1442, "lb"),
  41212. name: "Back",
  41213. image: {
  41214. source: "./media/characters/mal-dragon/back.svg",
  41215. extra: 1527/1434,
  41216. bottom: 25/1552
  41217. }
  41218. },
  41219. },
  41220. [
  41221. {
  41222. name: "Mortal Interaction",
  41223. height: math.unit(10, "feet"),
  41224. default: true
  41225. },
  41226. {
  41227. name: "Large",
  41228. height: math.unit(30, "feet")
  41229. },
  41230. {
  41231. name: "Kaiju",
  41232. height: math.unit(300, "feet")
  41233. },
  41234. {
  41235. name: "Megamacro",
  41236. height: math.unit(10000, "feet")
  41237. },
  41238. {
  41239. name: "Continent Cracker",
  41240. height: math.unit(30000000, "feet")
  41241. },
  41242. {
  41243. name: "Sol-Swallowing",
  41244. height: math.unit(1e11, "feet")
  41245. },
  41246. {
  41247. name: "Light Universal",
  41248. height: math.unit(5, "universes")
  41249. },
  41250. {
  41251. name: "Universe Atoms",
  41252. height: math.unit(1.829e9, "universes")
  41253. },
  41254. {
  41255. name: "Light Multiversal",
  41256. height: math.unit(5, "multiverses")
  41257. },
  41258. {
  41259. name: "Multiverse Atoms",
  41260. height: math.unit(1.829e9, "multiverses")
  41261. },
  41262. {
  41263. name: "Fabric of Time",
  41264. height: math.unit(1e262, "multiverses")
  41265. },
  41266. ]
  41267. ))
  41268. characterMakers.push(() => makeCharacter(
  41269. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  41270. {
  41271. front: {
  41272. height: math.unit(9, "feet"),
  41273. weight: math.unit(1050, "lb"),
  41274. name: "Front",
  41275. image: {
  41276. source: "./media/characters/tabitha/front.svg",
  41277. extra: 2083/1994,
  41278. bottom: 68/2151
  41279. }
  41280. },
  41281. },
  41282. [
  41283. {
  41284. name: "Baseline",
  41285. height: math.unit(9, "feet"),
  41286. default: true
  41287. },
  41288. {
  41289. name: "Giant",
  41290. height: math.unit(90, "feet")
  41291. },
  41292. {
  41293. name: "Macro",
  41294. height: math.unit(900, "feet")
  41295. },
  41296. {
  41297. name: "Megamacro",
  41298. height: math.unit(9000, "feet")
  41299. },
  41300. {
  41301. name: "City-Crushing",
  41302. height: math.unit(27000, "feet")
  41303. },
  41304. {
  41305. name: "Mountain-Mashing",
  41306. height: math.unit(90000, "feet")
  41307. },
  41308. {
  41309. name: "Nation Nemesis",
  41310. height: math.unit(9e6, "feet")
  41311. },
  41312. {
  41313. name: "Continent Cracker",
  41314. height: math.unit(27e6, "feet")
  41315. },
  41316. {
  41317. name: "Earth-Eclipsing",
  41318. height: math.unit(2.7e8, "feet")
  41319. },
  41320. {
  41321. name: "Gas Giant Gulper",
  41322. height: math.unit(2.7e9, "feet")
  41323. },
  41324. {
  41325. name: "Sol-Swallowing",
  41326. height: math.unit(9e10, "feet")
  41327. },
  41328. {
  41329. name: "Galaxy Gulper",
  41330. height: math.unit(9, "galaxies")
  41331. },
  41332. {
  41333. name: "Cosmos Churner",
  41334. height: math.unit(9, "universes")
  41335. },
  41336. ]
  41337. ))
  41338. characterMakers.push(() => makeCharacter(
  41339. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  41340. {
  41341. front: {
  41342. height: math.unit(160, "cm"),
  41343. weight: math.unit(55, "kg"),
  41344. name: "Front",
  41345. image: {
  41346. source: "./media/characters/tow/front.svg",
  41347. extra: 1751/1722,
  41348. bottom: 74/1825
  41349. }
  41350. },
  41351. },
  41352. [
  41353. {
  41354. name: "Norm",
  41355. height: math.unit(160, "cm")
  41356. },
  41357. {
  41358. name: "Casual",
  41359. height: math.unit(3200, "m"),
  41360. default: true
  41361. },
  41362. {
  41363. name: "Show-Off",
  41364. height: math.unit(160, "km")
  41365. },
  41366. ]
  41367. ))
  41368. characterMakers.push(() => makeCharacter(
  41369. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  41370. {
  41371. front: {
  41372. height: math.unit(7 + 11/12, "feet"),
  41373. weight: math.unit(342.8, "lb"),
  41374. name: "Front",
  41375. image: {
  41376. source: "./media/characters/vivian-orca-dragon/front.svg",
  41377. extra: 1890/1865,
  41378. bottom: 28/1918
  41379. }
  41380. },
  41381. },
  41382. [
  41383. {
  41384. name: "Micro",
  41385. height: math.unit(5, "inches")
  41386. },
  41387. {
  41388. name: "Normal",
  41389. height: math.unit(7 + 11/12, "feet"),
  41390. default: true
  41391. },
  41392. {
  41393. name: "Macro",
  41394. height: math.unit(395 + 7/12, "feet")
  41395. },
  41396. ]
  41397. ))
  41398. characterMakers.push(() => makeCharacter(
  41399. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  41400. {
  41401. side: {
  41402. height: math.unit(10, "feet"),
  41403. weight: math.unit(1442, "lb"),
  41404. name: "Side",
  41405. image: {
  41406. source: "./media/characters/lotherakon/side.svg",
  41407. extra: 1604/1497,
  41408. bottom: 89/1693
  41409. }
  41410. },
  41411. },
  41412. [
  41413. {
  41414. name: "Mortal Interaction",
  41415. height: math.unit(10, "feet")
  41416. },
  41417. {
  41418. name: "Large",
  41419. height: math.unit(30, "feet"),
  41420. default: true
  41421. },
  41422. {
  41423. name: "Giant",
  41424. height: math.unit(100, "feet")
  41425. },
  41426. {
  41427. name: "Kaiju",
  41428. height: math.unit(300, "feet")
  41429. },
  41430. {
  41431. name: "Macro",
  41432. height: math.unit(1000, "feet")
  41433. },
  41434. {
  41435. name: "Macro+",
  41436. height: math.unit(3000, "feet")
  41437. },
  41438. {
  41439. name: "Megamacro",
  41440. height: math.unit(10000, "feet")
  41441. },
  41442. {
  41443. name: "City-Crushing",
  41444. height: math.unit(30000, "feet")
  41445. },
  41446. {
  41447. name: "Continent Cracker",
  41448. height: math.unit(30e6, "feet")
  41449. },
  41450. {
  41451. name: "Earth Eclipsing",
  41452. height: math.unit(3e8, "feet")
  41453. },
  41454. {
  41455. name: "Gas Giant Gulper",
  41456. height: math.unit(3e9, "feet")
  41457. },
  41458. {
  41459. name: "Sol-Swallowing",
  41460. height: math.unit(1e11, "feet")
  41461. },
  41462. {
  41463. name: "System Swallower",
  41464. height: math.unit(3e14, "feet")
  41465. },
  41466. {
  41467. name: "Galaxy Gulper",
  41468. height: math.unit(10, "galaxies")
  41469. },
  41470. {
  41471. name: "Light Universal",
  41472. height: math.unit(5, "universes")
  41473. },
  41474. {
  41475. name: "Universe Palm",
  41476. height: math.unit(20, "universes")
  41477. },
  41478. {
  41479. name: "Light Multiversal",
  41480. height: math.unit(5, "multiverses")
  41481. },
  41482. {
  41483. name: "Multiverse Palm",
  41484. height: math.unit(20, "multiverses")
  41485. },
  41486. {
  41487. name: "Inferno Incarnate",
  41488. height: math.unit(1e7, "multiverses")
  41489. },
  41490. ]
  41491. ))
  41492. characterMakers.push(() => makeCharacter(
  41493. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  41494. {
  41495. front: {
  41496. height: math.unit(8, "feet"),
  41497. weight: math.unit(1200, "lb"),
  41498. name: "Front",
  41499. image: {
  41500. source: "./media/characters/malithee/front.svg",
  41501. extra: 1675/1640,
  41502. bottom: 162/1837
  41503. }
  41504. },
  41505. },
  41506. [
  41507. {
  41508. name: "Mortal Interaction",
  41509. height: math.unit(8, "feet"),
  41510. default: true
  41511. },
  41512. {
  41513. name: "Large",
  41514. height: math.unit(24, "feet")
  41515. },
  41516. {
  41517. name: "Kaiju",
  41518. height: math.unit(240, "feet")
  41519. },
  41520. {
  41521. name: "Megamacro",
  41522. height: math.unit(8000, "feet")
  41523. },
  41524. {
  41525. name: "Continent Cracker",
  41526. height: math.unit(24e6, "feet")
  41527. },
  41528. {
  41529. name: "Earth-Eclipsing",
  41530. height: math.unit(2.4e8, "feet")
  41531. },
  41532. {
  41533. name: "Sol-Swallowing",
  41534. height: math.unit(8e10, "feet")
  41535. },
  41536. {
  41537. name: "Galaxy Gulper",
  41538. height: math.unit(8, "galaxies")
  41539. },
  41540. {
  41541. name: "Light Universal",
  41542. height: math.unit(4, "universes")
  41543. },
  41544. {
  41545. name: "Universe Atoms",
  41546. height: math.unit(1.829e9, "universes")
  41547. },
  41548. {
  41549. name: "Light Multiversal",
  41550. height: math.unit(4, "multiverses")
  41551. },
  41552. {
  41553. name: "Multiverse Atoms",
  41554. height: math.unit(1.829e9, "multiverses")
  41555. },
  41556. {
  41557. name: "Nigh-Omnipresence",
  41558. height: math.unit(8e261, "multiverses")
  41559. },
  41560. ]
  41561. ))
  41562. characterMakers.push(() => makeCharacter(
  41563. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  41564. {
  41565. front: {
  41566. height: math.unit(10, "feet"),
  41567. weight: math.unit(1500, "lb"),
  41568. name: "Front",
  41569. image: {
  41570. source: "./media/characters/miles-thestia/front.svg",
  41571. extra: 1812/1727,
  41572. bottom: 86/1898
  41573. }
  41574. },
  41575. back: {
  41576. height: math.unit(10, "feet"),
  41577. weight: math.unit(1500, "lb"),
  41578. name: "Back",
  41579. image: {
  41580. source: "./media/characters/miles-thestia/back.svg",
  41581. extra: 1799/1690,
  41582. bottom: 47/1846
  41583. }
  41584. },
  41585. frontNsfw: {
  41586. height: math.unit(10, "feet"),
  41587. weight: math.unit(1500, "lb"),
  41588. name: "Front (NSFW)",
  41589. image: {
  41590. source: "./media/characters/miles-thestia/front-nsfw.svg",
  41591. extra: 1812/1727,
  41592. bottom: 86/1898
  41593. }
  41594. },
  41595. },
  41596. [
  41597. {
  41598. name: "Mini-Macro",
  41599. height: math.unit(10, "feet"),
  41600. default: true
  41601. },
  41602. ]
  41603. ))
  41604. characterMakers.push(() => makeCharacter(
  41605. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  41606. {
  41607. front: {
  41608. height: math.unit(25, "feet"),
  41609. name: "Front",
  41610. image: {
  41611. source: "./media/characters/titan-s-wulf/front.svg",
  41612. extra: 1560/1484,
  41613. bottom: 76/1636
  41614. }
  41615. },
  41616. },
  41617. [
  41618. {
  41619. name: "Smallest",
  41620. height: math.unit(25, "feet"),
  41621. default: true
  41622. },
  41623. {
  41624. name: "Normal",
  41625. height: math.unit(200, "feet")
  41626. },
  41627. {
  41628. name: "Macro",
  41629. height: math.unit(200000, "feet")
  41630. },
  41631. {
  41632. name: "Multiversal Original",
  41633. height: math.unit(10000, "multiverses")
  41634. },
  41635. ]
  41636. ))
  41637. characterMakers.push(() => makeCharacter(
  41638. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  41639. {
  41640. front: {
  41641. height: math.unit(8, "feet"),
  41642. weight: math.unit(553, "lb"),
  41643. name: "Front",
  41644. image: {
  41645. source: "./media/characters/tawendeh/front.svg",
  41646. extra: 2365/2268,
  41647. bottom: 83/2448
  41648. }
  41649. },
  41650. frontClothed: {
  41651. height: math.unit(8, "feet"),
  41652. weight: math.unit(553, "lb"),
  41653. name: "Front (Clothed)",
  41654. image: {
  41655. source: "./media/characters/tawendeh/front-clothed.svg",
  41656. extra: 2365/2268,
  41657. bottom: 83/2448
  41658. }
  41659. },
  41660. back: {
  41661. height: math.unit(8, "feet"),
  41662. weight: math.unit(553, "lb"),
  41663. name: "Back",
  41664. image: {
  41665. source: "./media/characters/tawendeh/back.svg",
  41666. extra: 2397/2294,
  41667. bottom: 42/2439
  41668. }
  41669. },
  41670. },
  41671. [
  41672. {
  41673. name: "Mortal Interaction",
  41674. height: math.unit(8, "feet"),
  41675. default: true
  41676. },
  41677. {
  41678. name: "Giant",
  41679. height: math.unit(80, "feet")
  41680. },
  41681. {
  41682. name: "Macro",
  41683. height: math.unit(800, "feet")
  41684. },
  41685. {
  41686. name: "Megamacro",
  41687. height: math.unit(8000, "feet")
  41688. },
  41689. {
  41690. name: "City-Crushing",
  41691. height: math.unit(24000, "feet")
  41692. },
  41693. {
  41694. name: "Mountain-Mashing",
  41695. height: math.unit(80000, "feet")
  41696. },
  41697. {
  41698. name: "Nation Nemesis",
  41699. height: math.unit(8e6, "feet")
  41700. },
  41701. {
  41702. name: "Continent Cracker",
  41703. height: math.unit(24e6, "feet")
  41704. },
  41705. {
  41706. name: "Earth-Eclipsing",
  41707. height: math.unit(2.4e8, "feet")
  41708. },
  41709. {
  41710. name: "Gas Giant Gulper",
  41711. height: math.unit(2.4e9, "feet")
  41712. },
  41713. {
  41714. name: "Sol-Swallowing",
  41715. height: math.unit(8e10, "feet")
  41716. },
  41717. {
  41718. name: "Galaxy Gulper",
  41719. height: math.unit(8, "galaxies")
  41720. },
  41721. {
  41722. name: "Cosmos Churner",
  41723. height: math.unit(8, "universes")
  41724. },
  41725. {
  41726. name: "Omnipotent Otter",
  41727. height: math.unit(80, "universes")
  41728. },
  41729. ]
  41730. ))
  41731. characterMakers.push(() => makeCharacter(
  41732. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  41733. {
  41734. front: {
  41735. height: math.unit(2.6, "meters"),
  41736. weight: math.unit(900, "kg"),
  41737. name: "Front",
  41738. image: {
  41739. source: "./media/characters/neesha/front.svg",
  41740. extra: 1803/1653,
  41741. bottom: 128/1931
  41742. }
  41743. },
  41744. },
  41745. [
  41746. {
  41747. name: "Normal",
  41748. height: math.unit(2.6, "meters"),
  41749. default: true
  41750. },
  41751. {
  41752. name: "Macro",
  41753. height: math.unit(50, "meters")
  41754. },
  41755. ]
  41756. ))
  41757. characterMakers.push(() => makeCharacter(
  41758. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  41759. {
  41760. front: {
  41761. height: math.unit(5, "feet"),
  41762. weight: math.unit(185, "lb"),
  41763. name: "Front",
  41764. image: {
  41765. source: "./media/characters/kyera/front.svg",
  41766. extra: 1875/1790,
  41767. bottom: 96/1971
  41768. }
  41769. },
  41770. },
  41771. [
  41772. {
  41773. name: "Normal",
  41774. height: math.unit(5, "feet"),
  41775. default: true
  41776. },
  41777. ]
  41778. ))
  41779. characterMakers.push(() => makeCharacter(
  41780. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  41781. {
  41782. front: {
  41783. height: math.unit(7 + 6/12, "feet"),
  41784. weight: math.unit(540, "lb"),
  41785. name: "Front",
  41786. image: {
  41787. source: "./media/characters/yuko/front.svg",
  41788. extra: 1282/1222,
  41789. bottom: 101/1383
  41790. }
  41791. },
  41792. frontClothed: {
  41793. height: math.unit(7 + 6/12, "feet"),
  41794. weight: math.unit(540, "lb"),
  41795. name: "Front (Clothed)",
  41796. image: {
  41797. source: "./media/characters/yuko/front-clothed.svg",
  41798. extra: 1282/1222,
  41799. bottom: 101/1383
  41800. }
  41801. },
  41802. },
  41803. [
  41804. {
  41805. name: "Normal",
  41806. height: math.unit(7 + 6/12, "feet"),
  41807. default: true
  41808. },
  41809. {
  41810. name: "Macro",
  41811. height: math.unit(26 + 9/12, "feet")
  41812. },
  41813. {
  41814. name: "Megamacro",
  41815. height: math.unit(300, "feet")
  41816. },
  41817. {
  41818. name: "Gigamacro",
  41819. height: math.unit(5000, "feet")
  41820. },
  41821. {
  41822. name: "Planetary",
  41823. height: math.unit(10000, "miles")
  41824. },
  41825. ]
  41826. ))
  41827. characterMakers.push(() => makeCharacter(
  41828. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  41829. {
  41830. front: {
  41831. height: math.unit(8 + 2/12, "feet"),
  41832. weight: math.unit(600, "lb"),
  41833. name: "Front",
  41834. image: {
  41835. source: "./media/characters/deam-nitrel/front.svg",
  41836. extra: 1308/1234,
  41837. bottom: 125/1433
  41838. }
  41839. },
  41840. },
  41841. [
  41842. {
  41843. name: "Normal",
  41844. height: math.unit(8 + 2/12, "feet"),
  41845. default: true
  41846. },
  41847. ]
  41848. ))
  41849. characterMakers.push(() => makeCharacter(
  41850. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  41851. {
  41852. front: {
  41853. height: math.unit(6.1, "feet"),
  41854. weight: math.unit(180, "lb"),
  41855. name: "Front",
  41856. image: {
  41857. source: "./media/characters/skyress/front.svg",
  41858. extra: 1045/915,
  41859. bottom: 28/1073
  41860. }
  41861. },
  41862. maw: {
  41863. height: math.unit(1, "feet"),
  41864. name: "Maw",
  41865. image: {
  41866. source: "./media/characters/skyress/maw.svg"
  41867. }
  41868. },
  41869. },
  41870. [
  41871. {
  41872. name: "Normal",
  41873. height: math.unit(6.1, "feet"),
  41874. default: true
  41875. },
  41876. {
  41877. name: "Macro",
  41878. height: math.unit(200, "feet")
  41879. },
  41880. ]
  41881. ))
  41882. characterMakers.push(() => makeCharacter(
  41883. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  41884. {
  41885. front: {
  41886. height: math.unit(4 + 2/12, "feet"),
  41887. weight: math.unit(40, "kg"),
  41888. name: "Front",
  41889. image: {
  41890. source: "./media/characters/amethyst-jones/front.svg",
  41891. extra: 1220/1150,
  41892. bottom: 101/1321
  41893. }
  41894. },
  41895. },
  41896. [
  41897. {
  41898. name: "Normal",
  41899. height: math.unit(4 + 2/12, "feet"),
  41900. default: true
  41901. },
  41902. ]
  41903. ))
  41904. characterMakers.push(() => makeCharacter(
  41905. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  41906. {
  41907. front: {
  41908. height: math.unit(1.7, "m"),
  41909. weight: math.unit(135, "lb"),
  41910. name: "Front",
  41911. image: {
  41912. source: "./media/characters/jade/front.svg",
  41913. extra: 1818/1767,
  41914. bottom: 32/1850
  41915. }
  41916. },
  41917. back: {
  41918. height: math.unit(1.7, "m"),
  41919. weight: math.unit(135, "lb"),
  41920. name: "Back",
  41921. image: {
  41922. source: "./media/characters/jade/back.svg",
  41923. extra: 1869/1809,
  41924. bottom: 35/1904
  41925. }
  41926. },
  41927. hand: {
  41928. height: math.unit(0.24, "m"),
  41929. name: "Hand",
  41930. image: {
  41931. source: "./media/characters/jade/hand.svg"
  41932. }
  41933. },
  41934. foot: {
  41935. height: math.unit(0.263, "m"),
  41936. name: "Foot",
  41937. image: {
  41938. source: "./media/characters/jade/foot.svg"
  41939. }
  41940. },
  41941. dick: {
  41942. height: math.unit(0.47, "m"),
  41943. name: "Dick",
  41944. image: {
  41945. source: "./media/characters/jade/dick.svg"
  41946. }
  41947. },
  41948. },
  41949. [
  41950. {
  41951. name: "Micro",
  41952. height: math.unit(22, "cm")
  41953. },
  41954. {
  41955. name: "Normal",
  41956. height: math.unit(1.7, "m"),
  41957. default: true
  41958. },
  41959. {
  41960. name: "Macro",
  41961. height: math.unit(152, "m")
  41962. },
  41963. ]
  41964. ))
  41965. characterMakers.push(() => makeCharacter(
  41966. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  41967. {
  41968. front: {
  41969. height: math.unit(100, "miles"),
  41970. weight: math.unit(20000, "tons"),
  41971. name: "Front",
  41972. image: {
  41973. source: "./media/characters/cookie/front.svg",
  41974. extra: 1125/1070,
  41975. bottom: 30/1155
  41976. }
  41977. },
  41978. },
  41979. [
  41980. {
  41981. name: "Big",
  41982. height: math.unit(50, "feet")
  41983. },
  41984. {
  41985. name: "Macro",
  41986. height: math.unit(100, "miles"),
  41987. default: true
  41988. },
  41989. {
  41990. name: "Megamacro",
  41991. height: math.unit(90000, "miles")
  41992. },
  41993. ]
  41994. ))
  41995. characterMakers.push(() => makeCharacter(
  41996. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  41997. {
  41998. front: {
  41999. height: math.unit(6, "feet"),
  42000. weight: math.unit(145, "lb"),
  42001. name: "Front",
  42002. image: {
  42003. source: "./media/characters/farzian/front.svg",
  42004. extra: 1902/1693,
  42005. bottom: 108/2010
  42006. }
  42007. },
  42008. },
  42009. [
  42010. {
  42011. name: "Macro",
  42012. height: math.unit(500, "feet"),
  42013. default: true
  42014. },
  42015. ]
  42016. ))
  42017. characterMakers.push(() => makeCharacter(
  42018. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  42019. {
  42020. front: {
  42021. height: math.unit(3 + 6/12, "feet"),
  42022. weight: math.unit(50, "lb"),
  42023. name: "Front",
  42024. image: {
  42025. source: "./media/characters/kimberly-tilson/front.svg",
  42026. extra: 1400/1322,
  42027. bottom: 36/1436
  42028. }
  42029. },
  42030. back: {
  42031. height: math.unit(3 + 6/12, "feet"),
  42032. weight: math.unit(50, "lb"),
  42033. name: "Back",
  42034. image: {
  42035. source: "./media/characters/kimberly-tilson/back.svg",
  42036. extra: 1370/1307,
  42037. bottom: 20/1390
  42038. }
  42039. },
  42040. },
  42041. [
  42042. {
  42043. name: "Normal",
  42044. height: math.unit(3 + 6/12, "feet"),
  42045. default: true
  42046. },
  42047. ]
  42048. ))
  42049. characterMakers.push(() => makeCharacter(
  42050. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  42051. {
  42052. front: {
  42053. height: math.unit(1148, "feet"),
  42054. weight: math.unit(34057, "lb"),
  42055. name: "Front",
  42056. image: {
  42057. source: "./media/characters/harthos/front.svg",
  42058. extra: 1391/1339,
  42059. bottom: 13/1404
  42060. }
  42061. },
  42062. },
  42063. [
  42064. {
  42065. name: "Macro",
  42066. height: math.unit(1148, "feet"),
  42067. default: true
  42068. },
  42069. ]
  42070. ))
  42071. characterMakers.push(() => makeCharacter(
  42072. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  42073. {
  42074. front: {
  42075. height: math.unit(15, "feet"),
  42076. name: "Front",
  42077. image: {
  42078. source: "./media/characters/hypatia/front.svg",
  42079. extra: 1653/1591,
  42080. bottom: 79/1732
  42081. }
  42082. },
  42083. },
  42084. [
  42085. {
  42086. name: "Normal",
  42087. height: math.unit(15, "feet")
  42088. },
  42089. {
  42090. name: "Small",
  42091. height: math.unit(300, "feet")
  42092. },
  42093. {
  42094. name: "Macro",
  42095. height: math.unit(2500, "feet"),
  42096. default: true
  42097. },
  42098. {
  42099. name: "Mega Macro",
  42100. height: math.unit(1500, "miles")
  42101. },
  42102. {
  42103. name: "Giga Macro",
  42104. height: math.unit(1.5e6, "miles")
  42105. },
  42106. ]
  42107. ))
  42108. characterMakers.push(() => makeCharacter(
  42109. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  42110. {
  42111. front: {
  42112. height: math.unit(6, "feet"),
  42113. weight: math.unit(200, "lb"),
  42114. name: "Front",
  42115. image: {
  42116. source: "./media/characters/wulver/front.svg",
  42117. extra: 1724/1632,
  42118. bottom: 130/1854
  42119. }
  42120. },
  42121. frontNsfw: {
  42122. height: math.unit(6, "feet"),
  42123. weight: math.unit(200, "lb"),
  42124. name: "Front (NSFW)",
  42125. image: {
  42126. source: "./media/characters/wulver/front-nsfw.svg",
  42127. extra: 1724/1632,
  42128. bottom: 130/1854
  42129. }
  42130. },
  42131. },
  42132. [
  42133. {
  42134. name: "Human-Sized",
  42135. height: math.unit(6, "feet")
  42136. },
  42137. {
  42138. name: "Normal",
  42139. height: math.unit(4, "meters"),
  42140. default: true
  42141. },
  42142. {
  42143. name: "Large",
  42144. height: math.unit(6, "m")
  42145. },
  42146. ]
  42147. ))
  42148. characterMakers.push(() => makeCharacter(
  42149. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  42150. {
  42151. front: {
  42152. height: math.unit(7, "feet"),
  42153. name: "Front",
  42154. image: {
  42155. source: "./media/characters/maru/front.svg",
  42156. extra: 1595/1570,
  42157. bottom: 0/1595
  42158. }
  42159. },
  42160. },
  42161. [
  42162. {
  42163. name: "Normal",
  42164. height: math.unit(7, "feet"),
  42165. default: true
  42166. },
  42167. {
  42168. name: "Macro",
  42169. height: math.unit(700, "feet")
  42170. },
  42171. {
  42172. name: "Mega Macro",
  42173. height: math.unit(25, "miles")
  42174. },
  42175. ]
  42176. ))
  42177. characterMakers.push(() => makeCharacter(
  42178. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  42179. {
  42180. front: {
  42181. height: math.unit(6, "feet"),
  42182. weight: math.unit(170, "lb"),
  42183. name: "Front",
  42184. image: {
  42185. source: "./media/characters/xenon/front.svg",
  42186. extra: 1376/1305,
  42187. bottom: 56/1432
  42188. }
  42189. },
  42190. back: {
  42191. height: math.unit(6, "feet"),
  42192. weight: math.unit(170, "lb"),
  42193. name: "Back",
  42194. image: {
  42195. source: "./media/characters/xenon/back.svg",
  42196. extra: 1328/1259,
  42197. bottom: 95/1423
  42198. }
  42199. },
  42200. maw: {
  42201. height: math.unit(0.52, "feet"),
  42202. name: "Maw",
  42203. image: {
  42204. source: "./media/characters/xenon/maw.svg"
  42205. }
  42206. },
  42207. handLeft: {
  42208. height: math.unit(0.82 * 169 / 153, "feet"),
  42209. name: "Hand (Left)",
  42210. image: {
  42211. source: "./media/characters/xenon/hand-left.svg"
  42212. }
  42213. },
  42214. handRight: {
  42215. height: math.unit(0.82, "feet"),
  42216. name: "Hand (Right)",
  42217. image: {
  42218. source: "./media/characters/xenon/hand-right.svg"
  42219. }
  42220. },
  42221. footLeft: {
  42222. height: math.unit(1.13, "feet"),
  42223. name: "Foot (Left)",
  42224. image: {
  42225. source: "./media/characters/xenon/foot-left.svg"
  42226. }
  42227. },
  42228. footRight: {
  42229. height: math.unit(1.13 * 194 / 196, "feet"),
  42230. name: "Foot (Right)",
  42231. image: {
  42232. source: "./media/characters/xenon/foot-right.svg"
  42233. }
  42234. },
  42235. },
  42236. [
  42237. {
  42238. name: "Micro",
  42239. height: math.unit(0.8, "inches")
  42240. },
  42241. {
  42242. name: "Normal",
  42243. height: math.unit(6, "feet")
  42244. },
  42245. {
  42246. name: "Macro",
  42247. height: math.unit(50, "feet"),
  42248. default: true
  42249. },
  42250. {
  42251. name: "Macro+",
  42252. height: math.unit(250, "feet")
  42253. },
  42254. {
  42255. name: "Megamacro",
  42256. height: math.unit(1500, "feet")
  42257. },
  42258. ]
  42259. ))
  42260. characterMakers.push(() => makeCharacter(
  42261. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  42262. {
  42263. front: {
  42264. height: math.unit(7 + 5/12, "feet"),
  42265. name: "Front",
  42266. image: {
  42267. source: "./media/characters/zane/front.svg",
  42268. extra: 1260/1203,
  42269. bottom: 94/1354
  42270. }
  42271. },
  42272. back: {
  42273. height: math.unit(5.05, "feet"),
  42274. name: "Back",
  42275. image: {
  42276. source: "./media/characters/zane/back.svg",
  42277. extra: 893/829,
  42278. bottom: 30/923
  42279. }
  42280. },
  42281. werewolf: {
  42282. height: math.unit(11, "feet"),
  42283. name: "Werewolf",
  42284. image: {
  42285. source: "./media/characters/zane/werewolf.svg",
  42286. extra: 1383/1323,
  42287. bottom: 89/1472
  42288. }
  42289. },
  42290. foot: {
  42291. height: math.unit(1.46, "feet"),
  42292. name: "Foot",
  42293. image: {
  42294. source: "./media/characters/zane/foot.svg"
  42295. }
  42296. },
  42297. footFront: {
  42298. height: math.unit(0.784, "feet"),
  42299. name: "Foot (Front)",
  42300. image: {
  42301. source: "./media/characters/zane/foot-front.svg"
  42302. }
  42303. },
  42304. dick: {
  42305. height: math.unit(1.95, "feet"),
  42306. name: "Dick",
  42307. image: {
  42308. source: "./media/characters/zane/dick.svg"
  42309. }
  42310. },
  42311. dickWerewolf: {
  42312. height: math.unit(3.77, "feet"),
  42313. name: "Dick (Werewolf)",
  42314. image: {
  42315. source: "./media/characters/zane/dick.svg"
  42316. }
  42317. },
  42318. },
  42319. [
  42320. {
  42321. name: "Normal",
  42322. height: math.unit(7 + 5/12, "feet"),
  42323. default: true
  42324. },
  42325. ]
  42326. ))
  42327. characterMakers.push(() => makeCharacter(
  42328. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  42329. {
  42330. front: {
  42331. height: math.unit(6 + 2/12, "feet"),
  42332. weight: math.unit(284, "lb"),
  42333. name: "Front",
  42334. image: {
  42335. source: "./media/characters/benni-desparque/front.svg",
  42336. extra: 1353/1126,
  42337. bottom: 69/1422
  42338. }
  42339. },
  42340. },
  42341. [
  42342. {
  42343. name: "Civilian",
  42344. height: math.unit(6 + 2/12, "feet")
  42345. },
  42346. {
  42347. name: "Normal",
  42348. height: math.unit(98, "feet"),
  42349. default: true
  42350. },
  42351. {
  42352. name: "Kaiju Fighter",
  42353. height: math.unit(268, "feet")
  42354. },
  42355. ]
  42356. ))
  42357. characterMakers.push(() => makeCharacter(
  42358. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  42359. {
  42360. front: {
  42361. height: math.unit(5, "feet"),
  42362. weight: math.unit(105, "lb"),
  42363. name: "Front",
  42364. image: {
  42365. source: "./media/characters/maxine/front.svg",
  42366. extra: 1386/1250,
  42367. bottom: 71/1457
  42368. }
  42369. },
  42370. },
  42371. [
  42372. {
  42373. name: "Normal",
  42374. height: math.unit(5, "feet"),
  42375. default: true
  42376. },
  42377. ]
  42378. ))
  42379. characterMakers.push(() => makeCharacter(
  42380. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  42381. {
  42382. front: {
  42383. height: math.unit(11 + 7/12, "feet"),
  42384. weight: math.unit(9576, "lb"),
  42385. name: "Front",
  42386. image: {
  42387. source: "./media/characters/scaly/front.svg",
  42388. extra: 888/867,
  42389. bottom: 36/924
  42390. }
  42391. },
  42392. },
  42393. [
  42394. {
  42395. name: "Normal",
  42396. height: math.unit(11 + 7/12, "feet"),
  42397. default: true
  42398. },
  42399. ]
  42400. ))
  42401. characterMakers.push(() => makeCharacter(
  42402. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  42403. {
  42404. front: {
  42405. height: math.unit(6 + 3/12, "feet"),
  42406. name: "Front",
  42407. image: {
  42408. source: "./media/characters/saelria/front.svg",
  42409. extra: 1243/1138,
  42410. bottom: 46/1289
  42411. }
  42412. },
  42413. },
  42414. [
  42415. {
  42416. name: "Micro",
  42417. height: math.unit(6, "inches"),
  42418. },
  42419. {
  42420. name: "Normal",
  42421. height: math.unit(6 + 3/12, "feet"),
  42422. default: true
  42423. },
  42424. {
  42425. name: "Macro",
  42426. height: math.unit(25, "feet")
  42427. },
  42428. ]
  42429. ))
  42430. characterMakers.push(() => makeCharacter(
  42431. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  42432. {
  42433. front: {
  42434. height: math.unit(80, "meters"),
  42435. weight: math.unit(7000, "tonnes"),
  42436. name: "Front",
  42437. image: {
  42438. source: "./media/characters/tef/front.svg",
  42439. extra: 2036/1991,
  42440. bottom: 54/2090
  42441. }
  42442. },
  42443. back: {
  42444. height: math.unit(80, "meters"),
  42445. weight: math.unit(7000, "tonnes"),
  42446. name: "Back",
  42447. image: {
  42448. source: "./media/characters/tef/back.svg",
  42449. extra: 2036/1991,
  42450. bottom: 54/2090
  42451. }
  42452. },
  42453. },
  42454. [
  42455. {
  42456. name: "Macro",
  42457. height: math.unit(80, "meters"),
  42458. default: true
  42459. },
  42460. ]
  42461. ))
  42462. characterMakers.push(() => makeCharacter(
  42463. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  42464. {
  42465. front: {
  42466. height: math.unit(13, "feet"),
  42467. weight: math.unit(6, "tons"),
  42468. name: "Front",
  42469. image: {
  42470. source: "./media/characters/rover/front.svg",
  42471. extra: 1233/1156,
  42472. bottom: 50/1283
  42473. }
  42474. },
  42475. back: {
  42476. height: math.unit(13, "feet"),
  42477. weight: math.unit(6, "tons"),
  42478. name: "Back",
  42479. image: {
  42480. source: "./media/characters/rover/back.svg",
  42481. extra: 1327/1258,
  42482. bottom: 39/1366
  42483. }
  42484. },
  42485. },
  42486. [
  42487. {
  42488. name: "Normal",
  42489. height: math.unit(13, "feet"),
  42490. default: true
  42491. },
  42492. {
  42493. name: "Macro",
  42494. height: math.unit(1300, "feet")
  42495. },
  42496. {
  42497. name: "Megamacro",
  42498. height: math.unit(1300, "miles")
  42499. },
  42500. {
  42501. name: "Gigamacro",
  42502. height: math.unit(1300000, "miles")
  42503. },
  42504. ]
  42505. ))
  42506. characterMakers.push(() => makeCharacter(
  42507. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  42508. {
  42509. front: {
  42510. height: math.unit(6, "feet"),
  42511. weight: math.unit(150, "lb"),
  42512. name: "Front",
  42513. image: {
  42514. source: "./media/characters/ariz/front.svg",
  42515. extra: 1401/1346,
  42516. bottom: 5/1406
  42517. }
  42518. },
  42519. },
  42520. [
  42521. {
  42522. name: "Normal",
  42523. height: math.unit(10, "feet"),
  42524. default: true
  42525. },
  42526. ]
  42527. ))
  42528. characterMakers.push(() => makeCharacter(
  42529. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  42530. {
  42531. front: {
  42532. height: math.unit(6, "feet"),
  42533. weight: math.unit(140, "lb"),
  42534. name: "Front",
  42535. image: {
  42536. source: "./media/characters/sigrun/front.svg",
  42537. extra: 1418/1359,
  42538. bottom: 27/1445
  42539. }
  42540. },
  42541. },
  42542. [
  42543. {
  42544. name: "Macro",
  42545. height: math.unit(35, "feet"),
  42546. default: true
  42547. },
  42548. ]
  42549. ))
  42550. characterMakers.push(() => makeCharacter(
  42551. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  42552. {
  42553. front: {
  42554. height: math.unit(6, "feet"),
  42555. weight: math.unit(150, "lb"),
  42556. name: "Front",
  42557. image: {
  42558. source: "./media/characters/numin/front.svg",
  42559. extra: 1433/1388,
  42560. bottom: 12/1445
  42561. }
  42562. },
  42563. },
  42564. [
  42565. {
  42566. name: "Macro",
  42567. height: math.unit(21.5, "km"),
  42568. default: true
  42569. },
  42570. ]
  42571. ))
  42572. characterMakers.push(() => makeCharacter(
  42573. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  42574. {
  42575. front: {
  42576. height: math.unit(6, "feet"),
  42577. weight: math.unit(463, "lb"),
  42578. name: "Front",
  42579. image: {
  42580. source: "./media/characters/melwa/front.svg",
  42581. extra: 1307/1248,
  42582. bottom: 93/1400
  42583. }
  42584. },
  42585. },
  42586. [
  42587. {
  42588. name: "Macro",
  42589. height: math.unit(50, "meters"),
  42590. default: true
  42591. },
  42592. ]
  42593. ))
  42594. characterMakers.push(() => makeCharacter(
  42595. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  42596. {
  42597. front: {
  42598. height: math.unit(325, "feet"),
  42599. name: "Front",
  42600. image: {
  42601. source: "./media/characters/zorkaiju/front.svg",
  42602. extra: 1955/1814,
  42603. bottom: 40/1995
  42604. }
  42605. },
  42606. frontExtended: {
  42607. height: math.unit(325, "feet"),
  42608. name: "Front (Extended)",
  42609. image: {
  42610. source: "./media/characters/zorkaiju/front-extended.svg",
  42611. extra: 1955/1814,
  42612. bottom: 40/1995
  42613. }
  42614. },
  42615. side: {
  42616. height: math.unit(325, "feet"),
  42617. name: "Side",
  42618. image: {
  42619. source: "./media/characters/zorkaiju/side.svg",
  42620. extra: 1495/1396,
  42621. bottom: 17/1512
  42622. }
  42623. },
  42624. sideExtended: {
  42625. height: math.unit(325, "feet"),
  42626. name: "Side (Extended)",
  42627. image: {
  42628. source: "./media/characters/zorkaiju/side-extended.svg",
  42629. extra: 1495/1396,
  42630. bottom: 17/1512
  42631. }
  42632. },
  42633. back: {
  42634. height: math.unit(325, "feet"),
  42635. name: "Back",
  42636. image: {
  42637. source: "./media/characters/zorkaiju/back.svg",
  42638. extra: 1959/1821,
  42639. bottom: 31/1990
  42640. }
  42641. },
  42642. backExtended: {
  42643. height: math.unit(325, "feet"),
  42644. name: "Back (Extended)",
  42645. image: {
  42646. source: "./media/characters/zorkaiju/back-extended.svg",
  42647. extra: 1959/1821,
  42648. bottom: 31/1990
  42649. }
  42650. },
  42651. hand: {
  42652. height: math.unit(58.4, "feet"),
  42653. name: "Hand",
  42654. image: {
  42655. source: "./media/characters/zorkaiju/hand.svg"
  42656. }
  42657. },
  42658. handExtended: {
  42659. height: math.unit(61.4, "feet"),
  42660. name: "Hand (Extended)",
  42661. image: {
  42662. source: "./media/characters/zorkaiju/hand-extended.svg"
  42663. }
  42664. },
  42665. foot: {
  42666. height: math.unit(95, "feet"),
  42667. name: "Foot",
  42668. image: {
  42669. source: "./media/characters/zorkaiju/foot.svg"
  42670. }
  42671. },
  42672. leftArm: {
  42673. height: math.unit(59, "feet"),
  42674. name: "Left Arm",
  42675. image: {
  42676. source: "./media/characters/zorkaiju/left-arm.svg"
  42677. }
  42678. },
  42679. rightArm: {
  42680. height: math.unit(59, "feet"),
  42681. name: "Right Arm",
  42682. image: {
  42683. source: "./media/characters/zorkaiju/right-arm.svg"
  42684. }
  42685. },
  42686. leftArmExtended: {
  42687. height: math.unit(59 * 1.033546, "feet"),
  42688. name: "Left Arm (Extended)",
  42689. image: {
  42690. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  42691. }
  42692. },
  42693. rightArmExtended: {
  42694. height: math.unit(59 * 1.0496, "feet"),
  42695. name: "Right Arm (Extended)",
  42696. image: {
  42697. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  42698. }
  42699. },
  42700. tail: {
  42701. height: math.unit(104, "feet"),
  42702. name: "Tail",
  42703. image: {
  42704. source: "./media/characters/zorkaiju/tail.svg"
  42705. }
  42706. },
  42707. tailExtended: {
  42708. height: math.unit(104, "feet"),
  42709. name: "Tail (Extended)",
  42710. image: {
  42711. source: "./media/characters/zorkaiju/tail-extended.svg"
  42712. }
  42713. },
  42714. tailBottom: {
  42715. height: math.unit(104, "feet"),
  42716. name: "Tail Bottom",
  42717. image: {
  42718. source: "./media/characters/zorkaiju/tail-bottom.svg"
  42719. }
  42720. },
  42721. crystal: {
  42722. height: math.unit(27.54, "feet"),
  42723. name: "Crystal",
  42724. image: {
  42725. source: "./media/characters/zorkaiju/crystal.svg"
  42726. }
  42727. },
  42728. },
  42729. [
  42730. {
  42731. name: "Kaiju",
  42732. height: math.unit(325, "feet"),
  42733. default: true
  42734. },
  42735. ]
  42736. ))
  42737. characterMakers.push(() => makeCharacter(
  42738. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  42739. {
  42740. front: {
  42741. height: math.unit(6 + 1/12, "feet"),
  42742. weight: math.unit(115, "lb"),
  42743. name: "Front",
  42744. image: {
  42745. source: "./media/characters/bailey-belfry/front.svg",
  42746. extra: 1240/1121,
  42747. bottom: 101/1341
  42748. }
  42749. },
  42750. },
  42751. [
  42752. {
  42753. name: "Normal",
  42754. height: math.unit(6 + 1/12, "feet"),
  42755. default: true
  42756. },
  42757. ]
  42758. ))
  42759. characterMakers.push(() => makeCharacter(
  42760. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  42761. {
  42762. side: {
  42763. height: math.unit(4, "meters"),
  42764. weight: math.unit(250, "kg"),
  42765. name: "Side",
  42766. image: {
  42767. source: "./media/characters/blacky/side.svg",
  42768. extra: 1027/919,
  42769. bottom: 43/1070
  42770. }
  42771. },
  42772. maw: {
  42773. height: math.unit(1, "meters"),
  42774. name: "Maw",
  42775. image: {
  42776. source: "./media/characters/blacky/maw.svg"
  42777. }
  42778. },
  42779. paw: {
  42780. height: math.unit(1, "meters"),
  42781. name: "Paw",
  42782. image: {
  42783. source: "./media/characters/blacky/paw.svg"
  42784. }
  42785. },
  42786. },
  42787. [
  42788. {
  42789. name: "Normal",
  42790. height: math.unit(4, "meters"),
  42791. default: true
  42792. },
  42793. ]
  42794. ))
  42795. characterMakers.push(() => makeCharacter(
  42796. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  42797. {
  42798. front: {
  42799. height: math.unit(170, "cm"),
  42800. weight: math.unit(66, "kg"),
  42801. name: "Front",
  42802. image: {
  42803. source: "./media/characters/thux-ei/front.svg",
  42804. extra: 1109/1011,
  42805. bottom: 8/1117
  42806. }
  42807. },
  42808. },
  42809. [
  42810. {
  42811. name: "Normal",
  42812. height: math.unit(170, "cm"),
  42813. default: true
  42814. },
  42815. ]
  42816. ))
  42817. characterMakers.push(() => makeCharacter(
  42818. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  42819. {
  42820. front: {
  42821. height: math.unit(5, "feet"),
  42822. weight: math.unit(120, "lb"),
  42823. name: "Front",
  42824. image: {
  42825. source: "./media/characters/roxanne-voltaire/front.svg",
  42826. extra: 1901/1779,
  42827. bottom: 53/1954
  42828. }
  42829. },
  42830. },
  42831. [
  42832. {
  42833. name: "Normal",
  42834. height: math.unit(5, "feet"),
  42835. default: true
  42836. },
  42837. {
  42838. name: "Giant",
  42839. height: math.unit(50, "feet")
  42840. },
  42841. {
  42842. name: "Titan",
  42843. height: math.unit(500, "feet")
  42844. },
  42845. {
  42846. name: "Macro",
  42847. height: math.unit(5000, "feet")
  42848. },
  42849. {
  42850. name: "Megamacro",
  42851. height: math.unit(50000, "feet")
  42852. },
  42853. {
  42854. name: "Gigamacro",
  42855. height: math.unit(500000, "feet")
  42856. },
  42857. {
  42858. name: "Teramacro",
  42859. height: math.unit(5e6, "feet")
  42860. },
  42861. ]
  42862. ))
  42863. characterMakers.push(() => makeCharacter(
  42864. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  42865. {
  42866. front: {
  42867. height: math.unit(6 + 2/12, "feet"),
  42868. name: "Front",
  42869. image: {
  42870. source: "./media/characters/squeaks/front.svg",
  42871. extra: 1823/1768,
  42872. bottom: 138/1961
  42873. }
  42874. },
  42875. },
  42876. [
  42877. {
  42878. name: "Micro",
  42879. height: math.unit(0.5, "inches")
  42880. },
  42881. {
  42882. name: "Normal",
  42883. height: math.unit(6 + 2/12, "feet"),
  42884. default: true
  42885. },
  42886. {
  42887. name: "Macro",
  42888. height: math.unit(600, "feet")
  42889. },
  42890. ]
  42891. ))
  42892. characterMakers.push(() => makeCharacter(
  42893. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  42894. {
  42895. front: {
  42896. height: math.unit(1.72, "meters"),
  42897. name: "Front",
  42898. image: {
  42899. source: "./media/characters/archinger/front.svg",
  42900. extra: 1861/1675,
  42901. bottom: 125/1986
  42902. }
  42903. },
  42904. back: {
  42905. height: math.unit(1.72, "meters"),
  42906. name: "Back",
  42907. image: {
  42908. source: "./media/characters/archinger/back.svg",
  42909. extra: 1844/1701,
  42910. bottom: 104/1948
  42911. }
  42912. },
  42913. cock: {
  42914. height: math.unit(0.59, "feet"),
  42915. name: "Cock",
  42916. image: {
  42917. source: "./media/characters/archinger/cock.svg"
  42918. }
  42919. },
  42920. },
  42921. [
  42922. {
  42923. name: "Normal",
  42924. height: math.unit(1.72, "meters"),
  42925. default: true
  42926. },
  42927. {
  42928. name: "Macro",
  42929. height: math.unit(84, "meters")
  42930. },
  42931. {
  42932. name: "Macro+",
  42933. height: math.unit(112, "meters")
  42934. },
  42935. {
  42936. name: "Macro++",
  42937. height: math.unit(960, "meters")
  42938. },
  42939. {
  42940. name: "Macro+++",
  42941. height: math.unit(4, "km")
  42942. },
  42943. {
  42944. name: "Macro++++",
  42945. height: math.unit(48, "km")
  42946. },
  42947. {
  42948. name: "Macro+++++",
  42949. height: math.unit(4500, "km")
  42950. },
  42951. ]
  42952. ))
  42953. characterMakers.push(() => makeCharacter(
  42954. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  42955. {
  42956. front: {
  42957. height: math.unit(5 + 5/12, "feet"),
  42958. name: "Front",
  42959. image: {
  42960. source: "./media/characters/alsnapz/front.svg",
  42961. extra: 1157/1065,
  42962. bottom: 42/1199
  42963. }
  42964. },
  42965. },
  42966. [
  42967. {
  42968. name: "Normal",
  42969. height: math.unit(5 + 5/12, "feet"),
  42970. default: true
  42971. },
  42972. ]
  42973. ))
  42974. characterMakers.push(() => makeCharacter(
  42975. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  42976. {
  42977. side: {
  42978. height: math.unit(3.2, "earths"),
  42979. name: "Side",
  42980. image: {
  42981. source: "./media/characters/mag/side.svg",
  42982. extra: 1331/1008,
  42983. bottom: 52/1383
  42984. }
  42985. },
  42986. wing: {
  42987. height: math.unit(1.94, "earths"),
  42988. name: "Wing",
  42989. image: {
  42990. source: "./media/characters/mag/wing.svg"
  42991. }
  42992. },
  42993. dick: {
  42994. height: math.unit(1.8, "earths"),
  42995. name: "Dick",
  42996. image: {
  42997. source: "./media/characters/mag/dick.svg"
  42998. }
  42999. },
  43000. ass: {
  43001. height: math.unit(1.33, "earths"),
  43002. name: "Ass",
  43003. image: {
  43004. source: "./media/characters/mag/ass.svg"
  43005. }
  43006. },
  43007. head: {
  43008. height: math.unit(1.1, "earths"),
  43009. name: "Head",
  43010. image: {
  43011. source: "./media/characters/mag/head.svg"
  43012. }
  43013. },
  43014. maw: {
  43015. height: math.unit(1.62, "earths"),
  43016. name: "Maw",
  43017. image: {
  43018. source: "./media/characters/mag/maw.svg"
  43019. }
  43020. },
  43021. },
  43022. [
  43023. {
  43024. name: "Small",
  43025. height: math.unit(162, "feet")
  43026. },
  43027. {
  43028. name: "Normal",
  43029. height: math.unit(3.2, "earths"),
  43030. default: true
  43031. },
  43032. ]
  43033. ))
  43034. characterMakers.push(() => makeCharacter(
  43035. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  43036. {
  43037. front: {
  43038. height: math.unit(512, "feet"),
  43039. weight: math.unit(63509, "tonnes"),
  43040. name: "Front",
  43041. image: {
  43042. source: "./media/characters/vorrel-harroc/front.svg",
  43043. extra: 1075/1063,
  43044. bottom: 62/1137
  43045. }
  43046. },
  43047. },
  43048. [
  43049. {
  43050. name: "Normal",
  43051. height: math.unit(10, "feet")
  43052. },
  43053. {
  43054. name: "Macro",
  43055. height: math.unit(512, "feet"),
  43056. default: true
  43057. },
  43058. {
  43059. name: "Megamacro",
  43060. height: math.unit(256, "miles")
  43061. },
  43062. {
  43063. name: "Gigamacro",
  43064. height: math.unit(4096, "miles")
  43065. },
  43066. ]
  43067. ))
  43068. characterMakers.push(() => makeCharacter(
  43069. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  43070. {
  43071. side: {
  43072. height: math.unit(50, "feet"),
  43073. name: "Side",
  43074. image: {
  43075. source: "./media/characters/froimar/side.svg",
  43076. extra: 855/638,
  43077. bottom: 99/954
  43078. }
  43079. },
  43080. },
  43081. [
  43082. {
  43083. name: "Macro",
  43084. height: math.unit(50, "feet"),
  43085. default: true
  43086. },
  43087. ]
  43088. ))
  43089. characterMakers.push(() => makeCharacter(
  43090. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  43091. {
  43092. front: {
  43093. height: math.unit(210, "miles"),
  43094. name: "Front",
  43095. image: {
  43096. source: "./media/characters/timothy/front.svg",
  43097. extra: 1007/943,
  43098. bottom: 62/1069
  43099. }
  43100. },
  43101. frontSkirt: {
  43102. height: math.unit(210, "miles"),
  43103. name: "Front (Skirt)",
  43104. image: {
  43105. source: "./media/characters/timothy/front-skirt.svg",
  43106. extra: 1007/943,
  43107. bottom: 62/1069
  43108. }
  43109. },
  43110. frontCoat: {
  43111. height: math.unit(210, "miles"),
  43112. name: "Front (Coat)",
  43113. image: {
  43114. source: "./media/characters/timothy/front-coat.svg",
  43115. extra: 1007/943,
  43116. bottom: 62/1069
  43117. }
  43118. },
  43119. },
  43120. [
  43121. {
  43122. name: "Macro",
  43123. height: math.unit(210, "miles"),
  43124. default: true
  43125. },
  43126. {
  43127. name: "Megamacro",
  43128. height: math.unit(210000, "miles")
  43129. },
  43130. ]
  43131. ))
  43132. characterMakers.push(() => makeCharacter(
  43133. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  43134. {
  43135. front: {
  43136. height: math.unit(188, "feet"),
  43137. name: "Front",
  43138. image: {
  43139. source: "./media/characters/pyotr/front.svg",
  43140. extra: 1912/1826,
  43141. bottom: 18/1930
  43142. }
  43143. },
  43144. },
  43145. [
  43146. {
  43147. name: "Macro",
  43148. height: math.unit(188, "feet"),
  43149. default: true
  43150. },
  43151. {
  43152. name: "Megamacro",
  43153. height: math.unit(8, "miles")
  43154. },
  43155. ]
  43156. ))
  43157. characterMakers.push(() => makeCharacter(
  43158. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  43159. {
  43160. side: {
  43161. height: math.unit(10, "feet"),
  43162. weight: math.unit(4500, "lb"),
  43163. name: "Side",
  43164. image: {
  43165. source: "./media/characters/ackart/side.svg",
  43166. extra: 1776/1668,
  43167. bottom: 116/1892
  43168. }
  43169. },
  43170. },
  43171. [
  43172. {
  43173. name: "Normal",
  43174. height: math.unit(10, "feet"),
  43175. default: true
  43176. },
  43177. ]
  43178. ))
  43179. characterMakers.push(() => makeCharacter(
  43180. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  43181. {
  43182. side: {
  43183. height: math.unit(21, "feet"),
  43184. name: "Side",
  43185. image: {
  43186. source: "./media/characters/nolow/side.svg",
  43187. extra: 1484/1434,
  43188. bottom: 85/1569
  43189. }
  43190. },
  43191. sideErect: {
  43192. height: math.unit(21, "feet"),
  43193. name: "Side-erect",
  43194. image: {
  43195. source: "./media/characters/nolow/side-erect.svg",
  43196. extra: 1484/1434,
  43197. bottom: 85/1569
  43198. }
  43199. },
  43200. },
  43201. [
  43202. {
  43203. name: "Regular",
  43204. height: math.unit(12, "feet")
  43205. },
  43206. {
  43207. name: "Big Chee",
  43208. height: math.unit(21, "feet"),
  43209. default: true
  43210. },
  43211. ]
  43212. ))
  43213. characterMakers.push(() => makeCharacter(
  43214. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  43215. {
  43216. front: {
  43217. height: math.unit(7, "feet"),
  43218. weight: math.unit(250, "lb"),
  43219. name: "Front",
  43220. image: {
  43221. source: "./media/characters/nines/front.svg",
  43222. extra: 1741/1607,
  43223. bottom: 41/1782
  43224. }
  43225. },
  43226. side: {
  43227. height: math.unit(7, "feet"),
  43228. weight: math.unit(250, "lb"),
  43229. name: "Side",
  43230. image: {
  43231. source: "./media/characters/nines/side.svg",
  43232. extra: 1854/1735,
  43233. bottom: 93/1947
  43234. }
  43235. },
  43236. back: {
  43237. height: math.unit(7, "feet"),
  43238. weight: math.unit(250, "lb"),
  43239. name: "Back",
  43240. image: {
  43241. source: "./media/characters/nines/back.svg",
  43242. extra: 1748/1615,
  43243. bottom: 20/1768
  43244. }
  43245. },
  43246. },
  43247. [
  43248. {
  43249. name: "Megamacro",
  43250. height: math.unit(99, "km"),
  43251. default: true
  43252. },
  43253. ]
  43254. ))
  43255. characterMakers.push(() => makeCharacter(
  43256. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  43257. {
  43258. front: {
  43259. height: math.unit(5 + 10/12, "feet"),
  43260. weight: math.unit(210, "lb"),
  43261. name: "Front",
  43262. image: {
  43263. source: "./media/characters/zenith/front.svg",
  43264. extra: 1531/1452,
  43265. bottom: 198/1729
  43266. }
  43267. },
  43268. back: {
  43269. height: math.unit(5 + 10/12, "feet"),
  43270. weight: math.unit(210, "lb"),
  43271. name: "Back",
  43272. image: {
  43273. source: "./media/characters/zenith/back.svg",
  43274. extra: 1571/1487,
  43275. bottom: 75/1646
  43276. }
  43277. },
  43278. },
  43279. [
  43280. {
  43281. name: "Normal",
  43282. height: math.unit(5 + 10/12, "feet"),
  43283. default: true
  43284. }
  43285. ]
  43286. ))
  43287. characterMakers.push(() => makeCharacter(
  43288. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  43289. {
  43290. front: {
  43291. height: math.unit(4, "feet"),
  43292. weight: math.unit(60, "lb"),
  43293. name: "Front",
  43294. image: {
  43295. source: "./media/characters/jasper/front.svg",
  43296. extra: 1450/1379,
  43297. bottom: 19/1469
  43298. }
  43299. },
  43300. },
  43301. [
  43302. {
  43303. name: "Normal",
  43304. height: math.unit(4, "feet"),
  43305. default: true
  43306. },
  43307. ]
  43308. ))
  43309. characterMakers.push(() => makeCharacter(
  43310. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  43311. {
  43312. front: {
  43313. height: math.unit(6 + 5/12, "feet"),
  43314. weight: math.unit(290, "lb"),
  43315. name: "Front",
  43316. image: {
  43317. source: "./media/characters/tiberius-thyben/front.svg",
  43318. extra: 757/739,
  43319. bottom: 39/796
  43320. }
  43321. },
  43322. },
  43323. [
  43324. {
  43325. name: "Micro",
  43326. height: math.unit(1.5, "inches")
  43327. },
  43328. {
  43329. name: "Normal",
  43330. height: math.unit(6 + 5/12, "feet"),
  43331. default: true
  43332. },
  43333. {
  43334. name: "Macro",
  43335. height: math.unit(300, "feet")
  43336. },
  43337. ]
  43338. ))
  43339. characterMakers.push(() => makeCharacter(
  43340. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  43341. {
  43342. front: {
  43343. height: math.unit(5 + 6/12, "feet"),
  43344. weight: math.unit(60, "kg"),
  43345. name: "Front",
  43346. image: {
  43347. source: "./media/characters/sabre/front.svg",
  43348. extra: 738/671,
  43349. bottom: 27/765
  43350. }
  43351. },
  43352. },
  43353. [
  43354. {
  43355. name: "Teeny",
  43356. height: math.unit(2, "inches")
  43357. },
  43358. {
  43359. name: "Smol",
  43360. height: math.unit(8, "inches")
  43361. },
  43362. {
  43363. name: "Normal",
  43364. height: math.unit(5 + 6/12, "feet"),
  43365. default: true
  43366. },
  43367. {
  43368. name: "Mini-Macro",
  43369. height: math.unit(15, "feet")
  43370. },
  43371. {
  43372. name: "Macro",
  43373. height: math.unit(50, "feet")
  43374. },
  43375. ]
  43376. ))
  43377. characterMakers.push(() => makeCharacter(
  43378. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  43379. {
  43380. front: {
  43381. height: math.unit(6 + 4/12, "feet"),
  43382. weight: math.unit(170, "lb"),
  43383. name: "Front",
  43384. image: {
  43385. source: "./media/characters/charlie/front.svg",
  43386. extra: 1348/1228,
  43387. bottom: 15/1363
  43388. }
  43389. },
  43390. },
  43391. [
  43392. {
  43393. name: "Macro",
  43394. height: math.unit(1700, "meters"),
  43395. default: true
  43396. },
  43397. {
  43398. name: "MegaMacro",
  43399. height: math.unit(20400, "meters")
  43400. },
  43401. ]
  43402. ))
  43403. characterMakers.push(() => makeCharacter(
  43404. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  43405. {
  43406. front: {
  43407. height: math.unit(6 + 3/12, "feet"),
  43408. weight: math.unit(185, "lb"),
  43409. name: "Front",
  43410. image: {
  43411. source: "./media/characters/susan-grant/front.svg",
  43412. extra: 1351/1327,
  43413. bottom: 26/1377
  43414. }
  43415. },
  43416. },
  43417. [
  43418. {
  43419. name: "Normal",
  43420. height: math.unit(6 + 3/12, "feet"),
  43421. default: true
  43422. },
  43423. {
  43424. name: "Macro",
  43425. height: math.unit(225, "feet")
  43426. },
  43427. {
  43428. name: "Macro+",
  43429. height: math.unit(900, "feet")
  43430. },
  43431. {
  43432. name: "MegaMacro",
  43433. height: math.unit(14400, "feet")
  43434. },
  43435. ]
  43436. ))
  43437. characterMakers.push(() => makeCharacter(
  43438. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  43439. {
  43440. front: {
  43441. height: math.unit(5 + 4/12, "feet"),
  43442. weight: math.unit(110, "lb"),
  43443. name: "Front",
  43444. image: {
  43445. source: "./media/characters/axel-isanov/front.svg",
  43446. extra: 1096/1065,
  43447. bottom: 13/1109
  43448. }
  43449. },
  43450. },
  43451. [
  43452. {
  43453. name: "Normal",
  43454. height: math.unit(5 + 4/12, "feet"),
  43455. default: true
  43456. },
  43457. ]
  43458. ))
  43459. characterMakers.push(() => makeCharacter(
  43460. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  43461. {
  43462. front: {
  43463. height: math.unit(9, "feet"),
  43464. weight: math.unit(467, "lb"),
  43465. name: "Front",
  43466. image: {
  43467. source: "./media/characters/necahual/front.svg",
  43468. extra: 920/873,
  43469. bottom: 26/946
  43470. }
  43471. },
  43472. back: {
  43473. height: math.unit(9, "feet"),
  43474. weight: math.unit(467, "lb"),
  43475. name: "Back",
  43476. image: {
  43477. source: "./media/characters/necahual/back.svg",
  43478. extra: 930/884,
  43479. bottom: 16/946
  43480. }
  43481. },
  43482. frontUnderwear: {
  43483. height: math.unit(9, "feet"),
  43484. weight: math.unit(467, "lb"),
  43485. name: "Front (Underwear)",
  43486. image: {
  43487. source: "./media/characters/necahual/front-underwear.svg",
  43488. extra: 920/873,
  43489. bottom: 26/946
  43490. }
  43491. },
  43492. frontDressed: {
  43493. height: math.unit(9, "feet"),
  43494. weight: math.unit(467, "lb"),
  43495. name: "Front (Dressed)",
  43496. image: {
  43497. source: "./media/characters/necahual/front-dressed.svg",
  43498. extra: 920/873,
  43499. bottom: 26/946
  43500. }
  43501. },
  43502. },
  43503. [
  43504. {
  43505. name: "Comprsesed",
  43506. height: math.unit(9, "feet")
  43507. },
  43508. {
  43509. name: "Natural",
  43510. height: math.unit(15, "feet"),
  43511. default: true
  43512. },
  43513. {
  43514. name: "Boosted",
  43515. height: math.unit(50, "feet")
  43516. },
  43517. {
  43518. name: "Boosted+",
  43519. height: math.unit(150, "feet")
  43520. },
  43521. {
  43522. name: "Max",
  43523. height: math.unit(500, "feet")
  43524. },
  43525. ]
  43526. ))
  43527. characterMakers.push(() => makeCharacter(
  43528. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  43529. {
  43530. front: {
  43531. height: math.unit(22 + 1/12, "feet"),
  43532. weight: math.unit(3200, "lb"),
  43533. name: "Front",
  43534. image: {
  43535. source: "./media/characters/theo-acacia/front.svg",
  43536. extra: 1796/1741,
  43537. bottom: 83/1879
  43538. }
  43539. },
  43540. frontUnderwear: {
  43541. height: math.unit(22 + 1/12, "feet"),
  43542. weight: math.unit(3200, "lb"),
  43543. name: "Front (Underwear)",
  43544. image: {
  43545. source: "./media/characters/theo-acacia/front-underwear.svg",
  43546. extra: 1796/1741,
  43547. bottom: 83/1879
  43548. }
  43549. },
  43550. frontNude: {
  43551. height: math.unit(22 + 1/12, "feet"),
  43552. weight: math.unit(3200, "lb"),
  43553. name: "Front (Nude)",
  43554. image: {
  43555. source: "./media/characters/theo-acacia/front-nude.svg",
  43556. extra: 1796/1741,
  43557. bottom: 83/1879
  43558. }
  43559. },
  43560. },
  43561. [
  43562. {
  43563. name: "Normal",
  43564. height: math.unit(22 + 1/12, "feet"),
  43565. default: true
  43566. },
  43567. ]
  43568. ))
  43569. characterMakers.push(() => makeCharacter(
  43570. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43571. {
  43572. front: {
  43573. height: math.unit(20, "feet"),
  43574. name: "Front",
  43575. image: {
  43576. source: "./media/characters/astra/front.svg",
  43577. extra: 1850/1714,
  43578. bottom: 106/1956
  43579. }
  43580. },
  43581. frontUndressed: {
  43582. height: math.unit(20, "feet"),
  43583. name: "Front (Undressed)",
  43584. image: {
  43585. source: "./media/characters/astra/front-undressed.svg",
  43586. extra: 1926/1749,
  43587. bottom: 0/1926
  43588. }
  43589. },
  43590. hand: {
  43591. height: math.unit(1.53, "feet"),
  43592. name: "Hand",
  43593. image: {
  43594. source: "./media/characters/astra/hand.svg"
  43595. }
  43596. },
  43597. paw: {
  43598. height: math.unit(1.53, "feet"),
  43599. name: "Paw",
  43600. image: {
  43601. source: "./media/characters/astra/paw.svg"
  43602. }
  43603. },
  43604. },
  43605. [
  43606. {
  43607. name: "Smallest",
  43608. height: math.unit(20, "feet")
  43609. },
  43610. {
  43611. name: "Normal",
  43612. height: math.unit(1e9, "miles"),
  43613. default: true
  43614. },
  43615. {
  43616. name: "Larger",
  43617. height: math.unit(5, "multiverses")
  43618. },
  43619. {
  43620. name: "Largest",
  43621. height: math.unit(1e9, "multiverses")
  43622. },
  43623. ]
  43624. ))
  43625. characterMakers.push(() => makeCharacter(
  43626. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43627. {
  43628. front: {
  43629. height: math.unit(8, "feet"),
  43630. name: "Front",
  43631. image: {
  43632. source: "./media/characters/breanna/front.svg",
  43633. extra: 1912/1632,
  43634. bottom: 33/1945
  43635. }
  43636. },
  43637. },
  43638. [
  43639. {
  43640. name: "Smallest",
  43641. height: math.unit(8, "feet")
  43642. },
  43643. {
  43644. name: "Normal",
  43645. height: math.unit(1, "mile"),
  43646. default: true
  43647. },
  43648. {
  43649. name: "Maximum",
  43650. height: math.unit(1500000000000, "lightyears")
  43651. },
  43652. ]
  43653. ))
  43654. characterMakers.push(() => makeCharacter(
  43655. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  43656. {
  43657. front: {
  43658. height: math.unit(5 + 11/12, "feet"),
  43659. weight: math.unit(155, "lb"),
  43660. name: "Front",
  43661. image: {
  43662. source: "./media/characters/cai/front.svg",
  43663. extra: 1823/1702,
  43664. bottom: 32/1855
  43665. }
  43666. },
  43667. back: {
  43668. height: math.unit(5 + 11/12, "feet"),
  43669. weight: math.unit(155, "lb"),
  43670. name: "Back",
  43671. image: {
  43672. source: "./media/characters/cai/back.svg",
  43673. extra: 1809/1708,
  43674. bottom: 31/1840
  43675. }
  43676. },
  43677. },
  43678. [
  43679. {
  43680. name: "Normal",
  43681. height: math.unit(5 + 11/12, "feet"),
  43682. default: true
  43683. },
  43684. {
  43685. name: "Big",
  43686. height: math.unit(15, "feet")
  43687. },
  43688. {
  43689. name: "Macro",
  43690. height: math.unit(200, "feet")
  43691. },
  43692. ]
  43693. ))
  43694. characterMakers.push(() => makeCharacter(
  43695. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  43696. {
  43697. front: {
  43698. height: math.unit(5 + 6/12, "feet"),
  43699. weight: math.unit(160, "lb"),
  43700. name: "Front",
  43701. image: {
  43702. source: "./media/characters/zanna-virtuedòttir/front.svg",
  43703. extra: 1227/1174,
  43704. bottom: 37/1264
  43705. }
  43706. },
  43707. },
  43708. [
  43709. {
  43710. name: "Macro",
  43711. height: math.unit(444, "meters"),
  43712. default: true
  43713. },
  43714. ]
  43715. ))
  43716. characterMakers.push(() => makeCharacter(
  43717. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  43718. {
  43719. front: {
  43720. height: math.unit(18 + 7/12, "feet"),
  43721. name: "Front",
  43722. image: {
  43723. source: "./media/characters/rex/front.svg",
  43724. extra: 1941/1807,
  43725. bottom: 66/2007
  43726. }
  43727. },
  43728. back: {
  43729. height: math.unit(18 + 7/12, "feet"),
  43730. name: "Back",
  43731. image: {
  43732. source: "./media/characters/rex/back.svg",
  43733. extra: 1937/1822,
  43734. bottom: 42/1979
  43735. }
  43736. },
  43737. boot: {
  43738. height: math.unit(3.45, "feet"),
  43739. name: "Boot",
  43740. image: {
  43741. source: "./media/characters/rex/boot.svg"
  43742. }
  43743. },
  43744. paw: {
  43745. height: math.unit(4.17, "feet"),
  43746. name: "Paw",
  43747. image: {
  43748. source: "./media/characters/rex/paw.svg"
  43749. }
  43750. },
  43751. head: {
  43752. height: math.unit(6.728, "feet"),
  43753. name: "Head",
  43754. image: {
  43755. source: "./media/characters/rex/head.svg"
  43756. }
  43757. },
  43758. },
  43759. [
  43760. {
  43761. name: "Nano",
  43762. height: math.unit(18 + 7/12, "feet")
  43763. },
  43764. {
  43765. name: "Micro",
  43766. height: math.unit(1.5, "megameters")
  43767. },
  43768. {
  43769. name: "Normal",
  43770. height: math.unit(440, "megameters"),
  43771. default: true
  43772. },
  43773. {
  43774. name: "Macro",
  43775. height: math.unit(2.5, "gigameters")
  43776. },
  43777. {
  43778. name: "Gigamacro",
  43779. height: math.unit(2, "galaxies")
  43780. },
  43781. ]
  43782. ))
  43783. characterMakers.push(() => makeCharacter(
  43784. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  43785. {
  43786. side: {
  43787. height: math.unit(32, "feet"),
  43788. weight: math.unit(250000, "lb"),
  43789. name: "Side",
  43790. image: {
  43791. source: "./media/characters/silverwing/side.svg",
  43792. extra: 1100/1019,
  43793. bottom: 204/1304
  43794. }
  43795. },
  43796. },
  43797. [
  43798. {
  43799. name: "Normal",
  43800. height: math.unit(32, "feet"),
  43801. default: true
  43802. },
  43803. ]
  43804. ))
  43805. characterMakers.push(() => makeCharacter(
  43806. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  43807. {
  43808. front: {
  43809. height: math.unit(6 + 6/12, "feet"),
  43810. weight: math.unit(350, "lb"),
  43811. name: "Front",
  43812. image: {
  43813. source: "./media/characters/tristan-hawthorne/front.svg",
  43814. extra: 1159/1124,
  43815. bottom: 37/1196
  43816. },
  43817. form: "labrador",
  43818. default: true
  43819. },
  43820. skunkFront: {
  43821. height: math.unit(4 + 6/12, "feet"),
  43822. weight: math.unit(120, "lb"),
  43823. name: "Front",
  43824. image: {
  43825. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  43826. extra: 1609/1551,
  43827. bottom: 169/1778
  43828. },
  43829. form: "skunk",
  43830. default: true
  43831. },
  43832. },
  43833. [
  43834. {
  43835. name: "Normal",
  43836. height: math.unit(6 + 6/12, "feet"),
  43837. form: "labrador",
  43838. default: true
  43839. },
  43840. {
  43841. name: "Normal",
  43842. height: math.unit(4 + 6/12, "feet"),
  43843. form: "skunk",
  43844. default: true
  43845. },
  43846. ],
  43847. {
  43848. "labrador": {
  43849. name: "Labrador",
  43850. default: true
  43851. },
  43852. "skunk": {
  43853. name: "Skunk"
  43854. }
  43855. }
  43856. ))
  43857. characterMakers.push(() => makeCharacter(
  43858. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  43859. {
  43860. front: {
  43861. height: math.unit(5 + 11/12, "feet"),
  43862. weight: math.unit(190, "lb"),
  43863. name: "Front",
  43864. image: {
  43865. source: "./media/characters/mizu/front.svg",
  43866. extra: 1988/1788,
  43867. bottom: 14/2002
  43868. }
  43869. },
  43870. },
  43871. [
  43872. {
  43873. name: "Normal",
  43874. height: math.unit(5 + 11/12, "feet"),
  43875. default: true
  43876. },
  43877. ]
  43878. ))
  43879. characterMakers.push(() => makeCharacter(
  43880. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  43881. {
  43882. front: {
  43883. height: math.unit(1.7, "feet"),
  43884. weight: math.unit(50, "lb"),
  43885. name: "Front",
  43886. image: {
  43887. source: "./media/characters/dechroma/front.svg",
  43888. extra: 1095/859,
  43889. bottom: 64/1159
  43890. }
  43891. },
  43892. },
  43893. [
  43894. {
  43895. name: "Normal",
  43896. height: math.unit(1.7, "feet"),
  43897. default: true
  43898. },
  43899. ]
  43900. ))
  43901. characterMakers.push(() => makeCharacter(
  43902. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  43903. {
  43904. side: {
  43905. height: math.unit(30, "feet"),
  43906. name: "Side",
  43907. image: {
  43908. source: "./media/characters/veluren-thanazel/side.svg",
  43909. extra: 1611/633,
  43910. bottom: 118/1729
  43911. }
  43912. },
  43913. front: {
  43914. height: math.unit(30, "feet"),
  43915. name: "Front",
  43916. image: {
  43917. source: "./media/characters/veluren-thanazel/front.svg",
  43918. extra: 1486/636,
  43919. bottom: 238/1724
  43920. }
  43921. },
  43922. head: {
  43923. height: math.unit(21.4, "feet"),
  43924. name: "Head",
  43925. image: {
  43926. source: "./media/characters/veluren-thanazel/head.svg"
  43927. }
  43928. },
  43929. genitals: {
  43930. height: math.unit(19.4, "feet"),
  43931. name: "Genitals",
  43932. image: {
  43933. source: "./media/characters/veluren-thanazel/genitals.svg"
  43934. }
  43935. },
  43936. },
  43937. [
  43938. {
  43939. name: "Social",
  43940. height: math.unit(6, "feet")
  43941. },
  43942. {
  43943. name: "Play",
  43944. height: math.unit(12, "feet")
  43945. },
  43946. {
  43947. name: "True",
  43948. height: math.unit(30, "feet"),
  43949. default: true
  43950. },
  43951. ]
  43952. ))
  43953. characterMakers.push(() => makeCharacter(
  43954. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  43955. {
  43956. front: {
  43957. height: math.unit(7 + 6/12, "feet"),
  43958. weight: math.unit(500, "kg"),
  43959. name: "Front",
  43960. image: {
  43961. source: "./media/characters/arcturas/front.svg",
  43962. extra: 1700/1500,
  43963. bottom: 145/1845
  43964. }
  43965. },
  43966. },
  43967. [
  43968. {
  43969. name: "Normal",
  43970. height: math.unit(7 + 6/12, "feet"),
  43971. default: true
  43972. },
  43973. ]
  43974. ))
  43975. characterMakers.push(() => makeCharacter(
  43976. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  43977. {
  43978. side: {
  43979. height: math.unit(6, "feet"),
  43980. weight: math.unit(2, "tons"),
  43981. name: "Side",
  43982. image: {
  43983. source: "./media/characters/vitaen/side.svg",
  43984. extra: 1157/617,
  43985. bottom: 122/1279
  43986. }
  43987. },
  43988. },
  43989. [
  43990. {
  43991. name: "Normal",
  43992. height: math.unit(6, "feet"),
  43993. default: true
  43994. },
  43995. ]
  43996. ))
  43997. characterMakers.push(() => makeCharacter(
  43998. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  43999. {
  44000. front: {
  44001. height: math.unit(19, "feet"),
  44002. name: "Front",
  44003. image: {
  44004. source: "./media/characters/fia-dreamweaver/front.svg",
  44005. extra: 1630/1504,
  44006. bottom: 25/1655
  44007. }
  44008. },
  44009. },
  44010. [
  44011. {
  44012. name: "Normal",
  44013. height: math.unit(19, "feet"),
  44014. default: true
  44015. },
  44016. ]
  44017. ))
  44018. characterMakers.push(() => makeCharacter(
  44019. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  44020. {
  44021. front: {
  44022. height: math.unit(5 + 4/12, "feet"),
  44023. name: "Front",
  44024. image: {
  44025. source: "./media/characters/artan/front.svg",
  44026. extra: 1618/1535,
  44027. bottom: 46/1664
  44028. }
  44029. },
  44030. back: {
  44031. height: math.unit(5 + 4/12, "feet"),
  44032. name: "Back",
  44033. image: {
  44034. source: "./media/characters/artan/back.svg",
  44035. extra: 1618/1543,
  44036. bottom: 31/1649
  44037. }
  44038. },
  44039. },
  44040. [
  44041. {
  44042. name: "Normal",
  44043. height: math.unit(5 + 4/12, "feet"),
  44044. default: true
  44045. },
  44046. ]
  44047. ))
  44048. characterMakers.push(() => makeCharacter(
  44049. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  44050. {
  44051. side: {
  44052. height: math.unit(182, "cm"),
  44053. weight: math.unit(1000, "lb"),
  44054. name: "Side",
  44055. image: {
  44056. source: "./media/characters/silver-dragon/side.svg",
  44057. extra: 710/287,
  44058. bottom: 88/798
  44059. }
  44060. },
  44061. },
  44062. [
  44063. {
  44064. name: "Normal",
  44065. height: math.unit(182, "cm"),
  44066. default: true
  44067. },
  44068. ]
  44069. ))
  44070. characterMakers.push(() => makeCharacter(
  44071. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  44072. {
  44073. side: {
  44074. height: math.unit(6 + 6/12, "feet"),
  44075. weight: math.unit(1.5, "tons"),
  44076. name: "Side",
  44077. image: {
  44078. source: "./media/characters/zephyr/side.svg",
  44079. extra: 1433/586,
  44080. bottom: 109/1542
  44081. }
  44082. },
  44083. },
  44084. [
  44085. {
  44086. name: "Normal",
  44087. height: math.unit(6 + 6/12, "feet"),
  44088. default: true
  44089. },
  44090. ]
  44091. ))
  44092. characterMakers.push(() => makeCharacter(
  44093. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  44094. {
  44095. side: {
  44096. height: math.unit(1, "feet"),
  44097. name: "Side",
  44098. image: {
  44099. source: "./media/characters/vixye/side.svg",
  44100. extra: 632/541,
  44101. bottom: 0/632
  44102. }
  44103. },
  44104. },
  44105. [
  44106. {
  44107. name: "Normal",
  44108. height: math.unit(1, "feet"),
  44109. default: true
  44110. },
  44111. {
  44112. name: "True",
  44113. height: math.unit(1e15, "multiverses")
  44114. },
  44115. ]
  44116. ))
  44117. characterMakers.push(() => makeCharacter(
  44118. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  44119. {
  44120. front: {
  44121. height: math.unit(8 + 2/12, "feet"),
  44122. weight: math.unit(650, "lb"),
  44123. name: "Front",
  44124. image: {
  44125. source: "./media/characters/darla-mac-lochlainn/front.svg",
  44126. extra: 1174/1137,
  44127. bottom: 82/1256
  44128. }
  44129. },
  44130. back: {
  44131. height: math.unit(8 + 2/12, "feet"),
  44132. weight: math.unit(650, "lb"),
  44133. name: "Back",
  44134. image: {
  44135. source: "./media/characters/darla-mac-lochlainn/back.svg",
  44136. extra: 1204/1157,
  44137. bottom: 46/1250
  44138. }
  44139. },
  44140. },
  44141. [
  44142. {
  44143. name: "Wildform",
  44144. height: math.unit(8 + 2/12, "feet"),
  44145. default: true
  44146. },
  44147. ]
  44148. ))
  44149. characterMakers.push(() => makeCharacter(
  44150. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  44151. {
  44152. front: {
  44153. height: math.unit(18, "feet"),
  44154. name: "Front",
  44155. image: {
  44156. source: "./media/characters/cyphin/front.svg",
  44157. extra: 970/886,
  44158. bottom: 42/1012
  44159. }
  44160. },
  44161. back: {
  44162. height: math.unit(18, "feet"),
  44163. name: "Back",
  44164. image: {
  44165. source: "./media/characters/cyphin/back.svg",
  44166. extra: 1009/894,
  44167. bottom: 24/1033
  44168. }
  44169. },
  44170. head: {
  44171. height: math.unit(5.05, "feet"),
  44172. name: "Head",
  44173. image: {
  44174. source: "./media/characters/cyphin/head.svg"
  44175. }
  44176. },
  44177. tailbud: {
  44178. height: math.unit(5, "feet"),
  44179. name: "Tailbud",
  44180. image: {
  44181. source: "./media/characters/cyphin/tailbud.svg"
  44182. }
  44183. },
  44184. },
  44185. [
  44186. ]
  44187. ))
  44188. characterMakers.push(() => makeCharacter(
  44189. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  44190. {
  44191. side: {
  44192. height: math.unit(10, "feet"),
  44193. weight: math.unit(6, "tons"),
  44194. name: "Side",
  44195. image: {
  44196. source: "./media/characters/raijin/side.svg",
  44197. extra: 1529/613,
  44198. bottom: 337/1866
  44199. }
  44200. },
  44201. },
  44202. [
  44203. {
  44204. name: "Normal",
  44205. height: math.unit(10, "feet"),
  44206. default: true
  44207. },
  44208. ]
  44209. ))
  44210. characterMakers.push(() => makeCharacter(
  44211. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  44212. {
  44213. side: {
  44214. height: math.unit(9, "feet"),
  44215. name: "Side",
  44216. image: {
  44217. source: "./media/characters/nilghais/side.svg",
  44218. extra: 1047/744,
  44219. bottom: 91/1138
  44220. }
  44221. },
  44222. head: {
  44223. height: math.unit(3.14, "feet"),
  44224. name: "Head",
  44225. image: {
  44226. source: "./media/characters/nilghais/head.svg"
  44227. }
  44228. },
  44229. mouth: {
  44230. height: math.unit(4.6, "feet"),
  44231. name: "Mouth",
  44232. image: {
  44233. source: "./media/characters/nilghais/mouth.svg"
  44234. }
  44235. },
  44236. wings: {
  44237. height: math.unit(24, "feet"),
  44238. name: "Wings",
  44239. image: {
  44240. source: "./media/characters/nilghais/wings.svg"
  44241. }
  44242. },
  44243. ass: {
  44244. height: math.unit(6.12, "feet"),
  44245. name: "Ass",
  44246. image: {
  44247. source: "./media/characters/nilghais/ass.svg"
  44248. }
  44249. },
  44250. },
  44251. [
  44252. {
  44253. name: "Normal",
  44254. height: math.unit(9, "feet"),
  44255. default: true
  44256. },
  44257. ]
  44258. ))
  44259. characterMakers.push(() => makeCharacter(
  44260. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  44261. {
  44262. regular: {
  44263. height: math.unit(16 + 2/12, "feet"),
  44264. weight: math.unit(2300, "lb"),
  44265. name: "Regular",
  44266. image: {
  44267. source: "./media/characters/zolgar/regular.svg",
  44268. extra: 1246/1004,
  44269. bottom: 124/1370
  44270. }
  44271. },
  44272. boxers: {
  44273. height: math.unit(16 + 2/12, "feet"),
  44274. weight: math.unit(2300, "lb"),
  44275. name: "Boxers",
  44276. image: {
  44277. source: "./media/characters/zolgar/boxers.svg",
  44278. extra: 1246/1004,
  44279. bottom: 124/1370
  44280. }
  44281. },
  44282. armored: {
  44283. height: math.unit(16 + 2/12, "feet"),
  44284. weight: math.unit(2300, "lb"),
  44285. name: "Armored",
  44286. image: {
  44287. source: "./media/characters/zolgar/armored.svg",
  44288. extra: 1246/1004,
  44289. bottom: 124/1370
  44290. }
  44291. },
  44292. goth: {
  44293. height: math.unit(16 + 2/12, "feet"),
  44294. weight: math.unit(2300, "lb"),
  44295. name: "Goth",
  44296. image: {
  44297. source: "./media/characters/zolgar/goth.svg",
  44298. extra: 1246/1004,
  44299. bottom: 124/1370
  44300. }
  44301. },
  44302. },
  44303. [
  44304. {
  44305. name: "Shrunken Down",
  44306. height: math.unit(9 + 2/12, "feet")
  44307. },
  44308. {
  44309. name: "Normal",
  44310. height: math.unit(16 + 2/12, "feet"),
  44311. default: true
  44312. },
  44313. ]
  44314. ))
  44315. characterMakers.push(() => makeCharacter(
  44316. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  44317. {
  44318. front: {
  44319. height: math.unit(6, "feet"),
  44320. weight: math.unit(168, "lb"),
  44321. name: "Front",
  44322. image: {
  44323. source: "./media/characters/luca/front.svg",
  44324. extra: 841/667,
  44325. bottom: 102/943
  44326. }
  44327. },
  44328. },
  44329. [
  44330. {
  44331. name: "Normal",
  44332. height: math.unit(6, "feet"),
  44333. default: true
  44334. },
  44335. ]
  44336. ))
  44337. characterMakers.push(() => makeCharacter(
  44338. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  44339. {
  44340. side: {
  44341. height: math.unit(7 + 3/12, "feet"),
  44342. weight: math.unit(312, "lb"),
  44343. name: "Side",
  44344. image: {
  44345. source: "./media/characters/zezo/side.svg",
  44346. extra: 1192/1067,
  44347. bottom: 63/1255
  44348. }
  44349. },
  44350. },
  44351. [
  44352. {
  44353. name: "Normal",
  44354. height: math.unit(7 + 3/12, "feet"),
  44355. default: true
  44356. },
  44357. ]
  44358. ))
  44359. characterMakers.push(() => makeCharacter(
  44360. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  44361. {
  44362. front: {
  44363. height: math.unit(5 + 5/12, "feet"),
  44364. weight: math.unit(170, "lb"),
  44365. name: "Front",
  44366. image: {
  44367. source: "./media/characters/mayso/front.svg",
  44368. extra: 1215/1108,
  44369. bottom: 16/1231
  44370. }
  44371. },
  44372. },
  44373. [
  44374. {
  44375. name: "Normal",
  44376. height: math.unit(5 + 5/12, "feet"),
  44377. default: true
  44378. },
  44379. ]
  44380. ))
  44381. characterMakers.push(() => makeCharacter(
  44382. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  44383. {
  44384. front: {
  44385. height: math.unit(4 + 3/12, "feet"),
  44386. weight: math.unit(80, "lb"),
  44387. name: "Front",
  44388. image: {
  44389. source: "./media/characters/hess/front.svg",
  44390. extra: 1200/1123,
  44391. bottom: 16/1216
  44392. }
  44393. },
  44394. },
  44395. [
  44396. {
  44397. name: "Normal",
  44398. height: math.unit(4 + 3/12, "feet"),
  44399. default: true
  44400. },
  44401. ]
  44402. ))
  44403. characterMakers.push(() => makeCharacter(
  44404. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  44405. {
  44406. front: {
  44407. height: math.unit(1.9, "meters"),
  44408. name: "Front",
  44409. image: {
  44410. source: "./media/characters/ashgar/front.svg",
  44411. extra: 1177/1146,
  44412. bottom: 99/1276
  44413. }
  44414. },
  44415. back: {
  44416. height: math.unit(1.9, "meters"),
  44417. name: "Back",
  44418. image: {
  44419. source: "./media/characters/ashgar/back.svg",
  44420. extra: 1201/1183,
  44421. bottom: 53/1254
  44422. }
  44423. },
  44424. feral: {
  44425. height: math.unit(1.4, "meters"),
  44426. name: "Feral",
  44427. image: {
  44428. source: "./media/characters/ashgar/feral.svg",
  44429. extra: 370/345,
  44430. bottom: 45/415
  44431. }
  44432. },
  44433. },
  44434. [
  44435. {
  44436. name: "Normal",
  44437. height: math.unit(1.9, "meters"),
  44438. default: true
  44439. },
  44440. ]
  44441. ))
  44442. characterMakers.push(() => makeCharacter(
  44443. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  44444. {
  44445. regular: {
  44446. height: math.unit(6, "feet"),
  44447. weight: math.unit(220, "lb"),
  44448. name: "Regular",
  44449. image: {
  44450. source: "./media/characters/phillip/regular.svg",
  44451. extra: 1373/1277,
  44452. bottom: 75/1448
  44453. }
  44454. },
  44455. dressed: {
  44456. height: math.unit(6, "feet"),
  44457. weight: math.unit(220, "lb"),
  44458. name: "Dressed",
  44459. image: {
  44460. source: "./media/characters/phillip/dressed.svg",
  44461. extra: 1373/1277,
  44462. bottom: 75/1448
  44463. }
  44464. },
  44465. paw: {
  44466. height: math.unit(1.44, "feet"),
  44467. name: "Paw",
  44468. image: {
  44469. source: "./media/characters/phillip/paw.svg"
  44470. }
  44471. },
  44472. },
  44473. [
  44474. {
  44475. name: "Normal",
  44476. height: math.unit(6, "feet"),
  44477. default: true
  44478. },
  44479. ]
  44480. ))
  44481. characterMakers.push(() => makeCharacter(
  44482. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  44483. {
  44484. side: {
  44485. height: math.unit(42, "feet"),
  44486. name: "Side",
  44487. image: {
  44488. source: "./media/characters/uvula/side.svg",
  44489. extra: 683/586,
  44490. bottom: 60/743
  44491. }
  44492. },
  44493. front: {
  44494. height: math.unit(42, "feet"),
  44495. name: "Front",
  44496. image: {
  44497. source: "./media/characters/uvula/front.svg",
  44498. extra: 705/613,
  44499. bottom: 54/759
  44500. }
  44501. },
  44502. maw: {
  44503. height: math.unit(23.5, "feet"),
  44504. name: "Maw",
  44505. image: {
  44506. source: "./media/characters/uvula/maw.svg"
  44507. }
  44508. },
  44509. },
  44510. [
  44511. {
  44512. name: "Original Size",
  44513. height: math.unit(14, "inches")
  44514. },
  44515. {
  44516. name: "Human Size",
  44517. height: math.unit(6, "feet")
  44518. },
  44519. {
  44520. name: "Big",
  44521. height: math.unit(42, "feet"),
  44522. default: true
  44523. },
  44524. {
  44525. name: "Bigger",
  44526. height: math.unit(100, "feet")
  44527. },
  44528. ]
  44529. ))
  44530. characterMakers.push(() => makeCharacter(
  44531. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  44532. {
  44533. front: {
  44534. height: math.unit(5 + 11/12, "feet"),
  44535. name: "Front",
  44536. image: {
  44537. source: "./media/characters/lannah/front.svg",
  44538. extra: 1208/1113,
  44539. bottom: 97/1305
  44540. }
  44541. },
  44542. },
  44543. [
  44544. {
  44545. name: "Normal",
  44546. height: math.unit(5 + 11/12, "feet"),
  44547. default: true
  44548. },
  44549. ]
  44550. ))
  44551. characterMakers.push(() => makeCharacter(
  44552. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  44553. {
  44554. front: {
  44555. height: math.unit(6 + 3/12, "feet"),
  44556. weight: math.unit(3.5, "tons"),
  44557. name: "Front",
  44558. image: {
  44559. source: "./media/characters/emberflame/front.svg",
  44560. extra: 1198/672,
  44561. bottom: 82/1280
  44562. }
  44563. },
  44564. side: {
  44565. height: math.unit(6 + 3/12, "feet"),
  44566. weight: math.unit(3.5, "tons"),
  44567. name: "Side",
  44568. image: {
  44569. source: "./media/characters/emberflame/side.svg",
  44570. extra: 938/527,
  44571. bottom: 56/994
  44572. }
  44573. },
  44574. },
  44575. [
  44576. {
  44577. name: "Normal",
  44578. height: math.unit(6 + 3/12, "feet"),
  44579. default: true
  44580. },
  44581. ]
  44582. ))
  44583. characterMakers.push(() => makeCharacter(
  44584. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  44585. {
  44586. side: {
  44587. height: math.unit(17.5, "feet"),
  44588. weight: math.unit(35, "tons"),
  44589. name: "Side",
  44590. image: {
  44591. source: "./media/characters/sophie-ambrose/side.svg",
  44592. extra: 1573/1242,
  44593. bottom: 71/1644
  44594. }
  44595. },
  44596. maw: {
  44597. height: math.unit(7.4, "feet"),
  44598. name: "Maw",
  44599. image: {
  44600. source: "./media/characters/sophie-ambrose/maw.svg"
  44601. }
  44602. },
  44603. },
  44604. [
  44605. {
  44606. name: "Normal",
  44607. height: math.unit(17.5, "feet"),
  44608. default: true
  44609. },
  44610. ]
  44611. ))
  44612. characterMakers.push(() => makeCharacter(
  44613. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  44614. {
  44615. front: {
  44616. height: math.unit(280, "feet"),
  44617. weight: math.unit(550, "tons"),
  44618. name: "Front",
  44619. image: {
  44620. source: "./media/characters/king-mugi/front.svg",
  44621. extra: 1102/947,
  44622. bottom: 104/1206
  44623. }
  44624. },
  44625. },
  44626. [
  44627. {
  44628. name: "King Mugi",
  44629. height: math.unit(280, "feet"),
  44630. default: true
  44631. },
  44632. ]
  44633. ))
  44634. characterMakers.push(() => makeCharacter(
  44635. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  44636. {
  44637. front: {
  44638. height: math.unit(64, "meters"),
  44639. name: "Front",
  44640. image: {
  44641. source: "./media/characters/nova-fox/front.svg",
  44642. extra: 1310/1246,
  44643. bottom: 65/1375
  44644. }
  44645. },
  44646. },
  44647. [
  44648. {
  44649. name: "Macro",
  44650. height: math.unit(64, "meters"),
  44651. default: true
  44652. },
  44653. ]
  44654. ))
  44655. characterMakers.push(() => makeCharacter(
  44656. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  44657. {
  44658. front: {
  44659. height: math.unit(6 + 3/12, "feet"),
  44660. weight: math.unit(170, "lb"),
  44661. name: "Front",
  44662. image: {
  44663. source: "./media/characters/sam-bat/front.svg",
  44664. extra: 1601/1411,
  44665. bottom: 125/1726
  44666. }
  44667. },
  44668. back: {
  44669. height: math.unit(6 + 3/12, "feet"),
  44670. weight: math.unit(170, "lb"),
  44671. name: "Back",
  44672. image: {
  44673. source: "./media/characters/sam-bat/back.svg",
  44674. extra: 1577/1405,
  44675. bottom: 58/1635
  44676. }
  44677. },
  44678. },
  44679. [
  44680. {
  44681. name: "Normal",
  44682. height: math.unit(6 + 3/12, "feet"),
  44683. default: true
  44684. },
  44685. ]
  44686. ))
  44687. characterMakers.push(() => makeCharacter(
  44688. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  44689. {
  44690. front: {
  44691. height: math.unit(59, "feet"),
  44692. weight: math.unit(40000, "lb"),
  44693. name: "Front",
  44694. image: {
  44695. source: "./media/characters/inari/front.svg",
  44696. extra: 1884/1350,
  44697. bottom: 95/1979
  44698. }
  44699. },
  44700. },
  44701. [
  44702. {
  44703. name: "Gigantamax",
  44704. height: math.unit(59, "feet"),
  44705. default: true
  44706. },
  44707. ]
  44708. ))
  44709. characterMakers.push(() => makeCharacter(
  44710. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  44711. {
  44712. front: {
  44713. height: math.unit(5 + 8/12, "feet"),
  44714. name: "Front",
  44715. image: {
  44716. source: "./media/characters/elizabeth/front.svg",
  44717. extra: 1395/1298,
  44718. bottom: 54/1449
  44719. }
  44720. },
  44721. mouth: {
  44722. height: math.unit(1.97, "feet"),
  44723. name: "Mouth",
  44724. image: {
  44725. source: "./media/characters/elizabeth/mouth.svg"
  44726. }
  44727. },
  44728. foot: {
  44729. height: math.unit(1.17, "feet"),
  44730. name: "Foot",
  44731. image: {
  44732. source: "./media/characters/elizabeth/foot.svg"
  44733. }
  44734. },
  44735. },
  44736. [
  44737. {
  44738. name: "Normal",
  44739. height: math.unit(5 + 8/12, "feet"),
  44740. default: true
  44741. },
  44742. {
  44743. name: "Minimacro",
  44744. height: math.unit(18, "feet")
  44745. },
  44746. {
  44747. name: "Macro",
  44748. height: math.unit(180, "feet")
  44749. },
  44750. ]
  44751. ))
  44752. characterMakers.push(() => makeCharacter(
  44753. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  44754. {
  44755. front: {
  44756. height: math.unit(5 + 2/12, "feet"),
  44757. name: "Front",
  44758. image: {
  44759. source: "./media/characters/october-gossamer/front.svg",
  44760. extra: 505/454,
  44761. bottom: 7/512
  44762. }
  44763. },
  44764. back: {
  44765. height: math.unit(5 + 2/12, "feet"),
  44766. name: "Back",
  44767. image: {
  44768. source: "./media/characters/october-gossamer/back.svg",
  44769. extra: 501/454,
  44770. bottom: 11/512
  44771. }
  44772. },
  44773. },
  44774. [
  44775. {
  44776. name: "Normal",
  44777. height: math.unit(5 + 2/12, "feet"),
  44778. default: true
  44779. },
  44780. ]
  44781. ))
  44782. characterMakers.push(() => makeCharacter(
  44783. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  44784. {
  44785. front: {
  44786. height: math.unit(5, "feet"),
  44787. name: "Front",
  44788. image: {
  44789. source: "./media/characters/epiglottis/front.svg",
  44790. extra: 923/849,
  44791. bottom: 17/940
  44792. }
  44793. },
  44794. },
  44795. [
  44796. {
  44797. name: "Original Size",
  44798. height: math.unit(10, "inches")
  44799. },
  44800. {
  44801. name: "Human Size",
  44802. height: math.unit(5, "feet"),
  44803. default: true
  44804. },
  44805. {
  44806. name: "Big",
  44807. height: math.unit(25, "feet")
  44808. },
  44809. {
  44810. name: "Bigger",
  44811. height: math.unit(50, "feet")
  44812. },
  44813. {
  44814. name: "oh lawd",
  44815. height: math.unit(75, "feet")
  44816. },
  44817. ]
  44818. ))
  44819. characterMakers.push(() => makeCharacter(
  44820. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  44821. {
  44822. front: {
  44823. height: math.unit(2 + 4/12, "feet"),
  44824. weight: math.unit(60, "lb"),
  44825. name: "Front",
  44826. image: {
  44827. source: "./media/characters/lerm/front.svg",
  44828. extra: 796/790,
  44829. bottom: 79/875
  44830. }
  44831. },
  44832. },
  44833. [
  44834. {
  44835. name: "Normal",
  44836. height: math.unit(2 + 4/12, "feet"),
  44837. default: true
  44838. },
  44839. ]
  44840. ))
  44841. characterMakers.push(() => makeCharacter(
  44842. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  44843. {
  44844. front: {
  44845. height: math.unit(5.5, "feet"),
  44846. weight: math.unit(130, "lb"),
  44847. name: "Front",
  44848. image: {
  44849. source: "./media/characters/xena-nebadon/front.svg",
  44850. extra: 1828/1730,
  44851. bottom: 79/1907
  44852. }
  44853. },
  44854. },
  44855. [
  44856. {
  44857. name: "Tiny Puppy",
  44858. height: math.unit(3, "inches")
  44859. },
  44860. {
  44861. name: "Normal",
  44862. height: math.unit(5.5, "feet"),
  44863. default: true
  44864. },
  44865. {
  44866. name: "Lotta Lady",
  44867. height: math.unit(12, "feet")
  44868. },
  44869. {
  44870. name: "Pretty Big",
  44871. height: math.unit(100, "feet")
  44872. },
  44873. {
  44874. name: "Big",
  44875. height: math.unit(500, "feet")
  44876. },
  44877. {
  44878. name: "Skyscraper Toys",
  44879. height: math.unit(2500, "feet")
  44880. },
  44881. {
  44882. name: "Plane Catcher",
  44883. height: math.unit(8, "miles")
  44884. },
  44885. {
  44886. name: "Planet Toys",
  44887. height: math.unit(15, "earths")
  44888. },
  44889. {
  44890. name: "Stardust",
  44891. height: math.unit(0.25, "galaxies")
  44892. },
  44893. {
  44894. name: "Snacks",
  44895. height: math.unit(70, "universes")
  44896. },
  44897. ]
  44898. ))
  44899. characterMakers.push(() => makeCharacter(
  44900. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  44901. {
  44902. front: {
  44903. height: math.unit(1.6, "meters"),
  44904. weight: math.unit(60, "kg"),
  44905. name: "Front",
  44906. image: {
  44907. source: "./media/characters/bounty/front.svg",
  44908. extra: 1426/1308,
  44909. bottom: 15/1441
  44910. }
  44911. },
  44912. back: {
  44913. height: math.unit(1.6, "meters"),
  44914. weight: math.unit(60, "kg"),
  44915. name: "Back",
  44916. image: {
  44917. source: "./media/characters/bounty/back.svg",
  44918. extra: 1417/1307,
  44919. bottom: 8/1425
  44920. }
  44921. },
  44922. },
  44923. [
  44924. {
  44925. name: "Normal",
  44926. height: math.unit(1.6, "meters"),
  44927. default: true
  44928. },
  44929. {
  44930. name: "Macro",
  44931. height: math.unit(300, "meters")
  44932. },
  44933. ]
  44934. ))
  44935. characterMakers.push(() => makeCharacter(
  44936. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  44937. {
  44938. front: {
  44939. height: math.unit(2 + 8/12, "feet"),
  44940. weight: math.unit(15, "lb"),
  44941. name: "Front",
  44942. image: {
  44943. source: "./media/characters/mochi/front.svg",
  44944. extra: 1022/852,
  44945. bottom: 435/1457
  44946. }
  44947. },
  44948. back: {
  44949. height: math.unit(2 + 8/12, "feet"),
  44950. weight: math.unit(15, "lb"),
  44951. name: "Back",
  44952. image: {
  44953. source: "./media/characters/mochi/back.svg",
  44954. extra: 1335/1119,
  44955. bottom: 39/1374
  44956. }
  44957. },
  44958. bird: {
  44959. height: math.unit(2 + 8/12, "feet"),
  44960. weight: math.unit(15, "lb"),
  44961. name: "Bird",
  44962. image: {
  44963. source: "./media/characters/mochi/bird.svg",
  44964. extra: 1251/1113,
  44965. bottom: 178/1429
  44966. }
  44967. },
  44968. kaiju: {
  44969. height: math.unit(154, "feet"),
  44970. weight: math.unit(1e7, "lb"),
  44971. name: "Kaiju",
  44972. image: {
  44973. source: "./media/characters/mochi/kaiju.svg",
  44974. extra: 460/324,
  44975. bottom: 40/500
  44976. }
  44977. },
  44978. head: {
  44979. height: math.unit(1.21, "feet"),
  44980. name: "Head",
  44981. image: {
  44982. source: "./media/characters/mochi/head.svg"
  44983. }
  44984. },
  44985. alternateTail: {
  44986. height: math.unit(2 + 8/12, "feet"),
  44987. weight: math.unit(45, "lb"),
  44988. name: "Alternate Tail",
  44989. image: {
  44990. source: "./media/characters/mochi/alternate-tail.svg",
  44991. extra: 139/76,
  44992. bottom: 45/184
  44993. }
  44994. },
  44995. },
  44996. [
  44997. {
  44998. name: "Micro",
  44999. height: math.unit(2, "inches")
  45000. },
  45001. {
  45002. name: "Normal",
  45003. height: math.unit(2 + 8/12, "feet"),
  45004. default: true
  45005. },
  45006. {
  45007. name: "Macro",
  45008. height: math.unit(106, "feet")
  45009. },
  45010. ]
  45011. ))
  45012. characterMakers.push(() => makeCharacter(
  45013. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  45014. {
  45015. front: {
  45016. height: math.unit(5.67, "feet"),
  45017. weight: math.unit(135, "lb"),
  45018. name: "Front",
  45019. image: {
  45020. source: "./media/characters/sarel/front.svg",
  45021. extra: 865/788,
  45022. bottom: 97/962
  45023. }
  45024. },
  45025. back: {
  45026. height: math.unit(5.67, "feet"),
  45027. weight: math.unit(135, "lb"),
  45028. name: "Back",
  45029. image: {
  45030. source: "./media/characters/sarel/back.svg",
  45031. extra: 857/777,
  45032. bottom: 32/889
  45033. }
  45034. },
  45035. chozoan: {
  45036. height: math.unit(5.67, "feet"),
  45037. weight: math.unit(135, "lb"),
  45038. name: "Chozoan",
  45039. image: {
  45040. source: "./media/characters/sarel/chozoan.svg",
  45041. extra: 865/788,
  45042. bottom: 97/962
  45043. }
  45044. },
  45045. current: {
  45046. height: math.unit(5.67, "feet"),
  45047. weight: math.unit(135, "lb"),
  45048. name: "Current",
  45049. image: {
  45050. source: "./media/characters/sarel/current.svg",
  45051. extra: 865/788,
  45052. bottom: 97/962
  45053. }
  45054. },
  45055. head: {
  45056. height: math.unit(1.77, "feet"),
  45057. name: "Head",
  45058. image: {
  45059. source: "./media/characters/sarel/head.svg"
  45060. }
  45061. },
  45062. claws: {
  45063. height: math.unit(1.8, "feet"),
  45064. name: "Claws",
  45065. image: {
  45066. source: "./media/characters/sarel/claws.svg"
  45067. }
  45068. },
  45069. clawsAlt: {
  45070. height: math.unit(1.8, "feet"),
  45071. name: "Claws-alt",
  45072. image: {
  45073. source: "./media/characters/sarel/claws-alt.svg"
  45074. }
  45075. },
  45076. },
  45077. [
  45078. {
  45079. name: "Normal",
  45080. height: math.unit(5.67, "feet"),
  45081. default: true
  45082. },
  45083. ]
  45084. ))
  45085. characterMakers.push(() => makeCharacter(
  45086. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  45087. {
  45088. front: {
  45089. height: math.unit(5500, "feet"),
  45090. name: "Front",
  45091. image: {
  45092. source: "./media/characters/alyonia/front.svg",
  45093. extra: 1200/1135,
  45094. bottom: 29/1229
  45095. }
  45096. },
  45097. back: {
  45098. height: math.unit(5500, "feet"),
  45099. name: "Back",
  45100. image: {
  45101. source: "./media/characters/alyonia/back.svg",
  45102. extra: 1205/1138,
  45103. bottom: 10/1215
  45104. }
  45105. },
  45106. },
  45107. [
  45108. {
  45109. name: "Small",
  45110. height: math.unit(10, "feet")
  45111. },
  45112. {
  45113. name: "Macro",
  45114. height: math.unit(500, "feet")
  45115. },
  45116. {
  45117. name: "Mega Macro",
  45118. height: math.unit(5500, "feet"),
  45119. default: true
  45120. },
  45121. {
  45122. name: "Mega Macro+",
  45123. height: math.unit(500000, "feet")
  45124. },
  45125. {
  45126. name: "Giga Macro",
  45127. height: math.unit(3000, "miles")
  45128. },
  45129. {
  45130. name: "Tera Macro",
  45131. height: math.unit(2.8e6, "miles")
  45132. },
  45133. {
  45134. name: "Galactic",
  45135. height: math.unit(120000, "lightyears")
  45136. },
  45137. ]
  45138. ))
  45139. characterMakers.push(() => makeCharacter(
  45140. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  45141. {
  45142. werewolf: {
  45143. height: math.unit(8, "feet"),
  45144. weight: math.unit(425, "lb"),
  45145. name: "Werewolf",
  45146. image: {
  45147. source: "./media/characters/autumn/werewolf.svg",
  45148. extra: 2154/2031,
  45149. bottom: 160/2314
  45150. }
  45151. },
  45152. human: {
  45153. height: math.unit(5 + 8/12, "feet"),
  45154. weight: math.unit(150, "lb"),
  45155. name: "Human",
  45156. image: {
  45157. source: "./media/characters/autumn/human.svg",
  45158. extra: 1200/1149,
  45159. bottom: 30/1230
  45160. }
  45161. },
  45162. },
  45163. [
  45164. {
  45165. name: "Normal",
  45166. height: math.unit(8, "feet"),
  45167. default: true
  45168. },
  45169. ]
  45170. ))
  45171. characterMakers.push(() => makeCharacter(
  45172. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  45173. {
  45174. front: {
  45175. height: math.unit(8 + 5/12, "feet"),
  45176. weight: math.unit(825, "lb"),
  45177. name: "Front",
  45178. image: {
  45179. source: "./media/characters/cobalt-charizard/front.svg",
  45180. extra: 1268/1155,
  45181. bottom: 122/1390
  45182. }
  45183. },
  45184. side: {
  45185. height: math.unit(8 + 5/12, "feet"),
  45186. weight: math.unit(825, "lb"),
  45187. name: "Side",
  45188. image: {
  45189. source: "./media/characters/cobalt-charizard/side.svg",
  45190. extra: 1348/1257,
  45191. bottom: 58/1406
  45192. }
  45193. },
  45194. gMax: {
  45195. height: math.unit(134 + 11/12, "feet"),
  45196. name: "G-Max",
  45197. image: {
  45198. source: "./media/characters/cobalt-charizard/g-max.svg",
  45199. extra: 1835/1541,
  45200. bottom: 151/1986
  45201. }
  45202. },
  45203. },
  45204. [
  45205. {
  45206. name: "Normal",
  45207. height: math.unit(8 + 5/12, "feet"),
  45208. default: true
  45209. },
  45210. ]
  45211. ))
  45212. characterMakers.push(() => makeCharacter(
  45213. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  45214. {
  45215. front: {
  45216. height: math.unit(6 + 3/12, "feet"),
  45217. weight: math.unit(210, "lb"),
  45218. name: "Front",
  45219. image: {
  45220. source: "./media/characters/stella/front.svg",
  45221. extra: 3549/3335,
  45222. bottom: 51/3600
  45223. }
  45224. },
  45225. },
  45226. [
  45227. {
  45228. name: "Normal",
  45229. height: math.unit(6 + 3/12, "feet"),
  45230. default: true
  45231. },
  45232. ]
  45233. ))
  45234. characterMakers.push(() => makeCharacter(
  45235. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  45236. {
  45237. front: {
  45238. height: math.unit(5, "feet"),
  45239. weight: math.unit(90, "lb"),
  45240. name: "Front",
  45241. image: {
  45242. source: "./media/characters/riley-bishop/front.svg",
  45243. extra: 1450/1428,
  45244. bottom: 152/1602
  45245. }
  45246. },
  45247. },
  45248. [
  45249. {
  45250. name: "Normal",
  45251. height: math.unit(5, "feet"),
  45252. default: true
  45253. },
  45254. ]
  45255. ))
  45256. characterMakers.push(() => makeCharacter(
  45257. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  45258. {
  45259. side: {
  45260. height: math.unit(8 + 2/12, "feet"),
  45261. weight: math.unit(500, "kg"),
  45262. name: "Side",
  45263. image: {
  45264. source: "./media/characters/theo-arcanine/side.svg",
  45265. extra: 1342/1074,
  45266. bottom: 111/1453
  45267. }
  45268. },
  45269. },
  45270. [
  45271. {
  45272. name: "Normal",
  45273. height: math.unit(8 + 2/12, "feet"),
  45274. default: true
  45275. },
  45276. ]
  45277. ))
  45278. characterMakers.push(() => makeCharacter(
  45279. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  45280. {
  45281. front: {
  45282. height: math.unit(4, "feet"),
  45283. name: "Front",
  45284. image: {
  45285. source: "./media/characters/kali/front.svg",
  45286. extra: 1921/1357,
  45287. bottom: 70/1991
  45288. }
  45289. },
  45290. },
  45291. [
  45292. {
  45293. name: "Normal",
  45294. height: math.unit(4, "feet"),
  45295. default: true
  45296. },
  45297. {
  45298. name: "Macro",
  45299. height: math.unit(32, "meters")
  45300. },
  45301. {
  45302. name: "Macro+",
  45303. height: math.unit(150, "meters")
  45304. },
  45305. {
  45306. name: "Megamacro",
  45307. height: math.unit(7500, "meters")
  45308. },
  45309. {
  45310. name: "Megamacro+",
  45311. height: math.unit(80, "kilometers")
  45312. },
  45313. ]
  45314. ))
  45315. characterMakers.push(() => makeCharacter(
  45316. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  45317. {
  45318. side: {
  45319. height: math.unit(5 + 11/12, "feet"),
  45320. weight: math.unit(236, "lb"),
  45321. name: "Side",
  45322. image: {
  45323. source: "./media/characters/gapp/side.svg",
  45324. extra: 775/340,
  45325. bottom: 58/833
  45326. }
  45327. },
  45328. mouth: {
  45329. height: math.unit(2.98, "feet"),
  45330. name: "Mouth",
  45331. image: {
  45332. source: "./media/characters/gapp/mouth.svg"
  45333. }
  45334. },
  45335. },
  45336. [
  45337. {
  45338. name: "Normal",
  45339. height: math.unit(5 + 1/12, "feet"),
  45340. default: true
  45341. },
  45342. ]
  45343. ))
  45344. characterMakers.push(() => makeCharacter(
  45345. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  45346. {
  45347. front: {
  45348. height: math.unit(6, "feet"),
  45349. name: "Front",
  45350. image: {
  45351. source: "./media/characters/persephone/front.svg",
  45352. extra: 1895/1717,
  45353. bottom: 96/1991
  45354. }
  45355. },
  45356. back: {
  45357. height: math.unit(6, "feet"),
  45358. name: "Back",
  45359. image: {
  45360. source: "./media/characters/persephone/back.svg",
  45361. extra: 1868/1679,
  45362. bottom: 26/1894
  45363. }
  45364. },
  45365. casual: {
  45366. height: math.unit(6, "feet"),
  45367. name: "Casual",
  45368. image: {
  45369. source: "./media/characters/persephone/casual.svg",
  45370. extra: 1713/1541,
  45371. bottom: 76/1789
  45372. }
  45373. },
  45374. },
  45375. [
  45376. {
  45377. name: "Human Size",
  45378. height: math.unit(6, "feet")
  45379. },
  45380. {
  45381. name: "Big Steppy",
  45382. height: math.unit(600, "meters"),
  45383. default: true
  45384. },
  45385. {
  45386. name: "Galaxy Brain",
  45387. height: math.unit(1, "zettameter")
  45388. },
  45389. ]
  45390. ))
  45391. characterMakers.push(() => makeCharacter(
  45392. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  45393. {
  45394. front: {
  45395. height: math.unit(1.85, "meters"),
  45396. name: "Front",
  45397. image: {
  45398. source: "./media/characters/riley-foxthing/front.svg",
  45399. extra: 1495/1354,
  45400. bottom: 122/1617
  45401. }
  45402. },
  45403. frontAlt: {
  45404. height: math.unit(1.85, "meters"),
  45405. name: "Front (Alt)",
  45406. image: {
  45407. source: "./media/characters/riley-foxthing/front-alt.svg",
  45408. extra: 1572/1389,
  45409. bottom: 116/1688
  45410. }
  45411. },
  45412. },
  45413. [
  45414. {
  45415. name: "Normal Sized",
  45416. height: math.unit(1.85, "meters"),
  45417. default: true
  45418. },
  45419. {
  45420. name: "Quite Sizable",
  45421. height: math.unit(5, "meters")
  45422. },
  45423. {
  45424. name: "Rather Large",
  45425. height: math.unit(20, "meters")
  45426. },
  45427. {
  45428. name: "Macro",
  45429. height: math.unit(450, "meters")
  45430. },
  45431. {
  45432. name: "Giga",
  45433. height: math.unit(5, "km")
  45434. },
  45435. ]
  45436. ))
  45437. characterMakers.push(() => makeCharacter(
  45438. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  45439. {
  45440. front: {
  45441. height: math.unit(6, "feet"),
  45442. weight: math.unit(200, "lb"),
  45443. name: "Front",
  45444. image: {
  45445. source: "./media/characters/blizzard/front.svg",
  45446. extra: 1136/990,
  45447. bottom: 136/1272
  45448. }
  45449. },
  45450. back: {
  45451. height: math.unit(6, "feet"),
  45452. weight: math.unit(200, "lb"),
  45453. name: "Back",
  45454. image: {
  45455. source: "./media/characters/blizzard/back.svg",
  45456. extra: 1175/1034,
  45457. bottom: 97/1272
  45458. }
  45459. },
  45460. sitting: {
  45461. height: math.unit(3.725, "feet"),
  45462. weight: math.unit(200, "lb"),
  45463. name: "Sitting",
  45464. image: {
  45465. source: "./media/characters/blizzard/sitting.svg",
  45466. extra: 581/485,
  45467. bottom: 90/671
  45468. }
  45469. },
  45470. frontWizard: {
  45471. height: math.unit(7.9, "feet"),
  45472. weight: math.unit(200, "lb"),
  45473. name: "Front (Wizard)",
  45474. image: {
  45475. source: "./media/characters/blizzard/front-wizard.svg"
  45476. }
  45477. },
  45478. backWizard: {
  45479. height: math.unit(7.9, "feet"),
  45480. weight: math.unit(200, "lb"),
  45481. name: "Back (Wizard)",
  45482. image: {
  45483. source: "./media/characters/blizzard/back-wizard.svg"
  45484. }
  45485. },
  45486. frontNsfw: {
  45487. height: math.unit(6, "feet"),
  45488. weight: math.unit(200, "lb"),
  45489. name: "Front (NSFW)",
  45490. image: {
  45491. source: "./media/characters/blizzard/front-nsfw.svg",
  45492. extra: 1136/990,
  45493. bottom: 136/1272
  45494. }
  45495. },
  45496. backNsfw: {
  45497. height: math.unit(6, "feet"),
  45498. weight: math.unit(200, "lb"),
  45499. name: "Back (NSFW)",
  45500. image: {
  45501. source: "./media/characters/blizzard/back-nsfw.svg",
  45502. extra: 1175/1034,
  45503. bottom: 97/1272
  45504. }
  45505. },
  45506. sittingNsfw: {
  45507. height: math.unit(3.725, "feet"),
  45508. weight: math.unit(200, "lb"),
  45509. name: "Sitting (NSFW)",
  45510. image: {
  45511. source: "./media/characters/blizzard/sitting-nsfw.svg",
  45512. extra: 581/485,
  45513. bottom: 90/671
  45514. }
  45515. },
  45516. wizardFrontNsfw: {
  45517. height: math.unit(7.9, "feet"),
  45518. weight: math.unit(200, "lb"),
  45519. name: "Wizard (Front, NSFW)",
  45520. image: {
  45521. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  45522. }
  45523. },
  45524. },
  45525. [
  45526. {
  45527. name: "Normal",
  45528. height: math.unit(6, "feet"),
  45529. default: true
  45530. },
  45531. ]
  45532. ))
  45533. characterMakers.push(() => makeCharacter(
  45534. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  45535. {
  45536. front: {
  45537. height: math.unit(5 + 2/12, "feet"),
  45538. name: "Front",
  45539. image: {
  45540. source: "./media/characters/lumi/front.svg",
  45541. extra: 1328/1268,
  45542. bottom: 103/1431
  45543. }
  45544. },
  45545. back: {
  45546. height: math.unit(5 + 2/12, "feet"),
  45547. name: "Back",
  45548. image: {
  45549. source: "./media/characters/lumi/back.svg",
  45550. extra: 1381/1327,
  45551. bottom: 43/1424
  45552. }
  45553. },
  45554. },
  45555. [
  45556. {
  45557. name: "Normal",
  45558. height: math.unit(5 + 2/12, "feet"),
  45559. default: true
  45560. },
  45561. ]
  45562. ))
  45563. characterMakers.push(() => makeCharacter(
  45564. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  45565. {
  45566. front: {
  45567. height: math.unit(5 + 9/12, "feet"),
  45568. name: "Front",
  45569. image: {
  45570. source: "./media/characters/aliya-cotton/front.svg",
  45571. extra: 577/564,
  45572. bottom: 29/606
  45573. }
  45574. },
  45575. },
  45576. [
  45577. {
  45578. name: "Normal",
  45579. height: math.unit(5 + 9/12, "feet"),
  45580. default: true
  45581. },
  45582. ]
  45583. ))
  45584. characterMakers.push(() => makeCharacter(
  45585. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  45586. {
  45587. front: {
  45588. height: math.unit(2.7, "meters"),
  45589. weight: math.unit(25000, "lb"),
  45590. name: "Front",
  45591. image: {
  45592. source: "./media/characters/noah-luxray/front.svg",
  45593. extra: 1644/825,
  45594. bottom: 339/1983
  45595. }
  45596. },
  45597. side: {
  45598. height: math.unit(2.97, "meters"),
  45599. weight: math.unit(25000, "lb"),
  45600. name: "Side",
  45601. image: {
  45602. source: "./media/characters/noah-luxray/side.svg",
  45603. extra: 1319/650,
  45604. bottom: 163/1482
  45605. }
  45606. },
  45607. dick: {
  45608. height: math.unit(7.4, "feet"),
  45609. weight: math.unit(2500, "lb"),
  45610. name: "Dick",
  45611. image: {
  45612. source: "./media/characters/noah-luxray/dick.svg"
  45613. }
  45614. },
  45615. dickAlt: {
  45616. height: math.unit(10.83, "feet"),
  45617. weight: math.unit(2500, "lb"),
  45618. name: "Dick-alt",
  45619. image: {
  45620. source: "./media/characters/noah-luxray/dick-alt.svg"
  45621. }
  45622. },
  45623. },
  45624. [
  45625. {
  45626. name: "BIG",
  45627. height: math.unit(2.7, "meters"),
  45628. default: true
  45629. },
  45630. ]
  45631. ))
  45632. characterMakers.push(() => makeCharacter(
  45633. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  45634. {
  45635. standing: {
  45636. height: math.unit(183, "cm"),
  45637. weight: math.unit(68, "kg"),
  45638. name: "Standing",
  45639. image: {
  45640. source: "./media/characters/arion/standing.svg",
  45641. extra: 1869/1807,
  45642. bottom: 93/1962
  45643. }
  45644. },
  45645. reclining: {
  45646. height: math.unit(70.5, "cm"),
  45647. weight: math.unit(68, "lb"),
  45648. name: "Reclining",
  45649. image: {
  45650. source: "./media/characters/arion/reclining.svg",
  45651. extra: 937/870,
  45652. bottom: 63/1000
  45653. }
  45654. },
  45655. },
  45656. [
  45657. {
  45658. name: "Colossus Size, Low",
  45659. height: math.unit(33, "meters"),
  45660. default: true
  45661. },
  45662. {
  45663. name: "Colossus Size, Mid",
  45664. height: math.unit(52, "meters")
  45665. },
  45666. {
  45667. name: "Colossus Size, High",
  45668. height: math.unit(60, "meters")
  45669. },
  45670. {
  45671. name: "Titan Size, Low",
  45672. height: math.unit(91, "meters"),
  45673. },
  45674. {
  45675. name: "Titan Size, Mid",
  45676. height: math.unit(122, "meters")
  45677. },
  45678. {
  45679. name: "Titan Size, High",
  45680. height: math.unit(162, "meters")
  45681. },
  45682. ]
  45683. ))
  45684. characterMakers.push(() => makeCharacter(
  45685. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  45686. {
  45687. front: {
  45688. height: math.unit(53, "meters"),
  45689. name: "Front",
  45690. image: {
  45691. source: "./media/characters/stellar-marbey/front.svg",
  45692. extra: 1913/1805,
  45693. bottom: 92/2005
  45694. }
  45695. },
  45696. back: {
  45697. height: math.unit(53, "meters"),
  45698. name: "Back",
  45699. image: {
  45700. source: "./media/characters/stellar-marbey/back.svg",
  45701. extra: 1960/1851,
  45702. bottom: 28/1988
  45703. }
  45704. },
  45705. mouth: {
  45706. height: math.unit(3.5, "meters"),
  45707. name: "Mouth",
  45708. image: {
  45709. source: "./media/characters/stellar-marbey/mouth.svg"
  45710. }
  45711. },
  45712. },
  45713. [
  45714. {
  45715. name: "Macro",
  45716. height: math.unit(53, "meters"),
  45717. default: true
  45718. },
  45719. ]
  45720. ))
  45721. characterMakers.push(() => makeCharacter(
  45722. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  45723. {
  45724. front: {
  45725. height: math.unit(8 + 1/12, "feet"),
  45726. weight: math.unit(233, "lb"),
  45727. name: "Front",
  45728. image: {
  45729. source: "./media/characters/matsu/front.svg",
  45730. extra: 832/772,
  45731. bottom: 40/872
  45732. }
  45733. },
  45734. back: {
  45735. height: math.unit(8 + 1/12, "feet"),
  45736. weight: math.unit(233, "lb"),
  45737. name: "Back",
  45738. image: {
  45739. source: "./media/characters/matsu/back.svg",
  45740. extra: 839/780,
  45741. bottom: 47/886
  45742. }
  45743. },
  45744. },
  45745. [
  45746. {
  45747. name: "Normal",
  45748. height: math.unit(8 + 1/12, "feet"),
  45749. default: true
  45750. },
  45751. ]
  45752. ))
  45753. characterMakers.push(() => makeCharacter(
  45754. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  45755. {
  45756. front: {
  45757. height: math.unit(4, "feet"),
  45758. weight: math.unit(148, "lb"),
  45759. name: "Front",
  45760. image: {
  45761. source: "./media/characters/thiz/front.svg",
  45762. extra: 1913/1748,
  45763. bottom: 62/1975
  45764. }
  45765. },
  45766. },
  45767. [
  45768. {
  45769. name: "Normal",
  45770. height: math.unit(4, "feet"),
  45771. default: true
  45772. },
  45773. ]
  45774. ))
  45775. characterMakers.push(() => makeCharacter(
  45776. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  45777. {
  45778. front: {
  45779. height: math.unit(7 + 6/12, "feet"),
  45780. weight: math.unit(267, "lb"),
  45781. name: "Front",
  45782. image: {
  45783. source: "./media/characters/marcel/front.svg",
  45784. extra: 1221/1096,
  45785. bottom: 76/1297
  45786. }
  45787. },
  45788. },
  45789. [
  45790. {
  45791. name: "Normal",
  45792. height: math.unit(7 + 6/12, "feet"),
  45793. default: true
  45794. },
  45795. ]
  45796. ))
  45797. characterMakers.push(() => makeCharacter(
  45798. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  45799. {
  45800. side: {
  45801. height: math.unit(42, "meters"),
  45802. name: "Side",
  45803. image: {
  45804. source: "./media/characters/flake/side.svg",
  45805. extra: 1525/1306,
  45806. bottom: 209/1734
  45807. }
  45808. },
  45809. },
  45810. [
  45811. {
  45812. name: "Normal",
  45813. height: math.unit(42, "meters"),
  45814. default: true
  45815. },
  45816. ]
  45817. ))
  45818. characterMakers.push(() => makeCharacter(
  45819. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  45820. {
  45821. dressed: {
  45822. height: math.unit(6 + 4/12, "feet"),
  45823. weight: math.unit(520, "lb"),
  45824. name: "Dressed",
  45825. image: {
  45826. source: "./media/characters/someonne/dressed.svg",
  45827. extra: 1020/1010,
  45828. bottom: 178/1198
  45829. }
  45830. },
  45831. undressed: {
  45832. height: math.unit(6 + 4/12, "feet"),
  45833. weight: math.unit(520, "lb"),
  45834. name: "Undressed",
  45835. image: {
  45836. source: "./media/characters/someonne/undressed.svg",
  45837. extra: 1019/1014,
  45838. bottom: 169/1188
  45839. }
  45840. },
  45841. },
  45842. [
  45843. {
  45844. name: "Normal",
  45845. height: math.unit(6 + 4/12, "feet"),
  45846. default: true
  45847. },
  45848. ]
  45849. ))
  45850. characterMakers.push(() => makeCharacter(
  45851. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  45852. {
  45853. front: {
  45854. height: math.unit(3, "feet"),
  45855. weight: math.unit(30, "lb"),
  45856. name: "Front",
  45857. image: {
  45858. source: "./media/characters/till/front.svg",
  45859. extra: 892/823,
  45860. bottom: 55/947
  45861. }
  45862. },
  45863. },
  45864. [
  45865. {
  45866. name: "Normal",
  45867. height: math.unit(3, "feet"),
  45868. default: true
  45869. },
  45870. ]
  45871. ))
  45872. characterMakers.push(() => makeCharacter(
  45873. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  45874. {
  45875. front: {
  45876. height: math.unit(9 + 8/12, "feet"),
  45877. weight: math.unit(800, "lb"),
  45878. name: "Front",
  45879. image: {
  45880. source: "./media/characters/sydney-heki/front.svg",
  45881. extra: 1360/1300,
  45882. bottom: 22/1382
  45883. }
  45884. },
  45885. back: {
  45886. height: math.unit(9 + 8/12, "feet"),
  45887. weight: math.unit(800, "lb"),
  45888. name: "Back",
  45889. image: {
  45890. source: "./media/characters/sydney-heki/back.svg",
  45891. extra: 1356/1293,
  45892. bottom: 12/1368
  45893. }
  45894. },
  45895. frontDressed: {
  45896. height: math.unit(9 + 8/12, "feet"),
  45897. weight: math.unit(800, "lb"),
  45898. name: "Front-dressed",
  45899. image: {
  45900. source: "./media/characters/sydney-heki/front-dressed.svg",
  45901. extra: 1360/1300,
  45902. bottom: 22/1382
  45903. }
  45904. },
  45905. },
  45906. [
  45907. {
  45908. name: "Normal",
  45909. height: math.unit(9 + 8/12, "feet"),
  45910. default: true
  45911. },
  45912. {
  45913. name: "Macro",
  45914. height: math.unit(500, "feet")
  45915. },
  45916. {
  45917. name: "Megamacro",
  45918. height: math.unit(3.6, "miles")
  45919. },
  45920. ]
  45921. ))
  45922. characterMakers.push(() => makeCharacter(
  45923. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  45924. {
  45925. front: {
  45926. height: math.unit(200, "cm"),
  45927. weight: math.unit(250, "lb"),
  45928. name: "Front",
  45929. image: {
  45930. source: "./media/characters/fowler-karlsson/front.svg",
  45931. extra: 897/845,
  45932. bottom: 123/1020
  45933. }
  45934. },
  45935. back: {
  45936. height: math.unit(200, "cm"),
  45937. weight: math.unit(250, "lb"),
  45938. name: "Back",
  45939. image: {
  45940. source: "./media/characters/fowler-karlsson/back.svg",
  45941. extra: 999/944,
  45942. bottom: 26/1025
  45943. }
  45944. },
  45945. dick: {
  45946. height: math.unit(1.92, "feet"),
  45947. weight: math.unit(150, "lb"),
  45948. name: "Dick",
  45949. image: {
  45950. source: "./media/characters/fowler-karlsson/dick.svg"
  45951. }
  45952. },
  45953. },
  45954. [
  45955. {
  45956. name: "Normal",
  45957. height: math.unit(200, "cm"),
  45958. default: true
  45959. },
  45960. {
  45961. name: "Smaller Macro",
  45962. height: math.unit(90, "m")
  45963. },
  45964. {
  45965. name: "Macro",
  45966. height: math.unit(150, "m")
  45967. },
  45968. {
  45969. name: "Bigger Macro",
  45970. height: math.unit(300, "m")
  45971. },
  45972. ]
  45973. ))
  45974. characterMakers.push(() => makeCharacter(
  45975. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  45976. {
  45977. side: {
  45978. height: math.unit(8 + 2/12, "feet"),
  45979. weight: math.unit(1, "tonne"),
  45980. name: "Side",
  45981. image: {
  45982. source: "./media/characters/rylide/side.svg",
  45983. extra: 1318/1034,
  45984. bottom: 106/1424
  45985. }
  45986. },
  45987. sitting: {
  45988. height: math.unit(303, "cm"),
  45989. weight: math.unit(1, "tonne"),
  45990. name: "Sitting",
  45991. image: {
  45992. source: "./media/characters/rylide/sitting.svg",
  45993. extra: 1303/1103,
  45994. bottom: 36/1339
  45995. }
  45996. },
  45997. },
  45998. [
  45999. {
  46000. name: "Normal",
  46001. height: math.unit(8 + 2/12, "feet"),
  46002. default: true
  46003. },
  46004. ]
  46005. ))
  46006. characterMakers.push(() => makeCharacter(
  46007. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  46008. {
  46009. front: {
  46010. height: math.unit(5 + 10/12, "feet"),
  46011. weight: math.unit(160, "lb"),
  46012. name: "Front",
  46013. image: {
  46014. source: "./media/characters/pudask/front.svg",
  46015. extra: 1616/1590,
  46016. bottom: 161/1777
  46017. }
  46018. },
  46019. },
  46020. [
  46021. {
  46022. name: "Ferret Height",
  46023. height: math.unit(2 + 5/12, "feet")
  46024. },
  46025. {
  46026. name: "Canon Height",
  46027. height: math.unit(5 + 10/12, "feet"),
  46028. default: true
  46029. },
  46030. ]
  46031. ))
  46032. characterMakers.push(() => makeCharacter(
  46033. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  46034. {
  46035. front: {
  46036. height: math.unit(3 + 6/12, "feet"),
  46037. weight: math.unit(60, "lb"),
  46038. name: "Front",
  46039. image: {
  46040. source: "./media/characters/ramita/front.svg",
  46041. extra: 1402/1232,
  46042. bottom: 62/1464
  46043. }
  46044. },
  46045. dressed: {
  46046. height: math.unit(3 + 6/12, "feet"),
  46047. weight: math.unit(60, "lb"),
  46048. name: "Dressed",
  46049. image: {
  46050. source: "./media/characters/ramita/dressed.svg",
  46051. extra: 1534/1249,
  46052. bottom: 50/1584
  46053. }
  46054. },
  46055. },
  46056. [
  46057. {
  46058. name: "Normal",
  46059. height: math.unit(3 + 6/12, "feet"),
  46060. default: true
  46061. },
  46062. ]
  46063. ))
  46064. characterMakers.push(() => makeCharacter(
  46065. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  46066. {
  46067. front: {
  46068. height: math.unit(8, "feet"),
  46069. name: "Front",
  46070. image: {
  46071. source: "./media/characters/ark/front.svg",
  46072. extra: 772/693,
  46073. bottom: 45/817
  46074. }
  46075. },
  46076. },
  46077. [
  46078. {
  46079. name: "Normal",
  46080. height: math.unit(8, "feet"),
  46081. default: true
  46082. },
  46083. ]
  46084. ))
  46085. characterMakers.push(() => makeCharacter(
  46086. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  46087. {
  46088. front: {
  46089. height: math.unit(6, "feet"),
  46090. weight: math.unit(250, "lb"),
  46091. volume: math.unit(5/8, "gallons"),
  46092. name: "Front",
  46093. image: {
  46094. source: "./media/characters/ludwig-horn/front.svg",
  46095. extra: 1782/1635,
  46096. bottom: 96/1878
  46097. }
  46098. },
  46099. back: {
  46100. height: math.unit(6, "feet"),
  46101. weight: math.unit(250, "lb"),
  46102. volume: math.unit(5/8, "gallons"),
  46103. name: "Back",
  46104. image: {
  46105. source: "./media/characters/ludwig-horn/back.svg",
  46106. extra: 1874/1729,
  46107. bottom: 27/1901
  46108. }
  46109. },
  46110. dick: {
  46111. height: math.unit(1.05, "feet"),
  46112. weight: math.unit(15, "lb"),
  46113. volume: math.unit(5/8, "gallons"),
  46114. name: "Dick",
  46115. image: {
  46116. source: "./media/characters/ludwig-horn/dick.svg"
  46117. }
  46118. },
  46119. },
  46120. [
  46121. {
  46122. name: "Small",
  46123. height: math.unit(6, "feet")
  46124. },
  46125. {
  46126. name: "Typical",
  46127. height: math.unit(12, "feet"),
  46128. default: true
  46129. },
  46130. {
  46131. name: "Building",
  46132. height: math.unit(80, "feet")
  46133. },
  46134. {
  46135. name: "Town",
  46136. height: math.unit(800, "feet")
  46137. },
  46138. {
  46139. name: "Kingdom",
  46140. height: math.unit(80000, "feet")
  46141. },
  46142. {
  46143. name: "Planet",
  46144. height: math.unit(8000000, "feet")
  46145. },
  46146. {
  46147. name: "Universe",
  46148. height: math.unit(8000000000, "feet")
  46149. },
  46150. {
  46151. name: "Transcended",
  46152. height: math.unit(8e27, "feet")
  46153. },
  46154. ]
  46155. ))
  46156. characterMakers.push(() => makeCharacter(
  46157. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  46158. {
  46159. front: {
  46160. height: math.unit(5, "feet"),
  46161. weight: math.unit(50, "kg"),
  46162. name: "Front",
  46163. image: {
  46164. source: "./media/characters/biot-avery/front.svg",
  46165. extra: 1295/1232,
  46166. bottom: 86/1381
  46167. }
  46168. },
  46169. },
  46170. [
  46171. {
  46172. name: "Normal",
  46173. height: math.unit(5, "feet"),
  46174. default: true
  46175. },
  46176. ]
  46177. ))
  46178. characterMakers.push(() => makeCharacter(
  46179. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  46180. {
  46181. front: {
  46182. height: math.unit(6, "feet"),
  46183. name: "Front",
  46184. image: {
  46185. source: "./media/characters/kitsune-kiro/front.svg",
  46186. extra: 1270/1158,
  46187. bottom: 42/1312
  46188. }
  46189. },
  46190. frontAlt: {
  46191. height: math.unit(6, "feet"),
  46192. name: "Front-alt",
  46193. image: {
  46194. source: "./media/characters/kitsune-kiro/front-alt.svg",
  46195. extra: 1130/1081,
  46196. bottom: 36/1166
  46197. }
  46198. },
  46199. },
  46200. [
  46201. {
  46202. name: "Smol",
  46203. height: math.unit(3, "feet")
  46204. },
  46205. {
  46206. name: "Normal",
  46207. height: math.unit(6, "feet"),
  46208. default: true
  46209. },
  46210. ]
  46211. ))
  46212. characterMakers.push(() => makeCharacter(
  46213. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  46214. {
  46215. front: {
  46216. height: math.unit(6, "feet"),
  46217. weight: math.unit(125, "lb"),
  46218. name: "Front",
  46219. image: {
  46220. source: "./media/characters/jack-thatcher/front.svg",
  46221. extra: 1474/1370,
  46222. bottom: 26/1500
  46223. }
  46224. },
  46225. back: {
  46226. height: math.unit(6, "feet"),
  46227. weight: math.unit(125, "lb"),
  46228. name: "Back",
  46229. image: {
  46230. source: "./media/characters/jack-thatcher/back.svg",
  46231. extra: 1489/1384,
  46232. bottom: 18/1507
  46233. }
  46234. },
  46235. },
  46236. [
  46237. {
  46238. name: "Normal",
  46239. height: math.unit(6, "feet"),
  46240. default: true
  46241. },
  46242. {
  46243. name: "Macro",
  46244. height: math.unit(75, "feet")
  46245. },
  46246. {
  46247. name: "Macro-er",
  46248. height: math.unit(250, "feet")
  46249. },
  46250. ]
  46251. ))
  46252. characterMakers.push(() => makeCharacter(
  46253. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  46254. {
  46255. front: {
  46256. height: math.unit(7, "feet"),
  46257. weight: math.unit(110, "kg"),
  46258. name: "Front",
  46259. image: {
  46260. source: "./media/characters/max-hyper/front.svg",
  46261. extra: 1969/1881,
  46262. bottom: 49/2018
  46263. }
  46264. },
  46265. },
  46266. [
  46267. {
  46268. name: "Normal",
  46269. height: math.unit(7, "feet"),
  46270. default: true
  46271. },
  46272. ]
  46273. ))
  46274. characterMakers.push(() => makeCharacter(
  46275. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  46276. {
  46277. front: {
  46278. height: math.unit(5 + 5/12, "feet"),
  46279. weight: math.unit(160, "lb"),
  46280. name: "Front",
  46281. image: {
  46282. source: "./media/characters/spook/front.svg",
  46283. extra: 794/791,
  46284. bottom: 54/848
  46285. }
  46286. },
  46287. back: {
  46288. height: math.unit(5 + 5/12, "feet"),
  46289. weight: math.unit(160, "lb"),
  46290. name: "Back",
  46291. image: {
  46292. source: "./media/characters/spook/back.svg",
  46293. extra: 812/798,
  46294. bottom: 32/844
  46295. }
  46296. },
  46297. },
  46298. [
  46299. {
  46300. name: "Normal",
  46301. height: math.unit(5 + 5/12, "feet"),
  46302. default: true
  46303. },
  46304. ]
  46305. ))
  46306. characterMakers.push(() => makeCharacter(
  46307. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  46308. {
  46309. front: {
  46310. height: math.unit(18, "feet"),
  46311. name: "Front",
  46312. image: {
  46313. source: "./media/characters/xeaduulix/front.svg",
  46314. extra: 1380/1166,
  46315. bottom: 110/1490
  46316. }
  46317. },
  46318. back: {
  46319. height: math.unit(18, "feet"),
  46320. name: "Back",
  46321. image: {
  46322. source: "./media/characters/xeaduulix/back.svg",
  46323. extra: 1592/1170,
  46324. bottom: 128/1720
  46325. }
  46326. },
  46327. frontNsfw: {
  46328. height: math.unit(18, "feet"),
  46329. name: "Front (NSFW)",
  46330. image: {
  46331. source: "./media/characters/xeaduulix/front-nsfw.svg",
  46332. extra: 1380/1166,
  46333. bottom: 110/1490
  46334. }
  46335. },
  46336. backNsfw: {
  46337. height: math.unit(18, "feet"),
  46338. name: "Back (NSFW)",
  46339. image: {
  46340. source: "./media/characters/xeaduulix/back-nsfw.svg",
  46341. extra: 1592/1170,
  46342. bottom: 128/1720
  46343. }
  46344. },
  46345. },
  46346. [
  46347. {
  46348. name: "Normal",
  46349. height: math.unit(18, "feet"),
  46350. default: true
  46351. },
  46352. ]
  46353. ))
  46354. characterMakers.push(() => makeCharacter(
  46355. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  46356. {
  46357. spreadWings: {
  46358. height: math.unit(20, "feet"),
  46359. name: "Spread Wings",
  46360. image: {
  46361. source: "./media/characters/fledge/spread-wings.svg",
  46362. extra: 693/635,
  46363. bottom: 26/719
  46364. }
  46365. },
  46366. front: {
  46367. height: math.unit(20, "feet"),
  46368. name: "Front",
  46369. image: {
  46370. source: "./media/characters/fledge/front.svg",
  46371. extra: 684/637,
  46372. bottom: 18/702
  46373. }
  46374. },
  46375. frontAlt: {
  46376. height: math.unit(20, "feet"),
  46377. name: "Front (Alt)",
  46378. image: {
  46379. source: "./media/characters/fledge/front-alt.svg",
  46380. extra: 708/664,
  46381. bottom: 13/721
  46382. }
  46383. },
  46384. back: {
  46385. height: math.unit(20, "feet"),
  46386. name: "Back",
  46387. image: {
  46388. source: "./media/characters/fledge/back.svg",
  46389. extra: 718/634,
  46390. bottom: 22/740
  46391. }
  46392. },
  46393. head: {
  46394. height: math.unit(5.55, "feet"),
  46395. name: "Head",
  46396. image: {
  46397. source: "./media/characters/fledge/head.svg"
  46398. }
  46399. },
  46400. headAlt: {
  46401. height: math.unit(5.1, "feet"),
  46402. name: "Head (Alt)",
  46403. image: {
  46404. source: "./media/characters/fledge/head-alt.svg"
  46405. }
  46406. },
  46407. },
  46408. [
  46409. {
  46410. name: "Small",
  46411. height: math.unit(6 + 2/12, "feet")
  46412. },
  46413. {
  46414. name: "Big",
  46415. height: math.unit(20, "feet"),
  46416. default: true
  46417. },
  46418. {
  46419. name: "Giant",
  46420. height: math.unit(100, "feet")
  46421. },
  46422. {
  46423. name: "Macro",
  46424. height: math.unit(200, "feet")
  46425. },
  46426. ]
  46427. ))
  46428. characterMakers.push(() => makeCharacter(
  46429. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  46430. {
  46431. front: {
  46432. height: math.unit(1, "meter"),
  46433. name: "Front",
  46434. image: {
  46435. source: "./media/characters/atlas-morenai/front.svg",
  46436. extra: 1275/1043,
  46437. bottom: 19/1294
  46438. }
  46439. },
  46440. back: {
  46441. height: math.unit(1, "meter"),
  46442. name: "Back",
  46443. image: {
  46444. source: "./media/characters/atlas-morenai/back.svg",
  46445. extra: 1141/1001,
  46446. bottom: 25/1166
  46447. }
  46448. },
  46449. },
  46450. [
  46451. {
  46452. name: "Normal",
  46453. height: math.unit(1, "meter"),
  46454. default: true
  46455. },
  46456. {
  46457. name: "Magic-Infused",
  46458. height: math.unit(5, "meters")
  46459. },
  46460. ]
  46461. ))
  46462. characterMakers.push(() => makeCharacter(
  46463. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  46464. {
  46465. front: {
  46466. height: math.unit(5, "meters"),
  46467. name: "Front",
  46468. image: {
  46469. source: "./media/characters/cintia/front.svg",
  46470. extra: 1312/1228,
  46471. bottom: 38/1350
  46472. }
  46473. },
  46474. back: {
  46475. height: math.unit(5, "meters"),
  46476. name: "Back",
  46477. image: {
  46478. source: "./media/characters/cintia/back.svg",
  46479. extra: 1260/1166,
  46480. bottom: 98/1358
  46481. }
  46482. },
  46483. frontDick: {
  46484. height: math.unit(5, "meters"),
  46485. name: "Front (Dick)",
  46486. image: {
  46487. source: "./media/characters/cintia/front-dick.svg",
  46488. extra: 1312/1228,
  46489. bottom: 38/1350
  46490. }
  46491. },
  46492. backDick: {
  46493. height: math.unit(5, "meters"),
  46494. name: "Back (Dick)",
  46495. image: {
  46496. source: "./media/characters/cintia/back-dick.svg",
  46497. extra: 1260/1166,
  46498. bottom: 98/1358
  46499. }
  46500. },
  46501. bust: {
  46502. height: math.unit(1.97, "meters"),
  46503. name: "Bust",
  46504. image: {
  46505. source: "./media/characters/cintia/bust.svg",
  46506. extra: 617/565,
  46507. bottom: 0/617
  46508. }
  46509. },
  46510. },
  46511. [
  46512. {
  46513. name: "Normal",
  46514. height: math.unit(5, "meters"),
  46515. default: true
  46516. },
  46517. ]
  46518. ))
  46519. characterMakers.push(() => makeCharacter(
  46520. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  46521. {
  46522. side: {
  46523. height: math.unit(100, "feet"),
  46524. name: "Side",
  46525. image: {
  46526. source: "./media/characters/denora/side.svg",
  46527. extra: 875/803,
  46528. bottom: 9/884
  46529. }
  46530. },
  46531. },
  46532. [
  46533. {
  46534. name: "Standard",
  46535. height: math.unit(100, "feet"),
  46536. default: true
  46537. },
  46538. {
  46539. name: "Grand",
  46540. height: math.unit(1000, "feet")
  46541. },
  46542. {
  46543. name: "Conquering",
  46544. height: math.unit(10000, "feet")
  46545. },
  46546. ]
  46547. ))
  46548. characterMakers.push(() => makeCharacter(
  46549. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  46550. {
  46551. dressed: {
  46552. height: math.unit(8 + 5/12, "feet"),
  46553. weight: math.unit(700, "lb"),
  46554. name: "Dressed",
  46555. image: {
  46556. source: "./media/characters/kiva/dressed.svg",
  46557. extra: 1102/1055,
  46558. bottom: 60/1162
  46559. }
  46560. },
  46561. nude: {
  46562. height: math.unit(8 + 5/12, "feet"),
  46563. weight: math.unit(700, "lb"),
  46564. name: "Nude",
  46565. image: {
  46566. source: "./media/characters/kiva/nude.svg",
  46567. extra: 1102/1055,
  46568. bottom: 60/1162
  46569. }
  46570. },
  46571. },
  46572. [
  46573. {
  46574. name: "Base Height",
  46575. height: math.unit(8 + 5/12, "feet"),
  46576. default: true
  46577. },
  46578. {
  46579. name: "Macro",
  46580. height: math.unit(100, "feet")
  46581. },
  46582. {
  46583. name: "Max",
  46584. height: math.unit(3280, "feet")
  46585. },
  46586. ]
  46587. ))
  46588. characterMakers.push(() => makeCharacter(
  46589. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  46590. {
  46591. front: {
  46592. height: math.unit(6 + 8/12, "feet"),
  46593. weight: math.unit(250, "lb"),
  46594. name: "Front",
  46595. image: {
  46596. source: "./media/characters/ztragon/front.svg",
  46597. extra: 1825/1684,
  46598. bottom: 98/1923
  46599. }
  46600. },
  46601. },
  46602. [
  46603. {
  46604. name: "Normal",
  46605. height: math.unit(6 + 8/12, "feet"),
  46606. default: true
  46607. },
  46608. {
  46609. name: "Macro",
  46610. height: math.unit(80, "feet")
  46611. },
  46612. ]
  46613. ))
  46614. characterMakers.push(() => makeCharacter(
  46615. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  46616. {
  46617. front: {
  46618. height: math.unit(10.4, "feet"),
  46619. weight: math.unit(2, "tons"),
  46620. name: "Front",
  46621. image: {
  46622. source: "./media/characters/yesenia/front.svg",
  46623. extra: 1479/1474,
  46624. bottom: 233/1712
  46625. }
  46626. },
  46627. },
  46628. [
  46629. {
  46630. name: "Normal",
  46631. height: math.unit(10.4, "feet"),
  46632. default: true
  46633. },
  46634. ]
  46635. ))
  46636. characterMakers.push(() => makeCharacter(
  46637. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  46638. {
  46639. normal: {
  46640. height: math.unit(6 + 1/12, "feet"),
  46641. weight: math.unit(180, "lb"),
  46642. name: "Normal",
  46643. image: {
  46644. source: "./media/characters/leanne-lycheborne/normal.svg",
  46645. extra: 1748/1660,
  46646. bottom: 98/1846
  46647. }
  46648. },
  46649. were: {
  46650. height: math.unit(12, "feet"),
  46651. weight: math.unit(1600, "lb"),
  46652. name: "Were",
  46653. image: {
  46654. source: "./media/characters/leanne-lycheborne/were.svg",
  46655. extra: 1485/1432,
  46656. bottom: 66/1551
  46657. }
  46658. },
  46659. },
  46660. [
  46661. {
  46662. name: "Normal",
  46663. height: math.unit(6 + 1/12, "feet"),
  46664. default: true
  46665. },
  46666. ]
  46667. ))
  46668. characterMakers.push(() => makeCharacter(
  46669. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  46670. {
  46671. side: {
  46672. height: math.unit(13, "feet"),
  46673. name: "Side",
  46674. image: {
  46675. source: "./media/characters/kira-tyler/side.svg",
  46676. extra: 693/393,
  46677. bottom: 58/751
  46678. }
  46679. },
  46680. },
  46681. [
  46682. {
  46683. name: "Normal",
  46684. height: math.unit(13, "feet"),
  46685. default: true
  46686. },
  46687. ]
  46688. ))
  46689. characterMakers.push(() => makeCharacter(
  46690. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  46691. {
  46692. front: {
  46693. height: math.unit(10.3, "feet"),
  46694. weight: math.unit(150, "lb"),
  46695. name: "Front",
  46696. image: {
  46697. source: "./media/characters/blaze/front.svg",
  46698. extra: 1378/1286,
  46699. bottom: 172/1550
  46700. }
  46701. },
  46702. },
  46703. [
  46704. {
  46705. name: "Normal",
  46706. height: math.unit(10.3, "feet"),
  46707. default: true
  46708. },
  46709. ]
  46710. ))
  46711. characterMakers.push(() => makeCharacter(
  46712. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  46713. {
  46714. side: {
  46715. height: math.unit(2, "meters"),
  46716. weight: math.unit(400, "kg"),
  46717. name: "Side",
  46718. image: {
  46719. source: "./media/characters/anu/side.svg",
  46720. extra: 506/394,
  46721. bottom: 18/524
  46722. }
  46723. },
  46724. },
  46725. [
  46726. {
  46727. name: "Humanoid",
  46728. height: math.unit(2, "meters")
  46729. },
  46730. {
  46731. name: "Normal",
  46732. height: math.unit(5, "meters"),
  46733. default: true
  46734. },
  46735. ]
  46736. ))
  46737. characterMakers.push(() => makeCharacter(
  46738. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  46739. {
  46740. front: {
  46741. height: math.unit(5 + 5/12, "feet"),
  46742. weight: math.unit(170, "lb"),
  46743. name: "Front",
  46744. image: {
  46745. source: "./media/characters/synx-the-lynx/front.svg",
  46746. extra: 1893/1745,
  46747. bottom: 17/1910
  46748. }
  46749. },
  46750. side: {
  46751. height: math.unit(5 + 5/12, "feet"),
  46752. weight: math.unit(170, "lb"),
  46753. name: "Side",
  46754. image: {
  46755. source: "./media/characters/synx-the-lynx/side.svg",
  46756. extra: 1884/1740,
  46757. bottom: 39/1923
  46758. }
  46759. },
  46760. back: {
  46761. height: math.unit(5 + 5/12, "feet"),
  46762. weight: math.unit(170, "lb"),
  46763. name: "Back",
  46764. image: {
  46765. source: "./media/characters/synx-the-lynx/back.svg",
  46766. extra: 1903/1755,
  46767. bottom: 14/1917
  46768. }
  46769. },
  46770. },
  46771. [
  46772. {
  46773. name: "Normal",
  46774. height: math.unit(5 + 5/12, "feet"),
  46775. default: true
  46776. },
  46777. ]
  46778. ))
  46779. characterMakers.push(() => makeCharacter(
  46780. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  46781. {
  46782. back: {
  46783. height: math.unit(15, "feet"),
  46784. name: "Back",
  46785. image: {
  46786. source: "./media/characters/nadezda-fex/back.svg",
  46787. extra: 1695/1481,
  46788. bottom: 25/1720
  46789. }
  46790. },
  46791. },
  46792. [
  46793. {
  46794. name: "Normal",
  46795. height: math.unit(15, "feet"),
  46796. default: true
  46797. },
  46798. {
  46799. name: "Macro",
  46800. height: math.unit(2.5, "miles")
  46801. },
  46802. {
  46803. name: "Goddess",
  46804. height: math.unit(2, "multiverses")
  46805. },
  46806. ]
  46807. ))
  46808. characterMakers.push(() => makeCharacter(
  46809. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  46810. {
  46811. front: {
  46812. height: math.unit(216, "cm"),
  46813. name: "Front",
  46814. image: {
  46815. source: "./media/characters/lev/front.svg",
  46816. extra: 1728/1670,
  46817. bottom: 82/1810
  46818. }
  46819. },
  46820. back: {
  46821. height: math.unit(216, "cm"),
  46822. name: "Back",
  46823. image: {
  46824. source: "./media/characters/lev/back.svg",
  46825. extra: 1738/1675,
  46826. bottom: 24/1762
  46827. }
  46828. },
  46829. dressed: {
  46830. height: math.unit(216, "cm"),
  46831. name: "Dressed",
  46832. image: {
  46833. source: "./media/characters/lev/dressed.svg",
  46834. extra: 1397/1351,
  46835. bottom: 73/1470
  46836. }
  46837. },
  46838. head: {
  46839. height: math.unit(0.51, "meter"),
  46840. name: "Head",
  46841. image: {
  46842. source: "./media/characters/lev/head.svg"
  46843. }
  46844. },
  46845. },
  46846. [
  46847. {
  46848. name: "Normal",
  46849. height: math.unit(216, "cm"),
  46850. default: true
  46851. },
  46852. {
  46853. name: "Relatively Macro",
  46854. height: math.unit(80, "meters")
  46855. },
  46856. {
  46857. name: "Megamacro",
  46858. height: math.unit(21600, "meters")
  46859. },
  46860. {
  46861. name: "Megamacro+",
  46862. height: math.unit(64800, "meters")
  46863. },
  46864. ]
  46865. ))
  46866. characterMakers.push(() => makeCharacter(
  46867. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  46868. {
  46869. front: {
  46870. height: math.unit(2, "meters"),
  46871. weight: math.unit(80, "kg"),
  46872. name: "Front",
  46873. image: {
  46874. source: "./media/characters/moka/front.svg",
  46875. extra: 1337/1255,
  46876. bottom: 58/1395
  46877. }
  46878. },
  46879. },
  46880. [
  46881. {
  46882. name: "Micro",
  46883. height: math.unit(15, "cm")
  46884. },
  46885. {
  46886. name: "Normal",
  46887. height: math.unit(2, "meters"),
  46888. default: true
  46889. },
  46890. {
  46891. name: "Macro",
  46892. height: math.unit(20, "meters"),
  46893. },
  46894. ]
  46895. ))
  46896. characterMakers.push(() => makeCharacter(
  46897. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  46898. {
  46899. front: {
  46900. height: math.unit(9, "feet"),
  46901. weight: math.unit(240, "lb"),
  46902. name: "Front",
  46903. image: {
  46904. source: "./media/characters/kuzco/front.svg",
  46905. extra: 1593/1487,
  46906. bottom: 32/1625
  46907. }
  46908. },
  46909. side: {
  46910. height: math.unit(9, "feet"),
  46911. weight: math.unit(240, "lb"),
  46912. name: "Side",
  46913. image: {
  46914. source: "./media/characters/kuzco/side.svg",
  46915. extra: 1575/1485,
  46916. bottom: 30/1605
  46917. }
  46918. },
  46919. back: {
  46920. height: math.unit(9, "feet"),
  46921. weight: math.unit(240, "lb"),
  46922. name: "Back",
  46923. image: {
  46924. source: "./media/characters/kuzco/back.svg",
  46925. extra: 1603/1514,
  46926. bottom: 14/1617
  46927. }
  46928. },
  46929. },
  46930. [
  46931. {
  46932. name: "Normal",
  46933. height: math.unit(9, "feet"),
  46934. default: true
  46935. },
  46936. ]
  46937. ))
  46938. characterMakers.push(() => makeCharacter(
  46939. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  46940. {
  46941. side: {
  46942. height: math.unit(2, "meters"),
  46943. weight: math.unit(300, "kg"),
  46944. name: "Side",
  46945. image: {
  46946. source: "./media/characters/ceruleus/side.svg",
  46947. extra: 1068/974,
  46948. bottom: 126/1194
  46949. }
  46950. },
  46951. maw: {
  46952. height: math.unit(0.8125, "meter"),
  46953. name: "Maw",
  46954. image: {
  46955. source: "./media/characters/ceruleus/maw.svg"
  46956. }
  46957. },
  46958. },
  46959. [
  46960. {
  46961. name: "Normal",
  46962. height: math.unit(16, "meters"),
  46963. default: true
  46964. },
  46965. ]
  46966. ))
  46967. characterMakers.push(() => makeCharacter(
  46968. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  46969. {
  46970. front: {
  46971. height: math.unit(9, "feet"),
  46972. weight: math.unit(500, "kg"),
  46973. name: "Front",
  46974. image: {
  46975. source: "./media/characters/acouya/front.svg",
  46976. extra: 1660/1473,
  46977. bottom: 28/1688
  46978. }
  46979. },
  46980. },
  46981. [
  46982. {
  46983. name: "Normal",
  46984. height: math.unit(9, "feet"),
  46985. default: true
  46986. },
  46987. ]
  46988. ))
  46989. characterMakers.push(() => makeCharacter(
  46990. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  46991. {
  46992. front: {
  46993. height: math.unit(5 + 6/12, "feet"),
  46994. weight: math.unit(195, "lb"),
  46995. name: "Front",
  46996. image: {
  46997. source: "./media/characters/vant/front.svg",
  46998. extra: 1396/1320,
  46999. bottom: 20/1416
  47000. }
  47001. },
  47002. back: {
  47003. height: math.unit(5 + 6/12, "feet"),
  47004. weight: math.unit(195, "lb"),
  47005. name: "Back",
  47006. image: {
  47007. source: "./media/characters/vant/back.svg",
  47008. extra: 1396/1320,
  47009. bottom: 20/1416
  47010. }
  47011. },
  47012. maw: {
  47013. height: math.unit(0.75, "feet"),
  47014. name: "Maw",
  47015. image: {
  47016. source: "./media/characters/vant/maw.svg"
  47017. }
  47018. },
  47019. paw: {
  47020. height: math.unit(1.07, "feet"),
  47021. name: "Paw",
  47022. image: {
  47023. source: "./media/characters/vant/paw.svg"
  47024. }
  47025. },
  47026. },
  47027. [
  47028. {
  47029. name: "Micro",
  47030. height: math.unit(0.25, "inches")
  47031. },
  47032. {
  47033. name: "Normal",
  47034. height: math.unit(5 + 6/12, "feet"),
  47035. default: true
  47036. },
  47037. {
  47038. name: "Macro",
  47039. height: math.unit(75, "feet")
  47040. },
  47041. ]
  47042. ))
  47043. characterMakers.push(() => makeCharacter(
  47044. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  47045. {
  47046. front: {
  47047. height: math.unit(30, "meters"),
  47048. weight: math.unit(363, "tons"),
  47049. name: "Front",
  47050. image: {
  47051. source: "./media/characters/ahra/front.svg",
  47052. extra: 1914/1814,
  47053. bottom: 46/1960
  47054. }
  47055. },
  47056. },
  47057. [
  47058. {
  47059. name: "Macro",
  47060. height: math.unit(30, "meters"),
  47061. default: true
  47062. },
  47063. ]
  47064. ))
  47065. characterMakers.push(() => makeCharacter(
  47066. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  47067. {
  47068. undressed: {
  47069. height: math.unit(2, "m"),
  47070. weight: math.unit(250, "kg"),
  47071. name: "Undressed",
  47072. image: {
  47073. source: "./media/characters/coriander/undressed.svg",
  47074. extra: 1757/1606,
  47075. bottom: 107/1864
  47076. }
  47077. },
  47078. dressed: {
  47079. height: math.unit(2, "m"),
  47080. weight: math.unit(250, "kg"),
  47081. name: "Dressed",
  47082. image: {
  47083. source: "./media/characters/coriander/dressed.svg",
  47084. extra: 1757/1606,
  47085. bottom: 107/1864
  47086. }
  47087. },
  47088. },
  47089. [
  47090. {
  47091. name: "Normal",
  47092. height: math.unit(4, "meters"),
  47093. default: true
  47094. },
  47095. {
  47096. name: "XL",
  47097. height: math.unit(6, "meters")
  47098. },
  47099. {
  47100. name: "XXL",
  47101. height: math.unit(8, "meters")
  47102. },
  47103. ]
  47104. ))
  47105. characterMakers.push(() => makeCharacter(
  47106. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  47107. {
  47108. front: {
  47109. height: math.unit(6, "feet"),
  47110. name: "Front",
  47111. image: {
  47112. source: "./media/characters/syrinx/front.svg",
  47113. extra: 1557/1259,
  47114. bottom: 171/1728
  47115. }
  47116. },
  47117. },
  47118. [
  47119. {
  47120. name: "Normal",
  47121. height: math.unit(6 + 3/12, "feet"),
  47122. default: true
  47123. },
  47124. ]
  47125. ))
  47126. characterMakers.push(() => makeCharacter(
  47127. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  47128. {
  47129. front: {
  47130. height: math.unit(11 + 6/12, "feet"),
  47131. weight: math.unit(1.5, "tons"),
  47132. name: "Front",
  47133. image: {
  47134. source: "./media/characters/bor/front.svg",
  47135. extra: 1189/1109,
  47136. bottom: 170/1359
  47137. }
  47138. },
  47139. },
  47140. [
  47141. {
  47142. name: "Normal",
  47143. height: math.unit(11 + 6/12, "feet"),
  47144. default: true
  47145. },
  47146. {
  47147. name: "Macro",
  47148. height: math.unit(32 + 9/12, "feet")
  47149. },
  47150. ]
  47151. ))
  47152. characterMakers.push(() => makeCharacter(
  47153. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  47154. {
  47155. anthro: {
  47156. height: math.unit(9, "feet"),
  47157. weight: math.unit(2076, "lb"),
  47158. name: "Anthro",
  47159. image: {
  47160. source: "./media/characters/abacus/anthro.svg",
  47161. extra: 1540/1494,
  47162. bottom: 233/1773
  47163. }
  47164. },
  47165. pigeon: {
  47166. height: math.unit(1, "feet"),
  47167. name: "Pigeon",
  47168. image: {
  47169. source: "./media/characters/abacus/pigeon.svg",
  47170. extra: 528/525,
  47171. bottom: 46/574
  47172. }
  47173. },
  47174. },
  47175. [
  47176. {
  47177. name: "Normal",
  47178. height: math.unit(9, "feet"),
  47179. default: true
  47180. },
  47181. ]
  47182. ))
  47183. characterMakers.push(() => makeCharacter(
  47184. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  47185. {
  47186. side: {
  47187. height: math.unit(6, "feet"),
  47188. name: "Side",
  47189. image: {
  47190. source: "./media/characters/delkhan/side.svg",
  47191. extra: 1884/1786,
  47192. bottom: 308/2192
  47193. }
  47194. },
  47195. head: {
  47196. height: math.unit(3.38, "feet"),
  47197. name: "Head",
  47198. image: {
  47199. source: "./media/characters/delkhan/head.svg"
  47200. }
  47201. },
  47202. },
  47203. [
  47204. {
  47205. name: "Normal",
  47206. height: math.unit(72, "feet"),
  47207. default: true
  47208. },
  47209. {
  47210. name: "Giant",
  47211. height: math.unit(172, "feet")
  47212. },
  47213. ]
  47214. ))
  47215. characterMakers.push(() => makeCharacter(
  47216. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  47217. {
  47218. standing: {
  47219. height: math.unit(6, "feet"),
  47220. name: "Standing",
  47221. image: {
  47222. source: "./media/characters/euchidat/standing.svg",
  47223. extra: 1612/1553,
  47224. bottom: 116/1728
  47225. }
  47226. },
  47227. leaning: {
  47228. height: math.unit(6, "feet"),
  47229. name: "Leaning",
  47230. image: {
  47231. source: "./media/characters/euchidat/leaning.svg",
  47232. extra: 1719/1674,
  47233. bottom: 27/1746
  47234. }
  47235. },
  47236. },
  47237. [
  47238. {
  47239. name: "Normal",
  47240. height: math.unit(175, "feet"),
  47241. default: true
  47242. },
  47243. {
  47244. name: "Megamacro",
  47245. height: math.unit(190, "miles")
  47246. },
  47247. {
  47248. name: "Gigamacro",
  47249. height: math.unit(190000, "miles")
  47250. },
  47251. ]
  47252. ))
  47253. characterMakers.push(() => makeCharacter(
  47254. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  47255. {
  47256. front: {
  47257. height: math.unit(6, "feet"),
  47258. weight: math.unit(150, "lb"),
  47259. name: "Front",
  47260. image: {
  47261. source: "./media/characters/rebecca-stack/front.svg",
  47262. extra: 1256/1201,
  47263. bottom: 18/1274
  47264. }
  47265. },
  47266. },
  47267. [
  47268. {
  47269. name: "Normal",
  47270. height: math.unit(5 + 8/12, "feet"),
  47271. default: true
  47272. },
  47273. {
  47274. name: "Demolitionist",
  47275. height: math.unit(200, "feet")
  47276. },
  47277. {
  47278. name: "Out of Control",
  47279. height: math.unit(2, "miles")
  47280. },
  47281. {
  47282. name: "Giga",
  47283. height: math.unit(7200, "miles")
  47284. },
  47285. ]
  47286. ))
  47287. characterMakers.push(() => makeCharacter(
  47288. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  47289. {
  47290. front: {
  47291. height: math.unit(6, "feet"),
  47292. weight: math.unit(150, "lb"),
  47293. name: "Front",
  47294. image: {
  47295. source: "./media/characters/jenny-cartwright/front.svg",
  47296. extra: 1384/1376,
  47297. bottom: 58/1442
  47298. }
  47299. },
  47300. },
  47301. [
  47302. {
  47303. name: "Normal",
  47304. height: math.unit(6 + 7/12, "feet"),
  47305. default: true
  47306. },
  47307. {
  47308. name: "Librarian",
  47309. height: math.unit(55, "feet")
  47310. },
  47311. {
  47312. name: "Sightseer",
  47313. height: math.unit(50, "miles")
  47314. },
  47315. {
  47316. name: "Giga",
  47317. height: math.unit(30000, "miles")
  47318. },
  47319. ]
  47320. ))
  47321. characterMakers.push(() => makeCharacter(
  47322. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  47323. {
  47324. nude: {
  47325. height: math.unit(8, "feet"),
  47326. weight: math.unit(225, "lb"),
  47327. name: "Nude",
  47328. image: {
  47329. source: "./media/characters/marvy/nude.svg",
  47330. extra: 1900/1683,
  47331. bottom: 89/1989
  47332. }
  47333. },
  47334. dressed: {
  47335. height: math.unit(8, "feet"),
  47336. weight: math.unit(225, "lb"),
  47337. name: "Dressed",
  47338. image: {
  47339. source: "./media/characters/marvy/dressed.svg",
  47340. extra: 1900/1683,
  47341. bottom: 89/1989
  47342. }
  47343. },
  47344. head: {
  47345. height: math.unit(2.85, "feet"),
  47346. name: "Head",
  47347. image: {
  47348. source: "./media/characters/marvy/head.svg"
  47349. }
  47350. },
  47351. },
  47352. [
  47353. {
  47354. name: "Normal",
  47355. height: math.unit(8, "feet"),
  47356. default: true
  47357. },
  47358. ]
  47359. ))
  47360. characterMakers.push(() => makeCharacter(
  47361. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  47362. {
  47363. front: {
  47364. height: math.unit(8, "feet"),
  47365. weight: math.unit(250, "lb"),
  47366. name: "Front",
  47367. image: {
  47368. source: "./media/characters/leah/front.svg",
  47369. extra: 1257/1149,
  47370. bottom: 109/1366
  47371. }
  47372. },
  47373. },
  47374. [
  47375. {
  47376. name: "Normal",
  47377. height: math.unit(8, "feet"),
  47378. default: true
  47379. },
  47380. {
  47381. name: "Minimacro",
  47382. height: math.unit(40, "feet")
  47383. },
  47384. {
  47385. name: "Macro",
  47386. height: math.unit(124, "feet")
  47387. },
  47388. {
  47389. name: "Megamacro",
  47390. height: math.unit(850, "feet")
  47391. },
  47392. ]
  47393. ))
  47394. characterMakers.push(() => makeCharacter(
  47395. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  47396. {
  47397. side: {
  47398. height: math.unit(13 + 6/12, "feet"),
  47399. weight: math.unit(3200, "lb"),
  47400. name: "Side",
  47401. image: {
  47402. source: "./media/characters/alvir/side.svg",
  47403. extra: 896/589,
  47404. bottom: 26/922
  47405. }
  47406. },
  47407. },
  47408. [
  47409. {
  47410. name: "Normal",
  47411. height: math.unit(13 + 6/12, "feet"),
  47412. default: true
  47413. },
  47414. ]
  47415. ))
  47416. characterMakers.push(() => makeCharacter(
  47417. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  47418. {
  47419. front: {
  47420. height: math.unit(5 + 4/12, "feet"),
  47421. weight: math.unit(236, "lb"),
  47422. name: "Front",
  47423. image: {
  47424. source: "./media/characters/zaina-khalil/front.svg",
  47425. extra: 1533/1485,
  47426. bottom: 94/1627
  47427. }
  47428. },
  47429. side: {
  47430. height: math.unit(5 + 4/12, "feet"),
  47431. weight: math.unit(236, "lb"),
  47432. name: "Side",
  47433. image: {
  47434. source: "./media/characters/zaina-khalil/side.svg",
  47435. extra: 1537/1498,
  47436. bottom: 66/1603
  47437. }
  47438. },
  47439. back: {
  47440. height: math.unit(5 + 4/12, "feet"),
  47441. weight: math.unit(236, "lb"),
  47442. name: "Back",
  47443. image: {
  47444. source: "./media/characters/zaina-khalil/back.svg",
  47445. extra: 1546/1494,
  47446. bottom: 89/1635
  47447. }
  47448. },
  47449. },
  47450. [
  47451. {
  47452. name: "Normal",
  47453. height: math.unit(5 + 4/12, "feet"),
  47454. default: true
  47455. },
  47456. ]
  47457. ))
  47458. characterMakers.push(() => makeCharacter(
  47459. { name: "Terry", species: ["husky"], tags: ["taur"] },
  47460. {
  47461. side: {
  47462. height: math.unit(12, "feet"),
  47463. weight: math.unit(4000, "lb"),
  47464. name: "Side",
  47465. image: {
  47466. source: "./media/characters/terry/side.svg",
  47467. extra: 1518/1439,
  47468. bottom: 149/1667
  47469. }
  47470. },
  47471. },
  47472. [
  47473. {
  47474. name: "Normal",
  47475. height: math.unit(12, "feet"),
  47476. default: true
  47477. },
  47478. ]
  47479. ))
  47480. characterMakers.push(() => makeCharacter(
  47481. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  47482. {
  47483. front: {
  47484. height: math.unit(12, "feet"),
  47485. weight: math.unit(1500, "lb"),
  47486. name: "Front",
  47487. image: {
  47488. source: "./media/characters/kahea/front.svg",
  47489. extra: 1722/1617,
  47490. bottom: 179/1901
  47491. }
  47492. },
  47493. },
  47494. [
  47495. {
  47496. name: "Normal",
  47497. height: math.unit(12, "feet"),
  47498. default: true
  47499. },
  47500. ]
  47501. ))
  47502. characterMakers.push(() => makeCharacter(
  47503. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  47504. {
  47505. demonFront: {
  47506. height: math.unit(36, "feet"),
  47507. name: "Front",
  47508. image: {
  47509. source: "./media/characters/alex-xuria/demon-front.svg",
  47510. extra: 1705/1673,
  47511. bottom: 198/1903
  47512. },
  47513. form: "demon",
  47514. default: true
  47515. },
  47516. demonBack: {
  47517. height: math.unit(36, "feet"),
  47518. name: "Back",
  47519. image: {
  47520. source: "./media/characters/alex-xuria/demon-back.svg",
  47521. extra: 1725/1693,
  47522. bottom: 70/1795
  47523. },
  47524. form: "demon"
  47525. },
  47526. demonHead: {
  47527. height: math.unit(2.14, "meters"),
  47528. name: "Head",
  47529. image: {
  47530. source: "./media/characters/alex-xuria/demon-head.svg"
  47531. },
  47532. form: "demon"
  47533. },
  47534. demonHand: {
  47535. height: math.unit(1.61, "meters"),
  47536. name: "Hand",
  47537. image: {
  47538. source: "./media/characters/alex-xuria/demon-hand.svg"
  47539. },
  47540. form: "demon"
  47541. },
  47542. demonPaw: {
  47543. height: math.unit(1.35, "meters"),
  47544. name: "Paw",
  47545. image: {
  47546. source: "./media/characters/alex-xuria/demon-paw.svg"
  47547. },
  47548. form: "demon"
  47549. },
  47550. demonFoot: {
  47551. height: math.unit(2.2, "meters"),
  47552. name: "Foot",
  47553. image: {
  47554. source: "./media/characters/alex-xuria/demon-foot.svg"
  47555. },
  47556. form: "demon"
  47557. },
  47558. demonCock: {
  47559. height: math.unit(1.74, "meters"),
  47560. name: "Cock",
  47561. image: {
  47562. source: "./media/characters/alex-xuria/demon-cock.svg"
  47563. },
  47564. form: "demon"
  47565. },
  47566. demonTailClosed: {
  47567. height: math.unit(1.47, "meters"),
  47568. name: "Tail (Closed)",
  47569. image: {
  47570. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  47571. },
  47572. form: "demon"
  47573. },
  47574. demonTailOpen: {
  47575. height: math.unit(2.85, "meters"),
  47576. name: "Tail (Open)",
  47577. image: {
  47578. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  47579. },
  47580. form: "demon"
  47581. },
  47582. incubusFront: {
  47583. height: math.unit(12, "feet"),
  47584. name: "Front",
  47585. image: {
  47586. source: "./media/characters/alex-xuria/incubus-front.svg",
  47587. extra: 1754/1677,
  47588. bottom: 125/1879
  47589. },
  47590. form: "incubus",
  47591. default: true
  47592. },
  47593. incubusBack: {
  47594. height: math.unit(12, "feet"),
  47595. name: "Back",
  47596. image: {
  47597. source: "./media/characters/alex-xuria/incubus-back.svg",
  47598. extra: 1702/1647,
  47599. bottom: 30/1732
  47600. },
  47601. form: "incubus"
  47602. },
  47603. incubusHead: {
  47604. height: math.unit(3.45, "feet"),
  47605. name: "Head",
  47606. image: {
  47607. source: "./media/characters/alex-xuria/incubus-head.svg"
  47608. },
  47609. form: "incubus"
  47610. },
  47611. rabbitFront: {
  47612. height: math.unit(6, "feet"),
  47613. name: "Front",
  47614. image: {
  47615. source: "./media/characters/alex-xuria/rabbit-front.svg",
  47616. extra: 1369/1349,
  47617. bottom: 45/1414
  47618. },
  47619. form: "rabbit",
  47620. default: true
  47621. },
  47622. rabbitSide: {
  47623. height: math.unit(6, "feet"),
  47624. name: "Side",
  47625. image: {
  47626. source: "./media/characters/alex-xuria/rabbit-side.svg",
  47627. extra: 1370/1356,
  47628. bottom: 37/1407
  47629. },
  47630. form: "rabbit"
  47631. },
  47632. rabbitBack: {
  47633. height: math.unit(6, "feet"),
  47634. name: "Back",
  47635. image: {
  47636. source: "./media/characters/alex-xuria/rabbit-back.svg",
  47637. extra: 1375/1358,
  47638. bottom: 43/1418
  47639. },
  47640. form: "rabbit"
  47641. },
  47642. },
  47643. [
  47644. {
  47645. name: "Normal",
  47646. height: math.unit(6, "feet"),
  47647. default: true,
  47648. form: "rabbit"
  47649. },
  47650. {
  47651. name: "Incubus",
  47652. height: math.unit(12, "feet"),
  47653. default: true,
  47654. form: "incubus"
  47655. },
  47656. {
  47657. name: "Demon",
  47658. height: math.unit(36, "feet"),
  47659. default: true,
  47660. form: "demon"
  47661. }
  47662. ],
  47663. {
  47664. "demon": {
  47665. name: "Demon",
  47666. default: true
  47667. },
  47668. "incubus": {
  47669. name: "Incubus",
  47670. },
  47671. "rabbit": {
  47672. name: "Rabbit"
  47673. }
  47674. }
  47675. ))
  47676. characterMakers.push(() => makeCharacter(
  47677. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  47678. {
  47679. front: {
  47680. height: math.unit(7 + 5/12, "feet"),
  47681. weight: math.unit(510, "lb"),
  47682. name: "Front",
  47683. image: {
  47684. source: "./media/characters/syrup/front.svg",
  47685. extra: 932/916,
  47686. bottom: 26/958
  47687. }
  47688. },
  47689. },
  47690. [
  47691. {
  47692. name: "Normal",
  47693. height: math.unit(7 + 5/12, "feet"),
  47694. default: true
  47695. },
  47696. {
  47697. name: "Big",
  47698. height: math.unit(50, "feet")
  47699. },
  47700. {
  47701. name: "Macro",
  47702. height: math.unit(300, "feet")
  47703. },
  47704. {
  47705. name: "Megamacro",
  47706. height: math.unit(1, "mile")
  47707. },
  47708. ]
  47709. ))
  47710. characterMakers.push(() => makeCharacter(
  47711. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  47712. {
  47713. front: {
  47714. height: math.unit(6 + 9/12, "feet"),
  47715. name: "Front",
  47716. image: {
  47717. source: "./media/characters/zeimne/front.svg",
  47718. extra: 1969/1806,
  47719. bottom: 53/2022
  47720. }
  47721. },
  47722. },
  47723. [
  47724. {
  47725. name: "Normal",
  47726. height: math.unit(6 + 9/12, "feet"),
  47727. default: true
  47728. },
  47729. {
  47730. name: "Giant",
  47731. height: math.unit(550, "feet")
  47732. },
  47733. {
  47734. name: "Mega",
  47735. height: math.unit(3, "miles")
  47736. },
  47737. {
  47738. name: "Giga",
  47739. height: math.unit(250, "miles")
  47740. },
  47741. {
  47742. name: "Tera",
  47743. height: math.unit(1, "AU")
  47744. },
  47745. ]
  47746. ))
  47747. characterMakers.push(() => makeCharacter(
  47748. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  47749. {
  47750. front: {
  47751. height: math.unit(5 + 2/12, "feet"),
  47752. name: "Front",
  47753. image: {
  47754. source: "./media/characters/grar/front.svg",
  47755. extra: 1331/1119,
  47756. bottom: 60/1391
  47757. }
  47758. },
  47759. back: {
  47760. height: math.unit(5 + 2/12, "feet"),
  47761. name: "Back",
  47762. image: {
  47763. source: "./media/characters/grar/back.svg",
  47764. extra: 1385/1169,
  47765. bottom: 23/1408
  47766. }
  47767. },
  47768. },
  47769. [
  47770. {
  47771. name: "Normal",
  47772. height: math.unit(5 + 2/12, "feet"),
  47773. default: true
  47774. },
  47775. ]
  47776. ))
  47777. characterMakers.push(() => makeCharacter(
  47778. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  47779. {
  47780. front: {
  47781. height: math.unit(13 + 7/12, "feet"),
  47782. weight: math.unit(2200, "lb"),
  47783. name: "Front",
  47784. image: {
  47785. source: "./media/characters/endraya/front.svg",
  47786. extra: 1289/1215,
  47787. bottom: 50/1339
  47788. }
  47789. },
  47790. nude: {
  47791. height: math.unit(13 + 7/12, "feet"),
  47792. weight: math.unit(2200, "lb"),
  47793. name: "Nude",
  47794. image: {
  47795. source: "./media/characters/endraya/nude.svg",
  47796. extra: 1247/1171,
  47797. bottom: 40/1287
  47798. }
  47799. },
  47800. head: {
  47801. height: math.unit(2.6, "feet"),
  47802. name: "Head",
  47803. image: {
  47804. source: "./media/characters/endraya/head.svg"
  47805. }
  47806. },
  47807. slit: {
  47808. height: math.unit(3.4, "feet"),
  47809. name: "Slit",
  47810. image: {
  47811. source: "./media/characters/endraya/slit.svg"
  47812. }
  47813. },
  47814. },
  47815. [
  47816. {
  47817. name: "Normal",
  47818. height: math.unit(13 + 7/12, "feet"),
  47819. default: true
  47820. },
  47821. {
  47822. name: "Macro",
  47823. height: math.unit(200, "feet")
  47824. },
  47825. ]
  47826. ))
  47827. characterMakers.push(() => makeCharacter(
  47828. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  47829. {
  47830. front: {
  47831. height: math.unit(1.81, "meters"),
  47832. weight: math.unit(69, "kg"),
  47833. name: "Front",
  47834. image: {
  47835. source: "./media/characters/rodryana/front.svg",
  47836. extra: 2002/1921,
  47837. bottom: 53/2055
  47838. }
  47839. },
  47840. back: {
  47841. height: math.unit(1.81, "meters"),
  47842. weight: math.unit(69, "kg"),
  47843. name: "Back",
  47844. image: {
  47845. source: "./media/characters/rodryana/back.svg",
  47846. extra: 1993/1926,
  47847. bottom: 48/2041
  47848. }
  47849. },
  47850. maw: {
  47851. height: math.unit(0.19769417475, "meters"),
  47852. name: "Maw",
  47853. image: {
  47854. source: "./media/characters/rodryana/maw.svg"
  47855. }
  47856. },
  47857. slit: {
  47858. height: math.unit(0.31631067961, "meters"),
  47859. name: "Slit",
  47860. image: {
  47861. source: "./media/characters/rodryana/slit.svg"
  47862. }
  47863. },
  47864. },
  47865. [
  47866. {
  47867. name: "Normal",
  47868. height: math.unit(1.81, "meters")
  47869. },
  47870. {
  47871. name: "Mini Macro",
  47872. height: math.unit(181, "meters")
  47873. },
  47874. {
  47875. name: "Macro",
  47876. height: math.unit(452, "meters"),
  47877. default: true
  47878. },
  47879. {
  47880. name: "Mega Macro",
  47881. height: math.unit(1.375, "km")
  47882. },
  47883. {
  47884. name: "Giga Macro",
  47885. height: math.unit(13.575, "km")
  47886. },
  47887. ]
  47888. ))
  47889. characterMakers.push(() => makeCharacter(
  47890. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  47891. {
  47892. front: {
  47893. height: math.unit(6, "feet"),
  47894. weight: math.unit(1000, "lb"),
  47895. name: "Front",
  47896. image: {
  47897. source: "./media/characters/asaya/front.svg",
  47898. extra: 1460/1200,
  47899. bottom: 71/1531
  47900. }
  47901. },
  47902. },
  47903. [
  47904. {
  47905. name: "Normal",
  47906. height: math.unit(8, "km"),
  47907. default: true
  47908. },
  47909. ]
  47910. ))
  47911. characterMakers.push(() => makeCharacter(
  47912. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  47913. {
  47914. front: {
  47915. height: math.unit(3.5, "meters"),
  47916. name: "Front",
  47917. image: {
  47918. source: "./media/characters/sarzu-and-israz/front.svg",
  47919. extra: 1570/1558,
  47920. bottom: 150/1720
  47921. },
  47922. },
  47923. back: {
  47924. height: math.unit(3.5, "meters"),
  47925. name: "Back",
  47926. image: {
  47927. source: "./media/characters/sarzu-and-israz/back.svg",
  47928. extra: 1523/1509,
  47929. bottom: 132/1655
  47930. },
  47931. },
  47932. frontFemale: {
  47933. height: math.unit(3.5, "meters"),
  47934. name: "Front (Female)",
  47935. image: {
  47936. source: "./media/characters/sarzu-and-israz/front-female.svg",
  47937. extra: 1570/1558,
  47938. bottom: 150/1720
  47939. },
  47940. },
  47941. frontHerm: {
  47942. height: math.unit(3.5, "meters"),
  47943. name: "Front (Herm)",
  47944. image: {
  47945. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  47946. extra: 1570/1558,
  47947. bottom: 150/1720
  47948. },
  47949. },
  47950. },
  47951. [
  47952. {
  47953. name: "Normal",
  47954. height: math.unit(3.5, "meters"),
  47955. default: true,
  47956. },
  47957. {
  47958. name: "Macro",
  47959. height: math.unit(65.5, "meters"),
  47960. },
  47961. ],
  47962. ))
  47963. characterMakers.push(() => makeCharacter(
  47964. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  47965. {
  47966. front: {
  47967. height: math.unit(6, "feet"),
  47968. weight: math.unit(250, "lb"),
  47969. name: "Front",
  47970. image: {
  47971. source: "./media/characters/zenimma/front.svg",
  47972. extra: 1346/1320,
  47973. bottom: 58/1404
  47974. }
  47975. },
  47976. back: {
  47977. height: math.unit(6, "feet"),
  47978. weight: math.unit(250, "lb"),
  47979. name: "Back",
  47980. image: {
  47981. source: "./media/characters/zenimma/back.svg",
  47982. extra: 1324/1308,
  47983. bottom: 44/1368
  47984. }
  47985. },
  47986. dick: {
  47987. height: math.unit(1.44, "feet"),
  47988. name: "Dick",
  47989. image: {
  47990. source: "./media/characters/zenimma/dick.svg"
  47991. }
  47992. },
  47993. },
  47994. [
  47995. {
  47996. name: "Canon Height",
  47997. height: math.unit(66, "miles"),
  47998. default: true
  47999. },
  48000. ]
  48001. ))
  48002. characterMakers.push(() => makeCharacter(
  48003. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  48004. {
  48005. nude: {
  48006. height: math.unit(6, "feet"),
  48007. weight: math.unit(150, "lb"),
  48008. name: "Nude",
  48009. image: {
  48010. source: "./media/characters/shavon/nude.svg",
  48011. extra: 1242/1096,
  48012. bottom: 98/1340
  48013. }
  48014. },
  48015. dressed: {
  48016. height: math.unit(6, "feet"),
  48017. weight: math.unit(150, "lb"),
  48018. name: "Dressed",
  48019. image: {
  48020. source: "./media/characters/shavon/dressed.svg",
  48021. extra: 1242/1096,
  48022. bottom: 98/1340
  48023. }
  48024. },
  48025. },
  48026. [
  48027. {
  48028. name: "Macro",
  48029. height: math.unit(255, "feet"),
  48030. default: true
  48031. },
  48032. ]
  48033. ))
  48034. characterMakers.push(() => makeCharacter(
  48035. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  48036. {
  48037. front: {
  48038. height: math.unit(6, "feet"),
  48039. name: "Front",
  48040. image: {
  48041. source: "./media/characters/steph/front.svg",
  48042. extra: 1430/1330,
  48043. bottom: 54/1484
  48044. }
  48045. },
  48046. },
  48047. [
  48048. {
  48049. name: "Normal",
  48050. height: math.unit(6, "feet"),
  48051. default: true
  48052. },
  48053. ]
  48054. ))
  48055. characterMakers.push(() => makeCharacter(
  48056. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  48057. {
  48058. front: {
  48059. height: math.unit(9, "feet"),
  48060. weight: math.unit(400, "lb"),
  48061. name: "Front",
  48062. image: {
  48063. source: "./media/characters/kil'aman/front.svg",
  48064. extra: 1210/1159,
  48065. bottom: 109/1319
  48066. }
  48067. },
  48068. head: {
  48069. height: math.unit(2.14, "feet"),
  48070. name: "Head",
  48071. image: {
  48072. source: "./media/characters/kil'aman/head.svg"
  48073. }
  48074. },
  48075. maw: {
  48076. height: math.unit(1.21, "feet"),
  48077. name: "Maw",
  48078. image: {
  48079. source: "./media/characters/kil'aman/maw.svg"
  48080. }
  48081. },
  48082. foot: {
  48083. height: math.unit(1.7, "feet"),
  48084. name: "Foot",
  48085. image: {
  48086. source: "./media/characters/kil'aman/foot.svg"
  48087. }
  48088. },
  48089. dick: {
  48090. height: math.unit(2.1, "feet"),
  48091. name: "Dick",
  48092. image: {
  48093. source: "./media/characters/kil'aman/dick.svg"
  48094. }
  48095. },
  48096. },
  48097. [
  48098. {
  48099. name: "Normal",
  48100. height: math.unit(9, "feet")
  48101. },
  48102. {
  48103. name: "Canon Height",
  48104. height: math.unit(10, "miles"),
  48105. default: true
  48106. },
  48107. {
  48108. name: "Maximum",
  48109. height: math.unit(6e9, "miles")
  48110. },
  48111. ]
  48112. ))
  48113. characterMakers.push(() => makeCharacter(
  48114. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  48115. {
  48116. front: {
  48117. height: math.unit(90, "feet"),
  48118. weight: math.unit(675000, "lb"),
  48119. name: "Front",
  48120. image: {
  48121. source: "./media/characters/qadan/front.svg",
  48122. extra: 1012/1004,
  48123. bottom: 78/1090
  48124. }
  48125. },
  48126. back: {
  48127. height: math.unit(90, "feet"),
  48128. weight: math.unit(675000, "lb"),
  48129. name: "Back",
  48130. image: {
  48131. source: "./media/characters/qadan/back.svg",
  48132. extra: 1042/1031,
  48133. bottom: 55/1097
  48134. }
  48135. },
  48136. armored: {
  48137. height: math.unit(90, "feet"),
  48138. weight: math.unit(675000, "lb"),
  48139. name: "Armored",
  48140. image: {
  48141. source: "./media/characters/qadan/armored.svg",
  48142. extra: 1047/1037,
  48143. bottom: 48/1095
  48144. }
  48145. },
  48146. },
  48147. [
  48148. {
  48149. name: "Normal",
  48150. height: math.unit(90, "feet"),
  48151. default: true
  48152. },
  48153. ]
  48154. ))
  48155. characterMakers.push(() => makeCharacter(
  48156. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  48157. {
  48158. front: {
  48159. height: math.unit(6, "feet"),
  48160. weight: math.unit(225, "lb"),
  48161. name: "Front",
  48162. image: {
  48163. source: "./media/characters/brooke/front.svg",
  48164. extra: 1050/1010,
  48165. bottom: 66/1116
  48166. }
  48167. },
  48168. back: {
  48169. height: math.unit(6, "feet"),
  48170. weight: math.unit(225, "lb"),
  48171. name: "Back",
  48172. image: {
  48173. source: "./media/characters/brooke/back.svg",
  48174. extra: 1053/1013,
  48175. bottom: 41/1094
  48176. }
  48177. },
  48178. dressed: {
  48179. height: math.unit(6, "feet"),
  48180. weight: math.unit(225, "lb"),
  48181. name: "Dressed",
  48182. image: {
  48183. source: "./media/characters/brooke/dressed.svg",
  48184. extra: 1050/1010,
  48185. bottom: 66/1116
  48186. }
  48187. },
  48188. },
  48189. [
  48190. {
  48191. name: "Canon Height",
  48192. height: math.unit(500, "miles"),
  48193. default: true
  48194. },
  48195. ]
  48196. ))
  48197. characterMakers.push(() => makeCharacter(
  48198. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  48199. {
  48200. front: {
  48201. height: math.unit(6 + 2/12, "feet"),
  48202. weight: math.unit(210, "lb"),
  48203. name: "Front",
  48204. image: {
  48205. source: "./media/characters/wubs/front.svg",
  48206. extra: 1345/1325,
  48207. bottom: 70/1415
  48208. }
  48209. },
  48210. back: {
  48211. height: math.unit(6 + 2/12, "feet"),
  48212. weight: math.unit(210, "lb"),
  48213. name: "Back",
  48214. image: {
  48215. source: "./media/characters/wubs/back.svg",
  48216. extra: 1296/1275,
  48217. bottom: 58/1354
  48218. }
  48219. },
  48220. },
  48221. [
  48222. {
  48223. name: "Normal",
  48224. height: math.unit(6 + 2/12, "feet"),
  48225. default: true
  48226. },
  48227. {
  48228. name: "Macro",
  48229. height: math.unit(1000, "feet")
  48230. },
  48231. {
  48232. name: "Megamacro",
  48233. height: math.unit(1, "mile")
  48234. },
  48235. ]
  48236. ))
  48237. characterMakers.push(() => makeCharacter(
  48238. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  48239. {
  48240. front: {
  48241. height: math.unit(4, "feet"),
  48242. weight: math.unit(120, "lb"),
  48243. name: "Front",
  48244. image: {
  48245. source: "./media/characters/blue/front.svg",
  48246. extra: 1636/1525,
  48247. bottom: 43/1679
  48248. }
  48249. },
  48250. back: {
  48251. height: math.unit(4, "feet"),
  48252. weight: math.unit(120, "lb"),
  48253. name: "Back",
  48254. image: {
  48255. source: "./media/characters/blue/back.svg",
  48256. extra: 1660/1560,
  48257. bottom: 57/1717
  48258. }
  48259. },
  48260. paws: {
  48261. height: math.unit(0.826, "feet"),
  48262. name: "Paws",
  48263. image: {
  48264. source: "./media/characters/blue/paws.svg"
  48265. }
  48266. },
  48267. },
  48268. [
  48269. {
  48270. name: "Micro",
  48271. height: math.unit(3, "inches")
  48272. },
  48273. {
  48274. name: "Normal",
  48275. height: math.unit(4, "feet"),
  48276. default: true
  48277. },
  48278. {
  48279. name: "Femenine Form",
  48280. height: math.unit(14, "feet")
  48281. },
  48282. {
  48283. name: "Werebat Form",
  48284. height: math.unit(18, "feet")
  48285. },
  48286. ]
  48287. ))
  48288. characterMakers.push(() => makeCharacter(
  48289. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  48290. {
  48291. female: {
  48292. height: math.unit(7 + 4/12, "feet"),
  48293. weight: math.unit(243, "lb"),
  48294. name: "Female",
  48295. image: {
  48296. source: "./media/characters/kaya/female.svg",
  48297. extra: 975/898,
  48298. bottom: 34/1009
  48299. }
  48300. },
  48301. herm: {
  48302. height: math.unit(7 + 4/12, "feet"),
  48303. weight: math.unit(243, "lb"),
  48304. name: "Herm",
  48305. image: {
  48306. source: "./media/characters/kaya/herm.svg",
  48307. extra: 975/898,
  48308. bottom: 34/1009
  48309. }
  48310. },
  48311. },
  48312. [
  48313. {
  48314. name: "Normal",
  48315. height: math.unit(7 + 4/12, "feet"),
  48316. default: true
  48317. },
  48318. ]
  48319. ))
  48320. characterMakers.push(() => makeCharacter(
  48321. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  48322. {
  48323. female: {
  48324. height: math.unit(9 + 4/12, "feet"),
  48325. weight: math.unit(398, "lb"),
  48326. name: "Female",
  48327. image: {
  48328. source: "./media/characters/kassandra/female.svg",
  48329. extra: 908/839,
  48330. bottom: 61/969
  48331. }
  48332. },
  48333. intersex: {
  48334. height: math.unit(9 + 4/12, "feet"),
  48335. weight: math.unit(398, "lb"),
  48336. name: "Intersex",
  48337. image: {
  48338. source: "./media/characters/kassandra/intersex.svg",
  48339. extra: 908/839,
  48340. bottom: 61/969
  48341. }
  48342. },
  48343. },
  48344. [
  48345. {
  48346. name: "Normal",
  48347. height: math.unit(9 + 4/12, "feet"),
  48348. default: true
  48349. },
  48350. ]
  48351. ))
  48352. characterMakers.push(() => makeCharacter(
  48353. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  48354. {
  48355. front: {
  48356. height: math.unit(3, "meters"),
  48357. name: "Front",
  48358. image: {
  48359. source: "./media/characters/amy/front.svg",
  48360. extra: 1380/1343,
  48361. bottom: 70/1450
  48362. }
  48363. },
  48364. back: {
  48365. height: math.unit(3, "meters"),
  48366. name: "Back",
  48367. image: {
  48368. source: "./media/characters/amy/back.svg",
  48369. extra: 1380/1347,
  48370. bottom: 66/1446
  48371. }
  48372. },
  48373. },
  48374. [
  48375. {
  48376. name: "Normal",
  48377. height: math.unit(3, "meters"),
  48378. default: true
  48379. },
  48380. ]
  48381. ))
  48382. characterMakers.push(() => makeCharacter(
  48383. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  48384. {
  48385. side: {
  48386. height: math.unit(47, "cm"),
  48387. weight: math.unit(10.8, "kg"),
  48388. name: "Side",
  48389. image: {
  48390. source: "./media/characters/alphaschakal/side.svg",
  48391. extra: 1058/568,
  48392. bottom: 62/1120
  48393. }
  48394. },
  48395. back: {
  48396. height: math.unit(78, "cm"),
  48397. weight: math.unit(10.8, "kg"),
  48398. name: "Back",
  48399. image: {
  48400. source: "./media/characters/alphaschakal/back.svg",
  48401. extra: 1102/942,
  48402. bottom: 185/1287
  48403. }
  48404. },
  48405. head: {
  48406. height: math.unit(28, "cm"),
  48407. name: "Head",
  48408. image: {
  48409. source: "./media/characters/alphaschakal/head.svg",
  48410. extra: 696/508,
  48411. bottom: 0/696
  48412. }
  48413. },
  48414. paw: {
  48415. height: math.unit(16, "cm"),
  48416. name: "Paw",
  48417. image: {
  48418. source: "./media/characters/alphaschakal/paw.svg"
  48419. }
  48420. },
  48421. },
  48422. [
  48423. {
  48424. name: "Normal",
  48425. height: math.unit(47, "cm"),
  48426. default: true
  48427. },
  48428. {
  48429. name: "Macro",
  48430. height: math.unit(340, "cm")
  48431. },
  48432. ]
  48433. ))
  48434. characterMakers.push(() => makeCharacter(
  48435. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  48436. {
  48437. front: {
  48438. height: math.unit(36, "earths"),
  48439. name: "Front",
  48440. image: {
  48441. source: "./media/characters/ecobyss/front.svg",
  48442. extra: 1282/1215,
  48443. bottom: 11/1293
  48444. }
  48445. },
  48446. back: {
  48447. height: math.unit(36, "earths"),
  48448. name: "Back",
  48449. image: {
  48450. source: "./media/characters/ecobyss/back.svg",
  48451. extra: 1291/1222,
  48452. bottom: 8/1299
  48453. }
  48454. },
  48455. },
  48456. [
  48457. {
  48458. name: "Normal",
  48459. height: math.unit(36, "earths"),
  48460. default: true
  48461. },
  48462. ]
  48463. ))
  48464. characterMakers.push(() => makeCharacter(
  48465. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  48466. {
  48467. front: {
  48468. height: math.unit(12, "feet"),
  48469. name: "Front",
  48470. image: {
  48471. source: "./media/characters/vasuk/front.svg",
  48472. extra: 1326/1207,
  48473. bottom: 64/1390
  48474. }
  48475. },
  48476. },
  48477. [
  48478. {
  48479. name: "Normal",
  48480. height: math.unit(12, "feet"),
  48481. default: true
  48482. },
  48483. ]
  48484. ))
  48485. characterMakers.push(() => makeCharacter(
  48486. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  48487. {
  48488. side: {
  48489. height: math.unit(100, "feet"),
  48490. name: "Side",
  48491. image: {
  48492. source: "./media/characters/linneaus/side.svg",
  48493. extra: 987/807,
  48494. bottom: 47/1034
  48495. }
  48496. },
  48497. },
  48498. [
  48499. {
  48500. name: "Macro",
  48501. height: math.unit(100, "feet"),
  48502. default: true
  48503. },
  48504. ]
  48505. ))
  48506. characterMakers.push(() => makeCharacter(
  48507. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  48508. {
  48509. front: {
  48510. height: math.unit(8, "feet"),
  48511. weight: math.unit(1200, "lb"),
  48512. name: "Front",
  48513. image: {
  48514. source: "./media/characters/nyterious-daligdig/front.svg",
  48515. extra: 1284/1094,
  48516. bottom: 84/1368
  48517. }
  48518. },
  48519. back: {
  48520. height: math.unit(8, "feet"),
  48521. weight: math.unit(1200, "lb"),
  48522. name: "Back",
  48523. image: {
  48524. source: "./media/characters/nyterious-daligdig/back.svg",
  48525. extra: 1301/1121,
  48526. bottom: 129/1430
  48527. }
  48528. },
  48529. mouth: {
  48530. height: math.unit(1.464, "feet"),
  48531. name: "Mouth",
  48532. image: {
  48533. source: "./media/characters/nyterious-daligdig/mouth.svg"
  48534. }
  48535. },
  48536. },
  48537. [
  48538. {
  48539. name: "Small",
  48540. height: math.unit(8, "feet"),
  48541. default: true
  48542. },
  48543. {
  48544. name: "Normal",
  48545. height: math.unit(15, "feet")
  48546. },
  48547. {
  48548. name: "Macro",
  48549. height: math.unit(90, "feet")
  48550. },
  48551. ]
  48552. ))
  48553. characterMakers.push(() => makeCharacter(
  48554. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  48555. {
  48556. front: {
  48557. height: math.unit(7 + 4/12, "feet"),
  48558. weight: math.unit(252, "lb"),
  48559. name: "Front",
  48560. image: {
  48561. source: "./media/characters/bandel/front.svg",
  48562. extra: 1946/1775,
  48563. bottom: 26/1972
  48564. }
  48565. },
  48566. back: {
  48567. height: math.unit(7 + 4/12, "feet"),
  48568. weight: math.unit(252, "lb"),
  48569. name: "Back",
  48570. image: {
  48571. source: "./media/characters/bandel/back.svg",
  48572. extra: 1940/1770,
  48573. bottom: 25/1965
  48574. }
  48575. },
  48576. maw: {
  48577. height: math.unit(2.15, "feet"),
  48578. name: "Maw",
  48579. image: {
  48580. source: "./media/characters/bandel/maw.svg"
  48581. }
  48582. },
  48583. stomach: {
  48584. height: math.unit(1.95, "feet"),
  48585. name: "Stomach",
  48586. image: {
  48587. source: "./media/characters/bandel/stomach.svg"
  48588. }
  48589. },
  48590. },
  48591. [
  48592. {
  48593. name: "Normal",
  48594. height: math.unit(7 + 4/12, "feet"),
  48595. default: true
  48596. },
  48597. ]
  48598. ))
  48599. characterMakers.push(() => makeCharacter(
  48600. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  48601. {
  48602. front: {
  48603. height: math.unit(10 + 5/12, "feet"),
  48604. weight: math.unit(773.5, "kg"),
  48605. name: "Front",
  48606. image: {
  48607. source: "./media/characters/zed/front.svg",
  48608. extra: 987/941,
  48609. bottom: 52/1039
  48610. }
  48611. },
  48612. },
  48613. [
  48614. {
  48615. name: "Short",
  48616. height: math.unit(5 + 4/12, "feet")
  48617. },
  48618. {
  48619. name: "Average",
  48620. height: math.unit(10 + 5/12, "feet"),
  48621. default: true
  48622. },
  48623. {
  48624. name: "Mini-Macro",
  48625. height: math.unit(24 + 9/12, "feet")
  48626. },
  48627. {
  48628. name: "Macro",
  48629. height: math.unit(249, "feet")
  48630. },
  48631. {
  48632. name: "Mega-Macro",
  48633. height: math.unit(12490, "feet")
  48634. },
  48635. {
  48636. name: "Giga-Macro",
  48637. height: math.unit(24.9, "miles")
  48638. },
  48639. {
  48640. name: "Tera-Macro",
  48641. height: math.unit(24900, "miles")
  48642. },
  48643. {
  48644. name: "Cosmic Scale",
  48645. height: math.unit(38.9, "lightyears")
  48646. },
  48647. {
  48648. name: "Universal Scale",
  48649. height: math.unit(138e12, "lightyears")
  48650. },
  48651. ]
  48652. ))
  48653. characterMakers.push(() => makeCharacter(
  48654. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  48655. {
  48656. front: {
  48657. height: math.unit(1561, "inches"),
  48658. name: "Front",
  48659. image: {
  48660. source: "./media/characters/ivan/front.svg",
  48661. extra: 1126/1071,
  48662. bottom: 26/1152
  48663. }
  48664. },
  48665. back: {
  48666. height: math.unit(1561, "inches"),
  48667. name: "Back",
  48668. image: {
  48669. source: "./media/characters/ivan/back.svg",
  48670. extra: 1134/1079,
  48671. bottom: 30/1164
  48672. }
  48673. },
  48674. },
  48675. [
  48676. {
  48677. name: "Normal",
  48678. height: math.unit(1561, "inches"),
  48679. default: true
  48680. },
  48681. ]
  48682. ))
  48683. characterMakers.push(() => makeCharacter(
  48684. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  48685. {
  48686. front: {
  48687. height: math.unit(5 + 7/12, "feet"),
  48688. weight: math.unit(150, "lb"),
  48689. name: "Front",
  48690. image: {
  48691. source: "./media/characters/robin-arctic-hare/front.svg",
  48692. extra: 1148/974,
  48693. bottom: 20/1168
  48694. }
  48695. },
  48696. },
  48697. [
  48698. {
  48699. name: "Normal",
  48700. height: math.unit(5 + 7/12, "feet"),
  48701. default: true
  48702. },
  48703. ]
  48704. ))
  48705. characterMakers.push(() => makeCharacter(
  48706. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  48707. {
  48708. side: {
  48709. height: math.unit(5, "feet"),
  48710. name: "Side",
  48711. image: {
  48712. source: "./media/characters/birch/side.svg",
  48713. extra: 985/796,
  48714. bottom: 111/1096
  48715. }
  48716. },
  48717. },
  48718. [
  48719. {
  48720. name: "Normal",
  48721. height: math.unit(5, "feet"),
  48722. default: true
  48723. },
  48724. ]
  48725. ))
  48726. characterMakers.push(() => makeCharacter(
  48727. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  48728. {
  48729. front: {
  48730. height: math.unit(4, "feet"),
  48731. name: "Front",
  48732. image: {
  48733. source: "./media/characters/rasp/front.svg",
  48734. extra: 561/478,
  48735. bottom: 74/635
  48736. }
  48737. },
  48738. },
  48739. [
  48740. {
  48741. name: "Normal",
  48742. height: math.unit(4, "feet"),
  48743. default: true
  48744. },
  48745. ]
  48746. ))
  48747. characterMakers.push(() => makeCharacter(
  48748. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  48749. {
  48750. front: {
  48751. height: math.unit(4 + 6/12, "feet"),
  48752. name: "Front",
  48753. image: {
  48754. source: "./media/characters/agatha/front.svg",
  48755. extra: 947/933,
  48756. bottom: 42/989
  48757. }
  48758. },
  48759. back: {
  48760. height: math.unit(4 + 6/12, "feet"),
  48761. name: "Back",
  48762. image: {
  48763. source: "./media/characters/agatha/back.svg",
  48764. extra: 935/922,
  48765. bottom: 48/983
  48766. }
  48767. },
  48768. },
  48769. [
  48770. {
  48771. name: "Normal",
  48772. height: math.unit(4 + 6 /12, "feet"),
  48773. default: true
  48774. },
  48775. {
  48776. name: "Max Size",
  48777. height: math.unit(500, "feet")
  48778. },
  48779. ]
  48780. ))
  48781. characterMakers.push(() => makeCharacter(
  48782. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  48783. {
  48784. side: {
  48785. height: math.unit(30, "feet"),
  48786. name: "Side",
  48787. image: {
  48788. source: "./media/characters/roggy/side.svg",
  48789. extra: 909/643,
  48790. bottom: 63/972
  48791. }
  48792. },
  48793. lounging: {
  48794. height: math.unit(20, "feet"),
  48795. name: "Lounging",
  48796. image: {
  48797. source: "./media/characters/roggy/lounging.svg",
  48798. extra: 643/479,
  48799. bottom: 145/788
  48800. }
  48801. },
  48802. handpaw: {
  48803. height: math.unit(13.1, "feet"),
  48804. name: "Handpaw",
  48805. image: {
  48806. source: "./media/characters/roggy/handpaw.svg"
  48807. }
  48808. },
  48809. footpaw: {
  48810. height: math.unit(15.8, "feet"),
  48811. name: "Footpaw",
  48812. image: {
  48813. source: "./media/characters/roggy/footpaw.svg"
  48814. }
  48815. },
  48816. },
  48817. [
  48818. {
  48819. name: "Menacing",
  48820. height: math.unit(30, "feet"),
  48821. default: true
  48822. },
  48823. ]
  48824. ))
  48825. characterMakers.push(() => makeCharacter(
  48826. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  48827. {
  48828. front: {
  48829. height: math.unit(5 + 7/12, "feet"),
  48830. weight: math.unit(135, "lb"),
  48831. name: "Front",
  48832. image: {
  48833. source: "./media/characters/naomi/front.svg",
  48834. extra: 1209/1154,
  48835. bottom: 129/1338
  48836. }
  48837. },
  48838. back: {
  48839. height: math.unit(5 + 7/12, "feet"),
  48840. weight: math.unit(135, "lb"),
  48841. name: "Back",
  48842. image: {
  48843. source: "./media/characters/naomi/back.svg",
  48844. extra: 1252/1190,
  48845. bottom: 23/1275
  48846. }
  48847. },
  48848. },
  48849. [
  48850. {
  48851. name: "Normal",
  48852. height: math.unit(5 + 7 /12, "feet"),
  48853. default: true
  48854. },
  48855. ]
  48856. ))
  48857. characterMakers.push(() => makeCharacter(
  48858. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  48859. {
  48860. side: {
  48861. height: math.unit(35, "meters"),
  48862. name: "Side",
  48863. image: {
  48864. source: "./media/characters/kimpi/side.svg",
  48865. extra: 419/382,
  48866. bottom: 63/482
  48867. }
  48868. },
  48869. hand: {
  48870. height: math.unit(8.96, "meters"),
  48871. name: "Hand",
  48872. image: {
  48873. source: "./media/characters/kimpi/hand.svg"
  48874. }
  48875. },
  48876. },
  48877. [
  48878. {
  48879. name: "Normal",
  48880. height: math.unit(35, "meters"),
  48881. default: true
  48882. },
  48883. ]
  48884. ))
  48885. characterMakers.push(() => makeCharacter(
  48886. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  48887. {
  48888. front: {
  48889. height: math.unit(4 + 4/12, "feet"),
  48890. name: "Front",
  48891. image: {
  48892. source: "./media/characters/pepper-purrloin/front.svg",
  48893. extra: 1141/1024,
  48894. bottom: 21/1162
  48895. }
  48896. },
  48897. },
  48898. [
  48899. {
  48900. name: "Normal",
  48901. height: math.unit(4 + 4/12, "feet"),
  48902. default: true
  48903. },
  48904. ]
  48905. ))
  48906. characterMakers.push(() => makeCharacter(
  48907. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  48908. {
  48909. front: {
  48910. height: math.unit(6 + 2/12, "feet"),
  48911. name: "Front",
  48912. image: {
  48913. source: "./media/characters/raphael/front.svg",
  48914. extra: 1101/962,
  48915. bottom: 59/1160
  48916. }
  48917. },
  48918. },
  48919. [
  48920. {
  48921. name: "Normal",
  48922. height: math.unit(6 + 2/12, "feet"),
  48923. default: true
  48924. },
  48925. ]
  48926. ))
  48927. characterMakers.push(() => makeCharacter(
  48928. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  48929. {
  48930. front: {
  48931. height: math.unit(6, "feet"),
  48932. weight: math.unit(150, "lb"),
  48933. name: "Front",
  48934. image: {
  48935. source: "./media/characters/victor-williams/front.svg",
  48936. extra: 1894/1825,
  48937. bottom: 67/1961
  48938. }
  48939. },
  48940. },
  48941. [
  48942. {
  48943. name: "Normal",
  48944. height: math.unit(6, "feet"),
  48945. default: true
  48946. },
  48947. ]
  48948. ))
  48949. characterMakers.push(() => makeCharacter(
  48950. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  48951. {
  48952. front: {
  48953. height: math.unit(5 + 8/12, "feet"),
  48954. weight: math.unit(150, "lb"),
  48955. name: "Front",
  48956. image: {
  48957. source: "./media/characters/rachel/front.svg",
  48958. extra: 1902/1787,
  48959. bottom: 46/1948
  48960. }
  48961. },
  48962. },
  48963. [
  48964. {
  48965. name: "Base Height",
  48966. height: math.unit(5 + 8/12, "feet"),
  48967. default: true
  48968. },
  48969. {
  48970. name: "Macro",
  48971. height: math.unit(200, "feet")
  48972. },
  48973. {
  48974. name: "Mega Macro",
  48975. height: math.unit(1, "mile")
  48976. },
  48977. {
  48978. name: "Giga Macro",
  48979. height: math.unit(1500, "miles")
  48980. },
  48981. {
  48982. name: "Tera Macro",
  48983. height: math.unit(8000, "miles")
  48984. },
  48985. {
  48986. name: "Tera Macro+",
  48987. height: math.unit(2e5, "miles")
  48988. },
  48989. ]
  48990. ))
  48991. characterMakers.push(() => makeCharacter(
  48992. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  48993. {
  48994. front: {
  48995. height: math.unit(6.5, "feet"),
  48996. name: "Front",
  48997. image: {
  48998. source: "./media/characters/svetlana-rozovskaya/front.svg",
  48999. extra: 860/819,
  49000. bottom: 307/1167
  49001. }
  49002. },
  49003. back: {
  49004. height: math.unit(6.5, "feet"),
  49005. name: "Back",
  49006. image: {
  49007. source: "./media/characters/svetlana-rozovskaya/back.svg",
  49008. extra: 880/837,
  49009. bottom: 395/1275
  49010. }
  49011. },
  49012. sleeping: {
  49013. height: math.unit(2.79, "feet"),
  49014. name: "Sleeping",
  49015. image: {
  49016. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  49017. extra: 465/383,
  49018. bottom: 263/728
  49019. }
  49020. },
  49021. maw: {
  49022. height: math.unit(2.52, "feet"),
  49023. name: "Maw",
  49024. image: {
  49025. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  49026. }
  49027. },
  49028. },
  49029. [
  49030. {
  49031. name: "Normal",
  49032. height: math.unit(6.5, "feet"),
  49033. default: true
  49034. },
  49035. ]
  49036. ))
  49037. characterMakers.push(() => makeCharacter(
  49038. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  49039. {
  49040. front: {
  49041. height: math.unit(5, "feet"),
  49042. name: "Front",
  49043. image: {
  49044. source: "./media/characters/nova-nerium/front.svg",
  49045. extra: 1548/1392,
  49046. bottom: 374/1922
  49047. }
  49048. },
  49049. back: {
  49050. height: math.unit(5, "feet"),
  49051. name: "Back",
  49052. image: {
  49053. source: "./media/characters/nova-nerium/back.svg",
  49054. extra: 1658/1468,
  49055. bottom: 257/1915
  49056. }
  49057. },
  49058. },
  49059. [
  49060. {
  49061. name: "Normal",
  49062. height: math.unit(5, "feet"),
  49063. default: true
  49064. },
  49065. ]
  49066. ))
  49067. characterMakers.push(() => makeCharacter(
  49068. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  49069. {
  49070. front: {
  49071. height: math.unit(5 + 4/12, "feet"),
  49072. name: "Front",
  49073. image: {
  49074. source: "./media/characters/ashe-pyriph/front.svg",
  49075. extra: 1935/1747,
  49076. bottom: 60/1995
  49077. }
  49078. },
  49079. },
  49080. [
  49081. {
  49082. name: "Normal",
  49083. height: math.unit(5 + 4/12, "feet"),
  49084. default: true
  49085. },
  49086. ]
  49087. ))
  49088. characterMakers.push(() => makeCharacter(
  49089. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  49090. {
  49091. front: {
  49092. height: math.unit(8.7, "feet"),
  49093. name: "Front",
  49094. image: {
  49095. source: "./media/characters/flicker-wisp/front.svg",
  49096. extra: 1835/1613,
  49097. bottom: 449/2284
  49098. }
  49099. },
  49100. side: {
  49101. height: math.unit(8.7, "feet"),
  49102. name: "Side",
  49103. image: {
  49104. source: "./media/characters/flicker-wisp/side.svg",
  49105. extra: 1841/1642,
  49106. bottom: 336/2177
  49107. },
  49108. default: true
  49109. },
  49110. maw: {
  49111. height: math.unit(3.35, "feet"),
  49112. name: "Maw",
  49113. image: {
  49114. source: "./media/characters/flicker-wisp/maw.svg",
  49115. extra: 2338/1506,
  49116. bottom: 0/2338
  49117. }
  49118. },
  49119. ovipositor: {
  49120. height: math.unit(4.95, "feet"),
  49121. name: "Ovipositor",
  49122. image: {
  49123. source: "./media/characters/flicker-wisp/ovipositor.svg"
  49124. }
  49125. },
  49126. egg: {
  49127. height: math.unit(0.385, "feet"),
  49128. weight: math.unit(2, "lb"),
  49129. name: "Egg",
  49130. image: {
  49131. source: "./media/characters/flicker-wisp/egg.svg"
  49132. }
  49133. },
  49134. },
  49135. [
  49136. {
  49137. name: "Normal",
  49138. height: math.unit(8.7, "feet"),
  49139. default: true
  49140. },
  49141. ]
  49142. ))
  49143. characterMakers.push(() => makeCharacter(
  49144. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  49145. {
  49146. side: {
  49147. height: math.unit(11, "feet"),
  49148. name: "Side",
  49149. image: {
  49150. source: "./media/characters/faefnul/side.svg",
  49151. extra: 1100/1007,
  49152. bottom: 0/1100
  49153. }
  49154. },
  49155. },
  49156. [
  49157. {
  49158. name: "Normal",
  49159. height: math.unit(11, "feet"),
  49160. default: true
  49161. },
  49162. ]
  49163. ))
  49164. characterMakers.push(() => makeCharacter(
  49165. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  49166. {
  49167. front: {
  49168. height: math.unit(6 + 2/12, "feet"),
  49169. name: "Front",
  49170. image: {
  49171. source: "./media/characters/shady/front.svg",
  49172. extra: 502/461,
  49173. bottom: 9/511
  49174. }
  49175. },
  49176. kneeling: {
  49177. height: math.unit(4.6, "feet"),
  49178. name: "Kneeling",
  49179. image: {
  49180. source: "./media/characters/shady/kneeling.svg",
  49181. extra: 1328/1219,
  49182. bottom: 117/1445
  49183. }
  49184. },
  49185. maw: {
  49186. height: math.unit(2, "feet"),
  49187. name: "Maw",
  49188. image: {
  49189. source: "./media/characters/shady/maw.svg"
  49190. }
  49191. },
  49192. },
  49193. [
  49194. {
  49195. name: "Nano",
  49196. height: math.unit(1, "mm")
  49197. },
  49198. {
  49199. name: "Micro",
  49200. height: math.unit(12, "mm")
  49201. },
  49202. {
  49203. name: "Tiny",
  49204. height: math.unit(3, "inches")
  49205. },
  49206. {
  49207. name: "Normal",
  49208. height: math.unit(6 + 2/12, "feet"),
  49209. default: true
  49210. },
  49211. {
  49212. name: "Big",
  49213. height: math.unit(15, "feet")
  49214. },
  49215. {
  49216. name: "Macro",
  49217. height: math.unit(150, "feet")
  49218. },
  49219. {
  49220. name: "Titanic",
  49221. height: math.unit(500, "feet")
  49222. },
  49223. ]
  49224. ))
  49225. characterMakers.push(() => makeCharacter(
  49226. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  49227. {
  49228. front: {
  49229. height: math.unit(12, "feet"),
  49230. name: "Front",
  49231. image: {
  49232. source: "./media/characters/fenrir/front.svg",
  49233. extra: 968/875,
  49234. bottom: 22/990
  49235. }
  49236. },
  49237. },
  49238. [
  49239. {
  49240. name: "Big",
  49241. height: math.unit(12, "feet"),
  49242. default: true
  49243. },
  49244. ]
  49245. ))
  49246. characterMakers.push(() => makeCharacter(
  49247. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  49248. {
  49249. front: {
  49250. height: math.unit(5 + 4/12, "feet"),
  49251. name: "Front",
  49252. image: {
  49253. source: "./media/characters/makar/front.svg",
  49254. extra: 1181/1112,
  49255. bottom: 78/1259
  49256. }
  49257. },
  49258. },
  49259. [
  49260. {
  49261. name: "Normal",
  49262. height: math.unit(5 + 4/12, "feet"),
  49263. default: true
  49264. },
  49265. ]
  49266. ))
  49267. characterMakers.push(() => makeCharacter(
  49268. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  49269. {
  49270. front: {
  49271. height: math.unit(5 + 7/12, "feet"),
  49272. name: "Front",
  49273. image: {
  49274. source: "./media/characters/callow/front.svg",
  49275. extra: 1482/1304,
  49276. bottom: 23/1505
  49277. }
  49278. },
  49279. back: {
  49280. height: math.unit(5 + 7/12, "feet"),
  49281. name: "Back",
  49282. image: {
  49283. source: "./media/characters/callow/back.svg",
  49284. extra: 1484/1296,
  49285. bottom: 25/1509
  49286. }
  49287. },
  49288. },
  49289. [
  49290. {
  49291. name: "Micro",
  49292. height: math.unit(3, "inches"),
  49293. default: true
  49294. },
  49295. {
  49296. name: "Normal",
  49297. height: math.unit(5 + 7/12, "feet")
  49298. },
  49299. ]
  49300. ))
  49301. characterMakers.push(() => makeCharacter(
  49302. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  49303. {
  49304. front: {
  49305. height: math.unit(6 + 2/12, "feet"),
  49306. name: "Front",
  49307. image: {
  49308. source: "./media/characters/natel/front.svg",
  49309. extra: 1833/1692,
  49310. bottom: 166/1999
  49311. }
  49312. },
  49313. },
  49314. [
  49315. {
  49316. name: "Normal",
  49317. height: math.unit(6 + 2/12, "feet"),
  49318. default: true
  49319. },
  49320. ]
  49321. ))
  49322. characterMakers.push(() => makeCharacter(
  49323. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  49324. {
  49325. front: {
  49326. height: math.unit(1.75, "meters"),
  49327. name: "Front",
  49328. image: {
  49329. source: "./media/characters/misu/front.svg",
  49330. extra: 1690/1558,
  49331. bottom: 234/1924
  49332. }
  49333. },
  49334. back: {
  49335. height: math.unit(1.75, "meters"),
  49336. name: "Back",
  49337. image: {
  49338. source: "./media/characters/misu/back.svg",
  49339. extra: 1762/1618,
  49340. bottom: 146/1908
  49341. }
  49342. },
  49343. frontNude: {
  49344. height: math.unit(1.75, "meters"),
  49345. name: "Front (Nude)",
  49346. image: {
  49347. source: "./media/characters/misu/front-nude.svg",
  49348. extra: 1690/1558,
  49349. bottom: 234/1924
  49350. }
  49351. },
  49352. backNude: {
  49353. height: math.unit(1.75, "meters"),
  49354. name: "Back (Nude)",
  49355. image: {
  49356. source: "./media/characters/misu/back-nude.svg",
  49357. extra: 1762/1618,
  49358. bottom: 146/1908
  49359. }
  49360. },
  49361. frontErect: {
  49362. height: math.unit(1.75, "meters"),
  49363. name: "Front (Erect)",
  49364. image: {
  49365. source: "./media/characters/misu/front-erect.svg",
  49366. extra: 1690/1558,
  49367. bottom: 234/1924
  49368. }
  49369. },
  49370. maw: {
  49371. height: math.unit(0.47, "meters"),
  49372. name: "Maw",
  49373. image: {
  49374. source: "./media/characters/misu/maw.svg"
  49375. }
  49376. },
  49377. head: {
  49378. height: math.unit(0.35, "meters"),
  49379. name: "Head",
  49380. image: {
  49381. source: "./media/characters/misu/head.svg"
  49382. }
  49383. },
  49384. rear: {
  49385. height: math.unit(0.47, "meters"),
  49386. name: "Rear",
  49387. image: {
  49388. source: "./media/characters/misu/rear.svg"
  49389. }
  49390. },
  49391. },
  49392. [
  49393. {
  49394. name: "Normal",
  49395. height: math.unit(1.75, "meters")
  49396. },
  49397. {
  49398. name: "Not good for the people",
  49399. height: math.unit(42, "meters")
  49400. },
  49401. {
  49402. name: "Not good for the neighborhood",
  49403. height: math.unit(135, "meters")
  49404. },
  49405. {
  49406. name: "Bit bigger problem",
  49407. height: math.unit(380, "meters"),
  49408. default: true
  49409. },
  49410. {
  49411. name: "Not good for the city",
  49412. height: math.unit(1.5, "km")
  49413. },
  49414. {
  49415. name: "Not good for the county",
  49416. height: math.unit(5.5, "km")
  49417. },
  49418. {
  49419. name: "Not good for the state",
  49420. height: math.unit(25, "km")
  49421. },
  49422. {
  49423. name: "Not good for the country",
  49424. height: math.unit(125, "km")
  49425. },
  49426. {
  49427. name: "Not good for the continent",
  49428. height: math.unit(2100, "km")
  49429. },
  49430. {
  49431. name: "Not good for the planet",
  49432. height: math.unit(35000, "km")
  49433. },
  49434. {
  49435. name: "Just no",
  49436. height: math.unit(8.5e18, "km")
  49437. },
  49438. ]
  49439. ))
  49440. characterMakers.push(() => makeCharacter(
  49441. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  49442. {
  49443. front: {
  49444. height: math.unit(6.5, "feet"),
  49445. name: "Front",
  49446. image: {
  49447. source: "./media/characters/poppy/front.svg",
  49448. extra: 1878/1812,
  49449. bottom: 43/1921
  49450. }
  49451. },
  49452. feet: {
  49453. height: math.unit(1.06, "feet"),
  49454. name: "Feet",
  49455. image: {
  49456. source: "./media/characters/poppy/feet.svg",
  49457. extra: 1083/1083,
  49458. bottom: 87/1170
  49459. }
  49460. },
  49461. },
  49462. [
  49463. {
  49464. name: "Human",
  49465. height: math.unit(6.5, "feet")
  49466. },
  49467. {
  49468. name: "Default",
  49469. height: math.unit(300, "feet"),
  49470. default: true
  49471. },
  49472. {
  49473. name: "Huge",
  49474. height: math.unit(850, "feet")
  49475. },
  49476. {
  49477. name: "Mega",
  49478. height: math.unit(8000, "feet")
  49479. },
  49480. {
  49481. name: "Giga",
  49482. height: math.unit(300, "miles")
  49483. },
  49484. ]
  49485. ))
  49486. characterMakers.push(() => makeCharacter(
  49487. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  49488. {
  49489. bipedal: {
  49490. height: math.unit(7, "feet"),
  49491. name: "Bipedal",
  49492. image: {
  49493. source: "./media/characters/zener/bipedal.svg",
  49494. extra: 874/805,
  49495. bottom: 109/983
  49496. }
  49497. },
  49498. quadrupedal: {
  49499. height: math.unit(4.64, "feet"),
  49500. name: "Quadrupedal",
  49501. image: {
  49502. source: "./media/characters/zener/quadrupedal.svg",
  49503. extra: 638/507,
  49504. bottom: 190/828
  49505. }
  49506. },
  49507. cock: {
  49508. height: math.unit(18, "inches"),
  49509. name: "Cock",
  49510. image: {
  49511. source: "./media/characters/zener/cock.svg"
  49512. }
  49513. },
  49514. },
  49515. [
  49516. {
  49517. name: "Normal",
  49518. height: math.unit(7, "feet"),
  49519. default: true
  49520. },
  49521. ]
  49522. ))
  49523. characterMakers.push(() => makeCharacter(
  49524. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  49525. {
  49526. nude: {
  49527. height: math.unit(5 + 6/12, "feet"),
  49528. name: "Nude",
  49529. image: {
  49530. source: "./media/characters/charlie-dog/nude.svg",
  49531. extra: 768/734,
  49532. bottom: 26/794
  49533. }
  49534. },
  49535. dressed: {
  49536. height: math.unit(5 + 6/12, "feet"),
  49537. name: "Dressed",
  49538. image: {
  49539. source: "./media/characters/charlie-dog/dressed.svg",
  49540. extra: 768/734,
  49541. bottom: 26/794
  49542. }
  49543. },
  49544. },
  49545. [
  49546. {
  49547. name: "Normal",
  49548. height: math.unit(5 + 6/12, "feet"),
  49549. default: true
  49550. },
  49551. ]
  49552. ))
  49553. characterMakers.push(() => makeCharacter(
  49554. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  49555. {
  49556. front: {
  49557. height: math.unit(6 + 4/12, "feet"),
  49558. name: "Front",
  49559. image: {
  49560. source: "./media/characters/ir'istrasz/front.svg",
  49561. extra: 1014/977,
  49562. bottom: 65/1079
  49563. }
  49564. },
  49565. back: {
  49566. height: math.unit(6 + 4/12, "feet"),
  49567. name: "Back",
  49568. image: {
  49569. source: "./media/characters/ir'istrasz/back.svg",
  49570. extra: 1024/992,
  49571. bottom: 34/1058
  49572. }
  49573. },
  49574. },
  49575. [
  49576. {
  49577. name: "Normal",
  49578. height: math.unit(6 + 4/12, "feet"),
  49579. default: true
  49580. },
  49581. ]
  49582. ))
  49583. characterMakers.push(() => makeCharacter(
  49584. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  49585. {
  49586. front: {
  49587. height: math.unit(5 + 8/12, "feet"),
  49588. name: "Front",
  49589. image: {
  49590. source: "./media/characters/dee-ditto/front.svg",
  49591. extra: 1874/1785,
  49592. bottom: 68/1942
  49593. }
  49594. },
  49595. back: {
  49596. height: math.unit(5 + 8/12, "feet"),
  49597. name: "Back",
  49598. image: {
  49599. source: "./media/characters/dee-ditto/back.svg",
  49600. extra: 1870/1783,
  49601. bottom: 77/1947
  49602. }
  49603. },
  49604. },
  49605. [
  49606. {
  49607. name: "Normal",
  49608. height: math.unit(5 + 8/12, "feet"),
  49609. default: true
  49610. },
  49611. ]
  49612. ))
  49613. characterMakers.push(() => makeCharacter(
  49614. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  49615. {
  49616. front: {
  49617. height: math.unit(7 + 6/12, "feet"),
  49618. name: "Front",
  49619. image: {
  49620. source: "./media/characters/fey/front.svg",
  49621. extra: 995/979,
  49622. bottom: 30/1025
  49623. }
  49624. },
  49625. back: {
  49626. height: math.unit(7 + 6/12, "feet"),
  49627. name: "Back",
  49628. image: {
  49629. source: "./media/characters/fey/back.svg",
  49630. extra: 1079/1008,
  49631. bottom: 5/1084
  49632. }
  49633. },
  49634. dressed: {
  49635. height: math.unit(7 + 6/12, "feet"),
  49636. name: "Dressed",
  49637. image: {
  49638. source: "./media/characters/fey/dressed.svg",
  49639. extra: 995/979,
  49640. bottom: 30/1025
  49641. }
  49642. },
  49643. },
  49644. [
  49645. {
  49646. name: "Normal",
  49647. height: math.unit(7 + 6/12, "feet"),
  49648. default: true
  49649. },
  49650. ]
  49651. ))
  49652. characterMakers.push(() => makeCharacter(
  49653. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  49654. {
  49655. standing: {
  49656. height: math.unit(17, "feet"),
  49657. name: "Standing",
  49658. image: {
  49659. source: "./media/characters/aster/standing.svg",
  49660. extra: 1798/1598,
  49661. bottom: 117/1915
  49662. }
  49663. },
  49664. },
  49665. [
  49666. {
  49667. name: "Normal",
  49668. height: math.unit(17, "feet"),
  49669. default: true
  49670. },
  49671. {
  49672. name: "Homewrecker",
  49673. height: math.unit(95, "feet")
  49674. },
  49675. {
  49676. name: "Planet Devourer",
  49677. height: math.unit(1008000, "miles")
  49678. },
  49679. ]
  49680. ))
  49681. characterMakers.push(() => makeCharacter(
  49682. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  49683. {
  49684. front: {
  49685. height: math.unit(6 + 5/12, "feet"),
  49686. weight: math.unit(265, "lb"),
  49687. name: "Front",
  49688. image: {
  49689. source: "./media/characters/devon-childs/front.svg",
  49690. extra: 1795/1721,
  49691. bottom: 41/1836
  49692. }
  49693. },
  49694. side: {
  49695. height: math.unit(6 + 5/12, "feet"),
  49696. weight: math.unit(265, "lb"),
  49697. name: "Side",
  49698. image: {
  49699. source: "./media/characters/devon-childs/side.svg",
  49700. extra: 1812/1738,
  49701. bottom: 30/1842
  49702. }
  49703. },
  49704. back: {
  49705. height: math.unit(6 + 5/12, "feet"),
  49706. weight: math.unit(265, "lb"),
  49707. name: "Back",
  49708. image: {
  49709. source: "./media/characters/devon-childs/back.svg",
  49710. extra: 1808/1735,
  49711. bottom: 23/1831
  49712. }
  49713. },
  49714. hand: {
  49715. height: math.unit(1.464, "feet"),
  49716. name: "Hand",
  49717. image: {
  49718. source: "./media/characters/devon-childs/hand.svg"
  49719. }
  49720. },
  49721. foot: {
  49722. height: math.unit(1.6, "feet"),
  49723. name: "Foot",
  49724. image: {
  49725. source: "./media/characters/devon-childs/foot.svg"
  49726. }
  49727. },
  49728. },
  49729. [
  49730. {
  49731. name: "Micro",
  49732. height: math.unit(7, "cm")
  49733. },
  49734. {
  49735. name: "Normal",
  49736. height: math.unit(6 + 5/12, "feet"),
  49737. default: true
  49738. },
  49739. {
  49740. name: "Macro",
  49741. height: math.unit(154, "feet")
  49742. },
  49743. ]
  49744. ))
  49745. characterMakers.push(() => makeCharacter(
  49746. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  49747. {
  49748. front: {
  49749. height: math.unit(6, "feet"),
  49750. weight: math.unit(180, "lb"),
  49751. name: "Front",
  49752. image: {
  49753. source: "./media/characters/lydemox-vir/front.svg",
  49754. extra: 1632/1435,
  49755. bottom: 58/1690
  49756. }
  49757. },
  49758. frontSFW: {
  49759. height: math.unit(6, "feet"),
  49760. weight: math.unit(180, "lb"),
  49761. name: "Front (SFW)",
  49762. image: {
  49763. source: "./media/characters/lydemox-vir/front-sfw.svg",
  49764. extra: 1632/1435,
  49765. bottom: 58/1690
  49766. }
  49767. },
  49768. back: {
  49769. height: math.unit(6, "feet"),
  49770. weight: math.unit(180, "lb"),
  49771. name: "Back",
  49772. image: {
  49773. source: "./media/characters/lydemox-vir/back.svg",
  49774. extra: 1593/1408,
  49775. bottom: 31/1624
  49776. }
  49777. },
  49778. paw: {
  49779. height: math.unit(1.85, "feet"),
  49780. name: "Paw",
  49781. image: {
  49782. source: "./media/characters/lydemox-vir/paw.svg"
  49783. }
  49784. },
  49785. dick: {
  49786. height: math.unit(1.8, "feet"),
  49787. name: "Dick",
  49788. image: {
  49789. source: "./media/characters/lydemox-vir/dick.svg"
  49790. }
  49791. },
  49792. },
  49793. [
  49794. {
  49795. name: "Macro",
  49796. height: math.unit(100, "feet"),
  49797. default: true
  49798. },
  49799. {
  49800. name: "Teramacro",
  49801. height: math.unit(1, "earth")
  49802. },
  49803. {
  49804. name: "Planetary",
  49805. height: math.unit(20, "earths")
  49806. },
  49807. ]
  49808. ))
  49809. characterMakers.push(() => makeCharacter(
  49810. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  49811. {
  49812. front: {
  49813. height: math.unit(15 + 8/12, "feet"),
  49814. weight: math.unit(1237, "kg"),
  49815. name: "Front",
  49816. image: {
  49817. source: "./media/characters/mia/front.svg",
  49818. extra: 1573/1446,
  49819. bottom: 58/1631
  49820. }
  49821. },
  49822. },
  49823. [
  49824. {
  49825. name: "Small",
  49826. height: math.unit(9 + 5/12, "feet")
  49827. },
  49828. {
  49829. name: "Normal",
  49830. height: math.unit(15 + 8/12, "feet"),
  49831. default: true
  49832. },
  49833. ]
  49834. ))
  49835. characterMakers.push(() => makeCharacter(
  49836. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  49837. {
  49838. front: {
  49839. height: math.unit(10 + 6/12, "feet"),
  49840. weight: math.unit(1.3, "tons"),
  49841. name: "Front",
  49842. image: {
  49843. source: "./media/characters/mr-graves/front.svg",
  49844. extra: 1779/1695,
  49845. bottom: 198/1977
  49846. }
  49847. },
  49848. },
  49849. [
  49850. {
  49851. name: "Normal",
  49852. height: math.unit(10 + 6 /12, "feet"),
  49853. default: true
  49854. },
  49855. ]
  49856. ))
  49857. characterMakers.push(() => makeCharacter(
  49858. { name: "Jess", species: ["human"], tags: ["anthro"] },
  49859. {
  49860. dressedFront: {
  49861. height: math.unit(5 + 8/12, "feet"),
  49862. weight: math.unit(125, "lb"),
  49863. name: "Dressed (Front)",
  49864. image: {
  49865. source: "./media/characters/jess/dressed-front.svg",
  49866. extra: 1176/1152,
  49867. bottom: 42/1218
  49868. }
  49869. },
  49870. dressedSide: {
  49871. height: math.unit(5 + 8/12, "feet"),
  49872. weight: math.unit(125, "lb"),
  49873. name: "Dressed (Side)",
  49874. image: {
  49875. source: "./media/characters/jess/dressed-side.svg",
  49876. extra: 1204/1190,
  49877. bottom: 6/1210
  49878. }
  49879. },
  49880. nudeFront: {
  49881. height: math.unit(5 + 8/12, "feet"),
  49882. weight: math.unit(125, "lb"),
  49883. name: "Nude (Front)",
  49884. image: {
  49885. source: "./media/characters/jess/nude-front.svg",
  49886. extra: 1176/1152,
  49887. bottom: 42/1218
  49888. }
  49889. },
  49890. nudeSide: {
  49891. height: math.unit(5 + 8/12, "feet"),
  49892. weight: math.unit(125, "lb"),
  49893. name: "Nude (Side)",
  49894. image: {
  49895. source: "./media/characters/jess/nude-side.svg",
  49896. extra: 1204/1190,
  49897. bottom: 6/1210
  49898. }
  49899. },
  49900. organsFront: {
  49901. height: math.unit(2.83799342105, "feet"),
  49902. name: "Organs (Front)",
  49903. image: {
  49904. source: "./media/characters/jess/organs-front.svg"
  49905. }
  49906. },
  49907. organsSide: {
  49908. height: math.unit(2.64225290474, "feet"),
  49909. name: "Organs (Side)",
  49910. image: {
  49911. source: "./media/characters/jess/organs-side.svg"
  49912. }
  49913. },
  49914. digestiveTractFront: {
  49915. height: math.unit(2.8106580871, "feet"),
  49916. name: "Digestive Tract (Front)",
  49917. image: {
  49918. source: "./media/characters/jess/digestive-tract-front.svg"
  49919. }
  49920. },
  49921. digestiveTractSide: {
  49922. height: math.unit(2.54365045014, "feet"),
  49923. name: "Digestive Tract (Side)",
  49924. image: {
  49925. source: "./media/characters/jess/digestive-tract-side.svg"
  49926. }
  49927. },
  49928. respiratorySystemFront: {
  49929. height: math.unit(1.11196233456, "feet"),
  49930. name: "Respiratory System (Front)",
  49931. image: {
  49932. source: "./media/characters/jess/respiratory-system-front.svg"
  49933. }
  49934. },
  49935. respiratorySystemSide: {
  49936. height: math.unit(0.89327966297, "feet"),
  49937. name: "Respiratory System (Side)",
  49938. image: {
  49939. source: "./media/characters/jess/respiratory-system-side.svg"
  49940. }
  49941. },
  49942. urinaryTractFront: {
  49943. height: math.unit(1.16126356186, "feet"),
  49944. name: "Urinary Tract (Front)",
  49945. image: {
  49946. source: "./media/characters/jess/urinary-tract-front.svg"
  49947. }
  49948. },
  49949. urinaryTractSide: {
  49950. height: math.unit(1.20910039627, "feet"),
  49951. name: "Urinary Tract (Side)",
  49952. image: {
  49953. source: "./media/characters/jess/urinary-tract-side.svg"
  49954. }
  49955. },
  49956. reproductiveOrgansFront: {
  49957. height: math.unit(0.48422591566, "feet"),
  49958. name: "Reproductive Organs (Front)",
  49959. image: {
  49960. source: "./media/characters/jess/reproductive-organs-front.svg"
  49961. }
  49962. },
  49963. reproductiveOrgansSide: {
  49964. height: math.unit(0.61553314481, "feet"),
  49965. name: "Reproductive Organs (Side)",
  49966. image: {
  49967. source: "./media/characters/jess/reproductive-organs-side.svg"
  49968. }
  49969. },
  49970. breastsFront: {
  49971. height: math.unit(0.47690395121, "feet"),
  49972. name: "Breasts (Front)",
  49973. image: {
  49974. source: "./media/characters/jess/breasts-front.svg"
  49975. }
  49976. },
  49977. breastsSide: {
  49978. height: math.unit(0.30556998307, "feet"),
  49979. name: "Breasts (Side)",
  49980. image: {
  49981. source: "./media/characters/jess/breasts-side.svg"
  49982. }
  49983. },
  49984. heartFront: {
  49985. height: math.unit(0.53011022622, "feet"),
  49986. name: "Heart (Front)",
  49987. image: {
  49988. source: "./media/characters/jess/heart-front.svg"
  49989. }
  49990. },
  49991. heartSide: {
  49992. height: math.unit(0.51790695213, "feet"),
  49993. name: "Heart (Side)",
  49994. image: {
  49995. source: "./media/characters/jess/heart-side.svg"
  49996. }
  49997. },
  49998. earsAndNoseFront: {
  49999. height: math.unit(0.29385483995, "feet"),
  50000. name: "Ears and Nose (Front)",
  50001. image: {
  50002. source: "./media/characters/jess/ears-and-nose-front.svg"
  50003. }
  50004. },
  50005. earsAndNoseSide: {
  50006. height: math.unit(0.18109658741, "feet"),
  50007. name: "Ears and Nose (Side)",
  50008. image: {
  50009. source: "./media/characters/jess/ears-and-nose-side.svg"
  50010. }
  50011. },
  50012. },
  50013. [
  50014. {
  50015. name: "Normal",
  50016. height: math.unit(5 + 8/12, "feet"),
  50017. default: true
  50018. },
  50019. ]
  50020. ))
  50021. characterMakers.push(() => makeCharacter(
  50022. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  50023. {
  50024. front: {
  50025. height: math.unit(6, "feet"),
  50026. weight: math.unit(6.64467e-7, "grams"),
  50027. name: "Front",
  50028. image: {
  50029. source: "./media/characters/wimpering/front.svg",
  50030. extra: 597/587,
  50031. bottom: 34/631
  50032. }
  50033. },
  50034. },
  50035. [
  50036. {
  50037. name: "Micro",
  50038. height: math.unit(0.4, "mm"),
  50039. default: true
  50040. },
  50041. ]
  50042. ))
  50043. characterMakers.push(() => makeCharacter(
  50044. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  50045. {
  50046. front: {
  50047. height: math.unit(5 + 2/12, "feet"),
  50048. weight: math.unit(110, "lb"),
  50049. name: "Front",
  50050. image: {
  50051. source: "./media/characters/keltre/front.svg",
  50052. extra: 1099/1057,
  50053. bottom: 22/1121
  50054. }
  50055. },
  50056. back: {
  50057. height: math.unit(5 + 2/12, "feet"),
  50058. weight: math.unit(110, "lb"),
  50059. name: "Back",
  50060. image: {
  50061. source: "./media/characters/keltre/back.svg",
  50062. extra: 1095/1053,
  50063. bottom: 17/1112
  50064. }
  50065. },
  50066. dressed: {
  50067. height: math.unit(5 + 2/12, "feet"),
  50068. weight: math.unit(110, "lb"),
  50069. name: "Dressed",
  50070. image: {
  50071. source: "./media/characters/keltre/dressed.svg",
  50072. extra: 1099/1057,
  50073. bottom: 22/1121
  50074. }
  50075. },
  50076. winter: {
  50077. height: math.unit(5 + 2/12, "feet"),
  50078. weight: math.unit(110, "lb"),
  50079. name: "Winter",
  50080. image: {
  50081. source: "./media/characters/keltre/winter.svg",
  50082. extra: 1099/1057,
  50083. bottom: 22/1121
  50084. }
  50085. },
  50086. head: {
  50087. height: math.unit(1.61 * 0.86, "feet"),
  50088. name: "Head",
  50089. image: {
  50090. source: "./media/characters/keltre/head.svg",
  50091. extra: 534/421,
  50092. bottom: 0/534
  50093. }
  50094. },
  50095. hand: {
  50096. height: math.unit(1.3 * 0.86, "feet"),
  50097. name: "Hand",
  50098. image: {
  50099. source: "./media/characters/keltre/hand.svg"
  50100. }
  50101. },
  50102. foot: {
  50103. height: math.unit(1.8 * 0.86, "feet"),
  50104. name: "Foot",
  50105. image: {
  50106. source: "./media/characters/keltre/foot.svg"
  50107. }
  50108. },
  50109. },
  50110. [
  50111. {
  50112. name: "Fine",
  50113. height: math.unit(1, "inch")
  50114. },
  50115. {
  50116. name: "Dimnutive",
  50117. height: math.unit(4, "inches")
  50118. },
  50119. {
  50120. name: "Tiny",
  50121. height: math.unit(1, "foot")
  50122. },
  50123. {
  50124. name: "Small",
  50125. height: math.unit(3, "feet")
  50126. },
  50127. {
  50128. name: "Normal",
  50129. height: math.unit(5 + 2/12, "feet"),
  50130. default: true
  50131. },
  50132. ]
  50133. ))
  50134. characterMakers.push(() => makeCharacter(
  50135. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  50136. {
  50137. front: {
  50138. height: math.unit(6 + 2/12, "feet"),
  50139. name: "Front",
  50140. image: {
  50141. source: "./media/characters/nox/front.svg",
  50142. extra: 1917/1830,
  50143. bottom: 74/1991
  50144. }
  50145. },
  50146. back: {
  50147. height: math.unit(6 + 2/12, "feet"),
  50148. name: "Back",
  50149. image: {
  50150. source: "./media/characters/nox/back.svg",
  50151. extra: 1896/1815,
  50152. bottom: 21/1917
  50153. }
  50154. },
  50155. head: {
  50156. height: math.unit(1.1, "feet"),
  50157. name: "Head",
  50158. image: {
  50159. source: "./media/characters/nox/head.svg",
  50160. extra: 874/704,
  50161. bottom: 0/874
  50162. }
  50163. },
  50164. tattoo: {
  50165. height: math.unit(0.729, "feet"),
  50166. name: "Tattoo",
  50167. image: {
  50168. source: "./media/characters/nox/tattoo.svg"
  50169. }
  50170. },
  50171. },
  50172. [
  50173. {
  50174. name: "Normal",
  50175. height: math.unit(6 + 2/12, "feet")
  50176. },
  50177. {
  50178. name: "Gigamacro",
  50179. height: math.unit(2, "earths"),
  50180. default: true
  50181. },
  50182. {
  50183. name: "Cosmic",
  50184. height: math.unit(867, "yottameters")
  50185. },
  50186. ]
  50187. ))
  50188. characterMakers.push(() => makeCharacter(
  50189. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  50190. {
  50191. front: {
  50192. height: math.unit(6, "feet"),
  50193. weight: math.unit(150, "lb"),
  50194. name: "Front",
  50195. image: {
  50196. source: "./media/characters/caspian/front.svg",
  50197. extra: 1443/1359,
  50198. bottom: 0/1443
  50199. }
  50200. },
  50201. back: {
  50202. height: math.unit(6, "feet"),
  50203. weight: math.unit(150, "lb"),
  50204. name: "Back",
  50205. image: {
  50206. source: "./media/characters/caspian/back.svg",
  50207. extra: 1379/1309,
  50208. bottom: 0/1379
  50209. }
  50210. },
  50211. head: {
  50212. height: math.unit(0.9, "feet"),
  50213. name: "Head",
  50214. image: {
  50215. source: "./media/characters/caspian/head.svg",
  50216. extra: 692/492,
  50217. bottom: 0/692
  50218. }
  50219. },
  50220. headAlt: {
  50221. height: math.unit(0.95, "feet"),
  50222. name: "Head (Alt)",
  50223. image: {
  50224. source: "./media/characters/caspian/head-alt.svg",
  50225. extra: 668/508,
  50226. bottom: 0/668
  50227. }
  50228. },
  50229. hand: {
  50230. height: math.unit(0.8, "feet"),
  50231. name: "Hand",
  50232. image: {
  50233. source: "./media/characters/caspian/hand.svg"
  50234. }
  50235. },
  50236. paw: {
  50237. height: math.unit(0.95, "feet"),
  50238. name: "Paw",
  50239. image: {
  50240. source: "./media/characters/caspian/paw.svg"
  50241. }
  50242. },
  50243. },
  50244. [
  50245. {
  50246. name: "Normal",
  50247. height: math.unit(162, "feet"),
  50248. default: true
  50249. },
  50250. ]
  50251. ))
  50252. characterMakers.push(() => makeCharacter(
  50253. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  50254. {
  50255. front: {
  50256. height: math.unit(6, "feet"),
  50257. name: "Front",
  50258. image: {
  50259. source: "./media/characters/myra-aisling/front.svg",
  50260. extra: 1268/1166,
  50261. bottom: 73/1341
  50262. }
  50263. },
  50264. back: {
  50265. height: math.unit(6, "feet"),
  50266. name: "Back",
  50267. image: {
  50268. source: "./media/characters/myra-aisling/back.svg",
  50269. extra: 1249/1149,
  50270. bottom: 79/1328
  50271. }
  50272. },
  50273. dressed: {
  50274. height: math.unit(6, "feet"),
  50275. name: "Dressed",
  50276. image: {
  50277. source: "./media/characters/myra-aisling/dressed.svg",
  50278. extra: 1290/1189,
  50279. bottom: 47/1337
  50280. }
  50281. },
  50282. hand: {
  50283. height: math.unit(1.1, "feet"),
  50284. name: "Hand",
  50285. image: {
  50286. source: "./media/characters/myra-aisling/hand.svg"
  50287. }
  50288. },
  50289. paw: {
  50290. height: math.unit(1.23, "feet"),
  50291. name: "Paw",
  50292. image: {
  50293. source: "./media/characters/myra-aisling/paw.svg"
  50294. }
  50295. },
  50296. },
  50297. [
  50298. {
  50299. name: "Normal",
  50300. height: math.unit(160, "feet"),
  50301. default: true
  50302. },
  50303. ]
  50304. ))
  50305. characterMakers.push(() => makeCharacter(
  50306. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  50307. {
  50308. front: {
  50309. height: math.unit(6, "feet"),
  50310. name: "Front",
  50311. image: {
  50312. source: "./media/characters/tenley-sidero/front.svg",
  50313. extra: 1365/1276,
  50314. bottom: 47/1412
  50315. }
  50316. },
  50317. back: {
  50318. height: math.unit(6, "feet"),
  50319. name: "Back",
  50320. image: {
  50321. source: "./media/characters/tenley-sidero/back.svg",
  50322. extra: 1383/1283,
  50323. bottom: 35/1418
  50324. }
  50325. },
  50326. dressed: {
  50327. height: math.unit(6, "feet"),
  50328. name: "Dressed",
  50329. image: {
  50330. source: "./media/characters/tenley-sidero/dressed.svg",
  50331. extra: 1364/1275,
  50332. bottom: 42/1406
  50333. }
  50334. },
  50335. head: {
  50336. height: math.unit(1.47, "feet"),
  50337. name: "Head",
  50338. image: {
  50339. source: "./media/characters/tenley-sidero/head.svg",
  50340. extra: 610/490,
  50341. bottom: 0/610
  50342. }
  50343. },
  50344. },
  50345. [
  50346. {
  50347. name: "Normal",
  50348. height: math.unit(154, "feet"),
  50349. default: true
  50350. },
  50351. ]
  50352. ))
  50353. characterMakers.push(() => makeCharacter(
  50354. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  50355. {
  50356. front: {
  50357. height: math.unit(5, "inches"),
  50358. name: "Front",
  50359. image: {
  50360. source: "./media/characters/mallory/front.svg",
  50361. extra: 1919/1678,
  50362. bottom: 29/1948
  50363. }
  50364. },
  50365. hand: {
  50366. height: math.unit(0.73, "inches"),
  50367. name: "Hand",
  50368. image: {
  50369. source: "./media/characters/mallory/hand.svg"
  50370. }
  50371. },
  50372. paw: {
  50373. height: math.unit(0.68, "inches"),
  50374. name: "Paw",
  50375. image: {
  50376. source: "./media/characters/mallory/paw.svg"
  50377. }
  50378. },
  50379. },
  50380. [
  50381. {
  50382. name: "Small",
  50383. height: math.unit(5, "inches"),
  50384. default: true
  50385. },
  50386. ]
  50387. ))
  50388. characterMakers.push(() => makeCharacter(
  50389. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  50390. {
  50391. naked: {
  50392. height: math.unit(6, "feet"),
  50393. name: "Naked",
  50394. image: {
  50395. source: "./media/characters/mab/naked.svg",
  50396. extra: 1855/1757,
  50397. bottom: 208/2063
  50398. }
  50399. },
  50400. outside: {
  50401. height: math.unit(6, "feet"),
  50402. name: "Outside",
  50403. image: {
  50404. source: "./media/characters/mab/outside.svg",
  50405. extra: 1855/1757,
  50406. bottom: 208/2063
  50407. }
  50408. },
  50409. party: {
  50410. height: math.unit(6, "feet"),
  50411. name: "Party",
  50412. image: {
  50413. source: "./media/characters/mab/party.svg",
  50414. extra: 1855/1757,
  50415. bottom: 208/2063
  50416. }
  50417. },
  50418. },
  50419. [
  50420. {
  50421. name: "Normal",
  50422. height: math.unit(165, "feet"),
  50423. default: true
  50424. },
  50425. ]
  50426. ))
  50427. characterMakers.push(() => makeCharacter(
  50428. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  50429. {
  50430. feral: {
  50431. height: math.unit(12, "feet"),
  50432. weight: math.unit(20000, "lb"),
  50433. name: "Side",
  50434. image: {
  50435. source: "./media/characters/winter/feral.svg",
  50436. extra: 1286/943,
  50437. bottom: 112/1398
  50438. },
  50439. form: "feral",
  50440. default: true
  50441. },
  50442. feralNsfw: {
  50443. height: math.unit(12, "feet"),
  50444. weight: math.unit(20000, "lb"),
  50445. name: "Side (NSFW)",
  50446. image: {
  50447. source: "./media/characters/winter/feral-nsfw.svg",
  50448. extra: 1286/943,
  50449. bottom: 112/1398
  50450. },
  50451. form: "feral"
  50452. },
  50453. dick: {
  50454. height: math.unit(3.79, "feet"),
  50455. name: "Dick",
  50456. image: {
  50457. source: "./media/characters/winter/dick.svg"
  50458. },
  50459. form: "feral"
  50460. },
  50461. anthro: {
  50462. height: math.unit(12, "feet"),
  50463. weight: math.unit(10, "tons"),
  50464. name: "Anthro",
  50465. image: {
  50466. source: "./media/characters/winter/anthro.svg",
  50467. extra: 1701/1553,
  50468. bottom: 64/1765
  50469. },
  50470. form: "anthro",
  50471. default: true
  50472. },
  50473. },
  50474. [
  50475. {
  50476. name: "Big",
  50477. height: math.unit(12, "feet"),
  50478. default: true,
  50479. form: "feral"
  50480. },
  50481. {
  50482. name: "Big",
  50483. height: math.unit(12, "feet"),
  50484. default: true,
  50485. form: "anthro"
  50486. },
  50487. ],
  50488. {
  50489. "feral": {
  50490. name: "Feral",
  50491. default: true
  50492. },
  50493. "anthro": {
  50494. name: "Anthro"
  50495. }
  50496. }
  50497. ))
  50498. characterMakers.push(() => makeCharacter(
  50499. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  50500. {
  50501. front: {
  50502. height: math.unit(4.1, "inches"),
  50503. name: "Front",
  50504. image: {
  50505. source: "./media/characters/alto/front.svg",
  50506. extra: 736/627,
  50507. bottom: 90/826
  50508. }
  50509. },
  50510. },
  50511. [
  50512. {
  50513. name: "Normal",
  50514. height: math.unit(4.1, "inches"),
  50515. default: true
  50516. },
  50517. ]
  50518. ))
  50519. characterMakers.push(() => makeCharacter(
  50520. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  50521. {
  50522. sitting: {
  50523. height: math.unit(3, "feet"),
  50524. name: "Sitting",
  50525. image: {
  50526. source: "./media/characters/ratstrid-v/sitting.svg",
  50527. extra: 355/310,
  50528. bottom: 136/491
  50529. }
  50530. },
  50531. },
  50532. [
  50533. {
  50534. name: "Normal",
  50535. height: math.unit(3, "feet"),
  50536. default: true
  50537. },
  50538. ]
  50539. ))
  50540. characterMakers.push(() => makeCharacter(
  50541. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  50542. {
  50543. back: {
  50544. height: math.unit(6, "feet"),
  50545. weight: math.unit(450, "lb"),
  50546. name: "Back",
  50547. image: {
  50548. source: "./media/characters/siz/back.svg",
  50549. extra: 1449/1274,
  50550. bottom: 13/1462
  50551. }
  50552. },
  50553. },
  50554. [
  50555. {
  50556. name: "Smallest",
  50557. height: math.unit(18 + 3/12, "feet")
  50558. },
  50559. {
  50560. name: "Modest",
  50561. height: math.unit(56 + 8/12, "feet"),
  50562. default: true
  50563. },
  50564. {
  50565. name: "Largest",
  50566. height: math.unit(3590, "feet")
  50567. },
  50568. ]
  50569. ))
  50570. characterMakers.push(() => makeCharacter(
  50571. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  50572. {
  50573. front: {
  50574. height: math.unit(5 + 9/12, "feet"),
  50575. weight: math.unit(150, "lb"),
  50576. name: "Front",
  50577. image: {
  50578. source: "./media/characters/ven/front.svg",
  50579. extra: 1372/1320,
  50580. bottom: 73/1445
  50581. }
  50582. },
  50583. side: {
  50584. height: math.unit(5 + 9/12, "feet"),
  50585. weight: math.unit(1150, "lb"),
  50586. name: "Side",
  50587. image: {
  50588. source: "./media/characters/ven/side.svg",
  50589. extra: 1119/1070,
  50590. bottom: 42/1161
  50591. },
  50592. default: true
  50593. },
  50594. },
  50595. [
  50596. {
  50597. name: "Normal",
  50598. height: math.unit(5 + 9/12, "feet"),
  50599. default: true
  50600. },
  50601. ]
  50602. ))
  50603. characterMakers.push(() => makeCharacter(
  50604. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  50605. {
  50606. front: {
  50607. height: math.unit(12, "feet"),
  50608. weight: math.unit(1000, "kg"),
  50609. name: "Front",
  50610. image: {
  50611. source: "./media/characters/maple/front.svg",
  50612. extra: 1193/1081,
  50613. bottom: 22/1215
  50614. }
  50615. },
  50616. },
  50617. [
  50618. {
  50619. name: "Compressed",
  50620. height: math.unit(7, "feet")
  50621. },
  50622. {
  50623. name: "Normal",
  50624. height: math.unit(12, "feet"),
  50625. default: true
  50626. },
  50627. ]
  50628. ))
  50629. characterMakers.push(() => makeCharacter(
  50630. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  50631. {
  50632. front: {
  50633. height: math.unit(9, "feet"),
  50634. weight: math.unit(1500, "lb"),
  50635. name: "Front",
  50636. image: {
  50637. source: "./media/characters/nora/front.svg",
  50638. extra: 1348/1286,
  50639. bottom: 218/1566
  50640. }
  50641. },
  50642. erect: {
  50643. height: math.unit(9, "feet"),
  50644. weight: math.unit(11500, "lb"),
  50645. name: "Erect",
  50646. image: {
  50647. source: "./media/characters/nora/erect.svg",
  50648. extra: 1488/1433,
  50649. bottom: 133/1621
  50650. }
  50651. },
  50652. },
  50653. [
  50654. {
  50655. name: "Normal",
  50656. height: math.unit(9, "feet"),
  50657. default: true
  50658. },
  50659. ]
  50660. ))
  50661. characterMakers.push(() => makeCharacter(
  50662. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  50663. {
  50664. front: {
  50665. height: math.unit(25, "feet"),
  50666. weight: math.unit(27500, "lb"),
  50667. name: "Front",
  50668. image: {
  50669. source: "./media/characters/north-caudin/front.svg",
  50670. extra: 1184/1082,
  50671. bottom: 23/1207
  50672. }
  50673. },
  50674. },
  50675. [
  50676. {
  50677. name: "Compressed",
  50678. height: math.unit(10, "feet")
  50679. },
  50680. {
  50681. name: "Normal",
  50682. height: math.unit(25, "feet"),
  50683. default: true
  50684. },
  50685. ]
  50686. ))
  50687. characterMakers.push(() => makeCharacter(
  50688. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  50689. {
  50690. front: {
  50691. height: math.unit(9, "feet"),
  50692. weight: math.unit(1250, "lb"),
  50693. name: "Front",
  50694. image: {
  50695. source: "./media/characters/merrian/front.svg",
  50696. extra: 2393/2304,
  50697. bottom: 40/2433
  50698. }
  50699. },
  50700. },
  50701. [
  50702. {
  50703. name: "Normal",
  50704. height: math.unit(9, "feet"),
  50705. default: true
  50706. },
  50707. ]
  50708. ))
  50709. characterMakers.push(() => makeCharacter(
  50710. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  50711. {
  50712. front: {
  50713. height: math.unit(9, "feet"),
  50714. weight: math.unit(1000, "lb"),
  50715. name: "Front",
  50716. image: {
  50717. source: "./media/characters/hazel/front.svg",
  50718. extra: 2351/2298,
  50719. bottom: 38/2389
  50720. }
  50721. },
  50722. },
  50723. [
  50724. {
  50725. name: "Normal",
  50726. height: math.unit(9, "feet"),
  50727. default: true
  50728. },
  50729. ]
  50730. ))
  50731. characterMakers.push(() => makeCharacter(
  50732. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  50733. {
  50734. front: {
  50735. height: math.unit(13, "feet"),
  50736. weight: math.unit(3200, "lb"),
  50737. name: "Front",
  50738. image: {
  50739. source: "./media/characters/emma/front.svg",
  50740. extra: 2263/2029,
  50741. bottom: 68/2331
  50742. }
  50743. },
  50744. },
  50745. [
  50746. {
  50747. name: "Normal",
  50748. height: math.unit(13, "feet"),
  50749. default: true
  50750. },
  50751. ]
  50752. ))
  50753. characterMakers.push(() => makeCharacter(
  50754. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  50755. {
  50756. front: {
  50757. height: math.unit(11 + 9/12, "feet"),
  50758. weight: math.unit(2500, "lb"),
  50759. name: "Front",
  50760. image: {
  50761. source: "./media/characters/ilumina/front.svg",
  50762. extra: 2248/2209,
  50763. bottom: 164/2412
  50764. }
  50765. },
  50766. },
  50767. [
  50768. {
  50769. name: "Normal",
  50770. height: math.unit(11 + 9/12, "feet"),
  50771. default: true
  50772. },
  50773. ]
  50774. ))
  50775. characterMakers.push(() => makeCharacter(
  50776. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  50777. {
  50778. front: {
  50779. height: math.unit(8 + 10/12, "feet"),
  50780. weight: math.unit(1350, "lb"),
  50781. name: "Front",
  50782. image: {
  50783. source: "./media/characters/moonshine/front.svg",
  50784. extra: 2395/2288,
  50785. bottom: 40/2435
  50786. }
  50787. },
  50788. },
  50789. [
  50790. {
  50791. name: "Normal",
  50792. height: math.unit(8 + 10/12, "feet"),
  50793. default: true
  50794. },
  50795. ]
  50796. ))
  50797. characterMakers.push(() => makeCharacter(
  50798. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  50799. {
  50800. front: {
  50801. height: math.unit(14, "feet"),
  50802. weight: math.unit(3400, "lb"),
  50803. name: "Front",
  50804. image: {
  50805. source: "./media/characters/aletia/front.svg",
  50806. extra: 1185/1052,
  50807. bottom: 21/1206
  50808. }
  50809. },
  50810. },
  50811. [
  50812. {
  50813. name: "Compressed",
  50814. height: math.unit(8, "feet")
  50815. },
  50816. {
  50817. name: "Normal",
  50818. height: math.unit(14, "feet"),
  50819. default: true
  50820. },
  50821. ]
  50822. ))
  50823. characterMakers.push(() => makeCharacter(
  50824. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  50825. {
  50826. front: {
  50827. height: math.unit(17, "feet"),
  50828. weight: math.unit(6500, "lb"),
  50829. name: "Front",
  50830. image: {
  50831. source: "./media/characters/deidra/front.svg",
  50832. extra: 1201/1081,
  50833. bottom: 16/1217
  50834. }
  50835. },
  50836. },
  50837. [
  50838. {
  50839. name: "Compressed",
  50840. height: math.unit(9 + 6/12, "feet")
  50841. },
  50842. {
  50843. name: "Normal",
  50844. height: math.unit(17, "feet"),
  50845. default: true
  50846. },
  50847. ]
  50848. ))
  50849. characterMakers.push(() => makeCharacter(
  50850. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  50851. {
  50852. front: {
  50853. height: math.unit(7 + 4/12, "feet"),
  50854. weight: math.unit(280, "lb"),
  50855. name: "Front",
  50856. image: {
  50857. source: "./media/characters/freki-yrmori/front.svg",
  50858. extra: 1286/1182,
  50859. bottom: 29/1315
  50860. }
  50861. },
  50862. maw: {
  50863. height: math.unit(0.9, "feet"),
  50864. name: "Maw",
  50865. image: {
  50866. source: "./media/characters/freki-yrmori/maw.svg"
  50867. }
  50868. },
  50869. },
  50870. [
  50871. {
  50872. name: "Normal",
  50873. height: math.unit(7 + 4/12, "feet"),
  50874. default: true
  50875. },
  50876. {
  50877. name: "Macro",
  50878. height: math.unit(38.5, "meters")
  50879. },
  50880. ]
  50881. ))
  50882. characterMakers.push(() => makeCharacter(
  50883. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  50884. {
  50885. side: {
  50886. height: math.unit(47.2, "meters"),
  50887. weight: math.unit(10000, "tons"),
  50888. name: "Side",
  50889. image: {
  50890. source: "./media/characters/aetherios/side.svg",
  50891. extra: 2363/642,
  50892. bottom: 221/2584
  50893. }
  50894. },
  50895. top: {
  50896. height: math.unit(240, "meters"),
  50897. weight: math.unit(10000, "tons"),
  50898. name: "Top",
  50899. image: {
  50900. source: "./media/characters/aetherios/top.svg"
  50901. }
  50902. },
  50903. bottom: {
  50904. height: math.unit(240, "meters"),
  50905. weight: math.unit(10000, "tons"),
  50906. name: "Bottom",
  50907. image: {
  50908. source: "./media/characters/aetherios/bottom.svg"
  50909. }
  50910. },
  50911. head: {
  50912. height: math.unit(38.6, "meters"),
  50913. name: "Head",
  50914. image: {
  50915. source: "./media/characters/aetherios/head.svg",
  50916. extra: 1335/1112,
  50917. bottom: 0/1335
  50918. }
  50919. },
  50920. front: {
  50921. height: math.unit(29, "meters"),
  50922. name: "Front",
  50923. image: {
  50924. source: "./media/characters/aetherios/front.svg",
  50925. extra: 1266/953,
  50926. bottom: 158/1424
  50927. }
  50928. },
  50929. maw: {
  50930. height: math.unit(16.37, "meters"),
  50931. name: "Maw",
  50932. image: {
  50933. source: "./media/characters/aetherios/maw.svg",
  50934. extra: 748/637,
  50935. bottom: 0/748
  50936. },
  50937. extraAttributes: {
  50938. preyCapacity: {
  50939. name: "Capacity",
  50940. power: 3,
  50941. type: "volume",
  50942. base: math.unit(1000, "people")
  50943. },
  50944. tongueSize: {
  50945. name: "Tongue Size",
  50946. power: 2,
  50947. type: "area",
  50948. base: math.unit(21, "m^2")
  50949. }
  50950. }
  50951. },
  50952. forepaw: {
  50953. height: math.unit(18, "meters"),
  50954. name: "Forepaw",
  50955. image: {
  50956. source: "./media/characters/aetherios/forepaw.svg"
  50957. }
  50958. },
  50959. hindpaw: {
  50960. height: math.unit(23, "meters"),
  50961. name: "Hindpaw",
  50962. image: {
  50963. source: "./media/characters/aetherios/hindpaw.svg"
  50964. }
  50965. },
  50966. genitals: {
  50967. height: math.unit(42, "meters"),
  50968. name: "Genitals",
  50969. image: {
  50970. source: "./media/characters/aetherios/genitals.svg"
  50971. }
  50972. },
  50973. },
  50974. [
  50975. {
  50976. name: "Normal",
  50977. height: math.unit(47.2, "meters"),
  50978. default: true
  50979. },
  50980. {
  50981. name: "Macro",
  50982. height: math.unit(160, "meters")
  50983. },
  50984. {
  50985. name: "Mega",
  50986. height: math.unit(1.87, "km")
  50987. },
  50988. {
  50989. name: "Giga",
  50990. height: math.unit(40000, "km")
  50991. },
  50992. {
  50993. name: "Stellar",
  50994. height: math.unit(158000000, "km")
  50995. },
  50996. {
  50997. name: "Cosmic",
  50998. height: math.unit(9.46e12, "km")
  50999. },
  51000. ]
  51001. ))
  51002. characterMakers.push(() => makeCharacter(
  51003. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  51004. {
  51005. front: {
  51006. height: math.unit(5 + 4/12, "feet"),
  51007. weight: math.unit(80, "lb"),
  51008. name: "Front",
  51009. image: {
  51010. source: "./media/characters/mizu-gieeg/front.svg",
  51011. extra: 850/709,
  51012. bottom: 52/902
  51013. }
  51014. },
  51015. back: {
  51016. height: math.unit(5 + 4/12, "feet"),
  51017. weight: math.unit(80, "lb"),
  51018. name: "Back",
  51019. image: {
  51020. source: "./media/characters/mizu-gieeg/back.svg",
  51021. extra: 882/745,
  51022. bottom: 25/907
  51023. }
  51024. },
  51025. },
  51026. [
  51027. {
  51028. name: "Normal",
  51029. height: math.unit(5 + 4/12, "feet"),
  51030. default: true
  51031. },
  51032. ]
  51033. ))
  51034. characterMakers.push(() => makeCharacter(
  51035. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  51036. {
  51037. front: {
  51038. height: math.unit(6, "feet"),
  51039. name: "Front",
  51040. image: {
  51041. source: "./media/characters/roselle-st-papier/front.svg",
  51042. extra: 1430/1280,
  51043. bottom: 37/1467
  51044. }
  51045. },
  51046. back: {
  51047. height: math.unit(6, "feet"),
  51048. name: "Back",
  51049. image: {
  51050. source: "./media/characters/roselle-st-papier/back.svg",
  51051. extra: 1491/1296,
  51052. bottom: 23/1514
  51053. }
  51054. },
  51055. ear: {
  51056. height: math.unit(1.26, "feet"),
  51057. name: "Ear",
  51058. image: {
  51059. source: "./media/characters/roselle-st-papier/ear.svg"
  51060. }
  51061. },
  51062. },
  51063. [
  51064. {
  51065. name: "Normal",
  51066. height: math.unit(150, "feet"),
  51067. default: true
  51068. },
  51069. ]
  51070. ))
  51071. characterMakers.push(() => makeCharacter(
  51072. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  51073. {
  51074. front: {
  51075. height: math.unit(1, "inches"),
  51076. name: "Front",
  51077. image: {
  51078. source: "./media/characters/valargent/front.svg",
  51079. extra: 1825/1694,
  51080. bottom: 62/1887
  51081. }
  51082. },
  51083. back: {
  51084. height: math.unit(1, "inches"),
  51085. name: "Back",
  51086. image: {
  51087. source: "./media/characters/valargent/back.svg",
  51088. extra: 1775/1682,
  51089. bottom: 88/1863
  51090. }
  51091. },
  51092. },
  51093. [
  51094. {
  51095. name: "Micro",
  51096. height: math.unit(1, "inch"),
  51097. default: true
  51098. },
  51099. ]
  51100. ))
  51101. characterMakers.push(() => makeCharacter(
  51102. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  51103. {
  51104. front: {
  51105. height: math.unit(3.4, "meters"),
  51106. name: "Front",
  51107. image: {
  51108. source: "./media/characters/zarina/front.svg",
  51109. extra: 1733/1425,
  51110. bottom: 93/1826
  51111. }
  51112. },
  51113. squatting: {
  51114. height: math.unit(2.14, "meters"),
  51115. name: "Squatting",
  51116. image: {
  51117. source: "./media/characters/zarina/squatting.svg",
  51118. extra: 1073/788,
  51119. bottom: 63/1136
  51120. }
  51121. },
  51122. back: {
  51123. height: math.unit(2.14, "meters"),
  51124. name: "Back",
  51125. image: {
  51126. source: "./media/characters/zarina/back.svg",
  51127. extra: 1128/885,
  51128. bottom: 0/1128
  51129. }
  51130. },
  51131. },
  51132. [
  51133. {
  51134. name: "Normal",
  51135. height: math.unit(3.4, "meters"),
  51136. default: true
  51137. },
  51138. {
  51139. name: "Big",
  51140. height: math.unit(5, "meters")
  51141. },
  51142. {
  51143. name: "Macro",
  51144. height: math.unit(110, "meters")
  51145. },
  51146. ]
  51147. ))
  51148. characterMakers.push(() => makeCharacter(
  51149. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  51150. {
  51151. front: {
  51152. height: math.unit(7, "feet"),
  51153. name: "Front",
  51154. image: {
  51155. source: "./media/characters/ventus-astro-fox/front.svg",
  51156. extra: 1792/1623,
  51157. bottom: 28/1820
  51158. }
  51159. },
  51160. back: {
  51161. height: math.unit(7, "feet"),
  51162. name: "Back",
  51163. image: {
  51164. source: "./media/characters/ventus-astro-fox/back.svg",
  51165. extra: 1789/1620,
  51166. bottom: 31/1820
  51167. }
  51168. },
  51169. outfit: {
  51170. height: math.unit(7, "feet"),
  51171. name: "Outfit",
  51172. image: {
  51173. source: "./media/characters/ventus-astro-fox/outfit.svg",
  51174. extra: 1054/925,
  51175. bottom: 15/1069
  51176. }
  51177. },
  51178. head: {
  51179. height: math.unit(1.12, "feet"),
  51180. name: "Head",
  51181. image: {
  51182. source: "./media/characters/ventus-astro-fox/head.svg",
  51183. extra: 866/504,
  51184. bottom: 0/866
  51185. }
  51186. },
  51187. hand: {
  51188. height: math.unit(1, "feet"),
  51189. name: "Hand",
  51190. image: {
  51191. source: "./media/characters/ventus-astro-fox/hand.svg"
  51192. }
  51193. },
  51194. paw: {
  51195. height: math.unit(1.5, "feet"),
  51196. name: "Paw",
  51197. image: {
  51198. source: "./media/characters/ventus-astro-fox/paw.svg"
  51199. }
  51200. },
  51201. },
  51202. [
  51203. {
  51204. name: "Normal",
  51205. height: math.unit(7, "feet"),
  51206. default: true
  51207. },
  51208. {
  51209. name: "Macro",
  51210. height: math.unit(200, "feet")
  51211. },
  51212. {
  51213. name: "Cosmic",
  51214. height: math.unit(3, "universes")
  51215. },
  51216. ]
  51217. ))
  51218. characterMakers.push(() => makeCharacter(
  51219. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  51220. {
  51221. front: {
  51222. height: math.unit(3, "meters"),
  51223. weight: math.unit(7000, "lb"),
  51224. name: "Front",
  51225. image: {
  51226. source: "./media/characters/core-t/front.svg",
  51227. extra: 5729/4941,
  51228. bottom: 1129/6858
  51229. }
  51230. },
  51231. },
  51232. [
  51233. {
  51234. name: "Big",
  51235. height: math.unit(3, "meters"),
  51236. default: true
  51237. },
  51238. ]
  51239. ))
  51240. characterMakers.push(() => makeCharacter(
  51241. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  51242. {
  51243. normal: {
  51244. height: math.unit(6 + 6/12, "feet"),
  51245. weight: math.unit(275, "lb"),
  51246. name: "Front",
  51247. image: {
  51248. source: "./media/characters/cadbunny/normal.svg",
  51249. extra: 1129/947,
  51250. bottom: 93/1222
  51251. },
  51252. default: true,
  51253. form: "normal"
  51254. },
  51255. gigantamax: {
  51256. height: math.unit(26, "feet"),
  51257. weight: math.unit(16000, "lb"),
  51258. name: "Front",
  51259. image: {
  51260. source: "./media/characters/cadbunny/gigantamax.svg",
  51261. extra: 1133/944,
  51262. bottom: 90/1223
  51263. },
  51264. default: true,
  51265. form: "gigantamax"
  51266. },
  51267. },
  51268. [
  51269. {
  51270. name: "Normal",
  51271. height: math.unit(6 + 6/12, "feet"),
  51272. default: true,
  51273. form: "normal"
  51274. },
  51275. {
  51276. name: "Small",
  51277. height: math.unit(26, "feet"),
  51278. default: true,
  51279. form: "gigantamax"
  51280. },
  51281. {
  51282. name: "Large",
  51283. height: math.unit(78, "feet"),
  51284. form: "gigantamax"
  51285. },
  51286. ],
  51287. {
  51288. "normal": {
  51289. name: "Normal",
  51290. default: true
  51291. },
  51292. "gigantamax": {
  51293. name: "Gigantamax"
  51294. }
  51295. }
  51296. ))
  51297. characterMakers.push(() => makeCharacter(
  51298. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  51299. {
  51300. anthroFront: {
  51301. height: math.unit(8, "feet"),
  51302. weight: math.unit(300, "lb"),
  51303. name: "Front",
  51304. image: {
  51305. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  51306. extra: 1272/1176,
  51307. bottom: 53/1325
  51308. },
  51309. form: "anthro",
  51310. default: true
  51311. },
  51312. feralSide: {
  51313. height: math.unit(4, "feet"),
  51314. weight: math.unit(250, "lb"),
  51315. name: "Side",
  51316. image: {
  51317. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  51318. extra: 731/621,
  51319. bottom: 0/731
  51320. },
  51321. form: "feral",
  51322. default: true
  51323. },
  51324. },
  51325. [
  51326. {
  51327. name: "Regular",
  51328. height: math.unit(8, "feet"),
  51329. form: "anthro"
  51330. },
  51331. {
  51332. name: "Macro",
  51333. height: math.unit(250, "feet"),
  51334. form: "anthro",
  51335. default: true
  51336. },
  51337. {
  51338. name: "Regular",
  51339. height: math.unit(4, "feet"),
  51340. form: "feral"
  51341. },
  51342. {
  51343. name: "Macro",
  51344. height: math.unit(125, "feet"),
  51345. form: "feral",
  51346. default: true
  51347. },
  51348. ],
  51349. {
  51350. "anthro": {
  51351. name: "Anthro",
  51352. default: true
  51353. },
  51354. "feral": {
  51355. name: "Feral",
  51356. },
  51357. }
  51358. ))
  51359. characterMakers.push(() => makeCharacter(
  51360. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  51361. {
  51362. front: {
  51363. height: math.unit(11 + 10/12, "feet"),
  51364. weight: math.unit(1587, "kg"),
  51365. name: "Front",
  51366. image: {
  51367. source: "./media/characters/maple-javira-dragon/front.svg",
  51368. extra: 1136/744,
  51369. bottom: 73/1209
  51370. }
  51371. },
  51372. side: {
  51373. height: math.unit(11 + 10/12, "feet"),
  51374. weight: math.unit(1587, "kg"),
  51375. name: "Side",
  51376. image: {
  51377. source: "./media/characters/maple-javira-dragon/side.svg",
  51378. extra: 712/505,
  51379. bottom: 17/729
  51380. }
  51381. },
  51382. head: {
  51383. height: math.unit(8.05, "feet"),
  51384. name: "Head",
  51385. image: {
  51386. source: "./media/characters/maple-javira-dragon/head.svg",
  51387. extra: 1420/1344,
  51388. bottom: 0/1420
  51389. }
  51390. },
  51391. },
  51392. [
  51393. {
  51394. name: "Normal",
  51395. height: math.unit(11 + 10/12, "feet"),
  51396. default: true
  51397. },
  51398. ]
  51399. ))
  51400. characterMakers.push(() => makeCharacter(
  51401. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  51402. {
  51403. front: {
  51404. height: math.unit(117, "cm"),
  51405. weight: math.unit(50, "kg"),
  51406. name: "Front",
  51407. image: {
  51408. source: "./media/characters/sonia-wyverntail/front.svg",
  51409. extra: 708/592,
  51410. bottom: 25/733
  51411. }
  51412. },
  51413. },
  51414. [
  51415. {
  51416. name: "Normal",
  51417. height: math.unit(117, "cm"),
  51418. default: true
  51419. },
  51420. ]
  51421. ))
  51422. characterMakers.push(() => makeCharacter(
  51423. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  51424. {
  51425. front: {
  51426. height: math.unit(6 + 5/12, "feet"),
  51427. name: "Front",
  51428. image: {
  51429. source: "./media/characters/micah/front.svg",
  51430. extra: 1758/1546,
  51431. bottom: 214/1972
  51432. }
  51433. },
  51434. },
  51435. [
  51436. {
  51437. name: "Normal",
  51438. height: math.unit(6 + 5/12, "feet"),
  51439. default: true
  51440. },
  51441. ]
  51442. ))
  51443. characterMakers.push(() => makeCharacter(
  51444. { name: "Zarya", species: ["skunk"], tags: ["anthro"] },
  51445. {
  51446. front: {
  51447. height: math.unit(1.75, "meters"),
  51448. weight: math.unit(100, "kg"),
  51449. name: "Front",
  51450. image: {
  51451. source: "./media/characters/zarya/front.svg",
  51452. extra: 741/735,
  51453. bottom: 44/785
  51454. },
  51455. extraAttributes: {
  51456. "tailLength": {
  51457. name: "Tail Length",
  51458. power: 1,
  51459. type: "length",
  51460. base: math.unit(180, "cm")
  51461. },
  51462. "pawLength": {
  51463. name: "Paw Length",
  51464. power: 1,
  51465. type: "length",
  51466. base: math.unit(31, "cm")
  51467. },
  51468. }
  51469. },
  51470. side: {
  51471. height: math.unit(1.75, "meters"),
  51472. weight: math.unit(100, "kg"),
  51473. name: "Side",
  51474. image: {
  51475. source: "./media/characters/zarya/side.svg",
  51476. extra: 776/770,
  51477. bottom: 17/793
  51478. },
  51479. extraAttributes: {
  51480. "tailLength": {
  51481. name: "Tail Length",
  51482. power: 1,
  51483. type: "length",
  51484. base: math.unit(180, "cm")
  51485. },
  51486. "pawLength": {
  51487. name: "Paw Length",
  51488. power: 1,
  51489. type: "length",
  51490. base: math.unit(31, "cm")
  51491. },
  51492. }
  51493. },
  51494. back: {
  51495. height: math.unit(1.75, "meters"),
  51496. weight: math.unit(100, "kg"),
  51497. name: "Back",
  51498. image: {
  51499. source: "./media/characters/zarya/back.svg",
  51500. extra: 741/735,
  51501. bottom: 44/785
  51502. },
  51503. extraAttributes: {
  51504. "tailLength": {
  51505. name: "Tail Length",
  51506. power: 1,
  51507. type: "length",
  51508. base: math.unit(180, "cm")
  51509. },
  51510. "pawLength": {
  51511. name: "Paw Length",
  51512. power: 1,
  51513. type: "length",
  51514. base: math.unit(31, "cm")
  51515. },
  51516. }
  51517. },
  51518. frontNoTail: {
  51519. height: math.unit(1.75, "meters"),
  51520. weight: math.unit(100, "kg"),
  51521. name: "Front (No Tail)",
  51522. image: {
  51523. source: "./media/characters/zarya/front-no-tail.svg",
  51524. extra: 741/735,
  51525. bottom: 44/785
  51526. },
  51527. extraAttributes: {
  51528. "tailLength": {
  51529. name: "Tail Length",
  51530. power: 1,
  51531. type: "length",
  51532. base: math.unit(180, "cm")
  51533. },
  51534. "pawLength": {
  51535. name: "Paw Length",
  51536. power: 1,
  51537. type: "length",
  51538. base: math.unit(31, "cm")
  51539. },
  51540. }
  51541. },
  51542. dressed: {
  51543. height: math.unit(1.75, "meters"),
  51544. weight: math.unit(100, "kg"),
  51545. name: "Dressed",
  51546. image: {
  51547. source: "./media/characters/zarya/dressed.svg",
  51548. extra: 683/672,
  51549. bottom: 79/762
  51550. },
  51551. extraAttributes: {
  51552. "tailLength": {
  51553. name: "Tail Length",
  51554. power: 1,
  51555. type: "length",
  51556. base: math.unit(180, "cm")
  51557. },
  51558. "pawLength": {
  51559. name: "Paw Length",
  51560. power: 1,
  51561. type: "length",
  51562. base: math.unit(31, "cm")
  51563. },
  51564. }
  51565. },
  51566. },
  51567. [
  51568. {
  51569. name: "Micro",
  51570. height: math.unit(5, "cm")
  51571. },
  51572. {
  51573. name: "Normal",
  51574. height: math.unit(1.75, "meters"),
  51575. default: true
  51576. },
  51577. {
  51578. name: "Macro",
  51579. height: math.unit(122, "meters")
  51580. },
  51581. ]
  51582. ))
  51583. characterMakers.push(() => makeCharacter(
  51584. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  51585. {
  51586. front: {
  51587. height: math.unit(7.5, "feet"),
  51588. name: "Front",
  51589. image: {
  51590. source: "./media/characters/sven-hatisson/front.svg",
  51591. extra: 917/857,
  51592. bottom: 42/959
  51593. }
  51594. },
  51595. back: {
  51596. height: math.unit(7.5, "feet"),
  51597. name: "Back",
  51598. image: {
  51599. source: "./media/characters/sven-hatisson/back.svg",
  51600. extra: 903/856,
  51601. bottom: 15/918
  51602. }
  51603. },
  51604. },
  51605. [
  51606. {
  51607. name: "Base Height",
  51608. height: math.unit(7.5, "feet")
  51609. },
  51610. {
  51611. name: "Usual Height",
  51612. height: math.unit(13.5, "feet"),
  51613. default: true
  51614. },
  51615. {
  51616. name: "Smaller Macro",
  51617. height: math.unit(85, "feet")
  51618. },
  51619. {
  51620. name: "Moderate Macro",
  51621. height: math.unit(320, "feet")
  51622. },
  51623. {
  51624. name: "Large Macro",
  51625. height: math.unit(1000, "feet")
  51626. },
  51627. {
  51628. name: "Largest Size",
  51629. height: math.unit(2, "miles")
  51630. },
  51631. ]
  51632. ))
  51633. characterMakers.push(() => makeCharacter(
  51634. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  51635. {
  51636. side: {
  51637. height: math.unit(1.8, "meters"),
  51638. weight: math.unit(275, "kg"),
  51639. name: "Side",
  51640. image: {
  51641. source: "./media/characters/terra/side.svg",
  51642. extra: 1273/1147,
  51643. bottom: 0/1273
  51644. }
  51645. },
  51646. },
  51647. [
  51648. {
  51649. name: "Normal",
  51650. height: math.unit(16.2, "meters"),
  51651. default: true
  51652. },
  51653. ]
  51654. ))
  51655. characterMakers.push(() => makeCharacter(
  51656. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  51657. {
  51658. borzoiFront: {
  51659. height: math.unit(6 + 9/12, "feet"),
  51660. name: "Front",
  51661. image: {
  51662. source: "./media/characters/rae/borzoi-front.svg",
  51663. extra: 1161/1098,
  51664. bottom: 31/1192
  51665. },
  51666. form: "borzoi",
  51667. default: true
  51668. },
  51669. werewolfFront: {
  51670. height: math.unit(8 + 7/12, "feet"),
  51671. name: "Front",
  51672. image: {
  51673. source: "./media/characters/rae/werewolf-front.svg",
  51674. extra: 1411/1334,
  51675. bottom: 127/1538
  51676. },
  51677. form: "werewolf",
  51678. default: true
  51679. },
  51680. },
  51681. [
  51682. {
  51683. name: "Normal",
  51684. height: math.unit(6 + 9/12, "feet"),
  51685. default: true,
  51686. form: "borzoi"
  51687. },
  51688. {
  51689. name: "Normal",
  51690. height: math.unit(8 + 7/12, "feet"),
  51691. default: true,
  51692. form: "werewolf"
  51693. },
  51694. ],
  51695. {
  51696. "borzoi": {
  51697. name: "Borzoi",
  51698. default: true
  51699. },
  51700. "werewolf": {
  51701. name: "Werewolf",
  51702. },
  51703. }
  51704. ))
  51705. characterMakers.push(() => makeCharacter(
  51706. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  51707. {
  51708. front: {
  51709. height: math.unit(8 + 7/12, "feet"),
  51710. weight: math.unit(482, "lb"),
  51711. name: "Front",
  51712. image: {
  51713. source: "./media/characters/kit/front.svg",
  51714. extra: 1247/1103,
  51715. bottom: 41/1288
  51716. }
  51717. },
  51718. back: {
  51719. height: math.unit(8 + 7/12, "feet"),
  51720. weight: math.unit(482, "lb"),
  51721. name: "Back",
  51722. image: {
  51723. source: "./media/characters/kit/back.svg",
  51724. extra: 1252/1123,
  51725. bottom: 21/1273
  51726. }
  51727. },
  51728. paw: {
  51729. height: math.unit(1.46, "feet"),
  51730. name: "Paw",
  51731. image: {
  51732. source: "./media/characters/kit/paw.svg"
  51733. }
  51734. },
  51735. },
  51736. [
  51737. {
  51738. name: "Normal",
  51739. height: math.unit(2.61, "meters"),
  51740. default: true
  51741. },
  51742. {
  51743. name: "\"Tall\"",
  51744. height: math.unit(8.21, "meters")
  51745. },
  51746. {
  51747. name: "Tall",
  51748. height: math.unit(19.6, "meters")
  51749. },
  51750. {
  51751. name: "Very Tall",
  51752. height: math.unit(57.91, "meters")
  51753. },
  51754. {
  51755. name: "Semi-Macro",
  51756. height: math.unit(138.64, "meters")
  51757. },
  51758. {
  51759. name: "Macro",
  51760. height: math.unit(831.99, "meters")
  51761. },
  51762. {
  51763. name: "EX-Macro",
  51764. height: math.unit(96451121, "meters")
  51765. },
  51766. {
  51767. name: "S1-Omnipotent",
  51768. height: math.unit(4.42074e+9, "meters")
  51769. },
  51770. {
  51771. name: "S2-Omnipotent",
  51772. height: math.unit(9.42074e+17, "meters")
  51773. },
  51774. {
  51775. name: "Omnipotent",
  51776. height: math.unit(4.23112e+24, "meters")
  51777. },
  51778. {
  51779. name: "Hypergod",
  51780. height: math.unit(5.05176e+27, "meters")
  51781. },
  51782. {
  51783. name: "Hypergod-EX",
  51784. height: math.unit(9.45532e+49, "meters")
  51785. },
  51786. {
  51787. name: "Hypergod-SP",
  51788. height: math.unit(9.45532e+195, "meters")
  51789. },
  51790. ]
  51791. ))
  51792. characterMakers.push(() => makeCharacter(
  51793. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  51794. {
  51795. side: {
  51796. height: math.unit(0.6, "meters"),
  51797. weight: math.unit(24, "kg"),
  51798. name: "Side",
  51799. image: {
  51800. source: "./media/characters/celeste/side.svg",
  51801. extra: 810/517,
  51802. bottom: 53/863
  51803. }
  51804. },
  51805. },
  51806. [
  51807. {
  51808. name: "Velociraptor",
  51809. height: math.unit(0.6, "meters"),
  51810. default: true
  51811. },
  51812. {
  51813. name: "Utahraptor",
  51814. height: math.unit(1.8, "meters")
  51815. },
  51816. {
  51817. name: "Gallimimus",
  51818. height: math.unit(4.0, "meters")
  51819. },
  51820. {
  51821. name: "Large",
  51822. height: math.unit(20, "meters")
  51823. },
  51824. {
  51825. name: "Planetary",
  51826. height: math.unit(50, "megameters")
  51827. },
  51828. {
  51829. name: "Stellar",
  51830. height: math.unit(1.5, "gigameters")
  51831. },
  51832. {
  51833. name: "Galactic",
  51834. height: math.unit(100, "exameters")
  51835. },
  51836. ]
  51837. ))
  51838. characterMakers.push(() => makeCharacter(
  51839. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  51840. {
  51841. front: {
  51842. height: math.unit(6, "feet"),
  51843. weight: math.unit(210, "lb"),
  51844. name: "Front",
  51845. image: {
  51846. source: "./media/characters/glacia/front.svg",
  51847. extra: 958/901,
  51848. bottom: 45/1003
  51849. }
  51850. },
  51851. },
  51852. [
  51853. {
  51854. name: "Macro",
  51855. height: math.unit(1000, "meters"),
  51856. default: true
  51857. },
  51858. ]
  51859. ))
  51860. characterMakers.push(() => makeCharacter(
  51861. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  51862. {
  51863. front: {
  51864. height: math.unit(4, "meters"),
  51865. name: "Front",
  51866. image: {
  51867. source: "./media/characters/giri/front.svg",
  51868. extra: 966/894,
  51869. bottom: 21/987
  51870. }
  51871. },
  51872. },
  51873. [
  51874. {
  51875. name: "Normal",
  51876. height: math.unit(4, "meters"),
  51877. default: true
  51878. },
  51879. ]
  51880. ))
  51881. characterMakers.push(() => makeCharacter(
  51882. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  51883. {
  51884. back: {
  51885. height: math.unit(4, "feet"),
  51886. weight: math.unit(37, "lb"),
  51887. name: "Back",
  51888. image: {
  51889. source: "./media/characters/tin/back.svg",
  51890. extra: 845/780,
  51891. bottom: 28/873
  51892. }
  51893. },
  51894. },
  51895. [
  51896. {
  51897. name: "Normal",
  51898. height: math.unit(4, "feet"),
  51899. default: true
  51900. },
  51901. ]
  51902. ))
  51903. characterMakers.push(() => makeCharacter(
  51904. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  51905. {
  51906. front: {
  51907. height: math.unit(25, "feet"),
  51908. name: "Front",
  51909. image: {
  51910. source: "./media/characters/cadenza-vivace/front.svg",
  51911. extra: 1842/1578,
  51912. bottom: 30/1872
  51913. }
  51914. },
  51915. },
  51916. [
  51917. {
  51918. name: "Macro",
  51919. height: math.unit(25, "feet"),
  51920. default: true
  51921. },
  51922. ]
  51923. ))
  51924. characterMakers.push(() => makeCharacter(
  51925. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  51926. {
  51927. front: {
  51928. height: math.unit(10, "feet"),
  51929. weight: math.unit(625, "kg"),
  51930. name: "Front",
  51931. image: {
  51932. source: "./media/characters/zain/front.svg",
  51933. extra: 1682/1498,
  51934. bottom: 223/1905
  51935. }
  51936. },
  51937. back: {
  51938. height: math.unit(10, "feet"),
  51939. weight: math.unit(625, "kg"),
  51940. name: "Back",
  51941. image: {
  51942. source: "./media/characters/zain/back.svg",
  51943. extra: 1814/1657,
  51944. bottom: 152/1966
  51945. }
  51946. },
  51947. head: {
  51948. height: math.unit(10, "feet"),
  51949. weight: math.unit(625, "kg"),
  51950. name: "Head",
  51951. image: {
  51952. source: "./media/characters/zain/head.svg",
  51953. extra: 1059/762,
  51954. bottom: 0/1059
  51955. }
  51956. },
  51957. },
  51958. [
  51959. {
  51960. name: "Normal",
  51961. height: math.unit(10, "feet"),
  51962. default: true
  51963. },
  51964. ]
  51965. ))
  51966. characterMakers.push(() => makeCharacter(
  51967. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  51968. {
  51969. front: {
  51970. height: math.unit(6 + 5/12, "feet"),
  51971. weight: math.unit(750, "lb"),
  51972. name: "Front",
  51973. image: {
  51974. source: "./media/characters/ruchex/front.svg",
  51975. extra: 877/820,
  51976. bottom: 17/894
  51977. },
  51978. extraAttributes: {
  51979. "width": {
  51980. name: "Width",
  51981. power: 1,
  51982. type: "length",
  51983. base: math.unit(4.757, "feet")
  51984. },
  51985. }
  51986. },
  51987. },
  51988. [
  51989. {
  51990. name: "Normal",
  51991. height: math.unit(6 + 5/12, "feet"),
  51992. default: true
  51993. },
  51994. ]
  51995. ))
  51996. characterMakers.push(() => makeCharacter(
  51997. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  51998. {
  51999. dressedFront: {
  52000. height: math.unit(191, "cm"),
  52001. weight: math.unit(80, "kg"),
  52002. name: "Front",
  52003. image: {
  52004. source: "./media/characters/buster/dressed-front.svg",
  52005. extra: 1022/973,
  52006. bottom: 69/1091
  52007. }
  52008. },
  52009. dressedBack: {
  52010. height: math.unit(191, "cm"),
  52011. weight: math.unit(80, "kg"),
  52012. name: "Back",
  52013. image: {
  52014. source: "./media/characters/buster/dressed-back.svg",
  52015. extra: 1018/970,
  52016. bottom: 55/1073
  52017. }
  52018. },
  52019. nudeFront: {
  52020. height: math.unit(191, "cm"),
  52021. weight: math.unit(80, "kg"),
  52022. name: "Front (Nude)",
  52023. image: {
  52024. source: "./media/characters/buster/nude-front.svg",
  52025. extra: 1022/973,
  52026. bottom: 69/1091
  52027. }
  52028. },
  52029. nudeBack: {
  52030. height: math.unit(191, "cm"),
  52031. weight: math.unit(80, "kg"),
  52032. name: "Back (Nude)",
  52033. image: {
  52034. source: "./media/characters/buster/nude-back.svg",
  52035. extra: 1018/970,
  52036. bottom: 55/1073
  52037. }
  52038. },
  52039. dick: {
  52040. height: math.unit(2.59, "feet"),
  52041. name: "Dick",
  52042. image: {
  52043. source: "./media/characters/buster/dick.svg"
  52044. }
  52045. },
  52046. ass: {
  52047. height: math.unit(1.2, "feet"),
  52048. name: "Ass",
  52049. image: {
  52050. source: "./media/characters/buster/ass.svg"
  52051. }
  52052. },
  52053. },
  52054. [
  52055. {
  52056. name: "Normal",
  52057. height: math.unit(191, "cm"),
  52058. default: true
  52059. },
  52060. ]
  52061. ))
  52062. characterMakers.push(() => makeCharacter(
  52063. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  52064. {
  52065. side: {
  52066. height: math.unit(8.1, "feet"),
  52067. weight: math.unit(3500, "lb"),
  52068. name: "Side",
  52069. image: {
  52070. source: "./media/characters/sonya/side.svg",
  52071. extra: 1730/1317,
  52072. bottom: 86/1816
  52073. }
  52074. },
  52075. },
  52076. [
  52077. {
  52078. name: "Normal",
  52079. height: math.unit(8.1, "feet"),
  52080. default: true
  52081. },
  52082. ]
  52083. ))
  52084. characterMakers.push(() => makeCharacter(
  52085. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  52086. {
  52087. front: {
  52088. height: math.unit(6, "feet"),
  52089. weight: math.unit(150, "lb"),
  52090. name: "Front",
  52091. image: {
  52092. source: "./media/characters/cadence-andrysiak/front.svg",
  52093. extra: 1164/1121,
  52094. bottom: 60/1224
  52095. }
  52096. },
  52097. back: {
  52098. height: math.unit(6, "feet"),
  52099. weight: math.unit(150, "lb"),
  52100. name: "Back",
  52101. image: {
  52102. source: "./media/characters/cadence-andrysiak/back.svg",
  52103. extra: 1200/1165,
  52104. bottom: 9/1209
  52105. }
  52106. },
  52107. dressed: {
  52108. height: math.unit(6, "feet"),
  52109. weight: math.unit(150, "lb"),
  52110. name: "Dressed",
  52111. image: {
  52112. source: "./media/characters/cadence-andrysiak/dressed.svg",
  52113. extra: 1164/1121,
  52114. bottom: 60/1224
  52115. }
  52116. },
  52117. },
  52118. [
  52119. {
  52120. name: "Micro",
  52121. height: math.unit(1, "mm")
  52122. },
  52123. {
  52124. name: "Normal",
  52125. height: math.unit(6, "feet"),
  52126. default: true
  52127. },
  52128. ]
  52129. ))
  52130. characterMakers.push(() => makeCharacter(
  52131. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  52132. {
  52133. front: {
  52134. height: math.unit(60, "inches"),
  52135. weight: math.unit(16, "lb"),
  52136. preyCapacity: math.unit(80, "liters"),
  52137. name: "Front",
  52138. image: {
  52139. source: "./media/characters/penny-lynx/front.svg",
  52140. extra: 1959/1769,
  52141. bottom: 49/2008
  52142. }
  52143. },
  52144. },
  52145. [
  52146. {
  52147. name: "Nokia",
  52148. height: math.unit(2, "inches")
  52149. },
  52150. {
  52151. name: "Desktop",
  52152. height: math.unit(24, "inches")
  52153. },
  52154. {
  52155. name: "TV",
  52156. height: math.unit(60, "inches")
  52157. },
  52158. {
  52159. name: "Jumbotron",
  52160. height: math.unit(12, "feet")
  52161. },
  52162. {
  52163. name: "Billboard",
  52164. height: math.unit(48, "feet"),
  52165. default: true
  52166. },
  52167. {
  52168. name: "IMAX",
  52169. height: math.unit(96, "feet")
  52170. },
  52171. {
  52172. name: "SINGULARITY",
  52173. height: math.unit(864938, "miles")
  52174. },
  52175. ]
  52176. ))
  52177. characterMakers.push(() => makeCharacter(
  52178. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  52179. {
  52180. front: {
  52181. height: math.unit(5 + 4/12, "feet"),
  52182. weight: math.unit(230, "lb"),
  52183. name: "Front",
  52184. image: {
  52185. source: "./media/characters/sukebe/front.svg",
  52186. extra: 2130/2038,
  52187. bottom: 90/2220
  52188. }
  52189. },
  52190. back: {
  52191. height: math.unit(3.48, "feet"),
  52192. weight: math.unit(230, "lb"),
  52193. name: "Back",
  52194. image: {
  52195. source: "./media/characters/sukebe/back.svg",
  52196. extra: 1670/1604,
  52197. bottom: 0/1670
  52198. }
  52199. },
  52200. },
  52201. [
  52202. {
  52203. name: "Normal",
  52204. height: math.unit(5 + 4/12, "feet"),
  52205. default: true
  52206. },
  52207. ]
  52208. ))
  52209. characterMakers.push(() => makeCharacter(
  52210. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  52211. {
  52212. front: {
  52213. height: math.unit(6, "feet"),
  52214. name: "Front",
  52215. image: {
  52216. source: "./media/characters/nylla/front.svg",
  52217. extra: 1868/1699,
  52218. bottom: 97/1965
  52219. }
  52220. },
  52221. back: {
  52222. height: math.unit(6, "feet"),
  52223. name: "Back",
  52224. image: {
  52225. source: "./media/characters/nylla/back.svg",
  52226. extra: 1889/1712,
  52227. bottom: 93/1982
  52228. }
  52229. },
  52230. frontNsfw: {
  52231. height: math.unit(6, "feet"),
  52232. name: "Front (NSFW)",
  52233. image: {
  52234. source: "./media/characters/nylla/front-nsfw.svg",
  52235. extra: 1868/1699,
  52236. bottom: 97/1965
  52237. },
  52238. extraAttributes: {
  52239. "dickLength": {
  52240. name: "Dick Length",
  52241. power: 1,
  52242. type: "length",
  52243. base: math.unit(1.4, "feet")
  52244. },
  52245. "cumVolume": {
  52246. name: "Cum Volume",
  52247. power: 3,
  52248. type: "volume",
  52249. base: math.unit(100, "mL")
  52250. },
  52251. }
  52252. },
  52253. backNsfw: {
  52254. height: math.unit(6, "feet"),
  52255. name: "Back (NSFW)",
  52256. image: {
  52257. source: "./media/characters/nylla/back-nsfw.svg",
  52258. extra: 1889/1712,
  52259. bottom: 93/1982
  52260. }
  52261. },
  52262. maw: {
  52263. height: math.unit(2.10, "feet"),
  52264. name: "Maw",
  52265. image: {
  52266. source: "./media/characters/nylla/maw.svg"
  52267. }
  52268. },
  52269. paws: {
  52270. height: math.unit(2.06, "feet"),
  52271. name: "Paws",
  52272. image: {
  52273. source: "./media/characters/nylla/paws.svg"
  52274. }
  52275. },
  52276. muzzle: {
  52277. height: math.unit(0.61, "feet"),
  52278. name: "Muzzle",
  52279. image: {
  52280. source: "./media/characters/nylla/muzzle.svg"
  52281. }
  52282. },
  52283. sheath: {
  52284. height: math.unit(1.305, "feet"),
  52285. name: "Sheath",
  52286. image: {
  52287. source: "./media/characters/nylla/sheath.svg"
  52288. }
  52289. },
  52290. },
  52291. [
  52292. {
  52293. name: "Micro",
  52294. height: math.unit(7.5, "inches")
  52295. },
  52296. {
  52297. name: "Normal",
  52298. height: math.unit(7, "feet"),
  52299. default: true
  52300. },
  52301. {
  52302. name: "Macro",
  52303. height: math.unit(60, "feet")
  52304. },
  52305. {
  52306. name: "Mega",
  52307. height: math.unit(200, "feet")
  52308. },
  52309. ]
  52310. ))
  52311. characterMakers.push(() => makeCharacter(
  52312. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  52313. {
  52314. front: {
  52315. height: math.unit(10, "feet"),
  52316. weight: math.unit(2300, "lb"),
  52317. name: "Front",
  52318. image: {
  52319. source: "./media/characters/hunt3r/front.svg",
  52320. extra: 1909/1742,
  52321. bottom: 46/1955
  52322. }
  52323. },
  52324. },
  52325. [
  52326. {
  52327. name: "Normal",
  52328. height: math.unit(10, "feet"),
  52329. default: true
  52330. },
  52331. ]
  52332. ))
  52333. characterMakers.push(() => makeCharacter(
  52334. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  52335. {
  52336. dressed: {
  52337. height: math.unit(11, "feet"),
  52338. weight: math.unit(18500, "lb"),
  52339. preyCapacity: math.unit(9, "people"),
  52340. name: "Dressed",
  52341. image: {
  52342. source: "./media/characters/cylphis/dressed.svg",
  52343. extra: 1028/1003,
  52344. bottom: 75/1103
  52345. },
  52346. },
  52347. undressed: {
  52348. height: math.unit(11, "feet"),
  52349. weight: math.unit(18500, "lb"),
  52350. preyCapacity: math.unit(9, "people"),
  52351. name: "Undressed",
  52352. image: {
  52353. source: "./media/characters/cylphis/undressed.svg",
  52354. extra: 1028/1003,
  52355. bottom: 75/1103
  52356. }
  52357. },
  52358. full: {
  52359. height: math.unit(11, "feet"),
  52360. weight: math.unit(18500 + 150*9, "lb"),
  52361. preyCapacity: math.unit(9, "people"),
  52362. name: "Full",
  52363. image: {
  52364. source: "./media/characters/cylphis/full.svg",
  52365. extra: 1028/1003,
  52366. bottom: 75/1103
  52367. }
  52368. },
  52369. },
  52370. [
  52371. {
  52372. name: "Small",
  52373. height: math.unit(8, "feet")
  52374. },
  52375. {
  52376. name: "Normal",
  52377. height: math.unit(11, "feet"),
  52378. default: true
  52379. },
  52380. ]
  52381. ))
  52382. characterMakers.push(() => makeCharacter(
  52383. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  52384. {
  52385. front: {
  52386. height: math.unit(2 + 7/12, "feet"),
  52387. name: "Front",
  52388. image: {
  52389. source: "./media/characters/orishan/front.svg",
  52390. extra: 1058/1023,
  52391. bottom: 23/1081
  52392. }
  52393. },
  52394. back: {
  52395. height: math.unit(2 + 7/12, "feet"),
  52396. name: "Back",
  52397. image: {
  52398. source: "./media/characters/orishan/back.svg",
  52399. extra: 1058/1023,
  52400. bottom: 23/1081
  52401. }
  52402. },
  52403. },
  52404. [
  52405. {
  52406. name: "Micro",
  52407. height: math.unit(2, "cm")
  52408. },
  52409. {
  52410. name: "Normal",
  52411. height: math.unit(2 + 7/12, "feet"),
  52412. default: true
  52413. },
  52414. ]
  52415. ))
  52416. characterMakers.push(() => makeCharacter(
  52417. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  52418. {
  52419. front: {
  52420. height: math.unit(3, "meters"),
  52421. weight: math.unit(508, "kg"),
  52422. name: "Front",
  52423. image: {
  52424. source: "./media/characters/seranis/front.svg",
  52425. extra: 1478/1454,
  52426. bottom: 41/1519
  52427. }
  52428. },
  52429. },
  52430. [
  52431. {
  52432. name: "Normal",
  52433. height: math.unit(3, "meters"),
  52434. default: true
  52435. },
  52436. {
  52437. name: "Macro",
  52438. height: math.unit(108, "meters")
  52439. },
  52440. {
  52441. name: "Megamacro",
  52442. height: math.unit(1250, "meters")
  52443. },
  52444. ]
  52445. ))
  52446. characterMakers.push(() => makeCharacter(
  52447. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  52448. {
  52449. undressed: {
  52450. height: math.unit(5 + 3/12, "feet"),
  52451. name: "Undressed",
  52452. image: {
  52453. source: "./media/characters/ankou/undressed.svg",
  52454. extra: 1301/1213,
  52455. bottom: 87/1388
  52456. }
  52457. },
  52458. dressed: {
  52459. height: math.unit(5 + 3/12, "feet"),
  52460. name: "Dressed",
  52461. image: {
  52462. source: "./media/characters/ankou/dressed.svg",
  52463. extra: 1301/1213,
  52464. bottom: 87/1388
  52465. }
  52466. },
  52467. head: {
  52468. height: math.unit(1.61, "feet"),
  52469. name: "Head",
  52470. image: {
  52471. source: "./media/characters/ankou/head.svg"
  52472. }
  52473. },
  52474. },
  52475. [
  52476. {
  52477. name: "Normal",
  52478. height: math.unit(5 + 3/12, "feet"),
  52479. default: true
  52480. },
  52481. ]
  52482. ))
  52483. characterMakers.push(() => makeCharacter(
  52484. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  52485. {
  52486. side: {
  52487. height: math.unit(6 + 3/12, "feet"),
  52488. weight: math.unit(200, "kg"),
  52489. name: "Side",
  52490. image: {
  52491. source: "./media/characters/juniper-skunktaur/side.svg",
  52492. extra: 1574/1229,
  52493. bottom: 38/1612
  52494. }
  52495. },
  52496. front: {
  52497. height: math.unit(6 + 3/12, "feet"),
  52498. weight: math.unit(200, "kg"),
  52499. name: "Front",
  52500. image: {
  52501. source: "./media/characters/juniper-skunktaur/front.svg",
  52502. extra: 1337/1278,
  52503. bottom: 22/1359
  52504. }
  52505. },
  52506. back: {
  52507. height: math.unit(6 + 3/12, "feet"),
  52508. weight: math.unit(200, "kg"),
  52509. name: "Back",
  52510. image: {
  52511. source: "./media/characters/juniper-skunktaur/back.svg",
  52512. extra: 1618/1273,
  52513. bottom: 13/1631
  52514. }
  52515. },
  52516. top: {
  52517. height: math.unit(2.62, "feet"),
  52518. weight: math.unit(200, "kg"),
  52519. name: "Top",
  52520. image: {
  52521. source: "./media/characters/juniper-skunktaur/top.svg"
  52522. }
  52523. },
  52524. },
  52525. [
  52526. {
  52527. name: "Normal",
  52528. height: math.unit(6 + 3/12, "feet"),
  52529. default: true
  52530. },
  52531. ]
  52532. ))
  52533. characterMakers.push(() => makeCharacter(
  52534. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  52535. {
  52536. front: {
  52537. height: math.unit(20.5, "feet"),
  52538. name: "Front",
  52539. image: {
  52540. source: "./media/characters/rei/front.svg",
  52541. extra: 1349/1195,
  52542. bottom: 31/1380
  52543. }
  52544. },
  52545. back: {
  52546. height: math.unit(20.5, "feet"),
  52547. name: "Back",
  52548. image: {
  52549. source: "./media/characters/rei/back.svg",
  52550. extra: 1358/1204,
  52551. bottom: 22/1380
  52552. }
  52553. },
  52554. pawsDigi: {
  52555. height: math.unit(3.45, "feet"),
  52556. name: "Paws (Digi)",
  52557. image: {
  52558. source: "./media/characters/rei/paws-digi.svg"
  52559. }
  52560. },
  52561. pawsPlanti: {
  52562. height: math.unit(3.45, "feet"),
  52563. name: "Paws (Planti)",
  52564. image: {
  52565. source: "./media/characters/rei/paws-planti.svg"
  52566. }
  52567. },
  52568. },
  52569. [
  52570. {
  52571. name: "Normal",
  52572. height: math.unit(20.5, "feet"),
  52573. default: true
  52574. },
  52575. ]
  52576. ))
  52577. characterMakers.push(() => makeCharacter(
  52578. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  52579. {
  52580. front: {
  52581. height: math.unit(5 + 11/12, "feet"),
  52582. name: "Front",
  52583. image: {
  52584. source: "./media/characters/carina/front.svg",
  52585. extra: 1720/1449,
  52586. bottom: 14/1734
  52587. }
  52588. },
  52589. back: {
  52590. height: math.unit(5 + 11/12, "feet"),
  52591. name: "Back",
  52592. image: {
  52593. source: "./media/characters/carina/back.svg",
  52594. extra: 1493/1445,
  52595. bottom: 17/1510
  52596. }
  52597. },
  52598. paw: {
  52599. height: math.unit(0.92, "feet"),
  52600. name: "Paw",
  52601. image: {
  52602. source: "./media/characters/carina/paw.svg"
  52603. }
  52604. },
  52605. },
  52606. [
  52607. {
  52608. name: "Normal",
  52609. height: math.unit(5 + 11/12, "feet"),
  52610. default: true
  52611. },
  52612. ]
  52613. ))
  52614. characterMakers.push(() => makeCharacter(
  52615. { name: "Maya", species: ["cat"], tags: ["anthro", "taur"] },
  52616. {
  52617. normal_front: {
  52618. height: math.unit(4.88, "meters"),
  52619. name: "Front",
  52620. image: {
  52621. source: "./media/characters/maya/normal-front.svg",
  52622. extra: 1222/1145,
  52623. bottom: 57/1279
  52624. },
  52625. form: "normal",
  52626. default: true
  52627. },
  52628. monstrous_front: {
  52629. height: math.unit(10, "meters"),
  52630. name: "Front",
  52631. image: {
  52632. source: "./media/characters/maya/monstrous-front.svg",
  52633. extra: 1523/1109,
  52634. bottom: 113/1636
  52635. },
  52636. form: "monstrous",
  52637. extraAttributes: {
  52638. "swallowSize": {
  52639. name: "Tailmaw Bite Size",
  52640. power: 3,
  52641. type: "volume",
  52642. base: math.unit(43000, "liters")
  52643. },
  52644. }
  52645. },
  52646. taur_front: {
  52647. height: math.unit(10, "meters"),
  52648. name: "Front",
  52649. image: {
  52650. source: "./media/characters/maya/taur-front.svg",
  52651. extra: 743/506,
  52652. bottom: 101/844
  52653. },
  52654. form: "taur",
  52655. },
  52656. },
  52657. [
  52658. {
  52659. name: "Normal",
  52660. height: math.unit(4.88, "meters"),
  52661. default: true,
  52662. form: "normal"
  52663. },
  52664. {
  52665. name: "Macro",
  52666. height: math.unit(38.1, "meters"),
  52667. form: "normal"
  52668. },
  52669. {
  52670. name: "Macro+",
  52671. height: math.unit(152.4, "meters"),
  52672. form: "normal"
  52673. },
  52674. {
  52675. name: "Macro++",
  52676. height: math.unit(16.09, "km"),
  52677. form: "normal"
  52678. },
  52679. {
  52680. name: "Mega-macro",
  52681. height: math.unit(700, "megameters"),
  52682. form: "normal"
  52683. },
  52684. {
  52685. name: "Satiated",
  52686. height: math.unit(10, "meters"),
  52687. default: true,
  52688. form: "monstrous"
  52689. },
  52690. {
  52691. name: "Hungry",
  52692. height: math.unit(75, "meters"),
  52693. form: "monstrous"
  52694. },
  52695. {
  52696. name: "Ravenous",
  52697. height: math.unit(500, "meters"),
  52698. form: "monstrous"
  52699. },
  52700. {
  52701. name: "\"Normal\"",
  52702. height: math.unit(10, "meters"),
  52703. form: "taur"
  52704. },
  52705. {
  52706. name: "Macro",
  52707. height: math.unit(50, "meters"),
  52708. form: "taur"
  52709. },
  52710. ],
  52711. {
  52712. "normal": {
  52713. name: "Normal",
  52714. default: true
  52715. },
  52716. "monstrous": {
  52717. name: "Monstrous",
  52718. },
  52719. "taur": {
  52720. name: "Taur",
  52721. },
  52722. }
  52723. ))
  52724. characterMakers.push(() => makeCharacter(
  52725. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  52726. {
  52727. front: {
  52728. height: math.unit(6 + 2/12, "feet"),
  52729. weight: math.unit(500, "lb"),
  52730. preyCapacity: math.unit(4, "people"),
  52731. name: "Front",
  52732. image: {
  52733. source: "./media/characters/yepir/front.svg"
  52734. }
  52735. },
  52736. side: {
  52737. height: math.unit(6 + 2/12, "feet"),
  52738. weight: math.unit(500, "lb"),
  52739. preyCapacity: math.unit(4, "people"),
  52740. name: "Side",
  52741. image: {
  52742. source: "./media/characters/yepir/side.svg"
  52743. }
  52744. },
  52745. paw: {
  52746. height: math.unit(1.05, "feet"),
  52747. name: "Paw",
  52748. image: {
  52749. source: "./media/characters/yepir/paw.svg"
  52750. }
  52751. },
  52752. },
  52753. [
  52754. {
  52755. name: "Normal",
  52756. height: math.unit(6 + 2/12, "feet"),
  52757. default: true
  52758. },
  52759. ]
  52760. ))
  52761. characterMakers.push(() => makeCharacter(
  52762. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  52763. {
  52764. front: {
  52765. height: math.unit(5 + 4/12, "feet"),
  52766. name: "Front",
  52767. image: {
  52768. source: "./media/characters/russec/front.svg",
  52769. extra: 1926/1626,
  52770. bottom: 72/1998
  52771. }
  52772. },
  52773. back: {
  52774. height: math.unit(5 + 4/12, "feet"),
  52775. name: "Back",
  52776. image: {
  52777. source: "./media/characters/russec/back.svg",
  52778. extra: 1910/1591,
  52779. bottom: 48/1958
  52780. }
  52781. },
  52782. },
  52783. [
  52784. {
  52785. name: "Small",
  52786. height: math.unit(5 + 4/12, "feet")
  52787. },
  52788. {
  52789. name: "Normal",
  52790. height: math.unit(72, "feet"),
  52791. default: true
  52792. },
  52793. ]
  52794. ))
  52795. characterMakers.push(() => makeCharacter(
  52796. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  52797. {
  52798. side: {
  52799. height: math.unit(12, "feet"),
  52800. name: "Side",
  52801. image: {
  52802. source: "./media/characters/cianus/side.svg",
  52803. extra: 808/526,
  52804. bottom: 61/869
  52805. }
  52806. },
  52807. },
  52808. [
  52809. {
  52810. name: "Normal",
  52811. height: math.unit(12, "feet"),
  52812. default: true
  52813. },
  52814. ]
  52815. ))
  52816. characterMakers.push(() => makeCharacter(
  52817. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  52818. {
  52819. front: {
  52820. height: math.unit(9 + 6/12, "feet"),
  52821. weight: math.unit(300, "lb"),
  52822. name: "Front",
  52823. image: {
  52824. source: "./media/characters/ahab/front.svg",
  52825. extra: 1897/1868,
  52826. bottom: 121/2018
  52827. }
  52828. },
  52829. frontNsfw: {
  52830. height: math.unit(9 + 6/12, "feet"),
  52831. weight: math.unit(300, "lb"),
  52832. name: "Front-nsfw",
  52833. image: {
  52834. source: "./media/characters/ahab/front-nsfw.svg",
  52835. extra: 1897/1868,
  52836. bottom: 121/2018
  52837. }
  52838. },
  52839. },
  52840. [
  52841. {
  52842. name: "Normal",
  52843. height: math.unit(9 + 6/12, "feet")
  52844. },
  52845. {
  52846. name: "Macro",
  52847. height: math.unit(657, "feet"),
  52848. default: true
  52849. },
  52850. ]
  52851. ))
  52852. characterMakers.push(() => makeCharacter(
  52853. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  52854. {
  52855. front: {
  52856. height: math.unit(2.69, "meters"),
  52857. weight: math.unit(132, "kg"),
  52858. name: "Front",
  52859. image: {
  52860. source: "./media/characters/aarkus/front.svg",
  52861. extra: 1400/1231,
  52862. bottom: 34/1434
  52863. }
  52864. },
  52865. back: {
  52866. height: math.unit(2.69, "meters"),
  52867. weight: math.unit(132, "kg"),
  52868. name: "Back",
  52869. image: {
  52870. source: "./media/characters/aarkus/back.svg",
  52871. extra: 1381/1218,
  52872. bottom: 30/1411
  52873. }
  52874. },
  52875. frontNsfw: {
  52876. height: math.unit(2.69, "meters"),
  52877. weight: math.unit(132, "kg"),
  52878. name: "Front (NSFW)",
  52879. image: {
  52880. source: "./media/characters/aarkus/front-nsfw.svg",
  52881. extra: 1400/1231,
  52882. bottom: 34/1434
  52883. }
  52884. },
  52885. foot: {
  52886. height: math.unit(1.45, "feet"),
  52887. name: "Foot",
  52888. image: {
  52889. source: "./media/characters/aarkus/foot.svg"
  52890. }
  52891. },
  52892. head: {
  52893. height: math.unit(2.85, "feet"),
  52894. name: "Head",
  52895. image: {
  52896. source: "./media/characters/aarkus/head.svg"
  52897. }
  52898. },
  52899. headAlt: {
  52900. height: math.unit(3.07, "feet"),
  52901. name: "Head (Alt)",
  52902. image: {
  52903. source: "./media/characters/aarkus/head-alt.svg"
  52904. }
  52905. },
  52906. mouth: {
  52907. height: math.unit(1.25, "feet"),
  52908. name: "Mouth",
  52909. image: {
  52910. source: "./media/characters/aarkus/mouth.svg"
  52911. }
  52912. },
  52913. dick: {
  52914. height: math.unit(1.77, "feet"),
  52915. name: "Dick",
  52916. image: {
  52917. source: "./media/characters/aarkus/dick.svg"
  52918. }
  52919. },
  52920. },
  52921. [
  52922. {
  52923. name: "Normal",
  52924. height: math.unit(2.69, "meters"),
  52925. default: true
  52926. },
  52927. {
  52928. name: "Macro",
  52929. height: math.unit(269, "meters")
  52930. },
  52931. {
  52932. name: "Macro+",
  52933. height: math.unit(672.5, "meters")
  52934. },
  52935. {
  52936. name: "Megamacro",
  52937. height: math.unit(2.017, "km")
  52938. },
  52939. ]
  52940. ))
  52941. characterMakers.push(() => makeCharacter(
  52942. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  52943. {
  52944. front: {
  52945. height: math.unit(23.47, "cm"),
  52946. weight: math.unit(600, "grams"),
  52947. name: "Front",
  52948. image: {
  52949. source: "./media/characters/diode/front.svg",
  52950. extra: 1778/1396,
  52951. bottom: 95/1873
  52952. }
  52953. },
  52954. side: {
  52955. height: math.unit(23.47, "cm"),
  52956. weight: math.unit(600, "grams"),
  52957. name: "Side",
  52958. image: {
  52959. source: "./media/characters/diode/side.svg",
  52960. extra: 1831/1404,
  52961. bottom: 86/1917
  52962. }
  52963. },
  52964. wings: {
  52965. height: math.unit(0.683, "feet"),
  52966. name: "Wings",
  52967. image: {
  52968. source: "./media/characters/diode/wings.svg"
  52969. }
  52970. },
  52971. },
  52972. [
  52973. {
  52974. name: "Normal",
  52975. height: math.unit(23.47, "cm"),
  52976. default: true
  52977. },
  52978. ]
  52979. ))
  52980. characterMakers.push(() => makeCharacter(
  52981. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  52982. {
  52983. front: {
  52984. height: math.unit(6 + 3/12, "feet"),
  52985. weight: math.unit(250, "lb"),
  52986. name: "Front",
  52987. image: {
  52988. source: "./media/characters/reika/front.svg",
  52989. extra: 1120/1078,
  52990. bottom: 86/1206
  52991. }
  52992. },
  52993. },
  52994. [
  52995. {
  52996. name: "Normal",
  52997. height: math.unit(6 + 3/12, "feet"),
  52998. default: true
  52999. },
  53000. ]
  53001. ))
  53002. characterMakers.push(() => makeCharacter(
  53003. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  53004. {
  53005. front: {
  53006. height: math.unit(16 + 8/12, "feet"),
  53007. weight: math.unit(9000, "lb"),
  53008. name: "Front",
  53009. image: {
  53010. source: "./media/characters/lokuto-takama/front.svg",
  53011. extra: 1774/1632,
  53012. bottom: 147/1921
  53013. },
  53014. extraAttributes: {
  53015. "bustWidth": {
  53016. name: "Bust Width",
  53017. power: 1,
  53018. type: "length",
  53019. base: math.unit(2.4, "meters")
  53020. },
  53021. "breastWeight": {
  53022. name: "Breast Weight",
  53023. power: 3,
  53024. type: "mass",
  53025. base: math.unit(1000, "kg")
  53026. },
  53027. }
  53028. },
  53029. },
  53030. [
  53031. {
  53032. name: "Normal",
  53033. height: math.unit(16 + 8/12, "feet"),
  53034. default: true
  53035. },
  53036. ]
  53037. ))
  53038. characterMakers.push(() => makeCharacter(
  53039. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  53040. {
  53041. front: {
  53042. height: math.unit(10, "cm"),
  53043. weight: math.unit(850, "grams"),
  53044. name: "Front",
  53045. image: {
  53046. source: "./media/characters/owak-bone/front.svg",
  53047. extra: 1965/1801,
  53048. bottom: 31/1996
  53049. }
  53050. },
  53051. },
  53052. [
  53053. {
  53054. name: "Normal",
  53055. height: math.unit(10, "cm"),
  53056. default: true
  53057. },
  53058. ]
  53059. ))
  53060. characterMakers.push(() => makeCharacter(
  53061. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  53062. {
  53063. front: {
  53064. height: math.unit(2 + 6/12, "feet"),
  53065. weight: math.unit(9, "lb"),
  53066. name: "Front",
  53067. image: {
  53068. source: "./media/characters/muffin/front.svg",
  53069. extra: 1220/1195,
  53070. bottom: 84/1304
  53071. }
  53072. },
  53073. },
  53074. [
  53075. {
  53076. name: "Normal",
  53077. height: math.unit(2 + 6/12, "feet"),
  53078. default: true
  53079. },
  53080. ]
  53081. ))
  53082. characterMakers.push(() => makeCharacter(
  53083. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  53084. {
  53085. front: {
  53086. height: math.unit(7, "feet"),
  53087. name: "Front",
  53088. image: {
  53089. source: "./media/characters/chimera/front.svg",
  53090. extra: 1752/1614,
  53091. bottom: 68/1820
  53092. }
  53093. },
  53094. },
  53095. [
  53096. {
  53097. name: "Normal",
  53098. height: math.unit(7, "feet")
  53099. },
  53100. {
  53101. name: "Gigamacro",
  53102. height: math.unit(2.9, "gigameters"),
  53103. default: true
  53104. },
  53105. {
  53106. name: "Universal",
  53107. height: math.unit(1.56e26, "yottameters")
  53108. },
  53109. ]
  53110. ))
  53111. characterMakers.push(() => makeCharacter(
  53112. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  53113. {
  53114. front: {
  53115. height: math.unit(3, "feet"),
  53116. weight: math.unit(20, "lb"),
  53117. name: "Front",
  53118. image: {
  53119. source: "./media/characters/kit-fennec-fox/front.svg",
  53120. extra: 1027/932,
  53121. bottom: 16/1043
  53122. }
  53123. },
  53124. back: {
  53125. height: math.unit(3, "feet"),
  53126. weight: math.unit(20, "lb"),
  53127. name: "Back",
  53128. image: {
  53129. source: "./media/characters/kit-fennec-fox/back.svg",
  53130. extra: 1027/932,
  53131. bottom: 16/1043
  53132. }
  53133. },
  53134. },
  53135. [
  53136. {
  53137. name: "Normal",
  53138. height: math.unit(3, "feet"),
  53139. default: true
  53140. },
  53141. ]
  53142. ))
  53143. characterMakers.push(() => makeCharacter(
  53144. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  53145. {
  53146. front: {
  53147. height: math.unit(167, "cm"),
  53148. name: "Front",
  53149. image: {
  53150. source: "./media/characters/blue-otter/front.svg",
  53151. extra: 1951/1920,
  53152. bottom: 31/1982
  53153. }
  53154. },
  53155. },
  53156. [
  53157. {
  53158. name: "Otter-Sized",
  53159. height: math.unit(100, "cm")
  53160. },
  53161. {
  53162. name: "Normal",
  53163. height: math.unit(167, "cm"),
  53164. default: true
  53165. },
  53166. ]
  53167. ))
  53168. characterMakers.push(() => makeCharacter(
  53169. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  53170. {
  53171. front: {
  53172. height: math.unit(4 + 4/12, "feet"),
  53173. name: "Front",
  53174. image: {
  53175. source: "./media/characters/maverick-leopard-gecko/front.svg",
  53176. extra: 1072/1067,
  53177. bottom: 117/1189
  53178. }
  53179. },
  53180. back: {
  53181. height: math.unit(4 + 4/12, "feet"),
  53182. name: "Back",
  53183. image: {
  53184. source: "./media/characters/maverick-leopard-gecko/back.svg",
  53185. extra: 1135/1129,
  53186. bottom: 57/1192
  53187. }
  53188. },
  53189. head: {
  53190. height: math.unit(1.77, "feet"),
  53191. name: "Head",
  53192. image: {
  53193. source: "./media/characters/maverick-leopard-gecko/head.svg"
  53194. }
  53195. },
  53196. },
  53197. [
  53198. {
  53199. name: "Normal",
  53200. height: math.unit(4 + 4/12, "feet"),
  53201. default: true
  53202. },
  53203. ]
  53204. ))
  53205. characterMakers.push(() => makeCharacter(
  53206. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  53207. {
  53208. front: {
  53209. height: math.unit(2, "inches"),
  53210. name: "Front",
  53211. image: {
  53212. source: "./media/characters/carley-hartford/front.svg",
  53213. extra: 1035/988,
  53214. bottom: 23/1058
  53215. }
  53216. },
  53217. back: {
  53218. height: math.unit(2, "inches"),
  53219. name: "Back",
  53220. image: {
  53221. source: "./media/characters/carley-hartford/back.svg",
  53222. extra: 1035/988,
  53223. bottom: 23/1058
  53224. }
  53225. },
  53226. dressed: {
  53227. height: math.unit(2, "inches"),
  53228. name: "Dressed",
  53229. image: {
  53230. source: "./media/characters/carley-hartford/dressed.svg",
  53231. extra: 651/620,
  53232. bottom: 0/651
  53233. }
  53234. },
  53235. },
  53236. [
  53237. {
  53238. name: "Micro",
  53239. height: math.unit(2, "inches"),
  53240. default: true
  53241. },
  53242. {
  53243. name: "Macro",
  53244. height: math.unit(6 + 3/12, "feet")
  53245. },
  53246. ]
  53247. ))
  53248. characterMakers.push(() => makeCharacter(
  53249. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  53250. {
  53251. front: {
  53252. height: math.unit(2 + 3/12, "feet"),
  53253. weight: math.unit(15 + 7/16, "lb"),
  53254. name: "Front",
  53255. image: {
  53256. source: "./media/characters/duke/front.svg",
  53257. extra: 910/815,
  53258. bottom: 30/940
  53259. }
  53260. },
  53261. },
  53262. [
  53263. {
  53264. name: "Normal",
  53265. height: math.unit(2 + 3/12, "feet"),
  53266. default: true
  53267. },
  53268. ]
  53269. ))
  53270. characterMakers.push(() => makeCharacter(
  53271. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  53272. {
  53273. front: {
  53274. height: math.unit(5 + 4/12, "feet"),
  53275. weight: math.unit(156, "lb"),
  53276. name: "Front",
  53277. image: {
  53278. source: "./media/characters/dein/front.svg",
  53279. extra: 855/815,
  53280. bottom: 48/903
  53281. }
  53282. },
  53283. side: {
  53284. height: math.unit(5 + 4/12, "feet"),
  53285. weight: math.unit(156, "lb"),
  53286. name: "side",
  53287. image: {
  53288. source: "./media/characters/dein/side.svg",
  53289. extra: 846/803,
  53290. bottom: 25/871
  53291. }
  53292. },
  53293. maw: {
  53294. height: math.unit(1.45, "feet"),
  53295. name: "Maw",
  53296. image: {
  53297. source: "./media/characters/dein/maw.svg"
  53298. }
  53299. },
  53300. },
  53301. [
  53302. {
  53303. name: "Ferret Sized",
  53304. height: math.unit(2 + 5/12, "feet")
  53305. },
  53306. {
  53307. name: "Normal",
  53308. height: math.unit(5 + 4/12, "feet"),
  53309. default: true
  53310. },
  53311. ]
  53312. ))
  53313. characterMakers.push(() => makeCharacter(
  53314. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  53315. {
  53316. front: {
  53317. height: math.unit(84 + 8/12, "feet"),
  53318. weight: math.unit(942180, "lb"),
  53319. name: "Front",
  53320. image: {
  53321. source: "./media/characters/daurine-arima/front.svg",
  53322. extra: 1989/1782,
  53323. bottom: 37/2026
  53324. }
  53325. },
  53326. side: {
  53327. height: math.unit(84 + 8/12, "feet"),
  53328. weight: math.unit(942180, "lb"),
  53329. name: "Side",
  53330. image: {
  53331. source: "./media/characters/daurine-arima/side.svg",
  53332. extra: 1997/1790,
  53333. bottom: 21/2018
  53334. }
  53335. },
  53336. back: {
  53337. height: math.unit(84 + 8/12, "feet"),
  53338. weight: math.unit(942180, "lb"),
  53339. name: "Back",
  53340. image: {
  53341. source: "./media/characters/daurine-arima/back.svg",
  53342. extra: 1992/1800,
  53343. bottom: 12/2004
  53344. }
  53345. },
  53346. head: {
  53347. height: math.unit(15.5, "feet"),
  53348. name: "Head",
  53349. image: {
  53350. source: "./media/characters/daurine-arima/head.svg"
  53351. }
  53352. },
  53353. headAlt: {
  53354. height: math.unit(19.19, "feet"),
  53355. name: "Head (Alt)",
  53356. image: {
  53357. source: "./media/characters/daurine-arima/head-alt.svg"
  53358. }
  53359. },
  53360. },
  53361. [
  53362. {
  53363. name: "Minimum height",
  53364. height: math.unit(8 + 10/12, "feet")
  53365. },
  53366. {
  53367. name: "Comfort height",
  53368. height: math.unit(19 + 6 /12, "feet")
  53369. },
  53370. {
  53371. name: "\"Normal\" height",
  53372. height: math.unit(28 + 10/12, "feet")
  53373. },
  53374. {
  53375. name: "Base height",
  53376. height: math.unit(84 + 8/12, "feet"),
  53377. default: true
  53378. },
  53379. {
  53380. name: "Mini-macro",
  53381. height: math.unit(2360, "feet")
  53382. },
  53383. {
  53384. name: "Macro",
  53385. height: math.unit(10, "miles")
  53386. },
  53387. {
  53388. name: "Goddess",
  53389. height: math.unit(9.99e40, "yottameters")
  53390. },
  53391. ]
  53392. ))
  53393. characterMakers.push(() => makeCharacter(
  53394. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  53395. {
  53396. front: {
  53397. height: math.unit(2.3, "meters"),
  53398. name: "Front",
  53399. image: {
  53400. source: "./media/characters/cilenomon/front.svg",
  53401. extra: 1963/1778,
  53402. bottom: 54/2017
  53403. }
  53404. },
  53405. },
  53406. [
  53407. {
  53408. name: "Normal",
  53409. height: math.unit(2.3, "meters"),
  53410. default: true
  53411. },
  53412. {
  53413. name: "Big",
  53414. height: math.unit(5, "meters")
  53415. },
  53416. {
  53417. name: "Macro",
  53418. height: math.unit(30, "meters")
  53419. },
  53420. {
  53421. name: "True",
  53422. height: math.unit(1, "universe")
  53423. },
  53424. ]
  53425. ))
  53426. characterMakers.push(() => makeCharacter(
  53427. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  53428. {
  53429. front: {
  53430. height: math.unit(5, "feet"),
  53431. name: "Front",
  53432. image: {
  53433. source: "./media/characters/sen-mink/front.svg",
  53434. extra: 1727/1675,
  53435. bottom: 35/1762
  53436. }
  53437. },
  53438. },
  53439. [
  53440. {
  53441. name: "Normal",
  53442. height: math.unit(5, "feet"),
  53443. default: true
  53444. },
  53445. ]
  53446. ))
  53447. characterMakers.push(() => makeCharacter(
  53448. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  53449. {
  53450. front: {
  53451. height: math.unit(5.42999, "feet"),
  53452. weight: math.unit(100, "lb"),
  53453. name: "Front",
  53454. image: {
  53455. source: "./media/characters/ophois/front.svg",
  53456. extra: 1429/1286,
  53457. bottom: 60/1489
  53458. }
  53459. },
  53460. },
  53461. [
  53462. {
  53463. name: "Normal",
  53464. height: math.unit(5.42999, "feet"),
  53465. default: true
  53466. },
  53467. ]
  53468. ))
  53469. characterMakers.push(() => makeCharacter(
  53470. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  53471. {
  53472. front: {
  53473. height: math.unit(2, "meters"),
  53474. name: "Front",
  53475. image: {
  53476. source: "./media/characters/riley/front.svg",
  53477. extra: 1779/1754,
  53478. bottom: 139/1918
  53479. }
  53480. },
  53481. },
  53482. [
  53483. {
  53484. name: "Normal",
  53485. height: math.unit(2, "meters"),
  53486. default: true
  53487. },
  53488. ]
  53489. ))
  53490. characterMakers.push(() => makeCharacter(
  53491. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  53492. {
  53493. front: {
  53494. height: math.unit(6 + 2/12, "feet"),
  53495. weight: math.unit(195, "lb"),
  53496. preyCapacity: math.unit(6, "people"),
  53497. name: "Front",
  53498. image: {
  53499. source: "./media/characters/shuken-flash/front.svg",
  53500. extra: 1905/1739,
  53501. bottom: 65/1970
  53502. }
  53503. },
  53504. back: {
  53505. height: math.unit(6 + 2/12, "feet"),
  53506. weight: math.unit(195, "lb"),
  53507. preyCapacity: math.unit(6, "people"),
  53508. name: "Back",
  53509. image: {
  53510. source: "./media/characters/shuken-flash/back.svg",
  53511. extra: 1912/1751,
  53512. bottom: 13/1925
  53513. }
  53514. },
  53515. },
  53516. [
  53517. {
  53518. name: "Normal",
  53519. height: math.unit(6 + 2/12, "feet"),
  53520. default: true
  53521. },
  53522. ]
  53523. ))
  53524. characterMakers.push(() => makeCharacter(
  53525. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  53526. {
  53527. front: {
  53528. height: math.unit(5 + 9/12, "feet"),
  53529. weight: math.unit(150, "lb"),
  53530. name: "Front",
  53531. image: {
  53532. source: "./media/characters/plat/front.svg",
  53533. extra: 1816/1703,
  53534. bottom: 43/1859
  53535. }
  53536. },
  53537. side: {
  53538. height: math.unit(5 + 9/12, "feet"),
  53539. weight: math.unit(300, "lb"),
  53540. name: "Side",
  53541. image: {
  53542. source: "./media/characters/plat/side.svg",
  53543. extra: 1824/1699,
  53544. bottom: 18/1842
  53545. }
  53546. },
  53547. },
  53548. [
  53549. {
  53550. name: "Normal",
  53551. height: math.unit(5 + 9/12, "feet"),
  53552. default: true
  53553. },
  53554. ]
  53555. ))
  53556. characterMakers.push(() => makeCharacter(
  53557. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  53558. {
  53559. front: {
  53560. height: math.unit(9, "feet"),
  53561. weight: math.unit(1800, "lb"),
  53562. name: "Front",
  53563. image: {
  53564. source: "./media/characters/elaine/front.svg",
  53565. extra: 1833/1354,
  53566. bottom: 25/1858
  53567. }
  53568. },
  53569. back: {
  53570. height: math.unit(8.8, "feet"),
  53571. weight: math.unit(1800, "lb"),
  53572. name: "Back",
  53573. image: {
  53574. source: "./media/characters/elaine/back.svg",
  53575. extra: 1641/1233,
  53576. bottom: 53/1694
  53577. }
  53578. },
  53579. },
  53580. [
  53581. {
  53582. name: "Normal",
  53583. height: math.unit(9, "feet"),
  53584. default: true
  53585. },
  53586. ]
  53587. ))
  53588. characterMakers.push(() => makeCharacter(
  53589. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  53590. {
  53591. front: {
  53592. height: math.unit(17 + 9/12, "feet"),
  53593. weight: math.unit(8000, "lb"),
  53594. name: "Front",
  53595. image: {
  53596. source: "./media/characters/vera-raven/front.svg",
  53597. extra: 1457/1412,
  53598. bottom: 121/1578
  53599. }
  53600. },
  53601. side: {
  53602. height: math.unit(17 + 9/12, "feet"),
  53603. weight: math.unit(8000, "lb"),
  53604. name: "Side",
  53605. image: {
  53606. source: "./media/characters/vera-raven/side.svg",
  53607. extra: 1510/1464,
  53608. bottom: 54/1564
  53609. }
  53610. },
  53611. },
  53612. [
  53613. {
  53614. name: "Normal",
  53615. height: math.unit(17 + 9/12, "feet"),
  53616. default: true
  53617. },
  53618. ]
  53619. ))
  53620. characterMakers.push(() => makeCharacter(
  53621. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  53622. {
  53623. dressed: {
  53624. height: math.unit(6 + 9/12, "feet"),
  53625. name: "Dressed",
  53626. image: {
  53627. source: "./media/characters/nakisha/dressed.svg",
  53628. extra: 1909/1757,
  53629. bottom: 48/1957
  53630. }
  53631. },
  53632. nude: {
  53633. height: math.unit(6 + 9/12, "feet"),
  53634. name: "Nude",
  53635. image: {
  53636. source: "./media/characters/nakisha/nude.svg",
  53637. extra: 1917/1765,
  53638. bottom: 34/1951
  53639. }
  53640. },
  53641. },
  53642. [
  53643. {
  53644. name: "Normal",
  53645. height: math.unit(6 + 9/12, "feet"),
  53646. default: true
  53647. },
  53648. ]
  53649. ))
  53650. characterMakers.push(() => makeCharacter(
  53651. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  53652. {
  53653. front: {
  53654. height: math.unit(87, "meters"),
  53655. name: "Front",
  53656. image: {
  53657. source: "./media/characters/serafin/front.svg",
  53658. extra: 1919/1776,
  53659. bottom: 65/1984
  53660. }
  53661. },
  53662. },
  53663. [
  53664. {
  53665. name: "Normal",
  53666. height: math.unit(87, "meters"),
  53667. default: true
  53668. },
  53669. ]
  53670. ))
  53671. characterMakers.push(() => makeCharacter(
  53672. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  53673. {
  53674. front: {
  53675. height: math.unit(6, "feet"),
  53676. weight: math.unit(200, "lb"),
  53677. name: "Front",
  53678. image: {
  53679. source: "./media/characters/poptart/front.svg",
  53680. extra: 615/583,
  53681. bottom: 23/638
  53682. }
  53683. },
  53684. back: {
  53685. height: math.unit(6, "feet"),
  53686. weight: math.unit(200, "lb"),
  53687. name: "Back",
  53688. image: {
  53689. source: "./media/characters/poptart/back.svg",
  53690. extra: 617/584,
  53691. bottom: 22/639
  53692. }
  53693. },
  53694. frontNsfw: {
  53695. height: math.unit(6, "feet"),
  53696. weight: math.unit(200, "lb"),
  53697. name: "Front (NSFW)",
  53698. image: {
  53699. source: "./media/characters/poptart/front-nsfw.svg",
  53700. extra: 615/583,
  53701. bottom: 23/638
  53702. }
  53703. },
  53704. backNsfw: {
  53705. height: math.unit(6, "feet"),
  53706. weight: math.unit(200, "lb"),
  53707. name: "Back (NSFW)",
  53708. image: {
  53709. source: "./media/characters/poptart/back-nsfw.svg",
  53710. extra: 617/584,
  53711. bottom: 22/639
  53712. }
  53713. },
  53714. hand: {
  53715. height: math.unit(1.14, "feet"),
  53716. name: "Hand",
  53717. image: {
  53718. source: "./media/characters/poptart/hand.svg"
  53719. }
  53720. },
  53721. foot: {
  53722. height: math.unit(1.5, "feet"),
  53723. name: "Foot",
  53724. image: {
  53725. source: "./media/characters/poptart/foot.svg"
  53726. }
  53727. },
  53728. },
  53729. [
  53730. {
  53731. name: "Normal",
  53732. height: math.unit(6, "feet"),
  53733. default: true
  53734. },
  53735. {
  53736. name: "Grande",
  53737. height: math.unit(350, "feet")
  53738. },
  53739. {
  53740. name: "Massif",
  53741. height: math.unit(967, "feet")
  53742. },
  53743. ]
  53744. ))
  53745. characterMakers.push(() => makeCharacter(
  53746. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  53747. {
  53748. hyenaSide: {
  53749. height: math.unit(120, "cm"),
  53750. weight: math.unit(120, "lb"),
  53751. name: "Side",
  53752. image: {
  53753. source: "./media/characters/trance/hyena-side.svg",
  53754. extra: 998/904,
  53755. bottom: 76/1074
  53756. }
  53757. },
  53758. },
  53759. [
  53760. {
  53761. name: "Normal",
  53762. height: math.unit(120, "cm"),
  53763. default: true
  53764. },
  53765. {
  53766. name: "Dire",
  53767. height: math.unit(230, "cm")
  53768. },
  53769. {
  53770. name: "Macro",
  53771. height: math.unit(37, "feet")
  53772. },
  53773. ]
  53774. ))
  53775. characterMakers.push(() => makeCharacter(
  53776. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  53777. {
  53778. front: {
  53779. height: math.unit(6 + 3/12, "feet"),
  53780. name: "Front",
  53781. image: {
  53782. source: "./media/characters/michael-berretta/front.svg",
  53783. extra: 515/494,
  53784. bottom: 20/535
  53785. }
  53786. },
  53787. back: {
  53788. height: math.unit(6 + 3/12, "feet"),
  53789. name: "Back",
  53790. image: {
  53791. source: "./media/characters/michael-berretta/back.svg",
  53792. extra: 520/497,
  53793. bottom: 21/541
  53794. }
  53795. },
  53796. frontNsfw: {
  53797. height: math.unit(6 + 3/12, "feet"),
  53798. name: "Front (NSFW)",
  53799. image: {
  53800. source: "./media/characters/michael-berretta/front-nsfw.svg",
  53801. extra: 515/494,
  53802. bottom: 20/535
  53803. }
  53804. },
  53805. dick: {
  53806. height: math.unit(1, "feet"),
  53807. name: "Dick",
  53808. image: {
  53809. source: "./media/characters/michael-berretta/dick.svg"
  53810. }
  53811. },
  53812. },
  53813. [
  53814. {
  53815. name: "Normal",
  53816. height: math.unit(6 + 3/12, "feet"),
  53817. default: true
  53818. },
  53819. {
  53820. name: "Big",
  53821. height: math.unit(12, "feet")
  53822. },
  53823. {
  53824. name: "Macro",
  53825. height: math.unit(187.5, "feet")
  53826. },
  53827. ]
  53828. ))
  53829. characterMakers.push(() => makeCharacter(
  53830. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  53831. {
  53832. front: {
  53833. height: math.unit(9 + 9/12, "feet"),
  53834. weight: math.unit(1244, "lb"),
  53835. name: "Front",
  53836. image: {
  53837. source: "./media/characters/stella-edgecomb/front.svg",
  53838. extra: 1835/1706,
  53839. bottom: 49/1884
  53840. }
  53841. },
  53842. pen: {
  53843. height: math.unit(0.95, "feet"),
  53844. name: "Pen",
  53845. image: {
  53846. source: "./media/characters/stella-edgecomb/pen.svg"
  53847. }
  53848. },
  53849. },
  53850. [
  53851. {
  53852. name: "Cozy Bear",
  53853. height: math.unit(0.5, "inches")
  53854. },
  53855. {
  53856. name: "Normal",
  53857. height: math.unit(9 + 9/12, "feet"),
  53858. default: true
  53859. },
  53860. {
  53861. name: "Giga Bear",
  53862. height: math.unit(1, "mile")
  53863. },
  53864. {
  53865. name: "Great Bear",
  53866. height: math.unit(53, "miles")
  53867. },
  53868. {
  53869. name: "Goddess Bear",
  53870. height: math.unit(40000, "miles")
  53871. },
  53872. {
  53873. name: "Sun Bear",
  53874. height: math.unit(900000, "miles")
  53875. },
  53876. ]
  53877. ))
  53878. characterMakers.push(() => makeCharacter(
  53879. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  53880. {
  53881. anthroFront: {
  53882. height: math.unit(556, "cm"),
  53883. weight: math.unit(2650, "kg"),
  53884. preyCapacity: math.unit(3, "people"),
  53885. name: "Front",
  53886. image: {
  53887. source: "./media/characters/ash´iika/front.svg",
  53888. extra: 710/673,
  53889. bottom: 15/725
  53890. },
  53891. form: "anthro",
  53892. default: true
  53893. },
  53894. anthroSide: {
  53895. height: math.unit(556, "cm"),
  53896. weight: math.unit(2650, "kg"),
  53897. preyCapacity: math.unit(3, "people"),
  53898. name: "Side",
  53899. image: {
  53900. source: "./media/characters/ash´iika/side.svg",
  53901. extra: 696/676,
  53902. bottom: 13/709
  53903. },
  53904. form: "anthro"
  53905. },
  53906. anthroDressed: {
  53907. height: math.unit(556, "cm"),
  53908. weight: math.unit(2650, "kg"),
  53909. preyCapacity: math.unit(3, "people"),
  53910. name: "Dressed",
  53911. image: {
  53912. source: "./media/characters/ash´iika/dressed.svg",
  53913. extra: 710/673,
  53914. bottom: 15/725
  53915. },
  53916. form: "anthro"
  53917. },
  53918. anthroHead: {
  53919. height: math.unit(3.5, "feet"),
  53920. name: "Head",
  53921. image: {
  53922. source: "./media/characters/ash´iika/head.svg",
  53923. extra: 348/291,
  53924. bottom: 45/393
  53925. },
  53926. form: "anthro"
  53927. },
  53928. feralSide: {
  53929. height: math.unit(870, "cm"),
  53930. weight: math.unit(17500, "kg"),
  53931. preyCapacity: math.unit(15, "people"),
  53932. name: "Side",
  53933. image: {
  53934. source: "./media/characters/ash´iika/feral.svg",
  53935. extra: 595/199,
  53936. bottom: 7/602
  53937. },
  53938. form: "feral",
  53939. default: true,
  53940. },
  53941. },
  53942. [
  53943. {
  53944. name: "Normal",
  53945. height: math.unit(556, "cm"),
  53946. default: true,
  53947. form: "anthro"
  53948. },
  53949. {
  53950. name: "Macro",
  53951. height: math.unit(88, "meters"),
  53952. form: "anthro"
  53953. },
  53954. {
  53955. name: "Normal",
  53956. height: math.unit(870, "cm"),
  53957. default: true,
  53958. form: "feral"
  53959. },
  53960. {
  53961. name: "Large",
  53962. height: math.unit(25, "meters"),
  53963. form: "feral"
  53964. },
  53965. ],
  53966. {
  53967. "anthro": {
  53968. name: "Anthro",
  53969. default: true
  53970. },
  53971. "feral": {
  53972. name: "Feral",
  53973. },
  53974. }
  53975. ))
  53976. characterMakers.push(() => makeCharacter(
  53977. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  53978. {
  53979. front: {
  53980. height: math.unit(10, "feet"),
  53981. weight: math.unit(800, "lb"),
  53982. name: "Front",
  53983. image: {
  53984. source: "./media/characters/yen/front.svg",
  53985. extra: 443/411,
  53986. bottom: 6/449
  53987. }
  53988. },
  53989. sleeping: {
  53990. height: math.unit(10, "feet"),
  53991. weight: math.unit(800, "lb"),
  53992. name: "Sleeping",
  53993. image: {
  53994. source: "./media/characters/yen/sleeping.svg",
  53995. extra: 470/422,
  53996. bottom: 0/470
  53997. }
  53998. },
  53999. head: {
  54000. height: math.unit(2.2, "feet"),
  54001. name: "Head",
  54002. image: {
  54003. source: "./media/characters/yen/head.svg"
  54004. }
  54005. },
  54006. headAlt: {
  54007. height: math.unit(2.1, "feet"),
  54008. name: "Head (Alt)",
  54009. image: {
  54010. source: "./media/characters/yen/head-alt.svg"
  54011. }
  54012. },
  54013. },
  54014. [
  54015. {
  54016. name: "Normal",
  54017. height: math.unit(10, "feet"),
  54018. default: true
  54019. },
  54020. ]
  54021. ))
  54022. characterMakers.push(() => makeCharacter(
  54023. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  54024. {
  54025. front: {
  54026. height: math.unit(12, "feet"),
  54027. name: "Front",
  54028. image: {
  54029. source: "./media/characters/citra/front.svg",
  54030. extra: 1950/1710,
  54031. bottom: 47/1997
  54032. }
  54033. },
  54034. },
  54035. [
  54036. {
  54037. name: "Normal",
  54038. height: math.unit(12, "feet"),
  54039. default: true
  54040. },
  54041. ]
  54042. ))
  54043. characterMakers.push(() => makeCharacter(
  54044. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  54045. {
  54046. side: {
  54047. height: math.unit(7 + 10/12, "feet"),
  54048. name: "Side",
  54049. image: {
  54050. source: "./media/characters/sholstim/side.svg",
  54051. extra: 786/682,
  54052. bottom: 40/826
  54053. }
  54054. },
  54055. },
  54056. [
  54057. {
  54058. name: "Normal",
  54059. height: math.unit(7 + 10/12, "feet"),
  54060. default: true
  54061. },
  54062. ]
  54063. ))
  54064. characterMakers.push(() => makeCharacter(
  54065. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  54066. {
  54067. front: {
  54068. height: math.unit(3.10, "meters"),
  54069. name: "Front",
  54070. image: {
  54071. source: "./media/characters/aggyn/front.svg",
  54072. extra: 1188/963,
  54073. bottom: 24/1212
  54074. }
  54075. },
  54076. },
  54077. [
  54078. {
  54079. name: "Normal",
  54080. height: math.unit(3.10, "meters"),
  54081. default: true
  54082. },
  54083. ]
  54084. ))
  54085. characterMakers.push(() => makeCharacter(
  54086. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  54087. {
  54088. front: {
  54089. height: math.unit(7 + 5/12, "feet"),
  54090. weight: math.unit(687, "lb"),
  54091. name: "Front",
  54092. image: {
  54093. source: "./media/characters/alsandair-hergenroether/front.svg",
  54094. extra: 1251/1186,
  54095. bottom: 75/1326
  54096. }
  54097. },
  54098. back: {
  54099. height: math.unit(7 + 5/12, "feet"),
  54100. weight: math.unit(687, "lb"),
  54101. name: "Back",
  54102. image: {
  54103. source: "./media/characters/alsandair-hergenroether/back.svg",
  54104. extra: 1290/1229,
  54105. bottom: 17/1307
  54106. }
  54107. },
  54108. },
  54109. [
  54110. {
  54111. name: "Max Compression",
  54112. height: math.unit(7 + 5/12, "feet"),
  54113. default: true
  54114. },
  54115. {
  54116. name: "\"Normal\"",
  54117. height: math.unit(2, "universes")
  54118. },
  54119. ]
  54120. ))
  54121. characterMakers.push(() => makeCharacter(
  54122. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  54123. {
  54124. front: {
  54125. height: math.unit(4 + 1/12, "feet"),
  54126. weight: math.unit(92, "lb"),
  54127. name: "Front",
  54128. image: {
  54129. source: "./media/characters/ie/front.svg",
  54130. extra: 1585/1352,
  54131. bottom: 91/1676
  54132. }
  54133. },
  54134. },
  54135. [
  54136. {
  54137. name: "Normal",
  54138. height: math.unit(4 + 1/12, "feet"),
  54139. default: true
  54140. },
  54141. ]
  54142. ))
  54143. characterMakers.push(() => makeCharacter(
  54144. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  54145. {
  54146. anthro: {
  54147. height: math.unit(6, "feet"),
  54148. weight: math.unit(150, "lb"),
  54149. name: "Front",
  54150. image: {
  54151. source: "./media/characters/willow/anthro.svg",
  54152. extra: 1073/986,
  54153. bottom: 34/1107
  54154. },
  54155. form: "anthro",
  54156. default: true
  54157. },
  54158. taur: {
  54159. height: math.unit(6, "feet"),
  54160. weight: math.unit(150, "lb"),
  54161. name: "Side",
  54162. image: {
  54163. source: "./media/characters/willow/taur.svg",
  54164. extra: 647/512,
  54165. bottom: 136/783
  54166. },
  54167. form: "taur",
  54168. default: true
  54169. },
  54170. },
  54171. [
  54172. {
  54173. name: "Humanoid",
  54174. height: math.unit(2.7, "meters"),
  54175. form: "anthro"
  54176. },
  54177. {
  54178. name: "Normal",
  54179. height: math.unit(9, "meters"),
  54180. form: "anthro",
  54181. default: true
  54182. },
  54183. {
  54184. name: "Humanoid",
  54185. height: math.unit(2.1, "meters"),
  54186. form: "taur"
  54187. },
  54188. {
  54189. name: "Normal",
  54190. height: math.unit(7, "meters"),
  54191. form: "taur",
  54192. default: true
  54193. },
  54194. ],
  54195. {
  54196. "anthro": {
  54197. name: "Anthro",
  54198. default: true
  54199. },
  54200. "taur": {
  54201. name: "Taur",
  54202. },
  54203. }
  54204. ))
  54205. characterMakers.push(() => makeCharacter(
  54206. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  54207. {
  54208. front: {
  54209. height: math.unit(2 + 5/12, "feet"),
  54210. name: "Front",
  54211. image: {
  54212. source: "./media/characters/kyan/front.svg",
  54213. extra: 460/334,
  54214. bottom: 23/483
  54215. },
  54216. extraAttributes: {
  54217. "toeLength": {
  54218. name: "Toe Length",
  54219. power: 1,
  54220. type: "length",
  54221. base: math.unit(7, "cm")
  54222. },
  54223. "toeclawLength": {
  54224. name: "Toeclaw Length",
  54225. power: 1,
  54226. type: "length",
  54227. base: math.unit(4.7, "cm")
  54228. },
  54229. "earHeight": {
  54230. name: "Ear Height",
  54231. power: 1,
  54232. type: "length",
  54233. base: math.unit(14.1, "cm")
  54234. },
  54235. }
  54236. },
  54237. paws: {
  54238. height: math.unit(0.45, "feet"),
  54239. name: "Paws",
  54240. image: {
  54241. source: "./media/characters/kyan/paws.svg",
  54242. extra: 581/581,
  54243. bottom: 114/695
  54244. }
  54245. },
  54246. },
  54247. [
  54248. {
  54249. name: "Normal",
  54250. height: math.unit(2 + 5/12, "feet"),
  54251. default: true
  54252. },
  54253. ]
  54254. ))
  54255. characterMakers.push(() => makeCharacter(
  54256. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  54257. {
  54258. front: {
  54259. height: math.unit(2 + 2/3, "feet"),
  54260. name: "Front",
  54261. image: {
  54262. source: "./media/characters/xazzon/front.svg",
  54263. extra: 1109/984,
  54264. bottom: 42/1151
  54265. }
  54266. },
  54267. back: {
  54268. height: math.unit(2 + 2/3, "feet"),
  54269. name: "Back",
  54270. image: {
  54271. source: "./media/characters/xazzon/back.svg",
  54272. extra: 1095/971,
  54273. bottom: 23/1118
  54274. }
  54275. },
  54276. },
  54277. [
  54278. {
  54279. name: "Normal",
  54280. height: math.unit(2 + 2/3, "feet"),
  54281. default: true
  54282. },
  54283. ]
  54284. ))
  54285. characterMakers.push(() => makeCharacter(
  54286. { name: "Aurora Beagsidhe", species: ["catgirl"], tags: ["anthro"] },
  54287. {
  54288. dressed: {
  54289. height: math.unit(5 + 7/12, "feet"),
  54290. weight: math.unit(173, "lb"),
  54291. name: "Dressed",
  54292. image: {
  54293. source: "./media/characters/aurora-beagsidhe/dressed.svg",
  54294. extra: 3262/2862,
  54295. bottom: 188/3450
  54296. }
  54297. },
  54298. undressed: {
  54299. height: math.unit(5 + 7/12, "feet"),
  54300. weight: math.unit(173, "lb"),
  54301. name: "Undressed",
  54302. image: {
  54303. source: "./media/characters/aurora-beagsidhe/undressed.svg",
  54304. extra: 3262/2862,
  54305. bottom: 188/3450
  54306. }
  54307. },
  54308. },
  54309. [
  54310. {
  54311. name: "The void",
  54312. height: math.unit(7.29193e-34, "angstroms")
  54313. },
  54314. {
  54315. name: "Uh-Oh.",
  54316. height: math.unit(5.734e-7, "angstroms")
  54317. },
  54318. {
  54319. name: "Pico",
  54320. height: math.unit(0.876, "angstroms")
  54321. },
  54322. {
  54323. name: "Nano",
  54324. height: math.unit(0.000134200, "mm")
  54325. },
  54326. {
  54327. name: "Micro",
  54328. height: math.unit(0.0673020, "mm")
  54329. },
  54330. {
  54331. name: "Tiny",
  54332. height: math.unit(2.4, "mm")
  54333. },
  54334. {
  54335. name: "Actual Normal",
  54336. height: math.unit(3, "inches"),
  54337. default: true
  54338. },
  54339. {
  54340. name: "Normal",
  54341. height: math.unit(5 + 8/12, "feet")
  54342. },
  54343. {
  54344. name: "Giant",
  54345. height: math.unit(12, "feet")
  54346. },
  54347. {
  54348. name: "City Ruler",
  54349. height: math.unit(270, "meters")
  54350. },
  54351. {
  54352. name: "Giga",
  54353. height: math.unit(1117.6, "km")
  54354. },
  54355. {
  54356. name: "All-Powerful Queen",
  54357. height: math.unit(70.8, "gigameters")
  54358. },
  54359. {
  54360. name: "'Goddess'",
  54361. height: math.unit(600, "yottameters")
  54362. },
  54363. {
  54364. name: "Biggest!",
  54365. height: math.unit(4.23e5, "yottameters")
  54366. },
  54367. ]
  54368. ))
  54369. characterMakers.push(() => makeCharacter(
  54370. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  54371. {
  54372. front: {
  54373. height: math.unit(8, "feet"),
  54374. weight: math.unit(300, "lb"),
  54375. name: "Front",
  54376. image: {
  54377. source: "./media/characters/khyla-shadowsong/front.svg",
  54378. extra: 861/798,
  54379. bottom: 32/893
  54380. }
  54381. },
  54382. side: {
  54383. height: math.unit(8, "feet"),
  54384. weight: math.unit(300, "lb"),
  54385. name: "Side",
  54386. image: {
  54387. source: "./media/characters/khyla-shadowsong/side.svg",
  54388. extra: 790/750,
  54389. bottom: 87/877
  54390. }
  54391. },
  54392. back: {
  54393. height: math.unit(8, "feet"),
  54394. weight: math.unit(300, "lb"),
  54395. name: "Back",
  54396. image: {
  54397. source: "./media/characters/khyla-shadowsong/back.svg",
  54398. extra: 855/808,
  54399. bottom: 14/869
  54400. }
  54401. },
  54402. head: {
  54403. height: math.unit(2.7, "feet"),
  54404. name: "Head",
  54405. image: {
  54406. source: "./media/characters/khyla-shadowsong/head.svg"
  54407. }
  54408. },
  54409. },
  54410. [
  54411. {
  54412. name: "Micro",
  54413. height: math.unit(6, "inches")
  54414. },
  54415. {
  54416. name: "Normal",
  54417. height: math.unit(8, "feet"),
  54418. default: true
  54419. },
  54420. ]
  54421. ))
  54422. characterMakers.push(() => makeCharacter(
  54423. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  54424. {
  54425. hyperFront: {
  54426. height: math.unit(9 + 4/12, "feet"),
  54427. weight: math.unit(2000, "lb"),
  54428. name: "Front",
  54429. image: {
  54430. source: "./media/characters/tiden/hyper-front.svg",
  54431. extra: 400/382,
  54432. bottom: 6/406
  54433. },
  54434. form: "hyper",
  54435. },
  54436. regularFront: {
  54437. height: math.unit(7 + 10/12, "feet"),
  54438. weight: math.unit(470, "lb"),
  54439. name: "Front",
  54440. image: {
  54441. source: "./media/characters/tiden/regular-front.svg",
  54442. extra: 468/442,
  54443. bottom: 6/474
  54444. },
  54445. form: "regular",
  54446. },
  54447. },
  54448. [
  54449. {
  54450. name: "Normal",
  54451. height: math.unit(9 + 4/12, "feet"),
  54452. default: true,
  54453. form: "hyper"
  54454. },
  54455. {
  54456. name: "Normal",
  54457. height: math.unit(7 + 10/12, "feet"),
  54458. default: true,
  54459. form: "regular"
  54460. },
  54461. ],
  54462. {
  54463. "hyper": {
  54464. name: "Hyper",
  54465. default: true
  54466. },
  54467. "regular": {
  54468. name: "Regular",
  54469. },
  54470. }
  54471. ))
  54472. characterMakers.push(() => makeCharacter(
  54473. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  54474. {
  54475. side: {
  54476. height: math.unit(6, "feet"),
  54477. weight: math.unit(150, "lb"),
  54478. name: "Side",
  54479. image: {
  54480. source: "./media/characters/jason-crowe/side.svg",
  54481. extra: 1771/766,
  54482. bottom: 219/1990
  54483. }
  54484. },
  54485. },
  54486. [
  54487. {
  54488. name: "Pocket Gryphon",
  54489. height: math.unit(6, "cm")
  54490. },
  54491. {
  54492. name: "Raven",
  54493. height: math.unit(60, "cm")
  54494. },
  54495. {
  54496. name: "Normal",
  54497. height: math.unit(1, "meter"),
  54498. default: true
  54499. },
  54500. ]
  54501. ))
  54502. characterMakers.push(() => makeCharacter(
  54503. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  54504. {
  54505. front: {
  54506. height: math.unit(9 + 6/12, "feet"),
  54507. weight: math.unit(1100, "lb"),
  54508. name: "Front",
  54509. image: {
  54510. source: "./media/characters/django/front.svg",
  54511. extra: 1231/1136,
  54512. bottom: 34/1265
  54513. }
  54514. },
  54515. side: {
  54516. height: math.unit(9 + 6/12, "feet"),
  54517. weight: math.unit(1100, "lb"),
  54518. name: "Side",
  54519. image: {
  54520. source: "./media/characters/django/side.svg",
  54521. extra: 1267/1174,
  54522. bottom: 9/1276
  54523. }
  54524. },
  54525. },
  54526. [
  54527. {
  54528. name: "Normal",
  54529. height: math.unit(9 + 6/12, "feet"),
  54530. default: true
  54531. },
  54532. {
  54533. name: "Macro 1",
  54534. height: math.unit(50, "feet")
  54535. },
  54536. {
  54537. name: "Macro 2",
  54538. height: math.unit(500, "feet")
  54539. },
  54540. {
  54541. name: "Mega Macro",
  54542. height: math.unit(5300, "feet")
  54543. },
  54544. ]
  54545. ))
  54546. characterMakers.push(() => makeCharacter(
  54547. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  54548. {
  54549. frontSfw: {
  54550. height: math.unit(120, "cm"),
  54551. weight: math.unit(15, "kg"),
  54552. name: "Front (SFW)",
  54553. image: {
  54554. source: "./media/characters/eri/front-sfw.svg",
  54555. extra: 1014/939,
  54556. bottom: 37/1051
  54557. },
  54558. form: "moth",
  54559. },
  54560. frontNsfw: {
  54561. height: math.unit(120, "cm"),
  54562. weight: math.unit(15, "kg"),
  54563. name: "Front (NSFW)",
  54564. image: {
  54565. source: "./media/characters/eri/front-nsfw.svg",
  54566. extra: 1014/939,
  54567. bottom: 37/1051
  54568. },
  54569. form: "moth",
  54570. default: true
  54571. },
  54572. egg: {
  54573. height: math.unit(10, "cm"),
  54574. name: "Egg",
  54575. image: {
  54576. source: "./media/characters/eri/egg.svg"
  54577. },
  54578. form: "egg",
  54579. default: true
  54580. },
  54581. },
  54582. [
  54583. {
  54584. name: "Normal",
  54585. height: math.unit(120, "cm"),
  54586. default: true,
  54587. form: "moth"
  54588. },
  54589. {
  54590. name: "Normal",
  54591. height: math.unit(10, "cm"),
  54592. default: true,
  54593. form: "egg"
  54594. },
  54595. ],
  54596. {
  54597. "moth": {
  54598. name: "Moth",
  54599. default: true
  54600. },
  54601. "egg": {
  54602. name: "Egg",
  54603. },
  54604. }
  54605. ))
  54606. characterMakers.push(() => makeCharacter(
  54607. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  54608. {
  54609. front: {
  54610. height: math.unit(200, "feet"),
  54611. name: "Front",
  54612. image: {
  54613. source: "./media/characters/bishop-dowser/front.svg",
  54614. extra: 933/868,
  54615. bottom: 106/1039
  54616. }
  54617. },
  54618. },
  54619. [
  54620. {
  54621. name: "Giant",
  54622. height: math.unit(200, "feet"),
  54623. default: true
  54624. },
  54625. ]
  54626. ))
  54627. characterMakers.push(() => makeCharacter(
  54628. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  54629. {
  54630. front: {
  54631. height: math.unit(2, "meters"),
  54632. preyCapacity: math.unit(3, "people"),
  54633. name: "Front",
  54634. image: {
  54635. source: "./media/characters/fryra/front.svg",
  54636. extra: 1025/948,
  54637. bottom: 30/1055
  54638. },
  54639. extraAttributes: {
  54640. "breastVolume": {
  54641. name: "Breast Volume",
  54642. power: 3,
  54643. type: "volume",
  54644. base: math.unit(8, "liters")
  54645. },
  54646. }
  54647. },
  54648. back: {
  54649. height: math.unit(2, "meters"),
  54650. preyCapacity: math.unit(3, "people"),
  54651. name: "Back",
  54652. image: {
  54653. source: "./media/characters/fryra/back.svg",
  54654. extra: 993/938,
  54655. bottom: 38/1031
  54656. },
  54657. extraAttributes: {
  54658. "breastVolume": {
  54659. name: "Breast Volume",
  54660. power: 3,
  54661. type: "volume",
  54662. base: math.unit(8, "liters")
  54663. },
  54664. }
  54665. },
  54666. head: {
  54667. height: math.unit(1.33, "feet"),
  54668. name: "Head",
  54669. image: {
  54670. source: "./media/characters/fryra/head.svg"
  54671. }
  54672. },
  54673. maw: {
  54674. height: math.unit(0.56, "feet"),
  54675. name: "Maw",
  54676. image: {
  54677. source: "./media/characters/fryra/maw.svg"
  54678. }
  54679. },
  54680. },
  54681. [
  54682. {
  54683. name: "Micro",
  54684. height: math.unit(5, "cm")
  54685. },
  54686. {
  54687. name: "Normal",
  54688. height: math.unit(2, "meters"),
  54689. default: true
  54690. },
  54691. {
  54692. name: "Small Macro",
  54693. height: math.unit(8, "meters")
  54694. },
  54695. {
  54696. name: "Macro",
  54697. height: math.unit(50, "meters")
  54698. },
  54699. {
  54700. name: "Megamacro",
  54701. height: math.unit(1, "km")
  54702. },
  54703. {
  54704. name: "Planetary",
  54705. height: math.unit(300000, "km")
  54706. },
  54707. {
  54708. name: "Universal",
  54709. height: math.unit(250, "lightyears")
  54710. },
  54711. {
  54712. name: "Fabric of Reality",
  54713. height: math.unit(1000, "multiverses")
  54714. },
  54715. ]
  54716. ))
  54717. characterMakers.push(() => makeCharacter(
  54718. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  54719. {
  54720. frontDressed: {
  54721. height: math.unit(6 + 2/12, "feet"),
  54722. name: "Front (Dressed)",
  54723. image: {
  54724. source: "./media/characters/fiera/front-dressed.svg",
  54725. extra: 1883/1793,
  54726. bottom: 70/1953
  54727. }
  54728. },
  54729. backDressed: {
  54730. height: math.unit(6 + 2/12, "feet"),
  54731. name: "Back (Dressed)",
  54732. image: {
  54733. source: "./media/characters/fiera/back-dressed.svg",
  54734. extra: 1847/1780,
  54735. bottom: 70/1917
  54736. }
  54737. },
  54738. frontNude: {
  54739. height: math.unit(6 + 2/12, "feet"),
  54740. name: "Front (Nude)",
  54741. image: {
  54742. source: "./media/characters/fiera/front-nude.svg",
  54743. extra: 1875/1785,
  54744. bottom: 66/1941
  54745. }
  54746. },
  54747. backNude: {
  54748. height: math.unit(6 + 2/12, "feet"),
  54749. name: "Back (Nude)",
  54750. image: {
  54751. source: "./media/characters/fiera/back-nude.svg",
  54752. extra: 1855/1788,
  54753. bottom: 44/1899
  54754. }
  54755. },
  54756. maw: {
  54757. height: math.unit(1.3, "feet"),
  54758. name: "Maw",
  54759. image: {
  54760. source: "./media/characters/fiera/maw.svg"
  54761. }
  54762. },
  54763. paw: {
  54764. height: math.unit(1, "feet"),
  54765. name: "Paw",
  54766. image: {
  54767. source: "./media/characters/fiera/paw.svg"
  54768. }
  54769. },
  54770. shoe: {
  54771. height: math.unit(1.05, "feet"),
  54772. name: "Shoe",
  54773. image: {
  54774. source: "./media/characters/fiera/shoe.svg"
  54775. }
  54776. },
  54777. },
  54778. [
  54779. {
  54780. name: "Normal",
  54781. height: math.unit(6 + 2/12, "feet"),
  54782. default: true
  54783. },
  54784. {
  54785. name: "Size Difference",
  54786. height: math.unit(13, "feet")
  54787. },
  54788. {
  54789. name: "Macro",
  54790. height: math.unit(60, "feet")
  54791. },
  54792. {
  54793. name: "Mega Macro",
  54794. height: math.unit(200, "feet")
  54795. },
  54796. ]
  54797. ))
  54798. characterMakers.push(() => makeCharacter(
  54799. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  54800. {
  54801. back: {
  54802. height: math.unit(6, "feet"),
  54803. name: "Back",
  54804. image: {
  54805. source: "./media/characters/flare/back.svg",
  54806. extra: 1883/1765,
  54807. bottom: 32/1915
  54808. }
  54809. },
  54810. },
  54811. [
  54812. {
  54813. name: "Normal",
  54814. height: math.unit(6 + 2/12, "feet"),
  54815. default: true
  54816. },
  54817. {
  54818. name: "Size Difference",
  54819. height: math.unit(13, "feet")
  54820. },
  54821. {
  54822. name: "Macro",
  54823. height: math.unit(60, "feet")
  54824. },
  54825. {
  54826. name: "Macro 2",
  54827. height: math.unit(100, "feet")
  54828. },
  54829. {
  54830. name: "Mega Macro",
  54831. height: math.unit(200, "feet")
  54832. },
  54833. ]
  54834. ))
  54835. characterMakers.push(() => makeCharacter(
  54836. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  54837. {
  54838. front: {
  54839. height: math.unit(2.2, "m"),
  54840. weight: math.unit(300, "kg"),
  54841. name: "Front",
  54842. image: {
  54843. source: "./media/characters/hanna/front.svg",
  54844. extra: 1696/1502,
  54845. bottom: 206/1902
  54846. }
  54847. },
  54848. },
  54849. [
  54850. {
  54851. name: "Humanoid",
  54852. height: math.unit(2.2, "meters")
  54853. },
  54854. {
  54855. name: "Normal",
  54856. height: math.unit(4.8, "meters"),
  54857. default: true
  54858. },
  54859. ]
  54860. ))
  54861. characterMakers.push(() => makeCharacter(
  54862. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  54863. {
  54864. front: {
  54865. height: math.unit(2.8, "meters"),
  54866. name: "Front",
  54867. image: {
  54868. source: "./media/characters/argo/front.svg",
  54869. extra: 731/518,
  54870. bottom: 84/815
  54871. }
  54872. },
  54873. },
  54874. [
  54875. {
  54876. name: "Normal",
  54877. height: math.unit(3, "meters"),
  54878. default: true
  54879. },
  54880. ]
  54881. ))
  54882. characterMakers.push(() => makeCharacter(
  54883. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  54884. {
  54885. side: {
  54886. height: math.unit(3.8, "meters"),
  54887. name: "Side",
  54888. image: {
  54889. source: "./media/characters/sybil/side.svg",
  54890. extra: 382/361,
  54891. bottom: 25/407
  54892. }
  54893. },
  54894. },
  54895. [
  54896. {
  54897. name: "Normal",
  54898. height: math.unit(3.8, "meters"),
  54899. default: true
  54900. },
  54901. ]
  54902. ))
  54903. characterMakers.push(() => makeCharacter(
  54904. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  54905. {
  54906. side: {
  54907. height: math.unit(6, "meters"),
  54908. name: "Side",
  54909. image: {
  54910. source: "./media/characters/plum/side.svg",
  54911. extra: 858/755,
  54912. bottom: 45/903
  54913. },
  54914. form: "taur",
  54915. default: true
  54916. },
  54917. back: {
  54918. height: math.unit(6.3, "meters"),
  54919. name: "Back",
  54920. image: {
  54921. source: "./media/characters/plum/back.svg",
  54922. extra: 887/813,
  54923. bottom: 32/919
  54924. },
  54925. form: "taur",
  54926. },
  54927. feral: {
  54928. height: math.unit(5.5, "meter"),
  54929. name: "Front",
  54930. image: {
  54931. source: "./media/characters/plum/feral.svg",
  54932. extra: 568/403,
  54933. bottom: 51/619
  54934. },
  54935. form: "feral",
  54936. default: true
  54937. },
  54938. head: {
  54939. height: math.unit(1.46, "meter"),
  54940. name: "Head",
  54941. image: {
  54942. source: "./media/characters/plum/head.svg"
  54943. },
  54944. form: "taur"
  54945. },
  54946. tailTop: {
  54947. height: math.unit(5.6, "meter"),
  54948. name: "Tail (Top)",
  54949. image: {
  54950. source: "./media/characters/plum/tail-top.svg"
  54951. },
  54952. form: "taur",
  54953. },
  54954. tailBottom: {
  54955. height: math.unit(5.6, "meter"),
  54956. name: "Tail (Bottom)",
  54957. image: {
  54958. source: "./media/characters/plum/tail-bottom.svg"
  54959. },
  54960. form: "taur",
  54961. },
  54962. feralHead: {
  54963. height: math.unit(2.56549521, "meter"),
  54964. name: "Head",
  54965. image: {
  54966. source: "./media/characters/plum/head.svg"
  54967. },
  54968. form: "feral"
  54969. },
  54970. feralTailTop: {
  54971. height: math.unit(5.44728435, "meter"),
  54972. name: "Tail (Top)",
  54973. image: {
  54974. source: "./media/characters/plum/tail-top.svg"
  54975. },
  54976. form: "feral",
  54977. },
  54978. feralTailBottom: {
  54979. height: math.unit(5.44728435, "meter"),
  54980. name: "Tail (Bottom)",
  54981. image: {
  54982. source: "./media/characters/plum/tail-bottom.svg"
  54983. },
  54984. form: "feral",
  54985. },
  54986. },
  54987. [
  54988. {
  54989. name: "Normal",
  54990. height: math.unit(6, "meters"),
  54991. default: true,
  54992. form: "taur"
  54993. },
  54994. {
  54995. name: "Normal",
  54996. height: math.unit(5.5, "meters"),
  54997. default: true,
  54998. form: "feral"
  54999. },
  55000. ],
  55001. {
  55002. "taur": {
  55003. name: "Taur",
  55004. default: true
  55005. },
  55006. "feral": {
  55007. name: "Feral",
  55008. },
  55009. }
  55010. ))
  55011. characterMakers.push(() => makeCharacter(
  55012. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  55013. {
  55014. front: {
  55015. height: math.unit(6, "feet"),
  55016. weight: math.unit(115, "lb"),
  55017. name: "Front",
  55018. image: {
  55019. source: "./media/characters/celeste-kitsune/front.svg",
  55020. extra: 393/366,
  55021. bottom: 7/400
  55022. }
  55023. },
  55024. side: {
  55025. height: math.unit(6, "feet"),
  55026. weight: math.unit(115, "lb"),
  55027. name: "Side",
  55028. image: {
  55029. source: "./media/characters/celeste-kitsune/side.svg",
  55030. extra: 818/765,
  55031. bottom: 40/858
  55032. }
  55033. },
  55034. },
  55035. [
  55036. {
  55037. name: "Megamacro",
  55038. height: math.unit(1500, "miles"),
  55039. default: true
  55040. },
  55041. ]
  55042. ))
  55043. characterMakers.push(() => makeCharacter(
  55044. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  55045. {
  55046. front: {
  55047. height: math.unit(8, "meters"),
  55048. name: "Front",
  55049. image: {
  55050. source: "./media/characters/io/front.svg",
  55051. extra: 865/722,
  55052. bottom: 58/923
  55053. }
  55054. },
  55055. back: {
  55056. height: math.unit(8, "meters"),
  55057. name: "Back",
  55058. image: {
  55059. source: "./media/characters/io/back.svg",
  55060. extra: 920/776,
  55061. bottom: 42/962
  55062. }
  55063. },
  55064. head: {
  55065. height: math.unit(5.09, "meters"),
  55066. name: "Head",
  55067. image: {
  55068. source: "./media/characters/io/head.svg"
  55069. }
  55070. },
  55071. hand: {
  55072. height: math.unit(1.6, "meters"),
  55073. name: "Hand",
  55074. image: {
  55075. source: "./media/characters/io/hand.svg"
  55076. }
  55077. },
  55078. foot: {
  55079. height: math.unit(2.4, "meters"),
  55080. name: "Foot",
  55081. image: {
  55082. source: "./media/characters/io/foot.svg"
  55083. }
  55084. },
  55085. },
  55086. [
  55087. {
  55088. name: "Normal",
  55089. height: math.unit(8, "meters"),
  55090. default: true
  55091. },
  55092. ]
  55093. ))
  55094. characterMakers.push(() => makeCharacter(
  55095. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  55096. {
  55097. side: {
  55098. height: math.unit(6 + 3/12, "feet"),
  55099. weight: math.unit(225, "lb"),
  55100. name: "Side",
  55101. image: {
  55102. source: "./media/characters/silas/side.svg",
  55103. extra: 703/653,
  55104. bottom: 23/726
  55105. },
  55106. extraAttributes: {
  55107. "pawLength": {
  55108. name: "Paw Length",
  55109. power: 1,
  55110. type: "length",
  55111. base: math.unit(12, "inches")
  55112. },
  55113. "pawWidth": {
  55114. name: "Paw Width",
  55115. power: 1,
  55116. type: "length",
  55117. base: math.unit(4.5, "inches")
  55118. },
  55119. "pawArea": {
  55120. name: "Paw Area",
  55121. power: 2,
  55122. type: "area",
  55123. base: math.unit(12 * 4.5, "inches^2")
  55124. },
  55125. }
  55126. },
  55127. },
  55128. [
  55129. {
  55130. name: "Normal",
  55131. height: math.unit(6 + 3/12, "feet"),
  55132. default: true
  55133. },
  55134. ]
  55135. ))
  55136. characterMakers.push(() => makeCharacter(
  55137. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  55138. {
  55139. back: {
  55140. height: math.unit(1.6, "meters"),
  55141. weight: math.unit(150, "lb"),
  55142. name: "Back",
  55143. image: {
  55144. source: "./media/characters/zari/back.svg",
  55145. extra: 424/411,
  55146. bottom: 32/456
  55147. },
  55148. extraAttributes: {
  55149. "bladderCapacity": {
  55150. name: "Bladder Size",
  55151. power: 3,
  55152. type: "volume",
  55153. base: math.unit(500, "mL")
  55154. },
  55155. "bladderFlow": {
  55156. name: "Flow Rate",
  55157. power: 3,
  55158. type: "volume",
  55159. base: math.unit(25, "mL")
  55160. },
  55161. }
  55162. },
  55163. },
  55164. [
  55165. {
  55166. name: "Normal",
  55167. height: math.unit(1.6, "meters"),
  55168. default: true
  55169. },
  55170. ]
  55171. ))
  55172. characterMakers.push(() => makeCharacter(
  55173. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  55174. {
  55175. front: {
  55176. height: math.unit(25, "feet"),
  55177. weight: math.unit(5, "tons"),
  55178. name: "Front",
  55179. image: {
  55180. source: "./media/characters/charlie-human/front.svg",
  55181. extra: 1870/1740,
  55182. bottom: 102/1972
  55183. },
  55184. extraAttributes: {
  55185. "dickLength": {
  55186. name: "Dick Length",
  55187. power: 1,
  55188. type: "length",
  55189. base: math.unit(9, "feet")
  55190. },
  55191. }
  55192. },
  55193. back: {
  55194. height: math.unit(25, "feet"),
  55195. weight: math.unit(5, "tons"),
  55196. name: "Back",
  55197. image: {
  55198. source: "./media/characters/charlie-human/back.svg",
  55199. extra: 1858/1733,
  55200. bottom: 105/1963
  55201. },
  55202. extraAttributes: {
  55203. "dickLength": {
  55204. name: "Dick Length",
  55205. power: 1,
  55206. type: "length",
  55207. base: math.unit(9, "feet")
  55208. },
  55209. }
  55210. },
  55211. },
  55212. [
  55213. {
  55214. name: "\"Normal\"",
  55215. height: math.unit(6 + 4/12, "feet")
  55216. },
  55217. {
  55218. name: "Big",
  55219. height: math.unit(25, "feet"),
  55220. default: true
  55221. },
  55222. ]
  55223. ))
  55224. characterMakers.push(() => makeCharacter(
  55225. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  55226. {
  55227. front: {
  55228. height: math.unit(6 + 4/12, "feet"),
  55229. weight: math.unit(320, "lb"),
  55230. name: "Front",
  55231. image: {
  55232. source: "./media/characters/ookitsu/front.svg",
  55233. extra: 1160/976,
  55234. bottom: 38/1198
  55235. }
  55236. },
  55237. frontNsfw: {
  55238. height: math.unit(6 + 4/12, "feet"),
  55239. weight: math.unit(320, "lb"),
  55240. name: "Front (NSFW)",
  55241. image: {
  55242. source: "./media/characters/ookitsu/front-nsfw.svg",
  55243. extra: 1160/976,
  55244. bottom: 38/1198
  55245. }
  55246. },
  55247. back: {
  55248. height: math.unit(6 + 4/12, "feet"),
  55249. weight: math.unit(320, "lb"),
  55250. name: "Back",
  55251. image: {
  55252. source: "./media/characters/ookitsu/back.svg",
  55253. extra: 1030/975,
  55254. bottom: 70/1100
  55255. }
  55256. },
  55257. head: {
  55258. height: math.unit(1.79, "feet"),
  55259. name: "Head",
  55260. image: {
  55261. source: "./media/characters/ookitsu/head.svg"
  55262. }
  55263. },
  55264. hand: {
  55265. height: math.unit(0.92, "feet"),
  55266. name: "Hand",
  55267. image: {
  55268. source: "./media/characters/ookitsu/hand.svg"
  55269. }
  55270. },
  55271. tails: {
  55272. height: math.unit(3.3, "feet"),
  55273. name: "Tails",
  55274. image: {
  55275. source: "./media/characters/ookitsu/tails.svg"
  55276. }
  55277. },
  55278. dick: {
  55279. height: math.unit(1.10833, "feet"),
  55280. name: "Dick",
  55281. image: {
  55282. source: "./media/characters/ookitsu/dick.svg"
  55283. }
  55284. },
  55285. },
  55286. [
  55287. {
  55288. name: "Normal",
  55289. height: math.unit(6 + 4/12, "feet"),
  55290. default: true
  55291. },
  55292. {
  55293. name: "Macro",
  55294. height: math.unit(30, "feet")
  55295. },
  55296. ]
  55297. ))
  55298. characterMakers.push(() => makeCharacter(
  55299. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  55300. {
  55301. anthroFront: {
  55302. height: math.unit(6, "feet"),
  55303. weight: math.unit(250, "lb"),
  55304. name: "Front",
  55305. image: {
  55306. source: "./media/characters/jhusky/anthro-front.svg",
  55307. extra: 474/439,
  55308. bottom: 7/481
  55309. },
  55310. form: "anthro",
  55311. default: true
  55312. },
  55313. taurSideSfw: {
  55314. height: math.unit(6 + 4/12, "feet"),
  55315. weight: math.unit(500, "lb"),
  55316. name: "Side (SFW)",
  55317. image: {
  55318. source: "./media/characters/jhusky/taur-side-sfw.svg",
  55319. extra: 1741/1629,
  55320. bottom: 196/1937
  55321. },
  55322. form: "taur",
  55323. default: true
  55324. },
  55325. taurSideNsfw: {
  55326. height: math.unit(6 + 4/12, "feet"),
  55327. weight: math.unit(500, "lb"),
  55328. name: "Taur (NSFW)",
  55329. image: {
  55330. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  55331. extra: 1741/1629,
  55332. bottom: 196/1937
  55333. },
  55334. form: "taur",
  55335. },
  55336. },
  55337. [
  55338. {
  55339. name: "Huge",
  55340. height: math.unit(500, "feet"),
  55341. form: "anthro"
  55342. },
  55343. {
  55344. name: "Macro",
  55345. height: math.unit(1000, "feet"),
  55346. default: true,
  55347. form: "anthro"
  55348. },
  55349. {
  55350. name: "Megamacro",
  55351. height: math.unit(10000, "feet"),
  55352. form: "anthro"
  55353. },
  55354. {
  55355. name: "Huge",
  55356. height: math.unit(528, "feet"),
  55357. form: "taur"
  55358. },
  55359. {
  55360. name: "Macro",
  55361. height: math.unit(1056, "feet"),
  55362. default: true,
  55363. form: "taur"
  55364. },
  55365. {
  55366. name: "Megamacro",
  55367. height: math.unit(10556, "feet"),
  55368. form: "taur"
  55369. },
  55370. ],
  55371. {
  55372. "anthro": {
  55373. name: "Anthro",
  55374. default: true
  55375. },
  55376. "taur": {
  55377. name: "Taur",
  55378. },
  55379. }
  55380. ))
  55381. characterMakers.push(() => makeCharacter(
  55382. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  55383. {
  55384. front: {
  55385. height: math.unit(8, "feet"),
  55386. weight: math.unit(500, "lb"),
  55387. name: "Front",
  55388. image: {
  55389. source: "./media/characters/armail/front.svg",
  55390. extra: 1753/1669,
  55391. bottom: 155/1908
  55392. }
  55393. },
  55394. back: {
  55395. height: math.unit(8, "feet"),
  55396. weight: math.unit(500, "lb"),
  55397. name: "Back",
  55398. image: {
  55399. source: "./media/characters/armail/back.svg",
  55400. extra: 1872/1803,
  55401. bottom: 63/1935
  55402. }
  55403. },
  55404. },
  55405. [
  55406. {
  55407. name: "Micro",
  55408. height: math.unit(0.25, "feet")
  55409. },
  55410. {
  55411. name: "Normal",
  55412. height: math.unit(8, "feet"),
  55413. default: true
  55414. },
  55415. {
  55416. name: "Mini-macro",
  55417. height: math.unit(30, "feet")
  55418. },
  55419. {
  55420. name: "Macro",
  55421. height: math.unit(400, "feet")
  55422. },
  55423. {
  55424. name: "Mega-macro",
  55425. height: math.unit(6000, "feet")
  55426. },
  55427. ]
  55428. ))
  55429. characterMakers.push(() => makeCharacter(
  55430. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  55431. {
  55432. front: {
  55433. height: math.unit(6 + 7/12, "feet"),
  55434. weight: math.unit(210, "lb"),
  55435. name: "Front",
  55436. image: {
  55437. source: "./media/characters/wilfred-t-buxton/front.svg",
  55438. extra: 1068/882,
  55439. bottom: 28/1096
  55440. }
  55441. },
  55442. },
  55443. [
  55444. {
  55445. name: "Normal",
  55446. height: math.unit(6 + 7/12, "feet"),
  55447. default: true
  55448. },
  55449. ]
  55450. ))
  55451. characterMakers.push(() => makeCharacter(
  55452. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  55453. {
  55454. front: {
  55455. height: math.unit(5 + 2/12, "feet"),
  55456. weight: math.unit(120, "lb"),
  55457. name: "Front",
  55458. image: {
  55459. source: "./media/characters/leighton-marrow/front.svg",
  55460. extra: 441/409,
  55461. bottom: 37/478
  55462. }
  55463. },
  55464. },
  55465. [
  55466. {
  55467. name: "Normal",
  55468. height: math.unit(5 + 2/12, "feet"),
  55469. default: true
  55470. },
  55471. ]
  55472. ))
  55473. characterMakers.push(() => makeCharacter(
  55474. { name: "Licos", species: ["werewolf"], tags: ["anthro", "taur"] },
  55475. {
  55476. front: {
  55477. height: math.unit(4, "meters"),
  55478. weight: math.unit(1200, "kg"),
  55479. name: "Front",
  55480. image: {
  55481. source: "./media/characters/licos/front.svg",
  55482. extra: 1727/1604,
  55483. bottom: 101/1828
  55484. },
  55485. form: "anthro",
  55486. default: true
  55487. },
  55488. taur_side: {
  55489. height: math.unit(20, "meters"),
  55490. weight: math.unit(1100000, "kg"),
  55491. name: "Side",
  55492. image: {
  55493. source: "./media/characters/licos/taur.svg",
  55494. extra: 1158/1091,
  55495. bottom: 80/1238
  55496. },
  55497. form: "taur",
  55498. default: true
  55499. },
  55500. },
  55501. [
  55502. {
  55503. name: "Normal",
  55504. height: math.unit(4, "meters"),
  55505. default: true,
  55506. form: "anthro"
  55507. },
  55508. {
  55509. name: "Normal",
  55510. height: math.unit(20, "meters"),
  55511. default: true,
  55512. form: "taur"
  55513. },
  55514. ],
  55515. {
  55516. "anthro": {
  55517. name: "Anthro",
  55518. default: true
  55519. },
  55520. "taur": {
  55521. name: "Taur",
  55522. },
  55523. }
  55524. ))
  55525. characterMakers.push(() => makeCharacter(
  55526. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  55527. {
  55528. front: {
  55529. height: math.unit(10 + 3/12, "feet"),
  55530. name: "Front",
  55531. image: {
  55532. source: "./media/characters/theo-monkey/front.svg",
  55533. extra: 1735/1658,
  55534. bottom: 73/1808
  55535. }
  55536. },
  55537. back: {
  55538. height: math.unit(10 + 3/12, "feet"),
  55539. name: "Back",
  55540. image: {
  55541. source: "./media/characters/theo-monkey/back.svg",
  55542. extra: 1742/1664,
  55543. bottom: 33/1775
  55544. }
  55545. },
  55546. head: {
  55547. height: math.unit(2.29, "feet"),
  55548. name: "Head",
  55549. image: {
  55550. source: "./media/characters/theo-monkey/head.svg"
  55551. }
  55552. },
  55553. handPalm: {
  55554. height: math.unit(1.73, "feet"),
  55555. name: "Hand (Palm)",
  55556. image: {
  55557. source: "./media/characters/theo-monkey/hand-palm.svg"
  55558. }
  55559. },
  55560. handBack: {
  55561. height: math.unit(1.63, "feet"),
  55562. name: "Hand (Back)",
  55563. image: {
  55564. source: "./media/characters/theo-monkey/hand-back.svg"
  55565. }
  55566. },
  55567. footSole: {
  55568. height: math.unit(2.15, "feet"),
  55569. name: "Foot (Sole)",
  55570. image: {
  55571. source: "./media/characters/theo-monkey/foot-sole.svg"
  55572. }
  55573. },
  55574. footSide: {
  55575. height: math.unit(1.6, "feet"),
  55576. name: "Foot (Side)",
  55577. image: {
  55578. source: "./media/characters/theo-monkey/foot-side.svg"
  55579. }
  55580. },
  55581. },
  55582. [
  55583. {
  55584. name: "Normal",
  55585. height: math.unit(10 + 3/12, "feet"),
  55586. default: true
  55587. },
  55588. ]
  55589. ))
  55590. characterMakers.push(() => makeCharacter(
  55591. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  55592. {
  55593. front: {
  55594. height: math.unit(11, "feet"),
  55595. weight: math.unit(3000, "lb"),
  55596. preyCapacity: math.unit(10, "people"),
  55597. name: "Front",
  55598. image: {
  55599. source: "./media/characters/brook/front.svg",
  55600. extra: 909/835,
  55601. bottom: 108/1017
  55602. }
  55603. },
  55604. back: {
  55605. height: math.unit(11, "feet"),
  55606. weight: math.unit(3000, "lb"),
  55607. preyCapacity: math.unit(10, "people"),
  55608. name: "Back",
  55609. image: {
  55610. source: "./media/characters/brook/back.svg",
  55611. extra: 976/916,
  55612. bottom: 34/1010
  55613. }
  55614. },
  55615. backAlt: {
  55616. height: math.unit(11, "feet"),
  55617. weight: math.unit(3000, "lb"),
  55618. preyCapacity: math.unit(10, "people"),
  55619. name: "Back (Alt)",
  55620. image: {
  55621. source: "./media/characters/brook/back-alt.svg",
  55622. extra: 1283/1213,
  55623. bottom: 35/1318
  55624. }
  55625. },
  55626. bust: {
  55627. height: math.unit(9.0859030837, "feet"),
  55628. weight: math.unit(3000, "lb"),
  55629. preyCapacity: math.unit(10, "people"),
  55630. name: "Bust",
  55631. image: {
  55632. source: "./media/characters/brook/bust.svg",
  55633. extra: 2043/1923,
  55634. bottom: 0/2043
  55635. }
  55636. },
  55637. },
  55638. [
  55639. {
  55640. name: "Small",
  55641. height: math.unit(11, "feet"),
  55642. default: true
  55643. },
  55644. {
  55645. name: "Towering",
  55646. height: math.unit(5, "km")
  55647. },
  55648. {
  55649. name: "Enormous",
  55650. height: math.unit(25, "earths")
  55651. },
  55652. ]
  55653. ))
  55654. characterMakers.push(() => makeCharacter(
  55655. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  55656. {
  55657. front: {
  55658. height: math.unit(4, "feet"),
  55659. weight: math.unit(150, "lb"),
  55660. name: "Front",
  55661. image: {
  55662. source: "./media/characters/squishi/front.svg",
  55663. extra: 1428/1271,
  55664. bottom: 30/1458
  55665. },
  55666. extraAttributes: {
  55667. "pawSize": {
  55668. name: "Paw Size",
  55669. power: 1,
  55670. type: "length",
  55671. base: math.unit(14, "ShoeSizeMensUS"),
  55672. defaultUnit: "ShoeSizeMensUS"
  55673. },
  55674. }
  55675. },
  55676. side: {
  55677. height: math.unit(4, "feet"),
  55678. weight: math.unit(150, "lb"),
  55679. name: "Side",
  55680. image: {
  55681. source: "./media/characters/squishi/side.svg",
  55682. extra: 1428/1271,
  55683. bottom: 30/1458
  55684. },
  55685. extraAttributes: {
  55686. "pawSize": {
  55687. name: "Paw Size",
  55688. power: 1,
  55689. type: "length",
  55690. base: math.unit(14, "ShoeSizeMensUS"),
  55691. defaultUnit: "ShoeSizeMensUS"
  55692. },
  55693. }
  55694. },
  55695. back: {
  55696. height: math.unit(4, "feet"),
  55697. weight: math.unit(150, "lb"),
  55698. name: "Back",
  55699. image: {
  55700. source: "./media/characters/squishi/back.svg",
  55701. extra: 1428/1271,
  55702. bottom: 30/1458
  55703. },
  55704. extraAttributes: {
  55705. "pawSize": {
  55706. name: "Paw Size",
  55707. power: 1,
  55708. type: "length",
  55709. base: math.unit(14, "ShoeSizeMensUS"),
  55710. defaultUnit: "ShoeSizeMensUS"
  55711. },
  55712. }
  55713. },
  55714. },
  55715. [
  55716. {
  55717. name: "Normal",
  55718. height: math.unit(4, "feet"),
  55719. default: true
  55720. },
  55721. ]
  55722. ))
  55723. characterMakers.push(() => makeCharacter(
  55724. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  55725. {
  55726. front: {
  55727. height: math.unit(7 + 8/12, "feet"),
  55728. weight: math.unit(333, "lb"),
  55729. name: "Front",
  55730. image: {
  55731. source: "./media/characters/vincent-vasroc/front.svg",
  55732. extra: 1962/1860,
  55733. bottom: 41/2003
  55734. }
  55735. },
  55736. back: {
  55737. height: math.unit(7 + 8/12, "feet"),
  55738. weight: math.unit(333, "lb"),
  55739. name: "Back",
  55740. image: {
  55741. source: "./media/characters/vincent-vasroc/back.svg",
  55742. extra: 1952/1815,
  55743. bottom: 33/1985
  55744. }
  55745. },
  55746. paw: {
  55747. height: math.unit(1.24, "feet"),
  55748. name: "Paw",
  55749. image: {
  55750. source: "./media/characters/vincent-vasroc/paw.svg"
  55751. }
  55752. },
  55753. ear: {
  55754. height: math.unit(0.75, "feet"),
  55755. name: "Ear",
  55756. image: {
  55757. source: "./media/characters/vincent-vasroc/ear.svg"
  55758. }
  55759. },
  55760. },
  55761. [
  55762. {
  55763. name: "Nano",
  55764. height: math.unit(92, "micrometers")
  55765. },
  55766. {
  55767. name: "Normal",
  55768. height: math.unit(7 + 8/12, "feet"),
  55769. default: true
  55770. },
  55771. ]
  55772. ))
  55773. characterMakers.push(() => makeCharacter(
  55774. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  55775. {
  55776. frontNsfw: {
  55777. height: math.unit(40, "feet"),
  55778. weight: math.unit(58, "tons"),
  55779. name: "Front (NSFW)",
  55780. image: {
  55781. source: "./media/characters/ru-kahn/front-nsfw.svg",
  55782. extra: 1265/965,
  55783. bottom: 155/1420
  55784. }
  55785. },
  55786. frontSfw: {
  55787. height: math.unit(40, "feet"),
  55788. weight: math.unit(58, "tons"),
  55789. name: "Front (SFW)",
  55790. image: {
  55791. source: "./media/characters/ru-kahn/front-sfw.svg",
  55792. extra: 1265/965,
  55793. bottom: 80/1345
  55794. }
  55795. },
  55796. },
  55797. [
  55798. {
  55799. name: "Small",
  55800. height: math.unit(4, "feet")
  55801. },
  55802. {
  55803. name: "Normal",
  55804. height: math.unit(40, "feet"),
  55805. default: true
  55806. },
  55807. {
  55808. name: "Macro",
  55809. height: math.unit(400, "feet")
  55810. },
  55811. ]
  55812. ))
  55813. characterMakers.push(() => makeCharacter(
  55814. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  55815. {
  55816. frontNude: {
  55817. height: math.unit(6 + 5/12, "feet"),
  55818. name: "Front (Nude)",
  55819. image: {
  55820. source: "./media/characters/sylvie-laforge/front-nude.svg",
  55821. extra: 1369/1366,
  55822. bottom: 68/1437
  55823. }
  55824. },
  55825. frontDressed: {
  55826. height: math.unit(6 + 5/12, "feet"),
  55827. name: "Front (Dressed)",
  55828. image: {
  55829. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  55830. extra: 1369/1366,
  55831. bottom: 68/1437
  55832. }
  55833. },
  55834. },
  55835. [
  55836. {
  55837. name: "Normal",
  55838. height: math.unit(6 + 5/12, "feet"),
  55839. default: true
  55840. },
  55841. {
  55842. name: "Maximum",
  55843. height: math.unit(1930, "feet")
  55844. },
  55845. ]
  55846. ))
  55847. characterMakers.push(() => makeCharacter(
  55848. { name: "Kaja", species: ["zoroark"], tags: ["anthro"] },
  55849. {
  55850. front: {
  55851. height: math.unit(5 + 6/12, "feet"),
  55852. name: "Front",
  55853. image: {
  55854. source: "./media/characters/kaja/front.svg",
  55855. extra: 1874/1514,
  55856. bottom: 117/1991
  55857. }
  55858. },
  55859. },
  55860. [
  55861. {
  55862. name: "Normal",
  55863. height: math.unit(5 + 6/12, "feet"),
  55864. default: true
  55865. },
  55866. ]
  55867. ))
  55868. characterMakers.push(() => makeCharacter(
  55869. { name: "Mark Smith", species: ["husky"], tags: ["anthro"] },
  55870. {
  55871. front: {
  55872. height: math.unit(5 + 9/12, "feet"),
  55873. weight: math.unit(200, "lb"),
  55874. name: "Front",
  55875. image: {
  55876. source: "./media/characters/mark-smith/front.svg",
  55877. extra: 1004/943,
  55878. bottom: 58/1062
  55879. }
  55880. },
  55881. back: {
  55882. height: math.unit(5 + 9/12, "feet"),
  55883. weight: math.unit(200, "lb"),
  55884. name: "Back",
  55885. image: {
  55886. source: "./media/characters/mark-smith/back.svg",
  55887. extra: 1023/953,
  55888. bottom: 24/1047
  55889. }
  55890. },
  55891. head: {
  55892. height: math.unit(1.82, "feet"),
  55893. name: "Head",
  55894. image: {
  55895. source: "./media/characters/mark-smith/head.svg"
  55896. }
  55897. },
  55898. hand: {
  55899. height: math.unit(1.4, "feet"),
  55900. name: "Hand",
  55901. image: {
  55902. source: "./media/characters/mark-smith/hand.svg"
  55903. }
  55904. },
  55905. paw: {
  55906. height: math.unit(1.69, "feet"),
  55907. name: "Paw",
  55908. image: {
  55909. source: "./media/characters/mark-smith/paw.svg"
  55910. }
  55911. },
  55912. },
  55913. [
  55914. {
  55915. name: "Micro",
  55916. height: math.unit(0.25, "inches")
  55917. },
  55918. {
  55919. name: "Normal",
  55920. height: math.unit(5 + 9/12, "feet"),
  55921. default: true
  55922. },
  55923. {
  55924. name: "Macro",
  55925. height: math.unit(500, "feet")
  55926. },
  55927. ]
  55928. ))
  55929. characterMakers.push(() => makeCharacter(
  55930. { name: "Rebecca 'Becky' Houston", species: ["gryphon"], tags: ["anthro"] },
  55931. {
  55932. frontNude: {
  55933. height: math.unit(6, "feet"),
  55934. name: "Front (Nude)",
  55935. image: {
  55936. source: "./media/characters/rebecca-becky-houston/front-nude.svg",
  55937. extra: 1384/1321,
  55938. bottom: 57/1441
  55939. }
  55940. },
  55941. frontDressed: {
  55942. height: math.unit(6, "feet"),
  55943. name: "Front (Dressed)",
  55944. image: {
  55945. source: "./media/characters/rebecca-becky-houston/front-dressed.svg",
  55946. extra: 1384/1321,
  55947. bottom: 57/1441
  55948. }
  55949. },
  55950. },
  55951. [
  55952. {
  55953. name: "Normal",
  55954. height: math.unit(6, "feet"),
  55955. default: true
  55956. },
  55957. {
  55958. name: "Maximum",
  55959. height: math.unit(1776, "feet")
  55960. },
  55961. ]
  55962. ))
  55963. characterMakers.push(() => makeCharacter(
  55964. { name: "Devos", species: ["dragon"], tags: ["feral"] },
  55965. {
  55966. front: {
  55967. height: math.unit(2 + 4/12, "feet"),
  55968. weight: math.unit(350, "lb"),
  55969. name: "Front",
  55970. image: {
  55971. source: "./media/characters/devos/front.svg",
  55972. extra: 958/852,
  55973. bottom: 143/1101
  55974. }
  55975. },
  55976. },
  55977. [
  55978. {
  55979. name: "Base",
  55980. height: math.unit(2 + 4/12, "feet"),
  55981. default: true
  55982. },
  55983. ]
  55984. ))
  55985. characterMakers.push(() => makeCharacter(
  55986. { name: "Hiveheart", species: ["sliver"], tags: ["anthro"] },
  55987. {
  55988. front: {
  55989. height: math.unit(9 + 2/12, "feet"),
  55990. name: "Front",
  55991. image: {
  55992. source: "./media/characters/hiveheart/front.svg",
  55993. extra: 394/364,
  55994. bottom: 65/459
  55995. }
  55996. },
  55997. back: {
  55998. height: math.unit(9 + 2/12, "feet"),
  55999. name: "Back",
  56000. image: {
  56001. source: "./media/characters/hiveheart/back.svg",
  56002. extra: 374/357,
  56003. bottom: 63/437
  56004. }
  56005. },
  56006. },
  56007. [
  56008. {
  56009. name: "Base",
  56010. height: math.unit(9 + 2/12, "feet"),
  56011. default: true
  56012. },
  56013. ]
  56014. ))
  56015. characterMakers.push(() => makeCharacter(
  56016. { name: "Bryn", species: ["moth"], tags: ["anthro"] },
  56017. {
  56018. front: {
  56019. height: math.unit(2.5, "inches"),
  56020. weight: math.unit(0.6, "oz"),
  56021. name: "Front",
  56022. image: {
  56023. source: "./media/characters/bryn/front.svg",
  56024. extra: 1480/1205,
  56025. bottom: 27/1507
  56026. }
  56027. },
  56028. back: {
  56029. height: math.unit(2.5, "inches"),
  56030. weight: math.unit(0.6, "oz"),
  56031. name: "Back",
  56032. image: {
  56033. source: "./media/characters/bryn/back.svg",
  56034. extra: 1475/1201,
  56035. bottom: 39/1514
  56036. }
  56037. },
  56038. foot: {
  56039. height: math.unit(0.4, "inches"),
  56040. name: "Foot",
  56041. image: {
  56042. source: "./media/characters/bryn/foot.svg"
  56043. }
  56044. },
  56045. },
  56046. [
  56047. {
  56048. name: "Normal",
  56049. height: math.unit(2.5, "inches"),
  56050. default: true
  56051. },
  56052. ]
  56053. ))
  56054. characterMakers.push(() => makeCharacter(
  56055. { name: "Delta", species: ["dragon"], tags: ["feral"] },
  56056. {
  56057. side: {
  56058. height: math.unit(7, "feet"),
  56059. weight: math.unit(657, "kg"),
  56060. name: "Side",
  56061. image: {
  56062. source: "./media/characters/delta/side.svg",
  56063. extra: 781/212,
  56064. bottom: 7/788
  56065. },
  56066. extraAttributes: {
  56067. "wingspan": {
  56068. name: "Wingspan",
  56069. power: 1,
  56070. type: "length",
  56071. base: math.unit(48, "feet")
  56072. },
  56073. "length": {
  56074. name: "Length",
  56075. power: 1,
  56076. type: "length",
  56077. base: math.unit(21, "feet")
  56078. },
  56079. "pawSize": {
  56080. name: "Paw Size",
  56081. power: 2,
  56082. type: "area",
  56083. base: math.unit(1.5*1.4, "feet^2")
  56084. },
  56085. }
  56086. },
  56087. },
  56088. [
  56089. {
  56090. name: "Normal",
  56091. height: math.unit(6, "feet"),
  56092. default: true
  56093. },
  56094. ]
  56095. ))
  56096. characterMakers.push(() => makeCharacter(
  56097. { name: "Pyrow", species: ["sergix"], tags: ["anthro"] },
  56098. {
  56099. front: {
  56100. height: math.unit(6, "feet"),
  56101. name: "Front",
  56102. image: {
  56103. source: "./media/characters/pyrow/front.svg",
  56104. extra: 513/486,
  56105. bottom: 14/527
  56106. }
  56107. },
  56108. frontWing: {
  56109. height: math.unit(6, "feet"),
  56110. name: "Front (Wing)",
  56111. image: {
  56112. source: "./media/characters/pyrow/front-wing.svg",
  56113. extra: 539/383,
  56114. bottom: 20/559
  56115. }
  56116. },
  56117. back: {
  56118. height: math.unit(6, "feet"),
  56119. name: "Back",
  56120. image: {
  56121. source: "./media/characters/pyrow/back.svg",
  56122. extra: 500/473,
  56123. bottom: 9/509
  56124. }
  56125. },
  56126. },
  56127. [
  56128. {
  56129. name: "Normal",
  56130. height: math.unit(6, "feet"),
  56131. default: true
  56132. },
  56133. ]
  56134. ))
  56135. characterMakers.push(() => makeCharacter(
  56136. { name: "Velikan", species: ["behemoth"], tags: ["anthro"] },
  56137. {
  56138. front: {
  56139. height: math.unit(5, "meters"),
  56140. weight: math.unit(3, "tonnes"),
  56141. name: "Front",
  56142. image: {
  56143. source: "./media/characters/velikan/front.svg",
  56144. extra: 867/744,
  56145. bottom: 71/938
  56146. },
  56147. extraAttributes: {
  56148. "shoeSize": {
  56149. name: "Shoe Size",
  56150. power: 1,
  56151. type: "length",
  56152. base: math.unit(135, "ShoeSizeUK"),
  56153. defaultUnit: "ShoeSizeUK"
  56154. },
  56155. }
  56156. },
  56157. },
  56158. [
  56159. {
  56160. name: "Normal",
  56161. height: math.unit(5, "meters"),
  56162. default: true
  56163. },
  56164. {
  56165. name: "Macro",
  56166. height: math.unit(1, "km")
  56167. },
  56168. {
  56169. name: "Mega Macro",
  56170. height: math.unit(100, "km")
  56171. },
  56172. {
  56173. name: "Giga Macro",
  56174. height: math.unit(2, "megameters")
  56175. },
  56176. {
  56177. name: "Planetary",
  56178. height: math.unit(22, "megameters")
  56179. },
  56180. {
  56181. name: "Solar",
  56182. height: math.unit(8, "gigameters")
  56183. },
  56184. {
  56185. name: "Cosmic",
  56186. height: math.unit(10, "zettameters")
  56187. },
  56188. {
  56189. name: "Omni",
  56190. height: math.unit(9e260, "multiverses")
  56191. },
  56192. ]
  56193. ))
  56194. characterMakers.push(() => makeCharacter(
  56195. { name: "Sabiki", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  56196. {
  56197. front: {
  56198. height: math.unit(4 + 3/12, "feet"),
  56199. weight: math.unit(90, "lb"),
  56200. name: "Front",
  56201. image: {
  56202. source: "./media/characters/sabiki/front.svg",
  56203. extra: 1662/1423,
  56204. bottom: 65/1727
  56205. }
  56206. },
  56207. },
  56208. [
  56209. {
  56210. name: "Normal",
  56211. height: math.unit(4 + 3/12, "feet"),
  56212. default: true
  56213. },
  56214. ]
  56215. ))
  56216. characterMakers.push(() => makeCharacter(
  56217. { name: "Carmel", species: ["ant"], tags: ["anthro"] },
  56218. {
  56219. frontSfw: {
  56220. height: math.unit(2, "mm"),
  56221. name: "Front (SFW)",
  56222. image: {
  56223. source: "./media/characters/carmel/front-sfw.svg",
  56224. extra: 1131/1006,
  56225. bottom: 66/1197
  56226. }
  56227. },
  56228. frontNsfw: {
  56229. height: math.unit(2, "mm"),
  56230. name: "Front (NSFW)",
  56231. image: {
  56232. source: "./media/characters/carmel/front-nsfw.svg",
  56233. extra: 1131/1006,
  56234. bottom: 66/1197
  56235. }
  56236. },
  56237. foot: {
  56238. height: math.unit(0.3, "mm"),
  56239. name: "Foot",
  56240. image: {
  56241. source: "./media/characters/carmel/foot.svg"
  56242. }
  56243. },
  56244. tongue: {
  56245. height: math.unit(0.71, "mm"),
  56246. name: "Tongue",
  56247. image: {
  56248. source: "./media/characters/carmel/tongue.svg"
  56249. }
  56250. },
  56251. dick: {
  56252. height: math.unit(0.085, "mm"),
  56253. name: "Dick",
  56254. image: {
  56255. source: "./media/characters/carmel/dick.svg"
  56256. }
  56257. },
  56258. },
  56259. [
  56260. {
  56261. name: "Micro",
  56262. height: math.unit(2, "mm"),
  56263. default: true
  56264. },
  56265. {
  56266. name: "Normal",
  56267. height: math.unit(4 + 8/12, "feet")
  56268. },
  56269. {
  56270. name: "Mega Macro",
  56271. height: math.unit(250, "feet")
  56272. },
  56273. {
  56274. name: "BIGGER",
  56275. height: math.unit(1000, "feet")
  56276. },
  56277. {
  56278. name: "BIGGEST",
  56279. height: math.unit(2, "miles")
  56280. },
  56281. ]
  56282. ))
  56283. characterMakers.push(() => makeCharacter(
  56284. { name: "Tamani", species: ["lion"], tags: ["anthro", "feral"] },
  56285. {
  56286. front: {
  56287. height: math.unit(6.5, "feet"),
  56288. weight: math.unit(198, "lb"),
  56289. name: "Front",
  56290. image: {
  56291. source: "./media/characters/tamani/anthro.svg",
  56292. extra: 930/890,
  56293. bottom: 34/964
  56294. },
  56295. form: "anthro",
  56296. default: true
  56297. },
  56298. side: {
  56299. height: math.unit(6, "feet"),
  56300. weight: math.unit(198*2, "lb"),
  56301. name: "Side",
  56302. image: {
  56303. source: "./media/characters/tamani/feral.svg",
  56304. extra: 559/519,
  56305. bottom: 43/602
  56306. },
  56307. form: "feral"
  56308. },
  56309. },
  56310. [
  56311. {
  56312. name: "Normal",
  56313. height: math.unit(6.5, "feet"),
  56314. default: true,
  56315. form: "anthro"
  56316. },
  56317. {
  56318. name: "Normal",
  56319. height: math.unit(6, "feet"),
  56320. default: true,
  56321. form: "feral"
  56322. },
  56323. ],
  56324. {
  56325. "anthro": {
  56326. name: "Anthro",
  56327. default: true
  56328. },
  56329. "feral": {
  56330. name: "Feral",
  56331. },
  56332. }
  56333. ))
  56334. characterMakers.push(() => makeCharacter(
  56335. { name: "Dex", species: ["eastern-cottontail-rabbit"], tags: ["anthro"] },
  56336. {
  56337. front: {
  56338. height: math.unit(4 + 1/12, "feet"),
  56339. weight: math.unit(114, "lb"),
  56340. name: "Front",
  56341. image: {
  56342. source: "./media/characters/dex/front.svg",
  56343. extra: 787/680,
  56344. bottom: 18/805
  56345. }
  56346. },
  56347. side: {
  56348. height: math.unit(4 + 1/12, "feet"),
  56349. weight: math.unit(114, "lb"),
  56350. name: "Side",
  56351. image: {
  56352. source: "./media/characters/dex/side.svg",
  56353. extra: 785/680,
  56354. bottom: 12/797
  56355. }
  56356. },
  56357. back: {
  56358. height: math.unit(4 + 1/12, "feet"),
  56359. weight: math.unit(114, "lb"),
  56360. name: "Back",
  56361. image: {
  56362. source: "./media/characters/dex/back.svg",
  56363. extra: 785/681,
  56364. bottom: 17/802
  56365. }
  56366. },
  56367. loungewear: {
  56368. height: math.unit(4 + 1/12, "feet"),
  56369. weight: math.unit(114, "lb"),
  56370. name: "Loungewear",
  56371. image: {
  56372. source: "./media/characters/dex/loungewear.svg",
  56373. extra: 787/680,
  56374. bottom: 18/805
  56375. }
  56376. },
  56377. workout: {
  56378. height: math.unit(4 + 1/12, "feet"),
  56379. weight: math.unit(114, "lb"),
  56380. name: "Workout",
  56381. image: {
  56382. source: "./media/characters/dex/workout.svg",
  56383. extra: 787/680,
  56384. bottom: 18/805
  56385. }
  56386. },
  56387. schoolUniform: {
  56388. height: math.unit(4 + 1/12, "feet"),
  56389. weight: math.unit(114, "lb"),
  56390. name: "School-uniform",
  56391. image: {
  56392. source: "./media/characters/dex/school-uniform.svg",
  56393. extra: 787/680,
  56394. bottom: 18/805
  56395. }
  56396. },
  56397. maw: {
  56398. height: math.unit(0.55, "feet"),
  56399. name: "Maw",
  56400. image: {
  56401. source: "./media/characters/dex/maw.svg"
  56402. }
  56403. },
  56404. paw: {
  56405. height: math.unit(0.87, "feet"),
  56406. name: "Paw",
  56407. image: {
  56408. source: "./media/characters/dex/paw.svg"
  56409. }
  56410. },
  56411. bust: {
  56412. height: math.unit(1.67, "feet"),
  56413. name: "Bust",
  56414. image: {
  56415. source: "./media/characters/dex/bust.svg"
  56416. }
  56417. },
  56418. },
  56419. [
  56420. {
  56421. name: "Normal",
  56422. height: math.unit(4 + 1/12, "feet"),
  56423. default: true
  56424. },
  56425. ]
  56426. ))
  56427. characterMakers.push(() => makeCharacter(
  56428. { name: "Silke", species: ["sylveon"], tags: ["anthro"] },
  56429. {
  56430. front: {
  56431. height: math.unit(4 + 3/12, "feet"),
  56432. weight: math.unit(60, "lb"),
  56433. name: "Front",
  56434. image: {
  56435. source: "./media/characters/silke/front.svg",
  56436. extra: 1334/1122,
  56437. bottom: 21/1355
  56438. }
  56439. },
  56440. back: {
  56441. height: math.unit(4 + 3/12, "feet"),
  56442. weight: math.unit(60, "lb"),
  56443. name: "Back",
  56444. image: {
  56445. source: "./media/characters/silke/back.svg",
  56446. extra: 1328/1092,
  56447. bottom: 16/1344
  56448. }
  56449. },
  56450. dressed: {
  56451. height: math.unit(4 + 3/12, "feet"),
  56452. weight: math.unit(60, "lb"),
  56453. name: "Dressed",
  56454. image: {
  56455. source: "./media/characters/silke/dressed.svg",
  56456. extra: 1334/1122,
  56457. bottom: 43/1377
  56458. }
  56459. },
  56460. },
  56461. [
  56462. {
  56463. name: "Normal",
  56464. height: math.unit(4 + 3/12, "feet"),
  56465. default: true
  56466. },
  56467. ]
  56468. ))
  56469. characterMakers.push(() => makeCharacter(
  56470. { name: "Wireshark", species: ["thresher-shark"], tags: ["anthro"] },
  56471. {
  56472. front: {
  56473. height: math.unit(1.58, "meters"),
  56474. weight: math.unit(47, "kg"),
  56475. name: "Front",
  56476. image: {
  56477. source: "./media/characters/wireshark/front.svg",
  56478. extra: 883/838,
  56479. bottom: 66/949
  56480. }
  56481. },
  56482. },
  56483. [
  56484. {
  56485. name: "Normal",
  56486. height: math.unit(1.58, "meters"),
  56487. default: true
  56488. },
  56489. ]
  56490. ))
  56491. characterMakers.push(() => makeCharacter(
  56492. { name: "Gallagher", species: ["shark", "cyborg", "ai"], tags: ["anthro"] },
  56493. {
  56494. front: {
  56495. height: math.unit(6, "meters"),
  56496. weight: math.unit(15000, "kg"),
  56497. name: "Front",
  56498. image: {
  56499. source: "./media/characters/gallagher/front.svg",
  56500. extra: 532/493,
  56501. bottom: 0/532
  56502. }
  56503. },
  56504. },
  56505. [
  56506. {
  56507. name: "Normal",
  56508. height: math.unit(6, "meters"),
  56509. default: true
  56510. },
  56511. ]
  56512. ))
  56513. characterMakers.push(() => makeCharacter(
  56514. { name: "Alice", species: ["black-tip-reef-shark"], tags: ["anthro"] },
  56515. {
  56516. front: {
  56517. height: math.unit(2.4, "meters"),
  56518. weight: math.unit(270, "kg"),
  56519. name: "Front",
  56520. image: {
  56521. source: "./media/characters/alice/front.svg",
  56522. extra: 950/900,
  56523. bottom: 36/986
  56524. }
  56525. },
  56526. side: {
  56527. height: math.unit(2.4, "meters"),
  56528. weight: math.unit(270, "kg"),
  56529. name: "Side",
  56530. image: {
  56531. source: "./media/characters/alice/side.svg",
  56532. extra: 921/876,
  56533. bottom: 19/940
  56534. }
  56535. },
  56536. dressed: {
  56537. height: math.unit(2.4, "meters"),
  56538. weight: math.unit(270, "kg"),
  56539. name: "Dressed",
  56540. image: {
  56541. source: "./media/characters/alice/dressed.svg",
  56542. extra: 905/850,
  56543. bottom: 81/986
  56544. }
  56545. },
  56546. fishnet: {
  56547. height: math.unit(2.4, "meters"),
  56548. weight: math.unit(270, "kg"),
  56549. name: "Fishnet",
  56550. image: {
  56551. source: "./media/characters/alice/fishnet.svg",
  56552. extra: 905/850,
  56553. bottom: 81/986
  56554. }
  56555. },
  56556. },
  56557. [
  56558. {
  56559. name: "Normal",
  56560. height: math.unit(2.4, "meters"),
  56561. default: true
  56562. },
  56563. ]
  56564. ))
  56565. characterMakers.push(() => makeCharacter(
  56566. { name: "Fio", species: ["deer"], tags: ["anthro"] },
  56567. {
  56568. front: {
  56569. height: math.unit(175.25, "feet"),
  56570. name: "Front",
  56571. image: {
  56572. source: "./media/characters/fio/front.svg",
  56573. extra: 1883/1591,
  56574. bottom: 34/1917
  56575. }
  56576. },
  56577. },
  56578. [
  56579. {
  56580. name: "Normal",
  56581. height: math.unit(175.25, "cm"),
  56582. default: true
  56583. },
  56584. ]
  56585. ))
  56586. characterMakers.push(() => makeCharacter(
  56587. { name: "Hass", species: ["quetzalcoatlus-northropi"], tags: ["feral"] },
  56588. {
  56589. side: {
  56590. height: math.unit(6, "meters"),
  56591. weight: math.unit(3400, "kg"),
  56592. preyCapacity: math.unit(1700, "liters"),
  56593. name: "Side",
  56594. image: {
  56595. source: "./media/characters/hass/side.svg",
  56596. extra: 1058/997,
  56597. bottom: 177/1235
  56598. }
  56599. },
  56600. feeding: {
  56601. height: math.unit(6*0.63, "meters"),
  56602. weight: math.unit(3400, "kg"),
  56603. preyCapacity: math.unit(1700, "liters"),
  56604. name: "Feeding",
  56605. image: {
  56606. source: "./media/characters/hass/feeding.svg",
  56607. extra: 689/579,
  56608. bottom: 146/835
  56609. }
  56610. },
  56611. guts: {
  56612. height: math.unit(6, "meters"),
  56613. weight: math.unit(3400, "kg"),
  56614. name: "Guts",
  56615. image: {
  56616. source: "./media/characters/hass/guts.svg",
  56617. extra: 1223/1198,
  56618. bottom: 182/1405
  56619. }
  56620. },
  56621. dickFront: {
  56622. height: math.unit(1.4, "meters"),
  56623. name: "Dick (Front)",
  56624. image: {
  56625. source: "./media/characters/hass/dick-front.svg"
  56626. }
  56627. },
  56628. dickSide: {
  56629. height: math.unit(1.3, "meters"),
  56630. name: "Dick (Side)",
  56631. image: {
  56632. source: "./media/characters/hass/dick-side.svg"
  56633. }
  56634. },
  56635. dickBack: {
  56636. height: math.unit(1.4, "meters"),
  56637. name: "Dick (Back)",
  56638. image: {
  56639. source: "./media/characters/hass/dick-back.svg"
  56640. }
  56641. },
  56642. },
  56643. [
  56644. {
  56645. name: "Normal",
  56646. height: math.unit(6, "meters"),
  56647. default: true
  56648. },
  56649. ]
  56650. ))
  56651. characterMakers.push(() => makeCharacter(
  56652. { name: "Hickory Finnegan", species: ["fennec-fox"], tags: ["anthro"] },
  56653. {
  56654. front: {
  56655. height: math.unit(4, "feet"),
  56656. weight: math.unit(60, "lb"),
  56657. name: "Front",
  56658. image: {
  56659. source: "./media/characters/hickory-finnegan/front.svg",
  56660. extra: 444/411,
  56661. bottom: 10/454
  56662. }
  56663. },
  56664. side: {
  56665. height: math.unit(4, "feet"),
  56666. weight: math.unit(60, "lb"),
  56667. name: "Side",
  56668. image: {
  56669. source: "./media/characters/hickory-finnegan/side.svg",
  56670. extra: 444/411,
  56671. bottom: 10/454
  56672. }
  56673. },
  56674. back: {
  56675. height: math.unit(4, "feet"),
  56676. weight: math.unit(60, "lb"),
  56677. name: "Back",
  56678. image: {
  56679. source: "./media/characters/hickory-finnegan/back.svg",
  56680. extra: 444/411,
  56681. bottom: 10/454
  56682. }
  56683. },
  56684. },
  56685. [
  56686. {
  56687. name: "Normal",
  56688. height: math.unit(4, "feet"),
  56689. default: true
  56690. },
  56691. ]
  56692. ))
  56693. characterMakers.push(() => makeCharacter(
  56694. { name: "Robin Phox", species: ["snivy", "yoshi", "delphox", "mienshao", "inteleon", "reshiram", "samurott"], tags: ["anthro"] },
  56695. {
  56696. snivy_front: {
  56697. height: math.unit(2, "feet"),
  56698. weight: math.unit(17.9, "lb"),
  56699. name: "Front",
  56700. image: {
  56701. source: "./media/characters/robin-phox/snivy-front.svg",
  56702. extra: 569/504,
  56703. bottom: 33/602
  56704. },
  56705. form: "snivy",
  56706. default: true
  56707. },
  56708. snivy_frontNsfw: {
  56709. height: math.unit(2, "feet"),
  56710. weight: math.unit(17.9, "lb"),
  56711. name: "Front (NSFW)",
  56712. image: {
  56713. source: "./media/characters/robin-phox/snivy-front-nsfw.svg",
  56714. extra: 569/504,
  56715. bottom: 33/602
  56716. },
  56717. form: "snivy",
  56718. },
  56719. snivy_back: {
  56720. height: math.unit(2, "feet"),
  56721. weight: math.unit(17.9, "lb"),
  56722. name: "Back",
  56723. image: {
  56724. source: "./media/characters/robin-phox/snivy-back.svg",
  56725. extra: 577/508,
  56726. bottom: 21/598
  56727. },
  56728. form: "snivy",
  56729. },
  56730. snivy_foot: {
  56731. height: math.unit(0.68, "feet"),
  56732. name: "Foot",
  56733. image: {
  56734. source: "./media/characters/robin-phox/snivy-foot.svg"
  56735. },
  56736. form: "snivy",
  56737. },
  56738. snivy_sole: {
  56739. height: math.unit(0.68, "feet"),
  56740. name: "Sole",
  56741. image: {
  56742. source: "./media/characters/robin-phox/snivy-sole.svg"
  56743. },
  56744. form: "snivy",
  56745. },
  56746. yoshi_front: {
  56747. height: math.unit(6, "feet"),
  56748. weight: math.unit(150, "lb"),
  56749. name: "Front",
  56750. image: {
  56751. source: "./media/characters/robin-phox/yoshi-front.svg",
  56752. extra: 890/792,
  56753. bottom: 29/919
  56754. },
  56755. form: "yoshi",
  56756. default: true
  56757. },
  56758. yoshi_frontNsfw: {
  56759. height: math.unit(6, "feet"),
  56760. weight: math.unit(150, "lb"),
  56761. name: "Front (NSFW)",
  56762. image: {
  56763. source: "./media/characters/robin-phox/yoshi-front-nsfw.svg",
  56764. extra: 890/792,
  56765. bottom: 29/919
  56766. },
  56767. form: "yoshi",
  56768. },
  56769. yoshi_back: {
  56770. height: math.unit(6, "feet"),
  56771. weight: math.unit(150, "lb"),
  56772. name: "Back",
  56773. image: {
  56774. source: "./media/characters/robin-phox/yoshi-back.svg",
  56775. extra: 890/792,
  56776. bottom: 29/919
  56777. },
  56778. form: "yoshi",
  56779. },
  56780. yoshi_foot: {
  56781. height: math.unit(1.5, "feet"),
  56782. name: "Foot",
  56783. image: {
  56784. source: "./media/characters/robin-phox/yoshi-foot.svg"
  56785. },
  56786. form: "yoshi",
  56787. },
  56788. delphox_front: {
  56789. height: math.unit(4 + 11/12, "feet"),
  56790. weight: math.unit(86, "lb"),
  56791. name: "Front",
  56792. image: {
  56793. source: "./media/characters/robin-phox/delphox-front.svg",
  56794. extra: 1266/1069,
  56795. bottom: 32/1298
  56796. },
  56797. form: "delphox",
  56798. default: true
  56799. },
  56800. delphox_frontNsfw: {
  56801. height: math.unit(4 + 11/12, "feet"),
  56802. weight: math.unit(86, "lb"),
  56803. name: "Front (NSFW)",
  56804. image: {
  56805. source: "./media/characters/robin-phox/delphox-front-nsfw.svg",
  56806. extra: 1266/1069,
  56807. bottom: 32/1298
  56808. },
  56809. form: "delphox",
  56810. },
  56811. delphox_back: {
  56812. height: math.unit(4 + 11/12, "feet"),
  56813. weight: math.unit(86, "lb"),
  56814. name: "Back",
  56815. image: {
  56816. source: "./media/characters/robin-phox/delphox-back.svg",
  56817. extra: 1269/1083,
  56818. bottom: 15/1284
  56819. },
  56820. form: "delphox",
  56821. },
  56822. mienshao_front: {
  56823. height: math.unit(4 + 7/12, "feet"),
  56824. weight: math.unit(78.3, "lb"),
  56825. name: "Front",
  56826. image: {
  56827. source: "./media/characters/robin-phox/mienshao-front.svg",
  56828. extra: 1052/970,
  56829. bottom: 108/1160
  56830. },
  56831. form: "mienshao",
  56832. default: true
  56833. },
  56834. mienshao_frontNsfw: {
  56835. height: math.unit(4 + 7/12, "feet"),
  56836. weight: math.unit(78.3, "lb"),
  56837. name: "Front (NSFW)",
  56838. image: {
  56839. source: "./media/characters/robin-phox/mienshao-front-nsfw.svg",
  56840. extra: 1052/970,
  56841. bottom: 108/1160
  56842. },
  56843. form: "mienshao",
  56844. },
  56845. mienshao_back: {
  56846. height: math.unit(4 + 7/12, "feet"),
  56847. weight: math.unit(78.3, "lb"),
  56848. name: "Back",
  56849. image: {
  56850. source: "./media/characters/robin-phox/mienshao-back.svg",
  56851. extra: 1102/982,
  56852. bottom: 32/1134
  56853. },
  56854. form: "mienshao",
  56855. },
  56856. inteleon_front: {
  56857. height: math.unit(6 + 3/12, "feet"),
  56858. weight: math.unit(99.6, "lb"),
  56859. name: "Front",
  56860. image: {
  56861. source: "./media/characters/robin-phox/inteleon-front.svg",
  56862. extra: 910/799,
  56863. bottom: 76/986
  56864. },
  56865. form: "inteleon",
  56866. default: true
  56867. },
  56868. inteleon_frontNsfw: {
  56869. height: math.unit(6 + 3/12, "feet"),
  56870. weight: math.unit(99.6, "lb"),
  56871. name: "Front (NSFW)",
  56872. image: {
  56873. source: "./media/characters/robin-phox/inteleon-front-nsfw.svg",
  56874. extra: 910/799,
  56875. bottom: 76/986
  56876. },
  56877. form: "inteleon",
  56878. },
  56879. inteleon_back: {
  56880. height: math.unit(6 + 3/12, "feet"),
  56881. weight: math.unit(99.6, "lb"),
  56882. name: "Back",
  56883. image: {
  56884. source: "./media/characters/robin-phox/inteleon-back.svg",
  56885. extra: 907/796,
  56886. bottom: 25/932
  56887. },
  56888. form: "inteleon",
  56889. },
  56890. reshiram_front: {
  56891. height: math.unit(10 + 6/12, "feet"),
  56892. weight: math.unit(727.5, "lb"),
  56893. name: "Front",
  56894. image: {
  56895. source: "./media/characters/robin-phox/reshiram-front.svg",
  56896. extra: 1198/940,
  56897. bottom: 123/1321
  56898. },
  56899. form: "reshiram",
  56900. },
  56901. reshiram_frontNsfw: {
  56902. height: math.unit(10 + 6/12, "feet"),
  56903. weight: math.unit(727.5, "lb"),
  56904. name: "Front-nsfw",
  56905. image: {
  56906. source: "./media/characters/robin-phox/reshiram-front-nsfw.svg",
  56907. extra: 1198/940,
  56908. bottom: 123/1321
  56909. },
  56910. form: "reshiram",
  56911. },
  56912. reshiram_back: {
  56913. height: math.unit(10 + 6/12, "feet"),
  56914. weight: math.unit(727.5, "lb"),
  56915. name: "Back",
  56916. image: {
  56917. source: "./media/characters/robin-phox/reshiram-back.svg",
  56918. extra: 1024/904,
  56919. bottom: 85/1109
  56920. },
  56921. form: "reshiram",
  56922. },
  56923. samurott_front: {
  56924. height: math.unit(8, "feet"),
  56925. weight: math.unit(208.6, "lb"),
  56926. name: "Front",
  56927. image: {
  56928. source: "./media/characters/robin-phox/samurott-front.svg",
  56929. extra: 1048/984,
  56930. bottom: 100/1148
  56931. },
  56932. form: "samurott",
  56933. },
  56934. samurott_frontNsfw: {
  56935. height: math.unit(8, "feet"),
  56936. weight: math.unit(208.6, "lb"),
  56937. name: "Front-nsfw",
  56938. image: {
  56939. source: "./media/characters/robin-phox/samurott-front-nsfw.svg",
  56940. extra: 1048/984,
  56941. bottom: 100/1148
  56942. },
  56943. form: "samurott",
  56944. },
  56945. samurott_back: {
  56946. height: math.unit(8, "feet"),
  56947. weight: math.unit(208.6, "lb"),
  56948. name: "Back",
  56949. image: {
  56950. source: "./media/characters/robin-phox/samurott-back.svg",
  56951. extra: 1110/1042,
  56952. bottom: 12/1122
  56953. },
  56954. form: "samurott",
  56955. },
  56956. samurott_feral: {
  56957. height: math.unit(4 + 11/12, "feet"),
  56958. weight: math.unit(208.6, "lb"),
  56959. name: "Feral",
  56960. image: {
  56961. source: "./media/characters/robin-phox/samurott-feral.svg",
  56962. extra: 766/681,
  56963. bottom: 108/874
  56964. },
  56965. form: "samurott",
  56966. },
  56967. },
  56968. [
  56969. {
  56970. name: "Normal",
  56971. height: math.unit(2, "feet"),
  56972. default: true,
  56973. form: "snivy"
  56974. },
  56975. {
  56976. name: "Normal",
  56977. height: math.unit(6, "feet"),
  56978. default: true,
  56979. form: "yoshi"
  56980. },
  56981. {
  56982. name: "Normal",
  56983. height: math.unit(4 + 11/12, "feet"),
  56984. default: true,
  56985. form: "delphox"
  56986. },
  56987. {
  56988. name: "Normal",
  56989. height: math.unit(4 + 7/12, "feet"),
  56990. default: true,
  56991. form: "mienshao"
  56992. },
  56993. {
  56994. name: "Normal",
  56995. height: math.unit(6 + 3/12, "feet"),
  56996. default: true,
  56997. form: "inteleon"
  56998. },
  56999. {
  57000. name: "Normal",
  57001. height: math.unit(10 + 6/12, "feet"),
  57002. default: true,
  57003. form: "reshiram"
  57004. },
  57005. {
  57006. name: "Normal",
  57007. height: math.unit(8, "feet"),
  57008. default: true,
  57009. form: "samurott"
  57010. },
  57011. {
  57012. name: "Macro",
  57013. height: math.unit(500, "feet"),
  57014. allForms: true
  57015. },
  57016. {
  57017. name: "Mega Macro",
  57018. height: math.unit(10, "earths"),
  57019. allForms: true
  57020. },
  57021. {
  57022. name: "Giga Macro",
  57023. height: math.unit(1, "galaxy"),
  57024. allForms: true
  57025. },
  57026. {
  57027. name: "Godly Macro",
  57028. height: math.unit(1e10, "multiverses"),
  57029. allForms: true
  57030. },
  57031. ],
  57032. {
  57033. "snivy": {
  57034. name: "Snivy",
  57035. default: true
  57036. },
  57037. "yoshi": {
  57038. name: "Yoshi",
  57039. },
  57040. "delphox": {
  57041. name: "Delphox",
  57042. },
  57043. "mienshao": {
  57044. name: "Mienshao",
  57045. },
  57046. "inteleon": {
  57047. name: "Inteleon",
  57048. },
  57049. "reshiram": {
  57050. name: "Reshiram",
  57051. },
  57052. "samurott": {
  57053. name: "Samurott",
  57054. },
  57055. }
  57056. ))
  57057. characterMakers.push(() => makeCharacter(
  57058. { name: "Ash Leung", species: ["red-panda"], tags: ["anthro"] },
  57059. {
  57060. front: {
  57061. height: math.unit(4, "feet"),
  57062. name: "Front",
  57063. image: {
  57064. source: "./media/characters/ash-leung/front.svg",
  57065. extra: 1916/1792,
  57066. bottom: 50/1966
  57067. }
  57068. },
  57069. },
  57070. [
  57071. {
  57072. name: "Atomic",
  57073. height: math.unit(1, "angstrom")
  57074. },
  57075. {
  57076. name: "Microscopic",
  57077. height: math.unit(4000, "angstroms")
  57078. },
  57079. {
  57080. name: "Speck",
  57081. height: math.unit(1, "mm")
  57082. },
  57083. {
  57084. name: "Small",
  57085. height: math.unit(1, "inch")
  57086. },
  57087. {
  57088. name: "Normal",
  57089. height: math.unit(4, "feet"),
  57090. default: true
  57091. },
  57092. ]
  57093. ))
  57094. characterMakers.push(() => makeCharacter(
  57095. { name: "Carie", species: ["lucario"], tags: ["anthro"] },
  57096. {
  57097. frontDressed: {
  57098. height: math.unit(2.08, "meters"),
  57099. weight: math.unit(175, "lb"),
  57100. name: "Front (Dressed)",
  57101. image: {
  57102. source: "./media/characters/carie/front-dressed.svg",
  57103. extra: 456/417,
  57104. bottom: 7/463
  57105. }
  57106. },
  57107. backDressed: {
  57108. height: math.unit(2.08, "meters"),
  57109. weight: math.unit(175, "lb"),
  57110. name: "Back (Dressed)",
  57111. image: {
  57112. source: "./media/characters/carie/back-dressed.svg",
  57113. extra: 455/414,
  57114. bottom: 11/466
  57115. }
  57116. },
  57117. front: {
  57118. height: math.unit(2, "meters"),
  57119. weight: math.unit(175, "lb"),
  57120. name: "Front",
  57121. image: {
  57122. source: "./media/characters/carie/front.svg",
  57123. extra: 438/399,
  57124. bottom: 12/450
  57125. }
  57126. },
  57127. back: {
  57128. height: math.unit(2, "meters"),
  57129. weight: math.unit(175, "lb"),
  57130. name: "Back",
  57131. image: {
  57132. source: "./media/characters/carie/back.svg",
  57133. extra: 438/397,
  57134. bottom: 7/445
  57135. }
  57136. },
  57137. },
  57138. [
  57139. {
  57140. name: "Normal",
  57141. height: math.unit(2.08, "meters"),
  57142. default: true
  57143. },
  57144. {
  57145. name: "Macro",
  57146. height: math.unit(2.08e3, "meters")
  57147. },
  57148. {
  57149. name: "Mega Macro",
  57150. height: math.unit(2.08e6, "meters")
  57151. },
  57152. {
  57153. name: "Giga Macro",
  57154. height: math.unit(2.08e9, "meters")
  57155. },
  57156. {
  57157. name: "Tera Macro",
  57158. height: math.unit(2.08e12, "meters")
  57159. },
  57160. {
  57161. name: "Peta Macro",
  57162. height: math.unit(2.08e15, "meters")
  57163. },
  57164. {
  57165. name: "Exa Macro",
  57166. height: math.unit(2.08e18, "meters")
  57167. },
  57168. {
  57169. name: "Zetta Macro",
  57170. height: math.unit(2.08e21, "meters")
  57171. },
  57172. {
  57173. name: "Yotta Macro",
  57174. height: math.unit(2.08e24, "meters")
  57175. },
  57176. ]
  57177. ))
  57178. characterMakers.push(() => makeCharacter(
  57179. { name: "Sai Bree", species: ["sabertooth-tiger"], tags: ["anthro"] },
  57180. {
  57181. front: {
  57182. height: math.unit(5 + 2/12, "feet"),
  57183. weight: math.unit(120, "lb"),
  57184. name: "Front",
  57185. image: {
  57186. source: "./media/characters/sai-bree/front.svg",
  57187. extra: 1843/1702,
  57188. bottom: 91/1934
  57189. }
  57190. },
  57191. back: {
  57192. height: math.unit(5 + 2/12, "feet"),
  57193. weight: math.unit(120, "lb"),
  57194. name: "Back",
  57195. image: {
  57196. source: "./media/characters/sai-bree/back.svg",
  57197. extra: 1809/1637,
  57198. bottom: 56/1865
  57199. }
  57200. },
  57201. },
  57202. [
  57203. {
  57204. name: "Normal",
  57205. height: math.unit(5 + 2/12, "feet"),
  57206. default: true
  57207. },
  57208. {
  57209. name: "Macro",
  57210. height: math.unit(500, "feet")
  57211. },
  57212. ]
  57213. ))
  57214. characterMakers.push(() => makeCharacter(
  57215. { name: "Davwyn", species: ["dragon"], tags: ["feral"] },
  57216. {
  57217. side: {
  57218. height: math.unit(0.77, "meters"),
  57219. weight: math.unit(120, "lb"),
  57220. name: "Side",
  57221. image: {
  57222. source: "./media/characters/davwyn/side.svg",
  57223. extra: 1557/1225,
  57224. bottom: 131/1688
  57225. }
  57226. },
  57227. front: {
  57228. height: math.unit(0.835410, "meters"),
  57229. weight: math.unit(120, "lb"),
  57230. name: "Front",
  57231. image: {
  57232. source: "./media/characters/davwyn/front.svg",
  57233. extra: 870/843,
  57234. bottom: 175/1045
  57235. }
  57236. },
  57237. },
  57238. [
  57239. {
  57240. name: "Minidrake",
  57241. height: math.unit(0.77/4, "meters")
  57242. },
  57243. {
  57244. name: "Normal",
  57245. height: math.unit(0.77, "meters"),
  57246. default: true
  57247. },
  57248. ]
  57249. ))
  57250. characterMakers.push(() => makeCharacter(
  57251. { name: "Balans", species: ["dragon", "kangaroo"], tags: ["anthro"] },
  57252. {
  57253. front: {
  57254. height: math.unit(10 + 3/12, "feet"),
  57255. weight: math.unit(2857, "lb"),
  57256. name: "Front",
  57257. image: {
  57258. source: "./media/characters/balans/front.svg",
  57259. extra: 427/402,
  57260. bottom: 26/453
  57261. }
  57262. },
  57263. side: {
  57264. height: math.unit(10 + 3/12, "feet"),
  57265. weight: math.unit(2857, "lb"),
  57266. name: "Side",
  57267. image: {
  57268. source: "./media/characters/balans/side.svg",
  57269. extra: 397/371,
  57270. bottom: 17/414
  57271. }
  57272. },
  57273. back: {
  57274. height: math.unit(10 + 3/12, "feet"),
  57275. weight: math.unit(2857, "lb"),
  57276. name: "Back",
  57277. image: {
  57278. source: "./media/characters/balans/back.svg",
  57279. extra: 408/381,
  57280. bottom: 14/422
  57281. }
  57282. },
  57283. hand: {
  57284. height: math.unit(1.15, "feet"),
  57285. name: "Hand",
  57286. image: {
  57287. source: "./media/characters/balans/hand.svg"
  57288. }
  57289. },
  57290. footRest: {
  57291. height: math.unit(3.1, "feet"),
  57292. name: "Foot (Rest)",
  57293. image: {
  57294. source: "./media/characters/balans/foot-rest.svg"
  57295. }
  57296. },
  57297. footActive: {
  57298. height: math.unit(3.5, "feet"),
  57299. name: "Foot (Active)",
  57300. image: {
  57301. source: "./media/characters/balans/foot-active.svg"
  57302. }
  57303. },
  57304. },
  57305. [
  57306. {
  57307. name: "Normal",
  57308. height: math.unit(10 + 3/12, "feet"),
  57309. default: true
  57310. },
  57311. ]
  57312. ))
  57313. characterMakers.push(() => makeCharacter(
  57314. { name: "Eldkveikir", species: ["dragon"], tags: ["feral"] },
  57315. {
  57316. side: {
  57317. height: math.unit(9, "meters"),
  57318. weight: math.unit(114, "tonnes"),
  57319. name: "Side",
  57320. image: {
  57321. source: "./media/characters/eldkveikir/side.svg",
  57322. extra: 1927/338,
  57323. bottom: 42/1969
  57324. }
  57325. },
  57326. sitting: {
  57327. height: math.unit(13.4, "meters"),
  57328. weight: math.unit(114, "tonnes"),
  57329. name: "Sitting",
  57330. image: {
  57331. source: "./media/characters/eldkveikir/sitting.svg",
  57332. extra: 1108/963,
  57333. bottom: 610/1718
  57334. }
  57335. },
  57336. maw: {
  57337. height: math.unit(8.36, "meters"),
  57338. name: "Maw",
  57339. image: {
  57340. source: "./media/characters/eldkveikir/maw.svg"
  57341. }
  57342. },
  57343. hand: {
  57344. height: math.unit(4.84, "meters"),
  57345. name: "Hand",
  57346. image: {
  57347. source: "./media/characters/eldkveikir/hand.svg"
  57348. }
  57349. },
  57350. foot: {
  57351. height: math.unit(6.9, "meters"),
  57352. name: "Foot",
  57353. image: {
  57354. source: "./media/characters/eldkveikir/foot.svg"
  57355. }
  57356. },
  57357. genitals: {
  57358. height: math.unit(9.6, "meters"),
  57359. name: "Genitals",
  57360. image: {
  57361. source: "./media/characters/eldkveikir/genitals.svg"
  57362. }
  57363. },
  57364. },
  57365. [
  57366. {
  57367. name: "Normal",
  57368. height: math.unit(9, "meters"),
  57369. default: true
  57370. },
  57371. ]
  57372. ))
  57373. characterMakers.push(() => makeCharacter(
  57374. { name: "Arrow", species: ["wolf"], tags: ["anthro"] },
  57375. {
  57376. front: {
  57377. height: math.unit(14, "feet"),
  57378. weight: math.unit(4100, "lb"),
  57379. name: "Front",
  57380. image: {
  57381. source: "./media/characters/arrow/front.svg",
  57382. extra: 330/318,
  57383. bottom: 56/386
  57384. }
  57385. },
  57386. },
  57387. [
  57388. {
  57389. name: "Normal",
  57390. height: math.unit(14, "feet"),
  57391. default: true
  57392. },
  57393. {
  57394. name: "Minimacro",
  57395. height: math.unit(63, "feet")
  57396. },
  57397. {
  57398. name: "Macro",
  57399. height: math.unit(630, "feet")
  57400. },
  57401. {
  57402. name: "Megamacro",
  57403. height: math.unit(12600, "feet")
  57404. },
  57405. {
  57406. name: "Gigamacro",
  57407. height: math.unit(18000, "miles")
  57408. },
  57409. ]
  57410. ))
  57411. characterMakers.push(() => makeCharacter(
  57412. { name: "3YK-K0 Unit", species: ["synth"], tags: ["anthro"] },
  57413. {
  57414. front: {
  57415. height: math.unit(10, "feet"),
  57416. weight: math.unit(2.4, "tons"),
  57417. name: "Front",
  57418. image: {
  57419. source: "./media/characters/3yk-k0-unit/front.svg",
  57420. extra: 573/561,
  57421. bottom: 33/606
  57422. }
  57423. },
  57424. back: {
  57425. height: math.unit(10, "feet"),
  57426. weight: math.unit(2.4, "tons"),
  57427. name: "Back",
  57428. image: {
  57429. source: "./media/characters/3yk-k0-unit/back.svg",
  57430. extra: 614/573,
  57431. bottom: 32/646
  57432. }
  57433. },
  57434. maw: {
  57435. height: math.unit(2.15, "feet"),
  57436. name: "Maw",
  57437. image: {
  57438. source: "./media/characters/3yk-k0-unit/maw.svg"
  57439. }
  57440. },
  57441. },
  57442. [
  57443. {
  57444. name: "Normal",
  57445. height: math.unit(10, "feet"),
  57446. default: true
  57447. },
  57448. ]
  57449. ))
  57450. characterMakers.push(() => makeCharacter(
  57451. { name: "Nemo", species: ["dragon"], tags: ["anthro"] },
  57452. {
  57453. front: {
  57454. height: math.unit(8 + 8/12, "feet"),
  57455. name: "Front",
  57456. image: {
  57457. source: "./media/characters/nemo/front.svg",
  57458. extra: 1308/1217,
  57459. bottom: 57/1365
  57460. }
  57461. },
  57462. },
  57463. [
  57464. {
  57465. name: "Normal",
  57466. height: math.unit(8 + 8/12, "feet"),
  57467. default: true
  57468. },
  57469. ]
  57470. ))
  57471. characterMakers.push(() => makeCharacter(
  57472. { name: "Rexx", species: ["wolf"], tags: ["anthro"] },
  57473. {
  57474. front: {
  57475. height: math.unit(8, "feet"),
  57476. weight: math.unit(760, "lb"),
  57477. name: "Front",
  57478. image: {
  57479. source: "./media/characters/rexx/front.svg",
  57480. extra: 786/750,
  57481. bottom: 17/803
  57482. },
  57483. extraAttributes: {
  57484. "pawLength": {
  57485. name: "Paw Length",
  57486. power: 1,
  57487. type: "length",
  57488. base: math.unit(27, "inches")
  57489. },
  57490. }
  57491. },
  57492. },
  57493. [
  57494. {
  57495. name: "Micro",
  57496. height: math.unit(2, "inches")
  57497. },
  57498. {
  57499. name: "Normal",
  57500. height: math.unit(8, "feet"),
  57501. default: true
  57502. },
  57503. {
  57504. name: "Macro",
  57505. height: math.unit(150, "feet")
  57506. },
  57507. ]
  57508. ))
  57509. characterMakers.push(() => makeCharacter(
  57510. { name: "Draco", species: ["dragon"], tags: ["anthro"] },
  57511. {
  57512. front: {
  57513. height: math.unit(18, "feet"),
  57514. weight: math.unit(1975, "lb"),
  57515. name: "Front",
  57516. image: {
  57517. source: "./media/characters/draco/front.svg",
  57518. extra: 1325/1241,
  57519. bottom: 83/1408
  57520. }
  57521. },
  57522. back: {
  57523. height: math.unit(18, "feet"),
  57524. weight: math.unit(1975, "lb"),
  57525. name: "Back",
  57526. image: {
  57527. source: "./media/characters/draco/back.svg",
  57528. extra: 1332/1250,
  57529. bottom: 43/1375
  57530. }
  57531. },
  57532. dick: {
  57533. height: math.unit(7.5, "feet"),
  57534. name: "Dick",
  57535. image: {
  57536. source: "./media/characters/draco/dick.svg"
  57537. }
  57538. },
  57539. },
  57540. [
  57541. {
  57542. name: "Normal",
  57543. height: math.unit(18, "feet"),
  57544. default: true
  57545. },
  57546. ]
  57547. ))
  57548. characterMakers.push(() => makeCharacter(
  57549. { name: "Harriett", species: ["nedynvor"], tags: ["anthro"] },
  57550. {
  57551. front: {
  57552. height: math.unit(3.2, "meters"),
  57553. name: "Front",
  57554. image: {
  57555. source: "./media/characters/harriett/front.svg",
  57556. extra: 1966/1915,
  57557. bottom: 9/1975
  57558. }
  57559. },
  57560. },
  57561. [
  57562. {
  57563. name: "Normal",
  57564. height: math.unit(3.2, "meters"),
  57565. default: true
  57566. },
  57567. ]
  57568. ))
  57569. characterMakers.push(() => makeCharacter(
  57570. { name: "Serpentus", species: ["snake"], tags: ["anthro"] },
  57571. {
  57572. sitting: {
  57573. height: math.unit(0.8, "meter"),
  57574. name: "Sitting",
  57575. image: {
  57576. source: "./media/characters/serpentus/sitting.svg",
  57577. extra: 293/290,
  57578. bottom: 140/433
  57579. }
  57580. },
  57581. },
  57582. [
  57583. {
  57584. name: "Normal",
  57585. height: math.unit(0.8, "meter"),
  57586. default: true
  57587. },
  57588. ]
  57589. ))
  57590. characterMakers.push(() => makeCharacter(
  57591. { name: "Nova (Polecat)", species: ["marbled-polecat"], tags: ["anthro"] },
  57592. {
  57593. front: {
  57594. height: math.unit(5.7174385736, "feet"),
  57595. name: "Front",
  57596. image: {
  57597. source: "./media/characters/nova-polecat/front.svg",
  57598. extra: 1317/1216,
  57599. bottom: 92/1409
  57600. }
  57601. },
  57602. },
  57603. [
  57604. {
  57605. name: "Normal",
  57606. height: math.unit(5.7174385736, "feet"),
  57607. default: true
  57608. },
  57609. ]
  57610. ))
  57611. characterMakers.push(() => makeCharacter(
  57612. { name: "Mook", species: ["monkey", "ape"], tags: ["anthro"] },
  57613. {
  57614. front: {
  57615. height: math.unit(5 + 4/12, "feet"),
  57616. weight: math.unit(250, "lb"),
  57617. name: "Front",
  57618. image: {
  57619. source: "./media/characters/mook/front.svg",
  57620. extra: 1088/1037,
  57621. bottom: 132/1220
  57622. }
  57623. },
  57624. back: {
  57625. height: math.unit(5 + 1/12, "feet"),
  57626. weight: math.unit(250, "lb"),
  57627. name: "Back",
  57628. image: {
  57629. source: "./media/characters/mook/back.svg",
  57630. extra: 1184/905,
  57631. bottom: 96/1280
  57632. }
  57633. },
  57634. head: {
  57635. height: math.unit(1.85, "feet"),
  57636. name: "Head",
  57637. image: {
  57638. source: "./media/characters/mook/head.svg"
  57639. }
  57640. },
  57641. hand: {
  57642. height: math.unit(1.9, "feet"),
  57643. name: "Hand",
  57644. image: {
  57645. source: "./media/characters/mook/hand.svg"
  57646. }
  57647. },
  57648. palm: {
  57649. height: math.unit(1.84, "feet"),
  57650. name: "Palm",
  57651. image: {
  57652. source: "./media/characters/mook/palm.svg"
  57653. }
  57654. },
  57655. foot: {
  57656. height: math.unit(1.44, "feet"),
  57657. name: "Foot",
  57658. image: {
  57659. source: "./media/characters/mook/foot.svg"
  57660. }
  57661. },
  57662. sole: {
  57663. height: math.unit(1.44, "feet"),
  57664. name: "Sole",
  57665. image: {
  57666. source: "./media/characters/mook/sole.svg"
  57667. }
  57668. },
  57669. },
  57670. [
  57671. {
  57672. name: "Normal",
  57673. height: math.unit(5 + 4/12, "feet"),
  57674. default: true
  57675. },
  57676. {
  57677. name: "Big",
  57678. height: math.unit(12, "feet")
  57679. },
  57680. ]
  57681. ))
  57682. characterMakers.push(() => makeCharacter(
  57683. { name: "Kayla", species: ["human"], tags: ["anthro"] },
  57684. {
  57685. front: {
  57686. height: math.unit(6 + 10/12, "feet"),
  57687. weight: math.unit(233, "lb"),
  57688. name: "Front",
  57689. image: {
  57690. source: "./media/characters/kayla/front.svg",
  57691. extra: 1850/1775,
  57692. bottom: 65/1915
  57693. }
  57694. },
  57695. },
  57696. [
  57697. {
  57698. name: "Normal",
  57699. height: math.unit(6 + 10/12, "feet"),
  57700. default: true
  57701. },
  57702. {
  57703. name: "Amazonian",
  57704. height: math.unit(12 + 5/12, "feet")
  57705. },
  57706. {
  57707. name: "Mini Giantess",
  57708. height: math.unit(26, "feet")
  57709. },
  57710. {
  57711. name: "Giantess",
  57712. height: math.unit(200, "feet")
  57713. },
  57714. {
  57715. name: "Mega Giantess",
  57716. height: math.unit(2500, "feet")
  57717. },
  57718. {
  57719. name: "City Sized",
  57720. height: math.unit(50, "miles")
  57721. },
  57722. {
  57723. name: "Country Sized",
  57724. height: math.unit(500, "miles")
  57725. },
  57726. {
  57727. name: "Continent Sized",
  57728. height: math.unit(2500, "miles")
  57729. },
  57730. {
  57731. name: "Planet Sized",
  57732. height: math.unit(10000, "miles")
  57733. },
  57734. {
  57735. name: "Star Sized",
  57736. height: math.unit(5e6, "miles")
  57737. },
  57738. {
  57739. name: "Solar System Sized",
  57740. height: math.unit(125, "AU")
  57741. },
  57742. {
  57743. name: "Galaxy Sized",
  57744. height: math.unit(300e3, "lightyears")
  57745. },
  57746. {
  57747. name: "Universe Sized",
  57748. height: math.unit(200e9, "lightyears")
  57749. },
  57750. {
  57751. name: "Multiverse Sized",
  57752. height: math.unit(20, "exauniverses")
  57753. },
  57754. {
  57755. name: "Mother of Existence",
  57756. height: math.unit(1e6, "yottauniverses")
  57757. },
  57758. ]
  57759. ))
  57760. characterMakers.push(() => makeCharacter(
  57761. { name: "Kulve Ragnarok", species: ["kulve-taroth"], tags: ["taur"] },
  57762. {
  57763. side: {
  57764. height: math.unit(9.5, "meters"),
  57765. name: "Side",
  57766. image: {
  57767. source: "./media/characters/kulve-ragnarok/side.svg",
  57768. extra: 364/326,
  57769. bottom: 50/414
  57770. }
  57771. },
  57772. },
  57773. [
  57774. {
  57775. name: "Normal",
  57776. height: math.unit(9.5, "meters"),
  57777. default: true
  57778. },
  57779. ]
  57780. ))
  57781. characterMakers.push(() => makeCharacter(
  57782. { name: "Atlas (Goat)", species: ["goat"], tags: ["anthro"] },
  57783. {
  57784. front: {
  57785. height: math.unit(8 + 9/12, "feet"),
  57786. name: "Front",
  57787. image: {
  57788. source: "./media/characters/atlas-goat/front.svg",
  57789. extra: 1462/1323,
  57790. bottom: 12/1474
  57791. }
  57792. },
  57793. },
  57794. [
  57795. {
  57796. name: "Normal",
  57797. height: math.unit(8 + 9/12, "feet"),
  57798. default: true
  57799. },
  57800. {
  57801. name: "Skyline",
  57802. height: math.unit(845, "feet")
  57803. },
  57804. {
  57805. name: "Orbital",
  57806. height: math.unit(93000, "miles")
  57807. },
  57808. {
  57809. name: "Constellation",
  57810. height: math.unit(27000, "lightyears")
  57811. },
  57812. ]
  57813. ))
  57814. characterMakers.push(() => makeCharacter(
  57815. { name: "Xie Ling", species: ["irthos"], tags: ["anthro"] },
  57816. {
  57817. side: {
  57818. height: math.unit(1.8, "meters"),
  57819. weight: math.unit(120, "kg"),
  57820. name: "Side",
  57821. image: {
  57822. source: "./media/characters/xie-ling/side.svg",
  57823. extra: 646/574,
  57824. bottom: 44/690
  57825. }
  57826. },
  57827. },
  57828. [
  57829. {
  57830. name: "Tiny",
  57831. height: math.unit(1.80, "meters")
  57832. },
  57833. {
  57834. name: "Small",
  57835. height: math.unit(6, "meters")
  57836. },
  57837. {
  57838. name: "Medium",
  57839. height: math.unit(15, "meters")
  57840. },
  57841. {
  57842. name: "Normal",
  57843. height: math.unit(30, "meters"),
  57844. default: true
  57845. },
  57846. {
  57847. name: "Above Normal",
  57848. height: math.unit(60, "meters")
  57849. },
  57850. {
  57851. name: "Big",
  57852. height: math.unit(220, "meters")
  57853. },
  57854. {
  57855. name: "Giant",
  57856. height: math.unit(2.2, "km")
  57857. },
  57858. {
  57859. name: "Macro",
  57860. height: math.unit(25, "km")
  57861. },
  57862. {
  57863. name: "Mega Macro",
  57864. height: math.unit(350, "km")
  57865. },
  57866. {
  57867. name: "Mega Macro+",
  57868. height: math.unit(5000, "km")
  57869. },
  57870. {
  57871. name: "Goddess",
  57872. height: math.unit(3, "multiverses")
  57873. },
  57874. ]
  57875. ))
  57876. characterMakers.push(() => makeCharacter(
  57877. { name: "Sune Nemeruva", species: ["furred-dragon"], tags: ["anthro"] },
  57878. {
  57879. frontSfw: {
  57880. height: math.unit(5 + 11/12, "feet"),
  57881. weight: math.unit(210, "lb"),
  57882. name: "Front",
  57883. image: {
  57884. source: "./media/characters/sune-nemeruva/front-sfw.svg",
  57885. extra: 1928/1821,
  57886. bottom: 45/1973
  57887. }
  57888. },
  57889. backSfw: {
  57890. height: math.unit(5 + 11/12, "feet"),
  57891. weight: math.unit(210, "lb"),
  57892. name: "Back",
  57893. image: {
  57894. source: "./media/characters/sune-nemeruva/back-sfw.svg",
  57895. extra: 1920/1813,
  57896. bottom: 34/1954
  57897. }
  57898. },
  57899. frontNsfw: {
  57900. height: math.unit(5 + 11/12, "feet"),
  57901. weight: math.unit(210, "lb"),
  57902. name: "Front (NSFW)",
  57903. image: {
  57904. source: "./media/characters/sune-nemeruva/front-nsfw.svg",
  57905. extra: 1928/1821,
  57906. bottom: 45/1973
  57907. }
  57908. },
  57909. backNsfw: {
  57910. height: math.unit(5 + 11/12, "feet"),
  57911. weight: math.unit(210, "lb"),
  57912. name: "Back (NSFW)",
  57913. image: {
  57914. source: "./media/characters/sune-nemeruva/back-nsfw.svg",
  57915. extra: 1920/1813,
  57916. bottom: 34/1954
  57917. }
  57918. },
  57919. },
  57920. [
  57921. {
  57922. name: "Normal",
  57923. height: math.unit(5 + 11/12, "feet"),
  57924. default: true
  57925. },
  57926. {
  57927. name: "Goddess",
  57928. height: math.unit(20 + 3/12, "feet")
  57929. },
  57930. {
  57931. name: "Breaker of Man",
  57932. height: math.unit(329 + 9/12, "feet")
  57933. },
  57934. {
  57935. name: "Solar Justice",
  57936. height: math.unit(0.6, "solarradii")
  57937. },
  57938. {
  57939. name: "She Who Judges",
  57940. height: math.unit(1, "universe")
  57941. },
  57942. ]
  57943. ))
  57944. characterMakers.push(() => makeCharacter(
  57945. { name: "Managarmr", species: ["dragon", "deity"], tags: ["anthro"] },
  57946. {
  57947. casual_front: {
  57948. height: math.unit(6 + 1/12, "feet"),
  57949. weight: math.unit(190, "lb"),
  57950. preyCapacity: math.unit(1, "people"),
  57951. name: "Front",
  57952. image: {
  57953. source: "./media/characters/managarmr/casual-front.svg",
  57954. extra: 411/381,
  57955. bottom: 15/426
  57956. },
  57957. extraAttributes: {
  57958. "pawSize": {
  57959. name: "Paw Size",
  57960. power: 1,
  57961. type: "length",
  57962. base: math.unit(0.2, "meters")
  57963. },
  57964. },
  57965. form: "casual",
  57966. },
  57967. casual_back: {
  57968. height: math.unit(6 + 1/12, "feet"),
  57969. weight: math.unit(190, "lb"),
  57970. preyCapacity: math.unit(1, "people"),
  57971. name: "Back",
  57972. image: {
  57973. source: "./media/characters/managarmr/casual-back.svg",
  57974. extra: 413/383,
  57975. bottom: 13/426
  57976. },
  57977. extraAttributes: {
  57978. "pawSize": {
  57979. name: "Paw Size",
  57980. power: 1,
  57981. type: "length",
  57982. base: math.unit(0.2, "meters")
  57983. },
  57984. },
  57985. form: "casual",
  57986. },
  57987. base_front: {
  57988. height: math.unit(7, "feet"),
  57989. weight: math.unit(210, "lb"),
  57990. preyCapacity: math.unit(2, "people"),
  57991. name: "Front",
  57992. image: {
  57993. source: "./media/characters/managarmr/base-front.svg",
  57994. extra: 580/485,
  57995. bottom: 32/612
  57996. },
  57997. extraAttributes: {
  57998. "wingspan": {
  57999. name: "Wingspan",
  58000. power: 1,
  58001. type: "length",
  58002. base: math.unit(4, "meters")
  58003. },
  58004. "pawSize": {
  58005. name: "Paw Size",
  58006. power: 1,
  58007. type: "length",
  58008. base: math.unit(0.2, "meters")
  58009. },
  58010. },
  58011. form: "base",
  58012. },
  58013. "true-divine_front": {
  58014. height: math.unit(40, "feet"),
  58015. weight: math.unit(39000, "lb"),
  58016. preyCapacity: math.unit(375, "people"),
  58017. name: "Front",
  58018. image: {
  58019. source: "./media/characters/managarmr/true-divine-front.svg",
  58020. extra: 725/573,
  58021. bottom: 120/845
  58022. },
  58023. extraAttributes: {
  58024. "wingspan": {
  58025. name: "Wingspan",
  58026. power: 1,
  58027. type: "length",
  58028. base: math.unit(20, "meters")
  58029. },
  58030. "pawSize": {
  58031. name: "Paw Size",
  58032. power: 1,
  58033. type: "length",
  58034. base: math.unit(1.5, "meters")
  58035. },
  58036. },
  58037. form: "true-divine",
  58038. },
  58039. },
  58040. [
  58041. {
  58042. name: "Normal",
  58043. height: math.unit(6 + 1/12, "feet"),
  58044. form: "casual",
  58045. default: true
  58046. },
  58047. {
  58048. name: "Normal",
  58049. height: math.unit(7, "feet"),
  58050. form: "base",
  58051. default: true
  58052. },
  58053. ],
  58054. {
  58055. "casual": {
  58056. name: "Casual",
  58057. default: true
  58058. },
  58059. "base": {
  58060. name: "Base",
  58061. },
  58062. "true-divine": {
  58063. name: "True Divine",
  58064. },
  58065. }
  58066. ))
  58067. characterMakers.push(() => makeCharacter(
  58068. { name: "Mystra", species: ["sergal", "deity"], tags: ["anthro"] },
  58069. {
  58070. front: {
  58071. height: math.unit(1.8, "meters"),
  58072. weight: math.unit(110, "kg"),
  58073. name: "Front",
  58074. image: {
  58075. source: "./media/characters/mystra/front.svg",
  58076. extra: 529/442,
  58077. bottom: 31/560
  58078. }
  58079. },
  58080. frontLewd: {
  58081. height: math.unit(1.8, "meters"),
  58082. weight: math.unit(110, "kg"),
  58083. name: "Front (Lewd)",
  58084. image: {
  58085. source: "./media/characters/mystra/front-lewd.svg",
  58086. extra: 529/442,
  58087. bottom: 31/560
  58088. }
  58089. },
  58090. head: {
  58091. height: math.unit(1.63, "feet"),
  58092. name: "Head",
  58093. image: {
  58094. source: "./media/characters/mystra/head.svg"
  58095. }
  58096. },
  58097. paw: {
  58098. height: math.unit(1.9, "feet"),
  58099. name: "Paw",
  58100. image: {
  58101. source: "./media/characters/mystra/paw.svg"
  58102. }
  58103. },
  58104. },
  58105. [
  58106. {
  58107. name: "Incognito",
  58108. height: math.unit(2.3, "meters")
  58109. },
  58110. {
  58111. name: "Small Macro",
  58112. height: math.unit(300, "meters")
  58113. },
  58114. {
  58115. name: "Small Mega",
  58116. height: math.unit(2, "km")
  58117. },
  58118. {
  58119. name: "Mega",
  58120. height: math.unit(30, "km")
  58121. },
  58122. {
  58123. name: "Small Giga",
  58124. height: math.unit(100, "km")
  58125. },
  58126. {
  58127. name: "Giga",
  58128. height: math.unit(1000, "km"),
  58129. default: true
  58130. },
  58131. {
  58132. name: "Continental",
  58133. height: math.unit(5000, "km")
  58134. },
  58135. {
  58136. name: "Terra",
  58137. height: math.unit(20000, "km")
  58138. },
  58139. {
  58140. name: "Solar",
  58141. height: math.unit(2e6, "km")
  58142. },
  58143. {
  58144. name: "Galactic",
  58145. height: math.unit(528502, "lightyears")
  58146. },
  58147. {
  58148. name: "Universal",
  58149. height: math.unit(20, "universes")
  58150. },
  58151. ]
  58152. ))
  58153. characterMakers.push(() => makeCharacter(
  58154. { name: "Caleb", species: ["lion", "cobra", "dragon", "chimera", "deity"], tags: ["anthro"] },
  58155. {
  58156. front: {
  58157. height: math.unit(2, "meters"),
  58158. weight: math.unit(140, "kg"),
  58159. name: "Front",
  58160. image: {
  58161. source: "./media/characters/caleb/front.svg",
  58162. extra: 873/817,
  58163. bottom: 47/920
  58164. }
  58165. },
  58166. back: {
  58167. height: math.unit(2, "meters"),
  58168. weight: math.unit(140, "kg"),
  58169. name: "Back",
  58170. image: {
  58171. source: "./media/characters/caleb/back.svg",
  58172. extra: 877/828,
  58173. bottom: 24/901
  58174. }
  58175. },
  58176. snakeTail: {
  58177. height: math.unit(1.44, "feet"),
  58178. name: "Snake Tail",
  58179. image: {
  58180. source: "./media/characters/caleb/snake-tail.svg"
  58181. }
  58182. },
  58183. dick: {
  58184. height: math.unit(2.6, "feet"),
  58185. name: "Dick",
  58186. image: {
  58187. source: "./media/characters/caleb/dick.svg"
  58188. }
  58189. },
  58190. },
  58191. [
  58192. {
  58193. name: "Incognito",
  58194. height: math.unit(3, "meters")
  58195. },
  58196. {
  58197. name: "Home Size",
  58198. height: math.unit(200, "meters"),
  58199. default: true
  58200. },
  58201. {
  58202. name: "Macro",
  58203. height: math.unit(500, "meters")
  58204. },
  58205. {
  58206. name: "Big Macro",
  58207. height: math.unit(5, "km")
  58208. },
  58209. {
  58210. name: "Giga",
  58211. height: math.unit(250, "km")
  58212. },
  58213. {
  58214. name: "Giga+",
  58215. height: math.unit(5000, "km")
  58216. },
  58217. {
  58218. name: "Small Terra",
  58219. height: math.unit(35e3, "km")
  58220. },
  58221. {
  58222. name: "Terra",
  58223. height: math.unit(2e6, "km")
  58224. },
  58225. {
  58226. name: "Terra+",
  58227. height: math.unit(1.5e6, "km")
  58228. },
  58229. ]
  58230. ))
  58231. characterMakers.push(() => makeCharacter(
  58232. { name: "Gilirian", species: ["giraffe", "zebra", "deity"], tags: ["anthro"] },
  58233. {
  58234. front: {
  58235. height: math.unit(2, "meters"),
  58236. weight: math.unit(120, "kg"),
  58237. name: "Front",
  58238. image: {
  58239. source: "./media/characters/gilirian/front.svg",
  58240. extra: 805/737,
  58241. bottom: 13/818
  58242. }
  58243. },
  58244. side: {
  58245. height: math.unit(2, "meters"),
  58246. weight: math.unit(120, "kg"),
  58247. name: "Side",
  58248. image: {
  58249. source: "./media/characters/gilirian/side.svg",
  58250. extra: 810/746,
  58251. bottom: 6/816
  58252. }
  58253. },
  58254. back: {
  58255. height: math.unit(2, "meters"),
  58256. weight: math.unit(120, "kg"),
  58257. name: "Back",
  58258. image: {
  58259. source: "./media/characters/gilirian/back.svg",
  58260. extra: 815/745,
  58261. bottom: 15/830
  58262. }
  58263. },
  58264. frontNsfw: {
  58265. height: math.unit(2, "meters"),
  58266. weight: math.unit(120, "kg"),
  58267. name: "Front (NSFW)",
  58268. image: {
  58269. source: "./media/characters/gilirian/front-nsfw.svg",
  58270. extra: 805/737,
  58271. bottom: 13/818
  58272. }
  58273. },
  58274. sideNsfw: {
  58275. height: math.unit(2, "meters"),
  58276. weight: math.unit(120, "kg"),
  58277. name: "Side (NSFW)",
  58278. image: {
  58279. source: "./media/characters/gilirian/side-nsfw.svg",
  58280. extra: 810/746,
  58281. bottom: 6/816
  58282. }
  58283. },
  58284. },
  58285. [
  58286. {
  58287. name: "Incognito",
  58288. height: math.unit(2, "meters"),
  58289. default: true
  58290. },
  58291. {
  58292. name: "Macro",
  58293. height: math.unit(250, "meters")
  58294. },
  58295. {
  58296. name: "Big Macro",
  58297. height: math.unit(1500, "meters")
  58298. },
  58299. {
  58300. name: "Mega",
  58301. height: math.unit(40, "km")
  58302. },
  58303. {
  58304. name: "Giga",
  58305. height: math.unit(300, "km")
  58306. },
  58307. {
  58308. name: "Extra Giga",
  58309. height: math.unit(5000, "km")
  58310. },
  58311. {
  58312. name: "Small Terra",
  58313. height: math.unit(10e3, "km")
  58314. },
  58315. {
  58316. name: "Terra",
  58317. height: math.unit(3e5, "km")
  58318. },
  58319. {
  58320. name: "Galactic",
  58321. height: math.unit(369950, "lightyears")
  58322. },
  58323. ]
  58324. ))
  58325. characterMakers.push(() => makeCharacter(
  58326. { name: "Tarken", species: ["t-rex", "kaiju", "deity"], tags: ["anthro"] },
  58327. {
  58328. front: {
  58329. height: math.unit(2.5, "meters"),
  58330. weight: math.unit(230, "lb"),
  58331. name: "Front",
  58332. image: {
  58333. source: "./media/characters/tarken/front.svg",
  58334. extra: 764/720,
  58335. bottom: 49/813
  58336. }
  58337. },
  58338. back: {
  58339. height: math.unit(2.5, "meters"),
  58340. weight: math.unit(230, "lb"),
  58341. name: "Back",
  58342. image: {
  58343. source: "./media/characters/tarken/back.svg",
  58344. extra: 756/720,
  58345. bottom: 35/791
  58346. }
  58347. },
  58348. frontNsfw: {
  58349. height: math.unit(2.5, "meters"),
  58350. weight: math.unit(230, "lb"),
  58351. name: "Front (NSFW)",
  58352. image: {
  58353. source: "./media/characters/tarken/front-nsfw.svg",
  58354. extra: 764/720,
  58355. bottom: 49/813
  58356. }
  58357. },
  58358. backNsfw: {
  58359. height: math.unit(2.5, "meters"),
  58360. weight: math.unit(230, "lb"),
  58361. name: "Back (NSFW)",
  58362. image: {
  58363. source: "./media/characters/tarken/back-nsfw.svg",
  58364. extra: 756/720,
  58365. bottom: 35/791
  58366. }
  58367. },
  58368. head: {
  58369. height: math.unit(2.22, "feet"),
  58370. name: "Head",
  58371. image: {
  58372. source: "./media/characters/tarken/head.svg"
  58373. }
  58374. },
  58375. tail: {
  58376. height: math.unit(5.25, "feet"),
  58377. name: "Tail",
  58378. image: {
  58379. source: "./media/characters/tarken/tail.svg"
  58380. }
  58381. },
  58382. dick: {
  58383. height: math.unit(1.95, "feet"),
  58384. name: "Dick",
  58385. image: {
  58386. source: "./media/characters/tarken/dick.svg"
  58387. }
  58388. },
  58389. hand: {
  58390. height: math.unit(1.78, "feet"),
  58391. name: "Hand",
  58392. image: {
  58393. source: "./media/characters/tarken/hand.svg"
  58394. }
  58395. },
  58396. beam: {
  58397. height: math.unit(1.5, "feet"),
  58398. name: "Beam",
  58399. image: {
  58400. source: "./media/characters/tarken/beam.svg"
  58401. }
  58402. },
  58403. },
  58404. [
  58405. {
  58406. name: "Original Size",
  58407. height: math.unit(2.5, "meters")
  58408. },
  58409. {
  58410. name: "Macro",
  58411. height: math.unit(150, "meters"),
  58412. default: true
  58413. },
  58414. {
  58415. name: "Macro+",
  58416. height: math.unit(300, "meters")
  58417. },
  58418. {
  58419. name: "Mega",
  58420. height: math.unit(2, "km")
  58421. },
  58422. {
  58423. name: "Mega+",
  58424. height: math.unit(35, "km")
  58425. },
  58426.  {
  58427. name: "Mega++",
  58428. height: math.unit(60, "km")
  58429. },
  58430. {
  58431. name: "Giga",
  58432. height: math.unit(200, "km")
  58433. },
  58434. {
  58435. name: "Giga+",
  58436. height: math.unit(2500, "km")
  58437. },
  58438. {
  58439. name: "Giga++",
  58440. height: math.unit(6600, "km")
  58441. },
  58442. {
  58443. name: "Terra",
  58444. height: math.unit(20000, "km")
  58445. },
  58446. {
  58447. name: "Terra+",
  58448. height: math.unit(300000, "km")
  58449. },
  58450. ]
  58451. ))
  58452. characterMakers.push(() => makeCharacter(
  58453. { name: "Otreus", species: ["magpie", "hippogriff", "deity"], tags: ["anthro"] },
  58454. {
  58455. magpie_dressed: {
  58456. height: math.unit(1.7, "meters"),
  58457. weight: math.unit(70, "kg"),
  58458. name: "Dressed",
  58459. image: {
  58460. source: "./media/characters/otreus/magpie-dressed.svg",
  58461. extra: 691/672,
  58462. bottom: 116/807
  58463. },
  58464. form: "magpie",
  58465. default: true
  58466. },
  58467. magpie_nude: {
  58468. height: math.unit(1.7, "meters"),
  58469. weight: math.unit(70, "kg"),
  58470. name: "Nude",
  58471. image: {
  58472. source: "./media/characters/otreus/magpie-nude.svg",
  58473. extra: 691/672,
  58474. bottom: 116/807
  58475. },
  58476. form: "magpie",
  58477. },
  58478. magpie_dressedLewd: {
  58479. height: math.unit(1.7, "meters"),
  58480. weight: math.unit(70, "kg"),
  58481. name: "Dressed (Lewd)",
  58482. image: {
  58483. source: "./media/characters/otreus/magpie-dressed-lewd.svg",
  58484. extra: 691/672,
  58485. bottom: 116/807
  58486. },
  58487. form: "magpie",
  58488. },
  58489. magpie_nudeLewd: {
  58490. height: math.unit(1.7, "meters"),
  58491. weight: math.unit(70, "kg"),
  58492. name: "Nude (Lewd)",
  58493. image: {
  58494. source: "./media/characters/otreus/magpie-nude-lewd.svg",
  58495. extra: 691/672,
  58496. bottom: 116/807
  58497. },
  58498. form: "magpie",
  58499. },
  58500. magpie_leftFoot: {
  58501. height: math.unit(1.58, "feet"),
  58502. name: "Left Foot",
  58503. image: {
  58504. source: "./media/characters/otreus/magpie-left-foot.svg"
  58505. },
  58506. form: "magpie",
  58507. },
  58508. magpie_rightFoot: {
  58509. height: math.unit(1.58, "feet"),
  58510. name: "Right Foot",
  58511. image: {
  58512. source: "./media/characters/otreus/magpie-right-foot.svg"
  58513. },
  58514. form: "magpie",
  58515. },
  58516. magpie_wingspan: {
  58517. height: math.unit(2, "meters"),
  58518. weight: math.unit(70, "kg"),
  58519. name: "Wingspan",
  58520. image: {
  58521. source: "./media/characters/otreus/magpie-wingspan.svg"
  58522. },
  58523. extraAttributes: {
  58524. "wingspan": {
  58525. name: "Wingspan",
  58526. power: 1,
  58527. type: "length",
  58528. base: math.unit(3.35, "meters")
  58529. },
  58530. },
  58531. form: "magpie",
  58532. },
  58533. hippogriff_dressed: {
  58534. height: math.unit(1.7, "meters"),
  58535. weight: math.unit(70, "kg"),
  58536. name: "Dressed",
  58537. image: {
  58538. source: "./media/characters/otreus/hippogriff-dressed.svg",
  58539. extra: 710/689,
  58540. bottom: 67/777
  58541. },
  58542. form: "hippogriff",
  58543. default: true
  58544. },
  58545. hippogriff_nude: {
  58546. height: math.unit(1.7, "meters"),
  58547. weight: math.unit(70, "kg"),
  58548. name: "Nude",
  58549. image: {
  58550. source: "./media/characters/otreus/hippogriff-nude.svg",
  58551. extra: 710/689,
  58552. bottom: 67/777
  58553. },
  58554. form: "hippogriff",
  58555. },
  58556. hippogriff_dressedLewd: {
  58557. height: math.unit(1.7, "meters"),
  58558. weight: math.unit(70, "kg"),
  58559. name: "Dressed (Lewd)",
  58560. image: {
  58561. source: "./media/characters/otreus/hippogriff-dressed-lewd.svg",
  58562. extra: 710/689,
  58563. bottom: 67/777
  58564. },
  58565. form: "hippogriff",
  58566. },
  58567. hippogriff_nudeLewd: {
  58568. height: math.unit(1.7, "meters"),
  58569. weight: math.unit(70, "kg"),
  58570. name: "Nude (Lewd)",
  58571. image: {
  58572. source: "./media/characters/otreus/hippogriff-nude-lewd.svg",
  58573. extra: 710/689,
  58574. bottom: 67/777
  58575. },
  58576. form: "hippogriff",
  58577. },
  58578. },
  58579. [
  58580. {
  58581. name: "Original Size",
  58582. height: math.unit(1.7, "meters"),
  58583. allForms: true
  58584. },
  58585. {
  58586. name: "Incognito Size",
  58587. height: math.unit(2, "meters"),
  58588. allForms: true
  58589. },
  58590. {
  58591. name: "Mega",
  58592. height: math.unit(2, "km"),
  58593. allForms: true
  58594. },
  58595. {
  58596. name: "Mega+",
  58597. height: math.unit(40, "km"),
  58598. allForms: true
  58599. },
  58600. {
  58601. name: "Giga",
  58602. height: math.unit(250, "km"),
  58603. allForms: true
  58604. },
  58605. {
  58606. name: "Giga+",
  58607. height: math.unit(3000, "km"),
  58608. allForms: true
  58609. },
  58610. {
  58611. name: "Terra",
  58612. height: math.unit(20000, "km"),
  58613. allForms: true
  58614. },
  58615. {
  58616. name: "Solar (Home Size)",
  58617. height: math.unit(3e6, "km"),
  58618. allForms: true,
  58619. default: true
  58620. },
  58621. ],
  58622. {
  58623. "magpie": {
  58624. name: "Magpie",
  58625. default: true
  58626. },
  58627. "hippogriff": {
  58628. name: "Hippogriff",
  58629. },
  58630. }
  58631. ))
  58632. characterMakers.push(() => makeCharacter(
  58633. { name: "Thalia", species: ["flying-fox", "fox", "deity"], tags: ["anthro"] },
  58634. {
  58635. frontDressed: {
  58636. height: math.unit(1.8, "meters"),
  58637. weight: math.unit(90, "kg"),
  58638. name: "Front (Dressed)",
  58639. image: {
  58640. source: "./media/characters/thalia/front-dressed.svg",
  58641. extra: 478/402,
  58642. bottom: 55/533
  58643. }
  58644. },
  58645. backDressed: {
  58646. height: math.unit(1.8, "meters"),
  58647. weight: math.unit(90, "kg"),
  58648. name: "Back (Dressed)",
  58649. image: {
  58650. source: "./media/characters/thalia/back-dressed.svg",
  58651. extra: 500/424,
  58652. bottom: 15/515
  58653. }
  58654. },
  58655. frontNude: {
  58656. height: math.unit(1.8, "meters"),
  58657. weight: math.unit(90, "kg"),
  58658. name: "Front (Nude)",
  58659. image: {
  58660. source: "./media/characters/thalia/front-nude.svg",
  58661. extra: 478/402,
  58662. bottom: 55/533
  58663. }
  58664. },
  58665. backNude: {
  58666. height: math.unit(1.8, "meters"),
  58667. weight: math.unit(90, "kg"),
  58668. name: "Back (Nude)",
  58669. image: {
  58670. source: "./media/characters/thalia/back-nude.svg",
  58671. extra: 500/424,
  58672. bottom: 15/515
  58673. }
  58674. },
  58675. },
  58676. [
  58677. {
  58678. name: "Incognito",
  58679. height: math.unit(3, "meters")
  58680. },
  58681. {
  58682. name: "Macro",
  58683. height: math.unit(500, "meters")
  58684. },
  58685. {
  58686. name: "Mega",
  58687. height: math.unit(5, "km")
  58688. },
  58689. {
  58690. name: "Mega+",
  58691. height: math.unit(30, "km")
  58692. },
  58693. {
  58694. name: "Giga",
  58695. height: math.unit(350, "km")
  58696. },
  58697. {
  58698. name: "Giga+",
  58699. height: math.unit(4000, "km")
  58700. },
  58701. {
  58702. name: "Terra",
  58703. height: math.unit(35000, "km")
  58704. },
  58705. {
  58706. name: "Original Size",
  58707. height: math.unit(130000, "km")
  58708. },
  58709. {
  58710. name: "Solar (Home Size)",
  58711. height: math.unit(4e6, "km"),
  58712. default: true
  58713. },
  58714. ]
  58715. ))
  58716. characterMakers.push(() => makeCharacter(
  58717. { name: "Shango", species: ["african-wild-dog", "deity"], tags: ["anthro"] },
  58718. {
  58719. front: {
  58720. height: math.unit(1.8, "meters"),
  58721. weight: math.unit(95, "kg"),
  58722. name: "Front",
  58723. image: {
  58724. source: "./media/characters/shango/front.svg",
  58725. extra: 1925/1774,
  58726. bottom: 67/1992
  58727. }
  58728. },
  58729. back: {
  58730. height: math.unit(1.8, "meters"),
  58731. weight: math.unit(95, "kg"),
  58732. name: "Back",
  58733. image: {
  58734. source: "./media/characters/shango/back.svg",
  58735. extra: 1915/1766,
  58736. bottom: 52/1967
  58737. }
  58738. },
  58739. frontLewd: {
  58740. height: math.unit(1.8, "meters"),
  58741. weight: math.unit(95, "kg"),
  58742. name: "Front (Lewd)",
  58743. image: {
  58744. source: "./media/characters/shango/front-lewd.svg",
  58745. extra: 1925/1774,
  58746. bottom: 67/1992
  58747. }
  58748. },
  58749. backLewd: {
  58750. height: math.unit(1.8, "meters"),
  58751. weight: math.unit(95, "kg"),
  58752. name: "Back (Lewd)",
  58753. image: {
  58754. source: "./media/characters/shango/back-lewd.svg",
  58755. extra: 1915/1766,
  58756. bottom: 52/1967
  58757. }
  58758. },
  58759. maw: {
  58760. height: math.unit(1.64, "feet"),
  58761. name: "Maw",
  58762. image: {
  58763. source: "./media/characters/shango/maw.svg"
  58764. }
  58765. },
  58766. dick: {
  58767. height: math.unit(2.14, "feet"),
  58768. name: "Dick",
  58769. image: {
  58770. source: "./media/characters/shango/dick.svg"
  58771. }
  58772. },
  58773. },
  58774. [
  58775. {
  58776. name: "Incognito",
  58777. height: math.unit(1.8, "meters")
  58778. },
  58779. {
  58780. name: "Home Size",
  58781. height: math.unit(60, "meters"),
  58782. default: true
  58783. },
  58784. {
  58785. name: "Macro",
  58786. height: math.unit(450, "meters")
  58787. },
  58788. {
  58789. name: "Mega",
  58790. height: math.unit(6, "km")
  58791. },
  58792. {
  58793. name: "Mega+",
  58794. height: math.unit(35, "km")
  58795. },
  58796. {
  58797. name: "Giga",
  58798. height: math.unit(500, "km")
  58799. },
  58800. {
  58801. name: "Giga+",
  58802. height: math.unit(5000, "km")
  58803. },
  58804. {
  58805. name: "Terra",
  58806. height: math.unit(60000, "km")
  58807. },
  58808. {
  58809. name: "Terra+",
  58810. height: math.unit(400000, "km")
  58811. },
  58812. ]
  58813. ))
  58814. characterMakers.push(() => makeCharacter(
  58815. { name: "Osiris (Gryphon)", species: ["gryphon", "snow-leopard", "peregrine-falcon", "deity"], tags: ["anthro"] },
  58816. {
  58817. front: {
  58818. height: math.unit(2, "meters"),
  58819. weight: math.unit(95, "kg"),
  58820. name: "Front",
  58821. image: {
  58822. source: "./media/characters/osiris-gryphon/front.svg",
  58823. extra: 1508/1313,
  58824. bottom: 87/1595
  58825. }
  58826. },
  58827. back: {
  58828. height: math.unit(2, "meters"),
  58829. weight: math.unit(95, "kg"),
  58830. name: "Back",
  58831. image: {
  58832. source: "./media/characters/osiris-gryphon/back.svg",
  58833. extra: 1436/1309,
  58834. bottom: 64/1500
  58835. }
  58836. },
  58837. frontLewd: {
  58838. height: math.unit(2, "meters"),
  58839. weight: math.unit(95, "kg"),
  58840. name: "Front-lewd",
  58841. image: {
  58842. source: "./media/characters/osiris-gryphon/front-lewd.svg",
  58843. extra: 1508/1313,
  58844. bottom: 87/1595
  58845. }
  58846. },
  58847. wing: {
  58848. height: math.unit(6.3333, "feet"),
  58849. name: "Wing",
  58850. image: {
  58851. source: "./media/characters/osiris-gryphon/wing.svg"
  58852. }
  58853. },
  58854. },
  58855. [
  58856. {
  58857. name: "Incognito",
  58858. height: math.unit(2, "meters")
  58859. },
  58860. {
  58861. name: "Home Size",
  58862. height: math.unit(30, "meters"),
  58863. default: true
  58864. },
  58865. {
  58866. name: "Macro",
  58867. height: math.unit(100, "meters")
  58868. },
  58869. {
  58870. name: "Macro+",
  58871. height: math.unit(350, "meters")
  58872. },
  58873. {
  58874. name: "Mega",
  58875. height: math.unit(40, "km")
  58876. },
  58877. {
  58878. name: "Giga",
  58879. height: math.unit(300, "km")
  58880. },
  58881. {
  58882. name: "Giga+",
  58883. height: math.unit(2000, "km")
  58884. },
  58885. {
  58886. name: "Terra",
  58887. height: math.unit(30000, "km")
  58888. },
  58889. ]
  58890. ))
  58891. characterMakers.push(() => makeCharacter(
  58892. { name: "Atlas (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  58893. {
  58894. front: {
  58895. height: math.unit(2.5, "meters"),
  58896. weight: math.unit(200, "kg"),
  58897. name: "Front",
  58898. image: {
  58899. source: "./media/characters/atlas-dragon/front.svg",
  58900. extra: 745/462,
  58901. bottom: 36/781
  58902. }
  58903. },
  58904. back: {
  58905. height: math.unit(2.5, "meters"),
  58906. weight: math.unit(200, "kg"),
  58907. name: "Back",
  58908. image: {
  58909. source: "./media/characters/atlas-dragon/back.svg",
  58910. extra: 848/822,
  58911. bottom: 57/905
  58912. }
  58913. },
  58914. frontLewd: {
  58915. height: math.unit(2.5, "meters"),
  58916. weight: math.unit(200, "kg"),
  58917. name: "Front (Lewd)",
  58918. image: {
  58919. source: "./media/characters/atlas-dragon/front-lewd.svg",
  58920. extra: 745/462,
  58921. bottom: 36/781
  58922. }
  58923. },
  58924. backLewd: {
  58925. height: math.unit(2.5, "meters"),
  58926. weight: math.unit(200, "kg"),
  58927. name: "Back (Lewd)",
  58928. image: {
  58929. source: "./media/characters/atlas-dragon/back-lewd.svg",
  58930. extra: 848/822,
  58931. bottom: 57/905
  58932. }
  58933. },
  58934. },
  58935. [
  58936. {
  58937. name: "Incognito",
  58938. height: math.unit(2.5, "meters")
  58939. },
  58940. {
  58941. name: "Small Macro",
  58942. height: math.unit(50, "meters")
  58943. },
  58944. {
  58945. name: "Macro",
  58946. height: math.unit(350, "meters")
  58947. },
  58948. {
  58949. name: "Mega",
  58950. height: math.unit(5.5, "kilometers")
  58951. },
  58952. {
  58953. name: "Mega+",
  58954. height: math.unit(50, "km")
  58955. },
  58956. {
  58957. name: "Giga",
  58958. height: math.unit(350, "km")
  58959. },
  58960. {
  58961. name: "Giga+",
  58962. height: math.unit(2000, "km")
  58963. },
  58964. {
  58965. name: "Giga++",
  58966. height: math.unit(6500, "km")
  58967. },
  58968. {
  58969. name: "Terra",
  58970. height: math.unit(30000, "km")
  58971. },
  58972. {
  58973. name: "Terra+",
  58974. height: math.unit(250000, "km")
  58975. },
  58976. {
  58977. name: "True Size",
  58978. height: math.unit(100, "multiverses"),
  58979. default: true
  58980. },
  58981. ]
  58982. ))
  58983. characterMakers.push(() => makeCharacter(
  58984. { name: "Chey", species: ["coyote", "deity"], tags: ["anthro"] },
  58985. {
  58986. front: {
  58987. height: math.unit(1.8, "m"),
  58988. weight: math.unit(120, "kg"),
  58989. name: "Front",
  58990. image: {
  58991. source: "./media/characters/chey/front.svg",
  58992. extra: 1359/1270,
  58993. bottom: 18/1377
  58994. }
  58995. },
  58996. arm: {
  58997. height: math.unit(2.05, "feet"),
  58998. name: "Arm",
  58999. image: {
  59000. source: "./media/characters/chey/arm.svg"
  59001. }
  59002. },
  59003. head: {
  59004. height: math.unit(1.89, "feet"),
  59005. name: "Head",
  59006. image: {
  59007. source: "./media/characters/chey/head.svg"
  59008. }
  59009. },
  59010. },
  59011. [
  59012. {
  59013. name: "Original Size",
  59014. height: math.unit(5, "cm")
  59015. },
  59016. {
  59017. name: "Incognito Size",
  59018. height: math.unit(2.4, "m")
  59019. },
  59020. {
  59021. name: "Home Size",
  59022. height: math.unit(200, "meters"),
  59023. default: true
  59024. },
  59025. {
  59026. name: "Mega",
  59027. height: math.unit(2, "km")
  59028. },
  59029. {
  59030. name: "Giga (Preferred Size)",
  59031. height: math.unit(2000, "km")
  59032. },
  59033. {
  59034. name: "Giga+",
  59035. height: math.unit(6000, "km")
  59036. },
  59037. {
  59038. name: "Terra",
  59039. height: math.unit(17000, "km")
  59040. },
  59041. {
  59042. name: "Terra+",
  59043. height: math.unit(75000, "km")
  59044. },
  59045. {
  59046. name: "Terra++",
  59047. height: math.unit(225000, "km")
  59048. },
  59049. ]
  59050. ))
  59051. characterMakers.push(() => makeCharacter(
  59052. { name: "Ragnarok", species: ["suicune"], tags: ["taur"] },
  59053. {
  59054. side: {
  59055. height: math.unit(7.8, "meters"),
  59056. name: "Side",
  59057. image: {
  59058. source: "./media/characters/ragnarok/side.svg",
  59059. extra: 725/621,
  59060. bottom: 72/797
  59061. }
  59062. },
  59063. },
  59064. [
  59065. {
  59066. name: "Normal",
  59067. height: math.unit(7.8, "meters"),
  59068. default: true
  59069. },
  59070. ]
  59071. ))
  59072. characterMakers.push(() => makeCharacter(
  59073. { name: "Nima", species: ["hyena", "shark", "deity"], tags: ["anthro"] },
  59074. {
  59075. hyena_front: {
  59076. height: math.unit(2.1, "meters"),
  59077. weight: math.unit(110, "kg"),
  59078. name: "Front",
  59079. image: {
  59080. source: "./media/characters/nima/hyena-front.svg",
  59081. extra: 1904/1796,
  59082. bottom: 67/1971
  59083. },
  59084. form: "hyena",
  59085. },
  59086. hyena_back: {
  59087. height: math.unit(2.1, "meters"),
  59088. weight: math.unit(110, "kg"),
  59089. name: "Back",
  59090. image: {
  59091. source: "./media/characters/nima/hyena-back.svg",
  59092. extra: 1964/1884,
  59093. bottom: 35/1999
  59094. },
  59095. form: "hyena",
  59096. },
  59097. shark_front: {
  59098. height: math.unit(1.95, "meters"),
  59099. weight: math.unit(110, "kg"),
  59100. name: "Front",
  59101. image: {
  59102. source: "./media/characters/nima/shark-front.svg",
  59103. extra: 2238/2013,
  59104. bottom: 0/223
  59105. },
  59106. form: "shark",
  59107. },
  59108. paw: {
  59109. height: math.unit(1, "feet"),
  59110. name: "Paw",
  59111. image: {
  59112. source: "./media/characters/nima/paw.svg"
  59113. }
  59114. },
  59115. circlet: {
  59116. height: math.unit(0.3, "feet"),
  59117. name: "Circlet",
  59118. image: {
  59119. source: "./media/characters/nima/circlet.svg"
  59120. }
  59121. },
  59122. necklace: {
  59123. height: math.unit(1.2, "feet"),
  59124. name: "Necklace",
  59125. image: {
  59126. source: "./media/characters/nima/necklace.svg"
  59127. }
  59128. },
  59129. bracelet: {
  59130. height: math.unit(0.51, "feet"),
  59131. name: "Bracelet",
  59132. image: {
  59133. source: "./media/characters/nima/bracelet.svg"
  59134. }
  59135. },
  59136. armband: {
  59137. height: math.unit(1.3, "feet"),
  59138. name: "Armband",
  59139. image: {
  59140. source: "./media/characters/nima/armband.svg"
  59141. }
  59142. },
  59143. },
  59144. [
  59145. {
  59146. name: "Incognito",
  59147. height: math.unit(2.1, "meters"),
  59148. allForms: true
  59149. },
  59150. {
  59151. name: "Small Macro",
  59152. height: math.unit(50, "meters"),
  59153. allForms: true
  59154. },
  59155. {
  59156. name: "Macro",
  59157. height: math.unit(200, "meters"),
  59158. allForms: true
  59159. },
  59160. {
  59161. name: "Mega",
  59162. height: math.unit(2.5, "km"),
  59163. allForms: true
  59164. },
  59165. {
  59166. name: "Mega+",
  59167. height: math.unit(30, "km"),
  59168. allForms: true
  59169. },
  59170. {
  59171. name: "Giga (Home Size)",
  59172. height: math.unit(400, "km"),
  59173. allForms: true,
  59174. default: true
  59175. },
  59176. {
  59177. name: "Giga+",
  59178. height: math.unit(2500, "km"),
  59179. allForms: true
  59180. },
  59181. {
  59182. name: "Giga++",
  59183. height: math.unit(8000, "km"),
  59184. allForms: true
  59185. },
  59186. {
  59187. name: "Terra",
  59188. height: math.unit(20000, "km"),
  59189. allForms: true
  59190. },
  59191. {
  59192. name: "Terra+",
  59193. height: math.unit(70000, "km"),
  59194. allForms: true
  59195. },
  59196. {
  59197. name: "Terra++",
  59198. height: math.unit(600000, "km"),
  59199. allForms: true
  59200. },
  59201. {
  59202. name: "Galactic",
  59203. height: math.unit(40, "galaxies"),
  59204. allForms: true
  59205. },
  59206. {
  59207. name: "Universal",
  59208. height: math.unit(40, "universes"),
  59209. allForms: true
  59210. },
  59211. ],
  59212. {
  59213. "hyena": {
  59214. name: "Hyena",
  59215. default: true
  59216. },
  59217. "shark": {
  59218. name: "Shark",
  59219. },
  59220. }
  59221. ))
  59222. characterMakers.push(() => makeCharacter(
  59223. { name: "Adelaide", species: ["deinonychus"], tags: ["anthro", "feral"] },
  59224. {
  59225. anthro_front: {
  59226. height: math.unit(1.5, "meters"),
  59227. name: "Front",
  59228. image: {
  59229. source: "./media/characters/adelaide/anthro-front.svg",
  59230. extra: 860/783,
  59231. bottom: 60/920
  59232. },
  59233. form: "anthro",
  59234. default: true
  59235. },
  59236. hand: {
  59237. height: math.unit(0.65, "feet"),
  59238. name: "Hand",
  59239. image: {
  59240. source: "./media/characters/adelaide/hand.svg"
  59241. },
  59242. form: "anthro"
  59243. },
  59244. foot: {
  59245. height: math.unit(1.38 * 259 / 314, "feet"),
  59246. name: "Foot",
  59247. image: {
  59248. source: "./media/characters/adelaide/foot.svg",
  59249. extra: 259/259,
  59250. bottom: 55/314
  59251. },
  59252. form: "anthro"
  59253. },
  59254. feather: {
  59255. height: math.unit(0.85, "feet"),
  59256. name: "Feather",
  59257. image: {
  59258. source: "./media/characters/adelaide/feather.svg"
  59259. },
  59260. form: "anthro"
  59261. },
  59262. feral_side: {
  59263. height: math.unit(1, "meters"),
  59264. name: "Side",
  59265. image: {
  59266. source: "./media/characters/adelaide/feral-side.svg",
  59267. extra: 550/467,
  59268. bottom: 37/587
  59269. },
  59270. form: "feral",
  59271. default: true
  59272. },
  59273. feral_hand: {
  59274. height: math.unit(0.58, "feet"),
  59275. name: "Hand",
  59276. image: {
  59277. source: "./media/characters/adelaide/hand.svg"
  59278. },
  59279. form: "feral"
  59280. },
  59281. feral_foot: {
  59282. height: math.unit(1.2 * 259 / 314, "feet"),
  59283. name: "Foot",
  59284. image: {
  59285. source: "./media/characters/adelaide/foot.svg",
  59286. extra: 259/259,
  59287. bottom: 55/314
  59288. },
  59289. form: "feral"
  59290. },
  59291. feral_feather: {
  59292. height: math.unit(0.63, "feet"),
  59293. name: "Feather",
  59294. image: {
  59295. source: "./media/characters/adelaide/feather.svg"
  59296. },
  59297. form: "feral"
  59298. },
  59299. },
  59300. [
  59301. {
  59302. name: "Normal",
  59303. height: math.unit(1.5, "meters"),
  59304. form: "anthro",
  59305. default: true
  59306. },
  59307. {
  59308. name: "Normal",
  59309. height: math.unit(1, "meters"),
  59310. form: "feral",
  59311. default: true
  59312. },
  59313. ],
  59314. {
  59315. "anthro": {
  59316. name: "Anthro",
  59317. default: true
  59318. },
  59319. "feral": {
  59320. name: "Feral",
  59321. },
  59322. }
  59323. ))
  59324. characterMakers.push(() => makeCharacter(
  59325. { name: "Goa", species: ["chocobo"], tags: ["taur"] },
  59326. {
  59327. front: {
  59328. height: math.unit(2.5, "meters"),
  59329. name: "Front",
  59330. image: {
  59331. source: "./media/characters/goa/front.svg",
  59332. extra: 1109/1013,
  59333. bottom: 150/1259
  59334. }
  59335. },
  59336. },
  59337. [
  59338. {
  59339. name: "Normal",
  59340. height: math.unit(2.5, "meters"),
  59341. default: true
  59342. },
  59343. ]
  59344. ))
  59345. characterMakers.push(() => makeCharacter(
  59346. { name: "Kiki (Weavile)", species: ["weavile"], tags: ["anthro"] },
  59347. {
  59348. front: {
  59349. height: math.unit(2, "meters"),
  59350. weight: math.unit(100, "kg"),
  59351. name: "Front",
  59352. image: {
  59353. source: "./media/characters/kiki-weavile/front.svg",
  59354. extra: 357/332,
  59355. bottom: 60/417
  59356. }
  59357. },
  59358. },
  59359. [
  59360. {
  59361. name: "Normal",
  59362. height: math.unit(2, "meters"),
  59363. default: true
  59364. },
  59365. ]
  59366. ))
  59367. characterMakers.push(() => makeCharacter(
  59368. { name: "Liza", species: ["stilio"], tags: ["taur"] },
  59369. {
  59370. side: {
  59371. height: math.unit(1.6, "meters"),
  59372. name: "Side",
  59373. image: {
  59374. source: "./media/characters/liza/side.svg",
  59375. extra: 943/915,
  59376. bottom: 72/1015
  59377. }
  59378. },
  59379. },
  59380. [
  59381. {
  59382. name: "Normal",
  59383. height: math.unit(1.6, "meters"),
  59384. default: true
  59385. },
  59386. ]
  59387. ))
  59388. characterMakers.push(() => makeCharacter(
  59389. { name: "Persephone Sweetbreath", species: ["hyena", "gnoll"], tags: ["taur"] },
  59390. {
  59391. side: {
  59392. height: math.unit(2.5, "meters"),
  59393. name: "Side",
  59394. image: {
  59395. source: "./media/characters/persephone-sweetbreath/side.svg",
  59396. extra: 796/700,
  59397. bottom: 44/840
  59398. }
  59399. },
  59400. },
  59401. [
  59402. {
  59403. name: "Normal",
  59404. height: math.unit(2.5, "meters"),
  59405. default: true
  59406. },
  59407. ]
  59408. ))
  59409. characterMakers.push(() => makeCharacter(
  59410. { name: "Pierce", species: ["dragon"], tags: ["feral"] },
  59411. {
  59412. front: {
  59413. height: math.unit(32, "meters"),
  59414. name: "Front",
  59415. image: {
  59416. source: "./media/characters/pierce/front.svg",
  59417. extra: 1695/1475,
  59418. bottom: 185/1880
  59419. }
  59420. },
  59421. side: {
  59422. height: math.unit(32, "meters"),
  59423. name: "Side",
  59424. image: {
  59425. source: "./media/characters/pierce/side.svg",
  59426. extra: 974/859,
  59427. bottom: 43/1017
  59428. }
  59429. },
  59430. frontWingless: {
  59431. height: math.unit(32, "meters"),
  59432. name: "Front (Wingless)",
  59433. image: {
  59434. source: "./media/characters/pierce/front-wingless.svg",
  59435. extra: 1695/1475,
  59436. bottom: 185/1880
  59437. }
  59438. },
  59439. sideWingless: {
  59440. height: math.unit(32, "meters"),
  59441. name: "Side (Wingless)",
  59442. image: {
  59443. source: "./media/characters/pierce/side-wingless.svg",
  59444. extra: 974/859,
  59445. bottom: 43/1017
  59446. }
  59447. },
  59448. maw: {
  59449. height: math.unit(19.3, "meters"),
  59450. name: "Maw",
  59451. image: {
  59452. source: "./media/characters/pierce/maw.svg"
  59453. }
  59454. },
  59455. },
  59456. [
  59457. {
  59458. name: "Small",
  59459. height: math.unit(8.5, "meters")
  59460. },
  59461. {
  59462. name: "Normal",
  59463. height: math.unit(32, "meters"),
  59464. default: true
  59465. },
  59466. ]
  59467. ))
  59468. characterMakers.push(() => makeCharacter(
  59469. { name: "Shira", species: ["cobra", "deity", "dragon"], tags: ["anthro"] },
  59470. {
  59471. front: {
  59472. height: math.unit(2.3, "meters"),
  59473. weight: math.unit(165, "kg"),
  59474. name: "Front",
  59475. image: {
  59476. source: "./media/characters/shira/front.svg",
  59477. extra: 924/919,
  59478. bottom: 17/941
  59479. },
  59480. form: "cobra",
  59481. default: true
  59482. },
  59483. back: {
  59484. height: math.unit(2.3, "meters"),
  59485. weight: math.unit(165, "kg"),
  59486. name: "Back",
  59487. image: {
  59488. source: "./media/characters/shira/back.svg",
  59489. extra: 928/922,
  59490. bottom: 18/946
  59491. },
  59492. form: "cobra"
  59493. },
  59494. frontLewd: {
  59495. height: math.unit(2.3, "meters"),
  59496. weight: math.unit(165, "kg"),
  59497. name: "Front (Lewd)",
  59498. image: {
  59499. source: "./media/characters/shira/front-lewd.svg",
  59500. extra: 924/919,
  59501. bottom: 17/941
  59502. },
  59503. form: "cobra"
  59504. },
  59505. backLewd: {
  59506. height: math.unit(2.3, "meters"),
  59507. weight: math.unit(165, "kg"),
  59508. name: "Back (Lewd)",
  59509. image: {
  59510. source: "./media/characters/shira/back-lewd.svg",
  59511. extra: 928/922,
  59512. bottom: 18/946
  59513. },
  59514. form: "cobra"
  59515. },
  59516. maw: {
  59517. height: math.unit(1.14, "feet"),
  59518. name: "Maw",
  59519. image: {
  59520. source: "./media/characters/shira/maw.svg"
  59521. },
  59522. form: "cobra"
  59523. },
  59524. magma_front: {
  59525. height: math.unit(2.3, "meters"),
  59526. weight: math.unit(165, "kg"),
  59527. name: "Front",
  59528. image: {
  59529. source: "./media/characters/shira/magma-front.svg",
  59530. extra: 1870/1693,
  59531. bottom: 24/1894
  59532. },
  59533. form: "magma",
  59534. },
  59535. magma_back: {
  59536. height: math.unit(2.3, "meters"),
  59537. weight: math.unit(165, "kg"),
  59538. name: "Back",
  59539. image: {
  59540. source: "./media/characters/shira/magma-back.svg",
  59541. extra: 1918/1756,
  59542. bottom: 46/1964
  59543. },
  59544. form: "magma",
  59545. },
  59546. },
  59547. [
  59548. {
  59549. name: "Incognito",
  59550. height: math.unit(2.3, "meters"),
  59551. allForms: true
  59552. },
  59553. {
  59554. name: "Home Size",
  59555. height: math.unit(150, "meters"),
  59556. default: true,
  59557. allForms: true
  59558. },
  59559. {
  59560. name: "Macro",
  59561. height: math.unit(2, "km"),
  59562. allForms: true
  59563. },
  59564. {
  59565. name: "Mega",
  59566. height: math.unit(30, "km"),
  59567. allForms: true
  59568. },
  59569. {
  59570. name: "Giga",
  59571. height: math.unit(450, "km"),
  59572. allForms: true
  59573. },
  59574. {
  59575. name: "Giga+",
  59576. height: math.unit(3000, "km"),
  59577. allForms: true
  59578. },
  59579. {
  59580. name: "Giga++",
  59581. height: math.unit(6000, "km"),
  59582. allForms: true
  59583. },
  59584. {
  59585. name: "Terra",
  59586. height: math.unit(80000, "km"),
  59587. allForms: true
  59588. },
  59589. {
  59590. name: "Terra+",
  59591. height: math.unit(350000, "km"),
  59592. allForms: true
  59593. },
  59594. {
  59595. name: "Solar",
  59596. height: math.unit(1e6, "km"),
  59597. allForms: true
  59598. },
  59599. ],
  59600. {
  59601. "cobra": {
  59602. name: "Cobra",
  59603. default: true
  59604. },
  59605. "magma": {
  59606. name: "Magma Dragon",
  59607. },
  59608. }
  59609. ))
  59610. characterMakers.push(() => makeCharacter(
  59611. { name: "Daxerios", species: ["wolf", "cerberus"], tags: ["anthro"] },
  59612. {
  59613. front: {
  59614. height: math.unit(2, "meters"),
  59615. weight: math.unit(160, "kg"),
  59616. name: "Front",
  59617. image: {
  59618. source: "./media/characters/daxerios/front.svg",
  59619. extra: 1334/1277,
  59620. bottom: 45/1379
  59621. }
  59622. },
  59623. frontLewd: {
  59624. height: math.unit(2, "meters"),
  59625. weight: math.unit(160, "kg"),
  59626. name: "Front (Lewd)",
  59627. image: {
  59628. source: "./media/characters/daxerios/front-lewd.svg",
  59629. extra: 1334/1277,
  59630. bottom: 45/1379
  59631. }
  59632. },
  59633. dick: {
  59634. height: math.unit(2.35, "feet"),
  59635. name: "Dick",
  59636. image: {
  59637. source: "./media/characters/daxerios/dick.svg"
  59638. }
  59639. },
  59640. },
  59641. [
  59642. {
  59643. name: "\"Small\"",
  59644. height: math.unit(5, "meters")
  59645. },
  59646. {
  59647. name: "Original Size",
  59648. height: math.unit(500, "meters"),
  59649. default: true
  59650. },
  59651. {
  59652. name: "Mega",
  59653. height: math.unit(2, "km")
  59654. },
  59655. {
  59656. name: "Mega+",
  59657. height: math.unit(35, "km")
  59658. },
  59659. {
  59660. name: "Giga",
  59661. height: math.unit(250, "km")
  59662. },
  59663. {
  59664. name: "Giga+",
  59665. height: math.unit(3000, "km")
  59666. },
  59667. {
  59668. name: "Terra",
  59669. height: math.unit(25000, "km")
  59670. },
  59671. {
  59672. name: "Terra+",
  59673. height: math.unit(300000, "km")
  59674. },
  59675. {
  59676. name: "Solar",
  59677. height: math.unit(1e6, "km")
  59678. },
  59679. ]
  59680. ))
  59681. characterMakers.push(() => makeCharacter(
  59682. { name: "Caveat", species: ["luxray", "plush"], tags: ["anthro"] },
  59683. {
  59684. front: {
  59685. height: math.unit(8 + 4/12, "feet"),
  59686. weight: math.unit(464, "lb"),
  59687. name: "Front",
  59688. image: {
  59689. source: "./media/characters/caveat/front.svg",
  59690. extra: 1861/1678,
  59691. bottom: 40/1901
  59692. }
  59693. },
  59694. },
  59695. [
  59696. {
  59697. name: "Normal",
  59698. height: math.unit(8 + 4/12, "feet"),
  59699. default: true
  59700. },
  59701. ]
  59702. ))
  59703. characterMakers.push(() => makeCharacter(
  59704. { name: "Centbair", species: ["kardox"], tags: ["anthro"] },
  59705. {
  59706. front: {
  59707. height: math.unit(12, "feet"),
  59708. weight: math.unit(1800, "lb"),
  59709. name: "Front",
  59710. image: {
  59711. source: "./media/characters/centbair/front.svg",
  59712. extra: 781/663,
  59713. bottom: 25/806
  59714. }
  59715. },
  59716. frontNsfw: {
  59717. height: math.unit(12, "feet"),
  59718. weight: math.unit(1800, "lb"),
  59719. name: "Front (NSFW)",
  59720. image: {
  59721. source: "./media/characters/centbair/front-nsfw.svg",
  59722. extra: 781/663,
  59723. bottom: 25/806
  59724. }
  59725. },
  59726. back: {
  59727. height: math.unit(12, "feet"),
  59728. weight: math.unit(1800, "lb"),
  59729. name: "Back",
  59730. image: {
  59731. source: "./media/characters/centbair/back.svg",
  59732. extra: 808/761,
  59733. bottom: 19/827
  59734. }
  59735. },
  59736. dick: {
  59737. height: math.unit(6.5, "feet"),
  59738. name: "Dick",
  59739. image: {
  59740. source: "./media/characters/centbair/dick.svg"
  59741. }
  59742. },
  59743. slit: {
  59744. height: math.unit(3.25, "feet"),
  59745. name: "Slit",
  59746. image: {
  59747. source: "./media/characters/centbair/slit.svg"
  59748. }
  59749. },
  59750. },
  59751. [
  59752. {
  59753. name: "Normal",
  59754. height: math.unit(12, "feet"),
  59755. default: true
  59756. },
  59757. ]
  59758. ))
  59759. characterMakers.push(() => makeCharacter(
  59760. { name: "Andy", species: ["tanuki"], tags: ["anthro"] },
  59761. {
  59762. front: {
  59763. height: math.unit(5 + 7/12, "feet"),
  59764. name: "Front",
  59765. image: {
  59766. source: "./media/characters/andy/front.svg",
  59767. extra: 634/588,
  59768. bottom: 36/670
  59769. },
  59770. extraAttributes: {
  59771. "pawLength": {
  59772. name: "Paw Length",
  59773. power: 1,
  59774. type: "length",
  59775. base: math.unit(1, "feet")
  59776. },
  59777. }
  59778. },
  59779. side: {
  59780. height: math.unit(5 + 7/12, "feet"),
  59781. name: "Side",
  59782. image: {
  59783. source: "./media/characters/andy/side.svg",
  59784. extra: 641/596,
  59785. bottom: 34/675
  59786. },
  59787. extraAttributes: {
  59788. "pawLength": {
  59789. name: "Paw Length",
  59790. power: 1,
  59791. type: "length",
  59792. base: math.unit(1, "feet")
  59793. },
  59794. }
  59795. },
  59796. back: {
  59797. height: math.unit(5 + 7/12, "feet"),
  59798. name: "Back",
  59799. image: {
  59800. source: "./media/characters/andy/back.svg",
  59801. extra: 618/583,
  59802. bottom: 39/657
  59803. },
  59804. extraAttributes: {
  59805. "pawLength": {
  59806. name: "Paw Length",
  59807. power: 1,
  59808. type: "length",
  59809. base: math.unit(1, "feet")
  59810. },
  59811. }
  59812. },
  59813. paw: {
  59814. height: math.unit(1.13, "feet"),
  59815. name: "Paw",
  59816. image: {
  59817. source: "./media/characters/andy/paw.svg"
  59818. }
  59819. },
  59820. },
  59821. [
  59822. {
  59823. name: "Micro",
  59824. height: math.unit(4, "inches")
  59825. },
  59826. {
  59827. name: "Normal",
  59828. height: math.unit(5 + 7/12, "feet"),
  59829. default: true
  59830. },
  59831. {
  59832. name: "Macro",
  59833. height: math.unit(390.42, "feet")
  59834. },
  59835. ]
  59836. ))
  59837. characterMakers.push(() => makeCharacter(
  59838. { name: "Vix Titan", species: ["fox", "demon"], tags: ["anthro"] },
  59839. {
  59840. front: {
  59841. height: math.unit(7, "feet"),
  59842. weight: math.unit(250, "lb"),
  59843. name: "Front",
  59844. image: {
  59845. source: "./media/characters/vix-titan/front.svg",
  59846. extra: 460/428,
  59847. bottom: 15/475
  59848. },
  59849. extraAttributes: {
  59850. "pawWidth": {
  59851. name: "Paw Width",
  59852. power: 1,
  59853. type: "length",
  59854. base: math.unit(0.75, "feet")
  59855. },
  59856. }
  59857. },
  59858. },
  59859. [
  59860. {
  59861. name: "Normal",
  59862. height: math.unit(7, "feet"),
  59863. default: true
  59864. },
  59865. {
  59866. name: "Giant",
  59867. height: math.unit(1500, "feet")
  59868. },
  59869. {
  59870. name: "Mega",
  59871. height: math.unit(10, "miles")
  59872. },
  59873. {
  59874. name: "Giga",
  59875. height: math.unit(150, "miles")
  59876. },
  59877. {
  59878. name: "Tera",
  59879. height: math.unit(144000, "miles")
  59880. },
  59881. ]
  59882. ))
  59883. characterMakers.push(() => makeCharacter(
  59884. { name: "Reiku", species: ["dragon"], tags: ["anthro"] },
  59885. {
  59886. front: {
  59887. height: math.unit(6 + 2/12, "feet"),
  59888. name: "Front",
  59889. image: {
  59890. source: "./media/characters/reiku/front.svg",
  59891. extra: 1910/1757,
  59892. bottom: 103/2013
  59893. },
  59894. extraAttributes: {
  59895. "thighThickness": {
  59896. name: "Thigh Thickness",
  59897. power: 1,
  59898. type: "length",
  59899. base: math.unit(1.12, "feet")
  59900. },
  59901. "assThickness": {
  59902. name: "Ass Thickness",
  59903. power: 1,
  59904. type: "length",
  59905. base: math.unit(1.12*2, "feet")
  59906. },
  59907. }
  59908. },
  59909. side: {
  59910. height: math.unit(6 + 2/12, "feet"),
  59911. name: "Side",
  59912. image: {
  59913. source: "./media/characters/reiku/side.svg",
  59914. extra: 1846/1748,
  59915. bottom: 99/1945
  59916. },
  59917. extraAttributes: {
  59918. "thighThickness": {
  59919. name: "Thigh Thickness",
  59920. power: 1,
  59921. type: "length",
  59922. base: math.unit(1.12, "feet")
  59923. },
  59924. "assThickness": {
  59925. name: "Ass Thickness",
  59926. power: 1,
  59927. type: "length",
  59928. base: math.unit(1.12*2, "feet")
  59929. },
  59930. }
  59931. },
  59932. back: {
  59933. height: math.unit(6 + 2/12, "feet"),
  59934. name: "Back",
  59935. image: {
  59936. source: "./media/characters/reiku/back.svg",
  59937. extra: 1941/1786,
  59938. bottom: 34/1975
  59939. },
  59940. extraAttributes: {
  59941. "thighThickness": {
  59942. name: "Thigh Thickness",
  59943. power: 1,
  59944. type: "length",
  59945. base: math.unit(1.12, "feet")
  59946. },
  59947. "assThickness": {
  59948. name: "Ass Thickness",
  59949. power: 1,
  59950. type: "length",
  59951. base: math.unit(1.12*2, "feet")
  59952. },
  59953. }
  59954. },
  59955. head: {
  59956. height: math.unit(1.8, "feet"),
  59957. name: "Head",
  59958. image: {
  59959. source: "./media/characters/reiku/head.svg"
  59960. }
  59961. },
  59962. tailTop: {
  59963. height: math.unit(8.4, "feet"),
  59964. name: "Tail (Top)",
  59965. image: {
  59966. source: "./media/characters/reiku/tail-top.svg"
  59967. }
  59968. },
  59969. tailBottom: {
  59970. height: math.unit(8.4, "feet"),
  59971. name: "Tail (Bottom)",
  59972. image: {
  59973. source: "./media/characters/reiku/tail-bottom.svg"
  59974. }
  59975. },
  59976. foot: {
  59977. height: math.unit(2.6, "feet"),
  59978. name: "Foot",
  59979. image: {
  59980. source: "./media/characters/reiku/foot.svg"
  59981. }
  59982. },
  59983. footCurled: {
  59984. height: math.unit(2.3, "feet"),
  59985. name: "Foot (Curled)",
  59986. image: {
  59987. source: "./media/characters/reiku/foot-curled.svg"
  59988. }
  59989. },
  59990. footSide: {
  59991. height: math.unit(1.26, "feet"),
  59992. name: "Foot (Side)",
  59993. image: {
  59994. source: "./media/characters/reiku/foot-side.svg"
  59995. }
  59996. },
  59997. },
  59998. [
  59999. {
  60000. name: "Normal",
  60001. height: math.unit(6 + 2/12, "feet"),
  60002. default: true
  60003. },
  60004. ]
  60005. ))
  60006. characterMakers.push(() => makeCharacter(
  60007. { name: "Cialda", species: ["zorgoia", "food"], tags: ["feral"] },
  60008. {
  60009. front: {
  60010. height: math.unit(7, "feet"),
  60011. weight: math.unit(500, "kg"),
  60012. name: "Front",
  60013. image: {
  60014. source: "./media/characters/cialda/front.svg",
  60015. extra: 912/745,
  60016. bottom: 55/967
  60017. }
  60018. },
  60019. },
  60020. [
  60021. {
  60022. name: "Normal",
  60023. height: math.unit(7, "feet"),
  60024. default: true
  60025. },
  60026. ]
  60027. ))
  60028. characterMakers.push(() => makeCharacter(
  60029. { name: "Darkkin", species: ["honey-badger", "behemoth"], tags: ["anthro"] },
  60030. {
  60031. side: {
  60032. height: math.unit(6, "feet"),
  60033. weight: math.unit(600, "lb"),
  60034. preyCapacity: math.unit(25, "liters"),
  60035. name: "Side",
  60036. image: {
  60037. source: "./media/characters/darkkin/side.svg",
  60038. extra: 1597/1447,
  60039. bottom: 101/1698
  60040. }
  60041. },
  60042. },
  60043. [
  60044. {
  60045. name: "Canon Height",
  60046. height: math.unit(568, "feet"),
  60047. default: true
  60048. },
  60049. ]
  60050. ))
  60051. characterMakers.push(() => makeCharacter(
  60052. { name: "Livnia", species: ["rattlesnake", "diamondback"], tags: ["naga"] },
  60053. {
  60054. front: {
  60055. height: math.unit(6, "feet"),
  60056. weight: math.unit(1500, "lb"),
  60057. preyCapacity: math.unit(3, "people"),
  60058. name: "Front",
  60059. image: {
  60060. source: "./media/characters/livnia/front.svg",
  60061. extra: 934/932,
  60062. bottom: 83/1017
  60063. }
  60064. },
  60065. back: {
  60066. height: math.unit(6, "feet"),
  60067. weight: math.unit(1500, "lb"),
  60068. preyCapacity: math.unit(3, "people"),
  60069. name: "Back",
  60070. image: {
  60071. source: "./media/characters/livnia/back.svg",
  60072. extra: 916/915,
  60073. bottom: 58/974
  60074. }
  60075. },
  60076. head: {
  60077. height: math.unit(1.53, "feet"),
  60078. name: "Head",
  60079. image: {
  60080. source: "./media/characters/livnia/head.svg"
  60081. }
  60082. },
  60083. maw: {
  60084. height: math.unit(0.78, "feet"),
  60085. name: "Maw",
  60086. image: {
  60087. source: "./media/characters/livnia/maw.svg"
  60088. }
  60089. },
  60090. genitals: {
  60091. height: math.unit(0.35, "feet"),
  60092. name: "Genitals",
  60093. image: {
  60094. source: "./media/characters/livnia/genitals.svg"
  60095. }
  60096. },
  60097. },
  60098. [
  60099. {
  60100. name: "Normal",
  60101. height: math.unit(1000, "feet"),
  60102. default: true
  60103. },
  60104. ]
  60105. ))
  60106. characterMakers.push(() => makeCharacter(
  60107. { name: "Hayaku", species: ["spidox"], tags: ["anthro"] },
  60108. {
  60109. front: {
  60110. height: math.unit(4, "feet"),
  60111. weight: math.unit(73, "lb"),
  60112. name: "Front",
  60113. image: {
  60114. source: "./media/characters/hayaku/front.svg",
  60115. extra: 1011/888,
  60116. bottom: 33/1044
  60117. }
  60118. },
  60119. back: {
  60120. height: math.unit(4, "feet"),
  60121. weight: math.unit(73, "lb"),
  60122. name: "Back",
  60123. image: {
  60124. source: "./media/characters/hayaku/back.svg",
  60125. extra: 1040/930,
  60126. bottom: 20/1060
  60127. }
  60128. },
  60129. },
  60130. [
  60131. {
  60132. name: "Normal",
  60133. height: math.unit(4, "feet"),
  60134. default: true
  60135. },
  60136. ]
  60137. ))
  60138. characterMakers.push(() => makeCharacter(
  60139. { name: "Athena Bryzant", species: ["gryphon"], tags: ["anthro"] },
  60140. {
  60141. front: {
  60142. height: math.unit(6 + 7/12, "feet"),
  60143. weight: math.unit(300, "lb"),
  60144. name: "Front",
  60145. image: {
  60146. source: "./media/characters/athena-bryzant/front.svg",
  60147. extra: 870/835,
  60148. bottom: 33/903
  60149. }
  60150. },
  60151. back: {
  60152. height: math.unit(6 + 7/12, "feet"),
  60153. weight: math.unit(300, "lb"),
  60154. name: "Back",
  60155. image: {
  60156. source: "./media/characters/athena-bryzant/back.svg",
  60157. extra: 858/823,
  60158. bottom: 30/888
  60159. }
  60160. },
  60161. head: {
  60162. height: math.unit(2.38, "feet"),
  60163. name: "Head",
  60164. image: {
  60165. source: "./media/characters/athena-bryzant/head.svg"
  60166. }
  60167. },
  60168. wings: {
  60169. height: math.unit(2.85, "feet"),
  60170. name: "Wings",
  60171. image: {
  60172. source: "./media/characters/athena-bryzant/wings.svg"
  60173. }
  60174. },
  60175. },
  60176. [
  60177. {
  60178. name: "Normal",
  60179. height: math.unit(6 + 7/12, "feet"),
  60180. default: true
  60181. },
  60182. {
  60183. name: "Big",
  60184. height: math.unit(8, "feet")
  60185. },
  60186. {
  60187. name: "Very Big",
  60188. height: math.unit(11, "feet")
  60189. },
  60190. ]
  60191. ))
  60192. characterMakers.push(() => makeCharacter(
  60193. { name: "Zel-Kesh", species: ["zorgoia", "demon"], tags: ["feral"] },
  60194. {
  60195. side: {
  60196. height: math.unit(3, "meters"),
  60197. weight: math.unit(7500, "kg"),
  60198. preyCapacity: math.unit(1e12, "people"),
  60199. name: "Side",
  60200. image: {
  60201. source: "./media/characters/zel-kesh/side.svg",
  60202. extra: 910/407,
  60203. bottom: 147/1057
  60204. }
  60205. },
  60206. },
  60207. [
  60208. {
  60209. name: "Normal",
  60210. height: math.unit(3, "meters"),
  60211. default: true
  60212. },
  60213. ]
  60214. ))
  60215. characterMakers.push(() => makeCharacter(
  60216. { name: "Kane (Fox)", species: ["fox"], tags: ["anthro"] },
  60217. {
  60218. front: {
  60219. height: math.unit(2, "meters"),
  60220. weight: math.unit(95, "kg"),
  60221. name: "Front",
  60222. image: {
  60223. source: "./media/characters/kane-fox/front.svg",
  60224. extra: 945/888,
  60225. bottom: 27/972
  60226. }
  60227. },
  60228. back: {
  60229. height: math.unit(2, "meters"),
  60230. weight: math.unit(95, "kg"),
  60231. name: "Back",
  60232. image: {
  60233. source: "./media/characters/kane-fox/back.svg",
  60234. extra: 959/914,
  60235. bottom: 15/974
  60236. }
  60237. },
  60238. frontLewd: {
  60239. height: math.unit(2, "meters"),
  60240. weight: math.unit(95, "kg"),
  60241. name: "Front (Lewd)",
  60242. image: {
  60243. source: "./media/characters/kane-fox/front-lewd.svg",
  60244. extra: 945/888,
  60245. bottom: 27/972
  60246. }
  60247. },
  60248. },
  60249. [
  60250. {
  60251. name: "Home Size",
  60252. height: math.unit(2, "meters"),
  60253. default: true
  60254. },
  60255. {
  60256. name: "Macro",
  60257. height: math.unit(200, "meters")
  60258. },
  60259. {
  60260. name: "Small Mega",
  60261. height: math.unit(3, "km")
  60262. },
  60263. {
  60264. name: "Mega",
  60265. height: math.unit(50, "km")
  60266. },
  60267. {
  60268. name: "Giga",
  60269. height: math.unit(200, "km")
  60270. },
  60271. {
  60272. name: "Giga+",
  60273. height: math.unit(2500, "km")
  60274. },
  60275. {
  60276. name: "Terra",
  60277. height: math.unit(70000, "km")
  60278. },
  60279. {
  60280. name: "Terra+",
  60281. height: math.unit(150000, "km")
  60282. },
  60283. {
  60284. name: "Terra++",
  60285. height: math.unit(400000, "km")
  60286. },
  60287. ]
  60288. ))
  60289. characterMakers.push(() => makeCharacter(
  60290. { name: "Ayranus", species: ["otter", "lion", "bat"], tags: ["anthro"] },
  60291. {
  60292. otter_front: {
  60293. height: math.unit(1.8, "meters"),
  60294. weight: math.unit(90, "kg"),
  60295. name: "Front",
  60296. image: {
  60297. source: "./media/characters/ayranus/otter-front.svg",
  60298. extra: 468/452,
  60299. bottom: 43/511
  60300. },
  60301. form: "otter",
  60302. },
  60303. otter_frontLewd: {
  60304. height: math.unit(1.8, "meters"),
  60305. weight: math.unit(90, "kg"),
  60306. name: "Front (Lewd)",
  60307. image: {
  60308. source: "./media/characters/ayranus/otter-front-lewd.svg",
  60309. extra: 468/452,
  60310. bottom: 43/511
  60311. },
  60312. form: "otter",
  60313. },
  60314. lionbat_front: {
  60315. height: math.unit(1.8, "meters"),
  60316. weight: math.unit(90, "kg"),
  60317. name: "Front (Lewd)",
  60318. image: {
  60319. source: "./media/characters/ayranus/lionbat-front-lewd.svg",
  60320. extra: 797/740,
  60321. bottom: 78/875
  60322. },
  60323. form: "lionbat",
  60324. },
  60325. paw: {
  60326. height: math.unit(1.5, "feet"),
  60327. name: "Paw",
  60328. image: {
  60329. source: "./media/characters/ayranus/paw.svg"
  60330. },
  60331. },
  60332. },
  60333. [
  60334. {
  60335. name: "Incognito",
  60336. height: math.unit(1.8, "meters"),
  60337. allForms: true
  60338. },
  60339. {
  60340. name: "Macro",
  60341. height: math.unit(60, "meters"),
  60342. allForms: true
  60343. },
  60344. {
  60345. name: "Macro+",
  60346. height: math.unit(200, "meters"),
  60347. allForms: true
  60348. },
  60349. {
  60350. name: "Mega",
  60351. height: math.unit(35, "km"),
  60352. allForms: true
  60353. },
  60354. {
  60355. name: "Giga",
  60356. height: math.unit(220, "km"),
  60357. allForms: true
  60358. },
  60359. {
  60360. name: "Giga+",
  60361. height: math.unit(1500, "km"),
  60362. allForms: true
  60363. },
  60364. {
  60365. name: "Terra",
  60366. height: math.unit(13000, "km"),
  60367. allForms: true
  60368. },
  60369. {
  60370. name: "Terra+",
  60371. height: math.unit(500000, "km"),
  60372. allForms: true
  60373. },
  60374. {
  60375. name: "Galactic",
  60376. height: math.unit(486080, "parsecs"),
  60377. default: true,
  60378. allForms: true
  60379. },
  60380. ],
  60381. {
  60382. "otter": {
  60383. name: "Otter",
  60384. default: true
  60385. },
  60386. "lionbat": {
  60387. name: "Lionbat",
  60388. },
  60389. }
  60390. ))
  60391. //characters
  60392. function makeCharacters() {
  60393. const results = [];
  60394. characterMakers.forEach(character => {
  60395. results.push(character());
  60396. });
  60397. return results;
  60398. }