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.
 
 
 

57220 lines
1.4 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: ["lizard"]
  700. },
  701. "lynx": {
  702. name: "Lynx",
  703. parents: ["cat"]
  704. },
  705. "unknown": {
  706. name: "Unknown",
  707. parents: []
  708. },
  709. "thylacine": {
  710. name: "Thylacine",
  711. parents: ["mammal"]
  712. },
  713. "gabumon": {
  714. name: "Gabumon",
  715. parents: ["digimon"]
  716. },
  717. "border-collie": {
  718. name: "Border Collie",
  719. parents: ["dog"]
  720. },
  721. "imp": {
  722. name: "Imp",
  723. parents: ["demon"]
  724. },
  725. "kangaroo": {
  726. name: "Kangaroo",
  727. parents: ["marsupial"]
  728. },
  729. "renamon": {
  730. name: "Renamon",
  731. parents: ["digimon", "fox"]
  732. },
  733. "candy-orca-dragon": {
  734. name: "Candy Orca Dragon",
  735. parents: ["fish", "dragon", "candy"]
  736. },
  737. "sabertooth-tiger": {
  738. name: "Sabertooth Tiger",
  739. parents: ["cat"]
  740. },
  741. "espurr": {
  742. name: "Espurr",
  743. parents: ["pokemon", "cat"]
  744. },
  745. "otter": {
  746. name: "Otter",
  747. parents: ["mustelid"]
  748. },
  749. "elemental": {
  750. name: "Elemental",
  751. parents: ["mammal"]
  752. },
  753. "mew": {
  754. name: "Mew",
  755. parents: ["pokemon"]
  756. },
  757. "goodra": {
  758. name: "Goodra",
  759. parents: ["pokemon"]
  760. },
  761. "fairy": {
  762. name: "Fairy",
  763. parents: ["magical"]
  764. },
  765. "typhlosion": {
  766. name: "Typhlosion",
  767. parents: ["pokemon"]
  768. },
  769. "magical": {
  770. name: "Magical",
  771. parents: []
  772. },
  773. "xenomorph": {
  774. name: "Xenomorph",
  775. parents: ["monster", "alien"]
  776. },
  777. "charr": {
  778. name: "Charr",
  779. parents: ["cat"]
  780. },
  781. "siberian-husky": {
  782. name: "Siberian Husky",
  783. parents: ["husky"]
  784. },
  785. "alligator": {
  786. name: "Alligator",
  787. parents: ["reptile"]
  788. },
  789. "bernese-mountain-dog": {
  790. name: "Bernese Mountain Dog",
  791. parents: ["dog"]
  792. },
  793. "reshiram": {
  794. name: "Reshiram",
  795. parents: ["pokemon", "dragon"]
  796. },
  797. "grizzly-bear": {
  798. name: "Grizzly Bear",
  799. parents: ["bear"]
  800. },
  801. "water-monitor": {
  802. name: "Water Monitor",
  803. parents: ["lizard"]
  804. },
  805. "banchofossa": {
  806. name: "Banchofossa",
  807. parents: ["mammal"]
  808. },
  809. "kirin": {
  810. name: "Kirin",
  811. parents: ["monster"]
  812. },
  813. "quilava": {
  814. name: "Quilava",
  815. parents: ["pokemon"]
  816. },
  817. "seviper": {
  818. name: "Seviper",
  819. parents: ["pokemon", "viper"]
  820. },
  821. "flying-fox": {
  822. name: "Flying Fox",
  823. parents: ["bat"]
  824. },
  825. "keynain": {
  826. name: "Keynain",
  827. parents: ["avian"]
  828. },
  829. "lucario": {
  830. name: "Lucario",
  831. parents: ["pokemon", "jackal"]
  832. },
  833. "siamese-cat": {
  834. name: "Siamese Cat",
  835. parents: ["cat"]
  836. },
  837. "spider": {
  838. name: "Spider",
  839. parents: ["insect"]
  840. },
  841. "samurott": {
  842. name: "Samurott",
  843. parents: ["pokemon", "otter"]
  844. },
  845. "megalodon": {
  846. name: "Megalodon",
  847. parents: ["shark"]
  848. },
  849. "unicorn": {
  850. name: "Unicorn",
  851. parents: ["horse"]
  852. },
  853. "greninja": {
  854. name: "Greninja",
  855. parents: ["pokemon", "frog"]
  856. },
  857. "water-dragon": {
  858. name: "Water Dragon",
  859. parents: ["dragon"]
  860. },
  861. "cross-fox": {
  862. name: "Cross Fox",
  863. parents: ["fox"]
  864. },
  865. "synth": {
  866. name: "Synth",
  867. parents: ["machine"]
  868. },
  869. "construct": {
  870. name: "Construct",
  871. parents: []
  872. },
  873. "mexican-wolf": {
  874. name: "Mexican Wolf",
  875. parents: ["wolf"]
  876. },
  877. "leopard": {
  878. name: "Leopard",
  879. parents: ["cat"]
  880. },
  881. "pig": {
  882. name: "Pig",
  883. parents: ["mammal"]
  884. },
  885. "ampharos": {
  886. name: "Ampharos",
  887. parents: ["pokemon", "sheep"]
  888. },
  889. "orca": {
  890. name: "Orca",
  891. parents: ["fish"]
  892. },
  893. "lycanroc": {
  894. name: "Lycanroc",
  895. parents: ["pokemon", "wolf"]
  896. },
  897. "surkanu": {
  898. name: "Surkanu",
  899. parents: ["monster"]
  900. },
  901. "seal": {
  902. name: "Seal",
  903. parents: ["mammal"]
  904. },
  905. "keldeo": {
  906. name: "Keldeo",
  907. parents: ["pokemon"]
  908. },
  909. "great-dane": {
  910. name: "Great Dane",
  911. parents: ["dog"]
  912. },
  913. "black-backed-jackal": {
  914. name: "Black Backed Jackal",
  915. parents: ["jackal"]
  916. },
  917. "sheep": {
  918. name: "Sheep",
  919. parents: ["mammal"]
  920. },
  921. "leopard-seal": {
  922. name: "Leopard Seal",
  923. parents: ["seal"]
  924. },
  925. "zoroark": {
  926. name: "Zoroark",
  927. parents: ["pokemon", "fox"]
  928. },
  929. "maned-wolf": {
  930. name: "Maned Wolf",
  931. parents: ["canine"]
  932. },
  933. "dracha": {
  934. name: "Dracha",
  935. parents: ["dragon"]
  936. },
  937. "wolxi": {
  938. name: "Wolxi",
  939. parents: ["mammal", "alien"]
  940. },
  941. "dratini": {
  942. name: "Dratini",
  943. parents: ["pokemon", "dragon"]
  944. },
  945. "skaven": {
  946. name: "Skaven",
  947. parents: ["rat"]
  948. },
  949. "mongoose": {
  950. name: "Mongoose",
  951. parents: ["mammal"]
  952. },
  953. "lopunny": {
  954. name: "Lopunny",
  955. parents: ["pokemon", "rabbit"]
  956. },
  957. "feraligatr": {
  958. name: "Feraligatr",
  959. parents: ["pokemon", "alligator"]
  960. },
  961. "houndoom": {
  962. name: "Houndoom",
  963. parents: ["pokemon", "dog"]
  964. },
  965. "protogen": {
  966. name: "Protogen",
  967. parents: ["machine"]
  968. },
  969. "saint-bernard": {
  970. name: "Saint Bernard",
  971. parents: ["dog"]
  972. },
  973. "crow": {
  974. name: "Crow",
  975. parents: ["corvid"]
  976. },
  977. "delphox": {
  978. name: "Delphox",
  979. parents: ["pokemon", "fox"]
  980. },
  981. "moose": {
  982. name: "Moose",
  983. parents: ["mammal"]
  984. },
  985. "joraxian": {
  986. name: "Joraxian",
  987. parents: ["monster", "canine", "demon"]
  988. },
  989. "nimbat": {
  990. name: "Nimbat",
  991. parents: ["mammal"]
  992. },
  993. "aardwolf": {
  994. name: "Aardwolf",
  995. parents: ["canine"]
  996. },
  997. "fluudrani": {
  998. name: "Fluudrani",
  999. parents: ["animal"]
  1000. },
  1001. "arcanine": {
  1002. name: "Arcanine",
  1003. parents: ["pokemon", "dog"]
  1004. },
  1005. "inteleon": {
  1006. name: "Inteleon",
  1007. parents: ["pokemon", "fish"]
  1008. },
  1009. "ninetales": {
  1010. name: "Ninetales",
  1011. parents: ["pokemon", "kitsune"]
  1012. },
  1013. "tigrex": {
  1014. name: "Tigrex",
  1015. parents: ["tiger"]
  1016. },
  1017. "zorua": {
  1018. name: "Zorua",
  1019. parents: ["pokemon", "fox"]
  1020. },
  1021. "vulpix": {
  1022. name: "Vulpix",
  1023. parents: ["pokemon", "fox"]
  1024. },
  1025. "barghest": {
  1026. name: "Barghest",
  1027. parents: ["monster"]
  1028. },
  1029. "gray-wolf": {
  1030. name: "Gray Wolf",
  1031. parents: ["wolf"]
  1032. },
  1033. "ruppells-fox": {
  1034. name: "Rüppell's Fox",
  1035. parents: ["fox"]
  1036. },
  1037. "bull-terrier": {
  1038. name: "Bull Terrier",
  1039. parents: ["dog"]
  1040. },
  1041. "european-honey-buzzard": {
  1042. name: "European Honey Buzzard",
  1043. parents: ["avian"]
  1044. },
  1045. "t-rex": {
  1046. name: "Tyrannosaurus Rex",
  1047. parents: ["dinosaur"]
  1048. },
  1049. "mactarian": {
  1050. name: "Mactarian",
  1051. parents: ["shark", "monster"]
  1052. },
  1053. "mewtwo-y": {
  1054. name: "Mewtwo Y",
  1055. parents: ["mewtwo"]
  1056. },
  1057. "mewtwo": {
  1058. name: "Mewtwo",
  1059. parents: ["pokemon"]
  1060. },
  1061. "eevee": {
  1062. name: "Eevee",
  1063. parents: ["eeveelution"]
  1064. },
  1065. "mienshao": {
  1066. name: "Mienshao",
  1067. parents: ["pokemon"]
  1068. },
  1069. "sugar-glider": {
  1070. name: "Sugar Glider",
  1071. parents: ["opossum"]
  1072. },
  1073. "spectral-bat": {
  1074. name: "Spectral Bat",
  1075. parents: ["bat"]
  1076. },
  1077. "scolipede": {
  1078. name: "Scolipede",
  1079. parents: ["pokemon", "insect"]
  1080. },
  1081. "jackalope": {
  1082. name: "Jackalope",
  1083. parents: ["rabbit", "antelope"]
  1084. },
  1085. "caracal": {
  1086. name: "Caracal",
  1087. parents: ["cat"]
  1088. },
  1089. "stoat": {
  1090. name: "Stoat",
  1091. parents: ["mammal"]
  1092. },
  1093. "african-golden-cat": {
  1094. name: "African Golden Cat",
  1095. parents: ["cat"]
  1096. },
  1097. "gigantosaurus": {
  1098. name: "Gigantosaurus",
  1099. parents: ["dinosaur"]
  1100. },
  1101. "zorgoia": {
  1102. name: "Zorgoia",
  1103. parents: ["mammal"]
  1104. },
  1105. "monitor-lizard": {
  1106. name: "Monitor Lizard",
  1107. parents: ["lizard"]
  1108. },
  1109. "ziralkia": {
  1110. name: "Ziralkia",
  1111. parents: ["mammal"]
  1112. },
  1113. "kiiasi": {
  1114. name: "Kiiasi",
  1115. parents: ["animal"]
  1116. },
  1117. "synx": {
  1118. name: "Synx",
  1119. parents: ["monster"]
  1120. },
  1121. "panther": {
  1122. name: "Panther",
  1123. parents: ["cat"]
  1124. },
  1125. "azumarill": {
  1126. name: "Azumarill",
  1127. parents: ["pokemon"]
  1128. },
  1129. "river-snaptail": {
  1130. name: "River Snaptail",
  1131. parents: ["otter", "crocodile"]
  1132. },
  1133. "great-blue-heron": {
  1134. name: "Great Blue Heron",
  1135. parents: ["avian"]
  1136. },
  1137. "smeargle": {
  1138. name: "Smeargle",
  1139. parents: ["pokemon"]
  1140. },
  1141. "vendeilen": {
  1142. name: "Vendeilen",
  1143. parents: ["monster"]
  1144. },
  1145. "ventura": {
  1146. name: "Ventura",
  1147. parents: ["canine"]
  1148. },
  1149. "clouded-leopard": {
  1150. name: "Clouded Leopard",
  1151. parents: ["leopard"]
  1152. },
  1153. "argonian": {
  1154. name: "Argonian",
  1155. parents: ["lizard"]
  1156. },
  1157. "salazzle": {
  1158. name: "Salazzle",
  1159. parents: ["pokemon", "lizard"]
  1160. },
  1161. "je-stoff-drachen": {
  1162. name: "Je-Stoff Drachen",
  1163. parents: ["dragon"]
  1164. },
  1165. "finnish-spitz-dog": {
  1166. name: "Finnish Spitz Dog",
  1167. parents: ["dog"]
  1168. },
  1169. "gray-fox": {
  1170. name: "Gray Fox",
  1171. parents: ["fox"]
  1172. },
  1173. "opossum": {
  1174. name: "Opossum",
  1175. parents: ["mammal"]
  1176. },
  1177. "antelope": {
  1178. name: "Antelope",
  1179. parents: ["mammal"]
  1180. },
  1181. "weavile": {
  1182. name: "Weavile",
  1183. parents: ["pokemon"]
  1184. },
  1185. "pikachu": {
  1186. name: "Pikachu",
  1187. parents: ["pokemon", "mouse"]
  1188. },
  1189. "grovyle": {
  1190. name: "Grovyle",
  1191. parents: ["pokemon", "plant"]
  1192. },
  1193. "sthara": {
  1194. name: "Sthara",
  1195. parents: ["snow-leopard", "reptile"]
  1196. },
  1197. "star-warrior": {
  1198. name: "Star Warrior",
  1199. parents: ["magical"]
  1200. },
  1201. "dragonoid": {
  1202. name: "Dragonoid",
  1203. parents: ["dragon"]
  1204. },
  1205. "suicune": {
  1206. name: "Suicune",
  1207. parents: ["pokemon"]
  1208. },
  1209. "vole": {
  1210. name: "Vole",
  1211. parents: ["mammal"]
  1212. },
  1213. "blaziken": {
  1214. name: "Blaziken",
  1215. parents: ["pokemon", "avian"]
  1216. },
  1217. "buizel": {
  1218. name: "Buizel",
  1219. parents: ["pokemon", "fish"]
  1220. },
  1221. "floatzel": {
  1222. name: "Floatzel",
  1223. parents: ["pokemon", "fish"]
  1224. },
  1225. "umok": {
  1226. name: "Umok",
  1227. parents: ["avian"]
  1228. },
  1229. "sea-monster": {
  1230. name: "Sea Monster",
  1231. parents: ["monster", "fish"]
  1232. },
  1233. "egyptian-vulture": {
  1234. name: "Egyptian Vulture",
  1235. parents: ["avian"]
  1236. },
  1237. "doberman": {
  1238. name: "Doberman",
  1239. parents: ["dog"]
  1240. },
  1241. "zangoose": {
  1242. name: "Zangoose",
  1243. parents: ["pokemon", "mongoose"]
  1244. },
  1245. "mongoose": {
  1246. name: "Mongoose",
  1247. parents: ["mammal"]
  1248. },
  1249. "wickerbeast": {
  1250. name: "Wickerbeast",
  1251. parents: ["monster"]
  1252. },
  1253. "zenari": {
  1254. name: "Zenari",
  1255. parents: ["lizard"]
  1256. },
  1257. "plant": {
  1258. name: "Plant",
  1259. parents: []
  1260. },
  1261. "raskatox": {
  1262. name: "Raskatox",
  1263. parents: ["raccoon", "skunk", "cat", "fox"]
  1264. },
  1265. "mikromare": {
  1266. name: "mikromare",
  1267. parents: ["alien"]
  1268. },
  1269. "alien": {
  1270. name: "Alien",
  1271. parents: ["animal"]
  1272. },
  1273. "deity": {
  1274. name: "Deity",
  1275. parents: []
  1276. },
  1277. "skarlan": {
  1278. name: "Skarlan",
  1279. parents: ["slug", "dragon"]
  1280. },
  1281. "slug": {
  1282. name: "Slug",
  1283. parents: ["mollusk"]
  1284. },
  1285. "mollusk": {
  1286. name: "Mollusk",
  1287. parents: ["animal"]
  1288. },
  1289. "chimera": {
  1290. name: "Chimera",
  1291. parents: ["monster"]
  1292. },
  1293. "gestalt": {
  1294. name: "Gestalt",
  1295. parents: ["construct"]
  1296. },
  1297. "mimic": {
  1298. name: "Mimic",
  1299. parents: ["monster"]
  1300. },
  1301. "calico-rat": {
  1302. name: "Calico Rat",
  1303. parents: ["rat"]
  1304. },
  1305. "panda": {
  1306. name: "Panda",
  1307. parents: ["mammal"]
  1308. },
  1309. "oni": {
  1310. name: "Oni",
  1311. parents: ["monster"]
  1312. },
  1313. "pegasus": {
  1314. name: "Pegasus",
  1315. parents: ["horse"]
  1316. },
  1317. "vulpera": {
  1318. name: "Vulpera",
  1319. parents: ["fennec-fox"]
  1320. },
  1321. "ceratosaurus": {
  1322. name: "Ceratosaurus",
  1323. parents: ["dinosaur"]
  1324. },
  1325. "nykur": {
  1326. name: "Nykur",
  1327. parents: ["horse", "monster"]
  1328. },
  1329. "giraffe": {
  1330. name: "Giraffe",
  1331. parents: ["mammal"]
  1332. },
  1333. "tauren": {
  1334. name: "Tauren",
  1335. parents: ["cow"]
  1336. },
  1337. "draconi": {
  1338. name: "Draconi",
  1339. parents: ["alien", "cat", "cyborg"]
  1340. },
  1341. "dire-wolf": {
  1342. name: "Dire Wolf",
  1343. parents: ["wolf"]
  1344. },
  1345. "ferromorph": {
  1346. name: "Ferromorph",
  1347. parents: ["construct"]
  1348. },
  1349. "meowth": {
  1350. name: "Meowth",
  1351. parents: ["cat", "pokemon"]
  1352. },
  1353. "pavodragon": {
  1354. name: "Pavodragon",
  1355. parents: ["dragon"]
  1356. },
  1357. "aaltranae": {
  1358. name: "Aaltranae",
  1359. parents: ["dragon"]
  1360. },
  1361. "cyborg": {
  1362. name: "Cyborg",
  1363. parents: ["machine"]
  1364. },
  1365. "draptor": {
  1366. name: "Draptor",
  1367. parents: ["dragon"]
  1368. },
  1369. "candy": {
  1370. name: "Candy",
  1371. parents: []
  1372. },
  1373. "drenath": {
  1374. name: "Drenath",
  1375. parents: ["dragon", "snake", "rabbit"]
  1376. },
  1377. "coyju": {
  1378. name: "Coyju",
  1379. parents: ["coyote", "kaiju"]
  1380. },
  1381. "kaiju": {
  1382. name: "Kaiju",
  1383. parents: ["monster"]
  1384. },
  1385. "nickit": {
  1386. name: "Nickit",
  1387. parents: ["pokemon", "cat"]
  1388. },
  1389. "lopunny": {
  1390. name: "Lopunny",
  1391. parents: ["pokemon", "rabbit"]
  1392. },
  1393. "korean-jindo-dog": {
  1394. name: "Korean Jindo Dog",
  1395. parents: ["dog"]
  1396. },
  1397. "naga": {
  1398. name: "Naga",
  1399. parents: ["snake", "monster"]
  1400. },
  1401. "undead": {
  1402. name: "Undead",
  1403. parents: ["monster"]
  1404. },
  1405. "whale": {
  1406. name: "Whale",
  1407. parents: ["fish"]
  1408. },
  1409. "gelato-bee": {
  1410. name: "Gelato Bee",
  1411. parents: ["bee"]
  1412. },
  1413. "bee": {
  1414. name: "Bee",
  1415. parents: ["insect"]
  1416. },
  1417. "gardevoir": {
  1418. name: "Gardevoir",
  1419. parents: ["pokemon"]
  1420. },
  1421. "ant": {
  1422. name: "Ant",
  1423. parents: ["insect"]
  1424. },
  1425. "frog": {
  1426. name: "Frog",
  1427. parents: ["amphibian"]
  1428. },
  1429. "amphibian": {
  1430. name: "Amphibian",
  1431. parents: ["animal"]
  1432. },
  1433. "pangolin": {
  1434. name: "Pangolin",
  1435. parents: ["mammal"]
  1436. },
  1437. "uragi'viidorn": {
  1438. name: "Uragi'viidorn",
  1439. parents: ["avian", "bear"]
  1440. },
  1441. "gryphdelphais": {
  1442. name: "Gryphdelphais",
  1443. parents: ["dolphin", "gryphon"]
  1444. },
  1445. "plush": {
  1446. name: "Plush",
  1447. parents: ["construct"]
  1448. },
  1449. "draiger": {
  1450. name: "Draiger",
  1451. parents: ["dragon","tiger"]
  1452. },
  1453. "foxsky": {
  1454. name: "Foxsky",
  1455. parents: ["fox", "husky"]
  1456. },
  1457. "umbreon": {
  1458. name: "Umbreon",
  1459. parents: ["eeveelution"]
  1460. },
  1461. "slime-dragon": {
  1462. name: "Slime Dragon",
  1463. parents: ["dragon", "goo"]
  1464. },
  1465. "enderman": {
  1466. name: "Enderman",
  1467. parents: ["monster"]
  1468. },
  1469. "gremlin": {
  1470. name: "Gremlin",
  1471. parents: ["monster"]
  1472. },
  1473. "dragonsune": {
  1474. name: "Dragonsune",
  1475. parents: ["dragon", "kitsune"]
  1476. },
  1477. "ghost": {
  1478. name: "Ghost",
  1479. parents: ["supernatural"]
  1480. },
  1481. "false-vampire-bat": {
  1482. name: "False Vampire Bat",
  1483. parents: ["bat"]
  1484. },
  1485. "succubus": {
  1486. name: "Succubus",
  1487. parents: ["demon"]
  1488. },
  1489. "mia": {
  1490. name: "Mia",
  1491. parents: ["canine"]
  1492. },
  1493. "rainbow": {
  1494. name: "Rainbow",
  1495. parents: ["monster"]
  1496. },
  1497. "solgaleo": {
  1498. name: "Solgaleo",
  1499. parents: ["pokemon"]
  1500. },
  1501. "lucent-nargacuga": {
  1502. name: "Lucent Nargacuga",
  1503. parents: ["nargacuga"]
  1504. },
  1505. "monster-hunter": {
  1506. name: "Monster Hunter",
  1507. parents: ["monster", "video-games"]
  1508. },
  1509. "leviathan": {
  1510. "name": "Leviathan",
  1511. "url": "sea-monster"
  1512. },
  1513. "bull": {
  1514. name: "Bull",
  1515. parents: ["mammal"]
  1516. },
  1517. "tanuki": {
  1518. name: "Tanuki",
  1519. parents: ["monster"]
  1520. },
  1521. "chakat": {
  1522. name: "Chakat",
  1523. parents: ["cat"]
  1524. },
  1525. "hydra": {
  1526. name: "Hydra",
  1527. parents: ["monster"]
  1528. },
  1529. "zigzagoon": {
  1530. name: "Zigzagoon",
  1531. parents: ["raccoon", "pokemon"]
  1532. },
  1533. "vulture": {
  1534. name: "Vulture",
  1535. parents: ["avian"]
  1536. },
  1537. "eastern-dragon": {
  1538. name: "Eastern Dragon",
  1539. parents: ["dragon"]
  1540. },
  1541. "gryffon": {
  1542. name: "Gryffon",
  1543. parents: ["phoenix", "red-panda"]
  1544. },
  1545. "amtsvane": {
  1546. name: "Amtsvane",
  1547. parents: ["reptile"]
  1548. },
  1549. "kigavi": {
  1550. name: "Kigavi",
  1551. parents: ["avian"]
  1552. },
  1553. "turian": {
  1554. name: "Turian",
  1555. parents: ["avian"]
  1556. },
  1557. "zeraora": {
  1558. name: "Zeraora",
  1559. parents: ["pokemon", "cat"]
  1560. },
  1561. "sandshrew": {
  1562. name: "Sandshrew",
  1563. parents: ["pokemon", "pangolin"]
  1564. },
  1565. "valais-blacknose-sheep": {
  1566. name: "Valais Blacknose Sheep",
  1567. parents: ["sheep"]
  1568. },
  1569. "novaleit": {
  1570. name: "Novaleit",
  1571. parents: ["mammal"]
  1572. },
  1573. "dunnoh": {
  1574. name: "Dunnoh",
  1575. parents: ["mammal"]
  1576. },
  1577. "lunaral-dragon": {
  1578. name: "Lunaral Dragon",
  1579. parents: ["dragon"]
  1580. },
  1581. "arctic-wolf": {
  1582. name: "Arctic Wolf",
  1583. parents: ["wolf"]
  1584. },
  1585. "donkey": {
  1586. name: "Donkey",
  1587. parents: ["horse"]
  1588. },
  1589. "chinchilla": {
  1590. name: "Chinchilla",
  1591. parents: ["rodent"]
  1592. },
  1593. "felkin": {
  1594. name: "Felkin",
  1595. parents: ["dragon"]
  1596. },
  1597. "tykeriel": {
  1598. name: "Tykeriel",
  1599. parents: ["avian"]
  1600. },
  1601. "folf": {
  1602. name: "Folf",
  1603. parents: ["fox", "wolf"]
  1604. },
  1605. "pooltoy": {
  1606. name: "Pooltoy",
  1607. parents: ["construct"]
  1608. },
  1609. "demi": {
  1610. name: "Demi",
  1611. parents: ["human"]
  1612. },
  1613. "stegosaurus": {
  1614. name: "Stegosaurus",
  1615. parents: ["dinosaur"]
  1616. },
  1617. "computer-virus": {
  1618. name: "Computer Virus",
  1619. parents: ["program"]
  1620. },
  1621. "program": {
  1622. name: "Program",
  1623. parents: ["construct"]
  1624. },
  1625. "space-springhare": {
  1626. name: "Space Springhare",
  1627. parents: ["hare"]
  1628. },
  1629. "river-drake": {
  1630. name: "River Drake",
  1631. parents: ["dragon"]
  1632. },
  1633. "djinn": {
  1634. "name": "Djinn",
  1635. "url": "supernatural"
  1636. },
  1637. "supernatural": {
  1638. name: "Supernatural",
  1639. parents: ["monster"]
  1640. },
  1641. "grasshopper-mouse": {
  1642. name: "Grasshopper Mouse",
  1643. parents: ["mouse"]
  1644. },
  1645. "somali-cat": {
  1646. name: "Somali Cat",
  1647. parents: ["cat"]
  1648. },
  1649. "minccino": {
  1650. name: "Minccino",
  1651. parents: ["pokemon", "chinchilla"]
  1652. },
  1653. "pine-marten": {
  1654. name: "Pine Marten",
  1655. parents: ["marten"]
  1656. },
  1657. "marten": {
  1658. name: "Marten",
  1659. parents: ["mustelid"]
  1660. },
  1661. "mustelid": {
  1662. name: "Mustelid",
  1663. parents: ["mammal"]
  1664. },
  1665. "caribou": {
  1666. name: "Caribou",
  1667. parents: ["deer"]
  1668. },
  1669. "gnoll": {
  1670. name: "Gnoll",
  1671. parents: ["hyena", "monster"]
  1672. },
  1673. "peacekeeper": {
  1674. name: "Peacekeeper",
  1675. parents: ["human"]
  1676. },
  1677. "river-otter": {
  1678. name: "River Otter",
  1679. parents: ["otter"]
  1680. },
  1681. "dhole": {
  1682. name: "Dhole",
  1683. parents: ["canine"]
  1684. },
  1685. "springbok": {
  1686. name: "Springbok",
  1687. parents: ["antelope"]
  1688. },
  1689. "marsupial": {
  1690. name: "Marsupial",
  1691. parents: ["mammal"]
  1692. },
  1693. "townsend-big-eared-bat": {
  1694. name: "Townsend Big-eared Bat",
  1695. parents: ["bat"]
  1696. },
  1697. "squirrel": {
  1698. name: "Squirrel",
  1699. parents: ["rodent"]
  1700. },
  1701. "magpie": {
  1702. name: "Magpie",
  1703. parents: ["corvid"]
  1704. },
  1705. "civet": {
  1706. name: "Civet",
  1707. parents: ["feliform"]
  1708. },
  1709. "feliform": {
  1710. name: "Feliform",
  1711. parents: ["mammal"]
  1712. },
  1713. "tiefling": {
  1714. name: "Tiefling",
  1715. parents: ["devil"]
  1716. },
  1717. "devil": {
  1718. name: "Devil",
  1719. parents: ["supernatural"]
  1720. },
  1721. "sika-deer": {
  1722. name: "Sika Deer",
  1723. parents: ["deer"]
  1724. },
  1725. "vaporeon": {
  1726. name: "Vaporeon",
  1727. parents: ["eeveelution"]
  1728. },
  1729. "leafeon": {
  1730. name: "Leafeon",
  1731. parents: ["eeveelution"]
  1732. },
  1733. "jolteon": {
  1734. name: "Jolteon",
  1735. parents: ["eeveelution"]
  1736. },
  1737. "spireborn": {
  1738. name: "Spireborn",
  1739. parents: ["zorgoia"]
  1740. },
  1741. "vampire": {
  1742. name: "Vampire",
  1743. parents: ["monster"]
  1744. },
  1745. "extraplanar": {
  1746. name: "Extraplanar",
  1747. parents: []
  1748. },
  1749. "goo": {
  1750. name: "Goo",
  1751. parents: []
  1752. },
  1753. "skink": {
  1754. name: "Skink",
  1755. parents: ["lizard"]
  1756. },
  1757. "bat-eared-fox": {
  1758. name: "Bat-eared Fox",
  1759. parents: ["fox"]
  1760. },
  1761. "belted-kingfisher": {
  1762. name: "Belted Kingfisher",
  1763. parents: ["avian"]
  1764. },
  1765. "omnifalcon": {
  1766. name: "Omnifalcon",
  1767. parents: ["gryphon", "falcon", "harpy-eagle"]
  1768. },
  1769. "falcon": {
  1770. name: "Falcon",
  1771. parents: ["bird-of-prey"]
  1772. },
  1773. "avali": {
  1774. name: "Avali",
  1775. parents: ["avian", "alien"]
  1776. },
  1777. "arctic-fox": {
  1778. name: "Arctic Fox",
  1779. parents: ["fox"]
  1780. },
  1781. "snow-tiger": {
  1782. name: "Snow Tiger",
  1783. parents: ["tiger"]
  1784. },
  1785. "marble-fox": {
  1786. name: "Marble Fox",
  1787. parents: ["fox"]
  1788. },
  1789. "king-wickerbeast": {
  1790. name: "King Wickerbeast",
  1791. parents: ["wickerbeast"]
  1792. },
  1793. "wickerbeast": {
  1794. name: "Wickerbeast",
  1795. parents: ["mammal"]
  1796. },
  1797. "european-polecat": {
  1798. name: "European Polecat",
  1799. parents: ["mustelid"]
  1800. },
  1801. "teshari": {
  1802. name: "Teshari",
  1803. parents: ["avian", "raptor"]
  1804. },
  1805. "alicorn": {
  1806. name: "Alicorn",
  1807. parents: ["horse"]
  1808. },
  1809. "atlas-moth": {
  1810. name: "Atlas Moth",
  1811. parents: ["moth"]
  1812. },
  1813. "owlbear": {
  1814. name: "Owlbear",
  1815. parents: ["owl", "bear", "monster"]
  1816. },
  1817. "owl": {
  1818. name: "Owl",
  1819. parents: ["avian"]
  1820. },
  1821. "silvertongue": {
  1822. name: "Silvertongue",
  1823. parents: ["reptile"]
  1824. },
  1825. "ahuizotl": {
  1826. name: "Ahuizotl",
  1827. parents: ["monster"]
  1828. },
  1829. "ender-dragon": {
  1830. name: "Ender Dragon",
  1831. parents: ["dragon"]
  1832. },
  1833. "bruhathkayosaurus": {
  1834. name: "Bruhathkayosaurus",
  1835. parents: ["sauropod"]
  1836. },
  1837. "sauropod": {
  1838. name: "Sauropod",
  1839. parents: ["dinosaur"]
  1840. },
  1841. "black-sable-antelope": {
  1842. name: "Black Sable Antelope",
  1843. parents: ["antelope"]
  1844. },
  1845. "slime": {
  1846. name: "Slime",
  1847. parents: ["goo"]
  1848. },
  1849. "utahraptor": {
  1850. name: "Utahraptor",
  1851. parents: ["raptor"]
  1852. },
  1853. "indian-giant-squirrel": {
  1854. name: "Indian Giant Squirrel",
  1855. parents: ["squirrel"]
  1856. },
  1857. "golden-retriever": {
  1858. name: "Golden Retriever",
  1859. parents: ["dog"]
  1860. },
  1861. "triceratops": {
  1862. name: "Triceratops",
  1863. parents: ["dinosaur"]
  1864. },
  1865. "drake": {
  1866. name: "Drake",
  1867. parents: ["dragon"]
  1868. },
  1869. "okapi": {
  1870. name: "Okapi",
  1871. parents: ["giraffe"]
  1872. },
  1873. "arctic-hare": {
  1874. name: "Arctic Hare",
  1875. parents: ["hare"]
  1876. },
  1877. "hare": {
  1878. name: "Hare",
  1879. parents: ["leporidae"]
  1880. },
  1881. "leporidae": {
  1882. name: "Leporidae",
  1883. parents: ["mammal"]
  1884. },
  1885. "leopard-gecko": {
  1886. name: "Leopard Gecko",
  1887. parents: ["gecko"]
  1888. },
  1889. "dreamspawn": {
  1890. name: "Dreamspawn",
  1891. parents: ["illusion"]
  1892. },
  1893. "illusion": {
  1894. name: "Illusion",
  1895. parents: []
  1896. },
  1897. "purrloin": {
  1898. name: "Purrloin",
  1899. parents: ["cat", "pokemon"]
  1900. },
  1901. "noivern": {
  1902. name: "Noivern",
  1903. parents: ["bat", "dragon", "pokemon"]
  1904. },
  1905. "hedgehog": {
  1906. name: "Hedgehog",
  1907. parents: ["mammal"]
  1908. },
  1909. "liger": {
  1910. name: "Liger",
  1911. parents: ["lion", "tiger", "hybrid"]
  1912. },
  1913. "hybrid": {
  1914. name: "Hybrid",
  1915. parents: []
  1916. },
  1917. "drider": {
  1918. name: "Drider",
  1919. parents: ["spider"]
  1920. },
  1921. "sabresune": {
  1922. name: "Sabresune",
  1923. parents: ["kitsune", "sabertooth-tiger"]
  1924. },
  1925. "ditto": {
  1926. name: "Ditto",
  1927. parents: ["pokemon", "goo"]
  1928. },
  1929. "amogus": {
  1930. name: "Amogus",
  1931. parents: ["deity"]
  1932. },
  1933. "ferret": {
  1934. name: "Ferret",
  1935. parents: ["mustelid"]
  1936. },
  1937. "guinea-pig": {
  1938. name: "Guinea Pig",
  1939. parents: ["rodent"]
  1940. },
  1941. "viper": {
  1942. name: "Viper",
  1943. parents: ["snake"]
  1944. },
  1945. "cinderace": {
  1946. name: "Cinderace",
  1947. parents: ["pokemon", "rabbit"]
  1948. },
  1949. "caudin": {
  1950. name: "Caudin",
  1951. parents: ["dragon"]
  1952. },
  1953. "red-winged-blackbird": {
  1954. name: "Red-Winged Blackbird",
  1955. parents: ["avian"]
  1956. },
  1957. "hooded-wheater": {
  1958. name: "Hooded Wheater",
  1959. parents: ["passerine"]
  1960. },
  1961. "passerine": {
  1962. name: "Passerine",
  1963. parents: ["avian"]
  1964. },
  1965. "gieeg": {
  1966. name: "Gieeg",
  1967. parents: ["alien"]
  1968. },
  1969. "ringtail": {
  1970. name: "Ringtail",
  1971. parents: ["raccoon"]
  1972. },
  1973. "hisuian-zoroark": {
  1974. name: "Hisuian Zoroark",
  1975. parents: ["zoroark", "hisuian"]
  1976. },
  1977. "hisuian": {
  1978. name: "Hisuian",
  1979. parents: ["regional-pokemon"]
  1980. },
  1981. "regional-pokemon": {
  1982. name: "Regional Pokemon",
  1983. parents: ["pokemon"]
  1984. },
  1985. "cybeast": {
  1986. name: "Cybeast",
  1987. parents: ["computer-virus"]
  1988. },
  1989. "javira-dragon": {
  1990. name: "Javira Dragon",
  1991. parents: ["dragon"]
  1992. },
  1993. "koopew": {
  1994. name: "Koopew",
  1995. parents: ["dragon", "alien"]
  1996. },
  1997. "nevrean": {
  1998. name: "Nevrean",
  1999. parents: ["avian", "vilous"]
  2000. },
  2001. "vilous": {
  2002. name: "Vilous Species",
  2003. parents: []
  2004. },
  2005. "titanoboa": {
  2006. name: "Titanoboa",
  2007. parents: ["snake"]
  2008. },
  2009. "raichu": {
  2010. name: "Raichu",
  2011. parents: ["pikachu"]
  2012. },
  2013. "taur": {
  2014. name: "Taur",
  2015. parents: []
  2016. },
  2017. "continental-giant-rabbit": {
  2018. name: "Continental Giant Rabbit",
  2019. parents: ["rabbit"]
  2020. },
  2021. "demigryph": {
  2022. name: "Demigryph",
  2023. parents: ["lion", "eagle"]
  2024. },
  2025. "bald-eagle": {
  2026. name: "Bald Eagle",
  2027. parents: ["eagle"]
  2028. },
  2029. "kestrel": {
  2030. name: "Kestrel",
  2031. parents: ["falcon"]
  2032. },
  2033. "mockingbird": {
  2034. name: "Mockingbird",
  2035. parents: ["songbird"]
  2036. },
  2037. "songbird": {
  2038. name: "Songbird",
  2039. parents: ["avian"]
  2040. },
  2041. "bird-of-prey": {
  2042. name: "Bird of Prey",
  2043. parents: ["avian"]
  2044. },
  2045. "marowak": {
  2046. name: "Marowak",
  2047. parents: ["pokemon", "reptile"]
  2048. },
  2049. "joltik": {
  2050. name: "Joltik",
  2051. parents: ["pokemon", "insect"]
  2052. },
  2053. "mink": {
  2054. name: "Mink",
  2055. parents: ["mustelid"]
  2056. },
  2057. "sandcat": {
  2058. name: "Sandcat",
  2059. parents: ["cat"]
  2060. },
  2061. "hrothgar": {
  2062. name: "Hrothgar",
  2063. parents: ["cat"]
  2064. },
  2065. "garchomp": {
  2066. name: "Garchomp",
  2067. parents: ["dragon", "pokemon"]
  2068. },
  2069. "nargacuga": {
  2070. name: "Nargacuga",
  2071. parents: ["monster-hunter"]
  2072. },
  2073. "sable": {
  2074. name: "Sable",
  2075. parents: ["marten"]
  2076. },
  2077. "deino": {
  2078. name: "Deino",
  2079. parents: ["pokemon", "dinosaur"]
  2080. },
  2081. "housecat": {
  2082. name: "Housecat",
  2083. parents: ["cat"]
  2084. },
  2085. "bombay-cat": {
  2086. name: "Bombay Cat",
  2087. parents: ["housecat"]
  2088. },
  2089. "maine-coon": {
  2090. name: "Maine Coon",
  2091. parents: ["housecat"]
  2092. },
  2093. "coelacanth": {
  2094. name: "Coelacanth",
  2095. parents: ["fish"]
  2096. },
  2097. "silvally": {
  2098. name: "Silvally",
  2099. parents: ["legendary-pokemon"]
  2100. },
  2101. "legendary-pokemon": {
  2102. name: "Legendary Pokemon",
  2103. parents: ["pokemon"]
  2104. },
  2105. "great-maccao": {
  2106. name: "Great Maccao",
  2107. parents: ["monster-hunter", "raptor"]
  2108. },
  2109. "shapeshifter": {
  2110. name: "shapeshifter",
  2111. parents: []
  2112. },
  2113. "obstagoon": {
  2114. name: "Obstagoon",
  2115. parents: ["zigzagoon"]
  2116. },
  2117. "thomsons-gazelle": {
  2118. name: "Thomsons Gazelle",
  2119. parents: ["gazelle"]
  2120. },
  2121. "gazelle": {
  2122. name: "Gazelle",
  2123. parents: ["antelope"]
  2124. },
  2125. "monkey": {
  2126. name: "Monkey",
  2127. parents: ["mammal"]
  2128. },
  2129. "serval": {
  2130. name: "Serval",
  2131. parents: ["cat"]
  2132. },
  2133. "swampert": {
  2134. name: "Swampert",
  2135. parents: ["pokemon"]
  2136. },
  2137. "red-fox": {
  2138. name: "Red Fox",
  2139. parents: ["fox"]
  2140. },
  2141. "sliver": {
  2142. name: "Sliver",
  2143. parents: ["alien"]
  2144. },
  2145. "sergix": {
  2146. name: "Sergix",
  2147. parents: ["demon", "sergal", "phoenix"]
  2148. },
  2149. "behemoth": {
  2150. name: "Behemoth",
  2151. parents: ["monster", "dragon", "final-fantasy"]
  2152. },
  2153. "final-fantasy": {
  2154. name: "Final Fantasy",
  2155. parents: ["video-games"]
  2156. },
  2157. "video-games": {
  2158. name: "Video Games",
  2159. parents: []
  2160. },
  2161. }
  2162. //species
  2163. function getSpeciesInfo(speciesList) {
  2164. let result = new Set();
  2165. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2166. result.add(entry)
  2167. });
  2168. return Array.from(result);
  2169. };
  2170. function getSpeciesInfoHelper(species) {
  2171. if (!speciesData[species]) {
  2172. console.warn(species + " doesn't exist");
  2173. return [];
  2174. }
  2175. if (speciesData[species].parents) {
  2176. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2177. } else {
  2178. return [species];
  2179. }
  2180. }
  2181. characterMakers.push(() => makeCharacter(
  2182. {
  2183. name: "Fen",
  2184. species: ["crux"],
  2185. description: {
  2186. title: "Bio",
  2187. text: "Very furry. Sheds on everything."
  2188. },
  2189. tags: [
  2190. "anthro",
  2191. "goo"
  2192. ]
  2193. },
  2194. {
  2195. front: {
  2196. height: math.unit(12, "feet"),
  2197. weight: math.unit(2400, "lb"),
  2198. preyCapacity: math.unit(1, "people"),
  2199. name: "Front",
  2200. image: {
  2201. source: "./media/characters/fen/front.svg",
  2202. extra: 1804/1562,
  2203. bottom: 205/2009
  2204. },
  2205. extraAttributes: {
  2206. pawSize: {
  2207. name: "Paw Size",
  2208. power: 2,
  2209. type: "area",
  2210. base: math.unit(0.35, "m^2")
  2211. }
  2212. }
  2213. },
  2214. diving: {
  2215. height: math.unit(4.9, "meters"),
  2216. weight: math.unit(2400, "lb"),
  2217. name: "Diving",
  2218. image: {
  2219. source: "./media/characters/fen/diving.svg"
  2220. }
  2221. },
  2222. sleeby: {
  2223. height: math.unit(3.45, "meters"),
  2224. weight: math.unit(2400, "lb"),
  2225. name: "Sleeby",
  2226. image: {
  2227. source: "./media/characters/fen/sleeby.svg"
  2228. }
  2229. },
  2230. goo: {
  2231. height: math.unit(12, "feet"),
  2232. weight: math.unit(3600, "lb"),
  2233. volume: math.unit(1000, "liters"),
  2234. preyCapacity: math.unit(6, "people"),
  2235. name: "Goo",
  2236. image: {
  2237. source: "./media/characters/fen/goo.svg",
  2238. extra: 1307/1071,
  2239. bottom: 134/1441
  2240. }
  2241. },
  2242. gooNsfw: {
  2243. height: math.unit(12, "feet"),
  2244. weight: math.unit(3750, "lb"),
  2245. volume: math.unit(1000, "liters"),
  2246. preyCapacity: math.unit(6, "people"),
  2247. name: "Goo (NSFW)",
  2248. image: {
  2249. source: "./media/characters/fen/goo-nsfw.svg",
  2250. extra: 1875/1734,
  2251. bottom: 122/1997
  2252. }
  2253. },
  2254. maw: {
  2255. height: math.unit(5.03, "feet"),
  2256. name: "Maw",
  2257. image: {
  2258. source: "./media/characters/fen/maw.svg"
  2259. }
  2260. },
  2261. gooCeiling: {
  2262. height: math.unit(6.6, "feet"),
  2263. weight: math.unit(3000, "lb"),
  2264. volume: math.unit(1000, "liters"),
  2265. preyCapacity: math.unit(6, "people"),
  2266. name: "Goo (Ceiling)",
  2267. image: {
  2268. source: "./media/characters/fen/goo-ceiling.svg"
  2269. }
  2270. },
  2271. paw: {
  2272. height: math.unit(3.77, "feet"),
  2273. name: "Paw",
  2274. image: {
  2275. source: "./media/characters/fen/paw.svg"
  2276. },
  2277. extraAttributes: {
  2278. "toeSize": {
  2279. name: "Toe Size",
  2280. power: 2,
  2281. type: "area",
  2282. base: math.unit(0.02875, "m^2")
  2283. },
  2284. "pawSize": {
  2285. name: "Paw Size",
  2286. power: 2,
  2287. type: "area",
  2288. base: math.unit(0.378, "m^2")
  2289. },
  2290. }
  2291. },
  2292. tail: {
  2293. height: math.unit(12.1, "feet"),
  2294. name: "Tail",
  2295. image: {
  2296. source: "./media/characters/fen/tail.svg"
  2297. }
  2298. },
  2299. tailFull: {
  2300. height: math.unit(12.1, "feet"),
  2301. name: "Full Tail",
  2302. image: {
  2303. source: "./media/characters/fen/tail-full.svg"
  2304. }
  2305. },
  2306. back: {
  2307. height: math.unit(12, "feet"),
  2308. weight: math.unit(2400, "lb"),
  2309. name: "Back",
  2310. image: {
  2311. source: "./media/characters/fen/back.svg",
  2312. },
  2313. info: {
  2314. description: {
  2315. mode: "append",
  2316. text: "\n\nHe is not currently looking at you."
  2317. }
  2318. }
  2319. },
  2320. full: {
  2321. height: math.unit(1.85, "meter"),
  2322. weight: math.unit(3200, "lb"),
  2323. name: "Full",
  2324. image: {
  2325. source: "./media/characters/fen/full.svg",
  2326. extra: 1133/859,
  2327. bottom: 145/1278
  2328. },
  2329. info: {
  2330. description: {
  2331. mode: "append",
  2332. text: "\n\nMunch."
  2333. }
  2334. }
  2335. },
  2336. gooLounging: {
  2337. height: math.unit(4.53, "feet"),
  2338. weight: math.unit(3000, "lb"),
  2339. preyCapacity: math.unit(6, "people"),
  2340. name: "Goo (Lounging)",
  2341. image: {
  2342. source: "./media/characters/fen/goo-lounging.svg",
  2343. bottom: 116 / 613
  2344. }
  2345. },
  2346. lounging: {
  2347. height: math.unit(10.52, "feet"),
  2348. weight: math.unit(2400, "lb"),
  2349. name: "Lounging",
  2350. image: {
  2351. source: "./media/characters/fen/lounging.svg"
  2352. }
  2353. },
  2354. },
  2355. [
  2356. {
  2357. name: "Small",
  2358. height: math.unit(2.2428, "meter")
  2359. },
  2360. {
  2361. name: "Normal",
  2362. height: math.unit(12, "feet"),
  2363. default: true,
  2364. },
  2365. {
  2366. name: "Big",
  2367. height: math.unit(20, "feet")
  2368. },
  2369. {
  2370. name: "Minimacro",
  2371. height: math.unit(40, "feet"),
  2372. info: {
  2373. description: {
  2374. mode: "append",
  2375. text: "\n\nTOO DAMN BIG"
  2376. }
  2377. }
  2378. },
  2379. {
  2380. name: "Macro",
  2381. height: math.unit(100, "feet"),
  2382. info: {
  2383. description: {
  2384. mode: "append",
  2385. text: "\n\nTOO DAMN BIG"
  2386. }
  2387. }
  2388. },
  2389. {
  2390. name: "Megamacro",
  2391. height: math.unit(2, "miles")
  2392. },
  2393. {
  2394. name: "Gigamacro",
  2395. height: math.unit(10, "earths")
  2396. },
  2397. ]
  2398. ))
  2399. characterMakers.push(() => makeCharacter(
  2400. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2401. {
  2402. front: {
  2403. height: math.unit(183, "cm"),
  2404. weight: math.unit(80, "kg"),
  2405. name: "Front",
  2406. image: {
  2407. source: "./media/characters/sofia-fluttertail/front.svg",
  2408. bottom: 0.01,
  2409. extra: 2154 / 2081
  2410. }
  2411. },
  2412. frontAlt: {
  2413. height: math.unit(183, "cm"),
  2414. weight: math.unit(80, "kg"),
  2415. name: "Front (alt)",
  2416. image: {
  2417. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2418. }
  2419. },
  2420. back: {
  2421. height: math.unit(183, "cm"),
  2422. weight: math.unit(80, "kg"),
  2423. name: "Back",
  2424. image: {
  2425. source: "./media/characters/sofia-fluttertail/back.svg"
  2426. }
  2427. },
  2428. kneeling: {
  2429. height: math.unit(125, "cm"),
  2430. weight: math.unit(80, "kg"),
  2431. name: "Kneeling",
  2432. image: {
  2433. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2434. extra: 1033 / 977,
  2435. bottom: 23.7 / 1057
  2436. }
  2437. },
  2438. maw: {
  2439. height: math.unit(183 / 5, "cm"),
  2440. name: "Maw",
  2441. image: {
  2442. source: "./media/characters/sofia-fluttertail/maw.svg"
  2443. }
  2444. },
  2445. mawcloseup: {
  2446. height: math.unit(183 / 5 * 0.41, "cm"),
  2447. name: "Maw (Closeup)",
  2448. image: {
  2449. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2450. }
  2451. },
  2452. paws: {
  2453. height: math.unit(1.17, "feet"),
  2454. name: "Paws",
  2455. image: {
  2456. source: "./media/characters/sofia-fluttertail/paws.svg",
  2457. extra: 851 / 851,
  2458. bottom: 17 / 868
  2459. }
  2460. },
  2461. },
  2462. [
  2463. {
  2464. name: "Normal",
  2465. height: math.unit(1.83, "meter")
  2466. },
  2467. {
  2468. name: "Size Thief",
  2469. height: math.unit(18, "feet")
  2470. },
  2471. {
  2472. name: "50 Foot Collie",
  2473. height: math.unit(50, "feet")
  2474. },
  2475. {
  2476. name: "Macro",
  2477. height: math.unit(96, "feet"),
  2478. default: true
  2479. },
  2480. {
  2481. name: "Megamerger",
  2482. height: math.unit(650, "feet")
  2483. },
  2484. ]
  2485. ))
  2486. characterMakers.push(() => makeCharacter(
  2487. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2488. {
  2489. front: {
  2490. height: math.unit(7, "feet"),
  2491. weight: math.unit(100, "kg"),
  2492. name: "Front",
  2493. image: {
  2494. source: "./media/characters/march/front.svg",
  2495. extra: 1992/1851,
  2496. bottom: 39/2031
  2497. }
  2498. },
  2499. foot: {
  2500. height: math.unit(0.9, "feet"),
  2501. name: "Foot",
  2502. image: {
  2503. source: "./media/characters/march/foot.svg"
  2504. }
  2505. },
  2506. },
  2507. [
  2508. {
  2509. name: "Normal",
  2510. height: math.unit(7.9, "feet")
  2511. },
  2512. {
  2513. name: "Macro",
  2514. height: math.unit(220, "meters")
  2515. },
  2516. {
  2517. name: "Megamacro",
  2518. height: math.unit(2.98, "km"),
  2519. default: true
  2520. },
  2521. {
  2522. name: "Gigamacro",
  2523. height: math.unit(15963, "km")
  2524. },
  2525. {
  2526. name: "Teramacro",
  2527. height: math.unit(2980000000, "km")
  2528. },
  2529. {
  2530. name: "Examacro",
  2531. height: math.unit(250, "parsecs")
  2532. },
  2533. ]
  2534. ))
  2535. characterMakers.push(() => makeCharacter(
  2536. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2537. {
  2538. front: {
  2539. height: math.unit(6, "feet"),
  2540. weight: math.unit(60, "kg"),
  2541. name: "Front",
  2542. image: {
  2543. source: "./media/characters/noir/front.svg",
  2544. extra: 1,
  2545. bottom: 0.032
  2546. }
  2547. },
  2548. },
  2549. [
  2550. {
  2551. name: "Normal",
  2552. height: math.unit(6.6, "feet")
  2553. },
  2554. {
  2555. name: "Macro",
  2556. height: math.unit(500, "feet")
  2557. },
  2558. {
  2559. name: "Megamacro",
  2560. height: math.unit(2.5, "km"),
  2561. default: true
  2562. },
  2563. {
  2564. name: "Gigamacro",
  2565. height: math.unit(22500, "km")
  2566. },
  2567. {
  2568. name: "Teramacro",
  2569. height: math.unit(2500000000, "km")
  2570. },
  2571. {
  2572. name: "Examacro",
  2573. height: math.unit(200, "parsecs")
  2574. },
  2575. ]
  2576. ))
  2577. characterMakers.push(() => makeCharacter(
  2578. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2579. {
  2580. front: {
  2581. height: math.unit(7, "feet"),
  2582. weight: math.unit(100, "kg"),
  2583. name: "Front",
  2584. image: {
  2585. source: "./media/characters/okuri/front.svg",
  2586. extra: 739/665,
  2587. bottom: 39/778
  2588. }
  2589. },
  2590. back: {
  2591. height: math.unit(7, "feet"),
  2592. weight: math.unit(100, "kg"),
  2593. name: "Back",
  2594. image: {
  2595. source: "./media/characters/okuri/back.svg",
  2596. extra: 734/653,
  2597. bottom: 13/747
  2598. }
  2599. },
  2600. sitting: {
  2601. height: math.unit(2.95, "feet"),
  2602. weight: math.unit(100, "kg"),
  2603. name: "Sitting",
  2604. image: {
  2605. source: "./media/characters/okuri/sitting.svg",
  2606. extra: 370/318,
  2607. bottom: 99/469
  2608. }
  2609. },
  2610. },
  2611. [
  2612. {
  2613. name: "Smallest",
  2614. height: math.unit(5 + 2/12, "feet")
  2615. },
  2616. {
  2617. name: "Smaller",
  2618. height: math.unit(300, "feet")
  2619. },
  2620. {
  2621. name: "Small",
  2622. height: math.unit(1000, "feet")
  2623. },
  2624. {
  2625. name: "Macro",
  2626. height: math.unit(1, "mile")
  2627. },
  2628. {
  2629. name: "Mega Macro (Small)",
  2630. height: math.unit(20, "km")
  2631. },
  2632. {
  2633. name: "Mega Macro (Large)",
  2634. height: math.unit(600, "km")
  2635. },
  2636. {
  2637. name: "Giga Macro",
  2638. height: math.unit(10000, "km")
  2639. },
  2640. {
  2641. name: "Normal",
  2642. height: math.unit(577560, "km"),
  2643. default: true
  2644. },
  2645. {
  2646. name: "Large",
  2647. height: math.unit(4, "galaxies")
  2648. },
  2649. {
  2650. name: "Largest",
  2651. height: math.unit(15, "multiverses")
  2652. },
  2653. ]
  2654. ))
  2655. characterMakers.push(() => makeCharacter(
  2656. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2657. {
  2658. front: {
  2659. height: math.unit(7, "feet"),
  2660. weight: math.unit(100, "kg"),
  2661. name: "Front",
  2662. image: {
  2663. source: "./media/characters/manny/front.svg",
  2664. extra: 1,
  2665. bottom: 0.06
  2666. }
  2667. },
  2668. back: {
  2669. height: math.unit(7, "feet"),
  2670. weight: math.unit(100, "kg"),
  2671. name: "Back",
  2672. image: {
  2673. source: "./media/characters/manny/back.svg",
  2674. extra: 1,
  2675. bottom: 0.014
  2676. }
  2677. },
  2678. },
  2679. [
  2680. {
  2681. name: "Normal",
  2682. height: math.unit(7, "feet"),
  2683. },
  2684. {
  2685. name: "Macro",
  2686. height: math.unit(78, "feet"),
  2687. default: true
  2688. },
  2689. {
  2690. name: "Macro+",
  2691. height: math.unit(300, "meters")
  2692. },
  2693. {
  2694. name: "Macro++",
  2695. height: math.unit(2400, "meters")
  2696. },
  2697. {
  2698. name: "Megamacro",
  2699. height: math.unit(5167, "meters")
  2700. },
  2701. {
  2702. name: "Gigamacro",
  2703. height: math.unit(41769, "miles")
  2704. },
  2705. ]
  2706. ))
  2707. characterMakers.push(() => makeCharacter(
  2708. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2709. {
  2710. front: {
  2711. height: math.unit(7, "feet"),
  2712. weight: math.unit(100, "kg"),
  2713. name: "Front",
  2714. image: {
  2715. source: "./media/characters/adake/front-1.svg"
  2716. }
  2717. },
  2718. frontAlt: {
  2719. height: math.unit(7, "feet"),
  2720. weight: math.unit(100, "kg"),
  2721. name: "Front (Alt)",
  2722. image: {
  2723. source: "./media/characters/adake/front-2.svg",
  2724. extra: 1,
  2725. bottom: 0.01
  2726. }
  2727. },
  2728. back: {
  2729. height: math.unit(7, "feet"),
  2730. weight: math.unit(100, "kg"),
  2731. name: "Back",
  2732. image: {
  2733. source: "./media/characters/adake/back.svg",
  2734. }
  2735. },
  2736. kneel: {
  2737. height: math.unit(5.385, "feet"),
  2738. weight: math.unit(100, "kg"),
  2739. name: "Kneeling",
  2740. image: {
  2741. source: "./media/characters/adake/kneel.svg",
  2742. bottom: 0.052
  2743. }
  2744. },
  2745. },
  2746. [
  2747. {
  2748. name: "Normal",
  2749. height: math.unit(7, "feet"),
  2750. },
  2751. {
  2752. name: "Macro",
  2753. height: math.unit(78, "feet"),
  2754. default: true
  2755. },
  2756. {
  2757. name: "Macro+",
  2758. height: math.unit(300, "meters")
  2759. },
  2760. {
  2761. name: "Macro++",
  2762. height: math.unit(2400, "meters")
  2763. },
  2764. {
  2765. name: "Megamacro",
  2766. height: math.unit(5167, "meters")
  2767. },
  2768. {
  2769. name: "Gigamacro",
  2770. height: math.unit(41769, "miles")
  2771. },
  2772. ]
  2773. ))
  2774. characterMakers.push(() => makeCharacter(
  2775. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2776. {
  2777. front: {
  2778. height: math.unit(1.65, "meters"),
  2779. weight: math.unit(50, "kg"),
  2780. name: "Front",
  2781. image: {
  2782. source: "./media/characters/elijah/front.svg",
  2783. extra: 858 / 830,
  2784. bottom: 95.5 / 953.8559
  2785. }
  2786. },
  2787. back: {
  2788. height: math.unit(1.65, "meters"),
  2789. weight: math.unit(50, "kg"),
  2790. name: "Back",
  2791. image: {
  2792. source: "./media/characters/elijah/back.svg",
  2793. extra: 895 / 850,
  2794. bottom: 5.3 / 897.956
  2795. }
  2796. },
  2797. frontNsfw: {
  2798. height: math.unit(1.65, "meters"),
  2799. weight: math.unit(50, "kg"),
  2800. name: "Front (NSFW)",
  2801. image: {
  2802. source: "./media/characters/elijah/front-nsfw.svg",
  2803. extra: 858 / 830,
  2804. bottom: 95.5 / 953.8559
  2805. }
  2806. },
  2807. backNsfw: {
  2808. height: math.unit(1.65, "meters"),
  2809. weight: math.unit(50, "kg"),
  2810. name: "Back (NSFW)",
  2811. image: {
  2812. source: "./media/characters/elijah/back-nsfw.svg",
  2813. extra: 895 / 850,
  2814. bottom: 5.3 / 897.956
  2815. }
  2816. },
  2817. dick: {
  2818. height: math.unit(1, "feet"),
  2819. name: "Dick",
  2820. image: {
  2821. source: "./media/characters/elijah/dick.svg"
  2822. }
  2823. },
  2824. beakOpen: {
  2825. height: math.unit(1.25, "feet"),
  2826. name: "Beak (Open)",
  2827. image: {
  2828. source: "./media/characters/elijah/beak-open.svg"
  2829. }
  2830. },
  2831. beakShut: {
  2832. height: math.unit(1.25, "feet"),
  2833. name: "Beak (Shut)",
  2834. image: {
  2835. source: "./media/characters/elijah/beak-shut.svg"
  2836. }
  2837. },
  2838. footFlexing: {
  2839. height: math.unit(1.61, "feet"),
  2840. name: "Foot (Flexing)",
  2841. image: {
  2842. source: "./media/characters/elijah/foot-flexing.svg"
  2843. }
  2844. },
  2845. footStepping: {
  2846. height: math.unit(1.44, "feet"),
  2847. name: "Foot (Stepping)",
  2848. image: {
  2849. source: "./media/characters/elijah/foot-stepping.svg"
  2850. }
  2851. },
  2852. plantigradeLeg: {
  2853. height: math.unit(2.34, "feet"),
  2854. name: "Plantigrade Leg",
  2855. image: {
  2856. source: "./media/characters/elijah/plantigrade-leg.svg"
  2857. }
  2858. },
  2859. plantigradeFootLeft: {
  2860. height: math.unit(0.9, "feet"),
  2861. name: "Plantigrade Foot (Left)",
  2862. image: {
  2863. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2864. }
  2865. },
  2866. plantigradeFootRight: {
  2867. height: math.unit(0.9, "feet"),
  2868. name: "Plantigrade Foot (Right)",
  2869. image: {
  2870. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2871. }
  2872. },
  2873. },
  2874. [
  2875. {
  2876. name: "Normal",
  2877. height: math.unit(1.65, "meters")
  2878. },
  2879. {
  2880. name: "Macro",
  2881. height: math.unit(55, "meters"),
  2882. default: true
  2883. },
  2884. {
  2885. name: "Macro+",
  2886. height: math.unit(105, "meters")
  2887. },
  2888. ]
  2889. ))
  2890. characterMakers.push(() => makeCharacter(
  2891. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2892. {
  2893. front: {
  2894. height: math.unit(7 + 2/12, "feet"),
  2895. weight: math.unit(320, "kg"),
  2896. preyCapacity: math.unit(0.276549935, "people"),
  2897. name: "Front",
  2898. image: {
  2899. source: "./media/characters/rai/front.svg",
  2900. extra: 1802/1696,
  2901. bottom: 68/1870
  2902. },
  2903. form: "anthro",
  2904. default: true
  2905. },
  2906. frontDressed: {
  2907. height: math.unit(7 + 2/12, "feet"),
  2908. weight: math.unit(320, "kg"),
  2909. preyCapacity: math.unit(0.276549935, "people"),
  2910. name: "Front (Dressed)",
  2911. image: {
  2912. source: "./media/characters/rai/front-dressed.svg",
  2913. extra: 1802/1696,
  2914. bottom: 68/1870
  2915. },
  2916. form: "anthro"
  2917. },
  2918. side: {
  2919. height: math.unit(7 + 2/12, "feet"),
  2920. weight: math.unit(320, "kg"),
  2921. preyCapacity: math.unit(0.276549935, "people"),
  2922. name: "Side",
  2923. image: {
  2924. source: "./media/characters/rai/side.svg",
  2925. extra: 1789/1710,
  2926. bottom: 115/1904
  2927. },
  2928. form: "anthro"
  2929. },
  2930. back: {
  2931. height: math.unit(7 + 2/12, "feet"),
  2932. weight: math.unit(320, "kg"),
  2933. preyCapacity: math.unit(0.276549935, "people"),
  2934. name: "Back",
  2935. image: {
  2936. source: "./media/characters/rai/back.svg",
  2937. extra: 1770/1707,
  2938. bottom: 28/1798
  2939. },
  2940. form: "anthro"
  2941. },
  2942. feral: {
  2943. height: math.unit(9.5, "feet"),
  2944. weight: math.unit(640, "kg"),
  2945. preyCapacity: math.unit(4, "people"),
  2946. name: "Feral",
  2947. image: {
  2948. source: "./media/characters/rai/feral.svg",
  2949. extra: 945/553,
  2950. bottom: 176/1121
  2951. },
  2952. form: "feral",
  2953. default: true
  2954. },
  2955. dragon: {
  2956. height: math.unit(23, "feet"),
  2957. weight: math.unit(50000, "lb"),
  2958. name: "Dragon",
  2959. image: {
  2960. source: "./media/characters/rai/dragon.svg",
  2961. extra: 2498 / 2030,
  2962. bottom: 85.2 / 2584
  2963. },
  2964. form: "dragon",
  2965. default: true
  2966. },
  2967. maw: {
  2968. height: math.unit(1.69, "feet"),
  2969. name: "Maw",
  2970. image: {
  2971. source: "./media/characters/rai/maw.svg"
  2972. },
  2973. form: "anthro"
  2974. },
  2975. },
  2976. [
  2977. {
  2978. name: "Normal",
  2979. height: math.unit(7 + 2/12, "feet"),
  2980. form: "anthro"
  2981. },
  2982. {
  2983. name: "Big",
  2984. height: math.unit(11, "feet"),
  2985. form: "anthro"
  2986. },
  2987. {
  2988. name: "Minimacro",
  2989. height: math.unit(77, "feet"),
  2990. form: "anthro"
  2991. },
  2992. {
  2993. name: "Macro",
  2994. height: math.unit(302, "feet"),
  2995. default: true,
  2996. form: "anthro"
  2997. },
  2998. {
  2999. name: "Normal",
  3000. height: math.unit(9.5, "feet"),
  3001. form: "feral",
  3002. default: true
  3003. },
  3004. {
  3005. name: "Normal",
  3006. height: math.unit(23, "feet"),
  3007. form: "dragon",
  3008. default: true
  3009. }
  3010. ],
  3011. {
  3012. "anthro": {
  3013. name: "Anthro",
  3014. default: true
  3015. },
  3016. "feral": {
  3017. name: "Feral",
  3018. },
  3019. "dragon": {
  3020. name: "Dragon",
  3021. },
  3022. }
  3023. ))
  3024. characterMakers.push(() => makeCharacter(
  3025. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  3026. {
  3027. frontDressed: {
  3028. height: math.unit(216, "feet"),
  3029. weight: math.unit(7000000, "lb"),
  3030. preyCapacity: math.unit(1321, "people"),
  3031. name: "Front (Dressed)",
  3032. image: {
  3033. source: "./media/characters/jazzy/front-dressed.svg",
  3034. extra: 2738 / 2651,
  3035. bottom: 41.8 / 2786
  3036. }
  3037. },
  3038. backDressed: {
  3039. height: math.unit(216, "feet"),
  3040. weight: math.unit(7000000, "lb"),
  3041. preyCapacity: math.unit(1321, "people"),
  3042. name: "Back (Dressed)",
  3043. image: {
  3044. source: "./media/characters/jazzy/back-dressed.svg",
  3045. extra: 2775 / 2673,
  3046. bottom: 36.8 / 2817
  3047. }
  3048. },
  3049. front: {
  3050. height: math.unit(216, "feet"),
  3051. weight: math.unit(7000000, "lb"),
  3052. preyCapacity: math.unit(1321, "people"),
  3053. name: "Front",
  3054. image: {
  3055. source: "./media/characters/jazzy/front.svg",
  3056. extra: 2738 / 2651,
  3057. bottom: 41.8 / 2786
  3058. }
  3059. },
  3060. back: {
  3061. height: math.unit(216, "feet"),
  3062. weight: math.unit(7000000, "lb"),
  3063. preyCapacity: math.unit(1321, "people"),
  3064. name: "Back",
  3065. image: {
  3066. source: "./media/characters/jazzy/back.svg",
  3067. extra: 2775 / 2673,
  3068. bottom: 36.8 / 2817
  3069. }
  3070. },
  3071. maw: {
  3072. height: math.unit(20, "feet"),
  3073. name: "Maw",
  3074. image: {
  3075. source: "./media/characters/jazzy/maw.svg"
  3076. }
  3077. },
  3078. paws: {
  3079. height: math.unit(27.5, "feet"),
  3080. name: "Paws",
  3081. image: {
  3082. source: "./media/characters/jazzy/paws.svg"
  3083. }
  3084. },
  3085. eye: {
  3086. height: math.unit(4.4, "feet"),
  3087. name: "Eye",
  3088. image: {
  3089. source: "./media/characters/jazzy/eye.svg"
  3090. }
  3091. },
  3092. droneOffense: {
  3093. height: math.unit(9.5, "inches"),
  3094. name: "Drone (Offense)",
  3095. image: {
  3096. source: "./media/characters/jazzy/drone-offense.svg"
  3097. }
  3098. },
  3099. droneRecon: {
  3100. height: math.unit(9.5, "inches"),
  3101. name: "Drone (Recon)",
  3102. image: {
  3103. source: "./media/characters/jazzy/drone-recon.svg"
  3104. }
  3105. },
  3106. droneDefense: {
  3107. height: math.unit(9.5, "inches"),
  3108. name: "Drone (Defense)",
  3109. image: {
  3110. source: "./media/characters/jazzy/drone-defense.svg"
  3111. }
  3112. },
  3113. },
  3114. [
  3115. {
  3116. name: "Macro",
  3117. height: math.unit(216, "feet"),
  3118. default: true
  3119. },
  3120. ]
  3121. ))
  3122. characterMakers.push(() => makeCharacter(
  3123. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3124. {
  3125. front: {
  3126. height: math.unit(9 + 6/12, "feet"),
  3127. weight: math.unit(700, "lb"),
  3128. name: "Front",
  3129. image: {
  3130. source: "./media/characters/flamm/front.svg",
  3131. extra: 1736/1596,
  3132. bottom: 93/1829
  3133. }
  3134. },
  3135. buff: {
  3136. height: math.unit(9 + 6/12, "feet"),
  3137. weight: math.unit(950, "lb"),
  3138. name: "Buff",
  3139. image: {
  3140. source: "./media/characters/flamm/buff.svg",
  3141. extra: 3018/2874,
  3142. bottom: 221/3239
  3143. }
  3144. },
  3145. },
  3146. [
  3147. {
  3148. name: "Normal",
  3149. height: math.unit(9.5, "feet")
  3150. },
  3151. {
  3152. name: "Macro",
  3153. height: math.unit(200, "feet"),
  3154. default: true
  3155. },
  3156. ]
  3157. ))
  3158. characterMakers.push(() => makeCharacter(
  3159. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3160. {
  3161. front: {
  3162. height: math.unit(5 + 3/12, "feet"),
  3163. weight: math.unit(60, "kg"),
  3164. name: "Front",
  3165. image: {
  3166. source: "./media/characters/zephiro/front.svg",
  3167. extra: 1873/1761,
  3168. bottom: 147/2020
  3169. }
  3170. },
  3171. side: {
  3172. height: math.unit(5 + 3/12, "feet"),
  3173. weight: math.unit(60, "kg"),
  3174. name: "Side",
  3175. image: {
  3176. source: "./media/characters/zephiro/side.svg",
  3177. extra: 1929/1827,
  3178. bottom: 65/1994
  3179. }
  3180. },
  3181. back: {
  3182. height: math.unit(5 + 3/12, "feet"),
  3183. weight: math.unit(60, "kg"),
  3184. name: "Back",
  3185. image: {
  3186. source: "./media/characters/zephiro/back.svg",
  3187. extra: 1926/1816,
  3188. bottom: 41/1967
  3189. }
  3190. },
  3191. hand: {
  3192. height: math.unit(0.68, "feet"),
  3193. name: "Hand",
  3194. image: {
  3195. source: "./media/characters/zephiro/hand.svg"
  3196. }
  3197. },
  3198. paw: {
  3199. height: math.unit(1, "feet"),
  3200. name: "Paw",
  3201. image: {
  3202. source: "./media/characters/zephiro/paw.svg"
  3203. }
  3204. },
  3205. beans: {
  3206. height: math.unit(0.93, "feet"),
  3207. name: "Beans",
  3208. image: {
  3209. source: "./media/characters/zephiro/beans.svg"
  3210. }
  3211. },
  3212. },
  3213. [
  3214. {
  3215. name: "Micro",
  3216. height: math.unit(3, "inches")
  3217. },
  3218. {
  3219. name: "Normal",
  3220. height: math.unit(5 + 3 / 12, "feet"),
  3221. default: true
  3222. },
  3223. {
  3224. name: "Macro",
  3225. height: math.unit(118, "feet")
  3226. },
  3227. ]
  3228. ))
  3229. characterMakers.push(() => makeCharacter(
  3230. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3231. {
  3232. front: {
  3233. height: math.unit(5, "feet"),
  3234. weight: math.unit(90, "kg"),
  3235. preyCapacity: math.unit(14, "people"),
  3236. name: "Front",
  3237. image: {
  3238. source: "./media/characters/fory/front.svg",
  3239. extra: 2862 / 2674,
  3240. bottom: 180 / 3043.8
  3241. },
  3242. form: "weaselbun",
  3243. default: true,
  3244. extraAttributes: {
  3245. "pawSize": {
  3246. name: "Paw Size",
  3247. power: 2,
  3248. type: "area",
  3249. base: math.unit(0.1596, "m^2")
  3250. },
  3251. "pawLength": {
  3252. name: "Paw Length",
  3253. power: 1,
  3254. type: "length",
  3255. base: math.unit(0.7, "m")
  3256. }
  3257. }
  3258. },
  3259. back: {
  3260. height: math.unit(5, "feet"),
  3261. weight: math.unit(90, "kg"),
  3262. preyCapacity: math.unit(14, "people"),
  3263. name: "Back",
  3264. image: {
  3265. source: "./media/characters/fory/back.svg",
  3266. extra: 1790/1672,
  3267. bottom: 84/1874
  3268. },
  3269. form: "weaselbun",
  3270. extraAttributes: {
  3271. "pawSize": {
  3272. name: "Paw Size",
  3273. power: 2,
  3274. type: "area",
  3275. base: math.unit(0.1596, "m^2")
  3276. },
  3277. "pawLength": {
  3278. name: "Paw Length",
  3279. power: 1,
  3280. type: "length",
  3281. base: math.unit(0.7, "m")
  3282. }
  3283. }
  3284. },
  3285. paw: {
  3286. height: math.unit(2.14, "feet"),
  3287. name: "Paw",
  3288. image: {
  3289. source: "./media/characters/fory/paw.svg"
  3290. },
  3291. form: "weaselbun",
  3292. extraAttributes: {
  3293. "pawSize": {
  3294. name: "Paw Size",
  3295. power: 2,
  3296. type: "area",
  3297. base: math.unit(0.1596, "m^2")
  3298. },
  3299. "pawLength": {
  3300. name: "Paw Length",
  3301. power: 1,
  3302. type: "length",
  3303. base: math.unit(0.48, "m")
  3304. }
  3305. }
  3306. },
  3307. bunBack: {
  3308. height: math.unit(3, "feet"),
  3309. weight: math.unit(20, "kg"),
  3310. preyCapacity: math.unit(3, "people"),
  3311. name: "Back",
  3312. image: {
  3313. source: "./media/characters/fory/bun-back.svg",
  3314. extra: 1749/1564,
  3315. bottom: 246/1995
  3316. },
  3317. form: "bun",
  3318. default: true,
  3319. extraAttributes: {
  3320. "pawSize": {
  3321. name: "Paw Size",
  3322. power: 2,
  3323. type: "area",
  3324. base: math.unit(0.072, "m^2")
  3325. },
  3326. "pawLength": {
  3327. name: "Paw Length",
  3328. power: 1,
  3329. type: "length",
  3330. base: math.unit(0.45, "m")
  3331. }
  3332. }
  3333. },
  3334. },
  3335. [
  3336. {
  3337. name: "Normal",
  3338. height: math.unit(5, "feet"),
  3339. form: "weaselbun"
  3340. },
  3341. {
  3342. name: "Macro",
  3343. height: math.unit(50, "feet"),
  3344. default: true,
  3345. form: "weaselbun"
  3346. },
  3347. {
  3348. name: "Megamacro",
  3349. height: math.unit(10, "miles"),
  3350. form: "weaselbun"
  3351. },
  3352. {
  3353. name: "Gigamacro",
  3354. height: math.unit(5, "earths"),
  3355. form: "weaselbun"
  3356. },
  3357. {
  3358. name: "Normal",
  3359. height: math.unit(3, "feet"),
  3360. default: true,
  3361. form: "bun"
  3362. },
  3363. {
  3364. name: "Fun-Size",
  3365. height: math.unit(12, "feet"),
  3366. form: "bun"
  3367. },
  3368. {
  3369. name: "Macro",
  3370. height: math.unit(100, "feet"),
  3371. form: "bun"
  3372. },
  3373. {
  3374. name: "Planetary",
  3375. height: math.unit(3, "earths"),
  3376. form: "bun"
  3377. },
  3378. ],
  3379. {
  3380. "weaselbun": {
  3381. name: "Weaselbun",
  3382. default: true
  3383. },
  3384. "bun": {
  3385. name: "Bun",
  3386. },
  3387. }
  3388. ))
  3389. characterMakers.push(() => makeCharacter(
  3390. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3391. {
  3392. front: {
  3393. height: math.unit(7, "feet"),
  3394. weight: math.unit(90, "kg"),
  3395. name: "Front",
  3396. image: {
  3397. source: "./media/characters/kurrikage/front.svg",
  3398. extra: 1845/1733,
  3399. bottom: 119/1964
  3400. }
  3401. },
  3402. back: {
  3403. height: math.unit(7, "feet"),
  3404. weight: math.unit(90, "kg"),
  3405. name: "Back",
  3406. image: {
  3407. source: "./media/characters/kurrikage/back.svg",
  3408. extra: 1790/1677,
  3409. bottom: 61/1851
  3410. }
  3411. },
  3412. dressed: {
  3413. height: math.unit(7, "feet"),
  3414. weight: math.unit(90, "kg"),
  3415. name: "Dressed",
  3416. image: {
  3417. source: "./media/characters/kurrikage/dressed.svg",
  3418. extra: 1845/1733,
  3419. bottom: 119/1964
  3420. }
  3421. },
  3422. foot: {
  3423. height: math.unit(1.5, "feet"),
  3424. name: "Foot",
  3425. image: {
  3426. source: "./media/characters/kurrikage/foot.svg"
  3427. }
  3428. },
  3429. staff: {
  3430. height: math.unit(6.7, "feet"),
  3431. name: "Staff",
  3432. image: {
  3433. source: "./media/characters/kurrikage/staff.svg"
  3434. }
  3435. },
  3436. peek: {
  3437. height: math.unit(1.05, "feet"),
  3438. name: "Peeking",
  3439. image: {
  3440. source: "./media/characters/kurrikage/peek.svg",
  3441. bottom: 0.08
  3442. }
  3443. },
  3444. },
  3445. [
  3446. {
  3447. name: "Normal",
  3448. height: math.unit(12, "feet"),
  3449. default: true
  3450. },
  3451. {
  3452. name: "Big",
  3453. height: math.unit(20, "feet")
  3454. },
  3455. {
  3456. name: "Macro",
  3457. height: math.unit(500, "feet")
  3458. },
  3459. {
  3460. name: "Megamacro",
  3461. height: math.unit(20, "miles")
  3462. },
  3463. ]
  3464. ))
  3465. characterMakers.push(() => makeCharacter(
  3466. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3467. {
  3468. front: {
  3469. height: math.unit(6, "feet"),
  3470. weight: math.unit(75, "kg"),
  3471. name: "Front",
  3472. image: {
  3473. source: "./media/characters/shingo/front.svg",
  3474. extra: 1900/1825,
  3475. bottom: 82/1982
  3476. }
  3477. },
  3478. side: {
  3479. height: math.unit(6, "feet"),
  3480. weight: math.unit(75, "kg"),
  3481. name: "Side",
  3482. image: {
  3483. source: "./media/characters/shingo/side.svg",
  3484. extra: 1930/1865,
  3485. bottom: 16/1946
  3486. }
  3487. },
  3488. back: {
  3489. height: math.unit(6, "feet"),
  3490. weight: math.unit(75, "kg"),
  3491. name: "Back",
  3492. image: {
  3493. source: "./media/characters/shingo/back.svg",
  3494. extra: 1922/1852,
  3495. bottom: 16/1938
  3496. }
  3497. },
  3498. frontDressed: {
  3499. height: math.unit(6, "feet"),
  3500. weight: math.unit(150, "lb"),
  3501. name: "Front-dressed",
  3502. image: {
  3503. source: "./media/characters/shingo/front-dressed.svg",
  3504. extra: 1900/1825,
  3505. bottom: 82/1982
  3506. }
  3507. },
  3508. paw: {
  3509. height: math.unit(1.29, "feet"),
  3510. name: "Paw",
  3511. image: {
  3512. source: "./media/characters/shingo/paw.svg"
  3513. }
  3514. },
  3515. hand: {
  3516. height: math.unit(1.07, "feet"),
  3517. name: "Hand",
  3518. image: {
  3519. source: "./media/characters/shingo/hand.svg"
  3520. }
  3521. },
  3522. frontAlt: {
  3523. height: math.unit(6, "feet"),
  3524. weight: math.unit(75, "kg"),
  3525. name: "Front (Alt)",
  3526. image: {
  3527. source: "./media/characters/shingo/front-alt.svg",
  3528. extra: 3511 / 3338,
  3529. bottom: 0.005
  3530. }
  3531. },
  3532. frontAlt2: {
  3533. height: math.unit(6, "feet"),
  3534. weight: math.unit(75, "kg"),
  3535. name: "Front (Alt 2)",
  3536. image: {
  3537. source: "./media/characters/shingo/front-alt-2.svg",
  3538. extra: 706/681,
  3539. bottom: 11/717
  3540. }
  3541. },
  3542. pawAlt: {
  3543. height: math.unit(1, "feet"),
  3544. name: "Paw (Alt)",
  3545. image: {
  3546. source: "./media/characters/shingo/paw-alt.svg"
  3547. }
  3548. },
  3549. },
  3550. [
  3551. {
  3552. name: "Micro",
  3553. height: math.unit(4, "inches")
  3554. },
  3555. {
  3556. name: "Normal",
  3557. height: math.unit(6, "feet"),
  3558. default: true
  3559. },
  3560. {
  3561. name: "Macro",
  3562. height: math.unit(108, "feet")
  3563. },
  3564. {
  3565. name: "Macro+",
  3566. height: math.unit(1500, "feet")
  3567. },
  3568. ]
  3569. ))
  3570. characterMakers.push(() => makeCharacter(
  3571. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3572. {
  3573. side: {
  3574. height: math.unit(6, "feet"),
  3575. weight: math.unit(75, "kg"),
  3576. name: "Side",
  3577. image: {
  3578. source: "./media/characters/aigey/side.svg"
  3579. }
  3580. },
  3581. },
  3582. [
  3583. {
  3584. name: "Macro",
  3585. height: math.unit(200, "feet"),
  3586. default: true
  3587. },
  3588. {
  3589. name: "Megamacro",
  3590. height: math.unit(100, "miles")
  3591. },
  3592. ]
  3593. )
  3594. )
  3595. characterMakers.push(() => makeCharacter(
  3596. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3597. {
  3598. front: {
  3599. height: math.unit(5 + 5 / 12, "feet"),
  3600. weight: math.unit(75, "kg"),
  3601. name: "Front",
  3602. image: {
  3603. source: "./media/characters/natasha/front.svg",
  3604. extra: 859 / 824,
  3605. bottom: 23 / 879.6
  3606. }
  3607. },
  3608. frontNsfw: {
  3609. height: math.unit(5 + 5 / 12, "feet"),
  3610. weight: math.unit(75, "kg"),
  3611. name: "Front (NSFW)",
  3612. image: {
  3613. source: "./media/characters/natasha/front-nsfw.svg",
  3614. extra: 859 / 824,
  3615. bottom: 23 / 879.6
  3616. }
  3617. },
  3618. frontErect: {
  3619. height: math.unit(5 + 5 / 12, "feet"),
  3620. weight: math.unit(75, "kg"),
  3621. name: "Front (Erect)",
  3622. image: {
  3623. source: "./media/characters/natasha/front-erect.svg",
  3624. extra: 859 / 824,
  3625. bottom: 23 / 879.6
  3626. }
  3627. },
  3628. back: {
  3629. height: math.unit(5 + 5 / 12, "feet"),
  3630. weight: math.unit(75, "kg"),
  3631. name: "Back",
  3632. image: {
  3633. source: "./media/characters/natasha/back.svg",
  3634. extra: 887.9 / 852.6,
  3635. bottom: 9.7 / 896.4
  3636. }
  3637. },
  3638. backAlt: {
  3639. height: math.unit(5 + 5 / 12, "feet"),
  3640. weight: math.unit(75, "kg"),
  3641. name: "Back (Alt)",
  3642. image: {
  3643. source: "./media/characters/natasha/back-alt.svg",
  3644. extra: 1236.7 / 1192,
  3645. bottom: 22.3 / 1258.2
  3646. }
  3647. },
  3648. dick: {
  3649. height: math.unit(1.772, "feet"),
  3650. name: "Dick",
  3651. image: {
  3652. source: "./media/characters/natasha/dick.svg"
  3653. }
  3654. },
  3655. paw: {
  3656. height: math.unit(0.250, "meters"),
  3657. name: "Paw",
  3658. image: {
  3659. source: "./media/characters/natasha/paw.svg"
  3660. },
  3661. extraAttributes: {
  3662. "toeSize": {
  3663. name: "Toe Size",
  3664. power: 2,
  3665. type: "area",
  3666. base: math.unit(0.0024, "m^2")
  3667. },
  3668. "padSize": {
  3669. name: "Pad Size",
  3670. power: 2,
  3671. type: "area",
  3672. base: math.unit(0.00889, "m^2")
  3673. },
  3674. "pawSize": {
  3675. name: "Paw Size",
  3676. power: 2,
  3677. type: "area",
  3678. base: math.unit(0.023667, "m^2")
  3679. },
  3680. }
  3681. },
  3682. },
  3683. [
  3684. {
  3685. name: "Shortstack",
  3686. height: math.unit(3, "feet"),
  3687. default: true
  3688. },
  3689. {
  3690. name: "Normal",
  3691. height: math.unit(5 + 5 / 12, "feet")
  3692. },
  3693. {
  3694. name: "Large",
  3695. height: math.unit(12, "feet")
  3696. },
  3697. {
  3698. name: "Macro",
  3699. height: math.unit(100, "feet")
  3700. },
  3701. {
  3702. name: "Macro+",
  3703. height: math.unit(260, "feet")
  3704. },
  3705. {
  3706. name: "Macro++",
  3707. height: math.unit(1, "mile")
  3708. },
  3709. ]
  3710. ))
  3711. characterMakers.push(() => makeCharacter(
  3712. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3713. {
  3714. front: {
  3715. height: math.unit(6, "feet"),
  3716. weight: math.unit(75, "kg"),
  3717. name: "Front",
  3718. image: {
  3719. source: "./media/characters/malik/front.svg",
  3720. extra: 1750/1561,
  3721. bottom: 80/1830
  3722. },
  3723. extraAttributes: {
  3724. "toeSize": {
  3725. name: "Toe Size",
  3726. power: 2,
  3727. type: "area",
  3728. base: math.unit(0.0159, "m^2")
  3729. },
  3730. "pawSize": {
  3731. name: "Paw Size",
  3732. power: 2,
  3733. type: "area",
  3734. base: math.unit(0.09834, "m^2")
  3735. },
  3736. }
  3737. },
  3738. side: {
  3739. height: math.unit(6, "feet"),
  3740. weight: math.unit(75, "kg"),
  3741. name: "Side",
  3742. image: {
  3743. source: "./media/characters/malik/side.svg",
  3744. extra: 1802/1685,
  3745. bottom: 42/1844
  3746. },
  3747. extraAttributes: {
  3748. "toeSize": {
  3749. name: "Toe Size",
  3750. power: 2,
  3751. type: "area",
  3752. base: math.unit(0.0159, "m^2")
  3753. },
  3754. "pawSize": {
  3755. name: "Paw Size",
  3756. power: 2,
  3757. type: "area",
  3758. base: math.unit(0.09834, "m^2")
  3759. },
  3760. }
  3761. },
  3762. back: {
  3763. height: math.unit(6, "feet"),
  3764. weight: math.unit(75, "kg"),
  3765. name: "Back",
  3766. image: {
  3767. source: "./media/characters/malik/back.svg",
  3768. extra: 1803/1607,
  3769. bottom: 33/1836
  3770. },
  3771. extraAttributes: {
  3772. "toeSize": {
  3773. name: "Toe Size",
  3774. power: 2,
  3775. type: "area",
  3776. base: math.unit(0.0159, "m^2")
  3777. },
  3778. "pawSize": {
  3779. name: "Paw Size",
  3780. power: 2,
  3781. type: "area",
  3782. base: math.unit(0.09834, "m^2")
  3783. },
  3784. }
  3785. },
  3786. },
  3787. [
  3788. {
  3789. name: "Macro",
  3790. height: math.unit(156, "feet"),
  3791. default: true
  3792. },
  3793. {
  3794. name: "Macro+",
  3795. height: math.unit(1188, "feet")
  3796. },
  3797. ]
  3798. ))
  3799. characterMakers.push(() => makeCharacter(
  3800. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3801. {
  3802. front: {
  3803. height: math.unit(6, "feet"),
  3804. weight: math.unit(75, "kg"),
  3805. name: "Front",
  3806. image: {
  3807. source: "./media/characters/sefer/front.svg",
  3808. extra: 848 / 659,
  3809. bottom: 28.3 / 876.442
  3810. }
  3811. },
  3812. back: {
  3813. height: math.unit(6, "feet"),
  3814. weight: math.unit(75, "kg"),
  3815. name: "Back",
  3816. image: {
  3817. source: "./media/characters/sefer/back.svg",
  3818. extra: 864 / 695,
  3819. bottom: 10 / 871
  3820. }
  3821. },
  3822. frontDressed: {
  3823. height: math.unit(6, "feet"),
  3824. weight: math.unit(75, "kg"),
  3825. name: "Dressed",
  3826. image: {
  3827. source: "./media/characters/sefer/dressed.svg",
  3828. extra: 839 / 653,
  3829. bottom: 37.6 / 878
  3830. }
  3831. },
  3832. },
  3833. [
  3834. {
  3835. name: "Normal",
  3836. height: math.unit(6, "feet"),
  3837. default: true
  3838. },
  3839. {
  3840. name: "Big",
  3841. height: math.unit(8, "meters")
  3842. },
  3843. ]
  3844. ))
  3845. characterMakers.push(() => makeCharacter(
  3846. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3847. {
  3848. body: {
  3849. height: math.unit(2.2428, "meter"),
  3850. weight: math.unit(124.738, "kg"),
  3851. name: "Body",
  3852. image: {
  3853. extra: 1225 / 1050,
  3854. source: "./media/characters/north/front.svg"
  3855. }
  3856. }
  3857. },
  3858. [
  3859. {
  3860. name: "Micro",
  3861. height: math.unit(4, "inches")
  3862. },
  3863. {
  3864. name: "Macro",
  3865. height: math.unit(63, "meters")
  3866. },
  3867. {
  3868. name: "Megamacro",
  3869. height: math.unit(101, "miles"),
  3870. default: true
  3871. }
  3872. ]
  3873. ))
  3874. characterMakers.push(() => makeCharacter(
  3875. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3876. {
  3877. angled: {
  3878. height: math.unit(4, "meter"),
  3879. weight: math.unit(150, "kg"),
  3880. name: "Angled",
  3881. image: {
  3882. source: "./media/characters/talan/angled-sfw.svg",
  3883. bottom: 29 / 3734
  3884. }
  3885. },
  3886. angledNsfw: {
  3887. height: math.unit(4, "meter"),
  3888. weight: math.unit(150, "kg"),
  3889. name: "Angled (NSFW)",
  3890. image: {
  3891. source: "./media/characters/talan/angled-nsfw.svg",
  3892. bottom: 29 / 3734
  3893. }
  3894. },
  3895. frontNsfw: {
  3896. height: math.unit(4, "meter"),
  3897. weight: math.unit(150, "kg"),
  3898. name: "Front (NSFW)",
  3899. image: {
  3900. source: "./media/characters/talan/front-nsfw.svg",
  3901. bottom: 29 / 3734
  3902. }
  3903. },
  3904. sideNsfw: {
  3905. height: math.unit(4, "meter"),
  3906. weight: math.unit(150, "kg"),
  3907. name: "Side (NSFW)",
  3908. image: {
  3909. source: "./media/characters/talan/side-nsfw.svg",
  3910. bottom: 29 / 3734
  3911. }
  3912. },
  3913. back: {
  3914. height: math.unit(4, "meter"),
  3915. weight: math.unit(150, "kg"),
  3916. name: "Back",
  3917. image: {
  3918. source: "./media/characters/talan/back.svg"
  3919. }
  3920. },
  3921. dickBottom: {
  3922. height: math.unit(0.621, "meter"),
  3923. name: "Dick (Bottom)",
  3924. image: {
  3925. source: "./media/characters/talan/dick-bottom.svg"
  3926. }
  3927. },
  3928. dickTop: {
  3929. height: math.unit(0.621, "meter"),
  3930. name: "Dick (Top)",
  3931. image: {
  3932. source: "./media/characters/talan/dick-top.svg"
  3933. }
  3934. },
  3935. dickSide: {
  3936. height: math.unit(0.305, "meter"),
  3937. name: "Dick (Side)",
  3938. image: {
  3939. source: "./media/characters/talan/dick-side.svg"
  3940. }
  3941. },
  3942. dickFront: {
  3943. height: math.unit(0.305, "meter"),
  3944. name: "Dick (Front)",
  3945. image: {
  3946. source: "./media/characters/talan/dick-front.svg"
  3947. }
  3948. },
  3949. },
  3950. [
  3951. {
  3952. name: "Normal",
  3953. height: math.unit(4, "meters")
  3954. },
  3955. {
  3956. name: "Macro",
  3957. height: math.unit(100, "meters")
  3958. },
  3959. {
  3960. name: "Megamacro",
  3961. height: math.unit(2, "miles"),
  3962. default: true
  3963. },
  3964. {
  3965. name: "Gigamacro",
  3966. height: math.unit(5000, "miles")
  3967. },
  3968. {
  3969. name: "Teramacro",
  3970. height: math.unit(100, "parsecs")
  3971. }
  3972. ]
  3973. ))
  3974. characterMakers.push(() => makeCharacter(
  3975. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3976. {
  3977. front: {
  3978. height: math.unit(2, "meter"),
  3979. weight: math.unit(90, "kg"),
  3980. name: "Front",
  3981. image: {
  3982. source: "./media/characters/gael'rathus/front.svg"
  3983. }
  3984. },
  3985. frontAlt: {
  3986. height: math.unit(2, "meter"),
  3987. weight: math.unit(90, "kg"),
  3988. name: "Front (alt)",
  3989. image: {
  3990. source: "./media/characters/gael'rathus/front-alt.svg"
  3991. }
  3992. },
  3993. frontAlt2: {
  3994. height: math.unit(2, "meter"),
  3995. weight: math.unit(90, "kg"),
  3996. name: "Front (alt 2)",
  3997. image: {
  3998. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3999. }
  4000. }
  4001. },
  4002. [
  4003. {
  4004. name: "Normal",
  4005. height: math.unit(9, "feet"),
  4006. default: true
  4007. },
  4008. {
  4009. name: "Large",
  4010. height: math.unit(25, "feet")
  4011. },
  4012. {
  4013. name: "Macro",
  4014. height: math.unit(0.25, "miles")
  4015. },
  4016. {
  4017. name: "Megamacro",
  4018. height: math.unit(10, "miles")
  4019. }
  4020. ]
  4021. ))
  4022. characterMakers.push(() => makeCharacter(
  4023. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  4024. {
  4025. side: {
  4026. height: math.unit(2, "meter"),
  4027. weight: math.unit(140, "kg"),
  4028. name: "Side",
  4029. image: {
  4030. source: "./media/characters/sosha/side.svg",
  4031. extra: 1170/1006,
  4032. bottom: 94/1264
  4033. }
  4034. },
  4035. maw: {
  4036. height: math.unit(2.87, "feet"),
  4037. name: "Maw",
  4038. image: {
  4039. source: "./media/characters/sosha/maw.svg",
  4040. extra: 966/865,
  4041. bottom: 0/966
  4042. }
  4043. },
  4044. cooch: {
  4045. height: math.unit(5.6, "feet"),
  4046. name: "Cooch",
  4047. image: {
  4048. source: "./media/characters/sosha/cooch.svg"
  4049. }
  4050. },
  4051. },
  4052. [
  4053. {
  4054. name: "Normal",
  4055. height: math.unit(12, "feet"),
  4056. default: true
  4057. }
  4058. ]
  4059. ))
  4060. characterMakers.push(() => makeCharacter(
  4061. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4062. {
  4063. side: {
  4064. height: math.unit(5 + 5 / 12, "feet"),
  4065. weight: math.unit(170, "kg"),
  4066. name: "Side",
  4067. image: {
  4068. source: "./media/characters/runnola/side.svg",
  4069. extra: 741 / 448,
  4070. bottom: 0.05
  4071. }
  4072. },
  4073. },
  4074. [
  4075. {
  4076. name: "Small",
  4077. height: math.unit(3, "feet")
  4078. },
  4079. {
  4080. name: "Normal",
  4081. height: math.unit(5 + 5 / 12, "feet"),
  4082. default: true
  4083. },
  4084. {
  4085. name: "Big",
  4086. height: math.unit(10, "feet")
  4087. },
  4088. ]
  4089. ))
  4090. characterMakers.push(() => makeCharacter(
  4091. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4092. {
  4093. front: {
  4094. height: math.unit(2, "meter"),
  4095. weight: math.unit(50, "kg"),
  4096. name: "Front",
  4097. image: {
  4098. source: "./media/characters/kurribird/front.svg",
  4099. bottom: 0.015
  4100. }
  4101. },
  4102. frontAlt: {
  4103. height: math.unit(1.5, "meter"),
  4104. weight: math.unit(50, "kg"),
  4105. name: "Front (Alt)",
  4106. image: {
  4107. source: "./media/characters/kurribird/front-alt.svg",
  4108. extra: 1.45
  4109. }
  4110. },
  4111. },
  4112. [
  4113. {
  4114. name: "Normal",
  4115. height: math.unit(7, "feet")
  4116. },
  4117. {
  4118. name: "Big",
  4119. height: math.unit(12, "feet"),
  4120. default: true
  4121. },
  4122. {
  4123. name: "Macro",
  4124. height: math.unit(1500, "feet")
  4125. },
  4126. {
  4127. name: "Megamacro",
  4128. height: math.unit(2, "miles")
  4129. }
  4130. ]
  4131. ))
  4132. characterMakers.push(() => makeCharacter(
  4133. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4134. {
  4135. front: {
  4136. height: math.unit(2, "meter"),
  4137. weight: math.unit(80, "kg"),
  4138. name: "Front",
  4139. image: {
  4140. source: "./media/characters/elbial/front.svg",
  4141. extra: 1643 / 1556,
  4142. bottom: 60.2 / 1696
  4143. }
  4144. },
  4145. side: {
  4146. height: math.unit(2, "meter"),
  4147. weight: math.unit(80, "kg"),
  4148. name: "Side",
  4149. image: {
  4150. source: "./media/characters/elbial/side.svg",
  4151. extra: 1601/1528,
  4152. bottom: 97/1698
  4153. }
  4154. },
  4155. back: {
  4156. height: math.unit(2, "meter"),
  4157. weight: math.unit(80, "kg"),
  4158. name: "Back",
  4159. image: {
  4160. source: "./media/characters/elbial/back.svg",
  4161. extra: 1653/1569,
  4162. bottom: 20/1673
  4163. }
  4164. },
  4165. frontDressed: {
  4166. height: math.unit(2, "meter"),
  4167. weight: math.unit(80, "kg"),
  4168. name: "Front (Dressed)",
  4169. image: {
  4170. source: "./media/characters/elbial/front-dressed.svg",
  4171. extra: 1638/1569,
  4172. bottom: 70/1708
  4173. }
  4174. },
  4175. genitals: {
  4176. height: math.unit(2 / 3.367, "meter"),
  4177. name: "Genitals",
  4178. image: {
  4179. source: "./media/characters/elbial/genitals.svg"
  4180. }
  4181. },
  4182. },
  4183. [
  4184. {
  4185. name: "Large",
  4186. height: math.unit(100, "feet")
  4187. },
  4188. {
  4189. name: "Macro",
  4190. height: math.unit(500, "feet"),
  4191. default: true
  4192. },
  4193. {
  4194. name: "Megamacro",
  4195. height: math.unit(10, "miles")
  4196. },
  4197. {
  4198. name: "Gigamacro",
  4199. height: math.unit(25000, "miles")
  4200. },
  4201. {
  4202. name: "Full-Size",
  4203. height: math.unit(8000000, "gigaparsecs")
  4204. }
  4205. ]
  4206. ))
  4207. characterMakers.push(() => makeCharacter(
  4208. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4209. {
  4210. front: {
  4211. height: math.unit(2, "meter"),
  4212. weight: math.unit(60, "kg"),
  4213. name: "Front",
  4214. image: {
  4215. source: "./media/characters/noah/front.svg"
  4216. }
  4217. },
  4218. talons: {
  4219. height: math.unit(0.315, "meter"),
  4220. name: "Talons",
  4221. image: {
  4222. source: "./media/characters/noah/talons.svg"
  4223. }
  4224. }
  4225. },
  4226. [
  4227. {
  4228. name: "Large",
  4229. height: math.unit(50, "feet")
  4230. },
  4231. {
  4232. name: "Macro",
  4233. height: math.unit(750, "feet"),
  4234. default: true
  4235. },
  4236. {
  4237. name: "Megamacro",
  4238. height: math.unit(50, "miles")
  4239. },
  4240. {
  4241. name: "Gigamacro",
  4242. height: math.unit(100000, "miles")
  4243. },
  4244. {
  4245. name: "Full-Size",
  4246. height: math.unit(3000000000, "miles")
  4247. }
  4248. ]
  4249. ))
  4250. characterMakers.push(() => makeCharacter(
  4251. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4252. {
  4253. front: {
  4254. height: math.unit(2, "meter"),
  4255. weight: math.unit(80, "kg"),
  4256. name: "Front",
  4257. image: {
  4258. source: "./media/characters/natalya/front.svg"
  4259. }
  4260. },
  4261. back: {
  4262. height: math.unit(2, "meter"),
  4263. weight: math.unit(80, "kg"),
  4264. name: "Back",
  4265. image: {
  4266. source: "./media/characters/natalya/back.svg"
  4267. }
  4268. }
  4269. },
  4270. [
  4271. {
  4272. name: "Normal",
  4273. height: math.unit(150, "feet"),
  4274. default: true
  4275. },
  4276. {
  4277. name: "Megamacro",
  4278. height: math.unit(5, "miles")
  4279. },
  4280. {
  4281. name: "Full-Size",
  4282. height: math.unit(600, "kiloparsecs")
  4283. }
  4284. ]
  4285. ))
  4286. characterMakers.push(() => makeCharacter(
  4287. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4288. {
  4289. front: {
  4290. height: math.unit(2, "meter"),
  4291. weight: math.unit(50, "kg"),
  4292. name: "Front",
  4293. image: {
  4294. source: "./media/characters/erestrebah/front.svg",
  4295. extra: 1262/1162,
  4296. bottom: 96/1358
  4297. }
  4298. },
  4299. back: {
  4300. height: math.unit(2, "meter"),
  4301. weight: math.unit(50, "kg"),
  4302. name: "Back",
  4303. image: {
  4304. source: "./media/characters/erestrebah/back.svg",
  4305. extra: 1257/1139,
  4306. bottom: 13/1270
  4307. }
  4308. },
  4309. wing: {
  4310. height: math.unit(2, "meter"),
  4311. weight: math.unit(50, "kg"),
  4312. name: "Wing",
  4313. image: {
  4314. source: "./media/characters/erestrebah/wing.svg",
  4315. extra: 1262/1162,
  4316. bottom: 96/1358
  4317. }
  4318. },
  4319. mouth: {
  4320. height: math.unit(0.39, "feet"),
  4321. name: "Mouth",
  4322. image: {
  4323. source: "./media/characters/erestrebah/mouth.svg"
  4324. }
  4325. }
  4326. },
  4327. [
  4328. {
  4329. name: "Normal",
  4330. height: math.unit(10, "feet")
  4331. },
  4332. {
  4333. name: "Large",
  4334. height: math.unit(50, "feet"),
  4335. default: true
  4336. },
  4337. {
  4338. name: "Macro",
  4339. height: math.unit(300, "feet")
  4340. },
  4341. {
  4342. name: "Macro+",
  4343. height: math.unit(750, "feet")
  4344. },
  4345. {
  4346. name: "Megamacro",
  4347. height: math.unit(3, "miles")
  4348. }
  4349. ]
  4350. ))
  4351. characterMakers.push(() => makeCharacter(
  4352. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4353. {
  4354. front: {
  4355. height: math.unit(2, "meter"),
  4356. weight: math.unit(80, "kg"),
  4357. name: "Front",
  4358. image: {
  4359. source: "./media/characters/jennifer/front.svg",
  4360. bottom: 0.11,
  4361. extra: 1.16
  4362. }
  4363. },
  4364. frontAlt: {
  4365. height: math.unit(2, "meter"),
  4366. weight: math.unit(80, "kg"),
  4367. name: "Front (Alt)",
  4368. image: {
  4369. source: "./media/characters/jennifer/front-alt.svg"
  4370. }
  4371. }
  4372. },
  4373. [
  4374. {
  4375. name: "Canon Height",
  4376. height: math.unit(120, "feet"),
  4377. default: true
  4378. },
  4379. {
  4380. name: "Macro+",
  4381. height: math.unit(300, "feet")
  4382. },
  4383. {
  4384. name: "Megamacro",
  4385. height: math.unit(20000, "feet")
  4386. }
  4387. ]
  4388. ))
  4389. characterMakers.push(() => makeCharacter(
  4390. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4391. {
  4392. front: {
  4393. height: math.unit(2, "meter"),
  4394. weight: math.unit(50, "kg"),
  4395. name: "Front",
  4396. image: {
  4397. source: "./media/characters/kalista/front.svg",
  4398. extra: 1314/1145,
  4399. bottom: 101/1415
  4400. }
  4401. },
  4402. back: {
  4403. height: math.unit(2, "meter"),
  4404. weight: math.unit(50, "kg"),
  4405. name: "Back",
  4406. image: {
  4407. source: "./media/characters/kalista/back.svg",
  4408. extra: 1366 / 1156,
  4409. bottom: 33.9 / 1362.78
  4410. }
  4411. }
  4412. },
  4413. [
  4414. {
  4415. name: "Uncomfortably Small",
  4416. height: math.unit(10, "feet")
  4417. },
  4418. {
  4419. name: "Small",
  4420. height: math.unit(30, "feet")
  4421. },
  4422. {
  4423. name: "Macro",
  4424. height: math.unit(100, "feet"),
  4425. default: true
  4426. },
  4427. {
  4428. name: "Macro+",
  4429. height: math.unit(2000, "feet")
  4430. },
  4431. {
  4432. name: "True Form",
  4433. height: math.unit(8924, "miles")
  4434. }
  4435. ]
  4436. ))
  4437. characterMakers.push(() => makeCharacter(
  4438. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4439. {
  4440. front: {
  4441. height: math.unit(2, "meter"),
  4442. weight: math.unit(120, "kg"),
  4443. name: "Front",
  4444. image: {
  4445. source: "./media/characters/ggv/front.svg"
  4446. }
  4447. },
  4448. side: {
  4449. height: math.unit(2, "meter"),
  4450. weight: math.unit(120, "kg"),
  4451. name: "Side",
  4452. image: {
  4453. source: "./media/characters/ggv/side.svg"
  4454. }
  4455. }
  4456. },
  4457. [
  4458. {
  4459. name: "Extremely Puny",
  4460. height: math.unit(9 + 5 / 12, "feet")
  4461. },
  4462. {
  4463. name: "Horribly Small",
  4464. height: math.unit(47.7, "miles"),
  4465. default: true
  4466. },
  4467. {
  4468. name: "Reasonably Sized",
  4469. height: math.unit(25000, "parsecs")
  4470. },
  4471. {
  4472. name: "Slightly Uncompressed",
  4473. height: math.unit(7.77e31, "parsecs")
  4474. },
  4475. {
  4476. name: "Omniversal",
  4477. height: math.unit(1e300, "meters")
  4478. },
  4479. ]
  4480. ))
  4481. characterMakers.push(() => makeCharacter(
  4482. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4483. {
  4484. front: {
  4485. height: math.unit(2, "meter"),
  4486. weight: math.unit(75, "lb"),
  4487. name: "Front",
  4488. image: {
  4489. source: "./media/characters/napalm/front.svg"
  4490. }
  4491. },
  4492. back: {
  4493. height: math.unit(2, "meter"),
  4494. weight: math.unit(75, "lb"),
  4495. name: "Back",
  4496. image: {
  4497. source: "./media/characters/napalm/back.svg"
  4498. }
  4499. }
  4500. },
  4501. [
  4502. {
  4503. name: "Standard",
  4504. height: math.unit(55, "feet"),
  4505. default: true
  4506. }
  4507. ]
  4508. ))
  4509. characterMakers.push(() => makeCharacter(
  4510. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4511. {
  4512. front: {
  4513. height: math.unit(7 + 5 / 6, "feet"),
  4514. weight: math.unit(325, "lb"),
  4515. name: "Front",
  4516. image: {
  4517. source: "./media/characters/asana/front.svg",
  4518. extra: 1133 / 1060,
  4519. bottom: 15.2 / 1148.6
  4520. }
  4521. },
  4522. back: {
  4523. height: math.unit(7 + 5 / 6, "feet"),
  4524. weight: math.unit(325, "lb"),
  4525. name: "Back",
  4526. image: {
  4527. source: "./media/characters/asana/back.svg",
  4528. extra: 1114 / 1043,
  4529. bottom: 5 / 1120
  4530. }
  4531. },
  4532. dressedDark: {
  4533. height: math.unit(7 + 5 / 6, "feet"),
  4534. weight: math.unit(325, "lb"),
  4535. name: "Dressed (Dark)",
  4536. image: {
  4537. source: "./media/characters/asana/dressed-dark.svg",
  4538. extra: 1133 / 1060,
  4539. bottom: 15.2 / 1148.6
  4540. }
  4541. },
  4542. dressedLight: {
  4543. height: math.unit(7 + 5 / 6, "feet"),
  4544. weight: math.unit(325, "lb"),
  4545. name: "Dressed (Light)",
  4546. image: {
  4547. source: "./media/characters/asana/dressed-light.svg",
  4548. extra: 1133 / 1060,
  4549. bottom: 15.2 / 1148.6
  4550. }
  4551. },
  4552. },
  4553. [
  4554. {
  4555. name: "Standard",
  4556. height: math.unit(7 + 5 / 6, "feet"),
  4557. default: true
  4558. },
  4559. {
  4560. name: "Large",
  4561. height: math.unit(10, "meters")
  4562. },
  4563. {
  4564. name: "Macro",
  4565. height: math.unit(2500, "meters")
  4566. },
  4567. {
  4568. name: "Megamacro",
  4569. height: math.unit(5e6, "meters")
  4570. },
  4571. {
  4572. name: "Examacro",
  4573. height: math.unit(5e12, "lightyears")
  4574. },
  4575. {
  4576. name: "Max Size",
  4577. height: math.unit(1e31, "lightyears")
  4578. }
  4579. ]
  4580. ))
  4581. characterMakers.push(() => makeCharacter(
  4582. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4583. {
  4584. front: {
  4585. height: math.unit(2, "meter"),
  4586. weight: math.unit(60, "kg"),
  4587. name: "Front",
  4588. image: {
  4589. source: "./media/characters/ebony/front.svg",
  4590. bottom: 0.03,
  4591. extra: 1045 / 810 + 0.03
  4592. }
  4593. },
  4594. side: {
  4595. height: math.unit(2, "meter"),
  4596. weight: math.unit(60, "kg"),
  4597. name: "Side",
  4598. image: {
  4599. source: "./media/characters/ebony/side.svg",
  4600. bottom: 0.03,
  4601. extra: 1045 / 810 + 0.03
  4602. }
  4603. },
  4604. back: {
  4605. height: math.unit(2, "meter"),
  4606. weight: math.unit(60, "kg"),
  4607. name: "Back",
  4608. image: {
  4609. source: "./media/characters/ebony/back.svg",
  4610. bottom: 0.01,
  4611. extra: 1045 / 810 + 0.01
  4612. }
  4613. },
  4614. },
  4615. [
  4616. // TODO check why I did this lol
  4617. {
  4618. name: "Standard",
  4619. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4620. default: true
  4621. },
  4622. {
  4623. name: "Macro",
  4624. height: math.unit(200, "feet")
  4625. },
  4626. {
  4627. name: "Gigamacro",
  4628. height: math.unit(13000, "km")
  4629. }
  4630. ]
  4631. ))
  4632. characterMakers.push(() => makeCharacter(
  4633. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4634. {
  4635. front: {
  4636. height: math.unit(6, "feet"),
  4637. weight: math.unit(175, "lb"),
  4638. name: "Front",
  4639. image: {
  4640. source: "./media/characters/mountain/front.svg",
  4641. extra: 972 / 955,
  4642. bottom: 64 / 1036.6
  4643. }
  4644. },
  4645. back: {
  4646. height: math.unit(6, "feet"),
  4647. weight: math.unit(175, "lb"),
  4648. name: "Back",
  4649. image: {
  4650. source: "./media/characters/mountain/back.svg",
  4651. extra: 970 / 950,
  4652. bottom: 28.25 / 999
  4653. }
  4654. },
  4655. },
  4656. [
  4657. {
  4658. name: "Large",
  4659. height: math.unit(20, "meters")
  4660. },
  4661. {
  4662. name: "Macro",
  4663. height: math.unit(300, "meters")
  4664. },
  4665. {
  4666. name: "Gigamacro",
  4667. height: math.unit(10000, "km"),
  4668. default: true
  4669. },
  4670. {
  4671. name: "Examacro",
  4672. height: math.unit(10e9, "lightyears")
  4673. }
  4674. ]
  4675. ))
  4676. characterMakers.push(() => makeCharacter(
  4677. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4678. {
  4679. front: {
  4680. height: math.unit(8, "feet"),
  4681. weight: math.unit(500, "lb"),
  4682. name: "Front",
  4683. image: {
  4684. source: "./media/characters/rick/front.svg"
  4685. }
  4686. }
  4687. },
  4688. [
  4689. {
  4690. name: "Normal",
  4691. height: math.unit(8, "feet"),
  4692. default: true
  4693. },
  4694. {
  4695. name: "Macro",
  4696. height: math.unit(5, "km")
  4697. }
  4698. ]
  4699. ))
  4700. characterMakers.push(() => makeCharacter(
  4701. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4702. {
  4703. front: {
  4704. height: math.unit(8, "feet"),
  4705. weight: math.unit(120, "lb"),
  4706. name: "Front",
  4707. image: {
  4708. source: "./media/characters/ona/front.svg"
  4709. }
  4710. },
  4711. frontAlt: {
  4712. height: math.unit(8, "feet"),
  4713. weight: math.unit(120, "lb"),
  4714. name: "Front (Alt)",
  4715. image: {
  4716. source: "./media/characters/ona/front-alt.svg"
  4717. }
  4718. },
  4719. back: {
  4720. height: math.unit(8, "feet"),
  4721. weight: math.unit(120, "lb"),
  4722. name: "Back",
  4723. image: {
  4724. source: "./media/characters/ona/back.svg"
  4725. }
  4726. },
  4727. foot: {
  4728. height: math.unit(1.1, "feet"),
  4729. name: "Foot",
  4730. image: {
  4731. source: "./media/characters/ona/foot.svg"
  4732. }
  4733. }
  4734. },
  4735. [
  4736. {
  4737. name: "Megamacro",
  4738. height: math.unit(70, "km"),
  4739. default: true
  4740. },
  4741. {
  4742. name: "Gigamacro",
  4743. height: math.unit(681818, "miles")
  4744. },
  4745. {
  4746. name: "Examacro",
  4747. height: math.unit(3800000, "lightyears")
  4748. },
  4749. ]
  4750. ))
  4751. characterMakers.push(() => makeCharacter(
  4752. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4753. {
  4754. front: {
  4755. height: math.unit(12, "feet"),
  4756. weight: math.unit(3000, "lb"),
  4757. name: "Front",
  4758. image: {
  4759. source: "./media/characters/mech/front.svg",
  4760. extra: 2900 / 2770,
  4761. bottom: 110 / 3010
  4762. }
  4763. },
  4764. back: {
  4765. height: math.unit(12, "feet"),
  4766. weight: math.unit(3000, "lb"),
  4767. name: "Back",
  4768. image: {
  4769. source: "./media/characters/mech/back.svg",
  4770. extra: 3011 / 2890,
  4771. bottom: 94 / 3105
  4772. }
  4773. },
  4774. maw: {
  4775. height: math.unit(3.07, "feet"),
  4776. name: "Maw",
  4777. image: {
  4778. source: "./media/characters/mech/maw.svg"
  4779. }
  4780. },
  4781. head: {
  4782. height: math.unit(3.07, "feet"),
  4783. name: "Head",
  4784. image: {
  4785. source: "./media/characters/mech/head.svg"
  4786. }
  4787. },
  4788. dick: {
  4789. height: math.unit(1.43, "feet"),
  4790. name: "Dick",
  4791. image: {
  4792. source: "./media/characters/mech/dick.svg"
  4793. }
  4794. },
  4795. },
  4796. [
  4797. {
  4798. name: "Normal",
  4799. height: math.unit(12, "feet")
  4800. },
  4801. {
  4802. name: "Macro",
  4803. height: math.unit(300, "feet"),
  4804. default: true
  4805. },
  4806. {
  4807. name: "Macro+",
  4808. height: math.unit(1500, "feet")
  4809. },
  4810. ]
  4811. ))
  4812. characterMakers.push(() => makeCharacter(
  4813. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4814. {
  4815. front: {
  4816. height: math.unit(1.3, "meter"),
  4817. weight: math.unit(30, "kg"),
  4818. name: "Front",
  4819. image: {
  4820. source: "./media/characters/gregory/front.svg",
  4821. }
  4822. }
  4823. },
  4824. [
  4825. {
  4826. name: "Normal",
  4827. height: math.unit(1.3, "meter"),
  4828. default: true
  4829. },
  4830. {
  4831. name: "Macro",
  4832. height: math.unit(20, "meter")
  4833. }
  4834. ]
  4835. ))
  4836. characterMakers.push(() => makeCharacter(
  4837. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4838. {
  4839. front: {
  4840. height: math.unit(2.8, "meter"),
  4841. weight: math.unit(200, "kg"),
  4842. name: "Front",
  4843. image: {
  4844. source: "./media/characters/elory/front.svg",
  4845. }
  4846. }
  4847. },
  4848. [
  4849. {
  4850. name: "Normal",
  4851. height: math.unit(2.8, "meter"),
  4852. default: true
  4853. },
  4854. {
  4855. name: "Macro",
  4856. height: math.unit(38, "meter")
  4857. }
  4858. ]
  4859. ))
  4860. characterMakers.push(() => makeCharacter(
  4861. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4862. {
  4863. front: {
  4864. height: math.unit(470, "feet"),
  4865. weight: math.unit(924, "tons"),
  4866. name: "Front",
  4867. image: {
  4868. source: "./media/characters/angelpatamon/front.svg",
  4869. }
  4870. }
  4871. },
  4872. [
  4873. {
  4874. name: "Normal",
  4875. height: math.unit(470, "feet"),
  4876. default: true
  4877. },
  4878. {
  4879. name: "Deity Size I",
  4880. height: math.unit(28651.2, "km")
  4881. },
  4882. {
  4883. name: "Deity Size II",
  4884. height: math.unit(171907.2, "km")
  4885. }
  4886. ]
  4887. ))
  4888. characterMakers.push(() => makeCharacter(
  4889. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4890. {
  4891. side: {
  4892. height: math.unit(7.2, "meter"),
  4893. weight: math.unit(8.2, "tons"),
  4894. name: "Side",
  4895. image: {
  4896. source: "./media/characters/cryae/side.svg",
  4897. extra: 3500 / 1500
  4898. }
  4899. }
  4900. },
  4901. [
  4902. {
  4903. name: "Normal",
  4904. height: math.unit(7.2, "meter"),
  4905. default: true
  4906. }
  4907. ]
  4908. ))
  4909. characterMakers.push(() => makeCharacter(
  4910. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4911. {
  4912. front: {
  4913. height: math.unit(6, "feet"),
  4914. weight: math.unit(175, "lb"),
  4915. name: "Front",
  4916. image: {
  4917. source: "./media/characters/xera/front.svg",
  4918. extra: 2377 / 1972,
  4919. bottom: 75.5 / 2452
  4920. }
  4921. },
  4922. side: {
  4923. height: math.unit(6, "feet"),
  4924. weight: math.unit(175, "lb"),
  4925. name: "Side",
  4926. image: {
  4927. source: "./media/characters/xera/side.svg",
  4928. extra: 2345 / 2019,
  4929. bottom: 39.7 / 2384
  4930. }
  4931. },
  4932. back: {
  4933. height: math.unit(6, "feet"),
  4934. weight: math.unit(175, "lb"),
  4935. name: "Back",
  4936. image: {
  4937. source: "./media/characters/xera/back.svg",
  4938. extra: 2095 / 1984,
  4939. bottom: 67 / 2166
  4940. }
  4941. },
  4942. },
  4943. [
  4944. {
  4945. name: "Small",
  4946. height: math.unit(10, "feet")
  4947. },
  4948. {
  4949. name: "Macro",
  4950. height: math.unit(500, "meters"),
  4951. default: true
  4952. },
  4953. {
  4954. name: "Macro+",
  4955. height: math.unit(10, "km")
  4956. },
  4957. {
  4958. name: "Gigamacro",
  4959. height: math.unit(25000, "km")
  4960. },
  4961. {
  4962. name: "Teramacro",
  4963. height: math.unit(3e6, "km")
  4964. }
  4965. ]
  4966. ))
  4967. characterMakers.push(() => makeCharacter(
  4968. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4969. {
  4970. front: {
  4971. height: math.unit(6, "feet"),
  4972. weight: math.unit(175, "lb"),
  4973. name: "Front",
  4974. image: {
  4975. source: "./media/characters/nebula/front.svg",
  4976. extra: 2566 / 2362,
  4977. bottom: 81 / 2644
  4978. }
  4979. }
  4980. },
  4981. [
  4982. {
  4983. name: "Small",
  4984. height: math.unit(4.5, "meters")
  4985. },
  4986. {
  4987. name: "Macro",
  4988. height: math.unit(1500, "meters"),
  4989. default: true
  4990. },
  4991. {
  4992. name: "Megamacro",
  4993. height: math.unit(150, "km")
  4994. },
  4995. {
  4996. name: "Gigamacro",
  4997. height: math.unit(27000, "km")
  4998. }
  4999. ]
  5000. ))
  5001. characterMakers.push(() => makeCharacter(
  5002. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  5003. {
  5004. front: {
  5005. height: math.unit(6, "feet"),
  5006. weight: math.unit(225, "lb"),
  5007. name: "Front",
  5008. image: {
  5009. source: "./media/characters/abysgar/front.svg",
  5010. extra: 1739/1614,
  5011. bottom: 71/1810
  5012. }
  5013. },
  5014. frontNsfw: {
  5015. height: math.unit(6, "feet"),
  5016. weight: math.unit(225, "lb"),
  5017. name: "Front (NSFW)",
  5018. image: {
  5019. source: "./media/characters/abysgar/front-nsfw.svg",
  5020. extra: 1739/1614,
  5021. bottom: 71/1810
  5022. }
  5023. },
  5024. back: {
  5025. height: math.unit(4.6, "feet"),
  5026. weight: math.unit(225, "lb"),
  5027. name: "Back",
  5028. image: {
  5029. source: "./media/characters/abysgar/back.svg",
  5030. extra: 1384/1327,
  5031. bottom: 0/1384
  5032. }
  5033. },
  5034. head: {
  5035. height: math.unit(1.25, "feet"),
  5036. name: "Head",
  5037. image: {
  5038. source: "./media/characters/abysgar/head.svg",
  5039. extra: 669/569,
  5040. bottom: 0/669
  5041. }
  5042. },
  5043. },
  5044. [
  5045. {
  5046. name: "Small",
  5047. height: math.unit(4.5, "meters")
  5048. },
  5049. {
  5050. name: "Macro",
  5051. height: math.unit(1250, "meters"),
  5052. default: true
  5053. },
  5054. {
  5055. name: "Megamacro",
  5056. height: math.unit(125, "km")
  5057. },
  5058. {
  5059. name: "Gigamacro",
  5060. height: math.unit(26000, "km")
  5061. }
  5062. ]
  5063. ))
  5064. characterMakers.push(() => makeCharacter(
  5065. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5066. {
  5067. front: {
  5068. height: math.unit(6, "feet"),
  5069. weight: math.unit(180, "lb"),
  5070. name: "Front",
  5071. image: {
  5072. source: "./media/characters/yakuz/front.svg"
  5073. }
  5074. }
  5075. },
  5076. [
  5077. {
  5078. name: "Small",
  5079. height: math.unit(5, "meters")
  5080. },
  5081. {
  5082. name: "Macro",
  5083. height: math.unit(1500, "meters"),
  5084. default: true
  5085. },
  5086. {
  5087. name: "Megamacro",
  5088. height: math.unit(200, "km")
  5089. },
  5090. {
  5091. name: "Gigamacro",
  5092. height: math.unit(100000, "km")
  5093. }
  5094. ]
  5095. ))
  5096. characterMakers.push(() => makeCharacter(
  5097. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5098. {
  5099. front: {
  5100. height: math.unit(6, "feet"),
  5101. weight: math.unit(175, "lb"),
  5102. name: "Front",
  5103. image: {
  5104. source: "./media/characters/mirova/front.svg",
  5105. extra: 3334 / 3071,
  5106. bottom: 42 / 3375.6
  5107. }
  5108. }
  5109. },
  5110. [
  5111. {
  5112. name: "Small",
  5113. height: math.unit(5, "meters")
  5114. },
  5115. {
  5116. name: "Macro",
  5117. height: math.unit(900, "meters"),
  5118. default: true
  5119. },
  5120. {
  5121. name: "Megamacro",
  5122. height: math.unit(135, "km")
  5123. },
  5124. {
  5125. name: "Gigamacro",
  5126. height: math.unit(20000, "km")
  5127. }
  5128. ]
  5129. ))
  5130. characterMakers.push(() => makeCharacter(
  5131. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5132. {
  5133. side: {
  5134. height: math.unit(28.35, "feet"),
  5135. weight: math.unit(99.75, "tons"),
  5136. name: "Side",
  5137. image: {
  5138. source: "./media/characters/asana-mech/side.svg",
  5139. extra: 923 / 699,
  5140. bottom: 50 / 975
  5141. }
  5142. },
  5143. chaingun: {
  5144. height: math.unit(7, "feet"),
  5145. weight: math.unit(2400, "lb"),
  5146. name: "Chaingun",
  5147. image: {
  5148. source: "./media/characters/asana-mech/chaingun.svg"
  5149. }
  5150. },
  5151. laser: {
  5152. height: math.unit(7.12, "feet"),
  5153. weight: math.unit(2000, "lb"),
  5154. name: "Laser",
  5155. image: {
  5156. source: "./media/characters/asana-mech/laser.svg"
  5157. }
  5158. },
  5159. },
  5160. [
  5161. {
  5162. name: "Normal",
  5163. height: math.unit(28.35, "feet"),
  5164. default: true
  5165. },
  5166. {
  5167. name: "Macro",
  5168. height: math.unit(2500, "feet")
  5169. },
  5170. {
  5171. name: "Megamacro",
  5172. height: math.unit(25, "miles")
  5173. },
  5174. {
  5175. name: "Examacro",
  5176. height: math.unit(6e8, "lightyears")
  5177. },
  5178. ]
  5179. ))
  5180. characterMakers.push(() => makeCharacter(
  5181. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5182. {
  5183. front: {
  5184. height: math.unit(5, "meters"),
  5185. weight: math.unit(1000, "kg"),
  5186. name: "Front",
  5187. image: {
  5188. source: "./media/characters/asche/front.svg",
  5189. extra: 1258 / 1190,
  5190. bottom: 47 / 1305
  5191. }
  5192. },
  5193. frontUnderwear: {
  5194. height: math.unit(5, "meters"),
  5195. weight: math.unit(1000, "kg"),
  5196. name: "Front (Underwear)",
  5197. image: {
  5198. source: "./media/characters/asche/front-underwear.svg",
  5199. extra: 1258 / 1190,
  5200. bottom: 47 / 1305
  5201. }
  5202. },
  5203. frontDressed: {
  5204. height: math.unit(5, "meters"),
  5205. weight: math.unit(1000, "kg"),
  5206. name: "Front (Dressed)",
  5207. image: {
  5208. source: "./media/characters/asche/front-dressed.svg",
  5209. extra: 1258 / 1190,
  5210. bottom: 47 / 1305
  5211. }
  5212. },
  5213. frontArmor: {
  5214. height: math.unit(5, "meters"),
  5215. weight: math.unit(1000, "kg"),
  5216. name: "Front (Armored)",
  5217. image: {
  5218. source: "./media/characters/asche/front-armored.svg",
  5219. extra: 1374 / 1308,
  5220. bottom: 23 / 1397
  5221. }
  5222. },
  5223. mp724: {
  5224. height: math.unit(0.96, "meters"),
  5225. weight: math.unit(38, "kg"),
  5226. name: "H&K MP724",
  5227. image: {
  5228. source: "./media/characters/asche/h&k-mp724.svg"
  5229. }
  5230. },
  5231. side: {
  5232. height: math.unit(5, "meters"),
  5233. weight: math.unit(1000, "kg"),
  5234. name: "Side",
  5235. image: {
  5236. source: "./media/characters/asche/side.svg",
  5237. extra: 1717 / 1609,
  5238. bottom: 0.005
  5239. }
  5240. },
  5241. back: {
  5242. height: math.unit(5, "meters"),
  5243. weight: math.unit(1000, "kg"),
  5244. name: "Back",
  5245. image: {
  5246. source: "./media/characters/asche/back.svg",
  5247. extra: 1570 / 1501
  5248. }
  5249. },
  5250. },
  5251. [
  5252. {
  5253. name: "DEFCON 5",
  5254. height: math.unit(5, "meters")
  5255. },
  5256. {
  5257. name: "DEFCON 4",
  5258. height: math.unit(500, "meters"),
  5259. default: true
  5260. },
  5261. {
  5262. name: "DEFCON 3",
  5263. height: math.unit(5, "km")
  5264. },
  5265. {
  5266. name: "DEFCON 2",
  5267. height: math.unit(500, "km")
  5268. },
  5269. {
  5270. name: "DEFCON 1",
  5271. height: math.unit(500000, "km")
  5272. },
  5273. {
  5274. name: "DEFCON 0",
  5275. height: math.unit(3, "gigaparsecs")
  5276. },
  5277. ]
  5278. ))
  5279. characterMakers.push(() => makeCharacter(
  5280. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5281. {
  5282. front: {
  5283. height: math.unit(2, "meters"),
  5284. weight: math.unit(76, "kg"),
  5285. name: "Front",
  5286. image: {
  5287. source: "./media/characters/gale/front.svg"
  5288. }
  5289. },
  5290. frontAlt1: {
  5291. height: math.unit(2, "meters"),
  5292. weight: math.unit(76, "kg"),
  5293. name: "Front (Alt 1)",
  5294. image: {
  5295. source: "./media/characters/gale/front-alt-1.svg"
  5296. }
  5297. },
  5298. frontAlt2: {
  5299. height: math.unit(2, "meters"),
  5300. weight: math.unit(76, "kg"),
  5301. name: "Front (Alt 2)",
  5302. image: {
  5303. source: "./media/characters/gale/front-alt-2.svg"
  5304. }
  5305. },
  5306. },
  5307. [
  5308. {
  5309. name: "Normal",
  5310. height: math.unit(7, "feet")
  5311. },
  5312. {
  5313. name: "Macro",
  5314. height: math.unit(150, "feet"),
  5315. default: true
  5316. },
  5317. {
  5318. name: "Macro+",
  5319. height: math.unit(300, "feet")
  5320. },
  5321. ]
  5322. ))
  5323. characterMakers.push(() => makeCharacter(
  5324. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5325. {
  5326. front: {
  5327. height: math.unit(5 + 10/12, "feet"),
  5328. weight: math.unit(67, "kg"),
  5329. name: "Front",
  5330. image: {
  5331. source: "./media/characters/draylen/front.svg",
  5332. extra: 832/777,
  5333. bottom: 85/917
  5334. }
  5335. }
  5336. },
  5337. [
  5338. {
  5339. name: "Normal",
  5340. height: math.unit(5 + 10/12, "feet")
  5341. },
  5342. {
  5343. name: "Macro",
  5344. height: math.unit(150, "feet"),
  5345. default: true
  5346. }
  5347. ]
  5348. ))
  5349. characterMakers.push(() => makeCharacter(
  5350. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5351. {
  5352. front: {
  5353. height: math.unit(7 + 9 / 12, "feet"),
  5354. weight: math.unit(379, "lbs"),
  5355. name: "Front",
  5356. image: {
  5357. source: "./media/characters/chez/front.svg"
  5358. }
  5359. },
  5360. side: {
  5361. height: math.unit(7 + 9 / 12, "feet"),
  5362. weight: math.unit(379, "lbs"),
  5363. name: "Side",
  5364. image: {
  5365. source: "./media/characters/chez/side.svg"
  5366. }
  5367. }
  5368. },
  5369. [
  5370. {
  5371. name: "Normal",
  5372. height: math.unit(7 + 9 / 12, "feet"),
  5373. default: true
  5374. },
  5375. {
  5376. name: "God King",
  5377. height: math.unit(9750000, "meters")
  5378. }
  5379. ]
  5380. ))
  5381. characterMakers.push(() => makeCharacter(
  5382. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5383. {
  5384. front: {
  5385. height: math.unit(6, "feet"),
  5386. weight: math.unit(275, "lbs"),
  5387. name: "Front",
  5388. image: {
  5389. source: "./media/characters/kaylum/front.svg",
  5390. bottom: 0.01,
  5391. extra: 1166 / 1031
  5392. }
  5393. },
  5394. frontWingless: {
  5395. height: math.unit(6, "feet"),
  5396. weight: math.unit(275, "lbs"),
  5397. name: "Front (Wingless)",
  5398. image: {
  5399. source: "./media/characters/kaylum/front-wingless.svg",
  5400. bottom: 0.01,
  5401. extra: 1117 / 1031
  5402. }
  5403. }
  5404. },
  5405. [
  5406. {
  5407. name: "Normal",
  5408. height: math.unit(3.05, "meters")
  5409. },
  5410. {
  5411. name: "Master",
  5412. height: math.unit(5.5, "meters")
  5413. },
  5414. {
  5415. name: "Rampage",
  5416. height: math.unit(19, "meters")
  5417. },
  5418. {
  5419. name: "Macro Lite",
  5420. height: math.unit(37, "meters")
  5421. },
  5422. {
  5423. name: "Hyper Predator",
  5424. height: math.unit(61, "meters")
  5425. },
  5426. {
  5427. name: "Macro",
  5428. height: math.unit(138, "meters"),
  5429. default: true
  5430. }
  5431. ]
  5432. ))
  5433. characterMakers.push(() => makeCharacter(
  5434. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5435. {
  5436. front: {
  5437. height: math.unit(5 + 5 / 12, "feet"),
  5438. weight: math.unit(120, "lbs"),
  5439. name: "Front",
  5440. image: {
  5441. source: "./media/characters/geta/front.svg",
  5442. extra: 1003/933,
  5443. bottom: 21/1024
  5444. }
  5445. },
  5446. paw: {
  5447. height: math.unit(0.35, "feet"),
  5448. name: "Paw",
  5449. image: {
  5450. source: "./media/characters/geta/paw.svg"
  5451. }
  5452. },
  5453. },
  5454. [
  5455. {
  5456. name: "Micro",
  5457. height: math.unit(3, "inches"),
  5458. default: true
  5459. },
  5460. {
  5461. name: "Normal",
  5462. height: math.unit(5 + 5 / 12, "feet")
  5463. }
  5464. ]
  5465. ))
  5466. characterMakers.push(() => makeCharacter(
  5467. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5468. {
  5469. front: {
  5470. height: math.unit(6, "feet"),
  5471. weight: math.unit(300, "lbs"),
  5472. name: "Front",
  5473. image: {
  5474. source: "./media/characters/tyrnn/front.svg"
  5475. }
  5476. }
  5477. },
  5478. [
  5479. {
  5480. name: "Main Height",
  5481. height: math.unit(355, "feet"),
  5482. default: true
  5483. },
  5484. {
  5485. name: "Fave. Height",
  5486. height: math.unit(2400, "feet")
  5487. }
  5488. ]
  5489. ))
  5490. characterMakers.push(() => makeCharacter(
  5491. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5492. {
  5493. front: {
  5494. height: math.unit(6, "feet"),
  5495. weight: math.unit(300, "lbs"),
  5496. name: "Front",
  5497. image: {
  5498. source: "./media/characters/appledectomy/front.svg"
  5499. }
  5500. }
  5501. },
  5502. [
  5503. {
  5504. name: "Macro",
  5505. height: math.unit(2500, "feet")
  5506. },
  5507. {
  5508. name: "Megamacro",
  5509. height: math.unit(50, "miles"),
  5510. default: true
  5511. },
  5512. {
  5513. name: "Gigamacro",
  5514. height: math.unit(5000, "miles")
  5515. },
  5516. {
  5517. name: "Teramacro",
  5518. height: math.unit(250000, "miles")
  5519. },
  5520. ]
  5521. ))
  5522. characterMakers.push(() => makeCharacter(
  5523. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5524. {
  5525. front: {
  5526. height: math.unit(6, "feet"),
  5527. weight: math.unit(200, "lbs"),
  5528. name: "Front",
  5529. image: {
  5530. source: "./media/characters/vulpes/front.svg",
  5531. extra: 573 / 543,
  5532. bottom: 0.033
  5533. }
  5534. },
  5535. side: {
  5536. height: math.unit(6, "feet"),
  5537. weight: math.unit(200, "lbs"),
  5538. name: "Side",
  5539. image: {
  5540. source: "./media/characters/vulpes/side.svg",
  5541. extra: 577 / 549,
  5542. bottom: 11 / 588
  5543. }
  5544. },
  5545. back: {
  5546. height: math.unit(6, "feet"),
  5547. weight: math.unit(200, "lbs"),
  5548. name: "Back",
  5549. image: {
  5550. source: "./media/characters/vulpes/back.svg",
  5551. extra: 573 / 549,
  5552. bottom: 20 / 593
  5553. }
  5554. },
  5555. feet: {
  5556. height: math.unit(1.276, "feet"),
  5557. name: "Feet",
  5558. image: {
  5559. source: "./media/characters/vulpes/feet.svg"
  5560. }
  5561. },
  5562. maw: {
  5563. height: math.unit(1.18, "feet"),
  5564. name: "Maw",
  5565. image: {
  5566. source: "./media/characters/vulpes/maw.svg"
  5567. }
  5568. },
  5569. },
  5570. [
  5571. {
  5572. name: "Micro",
  5573. height: math.unit(2, "inches")
  5574. },
  5575. {
  5576. name: "Normal",
  5577. height: math.unit(6.3, "feet")
  5578. },
  5579. {
  5580. name: "Macro",
  5581. height: math.unit(850, "feet")
  5582. },
  5583. {
  5584. name: "Megamacro",
  5585. height: math.unit(7500, "feet"),
  5586. default: true
  5587. },
  5588. {
  5589. name: "Gigamacro",
  5590. height: math.unit(570000, "miles")
  5591. }
  5592. ]
  5593. ))
  5594. characterMakers.push(() => makeCharacter(
  5595. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5596. {
  5597. front: {
  5598. height: math.unit(6, "feet"),
  5599. weight: math.unit(210, "lbs"),
  5600. name: "Front",
  5601. image: {
  5602. source: "./media/characters/rain-fallen/front.svg"
  5603. }
  5604. },
  5605. side: {
  5606. height: math.unit(6, "feet"),
  5607. weight: math.unit(210, "lbs"),
  5608. name: "Side",
  5609. image: {
  5610. source: "./media/characters/rain-fallen/side.svg"
  5611. }
  5612. },
  5613. back: {
  5614. height: math.unit(6, "feet"),
  5615. weight: math.unit(210, "lbs"),
  5616. name: "Back",
  5617. image: {
  5618. source: "./media/characters/rain-fallen/back.svg"
  5619. }
  5620. },
  5621. feral: {
  5622. height: math.unit(9, "feet"),
  5623. weight: math.unit(700, "lbs"),
  5624. name: "Feral",
  5625. image: {
  5626. source: "./media/characters/rain-fallen/feral.svg"
  5627. }
  5628. },
  5629. },
  5630. [
  5631. {
  5632. name: "Meddling with Mortals",
  5633. height: math.unit(8 + 8/12, "feet")
  5634. },
  5635. {
  5636. name: "Normal",
  5637. height: math.unit(5, "meter")
  5638. },
  5639. {
  5640. name: "Macro",
  5641. height: math.unit(150, "meter"),
  5642. default: true
  5643. },
  5644. {
  5645. name: "Megamacro",
  5646. height: math.unit(278e6, "meter")
  5647. },
  5648. {
  5649. name: "Gigamacro",
  5650. height: math.unit(2e9, "meter")
  5651. },
  5652. {
  5653. name: "Teramacro",
  5654. height: math.unit(8e12, "meter")
  5655. },
  5656. {
  5657. name: "Devourer",
  5658. height: math.unit(14, "zettameters")
  5659. },
  5660. {
  5661. name: "Scarlet King",
  5662. height: math.unit(18, "yottameters")
  5663. },
  5664. {
  5665. name: "Void",
  5666. height: math.unit(1e88, "yottameters")
  5667. }
  5668. ]
  5669. ))
  5670. characterMakers.push(() => makeCharacter(
  5671. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5672. {
  5673. standing: {
  5674. height: math.unit(6, "feet"),
  5675. weight: math.unit(180, "lbs"),
  5676. name: "Standing",
  5677. image: {
  5678. source: "./media/characters/zaakira/standing.svg",
  5679. extra: 1599/1504,
  5680. bottom: 39/1638
  5681. }
  5682. },
  5683. laying: {
  5684. height: math.unit(3.3, "feet"),
  5685. weight: math.unit(180, "lbs"),
  5686. name: "Laying",
  5687. image: {
  5688. source: "./media/characters/zaakira/laying.svg"
  5689. }
  5690. },
  5691. },
  5692. [
  5693. {
  5694. name: "Normal",
  5695. height: math.unit(12, "feet")
  5696. },
  5697. {
  5698. name: "Macro",
  5699. height: math.unit(279, "feet"),
  5700. default: true
  5701. }
  5702. ]
  5703. ))
  5704. characterMakers.push(() => makeCharacter(
  5705. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5706. {
  5707. femSfw: {
  5708. height: math.unit(8, "feet"),
  5709. weight: math.unit(350, "lb"),
  5710. name: "Fem",
  5711. image: {
  5712. source: "./media/characters/sigvald/fem-sfw.svg",
  5713. extra: 182 / 164,
  5714. bottom: 8.7 / 190.5
  5715. }
  5716. },
  5717. femNsfw: {
  5718. height: math.unit(8, "feet"),
  5719. weight: math.unit(350, "lb"),
  5720. name: "Fem (NSFW)",
  5721. image: {
  5722. source: "./media/characters/sigvald/fem-nsfw.svg",
  5723. extra: 182 / 164,
  5724. bottom: 8.7 / 190.5
  5725. }
  5726. },
  5727. maleNsfw: {
  5728. height: math.unit(8, "feet"),
  5729. weight: math.unit(350, "lb"),
  5730. name: "Male (NSFW)",
  5731. image: {
  5732. source: "./media/characters/sigvald/male-nsfw.svg",
  5733. extra: 182 / 164,
  5734. bottom: 8.7 / 190.5
  5735. }
  5736. },
  5737. hermNsfw: {
  5738. height: math.unit(8, "feet"),
  5739. weight: math.unit(350, "lb"),
  5740. name: "Herm (NSFW)",
  5741. image: {
  5742. source: "./media/characters/sigvald/herm-nsfw.svg",
  5743. extra: 182 / 164,
  5744. bottom: 8.7 / 190.5
  5745. }
  5746. },
  5747. dick: {
  5748. height: math.unit(2.36, "feet"),
  5749. name: "Dick",
  5750. image: {
  5751. source: "./media/characters/sigvald/dick.svg"
  5752. }
  5753. },
  5754. eye: {
  5755. height: math.unit(0.31, "feet"),
  5756. name: "Eye",
  5757. image: {
  5758. source: "./media/characters/sigvald/eye.svg"
  5759. }
  5760. },
  5761. mouth: {
  5762. height: math.unit(0.92, "feet"),
  5763. name: "Mouth",
  5764. image: {
  5765. source: "./media/characters/sigvald/mouth.svg"
  5766. }
  5767. },
  5768. paws: {
  5769. height: math.unit(2.2, "feet"),
  5770. name: "Paws",
  5771. image: {
  5772. source: "./media/characters/sigvald/paws.svg"
  5773. }
  5774. }
  5775. },
  5776. [
  5777. {
  5778. name: "Normal",
  5779. height: math.unit(8, "feet")
  5780. },
  5781. {
  5782. name: "Large",
  5783. height: math.unit(12, "feet")
  5784. },
  5785. {
  5786. name: "Larger",
  5787. height: math.unit(20, "feet")
  5788. },
  5789. {
  5790. name: "Macro",
  5791. height: math.unit(150, "feet")
  5792. },
  5793. {
  5794. name: "Macro+",
  5795. height: math.unit(200, "feet"),
  5796. default: true
  5797. },
  5798. ]
  5799. ))
  5800. characterMakers.push(() => makeCharacter(
  5801. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5802. {
  5803. side: {
  5804. height: math.unit(12, "feet"),
  5805. weight: math.unit(2000, "kg"),
  5806. name: "Side",
  5807. image: {
  5808. source: "./media/characters/scott/side.svg",
  5809. extra: 754 / 724,
  5810. bottom: 0.069
  5811. }
  5812. },
  5813. upright: {
  5814. height: math.unit(12, "feet"),
  5815. weight: math.unit(2000, "kg"),
  5816. name: "Upright",
  5817. image: {
  5818. source: "./media/characters/scott/upright.svg",
  5819. extra: 3881 / 3722,
  5820. bottom: 0.05
  5821. }
  5822. },
  5823. },
  5824. [
  5825. {
  5826. name: "Normal",
  5827. height: math.unit(12, "feet"),
  5828. default: true
  5829. },
  5830. ]
  5831. ))
  5832. characterMakers.push(() => makeCharacter(
  5833. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5834. {
  5835. side: {
  5836. height: math.unit(8, "meters"),
  5837. weight: math.unit(84755, "lbs"),
  5838. name: "Side",
  5839. image: {
  5840. source: "./media/characters/tobias/side.svg",
  5841. extra: 1474 / 1096,
  5842. bottom: 38.9 / 1513.1235
  5843. }
  5844. },
  5845. },
  5846. [
  5847. {
  5848. name: "Normal",
  5849. height: math.unit(8, "meters"),
  5850. default: true
  5851. },
  5852. ]
  5853. ))
  5854. characterMakers.push(() => makeCharacter(
  5855. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5856. {
  5857. front: {
  5858. height: math.unit(5.5, "feet"),
  5859. weight: math.unit(400, "lbs"),
  5860. name: "Front",
  5861. image: {
  5862. source: "./media/characters/kieran/front.svg",
  5863. extra: 2694 / 2364,
  5864. bottom: 217 / 2908
  5865. }
  5866. },
  5867. side: {
  5868. height: math.unit(5.5, "feet"),
  5869. weight: math.unit(400, "lbs"),
  5870. name: "Side",
  5871. image: {
  5872. source: "./media/characters/kieran/side.svg",
  5873. extra: 875 / 777,
  5874. bottom: 84.6 / 959
  5875. }
  5876. },
  5877. },
  5878. [
  5879. {
  5880. name: "Normal",
  5881. height: math.unit(5.5, "feet"),
  5882. default: true
  5883. },
  5884. ]
  5885. ))
  5886. characterMakers.push(() => makeCharacter(
  5887. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5888. {
  5889. side: {
  5890. height: math.unit(2, "meters"),
  5891. weight: math.unit(70, "kg"),
  5892. name: "Side",
  5893. image: {
  5894. source: "./media/characters/sanya/side.svg",
  5895. bottom: 0.02,
  5896. extra: 1.02
  5897. }
  5898. },
  5899. },
  5900. [
  5901. {
  5902. name: "Small",
  5903. height: math.unit(2, "meters")
  5904. },
  5905. {
  5906. name: "Normal",
  5907. height: math.unit(3, "meters")
  5908. },
  5909. {
  5910. name: "Macro",
  5911. height: math.unit(16, "meters"),
  5912. default: true
  5913. },
  5914. ]
  5915. ))
  5916. characterMakers.push(() => makeCharacter(
  5917. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5918. {
  5919. front: {
  5920. height: math.unit(2, "meters"),
  5921. weight: math.unit(120, "kg"),
  5922. name: "Front",
  5923. image: {
  5924. source: "./media/characters/miranda/front.svg",
  5925. extra: 195 / 185,
  5926. bottom: 10.9 / 206.5
  5927. }
  5928. },
  5929. back: {
  5930. height: math.unit(2, "meters"),
  5931. weight: math.unit(120, "kg"),
  5932. name: "Back",
  5933. image: {
  5934. source: "./media/characters/miranda/back.svg",
  5935. extra: 201 / 193,
  5936. bottom: 2.3 / 203.7
  5937. }
  5938. },
  5939. },
  5940. [
  5941. {
  5942. name: "Normal",
  5943. height: math.unit(10, "feet"),
  5944. default: true
  5945. }
  5946. ]
  5947. ))
  5948. characterMakers.push(() => makeCharacter(
  5949. { name: "James", species: ["deer"], tags: ["anthro"] },
  5950. {
  5951. side: {
  5952. height: math.unit(2, "meters"),
  5953. weight: math.unit(100, "kg"),
  5954. name: "Front",
  5955. image: {
  5956. source: "./media/characters/james/front.svg",
  5957. extra: 10 / 8.5
  5958. }
  5959. },
  5960. },
  5961. [
  5962. {
  5963. name: "Normal",
  5964. height: math.unit(8.5, "feet"),
  5965. default: true
  5966. }
  5967. ]
  5968. ))
  5969. characterMakers.push(() => makeCharacter(
  5970. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5971. {
  5972. side: {
  5973. height: math.unit(9.5, "feet"),
  5974. weight: math.unit(2500, "lbs"),
  5975. name: "Side",
  5976. image: {
  5977. source: "./media/characters/heather/side.svg"
  5978. }
  5979. },
  5980. },
  5981. [
  5982. {
  5983. name: "Normal",
  5984. height: math.unit(9.5, "feet"),
  5985. default: true
  5986. }
  5987. ]
  5988. ))
  5989. characterMakers.push(() => makeCharacter(
  5990. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5991. {
  5992. side: {
  5993. height: math.unit(6.5, "feet"),
  5994. weight: math.unit(400, "lbs"),
  5995. name: "Side",
  5996. image: {
  5997. source: "./media/characters/lukas/side.svg",
  5998. extra: 7.25 / 6.5
  5999. }
  6000. },
  6001. },
  6002. [
  6003. {
  6004. name: "Normal",
  6005. height: math.unit(6.5, "feet"),
  6006. default: true
  6007. }
  6008. ]
  6009. ))
  6010. characterMakers.push(() => makeCharacter(
  6011. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  6012. {
  6013. side: {
  6014. height: math.unit(5, "feet"),
  6015. weight: math.unit(3000, "lbs"),
  6016. name: "Side",
  6017. image: {
  6018. source: "./media/characters/louise/side.svg"
  6019. }
  6020. },
  6021. },
  6022. [
  6023. {
  6024. name: "Normal",
  6025. height: math.unit(5, "feet"),
  6026. default: true
  6027. }
  6028. ]
  6029. ))
  6030. characterMakers.push(() => makeCharacter(
  6031. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6032. {
  6033. side: {
  6034. height: math.unit(6, "feet"),
  6035. weight: math.unit(150, "lbs"),
  6036. name: "Side",
  6037. image: {
  6038. source: "./media/characters/ramona/side.svg",
  6039. extra: 871/854,
  6040. bottom: 41/912
  6041. }
  6042. },
  6043. },
  6044. [
  6045. {
  6046. name: "Normal",
  6047. height: math.unit(6 + 4/12, "feet")
  6048. },
  6049. {
  6050. name: "Minimacro",
  6051. height: math.unit(5.3, "meters"),
  6052. default: true
  6053. },
  6054. {
  6055. name: "Macro",
  6056. height: math.unit(20, "stories")
  6057. },
  6058. {
  6059. name: "Macro+",
  6060. height: math.unit(50, "stories")
  6061. },
  6062. ]
  6063. ))
  6064. characterMakers.push(() => makeCharacter(
  6065. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6066. {
  6067. standing: {
  6068. height: math.unit(5.75, "feet"),
  6069. weight: math.unit(160, "lbs"),
  6070. name: "Standing",
  6071. image: {
  6072. source: "./media/characters/deerpuff/standing.svg",
  6073. extra: 682 / 624
  6074. }
  6075. },
  6076. sitting: {
  6077. height: math.unit(5.75 / 1.79, "feet"),
  6078. weight: math.unit(160, "lbs"),
  6079. name: "Sitting",
  6080. image: {
  6081. source: "./media/characters/deerpuff/sitting.svg",
  6082. bottom: 44 / 400,
  6083. extra: 1
  6084. }
  6085. },
  6086. taurLaying: {
  6087. height: math.unit(6, "feet"),
  6088. weight: math.unit(400, "lbs"),
  6089. name: "Taur (Laying)",
  6090. image: {
  6091. source: "./media/characters/deerpuff/taur-laying.svg"
  6092. }
  6093. },
  6094. },
  6095. [
  6096. {
  6097. name: "Puffball",
  6098. height: math.unit(6, "inches")
  6099. },
  6100. {
  6101. name: "Normalpuff",
  6102. height: math.unit(5.75, "feet")
  6103. },
  6104. {
  6105. name: "Macropuff",
  6106. height: math.unit(1500, "feet"),
  6107. default: true
  6108. },
  6109. {
  6110. name: "Megapuff",
  6111. height: math.unit(500, "miles")
  6112. },
  6113. {
  6114. name: "Gigapuff",
  6115. height: math.unit(250000, "miles")
  6116. },
  6117. {
  6118. name: "Omegapuff",
  6119. height: math.unit(1000, "lightyears")
  6120. },
  6121. ]
  6122. ))
  6123. characterMakers.push(() => makeCharacter(
  6124. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6125. {
  6126. stomping: {
  6127. height: math.unit(6, "feet"),
  6128. weight: math.unit(170, "lbs"),
  6129. name: "Stomping",
  6130. image: {
  6131. source: "./media/characters/vivian/stomping.svg"
  6132. }
  6133. },
  6134. sitting: {
  6135. height: math.unit(6 / 1.75, "feet"),
  6136. weight: math.unit(170, "lbs"),
  6137. name: "Sitting",
  6138. image: {
  6139. source: "./media/characters/vivian/sitting.svg",
  6140. bottom: 1 / 6.4,
  6141. extra: 1,
  6142. }
  6143. },
  6144. },
  6145. [
  6146. {
  6147. name: "Normal",
  6148. height: math.unit(7, "feet"),
  6149. default: true
  6150. },
  6151. {
  6152. name: "Macro",
  6153. height: math.unit(10, "stories")
  6154. },
  6155. {
  6156. name: "Macro+",
  6157. height: math.unit(30, "stories")
  6158. },
  6159. {
  6160. name: "Megamacro",
  6161. height: math.unit(10, "miles")
  6162. },
  6163. {
  6164. name: "Megamacro+",
  6165. height: math.unit(2750000, "meters")
  6166. },
  6167. ]
  6168. ))
  6169. characterMakers.push(() => makeCharacter(
  6170. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6171. {
  6172. front: {
  6173. height: math.unit(6, "feet"),
  6174. weight: math.unit(160, "lbs"),
  6175. name: "Front",
  6176. image: {
  6177. source: "./media/characters/prince/front.svg",
  6178. extra: 1938/1682,
  6179. bottom: 45/1983
  6180. }
  6181. },
  6182. back: {
  6183. height: math.unit(6, "feet"),
  6184. weight: math.unit(160, "lbs"),
  6185. name: "Back",
  6186. image: {
  6187. source: "./media/characters/prince/back.svg",
  6188. extra: 1955/1726,
  6189. bottom: 6/1961
  6190. }
  6191. },
  6192. },
  6193. [
  6194. {
  6195. name: "Normal",
  6196. height: math.unit(7.75, "feet"),
  6197. default: true
  6198. },
  6199. {
  6200. name: "Not cute",
  6201. height: math.unit(17, "feet")
  6202. },
  6203. {
  6204. name: "I said NOT",
  6205. height: math.unit(91, "feet")
  6206. },
  6207. {
  6208. name: "Please stop",
  6209. height: math.unit(560, "feet")
  6210. },
  6211. {
  6212. name: "What have you done",
  6213. height: math.unit(2200, "feet")
  6214. },
  6215. {
  6216. name: "Deer God",
  6217. height: math.unit(3.6, "miles")
  6218. },
  6219. ]
  6220. ))
  6221. characterMakers.push(() => makeCharacter(
  6222. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6223. {
  6224. standing: {
  6225. height: math.unit(6, "feet"),
  6226. weight: math.unit(300, "lbs"),
  6227. name: "Standing",
  6228. image: {
  6229. source: "./media/characters/psymon/standing.svg",
  6230. extra: 1888 / 1810,
  6231. bottom: 0.05
  6232. }
  6233. },
  6234. slithering: {
  6235. height: math.unit(6, "feet"),
  6236. weight: math.unit(300, "lbs"),
  6237. name: "Slithering",
  6238. image: {
  6239. source: "./media/characters/psymon/slithering.svg",
  6240. extra: 1330 / 1224
  6241. }
  6242. },
  6243. slitheringAlt: {
  6244. height: math.unit(6, "feet"),
  6245. weight: math.unit(300, "lbs"),
  6246. name: "Slithering (Alt)",
  6247. image: {
  6248. source: "./media/characters/psymon/slithering-alt.svg",
  6249. extra: 1330 / 1224
  6250. }
  6251. },
  6252. },
  6253. [
  6254. {
  6255. name: "Normal",
  6256. height: math.unit(11.25, "feet"),
  6257. default: true
  6258. },
  6259. {
  6260. name: "Large",
  6261. height: math.unit(27, "feet")
  6262. },
  6263. {
  6264. name: "Giant",
  6265. height: math.unit(87, "feet")
  6266. },
  6267. {
  6268. name: "Macro",
  6269. height: math.unit(365, "feet")
  6270. },
  6271. {
  6272. name: "Megamacro",
  6273. height: math.unit(3, "miles")
  6274. },
  6275. {
  6276. name: "World Serpent",
  6277. height: math.unit(8000, "miles")
  6278. },
  6279. ]
  6280. ))
  6281. characterMakers.push(() => makeCharacter(
  6282. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6283. {
  6284. front: {
  6285. height: math.unit(6, "feet"),
  6286. weight: math.unit(180, "lbs"),
  6287. name: "Front",
  6288. image: {
  6289. source: "./media/characters/daimos/front.svg",
  6290. extra: 4160 / 3897,
  6291. bottom: 0.021
  6292. }
  6293. }
  6294. },
  6295. [
  6296. {
  6297. name: "Normal",
  6298. height: math.unit(8, "feet"),
  6299. default: true
  6300. },
  6301. {
  6302. name: "Big Dog",
  6303. height: math.unit(22, "feet")
  6304. },
  6305. {
  6306. name: "Macro",
  6307. height: math.unit(127, "feet")
  6308. },
  6309. {
  6310. name: "Megamacro",
  6311. height: math.unit(3600, "feet")
  6312. },
  6313. ]
  6314. ))
  6315. characterMakers.push(() => makeCharacter(
  6316. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6317. {
  6318. side: {
  6319. height: math.unit(6, "feet"),
  6320. weight: math.unit(180, "lbs"),
  6321. name: "Side",
  6322. image: {
  6323. source: "./media/characters/blake/side.svg",
  6324. extra: 1212 / 1120,
  6325. bottom: 0.05
  6326. }
  6327. },
  6328. crouched: {
  6329. height: math.unit(6 * 0.57, "feet"),
  6330. weight: math.unit(180, "lbs"),
  6331. name: "Crouched",
  6332. image: {
  6333. source: "./media/characters/blake/crouched.svg",
  6334. extra: 840 / 587,
  6335. bottom: 0.04
  6336. }
  6337. },
  6338. bent: {
  6339. height: math.unit(6 * 0.75, "feet"),
  6340. weight: math.unit(180, "lbs"),
  6341. name: "Bent",
  6342. image: {
  6343. source: "./media/characters/blake/bent.svg",
  6344. extra: 592 / 544,
  6345. bottom: 0.035
  6346. }
  6347. },
  6348. },
  6349. [
  6350. {
  6351. name: "Normal",
  6352. height: math.unit(8 + 1 / 6, "feet"),
  6353. default: true
  6354. },
  6355. {
  6356. name: "Big Backside",
  6357. height: math.unit(37, "feet")
  6358. },
  6359. {
  6360. name: "Subway Shredder",
  6361. height: math.unit(72, "feet")
  6362. },
  6363. {
  6364. name: "City Carver",
  6365. height: math.unit(1675, "feet")
  6366. },
  6367. {
  6368. name: "Tectonic Tweaker",
  6369. height: math.unit(2300, "miles")
  6370. },
  6371. ]
  6372. ))
  6373. characterMakers.push(() => makeCharacter(
  6374. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6375. {
  6376. front: {
  6377. height: math.unit(6, "feet"),
  6378. weight: math.unit(180, "lbs"),
  6379. name: "Front",
  6380. image: {
  6381. source: "./media/characters/guisetto/front.svg",
  6382. extra: 856 / 817,
  6383. bottom: 0.06
  6384. }
  6385. },
  6386. airborne: {
  6387. height: math.unit(6, "feet"),
  6388. weight: math.unit(180, "lbs"),
  6389. name: "Airborne",
  6390. image: {
  6391. source: "./media/characters/guisetto/airborne.svg",
  6392. extra: 584 / 525
  6393. }
  6394. },
  6395. },
  6396. [
  6397. {
  6398. name: "Normal",
  6399. height: math.unit(10 + 11 / 12, "feet"),
  6400. default: true
  6401. },
  6402. {
  6403. name: "Large",
  6404. height: math.unit(35, "feet")
  6405. },
  6406. {
  6407. name: "Macro",
  6408. height: math.unit(475, "feet")
  6409. },
  6410. ]
  6411. ))
  6412. characterMakers.push(() => makeCharacter(
  6413. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6414. {
  6415. front: {
  6416. height: math.unit(6, "feet"),
  6417. weight: math.unit(180, "lbs"),
  6418. name: "Front",
  6419. image: {
  6420. source: "./media/characters/luxor/front.svg",
  6421. extra: 2940 / 2152
  6422. }
  6423. },
  6424. back: {
  6425. height: math.unit(6, "feet"),
  6426. weight: math.unit(180, "lbs"),
  6427. name: "Back",
  6428. image: {
  6429. source: "./media/characters/luxor/back.svg",
  6430. extra: 1083 / 960
  6431. }
  6432. },
  6433. },
  6434. [
  6435. {
  6436. name: "Normal",
  6437. height: math.unit(5 + 5 / 6, "feet"),
  6438. default: true
  6439. },
  6440. {
  6441. name: "Lamp",
  6442. height: math.unit(50, "feet")
  6443. },
  6444. {
  6445. name: "Lämp",
  6446. height: math.unit(300, "feet")
  6447. },
  6448. {
  6449. name: "The sun is a lamp",
  6450. height: math.unit(250000, "miles")
  6451. },
  6452. ]
  6453. ))
  6454. characterMakers.push(() => makeCharacter(
  6455. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6456. {
  6457. front: {
  6458. height: math.unit(6, "feet"),
  6459. weight: math.unit(50, "lbs"),
  6460. name: "Front",
  6461. image: {
  6462. source: "./media/characters/huoyan/front.svg"
  6463. }
  6464. },
  6465. side: {
  6466. height: math.unit(6, "feet"),
  6467. weight: math.unit(180, "lbs"),
  6468. name: "Side",
  6469. image: {
  6470. source: "./media/characters/huoyan/side.svg"
  6471. }
  6472. },
  6473. },
  6474. [
  6475. {
  6476. name: "Chef",
  6477. height: math.unit(9, "feet")
  6478. },
  6479. {
  6480. name: "Normal",
  6481. height: math.unit(65, "feet"),
  6482. default: true
  6483. },
  6484. {
  6485. name: "Macro",
  6486. height: math.unit(780, "feet")
  6487. },
  6488. {
  6489. name: "Flaming Mountain",
  6490. height: math.unit(4.8, "miles")
  6491. },
  6492. {
  6493. name: "Celestial",
  6494. height: math.unit(765000, "miles")
  6495. },
  6496. ]
  6497. ))
  6498. characterMakers.push(() => makeCharacter(
  6499. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6500. {
  6501. front: {
  6502. height: math.unit(5 + 3 / 4, "feet"),
  6503. weight: math.unit(120, "lbs"),
  6504. name: "Front",
  6505. image: {
  6506. source: "./media/characters/tails/front.svg"
  6507. }
  6508. }
  6509. },
  6510. [
  6511. {
  6512. name: "Normal",
  6513. height: math.unit(5 + 3 / 4, "feet"),
  6514. default: true
  6515. }
  6516. ]
  6517. ))
  6518. characterMakers.push(() => makeCharacter(
  6519. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6520. {
  6521. front: {
  6522. height: math.unit(4, "feet"),
  6523. weight: math.unit(50, "lbs"),
  6524. name: "Front",
  6525. image: {
  6526. source: "./media/characters/rainy/front.svg"
  6527. }
  6528. }
  6529. },
  6530. [
  6531. {
  6532. name: "Macro",
  6533. height: math.unit(800, "feet"),
  6534. default: true
  6535. }
  6536. ]
  6537. ))
  6538. characterMakers.push(() => makeCharacter(
  6539. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6540. {
  6541. front: {
  6542. height: math.unit(6, "feet"),
  6543. weight: math.unit(150, "lbs"),
  6544. name: "Front",
  6545. image: {
  6546. source: "./media/characters/rainier/front.svg"
  6547. }
  6548. }
  6549. },
  6550. [
  6551. {
  6552. name: "Micro",
  6553. height: math.unit(2, "mm"),
  6554. default: true
  6555. }
  6556. ]
  6557. ))
  6558. characterMakers.push(() => makeCharacter(
  6559. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6560. {
  6561. front: {
  6562. height: math.unit(8 + 4/12, "feet"),
  6563. weight: math.unit(450, "kilograms"),
  6564. volume: math.unit(5, "cups"),
  6565. name: "Front",
  6566. image: {
  6567. source: "./media/characters/andy-renard/front.svg",
  6568. extra: 1839/1726,
  6569. bottom: 134/1973
  6570. }
  6571. },
  6572. back: {
  6573. height: math.unit(8 + 4/12, "feet"),
  6574. weight: math.unit(450, "kilograms"),
  6575. volume: math.unit(5, "cups"),
  6576. name: "Back",
  6577. image: {
  6578. source: "./media/characters/andy-renard/back.svg",
  6579. extra: 1838/1710,
  6580. bottom: 105/1943
  6581. }
  6582. },
  6583. },
  6584. [
  6585. {
  6586. name: "Tall",
  6587. height: math.unit(8 + 4/12, "feet")
  6588. },
  6589. {
  6590. name: "Mini Macro",
  6591. height: math.unit(15, "feet"),
  6592. default: true
  6593. },
  6594. {
  6595. name: "Macro",
  6596. height: math.unit(100, "feet")
  6597. },
  6598. {
  6599. name: "Mega Macro",
  6600. height: math.unit(1000, "feet")
  6601. },
  6602. {
  6603. name: "Giga Macro",
  6604. height: math.unit(10, "miles")
  6605. },
  6606. {
  6607. name: "God Macro",
  6608. height: math.unit(1, "multiverse")
  6609. },
  6610. ]
  6611. ))
  6612. characterMakers.push(() => makeCharacter(
  6613. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6614. {
  6615. front: {
  6616. height: math.unit(6, "feet"),
  6617. weight: math.unit(210, "lbs"),
  6618. name: "Front",
  6619. image: {
  6620. source: "./media/characters/cimmaron/front-sfw.svg",
  6621. extra: 701 / 676,
  6622. bottom: 0.046
  6623. }
  6624. },
  6625. back: {
  6626. height: math.unit(6, "feet"),
  6627. weight: math.unit(210, "lbs"),
  6628. name: "Back",
  6629. image: {
  6630. source: "./media/characters/cimmaron/back-sfw.svg",
  6631. extra: 701 / 676,
  6632. bottom: 0.046
  6633. }
  6634. },
  6635. frontNsfw: {
  6636. height: math.unit(6, "feet"),
  6637. weight: math.unit(210, "lbs"),
  6638. name: "Front (NSFW)",
  6639. image: {
  6640. source: "./media/characters/cimmaron/front-nsfw.svg",
  6641. extra: 701 / 676,
  6642. bottom: 0.046
  6643. }
  6644. },
  6645. backNsfw: {
  6646. height: math.unit(6, "feet"),
  6647. weight: math.unit(210, "lbs"),
  6648. name: "Back (NSFW)",
  6649. image: {
  6650. source: "./media/characters/cimmaron/back-nsfw.svg",
  6651. extra: 701 / 676,
  6652. bottom: 0.046
  6653. }
  6654. },
  6655. dick: {
  6656. height: math.unit(1.714, "feet"),
  6657. name: "Dick",
  6658. image: {
  6659. source: "./media/characters/cimmaron/dick.svg"
  6660. }
  6661. },
  6662. },
  6663. [
  6664. {
  6665. name: "Normal",
  6666. height: math.unit(6, "feet"),
  6667. default: true
  6668. },
  6669. {
  6670. name: "Macro Mayor",
  6671. height: math.unit(350, "meters")
  6672. },
  6673. ]
  6674. ))
  6675. characterMakers.push(() => makeCharacter(
  6676. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6677. {
  6678. front: {
  6679. height: math.unit(6, "feet"),
  6680. weight: math.unit(200, "lbs"),
  6681. name: "Front",
  6682. image: {
  6683. source: "./media/characters/akari/front.svg",
  6684. extra: 962 / 901,
  6685. bottom: 0.04
  6686. }
  6687. }
  6688. },
  6689. [
  6690. {
  6691. name: "Micro",
  6692. height: math.unit(5, "inches"),
  6693. default: true
  6694. },
  6695. {
  6696. name: "Normal",
  6697. height: math.unit(7, "feet")
  6698. },
  6699. ]
  6700. ))
  6701. characterMakers.push(() => makeCharacter(
  6702. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6703. {
  6704. front: {
  6705. height: math.unit(6, "feet"),
  6706. weight: math.unit(140, "lbs"),
  6707. name: "Front",
  6708. image: {
  6709. source: "./media/characters/cynosura/front.svg",
  6710. extra: 437/410,
  6711. bottom: 9/446
  6712. }
  6713. },
  6714. back: {
  6715. height: math.unit(6, "feet"),
  6716. weight: math.unit(140, "lbs"),
  6717. name: "Back",
  6718. image: {
  6719. source: "./media/characters/cynosura/back.svg",
  6720. extra: 1304/1160,
  6721. bottom: 71/1375
  6722. }
  6723. },
  6724. },
  6725. [
  6726. {
  6727. name: "Micro",
  6728. height: math.unit(4, "inches")
  6729. },
  6730. {
  6731. name: "Normal",
  6732. height: math.unit(5.75, "feet"),
  6733. default: true
  6734. },
  6735. {
  6736. name: "Tall",
  6737. height: math.unit(10, "feet")
  6738. },
  6739. {
  6740. name: "Big",
  6741. height: math.unit(20, "feet")
  6742. },
  6743. {
  6744. name: "Macro",
  6745. height: math.unit(50, "feet")
  6746. },
  6747. ]
  6748. ))
  6749. characterMakers.push(() => makeCharacter(
  6750. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6751. {
  6752. front: {
  6753. height: math.unit(13 + 2/12, "feet"),
  6754. weight: math.unit(800, "kg"),
  6755. name: "Front",
  6756. image: {
  6757. source: "./media/characters/gin/front.svg",
  6758. extra: 1312/1191,
  6759. bottom: 45/1357
  6760. }
  6761. },
  6762. mouth: {
  6763. height: math.unit(2.39 * 1.8, "feet"),
  6764. name: "Mouth",
  6765. image: {
  6766. source: "./media/characters/gin/mouth.svg"
  6767. }
  6768. },
  6769. hand: {
  6770. height: math.unit(1.57 * 2.19, "feet"),
  6771. name: "Hand",
  6772. image: {
  6773. source: "./media/characters/gin/hand.svg"
  6774. }
  6775. },
  6776. foot: {
  6777. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6778. name: "Foot",
  6779. image: {
  6780. source: "./media/characters/gin/foot.svg"
  6781. }
  6782. },
  6783. sole: {
  6784. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6785. name: "Sole",
  6786. image: {
  6787. source: "./media/characters/gin/sole.svg"
  6788. }
  6789. },
  6790. },
  6791. [
  6792. {
  6793. name: "Very Small",
  6794. height: math.unit(13 + 2 / 12, "feet")
  6795. },
  6796. {
  6797. name: "Micro",
  6798. height: math.unit(600, "miles")
  6799. },
  6800. {
  6801. name: "Regular",
  6802. height: math.unit(20, "earths"),
  6803. default: true
  6804. },
  6805. {
  6806. name: "Macro",
  6807. height: math.unit(2.2, "solarradii")
  6808. },
  6809. {
  6810. name: "Teramacro",
  6811. height: math.unit(1.2, "galaxies")
  6812. },
  6813. {
  6814. name: "Omegamacro",
  6815. height: math.unit(200, "universes")
  6816. },
  6817. ]
  6818. ))
  6819. characterMakers.push(() => makeCharacter(
  6820. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6821. {
  6822. front: {
  6823. height: math.unit(6 + 1 / 6, "feet"),
  6824. weight: math.unit(178, "lbs"),
  6825. name: "Front",
  6826. image: {
  6827. source: "./media/characters/guy/front.svg"
  6828. }
  6829. }
  6830. },
  6831. [
  6832. {
  6833. name: "Normal",
  6834. height: math.unit(6 + 1 / 6, "feet"),
  6835. default: true
  6836. },
  6837. {
  6838. name: "Large",
  6839. height: math.unit(25 + 7 / 12, "feet")
  6840. },
  6841. {
  6842. name: "Macro",
  6843. height: math.unit(60 + 9 / 12, "feet")
  6844. },
  6845. {
  6846. name: "Macro+",
  6847. height: math.unit(246, "feet")
  6848. },
  6849. {
  6850. name: "Macro++",
  6851. height: math.unit(878, "feet")
  6852. }
  6853. ]
  6854. ))
  6855. characterMakers.push(() => makeCharacter(
  6856. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6857. {
  6858. front: {
  6859. height: math.unit(9, "feet"),
  6860. weight: math.unit(800, "lbs"),
  6861. name: "Front",
  6862. image: {
  6863. source: "./media/characters/tiberius/front.svg",
  6864. extra: 2295 / 2071
  6865. }
  6866. },
  6867. back: {
  6868. height: math.unit(9, "feet"),
  6869. weight: math.unit(800, "lbs"),
  6870. name: "Back",
  6871. image: {
  6872. source: "./media/characters/tiberius/back.svg",
  6873. extra: 2373 / 2160
  6874. }
  6875. },
  6876. },
  6877. [
  6878. {
  6879. name: "Normal",
  6880. height: math.unit(9, "feet"),
  6881. default: true
  6882. }
  6883. ]
  6884. ))
  6885. characterMakers.push(() => makeCharacter(
  6886. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6887. {
  6888. front: {
  6889. height: math.unit(6, "feet"),
  6890. weight: math.unit(600, "lbs"),
  6891. name: "Front",
  6892. image: {
  6893. source: "./media/characters/surgo/front.svg",
  6894. extra: 3591 / 2227
  6895. }
  6896. },
  6897. back: {
  6898. height: math.unit(6, "feet"),
  6899. weight: math.unit(600, "lbs"),
  6900. name: "Back",
  6901. image: {
  6902. source: "./media/characters/surgo/back.svg",
  6903. extra: 3557 / 2228
  6904. }
  6905. },
  6906. laying: {
  6907. height: math.unit(6 * 0.85, "feet"),
  6908. weight: math.unit(600, "lbs"),
  6909. name: "Laying",
  6910. image: {
  6911. source: "./media/characters/surgo/laying.svg"
  6912. }
  6913. },
  6914. },
  6915. [
  6916. {
  6917. name: "Normal",
  6918. height: math.unit(6, "feet"),
  6919. default: true
  6920. }
  6921. ]
  6922. ))
  6923. characterMakers.push(() => makeCharacter(
  6924. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6925. {
  6926. side: {
  6927. height: math.unit(6, "feet"),
  6928. weight: math.unit(150, "lbs"),
  6929. name: "Side",
  6930. image: {
  6931. source: "./media/characters/cibus/side.svg",
  6932. extra: 800 / 400
  6933. }
  6934. },
  6935. },
  6936. [
  6937. {
  6938. name: "Normal",
  6939. height: math.unit(6, "feet"),
  6940. default: true
  6941. }
  6942. ]
  6943. ))
  6944. characterMakers.push(() => makeCharacter(
  6945. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6946. {
  6947. front: {
  6948. height: math.unit(6, "feet"),
  6949. weight: math.unit(240, "lbs"),
  6950. name: "Front",
  6951. image: {
  6952. source: "./media/characters/nibbles/front.svg"
  6953. }
  6954. },
  6955. side: {
  6956. height: math.unit(6, "feet"),
  6957. weight: math.unit(240, "lbs"),
  6958. name: "Side",
  6959. image: {
  6960. source: "./media/characters/nibbles/side.svg"
  6961. }
  6962. },
  6963. },
  6964. [
  6965. {
  6966. name: "Normal",
  6967. height: math.unit(9, "feet"),
  6968. default: true
  6969. }
  6970. ]
  6971. ))
  6972. characterMakers.push(() => makeCharacter(
  6973. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6974. {
  6975. side: {
  6976. height: math.unit(5 + 1 / 6, "feet"),
  6977. weight: math.unit(130, "lbs"),
  6978. name: "Side",
  6979. image: {
  6980. source: "./media/characters/rikky/side.svg",
  6981. extra: 851 / 801
  6982. }
  6983. },
  6984. },
  6985. [
  6986. {
  6987. name: "Normal",
  6988. height: math.unit(5 + 1 / 6, "feet")
  6989. },
  6990. {
  6991. name: "Macro",
  6992. height: math.unit(152, "feet"),
  6993. default: true
  6994. },
  6995. {
  6996. name: "Megamacro",
  6997. height: math.unit(7, "miles")
  6998. }
  6999. ]
  7000. ))
  7001. characterMakers.push(() => makeCharacter(
  7002. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  7003. {
  7004. side: {
  7005. height: math.unit(370, "cm"),
  7006. weight: math.unit(350, "lbs"),
  7007. name: "Side",
  7008. image: {
  7009. source: "./media/characters/malfressa/side.svg"
  7010. }
  7011. },
  7012. walking: {
  7013. height: math.unit(370, "cm"),
  7014. weight: math.unit(350, "lbs"),
  7015. name: "Walking",
  7016. image: {
  7017. source: "./media/characters/malfressa/walking.svg"
  7018. }
  7019. },
  7020. feral: {
  7021. height: math.unit(2500, "cm"),
  7022. weight: math.unit(100000, "lbs"),
  7023. name: "Feral",
  7024. image: {
  7025. source: "./media/characters/malfressa/feral.svg",
  7026. extra: 2108 / 837,
  7027. bottom: 0.02
  7028. }
  7029. },
  7030. },
  7031. [
  7032. {
  7033. name: "Normal",
  7034. height: math.unit(370, "cm")
  7035. },
  7036. {
  7037. name: "Macro",
  7038. height: math.unit(300, "meters"),
  7039. default: true
  7040. }
  7041. ]
  7042. ))
  7043. characterMakers.push(() => makeCharacter(
  7044. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7045. {
  7046. front: {
  7047. height: math.unit(6, "feet"),
  7048. weight: math.unit(60, "kg"),
  7049. name: "Front",
  7050. image: {
  7051. source: "./media/characters/jaro/front.svg",
  7052. extra: 845/817,
  7053. bottom: 45/890
  7054. }
  7055. },
  7056. back: {
  7057. height: math.unit(6, "feet"),
  7058. weight: math.unit(60, "kg"),
  7059. name: "Back",
  7060. image: {
  7061. source: "./media/characters/jaro/back.svg",
  7062. extra: 847/817,
  7063. bottom: 34/881
  7064. }
  7065. },
  7066. },
  7067. [
  7068. {
  7069. name: "Micro",
  7070. height: math.unit(7, "inches")
  7071. },
  7072. {
  7073. name: "Normal",
  7074. height: math.unit(5.5, "feet"),
  7075. default: true
  7076. },
  7077. {
  7078. name: "Minimacro",
  7079. height: math.unit(20, "feet")
  7080. },
  7081. {
  7082. name: "Macro",
  7083. height: math.unit(200, "meters")
  7084. }
  7085. ]
  7086. ))
  7087. characterMakers.push(() => makeCharacter(
  7088. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7089. {
  7090. front: {
  7091. height: math.unit(6, "feet"),
  7092. weight: math.unit(195, "lb"),
  7093. name: "Front",
  7094. image: {
  7095. source: "./media/characters/rogue/front.svg"
  7096. }
  7097. },
  7098. },
  7099. [
  7100. {
  7101. name: "Macro",
  7102. height: math.unit(90, "feet"),
  7103. default: true
  7104. },
  7105. ]
  7106. ))
  7107. characterMakers.push(() => makeCharacter(
  7108. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7109. {
  7110. standing: {
  7111. height: math.unit(5 + 8 / 12, "feet"),
  7112. weight: math.unit(140, "lb"),
  7113. name: "Standing",
  7114. image: {
  7115. source: "./media/characters/piper/standing.svg",
  7116. extra: 1440/1284,
  7117. bottom: 66/1506
  7118. }
  7119. },
  7120. running: {
  7121. height: math.unit(5 + 8 / 12, "feet"),
  7122. weight: math.unit(140, "lb"),
  7123. name: "Running",
  7124. image: {
  7125. source: "./media/characters/piper/running.svg",
  7126. extra: 3948/3655,
  7127. bottom: 0/3948
  7128. }
  7129. },
  7130. sole: {
  7131. height: math.unit(0.81, "feet"),
  7132. weight: math.unit(2, "kg"),
  7133. name: "Sole",
  7134. image: {
  7135. source: "./media/characters/piper/sole.svg"
  7136. }
  7137. },
  7138. nipple: {
  7139. height: math.unit(0.25, "feet"),
  7140. weight: math.unit(1.5, "lb"),
  7141. name: "Nipple",
  7142. image: {
  7143. source: "./media/characters/piper/nipple.svg"
  7144. }
  7145. },
  7146. head: {
  7147. height: math.unit(1.1, "feet"),
  7148. name: "Head",
  7149. image: {
  7150. source: "./media/characters/piper/head.svg"
  7151. }
  7152. },
  7153. },
  7154. [
  7155. {
  7156. name: "Micro",
  7157. height: math.unit(2, "inches")
  7158. },
  7159. {
  7160. name: "Normal",
  7161. height: math.unit(5 + 8 / 12, "feet")
  7162. },
  7163. {
  7164. name: "Macro",
  7165. height: math.unit(250, "feet"),
  7166. default: true
  7167. },
  7168. {
  7169. name: "Megamacro",
  7170. height: math.unit(7, "miles")
  7171. },
  7172. ]
  7173. ))
  7174. characterMakers.push(() => makeCharacter(
  7175. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7176. {
  7177. front: {
  7178. height: math.unit(6, "feet"),
  7179. weight: math.unit(220, "lb"),
  7180. name: "Front",
  7181. image: {
  7182. source: "./media/characters/gemini/front.svg"
  7183. }
  7184. },
  7185. back: {
  7186. height: math.unit(6, "feet"),
  7187. weight: math.unit(220, "lb"),
  7188. name: "Back",
  7189. image: {
  7190. source: "./media/characters/gemini/back.svg"
  7191. }
  7192. },
  7193. kneeling: {
  7194. height: math.unit(6 / 1.5, "feet"),
  7195. weight: math.unit(220, "lb"),
  7196. name: "Kneeling",
  7197. image: {
  7198. source: "./media/characters/gemini/kneeling.svg",
  7199. bottom: 0.02
  7200. }
  7201. },
  7202. },
  7203. [
  7204. {
  7205. name: "Macro",
  7206. height: math.unit(300, "meters"),
  7207. default: true
  7208. },
  7209. {
  7210. name: "Megamacro",
  7211. height: math.unit(6900, "meters")
  7212. },
  7213. ]
  7214. ))
  7215. characterMakers.push(() => makeCharacter(
  7216. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7217. {
  7218. anthro: {
  7219. height: math.unit(2.35, "meters"),
  7220. weight: math.unit(73, "kg"),
  7221. name: "Anthro",
  7222. image: {
  7223. source: "./media/characters/alicia/anthro.svg",
  7224. extra: 2571 / 2385,
  7225. bottom: 75 / 2648
  7226. }
  7227. },
  7228. paw: {
  7229. height: math.unit(1.32, "feet"),
  7230. name: "Paw",
  7231. image: {
  7232. source: "./media/characters/alicia/paw.svg"
  7233. }
  7234. },
  7235. feral: {
  7236. height: math.unit(1.69, "meters"),
  7237. weight: math.unit(73, "kg"),
  7238. name: "Feral",
  7239. image: {
  7240. source: "./media/characters/alicia/feral.svg",
  7241. extra: 2123 / 1715,
  7242. bottom: 222 / 2349
  7243. }
  7244. },
  7245. },
  7246. [
  7247. {
  7248. name: "Normal",
  7249. height: math.unit(2.35, "meters")
  7250. },
  7251. {
  7252. name: "Macro",
  7253. height: math.unit(60, "meters"),
  7254. default: true
  7255. },
  7256. {
  7257. name: "Megamacro",
  7258. height: math.unit(10000, "kilometers")
  7259. },
  7260. ]
  7261. ))
  7262. characterMakers.push(() => makeCharacter(
  7263. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7264. {
  7265. front: {
  7266. height: math.unit(7, "feet"),
  7267. weight: math.unit(250, "lbs"),
  7268. name: "Front",
  7269. image: {
  7270. source: "./media/characters/archy/front.svg"
  7271. }
  7272. }
  7273. },
  7274. [
  7275. {
  7276. name: "Micro",
  7277. height: math.unit(1, "inch")
  7278. },
  7279. {
  7280. name: "Shorty",
  7281. height: math.unit(5, "feet")
  7282. },
  7283. {
  7284. name: "Normal",
  7285. height: math.unit(7, "feet")
  7286. },
  7287. {
  7288. name: "Macro",
  7289. height: math.unit(600, "meters"),
  7290. default: true
  7291. },
  7292. {
  7293. name: "Megamacro",
  7294. height: math.unit(1, "mile")
  7295. },
  7296. ]
  7297. ))
  7298. characterMakers.push(() => makeCharacter(
  7299. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7300. {
  7301. front: {
  7302. height: math.unit(1.65, "meters"),
  7303. weight: math.unit(74, "kg"),
  7304. name: "Front",
  7305. image: {
  7306. source: "./media/characters/berri/front.svg",
  7307. extra: 857 / 837,
  7308. bottom: 18 / 877
  7309. }
  7310. },
  7311. bum: {
  7312. height: math.unit(1.46, "feet"),
  7313. name: "Bum",
  7314. image: {
  7315. source: "./media/characters/berri/bum.svg"
  7316. }
  7317. },
  7318. mouth: {
  7319. height: math.unit(0.44, "feet"),
  7320. name: "Mouth",
  7321. image: {
  7322. source: "./media/characters/berri/mouth.svg"
  7323. }
  7324. },
  7325. paw: {
  7326. height: math.unit(0.826, "feet"),
  7327. name: "Paw",
  7328. image: {
  7329. source: "./media/characters/berri/paw.svg"
  7330. }
  7331. },
  7332. },
  7333. [
  7334. {
  7335. name: "Normal",
  7336. height: math.unit(1.65, "meters")
  7337. },
  7338. {
  7339. name: "Macro",
  7340. height: math.unit(60, "m"),
  7341. default: true
  7342. },
  7343. {
  7344. name: "Megamacro",
  7345. height: math.unit(9.213, "km")
  7346. },
  7347. {
  7348. name: "Planet Eater",
  7349. height: math.unit(489, "megameters")
  7350. },
  7351. {
  7352. name: "Teramacro",
  7353. height: math.unit(2471635000000, "meters")
  7354. },
  7355. {
  7356. name: "Examacro",
  7357. height: math.unit(8.0624e+26, "meters")
  7358. }
  7359. ]
  7360. ))
  7361. characterMakers.push(() => makeCharacter(
  7362. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7363. {
  7364. front: {
  7365. height: math.unit(1.72, "meters"),
  7366. weight: math.unit(68, "kg"),
  7367. name: "Front",
  7368. image: {
  7369. source: "./media/characters/lexi/front.svg"
  7370. }
  7371. }
  7372. },
  7373. [
  7374. {
  7375. name: "Very Smol",
  7376. height: math.unit(10, "mm")
  7377. },
  7378. {
  7379. name: "Micro",
  7380. height: math.unit(6.8, "cm"),
  7381. default: true
  7382. },
  7383. {
  7384. name: "Normal",
  7385. height: math.unit(1.72, "m")
  7386. }
  7387. ]
  7388. ))
  7389. characterMakers.push(() => makeCharacter(
  7390. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7391. {
  7392. front: {
  7393. height: math.unit(1.69, "meters"),
  7394. weight: math.unit(68, "kg"),
  7395. name: "Front",
  7396. image: {
  7397. source: "./media/characters/martin/front.svg",
  7398. extra: 596 / 581
  7399. }
  7400. }
  7401. },
  7402. [
  7403. {
  7404. name: "Micro",
  7405. height: math.unit(6.85, "cm"),
  7406. default: true
  7407. },
  7408. {
  7409. name: "Normal",
  7410. height: math.unit(1.69, "m")
  7411. }
  7412. ]
  7413. ))
  7414. characterMakers.push(() => makeCharacter(
  7415. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7416. {
  7417. front: {
  7418. height: math.unit(1.69, "meters"),
  7419. weight: math.unit(68, "kg"),
  7420. name: "Front",
  7421. image: {
  7422. source: "./media/characters/juno/front.svg"
  7423. }
  7424. }
  7425. },
  7426. [
  7427. {
  7428. name: "Micro",
  7429. height: math.unit(7, "cm")
  7430. },
  7431. {
  7432. name: "Normal",
  7433. height: math.unit(1.89, "m")
  7434. },
  7435. {
  7436. name: "Macro",
  7437. height: math.unit(353, "meters"),
  7438. default: true
  7439. }
  7440. ]
  7441. ))
  7442. characterMakers.push(() => makeCharacter(
  7443. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7444. {
  7445. front: {
  7446. height: math.unit(1.93, "meters"),
  7447. weight: math.unit(83, "kg"),
  7448. name: "Front",
  7449. image: {
  7450. source: "./media/characters/samantha/front.svg"
  7451. }
  7452. },
  7453. frontClothed: {
  7454. height: math.unit(1.93, "meters"),
  7455. weight: math.unit(83, "kg"),
  7456. name: "Front (Clothed)",
  7457. image: {
  7458. source: "./media/characters/samantha/front-clothed.svg"
  7459. }
  7460. },
  7461. back: {
  7462. height: math.unit(1.93, "meters"),
  7463. weight: math.unit(83, "kg"),
  7464. name: "Back",
  7465. image: {
  7466. source: "./media/characters/samantha/back.svg"
  7467. }
  7468. },
  7469. },
  7470. [
  7471. {
  7472. name: "Normal",
  7473. height: math.unit(1.93, "m")
  7474. },
  7475. {
  7476. name: "Macro",
  7477. height: math.unit(74, "meters"),
  7478. default: true
  7479. },
  7480. {
  7481. name: "Macro+",
  7482. height: math.unit(223, "meters"),
  7483. },
  7484. {
  7485. name: "Megamacro",
  7486. height: math.unit(8381, "meters"),
  7487. },
  7488. {
  7489. name: "Megamacro+",
  7490. height: math.unit(12000, "kilometers")
  7491. },
  7492. ]
  7493. ))
  7494. characterMakers.push(() => makeCharacter(
  7495. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7496. {
  7497. front: {
  7498. height: math.unit(1.92, "meters"),
  7499. weight: math.unit(80, "kg"),
  7500. name: "Front",
  7501. image: {
  7502. source: "./media/characters/dr-clay/front.svg"
  7503. }
  7504. },
  7505. frontClothed: {
  7506. height: math.unit(1.92, "meters"),
  7507. weight: math.unit(80, "kg"),
  7508. name: "Front (Clothed)",
  7509. image: {
  7510. source: "./media/characters/dr-clay/front-clothed.svg"
  7511. }
  7512. }
  7513. },
  7514. [
  7515. {
  7516. name: "Normal",
  7517. height: math.unit(1.92, "m")
  7518. },
  7519. {
  7520. name: "Macro",
  7521. height: math.unit(214, "meters"),
  7522. default: true
  7523. },
  7524. {
  7525. name: "Macro+",
  7526. height: math.unit(12.237, "meters"),
  7527. },
  7528. {
  7529. name: "Megamacro",
  7530. height: math.unit(557, "megameters"),
  7531. },
  7532. {
  7533. name: "Unimaginable",
  7534. height: math.unit(120e9, "lightyears")
  7535. },
  7536. ]
  7537. ))
  7538. characterMakers.push(() => makeCharacter(
  7539. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7540. {
  7541. front: {
  7542. height: math.unit(2, "meters"),
  7543. weight: math.unit(80, "kg"),
  7544. name: "Front",
  7545. image: {
  7546. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7547. }
  7548. }
  7549. },
  7550. [
  7551. {
  7552. name: "Teramacro",
  7553. height: math.unit(500000, "lightyears"),
  7554. default: true
  7555. },
  7556. ]
  7557. ))
  7558. characterMakers.push(() => makeCharacter(
  7559. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7560. {
  7561. crux: {
  7562. height: math.unit(2, "meters"),
  7563. weight: math.unit(150, "kg"),
  7564. name: "Crux",
  7565. image: {
  7566. source: "./media/characters/vemus/crux.svg",
  7567. extra: 1074/936,
  7568. bottom: 23/1097
  7569. }
  7570. },
  7571. skunkTanuki: {
  7572. height: math.unit(2, "meters"),
  7573. weight: math.unit(150, "kg"),
  7574. name: "Skunk-Tanuki",
  7575. image: {
  7576. source: "./media/characters/vemus/skunk-tanuki.svg",
  7577. extra: 926/893,
  7578. bottom: 20/946
  7579. }
  7580. },
  7581. },
  7582. [
  7583. {
  7584. name: "Normal",
  7585. height: math.unit(4, "meters"),
  7586. default: true
  7587. },
  7588. {
  7589. name: "Big",
  7590. height: math.unit(8, "meters")
  7591. },
  7592. {
  7593. name: "Macro",
  7594. height: math.unit(100, "meters")
  7595. },
  7596. {
  7597. name: "Macro+",
  7598. height: math.unit(1500, "meters")
  7599. },
  7600. {
  7601. name: "Stellar",
  7602. height: math.unit(14e8, "meters")
  7603. },
  7604. ]
  7605. ))
  7606. characterMakers.push(() => makeCharacter(
  7607. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7608. {
  7609. front: {
  7610. height: math.unit(2, "meters"),
  7611. weight: math.unit(70, "kg"),
  7612. name: "Front",
  7613. image: {
  7614. source: "./media/characters/beherit/front.svg",
  7615. extra: 1234/1109,
  7616. bottom: 55/1289
  7617. }
  7618. }
  7619. },
  7620. [
  7621. {
  7622. name: "Normal",
  7623. height: math.unit(6, "feet")
  7624. },
  7625. {
  7626. name: "Lorg",
  7627. height: math.unit(25, "feet"),
  7628. default: true
  7629. },
  7630. {
  7631. name: "Lorger",
  7632. height: math.unit(75, "feet")
  7633. },
  7634. {
  7635. name: "Macro",
  7636. height: math.unit(200, "meters")
  7637. },
  7638. ]
  7639. ))
  7640. characterMakers.push(() => makeCharacter(
  7641. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7642. {
  7643. front: {
  7644. height: math.unit(2, "meters"),
  7645. weight: math.unit(150, "kg"),
  7646. name: "Front",
  7647. image: {
  7648. source: "./media/characters/everett/front.svg",
  7649. extra: 1017/866,
  7650. bottom: 86/1103
  7651. }
  7652. },
  7653. paw: {
  7654. height: math.unit(2 / 3.6, "meters"),
  7655. name: "Paw",
  7656. image: {
  7657. source: "./media/characters/everett/paw.svg"
  7658. }
  7659. },
  7660. },
  7661. [
  7662. {
  7663. name: "Normal",
  7664. height: math.unit(15, "feet"),
  7665. default: true
  7666. },
  7667. {
  7668. name: "Lorg",
  7669. height: math.unit(70, "feet"),
  7670. default: true
  7671. },
  7672. {
  7673. name: "Lorger",
  7674. height: math.unit(250, "feet")
  7675. },
  7676. {
  7677. name: "Macro",
  7678. height: math.unit(500, "meters")
  7679. },
  7680. ]
  7681. ))
  7682. characterMakers.push(() => makeCharacter(
  7683. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7684. {
  7685. front: {
  7686. height: math.unit(2, "meters"),
  7687. weight: math.unit(86, "kg"),
  7688. name: "Front",
  7689. image: {
  7690. source: "./media/characters/rose/front.svg",
  7691. extra: 1785/1636,
  7692. bottom: 30/1815
  7693. },
  7694. form: "liom",
  7695. default: true
  7696. },
  7697. frontSporty: {
  7698. height: math.unit(2, "meters"),
  7699. weight: math.unit(86, "kg"),
  7700. name: "Front (Sporty)",
  7701. image: {
  7702. source: "./media/characters/rose/front-sporty.svg",
  7703. extra: 350/335,
  7704. bottom: 10/360
  7705. },
  7706. form: "liom"
  7707. },
  7708. frontAlt: {
  7709. height: math.unit(1.6, "meters"),
  7710. weight: math.unit(86, "kg"),
  7711. name: "Front (Alt)",
  7712. image: {
  7713. source: "./media/characters/rose/front-alt.svg",
  7714. extra: 299/283,
  7715. bottom: 3/302
  7716. },
  7717. form: "liom"
  7718. },
  7719. plush: {
  7720. height: math.unit(2, "meters"),
  7721. weight: math.unit(86/3, "kg"),
  7722. name: "Plush",
  7723. image: {
  7724. source: "./media/characters/rose/plush.svg",
  7725. extra: 361/337,
  7726. bottom: 11/372
  7727. },
  7728. form: "plush",
  7729. default: true
  7730. },
  7731. faeStanding: {
  7732. height: math.unit(10, "cm"),
  7733. weight: math.unit(10, "grams"),
  7734. name: "Standing",
  7735. image: {
  7736. source: "./media/characters/rose/fae-standing.svg",
  7737. extra: 1189/1060,
  7738. bottom: 27/1216
  7739. },
  7740. form: "fae",
  7741. default: true
  7742. },
  7743. faeSitting: {
  7744. height: math.unit(5, "cm"),
  7745. weight: math.unit(10, "grams"),
  7746. name: "Sitting",
  7747. image: {
  7748. source: "./media/characters/rose/fae-sitting.svg",
  7749. extra: 737/577,
  7750. bottom: 356/1093
  7751. },
  7752. form: "fae"
  7753. },
  7754. faePaw: {
  7755. height: math.unit(1.35, "cm"),
  7756. name: "Paw",
  7757. image: {
  7758. source: "./media/characters/rose/fae-paw.svg"
  7759. },
  7760. form: "fae"
  7761. },
  7762. },
  7763. [
  7764. {
  7765. name: "True Micro",
  7766. height: math.unit(9, "cm"),
  7767. form: "liom"
  7768. },
  7769. {
  7770. name: "Micro",
  7771. height: math.unit(16, "cm"),
  7772. form: "liom"
  7773. },
  7774. {
  7775. name: "Normal",
  7776. height: math.unit(1.85, "meters"),
  7777. default: true,
  7778. form: "liom"
  7779. },
  7780. {
  7781. name: "Mini-Macro",
  7782. height: math.unit(5, "meters"),
  7783. form: "liom"
  7784. },
  7785. {
  7786. name: "Macro",
  7787. height: math.unit(15, "meters"),
  7788. form: "liom"
  7789. },
  7790. {
  7791. name: "True Macro",
  7792. height: math.unit(40, "meters"),
  7793. form: "liom"
  7794. },
  7795. {
  7796. name: "City Scale",
  7797. height: math.unit(1, "km"),
  7798. form: "liom"
  7799. },
  7800. {
  7801. name: "Plushie",
  7802. height: math.unit(9, "cm"),
  7803. form: "plush",
  7804. default: true
  7805. },
  7806. {
  7807. name: "Fae",
  7808. height: math.unit(10, "cm"),
  7809. form: "fae",
  7810. default: true
  7811. },
  7812. ],
  7813. {
  7814. "liom": {
  7815. name: "Liom"
  7816. },
  7817. "plush": {
  7818. name: "Plush"
  7819. },
  7820. "fae": {
  7821. name: "Fae Fox",
  7822. default: true
  7823. }
  7824. }
  7825. ))
  7826. characterMakers.push(() => makeCharacter(
  7827. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7828. {
  7829. front: {
  7830. height: math.unit(2, "meters"),
  7831. weight: math.unit(350, "lbs"),
  7832. name: "Front",
  7833. image: {
  7834. source: "./media/characters/regal/front.svg"
  7835. }
  7836. },
  7837. back: {
  7838. height: math.unit(2, "meters"),
  7839. weight: math.unit(350, "lbs"),
  7840. name: "Back",
  7841. image: {
  7842. source: "./media/characters/regal/back.svg"
  7843. }
  7844. },
  7845. },
  7846. [
  7847. {
  7848. name: "Macro",
  7849. height: math.unit(350, "feet"),
  7850. default: true
  7851. }
  7852. ]
  7853. ))
  7854. characterMakers.push(() => makeCharacter(
  7855. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7856. {
  7857. front: {
  7858. height: math.unit(4 + 11 / 12, "feet"),
  7859. weight: math.unit(100, "lbs"),
  7860. name: "Front",
  7861. image: {
  7862. source: "./media/characters/opal/front.svg"
  7863. }
  7864. },
  7865. frontAlt: {
  7866. height: math.unit(4 + 11 / 12, "feet"),
  7867. weight: math.unit(100, "lbs"),
  7868. name: "Front (Alt)",
  7869. image: {
  7870. source: "./media/characters/opal/front-alt.svg"
  7871. }
  7872. },
  7873. },
  7874. [
  7875. {
  7876. name: "Small",
  7877. height: math.unit(4 + 11 / 12, "feet")
  7878. },
  7879. {
  7880. name: "Normal",
  7881. height: math.unit(20, "feet"),
  7882. default: true
  7883. },
  7884. {
  7885. name: "Macro",
  7886. height: math.unit(120, "feet")
  7887. },
  7888. {
  7889. name: "Megamacro",
  7890. height: math.unit(80, "miles")
  7891. },
  7892. {
  7893. name: "True Size",
  7894. height: math.unit(100000, "lightyears")
  7895. },
  7896. ]
  7897. ))
  7898. characterMakers.push(() => makeCharacter(
  7899. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7900. {
  7901. front: {
  7902. height: math.unit(6, "feet"),
  7903. weight: math.unit(200, "lbs"),
  7904. name: "Front",
  7905. image: {
  7906. source: "./media/characters/vector-wuff/front.svg"
  7907. }
  7908. }
  7909. },
  7910. [
  7911. {
  7912. name: "Normal",
  7913. height: math.unit(2.8, "meters")
  7914. },
  7915. {
  7916. name: "Macro",
  7917. height: math.unit(450, "meters"),
  7918. default: true
  7919. },
  7920. {
  7921. name: "Megamacro",
  7922. height: math.unit(15, "kilometers")
  7923. }
  7924. ]
  7925. ))
  7926. characterMakers.push(() => makeCharacter(
  7927. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7928. {
  7929. front: {
  7930. height: math.unit(6, "feet"),
  7931. weight: math.unit(256, "lbs"),
  7932. name: "Front",
  7933. image: {
  7934. source: "./media/characters/dannik/front.svg"
  7935. }
  7936. }
  7937. },
  7938. [
  7939. {
  7940. name: "Macro",
  7941. height: math.unit(69.57, "meters"),
  7942. default: true
  7943. },
  7944. ]
  7945. ))
  7946. characterMakers.push(() => makeCharacter(
  7947. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7948. {
  7949. front: {
  7950. height: math.unit(6, "feet"),
  7951. weight: math.unit(120, "lbs"),
  7952. name: "Front",
  7953. image: {
  7954. source: "./media/characters/azura-saharah/front.svg"
  7955. }
  7956. },
  7957. back: {
  7958. height: math.unit(6, "feet"),
  7959. weight: math.unit(120, "lbs"),
  7960. name: "Back",
  7961. image: {
  7962. source: "./media/characters/azura-saharah/back.svg"
  7963. }
  7964. },
  7965. },
  7966. [
  7967. {
  7968. name: "Macro",
  7969. height: math.unit(100, "feet"),
  7970. default: true
  7971. },
  7972. ]
  7973. ))
  7974. characterMakers.push(() => makeCharacter(
  7975. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7976. {
  7977. side: {
  7978. height: math.unit(5 + 4 / 12, "feet"),
  7979. weight: math.unit(163, "lbs"),
  7980. name: "Side",
  7981. image: {
  7982. source: "./media/characters/kennedy/side.svg"
  7983. }
  7984. }
  7985. },
  7986. [
  7987. {
  7988. name: "Standard Doggo",
  7989. height: math.unit(5 + 4 / 12, "feet")
  7990. },
  7991. {
  7992. name: "Big Doggo",
  7993. height: math.unit(25 + 3 / 12, "feet"),
  7994. default: true
  7995. },
  7996. ]
  7997. ))
  7998. characterMakers.push(() => makeCharacter(
  7999. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  8000. {
  8001. front: {
  8002. height: math.unit(5 + 5/12, "feet"),
  8003. weight: math.unit(100, "lbs"),
  8004. name: "Front",
  8005. image: {
  8006. source: "./media/characters/odios-de-lunar/front.svg",
  8007. extra: 1468/1323,
  8008. bottom: 22/1490
  8009. }
  8010. }
  8011. },
  8012. [
  8013. {
  8014. name: "Micro",
  8015. height: math.unit(3, "inches")
  8016. },
  8017. {
  8018. name: "Normal",
  8019. height: math.unit(5.5, "feet"),
  8020. default: true
  8021. },
  8022. {
  8023. name: "Macro",
  8024. height: math.unit(100, "feet")
  8025. },
  8026. ]
  8027. ))
  8028. characterMakers.push(() => makeCharacter(
  8029. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8030. {
  8031. back: {
  8032. height: math.unit(6, "feet"),
  8033. weight: math.unit(220, "lbs"),
  8034. name: "Back",
  8035. image: {
  8036. source: "./media/characters/mandake/back.svg"
  8037. }
  8038. }
  8039. },
  8040. [
  8041. {
  8042. name: "Normal",
  8043. height: math.unit(7, "feet"),
  8044. default: true
  8045. },
  8046. {
  8047. name: "Macro",
  8048. height: math.unit(78, "feet")
  8049. },
  8050. {
  8051. name: "Macro+",
  8052. height: math.unit(300, "meters")
  8053. },
  8054. {
  8055. name: "Macro++",
  8056. height: math.unit(2400, "feet")
  8057. },
  8058. {
  8059. name: "Megamacro",
  8060. height: math.unit(5167, "meters")
  8061. },
  8062. {
  8063. name: "Gigamacro",
  8064. height: math.unit(41769, "miles")
  8065. },
  8066. ]
  8067. ))
  8068. characterMakers.push(() => makeCharacter(
  8069. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8070. {
  8071. front: {
  8072. height: math.unit(6, "feet"),
  8073. weight: math.unit(120, "lbs"),
  8074. name: "Front",
  8075. image: {
  8076. source: "./media/characters/yozey/front.svg"
  8077. }
  8078. },
  8079. frontAlt: {
  8080. height: math.unit(6, "feet"),
  8081. weight: math.unit(120, "lbs"),
  8082. name: "Front (Alt)",
  8083. image: {
  8084. source: "./media/characters/yozey/front-alt.svg"
  8085. }
  8086. },
  8087. side: {
  8088. height: math.unit(6, "feet"),
  8089. weight: math.unit(120, "lbs"),
  8090. name: "Side",
  8091. image: {
  8092. source: "./media/characters/yozey/side.svg"
  8093. }
  8094. },
  8095. },
  8096. [
  8097. {
  8098. name: "Micro",
  8099. height: math.unit(3, "inches"),
  8100. default: true
  8101. },
  8102. {
  8103. name: "Normal",
  8104. height: math.unit(6, "feet")
  8105. }
  8106. ]
  8107. ))
  8108. characterMakers.push(() => makeCharacter(
  8109. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8110. {
  8111. front: {
  8112. height: math.unit(6, "feet"),
  8113. weight: math.unit(103, "lbs"),
  8114. name: "Front",
  8115. image: {
  8116. source: "./media/characters/valeska-voss/front.svg"
  8117. }
  8118. }
  8119. },
  8120. [
  8121. {
  8122. name: "Mini-Sized Sub",
  8123. height: math.unit(3.1, "inches")
  8124. },
  8125. {
  8126. name: "Mid-Sized Sub",
  8127. height: math.unit(6.2, "inches")
  8128. },
  8129. {
  8130. name: "Full-Sized Sub",
  8131. height: math.unit(9.3, "inches")
  8132. },
  8133. {
  8134. name: "Normal",
  8135. height: math.unit(5 + 2 / 12, "foot"),
  8136. default: true
  8137. },
  8138. ]
  8139. ))
  8140. characterMakers.push(() => makeCharacter(
  8141. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8142. {
  8143. front: {
  8144. height: math.unit(6, "feet"),
  8145. weight: math.unit(160, "lbs"),
  8146. name: "Front",
  8147. image: {
  8148. source: "./media/characters/gene-zeta/front.svg",
  8149. extra: 3006 / 2826,
  8150. bottom: 182 / 3188
  8151. }
  8152. }
  8153. },
  8154. [
  8155. {
  8156. name: "Micro",
  8157. height: math.unit(6, "inches")
  8158. },
  8159. {
  8160. name: "Normal",
  8161. height: math.unit(5 + 11 / 12, "foot"),
  8162. default: true
  8163. },
  8164. {
  8165. name: "Macro",
  8166. height: math.unit(140, "feet")
  8167. },
  8168. {
  8169. name: "Supercharged",
  8170. height: math.unit(2500, "feet")
  8171. },
  8172. ]
  8173. ))
  8174. characterMakers.push(() => makeCharacter(
  8175. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8176. {
  8177. front: {
  8178. height: math.unit(6, "feet"),
  8179. weight: math.unit(350, "lbs"),
  8180. name: "Front",
  8181. image: {
  8182. source: "./media/characters/razinox/front.svg",
  8183. extra: 1686 / 1548,
  8184. bottom: 28.2 / 1868
  8185. }
  8186. },
  8187. back: {
  8188. height: math.unit(6, "feet"),
  8189. weight: math.unit(350, "lbs"),
  8190. name: "Back",
  8191. image: {
  8192. source: "./media/characters/razinox/back.svg",
  8193. extra: 1660 / 1590,
  8194. bottom: 15 / 1665
  8195. }
  8196. },
  8197. },
  8198. [
  8199. {
  8200. name: "Normal",
  8201. height: math.unit(10 + 8 / 12, "foot")
  8202. },
  8203. {
  8204. name: "Minimacro",
  8205. height: math.unit(15, "foot")
  8206. },
  8207. {
  8208. name: "Macro",
  8209. height: math.unit(60, "foot"),
  8210. default: true
  8211. },
  8212. {
  8213. name: "Megamacro",
  8214. height: math.unit(5, "miles")
  8215. },
  8216. {
  8217. name: "Gigamacro",
  8218. height: math.unit(6000, "miles")
  8219. },
  8220. ]
  8221. ))
  8222. characterMakers.push(() => makeCharacter(
  8223. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8224. {
  8225. front: {
  8226. height: math.unit(6, "feet"),
  8227. weight: math.unit(150, "lbs"),
  8228. name: "Front",
  8229. image: {
  8230. source: "./media/characters/cobalt/front.svg"
  8231. }
  8232. }
  8233. },
  8234. [
  8235. {
  8236. name: "Normal",
  8237. height: math.unit(8 + 1 / 12, "foot")
  8238. },
  8239. {
  8240. name: "Macro",
  8241. height: math.unit(111, "foot"),
  8242. default: true
  8243. },
  8244. {
  8245. name: "Supracosmic",
  8246. height: math.unit(1e42, "feet")
  8247. },
  8248. ]
  8249. ))
  8250. characterMakers.push(() => makeCharacter(
  8251. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8252. {
  8253. front: {
  8254. height: math.unit(5, "inches"),
  8255. name: "Front",
  8256. image: {
  8257. source: "./media/characters/amanda/front.svg",
  8258. extra: 926/791,
  8259. bottom: 38/964
  8260. }
  8261. },
  8262. back: {
  8263. height: math.unit(5, "inches"),
  8264. name: "Back",
  8265. image: {
  8266. source: "./media/characters/amanda/back.svg",
  8267. extra: 909/805,
  8268. bottom: 43/952
  8269. }
  8270. },
  8271. },
  8272. [
  8273. {
  8274. name: "Micro",
  8275. height: math.unit(5, "inches"),
  8276. default: true
  8277. },
  8278. ]
  8279. ))
  8280. characterMakers.push(() => makeCharacter(
  8281. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8282. {
  8283. front: {
  8284. height: math.unit(2.75, "meters"),
  8285. weight: math.unit(1200, "lb"),
  8286. name: "Front",
  8287. image: {
  8288. source: "./media/characters/teal/front.svg",
  8289. extra: 2463 / 2320,
  8290. bottom: 166 / 2629
  8291. }
  8292. },
  8293. back: {
  8294. height: math.unit(2.75, "meters"),
  8295. weight: math.unit(1200, "lb"),
  8296. name: "Back",
  8297. image: {
  8298. source: "./media/characters/teal/back.svg",
  8299. extra: 2580 / 2489,
  8300. bottom: 151 / 2731
  8301. }
  8302. },
  8303. sitting: {
  8304. height: math.unit(1.9, "meters"),
  8305. weight: math.unit(1200, "lb"),
  8306. name: "Sitting",
  8307. image: {
  8308. source: "./media/characters/teal/sitting.svg",
  8309. extra: 623 / 590,
  8310. bottom: 121 / 744
  8311. }
  8312. },
  8313. standing: {
  8314. height: math.unit(2.75, "meters"),
  8315. weight: math.unit(1200, "lb"),
  8316. name: "Standing",
  8317. image: {
  8318. source: "./media/characters/teal/standing.svg",
  8319. extra: 923 / 893,
  8320. bottom: 60 / 983
  8321. }
  8322. },
  8323. stretching: {
  8324. height: math.unit(3.65, "meters"),
  8325. weight: math.unit(1200, "lb"),
  8326. name: "Stretching",
  8327. image: {
  8328. source: "./media/characters/teal/stretching.svg",
  8329. extra: 1276 / 1244,
  8330. bottom: 0 / 1276
  8331. }
  8332. },
  8333. legged: {
  8334. height: math.unit(1.3, "meters"),
  8335. weight: math.unit(100, "lb"),
  8336. name: "Legged",
  8337. image: {
  8338. source: "./media/characters/teal/legged.svg",
  8339. extra: 462 / 437,
  8340. bottom: 24 / 486
  8341. }
  8342. },
  8343. naga: {
  8344. height: math.unit(5.4, "meters"),
  8345. weight: math.unit(4000, "lb"),
  8346. name: "Naga",
  8347. image: {
  8348. source: "./media/characters/teal/naga.svg",
  8349. extra: 1902 / 1858,
  8350. bottom: 0 / 1902
  8351. }
  8352. },
  8353. hand: {
  8354. height: math.unit(0.52, "meters"),
  8355. name: "Hand",
  8356. image: {
  8357. source: "./media/characters/teal/hand.svg"
  8358. }
  8359. },
  8360. maw: {
  8361. height: math.unit(0.43, "meters"),
  8362. name: "Maw",
  8363. image: {
  8364. source: "./media/characters/teal/maw.svg"
  8365. }
  8366. },
  8367. slit: {
  8368. height: math.unit(0.25, "meters"),
  8369. name: "Slit",
  8370. image: {
  8371. source: "./media/characters/teal/slit.svg"
  8372. }
  8373. },
  8374. },
  8375. [
  8376. {
  8377. name: "Normal",
  8378. height: math.unit(2.75, "meters"),
  8379. default: true
  8380. },
  8381. {
  8382. name: "Macro",
  8383. height: math.unit(300, "feet")
  8384. },
  8385. {
  8386. name: "Macro+",
  8387. height: math.unit(2000, "feet")
  8388. },
  8389. ]
  8390. ))
  8391. characterMakers.push(() => makeCharacter(
  8392. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8393. {
  8394. frontCat: {
  8395. height: math.unit(6, "feet"),
  8396. weight: math.unit(180, "lbs"),
  8397. name: "Front (Cat)",
  8398. image: {
  8399. source: "./media/characters/ravin-amulet/front-cat.svg"
  8400. }
  8401. },
  8402. frontCatAlt: {
  8403. height: math.unit(6, "feet"),
  8404. weight: math.unit(180, "lbs"),
  8405. name: "Front (Alt, Cat)",
  8406. image: {
  8407. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8408. }
  8409. },
  8410. frontWerewolf: {
  8411. height: math.unit(6 * 1.2, "feet"),
  8412. weight: math.unit(225, "lbs"),
  8413. name: "Front (Werewolf)",
  8414. image: {
  8415. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8416. }
  8417. },
  8418. backWerewolf: {
  8419. height: math.unit(6 * 1.2, "feet"),
  8420. weight: math.unit(225, "lbs"),
  8421. name: "Back (Werewolf)",
  8422. image: {
  8423. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8424. }
  8425. },
  8426. },
  8427. [
  8428. {
  8429. name: "Nano",
  8430. height: math.unit(1, "micrometer")
  8431. },
  8432. {
  8433. name: "Micro",
  8434. height: math.unit(1, "inch")
  8435. },
  8436. {
  8437. name: "Normal",
  8438. height: math.unit(6, "feet"),
  8439. default: true
  8440. },
  8441. {
  8442. name: "Macro",
  8443. height: math.unit(60, "feet")
  8444. }
  8445. ]
  8446. ))
  8447. characterMakers.push(() => makeCharacter(
  8448. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8449. {
  8450. front: {
  8451. height: math.unit(6, "feet"),
  8452. weight: math.unit(165, "lbs"),
  8453. name: "Front",
  8454. image: {
  8455. source: "./media/characters/fluoresce/front.svg"
  8456. }
  8457. }
  8458. },
  8459. [
  8460. {
  8461. name: "Micro",
  8462. height: math.unit(6, "cm")
  8463. },
  8464. {
  8465. name: "Normal",
  8466. height: math.unit(5 + 7 / 12, "feet"),
  8467. default: true
  8468. },
  8469. {
  8470. name: "Macro",
  8471. height: math.unit(56, "feet")
  8472. },
  8473. {
  8474. name: "Megamacro",
  8475. height: math.unit(1.9, "miles")
  8476. },
  8477. ]
  8478. ))
  8479. characterMakers.push(() => makeCharacter(
  8480. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8481. {
  8482. front: {
  8483. height: math.unit(9 + 6 / 12, "feet"),
  8484. weight: math.unit(523, "lbs"),
  8485. name: "Side",
  8486. image: {
  8487. source: "./media/characters/aurora/side.svg",
  8488. extra: 474/393,
  8489. bottom: 5/479
  8490. }
  8491. }
  8492. },
  8493. [
  8494. {
  8495. name: "Normal",
  8496. height: math.unit(9 + 6 / 12, "feet")
  8497. },
  8498. {
  8499. name: "Macro",
  8500. height: math.unit(96, "feet"),
  8501. default: true
  8502. },
  8503. {
  8504. name: "Macro+",
  8505. height: math.unit(243, "feet")
  8506. },
  8507. ]
  8508. ))
  8509. characterMakers.push(() => makeCharacter(
  8510. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8511. {
  8512. front: {
  8513. height: math.unit(194, "cm"),
  8514. weight: math.unit(90, "kg"),
  8515. name: "Front",
  8516. image: {
  8517. source: "./media/characters/ranek/front.svg",
  8518. extra: 1862/1791,
  8519. bottom: 80/1942
  8520. }
  8521. },
  8522. back: {
  8523. height: math.unit(194, "cm"),
  8524. weight: math.unit(90, "kg"),
  8525. name: "Back",
  8526. image: {
  8527. source: "./media/characters/ranek/back.svg",
  8528. extra: 1853/1787,
  8529. bottom: 74/1927
  8530. }
  8531. },
  8532. feral: {
  8533. height: math.unit(30, "cm"),
  8534. weight: math.unit(1.6, "lbs"),
  8535. name: "Feral",
  8536. image: {
  8537. source: "./media/characters/ranek/feral.svg",
  8538. extra: 990/631,
  8539. bottom: 29/1019
  8540. }
  8541. },
  8542. },
  8543. [
  8544. {
  8545. name: "Normal",
  8546. height: math.unit(194, "cm"),
  8547. default: true
  8548. },
  8549. {
  8550. name: "Macro",
  8551. height: math.unit(100, "meters")
  8552. },
  8553. ]
  8554. ))
  8555. characterMakers.push(() => makeCharacter(
  8556. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8557. {
  8558. front: {
  8559. height: math.unit(5 + 6 / 12, "feet"),
  8560. weight: math.unit(153, "lbs"),
  8561. name: "Front",
  8562. image: {
  8563. source: "./media/characters/andrew-cooper/front.svg"
  8564. }
  8565. },
  8566. },
  8567. [
  8568. {
  8569. name: "Nano",
  8570. height: math.unit(1, "mm")
  8571. },
  8572. {
  8573. name: "Micro",
  8574. height: math.unit(2, "inches")
  8575. },
  8576. {
  8577. name: "Normal",
  8578. height: math.unit(5 + 6 / 12, "feet"),
  8579. default: true
  8580. }
  8581. ]
  8582. ))
  8583. characterMakers.push(() => makeCharacter(
  8584. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8585. {
  8586. front: {
  8587. height: math.unit(6, "feet"),
  8588. weight: math.unit(180, "lbs"),
  8589. name: "Front",
  8590. image: {
  8591. source: "./media/characters/akane-sato/front.svg",
  8592. extra: 1219 / 1140
  8593. }
  8594. },
  8595. back: {
  8596. height: math.unit(6, "feet"),
  8597. weight: math.unit(180, "lbs"),
  8598. name: "Back",
  8599. image: {
  8600. source: "./media/characters/akane-sato/back.svg",
  8601. extra: 1219 / 1170
  8602. }
  8603. },
  8604. },
  8605. [
  8606. {
  8607. name: "Normal",
  8608. height: math.unit(2.5, "meters")
  8609. },
  8610. {
  8611. name: "Macro",
  8612. height: math.unit(250, "meters"),
  8613. default: true
  8614. },
  8615. {
  8616. name: "Megamacro",
  8617. height: math.unit(25, "km")
  8618. },
  8619. ]
  8620. ))
  8621. characterMakers.push(() => makeCharacter(
  8622. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8623. {
  8624. front: {
  8625. height: math.unit(6, "feet"),
  8626. weight: math.unit(65, "kg"),
  8627. name: "Front",
  8628. image: {
  8629. source: "./media/characters/rook/front.svg",
  8630. extra: 960 / 950
  8631. }
  8632. }
  8633. },
  8634. [
  8635. {
  8636. name: "Normal",
  8637. height: math.unit(8.8, "feet")
  8638. },
  8639. {
  8640. name: "Macro",
  8641. height: math.unit(88, "feet"),
  8642. default: true
  8643. },
  8644. {
  8645. name: "Megamacro",
  8646. height: math.unit(8, "miles")
  8647. },
  8648. ]
  8649. ))
  8650. characterMakers.push(() => makeCharacter(
  8651. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8652. {
  8653. front: {
  8654. height: math.unit(12 + 2 / 12, "feet"),
  8655. weight: math.unit(808, "lbs"),
  8656. name: "Front",
  8657. image: {
  8658. source: "./media/characters/prodigy/front.svg"
  8659. }
  8660. }
  8661. },
  8662. [
  8663. {
  8664. name: "Normal",
  8665. height: math.unit(12 + 2 / 12, "feet"),
  8666. default: true
  8667. },
  8668. {
  8669. name: "Macro",
  8670. height: math.unit(143, "feet")
  8671. },
  8672. {
  8673. name: "Macro+",
  8674. height: math.unit(400, "feet")
  8675. },
  8676. ]
  8677. ))
  8678. characterMakers.push(() => makeCharacter(
  8679. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8680. {
  8681. front: {
  8682. height: math.unit(6, "feet"),
  8683. weight: math.unit(225, "lbs"),
  8684. name: "Front",
  8685. image: {
  8686. source: "./media/characters/daniel/front.svg"
  8687. }
  8688. },
  8689. leaning: {
  8690. height: math.unit(6, "feet"),
  8691. weight: math.unit(225, "lbs"),
  8692. name: "Leaning",
  8693. image: {
  8694. source: "./media/characters/daniel/leaning.svg"
  8695. }
  8696. },
  8697. },
  8698. [
  8699. {
  8700. name: "Macro",
  8701. height: math.unit(1000, "feet"),
  8702. default: true
  8703. },
  8704. ]
  8705. ))
  8706. characterMakers.push(() => makeCharacter(
  8707. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8708. {
  8709. front: {
  8710. height: math.unit(6, "feet"),
  8711. weight: math.unit(88, "lbs"),
  8712. name: "Front",
  8713. image: {
  8714. source: "./media/characters/chiros/front.svg",
  8715. extra: 306 / 226
  8716. }
  8717. },
  8718. side: {
  8719. height: math.unit(6, "feet"),
  8720. weight: math.unit(88, "lbs"),
  8721. name: "Side",
  8722. image: {
  8723. source: "./media/characters/chiros/side.svg",
  8724. extra: 306 / 226
  8725. }
  8726. },
  8727. },
  8728. [
  8729. {
  8730. name: "Normal",
  8731. height: math.unit(6, "cm"),
  8732. default: true
  8733. },
  8734. ]
  8735. ))
  8736. characterMakers.push(() => makeCharacter(
  8737. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8738. {
  8739. front: {
  8740. height: math.unit(6, "feet"),
  8741. weight: math.unit(100, "lbs"),
  8742. name: "Front",
  8743. image: {
  8744. source: "./media/characters/selka/front.svg",
  8745. extra: 947 / 887
  8746. }
  8747. }
  8748. },
  8749. [
  8750. {
  8751. name: "Normal",
  8752. height: math.unit(5, "cm"),
  8753. default: true
  8754. },
  8755. ]
  8756. ))
  8757. characterMakers.push(() => makeCharacter(
  8758. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8759. {
  8760. front: {
  8761. height: math.unit(8 + 3 / 12, "feet"),
  8762. weight: math.unit(424, "lbs"),
  8763. name: "Front",
  8764. image: {
  8765. source: "./media/characters/verin/front.svg",
  8766. extra: 1845 / 1550
  8767. }
  8768. },
  8769. frontArmored: {
  8770. height: math.unit(8 + 3 / 12, "feet"),
  8771. weight: math.unit(424, "lbs"),
  8772. name: "Front (Armored)",
  8773. image: {
  8774. source: "./media/characters/verin/front-armor.svg",
  8775. extra: 1845 / 1550,
  8776. bottom: 0.01
  8777. }
  8778. },
  8779. back: {
  8780. height: math.unit(8 + 3 / 12, "feet"),
  8781. weight: math.unit(424, "lbs"),
  8782. name: "Back",
  8783. image: {
  8784. source: "./media/characters/verin/back.svg",
  8785. bottom: 0.1,
  8786. extra: 1
  8787. }
  8788. },
  8789. foot: {
  8790. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8791. name: "Foot",
  8792. image: {
  8793. source: "./media/characters/verin/foot.svg"
  8794. }
  8795. },
  8796. },
  8797. [
  8798. {
  8799. name: "Normal",
  8800. height: math.unit(8 + 3 / 12, "feet")
  8801. },
  8802. {
  8803. name: "Minimacro",
  8804. height: math.unit(21, "feet"),
  8805. default: true
  8806. },
  8807. {
  8808. name: "Macro",
  8809. height: math.unit(626, "feet")
  8810. },
  8811. ]
  8812. ))
  8813. characterMakers.push(() => makeCharacter(
  8814. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8815. {
  8816. front: {
  8817. height: math.unit(2.718, "meters"),
  8818. weight: math.unit(150, "lbs"),
  8819. name: "Front",
  8820. image: {
  8821. source: "./media/characters/sovrim-terraquian/front.svg",
  8822. extra: 1752/1689,
  8823. bottom: 36/1788
  8824. }
  8825. },
  8826. back: {
  8827. height: math.unit(2.718, "meters"),
  8828. weight: math.unit(150, "lbs"),
  8829. name: "Back",
  8830. image: {
  8831. source: "./media/characters/sovrim-terraquian/back.svg",
  8832. extra: 1698/1657,
  8833. bottom: 58/1756
  8834. }
  8835. },
  8836. tongue: {
  8837. height: math.unit(2.865, "feet"),
  8838. name: "Tongue",
  8839. image: {
  8840. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8841. }
  8842. },
  8843. hand: {
  8844. height: math.unit(1.61, "feet"),
  8845. name: "Hand",
  8846. image: {
  8847. source: "./media/characters/sovrim-terraquian/hand.svg"
  8848. }
  8849. },
  8850. foot: {
  8851. height: math.unit(1.05, "feet"),
  8852. name: "Foot",
  8853. image: {
  8854. source: "./media/characters/sovrim-terraquian/foot.svg"
  8855. }
  8856. },
  8857. footAlt: {
  8858. height: math.unit(0.88, "feet"),
  8859. name: "Foot (Alt)",
  8860. image: {
  8861. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8862. }
  8863. },
  8864. },
  8865. [
  8866. {
  8867. name: "Micro",
  8868. height: math.unit(2, "inches")
  8869. },
  8870. {
  8871. name: "Small",
  8872. height: math.unit(1, "meter")
  8873. },
  8874. {
  8875. name: "Normal",
  8876. height: math.unit(Math.E, "meters"),
  8877. default: true
  8878. },
  8879. {
  8880. name: "Macro",
  8881. height: math.unit(20, "meters")
  8882. },
  8883. {
  8884. name: "Macro+",
  8885. height: math.unit(400, "meters")
  8886. },
  8887. ]
  8888. ))
  8889. characterMakers.push(() => makeCharacter(
  8890. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8891. {
  8892. front: {
  8893. height: math.unit(7, "feet"),
  8894. weight: math.unit(489, "lbs"),
  8895. name: "Front",
  8896. image: {
  8897. source: "./media/characters/reece-silvermane/front.svg",
  8898. bottom: 0.02,
  8899. extra: 1
  8900. }
  8901. },
  8902. },
  8903. [
  8904. {
  8905. name: "Macro",
  8906. height: math.unit(1.5, "miles"),
  8907. default: true
  8908. },
  8909. ]
  8910. ))
  8911. characterMakers.push(() => makeCharacter(
  8912. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8913. {
  8914. front: {
  8915. height: math.unit(6, "feet"),
  8916. weight: math.unit(78, "kg"),
  8917. name: "Front",
  8918. image: {
  8919. source: "./media/characters/kane/front.svg",
  8920. extra: 978 / 899
  8921. }
  8922. },
  8923. },
  8924. [
  8925. {
  8926. name: "Normal",
  8927. height: math.unit(2.1, "m"),
  8928. },
  8929. {
  8930. name: "Macro",
  8931. height: math.unit(1, "km"),
  8932. default: true
  8933. },
  8934. ]
  8935. ))
  8936. characterMakers.push(() => makeCharacter(
  8937. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8938. {
  8939. front: {
  8940. height: math.unit(6, "feet"),
  8941. weight: math.unit(200, "kg"),
  8942. name: "Front",
  8943. image: {
  8944. source: "./media/characters/tegon/front.svg",
  8945. bottom: 0.01,
  8946. extra: 1
  8947. }
  8948. },
  8949. },
  8950. [
  8951. {
  8952. name: "Micro",
  8953. height: math.unit(1, "inch")
  8954. },
  8955. {
  8956. name: "Normal",
  8957. height: math.unit(6 + 3 / 12, "feet"),
  8958. default: true
  8959. },
  8960. {
  8961. name: "Macro",
  8962. height: math.unit(300, "feet")
  8963. },
  8964. {
  8965. name: "Megamacro",
  8966. height: math.unit(69, "miles")
  8967. },
  8968. ]
  8969. ))
  8970. characterMakers.push(() => makeCharacter(
  8971. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8972. {
  8973. side: {
  8974. height: math.unit(6, "feet"),
  8975. weight: math.unit(2304, "lbs"),
  8976. name: "Side",
  8977. image: {
  8978. source: "./media/characters/arcturax/side.svg",
  8979. extra: 790 / 376,
  8980. bottom: 0.01
  8981. }
  8982. },
  8983. },
  8984. [
  8985. {
  8986. name: "Micro",
  8987. height: math.unit(2, "inch")
  8988. },
  8989. {
  8990. name: "Normal",
  8991. height: math.unit(6, "feet")
  8992. },
  8993. {
  8994. name: "Macro",
  8995. height: math.unit(39, "feet"),
  8996. default: true
  8997. },
  8998. {
  8999. name: "Megamacro",
  9000. height: math.unit(7, "miles")
  9001. },
  9002. ]
  9003. ))
  9004. characterMakers.push(() => makeCharacter(
  9005. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  9006. {
  9007. front: {
  9008. height: math.unit(6, "feet"),
  9009. weight: math.unit(50, "lbs"),
  9010. name: "Front",
  9011. image: {
  9012. source: "./media/characters/sentri/front.svg",
  9013. extra: 1750 / 1570,
  9014. bottom: 0.025
  9015. }
  9016. },
  9017. frontAlt: {
  9018. height: math.unit(6, "feet"),
  9019. weight: math.unit(50, "lbs"),
  9020. name: "Front (Alt)",
  9021. image: {
  9022. source: "./media/characters/sentri/front-alt.svg",
  9023. extra: 1750 / 1570,
  9024. bottom: 0.025
  9025. }
  9026. },
  9027. },
  9028. [
  9029. {
  9030. name: "Normal",
  9031. height: math.unit(15, "feet"),
  9032. default: true
  9033. },
  9034. {
  9035. name: "Macro",
  9036. height: math.unit(2500, "feet")
  9037. }
  9038. ]
  9039. ))
  9040. characterMakers.push(() => makeCharacter(
  9041. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9042. {
  9043. front: {
  9044. height: math.unit(5 + 8 / 12, "feet"),
  9045. weight: math.unit(130, "lbs"),
  9046. name: "Front",
  9047. image: {
  9048. source: "./media/characters/corvin/front.svg",
  9049. extra: 1803 / 1629
  9050. }
  9051. },
  9052. frontShirt: {
  9053. height: math.unit(5 + 8 / 12, "feet"),
  9054. weight: math.unit(130, "lbs"),
  9055. name: "Front (Shirt)",
  9056. image: {
  9057. source: "./media/characters/corvin/front-shirt.svg",
  9058. extra: 1803 / 1629
  9059. }
  9060. },
  9061. frontPoncho: {
  9062. height: math.unit(5 + 8 / 12, "feet"),
  9063. weight: math.unit(130, "lbs"),
  9064. name: "Front (Poncho)",
  9065. image: {
  9066. source: "./media/characters/corvin/front-poncho.svg",
  9067. extra: 1803 / 1629
  9068. }
  9069. },
  9070. side: {
  9071. height: math.unit(5 + 8 / 12, "feet"),
  9072. weight: math.unit(130, "lbs"),
  9073. name: "Side",
  9074. image: {
  9075. source: "./media/characters/corvin/side.svg",
  9076. extra: 1012 / 945
  9077. }
  9078. },
  9079. back: {
  9080. height: math.unit(5 + 8 / 12, "feet"),
  9081. weight: math.unit(130, "lbs"),
  9082. name: "Back",
  9083. image: {
  9084. source: "./media/characters/corvin/back.svg",
  9085. extra: 1803 / 1629
  9086. }
  9087. },
  9088. },
  9089. [
  9090. {
  9091. name: "Micro",
  9092. height: math.unit(3, "inches")
  9093. },
  9094. {
  9095. name: "Normal",
  9096. height: math.unit(5 + 8 / 12, "feet")
  9097. },
  9098. {
  9099. name: "Macro",
  9100. height: math.unit(300, "feet"),
  9101. default: true
  9102. },
  9103. {
  9104. name: "Megamacro",
  9105. height: math.unit(500, "miles")
  9106. }
  9107. ]
  9108. ))
  9109. characterMakers.push(() => makeCharacter(
  9110. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9111. {
  9112. front: {
  9113. height: math.unit(6, "feet"),
  9114. weight: math.unit(135, "lbs"),
  9115. name: "Front",
  9116. image: {
  9117. source: "./media/characters/q/front.svg",
  9118. extra: 854 / 752,
  9119. bottom: 0.005
  9120. }
  9121. },
  9122. back: {
  9123. height: math.unit(6, "feet"),
  9124. weight: math.unit(130, "lbs"),
  9125. name: "Back",
  9126. image: {
  9127. source: "./media/characters/q/back.svg",
  9128. extra: 854 / 752
  9129. }
  9130. },
  9131. },
  9132. [
  9133. {
  9134. name: "Macro",
  9135. height: math.unit(90, "feet"),
  9136. default: true
  9137. },
  9138. {
  9139. name: "Extra Macro",
  9140. height: math.unit(300, "feet"),
  9141. },
  9142. {
  9143. name: "BIG WALF",
  9144. height: math.unit(750, "feet"),
  9145. },
  9146. ]
  9147. ))
  9148. characterMakers.push(() => makeCharacter(
  9149. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9150. {
  9151. front: {
  9152. height: math.unit(3, "feet"),
  9153. weight: math.unit(28, "lbs"),
  9154. name: "Front",
  9155. image: {
  9156. source: "./media/characters/citrine/front.svg"
  9157. }
  9158. }
  9159. },
  9160. [
  9161. {
  9162. name: "Normal",
  9163. height: math.unit(3, "feet"),
  9164. default: true
  9165. }
  9166. ]
  9167. ))
  9168. characterMakers.push(() => makeCharacter(
  9169. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9170. {
  9171. front: {
  9172. height: math.unit(14, "feet"),
  9173. weight: math.unit(1450, "kg"),
  9174. preyCapacity: math.unit(15, "people"),
  9175. name: "Front",
  9176. image: {
  9177. source: "./media/characters/aura-starwind/front.svg",
  9178. extra: 1440/1327,
  9179. bottom: 11/1451
  9180. }
  9181. },
  9182. side: {
  9183. height: math.unit(14, "feet"),
  9184. weight: math.unit(1450, "kg"),
  9185. preyCapacity: math.unit(15, "people"),
  9186. name: "Side",
  9187. image: {
  9188. source: "./media/characters/aura-starwind/side.svg",
  9189. extra: 1654 / 1497
  9190. }
  9191. },
  9192. taur: {
  9193. height: math.unit(18, "feet"),
  9194. weight: math.unit(5500, "kg"),
  9195. preyCapacity: math.unit(50, "people"),
  9196. name: "Taur",
  9197. image: {
  9198. source: "./media/characters/aura-starwind/taur.svg",
  9199. extra: 1760 / 1650
  9200. }
  9201. },
  9202. feral: {
  9203. height: math.unit(46, "feet"),
  9204. weight: math.unit(25000, "kg"),
  9205. preyCapacity: math.unit(120, "people"),
  9206. name: "Feral",
  9207. image: {
  9208. source: "./media/characters/aura-starwind/feral.svg"
  9209. }
  9210. },
  9211. },
  9212. [
  9213. {
  9214. name: "Normal",
  9215. height: math.unit(14, "feet"),
  9216. default: true
  9217. },
  9218. {
  9219. name: "Macro",
  9220. height: math.unit(50, "meters")
  9221. },
  9222. {
  9223. name: "Megamacro",
  9224. height: math.unit(5000, "meters")
  9225. },
  9226. {
  9227. name: "Gigamacro",
  9228. height: math.unit(100000, "kilometers")
  9229. },
  9230. ]
  9231. ))
  9232. characterMakers.push(() => makeCharacter(
  9233. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9234. {
  9235. front: {
  9236. height: math.unit(2 + 7 / 12, "feet"),
  9237. weight: math.unit(32, "lbs"),
  9238. name: "Front",
  9239. image: {
  9240. source: "./media/characters/rivet/front.svg",
  9241. extra: 1716 / 1658,
  9242. bottom: 0.03
  9243. }
  9244. },
  9245. foot: {
  9246. height: math.unit(0.551, "feet"),
  9247. name: "Rivet's Foot",
  9248. image: {
  9249. source: "./media/characters/rivet/foot.svg"
  9250. },
  9251. rename: true
  9252. }
  9253. },
  9254. [
  9255. {
  9256. name: "Micro",
  9257. height: math.unit(1.5, "inches"),
  9258. },
  9259. {
  9260. name: "Normal",
  9261. height: math.unit(2 + 7 / 12, "feet"),
  9262. default: true
  9263. },
  9264. {
  9265. name: "Macro",
  9266. height: math.unit(85, "feet")
  9267. },
  9268. {
  9269. name: "Megamacro",
  9270. height: math.unit(2.2, "km")
  9271. }
  9272. ]
  9273. ))
  9274. characterMakers.push(() => makeCharacter(
  9275. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9276. {
  9277. front: {
  9278. height: math.unit(5 + 9 / 12, "feet"),
  9279. weight: math.unit(150, "lbs"),
  9280. name: "Front",
  9281. image: {
  9282. source: "./media/characters/coffee/front.svg",
  9283. extra: 946/880,
  9284. bottom: 66/1012
  9285. }
  9286. },
  9287. foot: {
  9288. height: math.unit(1.29, "feet"),
  9289. name: "Foot",
  9290. image: {
  9291. source: "./media/characters/coffee/foot.svg"
  9292. }
  9293. },
  9294. },
  9295. [
  9296. {
  9297. name: "Micro",
  9298. height: math.unit(2, "inches"),
  9299. },
  9300. {
  9301. name: "Normal",
  9302. height: math.unit(5 + 9 / 12, "feet"),
  9303. default: true
  9304. },
  9305. {
  9306. name: "Macro",
  9307. height: math.unit(800, "feet")
  9308. },
  9309. {
  9310. name: "Megamacro",
  9311. height: math.unit(25, "miles")
  9312. }
  9313. ]
  9314. ))
  9315. characterMakers.push(() => makeCharacter(
  9316. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9317. {
  9318. front: {
  9319. height: math.unit(6, "feet"),
  9320. weight: math.unit(200, "lbs"),
  9321. name: "Front",
  9322. image: {
  9323. source: "./media/characters/chari-gal/front.svg",
  9324. extra: 1568 / 1385,
  9325. bottom: 0.047
  9326. }
  9327. },
  9328. gigantamax: {
  9329. height: math.unit(6 * 16, "feet"),
  9330. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9331. name: "Gigantamax",
  9332. image: {
  9333. source: "./media/characters/chari-gal/gigantamax.svg",
  9334. extra: 1124 / 888,
  9335. bottom: 0.03
  9336. }
  9337. },
  9338. },
  9339. [
  9340. {
  9341. name: "Normal",
  9342. height: math.unit(5 + 7 / 12, "feet")
  9343. },
  9344. {
  9345. name: "Macro",
  9346. height: math.unit(200, "feet"),
  9347. default: true
  9348. }
  9349. ]
  9350. ))
  9351. characterMakers.push(() => makeCharacter(
  9352. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9353. {
  9354. front: {
  9355. height: math.unit(6, "feet"),
  9356. weight: math.unit(150, "lbs"),
  9357. name: "Front",
  9358. image: {
  9359. source: "./media/characters/nova/front.svg",
  9360. extra: 5000 / 4722,
  9361. bottom: 0.02
  9362. }
  9363. }
  9364. },
  9365. [
  9366. {
  9367. name: "Micro-",
  9368. height: math.unit(0.8, "inches")
  9369. },
  9370. {
  9371. name: "Micro",
  9372. height: math.unit(2, "inches"),
  9373. default: true
  9374. },
  9375. ]
  9376. ))
  9377. characterMakers.push(() => makeCharacter(
  9378. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9379. {
  9380. koboldFront: {
  9381. height: math.unit(3 + 1 / 12, "feet"),
  9382. weight: math.unit(21.7, "lbs"),
  9383. name: "Front",
  9384. image: {
  9385. source: "./media/characters/argent/kobold-front.svg",
  9386. extra: 1471 / 1331,
  9387. bottom: 100.8 / 1575.5
  9388. },
  9389. form: "kobold",
  9390. default: true
  9391. },
  9392. dragonFront: {
  9393. height: math.unit(75, "inches"),
  9394. name: "Front",
  9395. image: {
  9396. source: "./media/characters/argent/dragon-front.svg",
  9397. extra: 1389/1248,
  9398. bottom: 54/1443
  9399. },
  9400. form: "dragon",
  9401. },
  9402. dragonBack: {
  9403. height: math.unit(75, "inches"),
  9404. name: "Back",
  9405. image: {
  9406. source: "./media/characters/argent/dragon-back.svg",
  9407. extra: 1399/1271,
  9408. bottom: 23/1422
  9409. },
  9410. form: "dragon",
  9411. },
  9412. dragonDressed: {
  9413. height: math.unit(75, "inches"),
  9414. name: "Dressed",
  9415. image: {
  9416. source: "./media/characters/argent/dragon-dressed.svg",
  9417. extra: 1350/1215,
  9418. bottom: 26/1376
  9419. },
  9420. form: "dragon"
  9421. },
  9422. dragonHead: {
  9423. height: math.unit(23.5, "inches"),
  9424. name: "Head",
  9425. image: {
  9426. source: "./media/characters/argent/dragon-head.svg"
  9427. },
  9428. form: "dragon",
  9429. },
  9430. },
  9431. [
  9432. {
  9433. name: "Micro",
  9434. height: math.unit(2, "inches"),
  9435. form: "kobold",
  9436. },
  9437. {
  9438. name: "Normal",
  9439. height: math.unit(3 + 1 / 12, "feet"),
  9440. form: "kobold",
  9441. default: true
  9442. },
  9443. {
  9444. name: "Macro",
  9445. height: math.unit(120, "feet"),
  9446. form: "kobold",
  9447. },
  9448. {
  9449. name: "Speck",
  9450. height: math.unit(1, "mm"),
  9451. form: "dragon",
  9452. },
  9453. {
  9454. name: "Tiny",
  9455. height: math.unit(1, "cm"),
  9456. form: "dragon",
  9457. },
  9458. {
  9459. name: "Micro",
  9460. height: math.unit(5, "cm"),
  9461. form: "dragon",
  9462. },
  9463. {
  9464. name: "Normal",
  9465. height: math.unit(75, "inches"),
  9466. form: "dragon",
  9467. default: true
  9468. },
  9469. {
  9470. name: "Extra Tall",
  9471. height: math.unit(9, "feet"),
  9472. form: "dragon",
  9473. },
  9474. {
  9475. name: "Inconvenient",
  9476. height: math.unit(5, "meters"),
  9477. form: "dragon",
  9478. },
  9479. {
  9480. name: "Macro",
  9481. height: math.unit(70, "meters"),
  9482. form: "dragon",
  9483. },
  9484. {
  9485. name: "Macro+",
  9486. height: math.unit(250, "meters"),
  9487. form: "dragon",
  9488. },
  9489. {
  9490. name: "Megamacro",
  9491. height: math.unit(20, "km"),
  9492. form: "dragon",
  9493. },
  9494. {
  9495. name: "Mountainous",
  9496. height: math.unit(100, "km"),
  9497. form: "dragon",
  9498. },
  9499. {
  9500. name: "Continental",
  9501. height: math.unit(2, "megameters"),
  9502. form: "dragon",
  9503. },
  9504. {
  9505. name: "Too Big",
  9506. height: math.unit(900, "megameters"),
  9507. form: "dragon",
  9508. },
  9509. ],
  9510. {
  9511. "kobold": {
  9512. name: "Kobold",
  9513. default: true
  9514. },
  9515. "dragon": {
  9516. name: "Dragon",
  9517. },
  9518. }
  9519. ))
  9520. characterMakers.push(() => makeCharacter(
  9521. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9522. {
  9523. lamp: {
  9524. height: math.unit(7 * 1559 / 989, "feet"),
  9525. name: "Magic Lamp",
  9526. image: {
  9527. source: "./media/characters/mira-al-cul/lamp.svg",
  9528. extra: 1617 / 1559
  9529. }
  9530. },
  9531. front: {
  9532. height: math.unit(7, "feet"),
  9533. name: "Front",
  9534. image: {
  9535. source: "./media/characters/mira-al-cul/front.svg",
  9536. extra: 1044 / 990
  9537. }
  9538. },
  9539. },
  9540. [
  9541. {
  9542. name: "Heavily Restricted",
  9543. height: math.unit(7 * 1559 / 989, "feet")
  9544. },
  9545. {
  9546. name: "Freshly Freed",
  9547. height: math.unit(50 * 1559 / 989, "feet")
  9548. },
  9549. {
  9550. name: "World Encompassing",
  9551. height: math.unit(10000 * 1559 / 989, "miles")
  9552. },
  9553. {
  9554. name: "Galactic",
  9555. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9556. },
  9557. {
  9558. name: "Palmed Universe",
  9559. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9560. default: true
  9561. },
  9562. {
  9563. name: "Multiversal Matriarch",
  9564. height: math.unit(8.87e10, "yottameters")
  9565. },
  9566. {
  9567. name: "Void Mother",
  9568. height: math.unit(3.14e110, "yottaparsecs")
  9569. },
  9570. {
  9571. name: "Toying with Transcendence",
  9572. height: math.unit(1e307, "meters")
  9573. },
  9574. ]
  9575. ))
  9576. characterMakers.push(() => makeCharacter(
  9577. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9578. {
  9579. front: {
  9580. height: math.unit(17 + 1 / 12, "feet"),
  9581. weight: math.unit(476.2 * 5, "lbs"),
  9582. name: "Front",
  9583. image: {
  9584. source: "./media/characters/kuro-shi-uchū/front.svg",
  9585. extra: 2329 / 1835,
  9586. bottom: 0.02
  9587. }
  9588. },
  9589. },
  9590. [
  9591. {
  9592. name: "Micro",
  9593. height: math.unit(2, "inches")
  9594. },
  9595. {
  9596. name: "Normal",
  9597. height: math.unit(12, "meters")
  9598. },
  9599. {
  9600. name: "Planetary",
  9601. height: math.unit(0.00929, "AU"),
  9602. default: true
  9603. },
  9604. {
  9605. name: "Universal",
  9606. height: math.unit(20, "gigaparsecs")
  9607. },
  9608. ]
  9609. ))
  9610. characterMakers.push(() => makeCharacter(
  9611. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9612. {
  9613. front: {
  9614. height: math.unit(5 + 2 / 12, "feet"),
  9615. weight: math.unit(120, "lbs"),
  9616. name: "Front",
  9617. image: {
  9618. source: "./media/characters/katherine/front.svg",
  9619. extra: 2075 / 1969
  9620. }
  9621. },
  9622. dress: {
  9623. height: math.unit(5 + 2 / 12, "feet"),
  9624. weight: math.unit(120, "lbs"),
  9625. name: "Dress",
  9626. image: {
  9627. source: "./media/characters/katherine/dress.svg",
  9628. extra: 2258 / 2064
  9629. }
  9630. },
  9631. },
  9632. [
  9633. {
  9634. name: "Micro",
  9635. height: math.unit(1, "inches"),
  9636. default: true
  9637. },
  9638. {
  9639. name: "Normal",
  9640. height: math.unit(5 + 2 / 12, "feet")
  9641. },
  9642. {
  9643. name: "Macro",
  9644. height: math.unit(100, "meters")
  9645. },
  9646. {
  9647. name: "Megamacro",
  9648. height: math.unit(80, "miles")
  9649. },
  9650. ]
  9651. ))
  9652. characterMakers.push(() => makeCharacter(
  9653. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9654. {
  9655. front: {
  9656. height: math.unit(7 + 8 / 12, "feet"),
  9657. weight: math.unit(250, "lbs"),
  9658. name: "Front",
  9659. image: {
  9660. source: "./media/characters/yevis/front.svg",
  9661. extra: 1938 / 1755
  9662. }
  9663. }
  9664. },
  9665. [
  9666. {
  9667. name: "Mortal",
  9668. height: math.unit(7 + 8 / 12, "feet")
  9669. },
  9670. {
  9671. name: "Battle",
  9672. height: math.unit(25 + 11 / 12, "feet")
  9673. },
  9674. {
  9675. name: "Wrath",
  9676. height: math.unit(1654 + 11 / 12, "feet")
  9677. },
  9678. {
  9679. name: "Planet Destroyer",
  9680. height: math.unit(12000, "miles")
  9681. },
  9682. {
  9683. name: "Galaxy Conqueror",
  9684. height: math.unit(1.45, "zettameters"),
  9685. default: true
  9686. },
  9687. {
  9688. name: "Universal War",
  9689. height: math.unit(184, "gigaparsecs")
  9690. },
  9691. {
  9692. name: "Eternity War",
  9693. height: math.unit(1.98e55, "yottaparsecs")
  9694. },
  9695. ]
  9696. ))
  9697. characterMakers.push(() => makeCharacter(
  9698. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9699. {
  9700. front: {
  9701. height: math.unit(5 + 8 / 12, "feet"),
  9702. weight: math.unit(63, "kg"),
  9703. name: "Front",
  9704. image: {
  9705. source: "./media/characters/xavier/front.svg",
  9706. extra: 944 / 883
  9707. }
  9708. },
  9709. frontStretch: {
  9710. height: math.unit(5 + 8 / 12, "feet"),
  9711. weight: math.unit(63, "kg"),
  9712. name: "Stretching",
  9713. image: {
  9714. source: "./media/characters/xavier/front-stretch.svg",
  9715. extra: 962 / 820
  9716. }
  9717. },
  9718. },
  9719. [
  9720. {
  9721. name: "Normal",
  9722. height: math.unit(5 + 8 / 12, "feet")
  9723. },
  9724. {
  9725. name: "Macro",
  9726. height: math.unit(100, "meters"),
  9727. default: true
  9728. },
  9729. {
  9730. name: "McLargeHuge",
  9731. height: math.unit(10, "miles")
  9732. },
  9733. ]
  9734. ))
  9735. characterMakers.push(() => makeCharacter(
  9736. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9737. {
  9738. front: {
  9739. height: math.unit(5 + 5 / 12, "feet"),
  9740. weight: math.unit(150, "lb"),
  9741. name: "Front",
  9742. image: {
  9743. source: "./media/characters/joshii/front.svg",
  9744. extra: 765 / 653,
  9745. bottom: 51 / 816
  9746. }
  9747. },
  9748. foot: {
  9749. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9750. name: "Foot",
  9751. image: {
  9752. source: "./media/characters/joshii/foot.svg"
  9753. }
  9754. },
  9755. },
  9756. [
  9757. {
  9758. name: "Micro",
  9759. height: math.unit(2, "inches")
  9760. },
  9761. {
  9762. name: "Normal",
  9763. height: math.unit(5 + 5 / 12, "feet")
  9764. },
  9765. {
  9766. name: "Macro",
  9767. height: math.unit(785, "feet"),
  9768. default: true
  9769. },
  9770. {
  9771. name: "Megamacro",
  9772. height: math.unit(24.5, "miles")
  9773. },
  9774. ]
  9775. ))
  9776. characterMakers.push(() => makeCharacter(
  9777. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9778. {
  9779. front: {
  9780. height: math.unit(6, "feet"),
  9781. weight: math.unit(150, "lb"),
  9782. name: "Front",
  9783. image: {
  9784. source: "./media/characters/goddess-elizabeth/front.svg",
  9785. extra: 1800 / 1525,
  9786. bottom: 0.005
  9787. }
  9788. },
  9789. foot: {
  9790. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9791. name: "Foot",
  9792. image: {
  9793. source: "./media/characters/goddess-elizabeth/foot.svg"
  9794. }
  9795. },
  9796. mouth: {
  9797. height: math.unit(6, "feet"),
  9798. name: "Mouth",
  9799. image: {
  9800. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9801. }
  9802. },
  9803. },
  9804. [
  9805. {
  9806. name: "Micro",
  9807. height: math.unit(12, "feet")
  9808. },
  9809. {
  9810. name: "Normal",
  9811. height: math.unit(80, "miles"),
  9812. default: true
  9813. },
  9814. {
  9815. name: "Macro",
  9816. height: math.unit(15000, "parsecs")
  9817. },
  9818. ]
  9819. ))
  9820. characterMakers.push(() => makeCharacter(
  9821. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9822. {
  9823. front: {
  9824. height: math.unit(5 + 9 / 12, "feet"),
  9825. weight: math.unit(144, "lb"),
  9826. name: "Front",
  9827. image: {
  9828. source: "./media/characters/kara/front.svg"
  9829. }
  9830. },
  9831. feet: {
  9832. height: math.unit(6 / 6.765, "feet"),
  9833. name: "Kara's Feet",
  9834. rename: true,
  9835. image: {
  9836. source: "./media/characters/kara/feet.svg"
  9837. }
  9838. },
  9839. },
  9840. [
  9841. {
  9842. name: "Normal",
  9843. height: math.unit(5 + 9 / 12, "feet")
  9844. },
  9845. {
  9846. name: "Macro",
  9847. height: math.unit(174, "feet"),
  9848. default: true
  9849. },
  9850. ]
  9851. ))
  9852. characterMakers.push(() => makeCharacter(
  9853. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9854. {
  9855. front: {
  9856. height: math.unit(18, "feet"),
  9857. weight: math.unit(4050, "lb"),
  9858. name: "Front",
  9859. image: {
  9860. source: "./media/characters/tyrone/front.svg",
  9861. extra: 2405 / 2270,
  9862. bottom: 182 / 2587
  9863. }
  9864. },
  9865. },
  9866. [
  9867. {
  9868. name: "Normal",
  9869. height: math.unit(18, "feet"),
  9870. default: true
  9871. },
  9872. {
  9873. name: "Macro",
  9874. height: math.unit(300, "feet")
  9875. },
  9876. {
  9877. name: "Megamacro",
  9878. height: math.unit(15, "km")
  9879. },
  9880. {
  9881. name: "Gigamacro",
  9882. height: math.unit(500, "km")
  9883. },
  9884. {
  9885. name: "Teramacro",
  9886. height: math.unit(0.5, "gigameters")
  9887. },
  9888. {
  9889. name: "Omnimacro",
  9890. height: math.unit(1e252, "yottauniverse")
  9891. },
  9892. ]
  9893. ))
  9894. characterMakers.push(() => makeCharacter(
  9895. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9896. {
  9897. front: {
  9898. height: math.unit(7 + 8 / 12, "feet"),
  9899. weight: math.unit(120, "lb"),
  9900. name: "Front",
  9901. image: {
  9902. source: "./media/characters/danny/front.svg",
  9903. extra: 1490 / 1350
  9904. }
  9905. },
  9906. back: {
  9907. height: math.unit(7 + 8 / 12, "feet"),
  9908. weight: math.unit(120, "lb"),
  9909. name: "Back",
  9910. image: {
  9911. source: "./media/characters/danny/back.svg",
  9912. extra: 1490 / 1350
  9913. }
  9914. },
  9915. },
  9916. [
  9917. {
  9918. name: "Normal",
  9919. height: math.unit(7 + 8 / 12, "feet"),
  9920. default: true
  9921. },
  9922. ]
  9923. ))
  9924. characterMakers.push(() => makeCharacter(
  9925. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9926. {
  9927. front: {
  9928. height: math.unit(3.5, "inches"),
  9929. weight: math.unit(19, "grams"),
  9930. name: "Front",
  9931. image: {
  9932. source: "./media/characters/mallow/front.svg",
  9933. extra: 471 / 431
  9934. }
  9935. },
  9936. back: {
  9937. height: math.unit(3.5, "inches"),
  9938. weight: math.unit(19, "grams"),
  9939. name: "Back",
  9940. image: {
  9941. source: "./media/characters/mallow/back.svg",
  9942. extra: 471 / 431
  9943. }
  9944. },
  9945. },
  9946. [
  9947. {
  9948. name: "Normal",
  9949. height: math.unit(3.5, "inches"),
  9950. default: true
  9951. },
  9952. ]
  9953. ))
  9954. characterMakers.push(() => makeCharacter(
  9955. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9956. {
  9957. front: {
  9958. height: math.unit(9, "feet"),
  9959. weight: math.unit(230, "kg"),
  9960. name: "Front",
  9961. image: {
  9962. source: "./media/characters/starry-aqua/front.svg"
  9963. }
  9964. },
  9965. back: {
  9966. height: math.unit(9, "feet"),
  9967. weight: math.unit(230, "kg"),
  9968. name: "Back",
  9969. image: {
  9970. source: "./media/characters/starry-aqua/back.svg"
  9971. }
  9972. },
  9973. hand: {
  9974. height: math.unit(9 * 0.1168, "feet"),
  9975. name: "Hand",
  9976. image: {
  9977. source: "./media/characters/starry-aqua/hand.svg"
  9978. }
  9979. },
  9980. foot: {
  9981. height: math.unit(9 * 0.18, "feet"),
  9982. name: "Foot",
  9983. image: {
  9984. source: "./media/characters/starry-aqua/foot.svg"
  9985. }
  9986. }
  9987. },
  9988. [
  9989. {
  9990. name: "Micro",
  9991. height: math.unit(3, "inches")
  9992. },
  9993. {
  9994. name: "Normal",
  9995. height: math.unit(9, "feet")
  9996. },
  9997. {
  9998. name: "Macro",
  9999. height: math.unit(300, "feet"),
  10000. default: true
  10001. },
  10002. {
  10003. name: "Megamacro",
  10004. height: math.unit(3200, "feet")
  10005. }
  10006. ]
  10007. ))
  10008. characterMakers.push(() => makeCharacter(
  10009. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  10010. {
  10011. front: {
  10012. height: math.unit(15, "feet"),
  10013. weight: math.unit(5026, "lb"),
  10014. name: "Front",
  10015. image: {
  10016. source: "./media/characters/luka-towers/front.svg",
  10017. extra: 1269/1133,
  10018. bottom: 51/1320
  10019. }
  10020. },
  10021. },
  10022. [
  10023. {
  10024. name: "Normal",
  10025. height: math.unit(15, "feet"),
  10026. default: true
  10027. },
  10028. {
  10029. name: "Minimacro",
  10030. height: math.unit(25, "feet")
  10031. },
  10032. {
  10033. name: "Macro",
  10034. height: math.unit(320, "feet")
  10035. },
  10036. {
  10037. name: "Megamacro",
  10038. height: math.unit(35000, "feet")
  10039. },
  10040. {
  10041. name: "Gigamacro",
  10042. height: math.unit(4000, "miles")
  10043. },
  10044. {
  10045. name: "Teramacro",
  10046. height: math.unit(15000, "miles")
  10047. },
  10048. ]
  10049. ))
  10050. characterMakers.push(() => makeCharacter(
  10051. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10052. {
  10053. front: {
  10054. height: math.unit(6, "feet"),
  10055. weight: math.unit(150, "lb"),
  10056. name: "Front",
  10057. image: {
  10058. source: "./media/characters/natalie-nightring/front.svg",
  10059. extra: 1,
  10060. bottom: 0.06
  10061. }
  10062. },
  10063. },
  10064. [
  10065. {
  10066. name: "Uh Oh",
  10067. height: math.unit(0.1, "mm")
  10068. },
  10069. {
  10070. name: "Small",
  10071. height: math.unit(3, "inches")
  10072. },
  10073. {
  10074. name: "Human Scale",
  10075. height: math.unit(6, "feet")
  10076. },
  10077. {
  10078. name: "Librarian",
  10079. height: math.unit(50, "feet"),
  10080. default: true
  10081. },
  10082. {
  10083. name: "Immense",
  10084. height: math.unit(200, "miles")
  10085. },
  10086. ]
  10087. ))
  10088. characterMakers.push(() => makeCharacter(
  10089. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10090. {
  10091. front: {
  10092. height: math.unit(6, "feet"),
  10093. weight: math.unit(180, "lbs"),
  10094. name: "Front",
  10095. image: {
  10096. source: "./media/characters/danni-rosie/front.svg",
  10097. extra: 1260 / 1128,
  10098. bottom: 0.022
  10099. }
  10100. },
  10101. },
  10102. [
  10103. {
  10104. name: "Micro",
  10105. height: math.unit(2, "inches"),
  10106. default: true
  10107. },
  10108. ]
  10109. ))
  10110. characterMakers.push(() => makeCharacter(
  10111. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10112. {
  10113. front: {
  10114. height: math.unit(5 + 9 / 12, "feet"),
  10115. weight: math.unit(220, "lb"),
  10116. name: "Front",
  10117. image: {
  10118. source: "./media/characters/samantha-kruse/front.svg",
  10119. extra: (985 / 935),
  10120. bottom: 0.03
  10121. }
  10122. },
  10123. frontUndressed: {
  10124. height: math.unit(5 + 9 / 12, "feet"),
  10125. weight: math.unit(220, "lb"),
  10126. name: "Front (Undressed)",
  10127. image: {
  10128. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10129. extra: (973 / 923),
  10130. bottom: 0.025
  10131. }
  10132. },
  10133. fat: {
  10134. height: math.unit(5 + 9 / 12, "feet"),
  10135. weight: math.unit(900, "lb"),
  10136. name: "Front (Fat)",
  10137. image: {
  10138. source: "./media/characters/samantha-kruse/fat.svg",
  10139. extra: 2688 / 2561
  10140. }
  10141. },
  10142. },
  10143. [
  10144. {
  10145. name: "Normal",
  10146. height: math.unit(5 + 9 / 12, "feet"),
  10147. default: true
  10148. }
  10149. ]
  10150. ))
  10151. characterMakers.push(() => makeCharacter(
  10152. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10153. {
  10154. back: {
  10155. height: math.unit(5 + 4 / 12, "feet"),
  10156. weight: math.unit(4963, "lb"),
  10157. name: "Back",
  10158. image: {
  10159. source: "./media/characters/amelia-rosie/back.svg",
  10160. extra: 1113 / 963,
  10161. bottom: 0.01
  10162. }
  10163. },
  10164. },
  10165. [
  10166. {
  10167. name: "Level 0",
  10168. height: math.unit(5 + 4 / 12, "feet")
  10169. },
  10170. {
  10171. name: "Level 1",
  10172. height: math.unit(164597, "feet"),
  10173. default: true
  10174. },
  10175. {
  10176. name: "Level 2",
  10177. height: math.unit(956243, "miles")
  10178. },
  10179. {
  10180. name: "Level 3",
  10181. height: math.unit(29421709423, "miles")
  10182. },
  10183. {
  10184. name: "Level 4",
  10185. height: math.unit(154, "lightyears")
  10186. },
  10187. {
  10188. name: "Level 5",
  10189. height: math.unit(4738272, "lightyears")
  10190. },
  10191. {
  10192. name: "Level 6",
  10193. height: math.unit(145787152896, "lightyears")
  10194. },
  10195. ]
  10196. ))
  10197. characterMakers.push(() => makeCharacter(
  10198. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10199. {
  10200. front: {
  10201. height: math.unit(5 + 11 / 12, "feet"),
  10202. weight: math.unit(65, "kg"),
  10203. name: "Front",
  10204. image: {
  10205. source: "./media/characters/rook-kitara/front.svg",
  10206. extra: 1347 / 1274,
  10207. bottom: 0.005
  10208. }
  10209. },
  10210. },
  10211. [
  10212. {
  10213. name: "Totally Unfair",
  10214. height: math.unit(1.8, "mm")
  10215. },
  10216. {
  10217. name: "Lap Rookie",
  10218. height: math.unit(1.4, "feet")
  10219. },
  10220. {
  10221. name: "Normal",
  10222. height: math.unit(5 + 11 / 12, "feet"),
  10223. default: true
  10224. },
  10225. {
  10226. name: "How Did This Happen",
  10227. height: math.unit(80, "miles")
  10228. }
  10229. ]
  10230. ))
  10231. characterMakers.push(() => makeCharacter(
  10232. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10233. {
  10234. front: {
  10235. height: math.unit(7, "feet"),
  10236. weight: math.unit(300, "lb"),
  10237. name: "Front",
  10238. image: {
  10239. source: "./media/characters/pisces/front.svg",
  10240. extra: 2255 / 2115,
  10241. bottom: 0.03
  10242. }
  10243. },
  10244. back: {
  10245. height: math.unit(7, "feet"),
  10246. weight: math.unit(300, "lb"),
  10247. name: "Back",
  10248. image: {
  10249. source: "./media/characters/pisces/back.svg",
  10250. extra: 2146 / 2055,
  10251. bottom: 0.04
  10252. }
  10253. },
  10254. },
  10255. [
  10256. {
  10257. name: "Normal",
  10258. height: math.unit(7, "feet"),
  10259. default: true
  10260. },
  10261. {
  10262. name: "Swimming Pool",
  10263. height: math.unit(12.2, "meters")
  10264. },
  10265. {
  10266. name: "Olympic Swimming Pool",
  10267. height: math.unit(56.3, "meters")
  10268. },
  10269. {
  10270. name: "Lake Superior",
  10271. height: math.unit(93900, "meters")
  10272. },
  10273. {
  10274. name: "Mediterranean Sea",
  10275. height: math.unit(644457, "meters")
  10276. },
  10277. {
  10278. name: "World's Oceans",
  10279. height: math.unit(4567491, "meters")
  10280. },
  10281. ]
  10282. ))
  10283. characterMakers.push(() => makeCharacter(
  10284. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10285. {
  10286. front: {
  10287. height: math.unit(2.3, "meters"),
  10288. weight: math.unit(120, "kg"),
  10289. name: "Front",
  10290. image: {
  10291. source: "./media/characters/zelas/front.svg"
  10292. }
  10293. },
  10294. side: {
  10295. height: math.unit(2.3, "meters"),
  10296. weight: math.unit(120, "kg"),
  10297. name: "Side",
  10298. image: {
  10299. source: "./media/characters/zelas/side.svg"
  10300. }
  10301. },
  10302. back: {
  10303. height: math.unit(2.3, "meters"),
  10304. weight: math.unit(120, "kg"),
  10305. name: "Back",
  10306. image: {
  10307. source: "./media/characters/zelas/back.svg"
  10308. }
  10309. },
  10310. foot: {
  10311. height: math.unit(1.116, "feet"),
  10312. name: "Foot",
  10313. image: {
  10314. source: "./media/characters/zelas/foot.svg"
  10315. }
  10316. },
  10317. },
  10318. [
  10319. {
  10320. name: "Normal",
  10321. height: math.unit(2.3, "meters")
  10322. },
  10323. {
  10324. name: "Macro",
  10325. height: math.unit(30, "meters"),
  10326. default: true
  10327. },
  10328. ]
  10329. ))
  10330. characterMakers.push(() => makeCharacter(
  10331. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10332. {
  10333. front: {
  10334. height: math.unit(1, "inch"),
  10335. weight: math.unit(0.21, "grams"),
  10336. name: "Front",
  10337. image: {
  10338. source: "./media/characters/talbot/front.svg",
  10339. extra: 594 / 544
  10340. }
  10341. },
  10342. },
  10343. [
  10344. {
  10345. name: "Micro",
  10346. height: math.unit(1, "inch"),
  10347. default: true
  10348. },
  10349. ]
  10350. ))
  10351. characterMakers.push(() => makeCharacter(
  10352. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10353. {
  10354. front: {
  10355. height: math.unit(3 + 3 / 12, "feet"),
  10356. weight: math.unit(51.8, "lb"),
  10357. name: "Front",
  10358. image: {
  10359. source: "./media/characters/fliss/front.svg",
  10360. extra: 840 / 640
  10361. }
  10362. },
  10363. },
  10364. [
  10365. {
  10366. name: "Teeny Tiny",
  10367. height: math.unit(1, "mm")
  10368. },
  10369. {
  10370. name: "Small",
  10371. height: math.unit(1, "inch"),
  10372. default: true
  10373. },
  10374. {
  10375. name: "Standard Sylveon",
  10376. height: math.unit(3 + 3 / 12, "feet")
  10377. },
  10378. {
  10379. name: "Large Nuisance",
  10380. height: math.unit(33, "feet")
  10381. },
  10382. {
  10383. name: "City Filler",
  10384. height: math.unit(3000, "feet")
  10385. },
  10386. {
  10387. name: "New Horizon",
  10388. height: math.unit(6000, "miles")
  10389. },
  10390. ]
  10391. ))
  10392. characterMakers.push(() => makeCharacter(
  10393. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10394. {
  10395. front: {
  10396. height: math.unit(5, "cm"),
  10397. weight: math.unit(1.94, "g"),
  10398. name: "Front",
  10399. image: {
  10400. source: "./media/characters/fleta/front.svg",
  10401. extra: 835 / 803
  10402. }
  10403. },
  10404. back: {
  10405. height: math.unit(5, "cm"),
  10406. weight: math.unit(1.94, "g"),
  10407. name: "Back",
  10408. image: {
  10409. source: "./media/characters/fleta/back.svg",
  10410. extra: 835 / 803
  10411. }
  10412. },
  10413. },
  10414. [
  10415. {
  10416. name: "Micro",
  10417. height: math.unit(5, "cm"),
  10418. default: true
  10419. },
  10420. ]
  10421. ))
  10422. characterMakers.push(() => makeCharacter(
  10423. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10424. {
  10425. front: {
  10426. height: math.unit(6, "feet"),
  10427. weight: math.unit(225, "lb"),
  10428. name: "Front",
  10429. image: {
  10430. source: "./media/characters/dominic/front.svg",
  10431. extra: 1770 / 1620,
  10432. bottom: 0.025
  10433. }
  10434. },
  10435. back: {
  10436. height: math.unit(6, "feet"),
  10437. weight: math.unit(225, "lb"),
  10438. name: "Back",
  10439. image: {
  10440. source: "./media/characters/dominic/back.svg",
  10441. extra: 1745 / 1620,
  10442. bottom: 0.065
  10443. }
  10444. },
  10445. },
  10446. [
  10447. {
  10448. name: "Nano",
  10449. height: math.unit(0.1, "mm")
  10450. },
  10451. {
  10452. name: "Micro-",
  10453. height: math.unit(1, "mm")
  10454. },
  10455. {
  10456. name: "Micro",
  10457. height: math.unit(4, "inches")
  10458. },
  10459. {
  10460. name: "Normal",
  10461. height: math.unit(6 + 4 / 12, "feet"),
  10462. default: true
  10463. },
  10464. {
  10465. name: "Macro",
  10466. height: math.unit(115, "feet")
  10467. },
  10468. {
  10469. name: "Macro+",
  10470. height: math.unit(955, "feet")
  10471. },
  10472. {
  10473. name: "Megamacro",
  10474. height: math.unit(8990, "feet")
  10475. },
  10476. {
  10477. name: "Gigmacro",
  10478. height: math.unit(9310, "miles")
  10479. },
  10480. {
  10481. name: "Teramacro",
  10482. height: math.unit(1567005010, "miles")
  10483. },
  10484. {
  10485. name: "Examacro",
  10486. height: math.unit(1425, "parsecs")
  10487. },
  10488. ]
  10489. ))
  10490. characterMakers.push(() => makeCharacter(
  10491. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10492. {
  10493. front: {
  10494. height: math.unit(400, "feet"),
  10495. weight: math.unit(44444444, "lb"),
  10496. name: "Front",
  10497. image: {
  10498. source: "./media/characters/major-colonel/front.svg"
  10499. }
  10500. },
  10501. back: {
  10502. height: math.unit(400, "feet"),
  10503. weight: math.unit(44444444, "lb"),
  10504. name: "Back",
  10505. image: {
  10506. source: "./media/characters/major-colonel/back.svg"
  10507. }
  10508. },
  10509. },
  10510. [
  10511. {
  10512. name: "Macro",
  10513. height: math.unit(400, "feet"),
  10514. default: true
  10515. },
  10516. ]
  10517. ))
  10518. characterMakers.push(() => makeCharacter(
  10519. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10520. {
  10521. catFront: {
  10522. height: math.unit(6, "feet"),
  10523. weight: math.unit(120, "lb"),
  10524. name: "Front (Cat Side)",
  10525. image: {
  10526. source: "./media/characters/axel-lycan/cat-front.svg",
  10527. extra: 430 / 402,
  10528. bottom: 43 / 472.35
  10529. }
  10530. },
  10531. catBack: {
  10532. height: math.unit(6, "feet"),
  10533. weight: math.unit(120, "lb"),
  10534. name: "Back (Cat Side)",
  10535. image: {
  10536. source: "./media/characters/axel-lycan/cat-back.svg",
  10537. extra: 447 / 419,
  10538. bottom: 23.3 / 469
  10539. }
  10540. },
  10541. wolfFront: {
  10542. height: math.unit(6, "feet"),
  10543. weight: math.unit(120, "lb"),
  10544. name: "Front (Wolf Side)",
  10545. image: {
  10546. source: "./media/characters/axel-lycan/wolf-front.svg",
  10547. extra: 485 / 456,
  10548. bottom: 19 / 504
  10549. }
  10550. },
  10551. wolfBack: {
  10552. height: math.unit(6, "feet"),
  10553. weight: math.unit(120, "lb"),
  10554. name: "Back (Wolf Side)",
  10555. image: {
  10556. source: "./media/characters/axel-lycan/wolf-back.svg",
  10557. extra: 475 / 438,
  10558. bottom: 39.2 / 514
  10559. }
  10560. },
  10561. },
  10562. [
  10563. {
  10564. name: "Macro",
  10565. height: math.unit(1, "km"),
  10566. default: true
  10567. },
  10568. ]
  10569. ))
  10570. characterMakers.push(() => makeCharacter(
  10571. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10572. {
  10573. front: {
  10574. height: math.unit(5 + 9 / 12, "feet"),
  10575. weight: math.unit(175, "lb"),
  10576. name: "Front",
  10577. image: {
  10578. source: "./media/characters/vanrel-hyena/front.svg",
  10579. extra: 1086 / 1010,
  10580. bottom: 0.04
  10581. }
  10582. },
  10583. },
  10584. [
  10585. {
  10586. name: "Normal",
  10587. height: math.unit(5 + 9 / 12, "feet"),
  10588. default: true
  10589. },
  10590. ]
  10591. ))
  10592. characterMakers.push(() => makeCharacter(
  10593. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10594. {
  10595. front: {
  10596. height: math.unit(6, "feet"),
  10597. weight: math.unit(103, "lb"),
  10598. name: "Front",
  10599. image: {
  10600. source: "./media/characters/abbott-absol/front.svg",
  10601. extra: 2010 / 1842
  10602. }
  10603. },
  10604. },
  10605. [
  10606. {
  10607. name: "Megamicro",
  10608. height: math.unit(0.1, "mm")
  10609. },
  10610. {
  10611. name: "Micro",
  10612. height: math.unit(1, "inch")
  10613. },
  10614. {
  10615. name: "Normal",
  10616. height: math.unit(6, "feet"),
  10617. default: true
  10618. },
  10619. ]
  10620. ))
  10621. characterMakers.push(() => makeCharacter(
  10622. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10623. {
  10624. front: {
  10625. height: math.unit(6, "feet"),
  10626. weight: math.unit(264, "lb"),
  10627. name: "Front",
  10628. image: {
  10629. source: "./media/characters/hector/front.svg",
  10630. extra: 2280 / 2130,
  10631. bottom: 0.07
  10632. }
  10633. },
  10634. },
  10635. [
  10636. {
  10637. name: "Normal",
  10638. height: math.unit(12.25, "foot"),
  10639. default: true
  10640. },
  10641. {
  10642. name: "Macro",
  10643. height: math.unit(160, "feet")
  10644. },
  10645. ]
  10646. ))
  10647. characterMakers.push(() => makeCharacter(
  10648. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10649. {
  10650. front: {
  10651. height: math.unit(6, "feet"),
  10652. weight: math.unit(150, "lb"),
  10653. name: "Front",
  10654. image: {
  10655. source: "./media/characters/sal/front.svg",
  10656. extra: 1846 / 1699,
  10657. bottom: 0.04
  10658. }
  10659. },
  10660. },
  10661. [
  10662. {
  10663. name: "Megamacro",
  10664. height: math.unit(10, "miles"),
  10665. default: true
  10666. },
  10667. ]
  10668. ))
  10669. characterMakers.push(() => makeCharacter(
  10670. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10671. {
  10672. front: {
  10673. height: math.unit(3, "meters"),
  10674. weight: math.unit(450, "kg"),
  10675. name: "front",
  10676. image: {
  10677. source: "./media/characters/ranger/front.svg",
  10678. extra: 2401 / 2243,
  10679. bottom: 0.05
  10680. }
  10681. },
  10682. },
  10683. [
  10684. {
  10685. name: "Normal",
  10686. height: math.unit(3, "meters"),
  10687. default: true
  10688. },
  10689. ]
  10690. ))
  10691. characterMakers.push(() => makeCharacter(
  10692. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10693. {
  10694. front: {
  10695. height: math.unit(14, "feet"),
  10696. weight: math.unit(800, "kg"),
  10697. name: "Front",
  10698. image: {
  10699. source: "./media/characters/theresa/front.svg",
  10700. extra: 3575 / 3346,
  10701. bottom: 0.03
  10702. }
  10703. },
  10704. },
  10705. [
  10706. {
  10707. name: "Normal",
  10708. height: math.unit(14, "feet"),
  10709. default: true
  10710. },
  10711. ]
  10712. ))
  10713. characterMakers.push(() => makeCharacter(
  10714. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10715. {
  10716. front: {
  10717. height: math.unit(6, "feet"),
  10718. weight: math.unit(3, "kg"),
  10719. name: "Front",
  10720. image: {
  10721. source: "./media/characters/ine/front.svg",
  10722. extra: 678 / 539,
  10723. bottom: 0.023
  10724. }
  10725. },
  10726. },
  10727. [
  10728. {
  10729. name: "Normal",
  10730. height: math.unit(2.265, "feet"),
  10731. default: true
  10732. },
  10733. ]
  10734. ))
  10735. characterMakers.push(() => makeCharacter(
  10736. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10737. {
  10738. front: {
  10739. height: math.unit(5, "feet"),
  10740. weight: math.unit(30, "kg"),
  10741. name: "Front",
  10742. image: {
  10743. source: "./media/characters/vial/front.svg",
  10744. extra: 1365 / 1277,
  10745. bottom: 0.04
  10746. }
  10747. },
  10748. },
  10749. [
  10750. {
  10751. name: "Normal",
  10752. height: math.unit(5, "feet"),
  10753. default: true
  10754. },
  10755. ]
  10756. ))
  10757. characterMakers.push(() => makeCharacter(
  10758. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10759. {
  10760. side: {
  10761. height: math.unit(3.4, "meters"),
  10762. weight: math.unit(1000, "lb"),
  10763. name: "Side",
  10764. image: {
  10765. source: "./media/characters/rovoska/side.svg",
  10766. extra: 4403 / 1515
  10767. }
  10768. },
  10769. },
  10770. [
  10771. {
  10772. name: "Normal",
  10773. height: math.unit(3.4, "meters"),
  10774. default: true
  10775. },
  10776. ]
  10777. ))
  10778. characterMakers.push(() => makeCharacter(
  10779. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10780. {
  10781. front: {
  10782. height: math.unit(8, "feet"),
  10783. weight: math.unit(315, "lb"),
  10784. name: "Front",
  10785. image: {
  10786. source: "./media/characters/gunner-rotthbauer/front.svg"
  10787. }
  10788. },
  10789. back: {
  10790. height: math.unit(8, "feet"),
  10791. weight: math.unit(315, "lb"),
  10792. name: "Back",
  10793. image: {
  10794. source: "./media/characters/gunner-rotthbauer/back.svg"
  10795. }
  10796. },
  10797. },
  10798. [
  10799. {
  10800. name: "Micro",
  10801. height: math.unit(3.5, "inches")
  10802. },
  10803. {
  10804. name: "Normal",
  10805. height: math.unit(8, "feet"),
  10806. default: true
  10807. },
  10808. {
  10809. name: "Macro",
  10810. height: math.unit(250, "feet")
  10811. },
  10812. {
  10813. name: "Megamacro",
  10814. height: math.unit(1, "AU")
  10815. },
  10816. ]
  10817. ))
  10818. characterMakers.push(() => makeCharacter(
  10819. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10820. {
  10821. front: {
  10822. height: math.unit(5 + 5 / 12, "feet"),
  10823. weight: math.unit(140, "lb"),
  10824. name: "Front",
  10825. image: {
  10826. source: "./media/characters/allatia/front.svg",
  10827. extra: 1227 / 1180,
  10828. bottom: 0.027
  10829. }
  10830. },
  10831. },
  10832. [
  10833. {
  10834. name: "Normal",
  10835. height: math.unit(5 + 5 / 12, "feet")
  10836. },
  10837. {
  10838. name: "Macro",
  10839. height: math.unit(250, "feet"),
  10840. default: true
  10841. },
  10842. {
  10843. name: "Megamacro",
  10844. height: math.unit(8, "miles")
  10845. }
  10846. ]
  10847. ))
  10848. characterMakers.push(() => makeCharacter(
  10849. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10850. {
  10851. front: {
  10852. height: math.unit(6, "feet"),
  10853. weight: math.unit(120, "lb"),
  10854. name: "Front",
  10855. image: {
  10856. source: "./media/characters/tene/front.svg",
  10857. extra: 814/750,
  10858. bottom: 36/850
  10859. }
  10860. },
  10861. stomping: {
  10862. height: math.unit(2.025, "meters"),
  10863. weight: math.unit(120, "lb"),
  10864. name: "Stomping",
  10865. image: {
  10866. source: "./media/characters/tene/stomping.svg",
  10867. extra: 885/821,
  10868. bottom: 15/900
  10869. }
  10870. },
  10871. sitting: {
  10872. height: math.unit(1, "meter"),
  10873. weight: math.unit(120, "lb"),
  10874. name: "Sitting",
  10875. image: {
  10876. source: "./media/characters/tene/sitting.svg",
  10877. extra: 396/366,
  10878. bottom: 79/475
  10879. }
  10880. },
  10881. smiling: {
  10882. height: math.unit(1.2, "feet"),
  10883. name: "Smiling",
  10884. image: {
  10885. source: "./media/characters/tene/smiling.svg",
  10886. extra: 1364/1071,
  10887. bottom: 0/1364
  10888. }
  10889. },
  10890. smug: {
  10891. height: math.unit(1.3, "feet"),
  10892. name: "Smug",
  10893. image: {
  10894. source: "./media/characters/tene/smug.svg",
  10895. extra: 1323/1082,
  10896. bottom: 0/1323
  10897. }
  10898. },
  10899. feral: {
  10900. height: math.unit(3.9, "feet"),
  10901. weight: math.unit(250, "lb"),
  10902. name: "Feral",
  10903. image: {
  10904. source: "./media/characters/tene/feral.svg",
  10905. extra: 717 / 458,
  10906. bottom: 0.179
  10907. }
  10908. },
  10909. },
  10910. [
  10911. {
  10912. name: "Normal",
  10913. height: math.unit(6, "feet")
  10914. },
  10915. {
  10916. name: "Macro",
  10917. height: math.unit(300, "feet"),
  10918. default: true
  10919. },
  10920. {
  10921. name: "Megamacro",
  10922. height: math.unit(5, "miles")
  10923. },
  10924. ]
  10925. ))
  10926. characterMakers.push(() => makeCharacter(
  10927. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10928. {
  10929. side: {
  10930. height: math.unit(6, "feet"),
  10931. name: "Side",
  10932. image: {
  10933. source: "./media/characters/evander/side.svg",
  10934. extra: 877 / 477
  10935. }
  10936. },
  10937. },
  10938. [
  10939. {
  10940. name: "Normal",
  10941. height: math.unit(0.83, "meters"),
  10942. default: true
  10943. },
  10944. ]
  10945. ))
  10946. characterMakers.push(() => makeCharacter(
  10947. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10948. {
  10949. front: {
  10950. height: math.unit(12, "feet"),
  10951. weight: math.unit(1000, "lb"),
  10952. name: "Front",
  10953. image: {
  10954. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10955. extra: 1762 / 1611
  10956. }
  10957. },
  10958. back: {
  10959. height: math.unit(12, "feet"),
  10960. weight: math.unit(1000, "lb"),
  10961. name: "Back",
  10962. image: {
  10963. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10964. extra: 1762 / 1611
  10965. }
  10966. },
  10967. },
  10968. [
  10969. {
  10970. name: "Normal",
  10971. height: math.unit(12, "feet"),
  10972. default: true
  10973. },
  10974. {
  10975. name: "Kaiju",
  10976. height: math.unit(150, "feet")
  10977. },
  10978. ]
  10979. ))
  10980. characterMakers.push(() => makeCharacter(
  10981. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10982. {
  10983. front: {
  10984. height: math.unit(6, "feet"),
  10985. weight: math.unit(150, "lb"),
  10986. name: "Front",
  10987. image: {
  10988. source: "./media/characters/zero-alurus/front.svg"
  10989. }
  10990. },
  10991. back: {
  10992. height: math.unit(6, "feet"),
  10993. weight: math.unit(150, "lb"),
  10994. name: "Back",
  10995. image: {
  10996. source: "./media/characters/zero-alurus/back.svg"
  10997. }
  10998. },
  10999. },
  11000. [
  11001. {
  11002. name: "Normal",
  11003. height: math.unit(5 + 10 / 12, "feet")
  11004. },
  11005. {
  11006. name: "Macro",
  11007. height: math.unit(60, "feet"),
  11008. default: true
  11009. },
  11010. {
  11011. name: "Macro+",
  11012. height: math.unit(450, "feet")
  11013. },
  11014. ]
  11015. ))
  11016. characterMakers.push(() => makeCharacter(
  11017. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  11018. {
  11019. front: {
  11020. height: math.unit(6, "feet"),
  11021. weight: math.unit(200, "lb"),
  11022. name: "Front",
  11023. image: {
  11024. source: "./media/characters/mega-shi/front.svg",
  11025. extra: 1279 / 1250,
  11026. bottom: 0.02
  11027. }
  11028. },
  11029. back: {
  11030. height: math.unit(6, "feet"),
  11031. weight: math.unit(200, "lb"),
  11032. name: "Back",
  11033. image: {
  11034. source: "./media/characters/mega-shi/back.svg",
  11035. extra: 1279 / 1250,
  11036. bottom: 0.02
  11037. }
  11038. },
  11039. },
  11040. [
  11041. {
  11042. name: "Micro",
  11043. height: math.unit(16 + 6 / 12, "feet")
  11044. },
  11045. {
  11046. name: "Third Dimension",
  11047. height: math.unit(40, "meters")
  11048. },
  11049. {
  11050. name: "Normal",
  11051. height: math.unit(660, "feet"),
  11052. default: true
  11053. },
  11054. {
  11055. name: "Megamacro",
  11056. height: math.unit(10, "miles")
  11057. },
  11058. {
  11059. name: "Planetary Launch",
  11060. height: math.unit(500, "miles")
  11061. },
  11062. {
  11063. name: "Interstellar",
  11064. height: math.unit(1e9, "miles")
  11065. },
  11066. {
  11067. name: "Leaving the Universe",
  11068. height: math.unit(1, "gigaparsec")
  11069. },
  11070. {
  11071. name: "Travelling Universes",
  11072. height: math.unit(30e15, "parsecs")
  11073. },
  11074. ]
  11075. ))
  11076. characterMakers.push(() => makeCharacter(
  11077. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11078. {
  11079. front: {
  11080. height: math.unit(5 + 4/12, "feet"),
  11081. weight: math.unit(120, "lb"),
  11082. name: "Front",
  11083. image: {
  11084. source: "./media/characters/odyssey/front.svg",
  11085. extra: 1747/1571,
  11086. bottom: 47/1794
  11087. }
  11088. },
  11089. side: {
  11090. height: math.unit(5.1, "feet"),
  11091. weight: math.unit(120, "lb"),
  11092. name: "Side",
  11093. image: {
  11094. source: "./media/characters/odyssey/side.svg",
  11095. extra: 1847/1619,
  11096. bottom: 47/1894
  11097. }
  11098. },
  11099. lounging: {
  11100. height: math.unit(1.464, "feet"),
  11101. weight: math.unit(120, "lb"),
  11102. name: "Lounging",
  11103. image: {
  11104. source: "./media/characters/odyssey/lounging.svg",
  11105. extra: 1235/837,
  11106. bottom: 551/1786
  11107. }
  11108. },
  11109. },
  11110. [
  11111. {
  11112. name: "Normal",
  11113. height: math.unit(5 + 4 / 12, "feet")
  11114. },
  11115. {
  11116. name: "Macro",
  11117. height: math.unit(1, "km")
  11118. },
  11119. {
  11120. name: "Megamacro",
  11121. height: math.unit(3000, "km")
  11122. },
  11123. {
  11124. name: "Gigamacro",
  11125. height: math.unit(1, "AU"),
  11126. default: true
  11127. },
  11128. {
  11129. name: "Omniversal",
  11130. height: math.unit(100e14, "lightyears")
  11131. },
  11132. ]
  11133. ))
  11134. characterMakers.push(() => makeCharacter(
  11135. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11136. {
  11137. front: {
  11138. height: math.unit(6, "feet"),
  11139. weight: math.unit(300, "lb"),
  11140. name: "Front",
  11141. image: {
  11142. source: "./media/characters/mekuto/front.svg",
  11143. extra: 921 / 832,
  11144. bottom: 0.03
  11145. }
  11146. },
  11147. hand: {
  11148. height: math.unit(6 / 10.24, "feet"),
  11149. name: "Hand",
  11150. image: {
  11151. source: "./media/characters/mekuto/hand.svg"
  11152. }
  11153. },
  11154. foot: {
  11155. height: math.unit(6 / 5.05, "feet"),
  11156. name: "Foot",
  11157. image: {
  11158. source: "./media/characters/mekuto/foot.svg"
  11159. }
  11160. },
  11161. },
  11162. [
  11163. {
  11164. name: "Minimicro",
  11165. height: math.unit(0.2, "inches")
  11166. },
  11167. {
  11168. name: "Micro",
  11169. height: math.unit(1.5, "inches")
  11170. },
  11171. {
  11172. name: "Normal",
  11173. height: math.unit(5 + 11 / 12, "feet"),
  11174. default: true
  11175. },
  11176. {
  11177. name: "Minimacro",
  11178. height: math.unit(17 + 9 / 12, "feet")
  11179. },
  11180. {
  11181. name: "Macro",
  11182. height: math.unit(177.5, "feet")
  11183. },
  11184. {
  11185. name: "Megamacro",
  11186. height: math.unit(152, "miles")
  11187. },
  11188. ]
  11189. ))
  11190. characterMakers.push(() => makeCharacter(
  11191. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11192. {
  11193. front: {
  11194. height: math.unit(6.5, "inches"),
  11195. weight: math.unit(13, "oz"),
  11196. name: "Front",
  11197. image: {
  11198. source: "./media/characters/dafydd-tomos/front.svg",
  11199. extra: 2990 / 2603,
  11200. bottom: 0.03
  11201. }
  11202. },
  11203. },
  11204. [
  11205. {
  11206. name: "Micro",
  11207. height: math.unit(6.5, "inches"),
  11208. default: true
  11209. },
  11210. ]
  11211. ))
  11212. characterMakers.push(() => makeCharacter(
  11213. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11214. {
  11215. front: {
  11216. height: math.unit(6, "feet"),
  11217. weight: math.unit(150, "lb"),
  11218. name: "Front",
  11219. image: {
  11220. source: "./media/characters/splinter/front.svg",
  11221. extra: 2990 / 2882,
  11222. bottom: 0.04
  11223. }
  11224. },
  11225. back: {
  11226. height: math.unit(6, "feet"),
  11227. weight: math.unit(150, "lb"),
  11228. name: "Back",
  11229. image: {
  11230. source: "./media/characters/splinter/back.svg",
  11231. extra: 2990 / 2882,
  11232. bottom: 0.04
  11233. }
  11234. },
  11235. },
  11236. [
  11237. {
  11238. name: "Normal",
  11239. height: math.unit(6, "feet")
  11240. },
  11241. {
  11242. name: "Macro",
  11243. height: math.unit(230, "meters"),
  11244. default: true
  11245. },
  11246. ]
  11247. ))
  11248. characterMakers.push(() => makeCharacter(
  11249. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11250. {
  11251. front: {
  11252. height: math.unit(4 + 10 / 12, "feet"),
  11253. weight: math.unit(480, "lb"),
  11254. name: "Front",
  11255. image: {
  11256. source: "./media/characters/snow-gabumon/front.svg",
  11257. extra: 1140 / 963,
  11258. bottom: 0.058
  11259. }
  11260. },
  11261. back: {
  11262. height: math.unit(4 + 10 / 12, "feet"),
  11263. weight: math.unit(480, "lb"),
  11264. name: "Back",
  11265. image: {
  11266. source: "./media/characters/snow-gabumon/back.svg",
  11267. extra: 1115 / 962,
  11268. bottom: 0.041
  11269. }
  11270. },
  11271. frontUndresed: {
  11272. height: math.unit(4 + 10 / 12, "feet"),
  11273. weight: math.unit(480, "lb"),
  11274. name: "Front (Undressed)",
  11275. image: {
  11276. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11277. extra: 1061 / 960,
  11278. bottom: 0.045
  11279. }
  11280. },
  11281. },
  11282. [
  11283. {
  11284. name: "Micro",
  11285. height: math.unit(1, "inch")
  11286. },
  11287. {
  11288. name: "Normal",
  11289. height: math.unit(4 + 10 / 12, "feet"),
  11290. default: true
  11291. },
  11292. {
  11293. name: "Macro",
  11294. height: math.unit(200, "feet")
  11295. },
  11296. {
  11297. name: "Megamacro",
  11298. height: math.unit(120, "miles")
  11299. },
  11300. {
  11301. name: "Gigamacro",
  11302. height: math.unit(9800, "miles")
  11303. },
  11304. ]
  11305. ))
  11306. characterMakers.push(() => makeCharacter(
  11307. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11308. {
  11309. front: {
  11310. height: math.unit(1.7, "meters"),
  11311. weight: math.unit(140, "lb"),
  11312. name: "Front",
  11313. image: {
  11314. source: "./media/characters/moody/front.svg",
  11315. extra: 3226 / 3007,
  11316. bottom: 0.087
  11317. }
  11318. },
  11319. },
  11320. [
  11321. {
  11322. name: "Micro",
  11323. height: math.unit(1, "mm")
  11324. },
  11325. {
  11326. name: "Normal",
  11327. height: math.unit(1.7, "meters"),
  11328. default: true
  11329. },
  11330. {
  11331. name: "Macro",
  11332. height: math.unit(80, "meters")
  11333. },
  11334. {
  11335. name: "Macro+",
  11336. height: math.unit(500, "meters")
  11337. },
  11338. ]
  11339. ))
  11340. characterMakers.push(() => makeCharacter(
  11341. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11342. {
  11343. front: {
  11344. height: math.unit(6, "feet"),
  11345. weight: math.unit(150, "lb"),
  11346. name: "Front",
  11347. image: {
  11348. source: "./media/characters/zyas/front.svg",
  11349. extra: 1180 / 1120,
  11350. bottom: 0.045
  11351. }
  11352. },
  11353. },
  11354. [
  11355. {
  11356. name: "Normal",
  11357. height: math.unit(10, "feet"),
  11358. default: true
  11359. },
  11360. {
  11361. name: "Macro",
  11362. height: math.unit(500, "feet")
  11363. },
  11364. {
  11365. name: "Megamacro",
  11366. height: math.unit(5, "miles")
  11367. },
  11368. {
  11369. name: "Teramacro",
  11370. height: math.unit(150000, "miles")
  11371. },
  11372. ]
  11373. ))
  11374. characterMakers.push(() => makeCharacter(
  11375. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11376. {
  11377. front: {
  11378. height: math.unit(6, "feet"),
  11379. weight: math.unit(150, "lb"),
  11380. name: "Front",
  11381. image: {
  11382. source: "./media/characters/cuon/front.svg",
  11383. extra: 1390 / 1320,
  11384. bottom: 0.008
  11385. }
  11386. },
  11387. },
  11388. [
  11389. {
  11390. name: "Micro",
  11391. height: math.unit(3, "inches")
  11392. },
  11393. {
  11394. name: "Normal",
  11395. height: math.unit(18 + 9 / 12, "feet"),
  11396. default: true
  11397. },
  11398. {
  11399. name: "Macro",
  11400. height: math.unit(360, "feet")
  11401. },
  11402. {
  11403. name: "Megamacro",
  11404. height: math.unit(360, "miles")
  11405. },
  11406. ]
  11407. ))
  11408. characterMakers.push(() => makeCharacter(
  11409. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11410. {
  11411. front: {
  11412. height: math.unit(2.4, "meters"),
  11413. weight: math.unit(70, "kg"),
  11414. name: "Front",
  11415. image: {
  11416. source: "./media/characters/nyanuxk/front.svg",
  11417. extra: 1172 / 1084,
  11418. bottom: 0.065
  11419. }
  11420. },
  11421. side: {
  11422. height: math.unit(2.4, "meters"),
  11423. weight: math.unit(70, "kg"),
  11424. name: "Side",
  11425. image: {
  11426. source: "./media/characters/nyanuxk/side.svg",
  11427. extra: 1190 / 1132,
  11428. bottom: 0.007
  11429. }
  11430. },
  11431. back: {
  11432. height: math.unit(2.4, "meters"),
  11433. weight: math.unit(70, "kg"),
  11434. name: "Back",
  11435. image: {
  11436. source: "./media/characters/nyanuxk/back.svg",
  11437. extra: 1200 / 1141,
  11438. bottom: 0.015
  11439. }
  11440. },
  11441. foot: {
  11442. height: math.unit(0.52, "meters"),
  11443. name: "Foot",
  11444. image: {
  11445. source: "./media/characters/nyanuxk/foot.svg"
  11446. }
  11447. },
  11448. },
  11449. [
  11450. {
  11451. name: "Micro",
  11452. height: math.unit(2, "cm")
  11453. },
  11454. {
  11455. name: "Normal",
  11456. height: math.unit(2.4, "meters"),
  11457. default: true
  11458. },
  11459. {
  11460. name: "Smaller Macro",
  11461. height: math.unit(120, "meters")
  11462. },
  11463. {
  11464. name: "Bigger Macro",
  11465. height: math.unit(1.2, "km")
  11466. },
  11467. {
  11468. name: "Megamacro",
  11469. height: math.unit(15, "kilometers")
  11470. },
  11471. {
  11472. name: "Gigamacro",
  11473. height: math.unit(2000, "km")
  11474. },
  11475. {
  11476. name: "Teramacro",
  11477. height: math.unit(500000, "km")
  11478. },
  11479. ]
  11480. ))
  11481. characterMakers.push(() => makeCharacter(
  11482. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11483. {
  11484. side: {
  11485. height: math.unit(6, "feet"),
  11486. name: "Side",
  11487. image: {
  11488. source: "./media/characters/ailbhe/side.svg",
  11489. extra: 757 / 464,
  11490. bottom: 0.041
  11491. }
  11492. },
  11493. },
  11494. [
  11495. {
  11496. name: "Normal",
  11497. height: math.unit(1.07, "meters"),
  11498. default: true
  11499. },
  11500. ]
  11501. ))
  11502. characterMakers.push(() => makeCharacter(
  11503. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11504. {
  11505. front: {
  11506. height: math.unit(6, "feet"),
  11507. weight: math.unit(120, "kg"),
  11508. name: "Front",
  11509. image: {
  11510. source: "./media/characters/zevulfius/front.svg",
  11511. extra: 965 / 903
  11512. }
  11513. },
  11514. side: {
  11515. height: math.unit(6, "feet"),
  11516. weight: math.unit(120, "kg"),
  11517. name: "Side",
  11518. image: {
  11519. source: "./media/characters/zevulfius/side.svg",
  11520. extra: 939 / 900
  11521. }
  11522. },
  11523. back: {
  11524. height: math.unit(6, "feet"),
  11525. weight: math.unit(120, "kg"),
  11526. name: "Back",
  11527. image: {
  11528. source: "./media/characters/zevulfius/back.svg",
  11529. extra: 918 / 854,
  11530. bottom: 0.005
  11531. }
  11532. },
  11533. foot: {
  11534. height: math.unit(6 / 3.72, "feet"),
  11535. name: "Foot",
  11536. image: {
  11537. source: "./media/characters/zevulfius/foot.svg"
  11538. }
  11539. },
  11540. },
  11541. [
  11542. {
  11543. name: "Macro",
  11544. height: math.unit(750, "meters")
  11545. },
  11546. {
  11547. name: "Megamacro",
  11548. height: math.unit(20, "km"),
  11549. default: true
  11550. },
  11551. {
  11552. name: "Gigamacro",
  11553. height: math.unit(2000, "km")
  11554. },
  11555. {
  11556. name: "Teramacro",
  11557. height: math.unit(250000, "km")
  11558. },
  11559. ]
  11560. ))
  11561. characterMakers.push(() => makeCharacter(
  11562. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11563. {
  11564. front: {
  11565. height: math.unit(100, "feet"),
  11566. weight: math.unit(350, "kg"),
  11567. name: "Front",
  11568. image: {
  11569. source: "./media/characters/rikes/front.svg",
  11570. extra: 1565 / 1483,
  11571. bottom: 0.017
  11572. }
  11573. },
  11574. },
  11575. [
  11576. {
  11577. name: "Macro",
  11578. height: math.unit(100, "feet"),
  11579. default: true
  11580. },
  11581. ]
  11582. ))
  11583. characterMakers.push(() => makeCharacter(
  11584. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11585. {
  11586. front: {
  11587. height: math.unit(8, "feet"),
  11588. weight: math.unit(356, "lb"),
  11589. name: "Front",
  11590. image: {
  11591. source: "./media/characters/adam-silver-mane/front.svg",
  11592. extra: 1036/937,
  11593. bottom: 63/1099
  11594. }
  11595. },
  11596. side: {
  11597. height: math.unit(8, "feet"),
  11598. weight: math.unit(356, "lb"),
  11599. name: "Side",
  11600. image: {
  11601. source: "./media/characters/adam-silver-mane/side.svg",
  11602. extra: 997/901,
  11603. bottom: 59/1056
  11604. }
  11605. },
  11606. frontNsfw: {
  11607. height: math.unit(8, "feet"),
  11608. weight: math.unit(356, "lb"),
  11609. name: "Front (NSFW)",
  11610. image: {
  11611. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11612. extra: 1036/937,
  11613. bottom: 63/1099
  11614. }
  11615. },
  11616. sideNsfw: {
  11617. height: math.unit(8, "feet"),
  11618. weight: math.unit(356, "lb"),
  11619. name: "Side (NSFW)",
  11620. image: {
  11621. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11622. extra: 997/901,
  11623. bottom: 59/1056
  11624. }
  11625. },
  11626. dick: {
  11627. height: math.unit(2.1, "feet"),
  11628. name: "Dick",
  11629. image: {
  11630. source: "./media/characters/adam-silver-mane/dick.svg"
  11631. }
  11632. },
  11633. taur: {
  11634. height: math.unit(16, "feet"),
  11635. weight: math.unit(1500, "kg"),
  11636. name: "Taur",
  11637. image: {
  11638. source: "./media/characters/adam-silver-mane/taur.svg",
  11639. extra: 1713 / 1571,
  11640. bottom: 0.01
  11641. }
  11642. },
  11643. },
  11644. [
  11645. {
  11646. name: "Normal",
  11647. height: math.unit(8, "feet")
  11648. },
  11649. {
  11650. name: "Minimacro",
  11651. height: math.unit(80, "feet")
  11652. },
  11653. {
  11654. name: "MDA",
  11655. height: math.unit(80, "meters")
  11656. },
  11657. {
  11658. name: "Macro",
  11659. height: math.unit(800, "feet"),
  11660. default: true
  11661. },
  11662. {
  11663. name: "Megamacro",
  11664. height: math.unit(8000, "feet")
  11665. },
  11666. {
  11667. name: "Gigamacro",
  11668. height: math.unit(800, "miles")
  11669. },
  11670. {
  11671. name: "Teramacro",
  11672. height: math.unit(80000, "miles")
  11673. },
  11674. {
  11675. name: "Celestial",
  11676. height: math.unit(8e6, "miles")
  11677. },
  11678. {
  11679. name: "Star Dragon",
  11680. height: math.unit(800000, "parsecs")
  11681. },
  11682. {
  11683. name: "Godly",
  11684. height: math.unit(800, "teraparsecs")
  11685. },
  11686. ]
  11687. ))
  11688. characterMakers.push(() => makeCharacter(
  11689. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11690. {
  11691. front: {
  11692. height: math.unit(6, "feet"),
  11693. weight: math.unit(150, "lb"),
  11694. name: "Front",
  11695. image: {
  11696. source: "./media/characters/ky'owin/front.svg",
  11697. extra: 3862/3053,
  11698. bottom: 74/3936
  11699. }
  11700. },
  11701. },
  11702. [
  11703. {
  11704. name: "Normal",
  11705. height: math.unit(6 + 8 / 12, "feet")
  11706. },
  11707. {
  11708. name: "Large",
  11709. height: math.unit(68, "feet")
  11710. },
  11711. {
  11712. name: "Macro",
  11713. height: math.unit(132, "feet")
  11714. },
  11715. {
  11716. name: "Macro+",
  11717. height: math.unit(340, "feet")
  11718. },
  11719. {
  11720. name: "Macro++",
  11721. height: math.unit(680, "feet"),
  11722. default: true
  11723. },
  11724. {
  11725. name: "Megamacro",
  11726. height: math.unit(1, "mile")
  11727. },
  11728. {
  11729. name: "Megamacro+",
  11730. height: math.unit(10, "miles")
  11731. },
  11732. ]
  11733. ))
  11734. characterMakers.push(() => makeCharacter(
  11735. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11736. {
  11737. front: {
  11738. height: math.unit(4, "feet"),
  11739. weight: math.unit(50, "lb"),
  11740. name: "Front",
  11741. image: {
  11742. source: "./media/characters/mal/front.svg",
  11743. extra: 785 / 724,
  11744. bottom: 0.07
  11745. }
  11746. },
  11747. },
  11748. [
  11749. {
  11750. name: "Micro",
  11751. height: math.unit(4, "inches")
  11752. },
  11753. {
  11754. name: "Normal",
  11755. height: math.unit(4, "feet"),
  11756. default: true
  11757. },
  11758. {
  11759. name: "Macro",
  11760. height: math.unit(200, "feet")
  11761. },
  11762. ]
  11763. ))
  11764. characterMakers.push(() => makeCharacter(
  11765. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11766. {
  11767. front: {
  11768. height: math.unit(6, "feet"),
  11769. weight: math.unit(150, "lb"),
  11770. name: "Front",
  11771. image: {
  11772. source: "./media/characters/jordan-deware/front.svg",
  11773. extra: 1191 / 1012
  11774. }
  11775. },
  11776. },
  11777. [
  11778. {
  11779. name: "Nano",
  11780. height: math.unit(0.01, "mm")
  11781. },
  11782. {
  11783. name: "Minimicro",
  11784. height: math.unit(1, "mm")
  11785. },
  11786. {
  11787. name: "Micro",
  11788. height: math.unit(0.5, "inches")
  11789. },
  11790. {
  11791. name: "Normal",
  11792. height: math.unit(4, "feet"),
  11793. default: true
  11794. },
  11795. {
  11796. name: "Minimacro",
  11797. height: math.unit(40, "meters")
  11798. },
  11799. {
  11800. name: "Small Macro",
  11801. height: math.unit(400, "meters")
  11802. },
  11803. {
  11804. name: "Macro",
  11805. height: math.unit(4, "miles")
  11806. },
  11807. {
  11808. name: "Megamacro",
  11809. height: math.unit(40, "miles")
  11810. },
  11811. {
  11812. name: "Megamacro+",
  11813. height: math.unit(400, "miles")
  11814. },
  11815. {
  11816. name: "Gigamacro",
  11817. height: math.unit(400000, "miles")
  11818. },
  11819. ]
  11820. ))
  11821. characterMakers.push(() => makeCharacter(
  11822. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11823. {
  11824. side: {
  11825. height: math.unit(6, "feet"),
  11826. weight: math.unit(150, "lb"),
  11827. name: "Side",
  11828. image: {
  11829. source: "./media/characters/kimiko/side.svg",
  11830. extra: 600 / 358
  11831. }
  11832. },
  11833. },
  11834. [
  11835. {
  11836. name: "Normal",
  11837. height: math.unit(15, "feet"),
  11838. default: true
  11839. },
  11840. {
  11841. name: "Macro",
  11842. height: math.unit(220, "feet")
  11843. },
  11844. {
  11845. name: "Macro+",
  11846. height: math.unit(1450, "feet")
  11847. },
  11848. {
  11849. name: "Megamacro",
  11850. height: math.unit(11500, "feet")
  11851. },
  11852. {
  11853. name: "Gigamacro",
  11854. height: math.unit(9500, "miles")
  11855. },
  11856. {
  11857. name: "Teramacro",
  11858. height: math.unit(2208005005, "miles")
  11859. },
  11860. {
  11861. name: "Examacro",
  11862. height: math.unit(2750, "parsecs")
  11863. },
  11864. {
  11865. name: "Zettamacro",
  11866. height: math.unit(101500, "parsecs")
  11867. },
  11868. ]
  11869. ))
  11870. characterMakers.push(() => makeCharacter(
  11871. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11872. {
  11873. front: {
  11874. height: math.unit(6, "feet"),
  11875. weight: math.unit(70, "kg"),
  11876. name: "Front",
  11877. image: {
  11878. source: "./media/characters/andrew-sleepy/front.svg"
  11879. }
  11880. },
  11881. side: {
  11882. height: math.unit(6, "feet"),
  11883. weight: math.unit(70, "kg"),
  11884. name: "Side",
  11885. image: {
  11886. source: "./media/characters/andrew-sleepy/side.svg"
  11887. }
  11888. },
  11889. },
  11890. [
  11891. {
  11892. name: "Micro",
  11893. height: math.unit(1, "mm"),
  11894. default: true
  11895. },
  11896. ]
  11897. ))
  11898. characterMakers.push(() => makeCharacter(
  11899. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11900. {
  11901. front: {
  11902. height: math.unit(6, "feet"),
  11903. weight: math.unit(150, "lb"),
  11904. name: "Front",
  11905. image: {
  11906. source: "./media/characters/judio/front.svg",
  11907. extra: 1258 / 1110
  11908. }
  11909. },
  11910. },
  11911. [
  11912. {
  11913. name: "Normal",
  11914. height: math.unit(5 + 6 / 12, "feet")
  11915. },
  11916. {
  11917. name: "Macro",
  11918. height: math.unit(1000, "feet"),
  11919. default: true
  11920. },
  11921. {
  11922. name: "Megamacro",
  11923. height: math.unit(10, "miles")
  11924. },
  11925. ]
  11926. ))
  11927. characterMakers.push(() => makeCharacter(
  11928. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11929. {
  11930. frontDressed: {
  11931. height: math.unit(6, "feet"),
  11932. weight: math.unit(68, "kg"),
  11933. name: "Front (Dressed)",
  11934. image: {
  11935. source: "./media/characters/nomaxice/front-dressed.svg",
  11936. extra: 1137/824,
  11937. bottom: 74/1211
  11938. }
  11939. },
  11940. frontShorts: {
  11941. height: math.unit(6, "feet"),
  11942. weight: math.unit(68, "kg"),
  11943. name: "Front (Shorts)",
  11944. image: {
  11945. source: "./media/characters/nomaxice/front-shorts.svg",
  11946. extra: 1137/824,
  11947. bottom: 74/1211
  11948. }
  11949. },
  11950. back: {
  11951. height: math.unit(6, "feet"),
  11952. weight: math.unit(68, "kg"),
  11953. name: "Back",
  11954. image: {
  11955. source: "./media/characters/nomaxice/back.svg",
  11956. extra: 822/786,
  11957. bottom: 39/861
  11958. }
  11959. },
  11960. hand: {
  11961. height: math.unit(0.565, "feet"),
  11962. name: "Hand",
  11963. image: {
  11964. source: "./media/characters/nomaxice/hand.svg"
  11965. }
  11966. },
  11967. foot: {
  11968. height: math.unit(1, "feet"),
  11969. name: "Foot",
  11970. image: {
  11971. source: "./media/characters/nomaxice/foot.svg"
  11972. }
  11973. },
  11974. },
  11975. [
  11976. {
  11977. name: "Micro",
  11978. height: math.unit(8, "cm")
  11979. },
  11980. {
  11981. name: "Norm",
  11982. height: math.unit(1.82, "m")
  11983. },
  11984. {
  11985. name: "Norm+",
  11986. height: math.unit(8.8, "feet"),
  11987. default: true
  11988. },
  11989. {
  11990. name: "Big",
  11991. height: math.unit(8, "meters")
  11992. },
  11993. {
  11994. name: "Macro",
  11995. height: math.unit(18, "meters")
  11996. },
  11997. {
  11998. name: "Macro+",
  11999. height: math.unit(88, "meters")
  12000. },
  12001. ]
  12002. ))
  12003. characterMakers.push(() => makeCharacter(
  12004. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  12005. {
  12006. front: {
  12007. height: math.unit(12, "feet"),
  12008. weight: math.unit(1.5, "tons"),
  12009. name: "Front",
  12010. image: {
  12011. source: "./media/characters/dydros/front.svg",
  12012. extra: 863 / 800,
  12013. bottom: 0.015
  12014. }
  12015. },
  12016. back: {
  12017. height: math.unit(12, "feet"),
  12018. weight: math.unit(1.5, "tons"),
  12019. name: "Back",
  12020. image: {
  12021. source: "./media/characters/dydros/back.svg",
  12022. extra: 900 / 843,
  12023. bottom: 0.005
  12024. }
  12025. },
  12026. },
  12027. [
  12028. {
  12029. name: "Normal",
  12030. height: math.unit(12, "feet"),
  12031. default: true
  12032. },
  12033. ]
  12034. ))
  12035. characterMakers.push(() => makeCharacter(
  12036. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12037. {
  12038. front: {
  12039. height: math.unit(6, "feet"),
  12040. weight: math.unit(100, "kg"),
  12041. name: "Front",
  12042. image: {
  12043. source: "./media/characters/riggi/front.svg",
  12044. extra: 5787 / 5303
  12045. }
  12046. },
  12047. hyper: {
  12048. height: math.unit(6 * 5 / 3, "feet"),
  12049. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12050. name: "Hyper",
  12051. image: {
  12052. source: "./media/characters/riggi/hyper.svg",
  12053. extra: 3595 / 3485
  12054. }
  12055. },
  12056. },
  12057. [
  12058. {
  12059. name: "Small Macro",
  12060. height: math.unit(50, "feet")
  12061. },
  12062. {
  12063. name: "Default",
  12064. height: math.unit(200, "feet"),
  12065. default: true
  12066. },
  12067. {
  12068. name: "Loom",
  12069. height: math.unit(10000, "feet")
  12070. },
  12071. {
  12072. name: "Cruising Altitude",
  12073. height: math.unit(30000, "feet")
  12074. },
  12075. {
  12076. name: "Megamacro",
  12077. height: math.unit(100, "miles")
  12078. },
  12079. {
  12080. name: "Continent Sized",
  12081. height: math.unit(2800, "miles")
  12082. },
  12083. {
  12084. name: "Earth Sized",
  12085. height: math.unit(8000, "miles")
  12086. },
  12087. ]
  12088. ))
  12089. characterMakers.push(() => makeCharacter(
  12090. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12091. {
  12092. front: {
  12093. height: math.unit(6, "feet"),
  12094. weight: math.unit(250, "lb"),
  12095. name: "Front",
  12096. image: {
  12097. source: "./media/characters/alexi/front.svg",
  12098. extra: 3483 / 3291,
  12099. bottom: 0.04
  12100. }
  12101. },
  12102. back: {
  12103. height: math.unit(6, "feet"),
  12104. weight: math.unit(250, "lb"),
  12105. name: "Back",
  12106. image: {
  12107. source: "./media/characters/alexi/back.svg",
  12108. extra: 3533 / 3356,
  12109. bottom: 0.021
  12110. }
  12111. },
  12112. frontTransforming: {
  12113. height: math.unit(8.58, "feet"),
  12114. weight: math.unit(1300, "lb"),
  12115. name: "Transforming",
  12116. image: {
  12117. source: "./media/characters/alexi/front-transforming.svg",
  12118. extra: 437 / 409,
  12119. bottom: 19 / 458.66
  12120. }
  12121. },
  12122. frontTransformed: {
  12123. height: math.unit(12.5, "feet"),
  12124. weight: math.unit(4000, "lb"),
  12125. name: "Transformed",
  12126. image: {
  12127. source: "./media/characters/alexi/front-transformed.svg",
  12128. extra: 639 / 614,
  12129. bottom: 30.55 / 671
  12130. }
  12131. },
  12132. },
  12133. [
  12134. {
  12135. name: "Normal",
  12136. height: math.unit(14, "feet"),
  12137. default: true
  12138. },
  12139. {
  12140. name: "Minimacro",
  12141. height: math.unit(30, "meters")
  12142. },
  12143. {
  12144. name: "Macro",
  12145. height: math.unit(500, "meters")
  12146. },
  12147. {
  12148. name: "Megamacro",
  12149. height: math.unit(9000, "km")
  12150. },
  12151. {
  12152. name: "Teramacro",
  12153. height: math.unit(384000, "km")
  12154. },
  12155. ]
  12156. ))
  12157. characterMakers.push(() => makeCharacter(
  12158. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12159. {
  12160. front: {
  12161. height: math.unit(6, "feet"),
  12162. weight: math.unit(150, "lb"),
  12163. name: "Front",
  12164. image: {
  12165. source: "./media/characters/kayroo/front.svg",
  12166. extra: 1153 / 1038,
  12167. bottom: 0.06
  12168. }
  12169. },
  12170. foot: {
  12171. height: math.unit(6, "feet"),
  12172. weight: math.unit(150, "lb"),
  12173. name: "Foot",
  12174. image: {
  12175. source: "./media/characters/kayroo/foot.svg"
  12176. }
  12177. },
  12178. },
  12179. [
  12180. {
  12181. name: "Normal",
  12182. height: math.unit(8, "feet"),
  12183. default: true
  12184. },
  12185. {
  12186. name: "Minimacro",
  12187. height: math.unit(250, "feet")
  12188. },
  12189. {
  12190. name: "Macro",
  12191. height: math.unit(2800, "feet")
  12192. },
  12193. {
  12194. name: "Megamacro",
  12195. height: math.unit(5200, "feet")
  12196. },
  12197. {
  12198. name: "Gigamacro",
  12199. height: math.unit(27000, "feet")
  12200. },
  12201. {
  12202. name: "Omega",
  12203. height: math.unit(45000, "feet")
  12204. },
  12205. ]
  12206. ))
  12207. characterMakers.push(() => makeCharacter(
  12208. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12209. {
  12210. front: {
  12211. height: math.unit(18, "feet"),
  12212. weight: math.unit(5800, "lb"),
  12213. name: "Front",
  12214. image: {
  12215. source: "./media/characters/rhys/front.svg",
  12216. extra: 3386 / 3090,
  12217. bottom: 0.07
  12218. }
  12219. },
  12220. },
  12221. [
  12222. {
  12223. name: "Normal",
  12224. height: math.unit(18, "feet"),
  12225. default: true
  12226. },
  12227. {
  12228. name: "Working Size",
  12229. height: math.unit(200, "feet")
  12230. },
  12231. {
  12232. name: "Demolition Size",
  12233. height: math.unit(2000, "feet")
  12234. },
  12235. {
  12236. name: "Maximum Licensed Size",
  12237. height: math.unit(5, "miles")
  12238. },
  12239. {
  12240. name: "Maximum Observed Size",
  12241. height: math.unit(10, "yottameters")
  12242. },
  12243. ]
  12244. ))
  12245. characterMakers.push(() => makeCharacter(
  12246. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12247. {
  12248. front: {
  12249. height: math.unit(6, "feet"),
  12250. weight: math.unit(250, "lb"),
  12251. name: "Front",
  12252. image: {
  12253. source: "./media/characters/toto/front.svg",
  12254. extra: 527 / 479,
  12255. bottom: 0.05
  12256. }
  12257. },
  12258. },
  12259. [
  12260. {
  12261. name: "Micro",
  12262. height: math.unit(3, "feet")
  12263. },
  12264. {
  12265. name: "Normal",
  12266. height: math.unit(10, "feet")
  12267. },
  12268. {
  12269. name: "Macro",
  12270. height: math.unit(150, "feet"),
  12271. default: true
  12272. },
  12273. {
  12274. name: "Megamacro",
  12275. height: math.unit(1200, "feet")
  12276. },
  12277. ]
  12278. ))
  12279. characterMakers.push(() => makeCharacter(
  12280. { name: "King", species: ["lion"], tags: ["anthro"] },
  12281. {
  12282. back: {
  12283. height: math.unit(6, "feet"),
  12284. weight: math.unit(150, "lb"),
  12285. name: "Back",
  12286. image: {
  12287. source: "./media/characters/king/back.svg"
  12288. }
  12289. },
  12290. },
  12291. [
  12292. {
  12293. name: "Micro",
  12294. height: math.unit(2, "inches")
  12295. },
  12296. {
  12297. name: "Normal",
  12298. height: math.unit(8, "feet")
  12299. },
  12300. {
  12301. name: "Macro",
  12302. height: math.unit(200, "feet"),
  12303. default: true
  12304. },
  12305. {
  12306. name: "Megamacro",
  12307. height: math.unit(50, "miles")
  12308. },
  12309. ]
  12310. ))
  12311. characterMakers.push(() => makeCharacter(
  12312. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12313. {
  12314. front: {
  12315. height: math.unit(11, "feet"),
  12316. weight: math.unit(1400, "lb"),
  12317. name: "Front",
  12318. image: {
  12319. source: "./media/characters/cordite/front.svg",
  12320. extra: 1919/1827,
  12321. bottom: 40/1959
  12322. }
  12323. },
  12324. side: {
  12325. height: math.unit(11, "feet"),
  12326. weight: math.unit(1400, "lb"),
  12327. name: "Side",
  12328. image: {
  12329. source: "./media/characters/cordite/side.svg",
  12330. extra: 1908/1793,
  12331. bottom: 38/1946
  12332. }
  12333. },
  12334. back: {
  12335. height: math.unit(11, "feet"),
  12336. weight: math.unit(1400, "lb"),
  12337. name: "Back",
  12338. image: {
  12339. source: "./media/characters/cordite/back.svg",
  12340. extra: 1938/1837,
  12341. bottom: 10/1948
  12342. }
  12343. },
  12344. feral: {
  12345. height: math.unit(2, "feet"),
  12346. weight: math.unit(90, "lb"),
  12347. name: "Feral",
  12348. image: {
  12349. source: "./media/characters/cordite/feral.svg",
  12350. extra: 1260 / 755,
  12351. bottom: 0.05
  12352. }
  12353. },
  12354. },
  12355. [
  12356. {
  12357. name: "Normal",
  12358. height: math.unit(11, "feet"),
  12359. default: true
  12360. },
  12361. ]
  12362. ))
  12363. characterMakers.push(() => makeCharacter(
  12364. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12365. {
  12366. front: {
  12367. height: math.unit(6, "feet"),
  12368. weight: math.unit(150, "lb"),
  12369. name: "Front",
  12370. image: {
  12371. source: "./media/characters/pianostrong/front.svg",
  12372. extra: 6577 / 6254,
  12373. bottom: 0.02
  12374. }
  12375. },
  12376. side: {
  12377. height: math.unit(6, "feet"),
  12378. weight: math.unit(150, "lb"),
  12379. name: "Side",
  12380. image: {
  12381. source: "./media/characters/pianostrong/side.svg",
  12382. extra: 6106 / 5730
  12383. }
  12384. },
  12385. back: {
  12386. height: math.unit(6, "feet"),
  12387. weight: math.unit(150, "lb"),
  12388. name: "Back",
  12389. image: {
  12390. source: "./media/characters/pianostrong/back.svg",
  12391. extra: 6085 / 5733,
  12392. bottom: 0.01
  12393. }
  12394. },
  12395. },
  12396. [
  12397. {
  12398. name: "Macro",
  12399. height: math.unit(100, "feet")
  12400. },
  12401. {
  12402. name: "Macro+",
  12403. height: math.unit(300, "feet"),
  12404. default: true
  12405. },
  12406. {
  12407. name: "Macro++",
  12408. height: math.unit(1000, "feet")
  12409. },
  12410. ]
  12411. ))
  12412. characterMakers.push(() => makeCharacter(
  12413. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12414. {
  12415. front: {
  12416. height: math.unit(6, "feet"),
  12417. weight: math.unit(150, "lb"),
  12418. name: "Front",
  12419. image: {
  12420. source: "./media/characters/kona/front.svg",
  12421. extra: 2960 / 2629,
  12422. bottom: 0.005
  12423. }
  12424. },
  12425. },
  12426. [
  12427. {
  12428. name: "Normal",
  12429. height: math.unit(11 + 8 / 12, "feet")
  12430. },
  12431. {
  12432. name: "Macro",
  12433. height: math.unit(850, "feet"),
  12434. default: true
  12435. },
  12436. {
  12437. name: "Macro+",
  12438. height: math.unit(1.5, "km"),
  12439. default: true
  12440. },
  12441. {
  12442. name: "Megamacro",
  12443. height: math.unit(80, "miles")
  12444. },
  12445. {
  12446. name: "Gigamacro",
  12447. height: math.unit(3500, "miles")
  12448. },
  12449. ]
  12450. ))
  12451. characterMakers.push(() => makeCharacter(
  12452. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12453. {
  12454. side: {
  12455. height: math.unit(1.9, "meters"),
  12456. weight: math.unit(326, "kg"),
  12457. name: "Side",
  12458. image: {
  12459. source: "./media/characters/levi/side.svg",
  12460. extra: 1704 / 1334,
  12461. bottom: 0.02
  12462. }
  12463. },
  12464. },
  12465. [
  12466. {
  12467. name: "Normal",
  12468. height: math.unit(1.9, "meters"),
  12469. default: true
  12470. },
  12471. {
  12472. name: "Macro",
  12473. height: math.unit(20, "meters")
  12474. },
  12475. {
  12476. name: "Macro+",
  12477. height: math.unit(200, "meters")
  12478. },
  12479. {
  12480. name: "Megamacro",
  12481. height: math.unit(2, "km")
  12482. },
  12483. {
  12484. name: "Megamacro+",
  12485. height: math.unit(20, "km")
  12486. },
  12487. {
  12488. name: "Gigamacro",
  12489. height: math.unit(2500, "km")
  12490. },
  12491. {
  12492. name: "Gigamacro+",
  12493. height: math.unit(120000, "km")
  12494. },
  12495. {
  12496. name: "Teramacro",
  12497. height: math.unit(7.77e6, "km")
  12498. },
  12499. ]
  12500. ))
  12501. characterMakers.push(() => makeCharacter(
  12502. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12503. {
  12504. front: {
  12505. height: math.unit(6 + 4/12, "feet"),
  12506. weight: math.unit(190, "lb"),
  12507. name: "Front",
  12508. image: {
  12509. source: "./media/characters/bmc/front.svg",
  12510. extra: 1626/1472,
  12511. bottom: 79/1705
  12512. }
  12513. },
  12514. back: {
  12515. height: math.unit(6 + 4/12, "feet"),
  12516. weight: math.unit(190, "lb"),
  12517. name: "Back",
  12518. image: {
  12519. source: "./media/characters/bmc/back.svg",
  12520. extra: 1640/1479,
  12521. bottom: 45/1685
  12522. }
  12523. },
  12524. frontArmor: {
  12525. height: math.unit(6 + 4/12, "feet"),
  12526. weight: math.unit(190, "lb"),
  12527. name: "Front-armor",
  12528. image: {
  12529. source: "./media/characters/bmc/front-armor.svg",
  12530. extra: 1538/1468,
  12531. bottom: 79/1617
  12532. }
  12533. },
  12534. },
  12535. [
  12536. {
  12537. name: "Human-sized",
  12538. height: math.unit(6 + 4 / 12, "feet")
  12539. },
  12540. {
  12541. name: "Interactive Size",
  12542. height: math.unit(25, "feet")
  12543. },
  12544. {
  12545. name: "Small",
  12546. height: math.unit(250, "feet")
  12547. },
  12548. {
  12549. name: "Normal",
  12550. height: math.unit(1250, "feet"),
  12551. default: true
  12552. },
  12553. {
  12554. name: "Good Day",
  12555. height: math.unit(88, "miles")
  12556. },
  12557. {
  12558. name: "Largest Measured Size",
  12559. height: math.unit(105.960, "galaxies")
  12560. },
  12561. ]
  12562. ))
  12563. characterMakers.push(() => makeCharacter(
  12564. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12565. {
  12566. front: {
  12567. height: math.unit(20, "feet"),
  12568. weight: math.unit(2016, "kg"),
  12569. name: "Front",
  12570. image: {
  12571. source: "./media/characters/sven-the-kaiju/front.svg",
  12572. extra: 1277/1250,
  12573. bottom: 35/1312
  12574. }
  12575. },
  12576. mouth: {
  12577. height: math.unit(1.85, "feet"),
  12578. name: "Mouth",
  12579. image: {
  12580. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12581. }
  12582. },
  12583. },
  12584. [
  12585. {
  12586. name: "Fairy",
  12587. height: math.unit(6, "inches")
  12588. },
  12589. {
  12590. name: "Normal",
  12591. height: math.unit(20, "feet"),
  12592. default: true
  12593. },
  12594. {
  12595. name: "Rampage",
  12596. height: math.unit(200, "feet")
  12597. },
  12598. {
  12599. name: "Archfey Forest Guardian",
  12600. height: math.unit(1, "mile")
  12601. },
  12602. ]
  12603. ))
  12604. characterMakers.push(() => makeCharacter(
  12605. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12606. {
  12607. front: {
  12608. height: math.unit(4, "meters"),
  12609. weight: math.unit(2, "tons"),
  12610. name: "Front",
  12611. image: {
  12612. source: "./media/characters/marik/front.svg",
  12613. extra: 1057 / 1003,
  12614. bottom: 0.08
  12615. }
  12616. },
  12617. },
  12618. [
  12619. {
  12620. name: "Normal",
  12621. height: math.unit(4, "meters"),
  12622. default: true
  12623. },
  12624. {
  12625. name: "Macro",
  12626. height: math.unit(20, "meters")
  12627. },
  12628. {
  12629. name: "Megamacro",
  12630. height: math.unit(50, "km")
  12631. },
  12632. {
  12633. name: "Gigamacro",
  12634. height: math.unit(100, "km")
  12635. },
  12636. {
  12637. name: "Alpha Macro",
  12638. height: math.unit(7.88e7, "yottameters")
  12639. },
  12640. ]
  12641. ))
  12642. characterMakers.push(() => makeCharacter(
  12643. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12644. {
  12645. front: {
  12646. height: math.unit(6, "feet"),
  12647. weight: math.unit(110, "lb"),
  12648. name: "Front",
  12649. image: {
  12650. source: "./media/characters/mel/front.svg",
  12651. extra: 736 / 617,
  12652. bottom: 0.017
  12653. }
  12654. },
  12655. },
  12656. [
  12657. {
  12658. name: "Pico",
  12659. height: math.unit(3, "pm")
  12660. },
  12661. {
  12662. name: "Nano",
  12663. height: math.unit(3, "nm")
  12664. },
  12665. {
  12666. name: "Micro",
  12667. height: math.unit(0.3, "mm"),
  12668. default: true
  12669. },
  12670. {
  12671. name: "Micro+",
  12672. height: math.unit(3, "mm")
  12673. },
  12674. {
  12675. name: "Normal",
  12676. height: math.unit(5 + 10.5 / 12, "feet")
  12677. },
  12678. ]
  12679. ))
  12680. characterMakers.push(() => makeCharacter(
  12681. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12682. {
  12683. kaiju: {
  12684. height: math.unit(1.75, "meters"),
  12685. weight: math.unit(55, "kg"),
  12686. name: "Kaiju",
  12687. image: {
  12688. source: "./media/characters/lykonous/kaiju.svg",
  12689. extra: 1055 / 946,
  12690. bottom: 0.135
  12691. }
  12692. },
  12693. },
  12694. [
  12695. {
  12696. name: "Normal",
  12697. height: math.unit(2.5, "meters"),
  12698. default: true
  12699. },
  12700. {
  12701. name: "Kaiju Dragon",
  12702. height: math.unit(60, "meters")
  12703. },
  12704. {
  12705. name: "Mega Kaiju",
  12706. height: math.unit(120, "km")
  12707. },
  12708. {
  12709. name: "Giga Kaiju",
  12710. height: math.unit(200, "megameters")
  12711. },
  12712. {
  12713. name: "Terra Kaiju",
  12714. height: math.unit(400, "gigameters")
  12715. },
  12716. {
  12717. name: "Kaiju Dragon God",
  12718. height: math.unit(13000, "exaparsecs")
  12719. },
  12720. ]
  12721. ))
  12722. characterMakers.push(() => makeCharacter(
  12723. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12724. {
  12725. front: {
  12726. height: math.unit(6, "feet"),
  12727. weight: math.unit(150, "lb"),
  12728. name: "Front",
  12729. image: {
  12730. source: "./media/characters/blü/front.svg",
  12731. extra: 1883 / 1564,
  12732. bottom: 0.031
  12733. }
  12734. },
  12735. },
  12736. [
  12737. {
  12738. name: "Normal",
  12739. height: math.unit(13, "feet"),
  12740. default: true
  12741. },
  12742. {
  12743. name: "Big Boi",
  12744. height: math.unit(150, "meters")
  12745. },
  12746. {
  12747. name: "Mini Stomper",
  12748. height: math.unit(300, "meters")
  12749. },
  12750. {
  12751. name: "Macro",
  12752. height: math.unit(1000, "meters")
  12753. },
  12754. {
  12755. name: "Megamacro",
  12756. height: math.unit(11000, "meters")
  12757. },
  12758. {
  12759. name: "Gigamacro",
  12760. height: math.unit(11000, "km")
  12761. },
  12762. {
  12763. name: "Teramacro",
  12764. height: math.unit(420000, "km")
  12765. },
  12766. {
  12767. name: "Examacro",
  12768. height: math.unit(120, "parsecs")
  12769. },
  12770. {
  12771. name: "God Tho",
  12772. height: math.unit(98000000000, "parsecs")
  12773. },
  12774. ]
  12775. ))
  12776. characterMakers.push(() => makeCharacter(
  12777. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12778. {
  12779. taurFront: {
  12780. height: math.unit(6, "feet"),
  12781. weight: math.unit(200, "lb"),
  12782. name: "Taur (Front)",
  12783. image: {
  12784. source: "./media/characters/scales/taur-front.svg",
  12785. extra: 1,
  12786. bottom: 0.05
  12787. }
  12788. },
  12789. taurBack: {
  12790. height: math.unit(6, "feet"),
  12791. weight: math.unit(200, "lb"),
  12792. name: "Taur (Back)",
  12793. image: {
  12794. source: "./media/characters/scales/taur-back.svg",
  12795. extra: 1,
  12796. bottom: 0.08
  12797. }
  12798. },
  12799. anthro: {
  12800. height: math.unit(6 * 7 / 12, "feet"),
  12801. weight: math.unit(100, "lb"),
  12802. name: "Anthro",
  12803. image: {
  12804. source: "./media/characters/scales/anthro.svg",
  12805. extra: 1,
  12806. bottom: 0.06
  12807. }
  12808. },
  12809. },
  12810. [
  12811. {
  12812. name: "Normal",
  12813. height: math.unit(12, "feet"),
  12814. default: true
  12815. },
  12816. ]
  12817. ))
  12818. characterMakers.push(() => makeCharacter(
  12819. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12820. {
  12821. front: {
  12822. height: math.unit(6, "feet"),
  12823. weight: math.unit(150, "lb"),
  12824. name: "Front",
  12825. image: {
  12826. source: "./media/characters/koragos/front.svg",
  12827. extra: 841 / 794,
  12828. bottom: 0.035
  12829. }
  12830. },
  12831. back: {
  12832. height: math.unit(6, "feet"),
  12833. weight: math.unit(150, "lb"),
  12834. name: "Back",
  12835. image: {
  12836. source: "./media/characters/koragos/back.svg",
  12837. extra: 841 / 810,
  12838. bottom: 0.022
  12839. }
  12840. },
  12841. },
  12842. [
  12843. {
  12844. name: "Normal",
  12845. height: math.unit(6 + 11 / 12, "feet"),
  12846. default: true
  12847. },
  12848. {
  12849. name: "Macro",
  12850. height: math.unit(490, "feet")
  12851. },
  12852. {
  12853. name: "Megamacro",
  12854. height: math.unit(10, "miles")
  12855. },
  12856. {
  12857. name: "Gigamacro",
  12858. height: math.unit(50, "miles")
  12859. },
  12860. ]
  12861. ))
  12862. characterMakers.push(() => makeCharacter(
  12863. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12864. {
  12865. front: {
  12866. height: math.unit(6, "feet"),
  12867. weight: math.unit(250, "lb"),
  12868. name: "Front",
  12869. image: {
  12870. source: "./media/characters/xylrem/front.svg",
  12871. extra: 3323 / 3050,
  12872. bottom: 0.065
  12873. }
  12874. },
  12875. },
  12876. [
  12877. {
  12878. name: "Micro",
  12879. height: math.unit(4, "feet")
  12880. },
  12881. {
  12882. name: "Normal",
  12883. height: math.unit(16, "feet"),
  12884. default: true
  12885. },
  12886. {
  12887. name: "Macro",
  12888. height: math.unit(2720, "feet")
  12889. },
  12890. {
  12891. name: "Megamacro",
  12892. height: math.unit(25000, "miles")
  12893. },
  12894. ]
  12895. ))
  12896. characterMakers.push(() => makeCharacter(
  12897. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12898. {
  12899. front: {
  12900. height: math.unit(8, "feet"),
  12901. weight: math.unit(250, "kg"),
  12902. name: "Front",
  12903. image: {
  12904. source: "./media/characters/ikideru/front.svg",
  12905. extra: 930 / 870,
  12906. bottom: 0.087
  12907. }
  12908. },
  12909. back: {
  12910. height: math.unit(8, "feet"),
  12911. weight: math.unit(250, "kg"),
  12912. name: "Back",
  12913. image: {
  12914. source: "./media/characters/ikideru/back.svg",
  12915. extra: 919 / 852,
  12916. bottom: 0.055
  12917. }
  12918. },
  12919. },
  12920. [
  12921. {
  12922. name: "Rare",
  12923. height: math.unit(8, "feet"),
  12924. default: true
  12925. },
  12926. {
  12927. name: "Playful Loom",
  12928. height: math.unit(80, "feet")
  12929. },
  12930. {
  12931. name: "City Leaner",
  12932. height: math.unit(230, "feet")
  12933. },
  12934. {
  12935. name: "Megamacro",
  12936. height: math.unit(2500, "feet")
  12937. },
  12938. {
  12939. name: "Gigamacro",
  12940. height: math.unit(26400, "feet")
  12941. },
  12942. {
  12943. name: "Tectonic Shifter",
  12944. height: math.unit(1.7, "megameters")
  12945. },
  12946. {
  12947. name: "Planet Carer",
  12948. height: math.unit(21, "megameters")
  12949. },
  12950. {
  12951. name: "God",
  12952. height: math.unit(11157.22, "parsecs")
  12953. },
  12954. ]
  12955. ))
  12956. characterMakers.push(() => makeCharacter(
  12957. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12958. {
  12959. front: {
  12960. height: math.unit(6, "feet"),
  12961. weight: math.unit(120, "lb"),
  12962. name: "Front",
  12963. image: {
  12964. source: "./media/characters/neo/front.svg"
  12965. }
  12966. },
  12967. },
  12968. [
  12969. {
  12970. name: "Micro",
  12971. height: math.unit(2, "inches"),
  12972. default: true
  12973. },
  12974. {
  12975. name: "Human Size",
  12976. height: math.unit(5 + 8 / 12, "feet")
  12977. },
  12978. ]
  12979. ))
  12980. characterMakers.push(() => makeCharacter(
  12981. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12982. {
  12983. front: {
  12984. height: math.unit(13 + 10 / 12, "feet"),
  12985. weight: math.unit(5320, "lb"),
  12986. name: "Front",
  12987. image: {
  12988. source: "./media/characters/chauncey-chantz/front.svg",
  12989. extra: 1587 / 1435,
  12990. bottom: 0.02
  12991. }
  12992. },
  12993. },
  12994. [
  12995. {
  12996. name: "Normal",
  12997. height: math.unit(13 + 10 / 12, "feet"),
  12998. default: true
  12999. },
  13000. {
  13001. name: "Macro",
  13002. height: math.unit(45, "feet")
  13003. },
  13004. {
  13005. name: "Megamacro",
  13006. height: math.unit(250, "miles")
  13007. },
  13008. {
  13009. name: "Planetary",
  13010. height: math.unit(10000, "miles")
  13011. },
  13012. {
  13013. name: "Galactic",
  13014. height: math.unit(40000, "parsecs")
  13015. },
  13016. {
  13017. name: "Universal",
  13018. height: math.unit(1, "yottameter")
  13019. },
  13020. ]
  13021. ))
  13022. characterMakers.push(() => makeCharacter(
  13023. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  13024. {
  13025. front: {
  13026. height: math.unit(6, "feet"),
  13027. weight: math.unit(150, "lb"),
  13028. name: "Front",
  13029. image: {
  13030. source: "./media/characters/epifox/front.svg",
  13031. extra: 1,
  13032. bottom: 0.075
  13033. }
  13034. },
  13035. },
  13036. [
  13037. {
  13038. name: "Micro",
  13039. height: math.unit(6, "inches")
  13040. },
  13041. {
  13042. name: "Normal",
  13043. height: math.unit(12, "feet"),
  13044. default: true
  13045. },
  13046. {
  13047. name: "Macro",
  13048. height: math.unit(3810, "feet")
  13049. },
  13050. {
  13051. name: "Megamacro",
  13052. height: math.unit(500, "miles")
  13053. },
  13054. ]
  13055. ))
  13056. characterMakers.push(() => makeCharacter(
  13057. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13058. {
  13059. front: {
  13060. height: math.unit(1.8796, "m"),
  13061. weight: math.unit(230, "lb"),
  13062. name: "Front",
  13063. image: {
  13064. source: "./media/characters/colin-t/front.svg",
  13065. extra: 1272 / 1193,
  13066. bottom: 0.07
  13067. }
  13068. },
  13069. },
  13070. [
  13071. {
  13072. name: "Micro",
  13073. height: math.unit(0.571, "meters")
  13074. },
  13075. {
  13076. name: "Normal",
  13077. height: math.unit(1.8796, "meters"),
  13078. default: true
  13079. },
  13080. {
  13081. name: "Tall",
  13082. height: math.unit(4, "meters")
  13083. },
  13084. {
  13085. name: "Macro",
  13086. height: math.unit(67.241, "meters")
  13087. },
  13088. {
  13089. name: "Megamacro",
  13090. height: math.unit(371.856, "meters")
  13091. },
  13092. {
  13093. name: "Planetary",
  13094. height: math.unit(12631.5689, "km")
  13095. },
  13096. ]
  13097. ))
  13098. characterMakers.push(() => makeCharacter(
  13099. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13100. {
  13101. front: {
  13102. height: math.unit(1.85, "meters"),
  13103. weight: math.unit(80, "kg"),
  13104. name: "Front",
  13105. image: {
  13106. source: "./media/characters/matvei/front.svg",
  13107. extra: 456/447,
  13108. bottom: 8/464
  13109. }
  13110. },
  13111. back: {
  13112. height: math.unit(1.85, "meters"),
  13113. weight: math.unit(80, "kg"),
  13114. name: "Back",
  13115. image: {
  13116. source: "./media/characters/matvei/back.svg",
  13117. extra: 434/427,
  13118. bottom: 11/445
  13119. }
  13120. },
  13121. },
  13122. [
  13123. {
  13124. name: "Normal",
  13125. height: math.unit(1.85, "meters"),
  13126. default: true
  13127. },
  13128. ]
  13129. ))
  13130. characterMakers.push(() => makeCharacter(
  13131. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13132. {
  13133. front: {
  13134. height: math.unit(5 + 9 / 12, "feet"),
  13135. weight: math.unit(70, "lb"),
  13136. name: "Front",
  13137. image: {
  13138. source: "./media/characters/quincy/front.svg",
  13139. extra: 3041 / 2751
  13140. }
  13141. },
  13142. back: {
  13143. height: math.unit(5 + 9 / 12, "feet"),
  13144. weight: math.unit(70, "lb"),
  13145. name: "Back",
  13146. image: {
  13147. source: "./media/characters/quincy/back.svg",
  13148. extra: 3041 / 2751
  13149. }
  13150. },
  13151. flying: {
  13152. height: math.unit(5 + 4 / 12, "feet"),
  13153. weight: math.unit(70, "lb"),
  13154. name: "Flying",
  13155. image: {
  13156. source: "./media/characters/quincy/flying.svg",
  13157. extra: 1044 / 930
  13158. }
  13159. },
  13160. },
  13161. [
  13162. {
  13163. name: "Micro",
  13164. height: math.unit(3, "cm")
  13165. },
  13166. {
  13167. name: "Normal",
  13168. height: math.unit(5 + 9 / 12, "feet")
  13169. },
  13170. {
  13171. name: "Macro",
  13172. height: math.unit(200, "meters"),
  13173. default: true
  13174. },
  13175. {
  13176. name: "Megamacro",
  13177. height: math.unit(1000, "meters")
  13178. },
  13179. ]
  13180. ))
  13181. characterMakers.push(() => makeCharacter(
  13182. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13183. {
  13184. front: {
  13185. height: math.unit(3 + 11/12, "feet"),
  13186. weight: math.unit(50, "lb"),
  13187. name: "Front",
  13188. image: {
  13189. source: "./media/characters/vanrel/front.svg",
  13190. extra: 1104/949,
  13191. bottom: 52/1156
  13192. }
  13193. },
  13194. back: {
  13195. height: math.unit(3 + 11/12, "feet"),
  13196. weight: math.unit(50, "lb"),
  13197. name: "Back",
  13198. image: {
  13199. source: "./media/characters/vanrel/back.svg",
  13200. extra: 1119/976,
  13201. bottom: 37/1156
  13202. }
  13203. },
  13204. tome: {
  13205. height: math.unit(1.35, "feet"),
  13206. weight: math.unit(10, "lb"),
  13207. name: "Vanrel's Tome",
  13208. rename: true,
  13209. image: {
  13210. source: "./media/characters/vanrel/tome.svg"
  13211. }
  13212. },
  13213. beans: {
  13214. height: math.unit(0.89, "feet"),
  13215. name: "Beans",
  13216. image: {
  13217. source: "./media/characters/vanrel/beans.svg"
  13218. }
  13219. },
  13220. },
  13221. [
  13222. {
  13223. name: "Normal",
  13224. height: math.unit(3 + 11/12, "feet"),
  13225. default: true
  13226. },
  13227. ]
  13228. ))
  13229. characterMakers.push(() => makeCharacter(
  13230. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13231. {
  13232. front: {
  13233. height: math.unit(7 + 5 / 12, "feet"),
  13234. name: "Front",
  13235. image: {
  13236. source: "./media/characters/kuiper-vanrel/front.svg",
  13237. extra: 1219/1169,
  13238. bottom: 69/1288
  13239. }
  13240. },
  13241. back: {
  13242. height: math.unit(7 + 5 / 12, "feet"),
  13243. name: "Back",
  13244. image: {
  13245. source: "./media/characters/kuiper-vanrel/back.svg",
  13246. extra: 1236/1193,
  13247. bottom: 27/1263
  13248. }
  13249. },
  13250. foot: {
  13251. height: math.unit(0.55, "meters"),
  13252. name: "Foot",
  13253. image: {
  13254. source: "./media/characters/kuiper-vanrel/foot.svg",
  13255. }
  13256. },
  13257. battle: {
  13258. height: math.unit(6.824, "feet"),
  13259. name: "Battle",
  13260. image: {
  13261. source: "./media/characters/kuiper-vanrel/battle.svg",
  13262. extra: 1466 / 1327,
  13263. bottom: 29 / 1492.5
  13264. }
  13265. },
  13266. meerkui: {
  13267. height: math.unit(18, "inches"),
  13268. name: "Meerkui",
  13269. image: {
  13270. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13271. extra: 1354/1289,
  13272. bottom: 69/1423
  13273. }
  13274. },
  13275. },
  13276. [
  13277. {
  13278. name: "Normal",
  13279. height: math.unit(7 + 5 / 12, "feet"),
  13280. default: true
  13281. },
  13282. ]
  13283. ))
  13284. characterMakers.push(() => makeCharacter(
  13285. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13286. {
  13287. front: {
  13288. height: math.unit(8 + 5 / 12, "feet"),
  13289. name: "Front",
  13290. image: {
  13291. source: "./media/characters/keset-vanrel/front.svg",
  13292. extra: 1231/1148,
  13293. bottom: 82/1313
  13294. }
  13295. },
  13296. back: {
  13297. height: math.unit(8 + 5 / 12, "feet"),
  13298. name: "Back",
  13299. image: {
  13300. source: "./media/characters/keset-vanrel/back.svg",
  13301. extra: 1240/1174,
  13302. bottom: 33/1273
  13303. }
  13304. },
  13305. hand: {
  13306. height: math.unit(0.6, "meters"),
  13307. name: "Hand",
  13308. image: {
  13309. source: "./media/characters/keset-vanrel/hand.svg"
  13310. }
  13311. },
  13312. foot: {
  13313. height: math.unit(0.94978, "meters"),
  13314. name: "Foot",
  13315. image: {
  13316. source: "./media/characters/keset-vanrel/foot.svg"
  13317. }
  13318. },
  13319. battle: {
  13320. height: math.unit(7.408, "feet"),
  13321. name: "Battle",
  13322. image: {
  13323. source: "./media/characters/keset-vanrel/battle.svg",
  13324. extra: 1890 / 1386,
  13325. bottom: 73.28 / 1970
  13326. }
  13327. },
  13328. },
  13329. [
  13330. {
  13331. name: "Normal",
  13332. height: math.unit(8 + 5 / 12, "feet"),
  13333. default: true
  13334. },
  13335. ]
  13336. ))
  13337. characterMakers.push(() => makeCharacter(
  13338. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13339. {
  13340. front: {
  13341. height: math.unit(6, "feet"),
  13342. weight: math.unit(150, "lb"),
  13343. name: "Front",
  13344. image: {
  13345. source: "./media/characters/neos/front.svg",
  13346. extra: 1696 / 992,
  13347. bottom: 0.14
  13348. }
  13349. },
  13350. },
  13351. [
  13352. {
  13353. name: "Normal",
  13354. height: math.unit(54, "cm"),
  13355. default: true
  13356. },
  13357. {
  13358. name: "Macro",
  13359. height: math.unit(100, "m")
  13360. },
  13361. {
  13362. name: "Megamacro",
  13363. height: math.unit(10, "km")
  13364. },
  13365. {
  13366. name: "Megamacro+",
  13367. height: math.unit(100, "km")
  13368. },
  13369. {
  13370. name: "Gigamacro",
  13371. height: math.unit(100, "Mm")
  13372. },
  13373. {
  13374. name: "Teramacro",
  13375. height: math.unit(100, "Gm")
  13376. },
  13377. {
  13378. name: "Examacro",
  13379. height: math.unit(100, "Em")
  13380. },
  13381. {
  13382. name: "Godly",
  13383. height: math.unit(10000, "Ym")
  13384. },
  13385. {
  13386. name: "Beyond Godly",
  13387. height: math.unit(25, "multiverses")
  13388. },
  13389. ]
  13390. ))
  13391. characterMakers.push(() => makeCharacter(
  13392. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13393. {
  13394. feminine: {
  13395. height: math.unit(5, "feet"),
  13396. weight: math.unit(100, "lb"),
  13397. name: "Feminine",
  13398. image: {
  13399. source: "./media/characters/sammy-mouse/feminine.svg",
  13400. extra: 2526 / 2425,
  13401. bottom: 0.123
  13402. }
  13403. },
  13404. masculine: {
  13405. height: math.unit(5, "feet"),
  13406. weight: math.unit(100, "lb"),
  13407. name: "Masculine",
  13408. image: {
  13409. source: "./media/characters/sammy-mouse/masculine.svg",
  13410. extra: 2526 / 2425,
  13411. bottom: 0.123
  13412. }
  13413. },
  13414. },
  13415. [
  13416. {
  13417. name: "Micro",
  13418. height: math.unit(5, "inches")
  13419. },
  13420. {
  13421. name: "Normal",
  13422. height: math.unit(5, "feet"),
  13423. default: true
  13424. },
  13425. {
  13426. name: "Macro",
  13427. height: math.unit(60, "feet")
  13428. },
  13429. ]
  13430. ))
  13431. characterMakers.push(() => makeCharacter(
  13432. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13433. {
  13434. front: {
  13435. height: math.unit(4, "feet"),
  13436. weight: math.unit(50, "lb"),
  13437. name: "Front",
  13438. image: {
  13439. source: "./media/characters/kole/front.svg",
  13440. extra: 1423 / 1303,
  13441. bottom: 0.025
  13442. }
  13443. },
  13444. back: {
  13445. height: math.unit(4, "feet"),
  13446. weight: math.unit(50, "lb"),
  13447. name: "Back",
  13448. image: {
  13449. source: "./media/characters/kole/back.svg",
  13450. extra: 1426 / 1280,
  13451. bottom: 0.02
  13452. }
  13453. },
  13454. },
  13455. [
  13456. {
  13457. name: "Normal",
  13458. height: math.unit(4, "feet"),
  13459. default: true
  13460. },
  13461. ]
  13462. ))
  13463. characterMakers.push(() => makeCharacter(
  13464. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13465. {
  13466. front: {
  13467. height: math.unit(2.5, "feet"),
  13468. weight: math.unit(32, "lb"),
  13469. name: "Front",
  13470. image: {
  13471. source: "./media/characters/rufran/front.svg",
  13472. extra: 1313/885,
  13473. bottom: 94/1407
  13474. }
  13475. },
  13476. side: {
  13477. height: math.unit(2.5, "feet"),
  13478. weight: math.unit(32, "lb"),
  13479. name: "Side",
  13480. image: {
  13481. source: "./media/characters/rufran/side.svg",
  13482. extra: 1109/852,
  13483. bottom: 118/1227
  13484. }
  13485. },
  13486. back: {
  13487. height: math.unit(2.5, "feet"),
  13488. weight: math.unit(32, "lb"),
  13489. name: "Back",
  13490. image: {
  13491. source: "./media/characters/rufran/back.svg",
  13492. extra: 1280/878,
  13493. bottom: 131/1411
  13494. }
  13495. },
  13496. mouth: {
  13497. height: math.unit(1.13, "feet"),
  13498. name: "Mouth",
  13499. image: {
  13500. source: "./media/characters/rufran/mouth.svg"
  13501. }
  13502. },
  13503. foot: {
  13504. height: math.unit(1.33, "feet"),
  13505. name: "Foot",
  13506. image: {
  13507. source: "./media/characters/rufran/foot.svg"
  13508. }
  13509. },
  13510. koboldFront: {
  13511. height: math.unit(2 + 6 / 12, "feet"),
  13512. weight: math.unit(20, "lb"),
  13513. name: "Front (Kobold)",
  13514. image: {
  13515. source: "./media/characters/rufran/kobold-front.svg",
  13516. extra: 2041 / 1839,
  13517. bottom: 0.055
  13518. }
  13519. },
  13520. koboldBack: {
  13521. height: math.unit(2 + 6 / 12, "feet"),
  13522. weight: math.unit(20, "lb"),
  13523. name: "Back (Kobold)",
  13524. image: {
  13525. source: "./media/characters/rufran/kobold-back.svg",
  13526. extra: 2054 / 1839,
  13527. bottom: 0.01
  13528. }
  13529. },
  13530. koboldHand: {
  13531. height: math.unit(0.2166, "meters"),
  13532. name: "Hand (Kobold)",
  13533. image: {
  13534. source: "./media/characters/rufran/kobold-hand.svg"
  13535. }
  13536. },
  13537. koboldFoot: {
  13538. height: math.unit(0.185, "meters"),
  13539. name: "Foot (Kobold)",
  13540. image: {
  13541. source: "./media/characters/rufran/kobold-foot.svg"
  13542. }
  13543. },
  13544. },
  13545. [
  13546. {
  13547. name: "Micro",
  13548. height: math.unit(1, "inch")
  13549. },
  13550. {
  13551. name: "Normal",
  13552. height: math.unit(2 + 6 / 12, "feet"),
  13553. default: true
  13554. },
  13555. {
  13556. name: "Big",
  13557. height: math.unit(60, "feet")
  13558. },
  13559. {
  13560. name: "Macro",
  13561. height: math.unit(325, "feet")
  13562. },
  13563. ]
  13564. ))
  13565. characterMakers.push(() => makeCharacter(
  13566. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13567. {
  13568. front: {
  13569. height: math.unit(0.3, "meters"),
  13570. weight: math.unit(3.5, "kg"),
  13571. name: "Front",
  13572. image: {
  13573. source: "./media/characters/chip/front.svg",
  13574. extra: 748 / 674
  13575. }
  13576. },
  13577. },
  13578. [
  13579. {
  13580. name: "Micro",
  13581. height: math.unit(1, "inch"),
  13582. default: true
  13583. },
  13584. ]
  13585. ))
  13586. characterMakers.push(() => makeCharacter(
  13587. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13588. {
  13589. side: {
  13590. height: math.unit(2.3, "meters"),
  13591. weight: math.unit(3500, "lb"),
  13592. name: "Side",
  13593. image: {
  13594. source: "./media/characters/torvid/side.svg",
  13595. extra: 1972 / 722,
  13596. bottom: 0.035
  13597. }
  13598. },
  13599. },
  13600. [
  13601. {
  13602. name: "Normal",
  13603. height: math.unit(2.3, "meters"),
  13604. default: true
  13605. },
  13606. ]
  13607. ))
  13608. characterMakers.push(() => makeCharacter(
  13609. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13610. {
  13611. front: {
  13612. height: math.unit(2, "meters"),
  13613. weight: math.unit(150.5, "kg"),
  13614. name: "Front",
  13615. image: {
  13616. source: "./media/characters/susan/front.svg",
  13617. extra: 693 / 635,
  13618. bottom: 0.05
  13619. }
  13620. },
  13621. },
  13622. [
  13623. {
  13624. name: "Megamacro",
  13625. height: math.unit(505, "miles"),
  13626. default: true
  13627. },
  13628. ]
  13629. ))
  13630. characterMakers.push(() => makeCharacter(
  13631. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13632. {
  13633. front: {
  13634. height: math.unit(6, "feet"),
  13635. weight: math.unit(150, "lb"),
  13636. name: "Front",
  13637. image: {
  13638. source: "./media/characters/raindrops/front.svg",
  13639. extra: 2655 / 2461,
  13640. bottom: 49 / 2705
  13641. }
  13642. },
  13643. back: {
  13644. height: math.unit(6, "feet"),
  13645. weight: math.unit(150, "lb"),
  13646. name: "Back",
  13647. image: {
  13648. source: "./media/characters/raindrops/back.svg",
  13649. extra: 2574 / 2400,
  13650. bottom: 65 / 2634
  13651. }
  13652. },
  13653. },
  13654. [
  13655. {
  13656. name: "Micro",
  13657. height: math.unit(6, "inches")
  13658. },
  13659. {
  13660. name: "Normal",
  13661. height: math.unit(6 + 2 / 12, "feet")
  13662. },
  13663. {
  13664. name: "Macro",
  13665. height: math.unit(131, "feet"),
  13666. default: true
  13667. },
  13668. {
  13669. name: "Megamacro",
  13670. height: math.unit(15, "miles")
  13671. },
  13672. {
  13673. name: "Gigamacro",
  13674. height: math.unit(4000, "miles")
  13675. },
  13676. {
  13677. name: "Teramacro",
  13678. height: math.unit(315000, "miles")
  13679. },
  13680. ]
  13681. ))
  13682. characterMakers.push(() => makeCharacter(
  13683. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13684. {
  13685. front: {
  13686. height: math.unit(2.794, "meters"),
  13687. weight: math.unit(325, "kg"),
  13688. name: "Front",
  13689. image: {
  13690. source: "./media/characters/tezwa/front.svg",
  13691. extra: 2083 / 1906,
  13692. bottom: 0.031
  13693. }
  13694. },
  13695. foot: {
  13696. height: math.unit(0.687, "meters"),
  13697. name: "Foot",
  13698. image: {
  13699. source: "./media/characters/tezwa/foot.svg"
  13700. }
  13701. },
  13702. },
  13703. [
  13704. {
  13705. name: "Normal",
  13706. height: math.unit(9 + 2 / 12, "feet"),
  13707. default: true
  13708. },
  13709. ]
  13710. ))
  13711. characterMakers.push(() => makeCharacter(
  13712. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13713. {
  13714. front: {
  13715. height: math.unit(58, "feet"),
  13716. weight: math.unit(89000, "lb"),
  13717. name: "Front",
  13718. image: {
  13719. source: "./media/characters/typhus/front.svg",
  13720. extra: 816 / 800,
  13721. bottom: 0.065
  13722. }
  13723. },
  13724. },
  13725. [
  13726. {
  13727. name: "Macro",
  13728. height: math.unit(58, "feet"),
  13729. default: true
  13730. },
  13731. ]
  13732. ))
  13733. characterMakers.push(() => makeCharacter(
  13734. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13735. {
  13736. front: {
  13737. height: math.unit(12, "feet"),
  13738. weight: math.unit(6, "tonnes"),
  13739. name: "Front",
  13740. image: {
  13741. source: "./media/characters/lyra-von-wulf/front.svg",
  13742. extra: 1,
  13743. bottom: 0.10
  13744. }
  13745. },
  13746. frontMecha: {
  13747. height: math.unit(12, "feet"),
  13748. weight: math.unit(12, "tonnes"),
  13749. name: "Front (Mecha)",
  13750. image: {
  13751. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13752. extra: 1,
  13753. bottom: 0.042
  13754. }
  13755. },
  13756. maw: {
  13757. height: math.unit(2.2, "feet"),
  13758. name: "Maw",
  13759. image: {
  13760. source: "./media/characters/lyra-von-wulf/maw.svg"
  13761. }
  13762. },
  13763. },
  13764. [
  13765. {
  13766. name: "Normal",
  13767. height: math.unit(12, "feet"),
  13768. default: true
  13769. },
  13770. {
  13771. name: "Classic",
  13772. height: math.unit(50, "feet")
  13773. },
  13774. {
  13775. name: "Macro",
  13776. height: math.unit(500, "feet")
  13777. },
  13778. {
  13779. name: "Megamacro",
  13780. height: math.unit(1, "mile")
  13781. },
  13782. {
  13783. name: "Gigamacro",
  13784. height: math.unit(400, "miles")
  13785. },
  13786. {
  13787. name: "Teramacro",
  13788. height: math.unit(22000, "miles")
  13789. },
  13790. {
  13791. name: "Solarmacro",
  13792. height: math.unit(8600000, "miles")
  13793. },
  13794. {
  13795. name: "Galactic",
  13796. height: math.unit(1057000, "lightyears")
  13797. },
  13798. ]
  13799. ))
  13800. characterMakers.push(() => makeCharacter(
  13801. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13802. {
  13803. front: {
  13804. height: math.unit(6 + 10 / 12, "feet"),
  13805. weight: math.unit(150, "lb"),
  13806. name: "Front",
  13807. image: {
  13808. source: "./media/characters/dixon/front.svg",
  13809. extra: 3361 / 3209,
  13810. bottom: 0.01
  13811. }
  13812. },
  13813. },
  13814. [
  13815. {
  13816. name: "Normal",
  13817. height: math.unit(6 + 10 / 12, "feet"),
  13818. default: true
  13819. },
  13820. {
  13821. name: "Big",
  13822. height: math.unit(12, "meters")
  13823. },
  13824. {
  13825. name: "Macro",
  13826. height: math.unit(500, "meters")
  13827. },
  13828. {
  13829. name: "Megamacro",
  13830. height: math.unit(2, "km")
  13831. },
  13832. ]
  13833. ))
  13834. characterMakers.push(() => makeCharacter(
  13835. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13836. {
  13837. front: {
  13838. height: math.unit(185, "cm"),
  13839. weight: math.unit(68, "kg"),
  13840. name: "Front",
  13841. image: {
  13842. source: "./media/characters/kauko/front.svg",
  13843. extra: 1455 / 1421,
  13844. bottom: 0.03
  13845. }
  13846. },
  13847. back: {
  13848. height: math.unit(185, "cm"),
  13849. weight: math.unit(68, "kg"),
  13850. name: "Back",
  13851. image: {
  13852. source: "./media/characters/kauko/back.svg",
  13853. extra: 1455 / 1421,
  13854. bottom: 0.004
  13855. }
  13856. },
  13857. },
  13858. [
  13859. {
  13860. name: "Normal",
  13861. height: math.unit(185, "cm"),
  13862. default: true
  13863. },
  13864. ]
  13865. ))
  13866. characterMakers.push(() => makeCharacter(
  13867. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13868. {
  13869. frontSfw: {
  13870. height: math.unit(5, "meters"),
  13871. weight: math.unit(4250, "lb"),
  13872. name: "Front",
  13873. image: {
  13874. source: "./media/characters/varg/front-sfw.svg",
  13875. extra: 1103/1010,
  13876. bottom: 50/1153
  13877. },
  13878. form: "anthro",
  13879. default: true
  13880. },
  13881. backSfw: {
  13882. height: math.unit(5, "meters"),
  13883. weight: math.unit(4250, "lb"),
  13884. name: "Back",
  13885. image: {
  13886. source: "./media/characters/varg/back-sfw.svg",
  13887. extra: 1038/1022,
  13888. bottom: 36/1074
  13889. },
  13890. form: "anthro"
  13891. },
  13892. frontNsfw: {
  13893. height: math.unit(5, "meters"),
  13894. weight: math.unit(4250, "lb"),
  13895. name: "Front (NSFW)",
  13896. image: {
  13897. source: "./media/characters/varg/front-nsfw.svg",
  13898. extra: 1103/1010,
  13899. bottom: 50/1153
  13900. },
  13901. form: "anthro"
  13902. },
  13903. sheath: {
  13904. height: math.unit(3.8, "feet"),
  13905. weight: math.unit(90, "kilograms"),
  13906. name: "Sheath",
  13907. image: {
  13908. source: "./media/characters/varg/sheath.svg"
  13909. },
  13910. form: "anthro"
  13911. },
  13912. dick: {
  13913. height: math.unit(4.6, "feet"),
  13914. weight: math.unit(451, "kilograms"),
  13915. name: "Dick",
  13916. image: {
  13917. source: "./media/characters/varg/dick.svg"
  13918. },
  13919. form: "anthro"
  13920. },
  13921. feralSfw: {
  13922. height: math.unit(5, "meters"),
  13923. weight: math.unit(100000, "lb"),
  13924. name: "Side",
  13925. image: {
  13926. source: "./media/characters/varg/feral-sfw.svg",
  13927. extra: 1065/511,
  13928. bottom: 211/1276
  13929. },
  13930. form: "feral",
  13931. default: true
  13932. },
  13933. feralNsfw: {
  13934. height: math.unit(5, "meters"),
  13935. weight: math.unit(100000, "lb"),
  13936. name: "Side (NSFW)",
  13937. image: {
  13938. source: "./media/characters/varg/feral-nsfw.svg",
  13939. extra: 1065/511,
  13940. bottom: 211/1276
  13941. },
  13942. form: "feral",
  13943. },
  13944. feralSheath: {
  13945. height: math.unit(9.8, "feet"),
  13946. weight: math.unit(2000, "kilograms"),
  13947. name: "Sheath",
  13948. image: {
  13949. source: "./media/characters/varg/sheath.svg"
  13950. },
  13951. form: "feral"
  13952. },
  13953. feralDick: {
  13954. height: math.unit(13.11, "feet"),
  13955. weight: math.unit(10440, "kilograms"),
  13956. name: "Dick",
  13957. image: {
  13958. source: "./media/characters/varg/dick.svg"
  13959. },
  13960. form: "feral"
  13961. },
  13962. },
  13963. [
  13964. {
  13965. name: "Normal",
  13966. height: math.unit(5, "meters"),
  13967. form: "anthro"
  13968. },
  13969. {
  13970. name: "Macro",
  13971. height: math.unit(200, "meters"),
  13972. form: "anthro"
  13973. },
  13974. {
  13975. name: "Megamacro",
  13976. height: math.unit(20, "kilometers"),
  13977. form: "anthro"
  13978. },
  13979. {
  13980. name: "True Size",
  13981. height: math.unit(211, "km"),
  13982. form: "anthro",
  13983. default: true
  13984. },
  13985. {
  13986. name: "Gigamacro",
  13987. height: math.unit(1000, "km"),
  13988. form: "anthro"
  13989. },
  13990. {
  13991. name: "Gigamacro+",
  13992. height: math.unit(8000, "km"),
  13993. form: "anthro"
  13994. },
  13995. {
  13996. name: "Teramacro",
  13997. height: math.unit(1000000, "km"),
  13998. form: "anthro"
  13999. },
  14000. {
  14001. name: "Normal",
  14002. height: math.unit(5, "meters"),
  14003. form: "feral"
  14004. },
  14005. {
  14006. name: "Macro",
  14007. height: math.unit(200, "meters"),
  14008. form: "feral"
  14009. },
  14010. {
  14011. name: "Megamacro",
  14012. height: math.unit(20, "kilometers"),
  14013. form: "feral"
  14014. },
  14015. {
  14016. name: "True Size",
  14017. height: math.unit(211, "km"),
  14018. form: "feral",
  14019. default: true
  14020. },
  14021. {
  14022. name: "Gigamacro",
  14023. height: math.unit(1000, "km"),
  14024. form: "feral"
  14025. },
  14026. {
  14027. name: "Gigamacro+",
  14028. height: math.unit(8000, "km"),
  14029. form: "feral"
  14030. },
  14031. {
  14032. name: "Teramacro",
  14033. height: math.unit(1000000, "km"),
  14034. form: "feral"
  14035. },
  14036. ],
  14037. {
  14038. "anthro": {
  14039. name: "Anthro",
  14040. default: true
  14041. },
  14042. "feral": {
  14043. name: "Feral",
  14044. },
  14045. }
  14046. ))
  14047. characterMakers.push(() => makeCharacter(
  14048. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  14049. {
  14050. front: {
  14051. height: math.unit(7 + 7 / 12, "feet"),
  14052. weight: math.unit(267, "lb"),
  14053. name: "Front",
  14054. image: {
  14055. source: "./media/characters/dayza/front.svg",
  14056. extra: 1262 / 1200,
  14057. bottom: 0.035
  14058. }
  14059. },
  14060. side: {
  14061. height: math.unit(7 + 7 / 12, "feet"),
  14062. weight: math.unit(267, "lb"),
  14063. name: "Side",
  14064. image: {
  14065. source: "./media/characters/dayza/side.svg",
  14066. extra: 1295 / 1245,
  14067. bottom: 0.05
  14068. }
  14069. },
  14070. back: {
  14071. height: math.unit(7 + 7 / 12, "feet"),
  14072. weight: math.unit(267, "lb"),
  14073. name: "Back",
  14074. image: {
  14075. source: "./media/characters/dayza/back.svg",
  14076. extra: 1241 / 1170
  14077. }
  14078. },
  14079. },
  14080. [
  14081. {
  14082. name: "Normal",
  14083. height: math.unit(7 + 7 / 12, "feet"),
  14084. default: true
  14085. },
  14086. {
  14087. name: "Macro",
  14088. height: math.unit(155, "feet")
  14089. },
  14090. ]
  14091. ))
  14092. characterMakers.push(() => makeCharacter(
  14093. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14094. {
  14095. front: {
  14096. height: math.unit(6 + 5 / 12, "feet"),
  14097. weight: math.unit(160, "lb"),
  14098. name: "Front",
  14099. image: {
  14100. source: "./media/characters/xanthos/front.svg",
  14101. extra: 1,
  14102. bottom: 0.04
  14103. }
  14104. },
  14105. back: {
  14106. height: math.unit(6 + 5 / 12, "feet"),
  14107. weight: math.unit(160, "lb"),
  14108. name: "Back",
  14109. image: {
  14110. source: "./media/characters/xanthos/back.svg",
  14111. extra: 1,
  14112. bottom: 0.03
  14113. }
  14114. },
  14115. hand: {
  14116. height: math.unit(0.928, "feet"),
  14117. name: "Hand",
  14118. image: {
  14119. source: "./media/characters/xanthos/hand.svg"
  14120. }
  14121. },
  14122. foot: {
  14123. height: math.unit(1.286, "feet"),
  14124. name: "Foot",
  14125. image: {
  14126. source: "./media/characters/xanthos/foot.svg"
  14127. }
  14128. },
  14129. },
  14130. [
  14131. {
  14132. name: "Normal",
  14133. height: math.unit(6 + 5 / 12, "feet"),
  14134. default: true
  14135. },
  14136. {
  14137. name: "Normal+",
  14138. height: math.unit(6, "meters")
  14139. },
  14140. {
  14141. name: "Macro",
  14142. height: math.unit(40, "feet")
  14143. },
  14144. {
  14145. name: "Macro+",
  14146. height: math.unit(200, "meters")
  14147. },
  14148. {
  14149. name: "Megamacro",
  14150. height: math.unit(20, "km")
  14151. },
  14152. {
  14153. name: "Megamacro+",
  14154. height: math.unit(100, "km")
  14155. },
  14156. {
  14157. name: "Gigamacro",
  14158. height: math.unit(200, "megameters")
  14159. },
  14160. {
  14161. name: "Gigamacro+",
  14162. height: math.unit(1.5, "gigameters")
  14163. },
  14164. ]
  14165. ))
  14166. characterMakers.push(() => makeCharacter(
  14167. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  14168. {
  14169. front: {
  14170. height: math.unit(6 + 3 / 12, "feet"),
  14171. weight: math.unit(215, "lb"),
  14172. name: "Front",
  14173. image: {
  14174. source: "./media/characters/grynn/front.svg",
  14175. extra: 4627 / 4209,
  14176. bottom: 0.047
  14177. }
  14178. },
  14179. },
  14180. [
  14181. {
  14182. name: "Micro",
  14183. height: math.unit(6, "inches")
  14184. },
  14185. {
  14186. name: "Normal",
  14187. height: math.unit(6 + 3 / 12, "feet"),
  14188. default: true
  14189. },
  14190. {
  14191. name: "Big",
  14192. height: math.unit(104, "feet")
  14193. },
  14194. {
  14195. name: "Macro",
  14196. height: math.unit(944, "feet")
  14197. },
  14198. {
  14199. name: "Macro+",
  14200. height: math.unit(9480, "feet")
  14201. },
  14202. {
  14203. name: "Megamacro",
  14204. height: math.unit(78752, "feet")
  14205. },
  14206. {
  14207. name: "Megamacro+",
  14208. height: math.unit(630128, "feet")
  14209. },
  14210. {
  14211. name: "Megamacro++",
  14212. height: math.unit(3150695, "feet")
  14213. },
  14214. ]
  14215. ))
  14216. characterMakers.push(() => makeCharacter(
  14217. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  14218. {
  14219. front: {
  14220. height: math.unit(7 + 5 / 12, "feet"),
  14221. weight: math.unit(450, "lb"),
  14222. name: "Front",
  14223. image: {
  14224. source: "./media/characters/mocha-aura/front.svg",
  14225. extra: 1907 / 1817,
  14226. bottom: 0.04
  14227. }
  14228. },
  14229. back: {
  14230. height: math.unit(7 + 5 / 12, "feet"),
  14231. weight: math.unit(450, "lb"),
  14232. name: "Back",
  14233. image: {
  14234. source: "./media/characters/mocha-aura/back.svg",
  14235. extra: 1900 / 1825,
  14236. bottom: 0.045
  14237. }
  14238. },
  14239. },
  14240. [
  14241. {
  14242. name: "Nano",
  14243. height: math.unit(1, "nm")
  14244. },
  14245. {
  14246. name: "Megamicro",
  14247. height: math.unit(1, "mm")
  14248. },
  14249. {
  14250. name: "Micro",
  14251. height: math.unit(3, "inches")
  14252. },
  14253. {
  14254. name: "Normal",
  14255. height: math.unit(7 + 5 / 12, "feet"),
  14256. default: true
  14257. },
  14258. {
  14259. name: "Macro",
  14260. height: math.unit(30, "feet")
  14261. },
  14262. {
  14263. name: "Megamacro",
  14264. height: math.unit(3500, "feet")
  14265. },
  14266. {
  14267. name: "Teramacro",
  14268. height: math.unit(500000, "miles")
  14269. },
  14270. {
  14271. name: "Petamacro",
  14272. height: math.unit(50000000000000000, "parsecs")
  14273. },
  14274. ]
  14275. ))
  14276. characterMakers.push(() => makeCharacter(
  14277. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  14278. {
  14279. front: {
  14280. height: math.unit(6, "feet"),
  14281. weight: math.unit(150, "lb"),
  14282. name: "Front",
  14283. image: {
  14284. source: "./media/characters/ilisha-devya/front.svg",
  14285. extra: 1053/1049,
  14286. bottom: 270/1323
  14287. }
  14288. },
  14289. back: {
  14290. height: math.unit(6, "feet"),
  14291. weight: math.unit(150, "lb"),
  14292. name: "Back",
  14293. image: {
  14294. source: "./media/characters/ilisha-devya/back.svg",
  14295. extra: 1131/1128,
  14296. bottom: 39/1170
  14297. }
  14298. },
  14299. },
  14300. [
  14301. {
  14302. name: "Macro",
  14303. height: math.unit(500, "feet"),
  14304. default: true
  14305. },
  14306. {
  14307. name: "Megamacro",
  14308. height: math.unit(10, "miles")
  14309. },
  14310. {
  14311. name: "Gigamacro",
  14312. height: math.unit(100000, "miles")
  14313. },
  14314. {
  14315. name: "Examacro",
  14316. height: math.unit(1e9, "lightyears")
  14317. },
  14318. {
  14319. name: "Omniversal",
  14320. height: math.unit(1e33, "lightyears")
  14321. },
  14322. {
  14323. name: "Beyond Infinite",
  14324. height: math.unit(1e100, "lightyears")
  14325. },
  14326. ]
  14327. ))
  14328. characterMakers.push(() => makeCharacter(
  14329. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  14330. {
  14331. Side: {
  14332. height: math.unit(6, "feet"),
  14333. weight: math.unit(150, "lb"),
  14334. name: "Side",
  14335. image: {
  14336. source: "./media/characters/mira/side.svg",
  14337. extra: 900 / 799,
  14338. bottom: 0.02
  14339. }
  14340. },
  14341. },
  14342. [
  14343. {
  14344. name: "Human Size",
  14345. height: math.unit(6, "feet")
  14346. },
  14347. {
  14348. name: "Macro",
  14349. height: math.unit(100, "feet"),
  14350. default: true
  14351. },
  14352. {
  14353. name: "Megamacro",
  14354. height: math.unit(10, "miles")
  14355. },
  14356. {
  14357. name: "Gigamacro",
  14358. height: math.unit(25000, "miles")
  14359. },
  14360. {
  14361. name: "Teramacro",
  14362. height: math.unit(300, "AU")
  14363. },
  14364. {
  14365. name: "Full Size",
  14366. height: math.unit(4.5e10, "lightyears")
  14367. },
  14368. ]
  14369. ))
  14370. characterMakers.push(() => makeCharacter(
  14371. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  14372. {
  14373. front: {
  14374. height: math.unit(6, "feet"),
  14375. weight: math.unit(150, "lb"),
  14376. name: "Front",
  14377. image: {
  14378. source: "./media/characters/holly/front.svg",
  14379. extra: 639 / 606
  14380. }
  14381. },
  14382. back: {
  14383. height: math.unit(6, "feet"),
  14384. weight: math.unit(150, "lb"),
  14385. name: "Back",
  14386. image: {
  14387. source: "./media/characters/holly/back.svg",
  14388. extra: 623 / 598
  14389. }
  14390. },
  14391. frontWorking: {
  14392. height: math.unit(6, "feet"),
  14393. weight: math.unit(150, "lb"),
  14394. name: "Front (Working)",
  14395. image: {
  14396. source: "./media/characters/holly/front-working.svg",
  14397. extra: 607 / 577,
  14398. bottom: 0.048
  14399. }
  14400. },
  14401. },
  14402. [
  14403. {
  14404. name: "Normal",
  14405. height: math.unit(12 + 3 / 12, "feet"),
  14406. default: true
  14407. },
  14408. ]
  14409. ))
  14410. characterMakers.push(() => makeCharacter(
  14411. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  14412. {
  14413. front: {
  14414. height: math.unit(6, "feet"),
  14415. weight: math.unit(150, "lb"),
  14416. name: "Front",
  14417. image: {
  14418. source: "./media/characters/porter/front.svg",
  14419. extra: 1,
  14420. bottom: 0.01
  14421. }
  14422. },
  14423. frontRobes: {
  14424. height: math.unit(6, "feet"),
  14425. weight: math.unit(150, "lb"),
  14426. name: "Front (Robes)",
  14427. image: {
  14428. source: "./media/characters/porter/front-robes.svg",
  14429. extra: 1.01,
  14430. bottom: 0.01
  14431. }
  14432. },
  14433. },
  14434. [
  14435. {
  14436. name: "Normal",
  14437. height: math.unit(11 + 9 / 12, "feet"),
  14438. default: true
  14439. },
  14440. ]
  14441. ))
  14442. characterMakers.push(() => makeCharacter(
  14443. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  14444. {
  14445. legendary: {
  14446. height: math.unit(6, "feet"),
  14447. weight: math.unit(150, "lb"),
  14448. name: "Legendary",
  14449. image: {
  14450. source: "./media/characters/lucy/legendary.svg",
  14451. extra: 1355 / 1100,
  14452. bottom: 0.045
  14453. }
  14454. },
  14455. },
  14456. [
  14457. {
  14458. name: "Legendary",
  14459. height: math.unit(86882 * 2, "miles"),
  14460. default: true
  14461. },
  14462. ]
  14463. ))
  14464. characterMakers.push(() => makeCharacter(
  14465. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  14466. {
  14467. front: {
  14468. height: math.unit(6, "feet"),
  14469. weight: math.unit(150, "lb"),
  14470. name: "Front",
  14471. image: {
  14472. source: "./media/characters/drusilla/front.svg",
  14473. extra: 678 / 635,
  14474. bottom: 0.03
  14475. }
  14476. },
  14477. back: {
  14478. height: math.unit(6, "feet"),
  14479. weight: math.unit(150, "lb"),
  14480. name: "Back",
  14481. image: {
  14482. source: "./media/characters/drusilla/back.svg",
  14483. extra: 678 / 635,
  14484. bottom: 0.005
  14485. }
  14486. },
  14487. },
  14488. [
  14489. {
  14490. name: "Macro",
  14491. height: math.unit(100, "feet")
  14492. },
  14493. {
  14494. name: "Canon Height",
  14495. height: math.unit(2000, "feet"),
  14496. default: true
  14497. },
  14498. ]
  14499. ))
  14500. characterMakers.push(() => makeCharacter(
  14501. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  14502. {
  14503. front: {
  14504. height: math.unit(6, "feet"),
  14505. weight: math.unit(180, "lb"),
  14506. name: "Front",
  14507. image: {
  14508. source: "./media/characters/renard-thatch/front.svg",
  14509. extra: 2411 / 2275,
  14510. bottom: 0.01
  14511. }
  14512. },
  14513. frontPosing: {
  14514. height: math.unit(6, "feet"),
  14515. weight: math.unit(180, "lb"),
  14516. name: "Front (Posing)",
  14517. image: {
  14518. source: "./media/characters/renard-thatch/front-posing.svg",
  14519. extra: 2381 / 2261,
  14520. bottom: 0.01
  14521. }
  14522. },
  14523. back: {
  14524. height: math.unit(6, "feet"),
  14525. weight: math.unit(180, "lb"),
  14526. name: "Back",
  14527. image: {
  14528. source: "./media/characters/renard-thatch/back.svg",
  14529. extra: 2428 / 2288
  14530. }
  14531. },
  14532. },
  14533. [
  14534. {
  14535. name: "Micro",
  14536. height: math.unit(3, "inches")
  14537. },
  14538. {
  14539. name: "Default",
  14540. height: math.unit(6, "feet"),
  14541. default: true
  14542. },
  14543. {
  14544. name: "Macro",
  14545. height: math.unit(75, "feet")
  14546. },
  14547. ]
  14548. ))
  14549. characterMakers.push(() => makeCharacter(
  14550. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  14551. {
  14552. front: {
  14553. height: math.unit(1450, "feet"),
  14554. weight: math.unit(1.21e6, "tons"),
  14555. name: "Front",
  14556. image: {
  14557. source: "./media/characters/sekvra/front.svg",
  14558. extra: 1193/1190,
  14559. bottom: 78/1271
  14560. }
  14561. },
  14562. side: {
  14563. height: math.unit(1450, "feet"),
  14564. weight: math.unit(1.21e6, "tons"),
  14565. name: "Side",
  14566. image: {
  14567. source: "./media/characters/sekvra/side.svg",
  14568. extra: 1193/1190,
  14569. bottom: 52/1245
  14570. }
  14571. },
  14572. back: {
  14573. height: math.unit(1450, "feet"),
  14574. weight: math.unit(1.21e6, "tons"),
  14575. name: "Back",
  14576. image: {
  14577. source: "./media/characters/sekvra/back.svg",
  14578. extra: 1219/1216,
  14579. bottom: 21/1240
  14580. }
  14581. },
  14582. frontClothed: {
  14583. height: math.unit(1450, "feet"),
  14584. weight: math.unit(1.21e6, "tons"),
  14585. name: "Front (Clothed)",
  14586. image: {
  14587. source: "./media/characters/sekvra/front-clothed.svg",
  14588. extra: 1192/1189,
  14589. bottom: 79/1271
  14590. }
  14591. },
  14592. },
  14593. [
  14594. {
  14595. name: "Macro",
  14596. height: math.unit(1450, "feet"),
  14597. default: true
  14598. },
  14599. {
  14600. name: "Megamacro",
  14601. height: math.unit(15000, "feet")
  14602. },
  14603. ]
  14604. ))
  14605. characterMakers.push(() => makeCharacter(
  14606. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14607. {
  14608. front: {
  14609. height: math.unit(6, "feet"),
  14610. weight: math.unit(150, "lb"),
  14611. name: "Front",
  14612. image: {
  14613. source: "./media/characters/carmine/front.svg",
  14614. extra: 1,
  14615. bottom: 0.035
  14616. }
  14617. },
  14618. frontArmor: {
  14619. height: math.unit(6, "feet"),
  14620. weight: math.unit(150, "lb"),
  14621. name: "Front (Armor)",
  14622. image: {
  14623. source: "./media/characters/carmine/front-armor.svg",
  14624. extra: 1,
  14625. bottom: 0.035
  14626. }
  14627. },
  14628. },
  14629. [
  14630. {
  14631. name: "Large",
  14632. height: math.unit(1, "mile")
  14633. },
  14634. {
  14635. name: "Huge",
  14636. height: math.unit(40, "miles"),
  14637. default: true
  14638. },
  14639. {
  14640. name: "Colossal",
  14641. height: math.unit(2500, "miles")
  14642. },
  14643. ]
  14644. ))
  14645. characterMakers.push(() => makeCharacter(
  14646. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  14647. {
  14648. front: {
  14649. height: math.unit(6, "feet"),
  14650. weight: math.unit(150, "lb"),
  14651. name: "Front",
  14652. image: {
  14653. source: "./media/characters/elyssia/front.svg",
  14654. extra: 2201 / 2035,
  14655. bottom: 0.05
  14656. }
  14657. },
  14658. frontClothed: {
  14659. height: math.unit(6, "feet"),
  14660. weight: math.unit(150, "lb"),
  14661. name: "Front (Clothed)",
  14662. image: {
  14663. source: "./media/characters/elyssia/front-clothed.svg",
  14664. extra: 2201 / 2035,
  14665. bottom: 0.05
  14666. }
  14667. },
  14668. back: {
  14669. height: math.unit(6, "feet"),
  14670. weight: math.unit(150, "lb"),
  14671. name: "Back",
  14672. image: {
  14673. source: "./media/characters/elyssia/back.svg",
  14674. extra: 2201 / 2035,
  14675. bottom: 0.013
  14676. }
  14677. },
  14678. },
  14679. [
  14680. {
  14681. name: "Smaller",
  14682. height: math.unit(150, "feet")
  14683. },
  14684. {
  14685. name: "Standard",
  14686. height: math.unit(1400, "feet"),
  14687. default: true
  14688. },
  14689. {
  14690. name: "Distracted",
  14691. height: math.unit(15000, "feet")
  14692. },
  14693. ]
  14694. ))
  14695. characterMakers.push(() => makeCharacter(
  14696. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  14697. {
  14698. front: {
  14699. height: math.unit(7 + 4/12, "feet"),
  14700. weight: math.unit(690, "lb"),
  14701. name: "Front",
  14702. image: {
  14703. source: "./media/characters/geno-maxwell/front.svg",
  14704. extra: 984/856,
  14705. bottom: 87/1071
  14706. }
  14707. },
  14708. back: {
  14709. height: math.unit(7 + 4/12, "feet"),
  14710. weight: math.unit(690, "lb"),
  14711. name: "Back",
  14712. image: {
  14713. source: "./media/characters/geno-maxwell/back.svg",
  14714. extra: 981/854,
  14715. bottom: 57/1038
  14716. }
  14717. },
  14718. frontCostume: {
  14719. height: math.unit(7 + 4/12, "feet"),
  14720. weight: math.unit(690, "lb"),
  14721. name: "Front (Costume)",
  14722. image: {
  14723. source: "./media/characters/geno-maxwell/front-costume.svg",
  14724. extra: 984/856,
  14725. bottom: 87/1071
  14726. }
  14727. },
  14728. backcostume: {
  14729. height: math.unit(7 + 4/12, "feet"),
  14730. weight: math.unit(690, "lb"),
  14731. name: "Back (Costume)",
  14732. image: {
  14733. source: "./media/characters/geno-maxwell/back-costume.svg",
  14734. extra: 981/854,
  14735. bottom: 57/1038
  14736. }
  14737. },
  14738. },
  14739. [
  14740. {
  14741. name: "Micro",
  14742. height: math.unit(3, "inches")
  14743. },
  14744. {
  14745. name: "Normal",
  14746. height: math.unit(7 + 4 / 12, "feet"),
  14747. default: true
  14748. },
  14749. {
  14750. name: "Macro",
  14751. height: math.unit(220, "feet")
  14752. },
  14753. {
  14754. name: "Megamacro",
  14755. height: math.unit(11, "miles")
  14756. },
  14757. ]
  14758. ))
  14759. characterMakers.push(() => makeCharacter(
  14760. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  14761. {
  14762. front: {
  14763. height: math.unit(7 + 4/12, "feet"),
  14764. weight: math.unit(750, "lb"),
  14765. name: "Front",
  14766. image: {
  14767. source: "./media/characters/regena-maxwell/front.svg",
  14768. extra: 984/856,
  14769. bottom: 87/1071
  14770. }
  14771. },
  14772. back: {
  14773. height: math.unit(7 + 4/12, "feet"),
  14774. weight: math.unit(750, "lb"),
  14775. name: "Back",
  14776. image: {
  14777. source: "./media/characters/regena-maxwell/back.svg",
  14778. extra: 981/854,
  14779. bottom: 57/1038
  14780. }
  14781. },
  14782. frontCostume: {
  14783. height: math.unit(7 + 4/12, "feet"),
  14784. weight: math.unit(750, "lb"),
  14785. name: "Front (Costume)",
  14786. image: {
  14787. source: "./media/characters/regena-maxwell/front-costume.svg",
  14788. extra: 984/856,
  14789. bottom: 87/1071
  14790. }
  14791. },
  14792. backcostume: {
  14793. height: math.unit(7 + 4/12, "feet"),
  14794. weight: math.unit(750, "lb"),
  14795. name: "Back (Costume)",
  14796. image: {
  14797. source: "./media/characters/regena-maxwell/back-costume.svg",
  14798. extra: 981/854,
  14799. bottom: 57/1038
  14800. }
  14801. },
  14802. },
  14803. [
  14804. {
  14805. name: "Normal",
  14806. height: math.unit(7 + 4 / 12, "feet"),
  14807. default: true
  14808. },
  14809. {
  14810. name: "Macro",
  14811. height: math.unit(220, "feet")
  14812. },
  14813. {
  14814. name: "Megamacro",
  14815. height: math.unit(11, "miles")
  14816. },
  14817. ]
  14818. ))
  14819. characterMakers.push(() => makeCharacter(
  14820. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14821. {
  14822. front: {
  14823. height: math.unit(6, "feet"),
  14824. weight: math.unit(150, "lb"),
  14825. name: "Front",
  14826. image: {
  14827. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14828. extra: 860 / 690,
  14829. bottom: 0.03
  14830. }
  14831. },
  14832. },
  14833. [
  14834. {
  14835. name: "Normal",
  14836. height: math.unit(1.7, "meters"),
  14837. default: true
  14838. },
  14839. ]
  14840. ))
  14841. characterMakers.push(() => makeCharacter(
  14842. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14843. {
  14844. front: {
  14845. height: math.unit(6, "feet"),
  14846. weight: math.unit(150, "lb"),
  14847. name: "Front",
  14848. image: {
  14849. source: "./media/characters/quilly/front.svg",
  14850. extra: 890 / 776
  14851. }
  14852. },
  14853. },
  14854. [
  14855. {
  14856. name: "Gigamacro",
  14857. height: math.unit(404090, "miles"),
  14858. default: true
  14859. },
  14860. ]
  14861. ))
  14862. characterMakers.push(() => makeCharacter(
  14863. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14864. {
  14865. front: {
  14866. height: math.unit(7 + 8 / 12, "feet"),
  14867. weight: math.unit(350, "lb"),
  14868. name: "Front",
  14869. image: {
  14870. source: "./media/characters/tempest/front.svg",
  14871. extra: 1175 / 1086,
  14872. bottom: 0.02
  14873. }
  14874. },
  14875. },
  14876. [
  14877. {
  14878. name: "Normal",
  14879. height: math.unit(7 + 8 / 12, "feet"),
  14880. default: true
  14881. },
  14882. ]
  14883. ))
  14884. characterMakers.push(() => makeCharacter(
  14885. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14886. {
  14887. side: {
  14888. height: math.unit(4 + 5 / 12, "feet"),
  14889. weight: math.unit(80, "lb"),
  14890. name: "Side",
  14891. image: {
  14892. source: "./media/characters/rodger/side.svg",
  14893. extra: 1235 / 1118
  14894. }
  14895. },
  14896. },
  14897. [
  14898. {
  14899. name: "Micro",
  14900. height: math.unit(1, "inch")
  14901. },
  14902. {
  14903. name: "Normal",
  14904. height: math.unit(4 + 5 / 12, "feet"),
  14905. default: true
  14906. },
  14907. {
  14908. name: "Macro",
  14909. height: math.unit(120, "feet")
  14910. },
  14911. ]
  14912. ))
  14913. characterMakers.push(() => makeCharacter(
  14914. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14915. {
  14916. front: {
  14917. height: math.unit(6, "feet"),
  14918. weight: math.unit(150, "lb"),
  14919. name: "Front",
  14920. image: {
  14921. source: "./media/characters/danyel/front.svg",
  14922. extra: 1185 / 1123,
  14923. bottom: 0.05
  14924. }
  14925. },
  14926. },
  14927. [
  14928. {
  14929. name: "Shrunken",
  14930. height: math.unit(0.5, "mm")
  14931. },
  14932. {
  14933. name: "Micro",
  14934. height: math.unit(1, "mm"),
  14935. default: true
  14936. },
  14937. {
  14938. name: "Upsized",
  14939. height: math.unit(5 + 5 / 12, "feet")
  14940. },
  14941. ]
  14942. ))
  14943. characterMakers.push(() => makeCharacter(
  14944. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  14945. {
  14946. front: {
  14947. height: math.unit(5 + 6 / 12, "feet"),
  14948. weight: math.unit(200, "lb"),
  14949. name: "Front",
  14950. image: {
  14951. source: "./media/characters/vivian-bijoux/front.svg",
  14952. extra: 1217/1209,
  14953. bottom: 76/1293
  14954. }
  14955. },
  14956. back: {
  14957. height: math.unit(5 + 6 / 12, "feet"),
  14958. weight: math.unit(200, "lb"),
  14959. name: "Back",
  14960. image: {
  14961. source: "./media/characters/vivian-bijoux/back.svg",
  14962. extra: 1214/1208,
  14963. bottom: 51/1265
  14964. }
  14965. },
  14966. dressed: {
  14967. height: math.unit(5 + 6 / 12, "feet"),
  14968. weight: math.unit(200, "lb"),
  14969. name: "Dressed",
  14970. image: {
  14971. source: "./media/characters/vivian-bijoux/dressed.svg",
  14972. extra: 1217/1209,
  14973. bottom: 76/1293
  14974. }
  14975. },
  14976. },
  14977. [
  14978. {
  14979. name: "Normal",
  14980. height: math.unit(5 + 6 / 12, "feet"),
  14981. default: true
  14982. },
  14983. {
  14984. name: "Bad Dream",
  14985. height: math.unit(500, "feet")
  14986. },
  14987. {
  14988. name: "Nightmare",
  14989. height: math.unit(500, "miles")
  14990. },
  14991. ]
  14992. ))
  14993. characterMakers.push(() => makeCharacter(
  14994. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  14995. {
  14996. front: {
  14997. height: math.unit(6 + 1 / 12, "feet"),
  14998. weight: math.unit(260, "lb"),
  14999. name: "Front",
  15000. image: {
  15001. source: "./media/characters/zeta/front.svg",
  15002. extra: 1968 / 1889,
  15003. bottom: 0.06
  15004. }
  15005. },
  15006. back: {
  15007. height: math.unit(6 + 1 / 12, "feet"),
  15008. weight: math.unit(260, "lb"),
  15009. name: "Back",
  15010. image: {
  15011. source: "./media/characters/zeta/back.svg",
  15012. extra: 1944 / 1858,
  15013. bottom: 0.03
  15014. }
  15015. },
  15016. hand: {
  15017. height: math.unit(1.112, "feet"),
  15018. name: "Hand",
  15019. image: {
  15020. source: "./media/characters/zeta/hand.svg"
  15021. }
  15022. },
  15023. foot: {
  15024. height: math.unit(1.48, "feet"),
  15025. name: "Foot",
  15026. image: {
  15027. source: "./media/characters/zeta/foot.svg"
  15028. }
  15029. },
  15030. },
  15031. [
  15032. {
  15033. name: "Micro",
  15034. height: math.unit(6, "inches")
  15035. },
  15036. {
  15037. name: "Normal",
  15038. height: math.unit(6 + 1 / 12, "feet"),
  15039. default: true
  15040. },
  15041. {
  15042. name: "Macro",
  15043. height: math.unit(20, "feet")
  15044. },
  15045. ]
  15046. ))
  15047. characterMakers.push(() => makeCharacter(
  15048. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  15049. {
  15050. front: {
  15051. height: math.unit(6, "feet"),
  15052. weight: math.unit(150, "lb"),
  15053. name: "Front",
  15054. image: {
  15055. source: "./media/characters/jamie-larsen/front.svg",
  15056. extra: 962 / 933,
  15057. bottom: 0.02
  15058. }
  15059. },
  15060. back: {
  15061. height: math.unit(6, "feet"),
  15062. weight: math.unit(150, "lb"),
  15063. name: "Back",
  15064. image: {
  15065. source: "./media/characters/jamie-larsen/back.svg",
  15066. extra: 997 / 946
  15067. }
  15068. },
  15069. },
  15070. [
  15071. {
  15072. name: "Macro",
  15073. height: math.unit(28 + 7 / 12, "feet"),
  15074. default: true
  15075. },
  15076. {
  15077. name: "Macro+",
  15078. height: math.unit(180, "feet")
  15079. },
  15080. {
  15081. name: "Megamacro",
  15082. height: math.unit(10, "miles")
  15083. },
  15084. {
  15085. name: "Gigamacro",
  15086. height: math.unit(200000, "miles")
  15087. },
  15088. ]
  15089. ))
  15090. characterMakers.push(() => makeCharacter(
  15091. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15092. {
  15093. front: {
  15094. height: math.unit(6, "feet"),
  15095. weight: math.unit(120, "lb"),
  15096. name: "Front",
  15097. image: {
  15098. source: "./media/characters/vance/front.svg",
  15099. extra: 1980 / 1890,
  15100. bottom: 0.09
  15101. }
  15102. },
  15103. back: {
  15104. height: math.unit(6, "feet"),
  15105. weight: math.unit(120, "lb"),
  15106. name: "Back",
  15107. image: {
  15108. source: "./media/characters/vance/back.svg",
  15109. extra: 2081 / 1994,
  15110. bottom: 0.014
  15111. }
  15112. },
  15113. hand: {
  15114. height: math.unit(0.88, "feet"),
  15115. name: "Hand",
  15116. image: {
  15117. source: "./media/characters/vance/hand.svg"
  15118. }
  15119. },
  15120. foot: {
  15121. height: math.unit(0.64, "feet"),
  15122. name: "Foot",
  15123. image: {
  15124. source: "./media/characters/vance/foot.svg"
  15125. }
  15126. },
  15127. },
  15128. [
  15129. {
  15130. name: "Small",
  15131. height: math.unit(90, "feet"),
  15132. default: true
  15133. },
  15134. {
  15135. name: "Macro",
  15136. height: math.unit(100, "meters")
  15137. },
  15138. {
  15139. name: "Megamacro",
  15140. height: math.unit(15, "miles")
  15141. },
  15142. ]
  15143. ))
  15144. characterMakers.push(() => makeCharacter(
  15145. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  15146. {
  15147. front: {
  15148. height: math.unit(6, "feet"),
  15149. weight: math.unit(180, "lb"),
  15150. name: "Front",
  15151. image: {
  15152. source: "./media/characters/xochitl/front.svg",
  15153. extra: 2297 / 2261,
  15154. bottom: 0.065
  15155. }
  15156. },
  15157. back: {
  15158. height: math.unit(6, "feet"),
  15159. weight: math.unit(180, "lb"),
  15160. name: "Back",
  15161. image: {
  15162. source: "./media/characters/xochitl/back.svg",
  15163. extra: 2386 / 2354,
  15164. bottom: 0.01
  15165. }
  15166. },
  15167. foot: {
  15168. height: math.unit(6 / 5 * 1.15, "feet"),
  15169. weight: math.unit(150, "lb"),
  15170. name: "Foot",
  15171. image: {
  15172. source: "./media/characters/xochitl/foot.svg"
  15173. }
  15174. },
  15175. },
  15176. [
  15177. {
  15178. name: "Macro",
  15179. height: math.unit(80, "feet")
  15180. },
  15181. {
  15182. name: "Macro+",
  15183. height: math.unit(400, "feet"),
  15184. default: true
  15185. },
  15186. {
  15187. name: "Gigamacro",
  15188. height: math.unit(80000, "miles")
  15189. },
  15190. {
  15191. name: "Gigamacro+",
  15192. height: math.unit(400000, "miles")
  15193. },
  15194. {
  15195. name: "Teramacro",
  15196. height: math.unit(300, "AU")
  15197. },
  15198. ]
  15199. ))
  15200. characterMakers.push(() => makeCharacter(
  15201. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  15202. {
  15203. front: {
  15204. height: math.unit(6, "feet"),
  15205. weight: math.unit(150, "lb"),
  15206. name: "Front",
  15207. image: {
  15208. source: "./media/characters/vincent/front.svg",
  15209. extra: 1130 / 1080,
  15210. bottom: 0.055
  15211. }
  15212. },
  15213. beak: {
  15214. height: math.unit(6 * 0.1, "feet"),
  15215. name: "Beak",
  15216. image: {
  15217. source: "./media/characters/vincent/beak.svg"
  15218. }
  15219. },
  15220. hand: {
  15221. height: math.unit(6 * 0.85, "feet"),
  15222. weight: math.unit(150, "lb"),
  15223. name: "Hand",
  15224. image: {
  15225. source: "./media/characters/vincent/hand.svg"
  15226. }
  15227. },
  15228. foot: {
  15229. height: math.unit(6 * 0.19, "feet"),
  15230. weight: math.unit(150, "lb"),
  15231. name: "Foot",
  15232. image: {
  15233. source: "./media/characters/vincent/foot.svg"
  15234. }
  15235. },
  15236. },
  15237. [
  15238. {
  15239. name: "Base",
  15240. height: math.unit(6 + 5 / 12, "feet"),
  15241. default: true
  15242. },
  15243. {
  15244. name: "Macro",
  15245. height: math.unit(300, "feet")
  15246. },
  15247. {
  15248. name: "Megamacro",
  15249. height: math.unit(2, "miles")
  15250. },
  15251. {
  15252. name: "Gigamacro",
  15253. height: math.unit(1000, "miles")
  15254. },
  15255. ]
  15256. ))
  15257. characterMakers.push(() => makeCharacter(
  15258. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  15259. {
  15260. front: {
  15261. height: math.unit(2, "meters"),
  15262. weight: math.unit(500, "kg"),
  15263. name: "Front",
  15264. image: {
  15265. source: "./media/characters/coatl/front.svg",
  15266. extra: 3948 / 3500,
  15267. bottom: 0.082
  15268. }
  15269. },
  15270. },
  15271. [
  15272. {
  15273. name: "Normal",
  15274. height: math.unit(4, "meters")
  15275. },
  15276. {
  15277. name: "Macro",
  15278. height: math.unit(100, "meters"),
  15279. default: true
  15280. },
  15281. {
  15282. name: "Macro+",
  15283. height: math.unit(300, "meters")
  15284. },
  15285. {
  15286. name: "Megamacro",
  15287. height: math.unit(3, "gigameters")
  15288. },
  15289. {
  15290. name: "Megamacro+",
  15291. height: math.unit(300, "terameters")
  15292. },
  15293. {
  15294. name: "Megamacro++",
  15295. height: math.unit(3, "lightyears")
  15296. },
  15297. ]
  15298. ))
  15299. characterMakers.push(() => makeCharacter(
  15300. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  15301. {
  15302. front: {
  15303. height: math.unit(6, "feet"),
  15304. weight: math.unit(50, "kg"),
  15305. name: "front",
  15306. image: {
  15307. source: "./media/characters/shiroryu/front.svg",
  15308. extra: 1990 / 1935
  15309. }
  15310. },
  15311. },
  15312. [
  15313. {
  15314. name: "Mortal Mingling",
  15315. height: math.unit(3, "meters")
  15316. },
  15317. {
  15318. name: "Kaiju-ish",
  15319. height: math.unit(250, "meters")
  15320. },
  15321. {
  15322. name: "Somewhat Godly",
  15323. height: math.unit(400, "km"),
  15324. default: true
  15325. },
  15326. {
  15327. name: "Planetary",
  15328. height: math.unit(300, "megameters")
  15329. },
  15330. {
  15331. name: "Galaxy-dwarfing",
  15332. height: math.unit(450, "kiloparsecs")
  15333. },
  15334. {
  15335. name: "Universe Eater",
  15336. height: math.unit(150, "gigaparsecs")
  15337. },
  15338. {
  15339. name: "Almost Immeasurable",
  15340. height: math.unit(1.3e266, "yottaparsecs")
  15341. },
  15342. ]
  15343. ))
  15344. characterMakers.push(() => makeCharacter(
  15345. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  15346. {
  15347. front: {
  15348. height: math.unit(6, "feet"),
  15349. weight: math.unit(150, "lb"),
  15350. name: "Front",
  15351. image: {
  15352. source: "./media/characters/umeko/front.svg",
  15353. extra: 1,
  15354. bottom: 0.019
  15355. }
  15356. },
  15357. frontArmored: {
  15358. height: math.unit(6, "feet"),
  15359. weight: math.unit(150, "lb"),
  15360. name: "Front (Armored)",
  15361. image: {
  15362. source: "./media/characters/umeko/front-armored.svg",
  15363. extra: 1,
  15364. bottom: 0.021
  15365. }
  15366. },
  15367. },
  15368. [
  15369. {
  15370. name: "Macro",
  15371. height: math.unit(220, "feet"),
  15372. default: true
  15373. },
  15374. {
  15375. name: "Guardian Dragon",
  15376. height: math.unit(50, "miles")
  15377. },
  15378. {
  15379. name: "Cosmic",
  15380. height: math.unit(800000, "miles")
  15381. },
  15382. ]
  15383. ))
  15384. characterMakers.push(() => makeCharacter(
  15385. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  15386. {
  15387. front: {
  15388. height: math.unit(6, "feet"),
  15389. weight: math.unit(150, "lb"),
  15390. name: "Front",
  15391. image: {
  15392. source: "./media/characters/cassidy/front.svg",
  15393. extra: 810/808,
  15394. bottom: 41/851
  15395. }
  15396. },
  15397. },
  15398. [
  15399. {
  15400. name: "Canon Height",
  15401. height: math.unit(120, "feet"),
  15402. default: true
  15403. },
  15404. {
  15405. name: "Macro+",
  15406. height: math.unit(400, "feet")
  15407. },
  15408. {
  15409. name: "Macro++",
  15410. height: math.unit(4000, "feet")
  15411. },
  15412. {
  15413. name: "Megamacro",
  15414. height: math.unit(3, "miles")
  15415. },
  15416. ]
  15417. ))
  15418. characterMakers.push(() => makeCharacter(
  15419. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  15420. {
  15421. front: {
  15422. height: math.unit(6, "feet"),
  15423. weight: math.unit(150, "lb"),
  15424. name: "Front",
  15425. image: {
  15426. source: "./media/characters/isaac/front.svg",
  15427. extra: 896 / 815,
  15428. bottom: 0.11
  15429. }
  15430. },
  15431. },
  15432. [
  15433. {
  15434. name: "Human Size",
  15435. height: math.unit(8, "feet"),
  15436. default: true
  15437. },
  15438. {
  15439. name: "Macro",
  15440. height: math.unit(400, "feet")
  15441. },
  15442. {
  15443. name: "Megamacro",
  15444. height: math.unit(50, "miles")
  15445. },
  15446. {
  15447. name: "Canon Height",
  15448. height: math.unit(200, "AU")
  15449. },
  15450. ]
  15451. ))
  15452. characterMakers.push(() => makeCharacter(
  15453. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  15454. {
  15455. front: {
  15456. height: math.unit(6, "feet"),
  15457. weight: math.unit(72, "kg"),
  15458. name: "Front",
  15459. image: {
  15460. source: "./media/characters/sleekit/front.svg",
  15461. extra: 4693 / 4487,
  15462. bottom: 0.012
  15463. }
  15464. },
  15465. },
  15466. [
  15467. {
  15468. name: "Minimum Height",
  15469. height: math.unit(10, "meters")
  15470. },
  15471. {
  15472. name: "Smaller",
  15473. height: math.unit(25, "meters")
  15474. },
  15475. {
  15476. name: "Larger",
  15477. height: math.unit(38, "meters"),
  15478. default: true
  15479. },
  15480. {
  15481. name: "Maximum height",
  15482. height: math.unit(100, "meters")
  15483. },
  15484. ]
  15485. ))
  15486. characterMakers.push(() => makeCharacter(
  15487. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  15488. {
  15489. front: {
  15490. height: math.unit(6, "feet"),
  15491. weight: math.unit(150, "lb"),
  15492. name: "Front",
  15493. image: {
  15494. source: "./media/characters/nillia/front.svg",
  15495. extra: 2195 / 2037,
  15496. bottom: 0.005
  15497. }
  15498. },
  15499. back: {
  15500. height: math.unit(6, "feet"),
  15501. weight: math.unit(150, "lb"),
  15502. name: "Back",
  15503. image: {
  15504. source: "./media/characters/nillia/back.svg",
  15505. extra: 2195 / 2037,
  15506. bottom: 0.005
  15507. }
  15508. },
  15509. },
  15510. [
  15511. {
  15512. name: "Canon Height",
  15513. height: math.unit(489, "feet"),
  15514. default: true
  15515. }
  15516. ]
  15517. ))
  15518. characterMakers.push(() => makeCharacter(
  15519. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  15520. {
  15521. front: {
  15522. height: math.unit(6, "feet"),
  15523. weight: math.unit(150, "lb"),
  15524. name: "Front",
  15525. image: {
  15526. source: "./media/characters/mesmyriza/front.svg",
  15527. extra: 2067 / 1784,
  15528. bottom: 0.035
  15529. }
  15530. },
  15531. foot: {
  15532. height: math.unit(6 / (250 / 35), "feet"),
  15533. name: "Foot",
  15534. image: {
  15535. source: "./media/characters/mesmyriza/foot.svg"
  15536. }
  15537. },
  15538. },
  15539. [
  15540. {
  15541. name: "Macro",
  15542. height: math.unit(457, "meters"),
  15543. default: true
  15544. },
  15545. {
  15546. name: "Megamacro",
  15547. height: math.unit(8, "megameters")
  15548. },
  15549. ]
  15550. ))
  15551. characterMakers.push(() => makeCharacter(
  15552. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  15553. {
  15554. front: {
  15555. height: math.unit(6, "feet"),
  15556. weight: math.unit(250, "lb"),
  15557. name: "Front",
  15558. image: {
  15559. source: "./media/characters/saudade/front.svg",
  15560. extra: 1172 / 1139,
  15561. bottom: 0.035
  15562. }
  15563. },
  15564. },
  15565. [
  15566. {
  15567. name: "Micro",
  15568. height: math.unit(3, "inches")
  15569. },
  15570. {
  15571. name: "Normal",
  15572. height: math.unit(6, "feet"),
  15573. default: true
  15574. },
  15575. {
  15576. name: "Macro",
  15577. height: math.unit(50, "feet")
  15578. },
  15579. {
  15580. name: "Megamacro",
  15581. height: math.unit(2800, "feet")
  15582. },
  15583. ]
  15584. ))
  15585. characterMakers.push(() => makeCharacter(
  15586. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15587. {
  15588. front: {
  15589. height: math.unit(5 + 4 / 12, "feet"),
  15590. weight: math.unit(100, "lb"),
  15591. name: "Front",
  15592. image: {
  15593. source: "./media/characters/keireer/front.svg",
  15594. extra: 716 / 666,
  15595. bottom: 0.05
  15596. }
  15597. },
  15598. },
  15599. [
  15600. {
  15601. name: "Normal",
  15602. height: math.unit(5 + 4 / 12, "feet"),
  15603. default: true
  15604. },
  15605. ]
  15606. ))
  15607. characterMakers.push(() => makeCharacter(
  15608. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15609. {
  15610. front: {
  15611. height: math.unit(5.5, "feet"),
  15612. weight: math.unit(90, "kg"),
  15613. name: "Front",
  15614. image: {
  15615. source: "./media/characters/mirja/front.svg",
  15616. extra: 1452/1262,
  15617. bottom: 67/1519
  15618. }
  15619. },
  15620. frontDressed: {
  15621. height: math.unit(5.5, "feet"),
  15622. weight: math.unit(90, "lb"),
  15623. name: "Front (Dressed)",
  15624. image: {
  15625. source: "./media/characters/mirja/dressed.svg",
  15626. extra: 1452/1262,
  15627. bottom: 67/1519
  15628. }
  15629. },
  15630. back: {
  15631. height: math.unit(6, "feet"),
  15632. weight: math.unit(90, "lb"),
  15633. name: "Back",
  15634. image: {
  15635. source: "./media/characters/mirja/back.svg",
  15636. extra: 1892/1795,
  15637. bottom: 48/1940
  15638. }
  15639. },
  15640. maw: {
  15641. height: math.unit(1.312, "feet"),
  15642. name: "Maw",
  15643. image: {
  15644. source: "./media/characters/mirja/maw.svg"
  15645. }
  15646. },
  15647. paw: {
  15648. height: math.unit(1.15, "feet"),
  15649. name: "Paw",
  15650. image: {
  15651. source: "./media/characters/mirja/paw.svg"
  15652. }
  15653. },
  15654. },
  15655. [
  15656. {
  15657. name: "\"Incognito\"",
  15658. height: math.unit(3, "meters")
  15659. },
  15660. {
  15661. name: "Strolling Size",
  15662. height: math.unit(15, "km")
  15663. },
  15664. {
  15665. name: "Larger Strolling Size",
  15666. height: math.unit(400, "km")
  15667. },
  15668. {
  15669. name: "Preferred Size",
  15670. height: math.unit(5000, "km"),
  15671. default: true
  15672. },
  15673. {
  15674. name: "True Size",
  15675. height: math.unit(30657809462086840000000000000000, "parsecs"),
  15676. },
  15677. ]
  15678. ))
  15679. characterMakers.push(() => makeCharacter(
  15680. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  15681. {
  15682. front: {
  15683. height: math.unit(15, "feet"),
  15684. weight: math.unit(880, "kg"),
  15685. name: "Front",
  15686. image: {
  15687. source: "./media/characters/nightraver/front.svg",
  15688. extra: 2444 / 2160,
  15689. bottom: 0.027
  15690. }
  15691. },
  15692. back: {
  15693. height: math.unit(15, "feet"),
  15694. weight: math.unit(880, "kg"),
  15695. name: "Back",
  15696. image: {
  15697. source: "./media/characters/nightraver/back.svg",
  15698. extra: 2309 / 2180,
  15699. bottom: 0.005
  15700. }
  15701. },
  15702. sole: {
  15703. height: math.unit(2.878, "feet"),
  15704. name: "Sole",
  15705. image: {
  15706. source: "./media/characters/nightraver/sole.svg"
  15707. }
  15708. },
  15709. foot: {
  15710. height: math.unit(2.285, "feet"),
  15711. name: "Foot",
  15712. image: {
  15713. source: "./media/characters/nightraver/foot.svg"
  15714. }
  15715. },
  15716. maw: {
  15717. height: math.unit(2.67, "feet"),
  15718. name: "Maw",
  15719. image: {
  15720. source: "./media/characters/nightraver/maw.svg"
  15721. }
  15722. },
  15723. },
  15724. [
  15725. {
  15726. name: "Micro",
  15727. height: math.unit(1, "cm")
  15728. },
  15729. {
  15730. name: "Normal",
  15731. height: math.unit(15, "feet"),
  15732. default: true
  15733. },
  15734. {
  15735. name: "Macro",
  15736. height: math.unit(300, "feet")
  15737. },
  15738. {
  15739. name: "Megamacro",
  15740. height: math.unit(300, "miles")
  15741. },
  15742. {
  15743. name: "Gigamacro",
  15744. height: math.unit(10000, "miles")
  15745. },
  15746. ]
  15747. ))
  15748. characterMakers.push(() => makeCharacter(
  15749. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  15750. {
  15751. side: {
  15752. height: math.unit(2, "inches"),
  15753. weight: math.unit(5, "grams"),
  15754. name: "Side",
  15755. image: {
  15756. source: "./media/characters/arc/side.svg"
  15757. }
  15758. },
  15759. },
  15760. [
  15761. {
  15762. name: "Micro",
  15763. height: math.unit(2, "inches"),
  15764. default: true
  15765. },
  15766. ]
  15767. ))
  15768. characterMakers.push(() => makeCharacter(
  15769. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  15770. {
  15771. front: {
  15772. height: math.unit(1.1938, "meters"),
  15773. weight: math.unit(54, "kg"),
  15774. name: "Front",
  15775. image: {
  15776. source: "./media/characters/nebula-shahar/front.svg",
  15777. extra: 1642 / 1436,
  15778. bottom: 0.06
  15779. }
  15780. },
  15781. },
  15782. [
  15783. {
  15784. name: "Megamicro",
  15785. height: math.unit(0.3, "mm")
  15786. },
  15787. {
  15788. name: "Micro",
  15789. height: math.unit(3, "cm")
  15790. },
  15791. {
  15792. name: "Normal",
  15793. height: math.unit(138, "cm"),
  15794. default: true
  15795. },
  15796. {
  15797. name: "Macro",
  15798. height: math.unit(30, "m")
  15799. },
  15800. ]
  15801. ))
  15802. characterMakers.push(() => makeCharacter(
  15803. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  15804. {
  15805. front: {
  15806. height: math.unit(5.24, "feet"),
  15807. weight: math.unit(150, "lb"),
  15808. name: "Front",
  15809. image: {
  15810. source: "./media/characters/shayla/front.svg",
  15811. extra: 1512 / 1414,
  15812. bottom: 0.01
  15813. }
  15814. },
  15815. back: {
  15816. height: math.unit(5.24, "feet"),
  15817. weight: math.unit(150, "lb"),
  15818. name: "Back",
  15819. image: {
  15820. source: "./media/characters/shayla/back.svg",
  15821. extra: 1512 / 1414
  15822. }
  15823. },
  15824. hand: {
  15825. height: math.unit(0.7781496062992126, "feet"),
  15826. name: "Hand",
  15827. image: {
  15828. source: "./media/characters/shayla/hand.svg"
  15829. }
  15830. },
  15831. foot: {
  15832. height: math.unit(1.4206036745406823, "feet"),
  15833. name: "Foot",
  15834. image: {
  15835. source: "./media/characters/shayla/foot.svg"
  15836. }
  15837. },
  15838. },
  15839. [
  15840. {
  15841. name: "Micro",
  15842. height: math.unit(0.32, "feet")
  15843. },
  15844. {
  15845. name: "Normal",
  15846. height: math.unit(5.24, "feet"),
  15847. default: true
  15848. },
  15849. {
  15850. name: "Macro",
  15851. height: math.unit(492.12, "feet")
  15852. },
  15853. {
  15854. name: "Megamacro",
  15855. height: math.unit(186.41, "miles")
  15856. },
  15857. ]
  15858. ))
  15859. characterMakers.push(() => makeCharacter(
  15860. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  15861. {
  15862. front: {
  15863. height: math.unit(2.2, "m"),
  15864. weight: math.unit(120, "kg"),
  15865. name: "Front",
  15866. image: {
  15867. source: "./media/characters/pia-jr/front.svg",
  15868. extra: 1000 / 970,
  15869. bottom: 0.035
  15870. }
  15871. },
  15872. hand: {
  15873. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15874. name: "Hand",
  15875. image: {
  15876. source: "./media/characters/pia-jr/hand.svg"
  15877. }
  15878. },
  15879. paw: {
  15880. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15881. name: "Paw",
  15882. image: {
  15883. source: "./media/characters/pia-jr/paw.svg"
  15884. }
  15885. },
  15886. },
  15887. [
  15888. {
  15889. name: "Micro",
  15890. height: math.unit(1.2, "cm")
  15891. },
  15892. {
  15893. name: "Normal",
  15894. height: math.unit(2.2, "m"),
  15895. default: true
  15896. },
  15897. {
  15898. name: "Macro",
  15899. height: math.unit(180, "m")
  15900. },
  15901. {
  15902. name: "Megamacro",
  15903. height: math.unit(420, "km")
  15904. },
  15905. ]
  15906. ))
  15907. characterMakers.push(() => makeCharacter(
  15908. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15909. {
  15910. front: {
  15911. height: math.unit(2, "m"),
  15912. weight: math.unit(115, "kg"),
  15913. name: "Front",
  15914. image: {
  15915. source: "./media/characters/pia-sr/front.svg",
  15916. extra: 760 / 730,
  15917. bottom: 0.015
  15918. }
  15919. },
  15920. back: {
  15921. height: math.unit(2, "m"),
  15922. weight: math.unit(115, "kg"),
  15923. name: "Back",
  15924. image: {
  15925. source: "./media/characters/pia-sr/back.svg",
  15926. extra: 760 / 730,
  15927. bottom: 0.01
  15928. }
  15929. },
  15930. hand: {
  15931. height: math.unit(0.89 * 6.56 / 6, "feet"),
  15932. name: "Hand",
  15933. image: {
  15934. source: "./media/characters/pia-sr/hand.svg"
  15935. }
  15936. },
  15937. foot: {
  15938. height: math.unit(1.83, "feet"),
  15939. name: "Foot",
  15940. image: {
  15941. source: "./media/characters/pia-sr/foot.svg"
  15942. }
  15943. },
  15944. },
  15945. [
  15946. {
  15947. name: "Micro",
  15948. height: math.unit(88, "mm")
  15949. },
  15950. {
  15951. name: "Normal",
  15952. height: math.unit(2, "m"),
  15953. default: true
  15954. },
  15955. {
  15956. name: "Macro",
  15957. height: math.unit(200, "m")
  15958. },
  15959. {
  15960. name: "Megamacro",
  15961. height: math.unit(420, "km")
  15962. },
  15963. ]
  15964. ))
  15965. characterMakers.push(() => makeCharacter(
  15966. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  15967. {
  15968. front: {
  15969. height: math.unit(8 + 2 / 12, "feet"),
  15970. weight: math.unit(300, "lb"),
  15971. name: "Front",
  15972. image: {
  15973. source: "./media/characters/kibibyte/front.svg",
  15974. extra: 2221 / 2098,
  15975. bottom: 0.04
  15976. }
  15977. },
  15978. },
  15979. [
  15980. {
  15981. name: "Normal",
  15982. height: math.unit(8 + 2 / 12, "feet"),
  15983. default: true
  15984. },
  15985. {
  15986. name: "Socialable Macro",
  15987. height: math.unit(50, "feet")
  15988. },
  15989. {
  15990. name: "Macro",
  15991. height: math.unit(300, "feet")
  15992. },
  15993. {
  15994. name: "Megamacro",
  15995. height: math.unit(500, "miles")
  15996. },
  15997. ]
  15998. ))
  15999. characterMakers.push(() => makeCharacter(
  16000. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  16001. {
  16002. front: {
  16003. height: math.unit(6, "feet"),
  16004. weight: math.unit(150, "lb"),
  16005. name: "Front",
  16006. image: {
  16007. source: "./media/characters/felix/front.svg",
  16008. extra: 762 / 722,
  16009. bottom: 0.02
  16010. }
  16011. },
  16012. frontClothed: {
  16013. height: math.unit(6, "feet"),
  16014. weight: math.unit(150, "lb"),
  16015. name: "Front (Clothed)",
  16016. image: {
  16017. source: "./media/characters/felix/front-clothed.svg",
  16018. extra: 762 / 722,
  16019. bottom: 0.02
  16020. }
  16021. },
  16022. },
  16023. [
  16024. {
  16025. name: "Normal",
  16026. height: math.unit(6 + 8 / 12, "feet"),
  16027. default: true
  16028. },
  16029. {
  16030. name: "Macro",
  16031. height: math.unit(2600, "feet")
  16032. },
  16033. {
  16034. name: "Megamacro",
  16035. height: math.unit(450, "miles")
  16036. },
  16037. ]
  16038. ))
  16039. characterMakers.push(() => makeCharacter(
  16040. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  16041. {
  16042. front: {
  16043. height: math.unit(6 + 1 / 12, "feet"),
  16044. weight: math.unit(250, "lb"),
  16045. name: "Front",
  16046. image: {
  16047. source: "./media/characters/tobo/front.svg",
  16048. extra: 608 / 586,
  16049. bottom: 0.023
  16050. }
  16051. },
  16052. back: {
  16053. height: math.unit(6 + 1 / 12, "feet"),
  16054. weight: math.unit(250, "lb"),
  16055. name: "Back",
  16056. image: {
  16057. source: "./media/characters/tobo/back.svg",
  16058. extra: 608 / 586
  16059. }
  16060. },
  16061. },
  16062. [
  16063. {
  16064. name: "Nano",
  16065. height: math.unit(2, "nm")
  16066. },
  16067. {
  16068. name: "Megamicro",
  16069. height: math.unit(0.1, "mm")
  16070. },
  16071. {
  16072. name: "Micro",
  16073. height: math.unit(1, "inch"),
  16074. default: true
  16075. },
  16076. {
  16077. name: "Human-sized",
  16078. height: math.unit(6 + 1 / 12, "feet")
  16079. },
  16080. {
  16081. name: "Macro",
  16082. height: math.unit(250, "feet")
  16083. },
  16084. {
  16085. name: "Megamacro",
  16086. height: math.unit(75, "miles")
  16087. },
  16088. {
  16089. name: "Texas-sized",
  16090. height: math.unit(750, "miles")
  16091. },
  16092. {
  16093. name: "Teramacro",
  16094. height: math.unit(50000, "miles")
  16095. },
  16096. ]
  16097. ))
  16098. characterMakers.push(() => makeCharacter(
  16099. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  16100. {
  16101. front: {
  16102. height: math.unit(6, "feet"),
  16103. weight: math.unit(269, "lb"),
  16104. name: "Front",
  16105. image: {
  16106. source: "./media/characters/danny-kapowsky/front.svg",
  16107. extra: 766 / 736,
  16108. bottom: 0.044
  16109. }
  16110. },
  16111. back: {
  16112. height: math.unit(6, "feet"),
  16113. weight: math.unit(269, "lb"),
  16114. name: "Back",
  16115. image: {
  16116. source: "./media/characters/danny-kapowsky/back.svg",
  16117. extra: 797 / 760,
  16118. bottom: 0.025
  16119. }
  16120. },
  16121. },
  16122. [
  16123. {
  16124. name: "Macro",
  16125. height: math.unit(150, "feet"),
  16126. default: true
  16127. },
  16128. {
  16129. name: "Macro+",
  16130. height: math.unit(200, "feet")
  16131. },
  16132. {
  16133. name: "Macro++",
  16134. height: math.unit(300, "feet")
  16135. },
  16136. {
  16137. name: "Macro+++",
  16138. height: math.unit(400, "feet")
  16139. },
  16140. ]
  16141. ))
  16142. characterMakers.push(() => makeCharacter(
  16143. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  16144. {
  16145. side: {
  16146. height: math.unit(6, "feet"),
  16147. weight: math.unit(170, "lb"),
  16148. name: "Side",
  16149. image: {
  16150. source: "./media/characters/finn/side.svg",
  16151. extra: 1953 / 1807,
  16152. bottom: 0.057
  16153. }
  16154. },
  16155. },
  16156. [
  16157. {
  16158. name: "Megamacro",
  16159. height: math.unit(14445, "feet"),
  16160. default: true
  16161. },
  16162. ]
  16163. ))
  16164. characterMakers.push(() => makeCharacter(
  16165. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  16166. {
  16167. front: {
  16168. height: math.unit(5 + 6 / 12, "feet"),
  16169. weight: math.unit(125, "lb"),
  16170. name: "Front",
  16171. image: {
  16172. source: "./media/characters/roy/front.svg",
  16173. extra: 1,
  16174. bottom: 0.11
  16175. }
  16176. },
  16177. },
  16178. [
  16179. {
  16180. name: "Micro",
  16181. height: math.unit(3, "inches"),
  16182. default: true
  16183. },
  16184. {
  16185. name: "Normal",
  16186. height: math.unit(5 + 6 / 12, "feet")
  16187. },
  16188. {
  16189. name: "Lesser Macro",
  16190. height: math.unit(60, "feet")
  16191. },
  16192. {
  16193. name: "Greater Macro",
  16194. height: math.unit(120, "feet")
  16195. },
  16196. ]
  16197. ))
  16198. characterMakers.push(() => makeCharacter(
  16199. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  16200. {
  16201. front: {
  16202. height: math.unit(6, "feet"),
  16203. weight: math.unit(100, "lb"),
  16204. name: "Front",
  16205. image: {
  16206. source: "./media/characters/aevsivs/front.svg",
  16207. extra: 1,
  16208. bottom: 0.03
  16209. }
  16210. },
  16211. back: {
  16212. height: math.unit(6, "feet"),
  16213. weight: math.unit(100, "lb"),
  16214. name: "Back",
  16215. image: {
  16216. source: "./media/characters/aevsivs/back.svg"
  16217. }
  16218. },
  16219. },
  16220. [
  16221. {
  16222. name: "Micro",
  16223. height: math.unit(2, "inches"),
  16224. default: true
  16225. },
  16226. {
  16227. name: "Normal",
  16228. height: math.unit(5, "feet")
  16229. },
  16230. ]
  16231. ))
  16232. characterMakers.push(() => makeCharacter(
  16233. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  16234. {
  16235. front: {
  16236. height: math.unit(5 + 7 / 12, "feet"),
  16237. weight: math.unit(159, "lb"),
  16238. name: "Front",
  16239. image: {
  16240. source: "./media/characters/hildegard/front.svg",
  16241. extra: 289 / 269,
  16242. bottom: 7.63 / 297.8
  16243. }
  16244. },
  16245. back: {
  16246. height: math.unit(5 + 7 / 12, "feet"),
  16247. weight: math.unit(159, "lb"),
  16248. name: "Back",
  16249. image: {
  16250. source: "./media/characters/hildegard/back.svg",
  16251. extra: 280 / 260,
  16252. bottom: 2.3 / 282
  16253. }
  16254. },
  16255. },
  16256. [
  16257. {
  16258. name: "Normal",
  16259. height: math.unit(5 + 7 / 12, "feet"),
  16260. default: true
  16261. },
  16262. ]
  16263. ))
  16264. characterMakers.push(() => makeCharacter(
  16265. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  16266. {
  16267. bernard: {
  16268. height: math.unit(2 + 7 / 12, "feet"),
  16269. weight: math.unit(66, "lb"),
  16270. name: "Bernard",
  16271. rename: true,
  16272. image: {
  16273. source: "./media/characters/bernard-wilder/bernard.svg",
  16274. extra: 192 / 128,
  16275. bottom: 0.05
  16276. }
  16277. },
  16278. wilder: {
  16279. height: math.unit(5 + 8 / 12, "feet"),
  16280. weight: math.unit(143, "lb"),
  16281. name: "Wilder",
  16282. rename: true,
  16283. image: {
  16284. source: "./media/characters/bernard-wilder/wilder.svg",
  16285. extra: 361 / 312,
  16286. bottom: 0.02
  16287. }
  16288. },
  16289. },
  16290. [
  16291. {
  16292. name: "Normal",
  16293. height: math.unit(2 + 7 / 12, "feet"),
  16294. default: true
  16295. },
  16296. ]
  16297. ))
  16298. characterMakers.push(() => makeCharacter(
  16299. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  16300. {
  16301. anthro: {
  16302. height: math.unit(6 + 1 / 12, "feet"),
  16303. weight: math.unit(155, "lb"),
  16304. name: "Anthro",
  16305. image: {
  16306. source: "./media/characters/hearth/anthro.svg",
  16307. extra: 1178/1136,
  16308. bottom: 28/1206
  16309. }
  16310. },
  16311. feral: {
  16312. height: math.unit(3.78, "feet"),
  16313. weight: math.unit(35, "kg"),
  16314. name: "Feral",
  16315. image: {
  16316. source: "./media/characters/hearth/feral.svg",
  16317. extra: 153 / 135,
  16318. bottom: 0.03
  16319. }
  16320. },
  16321. },
  16322. [
  16323. {
  16324. name: "Normal",
  16325. height: math.unit(6 + 1 / 12, "feet"),
  16326. default: true
  16327. },
  16328. ]
  16329. ))
  16330. characterMakers.push(() => makeCharacter(
  16331. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  16332. {
  16333. front: {
  16334. height: math.unit(6, "feet"),
  16335. weight: math.unit(182, "lb"),
  16336. name: "Front",
  16337. image: {
  16338. source: "./media/characters/ingrid/front.svg",
  16339. extra: 294 / 268,
  16340. bottom: 0.027
  16341. }
  16342. },
  16343. },
  16344. [
  16345. {
  16346. name: "Normal",
  16347. height: math.unit(6, "feet"),
  16348. default: true
  16349. },
  16350. ]
  16351. ))
  16352. characterMakers.push(() => makeCharacter(
  16353. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  16354. {
  16355. eevee: {
  16356. height: math.unit(2 + 10 / 12, "feet"),
  16357. weight: math.unit(86, "lb"),
  16358. name: "Malgam",
  16359. image: {
  16360. source: "./media/characters/malgam/eevee.svg",
  16361. extra: 952/784,
  16362. bottom: 38/990
  16363. }
  16364. },
  16365. sylveon: {
  16366. height: math.unit(4, "feet"),
  16367. weight: math.unit(101, "lb"),
  16368. name: "Future Malgam",
  16369. rename: true,
  16370. image: {
  16371. source: "./media/characters/malgam/sylveon.svg",
  16372. extra: 371 / 325,
  16373. bottom: 0.015
  16374. }
  16375. },
  16376. gigantamax: {
  16377. height: math.unit(50, "feet"),
  16378. name: "Gigantamax Malgam",
  16379. rename: true,
  16380. image: {
  16381. source: "./media/characters/malgam/gigantamax.svg"
  16382. }
  16383. },
  16384. },
  16385. [
  16386. {
  16387. name: "Normal",
  16388. height: math.unit(2 + 10 / 12, "feet"),
  16389. default: true
  16390. },
  16391. ]
  16392. ))
  16393. characterMakers.push(() => makeCharacter(
  16394. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  16395. {
  16396. front: {
  16397. height: math.unit(5 + 11 / 12, "feet"),
  16398. weight: math.unit(188, "lb"),
  16399. name: "Front",
  16400. image: {
  16401. source: "./media/characters/fleur/front.svg",
  16402. extra: 309 / 283,
  16403. bottom: 0.007
  16404. }
  16405. },
  16406. },
  16407. [
  16408. {
  16409. name: "Normal",
  16410. height: math.unit(5 + 11 / 12, "feet"),
  16411. default: true
  16412. },
  16413. ]
  16414. ))
  16415. characterMakers.push(() => makeCharacter(
  16416. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  16417. {
  16418. front: {
  16419. height: math.unit(5 + 4 / 12, "feet"),
  16420. weight: math.unit(122, "lb"),
  16421. name: "Front",
  16422. image: {
  16423. source: "./media/characters/jude/front.svg",
  16424. extra: 288 / 273,
  16425. bottom: 0.03
  16426. }
  16427. },
  16428. },
  16429. [
  16430. {
  16431. name: "Normal",
  16432. height: math.unit(5 + 4 / 12, "feet"),
  16433. default: true
  16434. },
  16435. ]
  16436. ))
  16437. characterMakers.push(() => makeCharacter(
  16438. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  16439. {
  16440. front: {
  16441. height: math.unit(5 + 11 / 12, "feet"),
  16442. weight: math.unit(190, "lb"),
  16443. name: "Front",
  16444. image: {
  16445. source: "./media/characters/seara/front.svg",
  16446. extra: 1,
  16447. bottom: 0.05
  16448. }
  16449. },
  16450. },
  16451. [
  16452. {
  16453. name: "Normal",
  16454. height: math.unit(5 + 11 / 12, "feet"),
  16455. default: true
  16456. },
  16457. ]
  16458. ))
  16459. characterMakers.push(() => makeCharacter(
  16460. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  16461. {
  16462. front: {
  16463. height: math.unit(16 + 5 / 12, "feet"),
  16464. weight: math.unit(524, "lb"),
  16465. name: "Front",
  16466. image: {
  16467. source: "./media/characters/caspian-lugia/front.svg",
  16468. extra: 1,
  16469. bottom: 0.04
  16470. }
  16471. },
  16472. },
  16473. [
  16474. {
  16475. name: "Normal",
  16476. height: math.unit(16 + 5 / 12, "feet"),
  16477. default: true
  16478. },
  16479. ]
  16480. ))
  16481. characterMakers.push(() => makeCharacter(
  16482. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  16483. {
  16484. front: {
  16485. height: math.unit(5 + 7 / 12, "feet"),
  16486. weight: math.unit(170, "lb"),
  16487. name: "Front",
  16488. image: {
  16489. source: "./media/characters/mika/front.svg",
  16490. extra: 1,
  16491. bottom: 0.016
  16492. }
  16493. },
  16494. },
  16495. [
  16496. {
  16497. name: "Normal",
  16498. height: math.unit(5 + 7 / 12, "feet"),
  16499. default: true
  16500. },
  16501. ]
  16502. ))
  16503. characterMakers.push(() => makeCharacter(
  16504. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  16505. {
  16506. front: {
  16507. height: math.unit(6 + 2 / 12, "feet"),
  16508. weight: math.unit(268, "lb"),
  16509. name: "Front",
  16510. image: {
  16511. source: "./media/characters/sol/front.svg",
  16512. extra: 247 / 231,
  16513. bottom: 0.05
  16514. }
  16515. },
  16516. },
  16517. [
  16518. {
  16519. name: "Normal",
  16520. height: math.unit(6 + 2 / 12, "feet"),
  16521. default: true
  16522. },
  16523. ]
  16524. ))
  16525. characterMakers.push(() => makeCharacter(
  16526. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  16527. {
  16528. buizel: {
  16529. height: math.unit(2 + 5 / 12, "feet"),
  16530. weight: math.unit(87, "lb"),
  16531. name: "Front",
  16532. image: {
  16533. source: "./media/characters/umiko/buizel.svg",
  16534. extra: 172 / 157,
  16535. bottom: 0.01
  16536. },
  16537. form: "buizel",
  16538. default: true
  16539. },
  16540. floatzel: {
  16541. height: math.unit(5 + 9 / 12, "feet"),
  16542. weight: math.unit(250, "lb"),
  16543. name: "Front",
  16544. image: {
  16545. source: "./media/characters/umiko/floatzel.svg",
  16546. extra: 1076/1006,
  16547. bottom: 15/1091
  16548. },
  16549. form: "floatzel",
  16550. default: true
  16551. },
  16552. },
  16553. [
  16554. {
  16555. name: "Normal",
  16556. height: math.unit(2 + 5 / 12, "feet"),
  16557. form: "buizel",
  16558. default: true
  16559. },
  16560. {
  16561. name: "Normal",
  16562. height: math.unit(5 + 9 / 12, "feet"),
  16563. form: "floatzel",
  16564. default: true
  16565. },
  16566. ],
  16567. {
  16568. "buizel": {
  16569. name: "Buizel"
  16570. },
  16571. "floatzel": {
  16572. name: "Floatzel",
  16573. default: true
  16574. }
  16575. }
  16576. ))
  16577. characterMakers.push(() => makeCharacter(
  16578. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  16579. {
  16580. front: {
  16581. height: math.unit(6 + 2 / 12, "feet"),
  16582. weight: math.unit(146, "lb"),
  16583. name: "Front",
  16584. image: {
  16585. source: "./media/characters/iliac/front.svg",
  16586. extra: 389 / 365,
  16587. bottom: 0.035
  16588. }
  16589. },
  16590. },
  16591. [
  16592. {
  16593. name: "Normal",
  16594. height: math.unit(6 + 2 / 12, "feet"),
  16595. default: true
  16596. },
  16597. ]
  16598. ))
  16599. characterMakers.push(() => makeCharacter(
  16600. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16601. {
  16602. front: {
  16603. height: math.unit(6, "feet"),
  16604. weight: math.unit(170, "lb"),
  16605. name: "Front",
  16606. image: {
  16607. source: "./media/characters/topaz/front.svg",
  16608. extra: 317 / 303,
  16609. bottom: 0.055
  16610. }
  16611. },
  16612. },
  16613. [
  16614. {
  16615. name: "Normal",
  16616. height: math.unit(6, "feet"),
  16617. default: true
  16618. },
  16619. ]
  16620. ))
  16621. characterMakers.push(() => makeCharacter(
  16622. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  16623. {
  16624. front: {
  16625. height: math.unit(5 + 11 / 12, "feet"),
  16626. weight: math.unit(144, "lb"),
  16627. name: "Front",
  16628. image: {
  16629. source: "./media/characters/gabriel/front.svg",
  16630. extra: 285 / 262,
  16631. bottom: 0.004
  16632. }
  16633. },
  16634. },
  16635. [
  16636. {
  16637. name: "Normal",
  16638. height: math.unit(5 + 11 / 12, "feet"),
  16639. default: true
  16640. },
  16641. ]
  16642. ))
  16643. characterMakers.push(() => makeCharacter(
  16644. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  16645. {
  16646. side: {
  16647. height: math.unit(6 + 5 / 12, "feet"),
  16648. weight: math.unit(300, "lb"),
  16649. name: "Side",
  16650. image: {
  16651. source: "./media/characters/tempest-suicune/side.svg",
  16652. extra: 195 / 154,
  16653. bottom: 0.04
  16654. }
  16655. },
  16656. },
  16657. [
  16658. {
  16659. name: "Normal",
  16660. height: math.unit(6 + 5 / 12, "feet"),
  16661. default: true
  16662. },
  16663. ]
  16664. ))
  16665. characterMakers.push(() => makeCharacter(
  16666. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  16667. {
  16668. front: {
  16669. height: math.unit(7 + 2 / 12, "feet"),
  16670. weight: math.unit(322, "lb"),
  16671. name: "Front",
  16672. image: {
  16673. source: "./media/characters/vulcan/front.svg",
  16674. extra: 154 / 147,
  16675. bottom: 0.04
  16676. }
  16677. },
  16678. },
  16679. [
  16680. {
  16681. name: "Normal",
  16682. height: math.unit(7 + 2 / 12, "feet"),
  16683. default: true
  16684. },
  16685. ]
  16686. ))
  16687. characterMakers.push(() => makeCharacter(
  16688. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  16689. {
  16690. front: {
  16691. height: math.unit(5 + 10 / 12, "feet"),
  16692. weight: math.unit(264, "lb"),
  16693. name: "Front",
  16694. image: {
  16695. source: "./media/characters/gault/front.svg",
  16696. extra: 161 / 140,
  16697. bottom: 0.028
  16698. }
  16699. },
  16700. },
  16701. [
  16702. {
  16703. name: "Normal",
  16704. height: math.unit(5 + 10 / 12, "feet"),
  16705. default: true
  16706. },
  16707. ]
  16708. ))
  16709. characterMakers.push(() => makeCharacter(
  16710. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  16711. {
  16712. front: {
  16713. height: math.unit(6, "feet"),
  16714. weight: math.unit(150, "lb"),
  16715. name: "Front",
  16716. image: {
  16717. source: "./media/characters/shard/front.svg",
  16718. extra: 273 / 238,
  16719. bottom: 0.02
  16720. }
  16721. },
  16722. },
  16723. [
  16724. {
  16725. name: "Normal",
  16726. height: math.unit(3 + 6 / 12, "feet"),
  16727. default: true
  16728. },
  16729. ]
  16730. ))
  16731. characterMakers.push(() => makeCharacter(
  16732. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  16733. {
  16734. front: {
  16735. height: math.unit(5 + 11 / 12, "feet"),
  16736. weight: math.unit(146, "lb"),
  16737. name: "Front",
  16738. image: {
  16739. source: "./media/characters/ashe/front.svg",
  16740. extra: 400 / 373,
  16741. bottom: 0.01
  16742. }
  16743. },
  16744. },
  16745. [
  16746. {
  16747. name: "Normal",
  16748. height: math.unit(5 + 11 / 12, "feet"),
  16749. default: true
  16750. },
  16751. ]
  16752. ))
  16753. characterMakers.push(() => makeCharacter(
  16754. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  16755. {
  16756. front: {
  16757. height: math.unit(5 + 5 / 12, "feet"),
  16758. weight: math.unit(135, "lb"),
  16759. name: "Front",
  16760. image: {
  16761. source: "./media/characters/beatrix/front.svg",
  16762. extra: 392 / 379,
  16763. bottom: 0.01
  16764. }
  16765. },
  16766. },
  16767. [
  16768. {
  16769. name: "Normal",
  16770. height: math.unit(6, "feet"),
  16771. default: true
  16772. },
  16773. ]
  16774. ))
  16775. characterMakers.push(() => makeCharacter(
  16776. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  16777. {
  16778. front: {
  16779. height: math.unit(6 + 2/12, "feet"),
  16780. weight: math.unit(135, "lb"),
  16781. name: "Front",
  16782. image: {
  16783. source: "./media/characters/ignatius/front.svg",
  16784. extra: 1380/1259,
  16785. bottom: 27/1407
  16786. }
  16787. },
  16788. },
  16789. [
  16790. {
  16791. name: "Normal",
  16792. height: math.unit(6 + 2/12, "feet"),
  16793. default: true
  16794. },
  16795. ]
  16796. ))
  16797. characterMakers.push(() => makeCharacter(
  16798. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  16799. {
  16800. front: {
  16801. height: math.unit(6 + 2 / 12, "feet"),
  16802. weight: math.unit(138, "lb"),
  16803. name: "Front",
  16804. image: {
  16805. source: "./media/characters/mei-li/front.svg",
  16806. extra: 237 / 229,
  16807. bottom: 0.03
  16808. }
  16809. },
  16810. },
  16811. [
  16812. {
  16813. name: "Normal",
  16814. height: math.unit(6 + 2 / 12, "feet"),
  16815. default: true
  16816. },
  16817. ]
  16818. ))
  16819. characterMakers.push(() => makeCharacter(
  16820. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  16821. {
  16822. front: {
  16823. height: math.unit(2 + 4 / 12, "feet"),
  16824. weight: math.unit(62, "lb"),
  16825. name: "Front",
  16826. image: {
  16827. source: "./media/characters/puru/front.svg",
  16828. extra: 206 / 149,
  16829. bottom: 0.06
  16830. }
  16831. },
  16832. },
  16833. [
  16834. {
  16835. name: "Normal",
  16836. height: math.unit(2 + 4 / 12, "feet"),
  16837. default: true
  16838. },
  16839. ]
  16840. ))
  16841. characterMakers.push(() => makeCharacter(
  16842. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16843. {
  16844. anthro: {
  16845. height: math.unit(5 + 8/12, "feet"),
  16846. weight: math.unit(200, "lb"),
  16847. energyNeed: math.unit(2000, "kcal"),
  16848. name: "Anthro",
  16849. image: {
  16850. source: "./media/characters/kee/anthro.svg",
  16851. extra: 3251/3184,
  16852. bottom: 250/3501
  16853. }
  16854. },
  16855. taur: {
  16856. height: math.unit(11, "feet"),
  16857. weight: math.unit(500, "lb"),
  16858. energyNeed: math.unit(5000, "kcal"),
  16859. name: "Taur",
  16860. image: {
  16861. source: "./media/characters/kee/taur.svg",
  16862. extra: 1362/1320,
  16863. bottom: 83/1445
  16864. }
  16865. },
  16866. },
  16867. [
  16868. {
  16869. name: "Normal",
  16870. height: math.unit(5 + 8/12, "feet"),
  16871. default: true
  16872. },
  16873. {
  16874. name: "Macro",
  16875. height: math.unit(35, "feet")
  16876. },
  16877. ]
  16878. ))
  16879. characterMakers.push(() => makeCharacter(
  16880. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16881. {
  16882. anthro: {
  16883. height: math.unit(7, "feet"),
  16884. weight: math.unit(190, "lb"),
  16885. name: "Anthro",
  16886. image: {
  16887. source: "./media/characters/cobalt-dracha/anthro.svg",
  16888. extra: 231 / 225,
  16889. bottom: 0.04
  16890. }
  16891. },
  16892. feral: {
  16893. height: math.unit(9 + 7 / 12, "feet"),
  16894. weight: math.unit(294, "lb"),
  16895. name: "Feral",
  16896. image: {
  16897. source: "./media/characters/cobalt-dracha/feral.svg",
  16898. extra: 692 / 633,
  16899. bottom: 0.05
  16900. }
  16901. },
  16902. },
  16903. [
  16904. {
  16905. name: "Normal",
  16906. height: math.unit(7, "feet"),
  16907. default: true
  16908. },
  16909. ]
  16910. ))
  16911. characterMakers.push(() => makeCharacter(
  16912. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16913. {
  16914. fallen: {
  16915. height: math.unit(11 + 8 / 12, "feet"),
  16916. weight: math.unit(485, "lb"),
  16917. name: "Java (Fallen)",
  16918. rename: true,
  16919. image: {
  16920. source: "./media/characters/java/fallen.svg",
  16921. extra: 226 / 208,
  16922. bottom: 0.005
  16923. }
  16924. },
  16925. godkin: {
  16926. height: math.unit(10 + 6 / 12, "feet"),
  16927. weight: math.unit(328, "lb"),
  16928. name: "Java (Godkin)",
  16929. rename: true,
  16930. image: {
  16931. source: "./media/characters/java/godkin.svg",
  16932. extra: 1104/1068,
  16933. bottom: 36/1140
  16934. }
  16935. },
  16936. },
  16937. [
  16938. {
  16939. name: "Normal",
  16940. height: math.unit(11 + 8 / 12, "feet"),
  16941. default: true
  16942. },
  16943. ]
  16944. ))
  16945. characterMakers.push(() => makeCharacter(
  16946. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  16947. {
  16948. front: {
  16949. height: math.unit(5 + 9 / 12, "feet"),
  16950. weight: math.unit(170, "lb"),
  16951. name: "Front",
  16952. image: {
  16953. source: "./media/characters/purna/front.svg",
  16954. extra: 239 / 229,
  16955. bottom: 0.01
  16956. }
  16957. },
  16958. },
  16959. [
  16960. {
  16961. name: "Normal",
  16962. height: math.unit(5 + 9 / 12, "feet"),
  16963. default: true
  16964. },
  16965. ]
  16966. ))
  16967. characterMakers.push(() => makeCharacter(
  16968. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  16969. {
  16970. front: {
  16971. height: math.unit(5 + 9 / 12, "feet"),
  16972. weight: math.unit(142, "lb"),
  16973. name: "Front",
  16974. image: {
  16975. source: "./media/characters/kuva/front.svg",
  16976. extra: 281 / 271,
  16977. bottom: 0.006
  16978. }
  16979. },
  16980. },
  16981. [
  16982. {
  16983. name: "Normal",
  16984. height: math.unit(5 + 9 / 12, "feet"),
  16985. default: true
  16986. },
  16987. ]
  16988. ))
  16989. characterMakers.push(() => makeCharacter(
  16990. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  16991. {
  16992. anthro: {
  16993. height: math.unit(9 + 2 / 12, "feet"),
  16994. weight: math.unit(270, "lb"),
  16995. name: "Anthro",
  16996. image: {
  16997. source: "./media/characters/embra/anthro.svg",
  16998. extra: 200 / 187,
  16999. bottom: 0.02
  17000. }
  17001. },
  17002. feral: {
  17003. height: math.unit(18 + 8 / 12, "feet"),
  17004. weight: math.unit(576, "lb"),
  17005. name: "Feral",
  17006. image: {
  17007. source: "./media/characters/embra/feral.svg",
  17008. extra: 152 / 137,
  17009. bottom: 0.037
  17010. }
  17011. },
  17012. },
  17013. [
  17014. {
  17015. name: "Normal",
  17016. height: math.unit(9 + 2 / 12, "feet"),
  17017. default: true
  17018. },
  17019. ]
  17020. ))
  17021. characterMakers.push(() => makeCharacter(
  17022. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  17023. {
  17024. anthro: {
  17025. height: math.unit(10 + 9 / 12, "feet"),
  17026. weight: math.unit(224, "lb"),
  17027. name: "Anthro",
  17028. image: {
  17029. source: "./media/characters/grottos/anthro.svg",
  17030. extra: 350 / 332,
  17031. bottom: 0.045
  17032. }
  17033. },
  17034. feral: {
  17035. height: math.unit(20 + 7 / 12, "feet"),
  17036. weight: math.unit(629, "lb"),
  17037. name: "Feral",
  17038. image: {
  17039. source: "./media/characters/grottos/feral.svg",
  17040. extra: 207 / 190,
  17041. bottom: 0.05
  17042. }
  17043. },
  17044. },
  17045. [
  17046. {
  17047. name: "Normal",
  17048. height: math.unit(10 + 9 / 12, "feet"),
  17049. default: true
  17050. },
  17051. ]
  17052. ))
  17053. characterMakers.push(() => makeCharacter(
  17054. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17055. {
  17056. anthro: {
  17057. height: math.unit(9 + 6 / 12, "feet"),
  17058. weight: math.unit(298, "lb"),
  17059. name: "Anthro",
  17060. image: {
  17061. source: "./media/characters/frifna/anthro.svg",
  17062. extra: 282 / 269,
  17063. bottom: 0.015
  17064. }
  17065. },
  17066. feral: {
  17067. height: math.unit(16 + 2 / 12, "feet"),
  17068. weight: math.unit(624, "lb"),
  17069. name: "Feral",
  17070. image: {
  17071. source: "./media/characters/frifna/feral.svg"
  17072. }
  17073. },
  17074. },
  17075. [
  17076. {
  17077. name: "Normal",
  17078. height: math.unit(9 + 6 / 12, "feet"),
  17079. default: true
  17080. },
  17081. ]
  17082. ))
  17083. characterMakers.push(() => makeCharacter(
  17084. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17085. {
  17086. front: {
  17087. height: math.unit(6 + 2 / 12, "feet"),
  17088. weight: math.unit(168, "lb"),
  17089. name: "Front",
  17090. image: {
  17091. source: "./media/characters/elise/front.svg",
  17092. extra: 276 / 271
  17093. }
  17094. },
  17095. },
  17096. [
  17097. {
  17098. name: "Normal",
  17099. height: math.unit(6 + 2 / 12, "feet"),
  17100. default: true
  17101. },
  17102. ]
  17103. ))
  17104. characterMakers.push(() => makeCharacter(
  17105. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  17106. {
  17107. front: {
  17108. height: math.unit(5 + 10 / 12, "feet"),
  17109. weight: math.unit(210, "lb"),
  17110. name: "Front",
  17111. image: {
  17112. source: "./media/characters/glade/front.svg",
  17113. extra: 258 / 247,
  17114. bottom: 0.008
  17115. }
  17116. },
  17117. },
  17118. [
  17119. {
  17120. name: "Normal",
  17121. height: math.unit(5 + 10 / 12, "feet"),
  17122. default: true
  17123. },
  17124. ]
  17125. ))
  17126. characterMakers.push(() => makeCharacter(
  17127. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  17128. {
  17129. front: {
  17130. height: math.unit(5 + 10 / 12, "feet"),
  17131. weight: math.unit(129, "lb"),
  17132. name: "Front",
  17133. image: {
  17134. source: "./media/characters/rina/front.svg",
  17135. extra: 266 / 255,
  17136. bottom: 0.005
  17137. }
  17138. },
  17139. },
  17140. [
  17141. {
  17142. name: "Normal",
  17143. height: math.unit(5 + 10 / 12, "feet"),
  17144. default: true
  17145. },
  17146. ]
  17147. ))
  17148. characterMakers.push(() => makeCharacter(
  17149. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  17150. {
  17151. front: {
  17152. height: math.unit(6 + 1 / 12, "feet"),
  17153. weight: math.unit(192, "lb"),
  17154. name: "Front",
  17155. image: {
  17156. source: "./media/characters/veronica/front.svg",
  17157. extra: 319 / 309,
  17158. bottom: 0.005
  17159. }
  17160. },
  17161. },
  17162. [
  17163. {
  17164. name: "Normal",
  17165. height: math.unit(6 + 1 / 12, "feet"),
  17166. default: true
  17167. },
  17168. ]
  17169. ))
  17170. characterMakers.push(() => makeCharacter(
  17171. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  17172. {
  17173. front: {
  17174. height: math.unit(9 + 3 / 12, "feet"),
  17175. weight: math.unit(1100, "lb"),
  17176. name: "Front",
  17177. image: {
  17178. source: "./media/characters/braxton/front.svg",
  17179. extra: 1057 / 984,
  17180. bottom: 0.05
  17181. }
  17182. },
  17183. },
  17184. [
  17185. {
  17186. name: "Normal",
  17187. height: math.unit(9 + 3 / 12, "feet")
  17188. },
  17189. {
  17190. name: "Giant",
  17191. height: math.unit(300, "feet"),
  17192. default: true
  17193. },
  17194. {
  17195. name: "Macro",
  17196. height: math.unit(700, "feet")
  17197. },
  17198. {
  17199. name: "Megamacro",
  17200. height: math.unit(6000, "feet")
  17201. },
  17202. ]
  17203. ))
  17204. characterMakers.push(() => makeCharacter(
  17205. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  17206. {
  17207. front: {
  17208. height: math.unit(6 + 7 / 12, "feet"),
  17209. weight: math.unit(150, "lb"),
  17210. name: "Front",
  17211. image: {
  17212. source: "./media/characters/blue-feyonics/front.svg",
  17213. extra: 1403 / 1306,
  17214. bottom: 0.047
  17215. }
  17216. },
  17217. },
  17218. [
  17219. {
  17220. name: "Normal",
  17221. height: math.unit(6 + 7 / 12, "feet"),
  17222. default: true
  17223. },
  17224. ]
  17225. ))
  17226. characterMakers.push(() => makeCharacter(
  17227. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  17228. {
  17229. front: {
  17230. height: math.unit(1.8, "meters"),
  17231. weight: math.unit(60, "kg"),
  17232. name: "Front",
  17233. image: {
  17234. source: "./media/characters/maxwell/front.svg",
  17235. extra: 2060 / 1873
  17236. }
  17237. },
  17238. },
  17239. [
  17240. {
  17241. name: "Micro",
  17242. height: math.unit(1, "mm")
  17243. },
  17244. {
  17245. name: "Normal",
  17246. height: math.unit(1.8, "meter"),
  17247. default: true
  17248. },
  17249. {
  17250. name: "Macro",
  17251. height: math.unit(30, "meters")
  17252. },
  17253. {
  17254. name: "Megamacro",
  17255. height: math.unit(10, "km")
  17256. },
  17257. ]
  17258. ))
  17259. characterMakers.push(() => makeCharacter(
  17260. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  17261. {
  17262. front: {
  17263. height: math.unit(6, "feet"),
  17264. weight: math.unit(150, "lb"),
  17265. name: "Front",
  17266. image: {
  17267. source: "./media/characters/jack/front.svg",
  17268. extra: 1754 / 1640,
  17269. bottom: 0.01
  17270. }
  17271. },
  17272. },
  17273. [
  17274. {
  17275. name: "Normal",
  17276. height: math.unit(80000, "feet"),
  17277. default: true
  17278. },
  17279. {
  17280. name: "Max size",
  17281. height: math.unit(10, "lightyears")
  17282. },
  17283. ]
  17284. ))
  17285. characterMakers.push(() => makeCharacter(
  17286. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  17287. {
  17288. urban: {
  17289. height: math.unit(5, "feet"),
  17290. weight: math.unit(240, "lb"),
  17291. name: "Urban",
  17292. image: {
  17293. source: "./media/characters/cafat/urban.svg",
  17294. extra: 1223/1126,
  17295. bottom: 205/1428
  17296. }
  17297. },
  17298. summer: {
  17299. height: math.unit(5, "feet"),
  17300. weight: math.unit(240, "lb"),
  17301. name: "Summer",
  17302. image: {
  17303. source: "./media/characters/cafat/summer.svg",
  17304. extra: 1223/1126,
  17305. bottom: 205/1428
  17306. }
  17307. },
  17308. winter: {
  17309. height: math.unit(5, "feet"),
  17310. weight: math.unit(240, "lb"),
  17311. name: "Winter",
  17312. image: {
  17313. source: "./media/characters/cafat/winter.svg",
  17314. extra: 1223/1126,
  17315. bottom: 205/1428
  17316. }
  17317. },
  17318. lingerie: {
  17319. height: math.unit(5, "feet"),
  17320. weight: math.unit(240, "lb"),
  17321. name: "Lingerie",
  17322. image: {
  17323. source: "./media/characters/cafat/lingerie.svg",
  17324. extra: 1223/1126,
  17325. bottom: 205/1428
  17326. }
  17327. },
  17328. upright: {
  17329. height: math.unit(6.3, "feet"),
  17330. weight: math.unit(240, "lb"),
  17331. name: "Upright",
  17332. image: {
  17333. source: "./media/characters/cafat/upright.svg",
  17334. bottom: 0.01
  17335. }
  17336. },
  17337. uprightFull: {
  17338. height: math.unit(6.3, "feet"),
  17339. weight: math.unit(240, "lb"),
  17340. name: "Upright (Full)",
  17341. image: {
  17342. source: "./media/characters/cafat/upright-full.svg",
  17343. bottom: 0.01
  17344. }
  17345. },
  17346. },
  17347. [
  17348. {
  17349. name: "Small",
  17350. height: math.unit(5, "feet"),
  17351. default: true
  17352. },
  17353. {
  17354. name: "Large",
  17355. height: math.unit(13, "feet")
  17356. },
  17357. ]
  17358. ))
  17359. characterMakers.push(() => makeCharacter(
  17360. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  17361. {
  17362. front: {
  17363. height: math.unit(6, "feet"),
  17364. weight: math.unit(150, "lb"),
  17365. name: "Front",
  17366. image: {
  17367. source: "./media/characters/verin-raharra/front.svg",
  17368. extra: 5019 / 4835,
  17369. bottom: 0.023
  17370. }
  17371. },
  17372. },
  17373. [
  17374. {
  17375. name: "Normal",
  17376. height: math.unit(7 + 5 / 12, "feet"),
  17377. default: true
  17378. },
  17379. {
  17380. name: "Upsized",
  17381. height: math.unit(20, "feet")
  17382. },
  17383. ]
  17384. ))
  17385. characterMakers.push(() => makeCharacter(
  17386. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  17387. {
  17388. front: {
  17389. height: math.unit(7, "feet"),
  17390. weight: math.unit(230, "lb"),
  17391. name: "Front",
  17392. image: {
  17393. source: "./media/characters/nakata/front.svg",
  17394. extra: 1.005,
  17395. bottom: 0.01
  17396. }
  17397. },
  17398. },
  17399. [
  17400. {
  17401. name: "Normal",
  17402. height: math.unit(7, "feet"),
  17403. default: true
  17404. },
  17405. {
  17406. name: "Big",
  17407. height: math.unit(14, "feet")
  17408. },
  17409. {
  17410. name: "Macro",
  17411. height: math.unit(400, "feet")
  17412. },
  17413. ]
  17414. ))
  17415. characterMakers.push(() => makeCharacter(
  17416. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  17417. {
  17418. front: {
  17419. height: math.unit(4.91, "feet"),
  17420. weight: math.unit(100, "lb"),
  17421. name: "Front",
  17422. image: {
  17423. source: "./media/characters/lily/front.svg",
  17424. extra: 1585 / 1415,
  17425. bottom: 0.02
  17426. }
  17427. },
  17428. },
  17429. [
  17430. {
  17431. name: "Normal",
  17432. height: math.unit(4.91, "feet"),
  17433. default: true
  17434. },
  17435. ]
  17436. ))
  17437. characterMakers.push(() => makeCharacter(
  17438. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  17439. {
  17440. laying: {
  17441. height: math.unit(4 + 4 / 12, "feet"),
  17442. weight: math.unit(600, "lb"),
  17443. name: "Laying",
  17444. image: {
  17445. source: "./media/characters/sheila/laying.svg",
  17446. extra: 1333 / 1265,
  17447. bottom: 0.16
  17448. }
  17449. },
  17450. },
  17451. [
  17452. {
  17453. name: "Normal",
  17454. height: math.unit(4 + 4 / 12, "feet"),
  17455. default: true
  17456. },
  17457. ]
  17458. ))
  17459. characterMakers.push(() => makeCharacter(
  17460. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  17461. {
  17462. front: {
  17463. height: math.unit(6, "feet"),
  17464. weight: math.unit(190, "lb"),
  17465. name: "Front",
  17466. image: {
  17467. source: "./media/characters/sax/front.svg",
  17468. extra: 1187 / 973,
  17469. bottom: 0.042
  17470. }
  17471. },
  17472. },
  17473. [
  17474. {
  17475. name: "Micro",
  17476. height: math.unit(4, "inches"),
  17477. default: true
  17478. },
  17479. ]
  17480. ))
  17481. characterMakers.push(() => makeCharacter(
  17482. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  17483. {
  17484. front: {
  17485. height: math.unit(6, "feet"),
  17486. weight: math.unit(150, "lb"),
  17487. name: "Front",
  17488. image: {
  17489. source: "./media/characters/pandora/front.svg",
  17490. extra: 2720 / 2556,
  17491. bottom: 0.015
  17492. }
  17493. },
  17494. back: {
  17495. height: math.unit(6, "feet"),
  17496. weight: math.unit(150, "lb"),
  17497. name: "Back",
  17498. image: {
  17499. source: "./media/characters/pandora/back.svg",
  17500. extra: 2720 / 2556,
  17501. bottom: 0.01
  17502. }
  17503. },
  17504. beans: {
  17505. height: math.unit(6 / 8, "feet"),
  17506. name: "Beans",
  17507. image: {
  17508. source: "./media/characters/pandora/beans.svg"
  17509. }
  17510. },
  17511. collar: {
  17512. height: math.unit(0.31, "feet"),
  17513. name: "Collar",
  17514. image: {
  17515. source: "./media/characters/pandora/collar.svg"
  17516. }
  17517. },
  17518. skirt: {
  17519. height: math.unit(6, "feet"),
  17520. weight: math.unit(150, "lb"),
  17521. name: "Skirt",
  17522. image: {
  17523. source: "./media/characters/pandora/skirt.svg",
  17524. extra: 1622 / 1525,
  17525. bottom: 0.015
  17526. }
  17527. },
  17528. hoodie: {
  17529. height: math.unit(6, "feet"),
  17530. weight: math.unit(150, "lb"),
  17531. name: "Hoodie",
  17532. image: {
  17533. source: "./media/characters/pandora/hoodie.svg",
  17534. extra: 1622 / 1525,
  17535. bottom: 0.015
  17536. }
  17537. },
  17538. casual: {
  17539. height: math.unit(6, "feet"),
  17540. weight: math.unit(150, "lb"),
  17541. name: "Casual",
  17542. image: {
  17543. source: "./media/characters/pandora/casual.svg",
  17544. extra: 1622 / 1525,
  17545. bottom: 0.015
  17546. }
  17547. },
  17548. },
  17549. [
  17550. {
  17551. name: "Normal",
  17552. height: math.unit(6, "feet")
  17553. },
  17554. {
  17555. name: "Big Steppy",
  17556. height: math.unit(1, "km"),
  17557. default: true
  17558. },
  17559. {
  17560. name: "Galactic Steppy",
  17561. height: math.unit(2, "gigameters")
  17562. },
  17563. ]
  17564. ))
  17565. characterMakers.push(() => makeCharacter(
  17566. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  17567. {
  17568. side: {
  17569. height: math.unit(10, "feet"),
  17570. weight: math.unit(800, "kg"),
  17571. name: "Side",
  17572. image: {
  17573. source: "./media/characters/venio-darcony/side.svg",
  17574. extra: 1373 / 1003,
  17575. bottom: 0.037
  17576. }
  17577. },
  17578. front: {
  17579. height: math.unit(19, "feet"),
  17580. weight: math.unit(800, "kg"),
  17581. name: "Front",
  17582. image: {
  17583. source: "./media/characters/venio-darcony/front.svg"
  17584. }
  17585. },
  17586. back: {
  17587. height: math.unit(19, "feet"),
  17588. weight: math.unit(800, "kg"),
  17589. name: "Back",
  17590. image: {
  17591. source: "./media/characters/venio-darcony/back.svg"
  17592. }
  17593. },
  17594. sideNsfw: {
  17595. height: math.unit(10, "feet"),
  17596. weight: math.unit(800, "kg"),
  17597. name: "Side (NSFW)",
  17598. image: {
  17599. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17600. extra: 1373 / 1003,
  17601. bottom: 0.037
  17602. }
  17603. },
  17604. frontNsfw: {
  17605. height: math.unit(19, "feet"),
  17606. weight: math.unit(800, "kg"),
  17607. name: "Front (NSFW)",
  17608. image: {
  17609. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17610. }
  17611. },
  17612. backNsfw: {
  17613. height: math.unit(19, "feet"),
  17614. weight: math.unit(800, "kg"),
  17615. name: "Back (NSFW)",
  17616. image: {
  17617. source: "./media/characters/venio-darcony/back-nsfw.svg"
  17618. }
  17619. },
  17620. sideArmored: {
  17621. height: math.unit(10, "feet"),
  17622. weight: math.unit(800, "kg"),
  17623. name: "Side (Armored)",
  17624. image: {
  17625. source: "./media/characters/venio-darcony/side-armored.svg",
  17626. extra: 1373 / 1003,
  17627. bottom: 0.037
  17628. }
  17629. },
  17630. frontArmored: {
  17631. height: math.unit(19, "feet"),
  17632. weight: math.unit(900, "kg"),
  17633. name: "Front (Armored)",
  17634. image: {
  17635. source: "./media/characters/venio-darcony/front-armored.svg"
  17636. }
  17637. },
  17638. backArmored: {
  17639. height: math.unit(19, "feet"),
  17640. weight: math.unit(900, "kg"),
  17641. name: "Back (Armored)",
  17642. image: {
  17643. source: "./media/characters/venio-darcony/back-armored.svg"
  17644. }
  17645. },
  17646. sword: {
  17647. height: math.unit(10, "feet"),
  17648. weight: math.unit(50, "lb"),
  17649. name: "Sword",
  17650. image: {
  17651. source: "./media/characters/venio-darcony/sword.svg"
  17652. }
  17653. },
  17654. },
  17655. [
  17656. {
  17657. name: "Normal",
  17658. height: math.unit(10, "feet")
  17659. },
  17660. {
  17661. name: "Macro",
  17662. height: math.unit(130, "feet"),
  17663. default: true
  17664. },
  17665. {
  17666. name: "Macro+",
  17667. height: math.unit(240, "feet")
  17668. },
  17669. ]
  17670. ))
  17671. characterMakers.push(() => makeCharacter(
  17672. { name: "Veski", species: ["shark"], 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/veski/front.svg",
  17680. extra: 1299 / 1225,
  17681. bottom: 0.04
  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/veski/back.svg",
  17690. extra: 1299 / 1225,
  17691. bottom: 0.008
  17692. }
  17693. },
  17694. maw: {
  17695. height: math.unit(1.5 * 1.21, "feet"),
  17696. name: "Maw",
  17697. image: {
  17698. source: "./media/characters/veski/maw.svg"
  17699. }
  17700. },
  17701. },
  17702. [
  17703. {
  17704. name: "Macro",
  17705. height: math.unit(2, "km"),
  17706. default: true
  17707. },
  17708. ]
  17709. ))
  17710. characterMakers.push(() => makeCharacter(
  17711. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  17712. {
  17713. front: {
  17714. height: math.unit(5 + 7 / 12, "feet"),
  17715. name: "Front",
  17716. image: {
  17717. source: "./media/characters/isabelle/front.svg",
  17718. extra: 2130 / 1976,
  17719. bottom: 0.05
  17720. }
  17721. },
  17722. },
  17723. [
  17724. {
  17725. name: "Supermicro",
  17726. height: math.unit(10, "micrometers")
  17727. },
  17728. {
  17729. name: "Micro",
  17730. height: math.unit(1, "inch")
  17731. },
  17732. {
  17733. name: "Tiny",
  17734. height: math.unit(5, "inches")
  17735. },
  17736. {
  17737. name: "Standard",
  17738. height: math.unit(5 + 7 / 12, "inches")
  17739. },
  17740. {
  17741. name: "Macro",
  17742. height: math.unit(80, "meters"),
  17743. default: true
  17744. },
  17745. {
  17746. name: "Megamacro",
  17747. height: math.unit(250, "meters")
  17748. },
  17749. {
  17750. name: "Gigamacro",
  17751. height: math.unit(5, "km")
  17752. },
  17753. {
  17754. name: "Cosmic",
  17755. height: math.unit(2.5e6, "miles")
  17756. },
  17757. ]
  17758. ))
  17759. characterMakers.push(() => makeCharacter(
  17760. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  17761. {
  17762. front: {
  17763. height: math.unit(6, "feet"),
  17764. weight: math.unit(150, "lb"),
  17765. name: "Front",
  17766. image: {
  17767. source: "./media/characters/hanzo/front.svg",
  17768. extra: 374 / 344,
  17769. bottom: 0.02
  17770. }
  17771. },
  17772. },
  17773. [
  17774. {
  17775. name: "Normal",
  17776. height: math.unit(8, "feet"),
  17777. default: true
  17778. },
  17779. ]
  17780. ))
  17781. characterMakers.push(() => makeCharacter(
  17782. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  17783. {
  17784. front: {
  17785. height: math.unit(7, "feet"),
  17786. weight: math.unit(130, "lb"),
  17787. name: "Front",
  17788. image: {
  17789. source: "./media/characters/anna/front.svg",
  17790. extra: 169 / 145,
  17791. bottom: 0.06
  17792. }
  17793. },
  17794. full: {
  17795. height: math.unit(4.96, "feet"),
  17796. weight: math.unit(220, "lb"),
  17797. name: "Full",
  17798. image: {
  17799. source: "./media/characters/anna/full.svg",
  17800. extra: 138 / 114,
  17801. bottom: 0.15
  17802. }
  17803. },
  17804. tongue: {
  17805. height: math.unit(2.53, "feet"),
  17806. name: "Tongue",
  17807. image: {
  17808. source: "./media/characters/anna/tongue.svg"
  17809. }
  17810. },
  17811. },
  17812. [
  17813. {
  17814. name: "Normal",
  17815. height: math.unit(7, "feet"),
  17816. default: true
  17817. },
  17818. ]
  17819. ))
  17820. characterMakers.push(() => makeCharacter(
  17821. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  17822. {
  17823. front: {
  17824. height: math.unit(7, "feet"),
  17825. weight: math.unit(150, "lb"),
  17826. name: "Front",
  17827. image: {
  17828. source: "./media/characters/ian-corvid/front.svg",
  17829. extra: 150 / 142,
  17830. bottom: 0.02
  17831. }
  17832. },
  17833. back: {
  17834. height: math.unit(7, "feet"),
  17835. weight: math.unit(150, "lb"),
  17836. name: "Back",
  17837. image: {
  17838. source: "./media/characters/ian-corvid/back.svg",
  17839. extra: 150 / 143,
  17840. bottom: 0.01
  17841. }
  17842. },
  17843. stomping: {
  17844. height: math.unit(7, "feet"),
  17845. weight: math.unit(150, "lb"),
  17846. name: "Stomping",
  17847. image: {
  17848. source: "./media/characters/ian-corvid/stomping.svg",
  17849. extra: 76 / 72
  17850. }
  17851. },
  17852. sitting: {
  17853. height: math.unit(7 / 1.8, "feet"),
  17854. weight: math.unit(150, "lb"),
  17855. name: "Sitting",
  17856. image: {
  17857. source: "./media/characters/ian-corvid/sitting.svg",
  17858. extra: 1400 / 1269,
  17859. bottom: 0.15
  17860. }
  17861. },
  17862. },
  17863. [
  17864. {
  17865. name: "Tiny Microw",
  17866. height: math.unit(1, "inch")
  17867. },
  17868. {
  17869. name: "Microw",
  17870. height: math.unit(6, "inches")
  17871. },
  17872. {
  17873. name: "Crow",
  17874. height: math.unit(7 + 1 / 12, "feet"),
  17875. default: true
  17876. },
  17877. {
  17878. name: "Macrow",
  17879. height: math.unit(176, "feet")
  17880. },
  17881. ]
  17882. ))
  17883. characterMakers.push(() => makeCharacter(
  17884. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17885. {
  17886. front: {
  17887. height: math.unit(5 + 7 / 12, "feet"),
  17888. weight: math.unit(147, "lb"),
  17889. name: "Front",
  17890. image: {
  17891. source: "./media/characters/natalie-kellon/front.svg",
  17892. extra: 1214 / 1141,
  17893. bottom: 0.02
  17894. }
  17895. },
  17896. },
  17897. [
  17898. {
  17899. name: "Micro",
  17900. height: math.unit(1 / 16, "inch")
  17901. },
  17902. {
  17903. name: "Tiny",
  17904. height: math.unit(4, "inches")
  17905. },
  17906. {
  17907. name: "Normal",
  17908. height: math.unit(5 + 7 / 12, "feet"),
  17909. default: true
  17910. },
  17911. {
  17912. name: "Amazon",
  17913. height: math.unit(12, "feet")
  17914. },
  17915. {
  17916. name: "Giantess",
  17917. height: math.unit(160, "meters")
  17918. },
  17919. {
  17920. name: "Titaness",
  17921. height: math.unit(800, "meters")
  17922. },
  17923. ]
  17924. ))
  17925. characterMakers.push(() => makeCharacter(
  17926. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17927. {
  17928. front: {
  17929. height: math.unit(6, "feet"),
  17930. weight: math.unit(150, "lb"),
  17931. name: "Front",
  17932. image: {
  17933. source: "./media/characters/alluria/front.svg",
  17934. extra: 806 / 738,
  17935. bottom: 0.01
  17936. }
  17937. },
  17938. side: {
  17939. height: math.unit(6, "feet"),
  17940. weight: math.unit(150, "lb"),
  17941. name: "Side",
  17942. image: {
  17943. source: "./media/characters/alluria/side.svg",
  17944. extra: 800 / 750,
  17945. }
  17946. },
  17947. back: {
  17948. height: math.unit(6, "feet"),
  17949. weight: math.unit(150, "lb"),
  17950. name: "Back",
  17951. image: {
  17952. source: "./media/characters/alluria/back.svg",
  17953. extra: 806 / 738,
  17954. }
  17955. },
  17956. frontMaid: {
  17957. height: math.unit(6, "feet"),
  17958. weight: math.unit(150, "lb"),
  17959. name: "Front (Maid)",
  17960. image: {
  17961. source: "./media/characters/alluria/front-maid.svg",
  17962. extra: 806 / 738,
  17963. bottom: 0.01
  17964. }
  17965. },
  17966. sideMaid: {
  17967. height: math.unit(6, "feet"),
  17968. weight: math.unit(150, "lb"),
  17969. name: "Side (Maid)",
  17970. image: {
  17971. source: "./media/characters/alluria/side-maid.svg",
  17972. extra: 800 / 750,
  17973. bottom: 0.005
  17974. }
  17975. },
  17976. backMaid: {
  17977. height: math.unit(6, "feet"),
  17978. weight: math.unit(150, "lb"),
  17979. name: "Back (Maid)",
  17980. image: {
  17981. source: "./media/characters/alluria/back-maid.svg",
  17982. extra: 806 / 738,
  17983. }
  17984. },
  17985. },
  17986. [
  17987. {
  17988. name: "Micro",
  17989. height: math.unit(6, "inches"),
  17990. default: true
  17991. },
  17992. ]
  17993. ))
  17994. characterMakers.push(() => makeCharacter(
  17995. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  17996. {
  17997. front: {
  17998. height: math.unit(6, "feet"),
  17999. weight: math.unit(150, "lb"),
  18000. name: "Front",
  18001. image: {
  18002. source: "./media/characters/kyle/front.svg",
  18003. extra: 1069 / 962,
  18004. bottom: 77.228 / 1727.45
  18005. }
  18006. },
  18007. },
  18008. [
  18009. {
  18010. name: "Macro",
  18011. height: math.unit(150, "feet"),
  18012. default: true
  18013. },
  18014. ]
  18015. ))
  18016. characterMakers.push(() => makeCharacter(
  18017. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  18018. {
  18019. front: {
  18020. height: math.unit(6, "feet"),
  18021. weight: math.unit(300, "lb"),
  18022. name: "Front",
  18023. image: {
  18024. source: "./media/characters/duncan/front.svg",
  18025. extra: 1650 / 1482,
  18026. bottom: 0.05
  18027. }
  18028. },
  18029. },
  18030. [
  18031. {
  18032. name: "Macro",
  18033. height: math.unit(100, "feet"),
  18034. default: true
  18035. },
  18036. ]
  18037. ))
  18038. characterMakers.push(() => makeCharacter(
  18039. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  18040. {
  18041. front: {
  18042. height: math.unit(5 + 4 / 12, "feet"),
  18043. weight: math.unit(220, "lb"),
  18044. name: "Front",
  18045. image: {
  18046. source: "./media/characters/memory/front.svg",
  18047. extra: 3641 / 3545,
  18048. bottom: 0.03
  18049. }
  18050. },
  18051. back: {
  18052. height: math.unit(5 + 4 / 12, "feet"),
  18053. weight: math.unit(220, "lb"),
  18054. name: "Back",
  18055. image: {
  18056. source: "./media/characters/memory/back.svg",
  18057. extra: 3641 / 3545,
  18058. bottom: 0.025
  18059. }
  18060. },
  18061. frontSkirt: {
  18062. height: math.unit(5 + 4 / 12, "feet"),
  18063. weight: math.unit(220, "lb"),
  18064. name: "Front (Skirt)",
  18065. image: {
  18066. source: "./media/characters/memory/front-skirt.svg",
  18067. extra: 3641 / 3545,
  18068. bottom: 0.03
  18069. }
  18070. },
  18071. frontDress: {
  18072. height: math.unit(5 + 4 / 12, "feet"),
  18073. weight: math.unit(220, "lb"),
  18074. name: "Front (Dress)",
  18075. image: {
  18076. source: "./media/characters/memory/front-dress.svg",
  18077. extra: 3641 / 3545,
  18078. bottom: 0.03
  18079. }
  18080. },
  18081. },
  18082. [
  18083. {
  18084. name: "Micro",
  18085. height: math.unit(6, "inches"),
  18086. default: true
  18087. },
  18088. {
  18089. name: "Normal",
  18090. height: math.unit(5 + 4 / 12, "feet")
  18091. },
  18092. ]
  18093. ))
  18094. characterMakers.push(() => makeCharacter(
  18095. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  18096. {
  18097. front: {
  18098. height: math.unit(4 + 11 / 12, "feet"),
  18099. weight: math.unit(100, "lb"),
  18100. name: "Front",
  18101. image: {
  18102. source: "./media/characters/luno/front.svg",
  18103. extra: 1535 / 1487,
  18104. bottom: 0.03
  18105. }
  18106. },
  18107. },
  18108. [
  18109. {
  18110. name: "Micro",
  18111. height: math.unit(3, "inches")
  18112. },
  18113. {
  18114. name: "Normal",
  18115. height: math.unit(4 + 11 / 12, "feet"),
  18116. default: true
  18117. },
  18118. {
  18119. name: "Macro",
  18120. height: math.unit(300, "feet")
  18121. },
  18122. {
  18123. name: "Megamacro",
  18124. height: math.unit(700, "miles")
  18125. },
  18126. ]
  18127. ))
  18128. characterMakers.push(() => makeCharacter(
  18129. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  18130. {
  18131. front: {
  18132. height: math.unit(6 + 2 / 12, "feet"),
  18133. weight: math.unit(170, "lb"),
  18134. name: "Front",
  18135. image: {
  18136. source: "./media/characters/jamesy/front.svg",
  18137. extra: 440 / 382,
  18138. bottom: 0.005
  18139. }
  18140. },
  18141. },
  18142. [
  18143. {
  18144. name: "Micro",
  18145. height: math.unit(3, "inches")
  18146. },
  18147. {
  18148. name: "Normal",
  18149. height: math.unit(6 + 2 / 12, "feet"),
  18150. default: true
  18151. },
  18152. {
  18153. name: "Macro",
  18154. height: math.unit(300, "feet")
  18155. },
  18156. {
  18157. name: "Megamacro",
  18158. height: math.unit(700, "miles")
  18159. },
  18160. ]
  18161. ))
  18162. characterMakers.push(() => makeCharacter(
  18163. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  18164. {
  18165. front: {
  18166. height: math.unit(6, "feet"),
  18167. weight: math.unit(160, "lb"),
  18168. name: "Front",
  18169. image: {
  18170. source: "./media/characters/mark/front.svg",
  18171. extra: 3300 / 3100,
  18172. bottom: 136.42 / 3440.47
  18173. }
  18174. },
  18175. },
  18176. [
  18177. {
  18178. name: "Macro",
  18179. height: math.unit(120, "meters")
  18180. },
  18181. {
  18182. name: "Bigger Macro",
  18183. height: math.unit(350, "meters")
  18184. },
  18185. {
  18186. name: "Megamacro",
  18187. height: math.unit(8, "km"),
  18188. default: true
  18189. },
  18190. {
  18191. name: "Continental",
  18192. height: math.unit(4550, "km")
  18193. },
  18194. {
  18195. name: "Planetary",
  18196. height: math.unit(65000, "km")
  18197. },
  18198. ]
  18199. ))
  18200. characterMakers.push(() => makeCharacter(
  18201. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  18202. {
  18203. front: {
  18204. height: math.unit(6, "feet"),
  18205. weight: math.unit(400, "lb"),
  18206. name: "Front",
  18207. image: {
  18208. source: "./media/characters/mac/front.svg",
  18209. extra: 1048 / 987.7,
  18210. bottom: 60 / 1107.6,
  18211. }
  18212. },
  18213. },
  18214. [
  18215. {
  18216. name: "Macro",
  18217. height: math.unit(500, "feet"),
  18218. default: true
  18219. },
  18220. ]
  18221. ))
  18222. characterMakers.push(() => makeCharacter(
  18223. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  18224. {
  18225. front: {
  18226. height: math.unit(5 + 2 / 12, "feet"),
  18227. weight: math.unit(190, "lb"),
  18228. name: "Front",
  18229. image: {
  18230. source: "./media/characters/bari/front.svg",
  18231. extra: 3156 / 2880,
  18232. bottom: 0.03
  18233. }
  18234. },
  18235. back: {
  18236. height: math.unit(5 + 2 / 12, "feet"),
  18237. weight: math.unit(190, "lb"),
  18238. name: "Back",
  18239. image: {
  18240. source: "./media/characters/bari/back.svg",
  18241. extra: 3260 / 2834,
  18242. bottom: 0.025
  18243. }
  18244. },
  18245. frontPlush: {
  18246. height: math.unit(5 + 2 / 12, "feet"),
  18247. weight: math.unit(190, "lb"),
  18248. name: "Front (Plush)",
  18249. image: {
  18250. source: "./media/characters/bari/front-plush.svg",
  18251. extra: 1112 / 1061,
  18252. bottom: 0.002
  18253. }
  18254. },
  18255. },
  18256. [
  18257. {
  18258. name: "Micro",
  18259. height: math.unit(3, "inches")
  18260. },
  18261. {
  18262. name: "Normal",
  18263. height: math.unit(5 + 2 / 12, "feet"),
  18264. default: true
  18265. },
  18266. {
  18267. name: "Macro",
  18268. height: math.unit(20, "feet")
  18269. },
  18270. ]
  18271. ))
  18272. characterMakers.push(() => makeCharacter(
  18273. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  18274. {
  18275. front: {
  18276. height: math.unit(6 + 1 / 12, "feet"),
  18277. weight: math.unit(275, "lb"),
  18278. name: "Front",
  18279. image: {
  18280. source: "./media/characters/hunter-misha-raven/front.svg"
  18281. }
  18282. },
  18283. },
  18284. [
  18285. {
  18286. name: "Mortal",
  18287. height: math.unit(6 + 1 / 12, "feet")
  18288. },
  18289. {
  18290. name: "Divine",
  18291. height: math.unit(1.12134e34, "parsecs"),
  18292. default: true
  18293. },
  18294. ]
  18295. ))
  18296. characterMakers.push(() => makeCharacter(
  18297. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  18298. {
  18299. front: {
  18300. height: math.unit(6 + 3 / 12, "feet"),
  18301. weight: math.unit(220, "lb"),
  18302. name: "Front",
  18303. image: {
  18304. source: "./media/characters/max-calore/front.svg",
  18305. extra: 1700 / 1648,
  18306. bottom: 0.01
  18307. }
  18308. },
  18309. back: {
  18310. height: math.unit(6 + 3 / 12, "feet"),
  18311. weight: math.unit(220, "lb"),
  18312. name: "Back",
  18313. image: {
  18314. source: "./media/characters/max-calore/back.svg",
  18315. extra: 1700 / 1648,
  18316. bottom: 0.01
  18317. }
  18318. },
  18319. },
  18320. [
  18321. {
  18322. name: "Normal",
  18323. height: math.unit(6 + 3 / 12, "feet"),
  18324. default: true
  18325. },
  18326. ]
  18327. ))
  18328. characterMakers.push(() => makeCharacter(
  18329. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  18330. {
  18331. side: {
  18332. height: math.unit(2 + 8 / 12, "feet"),
  18333. weight: math.unit(99, "lb"),
  18334. name: "Side",
  18335. image: {
  18336. source: "./media/characters/aspen/side.svg",
  18337. extra: 152 / 138,
  18338. bottom: 0.032
  18339. }
  18340. },
  18341. },
  18342. [
  18343. {
  18344. name: "Normal",
  18345. height: math.unit(2 + 8 / 12, "feet"),
  18346. default: true
  18347. },
  18348. ]
  18349. ))
  18350. characterMakers.push(() => makeCharacter(
  18351. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  18352. {
  18353. side: {
  18354. height: math.unit(3 + 2 / 12, "feet"),
  18355. weight: math.unit(224, "lb"),
  18356. name: "Side",
  18357. image: {
  18358. source: "./media/characters/sheila-feral-wolf/side.svg",
  18359. extra: 179 / 166,
  18360. bottom: 0.03
  18361. }
  18362. },
  18363. },
  18364. [
  18365. {
  18366. name: "Normal",
  18367. height: math.unit(3 + 2 / 12, "feet"),
  18368. default: true
  18369. },
  18370. ]
  18371. ))
  18372. characterMakers.push(() => makeCharacter(
  18373. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  18374. {
  18375. side: {
  18376. height: math.unit(1 + 9 / 12, "feet"),
  18377. weight: math.unit(38, "lb"),
  18378. name: "Side",
  18379. image: {
  18380. source: "./media/characters/michelle/side.svg",
  18381. extra: 147 / 136.7,
  18382. bottom: 0.03
  18383. }
  18384. },
  18385. },
  18386. [
  18387. {
  18388. name: "Normal",
  18389. height: math.unit(1 + 9 / 12, "feet"),
  18390. default: true
  18391. },
  18392. ]
  18393. ))
  18394. characterMakers.push(() => makeCharacter(
  18395. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  18396. {
  18397. front: {
  18398. height: math.unit(1.54, "feet"),
  18399. weight: math.unit(50, "lb"),
  18400. name: "Front",
  18401. image: {
  18402. source: "./media/characters/nino/front.svg"
  18403. }
  18404. },
  18405. },
  18406. [
  18407. {
  18408. name: "Normal",
  18409. height: math.unit(1.54, "feet"),
  18410. default: true
  18411. },
  18412. ]
  18413. ))
  18414. characterMakers.push(() => makeCharacter(
  18415. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  18416. {
  18417. front: {
  18418. height: math.unit(1.49, "feet"),
  18419. weight: math.unit(45, "lb"),
  18420. name: "Front",
  18421. image: {
  18422. source: "./media/characters/viola/front.svg"
  18423. }
  18424. },
  18425. },
  18426. [
  18427. {
  18428. name: "Normal",
  18429. height: math.unit(1.49, "feet"),
  18430. default: true
  18431. },
  18432. ]
  18433. ))
  18434. characterMakers.push(() => makeCharacter(
  18435. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  18436. {
  18437. front: {
  18438. height: math.unit(6 + 5 / 12, "feet"),
  18439. weight: math.unit(580, "lb"),
  18440. name: "Front",
  18441. image: {
  18442. source: "./media/characters/atlas/front.svg",
  18443. extra: 298.5 / 290,
  18444. bottom: 0.015
  18445. }
  18446. },
  18447. },
  18448. [
  18449. {
  18450. name: "Normal",
  18451. height: math.unit(6 + 5 / 12, "feet"),
  18452. default: true
  18453. },
  18454. ]
  18455. ))
  18456. characterMakers.push(() => makeCharacter(
  18457. { name: "Davy", species: ["cat"], tags: ["feral"] },
  18458. {
  18459. side: {
  18460. height: math.unit(15.6, "inches"),
  18461. weight: math.unit(10, "lb"),
  18462. name: "Side",
  18463. image: {
  18464. source: "./media/characters/davy/side.svg",
  18465. extra: 200 / 170,
  18466. bottom: 0.01
  18467. }
  18468. },
  18469. },
  18470. [
  18471. {
  18472. name: "Normal",
  18473. height: math.unit(15.6, "inches"),
  18474. default: true
  18475. },
  18476. ]
  18477. ))
  18478. characterMakers.push(() => makeCharacter(
  18479. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  18480. {
  18481. side: {
  18482. height: math.unit(4 + 8 / 12, "feet"),
  18483. weight: math.unit(166, "lb"),
  18484. name: "Side",
  18485. image: {
  18486. source: "./media/characters/fiona/side.svg",
  18487. extra: 232 / 220,
  18488. bottom: 0.03
  18489. }
  18490. },
  18491. },
  18492. [
  18493. {
  18494. name: "Normal",
  18495. height: math.unit(4 + 8 / 12, "feet"),
  18496. default: true
  18497. },
  18498. ]
  18499. ))
  18500. characterMakers.push(() => makeCharacter(
  18501. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  18502. {
  18503. front: {
  18504. height: math.unit(26, "inches"),
  18505. weight: math.unit(35, "lb"),
  18506. name: "Front",
  18507. image: {
  18508. source: "./media/characters/lyla/front.svg",
  18509. bottom: 0.1
  18510. }
  18511. },
  18512. },
  18513. [
  18514. {
  18515. name: "Normal",
  18516. height: math.unit(3, "feet"),
  18517. default: true
  18518. },
  18519. ]
  18520. ))
  18521. characterMakers.push(() => makeCharacter(
  18522. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  18523. {
  18524. side: {
  18525. height: math.unit(1.8, "feet"),
  18526. weight: math.unit(44, "lb"),
  18527. name: "Side",
  18528. image: {
  18529. source: "./media/characters/perseus/side.svg",
  18530. bottom: 0.21
  18531. }
  18532. },
  18533. },
  18534. [
  18535. {
  18536. name: "Normal",
  18537. height: math.unit(1.8, "feet"),
  18538. default: true
  18539. },
  18540. ]
  18541. ))
  18542. characterMakers.push(() => makeCharacter(
  18543. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  18544. {
  18545. side: {
  18546. height: math.unit(4 + 2 / 12, "feet"),
  18547. weight: math.unit(20, "lb"),
  18548. name: "Side",
  18549. image: {
  18550. source: "./media/characters/remus/side.svg"
  18551. }
  18552. },
  18553. },
  18554. [
  18555. {
  18556. name: "Normal",
  18557. height: math.unit(4 + 2 / 12, "feet"),
  18558. default: true
  18559. },
  18560. ]
  18561. ))
  18562. characterMakers.push(() => makeCharacter(
  18563. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  18564. {
  18565. front: {
  18566. height: math.unit(4 + 11 / 12, "feet"),
  18567. weight: math.unit(114, "lb"),
  18568. name: "Front",
  18569. image: {
  18570. source: "./media/characters/raf/front.svg",
  18571. extra: 1504/1339,
  18572. bottom: 26/1530
  18573. }
  18574. },
  18575. side: {
  18576. height: math.unit(4 + 11 / 12, "feet"),
  18577. weight: math.unit(114, "lb"),
  18578. name: "Side",
  18579. image: {
  18580. source: "./media/characters/raf/side.svg",
  18581. extra: 1466/1316,
  18582. bottom: 29/1495
  18583. }
  18584. },
  18585. paw: {
  18586. height: math.unit(1.45, "feet"),
  18587. name: "Paw",
  18588. image: {
  18589. source: "./media/characters/raf/paw.svg"
  18590. },
  18591. extraAttributes: {
  18592. "toeSize": {
  18593. name: "Toe Size",
  18594. power: 2,
  18595. type: "area",
  18596. base: math.unit(0.004, "m^2")
  18597. },
  18598. "padSize": {
  18599. name: "Pad Size",
  18600. power: 2,
  18601. type: "area",
  18602. base: math.unit(0.04, "m^2")
  18603. },
  18604. "footSize": {
  18605. name: "Foot Size",
  18606. power: 2,
  18607. type: "area",
  18608. base: math.unit(0.08, "m^2")
  18609. },
  18610. }
  18611. },
  18612. },
  18613. [
  18614. {
  18615. name: "Micro",
  18616. height: math.unit(2, "inches")
  18617. },
  18618. {
  18619. name: "Normal",
  18620. height: math.unit(4 + 11 / 12, "feet"),
  18621. default: true
  18622. },
  18623. {
  18624. name: "Macro",
  18625. height: math.unit(70, "feet")
  18626. },
  18627. ]
  18628. ))
  18629. characterMakers.push(() => makeCharacter(
  18630. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  18631. {
  18632. front: {
  18633. height: math.unit(1.5, "meters"),
  18634. weight: math.unit(68, "kg"),
  18635. name: "Front",
  18636. image: {
  18637. source: "./media/characters/liam-einarr/front.svg",
  18638. extra: 2822 / 2666
  18639. }
  18640. },
  18641. back: {
  18642. height: math.unit(1.5, "meters"),
  18643. weight: math.unit(68, "kg"),
  18644. name: "Back",
  18645. image: {
  18646. source: "./media/characters/liam-einarr/back.svg",
  18647. extra: 2822 / 2666,
  18648. bottom: 0.015
  18649. }
  18650. },
  18651. },
  18652. [
  18653. {
  18654. name: "Normal",
  18655. height: math.unit(1.5, "meters"),
  18656. default: true
  18657. },
  18658. {
  18659. name: "Macro",
  18660. height: math.unit(150, "meters")
  18661. },
  18662. {
  18663. name: "Megamacro",
  18664. height: math.unit(35, "km")
  18665. },
  18666. ]
  18667. ))
  18668. characterMakers.push(() => makeCharacter(
  18669. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  18670. {
  18671. front: {
  18672. height: math.unit(6, "feet"),
  18673. weight: math.unit(75, "kg"),
  18674. name: "Front",
  18675. image: {
  18676. source: "./media/characters/linda/front.svg",
  18677. extra: 930 / 874,
  18678. bottom: 0.004
  18679. }
  18680. },
  18681. },
  18682. [
  18683. {
  18684. name: "Normal",
  18685. height: math.unit(6, "feet"),
  18686. default: true
  18687. },
  18688. ]
  18689. ))
  18690. characterMakers.push(() => makeCharacter(
  18691. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  18692. {
  18693. front: {
  18694. height: math.unit(6 + 8 / 12, "feet"),
  18695. weight: math.unit(220, "lb"),
  18696. name: "Front",
  18697. image: {
  18698. source: "./media/characters/caylex/front.svg",
  18699. extra: 821 / 772,
  18700. bottom: 0.07
  18701. }
  18702. },
  18703. back: {
  18704. height: math.unit(6 + 8 / 12, "feet"),
  18705. weight: math.unit(220, "lb"),
  18706. name: "Back",
  18707. image: {
  18708. source: "./media/characters/caylex/back.svg",
  18709. extra: 821 / 772,
  18710. bottom: 0.022
  18711. }
  18712. },
  18713. hand: {
  18714. height: math.unit(1.25, "feet"),
  18715. name: "Hand",
  18716. image: {
  18717. source: "./media/characters/caylex/hand.svg"
  18718. }
  18719. },
  18720. foot: {
  18721. height: math.unit(1.6, "feet"),
  18722. name: "Foot",
  18723. image: {
  18724. source: "./media/characters/caylex/foot.svg"
  18725. }
  18726. },
  18727. armored: {
  18728. height: math.unit(6 + 8 / 12, "feet"),
  18729. weight: math.unit(250, "lb"),
  18730. name: "Armored",
  18731. image: {
  18732. source: "./media/characters/caylex/armored.svg",
  18733. extra: 1420 / 1310,
  18734. bottom: 0.045
  18735. }
  18736. },
  18737. },
  18738. [
  18739. {
  18740. name: "Normal",
  18741. height: math.unit(6 + 8 / 12, "feet"),
  18742. default: true
  18743. },
  18744. {
  18745. name: "Normal+",
  18746. height: math.unit(12, "feet")
  18747. },
  18748. ]
  18749. ))
  18750. characterMakers.push(() => makeCharacter(
  18751. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  18752. {
  18753. front: {
  18754. height: math.unit(7 + 6 / 12, "feet"),
  18755. weight: math.unit(288, "lb"),
  18756. name: "Front",
  18757. image: {
  18758. source: "./media/characters/alana/front.svg",
  18759. extra: 679 / 653,
  18760. bottom: 22.5 / 701
  18761. }
  18762. },
  18763. },
  18764. [
  18765. {
  18766. name: "Normal",
  18767. height: math.unit(7 + 6 / 12, "feet")
  18768. },
  18769. {
  18770. name: "Large",
  18771. height: math.unit(50, "feet")
  18772. },
  18773. {
  18774. name: "Macro",
  18775. height: math.unit(100, "feet"),
  18776. default: true
  18777. },
  18778. {
  18779. name: "Macro+",
  18780. height: math.unit(200, "feet")
  18781. },
  18782. ]
  18783. ))
  18784. characterMakers.push(() => makeCharacter(
  18785. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  18786. {
  18787. front: {
  18788. height: math.unit(6 + 1 / 12, "feet"),
  18789. weight: math.unit(210, "lb"),
  18790. name: "Front",
  18791. image: {
  18792. source: "./media/characters/hasani/front.svg",
  18793. extra: 244 / 232,
  18794. bottom: 0.01
  18795. }
  18796. },
  18797. back: {
  18798. height: math.unit(6 + 1 / 12, "feet"),
  18799. weight: math.unit(210, "lb"),
  18800. name: "Back",
  18801. image: {
  18802. source: "./media/characters/hasani/back.svg",
  18803. extra: 244 / 232,
  18804. bottom: 0.01
  18805. }
  18806. },
  18807. },
  18808. [
  18809. {
  18810. name: "Normal",
  18811. height: math.unit(6 + 1 / 12, "feet")
  18812. },
  18813. {
  18814. name: "Macro",
  18815. height: math.unit(175, "feet"),
  18816. default: true
  18817. },
  18818. ]
  18819. ))
  18820. characterMakers.push(() => makeCharacter(
  18821. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  18822. {
  18823. front: {
  18824. height: math.unit(1.82, "meters"),
  18825. weight: math.unit(140, "lb"),
  18826. name: "Front",
  18827. image: {
  18828. source: "./media/characters/nita/front.svg",
  18829. extra: 2473 / 2363,
  18830. bottom: 0.01
  18831. }
  18832. },
  18833. },
  18834. [
  18835. {
  18836. name: "Normal",
  18837. height: math.unit(1.82, "m")
  18838. },
  18839. {
  18840. name: "Macro",
  18841. height: math.unit(300, "m")
  18842. },
  18843. {
  18844. name: "Mistake Canon",
  18845. height: math.unit(0.5, "miles"),
  18846. default: true
  18847. },
  18848. {
  18849. name: "Big Mistake",
  18850. height: math.unit(13, "miles")
  18851. },
  18852. {
  18853. name: "Playing God",
  18854. height: math.unit(2450, "miles")
  18855. },
  18856. ]
  18857. ))
  18858. characterMakers.push(() => makeCharacter(
  18859. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  18860. {
  18861. front: {
  18862. height: math.unit(4, "feet"),
  18863. weight: math.unit(120, "lb"),
  18864. name: "Front",
  18865. image: {
  18866. source: "./media/characters/shiriko/front.svg",
  18867. extra: 970/934,
  18868. bottom: 5/975
  18869. }
  18870. },
  18871. },
  18872. [
  18873. {
  18874. name: "Normal",
  18875. height: math.unit(4, "feet"),
  18876. default: true
  18877. },
  18878. ]
  18879. ))
  18880. characterMakers.push(() => makeCharacter(
  18881. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  18882. {
  18883. front: {
  18884. height: math.unit(6, "feet"),
  18885. name: "front",
  18886. image: {
  18887. source: "./media/characters/deja/front.svg",
  18888. extra: 926 / 840,
  18889. bottom: 0.07
  18890. }
  18891. },
  18892. },
  18893. [
  18894. {
  18895. name: "Planck Length",
  18896. height: math.unit(1.6e-35, "meters")
  18897. },
  18898. {
  18899. name: "Normal",
  18900. height: math.unit(30.48, "meters"),
  18901. default: true
  18902. },
  18903. {
  18904. name: "Universal",
  18905. height: math.unit(8.8e26, "meters")
  18906. },
  18907. ]
  18908. ))
  18909. characterMakers.push(() => makeCharacter(
  18910. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  18911. {
  18912. side: {
  18913. height: math.unit(8, "feet"),
  18914. weight: math.unit(6300, "lb"),
  18915. name: "Side",
  18916. image: {
  18917. source: "./media/characters/anima/side.svg",
  18918. bottom: 0.035
  18919. }
  18920. },
  18921. },
  18922. [
  18923. {
  18924. name: "Normal",
  18925. height: math.unit(8, "feet"),
  18926. default: true
  18927. },
  18928. ]
  18929. ))
  18930. characterMakers.push(() => makeCharacter(
  18931. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  18932. {
  18933. front: {
  18934. height: math.unit(8, "feet"),
  18935. weight: math.unit(350, "lb"),
  18936. name: "Front",
  18937. image: {
  18938. source: "./media/characters/bianca/front.svg",
  18939. extra: 234 / 225,
  18940. bottom: 0.03
  18941. }
  18942. },
  18943. },
  18944. [
  18945. {
  18946. name: "Normal",
  18947. height: math.unit(8, "feet"),
  18948. default: true
  18949. },
  18950. ]
  18951. ))
  18952. characterMakers.push(() => makeCharacter(
  18953. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  18954. {
  18955. front: {
  18956. height: math.unit(11 + 5/12, "feet"),
  18957. weight: math.unit(1200, "lb"),
  18958. name: "Front",
  18959. image: {
  18960. source: "./media/characters/adinia/front.svg",
  18961. extra: 1767/1641,
  18962. bottom: 44/1811
  18963. },
  18964. extraAttributes: {
  18965. "energyIntake": {
  18966. name: "Energy Intake",
  18967. power: 3,
  18968. type: "energy",
  18969. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18970. },
  18971. }
  18972. },
  18973. back: {
  18974. height: math.unit(11 + 5/12, "feet"),
  18975. weight: math.unit(1200, "lb"),
  18976. name: "Back",
  18977. image: {
  18978. source: "./media/characters/adinia/back.svg",
  18979. extra: 1834/1684,
  18980. bottom: 14/1848
  18981. },
  18982. extraAttributes: {
  18983. "energyIntake": {
  18984. name: "Energy Intake",
  18985. power: 3,
  18986. type: "energy",
  18987. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18988. },
  18989. }
  18990. },
  18991. maw: {
  18992. height: math.unit(3.79, "feet"),
  18993. name: "Maw",
  18994. image: {
  18995. source: "./media/characters/adinia/maw.svg"
  18996. }
  18997. },
  18998. rump: {
  18999. height: math.unit(4.6, "feet"),
  19000. name: "Rump",
  19001. image: {
  19002. source: "./media/characters/adinia/rump.svg"
  19003. }
  19004. },
  19005. },
  19006. [
  19007. {
  19008. name: "Normal",
  19009. height: math.unit(11 + 5 / 12, "feet"),
  19010. default: true
  19011. },
  19012. ]
  19013. ))
  19014. characterMakers.push(() => makeCharacter(
  19015. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  19016. {
  19017. front: {
  19018. height: math.unit(3, "meters"),
  19019. weight: math.unit(200, "kg"),
  19020. name: "Front",
  19021. image: {
  19022. source: "./media/characters/lykasa/front.svg",
  19023. extra: 1076 / 976,
  19024. bottom: 0.06
  19025. }
  19026. },
  19027. },
  19028. [
  19029. {
  19030. name: "Normal",
  19031. height: math.unit(3, "meters")
  19032. },
  19033. {
  19034. name: "Kaiju",
  19035. height: math.unit(120, "meters"),
  19036. default: true
  19037. },
  19038. {
  19039. name: "Mega Kaiju",
  19040. height: math.unit(240, "km")
  19041. },
  19042. {
  19043. name: "Giga Kaiju",
  19044. height: math.unit(400, "megameters")
  19045. },
  19046. {
  19047. name: "Tera Kaiju",
  19048. height: math.unit(800, "gigameters")
  19049. },
  19050. {
  19051. name: "Kaiju Dragon Goddess",
  19052. height: math.unit(26, "zettaparsecs")
  19053. },
  19054. ]
  19055. ))
  19056. characterMakers.push(() => makeCharacter(
  19057. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  19058. {
  19059. side: {
  19060. height: math.unit(283 / 124 * 6, "feet"),
  19061. weight: math.unit(35000, "lb"),
  19062. name: "Side",
  19063. image: {
  19064. source: "./media/characters/malfaren/side.svg",
  19065. extra: 1310/529,
  19066. bottom: 24/1334
  19067. }
  19068. },
  19069. front: {
  19070. height: math.unit(22.36, "feet"),
  19071. weight: math.unit(35000, "lb"),
  19072. name: "Front",
  19073. image: {
  19074. source: "./media/characters/malfaren/front.svg",
  19075. extra: 1237/1115,
  19076. bottom: 32/1269
  19077. }
  19078. },
  19079. maw: {
  19080. height: math.unit(6.9, "feet"),
  19081. name: "Maw",
  19082. image: {
  19083. source: "./media/characters/malfaren/maw.svg"
  19084. }
  19085. },
  19086. dick: {
  19087. height: math.unit(6.19, "feet"),
  19088. name: "Dick",
  19089. image: {
  19090. source: "./media/characters/malfaren/dick.svg"
  19091. }
  19092. },
  19093. eye: {
  19094. height: math.unit(0.69, "feet"),
  19095. name: "Eye",
  19096. image: {
  19097. source: "./media/characters/malfaren/eye.svg"
  19098. }
  19099. },
  19100. },
  19101. [
  19102. {
  19103. name: "Big",
  19104. height: math.unit(283 / 162 * 6, "feet"),
  19105. },
  19106. {
  19107. name: "Bigger",
  19108. height: math.unit(283 / 124 * 6, "feet")
  19109. },
  19110. {
  19111. name: "Massive",
  19112. height: math.unit(283 / 92 * 6, "feet"),
  19113. default: true
  19114. },
  19115. {
  19116. name: "👀💦",
  19117. height: math.unit(283 / 73 * 6, "feet"),
  19118. },
  19119. ]
  19120. ))
  19121. characterMakers.push(() => makeCharacter(
  19122. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  19123. {
  19124. front: {
  19125. height: math.unit(1.7, "m"),
  19126. weight: math.unit(70, "kg"),
  19127. name: "Front",
  19128. image: {
  19129. source: "./media/characters/kernel/front.svg",
  19130. extra: 222 / 210,
  19131. bottom: 0.007
  19132. }
  19133. },
  19134. },
  19135. [
  19136. {
  19137. name: "Nano",
  19138. height: math.unit(17, "micrometers")
  19139. },
  19140. {
  19141. name: "Micro",
  19142. height: math.unit(1.7, "mm")
  19143. },
  19144. {
  19145. name: "Small",
  19146. height: math.unit(1.7, "cm")
  19147. },
  19148. {
  19149. name: "Normal",
  19150. height: math.unit(1.7, "m"),
  19151. default: true
  19152. },
  19153. ]
  19154. ))
  19155. characterMakers.push(() => makeCharacter(
  19156. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  19157. {
  19158. front: {
  19159. height: math.unit(1.75, "meters"),
  19160. weight: math.unit(65, "kg"),
  19161. name: "Front",
  19162. image: {
  19163. source: "./media/characters/jayne-folest/front.svg",
  19164. extra: 2115 / 2007,
  19165. bottom: 0.02
  19166. }
  19167. },
  19168. back: {
  19169. height: math.unit(1.75, "meters"),
  19170. weight: math.unit(65, "kg"),
  19171. name: "Back",
  19172. image: {
  19173. source: "./media/characters/jayne-folest/back.svg",
  19174. extra: 2115 / 2007,
  19175. bottom: 0.005
  19176. }
  19177. },
  19178. frontClothed: {
  19179. height: math.unit(1.75, "meters"),
  19180. weight: math.unit(65, "kg"),
  19181. name: "Front (Clothed)",
  19182. image: {
  19183. source: "./media/characters/jayne-folest/front-clothed.svg",
  19184. extra: 2115 / 2007,
  19185. bottom: 0.035
  19186. }
  19187. },
  19188. hand: {
  19189. height: math.unit(1 / 1.260, "feet"),
  19190. name: "Hand",
  19191. image: {
  19192. source: "./media/characters/jayne-folest/hand.svg"
  19193. }
  19194. },
  19195. foot: {
  19196. height: math.unit(1 / 0.918, "feet"),
  19197. name: "Foot",
  19198. image: {
  19199. source: "./media/characters/jayne-folest/foot.svg"
  19200. }
  19201. },
  19202. },
  19203. [
  19204. {
  19205. name: "Micro",
  19206. height: math.unit(4, "cm")
  19207. },
  19208. {
  19209. name: "Normal",
  19210. height: math.unit(1.75, "meters")
  19211. },
  19212. {
  19213. name: "Macro",
  19214. height: math.unit(47.5, "meters"),
  19215. default: true
  19216. },
  19217. ]
  19218. ))
  19219. characterMakers.push(() => makeCharacter(
  19220. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  19221. {
  19222. front: {
  19223. height: math.unit(180, "cm"),
  19224. weight: math.unit(70, "kg"),
  19225. name: "Front",
  19226. image: {
  19227. source: "./media/characters/algier/front.svg",
  19228. extra: 596 / 572,
  19229. bottom: 0.04
  19230. }
  19231. },
  19232. back: {
  19233. height: math.unit(180, "cm"),
  19234. weight: math.unit(70, "kg"),
  19235. name: "Back",
  19236. image: {
  19237. source: "./media/characters/algier/back.svg",
  19238. extra: 596 / 572,
  19239. bottom: 0.025
  19240. }
  19241. },
  19242. frontdressed: {
  19243. height: math.unit(180, "cm"),
  19244. weight: math.unit(150, "kg"),
  19245. name: "Front-dressed",
  19246. image: {
  19247. source: "./media/characters/algier/front-dressed.svg",
  19248. extra: 596 / 572,
  19249. bottom: 0.038
  19250. }
  19251. },
  19252. },
  19253. [
  19254. {
  19255. name: "Micro",
  19256. height: math.unit(5, "cm")
  19257. },
  19258. {
  19259. name: "Normal",
  19260. height: math.unit(180, "cm"),
  19261. default: true
  19262. },
  19263. {
  19264. name: "Macro",
  19265. height: math.unit(64, "m")
  19266. },
  19267. ]
  19268. ))
  19269. characterMakers.push(() => makeCharacter(
  19270. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  19271. {
  19272. upright: {
  19273. height: math.unit(7, "feet"),
  19274. weight: math.unit(300, "lb"),
  19275. name: "Upright",
  19276. image: {
  19277. source: "./media/characters/pretzel/upright.svg",
  19278. extra: 534 / 522,
  19279. bottom: 0.065
  19280. }
  19281. },
  19282. sprawling: {
  19283. height: math.unit(3.75, "feet"),
  19284. weight: math.unit(300, "lb"),
  19285. name: "Sprawling",
  19286. image: {
  19287. source: "./media/characters/pretzel/sprawling.svg",
  19288. extra: 314 / 281,
  19289. bottom: 0.1
  19290. }
  19291. },
  19292. tongue: {
  19293. height: math.unit(2, "feet"),
  19294. name: "Tongue",
  19295. image: {
  19296. source: "./media/characters/pretzel/tongue.svg"
  19297. }
  19298. },
  19299. },
  19300. [
  19301. {
  19302. name: "Normal",
  19303. height: math.unit(7, "feet"),
  19304. default: true
  19305. },
  19306. {
  19307. name: "Oversized",
  19308. height: math.unit(15, "feet")
  19309. },
  19310. {
  19311. name: "Huge",
  19312. height: math.unit(30, "feet")
  19313. },
  19314. {
  19315. name: "Macro",
  19316. height: math.unit(250, "feet")
  19317. },
  19318. ]
  19319. ))
  19320. characterMakers.push(() => makeCharacter(
  19321. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  19322. {
  19323. sideFront: {
  19324. height: math.unit(5 + 2 / 12, "feet"),
  19325. weight: math.unit(120, "lb"),
  19326. name: "Front Side",
  19327. image: {
  19328. source: "./media/characters/roxi/side-front.svg",
  19329. extra: 2924 / 2717,
  19330. bottom: 0.08
  19331. }
  19332. },
  19333. sideBack: {
  19334. height: math.unit(5 + 2 / 12, "feet"),
  19335. weight: math.unit(120, "lb"),
  19336. name: "Back Side",
  19337. image: {
  19338. source: "./media/characters/roxi/side-back.svg",
  19339. extra: 2904 / 2693,
  19340. bottom: 0.06
  19341. }
  19342. },
  19343. front: {
  19344. height: math.unit(5 + 2 / 12, "feet"),
  19345. weight: math.unit(120, "lb"),
  19346. name: "Front",
  19347. image: {
  19348. source: "./media/characters/roxi/front.svg",
  19349. extra: 2028 / 1907,
  19350. bottom: 0.01
  19351. }
  19352. },
  19353. frontAlt: {
  19354. height: math.unit(5 + 2 / 12, "feet"),
  19355. weight: math.unit(120, "lb"),
  19356. name: "Front (Alt)",
  19357. image: {
  19358. source: "./media/characters/roxi/front-alt.svg",
  19359. extra: 1828 / 1798,
  19360. bottom: 0.01
  19361. }
  19362. },
  19363. sitting: {
  19364. height: math.unit(2.8, "feet"),
  19365. weight: math.unit(120, "lb"),
  19366. name: "Sitting",
  19367. image: {
  19368. source: "./media/characters/roxi/sitting.svg",
  19369. extra: 2660 / 2462,
  19370. bottom: 0.1
  19371. }
  19372. },
  19373. },
  19374. [
  19375. {
  19376. name: "Normal",
  19377. height: math.unit(5 + 2 / 12, "feet"),
  19378. default: true
  19379. },
  19380. ]
  19381. ))
  19382. characterMakers.push(() => makeCharacter(
  19383. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  19384. {
  19385. side: {
  19386. height: math.unit(55, "feet"),
  19387. weight: math.unit(153, "tons"),
  19388. name: "Side",
  19389. image: {
  19390. source: "./media/characters/shadow/side.svg",
  19391. extra: 701 / 628,
  19392. bottom: 0.02
  19393. }
  19394. },
  19395. flying: {
  19396. height: math.unit(145, "feet"),
  19397. weight: math.unit(153, "tons"),
  19398. name: "Flying",
  19399. image: {
  19400. source: "./media/characters/shadow/flying.svg"
  19401. }
  19402. },
  19403. },
  19404. [
  19405. {
  19406. name: "Normal",
  19407. height: math.unit(55, "feet"),
  19408. default: true
  19409. },
  19410. ]
  19411. ))
  19412. characterMakers.push(() => makeCharacter(
  19413. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  19414. {
  19415. front: {
  19416. height: math.unit(6, "feet"),
  19417. weight: math.unit(200, "lb"),
  19418. name: "Front",
  19419. image: {
  19420. source: "./media/characters/marcie/front.svg",
  19421. extra: 960 / 876,
  19422. bottom: 58 / 1017.87
  19423. }
  19424. },
  19425. },
  19426. [
  19427. {
  19428. name: "Macro",
  19429. height: math.unit(1, "mile"),
  19430. default: true
  19431. },
  19432. ]
  19433. ))
  19434. characterMakers.push(() => makeCharacter(
  19435. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  19436. {
  19437. front: {
  19438. height: math.unit(7, "feet"),
  19439. weight: math.unit(200, "lb"),
  19440. name: "Front",
  19441. image: {
  19442. source: "./media/characters/kachina/front.svg",
  19443. extra: 1290.68 / 1119,
  19444. bottom: 36.5 / 1327.18
  19445. }
  19446. },
  19447. },
  19448. [
  19449. {
  19450. name: "Normal",
  19451. height: math.unit(7, "feet"),
  19452. default: true
  19453. },
  19454. ]
  19455. ))
  19456. characterMakers.push(() => makeCharacter(
  19457. { name: "Kash", species: ["canine"], tags: ["feral"] },
  19458. {
  19459. looking: {
  19460. height: math.unit(2, "meters"),
  19461. weight: math.unit(300, "kg"),
  19462. name: "Looking",
  19463. image: {
  19464. source: "./media/characters/kash/looking.svg",
  19465. extra: 474 / 344,
  19466. bottom: 0.03
  19467. }
  19468. },
  19469. side: {
  19470. height: math.unit(2, "meters"),
  19471. weight: math.unit(300, "kg"),
  19472. name: "Side",
  19473. image: {
  19474. source: "./media/characters/kash/side.svg",
  19475. extra: 302 / 251,
  19476. bottom: 0.03
  19477. }
  19478. },
  19479. front: {
  19480. height: math.unit(2, "meters"),
  19481. weight: math.unit(300, "kg"),
  19482. name: "Front",
  19483. image: {
  19484. source: "./media/characters/kash/front.svg",
  19485. extra: 495 / 360,
  19486. bottom: 0.015
  19487. }
  19488. },
  19489. },
  19490. [
  19491. {
  19492. name: "Normal",
  19493. height: math.unit(2, "meters"),
  19494. default: true
  19495. },
  19496. {
  19497. name: "Big",
  19498. height: math.unit(3, "meters")
  19499. },
  19500. {
  19501. name: "Large",
  19502. height: math.unit(5, "meters")
  19503. },
  19504. ]
  19505. ))
  19506. characterMakers.push(() => makeCharacter(
  19507. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  19508. {
  19509. feeding: {
  19510. height: math.unit(6.7, "feet"),
  19511. weight: math.unit(350, "lb"),
  19512. name: "Feeding",
  19513. image: {
  19514. source: "./media/characters/lalim/feeding.svg",
  19515. }
  19516. },
  19517. },
  19518. [
  19519. {
  19520. name: "Normal",
  19521. height: math.unit(6.7, "feet"),
  19522. default: true
  19523. },
  19524. ]
  19525. ))
  19526. characterMakers.push(() => makeCharacter(
  19527. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  19528. {
  19529. front: {
  19530. height: math.unit(9.5, "feet"),
  19531. weight: math.unit(600, "lb"),
  19532. name: "Front",
  19533. image: {
  19534. source: "./media/characters/de'vout/front.svg",
  19535. extra: 1443 / 1328,
  19536. bottom: 0.025
  19537. }
  19538. },
  19539. back: {
  19540. height: math.unit(9.5, "feet"),
  19541. weight: math.unit(600, "lb"),
  19542. name: "Back",
  19543. image: {
  19544. source: "./media/characters/de'vout/back.svg",
  19545. extra: 1443 / 1328
  19546. }
  19547. },
  19548. frontDressed: {
  19549. height: math.unit(9.5, "feet"),
  19550. weight: math.unit(600, "lb"),
  19551. name: "Front (Dressed",
  19552. image: {
  19553. source: "./media/characters/de'vout/front-dressed.svg",
  19554. extra: 1443 / 1328,
  19555. bottom: 0.025
  19556. }
  19557. },
  19558. backDressed: {
  19559. height: math.unit(9.5, "feet"),
  19560. weight: math.unit(600, "lb"),
  19561. name: "Back (Dressed",
  19562. image: {
  19563. source: "./media/characters/de'vout/back-dressed.svg",
  19564. extra: 1443 / 1328
  19565. }
  19566. },
  19567. },
  19568. [
  19569. {
  19570. name: "Normal",
  19571. height: math.unit(9.5, "feet"),
  19572. default: true
  19573. },
  19574. ]
  19575. ))
  19576. characterMakers.push(() => makeCharacter(
  19577. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  19578. {
  19579. front: {
  19580. height: math.unit(8, "feet"),
  19581. weight: math.unit(225, "lb"),
  19582. name: "Front",
  19583. image: {
  19584. source: "./media/characters/talana/front.svg",
  19585. extra: 1410 / 1300,
  19586. bottom: 0.015
  19587. }
  19588. },
  19589. frontDressed: {
  19590. height: math.unit(8, "feet"),
  19591. weight: math.unit(225, "lb"),
  19592. name: "Front (Dressed",
  19593. image: {
  19594. source: "./media/characters/talana/front-dressed.svg",
  19595. extra: 1410 / 1300,
  19596. bottom: 0.015
  19597. }
  19598. },
  19599. },
  19600. [
  19601. {
  19602. name: "Normal",
  19603. height: math.unit(8, "feet"),
  19604. default: true
  19605. },
  19606. ]
  19607. ))
  19608. characterMakers.push(() => makeCharacter(
  19609. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19610. {
  19611. side: {
  19612. height: math.unit(7.2, "feet"),
  19613. weight: math.unit(150, "lb"),
  19614. name: "Side",
  19615. image: {
  19616. source: "./media/characters/xeauvok/side.svg",
  19617. extra: 1975 / 1523,
  19618. bottom: 0.07
  19619. }
  19620. },
  19621. },
  19622. [
  19623. {
  19624. name: "Normal",
  19625. height: math.unit(7.2, "feet"),
  19626. default: true
  19627. },
  19628. ]
  19629. ))
  19630. characterMakers.push(() => makeCharacter(
  19631. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  19632. {
  19633. side: {
  19634. height: math.unit(4, "meters"),
  19635. weight: math.unit(2200, "kg"),
  19636. name: "Side",
  19637. image: {
  19638. source: "./media/characters/zara/side.svg",
  19639. extra: 765/744,
  19640. bottom: 156/921
  19641. }
  19642. },
  19643. },
  19644. [
  19645. {
  19646. name: "Normal",
  19647. height: math.unit(4, "meters"),
  19648. default: true
  19649. },
  19650. ]
  19651. ))
  19652. characterMakers.push(() => makeCharacter(
  19653. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  19654. {
  19655. side: {
  19656. height: math.unit(6, "feet"),
  19657. weight: math.unit(150, "lb"),
  19658. name: "Side",
  19659. image: {
  19660. source: "./media/characters/richard-dragon/side.svg",
  19661. extra: 845 / 340,
  19662. bottom: 0.017
  19663. }
  19664. },
  19665. maw: {
  19666. height: math.unit(2.97, "feet"),
  19667. name: "Maw",
  19668. image: {
  19669. source: "./media/characters/richard-dragon/maw.svg"
  19670. }
  19671. },
  19672. },
  19673. [
  19674. ]
  19675. ))
  19676. characterMakers.push(() => makeCharacter(
  19677. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  19678. {
  19679. front: {
  19680. height: math.unit(4, "feet"),
  19681. weight: math.unit(100, "lb"),
  19682. name: "Front",
  19683. image: {
  19684. source: "./media/characters/richard-smeargle/front.svg",
  19685. extra: 2952 / 2820,
  19686. bottom: 0.028
  19687. }
  19688. },
  19689. },
  19690. [
  19691. {
  19692. name: "Normal",
  19693. height: math.unit(4, "feet"),
  19694. default: true
  19695. },
  19696. {
  19697. name: "Dynamax",
  19698. height: math.unit(20, "meters")
  19699. },
  19700. ]
  19701. ))
  19702. characterMakers.push(() => makeCharacter(
  19703. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  19704. {
  19705. front: {
  19706. height: math.unit(6, "feet"),
  19707. weight: math.unit(110, "lb"),
  19708. name: "Front",
  19709. image: {
  19710. source: "./media/characters/klay/front.svg",
  19711. extra: 962 / 883,
  19712. bottom: 0.04
  19713. }
  19714. },
  19715. back: {
  19716. height: math.unit(6, "feet"),
  19717. weight: math.unit(110, "lb"),
  19718. name: "Back",
  19719. image: {
  19720. source: "./media/characters/klay/back.svg",
  19721. extra: 962 / 883
  19722. }
  19723. },
  19724. beans: {
  19725. height: math.unit(1.15, "feet"),
  19726. name: "Beans",
  19727. image: {
  19728. source: "./media/characters/klay/beans.svg"
  19729. }
  19730. },
  19731. },
  19732. [
  19733. {
  19734. name: "Micro",
  19735. height: math.unit(6, "inches")
  19736. },
  19737. {
  19738. name: "Mini",
  19739. height: math.unit(3, "feet")
  19740. },
  19741. {
  19742. name: "Normal",
  19743. height: math.unit(6, "feet"),
  19744. default: true
  19745. },
  19746. {
  19747. name: "Big",
  19748. height: math.unit(25, "feet")
  19749. },
  19750. {
  19751. name: "Macro",
  19752. height: math.unit(100, "feet")
  19753. },
  19754. {
  19755. name: "Megamacro",
  19756. height: math.unit(400, "feet")
  19757. },
  19758. ]
  19759. ))
  19760. characterMakers.push(() => makeCharacter(
  19761. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  19762. {
  19763. front: {
  19764. height: math.unit(6, "feet"),
  19765. weight: math.unit(160, "lb"),
  19766. name: "Front",
  19767. image: {
  19768. source: "./media/characters/marcus/front.svg",
  19769. extra: 734 / 676,
  19770. bottom: 0.03
  19771. }
  19772. },
  19773. },
  19774. [
  19775. {
  19776. name: "Little",
  19777. height: math.unit(6, "feet")
  19778. },
  19779. {
  19780. name: "Normal",
  19781. height: math.unit(110, "feet"),
  19782. default: true
  19783. },
  19784. {
  19785. name: "Macro",
  19786. height: math.unit(250, "feet")
  19787. },
  19788. {
  19789. name: "Megamacro",
  19790. height: math.unit(1000, "feet")
  19791. },
  19792. ]
  19793. ))
  19794. characterMakers.push(() => makeCharacter(
  19795. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  19796. {
  19797. front: {
  19798. height: math.unit(7, "feet"),
  19799. weight: math.unit(275, "lb"),
  19800. name: "Front",
  19801. image: {
  19802. source: "./media/characters/claude-delroute/front.svg",
  19803. extra: 902/827,
  19804. bottom: 26/928
  19805. }
  19806. },
  19807. side: {
  19808. height: math.unit(7, "feet"),
  19809. weight: math.unit(275, "lb"),
  19810. name: "Side",
  19811. image: {
  19812. source: "./media/characters/claude-delroute/side.svg",
  19813. extra: 908/853,
  19814. bottom: 16/924
  19815. }
  19816. },
  19817. back: {
  19818. height: math.unit(7, "feet"),
  19819. weight: math.unit(275, "lb"),
  19820. name: "Back",
  19821. image: {
  19822. source: "./media/characters/claude-delroute/back.svg",
  19823. extra: 911/829,
  19824. bottom: 18/929
  19825. }
  19826. },
  19827. maw: {
  19828. height: math.unit(0.6407, "meters"),
  19829. name: "Maw",
  19830. image: {
  19831. source: "./media/characters/claude-delroute/maw.svg"
  19832. }
  19833. },
  19834. },
  19835. [
  19836. {
  19837. name: "Normal",
  19838. height: math.unit(7, "feet"),
  19839. default: true
  19840. },
  19841. {
  19842. name: "Lorge",
  19843. height: math.unit(20, "feet")
  19844. },
  19845. ]
  19846. ))
  19847. characterMakers.push(() => makeCharacter(
  19848. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  19849. {
  19850. front: {
  19851. height: math.unit(8 + 4 / 12, "feet"),
  19852. weight: math.unit(600, "lb"),
  19853. name: "Front",
  19854. image: {
  19855. source: "./media/characters/dragonien/front.svg",
  19856. extra: 100 / 94,
  19857. bottom: 3.3 / 103.3445
  19858. }
  19859. },
  19860. back: {
  19861. height: math.unit(8 + 4 / 12, "feet"),
  19862. weight: math.unit(600, "lb"),
  19863. name: "Back",
  19864. image: {
  19865. source: "./media/characters/dragonien/back.svg",
  19866. extra: 776 / 746,
  19867. bottom: 6.4 / 782.0616
  19868. }
  19869. },
  19870. foot: {
  19871. height: math.unit(1.54, "feet"),
  19872. name: "Foot",
  19873. image: {
  19874. source: "./media/characters/dragonien/foot.svg",
  19875. }
  19876. },
  19877. },
  19878. [
  19879. {
  19880. name: "Normal",
  19881. height: math.unit(8 + 4 / 12, "feet"),
  19882. default: true
  19883. },
  19884. {
  19885. name: "Macro",
  19886. height: math.unit(200, "feet")
  19887. },
  19888. {
  19889. name: "Megamacro",
  19890. height: math.unit(1, "mile")
  19891. },
  19892. {
  19893. name: "Gigamacro",
  19894. height: math.unit(1000, "miles")
  19895. },
  19896. ]
  19897. ))
  19898. characterMakers.push(() => makeCharacter(
  19899. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  19900. {
  19901. front: {
  19902. height: math.unit(5 + 2 / 12, "feet"),
  19903. weight: math.unit(110, "lb"),
  19904. name: "Front",
  19905. image: {
  19906. source: "./media/characters/desta/front.svg",
  19907. extra: 767 / 726,
  19908. bottom: 11.7 / 779
  19909. }
  19910. },
  19911. back: {
  19912. height: math.unit(5 + 2 / 12, "feet"),
  19913. weight: math.unit(110, "lb"),
  19914. name: "Back",
  19915. image: {
  19916. source: "./media/characters/desta/back.svg",
  19917. extra: 777 / 728,
  19918. bottom: 6 / 784
  19919. }
  19920. },
  19921. frontAlt: {
  19922. height: math.unit(5 + 2 / 12, "feet"),
  19923. weight: math.unit(110, "lb"),
  19924. name: "Front",
  19925. image: {
  19926. source: "./media/characters/desta/front-alt.svg",
  19927. extra: 1482 / 1417
  19928. }
  19929. },
  19930. side: {
  19931. height: math.unit(5 + 2 / 12, "feet"),
  19932. weight: math.unit(110, "lb"),
  19933. name: "Side",
  19934. image: {
  19935. source: "./media/characters/desta/side.svg",
  19936. extra: 2579 / 2491,
  19937. bottom: 0.053
  19938. }
  19939. },
  19940. },
  19941. [
  19942. {
  19943. name: "Micro",
  19944. height: math.unit(6, "inches")
  19945. },
  19946. {
  19947. name: "Normal",
  19948. height: math.unit(5 + 2 / 12, "feet"),
  19949. default: true
  19950. },
  19951. {
  19952. name: "Macro",
  19953. height: math.unit(62, "feet")
  19954. },
  19955. {
  19956. name: "Megamacro",
  19957. height: math.unit(1800, "feet")
  19958. },
  19959. ]
  19960. ))
  19961. characterMakers.push(() => makeCharacter(
  19962. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  19963. {
  19964. front: {
  19965. height: math.unit(10, "feet"),
  19966. weight: math.unit(700, "lb"),
  19967. name: "Front",
  19968. image: {
  19969. source: "./media/characters/storm-alystar/front.svg",
  19970. extra: 2112 / 1898,
  19971. bottom: 0.034
  19972. }
  19973. },
  19974. },
  19975. [
  19976. {
  19977. name: "Micro",
  19978. height: math.unit(3.5, "inches")
  19979. },
  19980. {
  19981. name: "Normal",
  19982. height: math.unit(10, "feet"),
  19983. default: true
  19984. },
  19985. {
  19986. name: "Macro",
  19987. height: math.unit(400, "feet")
  19988. },
  19989. {
  19990. name: "Deific",
  19991. height: math.unit(60, "miles")
  19992. },
  19993. ]
  19994. ))
  19995. characterMakers.push(() => makeCharacter(
  19996. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  19997. {
  19998. front: {
  19999. height: math.unit(2.35, "meters"),
  20000. weight: math.unit(119, "kg"),
  20001. name: "Front",
  20002. image: {
  20003. source: "./media/characters/ilia/front.svg",
  20004. extra: 1285 / 1255,
  20005. bottom: 0.06
  20006. }
  20007. },
  20008. },
  20009. [
  20010. {
  20011. name: "Normal",
  20012. height: math.unit(2.35, "meters")
  20013. },
  20014. {
  20015. name: "Macro",
  20016. height: math.unit(140, "meters"),
  20017. default: true
  20018. },
  20019. {
  20020. name: "Megamacro",
  20021. height: math.unit(100, "miles")
  20022. },
  20023. ]
  20024. ))
  20025. characterMakers.push(() => makeCharacter(
  20026. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  20027. {
  20028. front: {
  20029. height: math.unit(6 + 5 / 12, "feet"),
  20030. weight: math.unit(190, "lb"),
  20031. name: "Front",
  20032. image: {
  20033. source: "./media/characters/kingdead/front.svg",
  20034. extra: 1228 / 1177
  20035. }
  20036. },
  20037. },
  20038. [
  20039. {
  20040. name: "Micro",
  20041. height: math.unit(7, "inches")
  20042. },
  20043. {
  20044. name: "Normal",
  20045. height: math.unit(6 + 5 / 12, "feet")
  20046. },
  20047. {
  20048. name: "Macro",
  20049. height: math.unit(150, "feet"),
  20050. default: true
  20051. },
  20052. {
  20053. name: "Megamacro",
  20054. height: math.unit(200, "miles")
  20055. },
  20056. ]
  20057. ))
  20058. characterMakers.push(() => makeCharacter(
  20059. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  20060. {
  20061. front: {
  20062. height: math.unit(8, "feet"),
  20063. weight: math.unit(600, "lb"),
  20064. name: "Front",
  20065. image: {
  20066. source: "./media/characters/kyrehx/front.svg",
  20067. extra: 1195 / 1095,
  20068. bottom: 0.034
  20069. }
  20070. },
  20071. },
  20072. [
  20073. {
  20074. name: "Micro",
  20075. height: math.unit(2, "inches")
  20076. },
  20077. {
  20078. name: "Normal",
  20079. height: math.unit(8, "feet"),
  20080. default: true
  20081. },
  20082. {
  20083. name: "Macro",
  20084. height: math.unit(255, "feet")
  20085. },
  20086. ]
  20087. ))
  20088. characterMakers.push(() => makeCharacter(
  20089. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  20090. {
  20091. front: {
  20092. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20093. weight: math.unit(184, "lb"),
  20094. name: "Front",
  20095. image: {
  20096. source: "./media/characters/xang/front.svg",
  20097. extra: 845 / 755
  20098. }
  20099. },
  20100. },
  20101. [
  20102. {
  20103. name: "Normal",
  20104. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20105. default: true
  20106. },
  20107. {
  20108. name: "Macro",
  20109. height: math.unit(0.935 * 146, "feet")
  20110. },
  20111. {
  20112. name: "Megamacro",
  20113. height: math.unit(0.935 * 3, "miles")
  20114. },
  20115. ]
  20116. ))
  20117. characterMakers.push(() => makeCharacter(
  20118. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  20119. {
  20120. frontDressed: {
  20121. height: math.unit(5 + 7 / 12, "feet"),
  20122. weight: math.unit(140, "lb"),
  20123. name: "Front (Dressed)",
  20124. image: {
  20125. source: "./media/characters/doc-weardno/front-dressed.svg",
  20126. extra: 263 / 234
  20127. }
  20128. },
  20129. backDressed: {
  20130. height: math.unit(5 + 7 / 12, "feet"),
  20131. weight: math.unit(140, "lb"),
  20132. name: "Back (Dressed)",
  20133. image: {
  20134. source: "./media/characters/doc-weardno/back-dressed.svg",
  20135. extra: 266 / 238
  20136. }
  20137. },
  20138. front: {
  20139. height: math.unit(5 + 7 / 12, "feet"),
  20140. weight: math.unit(140, "lb"),
  20141. name: "Front",
  20142. image: {
  20143. source: "./media/characters/doc-weardno/front.svg",
  20144. extra: 254 / 233
  20145. }
  20146. },
  20147. },
  20148. [
  20149. {
  20150. name: "Micro",
  20151. height: math.unit(3, "inches")
  20152. },
  20153. {
  20154. name: "Normal",
  20155. height: math.unit(5 + 7 / 12, "feet"),
  20156. default: true
  20157. },
  20158. {
  20159. name: "Macro",
  20160. height: math.unit(25, "feet")
  20161. },
  20162. {
  20163. name: "Megamacro",
  20164. height: math.unit(2, "miles")
  20165. },
  20166. ]
  20167. ))
  20168. characterMakers.push(() => makeCharacter(
  20169. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  20170. {
  20171. front: {
  20172. height: math.unit(6 + 2 / 12, "feet"),
  20173. weight: math.unit(153, "lb"),
  20174. name: "Front",
  20175. image: {
  20176. source: "./media/characters/seth-whilst/front.svg",
  20177. bottom: 0.07
  20178. }
  20179. },
  20180. },
  20181. [
  20182. {
  20183. name: "Micro",
  20184. height: math.unit(5, "inches")
  20185. },
  20186. {
  20187. name: "Normal",
  20188. height: math.unit(6 + 2 / 12, "feet"),
  20189. default: true
  20190. },
  20191. ]
  20192. ))
  20193. characterMakers.push(() => makeCharacter(
  20194. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  20195. {
  20196. front: {
  20197. height: math.unit(3, "inches"),
  20198. weight: math.unit(8, "grams"),
  20199. name: "Front",
  20200. image: {
  20201. source: "./media/characters/pocket-jabari/front.svg",
  20202. extra: 1024 / 974,
  20203. bottom: 0.039
  20204. }
  20205. },
  20206. },
  20207. [
  20208. {
  20209. name: "Minimicro",
  20210. height: math.unit(8, "mm")
  20211. },
  20212. {
  20213. name: "Micro",
  20214. height: math.unit(3, "inches"),
  20215. default: true
  20216. },
  20217. {
  20218. name: "Normal",
  20219. height: math.unit(3, "feet")
  20220. },
  20221. ]
  20222. ))
  20223. characterMakers.push(() => makeCharacter(
  20224. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  20225. {
  20226. frontDressed: {
  20227. height: math.unit(15, "feet"),
  20228. weight: math.unit(3280, "lb"),
  20229. name: "Front (Dressed)",
  20230. image: {
  20231. source: "./media/characters/sapphy/front-dressed.svg",
  20232. extra: 1951/1654,
  20233. bottom: 194/2145
  20234. },
  20235. form: "anthro",
  20236. default: true
  20237. },
  20238. backDressed: {
  20239. height: math.unit(15, "feet"),
  20240. weight: math.unit(3280, "lb"),
  20241. name: "Back (Dressed)",
  20242. image: {
  20243. source: "./media/characters/sapphy/back-dressed.svg",
  20244. extra: 2058/1918,
  20245. bottom: 125/2183
  20246. },
  20247. form: "anthro"
  20248. },
  20249. frontNude: {
  20250. height: math.unit(15, "feet"),
  20251. weight: math.unit(3280, "lb"),
  20252. name: "Front (Nude)",
  20253. image: {
  20254. source: "./media/characters/sapphy/front-nude.svg",
  20255. extra: 1951/1654,
  20256. bottom: 194/2145
  20257. },
  20258. form: "anthro"
  20259. },
  20260. backNude: {
  20261. height: math.unit(15, "feet"),
  20262. weight: math.unit(3280, "lb"),
  20263. name: "Back (Nude)",
  20264. image: {
  20265. source: "./media/characters/sapphy/back-nude.svg",
  20266. extra: 2058/1918,
  20267. bottom: 125/2183
  20268. },
  20269. form: "anthro"
  20270. },
  20271. full: {
  20272. height: math.unit(15, "feet"),
  20273. weight: math.unit(3280, "lb"),
  20274. name: "Full",
  20275. image: {
  20276. source: "./media/characters/sapphy/full.svg",
  20277. extra: 1396/1317,
  20278. bottom: 44/1440
  20279. },
  20280. form: "anthro"
  20281. },
  20282. dick: {
  20283. height: math.unit(3.8, "feet"),
  20284. name: "Dick",
  20285. image: {
  20286. source: "./media/characters/sapphy/dick.svg"
  20287. },
  20288. form: "anthro"
  20289. },
  20290. feral: {
  20291. height: math.unit(35, "feet"),
  20292. weight: math.unit(160, "tons"),
  20293. name: "Feral",
  20294. image: {
  20295. source: "./media/characters/sapphy/feral.svg",
  20296. extra: 1050/573,
  20297. bottom: 60/1110
  20298. },
  20299. form: "feral",
  20300. default: true
  20301. },
  20302. },
  20303. [
  20304. {
  20305. name: "Normal",
  20306. height: math.unit(15, "feet"),
  20307. form: "anthro"
  20308. },
  20309. {
  20310. name: "Casual Macro",
  20311. height: math.unit(120, "feet"),
  20312. form: "anthro"
  20313. },
  20314. {
  20315. name: "Macro",
  20316. height: math.unit(2150, "feet"),
  20317. default: true,
  20318. form: "anthro"
  20319. },
  20320. {
  20321. name: "Megamacro",
  20322. height: math.unit(8, "miles"),
  20323. form: "anthro"
  20324. },
  20325. {
  20326. name: "Galaxy Mom",
  20327. height: math.unit(6, "megalightyears"),
  20328. form: "anthro"
  20329. },
  20330. {
  20331. name: "Normal",
  20332. height: math.unit(35, "feet"),
  20333. form: "feral",
  20334. default: true
  20335. },
  20336. {
  20337. name: "Macro",
  20338. height: math.unit(300, "feet"),
  20339. form: "feral"
  20340. },
  20341. {
  20342. name: "Galaxy Mom",
  20343. height: math.unit(10, "megalightyears"),
  20344. form: "feral"
  20345. },
  20346. ],
  20347. {
  20348. "anthro": {
  20349. name: "Anthro",
  20350. default: true
  20351. },
  20352. "feral": {
  20353. name: "Feral"
  20354. }
  20355. }
  20356. ))
  20357. characterMakers.push(() => makeCharacter(
  20358. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  20359. {
  20360. hyenaFront: {
  20361. height: math.unit(6, "feet"),
  20362. weight: math.unit(190, "lb"),
  20363. name: "Front",
  20364. image: {
  20365. source: "./media/characters/kiro/hyena-front.svg",
  20366. extra: 927/839,
  20367. bottom: 91/1018
  20368. },
  20369. form: "hyena",
  20370. default: true
  20371. },
  20372. front: {
  20373. height: math.unit(6, "feet"),
  20374. weight: math.unit(170, "lb"),
  20375. name: "Front",
  20376. image: {
  20377. source: "./media/characters/kiro/front.svg",
  20378. extra: 1064 / 1012,
  20379. bottom: 0.052
  20380. },
  20381. form: "folf",
  20382. default: true
  20383. },
  20384. },
  20385. [
  20386. {
  20387. name: "Micro",
  20388. height: math.unit(6, "inches"),
  20389. form: "folf"
  20390. },
  20391. {
  20392. name: "Normal",
  20393. height: math.unit(6, "feet"),
  20394. form: "folf",
  20395. default: true
  20396. },
  20397. {
  20398. name: "Macro",
  20399. height: math.unit(72, "feet"),
  20400. form: "folf"
  20401. },
  20402. {
  20403. name: "Micro",
  20404. height: math.unit(6, "inches"),
  20405. form: "hyena"
  20406. },
  20407. {
  20408. name: "Normal",
  20409. height: math.unit(6, "feet"),
  20410. form: "hyena",
  20411. default: true
  20412. },
  20413. {
  20414. name: "Macro",
  20415. height: math.unit(72, "feet"),
  20416. form: "hyena"
  20417. },
  20418. ],
  20419. {
  20420. "hyena": {
  20421. name: "Hyena",
  20422. default: true
  20423. },
  20424. "folf": {
  20425. name: "Folf",
  20426. },
  20427. }
  20428. ))
  20429. characterMakers.push(() => makeCharacter(
  20430. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  20431. {
  20432. front: {
  20433. height: math.unit(5 + 9 / 12, "feet"),
  20434. weight: math.unit(175, "lb"),
  20435. name: "Front",
  20436. image: {
  20437. source: "./media/characters/irishfox/front.svg",
  20438. extra: 1912 / 1680,
  20439. bottom: 0.02
  20440. }
  20441. },
  20442. },
  20443. [
  20444. {
  20445. name: "Nano",
  20446. height: math.unit(1, "mm")
  20447. },
  20448. {
  20449. name: "Micro",
  20450. height: math.unit(2, "inches")
  20451. },
  20452. {
  20453. name: "Normal",
  20454. height: math.unit(5 + 9 / 12, "feet"),
  20455. default: true
  20456. },
  20457. {
  20458. name: "Macro",
  20459. height: math.unit(45, "feet")
  20460. },
  20461. ]
  20462. ))
  20463. characterMakers.push(() => makeCharacter(
  20464. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  20465. {
  20466. front: {
  20467. height: math.unit(6 + 1 / 12, "feet"),
  20468. weight: math.unit(75, "lb"),
  20469. name: "Front",
  20470. image: {
  20471. source: "./media/characters/aronai-sieyes/front.svg",
  20472. extra: 1532/1450,
  20473. bottom: 42/1574
  20474. }
  20475. },
  20476. side: {
  20477. height: math.unit(6 + 1 / 12, "feet"),
  20478. weight: math.unit(75, "lb"),
  20479. name: "Side",
  20480. image: {
  20481. source: "./media/characters/aronai-sieyes/side.svg",
  20482. extra: 1422/1365,
  20483. bottom: 148/1570
  20484. }
  20485. },
  20486. back: {
  20487. height: math.unit(6 + 1 / 12, "feet"),
  20488. weight: math.unit(75, "lb"),
  20489. name: "Back",
  20490. image: {
  20491. source: "./media/characters/aronai-sieyes/back.svg",
  20492. extra: 1526/1464,
  20493. bottom: 51/1577
  20494. }
  20495. },
  20496. dressed: {
  20497. height: math.unit(6 + 1 / 12, "feet"),
  20498. weight: math.unit(75, "lb"),
  20499. name: "Dressed",
  20500. image: {
  20501. source: "./media/characters/aronai-sieyes/dressed.svg",
  20502. extra: 1559/1483,
  20503. bottom: 39/1598
  20504. }
  20505. },
  20506. slit: {
  20507. height: math.unit(1.3, "feet"),
  20508. name: "Slit",
  20509. image: {
  20510. source: "./media/characters/aronai-sieyes/slit.svg"
  20511. }
  20512. },
  20513. slitSpread: {
  20514. height: math.unit(0.9, "feet"),
  20515. name: "Slit (Spread)",
  20516. image: {
  20517. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  20518. }
  20519. },
  20520. rump: {
  20521. height: math.unit(1.3, "feet"),
  20522. name: "Rump",
  20523. image: {
  20524. source: "./media/characters/aronai-sieyes/rump.svg"
  20525. }
  20526. },
  20527. maw: {
  20528. height: math.unit(1.25, "feet"),
  20529. name: "Maw",
  20530. image: {
  20531. source: "./media/characters/aronai-sieyes/maw.svg"
  20532. }
  20533. },
  20534. feral: {
  20535. height: math.unit(18, "feet"),
  20536. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  20537. name: "Feral",
  20538. image: {
  20539. source: "./media/characters/aronai-sieyes/feral.svg",
  20540. extra: 1530 / 1240,
  20541. bottom: 0.035
  20542. }
  20543. },
  20544. },
  20545. [
  20546. {
  20547. name: "Micro",
  20548. height: math.unit(2, "inches")
  20549. },
  20550. {
  20551. name: "Normal",
  20552. height: math.unit(6 + 1 / 12, "feet"),
  20553. default: true
  20554. }
  20555. ]
  20556. ))
  20557. characterMakers.push(() => makeCharacter(
  20558. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  20559. {
  20560. front: {
  20561. height: math.unit(12, "feet"),
  20562. weight: math.unit(410, "kg"),
  20563. name: "Front",
  20564. image: {
  20565. source: "./media/characters/xuna/front.svg",
  20566. extra: 2184 / 1980
  20567. }
  20568. },
  20569. side: {
  20570. height: math.unit(12, "feet"),
  20571. weight: math.unit(410, "kg"),
  20572. name: "Side",
  20573. image: {
  20574. source: "./media/characters/xuna/side.svg",
  20575. extra: 2184 / 1980
  20576. }
  20577. },
  20578. back: {
  20579. height: math.unit(12, "feet"),
  20580. weight: math.unit(410, "kg"),
  20581. name: "Back",
  20582. image: {
  20583. source: "./media/characters/xuna/back.svg",
  20584. extra: 2184 / 1980
  20585. }
  20586. },
  20587. },
  20588. [
  20589. {
  20590. name: "Nano glow",
  20591. height: math.unit(10, "nm")
  20592. },
  20593. {
  20594. name: "Micro floof",
  20595. height: math.unit(0.3, "m")
  20596. },
  20597. {
  20598. name: "Huggable softy boi",
  20599. height: math.unit(3.6576, "m"),
  20600. default: true
  20601. },
  20602. {
  20603. name: "Admirable floof",
  20604. height: math.unit(80, "meters")
  20605. },
  20606. {
  20607. name: "Gentle macro",
  20608. height: math.unit(300, "meters")
  20609. },
  20610. {
  20611. name: "Very careful floof",
  20612. height: math.unit(3200, "meters")
  20613. },
  20614. {
  20615. name: "The mega floof",
  20616. height: math.unit(36000, "meters")
  20617. },
  20618. {
  20619. name: "Giga-fur-Wicker",
  20620. height: math.unit(4800000, "meters")
  20621. },
  20622. {
  20623. name: "Licky world",
  20624. height: math.unit(20000000, "meters")
  20625. },
  20626. {
  20627. name: "Floofy cyan sun",
  20628. height: math.unit(1500000000, "meters")
  20629. },
  20630. {
  20631. name: "Milky Wicker",
  20632. height: math.unit(1000000000000000000000, "meters")
  20633. },
  20634. {
  20635. name: "The observing Wicker",
  20636. height: math.unit(999999999999999999999999999, "meters")
  20637. },
  20638. ]
  20639. ))
  20640. characterMakers.push(() => makeCharacter(
  20641. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20642. {
  20643. front: {
  20644. height: math.unit(5 + 9 / 12, "feet"),
  20645. weight: math.unit(150, "lb"),
  20646. name: "Front",
  20647. image: {
  20648. source: "./media/characters/arokha-sieyes/front.svg",
  20649. extra: 1425 / 1284,
  20650. bottom: 0.05
  20651. }
  20652. },
  20653. },
  20654. [
  20655. {
  20656. name: "Normal",
  20657. height: math.unit(5 + 9 / 12, "feet")
  20658. },
  20659. {
  20660. name: "Macro",
  20661. height: math.unit(30, "meters"),
  20662. default: true
  20663. },
  20664. ]
  20665. ))
  20666. characterMakers.push(() => makeCharacter(
  20667. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20668. {
  20669. front: {
  20670. height: math.unit(6, "feet"),
  20671. weight: math.unit(180, "lb"),
  20672. name: "Front",
  20673. image: {
  20674. source: "./media/characters/arokh-sieyes/front.svg",
  20675. extra: 1830 / 1769,
  20676. bottom: 0.01
  20677. }
  20678. },
  20679. },
  20680. [
  20681. {
  20682. name: "Normal",
  20683. height: math.unit(6, "feet")
  20684. },
  20685. {
  20686. name: "Macro",
  20687. height: math.unit(30, "meters"),
  20688. default: true
  20689. },
  20690. ]
  20691. ))
  20692. characterMakers.push(() => makeCharacter(
  20693. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  20694. {
  20695. side: {
  20696. height: math.unit(13 + 1 / 12, "feet"),
  20697. weight: math.unit(8.5, "tonnes"),
  20698. preyCapacity: math.unit(36, "people"),
  20699. name: "Side",
  20700. image: {
  20701. source: "./media/characters/goldeneye/side.svg",
  20702. extra: 1139/741,
  20703. bottom: 98/1237
  20704. }
  20705. },
  20706. front: {
  20707. height: math.unit(5.1, "feet"),
  20708. weight: math.unit(8.5, "tonnes"),
  20709. preyCapacity: math.unit(36, "people"),
  20710. name: "Front",
  20711. image: {
  20712. source: "./media/characters/goldeneye/front.svg",
  20713. extra: 635/365,
  20714. bottom: 598/1233
  20715. }
  20716. },
  20717. maw: {
  20718. height: math.unit(6.6, "feet"),
  20719. name: "Maw",
  20720. image: {
  20721. source: "./media/characters/goldeneye/maw.svg"
  20722. }
  20723. },
  20724. headFront: {
  20725. height: math.unit(8, "feet"),
  20726. name: "Head (Front)",
  20727. image: {
  20728. source: "./media/characters/goldeneye/head-front.svg"
  20729. }
  20730. },
  20731. headSide: {
  20732. height: math.unit(6, "feet"),
  20733. name: "Head (Side)",
  20734. image: {
  20735. source: "./media/characters/goldeneye/head-side.svg"
  20736. }
  20737. },
  20738. headBack: {
  20739. height: math.unit(8, "feet"),
  20740. name: "Head (Back)",
  20741. image: {
  20742. source: "./media/characters/goldeneye/head-back.svg"
  20743. }
  20744. },
  20745. paw: {
  20746. height: math.unit(3.4, "feet"),
  20747. name: "Paw",
  20748. image: {
  20749. source: "./media/characters/goldeneye/paw.svg"
  20750. }
  20751. },
  20752. toering: {
  20753. height: math.unit(0.45, "feet"),
  20754. name: "Toering",
  20755. image: {
  20756. source: "./media/characters/goldeneye/toering.svg"
  20757. }
  20758. },
  20759. eyes: {
  20760. height: math.unit(0.5, "feet"),
  20761. name: "Eyes",
  20762. image: {
  20763. source: "./media/characters/goldeneye/eyes.svg"
  20764. }
  20765. },
  20766. },
  20767. [
  20768. {
  20769. name: "Normal",
  20770. height: math.unit(13 + 1 / 12, "feet"),
  20771. default: true
  20772. },
  20773. ]
  20774. ))
  20775. characterMakers.push(() => makeCharacter(
  20776. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  20777. {
  20778. front: {
  20779. height: math.unit(6 + 1 / 12, "feet"),
  20780. weight: math.unit(210, "lb"),
  20781. name: "Front",
  20782. image: {
  20783. source: "./media/characters/leonardo-lycheborne/front.svg",
  20784. extra: 776/723,
  20785. bottom: 34/810
  20786. }
  20787. },
  20788. side: {
  20789. height: math.unit(6 + 1 / 12, "feet"),
  20790. weight: math.unit(210, "lb"),
  20791. name: "Side",
  20792. image: {
  20793. source: "./media/characters/leonardo-lycheborne/side.svg",
  20794. extra: 780/728,
  20795. bottom: 12/792
  20796. }
  20797. },
  20798. back: {
  20799. height: math.unit(6 + 1 / 12, "feet"),
  20800. weight: math.unit(210, "lb"),
  20801. name: "Back",
  20802. image: {
  20803. source: "./media/characters/leonardo-lycheborne/back.svg",
  20804. extra: 775/721,
  20805. bottom: 17/792
  20806. }
  20807. },
  20808. hand: {
  20809. height: math.unit(1.08, "feet"),
  20810. name: "Hand",
  20811. image: {
  20812. source: "./media/characters/leonardo-lycheborne/hand.svg"
  20813. }
  20814. },
  20815. foot: {
  20816. height: math.unit(1.32, "feet"),
  20817. name: "Foot",
  20818. image: {
  20819. source: "./media/characters/leonardo-lycheborne/foot.svg"
  20820. }
  20821. },
  20822. maw: {
  20823. height: math.unit(1, "feet"),
  20824. name: "Maw",
  20825. image: {
  20826. source: "./media/characters/leonardo-lycheborne/maw.svg"
  20827. }
  20828. },
  20829. were: {
  20830. height: math.unit(20, "feet"),
  20831. weight: math.unit(7800, "lb"),
  20832. name: "Were",
  20833. image: {
  20834. source: "./media/characters/leonardo-lycheborne/were.svg",
  20835. extra: 1224/1165,
  20836. bottom: 72/1296
  20837. }
  20838. },
  20839. feral: {
  20840. height: math.unit(7.5, "feet"),
  20841. weight: math.unit(600, "lb"),
  20842. name: "Feral",
  20843. image: {
  20844. source: "./media/characters/leonardo-lycheborne/feral.svg",
  20845. extra: 797/702,
  20846. bottom: 139/936
  20847. }
  20848. },
  20849. taur: {
  20850. height: math.unit(11, "feet"),
  20851. weight: math.unit(3300, "lb"),
  20852. name: "Taur",
  20853. image: {
  20854. source: "./media/characters/leonardo-lycheborne/taur.svg",
  20855. extra: 1271/1197,
  20856. bottom: 47/1318
  20857. }
  20858. },
  20859. barghest: {
  20860. height: math.unit(11, "feet"),
  20861. weight: math.unit(1300, "lb"),
  20862. name: "Barghest",
  20863. image: {
  20864. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  20865. extra: 1291/1204,
  20866. bottom: 37/1328
  20867. }
  20868. },
  20869. dick: {
  20870. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  20871. name: "Dick",
  20872. image: {
  20873. source: "./media/characters/leonardo-lycheborne/dick.svg"
  20874. }
  20875. },
  20876. dickWere: {
  20877. height: math.unit((20) / 3.8, "feet"),
  20878. name: "Dick (Were)",
  20879. image: {
  20880. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  20881. }
  20882. },
  20883. },
  20884. [
  20885. {
  20886. name: "Normal",
  20887. height: math.unit(6 + 1 / 12, "feet"),
  20888. default: true
  20889. },
  20890. ]
  20891. ))
  20892. characterMakers.push(() => makeCharacter(
  20893. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  20894. {
  20895. front: {
  20896. height: math.unit(10, "feet"),
  20897. weight: math.unit(350, "lb"),
  20898. name: "Front",
  20899. image: {
  20900. source: "./media/characters/jet/front.svg",
  20901. extra: 2050 / 1980,
  20902. bottom: 0.013
  20903. }
  20904. },
  20905. back: {
  20906. height: math.unit(10, "feet"),
  20907. weight: math.unit(350, "lb"),
  20908. name: "Back",
  20909. image: {
  20910. source: "./media/characters/jet/back.svg",
  20911. extra: 2050 / 1980,
  20912. bottom: 0.013
  20913. }
  20914. },
  20915. },
  20916. [
  20917. {
  20918. name: "Micro",
  20919. height: math.unit(6, "inches")
  20920. },
  20921. {
  20922. name: "Normal",
  20923. height: math.unit(10, "feet"),
  20924. default: true
  20925. },
  20926. {
  20927. name: "Macro",
  20928. height: math.unit(100, "feet")
  20929. },
  20930. ]
  20931. ))
  20932. characterMakers.push(() => makeCharacter(
  20933. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  20934. {
  20935. front: {
  20936. height: math.unit(15, "feet"),
  20937. weight: math.unit(2800, "lb"),
  20938. name: "Front",
  20939. image: {
  20940. source: "./media/characters/tanarath/front.svg",
  20941. extra: 2392 / 2220,
  20942. bottom: 0.03
  20943. }
  20944. },
  20945. back: {
  20946. height: math.unit(15, "feet"),
  20947. weight: math.unit(2800, "lb"),
  20948. name: "Back",
  20949. image: {
  20950. source: "./media/characters/tanarath/back.svg",
  20951. extra: 2392 / 2220,
  20952. bottom: 0.03
  20953. }
  20954. },
  20955. },
  20956. [
  20957. {
  20958. name: "Normal",
  20959. height: math.unit(15, "feet"),
  20960. default: true
  20961. },
  20962. ]
  20963. ))
  20964. characterMakers.push(() => makeCharacter(
  20965. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  20966. {
  20967. front: {
  20968. height: math.unit(7 + 1 / 12, "feet"),
  20969. weight: math.unit(175, "lb"),
  20970. name: "Front",
  20971. image: {
  20972. source: "./media/characters/patty-cattybatty/front.svg",
  20973. extra: 908 / 874,
  20974. bottom: 0.025
  20975. }
  20976. },
  20977. },
  20978. [
  20979. {
  20980. name: "Micro",
  20981. height: math.unit(1, "inch")
  20982. },
  20983. {
  20984. name: "Normal",
  20985. height: math.unit(7 + 1 / 12, "feet")
  20986. },
  20987. {
  20988. name: "Mini Macro",
  20989. height: math.unit(155, "feet")
  20990. },
  20991. {
  20992. name: "Macro",
  20993. height: math.unit(1077, "feet")
  20994. },
  20995. {
  20996. name: "Mega Macro",
  20997. height: math.unit(47650, "feet"),
  20998. default: true
  20999. },
  21000. {
  21001. name: "Giga Macro",
  21002. height: math.unit(440, "miles")
  21003. },
  21004. {
  21005. name: "Tera Macro",
  21006. height: math.unit(8700, "miles")
  21007. },
  21008. {
  21009. name: "Planetary Macro",
  21010. height: math.unit(32700, "miles")
  21011. },
  21012. {
  21013. name: "Solar Macro",
  21014. height: math.unit(550000, "miles")
  21015. },
  21016. {
  21017. name: "Celestial Macro",
  21018. height: math.unit(2.5, "AU")
  21019. },
  21020. ]
  21021. ))
  21022. characterMakers.push(() => makeCharacter(
  21023. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  21024. {
  21025. front: {
  21026. height: math.unit(4 + 5 / 12, "feet"),
  21027. weight: math.unit(90, "lb"),
  21028. name: "Front",
  21029. image: {
  21030. source: "./media/characters/cappu/front.svg",
  21031. extra: 1247 / 1152,
  21032. bottom: 0.012
  21033. }
  21034. },
  21035. },
  21036. [
  21037. {
  21038. name: "Normal",
  21039. height: math.unit(4 + 5 / 12, "feet"),
  21040. default: true
  21041. },
  21042. ]
  21043. ))
  21044. characterMakers.push(() => makeCharacter(
  21045. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  21046. {
  21047. frontDressed: {
  21048. height: math.unit(70, "cm"),
  21049. weight: math.unit(6, "kg"),
  21050. name: "Front (Dressed)",
  21051. image: {
  21052. source: "./media/characters/sebi/front-dressed.svg",
  21053. extra: 713.5 / 686.5,
  21054. bottom: 0.003
  21055. }
  21056. },
  21057. front: {
  21058. height: math.unit(70, "cm"),
  21059. weight: math.unit(5, "kg"),
  21060. name: "Front",
  21061. image: {
  21062. source: "./media/characters/sebi/front.svg",
  21063. extra: 713.5 / 686.5,
  21064. bottom: 0.003
  21065. }
  21066. }
  21067. },
  21068. [
  21069. {
  21070. name: "Normal",
  21071. height: math.unit(70, "cm"),
  21072. default: true
  21073. },
  21074. {
  21075. name: "Macro",
  21076. height: math.unit(8, "meters")
  21077. },
  21078. ]
  21079. ))
  21080. characterMakers.push(() => makeCharacter(
  21081. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21082. {
  21083. front: {
  21084. height: math.unit(6, "feet"),
  21085. weight: math.unit(150, "lb"),
  21086. name: "Front",
  21087. image: {
  21088. source: "./media/characters/typhek/front.svg",
  21089. extra: 1948 / 1929,
  21090. bottom: 0.025
  21091. }
  21092. },
  21093. side: {
  21094. height: math.unit(6, "feet"),
  21095. weight: math.unit(150, "lb"),
  21096. name: "Side",
  21097. image: {
  21098. source: "./media/characters/typhek/side.svg",
  21099. extra: 2034 / 2010,
  21100. bottom: 0.003
  21101. }
  21102. },
  21103. back: {
  21104. height: math.unit(6, "feet"),
  21105. weight: math.unit(150, "lb"),
  21106. name: "Back",
  21107. image: {
  21108. source: "./media/characters/typhek/back.svg",
  21109. extra: 2005 / 1978,
  21110. bottom: 0.004
  21111. }
  21112. },
  21113. palm: {
  21114. height: math.unit(1.2, "feet"),
  21115. name: "Palm",
  21116. image: {
  21117. source: "./media/characters/typhek/palm.svg"
  21118. }
  21119. },
  21120. fist: {
  21121. height: math.unit(1.1, "feet"),
  21122. name: "Fist",
  21123. image: {
  21124. source: "./media/characters/typhek/fist.svg"
  21125. }
  21126. },
  21127. foot: {
  21128. height: math.unit(1.57, "feet"),
  21129. name: "Foot",
  21130. image: {
  21131. source: "./media/characters/typhek/foot.svg"
  21132. }
  21133. },
  21134. sole: {
  21135. height: math.unit(2.05, "feet"),
  21136. name: "Sole",
  21137. image: {
  21138. source: "./media/characters/typhek/sole.svg"
  21139. }
  21140. },
  21141. },
  21142. [
  21143. {
  21144. name: "Macro",
  21145. height: math.unit(40, "stories"),
  21146. default: true
  21147. },
  21148. {
  21149. name: "Megamacro",
  21150. height: math.unit(1, "mile")
  21151. },
  21152. {
  21153. name: "Gigamacro",
  21154. height: math.unit(4000, "solarradii")
  21155. },
  21156. {
  21157. name: "Universal",
  21158. height: math.unit(1.1, "universes")
  21159. }
  21160. ]
  21161. ))
  21162. characterMakers.push(() => makeCharacter(
  21163. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  21164. {
  21165. side: {
  21166. height: math.unit(5 + 7 / 12, "feet"),
  21167. weight: math.unit(150, "lb"),
  21168. name: "Side",
  21169. image: {
  21170. source: "./media/characters/kassy/side.svg",
  21171. extra: 1280 / 1225,
  21172. bottom: 0.002
  21173. }
  21174. },
  21175. front: {
  21176. height: math.unit(5 + 7 / 12, "feet"),
  21177. weight: math.unit(150, "lb"),
  21178. name: "Front",
  21179. image: {
  21180. source: "./media/characters/kassy/front.svg",
  21181. extra: 1280 / 1225,
  21182. bottom: 0.025
  21183. }
  21184. },
  21185. back: {
  21186. height: math.unit(5 + 7 / 12, "feet"),
  21187. weight: math.unit(150, "lb"),
  21188. name: "Back",
  21189. image: {
  21190. source: "./media/characters/kassy/back.svg",
  21191. extra: 1280 / 1225,
  21192. bottom: 0.002
  21193. }
  21194. },
  21195. foot: {
  21196. height: math.unit(1.266, "feet"),
  21197. name: "Foot",
  21198. image: {
  21199. source: "./media/characters/kassy/foot.svg"
  21200. }
  21201. },
  21202. },
  21203. [
  21204. {
  21205. name: "Normal",
  21206. height: math.unit(5 + 7 / 12, "feet")
  21207. },
  21208. {
  21209. name: "Macro",
  21210. height: math.unit(137, "feet"),
  21211. default: true
  21212. },
  21213. {
  21214. name: "Megamacro",
  21215. height: math.unit(1, "mile")
  21216. },
  21217. ]
  21218. ))
  21219. characterMakers.push(() => makeCharacter(
  21220. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  21221. {
  21222. front: {
  21223. height: math.unit(6 + 1 / 12, "feet"),
  21224. weight: math.unit(200, "lb"),
  21225. name: "Front",
  21226. image: {
  21227. source: "./media/characters/neil/front.svg",
  21228. extra: 1326 / 1250,
  21229. bottom: 0.023
  21230. }
  21231. },
  21232. },
  21233. [
  21234. {
  21235. name: "Normal",
  21236. height: math.unit(6 + 1 / 12, "feet"),
  21237. default: true
  21238. },
  21239. {
  21240. name: "Macro",
  21241. height: math.unit(200, "feet")
  21242. },
  21243. ]
  21244. ))
  21245. characterMakers.push(() => makeCharacter(
  21246. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  21247. {
  21248. front: {
  21249. height: math.unit(5 + 9 / 12, "feet"),
  21250. weight: math.unit(190, "lb"),
  21251. name: "Front",
  21252. image: {
  21253. source: "./media/characters/atticus/front.svg",
  21254. extra: 2934 / 2785,
  21255. bottom: 0.025
  21256. }
  21257. },
  21258. },
  21259. [
  21260. {
  21261. name: "Normal",
  21262. height: math.unit(5 + 9 / 12, "feet"),
  21263. default: true
  21264. },
  21265. {
  21266. name: "Macro",
  21267. height: math.unit(180, "feet")
  21268. },
  21269. ]
  21270. ))
  21271. characterMakers.push(() => makeCharacter(
  21272. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  21273. {
  21274. side: {
  21275. height: math.unit(9, "feet"),
  21276. weight: math.unit(650, "lb"),
  21277. name: "Side",
  21278. image: {
  21279. source: "./media/characters/milo/side.svg",
  21280. extra: 2644 / 2310,
  21281. bottom: 0.032
  21282. }
  21283. },
  21284. },
  21285. [
  21286. {
  21287. name: "Normal",
  21288. height: math.unit(9, "feet"),
  21289. default: true
  21290. },
  21291. {
  21292. name: "Macro",
  21293. height: math.unit(300, "feet")
  21294. },
  21295. ]
  21296. ))
  21297. characterMakers.push(() => makeCharacter(
  21298. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  21299. {
  21300. side: {
  21301. height: math.unit(8, "meters"),
  21302. weight: math.unit(90000, "kg"),
  21303. name: "Side",
  21304. image: {
  21305. source: "./media/characters/ijzer/side.svg",
  21306. extra: 2756 / 1600,
  21307. bottom: 0.01
  21308. }
  21309. },
  21310. },
  21311. [
  21312. {
  21313. name: "Small",
  21314. height: math.unit(3, "meters")
  21315. },
  21316. {
  21317. name: "Normal",
  21318. height: math.unit(8, "meters"),
  21319. default: true
  21320. },
  21321. {
  21322. name: "Normal+",
  21323. height: math.unit(10, "meters")
  21324. },
  21325. {
  21326. name: "Bigger",
  21327. height: math.unit(24, "meters")
  21328. },
  21329. {
  21330. name: "Huge",
  21331. height: math.unit(80, "meters")
  21332. },
  21333. ]
  21334. ))
  21335. characterMakers.push(() => makeCharacter(
  21336. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  21337. {
  21338. front: {
  21339. height: math.unit(6 + 2 / 12, "feet"),
  21340. weight: math.unit(153, "lb"),
  21341. name: "Front",
  21342. image: {
  21343. source: "./media/characters/luca-cervicum/front.svg",
  21344. extra: 370 / 327,
  21345. bottom: 0.015
  21346. }
  21347. },
  21348. back: {
  21349. height: math.unit(6 + 2 / 12, "feet"),
  21350. weight: math.unit(153, "lb"),
  21351. name: "Back",
  21352. image: {
  21353. source: "./media/characters/luca-cervicum/back.svg",
  21354. extra: 367 / 333,
  21355. bottom: 0.005
  21356. }
  21357. },
  21358. frontGear: {
  21359. height: math.unit(6 + 2 / 12, "feet"),
  21360. weight: math.unit(173, "lb"),
  21361. name: "Front (Gear)",
  21362. image: {
  21363. source: "./media/characters/luca-cervicum/front-gear.svg",
  21364. extra: 377 / 333,
  21365. bottom: 0.006
  21366. }
  21367. },
  21368. },
  21369. [
  21370. {
  21371. name: "Normal",
  21372. height: math.unit(6 + 2 / 12, "feet"),
  21373. default: true
  21374. },
  21375. ]
  21376. ))
  21377. characterMakers.push(() => makeCharacter(
  21378. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  21379. {
  21380. front: {
  21381. height: math.unit(6 + 1 / 12, "feet"),
  21382. weight: math.unit(304, "lb"),
  21383. name: "Front",
  21384. image: {
  21385. source: "./media/characters/oliver/front.svg",
  21386. extra: 157 / 143,
  21387. bottom: 0.08
  21388. }
  21389. },
  21390. },
  21391. [
  21392. {
  21393. name: "Normal",
  21394. height: math.unit(6 + 1 / 12, "feet"),
  21395. default: true
  21396. },
  21397. ]
  21398. ))
  21399. characterMakers.push(() => makeCharacter(
  21400. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  21401. {
  21402. front: {
  21403. height: math.unit(5 + 7 / 12, "feet"),
  21404. weight: math.unit(140, "lb"),
  21405. name: "Front",
  21406. image: {
  21407. source: "./media/characters/shane/front.svg",
  21408. extra: 304 / 289,
  21409. bottom: 0.005
  21410. }
  21411. },
  21412. },
  21413. [
  21414. {
  21415. name: "Normal",
  21416. height: math.unit(5 + 7 / 12, "feet"),
  21417. default: true
  21418. },
  21419. ]
  21420. ))
  21421. characterMakers.push(() => makeCharacter(
  21422. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  21423. {
  21424. front: {
  21425. height: math.unit(5 + 9 / 12, "feet"),
  21426. weight: math.unit(178, "lb"),
  21427. name: "Front",
  21428. image: {
  21429. source: "./media/characters/shin/front.svg",
  21430. extra: 159 / 151,
  21431. bottom: 0.015
  21432. }
  21433. },
  21434. },
  21435. [
  21436. {
  21437. name: "Normal",
  21438. height: math.unit(5 + 9 / 12, "feet"),
  21439. default: true
  21440. },
  21441. ]
  21442. ))
  21443. characterMakers.push(() => makeCharacter(
  21444. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  21445. {
  21446. front: {
  21447. height: math.unit(5 + 10 / 12, "feet"),
  21448. weight: math.unit(168, "lb"),
  21449. name: "Front",
  21450. image: {
  21451. source: "./media/characters/xerxes/front.svg",
  21452. extra: 282 / 260,
  21453. bottom: 0.045
  21454. }
  21455. },
  21456. },
  21457. [
  21458. {
  21459. name: "Normal",
  21460. height: math.unit(5 + 10 / 12, "feet"),
  21461. default: true
  21462. },
  21463. ]
  21464. ))
  21465. characterMakers.push(() => makeCharacter(
  21466. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  21467. {
  21468. front: {
  21469. height: math.unit(6 + 7 / 12, "feet"),
  21470. weight: math.unit(208, "lb"),
  21471. name: "Front",
  21472. image: {
  21473. source: "./media/characters/chaska/front.svg",
  21474. extra: 332 / 319,
  21475. bottom: 0.015
  21476. }
  21477. },
  21478. },
  21479. [
  21480. {
  21481. name: "Normal",
  21482. height: math.unit(6 + 7 / 12, "feet"),
  21483. default: true
  21484. },
  21485. ]
  21486. ))
  21487. characterMakers.push(() => makeCharacter(
  21488. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  21489. {
  21490. front: {
  21491. height: math.unit(5 + 8 / 12, "feet"),
  21492. weight: math.unit(208, "lb"),
  21493. name: "Front",
  21494. image: {
  21495. source: "./media/characters/enuk/front.svg",
  21496. extra: 437 / 406,
  21497. bottom: 0.02
  21498. }
  21499. },
  21500. },
  21501. [
  21502. {
  21503. name: "Normal",
  21504. height: math.unit(5 + 8 / 12, "feet"),
  21505. default: true
  21506. },
  21507. ]
  21508. ))
  21509. characterMakers.push(() => makeCharacter(
  21510. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  21511. {
  21512. front: {
  21513. height: math.unit(5 + 10 / 12, "feet"),
  21514. weight: math.unit(252, "lb"),
  21515. name: "Front",
  21516. image: {
  21517. source: "./media/characters/bruun/front.svg",
  21518. extra: 197 / 187,
  21519. bottom: 0.012
  21520. }
  21521. },
  21522. },
  21523. [
  21524. {
  21525. name: "Normal",
  21526. height: math.unit(5 + 10 / 12, "feet"),
  21527. default: true
  21528. },
  21529. ]
  21530. ))
  21531. characterMakers.push(() => makeCharacter(
  21532. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  21533. {
  21534. front: {
  21535. height: math.unit(6 + 10 / 12, "feet"),
  21536. weight: math.unit(255, "lb"),
  21537. name: "Front",
  21538. image: {
  21539. source: "./media/characters/alexeev/front.svg",
  21540. extra: 213 / 200,
  21541. bottom: 0.05
  21542. }
  21543. },
  21544. },
  21545. [
  21546. {
  21547. name: "Normal",
  21548. height: math.unit(6 + 10 / 12, "feet"),
  21549. default: true
  21550. },
  21551. ]
  21552. ))
  21553. characterMakers.push(() => makeCharacter(
  21554. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  21555. {
  21556. front: {
  21557. height: math.unit(2 + 8 / 12, "feet"),
  21558. weight: math.unit(22, "lb"),
  21559. name: "Front",
  21560. image: {
  21561. source: "./media/characters/evelyn/front.svg",
  21562. extra: 208 / 180
  21563. }
  21564. },
  21565. },
  21566. [
  21567. {
  21568. name: "Normal",
  21569. height: math.unit(2 + 8 / 12, "feet"),
  21570. default: true
  21571. },
  21572. ]
  21573. ))
  21574. characterMakers.push(() => makeCharacter(
  21575. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  21576. {
  21577. front: {
  21578. height: math.unit(5 + 9 / 12, "feet"),
  21579. weight: math.unit(139, "lb"),
  21580. name: "Front",
  21581. image: {
  21582. source: "./media/characters/inca/front.svg",
  21583. extra: 294 / 291,
  21584. bottom: 0.03
  21585. }
  21586. },
  21587. },
  21588. [
  21589. {
  21590. name: "Normal",
  21591. height: math.unit(5 + 9 / 12, "feet"),
  21592. default: true
  21593. },
  21594. ]
  21595. ))
  21596. characterMakers.push(() => makeCharacter(
  21597. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  21598. {
  21599. front: {
  21600. height: math.unit(6 + 3 / 12, "feet"),
  21601. weight: math.unit(185, "lb"),
  21602. name: "Front",
  21603. image: {
  21604. source: "./media/characters/mera/front.svg",
  21605. extra: 291 / 277,
  21606. bottom: 0.03
  21607. }
  21608. },
  21609. },
  21610. [
  21611. {
  21612. name: "Normal",
  21613. height: math.unit(6 + 3 / 12, "feet"),
  21614. default: true
  21615. },
  21616. ]
  21617. ))
  21618. characterMakers.push(() => makeCharacter(
  21619. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  21620. {
  21621. front: {
  21622. height: math.unit(6 + 7 / 12, "feet"),
  21623. weight: math.unit(160, "lb"),
  21624. name: "Front",
  21625. image: {
  21626. source: "./media/characters/ceres/front.svg",
  21627. extra: 1023 / 950,
  21628. bottom: 0.027
  21629. }
  21630. },
  21631. back: {
  21632. height: math.unit(6 + 7 / 12, "feet"),
  21633. weight: math.unit(160, "lb"),
  21634. name: "Back",
  21635. image: {
  21636. source: "./media/characters/ceres/back.svg",
  21637. extra: 1023 / 950
  21638. }
  21639. },
  21640. },
  21641. [
  21642. {
  21643. name: "Normal",
  21644. height: math.unit(6 + 7 / 12, "feet"),
  21645. default: true
  21646. },
  21647. ]
  21648. ))
  21649. characterMakers.push(() => makeCharacter(
  21650. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  21651. {
  21652. front: {
  21653. height: math.unit(5 + 10 / 12, "feet"),
  21654. weight: math.unit(150, "lb"),
  21655. name: "Front",
  21656. image: {
  21657. source: "./media/characters/kris/front.svg",
  21658. extra: 885 / 803,
  21659. bottom: 0.03
  21660. }
  21661. },
  21662. },
  21663. [
  21664. {
  21665. name: "Normal",
  21666. height: math.unit(5 + 10 / 12, "feet"),
  21667. default: true
  21668. },
  21669. ]
  21670. ))
  21671. characterMakers.push(() => makeCharacter(
  21672. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  21673. {
  21674. front: {
  21675. height: math.unit(7, "feet"),
  21676. weight: math.unit(120, "kg"),
  21677. name: "Front",
  21678. image: {
  21679. source: "./media/characters/taluthus/front.svg",
  21680. extra: 903 / 833,
  21681. bottom: 0.015
  21682. }
  21683. },
  21684. },
  21685. [
  21686. {
  21687. name: "Normal",
  21688. height: math.unit(7, "feet"),
  21689. default: true
  21690. },
  21691. {
  21692. name: "Macro",
  21693. height: math.unit(300, "feet")
  21694. },
  21695. ]
  21696. ))
  21697. characterMakers.push(() => makeCharacter(
  21698. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  21699. {
  21700. front: {
  21701. height: math.unit(5 + 9 / 12, "feet"),
  21702. weight: math.unit(145, "lb"),
  21703. name: "Front",
  21704. image: {
  21705. source: "./media/characters/dawn/front.svg",
  21706. extra: 2094 / 2016,
  21707. bottom: 0.025
  21708. }
  21709. },
  21710. back: {
  21711. height: math.unit(5 + 9 / 12, "feet"),
  21712. weight: math.unit(160, "lb"),
  21713. name: "Back",
  21714. image: {
  21715. source: "./media/characters/dawn/back.svg",
  21716. extra: 2112 / 2080,
  21717. bottom: 0.005
  21718. }
  21719. },
  21720. },
  21721. [
  21722. {
  21723. name: "Normal",
  21724. height: math.unit(6 + 7 / 12, "feet"),
  21725. default: true
  21726. },
  21727. ]
  21728. ))
  21729. characterMakers.push(() => makeCharacter(
  21730. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  21731. {
  21732. anthro: {
  21733. height: math.unit(8 + 3 / 12, "feet"),
  21734. weight: math.unit(450, "lb"),
  21735. name: "Anthro",
  21736. image: {
  21737. source: "./media/characters/arador/anthro.svg",
  21738. extra: 1835 / 1718,
  21739. bottom: 0.025
  21740. }
  21741. },
  21742. feral: {
  21743. height: math.unit(4, "feet"),
  21744. weight: math.unit(200, "lb"),
  21745. name: "Feral",
  21746. image: {
  21747. source: "./media/characters/arador/feral.svg",
  21748. extra: 1683 / 1514,
  21749. bottom: 0.07
  21750. }
  21751. },
  21752. },
  21753. [
  21754. {
  21755. name: "Normal",
  21756. height: math.unit(8 + 3 / 12, "feet")
  21757. },
  21758. {
  21759. name: "Macro",
  21760. height: math.unit(82.5, "feet"),
  21761. default: true
  21762. },
  21763. ]
  21764. ))
  21765. characterMakers.push(() => makeCharacter(
  21766. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  21767. {
  21768. front: {
  21769. height: math.unit(5 + 10 / 12, "feet"),
  21770. weight: math.unit(125, "lb"),
  21771. name: "Front",
  21772. image: {
  21773. source: "./media/characters/dharsi/front.svg",
  21774. extra: 716 / 630,
  21775. bottom: 0.035
  21776. }
  21777. },
  21778. },
  21779. [
  21780. {
  21781. name: "Nano",
  21782. height: math.unit(100, "nm")
  21783. },
  21784. {
  21785. name: "Micro",
  21786. height: math.unit(2, "inches")
  21787. },
  21788. {
  21789. name: "Normal",
  21790. height: math.unit(5 + 10 / 12, "feet"),
  21791. default: true
  21792. },
  21793. {
  21794. name: "Macro",
  21795. height: math.unit(1000, "feet")
  21796. },
  21797. {
  21798. name: "Megamacro",
  21799. height: math.unit(10, "miles")
  21800. },
  21801. {
  21802. name: "Gigamacro",
  21803. height: math.unit(3000, "miles")
  21804. },
  21805. {
  21806. name: "Teramacro",
  21807. height: math.unit(500000, "miles")
  21808. },
  21809. {
  21810. name: "Teramacro+",
  21811. height: math.unit(30, "galaxies")
  21812. },
  21813. ]
  21814. ))
  21815. characterMakers.push(() => makeCharacter(
  21816. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  21817. {
  21818. front: {
  21819. height: math.unit(6, "feet"),
  21820. weight: math.unit(150, "lb"),
  21821. name: "Front",
  21822. image: {
  21823. source: "./media/characters/deathy/front.svg",
  21824. extra: 1552 / 1463,
  21825. bottom: 0.025
  21826. }
  21827. },
  21828. side: {
  21829. height: math.unit(6, "feet"),
  21830. weight: math.unit(150, "lb"),
  21831. name: "Side",
  21832. image: {
  21833. source: "./media/characters/deathy/side.svg",
  21834. extra: 1604 / 1455,
  21835. bottom: 0.025
  21836. }
  21837. },
  21838. back: {
  21839. height: math.unit(6, "feet"),
  21840. weight: math.unit(150, "lb"),
  21841. name: "Back",
  21842. image: {
  21843. source: "./media/characters/deathy/back.svg",
  21844. extra: 1580 / 1463,
  21845. bottom: 0.005
  21846. }
  21847. },
  21848. },
  21849. [
  21850. {
  21851. name: "Micro",
  21852. height: math.unit(5, "millimeters")
  21853. },
  21854. {
  21855. name: "Normal",
  21856. height: math.unit(6 + 5 / 12, "feet"),
  21857. default: true
  21858. },
  21859. ]
  21860. ))
  21861. characterMakers.push(() => makeCharacter(
  21862. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  21863. {
  21864. front: {
  21865. height: math.unit(16, "feet"),
  21866. weight: math.unit(4000, "lb"),
  21867. name: "Front",
  21868. image: {
  21869. source: "./media/characters/juniper/front.svg",
  21870. bottom: 0.04
  21871. }
  21872. },
  21873. },
  21874. [
  21875. {
  21876. name: "Normal",
  21877. height: math.unit(16, "feet"),
  21878. default: true
  21879. },
  21880. ]
  21881. ))
  21882. characterMakers.push(() => makeCharacter(
  21883. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  21884. {
  21885. front: {
  21886. height: math.unit(6, "feet"),
  21887. weight: math.unit(150, "lb"),
  21888. name: "Front",
  21889. image: {
  21890. source: "./media/characters/hipster/front.svg",
  21891. extra: 1312 / 1209,
  21892. bottom: 0.025
  21893. }
  21894. },
  21895. back: {
  21896. height: math.unit(6, "feet"),
  21897. weight: math.unit(150, "lb"),
  21898. name: "Back",
  21899. image: {
  21900. source: "./media/characters/hipster/back.svg",
  21901. extra: 1281 / 1196,
  21902. bottom: 0.01
  21903. }
  21904. },
  21905. },
  21906. [
  21907. {
  21908. name: "Micro",
  21909. height: math.unit(1, "mm")
  21910. },
  21911. {
  21912. name: "Normal",
  21913. height: math.unit(4, "inches"),
  21914. default: true
  21915. },
  21916. {
  21917. name: "Macro",
  21918. height: math.unit(500, "feet")
  21919. },
  21920. {
  21921. name: "Megamacro",
  21922. height: math.unit(1000, "miles")
  21923. },
  21924. ]
  21925. ))
  21926. characterMakers.push(() => makeCharacter(
  21927. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  21928. {
  21929. front: {
  21930. height: math.unit(6, "feet"),
  21931. weight: math.unit(150, "lb"),
  21932. name: "Front",
  21933. image: {
  21934. source: "./media/characters/tendirmuldr/front.svg",
  21935. extra: 1878 / 1772,
  21936. bottom: 0.015
  21937. }
  21938. },
  21939. },
  21940. [
  21941. {
  21942. name: "Megamacro",
  21943. height: math.unit(1500, "miles"),
  21944. default: true
  21945. },
  21946. ]
  21947. ))
  21948. characterMakers.push(() => makeCharacter(
  21949. { name: "Mort", species: ["demon"], tags: ["feral"] },
  21950. {
  21951. front: {
  21952. height: math.unit(14, "feet"),
  21953. weight: math.unit(12000, "lb"),
  21954. name: "Front",
  21955. image: {
  21956. source: "./media/characters/mort/front.svg",
  21957. extra: 365 / 318,
  21958. bottom: 0.01
  21959. }
  21960. },
  21961. side: {
  21962. height: math.unit(14, "feet"),
  21963. weight: math.unit(12000, "lb"),
  21964. name: "Side",
  21965. image: {
  21966. source: "./media/characters/mort/side.svg",
  21967. extra: 365 / 318,
  21968. bottom: 0.052
  21969. },
  21970. default: true
  21971. },
  21972. back: {
  21973. height: math.unit(14, "feet"),
  21974. weight: math.unit(12000, "lb"),
  21975. name: "Back",
  21976. image: {
  21977. source: "./media/characters/mort/back.svg",
  21978. extra: 371 / 332,
  21979. bottom: 0.18
  21980. }
  21981. },
  21982. },
  21983. [
  21984. {
  21985. name: "Normal",
  21986. height: math.unit(14, "feet"),
  21987. default: true
  21988. },
  21989. ]
  21990. ))
  21991. characterMakers.push(() => makeCharacter(
  21992. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  21993. {
  21994. front: {
  21995. height: math.unit(8, "feet"),
  21996. weight: math.unit(1, "ton"),
  21997. name: "Front",
  21998. image: {
  21999. source: "./media/characters/lycoa/front.svg",
  22000. extra: 1836/1728,
  22001. bottom: 81/1917
  22002. }
  22003. },
  22004. back: {
  22005. height: math.unit(8, "feet"),
  22006. weight: math.unit(1, "ton"),
  22007. name: "Back",
  22008. image: {
  22009. source: "./media/characters/lycoa/back.svg",
  22010. extra: 1785/1720,
  22011. bottom: 91/1876
  22012. }
  22013. },
  22014. head: {
  22015. height: math.unit(1.6243, "feet"),
  22016. name: "Head",
  22017. image: {
  22018. source: "./media/characters/lycoa/head.svg",
  22019. extra: 1011/782,
  22020. bottom: 0/1011
  22021. }
  22022. },
  22023. tailmaw: {
  22024. height: math.unit(1.9, "feet"),
  22025. name: "Tailmaw",
  22026. image: {
  22027. source: "./media/characters/lycoa/tailmaw.svg"
  22028. }
  22029. },
  22030. tentacles: {
  22031. height: math.unit(2.1, "feet"),
  22032. name: "Tentacles",
  22033. image: {
  22034. source: "./media/characters/lycoa/tentacles.svg"
  22035. }
  22036. },
  22037. dick: {
  22038. height: math.unit(1.73, "feet"),
  22039. name: "Dick",
  22040. image: {
  22041. source: "./media/characters/lycoa/dick.svg"
  22042. }
  22043. },
  22044. },
  22045. [
  22046. {
  22047. name: "Normal",
  22048. height: math.unit(8, "feet"),
  22049. default: true
  22050. },
  22051. {
  22052. name: "Macro",
  22053. height: math.unit(30, "feet")
  22054. },
  22055. ]
  22056. ))
  22057. characterMakers.push(() => makeCharacter(
  22058. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  22059. {
  22060. front: {
  22061. height: math.unit(4 + 2 / 12, "feet"),
  22062. weight: math.unit(70, "lb"),
  22063. name: "Front",
  22064. image: {
  22065. source: "./media/characters/naldara/front.svg",
  22066. extra: 1664/1387,
  22067. bottom: 81/1745
  22068. },
  22069. form: "anthro",
  22070. default: true
  22071. },
  22072. naga: {
  22073. height: math.unit(20, "feet"),
  22074. weight: math.unit(15000, "kg"),
  22075. name: "Front",
  22076. image: {
  22077. source: "./media/characters/naldara/naga.svg",
  22078. extra: 1590/1396,
  22079. bottom: 285/1875
  22080. },
  22081. form: "naga",
  22082. default: true
  22083. },
  22084. },
  22085. [
  22086. {
  22087. name: "Normal",
  22088. height: math.unit(4 + 2 / 12, "feet"),
  22089. form: "anthro",
  22090. default: true
  22091. },
  22092. {
  22093. name: "Normal",
  22094. height: math.unit(20, "feet"),
  22095. form: "naga",
  22096. default: true
  22097. },
  22098. ],
  22099. {
  22100. "anthro": {
  22101. name: "Anthro",
  22102. default: true
  22103. },
  22104. "naga": {
  22105. name: "Naga"
  22106. }
  22107. }
  22108. ))
  22109. characterMakers.push(() => makeCharacter(
  22110. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  22111. {
  22112. front: {
  22113. height: math.unit(13 + 7 / 12, "feet"),
  22114. weight: math.unit(1500, "lb"),
  22115. name: "Front",
  22116. image: {
  22117. source: "./media/characters/briar/front.svg",
  22118. extra: 1223/1157,
  22119. bottom: 123/1346
  22120. }
  22121. },
  22122. },
  22123. [
  22124. {
  22125. name: "Normal",
  22126. height: math.unit(13 + 7 / 12, "feet"),
  22127. default: true
  22128. },
  22129. ]
  22130. ))
  22131. characterMakers.push(() => makeCharacter(
  22132. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  22133. {
  22134. side: {
  22135. height: math.unit(16, "feet"),
  22136. weight: math.unit(500, "lb"),
  22137. name: "Side",
  22138. image: {
  22139. source: "./media/characters/vanguard/side.svg",
  22140. extra: 1022/914,
  22141. bottom: 30/1052
  22142. }
  22143. },
  22144. sideAlt: {
  22145. height: math.unit(10, "feet"),
  22146. weight: math.unit(500, "lb"),
  22147. name: "Side (Alt)",
  22148. image: {
  22149. source: "./media/characters/vanguard/side-alt.svg",
  22150. extra: 502 / 425,
  22151. bottom: 0.087
  22152. }
  22153. },
  22154. },
  22155. [
  22156. {
  22157. name: "Normal",
  22158. height: math.unit(17.71, "feet"),
  22159. default: true
  22160. },
  22161. ]
  22162. ))
  22163. characterMakers.push(() => makeCharacter(
  22164. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  22165. {
  22166. front: {
  22167. height: math.unit(7.5, "feet"),
  22168. weight: math.unit(2, "lb"),
  22169. name: "Front",
  22170. image: {
  22171. source: "./media/characters/artemis/work-safe-front.svg",
  22172. extra: 1192 / 1075,
  22173. bottom: 0.07
  22174. },
  22175. form: "work-safe",
  22176. default: true
  22177. },
  22178. frontNsfw: {
  22179. height: math.unit(7.5, "feet"),
  22180. weight: math.unit(2, "lb"),
  22181. name: "Front",
  22182. image: {
  22183. source: "./media/characters/artemis/calibrating-front.svg",
  22184. extra: 1192 / 1075,
  22185. bottom: 0.07
  22186. },
  22187. form: "calibrating",
  22188. default: true
  22189. },
  22190. frontNsfwer: {
  22191. height: math.unit(7.5, "feet"),
  22192. weight: math.unit(2, "lb"),
  22193. name: "Front",
  22194. image: {
  22195. source: "./media/characters/artemis/oversize-load-front.svg",
  22196. extra: 1192 / 1075,
  22197. bottom: 0.07
  22198. },
  22199. form: "oversize-load",
  22200. default: true
  22201. },
  22202. side: {
  22203. height: math.unit(7.5, "feet"),
  22204. weight: math.unit(2, "lb"),
  22205. name: "Side",
  22206. image: {
  22207. source: "./media/characters/artemis/work-safe-side.svg",
  22208. extra: 1192 / 1075,
  22209. bottom: 0.07
  22210. },
  22211. form: "work-safe"
  22212. },
  22213. sideNsfw: {
  22214. height: math.unit(7.5, "feet"),
  22215. weight: math.unit(2, "lb"),
  22216. name: "Side",
  22217. image: {
  22218. source: "./media/characters/artemis/calibrating-side.svg",
  22219. extra: 1192 / 1075,
  22220. bottom: 0.07
  22221. },
  22222. form: "calibrating"
  22223. },
  22224. sideNsfwer: {
  22225. height: math.unit(7.5, "feet"),
  22226. weight: math.unit(2, "lb"),
  22227. name: "Side",
  22228. image: {
  22229. source: "./media/characters/artemis/oversize-load-side.svg",
  22230. extra: 1192 / 1075,
  22231. bottom: 0.07
  22232. },
  22233. form: "oversize-load"
  22234. },
  22235. maw: {
  22236. height: math.unit(1.1, "feet"),
  22237. name: "Maw",
  22238. image: {
  22239. source: "./media/characters/artemis/maw.svg"
  22240. },
  22241. form: "work-safe"
  22242. },
  22243. stomach: {
  22244. height: math.unit(0.95, "feet"),
  22245. name: "Stomach",
  22246. image: {
  22247. source: "./media/characters/artemis/stomach.svg"
  22248. },
  22249. form: "work-safe"
  22250. },
  22251. dickCanine: {
  22252. height: math.unit(1, "feet"),
  22253. name: "Dick (Canine)",
  22254. image: {
  22255. source: "./media/characters/artemis/dick-canine.svg"
  22256. },
  22257. form: "calibrating"
  22258. },
  22259. dickEquine: {
  22260. height: math.unit(0.85, "feet"),
  22261. name: "Dick (Equine)",
  22262. image: {
  22263. source: "./media/characters/artemis/dick-equine.svg"
  22264. },
  22265. form: "calibrating"
  22266. },
  22267. dickExotic: {
  22268. height: math.unit(0.85, "feet"),
  22269. name: "Dick (Exotic)",
  22270. image: {
  22271. source: "./media/characters/artemis/dick-exotic.svg"
  22272. },
  22273. form: "calibrating"
  22274. },
  22275. dickCanineBigger: {
  22276. height: math.unit(1 * 1.33, "feet"),
  22277. name: "Dick (Canine)",
  22278. image: {
  22279. source: "./media/characters/artemis/dick-canine.svg"
  22280. },
  22281. form: "oversize-load"
  22282. },
  22283. dickEquineBigger: {
  22284. height: math.unit(0.85 * 1.33, "feet"),
  22285. name: "Dick (Equine)",
  22286. image: {
  22287. source: "./media/characters/artemis/dick-equine.svg"
  22288. },
  22289. form: "oversize-load"
  22290. },
  22291. dickExoticBigger: {
  22292. height: math.unit(0.85 * 1.33, "feet"),
  22293. name: "Dick (Exotic)",
  22294. image: {
  22295. source: "./media/characters/artemis/dick-exotic.svg"
  22296. },
  22297. form: "oversize-load"
  22298. },
  22299. },
  22300. [
  22301. {
  22302. name: "Normal",
  22303. height: math.unit(7.5, "feet"),
  22304. form: "work-safe",
  22305. default: true
  22306. },
  22307. {
  22308. name: "Normal",
  22309. height: math.unit(7.5, "feet"),
  22310. form: "calibrating",
  22311. default: true
  22312. },
  22313. {
  22314. name: "Normal",
  22315. height: math.unit(7.5, "feet"),
  22316. form: "oversize-load",
  22317. default: true
  22318. },
  22319. {
  22320. name: "Enlarged",
  22321. height: math.unit(12, "feet"),
  22322. form: "work-safe",
  22323. },
  22324. {
  22325. name: "Enlarged",
  22326. height: math.unit(12, "feet"),
  22327. form: "calibrating",
  22328. },
  22329. {
  22330. name: "Enlarged",
  22331. height: math.unit(12, "feet"),
  22332. form: "oversize-load",
  22333. },
  22334. ],
  22335. {
  22336. "work-safe": {
  22337. name: "Work-Safe",
  22338. default: true
  22339. },
  22340. "calibrating": {
  22341. name: "Calibrating"
  22342. },
  22343. "oversize-load": {
  22344. name: "Oversize Load"
  22345. }
  22346. }
  22347. ))
  22348. characterMakers.push(() => makeCharacter(
  22349. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  22350. {
  22351. front: {
  22352. height: math.unit(5 + 3 / 12, "feet"),
  22353. weight: math.unit(160, "lb"),
  22354. name: "Front",
  22355. image: {
  22356. source: "./media/characters/kira/front.svg",
  22357. extra: 906 / 786,
  22358. bottom: 0.01
  22359. }
  22360. },
  22361. back: {
  22362. height: math.unit(5 + 3 / 12, "feet"),
  22363. weight: math.unit(160, "lb"),
  22364. name: "Back",
  22365. image: {
  22366. source: "./media/characters/kira/back.svg",
  22367. extra: 882 / 757,
  22368. bottom: 0.005
  22369. }
  22370. },
  22371. frontDressed: {
  22372. height: math.unit(5 + 3 / 12, "feet"),
  22373. weight: math.unit(160, "lb"),
  22374. name: "Front (Dressed)",
  22375. image: {
  22376. source: "./media/characters/kira/front-dressed.svg",
  22377. extra: 906 / 786,
  22378. bottom: 0.01
  22379. }
  22380. },
  22381. beans: {
  22382. height: math.unit(0.92, "feet"),
  22383. name: "Beans",
  22384. image: {
  22385. source: "./media/characters/kira/beans.svg"
  22386. }
  22387. },
  22388. },
  22389. [
  22390. {
  22391. name: "Normal",
  22392. height: math.unit(5 + 3 / 12, "feet"),
  22393. default: true
  22394. },
  22395. ]
  22396. ))
  22397. characterMakers.push(() => makeCharacter(
  22398. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  22399. {
  22400. front: {
  22401. height: math.unit(5 + 4 / 12, "feet"),
  22402. weight: math.unit(145, "lb"),
  22403. name: "Front",
  22404. image: {
  22405. source: "./media/characters/scramble/front.svg",
  22406. extra: 763 / 727,
  22407. bottom: 0.05
  22408. }
  22409. },
  22410. back: {
  22411. height: math.unit(5 + 4 / 12, "feet"),
  22412. weight: math.unit(145, "lb"),
  22413. name: "Back",
  22414. image: {
  22415. source: "./media/characters/scramble/back.svg",
  22416. extra: 826 / 737,
  22417. bottom: 0.002
  22418. }
  22419. },
  22420. },
  22421. [
  22422. {
  22423. name: "Normal",
  22424. height: math.unit(5 + 4 / 12, "feet"),
  22425. default: true
  22426. },
  22427. ]
  22428. ))
  22429. characterMakers.push(() => makeCharacter(
  22430. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  22431. {
  22432. side: {
  22433. height: math.unit(6 + 2 / 12, "feet"),
  22434. weight: math.unit(190, "lb"),
  22435. name: "Side",
  22436. image: {
  22437. source: "./media/characters/biscuit/side.svg",
  22438. extra: 858 / 791,
  22439. bottom: 0.044
  22440. }
  22441. },
  22442. },
  22443. [
  22444. {
  22445. name: "Normal",
  22446. height: math.unit(6 + 2 / 12, "feet"),
  22447. default: true
  22448. },
  22449. ]
  22450. ))
  22451. characterMakers.push(() => makeCharacter(
  22452. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  22453. {
  22454. front: {
  22455. height: math.unit(5 + 2 / 12, "feet"),
  22456. weight: math.unit(120, "lb"),
  22457. name: "Front",
  22458. image: {
  22459. source: "./media/characters/poffin/front.svg",
  22460. extra: 786 / 680,
  22461. bottom: 0.005
  22462. }
  22463. },
  22464. },
  22465. [
  22466. {
  22467. name: "Normal",
  22468. height: math.unit(5 + 2 / 12, "feet"),
  22469. default: true
  22470. },
  22471. ]
  22472. ))
  22473. characterMakers.push(() => makeCharacter(
  22474. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  22475. {
  22476. front: {
  22477. height: math.unit(6 + 3 / 12, "feet"),
  22478. weight: math.unit(519, "lb"),
  22479. name: "Front",
  22480. image: {
  22481. source: "./media/characters/dhari/front.svg",
  22482. extra: 1048 / 946,
  22483. bottom: 0.015
  22484. }
  22485. },
  22486. back: {
  22487. height: math.unit(6 + 3 / 12, "feet"),
  22488. weight: math.unit(519, "lb"),
  22489. name: "Back",
  22490. image: {
  22491. source: "./media/characters/dhari/back.svg",
  22492. extra: 1048 / 931,
  22493. bottom: 0.005
  22494. }
  22495. },
  22496. frontDressed: {
  22497. height: math.unit(6 + 3 / 12, "feet"),
  22498. weight: math.unit(519, "lb"),
  22499. name: "Front (Dressed)",
  22500. image: {
  22501. source: "./media/characters/dhari/front-dressed.svg",
  22502. extra: 1713 / 1546,
  22503. bottom: 0.02
  22504. }
  22505. },
  22506. backDressed: {
  22507. height: math.unit(6 + 3 / 12, "feet"),
  22508. weight: math.unit(519, "lb"),
  22509. name: "Back (Dressed)",
  22510. image: {
  22511. source: "./media/characters/dhari/back-dressed.svg",
  22512. extra: 1699 / 1537,
  22513. bottom: 0.01
  22514. }
  22515. },
  22516. maw: {
  22517. height: math.unit(0.95, "feet"),
  22518. name: "Maw",
  22519. image: {
  22520. source: "./media/characters/dhari/maw.svg"
  22521. }
  22522. },
  22523. wereFront: {
  22524. height: math.unit(12 + 8 / 12, "feet"),
  22525. weight: math.unit(4000, "lb"),
  22526. name: "Front (Were)",
  22527. image: {
  22528. source: "./media/characters/dhari/were-front.svg",
  22529. extra: 1065 / 969,
  22530. bottom: 0.015
  22531. }
  22532. },
  22533. wereBack: {
  22534. height: math.unit(12 + 8 / 12, "feet"),
  22535. weight: math.unit(4000, "lb"),
  22536. name: "Back (Were)",
  22537. image: {
  22538. source: "./media/characters/dhari/were-back.svg",
  22539. extra: 1065 / 969,
  22540. bottom: 0.012
  22541. }
  22542. },
  22543. wereMaw: {
  22544. height: math.unit(0.625, "meters"),
  22545. name: "Maw (Were)",
  22546. image: {
  22547. source: "./media/characters/dhari/were-maw.svg"
  22548. }
  22549. },
  22550. },
  22551. [
  22552. {
  22553. name: "Normal",
  22554. height: math.unit(6 + 3 / 12, "feet"),
  22555. default: true
  22556. },
  22557. ]
  22558. ))
  22559. characterMakers.push(() => makeCharacter(
  22560. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  22561. {
  22562. anthro: {
  22563. height: math.unit(5 + 7 / 12, "feet"),
  22564. weight: math.unit(175, "lb"),
  22565. name: "Anthro",
  22566. image: {
  22567. source: "./media/characters/rena-dyne/anthro.svg",
  22568. extra: 1849 / 1785,
  22569. bottom: 0.005
  22570. }
  22571. },
  22572. taur: {
  22573. height: math.unit(15 + 6 / 12, "feet"),
  22574. weight: math.unit(8000, "lb"),
  22575. name: "Taur",
  22576. image: {
  22577. source: "./media/characters/rena-dyne/taur.svg",
  22578. extra: 2315 / 2234,
  22579. bottom: 0.033
  22580. }
  22581. },
  22582. },
  22583. [
  22584. {
  22585. name: "Normal",
  22586. height: math.unit(5 + 7 / 12, "feet"),
  22587. default: true
  22588. },
  22589. ]
  22590. ))
  22591. characterMakers.push(() => makeCharacter(
  22592. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  22593. {
  22594. front: {
  22595. height: math.unit(8, "feet"),
  22596. weight: math.unit(600, "lb"),
  22597. name: "Front",
  22598. image: {
  22599. source: "./media/characters/weremeep/front.svg",
  22600. extra: 970/849,
  22601. bottom: 7/977
  22602. }
  22603. },
  22604. },
  22605. [
  22606. {
  22607. name: "Normal",
  22608. height: math.unit(8, "feet"),
  22609. default: true
  22610. },
  22611. {
  22612. name: "Lorg",
  22613. height: math.unit(12, "feet")
  22614. },
  22615. {
  22616. name: "Oh Lawd She Comin'",
  22617. height: math.unit(20, "feet")
  22618. },
  22619. ]
  22620. ))
  22621. characterMakers.push(() => makeCharacter(
  22622. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  22623. {
  22624. front: {
  22625. height: math.unit(4, "feet"),
  22626. weight: math.unit(90, "lb"),
  22627. name: "Front",
  22628. image: {
  22629. source: "./media/characters/reza/front.svg",
  22630. extra: 1183 / 1111,
  22631. bottom: 0.017
  22632. }
  22633. },
  22634. back: {
  22635. height: math.unit(4, "feet"),
  22636. weight: math.unit(90, "lb"),
  22637. name: "Back",
  22638. image: {
  22639. source: "./media/characters/reza/back.svg",
  22640. extra: 1183 / 1111,
  22641. bottom: 0.01
  22642. }
  22643. },
  22644. drake: {
  22645. height: math.unit(30, "feet"),
  22646. weight: math.unit(246960, "lb"),
  22647. name: "Drake",
  22648. image: {
  22649. source: "./media/characters/reza/drake.svg",
  22650. extra: 2350 / 2024,
  22651. bottom: 60.7 / 2403
  22652. }
  22653. },
  22654. },
  22655. [
  22656. {
  22657. name: "Normal",
  22658. height: math.unit(4, "feet"),
  22659. default: true
  22660. },
  22661. ]
  22662. ))
  22663. characterMakers.push(() => makeCharacter(
  22664. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  22665. {
  22666. side: {
  22667. height: math.unit(15, "feet"),
  22668. weight: math.unit(14, "tons"),
  22669. name: "Side",
  22670. image: {
  22671. source: "./media/characters/athea/side.svg",
  22672. extra: 960 / 540,
  22673. bottom: 0.003
  22674. }
  22675. },
  22676. sitting: {
  22677. height: math.unit(6 * 2.85, "feet"),
  22678. weight: math.unit(14, "tons"),
  22679. name: "Sitting",
  22680. image: {
  22681. source: "./media/characters/athea/sitting.svg",
  22682. extra: 621 / 581,
  22683. bottom: 0.075
  22684. }
  22685. },
  22686. maw: {
  22687. height: math.unit(7.59498031496063, "feet"),
  22688. name: "Maw",
  22689. image: {
  22690. source: "./media/characters/athea/maw.svg"
  22691. }
  22692. },
  22693. },
  22694. [
  22695. {
  22696. name: "Lap Cat",
  22697. height: math.unit(2.5, "feet")
  22698. },
  22699. {
  22700. name: "Minimacro",
  22701. height: math.unit(15, "feet"),
  22702. default: true
  22703. },
  22704. {
  22705. name: "Macro",
  22706. height: math.unit(120, "feet")
  22707. },
  22708. {
  22709. name: "Macro+",
  22710. height: math.unit(640, "feet")
  22711. },
  22712. {
  22713. name: "Colossus",
  22714. height: math.unit(2.2, "miles")
  22715. },
  22716. ]
  22717. ))
  22718. characterMakers.push(() => makeCharacter(
  22719. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  22720. {
  22721. front: {
  22722. height: math.unit(8 + 8 / 12, "feet"),
  22723. weight: math.unit(130, "kg"),
  22724. name: "Front",
  22725. image: {
  22726. source: "./media/characters/seroko/front.svg",
  22727. extra: 1385 / 1280,
  22728. bottom: 0.025
  22729. }
  22730. },
  22731. back: {
  22732. height: math.unit(8 + 8 / 12, "feet"),
  22733. weight: math.unit(130, "kg"),
  22734. name: "Back",
  22735. image: {
  22736. source: "./media/characters/seroko/back.svg",
  22737. extra: 1369 / 1238,
  22738. bottom: 0.018
  22739. }
  22740. },
  22741. frontDressed: {
  22742. height: math.unit(8 + 8 / 12, "feet"),
  22743. weight: math.unit(130, "kg"),
  22744. name: "Front (Dressed)",
  22745. image: {
  22746. source: "./media/characters/seroko/front-dressed.svg",
  22747. extra: 1366 / 1275,
  22748. bottom: 0.03
  22749. }
  22750. },
  22751. },
  22752. [
  22753. {
  22754. name: "Normal",
  22755. height: math.unit(8 + 8 / 12, "feet"),
  22756. default: true
  22757. },
  22758. ]
  22759. ))
  22760. characterMakers.push(() => makeCharacter(
  22761. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  22762. {
  22763. front: {
  22764. height: math.unit(5.5, "feet"),
  22765. weight: math.unit(160, "lb"),
  22766. name: "Front",
  22767. image: {
  22768. source: "./media/characters/quatzi/front.svg",
  22769. extra: 2346 / 2242,
  22770. bottom: 0.015
  22771. }
  22772. },
  22773. },
  22774. [
  22775. {
  22776. name: "Normal",
  22777. height: math.unit(5.5, "feet"),
  22778. default: true
  22779. },
  22780. {
  22781. name: "Big",
  22782. height: math.unit(7.7, "feet")
  22783. },
  22784. ]
  22785. ))
  22786. characterMakers.push(() => makeCharacter(
  22787. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  22788. {
  22789. front: {
  22790. height: math.unit(5 + 11 / 12, "feet"),
  22791. weight: math.unit(180, "lb"),
  22792. name: "Front",
  22793. image: {
  22794. source: "./media/characters/sen/front.svg",
  22795. extra: 1321 / 1254,
  22796. bottom: 0.015
  22797. }
  22798. },
  22799. side: {
  22800. height: math.unit(5 + 11 / 12, "feet"),
  22801. weight: math.unit(180, "lb"),
  22802. name: "Side",
  22803. image: {
  22804. source: "./media/characters/sen/side.svg",
  22805. extra: 1321 / 1254,
  22806. bottom: 0.007
  22807. }
  22808. },
  22809. back: {
  22810. height: math.unit(5 + 11 / 12, "feet"),
  22811. weight: math.unit(180, "lb"),
  22812. name: "Back",
  22813. image: {
  22814. source: "./media/characters/sen/back.svg",
  22815. extra: 1321 / 1254
  22816. }
  22817. },
  22818. },
  22819. [
  22820. {
  22821. name: "Normal",
  22822. height: math.unit(5 + 11 / 12, "feet"),
  22823. default: true
  22824. },
  22825. ]
  22826. ))
  22827. characterMakers.push(() => makeCharacter(
  22828. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  22829. {
  22830. front: {
  22831. height: math.unit(166.6, "cm"),
  22832. weight: math.unit(66.6, "kg"),
  22833. name: "Front",
  22834. image: {
  22835. source: "./media/characters/fruity/front.svg",
  22836. extra: 1510 / 1386,
  22837. bottom: 0.04
  22838. }
  22839. },
  22840. back: {
  22841. height: math.unit(166.6, "cm"),
  22842. weight: math.unit(66.6, "lb"),
  22843. name: "Back",
  22844. image: {
  22845. source: "./media/characters/fruity/back.svg",
  22846. extra: 1563 / 1435,
  22847. bottom: 0.005
  22848. }
  22849. },
  22850. },
  22851. [
  22852. {
  22853. name: "Normal",
  22854. height: math.unit(166.6, "cm"),
  22855. default: true
  22856. },
  22857. {
  22858. name: "Demonic",
  22859. height: math.unit(166.6, "feet")
  22860. },
  22861. ]
  22862. ))
  22863. characterMakers.push(() => makeCharacter(
  22864. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  22865. {
  22866. side: {
  22867. height: math.unit(10, "feet"),
  22868. weight: math.unit(500, "lb"),
  22869. name: "Side",
  22870. image: {
  22871. source: "./media/characters/zost/side.svg",
  22872. extra: 2870/2533,
  22873. bottom: 252/3122
  22874. }
  22875. },
  22876. mawFront: {
  22877. height: math.unit(1.08, "meters"),
  22878. name: "Maw (Front)",
  22879. image: {
  22880. source: "./media/characters/zost/maw-front.svg"
  22881. }
  22882. },
  22883. mawSide: {
  22884. height: math.unit(2.66, "feet"),
  22885. name: "Maw (Side)",
  22886. image: {
  22887. source: "./media/characters/zost/maw-side.svg"
  22888. }
  22889. },
  22890. wingspan: {
  22891. height: math.unit(7.4, "feet"),
  22892. name: "Wingspan",
  22893. image: {
  22894. source: "./media/characters/zost/wingspan.svg"
  22895. }
  22896. },
  22897. },
  22898. [
  22899. {
  22900. name: "Normal",
  22901. height: math.unit(10, "feet"),
  22902. default: true
  22903. },
  22904. ]
  22905. ))
  22906. characterMakers.push(() => makeCharacter(
  22907. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  22908. {
  22909. front: {
  22910. height: math.unit(5 + 4 / 12, "feet"),
  22911. weight: math.unit(120, "lb"),
  22912. name: "Front",
  22913. image: {
  22914. source: "./media/characters/luci/front.svg",
  22915. extra: 1985 / 1884,
  22916. bottom: 0.04
  22917. }
  22918. },
  22919. back: {
  22920. height: math.unit(5 + 4 / 12, "feet"),
  22921. weight: math.unit(120, "lb"),
  22922. name: "Back",
  22923. image: {
  22924. source: "./media/characters/luci/back.svg",
  22925. extra: 1892 / 1791,
  22926. bottom: 0.002
  22927. }
  22928. },
  22929. },
  22930. [
  22931. {
  22932. name: "Normal",
  22933. height: math.unit(5 + 4 / 12, "feet"),
  22934. default: true
  22935. },
  22936. ]
  22937. ))
  22938. characterMakers.push(() => makeCharacter(
  22939. { name: "2th", species: ["monster"], tags: ["anthro"] },
  22940. {
  22941. front: {
  22942. height: math.unit(1500, "feet"),
  22943. weight: math.unit(3.8e6, "tons"),
  22944. name: "Front",
  22945. image: {
  22946. source: "./media/characters/2th/front.svg",
  22947. extra: 3489 / 3350,
  22948. bottom: 0.1
  22949. }
  22950. },
  22951. foot: {
  22952. height: math.unit(461, "feet"),
  22953. name: "Foot",
  22954. image: {
  22955. source: "./media/characters/2th/foot.svg"
  22956. }
  22957. },
  22958. },
  22959. [
  22960. {
  22961. name: "\"Micro\"",
  22962. height: math.unit(15 + 7 / 12, "feet")
  22963. },
  22964. {
  22965. name: "Normal",
  22966. height: math.unit(1500, "feet"),
  22967. default: true
  22968. },
  22969. {
  22970. name: "Macro",
  22971. height: math.unit(5000, "feet")
  22972. },
  22973. {
  22974. name: "Megamacro",
  22975. height: math.unit(15, "miles")
  22976. },
  22977. {
  22978. name: "Gigamacro",
  22979. height: math.unit(4000, "miles")
  22980. },
  22981. {
  22982. name: "Galactic",
  22983. height: math.unit(50, "AU")
  22984. },
  22985. ]
  22986. ))
  22987. characterMakers.push(() => makeCharacter(
  22988. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  22989. {
  22990. front: {
  22991. height: math.unit(5 + 6 / 12, "feet"),
  22992. weight: math.unit(220, "lb"),
  22993. name: "Front",
  22994. image: {
  22995. source: "./media/characters/amethyst/front.svg",
  22996. extra: 2078 / 2040,
  22997. bottom: 0.045
  22998. }
  22999. },
  23000. back: {
  23001. height: math.unit(5 + 6 / 12, "feet"),
  23002. weight: math.unit(220, "lb"),
  23003. name: "Back",
  23004. image: {
  23005. source: "./media/characters/amethyst/back.svg",
  23006. extra: 2021 / 1989,
  23007. bottom: 0.02
  23008. }
  23009. },
  23010. },
  23011. [
  23012. {
  23013. name: "Normal",
  23014. height: math.unit(5 + 6 / 12, "feet"),
  23015. default: true
  23016. },
  23017. ]
  23018. ))
  23019. characterMakers.push(() => makeCharacter(
  23020. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  23021. {
  23022. front: {
  23023. height: math.unit(4 + 11 / 12, "feet"),
  23024. weight: math.unit(120, "lb"),
  23025. name: "Front",
  23026. image: {
  23027. source: "./media/characters/yumi-akiyama/front.svg",
  23028. extra: 1327 / 1235,
  23029. bottom: 0.02
  23030. }
  23031. },
  23032. back: {
  23033. height: math.unit(4 + 11 / 12, "feet"),
  23034. weight: math.unit(120, "lb"),
  23035. name: "Back",
  23036. image: {
  23037. source: "./media/characters/yumi-akiyama/back.svg",
  23038. extra: 1287 / 1245,
  23039. bottom: 0.002
  23040. }
  23041. },
  23042. },
  23043. [
  23044. {
  23045. name: "Galactic",
  23046. height: math.unit(50, "galaxies"),
  23047. default: true
  23048. },
  23049. {
  23050. name: "Universal",
  23051. height: math.unit(100, "universes")
  23052. },
  23053. ]
  23054. ))
  23055. characterMakers.push(() => makeCharacter(
  23056. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  23057. {
  23058. front: {
  23059. height: math.unit(8, "feet"),
  23060. weight: math.unit(500, "lb"),
  23061. name: "Front",
  23062. image: {
  23063. source: "./media/characters/rifter-yrmori/front.svg",
  23064. extra: 1180 / 1125,
  23065. bottom: 0.02
  23066. }
  23067. },
  23068. back: {
  23069. height: math.unit(8, "feet"),
  23070. weight: math.unit(500, "lb"),
  23071. name: "Back",
  23072. image: {
  23073. source: "./media/characters/rifter-yrmori/back.svg",
  23074. extra: 1190 / 1145,
  23075. bottom: 0.001
  23076. }
  23077. },
  23078. wings: {
  23079. height: math.unit(7.75, "feet"),
  23080. weight: math.unit(500, "lb"),
  23081. name: "Wings",
  23082. image: {
  23083. source: "./media/characters/rifter-yrmori/wings.svg",
  23084. extra: 1357 / 1285
  23085. }
  23086. },
  23087. maw: {
  23088. height: math.unit(0.8, "feet"),
  23089. name: "Maw",
  23090. image: {
  23091. source: "./media/characters/rifter-yrmori/maw.svg"
  23092. }
  23093. },
  23094. mawfront: {
  23095. height: math.unit(1.45, "feet"),
  23096. name: "Maw (Front)",
  23097. image: {
  23098. source: "./media/characters/rifter-yrmori/maw-front.svg"
  23099. }
  23100. },
  23101. },
  23102. [
  23103. {
  23104. name: "Normal",
  23105. height: math.unit(8, "feet"),
  23106. default: true
  23107. },
  23108. {
  23109. name: "Macro",
  23110. height: math.unit(42, "meters")
  23111. },
  23112. ]
  23113. ))
  23114. characterMakers.push(() => makeCharacter(
  23115. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  23116. {
  23117. were: {
  23118. height: math.unit(25 + 6 / 12, "feet"),
  23119. weight: math.unit(10000, "lb"),
  23120. name: "Were",
  23121. image: {
  23122. source: "./media/characters/tahajin/were.svg",
  23123. extra: 801 / 770,
  23124. bottom: 0.042
  23125. }
  23126. },
  23127. aquatic: {
  23128. height: math.unit(6 + 4 / 12, "feet"),
  23129. weight: math.unit(160, "lb"),
  23130. name: "Aquatic",
  23131. image: {
  23132. source: "./media/characters/tahajin/aquatic.svg",
  23133. extra: 572 / 542,
  23134. bottom: 0.04
  23135. }
  23136. },
  23137. chow: {
  23138. height: math.unit(8 + 11 / 12, "feet"),
  23139. weight: math.unit(450, "lb"),
  23140. name: "Chow",
  23141. image: {
  23142. source: "./media/characters/tahajin/chow.svg",
  23143. extra: 660 / 640,
  23144. bottom: 0.015
  23145. }
  23146. },
  23147. demiNaga: {
  23148. height: math.unit(6 + 8 / 12, "feet"),
  23149. weight: math.unit(300, "lb"),
  23150. name: "Demi Naga",
  23151. image: {
  23152. source: "./media/characters/tahajin/demi-naga.svg",
  23153. extra: 643 / 615,
  23154. bottom: 0.1
  23155. }
  23156. },
  23157. data: {
  23158. height: math.unit(5, "inches"),
  23159. weight: math.unit(0.1, "lb"),
  23160. name: "Data",
  23161. image: {
  23162. source: "./media/characters/tahajin/data.svg"
  23163. }
  23164. },
  23165. fluu: {
  23166. height: math.unit(5 + 7 / 12, "feet"),
  23167. weight: math.unit(140, "lb"),
  23168. name: "Fluu",
  23169. image: {
  23170. source: "./media/characters/tahajin/fluu.svg",
  23171. extra: 628 / 592,
  23172. bottom: 0.02
  23173. }
  23174. },
  23175. starWarrior: {
  23176. height: math.unit(4 + 5 / 12, "feet"),
  23177. weight: math.unit(50, "lb"),
  23178. name: "Star Warrior",
  23179. image: {
  23180. source: "./media/characters/tahajin/star-warrior.svg"
  23181. }
  23182. },
  23183. },
  23184. [
  23185. {
  23186. name: "Normal",
  23187. height: math.unit(25 + 6 / 12, "feet"),
  23188. default: true
  23189. },
  23190. ]
  23191. ))
  23192. characterMakers.push(() => makeCharacter(
  23193. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  23194. {
  23195. front: {
  23196. height: math.unit(8, "feet"),
  23197. weight: math.unit(350, "lb"),
  23198. name: "Front",
  23199. image: {
  23200. source: "./media/characters/gabira/front.svg",
  23201. extra: 1261/1154,
  23202. bottom: 51/1312
  23203. }
  23204. },
  23205. back: {
  23206. height: math.unit(8, "feet"),
  23207. weight: math.unit(350, "lb"),
  23208. name: "Back",
  23209. image: {
  23210. source: "./media/characters/gabira/back.svg",
  23211. extra: 1265/1163,
  23212. bottom: 46/1311
  23213. }
  23214. },
  23215. head: {
  23216. height: math.unit(2.85, "feet"),
  23217. name: "Head",
  23218. image: {
  23219. source: "./media/characters/gabira/head.svg"
  23220. }
  23221. },
  23222. },
  23223. [
  23224. {
  23225. name: "Normal",
  23226. height: math.unit(8, "feet"),
  23227. default: true
  23228. },
  23229. ]
  23230. ))
  23231. characterMakers.push(() => makeCharacter(
  23232. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  23233. {
  23234. front: {
  23235. height: math.unit(5 + 3 / 12, "feet"),
  23236. weight: math.unit(137, "lb"),
  23237. name: "Front",
  23238. image: {
  23239. source: "./media/characters/sasha-katraine/front.svg",
  23240. extra: 1745/1694,
  23241. bottom: 37/1782
  23242. }
  23243. },
  23244. back: {
  23245. height: math.unit(5 + 3 / 12, "feet"),
  23246. weight: math.unit(137, "lb"),
  23247. name: "Back",
  23248. image: {
  23249. source: "./media/characters/sasha-katraine/back.svg",
  23250. extra: 1776/1699,
  23251. bottom: 26/1802
  23252. }
  23253. },
  23254. },
  23255. [
  23256. {
  23257. name: "Micro",
  23258. height: math.unit(5, "inches")
  23259. },
  23260. {
  23261. name: "Normal",
  23262. height: math.unit(5 + 3 / 12, "feet"),
  23263. default: true
  23264. },
  23265. ]
  23266. ))
  23267. characterMakers.push(() => makeCharacter(
  23268. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  23269. {
  23270. side: {
  23271. height: math.unit(4, "inches"),
  23272. weight: math.unit(200, "grams"),
  23273. name: "Side",
  23274. image: {
  23275. source: "./media/characters/der/side.svg",
  23276. extra: 719 / 400,
  23277. bottom: 30.6 / 749.9187
  23278. }
  23279. },
  23280. },
  23281. [
  23282. {
  23283. name: "Micro",
  23284. height: math.unit(4, "inches"),
  23285. default: true
  23286. },
  23287. ]
  23288. ))
  23289. characterMakers.push(() => makeCharacter(
  23290. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  23291. {
  23292. side: {
  23293. height: math.unit(30, "meters"),
  23294. weight: math.unit(700, "tonnes"),
  23295. name: "Side",
  23296. image: {
  23297. source: "./media/characters/fixerdragon/side.svg",
  23298. extra: (1293.0514 - 116.03) / 1106.86,
  23299. bottom: 116.03 / 1293.0514
  23300. }
  23301. },
  23302. },
  23303. [
  23304. {
  23305. name: "Planck",
  23306. height: math.unit(1.6e-35, "meters")
  23307. },
  23308. {
  23309. name: "Micro",
  23310. height: math.unit(0.4, "meters")
  23311. },
  23312. {
  23313. name: "Normal",
  23314. height: math.unit(30, "meters"),
  23315. default: true
  23316. },
  23317. {
  23318. name: "Megamacro",
  23319. height: math.unit(1.2, "megameters")
  23320. },
  23321. {
  23322. name: "Teramacro",
  23323. height: math.unit(130, "terameters")
  23324. },
  23325. {
  23326. name: "Yottamacro",
  23327. height: math.unit(6200, "yottameters")
  23328. },
  23329. ]
  23330. ));
  23331. characterMakers.push(() => makeCharacter(
  23332. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  23333. {
  23334. front: {
  23335. height: math.unit(8, "feet"),
  23336. weight: math.unit(250, "lb"),
  23337. name: "Front",
  23338. image: {
  23339. source: "./media/characters/kite/front.svg",
  23340. extra: 2796 / 2659,
  23341. bottom: 0.002
  23342. }
  23343. },
  23344. },
  23345. [
  23346. {
  23347. name: "Normal",
  23348. height: math.unit(8, "feet"),
  23349. default: true
  23350. },
  23351. {
  23352. name: "Macro",
  23353. height: math.unit(360, "feet")
  23354. },
  23355. {
  23356. name: "Megamacro",
  23357. height: math.unit(1500, "feet")
  23358. },
  23359. ]
  23360. ))
  23361. characterMakers.push(() => makeCharacter(
  23362. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  23363. {
  23364. front: {
  23365. height: math.unit(5 + 11/12, "feet"),
  23366. weight: math.unit(170, "lb"),
  23367. name: "Front",
  23368. image: {
  23369. source: "./media/characters/poojawa-vynar/front.svg",
  23370. extra: 1735/1585,
  23371. bottom: 96/1831
  23372. }
  23373. },
  23374. back: {
  23375. height: math.unit(5 + 11/12, "feet"),
  23376. weight: math.unit(170, "lb"),
  23377. name: "Back",
  23378. image: {
  23379. source: "./media/characters/poojawa-vynar/back.svg",
  23380. extra: 1749/1607,
  23381. bottom: 28/1777
  23382. }
  23383. },
  23384. male: {
  23385. height: math.unit(5 + 11/12, "feet"),
  23386. weight: math.unit(170, "lb"),
  23387. name: "Male",
  23388. image: {
  23389. source: "./media/characters/poojawa-vynar/male.svg",
  23390. extra: 1855/1713,
  23391. bottom: 63/1918
  23392. }
  23393. },
  23394. taur: {
  23395. height: math.unit(5 + 11/12, "feet"),
  23396. weight: math.unit(170, "lb"),
  23397. name: "Taur",
  23398. image: {
  23399. source: "./media/characters/poojawa-vynar/taur.svg",
  23400. extra: 1151/1059,
  23401. bottom: 356/1507
  23402. }
  23403. },
  23404. frontDressed: {
  23405. height: math.unit(5 + 11/12, "feet"),
  23406. weight: math.unit(170, "lb"),
  23407. name: "Front (Dressed)",
  23408. image: {
  23409. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  23410. extra: 1735/1585,
  23411. bottom: 96/1831
  23412. }
  23413. },
  23414. backDressed: {
  23415. height: math.unit(5 + 11/12, "feet"),
  23416. weight: math.unit(170, "lb"),
  23417. name: "Back (Dressed)",
  23418. image: {
  23419. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  23420. extra: 1749/1607,
  23421. bottom: 28/1777
  23422. }
  23423. },
  23424. maleDressed: {
  23425. height: math.unit(5 + 11/12, "feet"),
  23426. weight: math.unit(170, "lb"),
  23427. name: "Male (Dressed)",
  23428. image: {
  23429. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  23430. extra: 1855/1713,
  23431. bottom: 63/1918
  23432. }
  23433. },
  23434. taurDressed: {
  23435. height: math.unit(5 + 11/12, "feet"),
  23436. weight: math.unit(170, "lb"),
  23437. name: "Taur (Dressed)",
  23438. image: {
  23439. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  23440. extra: 1151/1059,
  23441. bottom: 356/1507
  23442. }
  23443. },
  23444. maw: {
  23445. height: math.unit(1.46, "feet"),
  23446. name: "Maw",
  23447. image: {
  23448. source: "./media/characters/poojawa-vynar/maw.svg"
  23449. }
  23450. },
  23451. head: {
  23452. height: math.unit(2.34, "feet"),
  23453. name: "Head",
  23454. image: {
  23455. source: "./media/characters/poojawa-vynar/head.svg"
  23456. }
  23457. },
  23458. paw: {
  23459. height: math.unit(1.61, "feet"),
  23460. name: "Paw",
  23461. image: {
  23462. source: "./media/characters/poojawa-vynar/paw.svg"
  23463. }
  23464. },
  23465. pawToering: {
  23466. height: math.unit(1.72, "feet"),
  23467. name: "Paw (Toering)",
  23468. image: {
  23469. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  23470. }
  23471. },
  23472. toering: {
  23473. height: math.unit(2.9, "inches"),
  23474. name: "Toering",
  23475. image: {
  23476. source: "./media/characters/poojawa-vynar/toering.svg"
  23477. }
  23478. },
  23479. shaft: {
  23480. height: math.unit(0.625, "feet"),
  23481. name: "Shaft",
  23482. image: {
  23483. source: "./media/characters/poojawa-vynar/shaft.svg"
  23484. }
  23485. },
  23486. spade: {
  23487. height: math.unit(0.42, "feet"),
  23488. name: "Spade",
  23489. image: {
  23490. source: "./media/characters/poojawa-vynar/spade.svg"
  23491. }
  23492. },
  23493. },
  23494. [
  23495. {
  23496. name: "Shortstack",
  23497. height: math.unit(4, "feet")
  23498. },
  23499. {
  23500. name: "Normal",
  23501. height: math.unit(5 + 11 / 12, "feet"),
  23502. default: true
  23503. },
  23504. {
  23505. name: "Tauric",
  23506. height: math.unit(4, "meters")
  23507. },
  23508. ]
  23509. ))
  23510. characterMakers.push(() => makeCharacter(
  23511. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  23512. {
  23513. front: {
  23514. height: math.unit(293, "meters"),
  23515. weight: math.unit(70400, "tons"),
  23516. name: "Front",
  23517. image: {
  23518. source: "./media/characters/violette/front.svg",
  23519. extra: 1227 / 1180,
  23520. bottom: 0.005
  23521. }
  23522. },
  23523. back: {
  23524. height: math.unit(293, "meters"),
  23525. weight: math.unit(70400, "tons"),
  23526. name: "Back",
  23527. image: {
  23528. source: "./media/characters/violette/back.svg",
  23529. extra: 1227 / 1180,
  23530. bottom: 0.005
  23531. }
  23532. },
  23533. },
  23534. [
  23535. {
  23536. name: "Macro",
  23537. height: math.unit(293, "meters"),
  23538. default: true
  23539. },
  23540. ]
  23541. ))
  23542. characterMakers.push(() => makeCharacter(
  23543. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  23544. {
  23545. front: {
  23546. height: math.unit(1050, "feet"),
  23547. weight: math.unit(200000, "tons"),
  23548. name: "Front",
  23549. image: {
  23550. source: "./media/characters/alessandra/front.svg",
  23551. extra: 960 / 912,
  23552. bottom: 0.06
  23553. }
  23554. },
  23555. },
  23556. [
  23557. {
  23558. name: "Macro",
  23559. height: math.unit(1050, "feet")
  23560. },
  23561. {
  23562. name: "Macro+",
  23563. height: math.unit(900, "meters"),
  23564. default: true
  23565. },
  23566. ]
  23567. ))
  23568. characterMakers.push(() => makeCharacter(
  23569. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  23570. {
  23571. front: {
  23572. height: math.unit(5, "feet"),
  23573. weight: math.unit(187, "lb"),
  23574. name: "Front",
  23575. image: {
  23576. source: "./media/characters/person/front.svg",
  23577. extra: 3087 / 2945,
  23578. bottom: 91 / 3181
  23579. }
  23580. },
  23581. },
  23582. [
  23583. {
  23584. name: "Micro",
  23585. height: math.unit(3, "inches")
  23586. },
  23587. {
  23588. name: "Normal",
  23589. height: math.unit(5, "feet"),
  23590. default: true
  23591. },
  23592. {
  23593. name: "Macro",
  23594. height: math.unit(90, "feet")
  23595. },
  23596. {
  23597. name: "Max Size",
  23598. height: math.unit(280, "feet")
  23599. },
  23600. ]
  23601. ))
  23602. characterMakers.push(() => makeCharacter(
  23603. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  23604. {
  23605. front: {
  23606. height: math.unit(4.5, "meters"),
  23607. weight: math.unit(3200, "lb"),
  23608. name: "Front",
  23609. image: {
  23610. source: "./media/characters/ty/front.svg",
  23611. extra: 1038 / 960,
  23612. bottom: 31.156 / 1068
  23613. }
  23614. },
  23615. back: {
  23616. height: math.unit(4.5, "meters"),
  23617. weight: math.unit(3200, "lb"),
  23618. name: "Back",
  23619. image: {
  23620. source: "./media/characters/ty/back.svg",
  23621. extra: 1044 / 966,
  23622. bottom: 7.48 / 1049
  23623. }
  23624. },
  23625. },
  23626. [
  23627. {
  23628. name: "Normal",
  23629. height: math.unit(4.5, "meters"),
  23630. default: true
  23631. },
  23632. ]
  23633. ))
  23634. characterMakers.push(() => makeCharacter(
  23635. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  23636. {
  23637. front: {
  23638. height: math.unit(5 + 4 / 12, "feet"),
  23639. weight: math.unit(115, "lb"),
  23640. name: "Front",
  23641. image: {
  23642. source: "./media/characters/rocky/front.svg",
  23643. extra: 1012 / 975,
  23644. bottom: 54 / 1066
  23645. }
  23646. },
  23647. },
  23648. [
  23649. {
  23650. name: "Normal",
  23651. height: math.unit(5 + 4 / 12, "feet"),
  23652. default: true
  23653. },
  23654. ]
  23655. ))
  23656. characterMakers.push(() => makeCharacter(
  23657. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  23658. {
  23659. upright: {
  23660. height: math.unit(6, "meters"),
  23661. weight: math.unit(4000, "kg"),
  23662. name: "Upright",
  23663. image: {
  23664. source: "./media/characters/ruin/upright.svg",
  23665. extra: 668 / 661,
  23666. bottom: 42 / 799.8396
  23667. }
  23668. },
  23669. },
  23670. [
  23671. {
  23672. name: "Normal",
  23673. height: math.unit(6, "meters"),
  23674. default: true
  23675. },
  23676. ]
  23677. ))
  23678. characterMakers.push(() => makeCharacter(
  23679. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  23680. {
  23681. front: {
  23682. height: math.unit(5, "feet"),
  23683. weight: math.unit(106, "lb"),
  23684. name: "Front",
  23685. image: {
  23686. source: "./media/characters/robin/front.svg",
  23687. extra: 862 / 799,
  23688. bottom: 42.4 / 914.8856
  23689. }
  23690. },
  23691. },
  23692. [
  23693. {
  23694. name: "Normal",
  23695. height: math.unit(5, "feet"),
  23696. default: true
  23697. },
  23698. ]
  23699. ))
  23700. characterMakers.push(() => makeCharacter(
  23701. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  23702. {
  23703. side: {
  23704. height: math.unit(3, "feet"),
  23705. weight: math.unit(225, "lb"),
  23706. name: "Side",
  23707. image: {
  23708. source: "./media/characters/saian/side.svg",
  23709. extra: 566 / 356,
  23710. bottom: 79.7 / 643
  23711. }
  23712. },
  23713. maw: {
  23714. height: math.unit(2.85, "feet"),
  23715. name: "Maw",
  23716. image: {
  23717. source: "./media/characters/saian/maw.svg"
  23718. }
  23719. },
  23720. },
  23721. [
  23722. {
  23723. name: "Normal",
  23724. height: math.unit(3, "feet"),
  23725. default: true
  23726. },
  23727. ]
  23728. ))
  23729. characterMakers.push(() => makeCharacter(
  23730. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  23731. {
  23732. side: {
  23733. height: math.unit(8, "feet"),
  23734. weight: math.unit(300, "lb"),
  23735. name: "Side",
  23736. image: {
  23737. source: "./media/characters/equus-silvermane/side.svg",
  23738. extra: 2176 / 2050,
  23739. bottom: 65.7 / 2245
  23740. }
  23741. },
  23742. front: {
  23743. height: math.unit(8, "feet"),
  23744. weight: math.unit(300, "lb"),
  23745. name: "Front",
  23746. image: {
  23747. source: "./media/characters/equus-silvermane/front.svg",
  23748. extra: 4633 / 4400,
  23749. bottom: 71.3 / 4706.915
  23750. }
  23751. },
  23752. sideStepping: {
  23753. height: math.unit(8, "feet"),
  23754. weight: math.unit(300, "lb"),
  23755. name: "Side (Stepping)",
  23756. image: {
  23757. source: "./media/characters/equus-silvermane/side-stepping.svg",
  23758. extra: 1968 / 1860,
  23759. bottom: 16.4 / 1989
  23760. }
  23761. },
  23762. },
  23763. [
  23764. {
  23765. name: "Normal",
  23766. height: math.unit(8, "feet")
  23767. },
  23768. {
  23769. name: "Minimacro",
  23770. height: math.unit(75, "feet"),
  23771. default: true
  23772. },
  23773. {
  23774. name: "Macro",
  23775. height: math.unit(150, "feet")
  23776. },
  23777. {
  23778. name: "Macro+",
  23779. height: math.unit(1000, "feet")
  23780. },
  23781. {
  23782. name: "Megamacro",
  23783. height: math.unit(1, "mile")
  23784. },
  23785. ]
  23786. ))
  23787. characterMakers.push(() => makeCharacter(
  23788. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  23789. {
  23790. side: {
  23791. height: math.unit(20, "feet"),
  23792. weight: math.unit(30000, "kg"),
  23793. name: "Side",
  23794. image: {
  23795. source: "./media/characters/windar/side.svg",
  23796. extra: 1491 / 1248,
  23797. bottom: 82.56 / 1568
  23798. }
  23799. },
  23800. },
  23801. [
  23802. {
  23803. name: "Normal",
  23804. height: math.unit(20, "feet"),
  23805. default: true
  23806. },
  23807. ]
  23808. ))
  23809. characterMakers.push(() => makeCharacter(
  23810. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  23811. {
  23812. side: {
  23813. height: math.unit(15.66, "feet"),
  23814. weight: math.unit(150, "lb"),
  23815. name: "Side",
  23816. image: {
  23817. source: "./media/characters/melody/side.svg",
  23818. extra: 1097 / 944,
  23819. bottom: 11.8 / 1109
  23820. }
  23821. },
  23822. sideOutfit: {
  23823. height: math.unit(15.66, "feet"),
  23824. weight: math.unit(150, "lb"),
  23825. name: "Side (Outfit)",
  23826. image: {
  23827. source: "./media/characters/melody/side-outfit.svg",
  23828. extra: 1097 / 944,
  23829. bottom: 11.8 / 1109
  23830. }
  23831. },
  23832. },
  23833. [
  23834. {
  23835. name: "Normal",
  23836. height: math.unit(15.66, "feet"),
  23837. default: true
  23838. },
  23839. ]
  23840. ))
  23841. characterMakers.push(() => makeCharacter(
  23842. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  23843. {
  23844. armoredFront: {
  23845. height: math.unit(8, "feet"),
  23846. weight: math.unit(325, "lb"),
  23847. name: "Front",
  23848. image: {
  23849. source: "./media/characters/windera/armored-front.svg",
  23850. extra: 1830/1598,
  23851. bottom: 151/1981
  23852. },
  23853. form: "armored",
  23854. default: true
  23855. },
  23856. macroFront: {
  23857. height: math.unit(70, "feet"),
  23858. weight: math.unit(315453, "lb"),
  23859. name: "Front",
  23860. image: {
  23861. source: "./media/characters/windera/macro-front.svg",
  23862. extra: 963/883,
  23863. bottom: 23/986
  23864. },
  23865. form: "macro",
  23866. default: true
  23867. },
  23868. },
  23869. [
  23870. {
  23871. name: "Normal",
  23872. height: math.unit(8, "feet"),
  23873. default: true,
  23874. form: "armored"
  23875. },
  23876. {
  23877. name: "Normal",
  23878. height: math.unit(70, "feet"),
  23879. default: true,
  23880. form: "macro"
  23881. },
  23882. ],
  23883. {
  23884. "armored": {
  23885. name: "Armored",
  23886. default: true
  23887. },
  23888. "macro": {
  23889. name: "Macro",
  23890. },
  23891. }
  23892. ))
  23893. characterMakers.push(() => makeCharacter(
  23894. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  23895. {
  23896. front: {
  23897. height: math.unit(28.75, "feet"),
  23898. weight: math.unit(2000, "kg"),
  23899. name: "Front",
  23900. image: {
  23901. source: "./media/characters/sonear/front.svg",
  23902. extra: 1041.1 / 964.9,
  23903. bottom: 53.7 / 1096.6
  23904. }
  23905. },
  23906. },
  23907. [
  23908. {
  23909. name: "Normal",
  23910. height: math.unit(28.75, "feet"),
  23911. default: true
  23912. },
  23913. ]
  23914. ))
  23915. characterMakers.push(() => makeCharacter(
  23916. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  23917. {
  23918. side: {
  23919. height: math.unit(25.5, "feet"),
  23920. weight: math.unit(23000, "kg"),
  23921. name: "Side",
  23922. image: {
  23923. source: "./media/characters/kanara/side.svg"
  23924. }
  23925. },
  23926. },
  23927. [
  23928. {
  23929. name: "Normal",
  23930. height: math.unit(25.5, "feet"),
  23931. default: true
  23932. },
  23933. ]
  23934. ))
  23935. characterMakers.push(() => makeCharacter(
  23936. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  23937. {
  23938. side: {
  23939. height: math.unit(10, "feet"),
  23940. weight: math.unit(1000, "kg"),
  23941. name: "Side",
  23942. image: {
  23943. source: "./media/characters/ereus/side.svg",
  23944. extra: 1157 / 959,
  23945. bottom: 153 / 1312.5
  23946. }
  23947. },
  23948. },
  23949. [
  23950. {
  23951. name: "Normal",
  23952. height: math.unit(10, "feet"),
  23953. default: true
  23954. },
  23955. ]
  23956. ))
  23957. characterMakers.push(() => makeCharacter(
  23958. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  23959. {
  23960. side: {
  23961. height: math.unit(4.5, "feet"),
  23962. weight: math.unit(500, "lb"),
  23963. name: "Side",
  23964. image: {
  23965. source: "./media/characters/e-ter/side.svg",
  23966. extra: 1550 / 1248,
  23967. bottom: 146 / 1694
  23968. }
  23969. },
  23970. },
  23971. [
  23972. {
  23973. name: "Normal",
  23974. height: math.unit(4.5, "feet"),
  23975. default: true
  23976. },
  23977. ]
  23978. ))
  23979. characterMakers.push(() => makeCharacter(
  23980. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  23981. {
  23982. side: {
  23983. height: math.unit(9.7, "feet"),
  23984. weight: math.unit(4000, "kg"),
  23985. name: "Side",
  23986. image: {
  23987. source: "./media/characters/yamie/side.svg"
  23988. }
  23989. },
  23990. },
  23991. [
  23992. {
  23993. name: "Normal",
  23994. height: math.unit(9.7, "feet"),
  23995. default: true
  23996. },
  23997. ]
  23998. ))
  23999. characterMakers.push(() => makeCharacter(
  24000. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  24001. {
  24002. front: {
  24003. height: math.unit(50, "feet"),
  24004. weight: math.unit(50000, "kg"),
  24005. name: "Front",
  24006. image: {
  24007. source: "./media/characters/anders/front.svg",
  24008. extra: 570 / 539,
  24009. bottom: 14.7 / 586.7
  24010. }
  24011. },
  24012. },
  24013. [
  24014. {
  24015. name: "Large",
  24016. height: math.unit(50, "feet")
  24017. },
  24018. {
  24019. name: "Macro",
  24020. height: math.unit(2000, "feet"),
  24021. default: true
  24022. },
  24023. {
  24024. name: "Megamacro",
  24025. height: math.unit(12, "miles")
  24026. },
  24027. ]
  24028. ))
  24029. characterMakers.push(() => makeCharacter(
  24030. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  24031. {
  24032. front: {
  24033. height: math.unit(7 + 2 / 12, "feet"),
  24034. weight: math.unit(300, "lb"),
  24035. name: "Front",
  24036. image: {
  24037. source: "./media/characters/reban/front.svg",
  24038. extra: 1287/1212,
  24039. bottom: 148/1435
  24040. }
  24041. },
  24042. head: {
  24043. height: math.unit(1.95, "feet"),
  24044. name: "Head",
  24045. image: {
  24046. source: "./media/characters/reban/head.svg"
  24047. }
  24048. },
  24049. maw: {
  24050. height: math.unit(0.95, "feet"),
  24051. name: "Maw",
  24052. image: {
  24053. source: "./media/characters/reban/maw.svg"
  24054. }
  24055. },
  24056. foot: {
  24057. height: math.unit(1.65, "feet"),
  24058. name: "Foot",
  24059. image: {
  24060. source: "./media/characters/reban/foot.svg"
  24061. }
  24062. },
  24063. dick: {
  24064. height: math.unit(7 / 5, "feet"),
  24065. name: "Dick",
  24066. image: {
  24067. source: "./media/characters/reban/dick.svg"
  24068. }
  24069. },
  24070. },
  24071. [
  24072. {
  24073. name: "Natural Height",
  24074. height: math.unit(7 + 2 / 12, "feet")
  24075. },
  24076. {
  24077. name: "Macro",
  24078. height: math.unit(500, "feet"),
  24079. default: true
  24080. },
  24081. {
  24082. name: "Canon Height",
  24083. height: math.unit(50, "AU")
  24084. },
  24085. ]
  24086. ))
  24087. characterMakers.push(() => makeCharacter(
  24088. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  24089. {
  24090. front: {
  24091. height: math.unit(6, "feet"),
  24092. weight: math.unit(150, "lb"),
  24093. name: "Front",
  24094. image: {
  24095. source: "./media/characters/terrance-keayes/front.svg",
  24096. extra: 1.005,
  24097. bottom: 151 / 1615
  24098. }
  24099. },
  24100. side: {
  24101. height: math.unit(6, "feet"),
  24102. weight: math.unit(150, "lb"),
  24103. name: "Side",
  24104. image: {
  24105. source: "./media/characters/terrance-keayes/side.svg",
  24106. extra: 1.005,
  24107. bottom: 129.4 / 1544
  24108. }
  24109. },
  24110. back: {
  24111. height: math.unit(6, "feet"),
  24112. weight: math.unit(150, "lb"),
  24113. name: "Back",
  24114. image: {
  24115. source: "./media/characters/terrance-keayes/back.svg",
  24116. extra: 1.005,
  24117. bottom: 58.4 / 1557.3
  24118. }
  24119. },
  24120. dick: {
  24121. height: math.unit(6 * 0.208, "feet"),
  24122. name: "Dick",
  24123. image: {
  24124. source: "./media/characters/terrance-keayes/dick.svg"
  24125. }
  24126. },
  24127. },
  24128. [
  24129. {
  24130. name: "Canon Height",
  24131. height: math.unit(35, "miles"),
  24132. default: true
  24133. },
  24134. ]
  24135. ))
  24136. characterMakers.push(() => makeCharacter(
  24137. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  24138. {
  24139. front: {
  24140. height: math.unit(6, "feet"),
  24141. weight: math.unit(150, "lb"),
  24142. name: "Front",
  24143. image: {
  24144. source: "./media/characters/ofelia/front.svg",
  24145. extra: 1130/1117,
  24146. bottom: 91/1221
  24147. }
  24148. },
  24149. back: {
  24150. height: math.unit(6, "feet"),
  24151. weight: math.unit(150, "lb"),
  24152. name: "Back",
  24153. image: {
  24154. source: "./media/characters/ofelia/back.svg",
  24155. extra: 1172/1159,
  24156. bottom: 28/1200
  24157. }
  24158. },
  24159. maw: {
  24160. height: math.unit(1, "feet"),
  24161. name: "Maw",
  24162. image: {
  24163. source: "./media/characters/ofelia/maw.svg"
  24164. }
  24165. },
  24166. foot: {
  24167. height: math.unit(1.949, "feet"),
  24168. name: "Foot",
  24169. image: {
  24170. source: "./media/characters/ofelia/foot.svg"
  24171. }
  24172. },
  24173. },
  24174. [
  24175. {
  24176. name: "Canon Height",
  24177. height: math.unit(2000, "miles"),
  24178. default: true
  24179. },
  24180. ]
  24181. ))
  24182. characterMakers.push(() => makeCharacter(
  24183. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  24184. {
  24185. front: {
  24186. height: math.unit(6, "feet"),
  24187. weight: math.unit(150, "lb"),
  24188. name: "Front",
  24189. image: {
  24190. source: "./media/characters/samuel/front.svg",
  24191. extra: 265 / 258,
  24192. bottom: 2 / 266.1566
  24193. }
  24194. },
  24195. },
  24196. [
  24197. {
  24198. name: "Macro",
  24199. height: math.unit(100, "feet"),
  24200. default: true
  24201. },
  24202. {
  24203. name: "Full Size",
  24204. height: math.unit(1000, "miles")
  24205. },
  24206. ]
  24207. ))
  24208. characterMakers.push(() => makeCharacter(
  24209. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  24210. {
  24211. front: {
  24212. height: math.unit(6, "feet"),
  24213. weight: math.unit(300, "lb"),
  24214. name: "Front",
  24215. image: {
  24216. source: "./media/characters/beishir-kiel/front.svg",
  24217. extra: 569 / 547,
  24218. bottom: 41.9 / 609
  24219. }
  24220. },
  24221. maw: {
  24222. height: math.unit(6 * 0.202, "feet"),
  24223. name: "Maw",
  24224. image: {
  24225. source: "./media/characters/beishir-kiel/maw.svg"
  24226. }
  24227. },
  24228. },
  24229. [
  24230. {
  24231. name: "Macro",
  24232. height: math.unit(300, "feet"),
  24233. default: true
  24234. },
  24235. ]
  24236. ))
  24237. characterMakers.push(() => makeCharacter(
  24238. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  24239. {
  24240. front: {
  24241. height: math.unit(5 + 7/12, "feet"),
  24242. weight: math.unit(120, "lb"),
  24243. name: "Front",
  24244. image: {
  24245. source: "./media/characters/logan-grey/front.svg",
  24246. extra: 1836/1738,
  24247. bottom: 108/1944
  24248. }
  24249. },
  24250. back: {
  24251. height: math.unit(5 + 7/12, "feet"),
  24252. weight: math.unit(120, "lb"),
  24253. name: "Back",
  24254. image: {
  24255. source: "./media/characters/logan-grey/back.svg",
  24256. extra: 1880/1794,
  24257. bottom: 24/1904
  24258. }
  24259. },
  24260. frontSfw: {
  24261. height: math.unit(5 + 7/12, "feet"),
  24262. weight: math.unit(120, "lb"),
  24263. name: "Front (SFW)",
  24264. image: {
  24265. source: "./media/characters/logan-grey/front-sfw.svg",
  24266. extra: 1836/1738,
  24267. bottom: 108/1944
  24268. }
  24269. },
  24270. backSfw: {
  24271. height: math.unit(5 + 7/12, "feet"),
  24272. weight: math.unit(120, "lb"),
  24273. name: "Back (SFW)",
  24274. image: {
  24275. source: "./media/characters/logan-grey/back-sfw.svg",
  24276. extra: 1880/1794,
  24277. bottom: 24/1904
  24278. }
  24279. },
  24280. hands: {
  24281. height: math.unit(0.84, "feet"),
  24282. name: "Hands",
  24283. image: {
  24284. source: "./media/characters/logan-grey/hands.svg"
  24285. }
  24286. },
  24287. paws: {
  24288. height: math.unit(0.72, "feet"),
  24289. name: "Paws",
  24290. image: {
  24291. source: "./media/characters/logan-grey/paws.svg"
  24292. }
  24293. },
  24294. cock: {
  24295. height: math.unit(1.45, "feet"),
  24296. name: "Cock",
  24297. image: {
  24298. source: "./media/characters/logan-grey/cock.svg"
  24299. }
  24300. },
  24301. cockAlt: {
  24302. height: math.unit(1.437, "feet"),
  24303. name: "Cock (alt)",
  24304. image: {
  24305. source: "./media/characters/logan-grey/cock-alt.svg"
  24306. }
  24307. },
  24308. },
  24309. [
  24310. {
  24311. name: "Normal",
  24312. height: math.unit(5 + 8 / 12, "feet")
  24313. },
  24314. {
  24315. name: "The 500 Foot Femboy",
  24316. height: math.unit(500, "feet"),
  24317. default: true
  24318. },
  24319. {
  24320. name: "Megmacro",
  24321. height: math.unit(20, "miles")
  24322. },
  24323. ]
  24324. ))
  24325. characterMakers.push(() => makeCharacter(
  24326. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  24327. {
  24328. front: {
  24329. height: math.unit(8 + 2 / 12, "feet"),
  24330. weight: math.unit(275, "lb"),
  24331. name: "Front",
  24332. image: {
  24333. source: "./media/characters/draganta/front.svg",
  24334. extra: 1177 / 1135,
  24335. bottom: 33.46 / 1212.1
  24336. }
  24337. },
  24338. },
  24339. [
  24340. {
  24341. name: "Normal",
  24342. height: math.unit(8 + 6 / 12, "feet"),
  24343. default: true
  24344. },
  24345. {
  24346. name: "Macro",
  24347. height: math.unit(150, "feet")
  24348. },
  24349. {
  24350. name: "Megamacro",
  24351. height: math.unit(1000, "miles")
  24352. },
  24353. ]
  24354. ))
  24355. characterMakers.push(() => makeCharacter(
  24356. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  24357. {
  24358. front: {
  24359. height: math.unit(1.72, "m"),
  24360. weight: math.unit(80, "lb"),
  24361. name: "Front",
  24362. image: {
  24363. source: "./media/characters/voski/front.svg",
  24364. extra: 2076.22 / 2022.4,
  24365. bottom: 102.7 / 2177.3866
  24366. }
  24367. },
  24368. frontFlaccid: {
  24369. height: math.unit(1.72, "m"),
  24370. weight: math.unit(80, "lb"),
  24371. name: "Front (Flaccid)",
  24372. image: {
  24373. source: "./media/characters/voski/front-flaccid.svg",
  24374. extra: 2076.22 / 2022.4,
  24375. bottom: 102.7 / 2177.3866
  24376. }
  24377. },
  24378. frontErect: {
  24379. height: math.unit(1.72, "m"),
  24380. weight: math.unit(80, "lb"),
  24381. name: "Front (Erect)",
  24382. image: {
  24383. source: "./media/characters/voski/front-erect.svg",
  24384. extra: 2076.22 / 2022.4,
  24385. bottom: 102.7 / 2177.3866
  24386. }
  24387. },
  24388. back: {
  24389. height: math.unit(1.72, "m"),
  24390. weight: math.unit(80, "lb"),
  24391. name: "Back",
  24392. image: {
  24393. source: "./media/characters/voski/back.svg",
  24394. extra: 2104 / 2051,
  24395. bottom: 10.45 / 2113.63
  24396. }
  24397. },
  24398. },
  24399. [
  24400. {
  24401. name: "Normal",
  24402. height: math.unit(1.72, "m")
  24403. },
  24404. {
  24405. name: "Macro",
  24406. height: math.unit(55, "m"),
  24407. default: true
  24408. },
  24409. {
  24410. name: "Macro+",
  24411. height: math.unit(300, "m")
  24412. },
  24413. {
  24414. name: "Macro++",
  24415. height: math.unit(700, "m")
  24416. },
  24417. {
  24418. name: "Macro+++",
  24419. height: math.unit(4500, "m")
  24420. },
  24421. {
  24422. name: "Macro++++",
  24423. height: math.unit(45, "km")
  24424. },
  24425. {
  24426. name: "Macro+++++",
  24427. height: math.unit(1220, "km")
  24428. },
  24429. ]
  24430. ))
  24431. characterMakers.push(() => makeCharacter(
  24432. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  24433. {
  24434. front: {
  24435. height: math.unit(2.3, "m"),
  24436. weight: math.unit(304, "kg"),
  24437. name: "Front",
  24438. image: {
  24439. source: "./media/characters/icowom-lee/front.svg",
  24440. extra: 985 / 955,
  24441. bottom: 25.4 / 1012
  24442. }
  24443. },
  24444. fronttentacles: {
  24445. height: math.unit(2.3, "m"),
  24446. weight: math.unit(304, "kg"),
  24447. name: "Front-tentacles",
  24448. image: {
  24449. source: "./media/characters/icowom-lee/front-tentacles.svg",
  24450. extra: 985 / 955,
  24451. bottom: 25.4 / 1012
  24452. }
  24453. },
  24454. back: {
  24455. height: math.unit(2.3, "m"),
  24456. weight: math.unit(304, "kg"),
  24457. name: "Back",
  24458. image: {
  24459. source: "./media/characters/icowom-lee/back.svg",
  24460. extra: 975 / 954,
  24461. bottom: 9.5 / 985
  24462. }
  24463. },
  24464. backtentacles: {
  24465. height: math.unit(2.3, "m"),
  24466. weight: math.unit(304, "kg"),
  24467. name: "Back-tentacles",
  24468. image: {
  24469. source: "./media/characters/icowom-lee/back-tentacles.svg",
  24470. extra: 975 / 954,
  24471. bottom: 9.5 / 985
  24472. }
  24473. },
  24474. frontDressed: {
  24475. height: math.unit(2.3, "m"),
  24476. weight: math.unit(304, "kg"),
  24477. name: "Front (Dressed)",
  24478. image: {
  24479. source: "./media/characters/icowom-lee/front-dressed.svg",
  24480. extra: 3076 / 2933,
  24481. bottom: 51.4 / 3125.1889
  24482. }
  24483. },
  24484. rump: {
  24485. height: math.unit(0.776, "meters"),
  24486. name: "Rump",
  24487. image: {
  24488. source: "./media/characters/icowom-lee/rump.svg"
  24489. }
  24490. },
  24491. genitals: {
  24492. height: math.unit(0.78, "meters"),
  24493. name: "Genitals",
  24494. image: {
  24495. source: "./media/characters/icowom-lee/genitals.svg"
  24496. }
  24497. },
  24498. },
  24499. [
  24500. {
  24501. name: "Normal",
  24502. height: math.unit(2.3, "meters"),
  24503. default: true
  24504. },
  24505. {
  24506. name: "Macro",
  24507. height: math.unit(94, "meters"),
  24508. default: true
  24509. },
  24510. ]
  24511. ))
  24512. characterMakers.push(() => makeCharacter(
  24513. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  24514. {
  24515. front: {
  24516. height: math.unit(22, "meters"),
  24517. weight: math.unit(21000, "kg"),
  24518. name: "Front",
  24519. image: {
  24520. source: "./media/characters/shock-diamond/front.svg",
  24521. extra: 2204 / 2053,
  24522. bottom: 65 / 2239.47
  24523. }
  24524. },
  24525. frontNude: {
  24526. height: math.unit(22, "meters"),
  24527. weight: math.unit(21000, "kg"),
  24528. name: "Front (Nude)",
  24529. image: {
  24530. source: "./media/characters/shock-diamond/front-nude.svg",
  24531. extra: 2514 / 2285,
  24532. bottom: 13 / 2527.56
  24533. }
  24534. },
  24535. },
  24536. [
  24537. {
  24538. name: "Normal",
  24539. height: math.unit(3, "meters")
  24540. },
  24541. {
  24542. name: "Macro",
  24543. height: math.unit(22, "meters"),
  24544. default: true
  24545. },
  24546. ]
  24547. ))
  24548. characterMakers.push(() => makeCharacter(
  24549. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  24550. {
  24551. front: {
  24552. height: math.unit(5 + 4/12, "feet"),
  24553. weight: math.unit(125, "lb"),
  24554. name: "Front",
  24555. image: {
  24556. source: "./media/characters/rory/front.svg",
  24557. extra: 1790/1681,
  24558. bottom: 66/1856
  24559. }
  24560. },
  24561. back: {
  24562. height: math.unit(5 + 4/12, "feet"),
  24563. weight: math.unit(125, "lb"),
  24564. name: "Back",
  24565. image: {
  24566. source: "./media/characters/rory/back.svg",
  24567. extra: 1805/1690,
  24568. bottom: 56/1861
  24569. }
  24570. },
  24571. frontDressed: {
  24572. height: math.unit(5 + 4/12, "feet"),
  24573. weight: math.unit(125, "lb"),
  24574. name: "Front (Dressed)",
  24575. image: {
  24576. source: "./media/characters/rory/front-dressed.svg",
  24577. extra: 1790/1681,
  24578. bottom: 66/1856
  24579. }
  24580. },
  24581. backDressed: {
  24582. height: math.unit(5 + 4/12, "feet"),
  24583. weight: math.unit(125, "lb"),
  24584. name: "Back (Dressed)",
  24585. image: {
  24586. source: "./media/characters/rory/back-dressed.svg",
  24587. extra: 1805/1690,
  24588. bottom: 56/1861
  24589. }
  24590. },
  24591. frontNsfw: {
  24592. height: math.unit(5 + 4/12, "feet"),
  24593. weight: math.unit(125, "lb"),
  24594. name: "Front (NSFW)",
  24595. image: {
  24596. source: "./media/characters/rory/front-nsfw.svg",
  24597. extra: 1790/1681,
  24598. bottom: 66/1856
  24599. }
  24600. },
  24601. backNsfw: {
  24602. height: math.unit(5 + 4/12, "feet"),
  24603. weight: math.unit(125, "lb"),
  24604. name: "Back (NSFW)",
  24605. image: {
  24606. source: "./media/characters/rory/back-nsfw.svg",
  24607. extra: 1805/1690,
  24608. bottom: 56/1861
  24609. }
  24610. },
  24611. dick: {
  24612. height: math.unit(0.8, "feet"),
  24613. name: "Dick",
  24614. image: {
  24615. source: "./media/characters/rory/dick.svg"
  24616. }
  24617. },
  24618. },
  24619. [
  24620. {
  24621. name: "Micro",
  24622. height: math.unit(3, "inches")
  24623. },
  24624. {
  24625. name: "Normal",
  24626. height: math.unit(5 + 4/12, "feet"),
  24627. default: true
  24628. },
  24629. {
  24630. name: "Macro",
  24631. height: math.unit(90, "feet")
  24632. },
  24633. {
  24634. name: "Supercharged",
  24635. height: math.unit(270, "feet")
  24636. },
  24637. ]
  24638. ))
  24639. characterMakers.push(() => makeCharacter(
  24640. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  24641. {
  24642. front: {
  24643. height: math.unit(5 + 9 / 12, "feet"),
  24644. weight: math.unit(190, "lb"),
  24645. name: "Front",
  24646. image: {
  24647. source: "./media/characters/sprisk/front.svg",
  24648. extra: 1225 / 1180,
  24649. bottom: 42.7 / 1266.4
  24650. }
  24651. },
  24652. frontNsfw: {
  24653. height: math.unit(5 + 9 / 12, "feet"),
  24654. weight: math.unit(190, "lb"),
  24655. name: "Front (NSFW)",
  24656. image: {
  24657. source: "./media/characters/sprisk/front-nsfw.svg",
  24658. extra: 1225 / 1180,
  24659. bottom: 42.7 / 1266.4
  24660. }
  24661. },
  24662. back: {
  24663. height: math.unit(5 + 9 / 12, "feet"),
  24664. weight: math.unit(190, "lb"),
  24665. name: "Back",
  24666. image: {
  24667. source: "./media/characters/sprisk/back.svg",
  24668. extra: 1247 / 1200,
  24669. bottom: 5.6 / 1253.04
  24670. }
  24671. },
  24672. },
  24673. [
  24674. {
  24675. name: "Tiny",
  24676. height: math.unit(2, "inches")
  24677. },
  24678. {
  24679. name: "Normal",
  24680. height: math.unit(5 + 9 / 12, "feet"),
  24681. default: true
  24682. },
  24683. {
  24684. name: "Mini Macro",
  24685. height: math.unit(18, "feet")
  24686. },
  24687. {
  24688. name: "Macro",
  24689. height: math.unit(100, "feet")
  24690. },
  24691. {
  24692. name: "MACRO",
  24693. height: math.unit(50, "miles")
  24694. },
  24695. {
  24696. name: "M A C R O",
  24697. height: math.unit(300, "miles")
  24698. },
  24699. ]
  24700. ))
  24701. characterMakers.push(() => makeCharacter(
  24702. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  24703. {
  24704. side: {
  24705. height: math.unit(15.6, "meters"),
  24706. weight: math.unit(700000, "kg"),
  24707. name: "Side",
  24708. image: {
  24709. source: "./media/characters/bunsen/side.svg",
  24710. extra: 1644 / 358
  24711. }
  24712. },
  24713. foot: {
  24714. height: math.unit(1.611 * 1644 / 358, "meter"),
  24715. name: "Foot",
  24716. image: {
  24717. source: "./media/characters/bunsen/foot.svg"
  24718. }
  24719. },
  24720. },
  24721. [
  24722. {
  24723. name: "Small",
  24724. height: math.unit(10, "feet")
  24725. },
  24726. {
  24727. name: "Normal",
  24728. height: math.unit(15.6, "meters"),
  24729. default: true
  24730. },
  24731. ]
  24732. ))
  24733. characterMakers.push(() => makeCharacter(
  24734. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  24735. {
  24736. front: {
  24737. height: math.unit(4 + 11 / 12, "feet"),
  24738. weight: math.unit(140, "lb"),
  24739. name: "Front",
  24740. image: {
  24741. source: "./media/characters/sesh/front.svg",
  24742. extra: 3420 / 3231,
  24743. bottom: 72 / 3949.5
  24744. }
  24745. },
  24746. },
  24747. [
  24748. {
  24749. name: "Normal",
  24750. height: math.unit(4 + 11 / 12, "feet")
  24751. },
  24752. {
  24753. name: "Grown",
  24754. height: math.unit(15, "feet"),
  24755. default: true
  24756. },
  24757. {
  24758. name: "Macro",
  24759. height: math.unit(1500, "feet")
  24760. },
  24761. {
  24762. name: "Megamacro",
  24763. height: math.unit(30, "miles")
  24764. },
  24765. {
  24766. name: "Continental",
  24767. height: math.unit(3000, "miles")
  24768. },
  24769. {
  24770. name: "Gravity Mass",
  24771. height: math.unit(300000, "miles")
  24772. },
  24773. {
  24774. name: "Planet Buster",
  24775. height: math.unit(30000000, "miles")
  24776. },
  24777. {
  24778. name: "Big",
  24779. height: math.unit(3000000000, "miles")
  24780. },
  24781. ]
  24782. ))
  24783. characterMakers.push(() => makeCharacter(
  24784. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  24785. {
  24786. front: {
  24787. height: math.unit(9, "feet"),
  24788. weight: math.unit(350, "lb"),
  24789. name: "Front",
  24790. image: {
  24791. source: "./media/characters/pepper/front.svg",
  24792. extra: 1448 / 1312,
  24793. bottom: 9.4 / 1457.88
  24794. }
  24795. },
  24796. back: {
  24797. height: math.unit(9, "feet"),
  24798. weight: math.unit(350, "lb"),
  24799. name: "Back",
  24800. image: {
  24801. source: "./media/characters/pepper/back.svg",
  24802. extra: 1423 / 1300,
  24803. bottom: 4.6 / 1429
  24804. }
  24805. },
  24806. maw: {
  24807. height: math.unit(0.932, "feet"),
  24808. name: "Maw",
  24809. image: {
  24810. source: "./media/characters/pepper/maw.svg"
  24811. }
  24812. },
  24813. },
  24814. [
  24815. {
  24816. name: "Normal",
  24817. height: math.unit(9, "feet"),
  24818. default: true
  24819. },
  24820. ]
  24821. ))
  24822. characterMakers.push(() => makeCharacter(
  24823. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  24824. {
  24825. front: {
  24826. height: math.unit(6, "feet"),
  24827. weight: math.unit(150, "lb"),
  24828. name: "Front",
  24829. image: {
  24830. source: "./media/characters/maelstrom/front.svg",
  24831. extra: 2100 / 1883,
  24832. bottom: 94 / 2196.7
  24833. }
  24834. },
  24835. },
  24836. [
  24837. {
  24838. name: "Less Kaiju",
  24839. height: math.unit(200, "feet")
  24840. },
  24841. {
  24842. name: "Kaiju",
  24843. height: math.unit(400, "feet"),
  24844. default: true
  24845. },
  24846. {
  24847. name: "Kaiju-er",
  24848. height: math.unit(600, "feet")
  24849. },
  24850. ]
  24851. ))
  24852. characterMakers.push(() => makeCharacter(
  24853. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  24854. {
  24855. front: {
  24856. height: math.unit(6 + 5 / 12, "feet"),
  24857. weight: math.unit(180, "lb"),
  24858. name: "Front",
  24859. image: {
  24860. source: "./media/characters/lexir/front.svg",
  24861. extra: 180 / 172,
  24862. bottom: 12 / 192
  24863. }
  24864. },
  24865. back: {
  24866. height: math.unit(6 + 5 / 12, "feet"),
  24867. weight: math.unit(180, "lb"),
  24868. name: "Back",
  24869. image: {
  24870. source: "./media/characters/lexir/back.svg",
  24871. extra: 1273/1201,
  24872. bottom: 39/1312
  24873. }
  24874. },
  24875. },
  24876. [
  24877. {
  24878. name: "Very Smal",
  24879. height: math.unit(1, "nm")
  24880. },
  24881. {
  24882. name: "Normal",
  24883. height: math.unit(6 + 5 / 12, "feet"),
  24884. default: true
  24885. },
  24886. {
  24887. name: "Macro",
  24888. height: math.unit(1, "mile")
  24889. },
  24890. {
  24891. name: "Megamacro",
  24892. height: math.unit(50, "miles")
  24893. },
  24894. ]
  24895. ))
  24896. characterMakers.push(() => makeCharacter(
  24897. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  24898. {
  24899. front: {
  24900. height: math.unit(1.5, "meters"),
  24901. weight: math.unit(100, "lb"),
  24902. name: "Front",
  24903. image: {
  24904. source: "./media/characters/maksio/front.svg",
  24905. extra: 1549 / 1531,
  24906. bottom: 123.7 / 1674.5429
  24907. }
  24908. },
  24909. back: {
  24910. height: math.unit(1.5, "meters"),
  24911. weight: math.unit(100, "lb"),
  24912. name: "Back",
  24913. image: {
  24914. source: "./media/characters/maksio/back.svg",
  24915. extra: 1541 / 1509,
  24916. bottom: 97 / 1639
  24917. }
  24918. },
  24919. hand: {
  24920. height: math.unit(0.621, "feet"),
  24921. name: "Hand",
  24922. image: {
  24923. source: "./media/characters/maksio/hand.svg"
  24924. }
  24925. },
  24926. foot: {
  24927. height: math.unit(1.611, "feet"),
  24928. name: "Foot",
  24929. image: {
  24930. source: "./media/characters/maksio/foot.svg"
  24931. }
  24932. },
  24933. },
  24934. [
  24935. {
  24936. name: "Shrunken",
  24937. height: math.unit(10, "cm")
  24938. },
  24939. {
  24940. name: "Normal",
  24941. height: math.unit(150, "cm"),
  24942. default: true
  24943. },
  24944. ]
  24945. ))
  24946. characterMakers.push(() => makeCharacter(
  24947. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  24948. {
  24949. front: {
  24950. height: math.unit(100, "feet"),
  24951. name: "Front",
  24952. image: {
  24953. source: "./media/characters/erza-bear/front.svg",
  24954. extra: 2449 / 2390,
  24955. bottom: 46 / 2494
  24956. }
  24957. },
  24958. back: {
  24959. height: math.unit(100, "feet"),
  24960. name: "Back",
  24961. image: {
  24962. source: "./media/characters/erza-bear/back.svg",
  24963. extra: 2489 / 2430,
  24964. bottom: 85.4 / 2480
  24965. }
  24966. },
  24967. tail: {
  24968. height: math.unit(42, "feet"),
  24969. name: "Tail",
  24970. image: {
  24971. source: "./media/characters/erza-bear/tail.svg"
  24972. }
  24973. },
  24974. tongue: {
  24975. height: math.unit(8, "feet"),
  24976. name: "Tongue",
  24977. image: {
  24978. source: "./media/characters/erza-bear/tongue.svg"
  24979. }
  24980. },
  24981. dick: {
  24982. height: math.unit(10.5, "feet"),
  24983. name: "Dick",
  24984. image: {
  24985. source: "./media/characters/erza-bear/dick.svg"
  24986. }
  24987. },
  24988. dickVertical: {
  24989. height: math.unit(16.9, "feet"),
  24990. name: "Dick (Vertical)",
  24991. image: {
  24992. source: "./media/characters/erza-bear/dick-vertical.svg"
  24993. }
  24994. },
  24995. },
  24996. [
  24997. {
  24998. name: "Macro",
  24999. height: math.unit(100, "feet"),
  25000. default: true
  25001. },
  25002. ]
  25003. ))
  25004. characterMakers.push(() => makeCharacter(
  25005. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  25006. {
  25007. front: {
  25008. height: math.unit(172, "cm"),
  25009. weight: math.unit(73, "kg"),
  25010. name: "Front",
  25011. image: {
  25012. source: "./media/characters/violet-flor/front.svg",
  25013. extra: 1530 / 1442,
  25014. bottom: 61.9 / 1588.8
  25015. }
  25016. },
  25017. back: {
  25018. height: math.unit(180, "cm"),
  25019. weight: math.unit(73, "kg"),
  25020. name: "Back",
  25021. image: {
  25022. source: "./media/characters/violet-flor/back.svg",
  25023. extra: 1692 / 1630,
  25024. bottom: 20 / 1712
  25025. }
  25026. },
  25027. },
  25028. [
  25029. {
  25030. name: "Normal",
  25031. height: math.unit(172, "cm"),
  25032. default: true
  25033. },
  25034. ]
  25035. ))
  25036. characterMakers.push(() => makeCharacter(
  25037. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  25038. {
  25039. front: {
  25040. height: math.unit(6, "feet"),
  25041. weight: math.unit(220, "lb"),
  25042. name: "Front",
  25043. image: {
  25044. source: "./media/characters/lynn-rhea/front.svg",
  25045. extra: 310 / 273
  25046. }
  25047. },
  25048. back: {
  25049. height: math.unit(6, "feet"),
  25050. weight: math.unit(220, "lb"),
  25051. name: "Back",
  25052. image: {
  25053. source: "./media/characters/lynn-rhea/back.svg",
  25054. extra: 310 / 273
  25055. }
  25056. },
  25057. dicks: {
  25058. height: math.unit(0.9, "feet"),
  25059. name: "Dicks",
  25060. image: {
  25061. source: "./media/characters/lynn-rhea/dicks.svg"
  25062. }
  25063. },
  25064. slit: {
  25065. height: math.unit(0.4, "feet"),
  25066. name: "Slit",
  25067. image: {
  25068. source: "./media/characters/lynn-rhea/slit.svg"
  25069. }
  25070. },
  25071. },
  25072. [
  25073. {
  25074. name: "Micro",
  25075. height: math.unit(1, "inch")
  25076. },
  25077. {
  25078. name: "Macro",
  25079. height: math.unit(60, "feet"),
  25080. default: true
  25081. },
  25082. {
  25083. name: "Megamacro",
  25084. height: math.unit(2, "miles")
  25085. },
  25086. {
  25087. name: "Gigamacro",
  25088. height: math.unit(3, "earths")
  25089. },
  25090. {
  25091. name: "Galactic",
  25092. height: math.unit(0.8, "galaxies")
  25093. },
  25094. ]
  25095. ))
  25096. characterMakers.push(() => makeCharacter(
  25097. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  25098. {
  25099. front: {
  25100. height: math.unit(1600, "feet"),
  25101. weight: math.unit(85758785169, "kg"),
  25102. name: "Front",
  25103. image: {
  25104. source: "./media/characters/valathos/front.svg",
  25105. extra: 1451 / 1339
  25106. }
  25107. },
  25108. },
  25109. [
  25110. {
  25111. name: "Macro",
  25112. height: math.unit(1600, "feet"),
  25113. default: true
  25114. },
  25115. ]
  25116. ))
  25117. characterMakers.push(() => makeCharacter(
  25118. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  25119. {
  25120. front: {
  25121. height: math.unit(7 + 5 / 12, "feet"),
  25122. weight: math.unit(300, "lb"),
  25123. name: "Front",
  25124. image: {
  25125. source: "./media/characters/azula/front.svg",
  25126. extra: 3208 / 2880,
  25127. bottom: 80.2 / 3277
  25128. }
  25129. },
  25130. back: {
  25131. height: math.unit(7 + 5 / 12, "feet"),
  25132. weight: math.unit(300, "lb"),
  25133. name: "Back",
  25134. image: {
  25135. source: "./media/characters/azula/back.svg",
  25136. extra: 3169 / 2822,
  25137. bottom: 150.6 / 3321
  25138. }
  25139. },
  25140. },
  25141. [
  25142. {
  25143. name: "Normal",
  25144. height: math.unit(7 + 5 / 12, "feet"),
  25145. default: true
  25146. },
  25147. {
  25148. name: "Big",
  25149. height: math.unit(20, "feet")
  25150. },
  25151. ]
  25152. ))
  25153. characterMakers.push(() => makeCharacter(
  25154. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  25155. {
  25156. front: {
  25157. height: math.unit(5 + 1 / 12, "feet"),
  25158. weight: math.unit(110, "lb"),
  25159. name: "Front",
  25160. image: {
  25161. source: "./media/characters/rupert/front.svg",
  25162. extra: 1549 / 1495,
  25163. bottom: 54.2 / 1604.4
  25164. }
  25165. },
  25166. },
  25167. [
  25168. {
  25169. name: "Normal",
  25170. height: math.unit(5 + 1 / 12, "feet"),
  25171. default: true
  25172. },
  25173. ]
  25174. ))
  25175. characterMakers.push(() => makeCharacter(
  25176. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  25177. {
  25178. front: {
  25179. height: math.unit(8 + 4 / 12, "feet"),
  25180. weight: math.unit(350, "lb"),
  25181. name: "Front",
  25182. image: {
  25183. source: "./media/characters/sheera-castellar/front.svg",
  25184. extra: 1957 / 1894,
  25185. bottom: 26.97 / 1975.017
  25186. }
  25187. },
  25188. side: {
  25189. height: math.unit(8 + 4 / 12, "feet"),
  25190. weight: math.unit(350, "lb"),
  25191. name: "Side",
  25192. image: {
  25193. source: "./media/characters/sheera-castellar/side.svg",
  25194. extra: 1957 / 1894
  25195. }
  25196. },
  25197. back: {
  25198. height: math.unit(8 + 4 / 12, "feet"),
  25199. weight: math.unit(350, "lb"),
  25200. name: "Back",
  25201. image: {
  25202. source: "./media/characters/sheera-castellar/back.svg",
  25203. extra: 1957 / 1894
  25204. }
  25205. },
  25206. angled: {
  25207. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  25208. weight: math.unit(350, "lb"),
  25209. name: "Angled",
  25210. image: {
  25211. source: "./media/characters/sheera-castellar/angled.svg",
  25212. extra: 1807 / 1707,
  25213. bottom: 68 / 1875
  25214. }
  25215. },
  25216. genitals: {
  25217. height: math.unit(2.2, "feet"),
  25218. name: "Genitals",
  25219. image: {
  25220. source: "./media/characters/sheera-castellar/genitals.svg"
  25221. }
  25222. },
  25223. taur: {
  25224. height: math.unit(10 + 6/12, "feet"),
  25225. name: "Taur",
  25226. image: {
  25227. source: "./media/characters/sheera-castellar/taur.svg",
  25228. extra: 2017/1909,
  25229. bottom: 185/2202
  25230. }
  25231. },
  25232. },
  25233. [
  25234. {
  25235. name: "Normal",
  25236. height: math.unit(8 + 4 / 12, "feet")
  25237. },
  25238. {
  25239. name: "Macro",
  25240. height: math.unit(150, "feet"),
  25241. default: true
  25242. },
  25243. {
  25244. name: "Macro+",
  25245. height: math.unit(800, "feet")
  25246. },
  25247. ]
  25248. ))
  25249. characterMakers.push(() => makeCharacter(
  25250. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  25251. {
  25252. front: {
  25253. height: math.unit(6, "feet"),
  25254. weight: math.unit(150, "lb"),
  25255. name: "Front",
  25256. image: {
  25257. source: "./media/characters/jaipur/front.svg",
  25258. extra: 3860 / 3731,
  25259. bottom: 287 / 4140
  25260. }
  25261. },
  25262. back: {
  25263. height: math.unit(6, "feet"),
  25264. weight: math.unit(150, "lb"),
  25265. name: "Back",
  25266. image: {
  25267. source: "./media/characters/jaipur/back.svg",
  25268. extra: 1637/1561,
  25269. bottom: 154/1791
  25270. }
  25271. },
  25272. },
  25273. [
  25274. {
  25275. name: "Normal",
  25276. height: math.unit(1.85, "meters"),
  25277. default: true
  25278. },
  25279. {
  25280. name: "Macro",
  25281. height: math.unit(150, "meters")
  25282. },
  25283. {
  25284. name: "Macro+",
  25285. height: math.unit(0.5, "miles")
  25286. },
  25287. {
  25288. name: "Macro++",
  25289. height: math.unit(2.5, "miles")
  25290. },
  25291. {
  25292. name: "Macro+++",
  25293. height: math.unit(12, "miles")
  25294. },
  25295. {
  25296. name: "Macro++++",
  25297. height: math.unit(120, "miles")
  25298. },
  25299. {
  25300. name: "Macro+++++",
  25301. height: math.unit(1200, "miles")
  25302. },
  25303. ]
  25304. ))
  25305. characterMakers.push(() => makeCharacter(
  25306. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  25307. {
  25308. front: {
  25309. height: math.unit(6, "feet"),
  25310. weight: math.unit(150, "lb"),
  25311. name: "Front",
  25312. image: {
  25313. source: "./media/characters/sheila-wolf/front.svg",
  25314. extra: 1931 / 1808,
  25315. bottom: 29.5 / 1960
  25316. }
  25317. },
  25318. dick: {
  25319. height: math.unit(1.464, "feet"),
  25320. name: "Dick",
  25321. image: {
  25322. source: "./media/characters/sheila-wolf/dick.svg"
  25323. }
  25324. },
  25325. muzzle: {
  25326. height: math.unit(0.513, "feet"),
  25327. name: "Muzzle",
  25328. image: {
  25329. source: "./media/characters/sheila-wolf/muzzle.svg"
  25330. }
  25331. },
  25332. },
  25333. [
  25334. {
  25335. name: "Macro",
  25336. height: math.unit(70, "feet"),
  25337. default: true
  25338. },
  25339. ]
  25340. ))
  25341. characterMakers.push(() => makeCharacter(
  25342. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  25343. {
  25344. front: {
  25345. height: math.unit(32, "meters"),
  25346. weight: math.unit(300000, "kg"),
  25347. name: "Front",
  25348. image: {
  25349. source: "./media/characters/almor/front.svg",
  25350. extra: 1408 / 1322,
  25351. bottom: 94.6 / 1506.5
  25352. }
  25353. },
  25354. },
  25355. [
  25356. {
  25357. name: "Macro",
  25358. height: math.unit(32, "meters"),
  25359. default: true
  25360. },
  25361. ]
  25362. ))
  25363. characterMakers.push(() => makeCharacter(
  25364. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  25365. {
  25366. front: {
  25367. height: math.unit(7, "feet"),
  25368. weight: math.unit(200, "lb"),
  25369. name: "Front",
  25370. image: {
  25371. source: "./media/characters/silver/front.svg",
  25372. extra: 472.1 / 450.5,
  25373. bottom: 26.5 / 499.424
  25374. }
  25375. },
  25376. },
  25377. [
  25378. {
  25379. name: "Normal",
  25380. height: math.unit(7, "feet"),
  25381. default: true
  25382. },
  25383. {
  25384. name: "Macro",
  25385. height: math.unit(800, "feet")
  25386. },
  25387. {
  25388. name: "Megamacro",
  25389. height: math.unit(250, "miles")
  25390. },
  25391. ]
  25392. ))
  25393. characterMakers.push(() => makeCharacter(
  25394. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  25395. {
  25396. front: {
  25397. height: math.unit(6, "feet"),
  25398. weight: math.unit(150, "lb"),
  25399. name: "Front",
  25400. image: {
  25401. source: "./media/characters/pliskin/front.svg",
  25402. extra: 1469 / 1359,
  25403. bottom: 70 / 1540
  25404. }
  25405. },
  25406. },
  25407. [
  25408. {
  25409. name: "Micro",
  25410. height: math.unit(3, "inches")
  25411. },
  25412. {
  25413. name: "Normal",
  25414. height: math.unit(5 + 11 / 12, "feet"),
  25415. default: true
  25416. },
  25417. {
  25418. name: "Macro",
  25419. height: math.unit(120, "feet")
  25420. },
  25421. ]
  25422. ))
  25423. characterMakers.push(() => makeCharacter(
  25424. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  25425. {
  25426. front: {
  25427. height: math.unit(6, "feet"),
  25428. weight: math.unit(150, "lb"),
  25429. name: "Front",
  25430. image: {
  25431. source: "./media/characters/sammy/front.svg",
  25432. extra: 1193 / 1089,
  25433. bottom: 30.5 / 1226
  25434. }
  25435. },
  25436. },
  25437. [
  25438. {
  25439. name: "Macro",
  25440. height: math.unit(1700, "feet"),
  25441. default: true
  25442. },
  25443. {
  25444. name: "Examacro",
  25445. height: math.unit(2.5e9, "lightyears")
  25446. },
  25447. ]
  25448. ))
  25449. characterMakers.push(() => makeCharacter(
  25450. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  25451. {
  25452. front: {
  25453. height: math.unit(21, "meters"),
  25454. weight: math.unit(12, "tonnes"),
  25455. name: "Front",
  25456. image: {
  25457. source: "./media/characters/kuru/front.svg",
  25458. extra: 4301 / 3785,
  25459. bottom: 371.3 / 4691
  25460. }
  25461. },
  25462. },
  25463. [
  25464. {
  25465. name: "Macro",
  25466. height: math.unit(21, "meters"),
  25467. default: true
  25468. },
  25469. ]
  25470. ))
  25471. characterMakers.push(() => makeCharacter(
  25472. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  25473. {
  25474. front: {
  25475. height: math.unit(23, "meters"),
  25476. weight: math.unit(12.2, "tonnes"),
  25477. name: "Front",
  25478. image: {
  25479. source: "./media/characters/rakka/front.svg",
  25480. extra: 4670 / 4169,
  25481. bottom: 301 / 4968.7
  25482. }
  25483. },
  25484. },
  25485. [
  25486. {
  25487. name: "Macro",
  25488. height: math.unit(23, "meters"),
  25489. default: true
  25490. },
  25491. ]
  25492. ))
  25493. characterMakers.push(() => makeCharacter(
  25494. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  25495. {
  25496. front: {
  25497. height: math.unit(6, "feet"),
  25498. weight: math.unit(150, "lb"),
  25499. name: "Front",
  25500. image: {
  25501. source: "./media/characters/rhys-feline/front.svg",
  25502. extra: 2488 / 2308,
  25503. bottom: 35.67 / 2519.19
  25504. }
  25505. },
  25506. },
  25507. [
  25508. {
  25509. name: "Really Small",
  25510. height: math.unit(1, "nm")
  25511. },
  25512. {
  25513. name: "Micro",
  25514. height: math.unit(4, "inches")
  25515. },
  25516. {
  25517. name: "Normal",
  25518. height: math.unit(4 + 10 / 12, "feet"),
  25519. default: true
  25520. },
  25521. {
  25522. name: "Macro",
  25523. height: math.unit(100, "feet")
  25524. },
  25525. {
  25526. name: "Megamacto",
  25527. height: math.unit(50, "miles")
  25528. },
  25529. ]
  25530. ))
  25531. characterMakers.push(() => makeCharacter(
  25532. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  25533. {
  25534. side: {
  25535. height: math.unit(30, "feet"),
  25536. weight: math.unit(35000, "kg"),
  25537. name: "Side",
  25538. image: {
  25539. source: "./media/characters/alydar/side.svg",
  25540. extra: 234 / 222,
  25541. bottom: 6.5 / 241
  25542. }
  25543. },
  25544. front: {
  25545. height: math.unit(30, "feet"),
  25546. weight: math.unit(35000, "kg"),
  25547. name: "Front",
  25548. image: {
  25549. source: "./media/characters/alydar/front.svg",
  25550. extra: 223.37 / 210.2,
  25551. bottom: 22.3 / 246.76
  25552. }
  25553. },
  25554. top: {
  25555. height: math.unit(64.54, "feet"),
  25556. weight: math.unit(35000, "kg"),
  25557. name: "Top",
  25558. image: {
  25559. source: "./media/characters/alydar/top.svg"
  25560. }
  25561. },
  25562. anthro: {
  25563. height: math.unit(30, "feet"),
  25564. weight: math.unit(9000, "kg"),
  25565. name: "Anthro",
  25566. image: {
  25567. source: "./media/characters/alydar/anthro.svg",
  25568. extra: 432 / 421,
  25569. bottom: 7.18 / 440
  25570. }
  25571. },
  25572. maw: {
  25573. height: math.unit(11.693, "feet"),
  25574. name: "Maw",
  25575. image: {
  25576. source: "./media/characters/alydar/maw.svg"
  25577. }
  25578. },
  25579. head: {
  25580. height: math.unit(11.693, "feet"),
  25581. name: "Head",
  25582. image: {
  25583. source: "./media/characters/alydar/head.svg"
  25584. }
  25585. },
  25586. headAlt: {
  25587. height: math.unit(12.861, "feet"),
  25588. name: "Head (Alt)",
  25589. image: {
  25590. source: "./media/characters/alydar/head-alt.svg"
  25591. }
  25592. },
  25593. wing: {
  25594. height: math.unit(20.712, "feet"),
  25595. name: "Wing",
  25596. image: {
  25597. source: "./media/characters/alydar/wing.svg"
  25598. }
  25599. },
  25600. wingFeather: {
  25601. height: math.unit(9.662, "feet"),
  25602. name: "Wing Feather",
  25603. image: {
  25604. source: "./media/characters/alydar/wing-feather.svg"
  25605. }
  25606. },
  25607. countourFeather: {
  25608. height: math.unit(4.154, "feet"),
  25609. name: "Contour Feather",
  25610. image: {
  25611. source: "./media/characters/alydar/contour-feather.svg"
  25612. }
  25613. },
  25614. },
  25615. [
  25616. {
  25617. name: "Diplomatic",
  25618. height: math.unit(13, "feet"),
  25619. default: true
  25620. },
  25621. {
  25622. name: "Small",
  25623. height: math.unit(30, "feet")
  25624. },
  25625. {
  25626. name: "Normal",
  25627. height: math.unit(95, "feet"),
  25628. default: true
  25629. },
  25630. {
  25631. name: "Large",
  25632. height: math.unit(285, "feet")
  25633. },
  25634. {
  25635. name: "Incomprehensible",
  25636. height: math.unit(450, "megameters")
  25637. },
  25638. ]
  25639. ))
  25640. characterMakers.push(() => makeCharacter(
  25641. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  25642. {
  25643. side: {
  25644. height: math.unit(11, "feet"),
  25645. weight: math.unit(1750, "kg"),
  25646. name: "Side",
  25647. image: {
  25648. source: "./media/characters/selicia/side.svg",
  25649. extra: 440 / 396,
  25650. bottom: 24.8 / 465.979
  25651. }
  25652. },
  25653. maw: {
  25654. height: math.unit(4.665, "feet"),
  25655. name: "Maw",
  25656. image: {
  25657. source: "./media/characters/selicia/maw.svg"
  25658. }
  25659. },
  25660. },
  25661. [
  25662. {
  25663. name: "Normal",
  25664. height: math.unit(11, "feet"),
  25665. default: true
  25666. },
  25667. ]
  25668. ))
  25669. characterMakers.push(() => makeCharacter(
  25670. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  25671. {
  25672. side: {
  25673. height: math.unit(2 + 6 / 12, "feet"),
  25674. weight: math.unit(30, "lb"),
  25675. name: "Side",
  25676. image: {
  25677. source: "./media/characters/layla/side.svg",
  25678. extra: 244 / 188,
  25679. bottom: 18.2 / 262.1
  25680. }
  25681. },
  25682. back: {
  25683. height: math.unit(2 + 6 / 12, "feet"),
  25684. weight: math.unit(30, "lb"),
  25685. name: "Back",
  25686. image: {
  25687. source: "./media/characters/layla/back.svg",
  25688. extra: 308 / 241.5,
  25689. bottom: 8.9 / 316.8
  25690. }
  25691. },
  25692. cumming: {
  25693. height: math.unit(2 + 6 / 12, "feet"),
  25694. weight: math.unit(30, "lb"),
  25695. name: "Cumming",
  25696. image: {
  25697. source: "./media/characters/layla/cumming.svg",
  25698. extra: 342 / 279,
  25699. bottom: 595 / 938
  25700. }
  25701. },
  25702. dickFlaccid: {
  25703. height: math.unit(2.595, "feet"),
  25704. name: "Flaccid Genitals",
  25705. image: {
  25706. source: "./media/characters/layla/dick-flaccid.svg"
  25707. }
  25708. },
  25709. dickErect: {
  25710. height: math.unit(2.359, "feet"),
  25711. name: "Erect Genitals",
  25712. image: {
  25713. source: "./media/characters/layla/dick-erect.svg"
  25714. }
  25715. },
  25716. dragon: {
  25717. height: math.unit(40, "feet"),
  25718. name: "Dragon",
  25719. image: {
  25720. source: "./media/characters/layla/dragon.svg",
  25721. extra: 610/535,
  25722. bottom: 367/977
  25723. }
  25724. },
  25725. taur: {
  25726. height: math.unit(30, "feet"),
  25727. name: "Taur",
  25728. image: {
  25729. source: "./media/characters/layla/taur.svg",
  25730. extra: 1268/1199,
  25731. bottom: 112/1380
  25732. }
  25733. },
  25734. },
  25735. [
  25736. {
  25737. name: "Micro",
  25738. height: math.unit(1, "inch")
  25739. },
  25740. {
  25741. name: "Small",
  25742. height: math.unit(1, "foot")
  25743. },
  25744. {
  25745. name: "Normal",
  25746. height: math.unit(2 + 6 / 12, "feet"),
  25747. default: true
  25748. },
  25749. {
  25750. name: "Macro",
  25751. height: math.unit(200, "feet")
  25752. },
  25753. {
  25754. name: "Megamacro",
  25755. height: math.unit(1000, "miles")
  25756. },
  25757. {
  25758. name: "Planetary",
  25759. height: math.unit(8000, "miles")
  25760. },
  25761. {
  25762. name: "True Layla",
  25763. height: math.unit(200000 * 7, "multiverses")
  25764. },
  25765. ]
  25766. ))
  25767. characterMakers.push(() => makeCharacter(
  25768. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  25769. {
  25770. back: {
  25771. height: math.unit(10.5, "feet"),
  25772. weight: math.unit(800, "lb"),
  25773. name: "Back",
  25774. image: {
  25775. source: "./media/characters/knox/back.svg",
  25776. extra: 1486 / 1089,
  25777. bottom: 107 / 1601.4
  25778. }
  25779. },
  25780. side: {
  25781. height: math.unit(10.5, "feet"),
  25782. weight: math.unit(800, "lb"),
  25783. name: "Side",
  25784. image: {
  25785. source: "./media/characters/knox/side.svg",
  25786. extra: 244 / 218,
  25787. bottom: 14 / 260
  25788. }
  25789. },
  25790. },
  25791. [
  25792. {
  25793. name: "Compact",
  25794. height: math.unit(10.5, "feet"),
  25795. default: true
  25796. },
  25797. {
  25798. name: "Dynamax",
  25799. height: math.unit(210, "feet")
  25800. },
  25801. {
  25802. name: "Full Macro",
  25803. height: math.unit(850, "feet")
  25804. },
  25805. ]
  25806. ))
  25807. characterMakers.push(() => makeCharacter(
  25808. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  25809. {
  25810. front: {
  25811. height: math.unit(28, "feet"),
  25812. weight: math.unit(10500, "lb"),
  25813. name: "Front",
  25814. image: {
  25815. source: "./media/characters/kayda/front.svg",
  25816. extra: 1536 / 1428,
  25817. bottom: 68.7 / 1603
  25818. }
  25819. },
  25820. back: {
  25821. height: math.unit(28, "feet"),
  25822. weight: math.unit(10500, "lb"),
  25823. name: "Back",
  25824. image: {
  25825. source: "./media/characters/kayda/back.svg",
  25826. extra: 1557 / 1464,
  25827. bottom: 39.5 / 1597.49
  25828. }
  25829. },
  25830. dick: {
  25831. height: math.unit(3.858, "feet"),
  25832. name: "Dick",
  25833. image: {
  25834. source: "./media/characters/kayda/dick.svg"
  25835. }
  25836. },
  25837. },
  25838. [
  25839. {
  25840. name: "Macro",
  25841. height: math.unit(28, "feet"),
  25842. default: true
  25843. },
  25844. ]
  25845. ))
  25846. characterMakers.push(() => makeCharacter(
  25847. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  25848. {
  25849. front: {
  25850. height: math.unit(10 + 11 / 12, "feet"),
  25851. weight: math.unit(1400, "lb"),
  25852. name: "Front",
  25853. image: {
  25854. source: "./media/characters/brian/front.svg",
  25855. extra: 737 / 692,
  25856. bottom: 55.4 / 785
  25857. }
  25858. },
  25859. },
  25860. [
  25861. {
  25862. name: "Normal",
  25863. height: math.unit(10 + 11 / 12, "feet"),
  25864. default: true
  25865. },
  25866. ]
  25867. ))
  25868. characterMakers.push(() => makeCharacter(
  25869. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  25870. {
  25871. front: {
  25872. height: math.unit(5 + 8 / 12, "feet"),
  25873. weight: math.unit(140, "lb"),
  25874. name: "Front",
  25875. image: {
  25876. source: "./media/characters/khemri/front.svg",
  25877. extra: 4780 / 4059,
  25878. bottom: 80.1 / 4859.25
  25879. }
  25880. },
  25881. },
  25882. [
  25883. {
  25884. name: "Micro",
  25885. height: math.unit(6, "inches")
  25886. },
  25887. {
  25888. name: "Normal",
  25889. height: math.unit(5 + 8 / 12, "feet"),
  25890. default: true
  25891. },
  25892. ]
  25893. ))
  25894. characterMakers.push(() => makeCharacter(
  25895. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  25896. {
  25897. front: {
  25898. height: math.unit(13, "feet"),
  25899. weight: math.unit(1700, "lb"),
  25900. name: "Front",
  25901. image: {
  25902. source: "./media/characters/felix-braveheart/front.svg",
  25903. extra: 1222 / 1157,
  25904. bottom: 53.2 / 1280
  25905. }
  25906. },
  25907. back: {
  25908. height: math.unit(13, "feet"),
  25909. weight: math.unit(1700, "lb"),
  25910. name: "Back",
  25911. image: {
  25912. source: "./media/characters/felix-braveheart/back.svg",
  25913. extra: 1277 / 1203,
  25914. bottom: 50.2 / 1327
  25915. }
  25916. },
  25917. feral: {
  25918. height: math.unit(6, "feet"),
  25919. weight: math.unit(400, "lb"),
  25920. name: "Feral",
  25921. image: {
  25922. source: "./media/characters/felix-braveheart/feral.svg",
  25923. extra: 682 / 625,
  25924. bottom: 6.9 / 688
  25925. }
  25926. },
  25927. },
  25928. [
  25929. {
  25930. name: "Normal",
  25931. height: math.unit(13, "feet"),
  25932. default: true
  25933. },
  25934. ]
  25935. ))
  25936. characterMakers.push(() => makeCharacter(
  25937. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  25938. {
  25939. side: {
  25940. height: math.unit(5 + 11 / 12, "feet"),
  25941. weight: math.unit(1400, "lb"),
  25942. name: "Side",
  25943. image: {
  25944. source: "./media/characters/shadow-blade/side.svg",
  25945. extra: 1726 / 1267,
  25946. bottom: 58.4 / 1785
  25947. }
  25948. },
  25949. },
  25950. [
  25951. {
  25952. name: "Normal",
  25953. height: math.unit(5 + 11 / 12, "feet"),
  25954. default: true
  25955. },
  25956. ]
  25957. ))
  25958. characterMakers.push(() => makeCharacter(
  25959. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  25960. {
  25961. front: {
  25962. height: math.unit(1 + 6 / 12, "feet"),
  25963. weight: math.unit(25, "lb"),
  25964. name: "Front",
  25965. image: {
  25966. source: "./media/characters/karla-halldor/front.svg",
  25967. extra: 1459 / 1383,
  25968. bottom: 12 / 1472
  25969. }
  25970. },
  25971. },
  25972. [
  25973. {
  25974. name: "Normal",
  25975. height: math.unit(1 + 6 / 12, "feet"),
  25976. default: true
  25977. },
  25978. ]
  25979. ))
  25980. characterMakers.push(() => makeCharacter(
  25981. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  25982. {
  25983. front: {
  25984. height: math.unit(6 + 2 / 12, "feet"),
  25985. weight: math.unit(160, "lb"),
  25986. name: "Front",
  25987. image: {
  25988. source: "./media/characters/ariam/front.svg",
  25989. extra: 1073/976,
  25990. bottom: 52/1125
  25991. }
  25992. },
  25993. back: {
  25994. height: math.unit(6 + 2/12, "feet"),
  25995. weight: math.unit(160, "lb"),
  25996. name: "Back",
  25997. image: {
  25998. source: "./media/characters/ariam/back.svg",
  25999. extra: 1103/1023,
  26000. bottom: 9/1112
  26001. }
  26002. },
  26003. dressed: {
  26004. height: math.unit(6 + 2/12, "feet"),
  26005. weight: math.unit(160, "lb"),
  26006. name: "Dressed",
  26007. image: {
  26008. source: "./media/characters/ariam/dressed.svg",
  26009. extra: 1099/1009,
  26010. bottom: 25/1124
  26011. }
  26012. },
  26013. squatting: {
  26014. height: math.unit(4.1, "feet"),
  26015. weight: math.unit(160, "lb"),
  26016. name: "Squatting",
  26017. image: {
  26018. source: "./media/characters/ariam/squatting.svg",
  26019. extra: 2617 / 2112,
  26020. bottom: 61.2 / 2681,
  26021. }
  26022. },
  26023. },
  26024. [
  26025. {
  26026. name: "Normal",
  26027. height: math.unit(6 + 2 / 12, "feet"),
  26028. default: true
  26029. },
  26030. {
  26031. name: "Normal+",
  26032. height: math.unit(4, "meters")
  26033. },
  26034. {
  26035. name: "Macro",
  26036. height: math.unit(50, "meters")
  26037. },
  26038. {
  26039. name: "Macro+",
  26040. height: math.unit(100, "meters")
  26041. },
  26042. {
  26043. name: "Megamacro",
  26044. height: math.unit(20, "km")
  26045. },
  26046. {
  26047. name: "Caretaker",
  26048. height: math.unit(444, "megameters")
  26049. },
  26050. ]
  26051. ))
  26052. characterMakers.push(() => makeCharacter(
  26053. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  26054. {
  26055. front: {
  26056. height: math.unit(1.67, "meters"),
  26057. weight: math.unit(140, "lb"),
  26058. name: "Front",
  26059. image: {
  26060. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  26061. extra: 438 / 410,
  26062. bottom: 0.75 / 439
  26063. }
  26064. },
  26065. },
  26066. [
  26067. {
  26068. name: "Shrunken",
  26069. height: math.unit(7.6, "cm")
  26070. },
  26071. {
  26072. name: "Human Scale",
  26073. height: math.unit(1.67, "meters")
  26074. },
  26075. {
  26076. name: "Wolxi Scale",
  26077. height: math.unit(36.7, "meters"),
  26078. default: true
  26079. },
  26080. ]
  26081. ))
  26082. characterMakers.push(() => makeCharacter(
  26083. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  26084. {
  26085. front: {
  26086. height: math.unit(1.73, "meters"),
  26087. weight: math.unit(240, "lb"),
  26088. name: "Front",
  26089. image: {
  26090. source: "./media/characters/izue-two-mothers/front.svg",
  26091. extra: 469 / 437,
  26092. bottom: 1.24 / 470.6
  26093. }
  26094. },
  26095. },
  26096. [
  26097. {
  26098. name: "Shrunken",
  26099. height: math.unit(7.86, "cm")
  26100. },
  26101. {
  26102. name: "Human Scale",
  26103. height: math.unit(1.73, "meters")
  26104. },
  26105. {
  26106. name: "Wolxi Scale",
  26107. height: math.unit(38, "meters"),
  26108. default: true
  26109. },
  26110. ]
  26111. ))
  26112. characterMakers.push(() => makeCharacter(
  26113. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  26114. {
  26115. front: {
  26116. height: math.unit(1.55, "meters"),
  26117. weight: math.unit(120, "lb"),
  26118. name: "Front",
  26119. image: {
  26120. source: "./media/characters/teeku-love-shack/front.svg",
  26121. extra: 387 / 362,
  26122. bottom: 1.51 / 388
  26123. }
  26124. },
  26125. },
  26126. [
  26127. {
  26128. name: "Shrunken",
  26129. height: math.unit(7, "cm")
  26130. },
  26131. {
  26132. name: "Human Scale",
  26133. height: math.unit(1.55, "meters")
  26134. },
  26135. {
  26136. name: "Wolxi Scale",
  26137. height: math.unit(34.1, "meters"),
  26138. default: true
  26139. },
  26140. ]
  26141. ))
  26142. characterMakers.push(() => makeCharacter(
  26143. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  26144. {
  26145. front: {
  26146. height: math.unit(1.83, "meters"),
  26147. weight: math.unit(135, "lb"),
  26148. name: "Front",
  26149. image: {
  26150. source: "./media/characters/dejma-the-red/front.svg",
  26151. extra: 480 / 458,
  26152. bottom: 1.8 / 482
  26153. }
  26154. },
  26155. },
  26156. [
  26157. {
  26158. name: "Shrunken",
  26159. height: math.unit(8.3, "cm")
  26160. },
  26161. {
  26162. name: "Human Scale",
  26163. height: math.unit(1.83, "meters")
  26164. },
  26165. {
  26166. name: "Wolxi Scale",
  26167. height: math.unit(40, "meters"),
  26168. default: true
  26169. },
  26170. ]
  26171. ))
  26172. characterMakers.push(() => makeCharacter(
  26173. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  26174. {
  26175. front: {
  26176. height: math.unit(1.78, "meters"),
  26177. weight: math.unit(65, "kg"),
  26178. name: "Front",
  26179. image: {
  26180. source: "./media/characters/aki/front.svg",
  26181. extra: 452 / 415
  26182. }
  26183. },
  26184. frontNsfw: {
  26185. height: math.unit(1.78, "meters"),
  26186. weight: math.unit(65, "kg"),
  26187. name: "Front (NSFW)",
  26188. image: {
  26189. source: "./media/characters/aki/front-nsfw.svg",
  26190. extra: 452 / 415
  26191. }
  26192. },
  26193. back: {
  26194. height: math.unit(1.78, "meters"),
  26195. weight: math.unit(65, "kg"),
  26196. name: "Back",
  26197. image: {
  26198. source: "./media/characters/aki/back.svg",
  26199. extra: 452 / 415
  26200. }
  26201. },
  26202. rump: {
  26203. height: math.unit(2.05, "feet"),
  26204. name: "Rump",
  26205. image: {
  26206. source: "./media/characters/aki/rump.svg"
  26207. }
  26208. },
  26209. dick: {
  26210. height: math.unit(0.95, "feet"),
  26211. name: "Dick",
  26212. image: {
  26213. source: "./media/characters/aki/dick.svg"
  26214. }
  26215. },
  26216. },
  26217. [
  26218. {
  26219. name: "Micro",
  26220. height: math.unit(15, "cm")
  26221. },
  26222. {
  26223. name: "Normal",
  26224. height: math.unit(178, "cm"),
  26225. default: true
  26226. },
  26227. {
  26228. name: "Macro",
  26229. height: math.unit(214, "m")
  26230. },
  26231. {
  26232. name: "Macro+",
  26233. height: math.unit(534, "m")
  26234. },
  26235. ]
  26236. ))
  26237. characterMakers.push(() => makeCharacter(
  26238. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  26239. {
  26240. front: {
  26241. height: math.unit(5 + 5 / 12, "feet"),
  26242. weight: math.unit(120, "lb"),
  26243. name: "Front",
  26244. image: {
  26245. source: "./media/characters/ari/front.svg",
  26246. extra: 1550/1471,
  26247. bottom: 39/1589
  26248. }
  26249. },
  26250. },
  26251. [
  26252. {
  26253. name: "Normal",
  26254. height: math.unit(5 + 5 / 12, "feet")
  26255. },
  26256. {
  26257. name: "Macro",
  26258. height: math.unit(100, "feet"),
  26259. default: true
  26260. },
  26261. {
  26262. name: "Megamacro",
  26263. height: math.unit(100, "miles")
  26264. },
  26265. {
  26266. name: "Gigamacro",
  26267. height: math.unit(80000, "miles")
  26268. },
  26269. ]
  26270. ))
  26271. characterMakers.push(() => makeCharacter(
  26272. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  26273. {
  26274. side: {
  26275. height: math.unit(9, "feet"),
  26276. weight: math.unit(400, "kg"),
  26277. name: "Side",
  26278. image: {
  26279. source: "./media/characters/bolt/side.svg",
  26280. extra: 1126 / 896,
  26281. bottom: 60 / 1187.3,
  26282. }
  26283. },
  26284. },
  26285. [
  26286. {
  26287. name: "Micro",
  26288. height: math.unit(5, "inches")
  26289. },
  26290. {
  26291. name: "Normal",
  26292. height: math.unit(9, "feet"),
  26293. default: true
  26294. },
  26295. {
  26296. name: "Macro",
  26297. height: math.unit(700, "feet")
  26298. },
  26299. {
  26300. name: "Max Size",
  26301. height: math.unit(1.52e22, "yottameters")
  26302. },
  26303. ]
  26304. ))
  26305. characterMakers.push(() => makeCharacter(
  26306. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  26307. {
  26308. front: {
  26309. height: math.unit(4.3, "meters"),
  26310. weight: math.unit(3, "tons"),
  26311. name: "Front",
  26312. image: {
  26313. source: "./media/characters/draekon-sylviar/front.svg",
  26314. extra: 2072/1512,
  26315. bottom: 74/2146
  26316. }
  26317. },
  26318. back: {
  26319. height: math.unit(4.3, "meters"),
  26320. weight: math.unit(3, "tons"),
  26321. name: "Back",
  26322. image: {
  26323. source: "./media/characters/draekon-sylviar/back.svg",
  26324. extra: 1639/1483,
  26325. bottom: 41/1680
  26326. }
  26327. },
  26328. feral: {
  26329. height: math.unit(1.15, "meters"),
  26330. weight: math.unit(3, "tons"),
  26331. name: "Feral",
  26332. image: {
  26333. source: "./media/characters/draekon-sylviar/feral.svg",
  26334. extra: 1033/395,
  26335. bottom: 130/1163
  26336. }
  26337. },
  26338. maw: {
  26339. height: math.unit(1.3, "meters"),
  26340. name: "Maw",
  26341. image: {
  26342. source: "./media/characters/draekon-sylviar/maw.svg"
  26343. }
  26344. },
  26345. mawSeparated: {
  26346. height: math.unit(1.53, "meters"),
  26347. name: "Separated Maw",
  26348. image: {
  26349. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  26350. }
  26351. },
  26352. tail: {
  26353. height: math.unit(1.15, "meters"),
  26354. name: "Tail",
  26355. image: {
  26356. source: "./media/characters/draekon-sylviar/tail.svg"
  26357. }
  26358. },
  26359. tailDick: {
  26360. height: math.unit(1.15, "meters"),
  26361. name: "Tail (Dick)",
  26362. image: {
  26363. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  26364. }
  26365. },
  26366. tailDickSeparated: {
  26367. height: math.unit(1.19, "meters"),
  26368. name: "Tail (Separated Dick)",
  26369. image: {
  26370. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  26371. }
  26372. },
  26373. slit: {
  26374. height: math.unit(1, "meters"),
  26375. name: "Slit",
  26376. image: {
  26377. source: "./media/characters/draekon-sylviar/slit.svg"
  26378. }
  26379. },
  26380. dick: {
  26381. height: math.unit(1.15, "meters"),
  26382. name: "Dick",
  26383. image: {
  26384. source: "./media/characters/draekon-sylviar/dick.svg"
  26385. }
  26386. },
  26387. dickSeparated: {
  26388. height: math.unit(1.1, "meters"),
  26389. name: "Separated Dick",
  26390. image: {
  26391. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  26392. }
  26393. },
  26394. sheath: {
  26395. height: math.unit(1.15, "meters"),
  26396. name: "Sheath",
  26397. image: {
  26398. source: "./media/characters/draekon-sylviar/sheath.svg"
  26399. }
  26400. },
  26401. },
  26402. [
  26403. {
  26404. name: "Small",
  26405. height: math.unit(4.53 / 2, "meters"),
  26406. default: true
  26407. },
  26408. {
  26409. name: "Normal",
  26410. height: math.unit(4.53, "meters"),
  26411. default: true
  26412. },
  26413. {
  26414. name: "Large",
  26415. height: math.unit(4.53 * 2, "meters"),
  26416. },
  26417. ]
  26418. ))
  26419. characterMakers.push(() => makeCharacter(
  26420. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  26421. {
  26422. front: {
  26423. height: math.unit(6 + 2 / 12, "feet"),
  26424. weight: math.unit(180, "lb"),
  26425. name: "Front",
  26426. image: {
  26427. source: "./media/characters/brawler/front.svg",
  26428. extra: 3301 / 3027,
  26429. bottom: 138 / 3439
  26430. }
  26431. },
  26432. },
  26433. [
  26434. {
  26435. name: "Normal",
  26436. height: math.unit(6 + 2 / 12, "feet"),
  26437. default: true
  26438. },
  26439. ]
  26440. ))
  26441. characterMakers.push(() => makeCharacter(
  26442. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  26443. {
  26444. front: {
  26445. height: math.unit(11, "feet"),
  26446. weight: math.unit(1000, "lb"),
  26447. name: "Front",
  26448. image: {
  26449. source: "./media/characters/alex/front.svg",
  26450. bottom: 44.5 / 620
  26451. }
  26452. },
  26453. },
  26454. [
  26455. {
  26456. name: "Micro",
  26457. height: math.unit(5, "inches")
  26458. },
  26459. {
  26460. name: "Normal",
  26461. height: math.unit(11, "feet"),
  26462. default: true
  26463. },
  26464. {
  26465. name: "Macro",
  26466. height: math.unit(9.5e9, "feet")
  26467. },
  26468. {
  26469. name: "Max Size",
  26470. height: math.unit(1.4e283, "yottameters")
  26471. },
  26472. ]
  26473. ))
  26474. characterMakers.push(() => makeCharacter(
  26475. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  26476. {
  26477. female: {
  26478. height: math.unit(29.9, "m"),
  26479. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  26480. name: "Female",
  26481. image: {
  26482. source: "./media/characters/zenari/female.svg",
  26483. extra: 3281.6 / 3217,
  26484. bottom: 72.2 / 3353
  26485. }
  26486. },
  26487. male: {
  26488. height: math.unit(27.7, "m"),
  26489. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  26490. name: "Male",
  26491. image: {
  26492. source: "./media/characters/zenari/male.svg",
  26493. extra: 3008 / 2991,
  26494. bottom: 54.6 / 3069
  26495. }
  26496. },
  26497. },
  26498. [
  26499. {
  26500. name: "Macro",
  26501. height: math.unit(29.7, "meters"),
  26502. default: true
  26503. },
  26504. ]
  26505. ))
  26506. characterMakers.push(() => makeCharacter(
  26507. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  26508. {
  26509. female: {
  26510. height: math.unit(23.8, "m"),
  26511. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26512. name: "Female",
  26513. image: {
  26514. source: "./media/characters/mactarian/female.svg",
  26515. extra: 2662 / 2569,
  26516. bottom: 73 / 2736
  26517. }
  26518. },
  26519. male: {
  26520. height: math.unit(23.8, "m"),
  26521. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26522. name: "Male",
  26523. image: {
  26524. source: "./media/characters/mactarian/male.svg",
  26525. extra: 2673 / 2600,
  26526. bottom: 76 / 2750
  26527. }
  26528. },
  26529. },
  26530. [
  26531. {
  26532. name: "Macro",
  26533. height: math.unit(23.8, "meters"),
  26534. default: true
  26535. },
  26536. ]
  26537. ))
  26538. characterMakers.push(() => makeCharacter(
  26539. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  26540. {
  26541. female: {
  26542. height: math.unit(19.3, "m"),
  26543. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  26544. name: "Female",
  26545. image: {
  26546. source: "./media/characters/umok/female.svg",
  26547. extra: 2186 / 2078,
  26548. bottom: 87 / 2277
  26549. }
  26550. },
  26551. male: {
  26552. height: math.unit(19.5, "m"),
  26553. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  26554. name: "Male",
  26555. image: {
  26556. source: "./media/characters/umok/male.svg",
  26557. extra: 2233 / 2140,
  26558. bottom: 24.4 / 2258
  26559. }
  26560. },
  26561. },
  26562. [
  26563. {
  26564. name: "Macro",
  26565. height: math.unit(19.3, "meters"),
  26566. default: true
  26567. },
  26568. ]
  26569. ))
  26570. characterMakers.push(() => makeCharacter(
  26571. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  26572. {
  26573. female: {
  26574. height: math.unit(26.15, "m"),
  26575. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  26576. name: "Female",
  26577. image: {
  26578. source: "./media/characters/joraxian/female.svg",
  26579. extra: 2912 / 2824,
  26580. bottom: 36 / 2956
  26581. }
  26582. },
  26583. male: {
  26584. height: math.unit(25.4, "m"),
  26585. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  26586. name: "Male",
  26587. image: {
  26588. source: "./media/characters/joraxian/male.svg",
  26589. extra: 2877 / 2721,
  26590. bottom: 82 / 2967
  26591. }
  26592. },
  26593. },
  26594. [
  26595. {
  26596. name: "Macro",
  26597. height: math.unit(26.15, "meters"),
  26598. default: true
  26599. },
  26600. ]
  26601. ))
  26602. characterMakers.push(() => makeCharacter(
  26603. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  26604. {
  26605. female: {
  26606. height: math.unit(21.6, "m"),
  26607. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  26608. name: "Female",
  26609. image: {
  26610. source: "./media/characters/sthara/female.svg",
  26611. extra: 2516 / 2347,
  26612. bottom: 21.5 / 2537
  26613. }
  26614. },
  26615. male: {
  26616. height: math.unit(24, "m"),
  26617. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  26618. name: "Male",
  26619. image: {
  26620. source: "./media/characters/sthara/male.svg",
  26621. extra: 2732 / 2607,
  26622. bottom: 23 / 2732
  26623. }
  26624. },
  26625. },
  26626. [
  26627. {
  26628. name: "Macro",
  26629. height: math.unit(21.6, "meters"),
  26630. default: true
  26631. },
  26632. ]
  26633. ))
  26634. characterMakers.push(() => makeCharacter(
  26635. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  26636. {
  26637. front: {
  26638. height: math.unit(6 + 4 / 12, "feet"),
  26639. weight: math.unit(175, "lb"),
  26640. name: "Front",
  26641. image: {
  26642. source: "./media/characters/luka-bryzant/front.svg",
  26643. extra: 311 / 289,
  26644. bottom: 4 / 315
  26645. }
  26646. },
  26647. back: {
  26648. height: math.unit(6 + 4 / 12, "feet"),
  26649. weight: math.unit(175, "lb"),
  26650. name: "Back",
  26651. image: {
  26652. source: "./media/characters/luka-bryzant/back.svg",
  26653. extra: 311 / 289,
  26654. bottom: 3.8 / 313.7
  26655. }
  26656. },
  26657. },
  26658. [
  26659. {
  26660. name: "Micro",
  26661. height: math.unit(10, "inches")
  26662. },
  26663. {
  26664. name: "Normal",
  26665. height: math.unit(6 + 4 / 12, "feet"),
  26666. default: true
  26667. },
  26668. {
  26669. name: "Large",
  26670. height: math.unit(12, "feet")
  26671. },
  26672. ]
  26673. ))
  26674. characterMakers.push(() => makeCharacter(
  26675. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  26676. {
  26677. front: {
  26678. height: math.unit(5 + 7 / 12, "feet"),
  26679. weight: math.unit(185, "lb"),
  26680. name: "Front",
  26681. image: {
  26682. source: "./media/characters/aman-aquila/front.svg",
  26683. extra: 1013 / 976,
  26684. bottom: 45.6 / 1057
  26685. }
  26686. },
  26687. side: {
  26688. height: math.unit(5 + 7 / 12, "feet"),
  26689. weight: math.unit(185, "lb"),
  26690. name: "Side",
  26691. image: {
  26692. source: "./media/characters/aman-aquila/side.svg",
  26693. extra: 1054 / 1011,
  26694. bottom: 15 / 1070
  26695. }
  26696. },
  26697. back: {
  26698. height: math.unit(5 + 7 / 12, "feet"),
  26699. weight: math.unit(185, "lb"),
  26700. name: "Back",
  26701. image: {
  26702. source: "./media/characters/aman-aquila/back.svg",
  26703. extra: 1026 / 970,
  26704. bottom: 12 / 1039
  26705. }
  26706. },
  26707. head: {
  26708. height: math.unit(1.211, "feet"),
  26709. name: "Head",
  26710. image: {
  26711. source: "./media/characters/aman-aquila/head.svg",
  26712. }
  26713. },
  26714. },
  26715. [
  26716. {
  26717. name: "Minimicro",
  26718. height: math.unit(0.057, "inches")
  26719. },
  26720. {
  26721. name: "Micro",
  26722. height: math.unit(7, "inches")
  26723. },
  26724. {
  26725. name: "Mini",
  26726. height: math.unit(3 + 7 / 12, "feet")
  26727. },
  26728. {
  26729. name: "Normal",
  26730. height: math.unit(5 + 7 / 12, "feet"),
  26731. default: true
  26732. },
  26733. {
  26734. name: "Macro",
  26735. height: math.unit(157 + 7 / 12, "feet")
  26736. },
  26737. {
  26738. name: "Megamacro",
  26739. height: math.unit(1557 + 7 / 12, "feet")
  26740. },
  26741. {
  26742. name: "Gigamacro",
  26743. height: math.unit(15557 + 7 / 12, "feet")
  26744. },
  26745. ]
  26746. ))
  26747. characterMakers.push(() => makeCharacter(
  26748. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  26749. {
  26750. front: {
  26751. height: math.unit(3 + 2 / 12, "inches"),
  26752. weight: math.unit(0.3, "ounces"),
  26753. name: "Front",
  26754. image: {
  26755. source: "./media/characters/hiphae/front.svg",
  26756. extra: 1931 / 1683,
  26757. bottom: 24 / 1955
  26758. }
  26759. },
  26760. },
  26761. [
  26762. {
  26763. name: "Normal",
  26764. height: math.unit(3 + 1 / 2, "inches"),
  26765. default: true
  26766. },
  26767. ]
  26768. ))
  26769. characterMakers.push(() => makeCharacter(
  26770. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  26771. {
  26772. front: {
  26773. height: math.unit(5 + 10 / 12, "feet"),
  26774. weight: math.unit(165, "lb"),
  26775. name: "Front",
  26776. image: {
  26777. source: "./media/characters/nicky/front.svg",
  26778. extra: 3144 / 2886,
  26779. bottom: 45.6 / 3192
  26780. }
  26781. },
  26782. back: {
  26783. height: math.unit(5 + 10 / 12, "feet"),
  26784. weight: math.unit(165, "lb"),
  26785. name: "Back",
  26786. image: {
  26787. source: "./media/characters/nicky/back.svg",
  26788. extra: 3055 / 2804,
  26789. bottom: 28.4 / 3087
  26790. }
  26791. },
  26792. frontclothed: {
  26793. height: math.unit(5 + 10 / 12, "feet"),
  26794. weight: math.unit(165, "lb"),
  26795. name: "Front-clothed",
  26796. image: {
  26797. source: "./media/characters/nicky/front-clothed.svg",
  26798. extra: 3184.9 / 2926.9,
  26799. bottom: 86.5 / 3239.9
  26800. }
  26801. },
  26802. foot: {
  26803. height: math.unit(1.16, "feet"),
  26804. name: "Foot",
  26805. image: {
  26806. source: "./media/characters/nicky/foot.svg"
  26807. }
  26808. },
  26809. feet: {
  26810. height: math.unit(1.34, "feet"),
  26811. name: "Feet",
  26812. image: {
  26813. source: "./media/characters/nicky/feet.svg"
  26814. }
  26815. },
  26816. maw: {
  26817. height: math.unit(0.9, "feet"),
  26818. name: "Maw",
  26819. image: {
  26820. source: "./media/characters/nicky/maw.svg"
  26821. }
  26822. },
  26823. },
  26824. [
  26825. {
  26826. name: "Normal",
  26827. height: math.unit(5 + 10 / 12, "feet"),
  26828. default: true
  26829. },
  26830. {
  26831. name: "Macro",
  26832. height: math.unit(60, "feet")
  26833. },
  26834. {
  26835. name: "Megamacro",
  26836. height: math.unit(1, "mile")
  26837. },
  26838. ]
  26839. ))
  26840. characterMakers.push(() => makeCharacter(
  26841. { name: "Blair", species: ["seal"], tags: ["taur"] },
  26842. {
  26843. side: {
  26844. height: math.unit(10, "feet"),
  26845. weight: math.unit(600, "lb"),
  26846. name: "Side",
  26847. image: {
  26848. source: "./media/characters/blair/side.svg",
  26849. bottom: 16.6 / 475,
  26850. extra: 458 / 431
  26851. }
  26852. },
  26853. },
  26854. [
  26855. {
  26856. name: "Micro",
  26857. height: math.unit(8, "inches")
  26858. },
  26859. {
  26860. name: "Normal",
  26861. height: math.unit(10, "feet"),
  26862. default: true
  26863. },
  26864. {
  26865. name: "Macro",
  26866. height: math.unit(180, "feet")
  26867. },
  26868. ]
  26869. ))
  26870. characterMakers.push(() => makeCharacter(
  26871. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  26872. {
  26873. front: {
  26874. height: math.unit(5 + 4 / 12, "feet"),
  26875. weight: math.unit(125, "lb"),
  26876. name: "Front",
  26877. image: {
  26878. source: "./media/characters/fisher/front.svg",
  26879. extra: 444 / 390,
  26880. bottom: 2 / 444.8
  26881. }
  26882. },
  26883. },
  26884. [
  26885. {
  26886. name: "Micro",
  26887. height: math.unit(4, "inches")
  26888. },
  26889. {
  26890. name: "Normal",
  26891. height: math.unit(5 + 4 / 12, "feet"),
  26892. default: true
  26893. },
  26894. {
  26895. name: "Macro",
  26896. height: math.unit(100, "feet")
  26897. },
  26898. ]
  26899. ))
  26900. characterMakers.push(() => makeCharacter(
  26901. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  26902. {
  26903. front: {
  26904. height: math.unit(6.71, "feet"),
  26905. weight: math.unit(200, "lb"),
  26906. preyCapacity: math.unit(1000000, "people"),
  26907. name: "Front",
  26908. image: {
  26909. source: "./media/characters/gliss/front.svg",
  26910. extra: 2347 / 2231,
  26911. bottom: 113 / 2462
  26912. }
  26913. },
  26914. hammerspaceSize: {
  26915. height: math.unit(6.71 * 717, "feet"),
  26916. weight: math.unit(200, "lb"),
  26917. preyCapacity: math.unit(1000000, "people"),
  26918. name: "Hammerspace Size",
  26919. image: {
  26920. source: "./media/characters/gliss/front.svg",
  26921. extra: 2347 / 2231,
  26922. bottom: 113 / 2462
  26923. }
  26924. },
  26925. },
  26926. [
  26927. {
  26928. name: "Normal",
  26929. height: math.unit(6.71, "feet"),
  26930. default: true
  26931. },
  26932. ]
  26933. ))
  26934. characterMakers.push(() => makeCharacter(
  26935. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  26936. {
  26937. side: {
  26938. height: math.unit(1.44, "m"),
  26939. weight: math.unit(80, "kg"),
  26940. name: "Side",
  26941. image: {
  26942. source: "./media/characters/dune-anderson/side.svg",
  26943. bottom: 49 / 1426
  26944. }
  26945. },
  26946. },
  26947. [
  26948. {
  26949. name: "Wolf-sized",
  26950. height: math.unit(1.44, "meters")
  26951. },
  26952. {
  26953. name: "Normal",
  26954. height: math.unit(5.05, "meters"),
  26955. default: true
  26956. },
  26957. {
  26958. name: "Big",
  26959. height: math.unit(14.4, "meters")
  26960. },
  26961. {
  26962. name: "Huge",
  26963. height: math.unit(144, "meters")
  26964. },
  26965. ]
  26966. ))
  26967. characterMakers.push(() => makeCharacter(
  26968. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  26969. {
  26970. front: {
  26971. height: math.unit(7, "feet"),
  26972. weight: math.unit(425, "lb"),
  26973. name: "Front",
  26974. image: {
  26975. source: "./media/characters/hind/front.svg",
  26976. extra: 2091 / 1860,
  26977. bottom: 129 / 2220
  26978. }
  26979. },
  26980. back: {
  26981. height: math.unit(7, "feet"),
  26982. weight: math.unit(425, "lb"),
  26983. name: "Back",
  26984. image: {
  26985. source: "./media/characters/hind/back.svg",
  26986. extra: 2091 / 1860,
  26987. bottom: 24.6 / 2309
  26988. }
  26989. },
  26990. tail: {
  26991. height: math.unit(2.8, "feet"),
  26992. name: "Tail",
  26993. image: {
  26994. source: "./media/characters/hind/tail.svg"
  26995. }
  26996. },
  26997. head: {
  26998. height: math.unit(2.55, "feet"),
  26999. name: "Head",
  27000. image: {
  27001. source: "./media/characters/hind/head.svg"
  27002. }
  27003. },
  27004. },
  27005. [
  27006. {
  27007. name: "XS",
  27008. height: math.unit(0.7, "feet")
  27009. },
  27010. {
  27011. name: "Normal",
  27012. height: math.unit(7, "feet"),
  27013. default: true
  27014. },
  27015. {
  27016. name: "XL",
  27017. height: math.unit(70, "feet")
  27018. },
  27019. ]
  27020. ))
  27021. characterMakers.push(() => makeCharacter(
  27022. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  27023. {
  27024. front: {
  27025. height: math.unit(2.1, "meters"),
  27026. weight: math.unit(150, "lb"),
  27027. name: "Front",
  27028. image: {
  27029. source: "./media/characters/tharquench-sizestealer/front.svg",
  27030. extra: 1605/1470,
  27031. bottom: 36/1641
  27032. }
  27033. },
  27034. frontAlt: {
  27035. height: math.unit(2.1, "meters"),
  27036. weight: math.unit(150, "lb"),
  27037. name: "Front (Alt)",
  27038. image: {
  27039. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  27040. extra: 2318 / 2063,
  27041. bottom: 93.4 / 2410
  27042. }
  27043. },
  27044. },
  27045. [
  27046. {
  27047. name: "Nano",
  27048. height: math.unit(1, "mm")
  27049. },
  27050. {
  27051. name: "Micro",
  27052. height: math.unit(1, "cm")
  27053. },
  27054. {
  27055. name: "Normal",
  27056. height: math.unit(2.1, "meters"),
  27057. default: true
  27058. },
  27059. ]
  27060. ))
  27061. characterMakers.push(() => makeCharacter(
  27062. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  27063. {
  27064. front: {
  27065. height: math.unit(7 + 5 / 12, "feet"),
  27066. weight: math.unit(357, "lb"),
  27067. name: "Front",
  27068. image: {
  27069. source: "./media/characters/solex-draconov/front.svg",
  27070. extra: 1993 / 1865,
  27071. bottom: 117 / 2111
  27072. }
  27073. },
  27074. },
  27075. [
  27076. {
  27077. name: "Natural Height",
  27078. height: math.unit(7 + 5 / 12, "feet"),
  27079. default: true
  27080. },
  27081. {
  27082. name: "Macro",
  27083. height: math.unit(350, "feet")
  27084. },
  27085. {
  27086. name: "Macro+",
  27087. height: math.unit(1000, "feet")
  27088. },
  27089. {
  27090. name: "Megamacro",
  27091. height: math.unit(20, "km")
  27092. },
  27093. {
  27094. name: "Megamacro+",
  27095. height: math.unit(1000, "km")
  27096. },
  27097. {
  27098. name: "Gigamacro",
  27099. height: math.unit(2.5, "Gm")
  27100. },
  27101. {
  27102. name: "Teramacro",
  27103. height: math.unit(15, "Tm")
  27104. },
  27105. {
  27106. name: "Galactic",
  27107. height: math.unit(30, "Zm")
  27108. },
  27109. {
  27110. name: "Universal",
  27111. height: math.unit(21000, "Ym")
  27112. },
  27113. {
  27114. name: "Omniversal",
  27115. height: math.unit(9.861e50, "Ym")
  27116. },
  27117. {
  27118. name: "Existential",
  27119. height: math.unit(1e300, "meters")
  27120. },
  27121. ]
  27122. ))
  27123. characterMakers.push(() => makeCharacter(
  27124. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  27125. {
  27126. side: {
  27127. height: math.unit(25, "feet"),
  27128. weight: math.unit(90000, "lb"),
  27129. name: "Side",
  27130. image: {
  27131. source: "./media/characters/mandarax/side.svg",
  27132. extra: 614 / 332,
  27133. bottom: 55 / 630
  27134. }
  27135. },
  27136. lounging: {
  27137. height: math.unit(15.4, "feet"),
  27138. weight: math.unit(90000, "lb"),
  27139. name: "Lounging",
  27140. image: {
  27141. source: "./media/characters/mandarax/lounging.svg",
  27142. extra: 817/609,
  27143. bottom: 685/1502
  27144. }
  27145. },
  27146. head: {
  27147. height: math.unit(11.4, "feet"),
  27148. name: "Head",
  27149. image: {
  27150. source: "./media/characters/mandarax/head.svg"
  27151. }
  27152. },
  27153. belly: {
  27154. height: math.unit(33, "feet"),
  27155. name: "Belly",
  27156. preyCapacity: math.unit(500, "people"),
  27157. image: {
  27158. source: "./media/characters/mandarax/belly.svg"
  27159. }
  27160. },
  27161. dick: {
  27162. height: math.unit(8.46, "feet"),
  27163. name: "Dick",
  27164. image: {
  27165. source: "./media/characters/mandarax/dick.svg"
  27166. }
  27167. },
  27168. top: {
  27169. height: math.unit(28, "meters"),
  27170. name: "Top",
  27171. image: {
  27172. source: "./media/characters/mandarax/top.svg"
  27173. }
  27174. },
  27175. },
  27176. [
  27177. {
  27178. name: "Normal",
  27179. height: math.unit(25, "feet"),
  27180. default: true
  27181. },
  27182. ]
  27183. ))
  27184. characterMakers.push(() => makeCharacter(
  27185. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  27186. {
  27187. front: {
  27188. height: math.unit(5, "feet"),
  27189. weight: math.unit(90, "lb"),
  27190. name: "Front",
  27191. image: {
  27192. source: "./media/characters/pixil/front.svg",
  27193. extra: 2000 / 1618,
  27194. bottom: 12.3 / 2011
  27195. }
  27196. },
  27197. },
  27198. [
  27199. {
  27200. name: "Normal",
  27201. height: math.unit(5, "feet"),
  27202. default: true
  27203. },
  27204. {
  27205. name: "Megamacro",
  27206. height: math.unit(10, "miles"),
  27207. },
  27208. ]
  27209. ))
  27210. characterMakers.push(() => makeCharacter(
  27211. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  27212. {
  27213. front: {
  27214. height: math.unit(7 + 2 / 12, "feet"),
  27215. weight: math.unit(200, "lb"),
  27216. name: "Front",
  27217. image: {
  27218. source: "./media/characters/angel/front.svg",
  27219. extra: 1830 / 1737,
  27220. bottom: 22.6 / 1854,
  27221. }
  27222. },
  27223. },
  27224. [
  27225. {
  27226. name: "Normal",
  27227. height: math.unit(7 + 2 / 12, "feet"),
  27228. default: true
  27229. },
  27230. {
  27231. name: "Macro",
  27232. height: math.unit(1000, "feet")
  27233. },
  27234. {
  27235. name: "Megamacro",
  27236. height: math.unit(2, "miles")
  27237. },
  27238. {
  27239. name: "Gigamacro",
  27240. height: math.unit(20, "earths")
  27241. },
  27242. ]
  27243. ))
  27244. characterMakers.push(() => makeCharacter(
  27245. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  27246. {
  27247. front: {
  27248. height: math.unit(5, "feet"),
  27249. weight: math.unit(180, "lb"),
  27250. name: "Front",
  27251. image: {
  27252. source: "./media/characters/mekana/front.svg",
  27253. extra: 1671 / 1605,
  27254. bottom: 3.5 / 1691
  27255. }
  27256. },
  27257. side: {
  27258. height: math.unit(5, "feet"),
  27259. weight: math.unit(180, "lb"),
  27260. name: "Side",
  27261. image: {
  27262. source: "./media/characters/mekana/side.svg",
  27263. extra: 1671 / 1605,
  27264. bottom: 3.5 / 1691
  27265. }
  27266. },
  27267. back: {
  27268. height: math.unit(5, "feet"),
  27269. weight: math.unit(180, "lb"),
  27270. name: "Back",
  27271. image: {
  27272. source: "./media/characters/mekana/back.svg",
  27273. extra: 1671 / 1605,
  27274. bottom: 3.5 / 1691
  27275. }
  27276. },
  27277. },
  27278. [
  27279. {
  27280. name: "Normal",
  27281. height: math.unit(5, "feet"),
  27282. default: true
  27283. },
  27284. ]
  27285. ))
  27286. characterMakers.push(() => makeCharacter(
  27287. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  27288. {
  27289. front: {
  27290. height: math.unit(4 + 6 / 12, "feet"),
  27291. weight: math.unit(80, "lb"),
  27292. name: "Front",
  27293. image: {
  27294. source: "./media/characters/pixie/front.svg",
  27295. extra: 1924 / 1825,
  27296. bottom: 22.4 / 1946
  27297. }
  27298. },
  27299. },
  27300. [
  27301. {
  27302. name: "Normal",
  27303. height: math.unit(4 + 6 / 12, "feet"),
  27304. default: true
  27305. },
  27306. {
  27307. name: "Macro",
  27308. height: math.unit(40, "feet")
  27309. },
  27310. ]
  27311. ))
  27312. characterMakers.push(() => makeCharacter(
  27313. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  27314. {
  27315. front: {
  27316. height: math.unit(2.1, "meters"),
  27317. weight: math.unit(200, "lb"),
  27318. name: "Front",
  27319. image: {
  27320. source: "./media/characters/the-lascivious/front.svg",
  27321. extra: 1 / 0.893,
  27322. bottom: 3.5 / 573.7
  27323. }
  27324. },
  27325. },
  27326. [
  27327. {
  27328. name: "Human Scale",
  27329. height: math.unit(2.1, "meters")
  27330. },
  27331. {
  27332. name: "Wolxi Scale",
  27333. height: math.unit(46.2, "m"),
  27334. default: true
  27335. },
  27336. {
  27337. name: "Boinker of Buildings",
  27338. height: math.unit(10, "km")
  27339. },
  27340. {
  27341. name: "Shagger of Skyscrapers",
  27342. height: math.unit(40, "km")
  27343. },
  27344. {
  27345. name: "Banger of Boroughs",
  27346. height: math.unit(4000, "km")
  27347. },
  27348. {
  27349. name: "Screwer of States",
  27350. height: math.unit(100000, "km")
  27351. },
  27352. {
  27353. name: "Pounder of Planets",
  27354. height: math.unit(2000000, "km")
  27355. },
  27356. ]
  27357. ))
  27358. characterMakers.push(() => makeCharacter(
  27359. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  27360. {
  27361. front: {
  27362. height: math.unit(6, "feet"),
  27363. weight: math.unit(150, "lb"),
  27364. name: "Front",
  27365. image: {
  27366. source: "./media/characters/aj/front.svg",
  27367. extra: 2039 / 1562,
  27368. bottom: 40 / 2079
  27369. }
  27370. },
  27371. },
  27372. [
  27373. {
  27374. name: "Normal",
  27375. height: math.unit(11 + 6 / 12, "feet"),
  27376. default: true
  27377. },
  27378. {
  27379. name: "Megamacro",
  27380. height: math.unit(60, "megameters")
  27381. },
  27382. ]
  27383. ))
  27384. characterMakers.push(() => makeCharacter(
  27385. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  27386. {
  27387. side: {
  27388. height: math.unit(31 + 8 / 12, "feet"),
  27389. weight: math.unit(75000, "kg"),
  27390. name: "Side",
  27391. image: {
  27392. source: "./media/characters/koros/side.svg",
  27393. extra: 1442 / 1297,
  27394. bottom: 122.7 / 1562
  27395. }
  27396. },
  27397. dicksKingsCrown: {
  27398. height: math.unit(6, "feet"),
  27399. name: "Dicks (King's Crown)",
  27400. image: {
  27401. source: "./media/characters/koros/dicks-kings-crown.svg"
  27402. }
  27403. },
  27404. dicksTailSet: {
  27405. height: math.unit(3, "feet"),
  27406. name: "Dicks (Tail Set)",
  27407. image: {
  27408. source: "./media/characters/koros/dicks-tail-set.svg"
  27409. }
  27410. },
  27411. dickCumming: {
  27412. height: math.unit(7.98, "feet"),
  27413. name: "Dick (Cumming)",
  27414. image: {
  27415. source: "./media/characters/koros/dick-cumming.svg"
  27416. }
  27417. },
  27418. dicksBack: {
  27419. height: math.unit(5.9, "feet"),
  27420. name: "Dicks (Back)",
  27421. image: {
  27422. source: "./media/characters/koros/dicks-back.svg"
  27423. }
  27424. },
  27425. dicksFront: {
  27426. height: math.unit(3.72, "feet"),
  27427. name: "Dicks (Front)",
  27428. image: {
  27429. source: "./media/characters/koros/dicks-front.svg"
  27430. }
  27431. },
  27432. dicksPeeking: {
  27433. height: math.unit(3.0, "feet"),
  27434. name: "Dicks (Peeking)",
  27435. image: {
  27436. source: "./media/characters/koros/dicks-peeking.svg"
  27437. }
  27438. },
  27439. eye: {
  27440. height: math.unit(1.7, "feet"),
  27441. name: "Eye",
  27442. image: {
  27443. source: "./media/characters/koros/eye.svg"
  27444. }
  27445. },
  27446. headFront: {
  27447. height: math.unit(11.69, "feet"),
  27448. name: "Head (Front)",
  27449. image: {
  27450. source: "./media/characters/koros/head-front.svg"
  27451. }
  27452. },
  27453. headSide: {
  27454. height: math.unit(14, "feet"),
  27455. name: "Head (Side)",
  27456. image: {
  27457. source: "./media/characters/koros/head-side.svg"
  27458. }
  27459. },
  27460. leg: {
  27461. height: math.unit(17, "feet"),
  27462. name: "Leg",
  27463. image: {
  27464. source: "./media/characters/koros/leg.svg"
  27465. }
  27466. },
  27467. mawSide: {
  27468. height: math.unit(12.8, "feet"),
  27469. name: "Maw (Side)",
  27470. image: {
  27471. source: "./media/characters/koros/maw-side.svg"
  27472. }
  27473. },
  27474. mawSpitting: {
  27475. height: math.unit(17, "feet"),
  27476. name: "Maw (Spitting)",
  27477. image: {
  27478. source: "./media/characters/koros/maw-spitting.svg"
  27479. }
  27480. },
  27481. slit: {
  27482. height: math.unit(2.8, "feet"),
  27483. name: "Slit",
  27484. image: {
  27485. source: "./media/characters/koros/slit.svg"
  27486. }
  27487. },
  27488. stomach: {
  27489. height: math.unit(6.8, "feet"),
  27490. preyCapacity: math.unit(20, "people"),
  27491. name: "Stomach",
  27492. image: {
  27493. source: "./media/characters/koros/stomach.svg"
  27494. }
  27495. },
  27496. wingspanBottom: {
  27497. height: math.unit(114, "feet"),
  27498. name: "Wingspan (Bottom)",
  27499. image: {
  27500. source: "./media/characters/koros/wingspan-bottom.svg"
  27501. }
  27502. },
  27503. wingspanTop: {
  27504. height: math.unit(104, "feet"),
  27505. name: "Wingspan (Top)",
  27506. image: {
  27507. source: "./media/characters/koros/wingspan-top.svg"
  27508. }
  27509. },
  27510. },
  27511. [
  27512. {
  27513. name: "Normal",
  27514. height: math.unit(31 + 8 / 12, "feet"),
  27515. default: true
  27516. },
  27517. ]
  27518. ))
  27519. characterMakers.push(() => makeCharacter(
  27520. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  27521. {
  27522. front: {
  27523. height: math.unit(18 + 5 / 12, "feet"),
  27524. weight: math.unit(3750, "kg"),
  27525. name: "Front",
  27526. image: {
  27527. source: "./media/characters/vexx/front.svg",
  27528. extra: 426 / 396,
  27529. bottom: 31.5 / 458
  27530. }
  27531. },
  27532. maw: {
  27533. height: math.unit(6, "feet"),
  27534. name: "Maw",
  27535. image: {
  27536. source: "./media/characters/vexx/maw.svg"
  27537. }
  27538. },
  27539. },
  27540. [
  27541. {
  27542. name: "Normal",
  27543. height: math.unit(18 + 5 / 12, "feet"),
  27544. default: true
  27545. },
  27546. ]
  27547. ))
  27548. characterMakers.push(() => makeCharacter(
  27549. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  27550. {
  27551. front: {
  27552. height: math.unit(17 + 6 / 12, "feet"),
  27553. weight: math.unit(150, "lb"),
  27554. name: "Front",
  27555. image: {
  27556. source: "./media/characters/baadra/front.svg",
  27557. extra: 1694/1553,
  27558. bottom: 179/1873
  27559. }
  27560. },
  27561. frontAlt: {
  27562. height: math.unit(17 + 6 / 12, "feet"),
  27563. weight: math.unit(150, "lb"),
  27564. name: "Front (Alt)",
  27565. image: {
  27566. source: "./media/characters/baadra/front-alt.svg",
  27567. extra: 3137 / 2890,
  27568. bottom: 168.4 / 3305
  27569. }
  27570. },
  27571. back: {
  27572. height: math.unit(17 + 6 / 12, "feet"),
  27573. weight: math.unit(150, "lb"),
  27574. name: "Back",
  27575. image: {
  27576. source: "./media/characters/baadra/back.svg",
  27577. extra: 3142 / 2890,
  27578. bottom: 220 / 3371
  27579. }
  27580. },
  27581. head: {
  27582. height: math.unit(5.45, "feet"),
  27583. name: "Head",
  27584. image: {
  27585. source: "./media/characters/baadra/head.svg"
  27586. }
  27587. },
  27588. headAngry: {
  27589. height: math.unit(4.95, "feet"),
  27590. name: "Head (Angry)",
  27591. image: {
  27592. source: "./media/characters/baadra/head-angry.svg"
  27593. }
  27594. },
  27595. headOpen: {
  27596. height: math.unit(6, "feet"),
  27597. name: "Head (Open)",
  27598. image: {
  27599. source: "./media/characters/baadra/head-open.svg"
  27600. }
  27601. },
  27602. },
  27603. [
  27604. {
  27605. name: "Normal",
  27606. height: math.unit(17 + 6 / 12, "feet"),
  27607. default: true
  27608. },
  27609. ]
  27610. ))
  27611. characterMakers.push(() => makeCharacter(
  27612. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  27613. {
  27614. front: {
  27615. height: math.unit(7 + 3 / 12, "feet"),
  27616. weight: math.unit(180, "lb"),
  27617. name: "Front",
  27618. image: {
  27619. source: "./media/characters/juri/front.svg",
  27620. extra: 1401 / 1237,
  27621. bottom: 18.5 / 1418
  27622. }
  27623. },
  27624. side: {
  27625. height: math.unit(7 + 3 / 12, "feet"),
  27626. weight: math.unit(180, "lb"),
  27627. name: "Side",
  27628. image: {
  27629. source: "./media/characters/juri/side.svg",
  27630. extra: 1424 / 1242,
  27631. bottom: 18.5 / 1447
  27632. }
  27633. },
  27634. sitting: {
  27635. height: math.unit(6, "feet"),
  27636. weight: math.unit(180, "lb"),
  27637. name: "Sitting",
  27638. image: {
  27639. source: "./media/characters/juri/sitting.svg",
  27640. extra: 1270 / 1143,
  27641. bottom: 100 / 1343
  27642. }
  27643. },
  27644. back: {
  27645. height: math.unit(7 + 3 / 12, "feet"),
  27646. weight: math.unit(180, "lb"),
  27647. name: "Back",
  27648. image: {
  27649. source: "./media/characters/juri/back.svg",
  27650. extra: 1377 / 1240,
  27651. bottom: 23.7 / 1405
  27652. }
  27653. },
  27654. maw: {
  27655. height: math.unit(2.8, "feet"),
  27656. name: "Maw",
  27657. image: {
  27658. source: "./media/characters/juri/maw.svg"
  27659. }
  27660. },
  27661. stomach: {
  27662. height: math.unit(0.89, "feet"),
  27663. preyCapacity: math.unit(4, "liters"),
  27664. name: "Stomach",
  27665. image: {
  27666. source: "./media/characters/juri/stomach.svg"
  27667. }
  27668. },
  27669. },
  27670. [
  27671. {
  27672. name: "Normal",
  27673. height: math.unit(7 + 3 / 12, "feet"),
  27674. default: true
  27675. },
  27676. ]
  27677. ))
  27678. characterMakers.push(() => makeCharacter(
  27679. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  27680. {
  27681. fox: {
  27682. height: math.unit(5 + 6 / 12, "feet"),
  27683. weight: math.unit(140, "lb"),
  27684. name: "Fox",
  27685. image: {
  27686. source: "./media/characters/maxene-sita/fox.svg",
  27687. extra: 146 / 138,
  27688. bottom: 2.1 / 148.19
  27689. }
  27690. },
  27691. foxLaying: {
  27692. height: math.unit(1.70, "feet"),
  27693. weight: math.unit(140, "lb"),
  27694. name: "Fox (Laying)",
  27695. image: {
  27696. source: "./media/characters/maxene-sita/fox-laying.svg",
  27697. extra: 910 / 572,
  27698. bottom: 71 / 981
  27699. }
  27700. },
  27701. kitsune: {
  27702. height: math.unit(10, "feet"),
  27703. weight: math.unit(800, "lb"),
  27704. name: "Kitsune",
  27705. image: {
  27706. source: "./media/characters/maxene-sita/kitsune.svg",
  27707. extra: 185 / 176,
  27708. bottom: 4.7 / 189.9
  27709. }
  27710. },
  27711. hellhound: {
  27712. height: math.unit(10, "feet"),
  27713. weight: math.unit(700, "lb"),
  27714. name: "Hellhound",
  27715. image: {
  27716. source: "./media/characters/maxene-sita/hellhound.svg",
  27717. extra: 1600 / 1545,
  27718. bottom: 81 / 1681
  27719. }
  27720. },
  27721. },
  27722. [
  27723. {
  27724. name: "Normal",
  27725. height: math.unit(5 + 6 / 12, "feet"),
  27726. default: true
  27727. },
  27728. ]
  27729. ))
  27730. characterMakers.push(() => makeCharacter(
  27731. { name: "Maia", species: ["mew"], tags: ["feral"] },
  27732. {
  27733. front: {
  27734. height: math.unit(3 + 4 / 12, "feet"),
  27735. weight: math.unit(70, "lb"),
  27736. name: "Front",
  27737. image: {
  27738. source: "./media/characters/maia/front.svg",
  27739. extra: 227 / 219.5,
  27740. bottom: 40 / 267
  27741. }
  27742. },
  27743. back: {
  27744. height: math.unit(3 + 4 / 12, "feet"),
  27745. weight: math.unit(70, "lb"),
  27746. name: "Back",
  27747. image: {
  27748. source: "./media/characters/maia/back.svg",
  27749. extra: 237 / 225
  27750. }
  27751. },
  27752. },
  27753. [
  27754. {
  27755. name: "Normal",
  27756. height: math.unit(3 + 4 / 12, "feet"),
  27757. default: true
  27758. },
  27759. ]
  27760. ))
  27761. characterMakers.push(() => makeCharacter(
  27762. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  27763. {
  27764. front: {
  27765. height: math.unit(5 + 10 / 12, "feet"),
  27766. weight: math.unit(197, "lb"),
  27767. name: "Front",
  27768. image: {
  27769. source: "./media/characters/jabaro/front.svg",
  27770. extra: 225 / 216,
  27771. bottom: 5.06 / 230
  27772. }
  27773. },
  27774. back: {
  27775. height: math.unit(5 + 10 / 12, "feet"),
  27776. weight: math.unit(197, "lb"),
  27777. name: "Back",
  27778. image: {
  27779. source: "./media/characters/jabaro/back.svg",
  27780. extra: 225 / 219,
  27781. bottom: 1.9 / 227
  27782. }
  27783. },
  27784. },
  27785. [
  27786. {
  27787. name: "Normal",
  27788. height: math.unit(5 + 10 / 12, "feet"),
  27789. default: true
  27790. },
  27791. ]
  27792. ))
  27793. characterMakers.push(() => makeCharacter(
  27794. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  27795. {
  27796. front: {
  27797. height: math.unit(5 + 8 / 12, "feet"),
  27798. weight: math.unit(139, "lb"),
  27799. name: "Front",
  27800. image: {
  27801. source: "./media/characters/risa/front.svg",
  27802. extra: 270 / 260,
  27803. bottom: 11.2 / 282
  27804. }
  27805. },
  27806. back: {
  27807. height: math.unit(5 + 8 / 12, "feet"),
  27808. weight: math.unit(139, "lb"),
  27809. name: "Back",
  27810. image: {
  27811. source: "./media/characters/risa/back.svg",
  27812. extra: 264 / 255,
  27813. bottom: 4 / 268
  27814. }
  27815. },
  27816. },
  27817. [
  27818. {
  27819. name: "Normal",
  27820. height: math.unit(5 + 8 / 12, "feet"),
  27821. default: true
  27822. },
  27823. ]
  27824. ))
  27825. characterMakers.push(() => makeCharacter(
  27826. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  27827. {
  27828. front: {
  27829. height: math.unit(2 + 11 / 12, "feet"),
  27830. weight: math.unit(30, "lb"),
  27831. name: "Front",
  27832. image: {
  27833. source: "./media/characters/weatley/front.svg",
  27834. bottom: 10.7 / 414,
  27835. extra: 403.5 / 362
  27836. }
  27837. },
  27838. back: {
  27839. height: math.unit(2 + 11 / 12, "feet"),
  27840. weight: math.unit(30, "lb"),
  27841. name: "Back",
  27842. image: {
  27843. source: "./media/characters/weatley/back.svg",
  27844. bottom: 10.7 / 414,
  27845. extra: 403.5 / 362
  27846. }
  27847. },
  27848. },
  27849. [
  27850. {
  27851. name: "Normal",
  27852. height: math.unit(2 + 11 / 12, "feet"),
  27853. default: true
  27854. },
  27855. ]
  27856. ))
  27857. characterMakers.push(() => makeCharacter(
  27858. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  27859. {
  27860. front: {
  27861. height: math.unit(5 + 2 / 12, "feet"),
  27862. weight: math.unit(50, "kg"),
  27863. name: "Front",
  27864. image: {
  27865. source: "./media/characters/mercury-crescent/front.svg",
  27866. extra: 1088 / 1033,
  27867. bottom: 18.9 / 1109
  27868. }
  27869. },
  27870. },
  27871. [
  27872. {
  27873. name: "Normal",
  27874. height: math.unit(5 + 2 / 12, "feet"),
  27875. default: true
  27876. },
  27877. ]
  27878. ))
  27879. characterMakers.push(() => makeCharacter(
  27880. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  27881. {
  27882. front: {
  27883. height: math.unit(2, "feet"),
  27884. weight: math.unit(15, "kg"),
  27885. name: "Front",
  27886. image: {
  27887. source: "./media/characters/diamond-jones/front.svg",
  27888. extra: 727/723,
  27889. bottom: 46/773
  27890. }
  27891. },
  27892. },
  27893. [
  27894. {
  27895. name: "Normal",
  27896. height: math.unit(2, "feet"),
  27897. default: true
  27898. },
  27899. ]
  27900. ))
  27901. characterMakers.push(() => makeCharacter(
  27902. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  27903. {
  27904. front: {
  27905. height: math.unit(3, "feet"),
  27906. weight: math.unit(30, "kg"),
  27907. name: "Front",
  27908. image: {
  27909. source: "./media/characters/sweet-bit/front.svg",
  27910. extra: 675 / 567,
  27911. bottom: 27.7 / 703
  27912. }
  27913. },
  27914. },
  27915. [
  27916. {
  27917. name: "Normal",
  27918. height: math.unit(3, "feet"),
  27919. default: true
  27920. },
  27921. ]
  27922. ))
  27923. characterMakers.push(() => makeCharacter(
  27924. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  27925. {
  27926. side: {
  27927. height: math.unit(9.178, "feet"),
  27928. weight: math.unit(500, "lb"),
  27929. name: "Side",
  27930. image: {
  27931. source: "./media/characters/umbrazen/side.svg",
  27932. extra: 1730 / 1473,
  27933. bottom: 34.6 / 1765
  27934. }
  27935. },
  27936. },
  27937. [
  27938. {
  27939. name: "Normal",
  27940. height: math.unit(9.178, "feet"),
  27941. default: true
  27942. },
  27943. ]
  27944. ))
  27945. characterMakers.push(() => makeCharacter(
  27946. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  27947. {
  27948. front: {
  27949. height: math.unit(10, "feet"),
  27950. weight: math.unit(750, "lb"),
  27951. name: "Front",
  27952. image: {
  27953. source: "./media/characters/arlist/front.svg",
  27954. extra: 961 / 778,
  27955. bottom: 6.2 / 986
  27956. }
  27957. },
  27958. },
  27959. [
  27960. {
  27961. name: "Normal",
  27962. height: math.unit(10, "feet"),
  27963. default: true
  27964. },
  27965. ]
  27966. ))
  27967. characterMakers.push(() => makeCharacter(
  27968. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  27969. {
  27970. front: {
  27971. height: math.unit(5 + 1 / 12, "feet"),
  27972. weight: math.unit(110, "lb"),
  27973. name: "Front",
  27974. image: {
  27975. source: "./media/characters/aradel/front.svg",
  27976. extra: 324 / 303,
  27977. bottom: 3.6 / 329.4
  27978. }
  27979. },
  27980. },
  27981. [
  27982. {
  27983. name: "Normal",
  27984. height: math.unit(5 + 1 / 12, "feet"),
  27985. default: true
  27986. },
  27987. ]
  27988. ))
  27989. characterMakers.push(() => makeCharacter(
  27990. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  27991. {
  27992. dressed: {
  27993. height: math.unit(3 + 8 / 12, "feet"),
  27994. weight: math.unit(50, "lb"),
  27995. name: "Dressed",
  27996. image: {
  27997. source: "./media/characters/serryn/dressed.svg",
  27998. extra: 1792 / 1656,
  27999. bottom: 43.5 / 1840
  28000. }
  28001. },
  28002. nude: {
  28003. height: math.unit(3 + 8 / 12, "feet"),
  28004. weight: math.unit(50, "lb"),
  28005. name: "Nude",
  28006. image: {
  28007. source: "./media/characters/serryn/nude.svg",
  28008. extra: 1792 / 1656,
  28009. bottom: 43.5 / 1840
  28010. }
  28011. },
  28012. },
  28013. [
  28014. {
  28015. name: "Normal",
  28016. height: math.unit(3 + 8 / 12, "feet"),
  28017. default: true
  28018. },
  28019. ]
  28020. ))
  28021. characterMakers.push(() => makeCharacter(
  28022. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  28023. {
  28024. front: {
  28025. height: math.unit(7 + 10 / 12, "feet"),
  28026. weight: math.unit(255, "lb"),
  28027. name: "Front",
  28028. image: {
  28029. source: "./media/characters/xavier-thyme/front.svg",
  28030. extra: 3733 / 3642,
  28031. bottom: 131 / 3869
  28032. }
  28033. },
  28034. frontRaven: {
  28035. height: math.unit(7 + 10 / 12, "feet"),
  28036. weight: math.unit(255, "lb"),
  28037. name: "Front (Raven)",
  28038. image: {
  28039. source: "./media/characters/xavier-thyme/front-raven.svg",
  28040. extra: 4385 / 3642,
  28041. bottom: 131 / 4517
  28042. }
  28043. },
  28044. },
  28045. [
  28046. {
  28047. name: "Normal",
  28048. height: math.unit(7 + 10 / 12, "feet"),
  28049. default: true
  28050. },
  28051. ]
  28052. ))
  28053. characterMakers.push(() => makeCharacter(
  28054. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  28055. {
  28056. front: {
  28057. height: math.unit(1.6, "m"),
  28058. weight: math.unit(50, "kg"),
  28059. name: "Front",
  28060. image: {
  28061. source: "./media/characters/kiki/front.svg",
  28062. extra: 4682 / 3610,
  28063. bottom: 115 / 4777
  28064. }
  28065. },
  28066. },
  28067. [
  28068. {
  28069. name: "Normal",
  28070. height: math.unit(1.6, "meters"),
  28071. default: true
  28072. },
  28073. ]
  28074. ))
  28075. characterMakers.push(() => makeCharacter(
  28076. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  28077. {
  28078. front: {
  28079. height: math.unit(50, "m"),
  28080. weight: math.unit(500, "tonnes"),
  28081. name: "Front",
  28082. image: {
  28083. source: "./media/characters/ryoko/front.svg",
  28084. extra: 4632 / 3926,
  28085. bottom: 193 / 4823
  28086. }
  28087. },
  28088. },
  28089. [
  28090. {
  28091. name: "Normal",
  28092. height: math.unit(50, "meters"),
  28093. default: true
  28094. },
  28095. ]
  28096. ))
  28097. characterMakers.push(() => makeCharacter(
  28098. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  28099. {
  28100. front: {
  28101. height: math.unit(30, "m"),
  28102. weight: math.unit(22, "tonnes"),
  28103. name: "Front",
  28104. image: {
  28105. source: "./media/characters/elio/front.svg",
  28106. extra: 4582 / 3720,
  28107. bottom: 236 / 4828
  28108. }
  28109. },
  28110. },
  28111. [
  28112. {
  28113. name: "Normal",
  28114. height: math.unit(30, "meters"),
  28115. default: true
  28116. },
  28117. ]
  28118. ))
  28119. characterMakers.push(() => makeCharacter(
  28120. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  28121. {
  28122. front: {
  28123. height: math.unit(6 + 3 / 12, "feet"),
  28124. weight: math.unit(120, "lb"),
  28125. name: "Front",
  28126. image: {
  28127. source: "./media/characters/azura/front.svg",
  28128. extra: 1149 / 1135,
  28129. bottom: 45 / 1194
  28130. }
  28131. },
  28132. frontClothed: {
  28133. height: math.unit(6 + 3 / 12, "feet"),
  28134. weight: math.unit(120, "lb"),
  28135. name: "Front (Clothed)",
  28136. image: {
  28137. source: "./media/characters/azura/front-clothed.svg",
  28138. extra: 1149 / 1135,
  28139. bottom: 45 / 1194
  28140. }
  28141. },
  28142. },
  28143. [
  28144. {
  28145. name: "Normal",
  28146. height: math.unit(6 + 3 / 12, "feet"),
  28147. default: true
  28148. },
  28149. {
  28150. name: "Macro",
  28151. height: math.unit(20 + 6 / 12, "feet")
  28152. },
  28153. {
  28154. name: "Megamacro",
  28155. height: math.unit(12, "miles")
  28156. },
  28157. {
  28158. name: "Gigamacro",
  28159. height: math.unit(10000, "miles")
  28160. },
  28161. {
  28162. name: "Teramacro",
  28163. height: math.unit(900000, "miles")
  28164. },
  28165. ]
  28166. ))
  28167. characterMakers.push(() => makeCharacter(
  28168. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  28169. {
  28170. front: {
  28171. height: math.unit(12, "feet"),
  28172. weight: math.unit(1, "ton"),
  28173. capacity: math.unit(660000, "gallons"),
  28174. name: "Front",
  28175. image: {
  28176. source: "./media/characters/zeus/front.svg",
  28177. extra: 5005 / 4717,
  28178. bottom: 363 / 5388
  28179. }
  28180. },
  28181. },
  28182. [
  28183. {
  28184. name: "Normal",
  28185. height: math.unit(12, "feet")
  28186. },
  28187. {
  28188. name: "Preferred Size",
  28189. height: math.unit(0.5, "miles"),
  28190. default: true
  28191. },
  28192. {
  28193. name: "Giga Horse",
  28194. height: math.unit(300, "miles")
  28195. },
  28196. {
  28197. name: "Riding Planets",
  28198. height: math.unit(30, "megameters")
  28199. },
  28200. {
  28201. name: "Cosmic Giant",
  28202. height: math.unit(3, "zettameters")
  28203. },
  28204. {
  28205. name: "Breeding God",
  28206. height: math.unit(9.92e22, "yottameters")
  28207. },
  28208. ]
  28209. ))
  28210. characterMakers.push(() => makeCharacter(
  28211. { name: "Fang", species: ["monster"], tags: ["feral"] },
  28212. {
  28213. side: {
  28214. height: math.unit(9, "feet"),
  28215. weight: math.unit(1500, "kg"),
  28216. name: "Side",
  28217. image: {
  28218. source: "./media/characters/fang/side.svg",
  28219. extra: 924 / 866,
  28220. bottom: 47.5 / 972.3
  28221. }
  28222. },
  28223. },
  28224. [
  28225. {
  28226. name: "Normal",
  28227. height: math.unit(9, "feet"),
  28228. default: true
  28229. },
  28230. {
  28231. name: "Macro",
  28232. height: math.unit(75 + 6 / 12, "feet")
  28233. },
  28234. {
  28235. name: "Teramacro",
  28236. height: math.unit(50000, "miles")
  28237. },
  28238. ]
  28239. ))
  28240. characterMakers.push(() => makeCharacter(
  28241. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  28242. {
  28243. front: {
  28244. height: math.unit(10, "feet"),
  28245. weight: math.unit(2, "tons"),
  28246. name: "Front",
  28247. image: {
  28248. source: "./media/characters/rekhit/front.svg",
  28249. extra: 2796 / 2590,
  28250. bottom: 225 / 3022
  28251. }
  28252. },
  28253. },
  28254. [
  28255. {
  28256. name: "Normal",
  28257. height: math.unit(10, "feet"),
  28258. default: true
  28259. },
  28260. {
  28261. name: "Macro",
  28262. height: math.unit(500, "feet")
  28263. },
  28264. ]
  28265. ))
  28266. characterMakers.push(() => makeCharacter(
  28267. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  28268. {
  28269. front: {
  28270. height: math.unit(7 + 6.451 / 12, "feet"),
  28271. weight: math.unit(310, "lb"),
  28272. name: "Front",
  28273. image: {
  28274. source: "./media/characters/dahlia-verrick/front.svg",
  28275. extra: 1488 / 1365,
  28276. bottom: 6.2 / 1495
  28277. }
  28278. },
  28279. back: {
  28280. height: math.unit(7 + 6.451 / 12, "feet"),
  28281. weight: math.unit(310, "lb"),
  28282. name: "Back",
  28283. image: {
  28284. source: "./media/characters/dahlia-verrick/back.svg",
  28285. extra: 1472 / 1351,
  28286. bottom: 5.28 / 1477
  28287. }
  28288. },
  28289. frontBusiness: {
  28290. height: math.unit(7 + 6.451 / 12, "feet"),
  28291. weight: math.unit(200, "lb"),
  28292. name: "Front (Business)",
  28293. image: {
  28294. source: "./media/characters/dahlia-verrick/front-business.svg",
  28295. extra: 1478 / 1381,
  28296. bottom: 5.5 / 1484
  28297. }
  28298. },
  28299. frontCasual: {
  28300. height: math.unit(7 + 6.451 / 12, "feet"),
  28301. weight: math.unit(200, "lb"),
  28302. name: "Front (Casual)",
  28303. image: {
  28304. source: "./media/characters/dahlia-verrick/front-casual.svg",
  28305. extra: 1478 / 1381,
  28306. bottom: 5.5 / 1484
  28307. }
  28308. },
  28309. },
  28310. [
  28311. {
  28312. name: "Travel-Sized",
  28313. height: math.unit(7.45, "inches")
  28314. },
  28315. {
  28316. name: "Normal",
  28317. height: math.unit(7 + 6.451 / 12, "feet"),
  28318. default: true
  28319. },
  28320. {
  28321. name: "Hitting the Town",
  28322. height: math.unit(37 + 8 / 12, "feet")
  28323. },
  28324. {
  28325. name: "Stomp in the Suburbs",
  28326. height: math.unit(964 + 9.728 / 12, "feet")
  28327. },
  28328. {
  28329. name: "Sit on the City",
  28330. height: math.unit(61747 + 10.592 / 12, "feet")
  28331. },
  28332. {
  28333. name: "Glomp the Globe",
  28334. height: math.unit(252919327 + 4.832 / 12, "feet")
  28335. },
  28336. ]
  28337. ))
  28338. characterMakers.push(() => makeCharacter(
  28339. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  28340. {
  28341. front: {
  28342. height: math.unit(6 + 4 / 12, "feet"),
  28343. weight: math.unit(320, "lb"),
  28344. name: "Front",
  28345. image: {
  28346. source: "./media/characters/balina-mahigan/front.svg",
  28347. extra: 447 / 428,
  28348. bottom: 18 / 466
  28349. }
  28350. },
  28351. back: {
  28352. height: math.unit(6 + 4 / 12, "feet"),
  28353. weight: math.unit(320, "lb"),
  28354. name: "Back",
  28355. image: {
  28356. source: "./media/characters/balina-mahigan/back.svg",
  28357. extra: 445 / 428,
  28358. bottom: 4.07 / 448
  28359. }
  28360. },
  28361. arm: {
  28362. height: math.unit(1.88, "feet"),
  28363. name: "Arm",
  28364. image: {
  28365. source: "./media/characters/balina-mahigan/arm.svg"
  28366. }
  28367. },
  28368. backPort: {
  28369. height: math.unit(0.685, "feet"),
  28370. name: "Back Port",
  28371. image: {
  28372. source: "./media/characters/balina-mahigan/back-port.svg"
  28373. }
  28374. },
  28375. hoofpaw: {
  28376. height: math.unit(1.41, "feet"),
  28377. name: "Hoofpaw",
  28378. image: {
  28379. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  28380. }
  28381. },
  28382. leftHandBack: {
  28383. height: math.unit(0.938, "feet"),
  28384. name: "Left Hand (Back)",
  28385. image: {
  28386. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  28387. }
  28388. },
  28389. leftHandFront: {
  28390. height: math.unit(0.938, "feet"),
  28391. name: "Left Hand (Front)",
  28392. image: {
  28393. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  28394. }
  28395. },
  28396. rightHandBack: {
  28397. height: math.unit(0.95, "feet"),
  28398. name: "Right Hand (Back)",
  28399. image: {
  28400. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  28401. }
  28402. },
  28403. rightHandFront: {
  28404. height: math.unit(0.95, "feet"),
  28405. name: "Right Hand (Front)",
  28406. image: {
  28407. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  28408. }
  28409. },
  28410. },
  28411. [
  28412. {
  28413. name: "Normal",
  28414. height: math.unit(6 + 4 / 12, "feet"),
  28415. default: true
  28416. },
  28417. ]
  28418. ))
  28419. characterMakers.push(() => makeCharacter(
  28420. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  28421. {
  28422. front: {
  28423. height: math.unit(6, "feet"),
  28424. weight: math.unit(320, "lb"),
  28425. name: "Front",
  28426. image: {
  28427. source: "./media/characters/balina-mejeri/front.svg",
  28428. extra: 517 / 488,
  28429. bottom: 44.2 / 561
  28430. }
  28431. },
  28432. },
  28433. [
  28434. {
  28435. name: "Normal",
  28436. height: math.unit(6 + 4 / 12, "feet")
  28437. },
  28438. {
  28439. name: "Business",
  28440. height: math.unit(155, "feet"),
  28441. default: true
  28442. },
  28443. ]
  28444. ))
  28445. characterMakers.push(() => makeCharacter(
  28446. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  28447. {
  28448. kneeling: {
  28449. height: math.unit(6 + 4 / 12, "feet"),
  28450. weight: math.unit(300 * 20, "lb"),
  28451. name: "Kneeling",
  28452. image: {
  28453. source: "./media/characters/balbarian/kneeling.svg",
  28454. extra: 922 / 862,
  28455. bottom: 42.4 / 965
  28456. }
  28457. },
  28458. },
  28459. [
  28460. {
  28461. name: "Normal",
  28462. height: math.unit(6 + 4 / 12, "feet")
  28463. },
  28464. {
  28465. name: "Treasured",
  28466. height: math.unit(18 + 9 / 12, "feet"),
  28467. default: true
  28468. },
  28469. {
  28470. name: "Macro",
  28471. height: math.unit(900, "feet")
  28472. },
  28473. ]
  28474. ))
  28475. characterMakers.push(() => makeCharacter(
  28476. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  28477. {
  28478. front: {
  28479. height: math.unit(6 + 4 / 12, "feet"),
  28480. weight: math.unit(325, "lb"),
  28481. name: "Front",
  28482. image: {
  28483. source: "./media/characters/balina-amarini/front.svg",
  28484. extra: 415 / 403,
  28485. bottom: 19 / 433.4
  28486. }
  28487. },
  28488. back: {
  28489. height: math.unit(6 + 4 / 12, "feet"),
  28490. weight: math.unit(325, "lb"),
  28491. name: "Back",
  28492. image: {
  28493. source: "./media/characters/balina-amarini/back.svg",
  28494. extra: 415 / 403,
  28495. bottom: 13.5 / 432
  28496. }
  28497. },
  28498. overdrive: {
  28499. height: math.unit(6 + 4 / 12, "feet"),
  28500. weight: math.unit(400, "lb"),
  28501. name: "Overdrive",
  28502. image: {
  28503. source: "./media/characters/balina-amarini/overdrive.svg",
  28504. extra: 269 / 259,
  28505. bottom: 12 / 282
  28506. }
  28507. },
  28508. },
  28509. [
  28510. {
  28511. name: "Boom",
  28512. height: math.unit(9 + 10 / 12, "feet"),
  28513. default: true
  28514. },
  28515. {
  28516. name: "Macro",
  28517. height: math.unit(280, "feet")
  28518. },
  28519. ]
  28520. ))
  28521. characterMakers.push(() => makeCharacter(
  28522. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  28523. {
  28524. goddess: {
  28525. height: math.unit(600, "feet"),
  28526. weight: math.unit(2000000, "tons"),
  28527. name: "Goddess",
  28528. image: {
  28529. source: "./media/characters/lady-kubwa/goddess.svg",
  28530. extra: 1240.5 / 1223,
  28531. bottom: 22 / 1263
  28532. }
  28533. },
  28534. goddesser: {
  28535. height: math.unit(900, "feet"),
  28536. weight: math.unit(20000000, "lb"),
  28537. name: "Goddess-er",
  28538. image: {
  28539. source: "./media/characters/lady-kubwa/goddess-er.svg",
  28540. extra: 899 / 888,
  28541. bottom: 12.6 / 912
  28542. }
  28543. },
  28544. },
  28545. [
  28546. {
  28547. name: "Macro",
  28548. height: math.unit(600, "feet"),
  28549. default: true
  28550. },
  28551. {
  28552. name: "Megamacro",
  28553. height: math.unit(250, "miles")
  28554. },
  28555. ]
  28556. ))
  28557. characterMakers.push(() => makeCharacter(
  28558. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  28559. {
  28560. front: {
  28561. height: math.unit(7 + 7 / 12, "feet"),
  28562. weight: math.unit(250, "lb"),
  28563. name: "Front",
  28564. image: {
  28565. source: "./media/characters/tala-grovehorn/front.svg",
  28566. extra: 2636 / 2525,
  28567. bottom: 147 / 2781
  28568. }
  28569. },
  28570. back: {
  28571. height: math.unit(7 + 7 / 12, "feet"),
  28572. weight: math.unit(250, "lb"),
  28573. name: "Back",
  28574. image: {
  28575. source: "./media/characters/tala-grovehorn/back.svg",
  28576. extra: 2635 / 2539,
  28577. bottom: 100 / 2732.8
  28578. }
  28579. },
  28580. mouth: {
  28581. height: math.unit(1.15, "feet"),
  28582. name: "Mouth",
  28583. image: {
  28584. source: "./media/characters/tala-grovehorn/mouth.svg"
  28585. }
  28586. },
  28587. dick: {
  28588. height: math.unit(2.36, "feet"),
  28589. name: "Dick",
  28590. image: {
  28591. source: "./media/characters/tala-grovehorn/dick.svg"
  28592. }
  28593. },
  28594. slit: {
  28595. height: math.unit(0.61, "feet"),
  28596. name: "Slit",
  28597. image: {
  28598. source: "./media/characters/tala-grovehorn/slit.svg"
  28599. }
  28600. },
  28601. },
  28602. [
  28603. ]
  28604. ))
  28605. characterMakers.push(() => makeCharacter(
  28606. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  28607. {
  28608. front: {
  28609. height: math.unit(7 + 7 / 12, "feet"),
  28610. weight: math.unit(225, "lb"),
  28611. name: "Front",
  28612. image: {
  28613. source: "./media/characters/epona/front.svg",
  28614. extra: 2445 / 2290,
  28615. bottom: 251 / 2696
  28616. }
  28617. },
  28618. back: {
  28619. height: math.unit(7 + 7 / 12, "feet"),
  28620. weight: math.unit(225, "lb"),
  28621. name: "Back",
  28622. image: {
  28623. source: "./media/characters/epona/back.svg",
  28624. extra: 2546 / 2408,
  28625. bottom: 44 / 2589
  28626. }
  28627. },
  28628. genitals: {
  28629. height: math.unit(1.5, "feet"),
  28630. name: "Genitals",
  28631. image: {
  28632. source: "./media/characters/epona/genitals.svg"
  28633. }
  28634. },
  28635. },
  28636. [
  28637. {
  28638. name: "Normal",
  28639. height: math.unit(7 + 7 / 12, "feet"),
  28640. default: true
  28641. },
  28642. ]
  28643. ))
  28644. characterMakers.push(() => makeCharacter(
  28645. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  28646. {
  28647. front: {
  28648. height: math.unit(7, "feet"),
  28649. weight: math.unit(518, "lb"),
  28650. name: "Front",
  28651. image: {
  28652. source: "./media/characters/avia-bloodbourn/front.svg",
  28653. extra: 1466 / 1350,
  28654. bottom: 65 / 1527
  28655. }
  28656. },
  28657. },
  28658. [
  28659. ]
  28660. ))
  28661. characterMakers.push(() => makeCharacter(
  28662. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  28663. {
  28664. front: {
  28665. height: math.unit(9.35, "feet"),
  28666. weight: math.unit(600, "lb"),
  28667. name: "Front",
  28668. image: {
  28669. source: "./media/characters/amera/front.svg",
  28670. extra: 891 / 818,
  28671. bottom: 30 / 922.7
  28672. }
  28673. },
  28674. back: {
  28675. height: math.unit(9.35, "feet"),
  28676. weight: math.unit(600, "lb"),
  28677. name: "Back",
  28678. image: {
  28679. source: "./media/characters/amera/back.svg",
  28680. extra: 876 / 824,
  28681. bottom: 6.8 / 884
  28682. }
  28683. },
  28684. dick: {
  28685. height: math.unit(2.14, "feet"),
  28686. name: "Dick",
  28687. image: {
  28688. source: "./media/characters/amera/dick.svg"
  28689. }
  28690. },
  28691. },
  28692. [
  28693. {
  28694. name: "Normal",
  28695. height: math.unit(9.35, "feet"),
  28696. default: true
  28697. },
  28698. ]
  28699. ))
  28700. characterMakers.push(() => makeCharacter(
  28701. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  28702. {
  28703. kneeling: {
  28704. height: math.unit(3 + 4 / 12, "feet"),
  28705. weight: math.unit(90, "lb"),
  28706. name: "Kneeling",
  28707. image: {
  28708. source: "./media/characters/rosewen/kneeling.svg",
  28709. extra: 1835 / 1571,
  28710. bottom: 27.7 / 1862
  28711. }
  28712. },
  28713. },
  28714. [
  28715. {
  28716. name: "Normal",
  28717. height: math.unit(3 + 4 / 12, "feet"),
  28718. default: true
  28719. },
  28720. ]
  28721. ))
  28722. characterMakers.push(() => makeCharacter(
  28723. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  28724. {
  28725. front: {
  28726. height: math.unit(5 + 10 / 12, "feet"),
  28727. weight: math.unit(200, "lb"),
  28728. name: "Front",
  28729. image: {
  28730. source: "./media/characters/sabah/front.svg",
  28731. extra: 849 / 763,
  28732. bottom: 33.9 / 881
  28733. }
  28734. },
  28735. },
  28736. [
  28737. {
  28738. name: "Normal",
  28739. height: math.unit(5 + 10 / 12, "feet"),
  28740. default: true
  28741. },
  28742. ]
  28743. ))
  28744. characterMakers.push(() => makeCharacter(
  28745. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  28746. {
  28747. front: {
  28748. height: math.unit(3 + 5 / 12, "feet"),
  28749. weight: math.unit(40, "kg"),
  28750. name: "Front",
  28751. image: {
  28752. source: "./media/characters/purple-flame/front.svg",
  28753. extra: 1577 / 1412,
  28754. bottom: 97 / 1694
  28755. }
  28756. },
  28757. frontDressed: {
  28758. height: math.unit(3 + 5 / 12, "feet"),
  28759. weight: math.unit(40, "kg"),
  28760. name: "Front (Dressed)",
  28761. image: {
  28762. source: "./media/characters/purple-flame/front-dressed.svg",
  28763. extra: 1577 / 1412,
  28764. bottom: 97 / 1694
  28765. }
  28766. },
  28767. headphones: {
  28768. height: math.unit(0.85, "feet"),
  28769. name: "Headphones",
  28770. image: {
  28771. source: "./media/characters/purple-flame/headphones.svg"
  28772. }
  28773. },
  28774. },
  28775. [
  28776. {
  28777. name: "Really Small",
  28778. height: math.unit(5, "cm")
  28779. },
  28780. {
  28781. name: "Micro",
  28782. height: math.unit(1 + 5 / 12, "feet")
  28783. },
  28784. {
  28785. name: "Normal",
  28786. height: math.unit(3 + 5 / 12, "feet"),
  28787. default: true
  28788. },
  28789. {
  28790. name: "Minimacro",
  28791. height: math.unit(125, "feet")
  28792. },
  28793. {
  28794. name: "Macro",
  28795. height: math.unit(0.5, "miles")
  28796. },
  28797. {
  28798. name: "Megamacro",
  28799. height: math.unit(50, "miles")
  28800. },
  28801. {
  28802. name: "Gigantic",
  28803. height: math.unit(750, "miles")
  28804. },
  28805. {
  28806. name: "Planetary",
  28807. height: math.unit(15000, "miles")
  28808. },
  28809. ]
  28810. ))
  28811. characterMakers.push(() => makeCharacter(
  28812. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  28813. {
  28814. front: {
  28815. height: math.unit(14, "feet"),
  28816. weight: math.unit(959, "lb"),
  28817. name: "Front",
  28818. image: {
  28819. source: "./media/characters/arsenal/front.svg",
  28820. extra: 2357 / 2157,
  28821. bottom: 93 / 2458
  28822. }
  28823. },
  28824. },
  28825. [
  28826. {
  28827. name: "Normal",
  28828. height: math.unit(14, "feet"),
  28829. default: true
  28830. },
  28831. ]
  28832. ))
  28833. characterMakers.push(() => makeCharacter(
  28834. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  28835. {
  28836. front: {
  28837. height: math.unit(6, "feet"),
  28838. weight: math.unit(150, "lb"),
  28839. name: "Front",
  28840. image: {
  28841. source: "./media/characters/adira/front.svg",
  28842. extra: 1078 / 1029,
  28843. bottom: 87 / 1166
  28844. }
  28845. },
  28846. },
  28847. [
  28848. {
  28849. name: "Micro",
  28850. height: math.unit(4, "inches"),
  28851. default: true
  28852. },
  28853. {
  28854. name: "Macro",
  28855. height: math.unit(50, "feet")
  28856. },
  28857. ]
  28858. ))
  28859. characterMakers.push(() => makeCharacter(
  28860. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  28861. {
  28862. front: {
  28863. height: math.unit(16, "feet"),
  28864. weight: math.unit(1000, "lb"),
  28865. name: "Front",
  28866. image: {
  28867. source: "./media/characters/grim/front.svg",
  28868. extra: 622 / 614,
  28869. bottom: 18.1 / 642
  28870. }
  28871. },
  28872. back: {
  28873. height: math.unit(16, "feet"),
  28874. weight: math.unit(1000, "lb"),
  28875. name: "Back",
  28876. image: {
  28877. source: "./media/characters/grim/back.svg",
  28878. extra: 610.6 / 602,
  28879. bottom: 40.8 / 652
  28880. }
  28881. },
  28882. hunched: {
  28883. height: math.unit(9.75, "feet"),
  28884. weight: math.unit(1000, "lb"),
  28885. name: "Hunched",
  28886. image: {
  28887. source: "./media/characters/grim/hunched.svg",
  28888. extra: 304 / 297,
  28889. bottom: 35.4 / 394
  28890. }
  28891. },
  28892. },
  28893. [
  28894. {
  28895. name: "Normal",
  28896. height: math.unit(16, "feet"),
  28897. default: true
  28898. },
  28899. ]
  28900. ))
  28901. characterMakers.push(() => makeCharacter(
  28902. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  28903. {
  28904. front: {
  28905. height: math.unit(2.3, "meters"),
  28906. weight: math.unit(300, "lb"),
  28907. name: "Front",
  28908. image: {
  28909. source: "./media/characters/sinja/front-sfw.svg",
  28910. extra: 1393 / 1294,
  28911. bottom: 70 / 1463
  28912. }
  28913. },
  28914. frontNsfw: {
  28915. height: math.unit(2.3, "meters"),
  28916. weight: math.unit(300, "lb"),
  28917. name: "Front (NSFW)",
  28918. image: {
  28919. source: "./media/characters/sinja/front-nsfw.svg",
  28920. extra: 1393 / 1294,
  28921. bottom: 70 / 1463
  28922. }
  28923. },
  28924. back: {
  28925. height: math.unit(2.3, "meters"),
  28926. weight: math.unit(300, "lb"),
  28927. name: "Back",
  28928. image: {
  28929. source: "./media/characters/sinja/back.svg",
  28930. extra: 1393 / 1294,
  28931. bottom: 70 / 1463
  28932. }
  28933. },
  28934. head: {
  28935. height: math.unit(1.771, "feet"),
  28936. name: "Head",
  28937. image: {
  28938. source: "./media/characters/sinja/head.svg"
  28939. }
  28940. },
  28941. slit: {
  28942. height: math.unit(0.8, "feet"),
  28943. name: "Slit",
  28944. image: {
  28945. source: "./media/characters/sinja/slit.svg"
  28946. }
  28947. },
  28948. },
  28949. [
  28950. {
  28951. name: "Normal",
  28952. height: math.unit(2.3, "meters")
  28953. },
  28954. {
  28955. name: "Macro",
  28956. height: math.unit(91, "meters"),
  28957. default: true
  28958. },
  28959. {
  28960. name: "Megamacro",
  28961. height: math.unit(91440, "meters")
  28962. },
  28963. {
  28964. name: "Gigamacro",
  28965. height: math.unit(60960000, "meters")
  28966. },
  28967. {
  28968. name: "Teramacro",
  28969. height: math.unit(9144000000, "meters")
  28970. },
  28971. ]
  28972. ))
  28973. characterMakers.push(() => makeCharacter(
  28974. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  28975. {
  28976. front: {
  28977. height: math.unit(1.7, "meters"),
  28978. weight: math.unit(130, "lb"),
  28979. name: "Front",
  28980. image: {
  28981. source: "./media/characters/kyu/front.svg",
  28982. extra: 415 / 395,
  28983. bottom: 5 / 420
  28984. }
  28985. },
  28986. head: {
  28987. height: math.unit(1.75, "feet"),
  28988. name: "Head",
  28989. image: {
  28990. source: "./media/characters/kyu/head.svg"
  28991. }
  28992. },
  28993. foot: {
  28994. height: math.unit(0.81, "feet"),
  28995. name: "Foot",
  28996. image: {
  28997. source: "./media/characters/kyu/foot.svg"
  28998. }
  28999. },
  29000. },
  29001. [
  29002. {
  29003. name: "Normal",
  29004. height: math.unit(1.7, "meters")
  29005. },
  29006. {
  29007. name: "Macro",
  29008. height: math.unit(131, "feet"),
  29009. default: true
  29010. },
  29011. {
  29012. name: "Megamacro",
  29013. height: math.unit(91440, "meters")
  29014. },
  29015. {
  29016. name: "Gigamacro",
  29017. height: math.unit(60960000, "meters")
  29018. },
  29019. {
  29020. name: "Teramacro",
  29021. height: math.unit(9144000000, "meters")
  29022. },
  29023. ]
  29024. ))
  29025. characterMakers.push(() => makeCharacter(
  29026. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  29027. {
  29028. front: {
  29029. height: math.unit(7 + 1 / 12, "feet"),
  29030. weight: math.unit(250, "lb"),
  29031. name: "Front",
  29032. image: {
  29033. source: "./media/characters/joey/front.svg",
  29034. extra: 1791 / 1537,
  29035. bottom: 28 / 1816
  29036. }
  29037. },
  29038. },
  29039. [
  29040. {
  29041. name: "Micro",
  29042. height: math.unit(3, "inches")
  29043. },
  29044. {
  29045. name: "Normal",
  29046. height: math.unit(7 + 1 / 12, "feet"),
  29047. default: true
  29048. },
  29049. ]
  29050. ))
  29051. characterMakers.push(() => makeCharacter(
  29052. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  29053. {
  29054. front: {
  29055. height: math.unit(165, "cm"),
  29056. weight: math.unit(140, "lb"),
  29057. name: "Front",
  29058. image: {
  29059. source: "./media/characters/sam-evans/front.svg",
  29060. extra: 3417 / 3230,
  29061. bottom: 41.3 / 3417
  29062. }
  29063. },
  29064. frontSixTails: {
  29065. height: math.unit(165, "cm"),
  29066. weight: math.unit(140, "lb"),
  29067. name: "Front-six-tails",
  29068. image: {
  29069. source: "./media/characters/sam-evans/front-six-tails.svg",
  29070. extra: 3417 / 3230,
  29071. bottom: 41.3 / 3417
  29072. }
  29073. },
  29074. back: {
  29075. height: math.unit(165, "cm"),
  29076. weight: math.unit(140, "lb"),
  29077. name: "Back",
  29078. image: {
  29079. source: "./media/characters/sam-evans/back.svg",
  29080. extra: 3227 / 3032,
  29081. bottom: 6.8 / 3234
  29082. }
  29083. },
  29084. face: {
  29085. height: math.unit(0.68, "feet"),
  29086. name: "Face",
  29087. image: {
  29088. source: "./media/characters/sam-evans/face.svg"
  29089. }
  29090. },
  29091. },
  29092. [
  29093. {
  29094. name: "Normal",
  29095. height: math.unit(165, "cm"),
  29096. default: true
  29097. },
  29098. {
  29099. name: "Macro",
  29100. height: math.unit(100, "meters")
  29101. },
  29102. {
  29103. name: "Macro+",
  29104. height: math.unit(800, "meters")
  29105. },
  29106. {
  29107. name: "Macro++",
  29108. height: math.unit(3, "km")
  29109. },
  29110. {
  29111. name: "Macro+++",
  29112. height: math.unit(30, "km")
  29113. },
  29114. ]
  29115. ))
  29116. characterMakers.push(() => makeCharacter(
  29117. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  29118. {
  29119. front: {
  29120. height: math.unit(10, "feet"),
  29121. weight: math.unit(750, "lb"),
  29122. name: "Front",
  29123. image: {
  29124. source: "./media/characters/juliet-a/front.svg",
  29125. extra: 1766 / 1720,
  29126. bottom: 43 / 1809
  29127. }
  29128. },
  29129. back: {
  29130. height: math.unit(10, "feet"),
  29131. weight: math.unit(750, "lb"),
  29132. name: "Back",
  29133. image: {
  29134. source: "./media/characters/juliet-a/back.svg",
  29135. extra: 1781 / 1734,
  29136. bottom: 35 / 1810,
  29137. }
  29138. },
  29139. },
  29140. [
  29141. {
  29142. name: "Normal",
  29143. height: math.unit(10, "feet"),
  29144. default: true
  29145. },
  29146. {
  29147. name: "Dragon Form",
  29148. height: math.unit(250, "feet")
  29149. },
  29150. {
  29151. name: "Macro",
  29152. height: math.unit(1000, "feet")
  29153. },
  29154. {
  29155. name: "Megamacro",
  29156. height: math.unit(10000, "feet")
  29157. }
  29158. ]
  29159. ))
  29160. characterMakers.push(() => makeCharacter(
  29161. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  29162. {
  29163. regular: {
  29164. height: math.unit(7 + 3 / 12, "feet"),
  29165. weight: math.unit(260, "lb"),
  29166. name: "Regular",
  29167. image: {
  29168. source: "./media/characters/wild/regular.svg",
  29169. extra: 97.45 / 92,
  29170. bottom: 6.8 / 104.3
  29171. }
  29172. },
  29173. biggums: {
  29174. height: math.unit(8 + 6 / 12, "feet"),
  29175. weight: math.unit(425, "lb"),
  29176. name: "Biggums",
  29177. image: {
  29178. source: "./media/characters/wild/biggums.svg",
  29179. extra: 97.45 / 92,
  29180. bottom: 7.5 / 132.34
  29181. }
  29182. },
  29183. mawRegular: {
  29184. height: math.unit(1.24, "feet"),
  29185. name: "Maw (Regular)",
  29186. image: {
  29187. source: "./media/characters/wild/maw.svg"
  29188. }
  29189. },
  29190. mawBiggums: {
  29191. height: math.unit(1.47, "feet"),
  29192. name: "Maw (Biggums)",
  29193. image: {
  29194. source: "./media/characters/wild/maw.svg"
  29195. }
  29196. },
  29197. },
  29198. [
  29199. {
  29200. name: "Normal",
  29201. height: math.unit(7 + 3 / 12, "feet"),
  29202. default: true
  29203. },
  29204. ]
  29205. ))
  29206. characterMakers.push(() => makeCharacter(
  29207. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  29208. {
  29209. front: {
  29210. height: math.unit(2.5, "meters"),
  29211. weight: math.unit(200, "kg"),
  29212. name: "Front",
  29213. image: {
  29214. source: "./media/characters/vidar/front.svg",
  29215. extra: 2994 / 2795,
  29216. bottom: 56 / 3061
  29217. }
  29218. },
  29219. back: {
  29220. height: math.unit(2.5, "meters"),
  29221. weight: math.unit(200, "kg"),
  29222. name: "Back",
  29223. image: {
  29224. source: "./media/characters/vidar/back.svg",
  29225. extra: 3131 / 2928,
  29226. bottom: 13.5 / 3141.5
  29227. }
  29228. },
  29229. feral: {
  29230. height: math.unit(2.5, "meters"),
  29231. weight: math.unit(2000, "kg"),
  29232. name: "Feral",
  29233. image: {
  29234. source: "./media/characters/vidar/feral.svg",
  29235. extra: 2790 / 1765,
  29236. bottom: 6 / 2796
  29237. }
  29238. },
  29239. },
  29240. [
  29241. {
  29242. name: "Normal",
  29243. height: math.unit(2.5, "meters"),
  29244. default: true
  29245. },
  29246. {
  29247. name: "Macro",
  29248. height: math.unit(100, "meters")
  29249. },
  29250. ]
  29251. ))
  29252. characterMakers.push(() => makeCharacter(
  29253. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  29254. {
  29255. front: {
  29256. height: math.unit(5 + 9 / 12, "feet"),
  29257. weight: math.unit(120, "lb"),
  29258. name: "Front",
  29259. image: {
  29260. source: "./media/characters/ash/front.svg",
  29261. extra: 2189 / 1961,
  29262. bottom: 5.2 / 2194
  29263. }
  29264. },
  29265. },
  29266. [
  29267. {
  29268. name: "Normal",
  29269. height: math.unit(5 + 9 / 12, "feet"),
  29270. default: true
  29271. },
  29272. ]
  29273. ))
  29274. characterMakers.push(() => makeCharacter(
  29275. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  29276. {
  29277. front: {
  29278. height: math.unit(9, "feet"),
  29279. weight: math.unit(10000, "lb"),
  29280. name: "Front",
  29281. image: {
  29282. source: "./media/characters/gygabite/front.svg",
  29283. bottom: 31.7 / 537.8,
  29284. extra: 505 / 370
  29285. }
  29286. },
  29287. },
  29288. [
  29289. {
  29290. name: "Normal",
  29291. height: math.unit(9, "feet"),
  29292. default: true
  29293. },
  29294. ]
  29295. ))
  29296. characterMakers.push(() => makeCharacter(
  29297. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  29298. {
  29299. front: {
  29300. height: math.unit(12, "feet"),
  29301. weight: math.unit(4000, "lb"),
  29302. name: "Front",
  29303. image: {
  29304. source: "./media/characters/p0tat0/front.svg",
  29305. extra: 1065 / 921,
  29306. bottom: 55.7 / 1121.25
  29307. }
  29308. },
  29309. },
  29310. [
  29311. {
  29312. name: "Normal",
  29313. height: math.unit(12, "feet"),
  29314. default: true
  29315. },
  29316. ]
  29317. ))
  29318. characterMakers.push(() => makeCharacter(
  29319. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  29320. {
  29321. side: {
  29322. height: math.unit(6.5, "feet"),
  29323. weight: math.unit(800, "lb"),
  29324. name: "Side",
  29325. image: {
  29326. source: "./media/characters/dusk/side.svg",
  29327. extra: 615 / 373,
  29328. bottom: 53 / 664
  29329. }
  29330. },
  29331. sitting: {
  29332. height: math.unit(7, "feet"),
  29333. weight: math.unit(800, "lb"),
  29334. name: "Sitting",
  29335. image: {
  29336. source: "./media/characters/dusk/sitting.svg",
  29337. extra: 753 / 425,
  29338. bottom: 33 / 774
  29339. }
  29340. },
  29341. head: {
  29342. height: math.unit(6.1, "feet"),
  29343. name: "Head",
  29344. image: {
  29345. source: "./media/characters/dusk/head.svg"
  29346. }
  29347. },
  29348. },
  29349. [
  29350. {
  29351. name: "Normal",
  29352. height: math.unit(7, "feet"),
  29353. default: true
  29354. },
  29355. ]
  29356. ))
  29357. characterMakers.push(() => makeCharacter(
  29358. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  29359. {
  29360. front: {
  29361. height: math.unit(15, "feet"),
  29362. weight: math.unit(7000, "lb"),
  29363. name: "Front",
  29364. image: {
  29365. source: "./media/characters/jay-direwolf/front.svg",
  29366. extra: 1810 / 1732,
  29367. bottom: 66 / 1892
  29368. }
  29369. },
  29370. },
  29371. [
  29372. {
  29373. name: "Normal",
  29374. height: math.unit(15, "feet"),
  29375. default: true
  29376. },
  29377. ]
  29378. ))
  29379. characterMakers.push(() => makeCharacter(
  29380. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  29381. {
  29382. front: {
  29383. height: math.unit(4 + 9 / 12, "feet"),
  29384. weight: math.unit(130, "lb"),
  29385. name: "Front",
  29386. image: {
  29387. source: "./media/characters/anchovie/front.svg",
  29388. extra: 382 / 350,
  29389. bottom: 25 / 409
  29390. }
  29391. },
  29392. back: {
  29393. height: math.unit(4 + 9 / 12, "feet"),
  29394. weight: math.unit(130, "lb"),
  29395. name: "Back",
  29396. image: {
  29397. source: "./media/characters/anchovie/back.svg",
  29398. extra: 385 / 352,
  29399. bottom: 16.6 / 402
  29400. }
  29401. },
  29402. frontDressed: {
  29403. height: math.unit(4 + 9 / 12, "feet"),
  29404. weight: math.unit(130, "lb"),
  29405. name: "Front (Dressed)",
  29406. image: {
  29407. source: "./media/characters/anchovie/front-dressed.svg",
  29408. extra: 382 / 350,
  29409. bottom: 25 / 409
  29410. }
  29411. },
  29412. backDressed: {
  29413. height: math.unit(4 + 9 / 12, "feet"),
  29414. weight: math.unit(130, "lb"),
  29415. name: "Back (Dressed)",
  29416. image: {
  29417. source: "./media/characters/anchovie/back-dressed.svg",
  29418. extra: 385 / 352,
  29419. bottom: 16.6 / 402
  29420. }
  29421. },
  29422. },
  29423. [
  29424. {
  29425. name: "Micro",
  29426. height: math.unit(6.4, "inches")
  29427. },
  29428. {
  29429. name: "Normal",
  29430. height: math.unit(4 + 9 / 12, "feet"),
  29431. default: true
  29432. },
  29433. ]
  29434. ))
  29435. characterMakers.push(() => makeCharacter(
  29436. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  29437. {
  29438. front: {
  29439. height: math.unit(2, "meters"),
  29440. weight: math.unit(180, "lb"),
  29441. name: "Front",
  29442. image: {
  29443. source: "./media/characters/acidrenamon/front.svg",
  29444. extra: 987 / 890,
  29445. bottom: 22.8 / 1009
  29446. }
  29447. },
  29448. back: {
  29449. height: math.unit(2, "meters"),
  29450. weight: math.unit(180, "lb"),
  29451. name: "Back",
  29452. image: {
  29453. source: "./media/characters/acidrenamon/back.svg",
  29454. extra: 983 / 891,
  29455. bottom: 8.4 / 992
  29456. }
  29457. },
  29458. head: {
  29459. height: math.unit(1.92, "feet"),
  29460. name: "Head",
  29461. image: {
  29462. source: "./media/characters/acidrenamon/head.svg"
  29463. }
  29464. },
  29465. rump: {
  29466. height: math.unit(1.72, "feet"),
  29467. name: "Rump",
  29468. image: {
  29469. source: "./media/characters/acidrenamon/rump.svg"
  29470. }
  29471. },
  29472. tail: {
  29473. height: math.unit(4.2, "feet"),
  29474. name: "Tail",
  29475. image: {
  29476. source: "./media/characters/acidrenamon/tail.svg"
  29477. }
  29478. },
  29479. },
  29480. [
  29481. {
  29482. name: "Normal",
  29483. height: math.unit(2, "meters"),
  29484. default: true
  29485. },
  29486. {
  29487. name: "Minimacro",
  29488. height: math.unit(7, "meters")
  29489. },
  29490. {
  29491. name: "Macro",
  29492. height: math.unit(200, "meters")
  29493. },
  29494. {
  29495. name: "Gigamacro",
  29496. height: math.unit(0.2, "earths")
  29497. },
  29498. ]
  29499. ))
  29500. characterMakers.push(() => makeCharacter(
  29501. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  29502. {
  29503. front: {
  29504. height: math.unit(152, "feet"),
  29505. name: "Front",
  29506. image: {
  29507. source: "./media/characters/kenzie-lee/front.svg",
  29508. extra: 1869/1774,
  29509. bottom: 128/1997
  29510. }
  29511. },
  29512. side: {
  29513. height: math.unit(86, "feet"),
  29514. name: "Side",
  29515. image: {
  29516. source: "./media/characters/kenzie-lee/side.svg",
  29517. extra: 930/815,
  29518. bottom: 177/1107
  29519. }
  29520. },
  29521. paw: {
  29522. height: math.unit(15, "feet"),
  29523. name: "Paw",
  29524. image: {
  29525. source: "./media/characters/kenzie-lee/paw.svg"
  29526. }
  29527. },
  29528. },
  29529. [
  29530. {
  29531. name: "Kenzie Flea",
  29532. height: math.unit(2, "mm"),
  29533. default: true
  29534. },
  29535. {
  29536. name: "Micro",
  29537. height: math.unit(2, "inches")
  29538. },
  29539. {
  29540. name: "Normal",
  29541. height: math.unit(152, "feet")
  29542. },
  29543. {
  29544. name: "Megamacro",
  29545. height: math.unit(7, "miles")
  29546. },
  29547. {
  29548. name: "Gigamacro",
  29549. height: math.unit(8000, "miles")
  29550. },
  29551. ]
  29552. ))
  29553. characterMakers.push(() => makeCharacter(
  29554. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  29555. {
  29556. front: {
  29557. height: math.unit(6, "feet"),
  29558. name: "Front",
  29559. image: {
  29560. source: "./media/characters/withers/front.svg",
  29561. extra: 1935/1760,
  29562. bottom: 72/2007
  29563. }
  29564. },
  29565. back: {
  29566. height: math.unit(6, "feet"),
  29567. name: "Back",
  29568. image: {
  29569. source: "./media/characters/withers/back.svg",
  29570. extra: 1944/1792,
  29571. bottom: 12/1956
  29572. }
  29573. },
  29574. dressed: {
  29575. height: math.unit(6, "feet"),
  29576. name: "Dressed",
  29577. image: {
  29578. source: "./media/characters/withers/dressed.svg",
  29579. extra: 1937/1765,
  29580. bottom: 73/2010
  29581. }
  29582. },
  29583. phase1: {
  29584. height: math.unit(1.1, "feet"),
  29585. name: "Phase 1",
  29586. image: {
  29587. source: "./media/characters/withers/phase-1.svg",
  29588. extra: 1885/1232,
  29589. bottom: 0/1885
  29590. }
  29591. },
  29592. phase2: {
  29593. height: math.unit(1.05, "feet"),
  29594. name: "Phase 2",
  29595. image: {
  29596. source: "./media/characters/withers/phase-2.svg",
  29597. extra: 1792/1090,
  29598. bottom: 0/1792
  29599. }
  29600. },
  29601. partyWipe: {
  29602. height: math.unit(1.1, "feet"),
  29603. name: "Party Wipe",
  29604. image: {
  29605. source: "./media/characters/withers/party-wipe.svg",
  29606. extra: 1864/1207,
  29607. bottom: 0/1864
  29608. }
  29609. },
  29610. },
  29611. [
  29612. {
  29613. name: "Macro",
  29614. height: math.unit(167, "feet"),
  29615. default: true
  29616. },
  29617. {
  29618. name: "Megamacro",
  29619. height: math.unit(15, "miles")
  29620. }
  29621. ]
  29622. ))
  29623. characterMakers.push(() => makeCharacter(
  29624. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  29625. {
  29626. front: {
  29627. height: math.unit(6 + 7 / 12, "feet"),
  29628. weight: math.unit(250, "lb"),
  29629. name: "Front",
  29630. image: {
  29631. source: "./media/characters/nemoskii/front.svg",
  29632. extra: 2270 / 1734,
  29633. bottom: 86 / 2354
  29634. }
  29635. },
  29636. back: {
  29637. height: math.unit(6 + 7 / 12, "feet"),
  29638. weight: math.unit(250, "lb"),
  29639. name: "Back",
  29640. image: {
  29641. source: "./media/characters/nemoskii/back.svg",
  29642. extra: 1845 / 1788,
  29643. bottom: 10.5 / 1852
  29644. }
  29645. },
  29646. head: {
  29647. height: math.unit(1.31, "feet"),
  29648. name: "Head",
  29649. image: {
  29650. source: "./media/characters/nemoskii/head.svg"
  29651. }
  29652. },
  29653. },
  29654. [
  29655. {
  29656. name: "Micro",
  29657. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  29658. },
  29659. {
  29660. name: "Normal",
  29661. height: math.unit(6 + 7 / 12, "feet"),
  29662. default: true
  29663. },
  29664. {
  29665. name: "Macro",
  29666. height: math.unit((6 + 7 / 12) * 150, "feet")
  29667. },
  29668. {
  29669. name: "Macro+",
  29670. height: math.unit((6 + 7 / 12) * 500, "feet")
  29671. },
  29672. {
  29673. name: "Megamacro",
  29674. height: math.unit((6 + 7 / 12) * 100000, "feet")
  29675. },
  29676. ]
  29677. ))
  29678. characterMakers.push(() => makeCharacter(
  29679. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  29680. {
  29681. front: {
  29682. height: math.unit(1, "mile"),
  29683. weight: math.unit(265261.9, "lb"),
  29684. name: "Front",
  29685. image: {
  29686. source: "./media/characters/shui/front.svg",
  29687. extra: 1633 / 1564,
  29688. bottom: 91.5 / 1726
  29689. }
  29690. },
  29691. },
  29692. [
  29693. {
  29694. name: "Macro",
  29695. height: math.unit(1, "mile"),
  29696. default: true
  29697. },
  29698. ]
  29699. ))
  29700. characterMakers.push(() => makeCharacter(
  29701. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  29702. {
  29703. front: {
  29704. height: math.unit(12 + 6 / 12, "feet"),
  29705. weight: math.unit(1342, "lb"),
  29706. name: "Front",
  29707. image: {
  29708. source: "./media/characters/arokh-takakura/front.svg",
  29709. extra: 1089 / 1043,
  29710. bottom: 77.4 / 1176.7
  29711. }
  29712. },
  29713. back: {
  29714. height: math.unit(12 + 6 / 12, "feet"),
  29715. weight: math.unit(1342, "lb"),
  29716. name: "Back",
  29717. image: {
  29718. source: "./media/characters/arokh-takakura/back.svg",
  29719. extra: 1046 / 1019,
  29720. bottom: 102 / 1150
  29721. }
  29722. },
  29723. },
  29724. [
  29725. {
  29726. name: "Big",
  29727. height: math.unit(12 + 6 / 12, "feet"),
  29728. default: true
  29729. },
  29730. ]
  29731. ))
  29732. characterMakers.push(() => makeCharacter(
  29733. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  29734. {
  29735. front: {
  29736. height: math.unit(5 + 6 / 12, "feet"),
  29737. weight: math.unit(150, "lb"),
  29738. name: "Front",
  29739. image: {
  29740. source: "./media/characters/theo/front.svg",
  29741. extra: 1184 / 1131,
  29742. bottom: 7.4 / 1191
  29743. }
  29744. },
  29745. },
  29746. [
  29747. {
  29748. name: "Micro",
  29749. height: math.unit(5, "inches")
  29750. },
  29751. {
  29752. name: "Normal",
  29753. height: math.unit(5 + 6 / 12, "feet"),
  29754. default: true
  29755. },
  29756. ]
  29757. ))
  29758. characterMakers.push(() => makeCharacter(
  29759. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  29760. {
  29761. front: {
  29762. height: math.unit(5 + 9 / 12, "feet"),
  29763. weight: math.unit(130, "lb"),
  29764. name: "Front",
  29765. image: {
  29766. source: "./media/characters/cecelia-swift/front.svg",
  29767. extra: 502 / 484,
  29768. bottom: 23 / 523
  29769. }
  29770. },
  29771. back: {
  29772. height: math.unit(5 + 9 / 12, "feet"),
  29773. weight: math.unit(130, "lb"),
  29774. name: "Back",
  29775. image: {
  29776. source: "./media/characters/cecelia-swift/back.svg",
  29777. extra: 499 / 485,
  29778. bottom: 12 / 511
  29779. }
  29780. },
  29781. head: {
  29782. height: math.unit(0.90, "feet"),
  29783. name: "Head",
  29784. image: {
  29785. source: "./media/characters/cecelia-swift/head.svg"
  29786. }
  29787. },
  29788. rump: {
  29789. height: math.unit(1.75, "feet"),
  29790. name: "Rump",
  29791. image: {
  29792. source: "./media/characters/cecelia-swift/rump.svg"
  29793. }
  29794. },
  29795. },
  29796. [
  29797. {
  29798. name: "Normal",
  29799. height: math.unit(5 + 9 / 12, "feet"),
  29800. default: true
  29801. },
  29802. {
  29803. name: "Big",
  29804. height: math.unit(50, "feet")
  29805. },
  29806. {
  29807. name: "Macro",
  29808. height: math.unit(100, "feet")
  29809. },
  29810. {
  29811. name: "Macro+",
  29812. height: math.unit(500, "feet")
  29813. },
  29814. {
  29815. name: "Macro++",
  29816. height: math.unit(1000, "feet")
  29817. },
  29818. ]
  29819. ))
  29820. characterMakers.push(() => makeCharacter(
  29821. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  29822. {
  29823. front: {
  29824. height: math.unit(6, "feet"),
  29825. weight: math.unit(150, "lb"),
  29826. name: "Front",
  29827. image: {
  29828. source: "./media/characters/kaunan/front.svg",
  29829. extra: 2890 / 2523,
  29830. bottom: 49 / 2939
  29831. }
  29832. },
  29833. },
  29834. [
  29835. {
  29836. name: "Macro",
  29837. height: math.unit(150, "feet"),
  29838. default: true
  29839. },
  29840. ]
  29841. ))
  29842. characterMakers.push(() => makeCharacter(
  29843. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  29844. {
  29845. dressed: {
  29846. height: math.unit(175, "cm"),
  29847. weight: math.unit(60, "kg"),
  29848. name: "Dressed",
  29849. image: {
  29850. source: "./media/characters/fei/dressed.svg",
  29851. extra: 1402/1278,
  29852. bottom: 27/1429
  29853. }
  29854. },
  29855. nude: {
  29856. height: math.unit(175, "cm"),
  29857. weight: math.unit(60, "kg"),
  29858. name: "Nude",
  29859. image: {
  29860. source: "./media/characters/fei/nude.svg",
  29861. extra: 1402/1278,
  29862. bottom: 27/1429
  29863. }
  29864. },
  29865. heels: {
  29866. height: math.unit(0.466, "feet"),
  29867. name: "Heels",
  29868. image: {
  29869. source: "./media/characters/fei/heels.svg",
  29870. extra: 156/152,
  29871. bottom: 28/184
  29872. }
  29873. },
  29874. },
  29875. [
  29876. {
  29877. name: "Mortal",
  29878. height: math.unit(175, "cm")
  29879. },
  29880. {
  29881. name: "Normal",
  29882. height: math.unit(3500, "m")
  29883. },
  29884. {
  29885. name: "Stroll",
  29886. height: math.unit(18.4, "km"),
  29887. default: true
  29888. },
  29889. {
  29890. name: "Showoff",
  29891. height: math.unit(175, "km")
  29892. },
  29893. ]
  29894. ))
  29895. characterMakers.push(() => makeCharacter(
  29896. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  29897. {
  29898. front: {
  29899. height: math.unit(7, "feet"),
  29900. weight: math.unit(1000, "kg"),
  29901. name: "Front",
  29902. image: {
  29903. source: "./media/characters/edrax/front.svg",
  29904. extra: 2838 / 2550,
  29905. bottom: 130 / 2968
  29906. }
  29907. },
  29908. },
  29909. [
  29910. {
  29911. name: "Small",
  29912. height: math.unit(7, "feet")
  29913. },
  29914. {
  29915. name: "Normal",
  29916. height: math.unit(1500, "meters")
  29917. },
  29918. {
  29919. name: "Mega",
  29920. height: math.unit(12000000, "km"),
  29921. default: true
  29922. },
  29923. {
  29924. name: "Megamacro",
  29925. height: math.unit(10600000, "lightyears")
  29926. },
  29927. {
  29928. name: "Hypermacro",
  29929. height: math.unit(256, "yottameters")
  29930. },
  29931. ]
  29932. ))
  29933. characterMakers.push(() => makeCharacter(
  29934. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  29935. {
  29936. front: {
  29937. height: math.unit(10, "feet"),
  29938. weight: math.unit(750, "lb"),
  29939. name: "Front",
  29940. image: {
  29941. source: "./media/characters/clove/front.svg",
  29942. extra: 1918/1751,
  29943. bottom: 52/1970
  29944. }
  29945. },
  29946. back: {
  29947. height: math.unit(10, "feet"),
  29948. weight: math.unit(750, "lb"),
  29949. name: "Back",
  29950. image: {
  29951. source: "./media/characters/clove/back.svg",
  29952. extra: 1912/1747,
  29953. bottom: 50/1962
  29954. }
  29955. },
  29956. },
  29957. [
  29958. {
  29959. name: "Normal",
  29960. height: math.unit(10, "feet"),
  29961. default: true
  29962. },
  29963. ]
  29964. ))
  29965. characterMakers.push(() => makeCharacter(
  29966. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29967. {
  29968. front: {
  29969. height: math.unit(4, "feet"),
  29970. weight: math.unit(50, "lb"),
  29971. name: "Front",
  29972. image: {
  29973. source: "./media/characters/alex-rabbit/front.svg",
  29974. extra: 507 / 458,
  29975. bottom: 18.5 / 527
  29976. }
  29977. },
  29978. back: {
  29979. height: math.unit(4, "feet"),
  29980. weight: math.unit(50, "lb"),
  29981. name: "Back",
  29982. image: {
  29983. source: "./media/characters/alex-rabbit/back.svg",
  29984. extra: 502 / 460,
  29985. bottom: 18.9 / 521
  29986. }
  29987. },
  29988. },
  29989. [
  29990. {
  29991. name: "Normal",
  29992. height: math.unit(4, "feet"),
  29993. default: true
  29994. },
  29995. ]
  29996. ))
  29997. characterMakers.push(() => makeCharacter(
  29998. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  29999. {
  30000. front: {
  30001. height: math.unit(1 + 3 / 12, "feet"),
  30002. weight: math.unit(80, "lb"),
  30003. name: "Front",
  30004. image: {
  30005. source: "./media/characters/zander-rose/front.svg",
  30006. extra: 916 / 797,
  30007. bottom: 17 / 933
  30008. }
  30009. },
  30010. back: {
  30011. height: math.unit(1 + 3 / 12, "feet"),
  30012. weight: math.unit(80, "lb"),
  30013. name: "Back",
  30014. image: {
  30015. source: "./media/characters/zander-rose/back.svg",
  30016. extra: 903 / 779,
  30017. bottom: 31 / 934
  30018. }
  30019. },
  30020. },
  30021. [
  30022. {
  30023. name: "Normal",
  30024. height: math.unit(1 + 3 / 12, "feet"),
  30025. default: true
  30026. },
  30027. ]
  30028. ))
  30029. characterMakers.push(() => makeCharacter(
  30030. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  30031. {
  30032. anthro: {
  30033. height: math.unit(6, "feet"),
  30034. weight: math.unit(150, "lb"),
  30035. name: "Anthro",
  30036. image: {
  30037. source: "./media/characters/razz/anthro.svg",
  30038. extra: 1437 / 1343,
  30039. bottom: 48 / 1485
  30040. }
  30041. },
  30042. feral: {
  30043. height: math.unit(6, "feet"),
  30044. weight: math.unit(150, "lb"),
  30045. name: "Feral",
  30046. image: {
  30047. source: "./media/characters/razz/feral.svg",
  30048. extra: 2569 / 1385,
  30049. bottom: 95 / 2664
  30050. }
  30051. },
  30052. },
  30053. [
  30054. {
  30055. name: "Normal",
  30056. height: math.unit(6, "feet"),
  30057. default: true
  30058. },
  30059. ]
  30060. ))
  30061. characterMakers.push(() => makeCharacter(
  30062. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  30063. {
  30064. front: {
  30065. height: math.unit(9 + 4 / 12, "feet"),
  30066. weight: math.unit(500, "lb"),
  30067. name: "Front",
  30068. image: {
  30069. source: "./media/characters/morrigan/front.svg",
  30070. extra: 2707 / 2579,
  30071. bottom: 156 / 2863
  30072. }
  30073. },
  30074. },
  30075. [
  30076. {
  30077. name: "Normal",
  30078. height: math.unit(9 + 4 / 12, "feet"),
  30079. default: true
  30080. },
  30081. ]
  30082. ))
  30083. characterMakers.push(() => makeCharacter(
  30084. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  30085. {
  30086. front: {
  30087. height: math.unit(5, "stories"),
  30088. weight: math.unit(4000, "lb"),
  30089. name: "Front",
  30090. image: {
  30091. source: "./media/characters/jenene/front.svg",
  30092. extra: 1780 / 1710,
  30093. bottom: 57 / 1837
  30094. }
  30095. },
  30096. },
  30097. [
  30098. {
  30099. name: "Normal",
  30100. height: math.unit(5, "stories"),
  30101. default: true
  30102. },
  30103. ]
  30104. ))
  30105. characterMakers.push(() => makeCharacter(
  30106. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  30107. {
  30108. taurSfw: {
  30109. height: math.unit(10, "meters"),
  30110. weight: math.unit(17500, "kg"),
  30111. name: "Taur",
  30112. image: {
  30113. source: "./media/characters/faey/taur-sfw.svg",
  30114. extra: 1200 / 968,
  30115. bottom: 41 / 1241
  30116. }
  30117. },
  30118. chestmaw: {
  30119. height: math.unit(2.01, "meters"),
  30120. name: "Chestmaw",
  30121. image: {
  30122. source: "./media/characters/faey/chestmaw.svg"
  30123. }
  30124. },
  30125. foot: {
  30126. height: math.unit(2.43, "meters"),
  30127. name: "Foot",
  30128. image: {
  30129. source: "./media/characters/faey/foot.svg"
  30130. }
  30131. },
  30132. jaws: {
  30133. height: math.unit(1.66, "meters"),
  30134. name: "Jaws",
  30135. image: {
  30136. source: "./media/characters/faey/jaws.svg"
  30137. }
  30138. },
  30139. tongues: {
  30140. height: math.unit(2.01, "meters"),
  30141. name: "Tongues",
  30142. image: {
  30143. source: "./media/characters/faey/tongues.svg"
  30144. }
  30145. },
  30146. },
  30147. [
  30148. {
  30149. name: "Small",
  30150. height: math.unit(10, "meters"),
  30151. default: true
  30152. },
  30153. {
  30154. name: "Big",
  30155. height: math.unit(500000, "km")
  30156. },
  30157. ]
  30158. ))
  30159. characterMakers.push(() => makeCharacter(
  30160. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  30161. {
  30162. front: {
  30163. height: math.unit(7, "feet"),
  30164. weight: math.unit(275, "lb"),
  30165. name: "Front",
  30166. image: {
  30167. source: "./media/characters/roku/front.svg",
  30168. extra: 903 / 878,
  30169. bottom: 37 / 940
  30170. }
  30171. },
  30172. },
  30173. [
  30174. {
  30175. name: "Normal",
  30176. height: math.unit(7, "feet"),
  30177. default: true
  30178. },
  30179. {
  30180. name: "Macro",
  30181. height: math.unit(500, "feet")
  30182. },
  30183. {
  30184. name: "Megamacro",
  30185. height: math.unit(200, "miles")
  30186. },
  30187. ]
  30188. ))
  30189. characterMakers.push(() => makeCharacter(
  30190. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  30191. {
  30192. front: {
  30193. height: math.unit(6 + 2 / 12, "feet"),
  30194. weight: math.unit(150, "lb"),
  30195. name: "Front",
  30196. image: {
  30197. source: "./media/characters/lira/front.svg",
  30198. extra: 1727 / 1605,
  30199. bottom: 26 / 1753
  30200. }
  30201. },
  30202. back: {
  30203. height: math.unit(6 + 2 / 12, "feet"),
  30204. weight: math.unit(150, "lb"),
  30205. name: "Back",
  30206. image: {
  30207. source: "./media/characters/lira/back.svg",
  30208. extra: 1713/1621,
  30209. bottom: 20/1733
  30210. }
  30211. },
  30212. hand: {
  30213. height: math.unit(0.75, "feet"),
  30214. name: "Hand",
  30215. image: {
  30216. source: "./media/characters/lira/hand.svg"
  30217. }
  30218. },
  30219. maw: {
  30220. height: math.unit(0.65, "feet"),
  30221. name: "Maw",
  30222. image: {
  30223. source: "./media/characters/lira/maw.svg"
  30224. }
  30225. },
  30226. pawDigi: {
  30227. height: math.unit(1.6, "feet"),
  30228. name: "Paw Digi",
  30229. image: {
  30230. source: "./media/characters/lira/paw-digi.svg"
  30231. }
  30232. },
  30233. pawPlanti: {
  30234. height: math.unit(1.4, "feet"),
  30235. name: "Paw Planti",
  30236. image: {
  30237. source: "./media/characters/lira/paw-planti.svg"
  30238. }
  30239. },
  30240. },
  30241. [
  30242. {
  30243. name: "Normal",
  30244. height: math.unit(6 + 2 / 12, "feet"),
  30245. default: true
  30246. },
  30247. {
  30248. name: "Macro",
  30249. height: math.unit(100, "feet")
  30250. },
  30251. {
  30252. name: "Macro²",
  30253. height: math.unit(1600, "feet")
  30254. },
  30255. {
  30256. name: "Planetary",
  30257. height: math.unit(20, "earths")
  30258. },
  30259. ]
  30260. ))
  30261. characterMakers.push(() => makeCharacter(
  30262. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  30263. {
  30264. front: {
  30265. height: math.unit(6, "feet"),
  30266. weight: math.unit(150, "lb"),
  30267. name: "Front",
  30268. image: {
  30269. source: "./media/characters/hadjet/front.svg",
  30270. extra: 1480 / 1346,
  30271. bottom: 26 / 1506
  30272. }
  30273. },
  30274. frontNsfw: {
  30275. height: math.unit(6, "feet"),
  30276. weight: math.unit(150, "lb"),
  30277. name: "Front (NSFW)",
  30278. image: {
  30279. source: "./media/characters/hadjet/front-nsfw.svg",
  30280. extra: 1440 / 1358,
  30281. bottom: 52 / 1492
  30282. }
  30283. },
  30284. },
  30285. [
  30286. {
  30287. name: "Macro",
  30288. height: math.unit(10, "stories"),
  30289. default: true
  30290. },
  30291. {
  30292. name: "Megamacro",
  30293. height: math.unit(1.5, "miles")
  30294. },
  30295. {
  30296. name: "Megamacro+",
  30297. height: math.unit(5, "miles")
  30298. },
  30299. ]
  30300. ))
  30301. characterMakers.push(() => makeCharacter(
  30302. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  30303. {
  30304. side: {
  30305. height: math.unit(106, "feet"),
  30306. weight: math.unit(500, "tonnes"),
  30307. name: "Side",
  30308. image: {
  30309. source: "./media/characters/kodran/side.svg",
  30310. extra: 553 / 480,
  30311. bottom: 33 / 586
  30312. }
  30313. },
  30314. front: {
  30315. height: math.unit(132, "feet"),
  30316. weight: math.unit(500, "tonnes"),
  30317. name: "Front",
  30318. image: {
  30319. source: "./media/characters/kodran/front.svg",
  30320. extra: 667 / 643,
  30321. bottom: 42 / 709
  30322. }
  30323. },
  30324. flying: {
  30325. height: math.unit(350, "feet"),
  30326. weight: math.unit(500, "tonnes"),
  30327. name: "Flying",
  30328. image: {
  30329. source: "./media/characters/kodran/flying.svg"
  30330. }
  30331. },
  30332. foot: {
  30333. height: math.unit(33, "feet"),
  30334. name: "Foot",
  30335. image: {
  30336. source: "./media/characters/kodran/foot.svg"
  30337. }
  30338. },
  30339. footFront: {
  30340. height: math.unit(19, "feet"),
  30341. name: "Foot (Front)",
  30342. image: {
  30343. source: "./media/characters/kodran/foot-front.svg",
  30344. extra: 261 / 261,
  30345. bottom: 91 / 352
  30346. }
  30347. },
  30348. headFront: {
  30349. height: math.unit(53, "feet"),
  30350. name: "Head (Front)",
  30351. image: {
  30352. source: "./media/characters/kodran/head-front.svg"
  30353. }
  30354. },
  30355. headSide: {
  30356. height: math.unit(65, "feet"),
  30357. name: "Head (Side)",
  30358. image: {
  30359. source: "./media/characters/kodran/head-side.svg"
  30360. }
  30361. },
  30362. throat: {
  30363. height: math.unit(79, "feet"),
  30364. name: "Throat",
  30365. image: {
  30366. source: "./media/characters/kodran/throat.svg"
  30367. }
  30368. },
  30369. },
  30370. [
  30371. {
  30372. name: "Large",
  30373. height: math.unit(106, "feet"),
  30374. default: true
  30375. },
  30376. ]
  30377. ))
  30378. characterMakers.push(() => makeCharacter(
  30379. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  30380. {
  30381. side: {
  30382. height: math.unit(11, "feet"),
  30383. weight: math.unit(150, "lb"),
  30384. name: "Side",
  30385. image: {
  30386. source: "./media/characters/pyxaron/side.svg",
  30387. extra: 305 / 195,
  30388. bottom: 17 / 322
  30389. }
  30390. },
  30391. },
  30392. [
  30393. {
  30394. name: "Normal",
  30395. height: math.unit(11, "feet"),
  30396. default: true
  30397. },
  30398. ]
  30399. ))
  30400. characterMakers.push(() => makeCharacter(
  30401. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  30402. {
  30403. front: {
  30404. height: math.unit(6, "feet"),
  30405. weight: math.unit(150, "lb"),
  30406. name: "Front",
  30407. image: {
  30408. source: "./media/characters/meep/front.svg",
  30409. extra: 88 / 80,
  30410. bottom: 6 / 94
  30411. }
  30412. },
  30413. },
  30414. [
  30415. {
  30416. name: "Fun Sized",
  30417. height: math.unit(2, "inches"),
  30418. default: true
  30419. },
  30420. {
  30421. name: "Friend Sized",
  30422. height: math.unit(8, "inches")
  30423. },
  30424. ]
  30425. ))
  30426. characterMakers.push(() => makeCharacter(
  30427. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30428. {
  30429. front: {
  30430. height: math.unit(15, "feet"),
  30431. weight: math.unit(2500, "lb"),
  30432. name: "Front",
  30433. image: {
  30434. source: "./media/characters/holly-rabbit/front.svg",
  30435. extra: 1433 / 1233,
  30436. bottom: 125 / 1558
  30437. }
  30438. },
  30439. dick: {
  30440. height: math.unit(4.6, "feet"),
  30441. name: "Dick",
  30442. image: {
  30443. source: "./media/characters/holly-rabbit/dick.svg"
  30444. }
  30445. },
  30446. },
  30447. [
  30448. {
  30449. name: "Normal",
  30450. height: math.unit(15, "feet"),
  30451. default: true
  30452. },
  30453. {
  30454. name: "Macro",
  30455. height: math.unit(250, "feet")
  30456. },
  30457. {
  30458. name: "Macro+",
  30459. height: math.unit(2500, "feet")
  30460. },
  30461. ]
  30462. ))
  30463. characterMakers.push(() => makeCharacter(
  30464. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  30465. {
  30466. front: {
  30467. height: math.unit(3.02, "meters"),
  30468. weight: math.unit(500, "kg"),
  30469. name: "Front",
  30470. image: {
  30471. source: "./media/characters/drena/front.svg",
  30472. extra: 282 / 243,
  30473. bottom: 8 / 290
  30474. }
  30475. },
  30476. side: {
  30477. height: math.unit(3.02, "meters"),
  30478. weight: math.unit(500, "kg"),
  30479. name: "Side",
  30480. image: {
  30481. source: "./media/characters/drena/side.svg",
  30482. extra: 280 / 245,
  30483. bottom: 10 / 290
  30484. }
  30485. },
  30486. back: {
  30487. height: math.unit(3.02, "meters"),
  30488. weight: math.unit(500, "kg"),
  30489. name: "Back",
  30490. image: {
  30491. source: "./media/characters/drena/back.svg",
  30492. extra: 278 / 243,
  30493. bottom: 2 / 280
  30494. }
  30495. },
  30496. foot: {
  30497. height: math.unit(0.75, "meters"),
  30498. name: "Foot",
  30499. image: {
  30500. source: "./media/characters/drena/foot.svg"
  30501. }
  30502. },
  30503. maw: {
  30504. height: math.unit(0.82, "meters"),
  30505. name: "Maw",
  30506. image: {
  30507. source: "./media/characters/drena/maw.svg"
  30508. }
  30509. },
  30510. eating: {
  30511. height: math.unit(0.75, "meters"),
  30512. name: "Eating",
  30513. image: {
  30514. source: "./media/characters/drena/eating.svg"
  30515. }
  30516. },
  30517. rump: {
  30518. height: math.unit(0.93, "meters"),
  30519. name: "Rump",
  30520. image: {
  30521. source: "./media/characters/drena/rump.svg"
  30522. }
  30523. },
  30524. },
  30525. [
  30526. {
  30527. name: "Normal",
  30528. height: math.unit(3.02, "meters"),
  30529. default: true
  30530. },
  30531. ]
  30532. ))
  30533. characterMakers.push(() => makeCharacter(
  30534. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  30535. {
  30536. front: {
  30537. height: math.unit(6 + 4 / 12, "feet"),
  30538. weight: math.unit(250, "lb"),
  30539. name: "Front",
  30540. image: {
  30541. source: "./media/characters/remmyzilla/front.svg",
  30542. extra: 4033 / 3588,
  30543. bottom: 123 / 4156
  30544. }
  30545. },
  30546. back: {
  30547. height: math.unit(6 + 4 / 12, "feet"),
  30548. weight: math.unit(250, "lb"),
  30549. name: "Back",
  30550. image: {
  30551. source: "./media/characters/remmyzilla/back.svg",
  30552. extra: 2687 / 2555,
  30553. bottom: 48 / 2735
  30554. }
  30555. },
  30556. paw: {
  30557. height: math.unit(1.73, "feet"),
  30558. name: "Paw",
  30559. image: {
  30560. source: "./media/characters/remmyzilla/paw.svg"
  30561. },
  30562. extraAttributes: {
  30563. "toeSize": {
  30564. name: "Toe Size",
  30565. power: 2,
  30566. type: "area",
  30567. base: math.unit(0.0035, "m^2")
  30568. },
  30569. "padSize": {
  30570. name: "Pad Size",
  30571. power: 2,
  30572. type: "area",
  30573. base: math.unit(0.015, "m^2")
  30574. },
  30575. "pawsize": {
  30576. name: "Paw Size",
  30577. power: 2,
  30578. type: "area",
  30579. base: math.unit(0.072, "m^2")
  30580. },
  30581. }
  30582. },
  30583. maw: {
  30584. height: math.unit(1.73, "feet"),
  30585. name: "Maw",
  30586. image: {
  30587. source: "./media/characters/remmyzilla/maw.svg"
  30588. }
  30589. },
  30590. },
  30591. [
  30592. {
  30593. name: "Normal",
  30594. height: math.unit(6 + 4 / 12, "feet")
  30595. },
  30596. {
  30597. name: "Minimacro",
  30598. height: math.unit(12 + 8 / 12, "feet")
  30599. },
  30600. {
  30601. name: "Normal",
  30602. height: math.unit(640, "feet"),
  30603. default: true
  30604. },
  30605. {
  30606. name: "Megamacro",
  30607. height: math.unit(6400, "feet")
  30608. },
  30609. {
  30610. name: "Gigamacro",
  30611. height: math.unit(64000, "miles")
  30612. },
  30613. ]
  30614. ))
  30615. characterMakers.push(() => makeCharacter(
  30616. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  30617. {
  30618. front: {
  30619. height: math.unit(2.5, "meters"),
  30620. weight: math.unit(300, "lb"),
  30621. name: "Front",
  30622. image: {
  30623. source: "./media/characters/lawrence/front.svg",
  30624. extra: 357 / 335,
  30625. bottom: 30 / 387
  30626. }
  30627. },
  30628. back: {
  30629. height: math.unit(2.5, "meters"),
  30630. weight: math.unit(300, "lb"),
  30631. name: "Back",
  30632. image: {
  30633. source: "./media/characters/lawrence/back.svg",
  30634. extra: 357 / 338,
  30635. bottom: 16 / 373
  30636. }
  30637. },
  30638. head: {
  30639. height: math.unit(0.9, "meter"),
  30640. name: "Head",
  30641. image: {
  30642. source: "./media/characters/lawrence/head.svg"
  30643. }
  30644. },
  30645. maw: {
  30646. height: math.unit(0.7, "meter"),
  30647. name: "Maw",
  30648. image: {
  30649. source: "./media/characters/lawrence/maw.svg"
  30650. }
  30651. },
  30652. footBottom: {
  30653. height: math.unit(0.5, "meter"),
  30654. name: "Foot (Bottom)",
  30655. image: {
  30656. source: "./media/characters/lawrence/foot-bottom.svg"
  30657. }
  30658. },
  30659. footTop: {
  30660. height: math.unit(0.5, "meter"),
  30661. name: "Foot (Top)",
  30662. image: {
  30663. source: "./media/characters/lawrence/foot-top.svg"
  30664. }
  30665. },
  30666. },
  30667. [
  30668. {
  30669. name: "Normal",
  30670. height: math.unit(2.5, "meters"),
  30671. default: true
  30672. },
  30673. {
  30674. name: "Macro",
  30675. height: math.unit(95, "meters")
  30676. },
  30677. {
  30678. name: "Megamacro",
  30679. height: math.unit(150, "km")
  30680. },
  30681. ]
  30682. ))
  30683. characterMakers.push(() => makeCharacter(
  30684. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  30685. {
  30686. front: {
  30687. height: math.unit(4.2, "meters"),
  30688. name: "Front",
  30689. image: {
  30690. source: "./media/characters/sydney/front.svg",
  30691. extra: 1323 / 1277,
  30692. bottom: 111 / 1434
  30693. }
  30694. },
  30695. },
  30696. [
  30697. {
  30698. name: "Normal",
  30699. height: math.unit(4.2, "meters"),
  30700. default: true
  30701. },
  30702. ]
  30703. ))
  30704. characterMakers.push(() => makeCharacter(
  30705. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  30706. {
  30707. back: {
  30708. height: math.unit(201, "feet"),
  30709. name: "Back",
  30710. image: {
  30711. source: "./media/characters/jessica/back.svg",
  30712. extra: 273 / 259,
  30713. bottom: 7 / 280
  30714. }
  30715. },
  30716. },
  30717. [
  30718. {
  30719. name: "Normal",
  30720. height: math.unit(201, "feet"),
  30721. default: true
  30722. },
  30723. {
  30724. name: "Megamacro",
  30725. height: math.unit(8, "miles")
  30726. },
  30727. ]
  30728. ))
  30729. characterMakers.push(() => makeCharacter(
  30730. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  30731. {
  30732. side: {
  30733. height: math.unit(5.6, "m"),
  30734. weight: math.unit(8000, "kg"),
  30735. name: "Side",
  30736. image: {
  30737. source: "./media/characters/victoria/side.svg",
  30738. extra: 1542/1229,
  30739. bottom: 124/1666
  30740. }
  30741. },
  30742. maw: {
  30743. height: math.unit(7.14, "feet"),
  30744. name: "Maw",
  30745. image: {
  30746. source: "./media/characters/victoria/maw.svg"
  30747. }
  30748. },
  30749. },
  30750. [
  30751. {
  30752. name: "Normal",
  30753. height: math.unit(5.6, "m"),
  30754. default: true
  30755. },
  30756. ]
  30757. ))
  30758. characterMakers.push(() => makeCharacter(
  30759. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  30760. {
  30761. front: {
  30762. height: math.unit(5 + 6 / 12, "feet"),
  30763. name: "Front",
  30764. image: {
  30765. source: "./media/characters/cat/front.svg",
  30766. extra: 1449/1295,
  30767. bottom: 34/1483
  30768. },
  30769. form: "cat",
  30770. default: true
  30771. },
  30772. back: {
  30773. height: math.unit(5 + 6 / 12, "feet"),
  30774. name: "Back",
  30775. image: {
  30776. source: "./media/characters/cat/back.svg",
  30777. extra: 1466/1301,
  30778. bottom: 19/1485
  30779. },
  30780. form: "cat"
  30781. },
  30782. taur: {
  30783. height: math.unit(7, "feet"),
  30784. name: "Taur",
  30785. image: {
  30786. source: "./media/characters/cat/taur.svg",
  30787. extra: 1389/1233,
  30788. bottom: 83/1472
  30789. },
  30790. form: "taur",
  30791. default: true
  30792. },
  30793. lucarioFront: {
  30794. height: math.unit(4, "feet"),
  30795. name: "Lucario (Front)",
  30796. image: {
  30797. source: "./media/characters/cat/lucario-front.svg",
  30798. extra: 1149/1019,
  30799. bottom: 84/1233
  30800. },
  30801. form: "lucario",
  30802. default: true
  30803. },
  30804. lucarioBack: {
  30805. height: math.unit(4, "feet"),
  30806. name: "Lucario (Back)",
  30807. image: {
  30808. source: "./media/characters/cat/lucario-back.svg",
  30809. extra: 1190/1059,
  30810. bottom: 33/1223
  30811. },
  30812. form: "lucario"
  30813. },
  30814. megaLucario: {
  30815. height: math.unit(4, "feet"),
  30816. name: "Mega Lucario",
  30817. image: {
  30818. source: "./media/characters/cat/mega-lucario.svg",
  30819. extra: 1515 / 1319,
  30820. bottom: 63 / 1578
  30821. },
  30822. form: "lucario"
  30823. },
  30824. nickit: {
  30825. height: math.unit(2, "feet"),
  30826. name: "Nickit",
  30827. image: {
  30828. source: "./media/characters/cat/nickit.svg",
  30829. extra: 1980 / 1585,
  30830. bottom: 102 / 2082
  30831. },
  30832. form: "nickit",
  30833. default: true
  30834. },
  30835. lopunnyFront: {
  30836. height: math.unit(5, "feet"),
  30837. name: "Lopunny (Front)",
  30838. image: {
  30839. source: "./media/characters/cat/lopunny-front.svg",
  30840. extra: 1782 / 1469,
  30841. bottom: 38 / 1820
  30842. },
  30843. form: "lopunny",
  30844. default: true
  30845. },
  30846. lopunnyBack: {
  30847. height: math.unit(5, "feet"),
  30848. name: "Lopunny (Back)",
  30849. image: {
  30850. source: "./media/characters/cat/lopunny-back.svg",
  30851. extra: 1660 / 1490,
  30852. bottom: 25 / 1685
  30853. },
  30854. form: "lopunny"
  30855. },
  30856. },
  30857. [
  30858. {
  30859. name: "Really small",
  30860. height: math.unit(1, "nm")
  30861. },
  30862. {
  30863. name: "Micro",
  30864. height: math.unit(5, "inches")
  30865. },
  30866. {
  30867. name: "Normal",
  30868. height: math.unit(5 + 6 / 12, "feet"),
  30869. default: true
  30870. },
  30871. {
  30872. name: "Macro",
  30873. height: math.unit(50, "feet")
  30874. },
  30875. {
  30876. name: "Macro+",
  30877. height: math.unit(150, "feet")
  30878. },
  30879. {
  30880. name: "Megamacro",
  30881. height: math.unit(100, "miles")
  30882. },
  30883. ]
  30884. ))
  30885. characterMakers.push(() => makeCharacter(
  30886. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  30887. {
  30888. front: {
  30889. height: math.unit(63.4, "meters"),
  30890. weight: math.unit(3.28349e+6, "kilograms"),
  30891. name: "Front",
  30892. image: {
  30893. source: "./media/characters/kirina-violet/front.svg",
  30894. extra: 2812 / 2725,
  30895. bottom: 0 / 2812
  30896. }
  30897. },
  30898. back: {
  30899. height: math.unit(63.4, "meters"),
  30900. weight: math.unit(3.28349e+6, "kilograms"),
  30901. name: "Back",
  30902. image: {
  30903. source: "./media/characters/kirina-violet/back.svg",
  30904. extra: 2812 / 2725,
  30905. bottom: 0 / 2812
  30906. }
  30907. },
  30908. mouth: {
  30909. height: math.unit(4.35, "meters"),
  30910. name: "Mouth",
  30911. image: {
  30912. source: "./media/characters/kirina-violet/mouth.svg"
  30913. }
  30914. },
  30915. paw: {
  30916. height: math.unit(5.6, "meters"),
  30917. name: "Paw",
  30918. image: {
  30919. source: "./media/characters/kirina-violet/paw.svg"
  30920. }
  30921. },
  30922. tail: {
  30923. height: math.unit(18, "meters"),
  30924. name: "Tail",
  30925. image: {
  30926. source: "./media/characters/kirina-violet/tail.svg"
  30927. }
  30928. },
  30929. },
  30930. [
  30931. {
  30932. name: "Macro",
  30933. height: math.unit(63.4, "meters"),
  30934. default: true
  30935. },
  30936. ]
  30937. ))
  30938. characterMakers.push(() => makeCharacter(
  30939. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  30940. {
  30941. front: {
  30942. height: math.unit(75, "feet"),
  30943. name: "Front",
  30944. image: {
  30945. source: "./media/characters/cat-gigachu/front.svg",
  30946. extra: 1239/1027,
  30947. bottom: 32/1271
  30948. }
  30949. },
  30950. back: {
  30951. height: math.unit(75, "feet"),
  30952. name: "Back",
  30953. image: {
  30954. source: "./media/characters/cat-gigachu/back.svg",
  30955. extra: 1229/1030,
  30956. bottom: 9/1238
  30957. }
  30958. },
  30959. },
  30960. [
  30961. {
  30962. name: "Dynamax",
  30963. height: math.unit(75, "feet"),
  30964. default: true
  30965. },
  30966. ]
  30967. ))
  30968. characterMakers.push(() => makeCharacter(
  30969. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  30970. {
  30971. front: {
  30972. height: math.unit(6, "feet"),
  30973. weight: math.unit(150, "lb"),
  30974. name: "Front",
  30975. image: {
  30976. source: "./media/characters/sfaiyan/front.svg",
  30977. extra: 999 / 978,
  30978. bottom: 5 / 1004
  30979. }
  30980. },
  30981. },
  30982. [
  30983. {
  30984. name: "Normal",
  30985. height: math.unit(1.82, "meters")
  30986. },
  30987. {
  30988. name: "Giant",
  30989. height: math.unit(2.27, "km"),
  30990. default: true
  30991. },
  30992. ]
  30993. ))
  30994. characterMakers.push(() => makeCharacter(
  30995. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  30996. {
  30997. front: {
  30998. height: math.unit(179, "cm"),
  30999. weight: math.unit(100, "kg"),
  31000. name: "Front",
  31001. image: {
  31002. source: "./media/characters/raunehkeli/front.svg",
  31003. extra: 1934 / 1926,
  31004. bottom: 0 / 1934
  31005. }
  31006. },
  31007. },
  31008. [
  31009. {
  31010. name: "Normal",
  31011. height: math.unit(179, "cm")
  31012. },
  31013. {
  31014. name: "Maximum",
  31015. height: math.unit(575, "meters"),
  31016. default: true
  31017. },
  31018. ]
  31019. ))
  31020. characterMakers.push(() => makeCharacter(
  31021. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  31022. {
  31023. front: {
  31024. height: math.unit(6, "feet"),
  31025. weight: math.unit(150, "lb"),
  31026. name: "Front",
  31027. image: {
  31028. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  31029. extra: 2625 / 2518,
  31030. bottom: 60 / 2685
  31031. }
  31032. },
  31033. },
  31034. [
  31035. {
  31036. name: "Normal",
  31037. height: math.unit(6 + 2 / 12, "feet")
  31038. },
  31039. {
  31040. name: "Macro",
  31041. height: math.unit(1180, "feet"),
  31042. default: true
  31043. },
  31044. ]
  31045. ))
  31046. characterMakers.push(() => makeCharacter(
  31047. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  31048. {
  31049. front: {
  31050. height: math.unit(5 + 6 / 12, "feet"),
  31051. weight: math.unit(108, "lb"),
  31052. name: "Front",
  31053. image: {
  31054. source: "./media/characters/lilith-zott/front.svg",
  31055. extra: 2510 / 2238,
  31056. bottom: 100 / 2610
  31057. }
  31058. },
  31059. frontDressed: {
  31060. height: math.unit(5 + 6 / 12, "feet"),
  31061. weight: math.unit(108, "lb"),
  31062. name: "Front (Dressed)",
  31063. image: {
  31064. source: "./media/characters/lilith-zott/front-dressed.svg",
  31065. extra: 2510 / 2238,
  31066. bottom: 100 / 2610
  31067. }
  31068. },
  31069. },
  31070. [
  31071. {
  31072. name: "Normal",
  31073. height: math.unit(5 + 6 / 12, "feet")
  31074. },
  31075. {
  31076. name: "Macro",
  31077. height: math.unit(1030, "feet"),
  31078. default: true
  31079. },
  31080. ]
  31081. ))
  31082. characterMakers.push(() => makeCharacter(
  31083. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  31084. {
  31085. front: {
  31086. height: math.unit(6, "feet"),
  31087. weight: math.unit(150, "lb"),
  31088. name: "Front",
  31089. image: {
  31090. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  31091. extra: 2567 / 2435,
  31092. bottom: 39 / 2606
  31093. }
  31094. },
  31095. frontSuper: {
  31096. height: math.unit(6, "feet"),
  31097. name: "Front (Super)",
  31098. image: {
  31099. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  31100. extra: 2567 / 2435,
  31101. bottom: 39 / 2606
  31102. }
  31103. },
  31104. },
  31105. [
  31106. {
  31107. name: "Normal",
  31108. height: math.unit(5 + 10 / 12, "feet")
  31109. },
  31110. {
  31111. name: "Macro",
  31112. height: math.unit(1100, "feet"),
  31113. default: true
  31114. },
  31115. ]
  31116. ))
  31117. characterMakers.push(() => makeCharacter(
  31118. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  31119. {
  31120. front: {
  31121. height: math.unit(100, "miles"),
  31122. name: "Front",
  31123. image: {
  31124. source: "./media/characters/sona/front.svg",
  31125. extra: 2433 / 2201,
  31126. bottom: 53 / 2486
  31127. }
  31128. },
  31129. foot: {
  31130. height: math.unit(16.1, "miles"),
  31131. name: "Foot",
  31132. image: {
  31133. source: "./media/characters/sona/foot.svg"
  31134. }
  31135. },
  31136. },
  31137. [
  31138. {
  31139. name: "Macro",
  31140. height: math.unit(100, "miles"),
  31141. default: true
  31142. },
  31143. ]
  31144. ))
  31145. characterMakers.push(() => makeCharacter(
  31146. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  31147. {
  31148. front: {
  31149. height: math.unit(6, "feet"),
  31150. weight: math.unit(150, "lb"),
  31151. name: "Front",
  31152. image: {
  31153. source: "./media/characters/bailey/front.svg",
  31154. extra: 1778 / 1724,
  31155. bottom: 30 / 1808
  31156. }
  31157. },
  31158. },
  31159. [
  31160. {
  31161. name: "Micro",
  31162. height: math.unit(4, "inches")
  31163. },
  31164. {
  31165. name: "Normal",
  31166. height: math.unit(5 + 5 / 12, "feet"),
  31167. default: true
  31168. },
  31169. {
  31170. name: "Macro",
  31171. height: math.unit(250, "feet")
  31172. },
  31173. {
  31174. name: "Megamacro",
  31175. height: math.unit(100, "miles")
  31176. },
  31177. ]
  31178. ))
  31179. characterMakers.push(() => makeCharacter(
  31180. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  31181. {
  31182. front: {
  31183. height: math.unit(5 + 2 / 12, "feet"),
  31184. weight: math.unit(120, "lb"),
  31185. name: "Front",
  31186. image: {
  31187. source: "./media/characters/snaps/front.svg",
  31188. extra: 2370 / 2177,
  31189. bottom: 48 / 2418
  31190. }
  31191. },
  31192. back: {
  31193. height: math.unit(5 + 2 / 12, "feet"),
  31194. weight: math.unit(120, "lb"),
  31195. name: "Back",
  31196. image: {
  31197. source: "./media/characters/snaps/back.svg",
  31198. extra: 2408 / 2258,
  31199. bottom: 15 / 2423
  31200. }
  31201. },
  31202. },
  31203. [
  31204. {
  31205. name: "Micro",
  31206. height: math.unit(9, "inches")
  31207. },
  31208. {
  31209. name: "Normal",
  31210. height: math.unit(5 + 2 / 12, "feet"),
  31211. default: true
  31212. },
  31213. {
  31214. name: "Mini Macro",
  31215. height: math.unit(10, "feet")
  31216. },
  31217. ]
  31218. ))
  31219. characterMakers.push(() => makeCharacter(
  31220. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  31221. {
  31222. front: {
  31223. height: math.unit(1.8, "meters"),
  31224. weight: math.unit(85, "kg"),
  31225. name: "Front",
  31226. image: {
  31227. source: "./media/characters/azteck/front.svg",
  31228. extra: 2815 / 2625,
  31229. bottom: 89 / 2904
  31230. }
  31231. },
  31232. back: {
  31233. height: math.unit(1.8, "meters"),
  31234. weight: math.unit(85, "kg"),
  31235. name: "Back",
  31236. image: {
  31237. source: "./media/characters/azteck/back.svg",
  31238. extra: 2856 / 2648,
  31239. bottom: 85 / 2941
  31240. }
  31241. },
  31242. frontDressed: {
  31243. height: math.unit(1.8, "meters"),
  31244. weight: math.unit(85, "kg"),
  31245. name: "Front (Dressed)",
  31246. image: {
  31247. source: "./media/characters/azteck/front-dressed.svg",
  31248. extra: 2147 / 2003,
  31249. bottom: 68 / 2215
  31250. }
  31251. },
  31252. head: {
  31253. height: math.unit(0.47, "meters"),
  31254. weight: math.unit(85, "kg"),
  31255. name: "Head",
  31256. image: {
  31257. source: "./media/characters/azteck/head.svg"
  31258. }
  31259. },
  31260. },
  31261. [
  31262. {
  31263. name: "Bite sized",
  31264. height: math.unit(16, "cm")
  31265. },
  31266. {
  31267. name: "Normal",
  31268. height: math.unit(1.8, "meters"),
  31269. default: true
  31270. },
  31271. ]
  31272. ))
  31273. characterMakers.push(() => makeCharacter(
  31274. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  31275. {
  31276. front: {
  31277. height: math.unit(6, "feet"),
  31278. weight: math.unit(150, "lb"),
  31279. name: "Front",
  31280. image: {
  31281. source: "./media/characters/pidge/front.svg",
  31282. extra: 1936/1820,
  31283. bottom: 0/1936
  31284. }
  31285. },
  31286. back: {
  31287. height: math.unit(6, "feet"),
  31288. weight: math.unit(150, "lb"),
  31289. name: "Back",
  31290. image: {
  31291. source: "./media/characters/pidge/back.svg",
  31292. extra: 1938/1843,
  31293. bottom: 0/1938
  31294. }
  31295. },
  31296. casual: {
  31297. height: math.unit(6, "feet"),
  31298. weight: math.unit(150, "lb"),
  31299. name: "Casual",
  31300. image: {
  31301. source: "./media/characters/pidge/casual.svg",
  31302. extra: 1936/1820,
  31303. bottom: 0/1936
  31304. }
  31305. },
  31306. tech: {
  31307. height: math.unit(6, "feet"),
  31308. weight: math.unit(150, "lb"),
  31309. name: "Tech",
  31310. image: {
  31311. source: "./media/characters/pidge/tech.svg",
  31312. extra: 1802/1682,
  31313. bottom: 0/1802
  31314. }
  31315. },
  31316. head: {
  31317. height: math.unit(1.61, "feet"),
  31318. name: "Head",
  31319. image: {
  31320. source: "./media/characters/pidge/head.svg"
  31321. }
  31322. },
  31323. collar: {
  31324. height: math.unit(0.82, "feet"),
  31325. name: "Collar",
  31326. image: {
  31327. source: "./media/characters/pidge/collar.svg"
  31328. }
  31329. },
  31330. },
  31331. [
  31332. {
  31333. name: "Macro",
  31334. height: math.unit(2, "mile"),
  31335. default: true
  31336. },
  31337. {
  31338. name: "PUPPY",
  31339. height: math.unit(20, "miles")
  31340. },
  31341. ]
  31342. ))
  31343. characterMakers.push(() => makeCharacter(
  31344. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  31345. {
  31346. front: {
  31347. height: math.unit(6, "feet"),
  31348. weight: math.unit(150, "lb"),
  31349. name: "Front",
  31350. image: {
  31351. source: "./media/characters/en/front.svg",
  31352. extra: 1697 / 1563,
  31353. bottom: 103 / 1800
  31354. }
  31355. },
  31356. back: {
  31357. height: math.unit(6, "feet"),
  31358. weight: math.unit(150, "lb"),
  31359. name: "Back",
  31360. image: {
  31361. source: "./media/characters/en/back.svg",
  31362. extra: 1700 / 1570,
  31363. bottom: 51 / 1751
  31364. }
  31365. },
  31366. frontDressed: {
  31367. height: math.unit(6, "feet"),
  31368. weight: math.unit(150, "lb"),
  31369. name: "Front (Dressed)",
  31370. image: {
  31371. source: "./media/characters/en/front-dressed.svg",
  31372. extra: 1697 / 1563,
  31373. bottom: 103 / 1800
  31374. }
  31375. },
  31376. backDressed: {
  31377. height: math.unit(6, "feet"),
  31378. weight: math.unit(150, "lb"),
  31379. name: "Back (Dressed)",
  31380. image: {
  31381. source: "./media/characters/en/back-dressed.svg",
  31382. extra: 1700 / 1570,
  31383. bottom: 51 / 1751
  31384. }
  31385. },
  31386. },
  31387. [
  31388. {
  31389. name: "Macro",
  31390. height: math.unit(210, "feet"),
  31391. default: true
  31392. },
  31393. ]
  31394. ))
  31395. characterMakers.push(() => makeCharacter(
  31396. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  31397. {
  31398. front: {
  31399. height: math.unit(6, "feet"),
  31400. weight: math.unit(150, "lb"),
  31401. name: "Front",
  31402. image: {
  31403. source: "./media/characters/haze-orris/front.svg",
  31404. extra: 3975 / 3525,
  31405. bottom: 137 / 4112
  31406. }
  31407. },
  31408. },
  31409. [
  31410. {
  31411. name: "Micro",
  31412. height: math.unit(150, "mm"),
  31413. default: true
  31414. },
  31415. ]
  31416. ))
  31417. characterMakers.push(() => makeCharacter(
  31418. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  31419. {
  31420. front: {
  31421. height: math.unit(6, "feet"),
  31422. weight: math.unit(150, "lb"),
  31423. name: "Front",
  31424. image: {
  31425. source: "./media/characters/casselene-yaro/front.svg",
  31426. extra: 4721 / 4541,
  31427. bottom: 82 / 4803
  31428. }
  31429. },
  31430. back: {
  31431. height: math.unit(6, "feet"),
  31432. weight: math.unit(150, "lb"),
  31433. name: "Back",
  31434. image: {
  31435. source: "./media/characters/casselene-yaro/back.svg",
  31436. extra: 4569 / 4377,
  31437. bottom: 69 / 4638
  31438. }
  31439. },
  31440. dressed: {
  31441. height: math.unit(6, "feet"),
  31442. weight: math.unit(150, "lb"),
  31443. name: "Dressed",
  31444. image: {
  31445. source: "./media/characters/casselene-yaro/dressed.svg",
  31446. extra: 4721 / 4541,
  31447. bottom: 82 / 4803
  31448. }
  31449. },
  31450. maw: {
  31451. height: math.unit(1, "feet"),
  31452. name: "Maw",
  31453. image: {
  31454. source: "./media/characters/casselene-yaro/maw.svg"
  31455. }
  31456. },
  31457. },
  31458. [
  31459. {
  31460. name: "Macro",
  31461. height: math.unit(190, "feet"),
  31462. default: true
  31463. },
  31464. ]
  31465. ))
  31466. characterMakers.push(() => makeCharacter(
  31467. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  31468. {
  31469. front: {
  31470. height: math.unit(10, "feet"),
  31471. weight: math.unit(15015, "lb"),
  31472. name: "Front",
  31473. image: {
  31474. source: "./media/characters/platine/front.svg",
  31475. extra: 1741/1650,
  31476. bottom: 84/1825
  31477. }
  31478. },
  31479. side: {
  31480. height: math.unit(10, "feet"),
  31481. weight: math.unit(15015, "lb"),
  31482. name: "Side",
  31483. image: {
  31484. source: "./media/characters/platine/side.svg",
  31485. extra: 1790/1705,
  31486. bottom: 29/1819
  31487. }
  31488. },
  31489. },
  31490. [
  31491. {
  31492. name: "Normal",
  31493. height: math.unit(10, "feet"),
  31494. default: true
  31495. },
  31496. {
  31497. name: "Macro",
  31498. height: math.unit(100, "feet")
  31499. },
  31500. {
  31501. name: "Megamacro",
  31502. height: math.unit(1000, "feet")
  31503. },
  31504. ]
  31505. ))
  31506. characterMakers.push(() => makeCharacter(
  31507. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  31508. {
  31509. front: {
  31510. height: math.unit(15 + 5 / 12, "feet"),
  31511. weight: math.unit(4600, "lb"),
  31512. name: "Front",
  31513. image: {
  31514. source: "./media/characters/neapolitan-ananassa/front.svg",
  31515. extra: 2903 / 2736,
  31516. bottom: 0 / 2903
  31517. }
  31518. },
  31519. side: {
  31520. height: math.unit(15 + 5 / 12, "feet"),
  31521. weight: math.unit(4600, "lb"),
  31522. name: "Side",
  31523. image: {
  31524. source: "./media/characters/neapolitan-ananassa/side.svg",
  31525. extra: 2925 / 2719,
  31526. bottom: 0 / 2925
  31527. }
  31528. },
  31529. back: {
  31530. height: math.unit(15 + 5 / 12, "feet"),
  31531. weight: math.unit(4600, "lb"),
  31532. name: "Back",
  31533. image: {
  31534. source: "./media/characters/neapolitan-ananassa/back.svg",
  31535. extra: 2903 / 2736,
  31536. bottom: 0 / 2903
  31537. }
  31538. },
  31539. },
  31540. [
  31541. {
  31542. name: "Normal",
  31543. height: math.unit(15 + 5 / 12, "feet"),
  31544. default: true
  31545. },
  31546. {
  31547. name: "Post-Millenium",
  31548. height: math.unit(35 + 5 / 12, "feet")
  31549. },
  31550. {
  31551. name: "Post-Era",
  31552. height: math.unit(450 + 5 / 12, "feet")
  31553. },
  31554. ]
  31555. ))
  31556. characterMakers.push(() => makeCharacter(
  31557. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  31558. {
  31559. front: {
  31560. height: math.unit(300, "meters"),
  31561. weight: math.unit(125000, "tonnes"),
  31562. name: "Front",
  31563. image: {
  31564. source: "./media/characters/pazuzu/front.svg",
  31565. extra: 877 / 794,
  31566. bottom: 47 / 924
  31567. }
  31568. },
  31569. },
  31570. [
  31571. {
  31572. name: "Macro",
  31573. height: math.unit(300, "meters"),
  31574. default: true
  31575. },
  31576. ]
  31577. ))
  31578. characterMakers.push(() => makeCharacter(
  31579. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  31580. {
  31581. side: {
  31582. height: math.unit(10 + 7 / 12, "feet"),
  31583. weight: math.unit(2.5, "tons"),
  31584. name: "Side",
  31585. image: {
  31586. source: "./media/characters/aasha/side.svg",
  31587. extra: 1345 / 1245,
  31588. bottom: 111 / 1456
  31589. }
  31590. },
  31591. back: {
  31592. height: math.unit(10 + 7 / 12, "feet"),
  31593. weight: math.unit(2.5, "tons"),
  31594. name: "Back",
  31595. image: {
  31596. source: "./media/characters/aasha/back.svg",
  31597. extra: 1133 / 1057,
  31598. bottom: 257 / 1390
  31599. }
  31600. },
  31601. },
  31602. [
  31603. {
  31604. name: "Normal",
  31605. height: math.unit(10 + 7 / 12, "feet"),
  31606. default: true
  31607. },
  31608. ]
  31609. ))
  31610. characterMakers.push(() => makeCharacter(
  31611. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  31612. {
  31613. front: {
  31614. height: math.unit(6 + 3 / 12, "feet"),
  31615. name: "Front",
  31616. image: {
  31617. source: "./media/characters/nevan/front.svg",
  31618. extra: 704 / 704,
  31619. bottom: 28 / 732
  31620. }
  31621. },
  31622. back: {
  31623. height: math.unit(6 + 3 / 12, "feet"),
  31624. name: "Back",
  31625. image: {
  31626. source: "./media/characters/nevan/back.svg",
  31627. extra: 714 / 714,
  31628. bottom: 21 / 735
  31629. }
  31630. },
  31631. frontFlaccid: {
  31632. height: math.unit(6 + 3 / 12, "feet"),
  31633. name: "Front (Flaccid)",
  31634. image: {
  31635. source: "./media/characters/nevan/front-flaccid.svg",
  31636. extra: 704 / 704,
  31637. bottom: 28 / 732
  31638. }
  31639. },
  31640. frontErect: {
  31641. height: math.unit(6 + 3 / 12, "feet"),
  31642. name: "Front (Erect)",
  31643. image: {
  31644. source: "./media/characters/nevan/front-erect.svg",
  31645. extra: 704 / 704,
  31646. bottom: 28 / 732
  31647. }
  31648. },
  31649. backFlaccid: {
  31650. height: math.unit(6 + 3 / 12, "feet"),
  31651. name: "Back (Flaccid)",
  31652. image: {
  31653. source: "./media/characters/nevan/back-flaccid.svg",
  31654. extra: 714 / 714,
  31655. bottom: 21 / 735
  31656. }
  31657. },
  31658. },
  31659. [
  31660. {
  31661. name: "Normal",
  31662. height: math.unit(6 + 3 / 12, "feet"),
  31663. default: true
  31664. },
  31665. ]
  31666. ))
  31667. characterMakers.push(() => makeCharacter(
  31668. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  31669. {
  31670. front: {
  31671. height: math.unit(4, "feet"),
  31672. name: "Front",
  31673. image: {
  31674. source: "./media/characters/arhan/front.svg",
  31675. extra: 3368 / 3133,
  31676. bottom: 0 / 3368
  31677. }
  31678. },
  31679. side: {
  31680. height: math.unit(4, "feet"),
  31681. name: "Side",
  31682. image: {
  31683. source: "./media/characters/arhan/side.svg",
  31684. extra: 3347 / 3105,
  31685. bottom: 0 / 3347
  31686. }
  31687. },
  31688. tongue: {
  31689. height: math.unit(1.42, "feet"),
  31690. name: "Tongue",
  31691. image: {
  31692. source: "./media/characters/arhan/tongue.svg"
  31693. }
  31694. },
  31695. head: {
  31696. height: math.unit(0.85, "feet"),
  31697. name: "Head",
  31698. image: {
  31699. source: "./media/characters/arhan/head.svg"
  31700. }
  31701. },
  31702. },
  31703. [
  31704. {
  31705. name: "Normal",
  31706. height: math.unit(4, "feet"),
  31707. default: true
  31708. },
  31709. ]
  31710. ))
  31711. characterMakers.push(() => makeCharacter(
  31712. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  31713. {
  31714. front: {
  31715. height: math.unit(5 + 7.5 / 12, "feet"),
  31716. weight: math.unit(120, "lb"),
  31717. name: "Front",
  31718. image: {
  31719. source: "./media/characters/digi-duncan/front.svg",
  31720. extra: 330 / 326,
  31721. bottom: 16 / 346
  31722. }
  31723. },
  31724. side: {
  31725. height: math.unit(5 + 7.5 / 12, "feet"),
  31726. weight: math.unit(120, "lb"),
  31727. name: "Side",
  31728. image: {
  31729. source: "./media/characters/digi-duncan/side.svg",
  31730. extra: 341 / 337,
  31731. bottom: 1 / 342
  31732. }
  31733. },
  31734. back: {
  31735. height: math.unit(5 + 7.5 / 12, "feet"),
  31736. weight: math.unit(120, "lb"),
  31737. name: "Back",
  31738. image: {
  31739. source: "./media/characters/digi-duncan/back.svg",
  31740. extra: 330 / 326,
  31741. bottom: 12 / 342
  31742. }
  31743. },
  31744. },
  31745. [
  31746. {
  31747. name: "Speck",
  31748. height: math.unit(0.25, "mm")
  31749. },
  31750. {
  31751. name: "Micro",
  31752. height: math.unit(5, "mm")
  31753. },
  31754. {
  31755. name: "Tiny",
  31756. height: math.unit(0.5, "inches"),
  31757. default: true
  31758. },
  31759. {
  31760. name: "Human",
  31761. height: math.unit(5 + 7.5 / 12, "feet")
  31762. },
  31763. {
  31764. name: "Minigiant",
  31765. height: math.unit(8 + 5.25, "feet")
  31766. },
  31767. {
  31768. name: "Giant",
  31769. height: math.unit(2000, "feet")
  31770. },
  31771. {
  31772. name: "Mega",
  31773. height: math.unit(371.1, "miles")
  31774. },
  31775. ]
  31776. ))
  31777. characterMakers.push(() => makeCharacter(
  31778. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  31779. {
  31780. front: {
  31781. height: math.unit(2, "meters"),
  31782. weight: math.unit(350, "kg"),
  31783. name: "Front",
  31784. image: {
  31785. source: "./media/characters/jagaz-soulbreaker/front.svg",
  31786. extra: 898 / 838,
  31787. bottom: 9 / 907
  31788. }
  31789. },
  31790. },
  31791. [
  31792. {
  31793. name: "Micro",
  31794. height: math.unit(8, "meters")
  31795. },
  31796. {
  31797. name: "Normal",
  31798. height: math.unit(50, "meters"),
  31799. default: true
  31800. },
  31801. {
  31802. name: "Macro",
  31803. height: math.unit(500, "meters")
  31804. },
  31805. ]
  31806. ))
  31807. characterMakers.push(() => makeCharacter(
  31808. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  31809. {
  31810. front: {
  31811. height: math.unit(6 + 6 / 12, "feet"),
  31812. name: "Front",
  31813. image: {
  31814. source: "./media/characters/khardesh/front.svg",
  31815. extra: 1788/1596,
  31816. bottom: 66/1854
  31817. }
  31818. },
  31819. back: {
  31820. height: math.unit(6 + 6 / 12, "feet"),
  31821. name: "Back",
  31822. image: {
  31823. source: "./media/characters/khardesh/back.svg",
  31824. extra: 1781/1584,
  31825. bottom: 68/1849
  31826. }
  31827. },
  31828. },
  31829. [
  31830. {
  31831. name: "Normal",
  31832. height: math.unit(6 + 6 / 12, "feet"),
  31833. default: true
  31834. },
  31835. {
  31836. name: "Normal+",
  31837. height: math.unit(4, "meters")
  31838. },
  31839. {
  31840. name: "Macro",
  31841. height: math.unit(50, "meters")
  31842. },
  31843. {
  31844. name: "Macro+",
  31845. height: math.unit(100, "meters")
  31846. },
  31847. {
  31848. name: "Megamacro",
  31849. height: math.unit(20, "km")
  31850. },
  31851. ]
  31852. ))
  31853. characterMakers.push(() => makeCharacter(
  31854. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  31855. {
  31856. front: {
  31857. height: math.unit(6, "feet"),
  31858. weight: math.unit(150, "lb"),
  31859. name: "Front",
  31860. image: {
  31861. source: "./media/characters/kosho/front.svg",
  31862. extra: 1847 / 1847,
  31863. bottom: 86 / 1933
  31864. }
  31865. },
  31866. },
  31867. [
  31868. {
  31869. name: "Second-stage micro",
  31870. height: math.unit(0.5, "inches")
  31871. },
  31872. {
  31873. name: "First-stage micro",
  31874. height: math.unit(6, "inches")
  31875. },
  31876. {
  31877. name: "Normal",
  31878. height: math.unit(6, "feet"),
  31879. default: true
  31880. },
  31881. {
  31882. name: "First-stage macro",
  31883. height: math.unit(72, "feet")
  31884. },
  31885. {
  31886. name: "Second-stage macro",
  31887. height: math.unit(864, "feet")
  31888. },
  31889. ]
  31890. ))
  31891. characterMakers.push(() => makeCharacter(
  31892. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  31893. {
  31894. normal: {
  31895. height: math.unit(4 + 6 / 12, "feet"),
  31896. name: "Normal",
  31897. image: {
  31898. source: "./media/characters/hydra/normal.svg",
  31899. extra: 2833 / 2634,
  31900. bottom: 68 / 2901
  31901. }
  31902. },
  31903. smol: {
  31904. height: math.unit(0.705, "inches"),
  31905. name: "Smol",
  31906. image: {
  31907. source: "./media/characters/hydra/smol.svg",
  31908. extra: 2715 / 2540,
  31909. bottom: 0 / 2715
  31910. }
  31911. },
  31912. },
  31913. [
  31914. {
  31915. name: "Normal",
  31916. height: math.unit(4 + 6 / 12, "feet"),
  31917. default: true
  31918. }
  31919. ]
  31920. ))
  31921. characterMakers.push(() => makeCharacter(
  31922. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  31923. {
  31924. front: {
  31925. height: math.unit(0.6, "cm"),
  31926. name: "Front",
  31927. image: {
  31928. source: "./media/characters/daz/front.svg",
  31929. extra: 1682 / 1164,
  31930. bottom: 42 / 1724
  31931. }
  31932. },
  31933. },
  31934. [
  31935. {
  31936. name: "Normal",
  31937. height: math.unit(0.6, "cm"),
  31938. default: true
  31939. },
  31940. ]
  31941. ))
  31942. characterMakers.push(() => makeCharacter(
  31943. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  31944. {
  31945. front: {
  31946. height: math.unit(6, "feet"),
  31947. weight: math.unit(235, "lb"),
  31948. name: "Front",
  31949. image: {
  31950. source: "./media/characters/theo-pangolin/front.svg",
  31951. extra: 1996 / 1969,
  31952. bottom: 115 / 2111
  31953. }
  31954. },
  31955. back: {
  31956. height: math.unit(6, "feet"),
  31957. weight: math.unit(235, "lb"),
  31958. name: "Back",
  31959. image: {
  31960. source: "./media/characters/theo-pangolin/back.svg",
  31961. extra: 1979 / 1979,
  31962. bottom: 40 / 2019
  31963. }
  31964. },
  31965. feral: {
  31966. height: math.unit(2, "feet"),
  31967. weight: math.unit(30, "lb"),
  31968. name: "Feral",
  31969. image: {
  31970. source: "./media/characters/theo-pangolin/feral.svg",
  31971. extra: 803 / 791,
  31972. bottom: 181 / 984
  31973. }
  31974. },
  31975. footFive: {
  31976. height: math.unit(1.43, "feet"),
  31977. name: "Foot (Five Toes)",
  31978. image: {
  31979. source: "./media/characters/theo-pangolin/foot-five.svg"
  31980. }
  31981. },
  31982. footFour: {
  31983. height: math.unit(1.43, "feet"),
  31984. name: "Foot (Four Toes)",
  31985. image: {
  31986. source: "./media/characters/theo-pangolin/foot-four.svg"
  31987. }
  31988. },
  31989. handFour: {
  31990. height: math.unit(0.81, "feet"),
  31991. name: "Hand (Four Fingers)",
  31992. image: {
  31993. source: "./media/characters/theo-pangolin/hand-four.svg"
  31994. }
  31995. },
  31996. handThree: {
  31997. height: math.unit(0.81, "feet"),
  31998. name: "Hand (Three Fingers)",
  31999. image: {
  32000. source: "./media/characters/theo-pangolin/hand-three.svg"
  32001. }
  32002. },
  32003. headFront: {
  32004. height: math.unit(1.37, "feet"),
  32005. name: "Head (Front)",
  32006. image: {
  32007. source: "./media/characters/theo-pangolin/head-front.svg"
  32008. }
  32009. },
  32010. headSide: {
  32011. height: math.unit(1.43, "feet"),
  32012. name: "Head (Side)",
  32013. image: {
  32014. source: "./media/characters/theo-pangolin/head-side.svg"
  32015. }
  32016. },
  32017. tongue: {
  32018. height: math.unit(2.29, "feet"),
  32019. name: "Tongue",
  32020. image: {
  32021. source: "./media/characters/theo-pangolin/tongue.svg"
  32022. }
  32023. },
  32024. },
  32025. [
  32026. {
  32027. name: "Normal",
  32028. height: math.unit(6, "feet")
  32029. },
  32030. {
  32031. name: "Macro",
  32032. height: math.unit(400, "feet"),
  32033. default: true
  32034. },
  32035. ]
  32036. ))
  32037. characterMakers.push(() => makeCharacter(
  32038. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  32039. {
  32040. front: {
  32041. height: math.unit(6, "inches"),
  32042. weight: math.unit(0.036, "kg"),
  32043. name: "Front",
  32044. image: {
  32045. source: "./media/characters/renée/front.svg",
  32046. extra: 900 / 886,
  32047. bottom: 8 / 908
  32048. }
  32049. },
  32050. },
  32051. [
  32052. {
  32053. name: "Nano",
  32054. height: math.unit(1, "nm")
  32055. },
  32056. {
  32057. name: "Micro",
  32058. height: math.unit(1, "mm")
  32059. },
  32060. {
  32061. name: "Normal",
  32062. height: math.unit(6, "inches")
  32063. },
  32064. {
  32065. name: "Macro",
  32066. height: math.unit(2000, "feet"),
  32067. default: true
  32068. },
  32069. {
  32070. name: "Megamacro",
  32071. height: math.unit(2, "km")
  32072. },
  32073. {
  32074. name: "Gigamacro",
  32075. height: math.unit(2000, "km")
  32076. },
  32077. {
  32078. name: "Teramacro",
  32079. height: math.unit(250000, "km")
  32080. },
  32081. ]
  32082. ))
  32083. characterMakers.push(() => makeCharacter(
  32084. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  32085. {
  32086. front: {
  32087. height: math.unit(4, "meters"),
  32088. weight: math.unit(150, "kg"),
  32089. name: "Front",
  32090. image: {
  32091. source: "./media/characters/caledvwlch/front.svg",
  32092. extra: 1757/1537,
  32093. bottom: 31/1788
  32094. }
  32095. },
  32096. side: {
  32097. height: math.unit(4, "meters"),
  32098. weight: math.unit(150, "kg"),
  32099. name: "Side",
  32100. image: {
  32101. source: "./media/characters/caledvwlch/side.svg",
  32102. extra: 1605 / 1536,
  32103. bottom: 31 / 1636
  32104. }
  32105. },
  32106. back: {
  32107. height: math.unit(4, "meters"),
  32108. weight: math.unit(150, "kg"),
  32109. name: "Back",
  32110. image: {
  32111. source: "./media/characters/caledvwlch/back.svg",
  32112. extra: 1635 / 1565,
  32113. bottom: 27 / 1662
  32114. }
  32115. },
  32116. },
  32117. [
  32118. {
  32119. name: "\"Incognito\"",
  32120. height: math.unit(4, "meters")
  32121. },
  32122. {
  32123. name: "Small rampage",
  32124. height: math.unit(600, "meters")
  32125. },
  32126. {
  32127. name: "Mega",
  32128. height: math.unit(30, "km")
  32129. },
  32130. {
  32131. name: "Home-size",
  32132. height: math.unit(50, "km"),
  32133. default: true
  32134. },
  32135. {
  32136. name: "Giga",
  32137. height: math.unit(300, "km")
  32138. },
  32139. {
  32140. name: "Lounging",
  32141. height: math.unit(11000, "km")
  32142. },
  32143. {
  32144. name: "Planet snacking",
  32145. height: math.unit(2000000, "km")
  32146. },
  32147. ]
  32148. ))
  32149. characterMakers.push(() => makeCharacter(
  32150. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  32151. {
  32152. front: {
  32153. height: math.unit(6, "feet"),
  32154. weight: math.unit(215, "lb"),
  32155. name: "Front",
  32156. image: {
  32157. source: "./media/characters/sapphire-svell/front.svg",
  32158. extra: 495 / 455,
  32159. bottom: 20 / 515
  32160. }
  32161. },
  32162. back: {
  32163. height: math.unit(6, "feet"),
  32164. weight: math.unit(216, "lb"),
  32165. name: "Back",
  32166. image: {
  32167. source: "./media/characters/sapphire-svell/back.svg",
  32168. extra: 497 / 477,
  32169. bottom: 7 / 504
  32170. }
  32171. },
  32172. maw: {
  32173. height: math.unit(1.57, "feet"),
  32174. name: "Maw",
  32175. image: {
  32176. source: "./media/characters/sapphire-svell/maw.svg"
  32177. }
  32178. },
  32179. foot: {
  32180. height: math.unit(1.07, "feet"),
  32181. name: "Foot",
  32182. image: {
  32183. source: "./media/characters/sapphire-svell/foot.svg"
  32184. }
  32185. },
  32186. toering: {
  32187. height: math.unit(1.7, "inch"),
  32188. name: "Toering",
  32189. image: {
  32190. source: "./media/characters/sapphire-svell/toering.svg"
  32191. }
  32192. },
  32193. },
  32194. [
  32195. {
  32196. name: "Normal",
  32197. height: math.unit(300, "feet"),
  32198. default: true
  32199. },
  32200. {
  32201. name: "Augmented",
  32202. height: math.unit(1250, "feet")
  32203. },
  32204. {
  32205. name: "Unleashed",
  32206. height: math.unit(3000, "feet")
  32207. },
  32208. ]
  32209. ))
  32210. characterMakers.push(() => makeCharacter(
  32211. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  32212. {
  32213. side: {
  32214. height: math.unit(2 + 3 / 12, "feet"),
  32215. weight: math.unit(110, "lb"),
  32216. name: "Side",
  32217. image: {
  32218. source: "./media/characters/glitch-flux/side.svg",
  32219. extra: 997 / 805,
  32220. bottom: 20 / 1017
  32221. }
  32222. },
  32223. },
  32224. [
  32225. {
  32226. name: "Normal",
  32227. height: math.unit(2 + 3 / 12, "feet"),
  32228. default: true
  32229. },
  32230. ]
  32231. ))
  32232. characterMakers.push(() => makeCharacter(
  32233. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  32234. {
  32235. front: {
  32236. height: math.unit(4, "meters"),
  32237. name: "Front",
  32238. image: {
  32239. source: "./media/characters/mid/front.svg",
  32240. extra: 507 / 476,
  32241. bottom: 17 / 524
  32242. }
  32243. },
  32244. back: {
  32245. height: math.unit(4, "meters"),
  32246. name: "Back",
  32247. image: {
  32248. source: "./media/characters/mid/back.svg",
  32249. extra: 519 / 487,
  32250. bottom: 7 / 526
  32251. }
  32252. },
  32253. stuck: {
  32254. height: math.unit(2.2, "meters"),
  32255. name: "Stuck",
  32256. image: {
  32257. source: "./media/characters/mid/stuck.svg",
  32258. extra: 1951 / 1869,
  32259. bottom: 88 / 2039
  32260. }
  32261. }
  32262. },
  32263. [
  32264. {
  32265. name: "Normal",
  32266. height: math.unit(4, "meters"),
  32267. default: true
  32268. },
  32269. {
  32270. name: "Big",
  32271. height: math.unit(10, "meters")
  32272. },
  32273. {
  32274. name: "Macro",
  32275. height: math.unit(800, "meters")
  32276. },
  32277. {
  32278. name: "Megamacro",
  32279. height: math.unit(100, "km")
  32280. },
  32281. {
  32282. name: "Overgrown",
  32283. height: math.unit(1, "parsec")
  32284. },
  32285. ]
  32286. ))
  32287. characterMakers.push(() => makeCharacter(
  32288. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  32289. {
  32290. front: {
  32291. height: math.unit(2.5, "meters"),
  32292. weight: math.unit(225, "kg"),
  32293. name: "Front",
  32294. image: {
  32295. source: "./media/characters/iris/front.svg",
  32296. extra: 3348 / 3251,
  32297. bottom: 205 / 3553
  32298. }
  32299. },
  32300. maw: {
  32301. height: math.unit(0.56, "meter"),
  32302. name: "Maw",
  32303. image: {
  32304. source: "./media/characters/iris/maw.svg"
  32305. }
  32306. },
  32307. },
  32308. [
  32309. {
  32310. name: "Mewter cat",
  32311. height: math.unit(1.2, "meters")
  32312. },
  32313. {
  32314. name: "Normal",
  32315. height: math.unit(2.5, "meters"),
  32316. default: true
  32317. },
  32318. {
  32319. name: "Minimacro",
  32320. height: math.unit(18, "feet")
  32321. },
  32322. {
  32323. name: "Macro",
  32324. height: math.unit(140, "feet")
  32325. },
  32326. {
  32327. name: "Macro+",
  32328. height: math.unit(180, "meters")
  32329. },
  32330. {
  32331. name: "Megamacro",
  32332. height: math.unit(2746, "meters")
  32333. },
  32334. ]
  32335. ))
  32336. characterMakers.push(() => makeCharacter(
  32337. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  32338. {
  32339. front: {
  32340. height: math.unit(6, "feet"),
  32341. weight: math.unit(135, "lb"),
  32342. name: "Front",
  32343. image: {
  32344. source: "./media/characters/axel/front.svg",
  32345. extra: 908 / 908,
  32346. bottom: 58 / 966
  32347. }
  32348. },
  32349. side: {
  32350. height: math.unit(6, "feet"),
  32351. weight: math.unit(135, "lb"),
  32352. name: "Side",
  32353. image: {
  32354. source: "./media/characters/axel/side.svg",
  32355. extra: 958 / 958,
  32356. bottom: 11 / 969
  32357. }
  32358. },
  32359. back: {
  32360. height: math.unit(6, "feet"),
  32361. weight: math.unit(135, "lb"),
  32362. name: "Back",
  32363. image: {
  32364. source: "./media/characters/axel/back.svg",
  32365. extra: 887 / 887,
  32366. bottom: 34 / 921
  32367. }
  32368. },
  32369. head: {
  32370. height: math.unit(1.07, "feet"),
  32371. name: "Head",
  32372. image: {
  32373. source: "./media/characters/axel/head.svg"
  32374. }
  32375. },
  32376. beak: {
  32377. height: math.unit(1.4, "feet"),
  32378. name: "Beak",
  32379. image: {
  32380. source: "./media/characters/axel/beak.svg"
  32381. }
  32382. },
  32383. beakSide: {
  32384. height: math.unit(1.4, "feet"),
  32385. name: "Beak Side",
  32386. image: {
  32387. source: "./media/characters/axel/beak-side.svg"
  32388. }
  32389. },
  32390. sheath: {
  32391. height: math.unit(0.5, "feet"),
  32392. name: "Sheath",
  32393. image: {
  32394. source: "./media/characters/axel/sheath.svg"
  32395. }
  32396. },
  32397. dick: {
  32398. height: math.unit(0.98, "feet"),
  32399. name: "Dick",
  32400. image: {
  32401. source: "./media/characters/axel/dick.svg"
  32402. }
  32403. },
  32404. },
  32405. [
  32406. {
  32407. name: "Macro",
  32408. height: math.unit(68, "meters"),
  32409. default: true
  32410. },
  32411. ]
  32412. ))
  32413. characterMakers.push(() => makeCharacter(
  32414. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  32415. {
  32416. front: {
  32417. height: math.unit(3.5, "meters"),
  32418. weight: math.unit(1200, "kg"),
  32419. name: "Front",
  32420. image: {
  32421. source: "./media/characters/joanna/front.svg",
  32422. extra: 1596 / 1488,
  32423. bottom: 29 / 1625
  32424. }
  32425. },
  32426. back: {
  32427. height: math.unit(3.5, "meters"),
  32428. weight: math.unit(1200, "kg"),
  32429. name: "Back",
  32430. image: {
  32431. source: "./media/characters/joanna/back.svg",
  32432. extra: 1594 / 1495,
  32433. bottom: 26 / 1620
  32434. }
  32435. },
  32436. frontShorts: {
  32437. height: math.unit(3.5, "meters"),
  32438. weight: math.unit(1200, "kg"),
  32439. name: "Front (Shorts)",
  32440. image: {
  32441. source: "./media/characters/joanna/front-shorts.svg",
  32442. extra: 1596 / 1488,
  32443. bottom: 29 / 1625
  32444. }
  32445. },
  32446. frontBiker: {
  32447. height: math.unit(3.5, "meters"),
  32448. weight: math.unit(1200, "kg"),
  32449. name: "Front (Biker)",
  32450. image: {
  32451. source: "./media/characters/joanna/front-biker.svg",
  32452. extra: 1596 / 1488,
  32453. bottom: 29 / 1625
  32454. }
  32455. },
  32456. backBiker: {
  32457. height: math.unit(3.5, "meters"),
  32458. weight: math.unit(1200, "kg"),
  32459. name: "Back (Biker)",
  32460. image: {
  32461. source: "./media/characters/joanna/back-biker.svg",
  32462. extra: 1594 / 1495,
  32463. bottom: 88 / 1682
  32464. }
  32465. },
  32466. bikeLeft: {
  32467. height: math.unit(2.4, "meters"),
  32468. weight: math.unit(1600, "kg"),
  32469. name: "Bike (Left)",
  32470. image: {
  32471. source: "./media/characters/joanna/bike-left.svg",
  32472. extra: 720 / 720,
  32473. bottom: 8 / 728
  32474. }
  32475. },
  32476. bikeRight: {
  32477. height: math.unit(2.4, "meters"),
  32478. weight: math.unit(1600, "kg"),
  32479. name: "Bike (Right)",
  32480. image: {
  32481. source: "./media/characters/joanna/bike-right.svg",
  32482. extra: 720 / 720,
  32483. bottom: 8 / 728
  32484. }
  32485. },
  32486. },
  32487. [
  32488. {
  32489. name: "Incognito",
  32490. height: math.unit(3.5, "meters")
  32491. },
  32492. {
  32493. name: "Casual Big",
  32494. height: math.unit(200, "meters")
  32495. },
  32496. {
  32497. name: "Macro",
  32498. height: math.unit(600, "meters")
  32499. },
  32500. {
  32501. name: "Original",
  32502. height: math.unit(20, "km"),
  32503. default: true
  32504. },
  32505. {
  32506. name: "Giga",
  32507. height: math.unit(400, "km")
  32508. },
  32509. {
  32510. name: "Lounging",
  32511. height: math.unit(1500, "km")
  32512. },
  32513. {
  32514. name: "Planetary",
  32515. height: math.unit(200000, "km")
  32516. },
  32517. ]
  32518. ))
  32519. characterMakers.push(() => makeCharacter(
  32520. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  32521. {
  32522. front: {
  32523. height: math.unit(6, "feet"),
  32524. weight: math.unit(150, "lb"),
  32525. name: "Front",
  32526. image: {
  32527. source: "./media/characters/hugo-sigil/front.svg",
  32528. extra: 522 / 500,
  32529. bottom: 2 / 524
  32530. }
  32531. },
  32532. back: {
  32533. height: math.unit(6, "feet"),
  32534. weight: math.unit(150, "lb"),
  32535. name: "Back",
  32536. image: {
  32537. source: "./media/characters/hugo-sigil/back.svg",
  32538. extra: 519 / 495,
  32539. bottom: 5 / 524
  32540. }
  32541. },
  32542. maw: {
  32543. height: math.unit(1.4, "feet"),
  32544. weight: math.unit(150, "lb"),
  32545. name: "Maw",
  32546. image: {
  32547. source: "./media/characters/hugo-sigil/maw.svg"
  32548. }
  32549. },
  32550. feet: {
  32551. height: math.unit(1.56, "feet"),
  32552. weight: math.unit(150, "lb"),
  32553. name: "Feet",
  32554. image: {
  32555. source: "./media/characters/hugo-sigil/feet.svg",
  32556. extra: 177 / 177,
  32557. bottom: 12 / 189
  32558. }
  32559. },
  32560. },
  32561. [
  32562. {
  32563. name: "Normal",
  32564. height: math.unit(6, "feet")
  32565. },
  32566. {
  32567. name: "Macro",
  32568. height: math.unit(200, "feet"),
  32569. default: true
  32570. },
  32571. ]
  32572. ))
  32573. characterMakers.push(() => makeCharacter(
  32574. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  32575. {
  32576. front: {
  32577. height: math.unit(6, "feet"),
  32578. weight: math.unit(150, "lb"),
  32579. name: "Front",
  32580. image: {
  32581. source: "./media/characters/peri/front.svg",
  32582. extra: 2354 / 2233,
  32583. bottom: 49 / 2403
  32584. }
  32585. },
  32586. },
  32587. [
  32588. {
  32589. name: "Really Small",
  32590. height: math.unit(1, "nm")
  32591. },
  32592. {
  32593. name: "Micro",
  32594. height: math.unit(4, "inches")
  32595. },
  32596. {
  32597. name: "Normal",
  32598. height: math.unit(7, "inches"),
  32599. default: true
  32600. },
  32601. {
  32602. name: "Macro",
  32603. height: math.unit(400, "feet")
  32604. },
  32605. {
  32606. name: "Megamacro",
  32607. height: math.unit(100, "miles")
  32608. },
  32609. ]
  32610. ))
  32611. characterMakers.push(() => makeCharacter(
  32612. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  32613. {
  32614. frontSlim: {
  32615. height: math.unit(7, "feet"),
  32616. name: "Front (Slim)",
  32617. image: {
  32618. source: "./media/characters/issilora/front-slim.svg",
  32619. extra: 529 / 449,
  32620. bottom: 53 / 582
  32621. }
  32622. },
  32623. sideSlim: {
  32624. height: math.unit(7, "feet"),
  32625. name: "Side (Slim)",
  32626. image: {
  32627. source: "./media/characters/issilora/side-slim.svg",
  32628. extra: 570 / 480,
  32629. bottom: 30 / 600
  32630. }
  32631. },
  32632. backSlim: {
  32633. height: math.unit(7, "feet"),
  32634. name: "Back (Slim)",
  32635. image: {
  32636. source: "./media/characters/issilora/back-slim.svg",
  32637. extra: 537 / 455,
  32638. bottom: 46 / 583
  32639. }
  32640. },
  32641. frontBuff: {
  32642. height: math.unit(7, "feet"),
  32643. name: "Front (Buff)",
  32644. image: {
  32645. source: "./media/characters/issilora/front-buff.svg",
  32646. extra: 2310 / 2035,
  32647. bottom: 335 / 2645
  32648. }
  32649. },
  32650. head: {
  32651. height: math.unit(1.94, "feet"),
  32652. name: "Head",
  32653. image: {
  32654. source: "./media/characters/issilora/head.svg"
  32655. }
  32656. },
  32657. },
  32658. [
  32659. {
  32660. name: "Minimum",
  32661. height: math.unit(7, "feet")
  32662. },
  32663. {
  32664. name: "Comfortable",
  32665. height: math.unit(17, "feet")
  32666. },
  32667. {
  32668. name: "Fun Size",
  32669. height: math.unit(47, "feet")
  32670. },
  32671. {
  32672. name: "Natural Macro",
  32673. height: math.unit(137, "feet"),
  32674. default: true
  32675. },
  32676. {
  32677. name: "Maximum Kaiju",
  32678. height: math.unit(397, "feet")
  32679. },
  32680. ]
  32681. ))
  32682. characterMakers.push(() => makeCharacter(
  32683. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  32684. {
  32685. front: {
  32686. height: math.unit(50 + 9/12, "feet"),
  32687. weight: math.unit(32.8, "tons"),
  32688. name: "Front",
  32689. image: {
  32690. source: "./media/characters/irb'iiritaahn/front.svg",
  32691. extra: 1878/1826,
  32692. bottom: 326/2204
  32693. }
  32694. },
  32695. back: {
  32696. height: math.unit(50 + 9/12, "feet"),
  32697. weight: math.unit(32.8, "tons"),
  32698. name: "Back",
  32699. image: {
  32700. source: "./media/characters/irb'iiritaahn/back.svg",
  32701. extra: 2052/2018,
  32702. bottom: 152/2204
  32703. }
  32704. },
  32705. head: {
  32706. height: math.unit(12.86, "feet"),
  32707. name: "Head",
  32708. image: {
  32709. source: "./media/characters/irb'iiritaahn/head.svg"
  32710. }
  32711. },
  32712. maw: {
  32713. height: math.unit(9.66, "feet"),
  32714. name: "Maw",
  32715. image: {
  32716. source: "./media/characters/irb'iiritaahn/maw.svg"
  32717. }
  32718. },
  32719. frontDick: {
  32720. height: math.unit(8.78461, "feet"),
  32721. name: "Front Dick",
  32722. image: {
  32723. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  32724. }
  32725. },
  32726. rearDick: {
  32727. height: math.unit(8.78461, "feet"),
  32728. name: "Rear Dick",
  32729. image: {
  32730. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  32731. }
  32732. },
  32733. rearDickUnfolded: {
  32734. height: math.unit(8.78, "feet"),
  32735. name: "Rear Dick (Unfolded)",
  32736. image: {
  32737. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  32738. }
  32739. },
  32740. wings: {
  32741. height: math.unit(43, "feet"),
  32742. name: "Wings",
  32743. image: {
  32744. source: "./media/characters/irb'iiritaahn/wings.svg"
  32745. }
  32746. },
  32747. },
  32748. [
  32749. {
  32750. name: "Macro",
  32751. height: math.unit(50 + 9/12, "feet"),
  32752. default: true
  32753. },
  32754. ]
  32755. ))
  32756. characterMakers.push(() => makeCharacter(
  32757. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  32758. {
  32759. front: {
  32760. height: math.unit(205, "cm"),
  32761. weight: math.unit(102, "kg"),
  32762. name: "Front",
  32763. image: {
  32764. source: "./media/characters/irbisgreif/front.svg",
  32765. extra: 785/706,
  32766. bottom: 13/798
  32767. }
  32768. },
  32769. back: {
  32770. height: math.unit(205, "cm"),
  32771. weight: math.unit(102, "kg"),
  32772. name: "Back",
  32773. image: {
  32774. source: "./media/characters/irbisgreif/back.svg",
  32775. extra: 713/701,
  32776. bottom: 26/739
  32777. }
  32778. },
  32779. frontDressed: {
  32780. height: math.unit(216, "cm"),
  32781. weight: math.unit(102, "kg"),
  32782. name: "Front-dressed",
  32783. image: {
  32784. source: "./media/characters/irbisgreif/front-dressed.svg",
  32785. extra: 902/776,
  32786. bottom: 14/916
  32787. }
  32788. },
  32789. sideDressed: {
  32790. height: math.unit(195, "cm"),
  32791. weight: math.unit(102, "kg"),
  32792. name: "Side-dressed",
  32793. image: {
  32794. source: "./media/characters/irbisgreif/side-dressed.svg",
  32795. extra: 788/688,
  32796. bottom: 21/809
  32797. }
  32798. },
  32799. backDressed: {
  32800. height: math.unit(216, "cm"),
  32801. weight: math.unit(102, "kg"),
  32802. name: "Back-dressed",
  32803. image: {
  32804. source: "./media/characters/irbisgreif/back-dressed.svg",
  32805. extra: 901/783,
  32806. bottom: 10/911
  32807. }
  32808. },
  32809. dick: {
  32810. height: math.unit(0.49, "feet"),
  32811. name: "Dick",
  32812. image: {
  32813. source: "./media/characters/irbisgreif/dick.svg"
  32814. }
  32815. },
  32816. wingTop: {
  32817. height: math.unit(1.93 , "feet"),
  32818. name: "Wing-top",
  32819. image: {
  32820. source: "./media/characters/irbisgreif/wing-top.svg"
  32821. }
  32822. },
  32823. wingBottom: {
  32824. height: math.unit(1.93 , "feet"),
  32825. name: "Wing-bottom",
  32826. image: {
  32827. source: "./media/characters/irbisgreif/wing-bottom.svg"
  32828. }
  32829. },
  32830. },
  32831. [
  32832. {
  32833. name: "Normal",
  32834. height: math.unit(216, "cm"),
  32835. default: true
  32836. },
  32837. ]
  32838. ))
  32839. characterMakers.push(() => makeCharacter(
  32840. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  32841. {
  32842. front: {
  32843. height: math.unit(6, "feet"),
  32844. weight: math.unit(150, "lb"),
  32845. name: "Front",
  32846. image: {
  32847. source: "./media/characters/pride/front.svg",
  32848. extra: 1299/1230,
  32849. bottom: 18/1317
  32850. }
  32851. },
  32852. },
  32853. [
  32854. {
  32855. name: "Normal",
  32856. height: math.unit(7, "feet")
  32857. },
  32858. {
  32859. name: "Mini-macro",
  32860. height: math.unit(11, "feet")
  32861. },
  32862. {
  32863. name: "Macro",
  32864. height: math.unit(15, "meters"),
  32865. default: true
  32866. },
  32867. {
  32868. name: "Macro+",
  32869. height: math.unit(40, "meters")
  32870. },
  32871. ]
  32872. ))
  32873. characterMakers.push(() => makeCharacter(
  32874. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  32875. {
  32876. front: {
  32877. height: math.unit(4 + 2 / 12, "feet"),
  32878. weight: math.unit(95, "lb"),
  32879. name: "Front",
  32880. image: {
  32881. source: "./media/characters/vaelophis-nyx/front.svg",
  32882. extra: 2532/2330,
  32883. bottom: 0/2532
  32884. }
  32885. },
  32886. back: {
  32887. height: math.unit(4 + 2 / 12, "feet"),
  32888. weight: math.unit(95, "lb"),
  32889. name: "Back",
  32890. image: {
  32891. source: "./media/characters/vaelophis-nyx/back.svg",
  32892. extra: 2484/2361,
  32893. bottom: 0/2484
  32894. }
  32895. },
  32896. feralSide: {
  32897. height: math.unit(2 + 1/12, "feet"),
  32898. weight: math.unit(20, "lb"),
  32899. name: "Feral (Side)",
  32900. image: {
  32901. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  32902. extra: 1721/1581,
  32903. bottom: 70/1791
  32904. }
  32905. },
  32906. feralLazing: {
  32907. height: math.unit(1.08, "feet"),
  32908. weight: math.unit(20, "lb"),
  32909. name: "Feral (Lazing)",
  32910. image: {
  32911. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  32912. extra: 822/822,
  32913. bottom: 248/1070
  32914. }
  32915. },
  32916. ear: {
  32917. height: math.unit(0.416, "feet"),
  32918. name: "Ear",
  32919. image: {
  32920. source: "./media/characters/vaelophis-nyx/ear.svg"
  32921. }
  32922. },
  32923. eye: {
  32924. height: math.unit(0.0748, "feet"),
  32925. name: "Eye",
  32926. image: {
  32927. source: "./media/characters/vaelophis-nyx/eye.svg"
  32928. }
  32929. },
  32930. mouth: {
  32931. height: math.unit(0.378, "feet"),
  32932. name: "Mouth",
  32933. image: {
  32934. source: "./media/characters/vaelophis-nyx/mouth.svg"
  32935. }
  32936. },
  32937. spade: {
  32938. height: math.unit(0.55, "feet"),
  32939. name: "Spade",
  32940. image: {
  32941. source: "./media/characters/vaelophis-nyx/spade.svg"
  32942. }
  32943. },
  32944. },
  32945. [
  32946. {
  32947. name: "Normal",
  32948. height: math.unit(4 + 2/12, "feet"),
  32949. default: true
  32950. },
  32951. ]
  32952. ))
  32953. characterMakers.push(() => makeCharacter(
  32954. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  32955. {
  32956. front: {
  32957. height: math.unit(7, "feet"),
  32958. weight: math.unit(231, "lb"),
  32959. name: "Front",
  32960. image: {
  32961. source: "./media/characters/flux/front.svg",
  32962. extra: 919/871,
  32963. bottom: 0/919
  32964. }
  32965. },
  32966. back: {
  32967. height: math.unit(7, "feet"),
  32968. weight: math.unit(231, "lb"),
  32969. name: "Back",
  32970. image: {
  32971. source: "./media/characters/flux/back.svg",
  32972. extra: 1040/992,
  32973. bottom: 0/1040
  32974. }
  32975. },
  32976. frontDressed: {
  32977. height: math.unit(7, "feet"),
  32978. weight: math.unit(231, "lb"),
  32979. name: "Front (Dressed)",
  32980. image: {
  32981. source: "./media/characters/flux/front-dressed.svg",
  32982. extra: 919/871,
  32983. bottom: 0/919
  32984. }
  32985. },
  32986. feralSide: {
  32987. height: math.unit(5, "feet"),
  32988. weight: math.unit(150, "lb"),
  32989. name: "Feral (Side)",
  32990. image: {
  32991. source: "./media/characters/flux/feral-side.svg",
  32992. extra: 598/528,
  32993. bottom: 28/626
  32994. }
  32995. },
  32996. head: {
  32997. height: math.unit(1.585, "feet"),
  32998. name: "Head",
  32999. image: {
  33000. source: "./media/characters/flux/head.svg"
  33001. }
  33002. },
  33003. headSide: {
  33004. height: math.unit(1.74, "feet"),
  33005. name: "Head (Side)",
  33006. image: {
  33007. source: "./media/characters/flux/head-side.svg"
  33008. }
  33009. },
  33010. headSideFire: {
  33011. height: math.unit(1.76, "feet"),
  33012. name: "Head (Side, Fire)",
  33013. image: {
  33014. source: "./media/characters/flux/head-side-fire.svg"
  33015. }
  33016. },
  33017. },
  33018. [
  33019. {
  33020. name: "Normal",
  33021. height: math.unit(7, "feet"),
  33022. default: true
  33023. },
  33024. ]
  33025. ))
  33026. characterMakers.push(() => makeCharacter(
  33027. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  33028. {
  33029. front: {
  33030. height: math.unit(9, "feet"),
  33031. weight: math.unit(1012, "lb"),
  33032. name: "Front",
  33033. image: {
  33034. source: "./media/characters/ulfra-lupae/front.svg",
  33035. extra: 1083/1011,
  33036. bottom: 67/1150
  33037. }
  33038. },
  33039. },
  33040. [
  33041. {
  33042. name: "Micro",
  33043. height: math.unit(6, "inches")
  33044. },
  33045. {
  33046. name: "Socializing",
  33047. height: math.unit(6 + 5/12, "feet")
  33048. },
  33049. {
  33050. name: "Normal",
  33051. height: math.unit(9, "feet"),
  33052. default: true
  33053. },
  33054. {
  33055. name: "Macro",
  33056. height: math.unit(150, "feet")
  33057. },
  33058. ]
  33059. ))
  33060. characterMakers.push(() => makeCharacter(
  33061. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  33062. {
  33063. front: {
  33064. height: math.unit(5 + 2/12, "feet"),
  33065. weight: math.unit(120, "lb"),
  33066. name: "Front",
  33067. image: {
  33068. source: "./media/characters/timber/front.svg",
  33069. extra: 2814/2705,
  33070. bottom: 181/2995
  33071. }
  33072. },
  33073. },
  33074. [
  33075. {
  33076. name: "Normal",
  33077. height: math.unit(5 + 2/12, "feet"),
  33078. default: true
  33079. },
  33080. ]
  33081. ))
  33082. characterMakers.push(() => makeCharacter(
  33083. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  33084. {
  33085. front: {
  33086. height: math.unit(9, "feet"),
  33087. name: "Front",
  33088. image: {
  33089. source: "./media/characters/nicki/front.svg",
  33090. extra: 1240/990,
  33091. bottom: 45/1285
  33092. },
  33093. form: "anthro",
  33094. default: true
  33095. },
  33096. side: {
  33097. height: math.unit(9, "feet"),
  33098. name: "Side",
  33099. image: {
  33100. source: "./media/characters/nicki/side.svg",
  33101. extra: 1047/973,
  33102. bottom: 61/1108
  33103. },
  33104. form: "anthro"
  33105. },
  33106. back: {
  33107. height: math.unit(9, "feet"),
  33108. name: "Back",
  33109. image: {
  33110. source: "./media/characters/nicki/back.svg",
  33111. extra: 1006/965,
  33112. bottom: 39/1045
  33113. },
  33114. form: "anthro"
  33115. },
  33116. taur: {
  33117. height: math.unit(15, "feet"),
  33118. name: "Taur",
  33119. image: {
  33120. source: "./media/characters/nicki/taur.svg",
  33121. extra: 1592/1347,
  33122. bottom: 0/1592
  33123. },
  33124. form: "taur",
  33125. default: true
  33126. },
  33127. },
  33128. [
  33129. {
  33130. name: "Normal",
  33131. height: math.unit(9, "feet"),
  33132. form: "anthro",
  33133. default: true
  33134. },
  33135. {
  33136. name: "Normal",
  33137. height: math.unit(15, "feet"),
  33138. form: "taur",
  33139. default: true
  33140. }
  33141. ],
  33142. {
  33143. "anthro": {
  33144. name: "Anthro",
  33145. default: true
  33146. },
  33147. "taur": {
  33148. name: "Taur"
  33149. }
  33150. }
  33151. ))
  33152. characterMakers.push(() => makeCharacter(
  33153. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  33154. {
  33155. front: {
  33156. height: math.unit(7 + 10/12, "feet"),
  33157. weight: math.unit(3.5, "tons"),
  33158. name: "Front",
  33159. image: {
  33160. source: "./media/characters/lee/front.svg",
  33161. extra: 1773/1615,
  33162. bottom: 86/1859
  33163. }
  33164. },
  33165. hand: {
  33166. height: math.unit(1.78, "feet"),
  33167. name: "Hand",
  33168. image: {
  33169. source: "./media/characters/lee/hand.svg"
  33170. }
  33171. },
  33172. maw: {
  33173. height: math.unit(1.18, "feet"),
  33174. name: "Maw",
  33175. image: {
  33176. source: "./media/characters/lee/maw.svg"
  33177. }
  33178. },
  33179. },
  33180. [
  33181. {
  33182. name: "Normal",
  33183. height: math.unit(7 + 10/12, "feet"),
  33184. default: true
  33185. },
  33186. ]
  33187. ))
  33188. characterMakers.push(() => makeCharacter(
  33189. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  33190. {
  33191. front: {
  33192. height: math.unit(9, "feet"),
  33193. name: "Front",
  33194. image: {
  33195. source: "./media/characters/guti/front.svg",
  33196. extra: 4551/4355,
  33197. bottom: 123/4674
  33198. }
  33199. },
  33200. tongue: {
  33201. height: math.unit(1, "feet"),
  33202. name: "Tongue",
  33203. image: {
  33204. source: "./media/characters/guti/tongue.svg"
  33205. }
  33206. },
  33207. paw: {
  33208. height: math.unit(1.18, "feet"),
  33209. name: "Paw",
  33210. image: {
  33211. source: "./media/characters/guti/paw.svg"
  33212. }
  33213. },
  33214. },
  33215. [
  33216. {
  33217. name: "Normal",
  33218. height: math.unit(9, "feet"),
  33219. default: true
  33220. },
  33221. ]
  33222. ))
  33223. characterMakers.push(() => makeCharacter(
  33224. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  33225. {
  33226. side: {
  33227. height: math.unit(5, "meters"),
  33228. name: "Side",
  33229. image: {
  33230. source: "./media/characters/vesper/side.svg",
  33231. extra: 1605/1518,
  33232. bottom: 0/1605
  33233. }
  33234. },
  33235. },
  33236. [
  33237. {
  33238. name: "Small",
  33239. height: math.unit(5, "meters")
  33240. },
  33241. {
  33242. name: "Sage",
  33243. height: math.unit(100, "meters"),
  33244. default: true
  33245. },
  33246. {
  33247. name: "Fun Size",
  33248. height: math.unit(600, "meters")
  33249. },
  33250. {
  33251. name: "Goddess",
  33252. height: math.unit(20000, "km")
  33253. },
  33254. {
  33255. name: "Maximum",
  33256. height: math.unit(5, "galaxies")
  33257. },
  33258. ]
  33259. ))
  33260. characterMakers.push(() => makeCharacter(
  33261. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  33262. {
  33263. front: {
  33264. height: math.unit(6 + 3/12, "feet"),
  33265. weight: math.unit(190, "lb"),
  33266. name: "Front",
  33267. image: {
  33268. source: "./media/characters/gawain/front.svg",
  33269. extra: 2222/2139,
  33270. bottom: 90/2312
  33271. }
  33272. },
  33273. back: {
  33274. height: math.unit(6 + 3/12, "feet"),
  33275. weight: math.unit(190, "lb"),
  33276. name: "Back",
  33277. image: {
  33278. source: "./media/characters/gawain/back.svg",
  33279. extra: 2199/2111,
  33280. bottom: 73/2272
  33281. }
  33282. },
  33283. },
  33284. [
  33285. {
  33286. name: "Normal",
  33287. height: math.unit(6 + 3/12, "feet"),
  33288. default: true
  33289. },
  33290. ]
  33291. ))
  33292. characterMakers.push(() => makeCharacter(
  33293. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  33294. {
  33295. side: {
  33296. height: math.unit(3.5, "meters"),
  33297. weight: math.unit(16000, "lb"),
  33298. name: "Side",
  33299. image: {
  33300. source: "./media/characters/dascalti/side.svg",
  33301. extra: 392/273,
  33302. bottom: 47/439
  33303. }
  33304. },
  33305. breath: {
  33306. height: math.unit(7.4, "feet"),
  33307. name: "Breath",
  33308. image: {
  33309. source: "./media/characters/dascalti/breath.svg"
  33310. }
  33311. },
  33312. fed: {
  33313. height: math.unit(3.6, "meters"),
  33314. weight: math.unit(16000, "lb"),
  33315. name: "Fed",
  33316. image: {
  33317. source: "./media/characters/dascalti/fed.svg",
  33318. extra: 1419/820,
  33319. bottom: 95/1514
  33320. }
  33321. },
  33322. },
  33323. [
  33324. {
  33325. name: "Normal",
  33326. height: math.unit(3.5, "meters"),
  33327. default: true
  33328. },
  33329. ]
  33330. ))
  33331. characterMakers.push(() => makeCharacter(
  33332. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  33333. {
  33334. front: {
  33335. height: math.unit(3 + 5/12, "feet"),
  33336. name: "Front",
  33337. image: {
  33338. source: "./media/characters/mauve/front.svg",
  33339. extra: 1126/1033,
  33340. bottom: 65/1191
  33341. }
  33342. },
  33343. side: {
  33344. height: math.unit(3 + 5/12, "feet"),
  33345. name: "Side",
  33346. image: {
  33347. source: "./media/characters/mauve/side.svg",
  33348. extra: 1089/1001,
  33349. bottom: 29/1118
  33350. }
  33351. },
  33352. back: {
  33353. height: math.unit(3 + 5/12, "feet"),
  33354. name: "Back",
  33355. image: {
  33356. source: "./media/characters/mauve/back.svg",
  33357. extra: 1173/1053,
  33358. bottom: 109/1282
  33359. }
  33360. },
  33361. },
  33362. [
  33363. {
  33364. name: "Normal",
  33365. height: math.unit(3 + 5/12, "feet"),
  33366. default: true
  33367. },
  33368. ]
  33369. ))
  33370. characterMakers.push(() => makeCharacter(
  33371. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  33372. {
  33373. front: {
  33374. height: math.unit(6 + 3/12, "feet"),
  33375. weight: math.unit(430, "lb"),
  33376. name: "Front",
  33377. image: {
  33378. source: "./media/characters/carlos/front.svg",
  33379. extra: 1964/1913,
  33380. bottom: 70/2034
  33381. }
  33382. },
  33383. },
  33384. [
  33385. {
  33386. name: "Normal",
  33387. height: math.unit(6 + 3/12, "feet"),
  33388. default: true
  33389. },
  33390. ]
  33391. ))
  33392. characterMakers.push(() => makeCharacter(
  33393. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  33394. {
  33395. back: {
  33396. height: math.unit(5 + 10/12, "feet"),
  33397. weight: math.unit(200, "lb"),
  33398. name: "Back",
  33399. image: {
  33400. source: "./media/characters/jax/back.svg",
  33401. extra: 764/739,
  33402. bottom: 25/789
  33403. }
  33404. },
  33405. },
  33406. [
  33407. {
  33408. name: "Normal",
  33409. height: math.unit(5 + 10/12, "feet"),
  33410. default: true
  33411. },
  33412. ]
  33413. ))
  33414. characterMakers.push(() => makeCharacter(
  33415. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  33416. {
  33417. front: {
  33418. height: math.unit(8, "feet"),
  33419. weight: math.unit(250, "lb"),
  33420. name: "Front",
  33421. image: {
  33422. source: "./media/characters/eikthynir/front.svg",
  33423. extra: 1332/1166,
  33424. bottom: 82/1414
  33425. }
  33426. },
  33427. back: {
  33428. height: math.unit(8, "feet"),
  33429. weight: math.unit(250, "lb"),
  33430. name: "Back",
  33431. image: {
  33432. source: "./media/characters/eikthynir/back.svg",
  33433. extra: 1342/1190,
  33434. bottom: 19/1361
  33435. }
  33436. },
  33437. dick: {
  33438. height: math.unit(2.35, "feet"),
  33439. name: "Dick",
  33440. image: {
  33441. source: "./media/characters/eikthynir/dick.svg"
  33442. }
  33443. },
  33444. },
  33445. [
  33446. {
  33447. name: "Normal",
  33448. height: math.unit(8, "feet"),
  33449. default: true
  33450. },
  33451. ]
  33452. ))
  33453. characterMakers.push(() => makeCharacter(
  33454. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  33455. {
  33456. front: {
  33457. height: math.unit(99, "meters"),
  33458. weight: math.unit(13000, "tons"),
  33459. name: "Front",
  33460. image: {
  33461. source: "./media/characters/zlmos/front.svg",
  33462. extra: 2202/1992,
  33463. bottom: 315/2517
  33464. }
  33465. },
  33466. },
  33467. [
  33468. {
  33469. name: "Macro",
  33470. height: math.unit(99, "meters"),
  33471. default: true
  33472. },
  33473. ]
  33474. ))
  33475. characterMakers.push(() => makeCharacter(
  33476. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  33477. {
  33478. front: {
  33479. height: math.unit(6 + 5/12, "feet"),
  33480. name: "Front",
  33481. image: {
  33482. source: "./media/characters/purri/front.svg",
  33483. extra: 1698/1610,
  33484. bottom: 32/1730
  33485. }
  33486. },
  33487. frontAlt: {
  33488. height: math.unit(6 + 5/12, "feet"),
  33489. name: "Front (Alt)",
  33490. image: {
  33491. source: "./media/characters/purri/front-alt.svg",
  33492. extra: 450/420,
  33493. bottom: 26/476
  33494. }
  33495. },
  33496. boots: {
  33497. height: math.unit(5.5, "feet"),
  33498. name: "Boots",
  33499. image: {
  33500. source: "./media/characters/purri/boots.svg",
  33501. extra: 905/853,
  33502. bottom: 18/923
  33503. }
  33504. },
  33505. lying: {
  33506. height: math.unit(2, "feet"),
  33507. name: "Lying",
  33508. image: {
  33509. source: "./media/characters/purri/lying.svg",
  33510. extra: 940/843,
  33511. bottom: 146/1086
  33512. }
  33513. },
  33514. devious: {
  33515. height: math.unit(1.77, "feet"),
  33516. name: "Devious",
  33517. image: {
  33518. source: "./media/characters/purri/devious.svg",
  33519. extra: 1440/1155,
  33520. bottom: 147/1587
  33521. }
  33522. },
  33523. bean: {
  33524. height: math.unit(1.94, "feet"),
  33525. name: "Bean",
  33526. image: {
  33527. source: "./media/characters/purri/bean.svg"
  33528. }
  33529. },
  33530. },
  33531. [
  33532. {
  33533. name: "Micro",
  33534. height: math.unit(1, "mm")
  33535. },
  33536. {
  33537. name: "Normal",
  33538. height: math.unit(6 + 5/12, "feet"),
  33539. default: true
  33540. },
  33541. {
  33542. name: "Macro :3c",
  33543. height: math.unit(2, "miles")
  33544. },
  33545. ]
  33546. ))
  33547. characterMakers.push(() => makeCharacter(
  33548. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  33549. {
  33550. front: {
  33551. height: math.unit(6 + 2/12, "feet"),
  33552. weight: math.unit(250, "lb"),
  33553. name: "Front",
  33554. image: {
  33555. source: "./media/characters/moonlight/front.svg",
  33556. extra: 1044/908,
  33557. bottom: 56/1100
  33558. }
  33559. },
  33560. feral: {
  33561. height: math.unit(3 + 1/12, "feet"),
  33562. weight: math.unit(50, "kg"),
  33563. name: "Feral",
  33564. image: {
  33565. source: "./media/characters/moonlight/feral.svg",
  33566. extra: 3705/2791,
  33567. bottom: 145/3850
  33568. }
  33569. },
  33570. paw: {
  33571. height: math.unit(1, "feet"),
  33572. name: "Paw",
  33573. image: {
  33574. source: "./media/characters/moonlight/paw.svg"
  33575. }
  33576. },
  33577. paws: {
  33578. height: math.unit(0.98, "feet"),
  33579. name: "Paws",
  33580. image: {
  33581. source: "./media/characters/moonlight/paws.svg",
  33582. extra: 939/939,
  33583. bottom: 50/989
  33584. }
  33585. },
  33586. mouth: {
  33587. height: math.unit(0.48, "feet"),
  33588. name: "Mouth",
  33589. image: {
  33590. source: "./media/characters/moonlight/mouth.svg"
  33591. }
  33592. },
  33593. dick: {
  33594. height: math.unit(1.46, "feet"),
  33595. name: "Dick",
  33596. image: {
  33597. source: "./media/characters/moonlight/dick.svg"
  33598. }
  33599. },
  33600. },
  33601. [
  33602. {
  33603. name: "Normal",
  33604. height: math.unit(6 + 2/12, "feet"),
  33605. default: true
  33606. },
  33607. {
  33608. name: "Macro",
  33609. height: math.unit(300, "feet")
  33610. },
  33611. {
  33612. name: "Macro+",
  33613. height: math.unit(1, "mile")
  33614. },
  33615. {
  33616. name: "Mt. Moon",
  33617. height: math.unit(5, "miles")
  33618. },
  33619. {
  33620. name: "Megamacro",
  33621. height: math.unit(15, "miles")
  33622. },
  33623. ]
  33624. ))
  33625. characterMakers.push(() => makeCharacter(
  33626. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  33627. {
  33628. back: {
  33629. height: math.unit(6, "feet"),
  33630. weight: math.unit(150, "lb"),
  33631. name: "Back",
  33632. image: {
  33633. source: "./media/characters/sylen/back.svg",
  33634. extra: 1335/1273,
  33635. bottom: 107/1442
  33636. }
  33637. },
  33638. },
  33639. [
  33640. {
  33641. name: "Normal",
  33642. height: math.unit(5 + 5/12, "feet")
  33643. },
  33644. {
  33645. name: "Megamacro",
  33646. height: math.unit(3, "miles"),
  33647. default: true
  33648. },
  33649. ]
  33650. ))
  33651. characterMakers.push(() => makeCharacter(
  33652. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  33653. {
  33654. front: {
  33655. height: math.unit(6, "feet"),
  33656. weight: math.unit(190, "lb"),
  33657. name: "Front",
  33658. image: {
  33659. source: "./media/characters/huttser/front.svg",
  33660. extra: 1152/1058,
  33661. bottom: 23/1175
  33662. }
  33663. },
  33664. side: {
  33665. height: math.unit(6, "feet"),
  33666. weight: math.unit(190, "lb"),
  33667. name: "Side",
  33668. image: {
  33669. source: "./media/characters/huttser/side.svg",
  33670. extra: 1174/1065,
  33671. bottom: 18/1192
  33672. }
  33673. },
  33674. back: {
  33675. height: math.unit(6, "feet"),
  33676. weight: math.unit(190, "lb"),
  33677. name: "Back",
  33678. image: {
  33679. source: "./media/characters/huttser/back.svg",
  33680. extra: 1158/1056,
  33681. bottom: 12/1170
  33682. }
  33683. },
  33684. },
  33685. [
  33686. ]
  33687. ))
  33688. characterMakers.push(() => makeCharacter(
  33689. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  33690. {
  33691. side: {
  33692. height: math.unit(12 + 9/12, "feet"),
  33693. weight: math.unit(15000, "lb"),
  33694. name: "Side",
  33695. image: {
  33696. source: "./media/characters/faan/side.svg",
  33697. extra: 2747/2697,
  33698. bottom: 0/2747
  33699. }
  33700. },
  33701. front: {
  33702. height: math.unit(12 + 9/12, "feet"),
  33703. weight: math.unit(15000, "lb"),
  33704. name: "Front",
  33705. image: {
  33706. source: "./media/characters/faan/front.svg",
  33707. extra: 607/571,
  33708. bottom: 24/631
  33709. }
  33710. },
  33711. head: {
  33712. height: math.unit(2.85, "feet"),
  33713. name: "Head",
  33714. image: {
  33715. source: "./media/characters/faan/head.svg"
  33716. }
  33717. },
  33718. headAlt: {
  33719. height: math.unit(3.13, "feet"),
  33720. name: "Head-alt",
  33721. image: {
  33722. source: "./media/characters/faan/head-alt.svg"
  33723. }
  33724. },
  33725. },
  33726. [
  33727. {
  33728. name: "Normal",
  33729. height: math.unit(12 + 9/12, "feet"),
  33730. default: true
  33731. },
  33732. ]
  33733. ))
  33734. characterMakers.push(() => makeCharacter(
  33735. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  33736. {
  33737. front: {
  33738. height: math.unit(6, "feet"),
  33739. weight: math.unit(300, "lb"),
  33740. name: "Front",
  33741. image: {
  33742. source: "./media/characters/tanio/front.svg",
  33743. extra: 711/673,
  33744. bottom: 25/736
  33745. }
  33746. },
  33747. },
  33748. [
  33749. {
  33750. name: "Normal",
  33751. height: math.unit(6, "feet"),
  33752. default: true
  33753. },
  33754. ]
  33755. ))
  33756. characterMakers.push(() => makeCharacter(
  33757. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  33758. {
  33759. front: {
  33760. height: math.unit(3, "inches"),
  33761. name: "Front",
  33762. image: {
  33763. source: "./media/characters/noboru/front.svg",
  33764. extra: 1039/932,
  33765. bottom: 18/1057
  33766. }
  33767. },
  33768. },
  33769. [
  33770. {
  33771. name: "Micro",
  33772. height: math.unit(3, "inches"),
  33773. default: true
  33774. },
  33775. ]
  33776. ))
  33777. characterMakers.push(() => makeCharacter(
  33778. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  33779. {
  33780. front: {
  33781. height: math.unit(1.85, "meters"),
  33782. weight: math.unit(80, "kg"),
  33783. name: "Front",
  33784. image: {
  33785. source: "./media/characters/daniel-barrett/front.svg",
  33786. extra: 355/337,
  33787. bottom: 9/364
  33788. }
  33789. },
  33790. },
  33791. [
  33792. {
  33793. name: "Pico",
  33794. height: math.unit(0.0433, "mm")
  33795. },
  33796. {
  33797. name: "Nano",
  33798. height: math.unit(1.5, "mm")
  33799. },
  33800. {
  33801. name: "Micro",
  33802. height: math.unit(5.3, "cm"),
  33803. default: true
  33804. },
  33805. {
  33806. name: "Normal",
  33807. height: math.unit(1.85, "meters")
  33808. },
  33809. {
  33810. name: "Macro",
  33811. height: math.unit(64.7, "meters")
  33812. },
  33813. {
  33814. name: "Megamacro",
  33815. height: math.unit(2.26, "km")
  33816. },
  33817. {
  33818. name: "Gigamacro",
  33819. height: math.unit(79, "km")
  33820. },
  33821. {
  33822. name: "Teramacro",
  33823. height: math.unit(2765, "km")
  33824. },
  33825. {
  33826. name: "Petamacro",
  33827. height: math.unit(96678, "km")
  33828. },
  33829. ]
  33830. ))
  33831. characterMakers.push(() => makeCharacter(
  33832. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  33833. {
  33834. front: {
  33835. height: math.unit(30, "meters"),
  33836. weight: math.unit(400, "tons"),
  33837. name: "Front",
  33838. image: {
  33839. source: "./media/characters/zeel/front.svg",
  33840. extra: 2599/2599,
  33841. bottom: 226/2825
  33842. }
  33843. },
  33844. },
  33845. [
  33846. {
  33847. name: "Macro",
  33848. height: math.unit(30, "meters"),
  33849. default: true
  33850. },
  33851. ]
  33852. ))
  33853. characterMakers.push(() => makeCharacter(
  33854. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  33855. {
  33856. front: {
  33857. height: math.unit(6 + 7/12, "feet"),
  33858. weight: math.unit(210, "lb"),
  33859. name: "Front",
  33860. image: {
  33861. source: "./media/characters/tarn/front.svg",
  33862. extra: 3517/3220,
  33863. bottom: 91/3608
  33864. }
  33865. },
  33866. back: {
  33867. height: math.unit(6 + 7/12, "feet"),
  33868. weight: math.unit(210, "lb"),
  33869. name: "Back",
  33870. image: {
  33871. source: "./media/characters/tarn/back.svg",
  33872. extra: 3566/3241,
  33873. bottom: 34/3600
  33874. }
  33875. },
  33876. dick: {
  33877. height: math.unit(1.65, "feet"),
  33878. name: "Dick",
  33879. image: {
  33880. source: "./media/characters/tarn/dick.svg"
  33881. }
  33882. },
  33883. paw: {
  33884. height: math.unit(1.80, "feet"),
  33885. name: "Paw",
  33886. image: {
  33887. source: "./media/characters/tarn/paw.svg"
  33888. }
  33889. },
  33890. tongue: {
  33891. height: math.unit(0.97, "feet"),
  33892. name: "Tongue",
  33893. image: {
  33894. source: "./media/characters/tarn/tongue.svg"
  33895. }
  33896. },
  33897. },
  33898. [
  33899. {
  33900. name: "Micro",
  33901. height: math.unit(4, "inches")
  33902. },
  33903. {
  33904. name: "Normal",
  33905. height: math.unit(6 + 7/12, "feet"),
  33906. default: true
  33907. },
  33908. {
  33909. name: "Macro",
  33910. height: math.unit(300, "feet")
  33911. },
  33912. ]
  33913. ))
  33914. characterMakers.push(() => makeCharacter(
  33915. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  33916. {
  33917. front: {
  33918. height: math.unit(5 + 7/12, "feet"),
  33919. weight: math.unit(80, "kg"),
  33920. name: "Front",
  33921. image: {
  33922. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  33923. extra: 3023/2865,
  33924. bottom: 33/3056
  33925. }
  33926. },
  33927. back: {
  33928. height: math.unit(5 + 7/12, "feet"),
  33929. weight: math.unit(80, "kg"),
  33930. name: "Back",
  33931. image: {
  33932. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  33933. extra: 3020/2886,
  33934. bottom: 30/3050
  33935. }
  33936. },
  33937. dick: {
  33938. height: math.unit(0.98, "feet"),
  33939. name: "Dick",
  33940. image: {
  33941. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  33942. }
  33943. },
  33944. anatomy: {
  33945. height: math.unit(2.86, "feet"),
  33946. name: "Anatomy",
  33947. image: {
  33948. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  33949. }
  33950. },
  33951. },
  33952. [
  33953. {
  33954. name: "Really Small",
  33955. height: math.unit(2, "inches")
  33956. },
  33957. {
  33958. name: "Micro",
  33959. height: math.unit(5.583, "inches")
  33960. },
  33961. {
  33962. name: "Normal",
  33963. height: math.unit(5 + 7/12, "feet"),
  33964. default: true
  33965. },
  33966. {
  33967. name: "Macro",
  33968. height: math.unit(67, "feet")
  33969. },
  33970. {
  33971. name: "Megamacro",
  33972. height: math.unit(134, "feet")
  33973. },
  33974. ]
  33975. ))
  33976. characterMakers.push(() => makeCharacter(
  33977. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  33978. {
  33979. front: {
  33980. height: math.unit(9, "feet"),
  33981. weight: math.unit(120, "lb"),
  33982. name: "Front",
  33983. image: {
  33984. source: "./media/characters/sally/front.svg",
  33985. extra: 1506/1349,
  33986. bottom: 66/1572
  33987. }
  33988. },
  33989. },
  33990. [
  33991. {
  33992. name: "Normal",
  33993. height: math.unit(9, "feet"),
  33994. default: true
  33995. },
  33996. ]
  33997. ))
  33998. characterMakers.push(() => makeCharacter(
  33999. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  34000. {
  34001. front: {
  34002. height: math.unit(8, "feet"),
  34003. weight: math.unit(900, "lb"),
  34004. name: "Front",
  34005. image: {
  34006. source: "./media/characters/owen/front.svg",
  34007. extra: 1761/1657,
  34008. bottom: 74/1835
  34009. }
  34010. },
  34011. side: {
  34012. height: math.unit(8, "feet"),
  34013. weight: math.unit(900, "lb"),
  34014. name: "Side",
  34015. image: {
  34016. source: "./media/characters/owen/side.svg",
  34017. extra: 1797/1734,
  34018. bottom: 30/1827
  34019. }
  34020. },
  34021. back: {
  34022. height: math.unit(8, "feet"),
  34023. weight: math.unit(900, "lb"),
  34024. name: "Back",
  34025. image: {
  34026. source: "./media/characters/owen/back.svg",
  34027. extra: 1796/1706,
  34028. bottom: 59/1855
  34029. }
  34030. },
  34031. maw: {
  34032. height: math.unit(1.76, "feet"),
  34033. name: "Maw",
  34034. image: {
  34035. source: "./media/characters/owen/maw.svg"
  34036. }
  34037. },
  34038. },
  34039. [
  34040. {
  34041. name: "Normal",
  34042. height: math.unit(8, "feet"),
  34043. default: true
  34044. },
  34045. ]
  34046. ))
  34047. characterMakers.push(() => makeCharacter(
  34048. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  34049. {
  34050. front: {
  34051. height: math.unit(4, "feet"),
  34052. weight: math.unit(400, "lb"),
  34053. name: "Front",
  34054. image: {
  34055. source: "./media/characters/ryth/front.svg",
  34056. extra: 1920/1748,
  34057. bottom: 42/1962
  34058. }
  34059. },
  34060. back: {
  34061. height: math.unit(4, "feet"),
  34062. weight: math.unit(400, "lb"),
  34063. name: "Back",
  34064. image: {
  34065. source: "./media/characters/ryth/back.svg",
  34066. extra: 1897/1690,
  34067. bottom: 89/1986
  34068. }
  34069. },
  34070. mouth: {
  34071. height: math.unit(1.39, "feet"),
  34072. name: "Mouth",
  34073. image: {
  34074. source: "./media/characters/ryth/mouth.svg"
  34075. }
  34076. },
  34077. tailmaw: {
  34078. height: math.unit(1.23, "feet"),
  34079. name: "Tailmaw",
  34080. image: {
  34081. source: "./media/characters/ryth/tailmaw.svg"
  34082. }
  34083. },
  34084. goia: {
  34085. height: math.unit(4, "meters"),
  34086. weight: math.unit(10800, "lb"),
  34087. name: "Goia",
  34088. image: {
  34089. source: "./media/characters/ryth/goia.svg",
  34090. extra: 745/640,
  34091. bottom: 107/852
  34092. }
  34093. },
  34094. goiaFront: {
  34095. height: math.unit(4, "meters"),
  34096. weight: math.unit(10800, "lb"),
  34097. name: "Goia (Front)",
  34098. image: {
  34099. source: "./media/characters/ryth/goia-front.svg",
  34100. extra: 750/586,
  34101. bottom: 114/864
  34102. }
  34103. },
  34104. goiaMaw: {
  34105. height: math.unit(5.55, "feet"),
  34106. name: "Goia Maw",
  34107. image: {
  34108. source: "./media/characters/ryth/goia-maw.svg"
  34109. }
  34110. },
  34111. goiaForepaw: {
  34112. height: math.unit(3.5, "feet"),
  34113. name: "Goia Forepaw",
  34114. image: {
  34115. source: "./media/characters/ryth/goia-forepaw.svg"
  34116. }
  34117. },
  34118. goiaHindpaw: {
  34119. height: math.unit(5.55, "feet"),
  34120. name: "Goia Hindpaw",
  34121. image: {
  34122. source: "./media/characters/ryth/goia-hindpaw.svg"
  34123. }
  34124. },
  34125. },
  34126. [
  34127. {
  34128. name: "Normal",
  34129. height: math.unit(4, "feet"),
  34130. default: true
  34131. },
  34132. ]
  34133. ))
  34134. characterMakers.push(() => makeCharacter(
  34135. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  34136. {
  34137. front: {
  34138. height: math.unit(7, "feet"),
  34139. weight: math.unit(180, "lb"),
  34140. name: "Front",
  34141. image: {
  34142. source: "./media/characters/necrolance/front.svg",
  34143. extra: 1062/947,
  34144. bottom: 41/1103
  34145. }
  34146. },
  34147. back: {
  34148. height: math.unit(7, "feet"),
  34149. weight: math.unit(180, "lb"),
  34150. name: "Back",
  34151. image: {
  34152. source: "./media/characters/necrolance/back.svg",
  34153. extra: 1045/984,
  34154. bottom: 14/1059
  34155. }
  34156. },
  34157. wing: {
  34158. height: math.unit(2.67, "feet"),
  34159. name: "Wing",
  34160. image: {
  34161. source: "./media/characters/necrolance/wing.svg"
  34162. }
  34163. },
  34164. },
  34165. [
  34166. {
  34167. name: "Normal",
  34168. height: math.unit(7, "feet"),
  34169. default: true
  34170. },
  34171. ]
  34172. ))
  34173. characterMakers.push(() => makeCharacter(
  34174. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  34175. {
  34176. front: {
  34177. height: math.unit(76, "meters"),
  34178. weight: math.unit(30000, "tons"),
  34179. name: "Front",
  34180. image: {
  34181. source: "./media/characters/tyler/front.svg",
  34182. extra: 1640/1640,
  34183. bottom: 114/1754
  34184. }
  34185. },
  34186. },
  34187. [
  34188. {
  34189. name: "Macro",
  34190. height: math.unit(76, "meters"),
  34191. default: true
  34192. },
  34193. ]
  34194. ))
  34195. characterMakers.push(() => makeCharacter(
  34196. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  34197. {
  34198. front: {
  34199. height: math.unit(4 + 11/12, "feet"),
  34200. weight: math.unit(132, "lb"),
  34201. name: "Front",
  34202. image: {
  34203. source: "./media/characters/icey/front.svg",
  34204. extra: 2750/2550,
  34205. bottom: 33/2783
  34206. }
  34207. },
  34208. back: {
  34209. height: math.unit(4 + 11/12, "feet"),
  34210. weight: math.unit(132, "lb"),
  34211. name: "Back",
  34212. image: {
  34213. source: "./media/characters/icey/back.svg",
  34214. extra: 2624/2481,
  34215. bottom: 35/2659
  34216. }
  34217. },
  34218. },
  34219. [
  34220. {
  34221. name: "Normal",
  34222. height: math.unit(4 + 11/12, "feet"),
  34223. default: true
  34224. },
  34225. ]
  34226. ))
  34227. characterMakers.push(() => makeCharacter(
  34228. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  34229. {
  34230. front: {
  34231. height: math.unit(100, "feet"),
  34232. weight: math.unit(0, "lb"),
  34233. name: "Front",
  34234. image: {
  34235. source: "./media/characters/smile/front.svg",
  34236. extra: 2983/2912,
  34237. bottom: 162/3145
  34238. }
  34239. },
  34240. back: {
  34241. height: math.unit(100, "feet"),
  34242. weight: math.unit(0, "lb"),
  34243. name: "Back",
  34244. image: {
  34245. source: "./media/characters/smile/back.svg",
  34246. extra: 3143/3031,
  34247. bottom: 91/3234
  34248. }
  34249. },
  34250. head: {
  34251. height: math.unit(26.3, "feet"),
  34252. weight: math.unit(0, "lb"),
  34253. name: "Head",
  34254. image: {
  34255. source: "./media/characters/smile/head.svg"
  34256. }
  34257. },
  34258. collar: {
  34259. height: math.unit(5.3, "feet"),
  34260. weight: math.unit(0, "lb"),
  34261. name: "Collar",
  34262. image: {
  34263. source: "./media/characters/smile/collar.svg"
  34264. }
  34265. },
  34266. },
  34267. [
  34268. {
  34269. name: "Macro",
  34270. height: math.unit(100, "feet"),
  34271. default: true
  34272. },
  34273. ]
  34274. ))
  34275. characterMakers.push(() => makeCharacter(
  34276. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  34277. {
  34278. dragon: {
  34279. height: math.unit(26, "feet"),
  34280. weight: math.unit(36, "tons"),
  34281. name: "Dragon",
  34282. image: {
  34283. source: "./media/characters/arimphae/dragon.svg",
  34284. extra: 1574/983,
  34285. bottom: 357/1931
  34286. }
  34287. },
  34288. drake: {
  34289. height: math.unit(9, "feet"),
  34290. weight: math.unit(1.5, "tons"),
  34291. name: "Drake",
  34292. image: {
  34293. source: "./media/characters/arimphae/drake.svg",
  34294. extra: 1120/925,
  34295. bottom: 435/1555
  34296. }
  34297. },
  34298. },
  34299. [
  34300. {
  34301. name: "Small",
  34302. height: math.unit(26*5/9, "feet")
  34303. },
  34304. {
  34305. name: "Normal",
  34306. height: math.unit(26, "feet"),
  34307. default: true
  34308. },
  34309. ]
  34310. ))
  34311. characterMakers.push(() => makeCharacter(
  34312. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  34313. {
  34314. front: {
  34315. height: math.unit(8 + 9/12, "feet"),
  34316. name: "Front",
  34317. image: {
  34318. source: "./media/characters/xander/front.svg",
  34319. extra: 1237/974,
  34320. bottom: 94/1331
  34321. }
  34322. },
  34323. },
  34324. [
  34325. {
  34326. name: "Normal",
  34327. height: math.unit(8 + 9/12, "feet"),
  34328. default: true
  34329. },
  34330. {
  34331. name: "Gaze Grabber",
  34332. height: math.unit(13 + 8/12, "feet")
  34333. },
  34334. {
  34335. name: "Jaw Dropper",
  34336. height: math.unit(27, "feet")
  34337. },
  34338. {
  34339. name: "Show Stopper",
  34340. height: math.unit(136, "feet")
  34341. },
  34342. {
  34343. name: "Superstar",
  34344. height: math.unit(1.9e6, "miles")
  34345. },
  34346. ]
  34347. ))
  34348. characterMakers.push(() => makeCharacter(
  34349. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  34350. {
  34351. side: {
  34352. height: math.unit(2100, "feet"),
  34353. name: "Side",
  34354. image: {
  34355. source: "./media/characters/osiris/side.svg",
  34356. extra: 1105/939,
  34357. bottom: 167/1272
  34358. }
  34359. },
  34360. },
  34361. [
  34362. {
  34363. name: "Macro",
  34364. height: math.unit(2100, "feet"),
  34365. default: true
  34366. },
  34367. ]
  34368. ))
  34369. characterMakers.push(() => makeCharacter(
  34370. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  34371. {
  34372. front: {
  34373. height: math.unit(6 + 8/12, "feet"),
  34374. weight: math.unit(225, "lb"),
  34375. name: "Front",
  34376. image: {
  34377. source: "./media/characters/rhys-londe/front.svg",
  34378. extra: 2258/2141,
  34379. bottom: 188/2446
  34380. }
  34381. },
  34382. back: {
  34383. height: math.unit(6 + 8/12, "feet"),
  34384. weight: math.unit(225, "lb"),
  34385. name: "Back",
  34386. image: {
  34387. source: "./media/characters/rhys-londe/back.svg",
  34388. extra: 2237/2137,
  34389. bottom: 63/2300
  34390. }
  34391. },
  34392. frontNsfw: {
  34393. height: math.unit(6 + 8/12, "feet"),
  34394. weight: math.unit(225, "lb"),
  34395. name: "Front (NSFW)",
  34396. image: {
  34397. source: "./media/characters/rhys-londe/front-nsfw.svg",
  34398. extra: 2258/2141,
  34399. bottom: 188/2446
  34400. }
  34401. },
  34402. backNsfw: {
  34403. height: math.unit(6 + 8/12, "feet"),
  34404. weight: math.unit(225, "lb"),
  34405. name: "Back (NSFW)",
  34406. image: {
  34407. source: "./media/characters/rhys-londe/back-nsfw.svg",
  34408. extra: 2237/2137,
  34409. bottom: 63/2300
  34410. }
  34411. },
  34412. dick: {
  34413. height: math.unit(30, "inches"),
  34414. name: "Dick",
  34415. image: {
  34416. source: "./media/characters/rhys-londe/dick.svg"
  34417. }
  34418. },
  34419. maw: {
  34420. height: math.unit(1.6, "feet"),
  34421. name: "Maw",
  34422. image: {
  34423. source: "./media/characters/rhys-londe/maw.svg"
  34424. }
  34425. },
  34426. },
  34427. [
  34428. {
  34429. name: "Normal",
  34430. height: math.unit(6 + 8/12, "feet"),
  34431. default: true
  34432. },
  34433. ]
  34434. ))
  34435. characterMakers.push(() => makeCharacter(
  34436. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  34437. {
  34438. front: {
  34439. height: math.unit(3 + 10/12, "feet"),
  34440. weight: math.unit(90, "lb"),
  34441. name: "Front",
  34442. image: {
  34443. source: "./media/characters/taivas-ensim/front.svg",
  34444. extra: 1327/1216,
  34445. bottom: 96/1423
  34446. }
  34447. },
  34448. back: {
  34449. height: math.unit(3 + 10/12, "feet"),
  34450. weight: math.unit(90, "lb"),
  34451. name: "Back",
  34452. image: {
  34453. source: "./media/characters/taivas-ensim/back.svg",
  34454. extra: 1355/1247,
  34455. bottom: 11/1366
  34456. }
  34457. },
  34458. frontNsfw: {
  34459. height: math.unit(3 + 10/12, "feet"),
  34460. weight: math.unit(90, "lb"),
  34461. name: "Front (NSFW)",
  34462. image: {
  34463. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  34464. extra: 1327/1216,
  34465. bottom: 96/1423
  34466. }
  34467. },
  34468. backNsfw: {
  34469. height: math.unit(3 + 10/12, "feet"),
  34470. weight: math.unit(90, "lb"),
  34471. name: "Back (NSFW)",
  34472. image: {
  34473. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  34474. extra: 1355/1247,
  34475. bottom: 11/1366
  34476. }
  34477. },
  34478. },
  34479. [
  34480. {
  34481. name: "Normal",
  34482. height: math.unit(3 + 10/12, "feet"),
  34483. default: true
  34484. },
  34485. ]
  34486. ))
  34487. characterMakers.push(() => makeCharacter(
  34488. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  34489. {
  34490. front: {
  34491. height: math.unit(9 + 6/12, "feet"),
  34492. weight: math.unit(940, "lb"),
  34493. name: "Front",
  34494. image: {
  34495. source: "./media/characters/byliss/front.svg",
  34496. extra: 1327/1290,
  34497. bottom: 82/1409
  34498. }
  34499. },
  34500. back: {
  34501. height: math.unit(9 + 6/12, "feet"),
  34502. weight: math.unit(940, "lb"),
  34503. name: "Back",
  34504. image: {
  34505. source: "./media/characters/byliss/back.svg",
  34506. extra: 1376/1349,
  34507. bottom: 9/1385
  34508. }
  34509. },
  34510. frontNsfw: {
  34511. height: math.unit(9 + 6/12, "feet"),
  34512. weight: math.unit(940, "lb"),
  34513. name: "Front (NSFW)",
  34514. image: {
  34515. source: "./media/characters/byliss/front-nsfw.svg",
  34516. extra: 1327/1290,
  34517. bottom: 82/1409
  34518. }
  34519. },
  34520. backNsfw: {
  34521. height: math.unit(9 + 6/12, "feet"),
  34522. weight: math.unit(940, "lb"),
  34523. name: "Back (NSFW)",
  34524. image: {
  34525. source: "./media/characters/byliss/back-nsfw.svg",
  34526. extra: 1376/1349,
  34527. bottom: 9/1385
  34528. }
  34529. },
  34530. },
  34531. [
  34532. {
  34533. name: "Normal",
  34534. height: math.unit(9 + 6/12, "feet"),
  34535. default: true
  34536. },
  34537. ]
  34538. ))
  34539. characterMakers.push(() => makeCharacter(
  34540. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  34541. {
  34542. front: {
  34543. height: math.unit(5 + 2/12, "feet"),
  34544. weight: math.unit(200, "lb"),
  34545. name: "Front",
  34546. image: {
  34547. source: "./media/characters/noraly/front.svg",
  34548. extra: 4985/4773,
  34549. bottom: 150/5135
  34550. }
  34551. },
  34552. full: {
  34553. height: math.unit(5 + 2/12, "feet"),
  34554. weight: math.unit(164, "lb"),
  34555. name: "Full",
  34556. image: {
  34557. source: "./media/characters/noraly/full.svg",
  34558. extra: 1114/1059,
  34559. bottom: 35/1149
  34560. }
  34561. },
  34562. fuller: {
  34563. height: math.unit(5 + 2/12, "feet"),
  34564. weight: math.unit(230, "lb"),
  34565. name: "Fuller",
  34566. image: {
  34567. source: "./media/characters/noraly/fuller.svg",
  34568. extra: 1114/1059,
  34569. bottom: 35/1149
  34570. }
  34571. },
  34572. fullest: {
  34573. height: math.unit(5 + 2/12, "feet"),
  34574. weight: math.unit(300, "lb"),
  34575. name: "Fullest",
  34576. image: {
  34577. source: "./media/characters/noraly/fullest.svg",
  34578. extra: 1114/1059,
  34579. bottom: 35/1149
  34580. }
  34581. },
  34582. },
  34583. [
  34584. {
  34585. name: "Normal",
  34586. height: math.unit(5 + 2/12, "feet"),
  34587. default: true
  34588. },
  34589. ]
  34590. ))
  34591. characterMakers.push(() => makeCharacter(
  34592. { name: "Pera", species: ["snake"], tags: ["naga"] },
  34593. {
  34594. front: {
  34595. height: math.unit(5 + 2/12, "feet"),
  34596. weight: math.unit(210, "lb"),
  34597. name: "Front",
  34598. image: {
  34599. source: "./media/characters/pera/front.svg",
  34600. extra: 1560/1531,
  34601. bottom: 165/1725
  34602. }
  34603. },
  34604. back: {
  34605. height: math.unit(5 + 2/12, "feet"),
  34606. weight: math.unit(210, "lb"),
  34607. name: "Back",
  34608. image: {
  34609. source: "./media/characters/pera/back.svg",
  34610. extra: 1523/1493,
  34611. bottom: 152/1675
  34612. }
  34613. },
  34614. dick: {
  34615. height: math.unit(2.4, "feet"),
  34616. name: "Dick",
  34617. image: {
  34618. source: "./media/characters/pera/dick.svg"
  34619. }
  34620. },
  34621. },
  34622. [
  34623. {
  34624. name: "Normal",
  34625. height: math.unit(5 + 2/12, "feet"),
  34626. default: true
  34627. },
  34628. ]
  34629. ))
  34630. characterMakers.push(() => makeCharacter(
  34631. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  34632. {
  34633. front: {
  34634. height: math.unit(12, "feet"),
  34635. weight: math.unit(3200, "lb"),
  34636. name: "Front",
  34637. image: {
  34638. source: "./media/characters/julian/front.svg",
  34639. extra: 2962/2701,
  34640. bottom: 184/3146
  34641. }
  34642. },
  34643. maw: {
  34644. height: math.unit(5.35, "feet"),
  34645. name: "Maw",
  34646. image: {
  34647. source: "./media/characters/julian/maw.svg"
  34648. }
  34649. },
  34650. paw: {
  34651. height: math.unit(3.07, "feet"),
  34652. name: "Paw",
  34653. image: {
  34654. source: "./media/characters/julian/paw.svg"
  34655. }
  34656. },
  34657. },
  34658. [
  34659. {
  34660. name: "Default",
  34661. height: math.unit(12, "feet"),
  34662. default: true
  34663. },
  34664. {
  34665. name: "Big",
  34666. height: math.unit(50, "feet")
  34667. },
  34668. {
  34669. name: "Really Big",
  34670. height: math.unit(1, "mile")
  34671. },
  34672. {
  34673. name: "Extremely Big",
  34674. height: math.unit(100, "miles")
  34675. },
  34676. {
  34677. name: "Planet Hugger",
  34678. height: math.unit(200, "megameters")
  34679. },
  34680. {
  34681. name: "Unreasonably Big",
  34682. height: math.unit(1e300, "meters")
  34683. },
  34684. ]
  34685. ))
  34686. characterMakers.push(() => makeCharacter(
  34687. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  34688. {
  34689. solgooleo: {
  34690. height: math.unit(4, "meters"),
  34691. weight: math.unit(6000*1.5, "kg"),
  34692. volume: math.unit(6000, "liters"),
  34693. name: "Solgooleo",
  34694. image: {
  34695. source: "./media/characters/pi/solgooleo.svg",
  34696. extra: 388/331,
  34697. bottom: 29/417
  34698. }
  34699. },
  34700. },
  34701. [
  34702. {
  34703. name: "Normal",
  34704. height: math.unit(4, "meters"),
  34705. default: true
  34706. },
  34707. ]
  34708. ))
  34709. characterMakers.push(() => makeCharacter(
  34710. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  34711. {
  34712. front: {
  34713. height: math.unit(8, "feet"),
  34714. weight: math.unit(4, "tons"),
  34715. name: "Front",
  34716. image: {
  34717. source: "./media/characters/shaun/front.svg",
  34718. extra: 503/495,
  34719. bottom: 20/523
  34720. }
  34721. },
  34722. back: {
  34723. height: math.unit(8, "feet"),
  34724. weight: math.unit(4, "tons"),
  34725. name: "Back",
  34726. image: {
  34727. source: "./media/characters/shaun/back.svg",
  34728. extra: 487/480,
  34729. bottom: 20/507
  34730. }
  34731. },
  34732. },
  34733. [
  34734. {
  34735. name: "Lorg",
  34736. height: math.unit(8, "feet"),
  34737. default: true
  34738. },
  34739. ]
  34740. ))
  34741. characterMakers.push(() => makeCharacter(
  34742. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  34743. {
  34744. frontAnthro: {
  34745. height: math.unit(7, "feet"),
  34746. name: "Front",
  34747. image: {
  34748. source: "./media/characters/sini/front-anthro.svg",
  34749. extra: 726/678,
  34750. bottom: 35/761
  34751. },
  34752. form: "anthro",
  34753. default: true
  34754. },
  34755. backAnthro: {
  34756. height: math.unit(7, "feet"),
  34757. name: "Back",
  34758. image: {
  34759. source: "./media/characters/sini/back-anthro.svg",
  34760. extra: 743/701,
  34761. bottom: 12/755
  34762. },
  34763. form: "anthro",
  34764. },
  34765. frontAnthroNsfw: {
  34766. height: math.unit(7, "feet"),
  34767. name: "Front (NSFW)",
  34768. image: {
  34769. source: "./media/characters/sini/front-anthro-nsfw.svg",
  34770. extra: 726/678,
  34771. bottom: 35/761
  34772. },
  34773. form: "anthro"
  34774. },
  34775. backAnthroNsfw: {
  34776. height: math.unit(7, "feet"),
  34777. name: "Back (NSFW)",
  34778. image: {
  34779. source: "./media/characters/sini/back-anthro-nsfw.svg",
  34780. extra: 743/701,
  34781. bottom: 12/755
  34782. },
  34783. form: "anthro",
  34784. },
  34785. mawAnthro: {
  34786. height: math.unit(2.14, "feet"),
  34787. name: "Maw",
  34788. image: {
  34789. source: "./media/characters/sini/maw-anthro.svg"
  34790. },
  34791. form: "anthro"
  34792. },
  34793. dick: {
  34794. height: math.unit(1.45, "feet"),
  34795. name: "Dick",
  34796. image: {
  34797. source: "./media/characters/sini/dick-anthro.svg"
  34798. },
  34799. form: "anthro"
  34800. },
  34801. feral: {
  34802. height: math.unit(16, "feet"),
  34803. name: "Feral",
  34804. image: {
  34805. source: "./media/characters/sini/feral.svg",
  34806. extra: 814/605,
  34807. bottom: 11/825
  34808. },
  34809. form: "feral",
  34810. default: true
  34811. },
  34812. feralNsfw: {
  34813. height: math.unit(16, "feet"),
  34814. name: "Feral (NSFW)",
  34815. image: {
  34816. source: "./media/characters/sini/feral-nsfw.svg",
  34817. extra: 814/605,
  34818. bottom: 11/825
  34819. },
  34820. form: "feral"
  34821. },
  34822. mawFeral: {
  34823. height: math.unit(5.66, "feet"),
  34824. name: "Maw",
  34825. image: {
  34826. source: "./media/characters/sini/maw-feral.svg"
  34827. },
  34828. form: "feral",
  34829. },
  34830. pawFeral: {
  34831. height: math.unit(5.17, "feet"),
  34832. name: "Paw",
  34833. image: {
  34834. source: "./media/characters/sini/paw-feral.svg"
  34835. },
  34836. form: "feral",
  34837. },
  34838. rumpFeral: {
  34839. height: math.unit(13.11, "feet"),
  34840. name: "Rump",
  34841. image: {
  34842. source: "./media/characters/sini/rump-feral.svg"
  34843. },
  34844. form: "feral",
  34845. },
  34846. dickFeral: {
  34847. height: math.unit(1, "feet"),
  34848. name: "Dick",
  34849. image: {
  34850. source: "./media/characters/sini/dick-feral.svg"
  34851. },
  34852. form: "feral",
  34853. },
  34854. eyeFeral: {
  34855. height: math.unit(1.23, "feet"),
  34856. name: "Eye",
  34857. image: {
  34858. source: "./media/characters/sini/eye-feral.svg"
  34859. },
  34860. form: "feral",
  34861. },
  34862. },
  34863. [
  34864. {
  34865. name: "Normal",
  34866. height: math.unit(7, "feet"),
  34867. default: true,
  34868. form: "anthro"
  34869. },
  34870. {
  34871. name: "Normal",
  34872. height: math.unit(16, "feet"),
  34873. default: true,
  34874. form: "feral"
  34875. },
  34876. ],
  34877. {
  34878. "anthro": {
  34879. name: "Anthro",
  34880. default: true
  34881. },
  34882. "feral": {
  34883. name: "Feral",
  34884. }
  34885. }
  34886. ))
  34887. characterMakers.push(() => makeCharacter(
  34888. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  34889. {
  34890. side: {
  34891. height: math.unit(47.2, "meters"),
  34892. weight: math.unit(10000, "tons"),
  34893. name: "Side",
  34894. image: {
  34895. source: "./media/characters/raylldo/side.svg",
  34896. extra: 2363/642,
  34897. bottom: 221/2584
  34898. }
  34899. },
  34900. top: {
  34901. height: math.unit(240, "meters"),
  34902. weight: math.unit(10000, "tons"),
  34903. name: "Top",
  34904. image: {
  34905. source: "./media/characters/raylldo/top.svg"
  34906. }
  34907. },
  34908. bottom: {
  34909. height: math.unit(240, "meters"),
  34910. weight: math.unit(10000, "tons"),
  34911. name: "Bottom",
  34912. image: {
  34913. source: "./media/characters/raylldo/bottom.svg"
  34914. }
  34915. },
  34916. head: {
  34917. height: math.unit(38.6, "meters"),
  34918. name: "Head",
  34919. image: {
  34920. source: "./media/characters/raylldo/head.svg",
  34921. extra: 1335/1112,
  34922. bottom: 0/1335
  34923. }
  34924. },
  34925. maw: {
  34926. height: math.unit(16.37, "meters"),
  34927. name: "Maw",
  34928. image: {
  34929. source: "./media/characters/raylldo/maw.svg",
  34930. extra: 883/660,
  34931. bottom: 0/883
  34932. },
  34933. extraAttributes: {
  34934. preyCapacity: {
  34935. name: "Capacity",
  34936. power: 3,
  34937. type: "volume",
  34938. base: math.unit(1000, "people")
  34939. },
  34940. tongueSize: {
  34941. name: "Tongue Size",
  34942. power: 2,
  34943. type: "area",
  34944. base: math.unit(21, "m^2")
  34945. }
  34946. }
  34947. },
  34948. forepaw: {
  34949. height: math.unit(18, "meters"),
  34950. name: "Forepaw",
  34951. image: {
  34952. source: "./media/characters/raylldo/forepaw.svg"
  34953. }
  34954. },
  34955. hindpaw: {
  34956. height: math.unit(23, "meters"),
  34957. name: "Hindpaw",
  34958. image: {
  34959. source: "./media/characters/raylldo/hindpaw.svg"
  34960. }
  34961. },
  34962. genitals: {
  34963. height: math.unit(42, "meters"),
  34964. name: "Genitals",
  34965. image: {
  34966. source: "./media/characters/raylldo/genitals.svg"
  34967. }
  34968. },
  34969. },
  34970. [
  34971. {
  34972. name: "Normal",
  34973. height: math.unit(47.2, "meters"),
  34974. default: true
  34975. },
  34976. ]
  34977. ))
  34978. characterMakers.push(() => makeCharacter(
  34979. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  34980. {
  34981. anthroFront: {
  34982. height: math.unit(9, "feet"),
  34983. weight: math.unit(600, "lb"),
  34984. name: "Anthro (Front)",
  34985. image: {
  34986. source: "./media/characters/glint/anthro-front.svg",
  34987. extra: 1097/1018,
  34988. bottom: 28/1125
  34989. }
  34990. },
  34991. anthroBack: {
  34992. height: math.unit(9, "feet"),
  34993. weight: math.unit(600, "lb"),
  34994. name: "Anthro (Back)",
  34995. image: {
  34996. source: "./media/characters/glint/anthro-back.svg",
  34997. extra: 1154/997,
  34998. bottom: 36/1190
  34999. }
  35000. },
  35001. feral: {
  35002. height: math.unit(11, "feet"),
  35003. weight: math.unit(50000, "lb"),
  35004. name: "Feral",
  35005. image: {
  35006. source: "./media/characters/glint/feral.svg",
  35007. extra: 3035/1585,
  35008. bottom: 1169/4204
  35009. }
  35010. },
  35011. dickAnthro: {
  35012. height: math.unit(0.7, "meters"),
  35013. name: "Dick (Anthro)",
  35014. image: {
  35015. source: "./media/characters/glint/dick-anthro.svg"
  35016. }
  35017. },
  35018. dickFeral: {
  35019. height: math.unit(2.65, "meters"),
  35020. name: "Dick (Feral)",
  35021. image: {
  35022. source: "./media/characters/glint/dick-feral.svg"
  35023. }
  35024. },
  35025. slitHidden: {
  35026. height: math.unit(5.85, "meters"),
  35027. name: "Slit (Hidden)",
  35028. image: {
  35029. source: "./media/characters/glint/slit-hidden.svg"
  35030. }
  35031. },
  35032. slitErect: {
  35033. height: math.unit(5.85, "meters"),
  35034. name: "Slit (Erect)",
  35035. image: {
  35036. source: "./media/characters/glint/slit-erect.svg"
  35037. }
  35038. },
  35039. mawAnthro: {
  35040. height: math.unit(0.63, "meters"),
  35041. name: "Maw (Anthro)",
  35042. image: {
  35043. source: "./media/characters/glint/maw.svg"
  35044. }
  35045. },
  35046. mawFeral: {
  35047. height: math.unit(2.89, "meters"),
  35048. name: "Maw (Feral)",
  35049. image: {
  35050. source: "./media/characters/glint/maw.svg"
  35051. }
  35052. },
  35053. },
  35054. [
  35055. {
  35056. name: "Normal",
  35057. height: math.unit(9, "feet"),
  35058. default: true
  35059. },
  35060. ]
  35061. ))
  35062. characterMakers.push(() => makeCharacter(
  35063. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  35064. {
  35065. side: {
  35066. height: math.unit(15, "feet"),
  35067. weight: math.unit(5000, "kg"),
  35068. name: "Side",
  35069. image: {
  35070. source: "./media/characters/kairne/side.svg",
  35071. extra: 979/811,
  35072. bottom: 13/992
  35073. }
  35074. },
  35075. front: {
  35076. height: math.unit(15, "feet"),
  35077. weight: math.unit(5000, "kg"),
  35078. name: "Front",
  35079. image: {
  35080. source: "./media/characters/kairne/front.svg",
  35081. extra: 908/814,
  35082. bottom: 26/934
  35083. }
  35084. },
  35085. sideNsfw: {
  35086. height: math.unit(15, "feet"),
  35087. weight: math.unit(5000, "kg"),
  35088. name: "Side (NSFW)",
  35089. image: {
  35090. source: "./media/characters/kairne/side-nsfw.svg",
  35091. extra: 979/811,
  35092. bottom: 13/992
  35093. }
  35094. },
  35095. frontNsfw: {
  35096. height: math.unit(15, "feet"),
  35097. weight: math.unit(5000, "kg"),
  35098. name: "Front (NSFW)",
  35099. image: {
  35100. source: "./media/characters/kairne/front-nsfw.svg",
  35101. extra: 908/814,
  35102. bottom: 26/934
  35103. }
  35104. },
  35105. dickCaged: {
  35106. height: math.unit(0.65, "meters"),
  35107. name: "Dick-caged",
  35108. image: {
  35109. source: "./media/characters/kairne/dick-caged.svg"
  35110. }
  35111. },
  35112. dick: {
  35113. height: math.unit(0.79, "meters"),
  35114. name: "Dick",
  35115. image: {
  35116. source: "./media/characters/kairne/dick.svg"
  35117. }
  35118. },
  35119. genitals: {
  35120. height: math.unit(1.29, "meters"),
  35121. name: "Genitals",
  35122. image: {
  35123. source: "./media/characters/kairne/genitals.svg"
  35124. }
  35125. },
  35126. maw: {
  35127. height: math.unit(1.73, "meters"),
  35128. name: "Maw",
  35129. image: {
  35130. source: "./media/characters/kairne/maw.svg"
  35131. }
  35132. },
  35133. },
  35134. [
  35135. {
  35136. name: "Normal",
  35137. height: math.unit(15, "feet"),
  35138. default: true
  35139. },
  35140. ]
  35141. ))
  35142. characterMakers.push(() => makeCharacter(
  35143. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  35144. {
  35145. front: {
  35146. height: math.unit(5 + 8/12, "feet"),
  35147. weight: math.unit(139, "lb"),
  35148. name: "Front",
  35149. image: {
  35150. source: "./media/characters/biscuit-jackal/front.svg",
  35151. extra: 2106/1961,
  35152. bottom: 58/2164
  35153. }
  35154. },
  35155. back: {
  35156. height: math.unit(5 + 8/12, "feet"),
  35157. weight: math.unit(139, "lb"),
  35158. name: "Back",
  35159. image: {
  35160. source: "./media/characters/biscuit-jackal/back.svg",
  35161. extra: 2132/1976,
  35162. bottom: 57/2189
  35163. }
  35164. },
  35165. werejackal: {
  35166. height: math.unit(6 + 3/12, "feet"),
  35167. weight: math.unit(188, "lb"),
  35168. name: "Werejackal",
  35169. image: {
  35170. source: "./media/characters/biscuit-jackal/werejackal.svg",
  35171. extra: 2373/2178,
  35172. bottom: 53/2426
  35173. }
  35174. },
  35175. },
  35176. [
  35177. {
  35178. name: "Normal",
  35179. height: math.unit(5 + 8/12, "feet"),
  35180. default: true
  35181. },
  35182. ]
  35183. ))
  35184. characterMakers.push(() => makeCharacter(
  35185. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  35186. {
  35187. front: {
  35188. height: math.unit(140, "cm"),
  35189. weight: math.unit(45, "kg"),
  35190. name: "Front",
  35191. image: {
  35192. source: "./media/characters/tayra-white/front.svg",
  35193. extra: 2229/2192,
  35194. bottom: 75/2304
  35195. }
  35196. },
  35197. },
  35198. [
  35199. {
  35200. name: "Normal",
  35201. height: math.unit(140, "cm"),
  35202. default: true
  35203. },
  35204. ]
  35205. ))
  35206. characterMakers.push(() => makeCharacter(
  35207. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  35208. {
  35209. front: {
  35210. height: math.unit(4 + 5/12, "feet"),
  35211. name: "Front",
  35212. image: {
  35213. source: "./media/characters/scoop/front.svg",
  35214. extra: 1257/1136,
  35215. bottom: 69/1326
  35216. }
  35217. },
  35218. back: {
  35219. height: math.unit(4 + 5/12, "feet"),
  35220. name: "Back",
  35221. image: {
  35222. source: "./media/characters/scoop/back.svg",
  35223. extra: 1321/1152,
  35224. bottom: 32/1353
  35225. }
  35226. },
  35227. maw: {
  35228. height: math.unit(0.68, "feet"),
  35229. name: "Maw",
  35230. image: {
  35231. source: "./media/characters/scoop/maw.svg"
  35232. }
  35233. },
  35234. },
  35235. [
  35236. {
  35237. name: "Really Small",
  35238. height: math.unit(1, "mm")
  35239. },
  35240. {
  35241. name: "Micro",
  35242. height: math.unit(1, "inch")
  35243. },
  35244. {
  35245. name: "Normal",
  35246. height: math.unit(4 + 5/12, "feet"),
  35247. default: true
  35248. },
  35249. {
  35250. name: "Macro",
  35251. height: math.unit(200, "feet")
  35252. },
  35253. {
  35254. name: "Megamacro",
  35255. height: math.unit(3240, "feet")
  35256. },
  35257. {
  35258. name: "Teramacro",
  35259. height: math.unit(2500, "miles")
  35260. },
  35261. ]
  35262. ))
  35263. characterMakers.push(() => makeCharacter(
  35264. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  35265. {
  35266. front: {
  35267. height: math.unit(15 + 7/12, "feet"),
  35268. weight: math.unit(1150, "tons"),
  35269. name: "Front",
  35270. image: {
  35271. source: "./media/characters/saphinara/front.svg",
  35272. extra: 1837/1643,
  35273. bottom: 84/1921
  35274. },
  35275. form: "normal",
  35276. default: true
  35277. },
  35278. side: {
  35279. height: math.unit(15 + 7/12, "feet"),
  35280. weight: math.unit(1150, "tons"),
  35281. name: "Side",
  35282. image: {
  35283. source: "./media/characters/saphinara/side.svg",
  35284. extra: 605/547,
  35285. bottom: 6/611
  35286. },
  35287. form: "normal"
  35288. },
  35289. back: {
  35290. height: math.unit(15 + 7/12, "feet"),
  35291. weight: math.unit(1150, "tons"),
  35292. name: "Back",
  35293. image: {
  35294. source: "./media/characters/saphinara/back.svg",
  35295. extra: 591/531,
  35296. bottom: 13/604
  35297. },
  35298. form: "normal"
  35299. },
  35300. frontTail: {
  35301. height: math.unit(15 + 7/12, "feet"),
  35302. weight: math.unit(1150, "tons"),
  35303. name: "Front (Full Tail)",
  35304. image: {
  35305. source: "./media/characters/saphinara/front-tail.svg",
  35306. extra: 2256/1630,
  35307. bottom: 261/2517
  35308. },
  35309. form: "normal"
  35310. },
  35311. insides: {
  35312. height: math.unit(11.92, "feet"),
  35313. name: "Insides",
  35314. image: {
  35315. source: "./media/characters/saphinara/insides.svg"
  35316. },
  35317. form: "normal"
  35318. },
  35319. head: {
  35320. height: math.unit(4.17, "feet"),
  35321. name: "Head",
  35322. image: {
  35323. source: "./media/characters/saphinara/head.svg"
  35324. },
  35325. form: "normal"
  35326. },
  35327. tongue: {
  35328. height: math.unit(4.60, "feet"),
  35329. name: "Tongue",
  35330. image: {
  35331. source: "./media/characters/saphinara/tongue.svg"
  35332. },
  35333. form: "normal"
  35334. },
  35335. headEnraged: {
  35336. height: math.unit(5.55, "feet"),
  35337. name: "Head (Enraged)",
  35338. image: {
  35339. source: "./media/characters/saphinara/head-enraged.svg"
  35340. },
  35341. form: "normal"
  35342. },
  35343. wings: {
  35344. height: math.unit(11.95, "feet"),
  35345. name: "Wings",
  35346. image: {
  35347. source: "./media/characters/saphinara/wings.svg"
  35348. },
  35349. form: "normal"
  35350. },
  35351. feathers: {
  35352. height: math.unit(8.92, "feet"),
  35353. name: "Feathers",
  35354. image: {
  35355. source: "./media/characters/saphinara/feathers.svg"
  35356. },
  35357. form: "normal"
  35358. },
  35359. shackles: {
  35360. height: math.unit(2, "feet"),
  35361. name: "Shackles",
  35362. image: {
  35363. source: "./media/characters/saphinara/shackles.svg"
  35364. },
  35365. form: "normal"
  35366. },
  35367. eyes: {
  35368. height: math.unit(1.331, "feet"),
  35369. name: "Eyes",
  35370. image: {
  35371. source: "./media/characters/saphinara/eyes.svg"
  35372. },
  35373. form: "normal"
  35374. },
  35375. eyesEnraged: {
  35376. height: math.unit(1.331, "feet"),
  35377. name: "Eyes (Enraged)",
  35378. image: {
  35379. source: "./media/characters/saphinara/eyes-enraged.svg"
  35380. },
  35381. form: "normal"
  35382. },
  35383. trueFormSide: {
  35384. height: math.unit(200, "feet"),
  35385. weight: math.unit(1e7, "tons"),
  35386. name: "Side",
  35387. image: {
  35388. source: "./media/characters/saphinara/true-form-side.svg",
  35389. extra: 1399/770,
  35390. bottom: 97/1496
  35391. },
  35392. form: "true-form",
  35393. default: true
  35394. },
  35395. trueFormMaw: {
  35396. height: math.unit(71.5, "feet"),
  35397. name: "Maw",
  35398. image: {
  35399. source: "./media/characters/saphinara/true-form-maw.svg",
  35400. extra: 2302/1453,
  35401. bottom: 0/2302
  35402. },
  35403. form: "true-form"
  35404. },
  35405. meowberusSide: {
  35406. height: math.unit(75, "feet"),
  35407. weight: math.unit(180000, "kg"),
  35408. preyCapacity: math.unit(50000, "people"),
  35409. name: "Side",
  35410. image: {
  35411. source: "./media/characters/saphinara/meowberus-side.svg",
  35412. extra: 1400/711,
  35413. bottom: 126/1526
  35414. },
  35415. form: "meowberus",
  35416. extraAttributes: {
  35417. "pawArea": {
  35418. name: "Paw Size",
  35419. power: 2,
  35420. type: "area",
  35421. base: math.unit(35, "m^2")
  35422. }
  35423. }
  35424. },
  35425. },
  35426. [
  35427. {
  35428. name: "Normal",
  35429. height: math.unit(15 + 7/12, "feet"),
  35430. default: true,
  35431. form: "normal"
  35432. },
  35433. {
  35434. name: "Angry",
  35435. height: math.unit(30 + 6/12, "feet"),
  35436. form: "normal"
  35437. },
  35438. {
  35439. name: "Enraged",
  35440. height: math.unit(102 + 1/12, "feet"),
  35441. form: "normal"
  35442. },
  35443. {
  35444. name: "True",
  35445. height: math.unit(200, "feet"),
  35446. default: true,
  35447. form: "true-form"
  35448. },
  35449. {
  35450. name: "Normal",
  35451. height: math.unit(75, "feet"),
  35452. default: true,
  35453. form: "meowberus"
  35454. },
  35455. ],
  35456. {
  35457. "normal": {
  35458. name: "Normal",
  35459. default: true
  35460. },
  35461. "true-form": {
  35462. name: "True Form"
  35463. },
  35464. "meowberus": {
  35465. name: "Meowberus",
  35466. },
  35467. }
  35468. ))
  35469. characterMakers.push(() => makeCharacter(
  35470. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  35471. {
  35472. front: {
  35473. height: math.unit(6 + 8/12, "feet"),
  35474. weight: math.unit(300, "lb"),
  35475. name: "Front",
  35476. image: {
  35477. source: "./media/characters/jrain/front.svg",
  35478. extra: 3039/2865,
  35479. bottom: 399/3438
  35480. }
  35481. },
  35482. back: {
  35483. height: math.unit(6 + 8/12, "feet"),
  35484. weight: math.unit(300, "lb"),
  35485. name: "Back",
  35486. image: {
  35487. source: "./media/characters/jrain/back.svg",
  35488. extra: 3089/2938,
  35489. bottom: 172/3261
  35490. }
  35491. },
  35492. head: {
  35493. height: math.unit(2.14, "feet"),
  35494. name: "Head",
  35495. image: {
  35496. source: "./media/characters/jrain/head.svg"
  35497. }
  35498. },
  35499. maw: {
  35500. height: math.unit(1.77, "feet"),
  35501. name: "Maw",
  35502. image: {
  35503. source: "./media/characters/jrain/maw.svg"
  35504. }
  35505. },
  35506. leftHand: {
  35507. height: math.unit(1.1, "feet"),
  35508. name: "Left Hand",
  35509. image: {
  35510. source: "./media/characters/jrain/left-hand.svg"
  35511. }
  35512. },
  35513. rightHand: {
  35514. height: math.unit(1.1, "feet"),
  35515. name: "Right Hand",
  35516. image: {
  35517. source: "./media/characters/jrain/right-hand.svg"
  35518. }
  35519. },
  35520. eye: {
  35521. height: math.unit(0.35, "feet"),
  35522. name: "Eye",
  35523. image: {
  35524. source: "./media/characters/jrain/eye.svg"
  35525. }
  35526. },
  35527. },
  35528. [
  35529. {
  35530. name: "Normal",
  35531. height: math.unit(6 + 8/12, "feet"),
  35532. default: true
  35533. },
  35534. {
  35535. name: "Casually Large",
  35536. height: math.unit(25, "feet")
  35537. },
  35538. {
  35539. name: "Giant",
  35540. height: math.unit(100, "feet")
  35541. },
  35542. {
  35543. name: "Kaiju",
  35544. height: math.unit(300, "feet")
  35545. },
  35546. ]
  35547. ))
  35548. characterMakers.push(() => makeCharacter(
  35549. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  35550. {
  35551. dragon: {
  35552. height: math.unit(5, "meters"),
  35553. name: "Dragon",
  35554. image: {
  35555. source: "./media/characters/sabrina/dragon.svg",
  35556. extra: 3670 / 2365,
  35557. bottom: 333 / 4003
  35558. }
  35559. },
  35560. gryphon: {
  35561. height: math.unit(3, "meters"),
  35562. name: "Gryphon",
  35563. image: {
  35564. source: "./media/characters/sabrina/gryphon.svg",
  35565. extra: 1576 / 945,
  35566. bottom: 71 / 1647
  35567. }
  35568. },
  35569. snake: {
  35570. height: math.unit(12, "meters"),
  35571. name: "Snake",
  35572. image: {
  35573. source: "./media/characters/sabrina/snake.svg",
  35574. extra: 1758 / 1320,
  35575. bottom: 186 / 1944
  35576. }
  35577. },
  35578. collar: {
  35579. height: math.unit(1.86, "meters"),
  35580. name: "Collar",
  35581. image: {
  35582. source: "./media/characters/sabrina/collar.svg"
  35583. }
  35584. },
  35585. eye: {
  35586. height: math.unit(0.53, "meters"),
  35587. name: "Eye",
  35588. image: {
  35589. source: "./media/characters/sabrina/eye.svg"
  35590. }
  35591. },
  35592. foot: {
  35593. height: math.unit(1.86, "meters"),
  35594. name: "Foot",
  35595. image: {
  35596. source: "./media/characters/sabrina/foot.svg"
  35597. }
  35598. },
  35599. hand: {
  35600. height: math.unit(1.32, "meters"),
  35601. name: "Hand",
  35602. image: {
  35603. source: "./media/characters/sabrina/hand.svg"
  35604. }
  35605. },
  35606. head: {
  35607. height: math.unit(2.44, "meters"),
  35608. name: "Head",
  35609. image: {
  35610. source: "./media/characters/sabrina/head.svg"
  35611. }
  35612. },
  35613. headAngry: {
  35614. height: math.unit(2.44, "meters"),
  35615. name: "Head (Angry))",
  35616. image: {
  35617. source: "./media/characters/sabrina/head-angry.svg"
  35618. }
  35619. },
  35620. maw: {
  35621. height: math.unit(1.65, "meters"),
  35622. name: "Maw",
  35623. image: {
  35624. source: "./media/characters/sabrina/maw.svg"
  35625. }
  35626. },
  35627. spikes: {
  35628. height: math.unit(1.69, "meters"),
  35629. name: "Spikes",
  35630. image: {
  35631. source: "./media/characters/sabrina/spikes.svg"
  35632. }
  35633. },
  35634. stomach: {
  35635. height: math.unit(1.15, "meters"),
  35636. name: "Stomach",
  35637. image: {
  35638. source: "./media/characters/sabrina/stomach.svg"
  35639. }
  35640. },
  35641. tongue: {
  35642. height: math.unit(1.27, "meters"),
  35643. name: "Tongue",
  35644. image: {
  35645. source: "./media/characters/sabrina/tongue.svg"
  35646. }
  35647. },
  35648. wingDorsal: {
  35649. height: math.unit(4.85, "meters"),
  35650. name: "Wing (Dorsal)",
  35651. image: {
  35652. source: "./media/characters/sabrina/wing-dorsal.svg"
  35653. }
  35654. },
  35655. wingVentral: {
  35656. height: math.unit(4.85, "meters"),
  35657. name: "Wing (Ventral)",
  35658. image: {
  35659. source: "./media/characters/sabrina/wing-ventral.svg"
  35660. }
  35661. },
  35662. },
  35663. [
  35664. {
  35665. name: "Normal",
  35666. height: math.unit(5, "meters"),
  35667. default: true
  35668. },
  35669. ]
  35670. ))
  35671. characterMakers.push(() => makeCharacter(
  35672. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  35673. {
  35674. frontMaid: {
  35675. height: math.unit(5 + 5/12, "feet"),
  35676. weight: math.unit(130, "lb"),
  35677. name: "Front (Maid)",
  35678. image: {
  35679. source: "./media/characters/midnight-tales/front-maid.svg",
  35680. extra: 489/454,
  35681. bottom: 61/550
  35682. }
  35683. },
  35684. frontFormal: {
  35685. height: math.unit(5 + 5/12, "feet"),
  35686. weight: math.unit(130, "lb"),
  35687. name: "Front (Formal)",
  35688. image: {
  35689. source: "./media/characters/midnight-tales/front-formal.svg",
  35690. extra: 489/454,
  35691. bottom: 61/550
  35692. }
  35693. },
  35694. back: {
  35695. height: math.unit(5 + 5/12, "feet"),
  35696. weight: math.unit(130, "lb"),
  35697. name: "Back",
  35698. image: {
  35699. source: "./media/characters/midnight-tales/back.svg",
  35700. extra: 498/456,
  35701. bottom: 33/531
  35702. }
  35703. },
  35704. frontBeast: {
  35705. height: math.unit(40, "feet"),
  35706. weight: math.unit(64000, "lb"),
  35707. name: "Front (Beast)",
  35708. image: {
  35709. source: "./media/characters/midnight-tales/front-beast.svg",
  35710. extra: 927/860,
  35711. bottom: 53/980
  35712. }
  35713. },
  35714. backBeast: {
  35715. height: math.unit(40, "feet"),
  35716. weight: math.unit(64000, "lb"),
  35717. name: "Back (Beast)",
  35718. image: {
  35719. source: "./media/characters/midnight-tales/back-beast.svg",
  35720. extra: 929/855,
  35721. bottom: 16/945
  35722. }
  35723. },
  35724. footBeast: {
  35725. height: math.unit(6.7, "feet"),
  35726. name: "Foot (Beast)",
  35727. image: {
  35728. source: "./media/characters/midnight-tales/foot-beast.svg"
  35729. }
  35730. },
  35731. headBeast: {
  35732. height: math.unit(8, "feet"),
  35733. name: "Head (Beast)",
  35734. image: {
  35735. source: "./media/characters/midnight-tales/head-beast.svg"
  35736. }
  35737. },
  35738. },
  35739. [
  35740. {
  35741. name: "Normal",
  35742. height: math.unit(5 + 5 / 12, "feet"),
  35743. default: true
  35744. },
  35745. {
  35746. name: "Macro",
  35747. height: math.unit(25, "feet")
  35748. },
  35749. ]
  35750. ))
  35751. characterMakers.push(() => makeCharacter(
  35752. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  35753. {
  35754. front: {
  35755. height: math.unit(5 + 10/12, "feet"),
  35756. name: "Front",
  35757. image: {
  35758. source: "./media/characters/argon/front.svg",
  35759. extra: 2009/1935,
  35760. bottom: 118/2127
  35761. }
  35762. },
  35763. back: {
  35764. height: math.unit(5 + 10/12, "feet"),
  35765. name: "Back",
  35766. image: {
  35767. source: "./media/characters/argon/back.svg",
  35768. extra: 2047/1992,
  35769. bottom: 20/2067
  35770. }
  35771. },
  35772. frontDressed: {
  35773. height: math.unit(5 + 10/12, "feet"),
  35774. name: "Front (Dressed)",
  35775. image: {
  35776. source: "./media/characters/argon/front-dressed.svg",
  35777. extra: 2009/1935,
  35778. bottom: 118/2127
  35779. }
  35780. },
  35781. },
  35782. [
  35783. {
  35784. name: "Normal",
  35785. height: math.unit(5 + 10/12, "feet"),
  35786. default: true
  35787. },
  35788. ]
  35789. ))
  35790. characterMakers.push(() => makeCharacter(
  35791. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  35792. {
  35793. front: {
  35794. height: math.unit(8 + 6/12, "feet"),
  35795. weight: math.unit(1150, "lb"),
  35796. name: "Front",
  35797. image: {
  35798. source: "./media/characters/kichi/front.svg",
  35799. extra: 1267/1164,
  35800. bottom: 61/1328
  35801. }
  35802. },
  35803. back: {
  35804. height: math.unit(8 + 6/12, "feet"),
  35805. weight: math.unit(1150, "lb"),
  35806. name: "Back",
  35807. image: {
  35808. source: "./media/characters/kichi/back.svg",
  35809. extra: 1273/1166,
  35810. bottom: 33/1306
  35811. }
  35812. },
  35813. },
  35814. [
  35815. {
  35816. name: "Normal",
  35817. height: math.unit(8 + 6/12, "feet"),
  35818. default: true
  35819. },
  35820. ]
  35821. ))
  35822. characterMakers.push(() => makeCharacter(
  35823. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  35824. {
  35825. front: {
  35826. height: math.unit(6, "feet"),
  35827. weight: math.unit(210, "lb"),
  35828. name: "Front",
  35829. image: {
  35830. source: "./media/characters/manetel-greyscale/front.svg",
  35831. extra: 350/312,
  35832. bottom: 8/358
  35833. }
  35834. },
  35835. },
  35836. [
  35837. {
  35838. name: "Micro",
  35839. height: math.unit(2, "inches")
  35840. },
  35841. {
  35842. name: "Normal",
  35843. height: math.unit(6, "feet"),
  35844. default: true
  35845. },
  35846. {
  35847. name: "Minimacro",
  35848. height: math.unit(17, "feet")
  35849. },
  35850. {
  35851. name: "Macro",
  35852. height: math.unit(117, "feet")
  35853. },
  35854. ]
  35855. ))
  35856. characterMakers.push(() => makeCharacter(
  35857. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  35858. {
  35859. side: {
  35860. height: math.unit(5 + 1/12, "feet"),
  35861. weight: math.unit(418, "lb"),
  35862. name: "Side",
  35863. image: {
  35864. source: "./media/characters/softpurr/side.svg",
  35865. extra: 1993/1945,
  35866. bottom: 134/2127
  35867. }
  35868. },
  35869. front: {
  35870. height: math.unit(5 + 1/12, "feet"),
  35871. weight: math.unit(418, "lb"),
  35872. name: "Front",
  35873. image: {
  35874. source: "./media/characters/softpurr/front.svg",
  35875. extra: 1950/1856,
  35876. bottom: 174/2124
  35877. }
  35878. },
  35879. paw: {
  35880. height: math.unit(1, "feet"),
  35881. name: "Paw",
  35882. image: {
  35883. source: "./media/characters/softpurr/paw.svg"
  35884. }
  35885. },
  35886. },
  35887. [
  35888. {
  35889. name: "Normal",
  35890. height: math.unit(5 + 1/12, "feet"),
  35891. default: true
  35892. },
  35893. ]
  35894. ))
  35895. characterMakers.push(() => makeCharacter(
  35896. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  35897. {
  35898. front: {
  35899. height: math.unit(260, "meters"),
  35900. name: "Front",
  35901. image: {
  35902. source: "./media/characters/anahita/front.svg",
  35903. extra: 665/635,
  35904. bottom: 89/754
  35905. }
  35906. },
  35907. },
  35908. [
  35909. {
  35910. name: "Macro",
  35911. height: math.unit(260, "meters"),
  35912. default: true
  35913. },
  35914. ]
  35915. ))
  35916. characterMakers.push(() => makeCharacter(
  35917. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  35918. {
  35919. front: {
  35920. height: math.unit(4 + 10/12, "feet"),
  35921. weight: math.unit(160, "lb"),
  35922. name: "Front",
  35923. image: {
  35924. source: "./media/characters/chip-mouse/front.svg",
  35925. extra: 3528/3408,
  35926. bottom: 0/3528
  35927. }
  35928. },
  35929. frontNsfw: {
  35930. height: math.unit(4 + 10/12, "feet"),
  35931. weight: math.unit(160, "lb"),
  35932. name: "Front (NSFW)",
  35933. image: {
  35934. source: "./media/characters/chip-mouse/front-nsfw.svg",
  35935. extra: 3528/3408,
  35936. bottom: 0/3528
  35937. }
  35938. },
  35939. },
  35940. [
  35941. {
  35942. name: "Normal",
  35943. height: math.unit(4 + 10/12, "feet"),
  35944. default: true
  35945. },
  35946. ]
  35947. ))
  35948. characterMakers.push(() => makeCharacter(
  35949. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  35950. {
  35951. side: {
  35952. height: math.unit(10, "feet"),
  35953. weight: math.unit(14000, "lb"),
  35954. name: "Side",
  35955. image: {
  35956. source: "./media/characters/kremm/side.svg",
  35957. extra: 1390/1053,
  35958. bottom: 90/1480
  35959. }
  35960. },
  35961. gut: {
  35962. height: math.unit(5.8, "feet"),
  35963. name: "Gut",
  35964. image: {
  35965. source: "./media/characters/kremm/gut.svg"
  35966. }
  35967. },
  35968. ass: {
  35969. height: math.unit(6.1, "feet"),
  35970. name: "Ass",
  35971. image: {
  35972. source: "./media/characters/kremm/ass.svg"
  35973. }
  35974. },
  35975. jaws: {
  35976. height: math.unit(2.2, "feet"),
  35977. name: "Jaws",
  35978. image: {
  35979. source: "./media/characters/kremm/jaws.svg"
  35980. }
  35981. },
  35982. dick: {
  35983. height: math.unit(4.26, "feet"),
  35984. name: "Dick",
  35985. image: {
  35986. source: "./media/characters/kremm/dick.svg"
  35987. }
  35988. },
  35989. },
  35990. [
  35991. {
  35992. name: "Normal",
  35993. height: math.unit(10, "feet"),
  35994. default: true
  35995. },
  35996. ]
  35997. ))
  35998. characterMakers.push(() => makeCharacter(
  35999. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  36000. {
  36001. front: {
  36002. height: math.unit(30, "stories"),
  36003. name: "Front",
  36004. image: {
  36005. source: "./media/characters/kai/front.svg",
  36006. extra: 1892/1718,
  36007. bottom: 162/2054
  36008. }
  36009. },
  36010. },
  36011. [
  36012. {
  36013. name: "Macro",
  36014. height: math.unit(30, "stories"),
  36015. default: true
  36016. },
  36017. ]
  36018. ))
  36019. characterMakers.push(() => makeCharacter(
  36020. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  36021. {
  36022. front: {
  36023. height: math.unit(6 + 4/12, "feet"),
  36024. weight: math.unit(145, "lb"),
  36025. name: "Front",
  36026. image: {
  36027. source: "./media/characters/sykes/front.svg",
  36028. extra: 1321 / 1187,
  36029. bottom: 66 / 1387
  36030. }
  36031. },
  36032. back: {
  36033. height: math.unit(6 + 4/12, "feet"),
  36034. weight: math.unit(145, "lb"),
  36035. name: "Back",
  36036. image: {
  36037. source: "./media/characters/sykes/back.svg",
  36038. extra: 1326/1181,
  36039. bottom: 31/1357
  36040. }
  36041. },
  36042. traditionalOutfit: {
  36043. height: math.unit(6 + 4/12, "feet"),
  36044. weight: math.unit(145, "lb"),
  36045. name: "Traditional Outfit",
  36046. image: {
  36047. source: "./media/characters/sykes/traditional-outfit.svg",
  36048. extra: 1321 / 1187,
  36049. bottom: 66 / 1387
  36050. }
  36051. },
  36052. adventureOutfit: {
  36053. height: math.unit(6 + 4/12, "feet"),
  36054. weight: math.unit(145, "lb"),
  36055. name: "Adventure Outfit",
  36056. image: {
  36057. source: "./media/characters/sykes/adventure-outfit.svg",
  36058. extra: 1321 / 1187,
  36059. bottom: 66 / 1387
  36060. }
  36061. },
  36062. handLeft: {
  36063. height: math.unit(0.9, "feet"),
  36064. name: "Hand (Left)",
  36065. image: {
  36066. source: "./media/characters/sykes/hand-left.svg"
  36067. }
  36068. },
  36069. handRight: {
  36070. height: math.unit(0.839, "feet"),
  36071. name: "Hand (Right)",
  36072. image: {
  36073. source: "./media/characters/sykes/hand-right.svg"
  36074. }
  36075. },
  36076. leftFoot: {
  36077. height: math.unit(1.2, "feet"),
  36078. name: "Foot (Left)",
  36079. image: {
  36080. source: "./media/characters/sykes/foot-left.svg"
  36081. }
  36082. },
  36083. rightFoot: {
  36084. height: math.unit(1.2, "feet"),
  36085. name: "Foot (Right)",
  36086. image: {
  36087. source: "./media/characters/sykes/foot-right.svg"
  36088. }
  36089. },
  36090. maw: {
  36091. height: math.unit(1.93, "feet"),
  36092. name: "Maw",
  36093. image: {
  36094. source: "./media/characters/sykes/maw.svg"
  36095. }
  36096. },
  36097. teeth: {
  36098. height: math.unit(0.51, "feet"),
  36099. name: "Teeth",
  36100. image: {
  36101. source: "./media/characters/sykes/teeth.svg"
  36102. }
  36103. },
  36104. tongue: {
  36105. height: math.unit(2.13, "feet"),
  36106. name: "Tongue",
  36107. image: {
  36108. source: "./media/characters/sykes/tongue.svg"
  36109. }
  36110. },
  36111. uvula: {
  36112. height: math.unit(0.16, "feet"),
  36113. name: "Uvula",
  36114. image: {
  36115. source: "./media/characters/sykes/uvula.svg"
  36116. }
  36117. },
  36118. collar: {
  36119. height: math.unit(0.287, "feet"),
  36120. name: "Collar",
  36121. image: {
  36122. source: "./media/characters/sykes/collar.svg"
  36123. }
  36124. },
  36125. tail: {
  36126. height: math.unit(3.8, "feet"),
  36127. name: "Tail",
  36128. image: {
  36129. source: "./media/characters/sykes/tail.svg"
  36130. }
  36131. },
  36132. },
  36133. [
  36134. {
  36135. name: "Shrunken",
  36136. height: math.unit(5, "inches")
  36137. },
  36138. {
  36139. name: "Normal",
  36140. height: math.unit(6 + 4 / 12, "feet"),
  36141. default: true
  36142. },
  36143. {
  36144. name: "Big",
  36145. height: math.unit(15, "feet")
  36146. },
  36147. ]
  36148. ))
  36149. characterMakers.push(() => makeCharacter(
  36150. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  36151. {
  36152. front: {
  36153. height: math.unit(5 + 8/12, "feet"),
  36154. weight: math.unit(190, "lb"),
  36155. name: "Front",
  36156. image: {
  36157. source: "./media/characters/oven-otter/front.svg",
  36158. extra: 1809/1740,
  36159. bottom: 181/1990
  36160. }
  36161. },
  36162. back: {
  36163. height: math.unit(5 + 8/12, "feet"),
  36164. weight: math.unit(190, "lb"),
  36165. name: "Back",
  36166. image: {
  36167. source: "./media/characters/oven-otter/back.svg",
  36168. extra: 1709/1635,
  36169. bottom: 118/1827
  36170. }
  36171. },
  36172. hand: {
  36173. height: math.unit(1.07, "feet"),
  36174. name: "Hand",
  36175. image: {
  36176. source: "./media/characters/oven-otter/hand.svg"
  36177. }
  36178. },
  36179. beans: {
  36180. height: math.unit(1.74, "feet"),
  36181. name: "Beans",
  36182. image: {
  36183. source: "./media/characters/oven-otter/beans.svg"
  36184. }
  36185. },
  36186. },
  36187. [
  36188. {
  36189. name: "Micro",
  36190. height: math.unit(0.5, "inches")
  36191. },
  36192. {
  36193. name: "Normal",
  36194. height: math.unit(5 + 8/12, "feet"),
  36195. default: true
  36196. },
  36197. {
  36198. name: "Macro",
  36199. height: math.unit(250, "feet")
  36200. },
  36201. {
  36202. name: "Really High",
  36203. height: math.unit(420, "feet")
  36204. },
  36205. ]
  36206. ))
  36207. characterMakers.push(() => makeCharacter(
  36208. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  36209. {
  36210. front: {
  36211. height: math.unit(5, "meters"),
  36212. weight: math.unit(292000000000000, "kg"),
  36213. name: "Front",
  36214. image: {
  36215. source: "./media/characters/devourer/front.svg",
  36216. extra: 1800/1733,
  36217. bottom: 211/2011
  36218. }
  36219. },
  36220. maw: {
  36221. height: math.unit(1.1, "meter"),
  36222. name: "Maw",
  36223. image: {
  36224. source: "./media/characters/devourer/maw.svg"
  36225. }
  36226. },
  36227. },
  36228. [
  36229. {
  36230. name: "Small",
  36231. height: math.unit(3, "meters")
  36232. },
  36233. {
  36234. name: "Large",
  36235. height: math.unit(5, "meters"),
  36236. default: true
  36237. },
  36238. ]
  36239. ))
  36240. characterMakers.push(() => makeCharacter(
  36241. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  36242. {
  36243. front: {
  36244. height: math.unit(6, "feet"),
  36245. weight: math.unit(400, "lb"),
  36246. name: "Front",
  36247. image: {
  36248. source: "./media/characters/ellarby/front.svg",
  36249. extra: 1909/1763,
  36250. bottom: 80/1989
  36251. }
  36252. },
  36253. back: {
  36254. height: math.unit(6, "feet"),
  36255. weight: math.unit(400, "lb"),
  36256. name: "Back",
  36257. image: {
  36258. source: "./media/characters/ellarby/back.svg",
  36259. extra: 1914/1784,
  36260. bottom: 172/2086
  36261. }
  36262. },
  36263. },
  36264. [
  36265. {
  36266. name: "Mischief",
  36267. height: math.unit(18, "inches")
  36268. },
  36269. {
  36270. name: "Trouble",
  36271. height: math.unit(12, "feet")
  36272. },
  36273. {
  36274. name: "Havoc",
  36275. height: math.unit(200, "feet"),
  36276. default: true
  36277. },
  36278. {
  36279. name: "Pandemonium",
  36280. height: math.unit(1, "mile")
  36281. },
  36282. {
  36283. name: "Catastrophe",
  36284. height: math.unit(100, "miles")
  36285. },
  36286. ]
  36287. ))
  36288. characterMakers.push(() => makeCharacter(
  36289. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  36290. {
  36291. front: {
  36292. height: math.unit(4.7, "meters"),
  36293. weight: math.unit(6500, "kg"),
  36294. name: "Front",
  36295. image: {
  36296. source: "./media/characters/vex/front.svg",
  36297. extra: 1288/1140,
  36298. bottom: 100/1388
  36299. }
  36300. },
  36301. },
  36302. [
  36303. {
  36304. name: "Normal",
  36305. height: math.unit(4.7, "meters"),
  36306. default: true
  36307. },
  36308. ]
  36309. ))
  36310. characterMakers.push(() => makeCharacter(
  36311. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  36312. {
  36313. normal: {
  36314. height: math.unit(6, "feet"),
  36315. weight: math.unit(350, "lb"),
  36316. name: "Normal",
  36317. image: {
  36318. source: "./media/characters/teshy/normal.svg",
  36319. extra: 1795/1735,
  36320. bottom: 16/1811
  36321. }
  36322. },
  36323. monsterFront: {
  36324. height: math.unit(12, "feet"),
  36325. weight: math.unit(4700, "lb"),
  36326. name: "Monster (Front)",
  36327. image: {
  36328. source: "./media/characters/teshy/monster-front.svg",
  36329. extra: 2042/2034,
  36330. bottom: 128/2170
  36331. }
  36332. },
  36333. monsterSide: {
  36334. height: math.unit(12, "feet"),
  36335. weight: math.unit(4700, "lb"),
  36336. name: "Monster (Side)",
  36337. image: {
  36338. source: "./media/characters/teshy/monster-side.svg",
  36339. extra: 2067/2056,
  36340. bottom: 70/2137
  36341. }
  36342. },
  36343. monsterBack: {
  36344. height: math.unit(12, "feet"),
  36345. weight: math.unit(4700, "lb"),
  36346. name: "Monster (Back)",
  36347. image: {
  36348. source: "./media/characters/teshy/monster-back.svg",
  36349. extra: 1921/1914,
  36350. bottom: 171/2092
  36351. }
  36352. },
  36353. },
  36354. [
  36355. {
  36356. name: "Normal",
  36357. height: math.unit(6, "feet"),
  36358. default: true
  36359. },
  36360. ]
  36361. ))
  36362. characterMakers.push(() => makeCharacter(
  36363. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  36364. {
  36365. front: {
  36366. height: math.unit(6, "feet"),
  36367. name: "Front",
  36368. image: {
  36369. source: "./media/characters/ramey/front.svg",
  36370. extra: 790/787,
  36371. bottom: 27/817
  36372. }
  36373. },
  36374. },
  36375. [
  36376. {
  36377. name: "Normal",
  36378. height: math.unit(6, "feet"),
  36379. default: true
  36380. },
  36381. ]
  36382. ))
  36383. characterMakers.push(() => makeCharacter(
  36384. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  36385. {
  36386. front: {
  36387. height: math.unit(5 + 5/12, "feet"),
  36388. weight: math.unit(120, "lb"),
  36389. name: "Front",
  36390. image: {
  36391. source: "./media/characters/phirae/front.svg",
  36392. extra: 2491/2436,
  36393. bottom: 38/2529
  36394. }
  36395. },
  36396. },
  36397. [
  36398. {
  36399. name: "Normal",
  36400. height: math.unit(5 + 5/12, "feet"),
  36401. default: true
  36402. },
  36403. ]
  36404. ))
  36405. characterMakers.push(() => makeCharacter(
  36406. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  36407. {
  36408. front: {
  36409. height: math.unit(5 + 3/12, "feet"),
  36410. name: "Front",
  36411. image: {
  36412. source: "./media/characters/stagglas/front.svg",
  36413. extra: 962/882,
  36414. bottom: 53/1015
  36415. }
  36416. },
  36417. feral: {
  36418. height: math.unit(335, "cm"),
  36419. name: "Feral",
  36420. image: {
  36421. source: "./media/characters/stagglas/feral.svg",
  36422. extra: 1732/1090,
  36423. bottom: 48/1780
  36424. }
  36425. },
  36426. },
  36427. [
  36428. {
  36429. name: "Normal",
  36430. height: math.unit(5 + 3/12, "feet"),
  36431. default: true
  36432. },
  36433. ]
  36434. ))
  36435. characterMakers.push(() => makeCharacter(
  36436. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  36437. {
  36438. front: {
  36439. height: math.unit(5 + 4/12, "feet"),
  36440. weight: math.unit(145, "lb"),
  36441. name: "Front",
  36442. image: {
  36443. source: "./media/characters/starra/front.svg",
  36444. extra: 1790/1691,
  36445. bottom: 91/1881
  36446. }
  36447. },
  36448. },
  36449. [
  36450. {
  36451. name: "Normal",
  36452. height: math.unit(5 + 4/12, "feet"),
  36453. default: true
  36454. },
  36455. ]
  36456. ))
  36457. characterMakers.push(() => makeCharacter(
  36458. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  36459. {
  36460. front: {
  36461. height: math.unit(2.2, "meters"),
  36462. name: "Front",
  36463. image: {
  36464. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  36465. extra: 1248/972,
  36466. bottom: 38/1286
  36467. }
  36468. },
  36469. },
  36470. [
  36471. {
  36472. name: "Normal",
  36473. height: math.unit(2.2, "meters"),
  36474. default: true
  36475. },
  36476. ]
  36477. ))
  36478. characterMakers.push(() => makeCharacter(
  36479. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  36480. {
  36481. side: {
  36482. height: math.unit(8 + 2/12, "feet"),
  36483. weight: math.unit(1240, "lb"),
  36484. name: "Side",
  36485. image: {
  36486. source: "./media/characters/mika-valentine/side.svg",
  36487. extra: 2670/2501,
  36488. bottom: 250/2920
  36489. }
  36490. },
  36491. },
  36492. [
  36493. {
  36494. name: "Normal",
  36495. height: math.unit(8 + 2/12, "feet"),
  36496. default: true
  36497. },
  36498. ]
  36499. ))
  36500. characterMakers.push(() => makeCharacter(
  36501. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  36502. {
  36503. front: {
  36504. height: math.unit(7 + 2/12, "feet"),
  36505. name: "Front",
  36506. image: {
  36507. source: "./media/characters/xoltol/front.svg",
  36508. extra: 2212/2124,
  36509. bottom: 84/2296
  36510. }
  36511. },
  36512. side: {
  36513. height: math.unit(7 + 2/12, "feet"),
  36514. name: "Side",
  36515. image: {
  36516. source: "./media/characters/xoltol/side.svg",
  36517. extra: 2273/2197,
  36518. bottom: 26/2299
  36519. }
  36520. },
  36521. hand: {
  36522. height: math.unit(2.5, "feet"),
  36523. name: "Hand",
  36524. image: {
  36525. source: "./media/characters/xoltol/hand.svg"
  36526. }
  36527. },
  36528. },
  36529. [
  36530. {
  36531. name: "Small-ish",
  36532. height: math.unit(5 + 11/12, "feet")
  36533. },
  36534. {
  36535. name: "Normal",
  36536. height: math.unit(7 + 2/12, "feet")
  36537. },
  36538. {
  36539. name: "\"Macro\"",
  36540. height: math.unit(14 + 9/12, "feet"),
  36541. default: true
  36542. },
  36543. {
  36544. name: "Alternate Height",
  36545. height: math.unit(20, "feet")
  36546. },
  36547. {
  36548. name: "Actually Macro",
  36549. height: math.unit(100, "feet")
  36550. },
  36551. ]
  36552. ))
  36553. characterMakers.push(() => makeCharacter(
  36554. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  36555. {
  36556. front: {
  36557. height: math.unit(5 + 2/12, "feet"),
  36558. name: "Front",
  36559. image: {
  36560. source: "./media/characters/kotetsu-redwood/front.svg",
  36561. extra: 1053/942,
  36562. bottom: 60/1113
  36563. }
  36564. },
  36565. },
  36566. [
  36567. {
  36568. name: "Normal",
  36569. height: math.unit(5 + 2/12, "feet"),
  36570. default: true
  36571. },
  36572. ]
  36573. ))
  36574. characterMakers.push(() => makeCharacter(
  36575. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  36576. {
  36577. front: {
  36578. height: math.unit(2.4, "meters"),
  36579. weight: math.unit(125, "kg"),
  36580. name: "Front",
  36581. image: {
  36582. source: "./media/characters/lilith/front.svg",
  36583. extra: 1590/1513,
  36584. bottom: 203/1793
  36585. }
  36586. },
  36587. },
  36588. [
  36589. {
  36590. name: "Humanoid",
  36591. height: math.unit(2.4, "meters")
  36592. },
  36593. {
  36594. name: "Normal",
  36595. height: math.unit(6, "meters"),
  36596. default: true
  36597. },
  36598. {
  36599. name: "Largest",
  36600. height: math.unit(55, "meters")
  36601. },
  36602. ]
  36603. ))
  36604. characterMakers.push(() => makeCharacter(
  36605. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  36606. {
  36607. front: {
  36608. height: math.unit(8 + 4/12, "feet"),
  36609. weight: math.unit(535, "lb"),
  36610. name: "Front",
  36611. image: {
  36612. source: "./media/characters/beh'kah-bolger/front.svg",
  36613. extra: 1660/1603,
  36614. bottom: 37/1697
  36615. }
  36616. },
  36617. },
  36618. [
  36619. {
  36620. name: "Normal",
  36621. height: math.unit(8 + 4/12, "feet"),
  36622. default: true
  36623. },
  36624. {
  36625. name: "Kaiju",
  36626. height: math.unit(250, "feet")
  36627. },
  36628. {
  36629. name: "Still Growing",
  36630. height: math.unit(10, "miles")
  36631. },
  36632. {
  36633. name: "Continental",
  36634. height: math.unit(5000, "miles")
  36635. },
  36636. {
  36637. name: "Final Form",
  36638. height: math.unit(2500000, "miles")
  36639. },
  36640. ]
  36641. ))
  36642. characterMakers.push(() => makeCharacter(
  36643. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  36644. {
  36645. front: {
  36646. height: math.unit(7 + 2/12, "feet"),
  36647. weight: math.unit(230, "kg"),
  36648. name: "Front",
  36649. image: {
  36650. source: "./media/characters/tatyana-milewska/front.svg",
  36651. extra: 1199/1150,
  36652. bottom: 86/1285
  36653. }
  36654. },
  36655. },
  36656. [
  36657. {
  36658. name: "Normal",
  36659. height: math.unit(7 + 2/12, "feet"),
  36660. default: true
  36661. },
  36662. {
  36663. name: "Big",
  36664. height: math.unit(12, "feet")
  36665. },
  36666. {
  36667. name: "Minimacro",
  36668. height: math.unit(20, "feet")
  36669. },
  36670. {
  36671. name: "Macro",
  36672. height: math.unit(120, "feet")
  36673. },
  36674. ]
  36675. ))
  36676. characterMakers.push(() => makeCharacter(
  36677. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  36678. {
  36679. front: {
  36680. height: math.unit(7 + 8/12, "feet"),
  36681. weight: math.unit(152, "kg"),
  36682. name: "Front",
  36683. image: {
  36684. source: "./media/characters/helen-arri/front.svg",
  36685. extra: 440/423,
  36686. bottom: 14/454
  36687. }
  36688. },
  36689. back: {
  36690. height: math.unit(7 + 8/12, "feet"),
  36691. weight: math.unit(152, "kg"),
  36692. name: "Back",
  36693. image: {
  36694. source: "./media/characters/helen-arri/back.svg",
  36695. extra: 443/426,
  36696. bottom: 8/451
  36697. }
  36698. },
  36699. },
  36700. [
  36701. {
  36702. name: "Normal",
  36703. height: math.unit(7 + 8/12, "feet"),
  36704. default: true
  36705. },
  36706. {
  36707. name: "Big",
  36708. height: math.unit(14, "feet")
  36709. },
  36710. {
  36711. name: "Minimacro",
  36712. height: math.unit(24, "feet")
  36713. },
  36714. {
  36715. name: "Macro",
  36716. height: math.unit(140, "feet")
  36717. },
  36718. ]
  36719. ))
  36720. characterMakers.push(() => makeCharacter(
  36721. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  36722. {
  36723. front: {
  36724. height: math.unit(6, "meters"),
  36725. name: "Front",
  36726. image: {
  36727. source: "./media/characters/ehanu-rehu/front.svg",
  36728. extra: 1800/1800,
  36729. bottom: 59/1859
  36730. }
  36731. },
  36732. },
  36733. [
  36734. {
  36735. name: "Normal",
  36736. height: math.unit(6, "meters"),
  36737. default: true
  36738. },
  36739. ]
  36740. ))
  36741. characterMakers.push(() => makeCharacter(
  36742. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  36743. {
  36744. front: {
  36745. height: math.unit(7 + 3/12, "feet"),
  36746. name: "Front",
  36747. image: {
  36748. source: "./media/characters/renholder/front.svg",
  36749. extra: 3096/2960,
  36750. bottom: 250/3346
  36751. }
  36752. },
  36753. },
  36754. [
  36755. {
  36756. name: "Normal Bat",
  36757. height: math.unit(7 + 3/12, "feet"),
  36758. default: true
  36759. },
  36760. {
  36761. name: "Slightly Tall Bat",
  36762. height: math.unit(100, "feet")
  36763. },
  36764. {
  36765. name: "Big Bat",
  36766. height: math.unit(1000, "feet")
  36767. },
  36768. {
  36769. name: "City-Sized Bat",
  36770. height: math.unit(200000, "feet")
  36771. },
  36772. {
  36773. name: "Bigger Bat",
  36774. height: math.unit(10000, "miles")
  36775. },
  36776. {
  36777. name: "Solar Sized Bat",
  36778. height: math.unit(100, "AU")
  36779. },
  36780. {
  36781. name: "Galactic Bat",
  36782. height: math.unit(200000, "lightyears")
  36783. },
  36784. {
  36785. name: "Universally Known Bat",
  36786. height: math.unit(1, "universe")
  36787. },
  36788. ]
  36789. ))
  36790. characterMakers.push(() => makeCharacter(
  36791. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  36792. {
  36793. front: {
  36794. height: math.unit(6 + 11/12, "feet"),
  36795. weight: math.unit(250, "lb"),
  36796. name: "Front",
  36797. image: {
  36798. source: "./media/characters/cookiecat/front.svg",
  36799. extra: 893/827,
  36800. bottom: 14/907
  36801. }
  36802. },
  36803. },
  36804. [
  36805. {
  36806. name: "Micro",
  36807. height: math.unit(3, "inches")
  36808. },
  36809. {
  36810. name: "Normal",
  36811. height: math.unit(6 + 11/12, "feet"),
  36812. default: true
  36813. },
  36814. {
  36815. name: "Macro",
  36816. height: math.unit(100, "feet")
  36817. },
  36818. {
  36819. name: "Macro+",
  36820. height: math.unit(404, "feet")
  36821. },
  36822. {
  36823. name: "Megamacro",
  36824. height: math.unit(165, "miles")
  36825. },
  36826. {
  36827. name: "Planetary",
  36828. height: math.unit(4600, "miles")
  36829. },
  36830. ]
  36831. ))
  36832. characterMakers.push(() => makeCharacter(
  36833. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  36834. {
  36835. front: {
  36836. height: math.unit(10 + 3/12, "feet"),
  36837. weight: math.unit(1500, "lb"),
  36838. name: "Front",
  36839. image: {
  36840. source: "./media/characters/tux-kusanagi/front.svg",
  36841. extra: 944/840,
  36842. bottom: 39/983
  36843. }
  36844. },
  36845. back: {
  36846. height: math.unit(10 + 3/12, "feet"),
  36847. weight: math.unit(1500, "lb"),
  36848. name: "Back",
  36849. image: {
  36850. source: "./media/characters/tux-kusanagi/back.svg",
  36851. extra: 941/842,
  36852. bottom: 28/969
  36853. }
  36854. },
  36855. rump: {
  36856. height: math.unit(5.25, "feet"),
  36857. name: "Rump",
  36858. image: {
  36859. source: "./media/characters/tux-kusanagi/rump.svg"
  36860. }
  36861. },
  36862. beak: {
  36863. height: math.unit(1.54, "feet"),
  36864. name: "Beak",
  36865. image: {
  36866. source: "./media/characters/tux-kusanagi/beak.svg"
  36867. }
  36868. },
  36869. },
  36870. [
  36871. {
  36872. name: "Normal",
  36873. height: math.unit(10 + 3/12, "feet"),
  36874. default: true
  36875. },
  36876. ]
  36877. ))
  36878. characterMakers.push(() => makeCharacter(
  36879. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  36880. {
  36881. front: {
  36882. height: math.unit(58, "feet"),
  36883. weight: math.unit(200, "tons"),
  36884. name: "Front",
  36885. image: {
  36886. source: "./media/characters/uzarmazari/front.svg",
  36887. extra: 1575/1455,
  36888. bottom: 152/1727
  36889. }
  36890. },
  36891. back: {
  36892. height: math.unit(58, "feet"),
  36893. weight: math.unit(200, "tons"),
  36894. name: "Back",
  36895. image: {
  36896. source: "./media/characters/uzarmazari/back.svg",
  36897. extra: 1585/1510,
  36898. bottom: 157/1742
  36899. }
  36900. },
  36901. head: {
  36902. height: math.unit(26, "feet"),
  36903. name: "Head",
  36904. image: {
  36905. source: "./media/characters/uzarmazari/head.svg"
  36906. }
  36907. },
  36908. },
  36909. [
  36910. {
  36911. name: "Normal",
  36912. height: math.unit(58, "feet"),
  36913. default: true
  36914. },
  36915. ]
  36916. ))
  36917. characterMakers.push(() => makeCharacter(
  36918. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  36919. {
  36920. side: {
  36921. height: math.unit(15, "feet"),
  36922. name: "Side",
  36923. image: {
  36924. source: "./media/characters/akitu/side.svg",
  36925. extra: 1421/1321,
  36926. bottom: 157/1578
  36927. }
  36928. },
  36929. front: {
  36930. height: math.unit(15, "feet"),
  36931. name: "Front",
  36932. image: {
  36933. source: "./media/characters/akitu/front.svg",
  36934. extra: 1435/1326,
  36935. bottom: 232/1667
  36936. }
  36937. },
  36938. },
  36939. [
  36940. {
  36941. name: "Normal",
  36942. height: math.unit(15, "feet"),
  36943. default: true
  36944. },
  36945. ]
  36946. ))
  36947. characterMakers.push(() => makeCharacter(
  36948. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  36949. {
  36950. front: {
  36951. height: math.unit(10 + 8/12, "feet"),
  36952. name: "Front",
  36953. image: {
  36954. source: "./media/characters/azalie-croixland/front.svg",
  36955. extra: 1972/1856,
  36956. bottom: 31/2003
  36957. }
  36958. },
  36959. },
  36960. [
  36961. {
  36962. name: "Original Height",
  36963. height: math.unit(5 + 4/12, "feet")
  36964. },
  36965. {
  36966. name: "Normal Height",
  36967. height: math.unit(10 + 8/12, "feet"),
  36968. default: true
  36969. },
  36970. ]
  36971. ))
  36972. characterMakers.push(() => makeCharacter(
  36973. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  36974. {
  36975. side: {
  36976. height: math.unit(7 + 1/12, "feet"),
  36977. weight: math.unit(245, "lb"),
  36978. name: "Side",
  36979. image: {
  36980. source: "./media/characters/kavus-kazian/side.svg",
  36981. extra: 349/342,
  36982. bottom: 15/364
  36983. }
  36984. },
  36985. },
  36986. [
  36987. {
  36988. name: "Normal",
  36989. height: math.unit(7 + 1/12, "feet"),
  36990. default: true
  36991. },
  36992. ]
  36993. ))
  36994. characterMakers.push(() => makeCharacter(
  36995. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  36996. {
  36997. normalFront: {
  36998. height: math.unit(5 + 11/12, "feet"),
  36999. name: "Front",
  37000. image: {
  37001. source: "./media/characters/moonlight-rose/normal-front.svg",
  37002. extra: 1980/1825,
  37003. bottom: 18/1998
  37004. },
  37005. form: "normal",
  37006. default: true
  37007. },
  37008. normalBack: {
  37009. height: math.unit(5 + 11/12, "feet"),
  37010. name: "Back",
  37011. image: {
  37012. source: "./media/characters/moonlight-rose/normal-back.svg",
  37013. extra: 2010/1839,
  37014. bottom: 10/2020
  37015. },
  37016. form: "normal"
  37017. },
  37018. demonFront: {
  37019. height: math.unit(1.5, "earths"),
  37020. name: "Front",
  37021. image: {
  37022. source: "./media/characters/moonlight-rose/demon.svg",
  37023. extra: 1400/1294,
  37024. bottom: 45/1445
  37025. },
  37026. form: "demon",
  37027. default: true
  37028. },
  37029. terraFront: {
  37030. height: math.unit(1.5, "earths"),
  37031. name: "Front",
  37032. image: {
  37033. source: "./media/characters/moonlight-rose/terra.svg"
  37034. },
  37035. form: "terra",
  37036. default: true
  37037. },
  37038. jupiterFront: {
  37039. height: math.unit(69911*2, "km"),
  37040. name: "Front",
  37041. image: {
  37042. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  37043. extra: 1367/1286,
  37044. bottom: 55/1422
  37045. },
  37046. form: "jupiter",
  37047. default: true
  37048. },
  37049. neptuneFront: {
  37050. height: math.unit(24622*2, "feet"),
  37051. name: "Front",
  37052. image: {
  37053. source: "./media/characters/moonlight-rose/neptune-front.svg",
  37054. extra: 1851/1712,
  37055. bottom: 0/1851
  37056. },
  37057. form: "neptune",
  37058. default: true
  37059. },
  37060. },
  37061. [
  37062. {
  37063. name: "\"Natural\" Height",
  37064. height: math.unit(5 + 11/12, "feet"),
  37065. form: "normal"
  37066. },
  37067. {
  37068. name: "Smallest comfortable size",
  37069. height: math.unit(40, "meters"),
  37070. form: "normal"
  37071. },
  37072. {
  37073. name: "Common size",
  37074. height: math.unit(50, "km"),
  37075. form: "normal",
  37076. default: true
  37077. },
  37078. {
  37079. name: "Normal",
  37080. height: math.unit(1.5, "earths"),
  37081. form: "demon",
  37082. default: true
  37083. },
  37084. {
  37085. name: "Universal",
  37086. height: math.unit(15, "universes"),
  37087. form: "demon"
  37088. },
  37089. {
  37090. name: "Earth",
  37091. height: math.unit(1.5, "earths"),
  37092. form: "terra",
  37093. default: true
  37094. },
  37095. {
  37096. name: "Super Earth",
  37097. height: math.unit(67.5, "earths"),
  37098. form: "terra"
  37099. },
  37100. {
  37101. name: "Doesn't fit in a solar system...",
  37102. height: math.unit(1, "galaxy"),
  37103. form: "terra"
  37104. },
  37105. {
  37106. name: "Saturn",
  37107. height: math.unit(58232*2, "km"),
  37108. form: "jupiter"
  37109. },
  37110. {
  37111. name: "Jupiter",
  37112. height: math.unit(69911*2, "km"),
  37113. form: "jupiter",
  37114. default: true
  37115. },
  37116. {
  37117. name: "HD 100546 b",
  37118. height: math.unit(482938, "km"),
  37119. form: "jupiter"
  37120. },
  37121. {
  37122. name: "Enceladus",
  37123. height: math.unit(513*2, "km"),
  37124. form: "neptune"
  37125. },
  37126. {
  37127. name: "Europe",
  37128. height: math.unit(1560*2, "km"),
  37129. form: "neptune"
  37130. },
  37131. {
  37132. name: "Neptune",
  37133. height: math.unit(24622*2, "km"),
  37134. form: "neptune",
  37135. default: true
  37136. },
  37137. {
  37138. name: "CoRoT-9b",
  37139. height: math.unit(75067*2, "km"),
  37140. form: "neptune"
  37141. },
  37142. ],
  37143. {
  37144. "normal": {
  37145. name: "Normal",
  37146. default: true
  37147. },
  37148. "demon": {
  37149. name: "Demon"
  37150. },
  37151. "terra": {
  37152. name: "Terra"
  37153. },
  37154. "jupiter": {
  37155. name: "Jupiter"
  37156. },
  37157. "neptune": {
  37158. name: "Neptune"
  37159. }
  37160. }
  37161. ))
  37162. characterMakers.push(() => makeCharacter(
  37163. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  37164. {
  37165. front: {
  37166. height: math.unit(16, "feet"),
  37167. weight: math.unit(610, "kg"),
  37168. name: "Front",
  37169. image: {
  37170. source: "./media/characters/huckle/front.svg",
  37171. extra: 1731/1625,
  37172. bottom: 33/1764
  37173. }
  37174. },
  37175. back: {
  37176. height: math.unit(16, "feet"),
  37177. weight: math.unit(610, "kg"),
  37178. name: "Back",
  37179. image: {
  37180. source: "./media/characters/huckle/back.svg",
  37181. extra: 1738/1651,
  37182. bottom: 37/1775
  37183. }
  37184. },
  37185. laughing: {
  37186. height: math.unit(3.75, "feet"),
  37187. name: "Laughing",
  37188. image: {
  37189. source: "./media/characters/huckle/laughing.svg"
  37190. }
  37191. },
  37192. angry: {
  37193. height: math.unit(4.15, "feet"),
  37194. name: "Angry",
  37195. image: {
  37196. source: "./media/characters/huckle/angry.svg"
  37197. }
  37198. },
  37199. },
  37200. [
  37201. {
  37202. name: "Normal",
  37203. height: math.unit(16, "feet"),
  37204. default: true
  37205. },
  37206. {
  37207. name: "Mini Macro",
  37208. height: math.unit(463, "feet")
  37209. },
  37210. {
  37211. name: "Macro",
  37212. height: math.unit(1680, "meters")
  37213. },
  37214. {
  37215. name: "Mega Macro",
  37216. height: math.unit(175, "km")
  37217. },
  37218. {
  37219. name: "Terra Macro",
  37220. height: math.unit(32, "gigameters")
  37221. },
  37222. {
  37223. name: "Multiverse+",
  37224. height: math.unit(2.56e23, "yottameters")
  37225. },
  37226. ]
  37227. ))
  37228. characterMakers.push(() => makeCharacter(
  37229. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  37230. {
  37231. front: {
  37232. height: math.unit(6 + 9/12, "feet"),
  37233. weight: math.unit(280, "lb"),
  37234. name: "Front",
  37235. image: {
  37236. source: "./media/characters/candy/front.svg",
  37237. extra: 234/217,
  37238. bottom: 11/245
  37239. }
  37240. },
  37241. },
  37242. [
  37243. {
  37244. name: "Really Small",
  37245. height: math.unit(0.1, "nm")
  37246. },
  37247. {
  37248. name: "Micro",
  37249. height: math.unit(2, "inches")
  37250. },
  37251. {
  37252. name: "Normal",
  37253. height: math.unit(6 + 9/12, "feet"),
  37254. default: true
  37255. },
  37256. {
  37257. name: "Small Macro",
  37258. height: math.unit(69, "feet")
  37259. },
  37260. {
  37261. name: "Macro",
  37262. height: math.unit(160, "feet")
  37263. },
  37264. {
  37265. name: "Megamacro",
  37266. height: math.unit(22000, "miles")
  37267. },
  37268. {
  37269. name: "Gigamacro",
  37270. height: math.unit(50000, "miles")
  37271. },
  37272. ]
  37273. ))
  37274. characterMakers.push(() => makeCharacter(
  37275. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  37276. {
  37277. front: {
  37278. height: math.unit(4, "feet"),
  37279. weight: math.unit(90, "lb"),
  37280. name: "Front",
  37281. image: {
  37282. source: "./media/characters/joey-mcdonald/front.svg",
  37283. extra: 1059/852,
  37284. bottom: 33/1092
  37285. }
  37286. },
  37287. back: {
  37288. height: math.unit(4, "feet"),
  37289. weight: math.unit(90, "lb"),
  37290. name: "Back",
  37291. image: {
  37292. source: "./media/characters/joey-mcdonald/back.svg",
  37293. extra: 1077/879,
  37294. bottom: 5/1082
  37295. }
  37296. },
  37297. frontKobold: {
  37298. height: math.unit(4, "feet"),
  37299. weight: math.unit(100, "lb"),
  37300. name: "Front-kobold",
  37301. image: {
  37302. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  37303. extra: 1480/1367,
  37304. bottom: 0/1480
  37305. }
  37306. },
  37307. backKobold: {
  37308. height: math.unit(4, "feet"),
  37309. weight: math.unit(100, "lb"),
  37310. name: "Back-kobold",
  37311. image: {
  37312. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  37313. extra: 1449/1361,
  37314. bottom: 0/1449
  37315. }
  37316. },
  37317. },
  37318. [
  37319. {
  37320. name: "Normal",
  37321. height: math.unit(4, "feet"),
  37322. default: true
  37323. },
  37324. ]
  37325. ))
  37326. characterMakers.push(() => makeCharacter(
  37327. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  37328. {
  37329. front: {
  37330. height: math.unit(12 + 6/12, "feet"),
  37331. name: "Front",
  37332. image: {
  37333. source: "./media/characters/kass-lockheed/front.svg",
  37334. extra: 354/343,
  37335. bottom: 9/363
  37336. }
  37337. },
  37338. back: {
  37339. height: math.unit(12 + 6/12, "feet"),
  37340. name: "Back",
  37341. image: {
  37342. source: "./media/characters/kass-lockheed/back.svg",
  37343. extra: 364/352,
  37344. bottom: 3/367
  37345. }
  37346. },
  37347. dick: {
  37348. height: math.unit(3.12, "feet"),
  37349. name: "Dick",
  37350. image: {
  37351. source: "./media/characters/kass-lockheed/dick.svg"
  37352. }
  37353. },
  37354. head: {
  37355. height: math.unit(2.6, "feet"),
  37356. name: "Head",
  37357. image: {
  37358. source: "./media/characters/kass-lockheed/head.svg"
  37359. }
  37360. },
  37361. bleh: {
  37362. height: math.unit(2.85, "feet"),
  37363. name: "Bleh",
  37364. image: {
  37365. source: "./media/characters/kass-lockheed/bleh.svg"
  37366. }
  37367. },
  37368. smug: {
  37369. height: math.unit(2.85, "feet"),
  37370. name: "Smug",
  37371. image: {
  37372. source: "./media/characters/kass-lockheed/smug.svg"
  37373. }
  37374. },
  37375. },
  37376. [
  37377. {
  37378. name: "Normal",
  37379. height: math.unit(12 + 6/12, "feet"),
  37380. default: true
  37381. },
  37382. ]
  37383. ))
  37384. characterMakers.push(() => makeCharacter(
  37385. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  37386. {
  37387. front: {
  37388. height: math.unit(6 + 2/12, "feet"),
  37389. name: "Front",
  37390. image: {
  37391. source: "./media/characters/taylor/front.svg",
  37392. extra: 639/495,
  37393. bottom: 12/651
  37394. }
  37395. },
  37396. },
  37397. [
  37398. {
  37399. name: "Normal",
  37400. height: math.unit(6 + 2/12, "feet"),
  37401. default: true
  37402. },
  37403. {
  37404. name: "Big",
  37405. height: math.unit(15, "feet")
  37406. },
  37407. {
  37408. name: "Lorg",
  37409. height: math.unit(80, "feet")
  37410. },
  37411. {
  37412. name: "Too Lorg",
  37413. height: math.unit(120, "feet")
  37414. },
  37415. ]
  37416. ))
  37417. characterMakers.push(() => makeCharacter(
  37418. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  37419. {
  37420. front: {
  37421. height: math.unit(15, "feet"),
  37422. name: "Front",
  37423. image: {
  37424. source: "./media/characters/kaizer/front.svg",
  37425. extra: 1612/1436,
  37426. bottom: 43/1655
  37427. }
  37428. },
  37429. },
  37430. [
  37431. {
  37432. name: "Normal",
  37433. height: math.unit(15, "feet"),
  37434. default: true
  37435. },
  37436. ]
  37437. ))
  37438. characterMakers.push(() => makeCharacter(
  37439. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  37440. {
  37441. front: {
  37442. height: math.unit(2, "feet"),
  37443. weight: math.unit(30, "lb"),
  37444. name: "Front",
  37445. image: {
  37446. source: "./media/characters/sandy/front.svg",
  37447. extra: 1439/1307,
  37448. bottom: 194/1633
  37449. }
  37450. },
  37451. },
  37452. [
  37453. {
  37454. name: "Normal",
  37455. height: math.unit(2, "feet"),
  37456. default: true
  37457. },
  37458. ]
  37459. ))
  37460. characterMakers.push(() => makeCharacter(
  37461. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  37462. {
  37463. front: {
  37464. height: math.unit(3, "feet"),
  37465. name: "Front",
  37466. image: {
  37467. source: "./media/characters/mellvi/front.svg",
  37468. extra: 1831/1630,
  37469. bottom: 58/1889
  37470. }
  37471. },
  37472. },
  37473. [
  37474. {
  37475. name: "Normal",
  37476. height: math.unit(3, "feet"),
  37477. default: true
  37478. },
  37479. ]
  37480. ))
  37481. characterMakers.push(() => makeCharacter(
  37482. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  37483. {
  37484. front: {
  37485. height: math.unit(5 + 11/12, "feet"),
  37486. weight: math.unit(200, "lb"),
  37487. name: "Front",
  37488. image: {
  37489. source: "./media/characters/shirou/front.svg",
  37490. extra: 2491/2383,
  37491. bottom: 189/2680
  37492. }
  37493. },
  37494. back: {
  37495. height: math.unit(5 + 11/12, "feet"),
  37496. weight: math.unit(200, "lb"),
  37497. name: "Back",
  37498. image: {
  37499. source: "./media/characters/shirou/back.svg",
  37500. extra: 2554/2450,
  37501. bottom: 76/2630
  37502. }
  37503. },
  37504. },
  37505. [
  37506. {
  37507. name: "Normal",
  37508. height: math.unit(5 + 11/12, "feet"),
  37509. default: true
  37510. },
  37511. ]
  37512. ))
  37513. characterMakers.push(() => makeCharacter(
  37514. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  37515. {
  37516. front: {
  37517. height: math.unit(6 + 3/12, "feet"),
  37518. weight: math.unit(177, "lb"),
  37519. name: "Front",
  37520. image: {
  37521. source: "./media/characters/noryu/front.svg",
  37522. extra: 973/885,
  37523. bottom: 10/983
  37524. }
  37525. },
  37526. },
  37527. [
  37528. {
  37529. name: "Normal",
  37530. height: math.unit(6 + 3/12, "feet"),
  37531. default: true
  37532. },
  37533. ]
  37534. ))
  37535. characterMakers.push(() => makeCharacter(
  37536. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  37537. {
  37538. front: {
  37539. height: math.unit(5 + 6/12, "feet"),
  37540. weight: math.unit(170, "lb"),
  37541. name: "Front",
  37542. image: {
  37543. source: "./media/characters/mevolas-rubenido/front.svg",
  37544. extra: 2109/1901,
  37545. bottom: 96/2205
  37546. }
  37547. },
  37548. },
  37549. [
  37550. {
  37551. name: "Normal",
  37552. height: math.unit(5 + 6/12, "feet"),
  37553. default: true
  37554. },
  37555. ]
  37556. ))
  37557. characterMakers.push(() => makeCharacter(
  37558. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  37559. {
  37560. front: {
  37561. height: math.unit(100, "feet"),
  37562. name: "Front",
  37563. image: {
  37564. source: "./media/characters/dee/front.svg",
  37565. extra: 2153/2036,
  37566. bottom: 59/2212
  37567. }
  37568. },
  37569. back: {
  37570. height: math.unit(100, "feet"),
  37571. name: "Back",
  37572. image: {
  37573. source: "./media/characters/dee/back.svg",
  37574. extra: 2183/2058,
  37575. bottom: 75/2258
  37576. }
  37577. },
  37578. foot: {
  37579. height: math.unit(19.43, "feet"),
  37580. name: "Foot",
  37581. image: {
  37582. source: "./media/characters/dee/foot.svg"
  37583. }
  37584. },
  37585. hoof: {
  37586. height: math.unit(20.6, "feet"),
  37587. name: "Hoof",
  37588. image: {
  37589. source: "./media/characters/dee/hoof.svg"
  37590. }
  37591. },
  37592. },
  37593. [
  37594. {
  37595. name: "Macro",
  37596. height: math.unit(100, "feet"),
  37597. default: true
  37598. },
  37599. ]
  37600. ))
  37601. characterMakers.push(() => makeCharacter(
  37602. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  37603. {
  37604. front: {
  37605. height: math.unit(5 + 6/12, "feet"),
  37606. name: "Front",
  37607. image: {
  37608. source: "./media/characters/teh/front.svg",
  37609. extra: 1002/847,
  37610. bottom: 62/1064
  37611. }
  37612. },
  37613. },
  37614. [
  37615. {
  37616. name: "Normal",
  37617. height: math.unit(5 + 6/12, "feet"),
  37618. default: true
  37619. },
  37620. ]
  37621. ))
  37622. characterMakers.push(() => makeCharacter(
  37623. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  37624. {
  37625. side: {
  37626. height: math.unit(6 + 1/12, "feet"),
  37627. weight: math.unit(204, "lb"),
  37628. name: "Side",
  37629. image: {
  37630. source: "./media/characters/quicksilver-ayukoti/side.svg",
  37631. extra: 974/775,
  37632. bottom: 169/1143
  37633. }
  37634. },
  37635. sitting: {
  37636. height: math.unit(6 + 2/12, "feet"),
  37637. weight: math.unit(204, "lb"),
  37638. name: "Sitting",
  37639. image: {
  37640. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  37641. extra: 1175/964,
  37642. bottom: 378/1553
  37643. }
  37644. },
  37645. },
  37646. [
  37647. {
  37648. name: "Normal",
  37649. height: math.unit(6 + 1/12, "feet"),
  37650. default: true
  37651. },
  37652. ]
  37653. ))
  37654. characterMakers.push(() => makeCharacter(
  37655. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  37656. {
  37657. front: {
  37658. height: math.unit(6, "inches"),
  37659. name: "Front",
  37660. image: {
  37661. source: "./media/characters/tululi/front.svg",
  37662. extra: 1997/1876,
  37663. bottom: 20/2017
  37664. }
  37665. },
  37666. },
  37667. [
  37668. {
  37669. name: "Normal",
  37670. height: math.unit(6, "inches"),
  37671. default: true
  37672. },
  37673. ]
  37674. ))
  37675. characterMakers.push(() => makeCharacter(
  37676. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  37677. {
  37678. front: {
  37679. height: math.unit(4 + 1/12, "feet"),
  37680. name: "Front",
  37681. image: {
  37682. source: "./media/characters/star/front.svg",
  37683. extra: 1493/1189,
  37684. bottom: 48/1541
  37685. }
  37686. },
  37687. },
  37688. [
  37689. {
  37690. name: "Normal",
  37691. height: math.unit(4 + 1/12, "feet"),
  37692. default: true
  37693. },
  37694. ]
  37695. ))
  37696. characterMakers.push(() => makeCharacter(
  37697. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  37698. {
  37699. front: {
  37700. height: math.unit(6 + 3/12, "feet"),
  37701. name: "Front",
  37702. image: {
  37703. source: "./media/characters/comet/front.svg",
  37704. extra: 1681/1462,
  37705. bottom: 26/1707
  37706. }
  37707. },
  37708. },
  37709. [
  37710. {
  37711. name: "Normal",
  37712. height: math.unit(6 + 3/12, "feet"),
  37713. default: true
  37714. },
  37715. ]
  37716. ))
  37717. characterMakers.push(() => makeCharacter(
  37718. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  37719. {
  37720. front: {
  37721. height: math.unit(950, "feet"),
  37722. name: "Front",
  37723. image: {
  37724. source: "./media/characters/vortex/front.svg",
  37725. extra: 1497/1434,
  37726. bottom: 56/1553
  37727. }
  37728. },
  37729. maw: {
  37730. height: math.unit(285, "feet"),
  37731. name: "Maw",
  37732. image: {
  37733. source: "./media/characters/vortex/maw.svg"
  37734. }
  37735. },
  37736. },
  37737. [
  37738. {
  37739. name: "Macro",
  37740. height: math.unit(950, "feet"),
  37741. default: true
  37742. },
  37743. ]
  37744. ))
  37745. characterMakers.push(() => makeCharacter(
  37746. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  37747. {
  37748. front: {
  37749. height: math.unit(600, "feet"),
  37750. weight: math.unit(0.02, "grams"),
  37751. name: "Front",
  37752. image: {
  37753. source: "./media/characters/doodle/front.svg",
  37754. extra: 1578/1413,
  37755. bottom: 37/1615
  37756. }
  37757. },
  37758. },
  37759. [
  37760. {
  37761. name: "Macro",
  37762. height: math.unit(600, "feet"),
  37763. default: true
  37764. },
  37765. ]
  37766. ))
  37767. characterMakers.push(() => makeCharacter(
  37768. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  37769. {
  37770. front: {
  37771. height: math.unit(6 + 6/12, "feet"),
  37772. name: "Front",
  37773. image: {
  37774. source: "./media/characters/jai/front.svg",
  37775. extra: 1645/1534,
  37776. bottom: 115/1760
  37777. }
  37778. },
  37779. },
  37780. [
  37781. {
  37782. name: "Normal",
  37783. height: math.unit(6 + 6/12, "feet"),
  37784. default: true
  37785. },
  37786. ]
  37787. ))
  37788. characterMakers.push(() => makeCharacter(
  37789. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  37790. {
  37791. front: {
  37792. height: math.unit(6 + 8/12, "feet"),
  37793. name: "Front",
  37794. image: {
  37795. source: "./media/characters/pixel/front.svg",
  37796. extra: 1900/1735,
  37797. bottom: 63/1963
  37798. }
  37799. },
  37800. },
  37801. [
  37802. {
  37803. name: "Normal",
  37804. height: math.unit(6 + 8/12, "feet"),
  37805. default: true
  37806. },
  37807. ]
  37808. ))
  37809. characterMakers.push(() => makeCharacter(
  37810. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  37811. {
  37812. back: {
  37813. height: math.unit(4 + 1/12, "feet"),
  37814. weight: math.unit(75, "lb"),
  37815. name: "Back",
  37816. image: {
  37817. source: "./media/characters/rhett/back.svg",
  37818. extra: 930/878,
  37819. bottom: 25/955
  37820. }
  37821. },
  37822. front: {
  37823. height: math.unit(4 + 1/12, "feet"),
  37824. weight: math.unit(75, "lb"),
  37825. name: "Front",
  37826. image: {
  37827. source: "./media/characters/rhett/front.svg",
  37828. extra: 1682/1586,
  37829. bottom: 92/1774
  37830. }
  37831. },
  37832. },
  37833. [
  37834. {
  37835. name: "Micro",
  37836. height: math.unit(8, "inches")
  37837. },
  37838. {
  37839. name: "Tiny",
  37840. height: math.unit(2, "feet")
  37841. },
  37842. {
  37843. name: "Normal",
  37844. height: math.unit(4 + 1/12, "feet"),
  37845. default: true
  37846. },
  37847. ]
  37848. ))
  37849. characterMakers.push(() => makeCharacter(
  37850. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  37851. {
  37852. front: {
  37853. height: math.unit(3 + 3/12, "feet"),
  37854. name: "Front",
  37855. image: {
  37856. source: "./media/characters/penny/front.svg",
  37857. extra: 1406/1311,
  37858. bottom: 26/1432
  37859. }
  37860. },
  37861. },
  37862. [
  37863. {
  37864. name: "Normal",
  37865. height: math.unit(3 + 3/12, "feet"),
  37866. default: true
  37867. },
  37868. ]
  37869. ))
  37870. characterMakers.push(() => makeCharacter(
  37871. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  37872. {
  37873. front: {
  37874. height: math.unit(4 + 11/12, "feet"),
  37875. name: "Front",
  37876. image: {
  37877. source: "./media/characters/monty/front.svg",
  37878. extra: 1479/1209,
  37879. bottom: 0/1479
  37880. }
  37881. },
  37882. },
  37883. [
  37884. {
  37885. name: "Normal",
  37886. height: math.unit(4 + 11/12, "feet"),
  37887. default: true
  37888. },
  37889. ]
  37890. ))
  37891. characterMakers.push(() => makeCharacter(
  37892. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  37893. {
  37894. front: {
  37895. height: math.unit(8 + 4/12, "feet"),
  37896. name: "Front",
  37897. image: {
  37898. source: "./media/characters/sterling/front.svg",
  37899. extra: 1420/1236,
  37900. bottom: 27/1447
  37901. }
  37902. },
  37903. },
  37904. [
  37905. {
  37906. name: "Normal",
  37907. height: math.unit(8 + 4/12, "feet"),
  37908. default: true
  37909. },
  37910. ]
  37911. ))
  37912. characterMakers.push(() => makeCharacter(
  37913. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  37914. {
  37915. front: {
  37916. height: math.unit(15, "feet"),
  37917. name: "Front",
  37918. image: {
  37919. source: "./media/characters/marble/front.svg",
  37920. extra: 973/937,
  37921. bottom: 32/1005
  37922. }
  37923. },
  37924. },
  37925. [
  37926. {
  37927. name: "Normal",
  37928. height: math.unit(15, "feet"),
  37929. default: true
  37930. },
  37931. ]
  37932. ))
  37933. characterMakers.push(() => makeCharacter(
  37934. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  37935. {
  37936. front: {
  37937. height: math.unit(3, "inches"),
  37938. name: "Front",
  37939. image: {
  37940. source: "./media/characters/powder/front.svg",
  37941. extra: 1504/1334,
  37942. bottom: 518/2022
  37943. }
  37944. },
  37945. },
  37946. [
  37947. {
  37948. name: "Normal",
  37949. height: math.unit(3, "inches"),
  37950. default: true
  37951. },
  37952. ]
  37953. ))
  37954. characterMakers.push(() => makeCharacter(
  37955. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  37956. {
  37957. front: {
  37958. height: math.unit(4 + 5/12, "feet"),
  37959. name: "Front",
  37960. image: {
  37961. source: "./media/characters/joey-raccoon/front.svg",
  37962. extra: 1273/1197,
  37963. bottom: 0/1273
  37964. }
  37965. },
  37966. },
  37967. [
  37968. {
  37969. name: "Normal",
  37970. height: math.unit(4 + 5/12, "feet"),
  37971. default: true
  37972. },
  37973. ]
  37974. ))
  37975. characterMakers.push(() => makeCharacter(
  37976. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  37977. {
  37978. front: {
  37979. height: math.unit(8 + 4/12, "feet"),
  37980. name: "Front",
  37981. image: {
  37982. source: "./media/characters/vick/front.svg",
  37983. extra: 2187/2118,
  37984. bottom: 47/2234
  37985. }
  37986. },
  37987. },
  37988. [
  37989. {
  37990. name: "Normal",
  37991. height: math.unit(8 + 4/12, "feet"),
  37992. default: true
  37993. },
  37994. ]
  37995. ))
  37996. characterMakers.push(() => makeCharacter(
  37997. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  37998. {
  37999. front: {
  38000. height: math.unit(5 + 5/12, "feet"),
  38001. name: "Front",
  38002. image: {
  38003. source: "./media/characters/mitsy/front.svg",
  38004. extra: 1842/1695,
  38005. bottom: 0/1842
  38006. }
  38007. },
  38008. },
  38009. [
  38010. {
  38011. name: "Normal",
  38012. height: math.unit(5 + 5/12, "feet"),
  38013. default: true
  38014. },
  38015. ]
  38016. ))
  38017. characterMakers.push(() => makeCharacter(
  38018. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  38019. {
  38020. front: {
  38021. height: math.unit(6 + 3/12, "feet"),
  38022. name: "Front",
  38023. image: {
  38024. source: "./media/characters/silvy/front.svg",
  38025. extra: 1995/1836,
  38026. bottom: 225/2220
  38027. }
  38028. },
  38029. },
  38030. [
  38031. {
  38032. name: "Normal",
  38033. height: math.unit(6 + 3/12, "feet"),
  38034. default: true
  38035. },
  38036. ]
  38037. ))
  38038. characterMakers.push(() => makeCharacter(
  38039. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  38040. {
  38041. front: {
  38042. height: math.unit(3 + 8/12, "feet"),
  38043. name: "Front",
  38044. image: {
  38045. source: "./media/characters/rodney/front.svg",
  38046. extra: 1956/1747,
  38047. bottom: 31/1987
  38048. }
  38049. },
  38050. frontDressed: {
  38051. height: math.unit(2.9, "feet"),
  38052. name: "Front (Dressed)",
  38053. image: {
  38054. source: "./media/characters/rodney/front-dressed.svg",
  38055. extra: 1382/1241,
  38056. bottom: 385/1767
  38057. }
  38058. },
  38059. },
  38060. [
  38061. {
  38062. name: "Normal",
  38063. height: math.unit(3 + 8/12, "feet"),
  38064. default: true
  38065. },
  38066. ]
  38067. ))
  38068. characterMakers.push(() => makeCharacter(
  38069. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  38070. {
  38071. front: {
  38072. height: math.unit(5 + 9/12, "feet"),
  38073. weight: math.unit(194, "lbs"),
  38074. name: "Front",
  38075. image: {
  38076. source: "./media/characters/zakail-sudekai/front.svg",
  38077. extra: 2696/2533,
  38078. bottom: 248/2944
  38079. }
  38080. },
  38081. maw: {
  38082. height: math.unit(1.35, "feet"),
  38083. name: "Maw",
  38084. image: {
  38085. source: "./media/characters/zakail-sudekai/maw.svg"
  38086. }
  38087. },
  38088. },
  38089. [
  38090. {
  38091. name: "Normal",
  38092. height: math.unit(5 + 9/12, "feet"),
  38093. default: true
  38094. },
  38095. ]
  38096. ))
  38097. characterMakers.push(() => makeCharacter(
  38098. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  38099. {
  38100. front: {
  38101. height: math.unit(8 + 4/12, "feet"),
  38102. weight: math.unit(1200, "lb"),
  38103. name: "Front",
  38104. image: {
  38105. source: "./media/characters/eleanor/front.svg",
  38106. extra: 1226/1192,
  38107. bottom: 52/1278
  38108. }
  38109. },
  38110. back: {
  38111. height: math.unit(8 + 4/12, "feet"),
  38112. weight: math.unit(1200, "lb"),
  38113. name: "Back",
  38114. image: {
  38115. source: "./media/characters/eleanor/back.svg",
  38116. extra: 1242/1184,
  38117. bottom: 60/1302
  38118. }
  38119. },
  38120. head: {
  38121. height: math.unit(2.62, "feet"),
  38122. name: "Head",
  38123. image: {
  38124. source: "./media/characters/eleanor/head.svg"
  38125. }
  38126. },
  38127. },
  38128. [
  38129. {
  38130. name: "Normal",
  38131. height: math.unit(8 + 4/12, "feet"),
  38132. default: true
  38133. },
  38134. ]
  38135. ))
  38136. characterMakers.push(() => makeCharacter(
  38137. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  38138. {
  38139. front: {
  38140. height: math.unit(8 + 4/12, "feet"),
  38141. weight: math.unit(750, "lb"),
  38142. name: "Front",
  38143. image: {
  38144. source: "./media/characters/tanya/front.svg",
  38145. extra: 1749/1615,
  38146. bottom: 33/1782
  38147. }
  38148. },
  38149. },
  38150. [
  38151. {
  38152. name: "Normal",
  38153. height: math.unit(8 + 4/12, "feet"),
  38154. default: true
  38155. },
  38156. ]
  38157. ))
  38158. characterMakers.push(() => makeCharacter(
  38159. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  38160. {
  38161. front: {
  38162. height: math.unit(5, "feet"),
  38163. weight: math.unit(225, "lb"),
  38164. name: "Front",
  38165. image: {
  38166. source: "./media/characters/cindy/front.svg",
  38167. extra: 1320/1250,
  38168. bottom: 42/1362
  38169. }
  38170. },
  38171. frontDressed: {
  38172. height: math.unit(5, "feet"),
  38173. weight: math.unit(225, "lb"),
  38174. name: "Front (Dressed)",
  38175. image: {
  38176. source: "./media/characters/cindy/front-dressed.svg",
  38177. extra: 1320/1250,
  38178. bottom: 42/1362
  38179. }
  38180. },
  38181. back: {
  38182. height: math.unit(5, "feet"),
  38183. weight: math.unit(225, "lb"),
  38184. name: "Back",
  38185. image: {
  38186. source: "./media/characters/cindy/back.svg",
  38187. extra: 1384/1346,
  38188. bottom: 14/1398
  38189. }
  38190. },
  38191. },
  38192. [
  38193. {
  38194. name: "Normal",
  38195. height: math.unit(5, "feet"),
  38196. default: true
  38197. },
  38198. ]
  38199. ))
  38200. characterMakers.push(() => makeCharacter(
  38201. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  38202. {
  38203. front: {
  38204. height: math.unit(6 + 9/12, "feet"),
  38205. weight: math.unit(440, "lb"),
  38206. name: "Front",
  38207. image: {
  38208. source: "./media/characters/wilbur-owen/front.svg",
  38209. extra: 1575/1448,
  38210. bottom: 72/1647
  38211. }
  38212. },
  38213. back: {
  38214. height: math.unit(6 + 9/12, "feet"),
  38215. weight: math.unit(440, "lb"),
  38216. name: "Back",
  38217. image: {
  38218. source: "./media/characters/wilbur-owen/back.svg",
  38219. extra: 1578/1445,
  38220. bottom: 36/1614
  38221. }
  38222. },
  38223. },
  38224. [
  38225. {
  38226. name: "Normal",
  38227. height: math.unit(6 + 9/12, "feet"),
  38228. default: true
  38229. },
  38230. ]
  38231. ))
  38232. characterMakers.push(() => makeCharacter(
  38233. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  38234. {
  38235. front: {
  38236. height: math.unit(6 + 5/12, "feet"),
  38237. weight: math.unit(650, "lb"),
  38238. name: "Front",
  38239. image: {
  38240. source: "./media/characters/keegan/front.svg",
  38241. extra: 2387/2198,
  38242. bottom: 33/2420
  38243. }
  38244. },
  38245. side: {
  38246. height: math.unit(6 + 5/12, "feet"),
  38247. weight: math.unit(650, "lb"),
  38248. name: "Side",
  38249. image: {
  38250. source: "./media/characters/keegan/side.svg",
  38251. extra: 2390/2202,
  38252. bottom: 47/2437
  38253. }
  38254. },
  38255. back: {
  38256. height: math.unit(6 + 5/12, "feet"),
  38257. weight: math.unit(650, "lb"),
  38258. name: "Back",
  38259. image: {
  38260. source: "./media/characters/keegan/back.svg",
  38261. extra: 2418/2268,
  38262. bottom: 15/2433
  38263. }
  38264. },
  38265. frontSfw: {
  38266. height: math.unit(6 + 5/12, "feet"),
  38267. weight: math.unit(650, "lb"),
  38268. name: "Front (SFW)",
  38269. image: {
  38270. source: "./media/characters/keegan/front-sfw.svg",
  38271. extra: 2387/2198,
  38272. bottom: 33/2420
  38273. }
  38274. },
  38275. beans: {
  38276. height: math.unit(1.85, "feet"),
  38277. name: "Beans",
  38278. image: {
  38279. source: "./media/characters/keegan/beans.svg"
  38280. }
  38281. },
  38282. },
  38283. [
  38284. {
  38285. name: "Normal",
  38286. height: math.unit(6 + 5/12, "feet"),
  38287. default: true
  38288. },
  38289. ]
  38290. ))
  38291. characterMakers.push(() => makeCharacter(
  38292. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  38293. {
  38294. front: {
  38295. height: math.unit(9, "feet"),
  38296. name: "Front",
  38297. image: {
  38298. source: "./media/characters/colton/front.svg",
  38299. extra: 1589/1326,
  38300. bottom: 139/1728
  38301. }
  38302. },
  38303. },
  38304. [
  38305. {
  38306. name: "Normal",
  38307. height: math.unit(9, "feet"),
  38308. default: true
  38309. },
  38310. ]
  38311. ))
  38312. characterMakers.push(() => makeCharacter(
  38313. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  38314. {
  38315. front: {
  38316. height: math.unit(2 + 9/12, "feet"),
  38317. name: "Front",
  38318. image: {
  38319. source: "./media/characters/bora/front.svg",
  38320. extra: 1265/1250,
  38321. bottom: 24/1289
  38322. }
  38323. },
  38324. },
  38325. [
  38326. {
  38327. name: "Normal",
  38328. height: math.unit(2 + 9/12, "feet"),
  38329. default: true
  38330. },
  38331. ]
  38332. ))
  38333. characterMakers.push(() => makeCharacter(
  38334. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  38335. {
  38336. front: {
  38337. height: math.unit(8, "feet"),
  38338. name: "Front",
  38339. image: {
  38340. source: "./media/characters/myu-myu/front.svg",
  38341. extra: 1949/1857,
  38342. bottom: 90/2039
  38343. }
  38344. },
  38345. },
  38346. [
  38347. {
  38348. name: "Normal",
  38349. height: math.unit(8, "feet"),
  38350. default: true
  38351. },
  38352. {
  38353. name: "Big",
  38354. height: math.unit(15, "feet")
  38355. },
  38356. {
  38357. name: "BIG",
  38358. height: math.unit(25, "feet")
  38359. },
  38360. ]
  38361. ))
  38362. characterMakers.push(() => makeCharacter(
  38363. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  38364. {
  38365. side: {
  38366. height: math.unit(7 + 5/12, "feet"),
  38367. weight: math.unit(2800, "lb"),
  38368. name: "Side",
  38369. image: {
  38370. source: "./media/characters/haloren/side.svg",
  38371. extra: 1793/409,
  38372. bottom: 59/1852
  38373. }
  38374. },
  38375. frontPaw: {
  38376. height: math.unit(2.36, "feet"),
  38377. name: "Front paw",
  38378. image: {
  38379. source: "./media/characters/haloren/front-paw.svg"
  38380. }
  38381. },
  38382. hindPaw: {
  38383. height: math.unit(3.18, "feet"),
  38384. name: "Hind paw",
  38385. image: {
  38386. source: "./media/characters/haloren/hind-paw.svg"
  38387. }
  38388. },
  38389. maw: {
  38390. height: math.unit(5.05, "feet"),
  38391. name: "Maw",
  38392. image: {
  38393. source: "./media/characters/haloren/maw.svg"
  38394. }
  38395. },
  38396. dick: {
  38397. height: math.unit(2.90, "feet"),
  38398. name: "Dick",
  38399. image: {
  38400. source: "./media/characters/haloren/dick.svg"
  38401. }
  38402. },
  38403. },
  38404. [
  38405. {
  38406. name: "Normal",
  38407. height: math.unit(7 + 5/12, "feet"),
  38408. default: true
  38409. },
  38410. {
  38411. name: "Enhanced",
  38412. height: math.unit(14 + 3/12, "feet")
  38413. },
  38414. ]
  38415. ))
  38416. characterMakers.push(() => makeCharacter(
  38417. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  38418. {
  38419. front: {
  38420. height: math.unit(171, "cm"),
  38421. name: "Front",
  38422. image: {
  38423. source: "./media/characters/kimmy/front.svg",
  38424. extra: 1491/1435,
  38425. bottom: 53/1544
  38426. }
  38427. },
  38428. },
  38429. [
  38430. {
  38431. name: "Small",
  38432. height: math.unit(9, "cm")
  38433. },
  38434. {
  38435. name: "Normal",
  38436. height: math.unit(171, "cm"),
  38437. default: true
  38438. },
  38439. ]
  38440. ))
  38441. characterMakers.push(() => makeCharacter(
  38442. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  38443. {
  38444. front: {
  38445. height: math.unit(8, "feet"),
  38446. weight: math.unit(300, "lb"),
  38447. name: "Front",
  38448. image: {
  38449. source: "./media/characters/galeboomer/front.svg",
  38450. extra: 4651/4415,
  38451. bottom: 162/4813
  38452. }
  38453. },
  38454. back: {
  38455. height: math.unit(8, "feet"),
  38456. weight: math.unit(300, "lb"),
  38457. name: "Back",
  38458. image: {
  38459. source: "./media/characters/galeboomer/back.svg",
  38460. extra: 4544/4314,
  38461. bottom: 16/4560
  38462. }
  38463. },
  38464. frontAlt: {
  38465. height: math.unit(8, "feet"),
  38466. weight: math.unit(300, "lb"),
  38467. name: "Front (Alt)",
  38468. image: {
  38469. source: "./media/characters/galeboomer/front-alt.svg",
  38470. extra: 4458/4228,
  38471. bottom: 68/4526
  38472. }
  38473. },
  38474. maw: {
  38475. height: math.unit(1.2, "feet"),
  38476. name: "Maw",
  38477. image: {
  38478. source: "./media/characters/galeboomer/maw.svg"
  38479. }
  38480. },
  38481. },
  38482. [
  38483. {
  38484. name: "Normal",
  38485. height: math.unit(8, "feet"),
  38486. default: true
  38487. },
  38488. ]
  38489. ))
  38490. characterMakers.push(() => makeCharacter(
  38491. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  38492. {
  38493. front: {
  38494. height: math.unit(5 + 9/12, "feet"),
  38495. weight: math.unit(120, "lb"),
  38496. name: "Front",
  38497. image: {
  38498. source: "./media/characters/chyr/front.svg",
  38499. extra: 1323/1254,
  38500. bottom: 63/1386
  38501. }
  38502. },
  38503. back: {
  38504. height: math.unit(5 + 9/12, "feet"),
  38505. weight: math.unit(120, "lb"),
  38506. name: "Back",
  38507. image: {
  38508. source: "./media/characters/chyr/back.svg",
  38509. extra: 1323/1252,
  38510. bottom: 48/1371
  38511. }
  38512. },
  38513. },
  38514. [
  38515. {
  38516. name: "Normal",
  38517. height: math.unit(5 + 9/12, "feet"),
  38518. default: true
  38519. },
  38520. ]
  38521. ))
  38522. characterMakers.push(() => makeCharacter(
  38523. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  38524. {
  38525. front: {
  38526. height: math.unit(7, "feet"),
  38527. weight: math.unit(310, "lb"),
  38528. name: "Front",
  38529. image: {
  38530. source: "./media/characters/solarus/front.svg",
  38531. extra: 2415/2021,
  38532. bottom: 103/2518
  38533. }
  38534. },
  38535. back: {
  38536. height: math.unit(7, "feet"),
  38537. weight: math.unit(310, "lb"),
  38538. name: "Back",
  38539. image: {
  38540. source: "./media/characters/solarus/back.svg",
  38541. extra: 2463/2089,
  38542. bottom: 79/2542
  38543. }
  38544. },
  38545. },
  38546. [
  38547. {
  38548. name: "Normal",
  38549. height: math.unit(7, "feet"),
  38550. default: true
  38551. },
  38552. ]
  38553. ))
  38554. characterMakers.push(() => makeCharacter(
  38555. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  38556. {
  38557. front: {
  38558. height: math.unit(16, "feet"),
  38559. name: "Front",
  38560. image: {
  38561. source: "./media/characters/mutsuju-koizaemon/front.svg",
  38562. extra: 1844/1780,
  38563. bottom: 58/1902
  38564. }
  38565. },
  38566. winterCoat: {
  38567. height: math.unit(16, "feet"),
  38568. name: "Winter Coat",
  38569. image: {
  38570. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  38571. extra: 1807/1775,
  38572. bottom: 69/1876
  38573. }
  38574. },
  38575. },
  38576. [
  38577. {
  38578. name: "Normal",
  38579. height: math.unit(16, "feet"),
  38580. default: true
  38581. },
  38582. {
  38583. name: "Chicago Size",
  38584. height: math.unit(560, "feet")
  38585. },
  38586. ]
  38587. ))
  38588. characterMakers.push(() => makeCharacter(
  38589. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  38590. {
  38591. front: {
  38592. height: math.unit(11 + 6/12, "feet"),
  38593. weight: math.unit(1366, "lb"),
  38594. name: "Front",
  38595. image: {
  38596. source: "./media/characters/lexor/front.svg",
  38597. extra: 1560/1481,
  38598. bottom: 211/1771
  38599. }
  38600. },
  38601. back: {
  38602. height: math.unit(11 + 6/12, "feet"),
  38603. weight: math.unit(1366, "lb"),
  38604. name: "Back",
  38605. image: {
  38606. source: "./media/characters/lexor/back.svg",
  38607. extra: 1614/1533,
  38608. bottom: 76/1690
  38609. }
  38610. },
  38611. maw: {
  38612. height: math.unit(3, "feet"),
  38613. name: "Maw",
  38614. image: {
  38615. source: "./media/characters/lexor/maw.svg"
  38616. }
  38617. },
  38618. dick: {
  38619. height: math.unit(2.59, "feet"),
  38620. name: "Dick",
  38621. image: {
  38622. source: "./media/characters/lexor/dick.svg"
  38623. }
  38624. },
  38625. },
  38626. [
  38627. {
  38628. name: "Normal",
  38629. height: math.unit(11 + 6/12, "feet"),
  38630. default: true
  38631. },
  38632. ]
  38633. ))
  38634. characterMakers.push(() => makeCharacter(
  38635. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  38636. {
  38637. front: {
  38638. height: math.unit(5 + 8/12, "feet"),
  38639. name: "Front",
  38640. image: {
  38641. source: "./media/characters/magnum/front.svg",
  38642. extra: 942/855,
  38643. bottom: 26/968
  38644. }
  38645. },
  38646. },
  38647. [
  38648. {
  38649. name: "Normal",
  38650. height: math.unit(5 + 8/12, "feet"),
  38651. default: true
  38652. },
  38653. ]
  38654. ))
  38655. characterMakers.push(() => makeCharacter(
  38656. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  38657. {
  38658. front: {
  38659. height: math.unit(18 + 4/12, "feet"),
  38660. weight: math.unit(1500, "kg"),
  38661. name: "Front",
  38662. image: {
  38663. source: "./media/characters/solas-sharpsman/front.svg",
  38664. extra: 1698/1589,
  38665. bottom: 0/1698
  38666. }
  38667. },
  38668. },
  38669. [
  38670. {
  38671. name: "Normal",
  38672. height: math.unit(18 + 4/12, "feet"),
  38673. default: true
  38674. },
  38675. ]
  38676. ))
  38677. characterMakers.push(() => makeCharacter(
  38678. { name: "October", species: ["tiger"], tags: ["anthro"] },
  38679. {
  38680. front: {
  38681. height: math.unit(5 + 5/12, "feet"),
  38682. weight: math.unit(180, "lb"),
  38683. name: "Front",
  38684. image: {
  38685. source: "./media/characters/october/front.svg",
  38686. extra: 1800/1650,
  38687. bottom: 0/1800
  38688. }
  38689. },
  38690. frontNsfw: {
  38691. height: math.unit(5 + 5/12, "feet"),
  38692. weight: math.unit(180, "lb"),
  38693. name: "Front (NSFW)",
  38694. image: {
  38695. source: "./media/characters/october/front-nsfw.svg",
  38696. extra: 1392/1307,
  38697. bottom: 42/1434
  38698. }
  38699. },
  38700. },
  38701. [
  38702. {
  38703. name: "Normal",
  38704. height: math.unit(5 + 5/12, "feet"),
  38705. default: true
  38706. },
  38707. ]
  38708. ))
  38709. characterMakers.push(() => makeCharacter(
  38710. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  38711. {
  38712. front: {
  38713. height: math.unit(8 + 6/12, "feet"),
  38714. name: "Front",
  38715. image: {
  38716. source: "./media/characters/essynkardi/front.svg",
  38717. extra: 1914/1846,
  38718. bottom: 22/1936
  38719. }
  38720. },
  38721. },
  38722. [
  38723. {
  38724. name: "Normal",
  38725. height: math.unit(8 + 6/12, "feet"),
  38726. default: true
  38727. },
  38728. ]
  38729. ))
  38730. characterMakers.push(() => makeCharacter(
  38731. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  38732. {
  38733. front: {
  38734. height: math.unit(6 + 6/12, "feet"),
  38735. weight: math.unit(7, "lb"),
  38736. name: "Front",
  38737. image: {
  38738. source: "./media/characters/icky/front.svg",
  38739. extra: 813/782,
  38740. bottom: 66/879
  38741. }
  38742. },
  38743. back: {
  38744. height: math.unit(6 + 6/12, "feet"),
  38745. weight: math.unit(7, "lb"),
  38746. name: "Back",
  38747. image: {
  38748. source: "./media/characters/icky/back.svg",
  38749. extra: 754/735,
  38750. bottom: 56/810
  38751. }
  38752. },
  38753. },
  38754. [
  38755. {
  38756. name: "Normal",
  38757. height: math.unit(6 + 6/12, "feet"),
  38758. default: true
  38759. },
  38760. ]
  38761. ))
  38762. characterMakers.push(() => makeCharacter(
  38763. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  38764. {
  38765. front: {
  38766. height: math.unit(15, "feet"),
  38767. name: "Front",
  38768. image: {
  38769. source: "./media/characters/rojas/front.svg",
  38770. extra: 1462/1408,
  38771. bottom: 95/1557
  38772. }
  38773. },
  38774. back: {
  38775. height: math.unit(15, "feet"),
  38776. name: "Back",
  38777. image: {
  38778. source: "./media/characters/rojas/back.svg",
  38779. extra: 1023/954,
  38780. bottom: 28/1051
  38781. }
  38782. },
  38783. },
  38784. [
  38785. {
  38786. name: "Normal",
  38787. height: math.unit(15, "feet"),
  38788. default: true
  38789. },
  38790. ]
  38791. ))
  38792. characterMakers.push(() => makeCharacter(
  38793. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  38794. {
  38795. frontHuman: {
  38796. height: math.unit(5 + 7/12, "feet"),
  38797. name: "Front (Human)",
  38798. image: {
  38799. source: "./media/characters/alek-dryagan/front-human.svg",
  38800. extra: 1687/1667,
  38801. bottom: 69/1756
  38802. }
  38803. },
  38804. backHuman: {
  38805. height: math.unit(5 + 7/12, "feet"),
  38806. name: "Back (Human)",
  38807. image: {
  38808. source: "./media/characters/alek-dryagan/back-human.svg",
  38809. extra: 1670/1649,
  38810. bottom: 65/1735
  38811. }
  38812. },
  38813. frontDemi: {
  38814. height: math.unit(65, "feet"),
  38815. name: "Front (Demi)",
  38816. image: {
  38817. source: "./media/characters/alek-dryagan/front-demi.svg",
  38818. extra: 1669/1642,
  38819. bottom: 49/1718
  38820. }
  38821. },
  38822. backDemi: {
  38823. height: math.unit(65, "feet"),
  38824. name: "Back (Demi)",
  38825. image: {
  38826. source: "./media/characters/alek-dryagan/back-demi.svg",
  38827. extra: 1658/1637,
  38828. bottom: 40/1698
  38829. }
  38830. },
  38831. mawHuman: {
  38832. height: math.unit(0.3, "feet"),
  38833. name: "Maw (Human)",
  38834. image: {
  38835. source: "./media/characters/alek-dryagan/maw-human.svg"
  38836. }
  38837. },
  38838. mawDemi: {
  38839. height: math.unit(3.8, "feet"),
  38840. name: "Maw (Demi)",
  38841. image: {
  38842. source: "./media/characters/alek-dryagan/maw-demi.svg"
  38843. }
  38844. },
  38845. },
  38846. [
  38847. {
  38848. name: "Normal",
  38849. height: math.unit(5 + 7/12, "feet"),
  38850. default: true
  38851. },
  38852. ]
  38853. ))
  38854. characterMakers.push(() => makeCharacter(
  38855. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  38856. {
  38857. frontHuman: {
  38858. height: math.unit(5 + 2/12, "feet"),
  38859. name: "Front (Human)",
  38860. image: {
  38861. source: "./media/characters/gen/front-human.svg",
  38862. extra: 1627/1538,
  38863. bottom: 71/1698
  38864. }
  38865. },
  38866. backHuman: {
  38867. height: math.unit(5 + 2/12, "feet"),
  38868. name: "Back (Human)",
  38869. image: {
  38870. source: "./media/characters/gen/back-human.svg",
  38871. extra: 1638/1548,
  38872. bottom: 69/1707
  38873. }
  38874. },
  38875. frontDemi: {
  38876. height: math.unit(5 + 2/12, "feet"),
  38877. name: "Front (Demi)",
  38878. image: {
  38879. source: "./media/characters/gen/front-demi.svg",
  38880. extra: 1627/1538,
  38881. bottom: 71/1698
  38882. }
  38883. },
  38884. backDemi: {
  38885. height: math.unit(5 + 2/12, "feet"),
  38886. name: "Back (Demi)",
  38887. image: {
  38888. source: "./media/characters/gen/back-demi.svg",
  38889. extra: 1638/1548,
  38890. bottom: 69/1707
  38891. }
  38892. },
  38893. },
  38894. [
  38895. {
  38896. name: "Normal",
  38897. height: math.unit(5 + 2/12, "feet"),
  38898. default: true
  38899. },
  38900. ]
  38901. ))
  38902. characterMakers.push(() => makeCharacter(
  38903. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  38904. {
  38905. frontImp: {
  38906. height: math.unit(1 + 11/12, "feet"),
  38907. name: "Front (Imp)",
  38908. image: {
  38909. source: "./media/characters/max-kobold/front-imp.svg",
  38910. extra: 1238/1134,
  38911. bottom: 81/1319
  38912. }
  38913. },
  38914. backImp: {
  38915. height: math.unit(1 + 11/12, "feet"),
  38916. name: "Back (Imp)",
  38917. image: {
  38918. source: "./media/characters/max-kobold/back-imp.svg",
  38919. extra: 1334/1175,
  38920. bottom: 34/1368
  38921. }
  38922. },
  38923. frontDemi: {
  38924. height: math.unit(5 + 9/12, "feet"),
  38925. name: "Front (Demi)",
  38926. image: {
  38927. source: "./media/characters/max-kobold/front-demi.svg",
  38928. extra: 1715/1685,
  38929. bottom: 54/1769
  38930. }
  38931. },
  38932. backDemi: {
  38933. height: math.unit(5 + 9/12, "feet"),
  38934. name: "Back (Demi)",
  38935. image: {
  38936. source: "./media/characters/max-kobold/back-demi.svg",
  38937. extra: 1752/1729,
  38938. bottom: 41/1793
  38939. }
  38940. },
  38941. handImp: {
  38942. height: math.unit(0.45, "feet"),
  38943. name: "Hand (Imp)",
  38944. image: {
  38945. source: "./media/characters/max-kobold/hand.svg"
  38946. }
  38947. },
  38948. pawImp: {
  38949. height: math.unit(0.46, "feet"),
  38950. name: "Paw (Imp)",
  38951. image: {
  38952. source: "./media/characters/max-kobold/paw.svg"
  38953. }
  38954. },
  38955. handDemi: {
  38956. height: math.unit(0.80, "feet"),
  38957. name: "Hand (Demi)",
  38958. image: {
  38959. source: "./media/characters/max-kobold/hand.svg"
  38960. }
  38961. },
  38962. pawDemi: {
  38963. height: math.unit(1.1, "feet"),
  38964. name: "Paw (Demi)",
  38965. image: {
  38966. source: "./media/characters/max-kobold/paw.svg"
  38967. }
  38968. },
  38969. headImp: {
  38970. height: math.unit(1.33, "feet"),
  38971. name: "Head (Imp)",
  38972. image: {
  38973. source: "./media/characters/max-kobold/head-imp.svg"
  38974. }
  38975. },
  38976. mawImp: {
  38977. height: math.unit(0.75, "feet"),
  38978. name: "Maw (Imp)",
  38979. image: {
  38980. source: "./media/characters/max-kobold/maw-imp.svg"
  38981. }
  38982. },
  38983. mawDemi: {
  38984. height: math.unit(0.42, "feet"),
  38985. name: "Maw (Demi)",
  38986. image: {
  38987. source: "./media/characters/max-kobold/maw-demi.svg"
  38988. }
  38989. },
  38990. },
  38991. [
  38992. {
  38993. name: "Normal",
  38994. height: math.unit(1 + 11/12, "feet"),
  38995. default: true
  38996. },
  38997. ]
  38998. ))
  38999. characterMakers.push(() => makeCharacter(
  39000. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  39001. {
  39002. front: {
  39003. height: math.unit(7 + 5/12, "feet"),
  39004. name: "Front",
  39005. image: {
  39006. source: "./media/characters/carbon/front.svg",
  39007. extra: 1754/1689,
  39008. bottom: 65/1819
  39009. }
  39010. },
  39011. back: {
  39012. height: math.unit(7 + 5/12, "feet"),
  39013. name: "Back",
  39014. image: {
  39015. source: "./media/characters/carbon/back.svg",
  39016. extra: 1762/1695,
  39017. bottom: 24/1786
  39018. }
  39019. },
  39020. frontGigantamax: {
  39021. height: math.unit(150, "feet"),
  39022. name: "Front (Gigantamax)",
  39023. image: {
  39024. source: "./media/characters/carbon/front-gigantamax.svg",
  39025. extra: 1826/1669,
  39026. bottom: 59/1885
  39027. }
  39028. },
  39029. backGigantamax: {
  39030. height: math.unit(150, "feet"),
  39031. name: "Back (Gigantamax)",
  39032. image: {
  39033. source: "./media/characters/carbon/back-gigantamax.svg",
  39034. extra: 1796/1653,
  39035. bottom: 53/1849
  39036. }
  39037. },
  39038. maw: {
  39039. height: math.unit(0.48, "feet"),
  39040. name: "Maw",
  39041. image: {
  39042. source: "./media/characters/carbon/maw.svg"
  39043. }
  39044. },
  39045. mawGigantamax: {
  39046. height: math.unit(7.5, "feet"),
  39047. name: "Maw (Gigantamax)",
  39048. image: {
  39049. source: "./media/characters/carbon/maw-gigantamax.svg"
  39050. }
  39051. },
  39052. },
  39053. [
  39054. {
  39055. name: "Normal",
  39056. height: math.unit(7 + 5/12, "feet"),
  39057. default: true
  39058. },
  39059. ]
  39060. ))
  39061. characterMakers.push(() => makeCharacter(
  39062. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  39063. {
  39064. front: {
  39065. height: math.unit(6, "feet"),
  39066. name: "Front",
  39067. image: {
  39068. source: "./media/characters/maverick/front.svg",
  39069. extra: 1672/1661,
  39070. bottom: 85/1757
  39071. }
  39072. },
  39073. back: {
  39074. height: math.unit(6, "feet"),
  39075. name: "Back",
  39076. image: {
  39077. source: "./media/characters/maverick/back.svg",
  39078. extra: 1642/1631,
  39079. bottom: 38/1680
  39080. }
  39081. },
  39082. },
  39083. [
  39084. {
  39085. name: "Normal",
  39086. height: math.unit(6, "feet"),
  39087. default: true
  39088. },
  39089. ]
  39090. ))
  39091. characterMakers.push(() => makeCharacter(
  39092. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  39093. {
  39094. front: {
  39095. height: math.unit(15, "feet"),
  39096. weight: math.unit(615, "lb"),
  39097. name: "Front",
  39098. image: {
  39099. source: "./media/characters/grockle/front.svg",
  39100. extra: 1535/1427,
  39101. bottom: 56/1591
  39102. }
  39103. },
  39104. },
  39105. [
  39106. {
  39107. name: "Normal",
  39108. height: math.unit(15, "feet"),
  39109. default: true
  39110. },
  39111. {
  39112. name: "Large",
  39113. height: math.unit(150, "feet")
  39114. },
  39115. {
  39116. name: "Macro",
  39117. height: math.unit(1876, "feet")
  39118. },
  39119. {
  39120. name: "Mega Macro",
  39121. height: math.unit(121940, "feet")
  39122. },
  39123. {
  39124. name: "Giga Macro",
  39125. height: math.unit(750, "km")
  39126. },
  39127. {
  39128. name: "Tera Macro",
  39129. height: math.unit(750000, "km")
  39130. },
  39131. {
  39132. name: "Galactic",
  39133. height: math.unit(1.4e5, "km")
  39134. },
  39135. {
  39136. name: "Godlike",
  39137. height: math.unit(9.8e280, "galaxies")
  39138. },
  39139. ]
  39140. ))
  39141. characterMakers.push(() => makeCharacter(
  39142. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  39143. {
  39144. front: {
  39145. height: math.unit(11, "meters"),
  39146. weight: math.unit(20, "tonnes"),
  39147. name: "Front",
  39148. image: {
  39149. source: "./media/characters/alistair/front.svg",
  39150. extra: 1265/1009,
  39151. bottom: 93/1358
  39152. }
  39153. },
  39154. },
  39155. [
  39156. {
  39157. name: "Normal",
  39158. height: math.unit(11, "meters"),
  39159. default: true
  39160. },
  39161. ]
  39162. ))
  39163. characterMakers.push(() => makeCharacter(
  39164. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  39165. {
  39166. front: {
  39167. height: math.unit(5 + 8/12, "feet"),
  39168. name: "Front",
  39169. image: {
  39170. source: "./media/characters/haruka/front.svg",
  39171. extra: 2012/1952,
  39172. bottom: 0/2012
  39173. }
  39174. },
  39175. },
  39176. [
  39177. {
  39178. name: "Normal",
  39179. height: math.unit(5 + 8/12, "feet"),
  39180. default: true
  39181. },
  39182. ]
  39183. ))
  39184. characterMakers.push(() => makeCharacter(
  39185. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  39186. {
  39187. back: {
  39188. height: math.unit(9, "feet"),
  39189. name: "Back",
  39190. image: {
  39191. source: "./media/characters/vivian-sylveon/back.svg",
  39192. extra: 1853/1714,
  39193. bottom: 0/1853
  39194. }
  39195. },
  39196. },
  39197. [
  39198. {
  39199. name: "Normal",
  39200. height: math.unit(9, "feet"),
  39201. default: true
  39202. },
  39203. {
  39204. name: "Macro",
  39205. height: math.unit(500, "feet")
  39206. },
  39207. {
  39208. name: "Megamacro",
  39209. height: math.unit(600, "miles")
  39210. },
  39211. {
  39212. name: "Gigamacro",
  39213. height: math.unit(30000, "miles")
  39214. },
  39215. ]
  39216. ))
  39217. characterMakers.push(() => makeCharacter(
  39218. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  39219. {
  39220. anthro: {
  39221. height: math.unit(5 + 10/12, "feet"),
  39222. weight: math.unit(100, "lb"),
  39223. name: "Anthro",
  39224. image: {
  39225. source: "./media/characters/daiki/anthro.svg",
  39226. extra: 1115/1027,
  39227. bottom: 69/1184
  39228. }
  39229. },
  39230. feral: {
  39231. height: math.unit(200, "feet"),
  39232. name: "Feral",
  39233. image: {
  39234. source: "./media/characters/daiki/feral.svg",
  39235. extra: 1256/313,
  39236. bottom: 39/1295
  39237. }
  39238. },
  39239. feralHead: {
  39240. height: math.unit(171, "feet"),
  39241. name: "Feral Head",
  39242. image: {
  39243. source: "./media/characters/daiki/feral-head.svg"
  39244. }
  39245. },
  39246. manaDragon: {
  39247. height: math.unit(170, "meters"),
  39248. name: "Mana-dragon",
  39249. image: {
  39250. source: "./media/characters/daiki/mana-dragon.svg",
  39251. extra: 763/420,
  39252. bottom: 97/860
  39253. }
  39254. },
  39255. },
  39256. [
  39257. {
  39258. name: "Normal",
  39259. height: math.unit(5 + 10/12, "feet"),
  39260. default: true
  39261. },
  39262. ]
  39263. ))
  39264. characterMakers.push(() => makeCharacter(
  39265. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  39266. {
  39267. fullyEquippedFront: {
  39268. height: math.unit(3 + 1/12, "feet"),
  39269. weight: math.unit(24, "lb"),
  39270. name: "Fully Equipped (Front)",
  39271. image: {
  39272. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  39273. extra: 687/605,
  39274. bottom: 18/705
  39275. }
  39276. },
  39277. fullyEquippedBack: {
  39278. height: math.unit(3 + 1/12, "feet"),
  39279. weight: math.unit(24, "lb"),
  39280. name: "Fully Equipped (Back)",
  39281. image: {
  39282. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  39283. extra: 689/590,
  39284. bottom: 18/707
  39285. }
  39286. },
  39287. dailyWear: {
  39288. height: math.unit(3 + 1/12, "feet"),
  39289. weight: math.unit(24, "lb"),
  39290. name: "Daily Wear",
  39291. image: {
  39292. source: "./media/characters/tea-spot/daily-wear.svg",
  39293. extra: 701/620,
  39294. bottom: 21/722
  39295. }
  39296. },
  39297. maidWork: {
  39298. height: math.unit(3 + 1/12, "feet"),
  39299. weight: math.unit(24, "lb"),
  39300. name: "Maid Work",
  39301. image: {
  39302. source: "./media/characters/tea-spot/maid-work.svg",
  39303. extra: 693/609,
  39304. bottom: 15/708
  39305. }
  39306. },
  39307. },
  39308. [
  39309. {
  39310. name: "Normal",
  39311. height: math.unit(3 + 1/12, "feet"),
  39312. default: true
  39313. },
  39314. ]
  39315. ))
  39316. characterMakers.push(() => makeCharacter(
  39317. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  39318. {
  39319. front: {
  39320. height: math.unit(175, "cm"),
  39321. weight: math.unit(75, "kg"),
  39322. name: "Front",
  39323. image: {
  39324. source: "./media/characters/chee/front.svg",
  39325. extra: 1796/1740,
  39326. bottom: 40/1836
  39327. }
  39328. },
  39329. },
  39330. [
  39331. {
  39332. name: "Micro-Micro",
  39333. height: math.unit(1, "nm")
  39334. },
  39335. {
  39336. name: "Micro-erst",
  39337. height: math.unit(1, "micrometer")
  39338. },
  39339. {
  39340. name: "Micro-er",
  39341. height: math.unit(1, "cm")
  39342. },
  39343. {
  39344. name: "Normal",
  39345. height: math.unit(175, "cm"),
  39346. default: true
  39347. },
  39348. {
  39349. name: "Macro",
  39350. height: math.unit(100, "m")
  39351. },
  39352. {
  39353. name: "Macro-er",
  39354. height: math.unit(1, "km")
  39355. },
  39356. {
  39357. name: "Macro-erst",
  39358. height: math.unit(10, "km")
  39359. },
  39360. {
  39361. name: "Macro-Macro",
  39362. height: math.unit(100, "km")
  39363. },
  39364. ]
  39365. ))
  39366. characterMakers.push(() => makeCharacter(
  39367. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  39368. {
  39369. front: {
  39370. height: math.unit(11 + 9/12, "feet"),
  39371. weight: math.unit(935, "lb"),
  39372. name: "Front",
  39373. image: {
  39374. source: "./media/characters/kingsley/front.svg",
  39375. extra: 1803/1674,
  39376. bottom: 127/1930
  39377. }
  39378. },
  39379. frontNude: {
  39380. height: math.unit(11 + 9/12, "feet"),
  39381. weight: math.unit(935, "lb"),
  39382. name: "Front (Nude)",
  39383. image: {
  39384. source: "./media/characters/kingsley/front-nude.svg",
  39385. extra: 1803/1674,
  39386. bottom: 127/1930
  39387. }
  39388. },
  39389. },
  39390. [
  39391. {
  39392. name: "Normal",
  39393. height: math.unit(11 + 9/12, "feet"),
  39394. default: true
  39395. },
  39396. ]
  39397. ))
  39398. characterMakers.push(() => makeCharacter(
  39399. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  39400. {
  39401. side: {
  39402. height: math.unit(9, "feet"),
  39403. name: "Side",
  39404. image: {
  39405. source: "./media/characters/rymel/side.svg",
  39406. extra: 792/469,
  39407. bottom: 121/913
  39408. }
  39409. },
  39410. maw: {
  39411. height: math.unit(2.4, "meters"),
  39412. name: "Maw",
  39413. image: {
  39414. source: "./media/characters/rymel/maw.svg"
  39415. }
  39416. },
  39417. },
  39418. [
  39419. {
  39420. name: "House Drake",
  39421. height: math.unit(2, "feet")
  39422. },
  39423. {
  39424. name: "Reduced",
  39425. height: math.unit(4.5, "feet")
  39426. },
  39427. {
  39428. name: "Normal",
  39429. height: math.unit(9, "feet"),
  39430. default: true
  39431. },
  39432. ]
  39433. ))
  39434. characterMakers.push(() => makeCharacter(
  39435. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  39436. {
  39437. front: {
  39438. height: math.unit(1.74, "meters"),
  39439. weight: math.unit(55, "kg"),
  39440. name: "Front",
  39441. image: {
  39442. source: "./media/characters/rubus/front.svg",
  39443. extra: 1894/1742,
  39444. bottom: 44/1938
  39445. }
  39446. },
  39447. },
  39448. [
  39449. {
  39450. name: "Normal",
  39451. height: math.unit(1.74, "meters"),
  39452. default: true
  39453. },
  39454. ]
  39455. ))
  39456. characterMakers.push(() => makeCharacter(
  39457. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  39458. {
  39459. front: {
  39460. height: math.unit(5 + 2/12, "feet"),
  39461. weight: math.unit(112, "lb"),
  39462. name: "Front",
  39463. image: {
  39464. source: "./media/characters/cassie-kingston/front.svg",
  39465. extra: 1438/1390,
  39466. bottom: 47/1485
  39467. }
  39468. },
  39469. },
  39470. [
  39471. {
  39472. name: "Normal",
  39473. height: math.unit(5 + 2/12, "feet"),
  39474. default: true
  39475. },
  39476. {
  39477. name: "Macro",
  39478. height: math.unit(128, "feet")
  39479. },
  39480. {
  39481. name: "Megamacro",
  39482. height: math.unit(2.56, "miles")
  39483. },
  39484. ]
  39485. ))
  39486. characterMakers.push(() => makeCharacter(
  39487. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  39488. {
  39489. front: {
  39490. height: math.unit(7, "feet"),
  39491. name: "Front",
  39492. image: {
  39493. source: "./media/characters/fox/front.svg",
  39494. extra: 1798/1703,
  39495. bottom: 55/1853
  39496. }
  39497. },
  39498. back: {
  39499. height: math.unit(7, "feet"),
  39500. name: "Back",
  39501. image: {
  39502. source: "./media/characters/fox/back.svg",
  39503. extra: 1748/1649,
  39504. bottom: 32/1780
  39505. }
  39506. },
  39507. head: {
  39508. height: math.unit(1.95, "feet"),
  39509. name: "Head",
  39510. image: {
  39511. source: "./media/characters/fox/head.svg"
  39512. }
  39513. },
  39514. dick: {
  39515. height: math.unit(1.33, "feet"),
  39516. name: "Dick",
  39517. image: {
  39518. source: "./media/characters/fox/dick.svg"
  39519. }
  39520. },
  39521. foot: {
  39522. height: math.unit(1, "feet"),
  39523. name: "Foot",
  39524. image: {
  39525. source: "./media/characters/fox/foot.svg"
  39526. }
  39527. },
  39528. paw: {
  39529. height: math.unit(0.92, "feet"),
  39530. name: "Paw",
  39531. image: {
  39532. source: "./media/characters/fox/paw.svg"
  39533. }
  39534. },
  39535. },
  39536. [
  39537. {
  39538. name: "Small",
  39539. height: math.unit(3, "inches")
  39540. },
  39541. {
  39542. name: "\"Realistic\"",
  39543. height: math.unit(7, "feet")
  39544. },
  39545. {
  39546. name: "Normal",
  39547. height: math.unit(150, "feet"),
  39548. default: true
  39549. },
  39550. {
  39551. name: "BIG",
  39552. height: math.unit(1200, "feet")
  39553. },
  39554. {
  39555. name: "👀",
  39556. height: math.unit(5, "miles")
  39557. },
  39558. {
  39559. name: "👀👀👀",
  39560. height: math.unit(64, "miles")
  39561. },
  39562. ]
  39563. ))
  39564. characterMakers.push(() => makeCharacter(
  39565. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  39566. {
  39567. front: {
  39568. height: math.unit(625, "feet"),
  39569. name: "Front",
  39570. image: {
  39571. source: "./media/characters/asonja-rossa/front.svg",
  39572. extra: 1833/1686,
  39573. bottom: 24/1857
  39574. }
  39575. },
  39576. back: {
  39577. height: math.unit(625, "feet"),
  39578. name: "Back",
  39579. image: {
  39580. source: "./media/characters/asonja-rossa/back.svg",
  39581. extra: 1852/1753,
  39582. bottom: 26/1878
  39583. }
  39584. },
  39585. },
  39586. [
  39587. {
  39588. name: "Macro",
  39589. height: math.unit(625, "feet"),
  39590. default: true
  39591. },
  39592. ]
  39593. ))
  39594. characterMakers.push(() => makeCharacter(
  39595. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  39596. {
  39597. side: {
  39598. height: math.unit(8, "feet"),
  39599. name: "Side",
  39600. image: {
  39601. source: "./media/characters/rezukii/side.svg",
  39602. extra: 979/542,
  39603. bottom: 87/1066
  39604. }
  39605. },
  39606. sitting: {
  39607. height: math.unit(14.6, "feet"),
  39608. name: "Sitting",
  39609. image: {
  39610. source: "./media/characters/rezukii/sitting.svg",
  39611. extra: 1023/813,
  39612. bottom: 45/1068
  39613. }
  39614. },
  39615. },
  39616. [
  39617. {
  39618. name: "Tiny",
  39619. height: math.unit(2, "feet")
  39620. },
  39621. {
  39622. name: "Smol",
  39623. height: math.unit(4, "feet")
  39624. },
  39625. {
  39626. name: "Normal",
  39627. height: math.unit(8, "feet"),
  39628. default: true
  39629. },
  39630. {
  39631. name: "Big",
  39632. height: math.unit(12, "feet")
  39633. },
  39634. {
  39635. name: "Macro",
  39636. height: math.unit(30, "feet")
  39637. },
  39638. ]
  39639. ))
  39640. characterMakers.push(() => makeCharacter(
  39641. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  39642. {
  39643. front: {
  39644. height: math.unit(14, "feet"),
  39645. weight: math.unit(9.5, "tonnes"),
  39646. name: "Front",
  39647. image: {
  39648. source: "./media/characters/dawnheart/front.svg",
  39649. extra: 2792/2675,
  39650. bottom: 64/2856
  39651. }
  39652. },
  39653. },
  39654. [
  39655. {
  39656. name: "Normal",
  39657. height: math.unit(14, "feet"),
  39658. default: true
  39659. },
  39660. ]
  39661. ))
  39662. characterMakers.push(() => makeCharacter(
  39663. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  39664. {
  39665. front: {
  39666. height: math.unit(1.7, "m"),
  39667. name: "Front",
  39668. image: {
  39669. source: "./media/characters/gladi/front.svg",
  39670. extra: 1460/1362,
  39671. bottom: 19/1479
  39672. }
  39673. },
  39674. back: {
  39675. height: math.unit(1.7, "m"),
  39676. name: "Back",
  39677. image: {
  39678. source: "./media/characters/gladi/back.svg",
  39679. extra: 1459/1357,
  39680. bottom: 12/1471
  39681. }
  39682. },
  39683. feral: {
  39684. height: math.unit(2.05, "m"),
  39685. name: "Feral",
  39686. image: {
  39687. source: "./media/characters/gladi/feral.svg",
  39688. extra: 821/557,
  39689. bottom: 91/912
  39690. }
  39691. },
  39692. },
  39693. [
  39694. {
  39695. name: "Shortest",
  39696. height: math.unit(70, "cm")
  39697. },
  39698. {
  39699. name: "Normal",
  39700. height: math.unit(1.7, "m")
  39701. },
  39702. {
  39703. name: "Macro",
  39704. height: math.unit(10, "m"),
  39705. default: true
  39706. },
  39707. {
  39708. name: "Tallest",
  39709. height: math.unit(200, "m")
  39710. },
  39711. ]
  39712. ))
  39713. characterMakers.push(() => makeCharacter(
  39714. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  39715. {
  39716. front: {
  39717. height: math.unit(5 + 7/12, "feet"),
  39718. weight: math.unit(2, "tons"),
  39719. name: "Front",
  39720. image: {
  39721. source: "./media/characters/erdno/front.svg",
  39722. extra: 1234/1129,
  39723. bottom: 35/1269
  39724. }
  39725. },
  39726. angled: {
  39727. height: math.unit(5 + 7/12, "feet"),
  39728. weight: math.unit(2, "tons"),
  39729. name: "Angled",
  39730. image: {
  39731. source: "./media/characters/erdno/angled.svg",
  39732. extra: 1185/1139,
  39733. bottom: 36/1221
  39734. }
  39735. },
  39736. side: {
  39737. height: math.unit(5 + 7/12, "feet"),
  39738. weight: math.unit(2, "tons"),
  39739. name: "Side",
  39740. image: {
  39741. source: "./media/characters/erdno/side.svg",
  39742. extra: 1191/1144,
  39743. bottom: 40/1231
  39744. }
  39745. },
  39746. back: {
  39747. height: math.unit(5 + 7/12, "feet"),
  39748. weight: math.unit(2, "tons"),
  39749. name: "Back",
  39750. image: {
  39751. source: "./media/characters/erdno/back.svg",
  39752. extra: 1202/1146,
  39753. bottom: 17/1219
  39754. }
  39755. },
  39756. frontNsfw: {
  39757. height: math.unit(5 + 7/12, "feet"),
  39758. weight: math.unit(2, "tons"),
  39759. name: "Front (NSFW)",
  39760. image: {
  39761. source: "./media/characters/erdno/front-nsfw.svg",
  39762. extra: 1234/1129,
  39763. bottom: 35/1269
  39764. }
  39765. },
  39766. angledNsfw: {
  39767. height: math.unit(5 + 7/12, "feet"),
  39768. weight: math.unit(2, "tons"),
  39769. name: "Angled (NSFW)",
  39770. image: {
  39771. source: "./media/characters/erdno/angled-nsfw.svg",
  39772. extra: 1185/1139,
  39773. bottom: 36/1221
  39774. }
  39775. },
  39776. sideNsfw: {
  39777. height: math.unit(5 + 7/12, "feet"),
  39778. weight: math.unit(2, "tons"),
  39779. name: "Side (NSFW)",
  39780. image: {
  39781. source: "./media/characters/erdno/side-nsfw.svg",
  39782. extra: 1191/1144,
  39783. bottom: 40/1231
  39784. }
  39785. },
  39786. backNsfw: {
  39787. height: math.unit(5 + 7/12, "feet"),
  39788. weight: math.unit(2, "tons"),
  39789. name: "Back (NSFW)",
  39790. image: {
  39791. source: "./media/characters/erdno/back-nsfw.svg",
  39792. extra: 1202/1146,
  39793. bottom: 17/1219
  39794. }
  39795. },
  39796. frontHyper: {
  39797. height: math.unit(5 + 7/12, "feet"),
  39798. weight: math.unit(2, "tons"),
  39799. name: "Front (Hyper)",
  39800. image: {
  39801. source: "./media/characters/erdno/front-hyper.svg",
  39802. extra: 1298/1136,
  39803. bottom: 35/1333
  39804. }
  39805. },
  39806. },
  39807. [
  39808. {
  39809. name: "Normal",
  39810. height: math.unit(5 + 7/12, "feet"),
  39811. default: true
  39812. },
  39813. {
  39814. name: "Big",
  39815. height: math.unit(5.7, "meters")
  39816. },
  39817. {
  39818. name: "Macro",
  39819. height: math.unit(5.7, "kilometers")
  39820. },
  39821. {
  39822. name: "Megamacro",
  39823. height: math.unit(5.7, "earths")
  39824. },
  39825. ]
  39826. ))
  39827. characterMakers.push(() => makeCharacter(
  39828. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  39829. {
  39830. front: {
  39831. height: math.unit(5 + 10/12, "feet"),
  39832. weight: math.unit(150, "lb"),
  39833. name: "Front",
  39834. image: {
  39835. source: "./media/characters/jamie/front.svg",
  39836. extra: 1908/1768,
  39837. bottom: 19/1927
  39838. }
  39839. },
  39840. },
  39841. [
  39842. {
  39843. name: "Minimum",
  39844. height: math.unit(2, "cm")
  39845. },
  39846. {
  39847. name: "Micro",
  39848. height: math.unit(3, "inches")
  39849. },
  39850. {
  39851. name: "Normal",
  39852. height: math.unit(5 + 10/12, "feet"),
  39853. default: true
  39854. },
  39855. {
  39856. name: "Macro",
  39857. height: math.unit(150, "feet")
  39858. },
  39859. {
  39860. name: "Megamacro",
  39861. height: math.unit(10000, "m")
  39862. },
  39863. ]
  39864. ))
  39865. characterMakers.push(() => makeCharacter(
  39866. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  39867. {
  39868. front: {
  39869. height: math.unit(2, "meters"),
  39870. weight: math.unit(100, "kg"),
  39871. name: "Front",
  39872. image: {
  39873. source: "./media/characters/shiron/front.svg",
  39874. extra: 2103/1985,
  39875. bottom: 98/2201
  39876. }
  39877. },
  39878. back: {
  39879. height: math.unit(2, "meters"),
  39880. weight: math.unit(100, "kg"),
  39881. name: "Back",
  39882. image: {
  39883. source: "./media/characters/shiron/back.svg",
  39884. extra: 2110/2015,
  39885. bottom: 89/2199
  39886. }
  39887. },
  39888. hand: {
  39889. height: math.unit(0.96, "feet"),
  39890. name: "Hand",
  39891. image: {
  39892. source: "./media/characters/shiron/hand.svg"
  39893. }
  39894. },
  39895. foot: {
  39896. height: math.unit(1.464, "feet"),
  39897. name: "Foot",
  39898. image: {
  39899. source: "./media/characters/shiron/foot.svg"
  39900. }
  39901. },
  39902. },
  39903. [
  39904. {
  39905. name: "Normal",
  39906. height: math.unit(2, "meters")
  39907. },
  39908. {
  39909. name: "Macro",
  39910. height: math.unit(500, "meters"),
  39911. default: true
  39912. },
  39913. {
  39914. name: "Megamacro",
  39915. height: math.unit(20, "km")
  39916. },
  39917. ]
  39918. ))
  39919. characterMakers.push(() => makeCharacter(
  39920. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  39921. {
  39922. front: {
  39923. height: math.unit(6, "feet"),
  39924. name: "Front",
  39925. image: {
  39926. source: "./media/characters/sam/front.svg",
  39927. extra: 849/826,
  39928. bottom: 19/868
  39929. }
  39930. },
  39931. },
  39932. [
  39933. {
  39934. name: "Normal",
  39935. height: math.unit(6, "feet"),
  39936. default: true
  39937. },
  39938. ]
  39939. ))
  39940. characterMakers.push(() => makeCharacter(
  39941. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  39942. {
  39943. front: {
  39944. height: math.unit(8 + 4/12, "feet"),
  39945. weight: math.unit(122, "kg"),
  39946. name: "Front",
  39947. image: {
  39948. source: "./media/characters/namori-kurogawa/front.svg",
  39949. extra: 1894/1576,
  39950. bottom: 34/1928
  39951. }
  39952. },
  39953. },
  39954. [
  39955. {
  39956. name: "Normal",
  39957. height: math.unit(8 + 4/12, "feet"),
  39958. default: true
  39959. },
  39960. ]
  39961. ))
  39962. characterMakers.push(() => makeCharacter(
  39963. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  39964. {
  39965. front: {
  39966. height: math.unit(9, "feet"),
  39967. weight: math.unit(621, "lb"),
  39968. name: "Front",
  39969. image: {
  39970. source: "./media/characters/unmru/front.svg",
  39971. extra: 1853/1747,
  39972. bottom: 73/1926
  39973. }
  39974. },
  39975. side: {
  39976. height: math.unit(9, "feet"),
  39977. weight: math.unit(621, "lb"),
  39978. name: "Side",
  39979. image: {
  39980. source: "./media/characters/unmru/side.svg",
  39981. extra: 1781/1671,
  39982. bottom: 127/1908
  39983. }
  39984. },
  39985. back: {
  39986. height: math.unit(9, "feet"),
  39987. weight: math.unit(621, "lb"),
  39988. name: "Back",
  39989. image: {
  39990. source: "./media/characters/unmru/back.svg",
  39991. extra: 1894/1765,
  39992. bottom: 75/1969
  39993. }
  39994. },
  39995. dick: {
  39996. height: math.unit(3, "feet"),
  39997. weight: math.unit(35, "lb"),
  39998. name: "Dick",
  39999. image: {
  40000. source: "./media/characters/unmru/dick.svg"
  40001. }
  40002. },
  40003. },
  40004. [
  40005. {
  40006. name: "Normal",
  40007. height: math.unit(9, "feet")
  40008. },
  40009. {
  40010. name: "Natural",
  40011. height: math.unit(27, "feet"),
  40012. default: true
  40013. },
  40014. {
  40015. name: "Giant",
  40016. height: math.unit(90, "feet")
  40017. },
  40018. {
  40019. name: "Kaiju",
  40020. height: math.unit(270, "feet")
  40021. },
  40022. {
  40023. name: "Macro",
  40024. height: math.unit(900, "feet")
  40025. },
  40026. {
  40027. name: "Macro+",
  40028. height: math.unit(2700, "feet")
  40029. },
  40030. {
  40031. name: "Megamacro",
  40032. height: math.unit(9000, "feet")
  40033. },
  40034. {
  40035. name: "City-Crushing",
  40036. height: math.unit(27000, "feet")
  40037. },
  40038. {
  40039. name: "Mountain-Mashing",
  40040. height: math.unit(90000, "feet")
  40041. },
  40042. {
  40043. name: "Earth-Eclipsing",
  40044. height: math.unit(2.7e8, "feet")
  40045. },
  40046. {
  40047. name: "Sol-Swallowing",
  40048. height: math.unit(9e10, "feet")
  40049. },
  40050. {
  40051. name: "Majoris-Munching",
  40052. height: math.unit(2.7e13, "feet")
  40053. },
  40054. ]
  40055. ))
  40056. characterMakers.push(() => makeCharacter(
  40057. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  40058. {
  40059. front: {
  40060. height: math.unit(1, "inch"),
  40061. name: "Front",
  40062. image: {
  40063. source: "./media/characters/squeaks-mouse/front.svg",
  40064. extra: 352/308,
  40065. bottom: 25/377
  40066. }
  40067. },
  40068. },
  40069. [
  40070. {
  40071. name: "Micro",
  40072. height: math.unit(1, "inch"),
  40073. default: true
  40074. },
  40075. ]
  40076. ))
  40077. characterMakers.push(() => makeCharacter(
  40078. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  40079. {
  40080. side: {
  40081. height: math.unit(35, "feet"),
  40082. name: "Side",
  40083. image: {
  40084. source: "./media/characters/sayko/side.svg",
  40085. extra: 1697/1021,
  40086. bottom: 82/1779
  40087. }
  40088. },
  40089. head: {
  40090. height: math.unit(16, "feet"),
  40091. name: "Head",
  40092. image: {
  40093. source: "./media/characters/sayko/head.svg"
  40094. }
  40095. },
  40096. forepaw: {
  40097. height: math.unit(7.85, "feet"),
  40098. name: "Forepaw",
  40099. image: {
  40100. source: "./media/characters/sayko/forepaw.svg"
  40101. }
  40102. },
  40103. hindpaw: {
  40104. height: math.unit(8.8, "feet"),
  40105. name: "Hindpaw",
  40106. image: {
  40107. source: "./media/characters/sayko/hindpaw.svg"
  40108. }
  40109. },
  40110. },
  40111. [
  40112. {
  40113. name: "Normal",
  40114. height: math.unit(35, "feet"),
  40115. default: true
  40116. },
  40117. {
  40118. name: "Colossus",
  40119. height: math.unit(100, "meters")
  40120. },
  40121. {
  40122. name: "\"Small\" Deity",
  40123. height: math.unit(1, "km")
  40124. },
  40125. {
  40126. name: "\"Large\" Deity",
  40127. height: math.unit(15, "km")
  40128. },
  40129. ]
  40130. ))
  40131. characterMakers.push(() => makeCharacter(
  40132. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  40133. {
  40134. front: {
  40135. height: math.unit(6, "feet"),
  40136. weight: math.unit(250, "lb"),
  40137. name: "Front",
  40138. image: {
  40139. source: "./media/characters/mukiro/front.svg",
  40140. extra: 1368/1310,
  40141. bottom: 34/1402
  40142. }
  40143. },
  40144. },
  40145. [
  40146. {
  40147. name: "Normal",
  40148. height: math.unit(6, "feet"),
  40149. default: true
  40150. },
  40151. ]
  40152. ))
  40153. characterMakers.push(() => makeCharacter(
  40154. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  40155. {
  40156. front: {
  40157. height: math.unit(12 + 4/12, "feet"),
  40158. name: "Front",
  40159. image: {
  40160. source: "./media/characters/zeph-the-tiger-god/front.svg",
  40161. extra: 1346/1311,
  40162. bottom: 65/1411
  40163. }
  40164. },
  40165. },
  40166. [
  40167. {
  40168. name: "Base",
  40169. height: math.unit(12 + 4/12, "feet"),
  40170. default: true
  40171. },
  40172. {
  40173. name: "Macro",
  40174. height: math.unit(150, "feet")
  40175. },
  40176. {
  40177. name: "Mega",
  40178. height: math.unit(2, "miles")
  40179. },
  40180. {
  40181. name: "Demi God",
  40182. height: math.unit(4, "AU")
  40183. },
  40184. {
  40185. name: "God Size",
  40186. height: math.unit(1, "universe")
  40187. },
  40188. ]
  40189. ))
  40190. characterMakers.push(() => makeCharacter(
  40191. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  40192. {
  40193. front: {
  40194. height: math.unit(3 + 3/12, "feet"),
  40195. weight: math.unit(88, "lb"),
  40196. name: "Front",
  40197. image: {
  40198. source: "./media/characters/trey/front.svg",
  40199. extra: 1815/1509,
  40200. bottom: 60/1875
  40201. }
  40202. },
  40203. },
  40204. [
  40205. {
  40206. name: "Normal",
  40207. height: math.unit(3 + 3/12, "feet"),
  40208. default: true
  40209. },
  40210. ]
  40211. ))
  40212. characterMakers.push(() => makeCharacter(
  40213. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  40214. {
  40215. front: {
  40216. height: math.unit(4, "meters"),
  40217. name: "Front",
  40218. image: {
  40219. source: "./media/characters/adelonda/front.svg",
  40220. extra: 1077/982,
  40221. bottom: 39/1116
  40222. }
  40223. },
  40224. back: {
  40225. height: math.unit(4, "meters"),
  40226. name: "Back",
  40227. image: {
  40228. source: "./media/characters/adelonda/back.svg",
  40229. extra: 1105/1003,
  40230. bottom: 25/1130
  40231. }
  40232. },
  40233. feral: {
  40234. height: math.unit(40/1.5, "meters"),
  40235. name: "Feral",
  40236. image: {
  40237. source: "./media/characters/adelonda/feral.svg",
  40238. extra: 597/271,
  40239. bottom: 387/984
  40240. }
  40241. },
  40242. },
  40243. [
  40244. {
  40245. name: "Normal",
  40246. height: math.unit(4, "meters"),
  40247. default: true
  40248. },
  40249. ]
  40250. ))
  40251. characterMakers.push(() => makeCharacter(
  40252. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  40253. {
  40254. front: {
  40255. height: math.unit(8 + 4/12, "feet"),
  40256. weight: math.unit(670, "lb"),
  40257. name: "Front",
  40258. image: {
  40259. source: "./media/characters/acadiel/front.svg",
  40260. extra: 1901/1595,
  40261. bottom: 142/2043
  40262. }
  40263. },
  40264. },
  40265. [
  40266. {
  40267. name: "Normal",
  40268. height: math.unit(8 + 4/12, "feet"),
  40269. default: true
  40270. },
  40271. {
  40272. name: "Macro",
  40273. height: math.unit(200, "feet")
  40274. },
  40275. ]
  40276. ))
  40277. characterMakers.push(() => makeCharacter(
  40278. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  40279. {
  40280. front: {
  40281. height: math.unit(6 + 2/12, "feet"),
  40282. weight: math.unit(185, "lb"),
  40283. name: "Front",
  40284. image: {
  40285. source: "./media/characters/kayne-ein/front.svg",
  40286. extra: 1780/1560,
  40287. bottom: 81/1861
  40288. }
  40289. },
  40290. },
  40291. [
  40292. {
  40293. name: "Normal",
  40294. height: math.unit(6 + 2/12, "feet"),
  40295. default: true
  40296. },
  40297. {
  40298. name: "Transformation Stage",
  40299. height: math.unit(15, "feet")
  40300. },
  40301. {
  40302. name: "Macro",
  40303. height: math.unit(150, "feet")
  40304. },
  40305. {
  40306. name: "Earth's Shadow",
  40307. height: math.unit(6200, "miles")
  40308. },
  40309. {
  40310. name: "Universal Demon",
  40311. height: math.unit(28e9, "parsecs")
  40312. },
  40313. {
  40314. name: "Multiverse God",
  40315. height: math.unit(3, "multiverses")
  40316. },
  40317. ]
  40318. ))
  40319. characterMakers.push(() => makeCharacter(
  40320. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  40321. {
  40322. front: {
  40323. height: math.unit(5 + 5/12, "feet"),
  40324. name: "Front",
  40325. image: {
  40326. source: "./media/characters/fawn/front.svg",
  40327. extra: 1873/1731,
  40328. bottom: 95/1968
  40329. }
  40330. },
  40331. back: {
  40332. height: math.unit(5 + 5/12, "feet"),
  40333. name: "Back",
  40334. image: {
  40335. source: "./media/characters/fawn/back.svg",
  40336. extra: 1813/1700,
  40337. bottom: 14/1827
  40338. }
  40339. },
  40340. hoof: {
  40341. height: math.unit(1.45, "feet"),
  40342. name: "Hoof",
  40343. image: {
  40344. source: "./media/characters/fawn/hoof.svg"
  40345. }
  40346. },
  40347. },
  40348. [
  40349. {
  40350. name: "Normal",
  40351. height: math.unit(5 + 5/12, "feet"),
  40352. default: true
  40353. },
  40354. ]
  40355. ))
  40356. characterMakers.push(() => makeCharacter(
  40357. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  40358. {
  40359. front: {
  40360. height: math.unit(2 + 5/12, "feet"),
  40361. name: "Front",
  40362. image: {
  40363. source: "./media/characters/orion/front.svg",
  40364. extra: 1366/1304,
  40365. bottom: 43/1409
  40366. }
  40367. },
  40368. paw: {
  40369. height: math.unit(0.52, "feet"),
  40370. name: "Paw",
  40371. image: {
  40372. source: "./media/characters/orion/paw.svg"
  40373. }
  40374. },
  40375. },
  40376. [
  40377. {
  40378. name: "Normal",
  40379. height: math.unit(2 + 5/12, "feet"),
  40380. default: true
  40381. },
  40382. ]
  40383. ))
  40384. characterMakers.push(() => makeCharacter(
  40385. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  40386. {
  40387. front: {
  40388. height: math.unit(5 + 10/12, "feet"),
  40389. name: "Front",
  40390. image: {
  40391. source: "./media/characters/vera/front.svg",
  40392. extra: 1680/1575,
  40393. bottom: 49/1729
  40394. }
  40395. },
  40396. back: {
  40397. height: math.unit(5 + 10/12, "feet"),
  40398. name: "Back",
  40399. image: {
  40400. source: "./media/characters/vera/back.svg",
  40401. extra: 1700/1588,
  40402. bottom: 18/1718
  40403. }
  40404. },
  40405. arcanine: {
  40406. height: math.unit(6 + 8/12, "feet"),
  40407. name: "Arcanine",
  40408. image: {
  40409. source: "./media/characters/vera/arcanine.svg",
  40410. extra: 1590/1511,
  40411. bottom: 71/1661
  40412. }
  40413. },
  40414. maw: {
  40415. height: math.unit(0.82, "feet"),
  40416. name: "Maw",
  40417. image: {
  40418. source: "./media/characters/vera/maw.svg"
  40419. }
  40420. },
  40421. mawArcanine: {
  40422. height: math.unit(0.97, "feet"),
  40423. name: "Maw (Arcanine)",
  40424. image: {
  40425. source: "./media/characters/vera/maw-arcanine.svg"
  40426. }
  40427. },
  40428. paw: {
  40429. height: math.unit(0.75, "feet"),
  40430. name: "Paw",
  40431. image: {
  40432. source: "./media/characters/vera/paw.svg"
  40433. }
  40434. },
  40435. pawprint: {
  40436. height: math.unit(0.52, "feet"),
  40437. name: "Pawprint",
  40438. image: {
  40439. source: "./media/characters/vera/pawprint.svg"
  40440. }
  40441. },
  40442. },
  40443. [
  40444. {
  40445. name: "Normal",
  40446. height: math.unit(5 + 10/12, "feet"),
  40447. default: true
  40448. },
  40449. {
  40450. name: "Macro",
  40451. height: math.unit(75, "feet")
  40452. },
  40453. ]
  40454. ))
  40455. characterMakers.push(() => makeCharacter(
  40456. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  40457. {
  40458. front: {
  40459. height: math.unit(4, "feet"),
  40460. weight: math.unit(40, "lb"),
  40461. name: "Front",
  40462. image: {
  40463. source: "./media/characters/orvan-rabbit/front.svg",
  40464. extra: 1896/1642,
  40465. bottom: 29/1925
  40466. }
  40467. },
  40468. },
  40469. [
  40470. {
  40471. name: "Normal",
  40472. height: math.unit(4, "feet"),
  40473. default: true
  40474. },
  40475. ]
  40476. ))
  40477. characterMakers.push(() => makeCharacter(
  40478. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  40479. {
  40480. front: {
  40481. height: math.unit(6, "feet"),
  40482. weight: math.unit(168, "lb"),
  40483. name: "Front",
  40484. image: {
  40485. source: "./media/characters/lisa/front.svg",
  40486. extra: 2065/1867,
  40487. bottom: 46/2111
  40488. }
  40489. },
  40490. back: {
  40491. height: math.unit(6, "feet"),
  40492. weight: math.unit(168, "lb"),
  40493. name: "Back",
  40494. image: {
  40495. source: "./media/characters/lisa/back.svg",
  40496. extra: 1982/1838,
  40497. bottom: 29/2011
  40498. }
  40499. },
  40500. maw: {
  40501. height: math.unit(0.81, "feet"),
  40502. name: "Maw",
  40503. image: {
  40504. source: "./media/characters/lisa/maw.svg"
  40505. }
  40506. },
  40507. paw: {
  40508. height: math.unit(0.9, "feet"),
  40509. name: "Paw",
  40510. image: {
  40511. source: "./media/characters/lisa/paw.svg"
  40512. }
  40513. },
  40514. caribousune: {
  40515. height: math.unit(7 + 2/12, "feet"),
  40516. weight: math.unit(268, "lb"),
  40517. name: "Caribousune",
  40518. image: {
  40519. source: "./media/characters/lisa/caribousune.svg",
  40520. extra: 1843/1633,
  40521. bottom: 29/1872
  40522. }
  40523. },
  40524. frontCaribousune: {
  40525. height: math.unit(7 + 2/12, "feet"),
  40526. weight: math.unit(268, "lb"),
  40527. name: "Front (Caribousune)",
  40528. image: {
  40529. source: "./media/characters/lisa/front-caribousune.svg",
  40530. extra: 1818/1638,
  40531. bottom: 52/1870
  40532. }
  40533. },
  40534. sideCaribousune: {
  40535. height: math.unit(7 + 2/12, "feet"),
  40536. weight: math.unit(268, "lb"),
  40537. name: "Side (Caribousune)",
  40538. image: {
  40539. source: "./media/characters/lisa/side-caribousune.svg",
  40540. extra: 1851/1635,
  40541. bottom: 16/1867
  40542. }
  40543. },
  40544. backCaribousune: {
  40545. height: math.unit(7 + 2/12, "feet"),
  40546. weight: math.unit(268, "lb"),
  40547. name: "Back (Caribousune)",
  40548. image: {
  40549. source: "./media/characters/lisa/back-caribousune.svg",
  40550. extra: 1801/1604,
  40551. bottom: 44/1845
  40552. }
  40553. },
  40554. caribou: {
  40555. height: math.unit(7 + 2/12, "feet"),
  40556. weight: math.unit(268, "lb"),
  40557. name: "Caribou",
  40558. image: {
  40559. source: "./media/characters/lisa/caribou.svg",
  40560. extra: 1843/1633,
  40561. bottom: 29/1872
  40562. }
  40563. },
  40564. frontCaribou: {
  40565. height: math.unit(7 + 2/12, "feet"),
  40566. weight: math.unit(268, "lb"),
  40567. name: "Front (Caribou)",
  40568. image: {
  40569. source: "./media/characters/lisa/front-caribou.svg",
  40570. extra: 1818/1638,
  40571. bottom: 52/1870
  40572. }
  40573. },
  40574. sideCaribou: {
  40575. height: math.unit(7 + 2/12, "feet"),
  40576. weight: math.unit(268, "lb"),
  40577. name: "Side (Caribou)",
  40578. image: {
  40579. source: "./media/characters/lisa/side-caribou.svg",
  40580. extra: 1851/1635,
  40581. bottom: 16/1867
  40582. }
  40583. },
  40584. backCaribou: {
  40585. height: math.unit(7 + 2/12, "feet"),
  40586. weight: math.unit(268, "lb"),
  40587. name: "Back (Caribou)",
  40588. image: {
  40589. source: "./media/characters/lisa/back-caribou.svg",
  40590. extra: 1801/1604,
  40591. bottom: 44/1845
  40592. }
  40593. },
  40594. mawCaribou: {
  40595. height: math.unit(1.45, "feet"),
  40596. name: "Maw (Caribou)",
  40597. image: {
  40598. source: "./media/characters/lisa/maw-caribou.svg"
  40599. }
  40600. },
  40601. mawCaribousune: {
  40602. height: math.unit(1.45, "feet"),
  40603. name: "Maw (Caribousune)",
  40604. image: {
  40605. source: "./media/characters/lisa/maw-caribousune.svg"
  40606. }
  40607. },
  40608. pawCaribousune: {
  40609. height: math.unit(1.61, "feet"),
  40610. name: "Paw (Caribou)",
  40611. image: {
  40612. source: "./media/characters/lisa/paw-caribousune.svg"
  40613. }
  40614. },
  40615. },
  40616. [
  40617. {
  40618. name: "Normal",
  40619. height: math.unit(6, "feet")
  40620. },
  40621. {
  40622. name: "God Size",
  40623. height: math.unit(72, "feet"),
  40624. default: true
  40625. },
  40626. {
  40627. name: "Towering",
  40628. height: math.unit(288, "feet")
  40629. },
  40630. {
  40631. name: "City Size",
  40632. height: math.unit(48384, "feet")
  40633. },
  40634. {
  40635. name: "Continental",
  40636. height: math.unit(4200, "miles")
  40637. },
  40638. {
  40639. name: "Planet Eater",
  40640. height: math.unit(42, "earths")
  40641. },
  40642. {
  40643. name: "Star Swallower",
  40644. height: math.unit(42, "solarradii")
  40645. },
  40646. {
  40647. name: "System Swallower",
  40648. height: math.unit(84000, "AU")
  40649. },
  40650. {
  40651. name: "Galaxy Gobbler",
  40652. height: math.unit(42, "galaxies")
  40653. },
  40654. {
  40655. name: "Universe Devourer",
  40656. height: math.unit(42, "universes")
  40657. },
  40658. {
  40659. name: "Multiverse Muncher",
  40660. height: math.unit(42, "multiverses")
  40661. },
  40662. ]
  40663. ))
  40664. characterMakers.push(() => makeCharacter(
  40665. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  40666. {
  40667. front: {
  40668. height: math.unit(36, "feet"),
  40669. name: "Front",
  40670. image: {
  40671. source: "./media/characters/shadow-rat/front.svg",
  40672. extra: 1845/1758,
  40673. bottom: 83/1928
  40674. }
  40675. },
  40676. },
  40677. [
  40678. {
  40679. name: "Macro",
  40680. height: math.unit(36, "feet"),
  40681. default: true
  40682. },
  40683. ]
  40684. ))
  40685. characterMakers.push(() => makeCharacter(
  40686. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  40687. {
  40688. side: {
  40689. height: math.unit(8, "feet"),
  40690. weight: math.unit(2630, "lb"),
  40691. name: "Side",
  40692. image: {
  40693. source: "./media/characters/torallia/side.svg",
  40694. extra: 2164/2021,
  40695. bottom: 371/2535
  40696. }
  40697. },
  40698. },
  40699. [
  40700. {
  40701. name: "Mortal Interaction",
  40702. height: math.unit(8, "feet")
  40703. },
  40704. {
  40705. name: "Natural",
  40706. height: math.unit(24, "feet"),
  40707. default: true
  40708. },
  40709. {
  40710. name: "Giant",
  40711. height: math.unit(80, "feet")
  40712. },
  40713. {
  40714. name: "Kaiju",
  40715. height: math.unit(240, "feet")
  40716. },
  40717. {
  40718. name: "Macro",
  40719. height: math.unit(800, "feet")
  40720. },
  40721. {
  40722. name: "Macro+",
  40723. height: math.unit(2400, "feet")
  40724. },
  40725. {
  40726. name: "Macro++",
  40727. height: math.unit(8000, "feet")
  40728. },
  40729. {
  40730. name: "City-Crushing",
  40731. height: math.unit(24000, "feet")
  40732. },
  40733. {
  40734. name: "Mountain-Mashing",
  40735. height: math.unit(80000, "feet")
  40736. },
  40737. {
  40738. name: "District Demolisher",
  40739. height: math.unit(240000, "feet")
  40740. },
  40741. {
  40742. name: "Tri-County Terror",
  40743. height: math.unit(800000, "feet")
  40744. },
  40745. {
  40746. name: "State Smasher",
  40747. height: math.unit(2.4e6, "feet")
  40748. },
  40749. {
  40750. name: "Nation Nemesis",
  40751. height: math.unit(8e6, "feet")
  40752. },
  40753. {
  40754. name: "Continent Cracker",
  40755. height: math.unit(2.4e7, "feet")
  40756. },
  40757. {
  40758. name: "Planet-Pillaging",
  40759. height: math.unit(8e7, "feet")
  40760. },
  40761. {
  40762. name: "Earth-Eclipsing",
  40763. height: math.unit(2.4e8, "feet")
  40764. },
  40765. {
  40766. name: "Jovian-Jostling",
  40767. height: math.unit(8e8, "feet")
  40768. },
  40769. {
  40770. name: "Gas Giant Gulper",
  40771. height: math.unit(2.4e9, "feet")
  40772. },
  40773. {
  40774. name: "Astral Annihilator",
  40775. height: math.unit(8e9, "feet")
  40776. },
  40777. {
  40778. name: "Celestial Conqueror",
  40779. height: math.unit(2.4e10, "feet")
  40780. },
  40781. {
  40782. name: "Sol-Swallowing",
  40783. height: math.unit(8e10, "feet")
  40784. },
  40785. {
  40786. name: "Hunter of the Heavens",
  40787. height: math.unit(2.4e13, "feet")
  40788. },
  40789. ]
  40790. ))
  40791. characterMakers.push(() => makeCharacter(
  40792. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  40793. {
  40794. front: {
  40795. height: math.unit(6 + 8/12, "feet"),
  40796. weight: math.unit(250, "kilograms"),
  40797. volume: math.unit(28, "liters"),
  40798. name: "Front",
  40799. image: {
  40800. source: "./media/characters/rebecca-pawlson/front.svg",
  40801. extra: 1737/1596,
  40802. bottom: 107/1844
  40803. }
  40804. },
  40805. back: {
  40806. height: math.unit(6 + 8/12, "feet"),
  40807. weight: math.unit(250, "kilograms"),
  40808. volume: math.unit(28, "liters"),
  40809. name: "Back",
  40810. image: {
  40811. source: "./media/characters/rebecca-pawlson/back.svg",
  40812. extra: 1702/1523,
  40813. bottom: 86/1788
  40814. }
  40815. },
  40816. },
  40817. [
  40818. {
  40819. name: "Normal",
  40820. height: math.unit(6 + 8/12, "feet")
  40821. },
  40822. {
  40823. name: "Mini Macro",
  40824. height: math.unit(10, "feet"),
  40825. default: true
  40826. },
  40827. {
  40828. name: "Macro",
  40829. height: math.unit(100, "feet")
  40830. },
  40831. {
  40832. name: "Mega Macro",
  40833. height: math.unit(2500, "feet")
  40834. },
  40835. {
  40836. name: "Giga Macro",
  40837. height: math.unit(50, "miles")
  40838. },
  40839. ]
  40840. ))
  40841. characterMakers.push(() => makeCharacter(
  40842. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  40843. {
  40844. front: {
  40845. height: math.unit(7 + 6/12, "feet"),
  40846. weight: math.unit(600, "lb"),
  40847. name: "Front",
  40848. image: {
  40849. source: "./media/characters/moxie-nova/front.svg",
  40850. extra: 1734/1652,
  40851. bottom: 41/1775
  40852. }
  40853. },
  40854. },
  40855. [
  40856. {
  40857. name: "Normal",
  40858. height: math.unit(7 + 6/12, "feet"),
  40859. default: true
  40860. },
  40861. ]
  40862. ))
  40863. characterMakers.push(() => makeCharacter(
  40864. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  40865. {
  40866. goat: {
  40867. height: math.unit(4, "feet"),
  40868. weight: math.unit(180, "lb"),
  40869. name: "Goat",
  40870. image: {
  40871. source: "./media/characters/tiffany/goat.svg",
  40872. extra: 1845/1595,
  40873. bottom: 106/1951
  40874. }
  40875. },
  40876. front: {
  40877. height: math.unit(5, "feet"),
  40878. weight: math.unit(150, "lb"),
  40879. name: "Foxcoon",
  40880. image: {
  40881. source: "./media/characters/tiffany/foxcoon.svg",
  40882. extra: 1941/1845,
  40883. bottom: 58/1999
  40884. }
  40885. },
  40886. },
  40887. [
  40888. {
  40889. name: "Normal",
  40890. height: math.unit(5, "feet"),
  40891. default: true
  40892. },
  40893. ]
  40894. ))
  40895. characterMakers.push(() => makeCharacter(
  40896. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  40897. {
  40898. front: {
  40899. height: math.unit(8, "feet"),
  40900. weight: math.unit(300, "lb"),
  40901. name: "Front",
  40902. image: {
  40903. source: "./media/characters/raxinath/front.svg",
  40904. extra: 1407/1309,
  40905. bottom: 39/1446
  40906. }
  40907. },
  40908. back: {
  40909. height: math.unit(8, "feet"),
  40910. weight: math.unit(300, "lb"),
  40911. name: "Back",
  40912. image: {
  40913. source: "./media/characters/raxinath/back.svg",
  40914. extra: 1405/1315,
  40915. bottom: 9/1414
  40916. }
  40917. },
  40918. },
  40919. [
  40920. {
  40921. name: "Speck",
  40922. height: math.unit(0.5, "nm")
  40923. },
  40924. {
  40925. name: "Micro",
  40926. height: math.unit(3, "inches")
  40927. },
  40928. {
  40929. name: "Kobold",
  40930. height: math.unit(3, "feet")
  40931. },
  40932. {
  40933. name: "Normal",
  40934. height: math.unit(8, "feet"),
  40935. default: true
  40936. },
  40937. {
  40938. name: "Giant",
  40939. height: math.unit(50, "feet")
  40940. },
  40941. {
  40942. name: "Macro",
  40943. height: math.unit(1000, "feet")
  40944. },
  40945. {
  40946. name: "Megamacro",
  40947. height: math.unit(1, "mile")
  40948. },
  40949. ]
  40950. ))
  40951. characterMakers.push(() => makeCharacter(
  40952. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  40953. {
  40954. front: {
  40955. height: math.unit(10, "feet"),
  40956. weight: math.unit(1442, "lb"),
  40957. name: "Front",
  40958. image: {
  40959. source: "./media/characters/mal-dragon/front.svg",
  40960. extra: 1515/1444,
  40961. bottom: 113/1628
  40962. }
  40963. },
  40964. back: {
  40965. height: math.unit(10, "feet"),
  40966. weight: math.unit(1442, "lb"),
  40967. name: "Back",
  40968. image: {
  40969. source: "./media/characters/mal-dragon/back.svg",
  40970. extra: 1527/1434,
  40971. bottom: 25/1552
  40972. }
  40973. },
  40974. },
  40975. [
  40976. {
  40977. name: "Mortal Interaction",
  40978. height: math.unit(10, "feet"),
  40979. default: true
  40980. },
  40981. {
  40982. name: "Large",
  40983. height: math.unit(30, "feet")
  40984. },
  40985. {
  40986. name: "Kaiju",
  40987. height: math.unit(300, "feet")
  40988. },
  40989. {
  40990. name: "Megamacro",
  40991. height: math.unit(10000, "feet")
  40992. },
  40993. {
  40994. name: "Continent Cracker",
  40995. height: math.unit(30000000, "feet")
  40996. },
  40997. {
  40998. name: "Sol-Swallowing",
  40999. height: math.unit(1e11, "feet")
  41000. },
  41001. {
  41002. name: "Light Universal",
  41003. height: math.unit(5, "universes")
  41004. },
  41005. {
  41006. name: "Universe Atoms",
  41007. height: math.unit(1.829e9, "universes")
  41008. },
  41009. {
  41010. name: "Light Multiversal",
  41011. height: math.unit(5, "multiverses")
  41012. },
  41013. {
  41014. name: "Multiverse Atoms",
  41015. height: math.unit(1.829e9, "multiverses")
  41016. },
  41017. {
  41018. name: "Fabric of Time",
  41019. height: math.unit(1e262, "multiverses")
  41020. },
  41021. ]
  41022. ))
  41023. characterMakers.push(() => makeCharacter(
  41024. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  41025. {
  41026. front: {
  41027. height: math.unit(9, "feet"),
  41028. weight: math.unit(1050, "lb"),
  41029. name: "Front",
  41030. image: {
  41031. source: "./media/characters/tabitha/front.svg",
  41032. extra: 2083/1994,
  41033. bottom: 68/2151
  41034. }
  41035. },
  41036. },
  41037. [
  41038. {
  41039. name: "Baseline",
  41040. height: math.unit(9, "feet"),
  41041. default: true
  41042. },
  41043. {
  41044. name: "Giant",
  41045. height: math.unit(90, "feet")
  41046. },
  41047. {
  41048. name: "Macro",
  41049. height: math.unit(900, "feet")
  41050. },
  41051. {
  41052. name: "Megamacro",
  41053. height: math.unit(9000, "feet")
  41054. },
  41055. {
  41056. name: "City-Crushing",
  41057. height: math.unit(27000, "feet")
  41058. },
  41059. {
  41060. name: "Mountain-Mashing",
  41061. height: math.unit(90000, "feet")
  41062. },
  41063. {
  41064. name: "Nation Nemesis",
  41065. height: math.unit(9e6, "feet")
  41066. },
  41067. {
  41068. name: "Continent Cracker",
  41069. height: math.unit(27e6, "feet")
  41070. },
  41071. {
  41072. name: "Earth-Eclipsing",
  41073. height: math.unit(2.7e8, "feet")
  41074. },
  41075. {
  41076. name: "Gas Giant Gulper",
  41077. height: math.unit(2.7e9, "feet")
  41078. },
  41079. {
  41080. name: "Sol-Swallowing",
  41081. height: math.unit(9e10, "feet")
  41082. },
  41083. {
  41084. name: "Galaxy Gulper",
  41085. height: math.unit(9, "galaxies")
  41086. },
  41087. {
  41088. name: "Cosmos Churner",
  41089. height: math.unit(9, "universes")
  41090. },
  41091. ]
  41092. ))
  41093. characterMakers.push(() => makeCharacter(
  41094. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  41095. {
  41096. front: {
  41097. height: math.unit(160, "cm"),
  41098. weight: math.unit(55, "kg"),
  41099. name: "Front",
  41100. image: {
  41101. source: "./media/characters/tow/front.svg",
  41102. extra: 1751/1722,
  41103. bottom: 74/1825
  41104. }
  41105. },
  41106. },
  41107. [
  41108. {
  41109. name: "Norm",
  41110. height: math.unit(160, "cm")
  41111. },
  41112. {
  41113. name: "Casual",
  41114. height: math.unit(3200, "m"),
  41115. default: true
  41116. },
  41117. {
  41118. name: "Show-Off",
  41119. height: math.unit(160, "km")
  41120. },
  41121. ]
  41122. ))
  41123. characterMakers.push(() => makeCharacter(
  41124. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  41125. {
  41126. front: {
  41127. height: math.unit(7 + 11/12, "feet"),
  41128. weight: math.unit(342.8, "lb"),
  41129. name: "Front",
  41130. image: {
  41131. source: "./media/characters/vivian-orca-dragon/front.svg",
  41132. extra: 1890/1865,
  41133. bottom: 28/1918
  41134. }
  41135. },
  41136. },
  41137. [
  41138. {
  41139. name: "Micro",
  41140. height: math.unit(5, "inches")
  41141. },
  41142. {
  41143. name: "Normal",
  41144. height: math.unit(7 + 11/12, "feet"),
  41145. default: true
  41146. },
  41147. {
  41148. name: "Macro",
  41149. height: math.unit(395 + 7/12, "feet")
  41150. },
  41151. ]
  41152. ))
  41153. characterMakers.push(() => makeCharacter(
  41154. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  41155. {
  41156. side: {
  41157. height: math.unit(10, "feet"),
  41158. weight: math.unit(1442, "lb"),
  41159. name: "Side",
  41160. image: {
  41161. source: "./media/characters/lotherakon/side.svg",
  41162. extra: 1604/1497,
  41163. bottom: 89/1693
  41164. }
  41165. },
  41166. },
  41167. [
  41168. {
  41169. name: "Mortal Interaction",
  41170. height: math.unit(10, "feet")
  41171. },
  41172. {
  41173. name: "Large",
  41174. height: math.unit(30, "feet"),
  41175. default: true
  41176. },
  41177. {
  41178. name: "Giant",
  41179. height: math.unit(100, "feet")
  41180. },
  41181. {
  41182. name: "Kaiju",
  41183. height: math.unit(300, "feet")
  41184. },
  41185. {
  41186. name: "Macro",
  41187. height: math.unit(1000, "feet")
  41188. },
  41189. {
  41190. name: "Macro+",
  41191. height: math.unit(3000, "feet")
  41192. },
  41193. {
  41194. name: "Megamacro",
  41195. height: math.unit(10000, "feet")
  41196. },
  41197. {
  41198. name: "City-Crushing",
  41199. height: math.unit(30000, "feet")
  41200. },
  41201. {
  41202. name: "Continent Cracker",
  41203. height: math.unit(30e6, "feet")
  41204. },
  41205. {
  41206. name: "Earth Eclipsing",
  41207. height: math.unit(3e8, "feet")
  41208. },
  41209. {
  41210. name: "Gas Giant Gulper",
  41211. height: math.unit(3e9, "feet")
  41212. },
  41213. {
  41214. name: "Sol-Swallowing",
  41215. height: math.unit(1e11, "feet")
  41216. },
  41217. {
  41218. name: "System Swallower",
  41219. height: math.unit(3e14, "feet")
  41220. },
  41221. {
  41222. name: "Galaxy Gulper",
  41223. height: math.unit(10, "galaxies")
  41224. },
  41225. {
  41226. name: "Light Universal",
  41227. height: math.unit(5, "universes")
  41228. },
  41229. {
  41230. name: "Universe Palm",
  41231. height: math.unit(20, "universes")
  41232. },
  41233. {
  41234. name: "Light Multiversal",
  41235. height: math.unit(5, "multiverses")
  41236. },
  41237. {
  41238. name: "Multiverse Palm",
  41239. height: math.unit(20, "multiverses")
  41240. },
  41241. {
  41242. name: "Inferno Incarnate",
  41243. height: math.unit(1e7, "multiverses")
  41244. },
  41245. ]
  41246. ))
  41247. characterMakers.push(() => makeCharacter(
  41248. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  41249. {
  41250. front: {
  41251. height: math.unit(8, "feet"),
  41252. weight: math.unit(1200, "lb"),
  41253. name: "Front",
  41254. image: {
  41255. source: "./media/characters/malithee/front.svg",
  41256. extra: 1675/1640,
  41257. bottom: 162/1837
  41258. }
  41259. },
  41260. },
  41261. [
  41262. {
  41263. name: "Mortal Interaction",
  41264. height: math.unit(8, "feet"),
  41265. default: true
  41266. },
  41267. {
  41268. name: "Large",
  41269. height: math.unit(24, "feet")
  41270. },
  41271. {
  41272. name: "Kaiju",
  41273. height: math.unit(240, "feet")
  41274. },
  41275. {
  41276. name: "Megamacro",
  41277. height: math.unit(8000, "feet")
  41278. },
  41279. {
  41280. name: "Continent Cracker",
  41281. height: math.unit(24e6, "feet")
  41282. },
  41283. {
  41284. name: "Earth-Eclipsing",
  41285. height: math.unit(2.4e8, "feet")
  41286. },
  41287. {
  41288. name: "Sol-Swallowing",
  41289. height: math.unit(8e10, "feet")
  41290. },
  41291. {
  41292. name: "Galaxy Gulper",
  41293. height: math.unit(8, "galaxies")
  41294. },
  41295. {
  41296. name: "Light Universal",
  41297. height: math.unit(4, "universes")
  41298. },
  41299. {
  41300. name: "Universe Atoms",
  41301. height: math.unit(1.829e9, "universes")
  41302. },
  41303. {
  41304. name: "Light Multiversal",
  41305. height: math.unit(4, "multiverses")
  41306. },
  41307. {
  41308. name: "Multiverse Atoms",
  41309. height: math.unit(1.829e9, "multiverses")
  41310. },
  41311. {
  41312. name: "Nigh-Omnipresence",
  41313. height: math.unit(8e261, "multiverses")
  41314. },
  41315. ]
  41316. ))
  41317. characterMakers.push(() => makeCharacter(
  41318. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  41319. {
  41320. front: {
  41321. height: math.unit(10, "feet"),
  41322. weight: math.unit(1500, "lb"),
  41323. name: "Front",
  41324. image: {
  41325. source: "./media/characters/miles-thestia/front.svg",
  41326. extra: 1812/1727,
  41327. bottom: 86/1898
  41328. }
  41329. },
  41330. back: {
  41331. height: math.unit(10, "feet"),
  41332. weight: math.unit(1500, "lb"),
  41333. name: "Back",
  41334. image: {
  41335. source: "./media/characters/miles-thestia/back.svg",
  41336. extra: 1799/1690,
  41337. bottom: 47/1846
  41338. }
  41339. },
  41340. frontNsfw: {
  41341. height: math.unit(10, "feet"),
  41342. weight: math.unit(1500, "lb"),
  41343. name: "Front (NSFW)",
  41344. image: {
  41345. source: "./media/characters/miles-thestia/front-nsfw.svg",
  41346. extra: 1812/1727,
  41347. bottom: 86/1898
  41348. }
  41349. },
  41350. },
  41351. [
  41352. {
  41353. name: "Mini-Macro",
  41354. height: math.unit(10, "feet"),
  41355. default: true
  41356. },
  41357. ]
  41358. ))
  41359. characterMakers.push(() => makeCharacter(
  41360. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  41361. {
  41362. front: {
  41363. height: math.unit(25, "feet"),
  41364. name: "Front",
  41365. image: {
  41366. source: "./media/characters/titan-s-wulf/front.svg",
  41367. extra: 1560/1484,
  41368. bottom: 76/1636
  41369. }
  41370. },
  41371. },
  41372. [
  41373. {
  41374. name: "Smallest",
  41375. height: math.unit(25, "feet"),
  41376. default: true
  41377. },
  41378. {
  41379. name: "Normal",
  41380. height: math.unit(200, "feet")
  41381. },
  41382. {
  41383. name: "Macro",
  41384. height: math.unit(200000, "feet")
  41385. },
  41386. {
  41387. name: "Multiversal Original",
  41388. height: math.unit(10000, "multiverses")
  41389. },
  41390. ]
  41391. ))
  41392. characterMakers.push(() => makeCharacter(
  41393. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  41394. {
  41395. front: {
  41396. height: math.unit(8, "feet"),
  41397. weight: math.unit(553, "lb"),
  41398. name: "Front",
  41399. image: {
  41400. source: "./media/characters/tawendeh/front.svg",
  41401. extra: 2365/2268,
  41402. bottom: 83/2448
  41403. }
  41404. },
  41405. frontClothed: {
  41406. height: math.unit(8, "feet"),
  41407. weight: math.unit(553, "lb"),
  41408. name: "Front (Clothed)",
  41409. image: {
  41410. source: "./media/characters/tawendeh/front-clothed.svg",
  41411. extra: 2365/2268,
  41412. bottom: 83/2448
  41413. }
  41414. },
  41415. back: {
  41416. height: math.unit(8, "feet"),
  41417. weight: math.unit(553, "lb"),
  41418. name: "Back",
  41419. image: {
  41420. source: "./media/characters/tawendeh/back.svg",
  41421. extra: 2397/2294,
  41422. bottom: 42/2439
  41423. }
  41424. },
  41425. },
  41426. [
  41427. {
  41428. name: "Mortal Interaction",
  41429. height: math.unit(8, "feet"),
  41430. default: true
  41431. },
  41432. {
  41433. name: "Giant",
  41434. height: math.unit(80, "feet")
  41435. },
  41436. {
  41437. name: "Macro",
  41438. height: math.unit(800, "feet")
  41439. },
  41440. {
  41441. name: "Megamacro",
  41442. height: math.unit(8000, "feet")
  41443. },
  41444. {
  41445. name: "City-Crushing",
  41446. height: math.unit(24000, "feet")
  41447. },
  41448. {
  41449. name: "Mountain-Mashing",
  41450. height: math.unit(80000, "feet")
  41451. },
  41452. {
  41453. name: "Nation Nemesis",
  41454. height: math.unit(8e6, "feet")
  41455. },
  41456. {
  41457. name: "Continent Cracker",
  41458. height: math.unit(24e6, "feet")
  41459. },
  41460. {
  41461. name: "Earth-Eclipsing",
  41462. height: math.unit(2.4e8, "feet")
  41463. },
  41464. {
  41465. name: "Gas Giant Gulper",
  41466. height: math.unit(2.4e9, "feet")
  41467. },
  41468. {
  41469. name: "Sol-Swallowing",
  41470. height: math.unit(8e10, "feet")
  41471. },
  41472. {
  41473. name: "Galaxy Gulper",
  41474. height: math.unit(8, "galaxies")
  41475. },
  41476. {
  41477. name: "Cosmos Churner",
  41478. height: math.unit(8, "universes")
  41479. },
  41480. {
  41481. name: "Omnipotent Otter",
  41482. height: math.unit(80, "universes")
  41483. },
  41484. ]
  41485. ))
  41486. characterMakers.push(() => makeCharacter(
  41487. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  41488. {
  41489. front: {
  41490. height: math.unit(2.6, "meters"),
  41491. weight: math.unit(900, "kg"),
  41492. name: "Front",
  41493. image: {
  41494. source: "./media/characters/neesha/front.svg",
  41495. extra: 1803/1653,
  41496. bottom: 128/1931
  41497. }
  41498. },
  41499. },
  41500. [
  41501. {
  41502. name: "Normal",
  41503. height: math.unit(2.6, "meters"),
  41504. default: true
  41505. },
  41506. {
  41507. name: "Macro",
  41508. height: math.unit(50, "meters")
  41509. },
  41510. ]
  41511. ))
  41512. characterMakers.push(() => makeCharacter(
  41513. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  41514. {
  41515. front: {
  41516. height: math.unit(5, "feet"),
  41517. weight: math.unit(185, "lb"),
  41518. name: "Front",
  41519. image: {
  41520. source: "./media/characters/kyera/front.svg",
  41521. extra: 1875/1790,
  41522. bottom: 96/1971
  41523. }
  41524. },
  41525. },
  41526. [
  41527. {
  41528. name: "Normal",
  41529. height: math.unit(5, "feet"),
  41530. default: true
  41531. },
  41532. ]
  41533. ))
  41534. characterMakers.push(() => makeCharacter(
  41535. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  41536. {
  41537. front: {
  41538. height: math.unit(7 + 6/12, "feet"),
  41539. weight: math.unit(540, "lb"),
  41540. name: "Front",
  41541. image: {
  41542. source: "./media/characters/yuko/front.svg",
  41543. extra: 1282/1222,
  41544. bottom: 101/1383
  41545. }
  41546. },
  41547. frontClothed: {
  41548. height: math.unit(7 + 6/12, "feet"),
  41549. weight: math.unit(540, "lb"),
  41550. name: "Front (Clothed)",
  41551. image: {
  41552. source: "./media/characters/yuko/front-clothed.svg",
  41553. extra: 1282/1222,
  41554. bottom: 101/1383
  41555. }
  41556. },
  41557. },
  41558. [
  41559. {
  41560. name: "Normal",
  41561. height: math.unit(7 + 6/12, "feet"),
  41562. default: true
  41563. },
  41564. {
  41565. name: "Macro",
  41566. height: math.unit(26 + 9/12, "feet")
  41567. },
  41568. {
  41569. name: "Megamacro",
  41570. height: math.unit(300, "feet")
  41571. },
  41572. {
  41573. name: "Gigamacro",
  41574. height: math.unit(5000, "feet")
  41575. },
  41576. {
  41577. name: "Planetary",
  41578. height: math.unit(10000, "miles")
  41579. },
  41580. ]
  41581. ))
  41582. characterMakers.push(() => makeCharacter(
  41583. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  41584. {
  41585. front: {
  41586. height: math.unit(8 + 2/12, "feet"),
  41587. weight: math.unit(600, "lb"),
  41588. name: "Front",
  41589. image: {
  41590. source: "./media/characters/deam-nitrel/front.svg",
  41591. extra: 1308/1234,
  41592. bottom: 125/1433
  41593. }
  41594. },
  41595. },
  41596. [
  41597. {
  41598. name: "Normal",
  41599. height: math.unit(8 + 2/12, "feet"),
  41600. default: true
  41601. },
  41602. ]
  41603. ))
  41604. characterMakers.push(() => makeCharacter(
  41605. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  41606. {
  41607. front: {
  41608. height: math.unit(6.1, "feet"),
  41609. weight: math.unit(180, "lb"),
  41610. name: "Front",
  41611. image: {
  41612. source: "./media/characters/skyress/front.svg",
  41613. extra: 1045/915,
  41614. bottom: 28/1073
  41615. }
  41616. },
  41617. maw: {
  41618. height: math.unit(1, "feet"),
  41619. name: "Maw",
  41620. image: {
  41621. source: "./media/characters/skyress/maw.svg"
  41622. }
  41623. },
  41624. },
  41625. [
  41626. {
  41627. name: "Normal",
  41628. height: math.unit(6.1, "feet"),
  41629. default: true
  41630. },
  41631. {
  41632. name: "Macro",
  41633. height: math.unit(200, "feet")
  41634. },
  41635. ]
  41636. ))
  41637. characterMakers.push(() => makeCharacter(
  41638. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  41639. {
  41640. front: {
  41641. height: math.unit(4 + 2/12, "feet"),
  41642. weight: math.unit(40, "kg"),
  41643. name: "Front",
  41644. image: {
  41645. source: "./media/characters/amethyst-jones/front.svg",
  41646. extra: 1220/1150,
  41647. bottom: 101/1321
  41648. }
  41649. },
  41650. },
  41651. [
  41652. {
  41653. name: "Normal",
  41654. height: math.unit(4 + 2/12, "feet"),
  41655. default: true
  41656. },
  41657. ]
  41658. ))
  41659. characterMakers.push(() => makeCharacter(
  41660. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  41661. {
  41662. front: {
  41663. height: math.unit(1.7, "m"),
  41664. weight: math.unit(135, "lb"),
  41665. name: "Front",
  41666. image: {
  41667. source: "./media/characters/jade/front.svg",
  41668. extra: 1818/1767,
  41669. bottom: 32/1850
  41670. }
  41671. },
  41672. back: {
  41673. height: math.unit(1.7, "m"),
  41674. weight: math.unit(135, "lb"),
  41675. name: "Back",
  41676. image: {
  41677. source: "./media/characters/jade/back.svg",
  41678. extra: 1869/1809,
  41679. bottom: 35/1904
  41680. }
  41681. },
  41682. hand: {
  41683. height: math.unit(0.24, "m"),
  41684. name: "Hand",
  41685. image: {
  41686. source: "./media/characters/jade/hand.svg"
  41687. }
  41688. },
  41689. foot: {
  41690. height: math.unit(0.263, "m"),
  41691. name: "Foot",
  41692. image: {
  41693. source: "./media/characters/jade/foot.svg"
  41694. }
  41695. },
  41696. dick: {
  41697. height: math.unit(0.47, "m"),
  41698. name: "Dick",
  41699. image: {
  41700. source: "./media/characters/jade/dick.svg"
  41701. }
  41702. },
  41703. },
  41704. [
  41705. {
  41706. name: "Micro",
  41707. height: math.unit(22, "cm")
  41708. },
  41709. {
  41710. name: "Normal",
  41711. height: math.unit(1.7, "m"),
  41712. default: true
  41713. },
  41714. {
  41715. name: "Macro",
  41716. height: math.unit(152, "m")
  41717. },
  41718. ]
  41719. ))
  41720. characterMakers.push(() => makeCharacter(
  41721. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  41722. {
  41723. front: {
  41724. height: math.unit(100, "miles"),
  41725. weight: math.unit(20000, "tons"),
  41726. name: "Front",
  41727. image: {
  41728. source: "./media/characters/cookie/front.svg",
  41729. extra: 1125/1070,
  41730. bottom: 30/1155
  41731. }
  41732. },
  41733. },
  41734. [
  41735. {
  41736. name: "Big",
  41737. height: math.unit(50, "feet")
  41738. },
  41739. {
  41740. name: "Macro",
  41741. height: math.unit(100, "miles"),
  41742. default: true
  41743. },
  41744. {
  41745. name: "Megamacro",
  41746. height: math.unit(90000, "miles")
  41747. },
  41748. ]
  41749. ))
  41750. characterMakers.push(() => makeCharacter(
  41751. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  41752. {
  41753. front: {
  41754. height: math.unit(6, "feet"),
  41755. weight: math.unit(145, "lb"),
  41756. name: "Front",
  41757. image: {
  41758. source: "./media/characters/farzian/front.svg",
  41759. extra: 1902/1693,
  41760. bottom: 108/2010
  41761. }
  41762. },
  41763. },
  41764. [
  41765. {
  41766. name: "Macro",
  41767. height: math.unit(500, "feet"),
  41768. default: true
  41769. },
  41770. ]
  41771. ))
  41772. characterMakers.push(() => makeCharacter(
  41773. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  41774. {
  41775. front: {
  41776. height: math.unit(3 + 6/12, "feet"),
  41777. weight: math.unit(50, "lb"),
  41778. name: "Front",
  41779. image: {
  41780. source: "./media/characters/kimberly-tilson/front.svg",
  41781. extra: 1400/1322,
  41782. bottom: 36/1436
  41783. }
  41784. },
  41785. back: {
  41786. height: math.unit(3 + 6/12, "feet"),
  41787. weight: math.unit(50, "lb"),
  41788. name: "Back",
  41789. image: {
  41790. source: "./media/characters/kimberly-tilson/back.svg",
  41791. extra: 1370/1307,
  41792. bottom: 20/1390
  41793. }
  41794. },
  41795. },
  41796. [
  41797. {
  41798. name: "Normal",
  41799. height: math.unit(3 + 6/12, "feet"),
  41800. default: true
  41801. },
  41802. ]
  41803. ))
  41804. characterMakers.push(() => makeCharacter(
  41805. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  41806. {
  41807. front: {
  41808. height: math.unit(1148, "feet"),
  41809. weight: math.unit(34057, "lb"),
  41810. name: "Front",
  41811. image: {
  41812. source: "./media/characters/harthos/front.svg",
  41813. extra: 1391/1339,
  41814. bottom: 13/1404
  41815. }
  41816. },
  41817. },
  41818. [
  41819. {
  41820. name: "Macro",
  41821. height: math.unit(1148, "feet"),
  41822. default: true
  41823. },
  41824. ]
  41825. ))
  41826. characterMakers.push(() => makeCharacter(
  41827. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  41828. {
  41829. front: {
  41830. height: math.unit(15, "feet"),
  41831. name: "Front",
  41832. image: {
  41833. source: "./media/characters/hypatia/front.svg",
  41834. extra: 1653/1591,
  41835. bottom: 79/1732
  41836. }
  41837. },
  41838. },
  41839. [
  41840. {
  41841. name: "Normal",
  41842. height: math.unit(15, "feet")
  41843. },
  41844. {
  41845. name: "Small",
  41846. height: math.unit(300, "feet")
  41847. },
  41848. {
  41849. name: "Macro",
  41850. height: math.unit(2500, "feet"),
  41851. default: true
  41852. },
  41853. {
  41854. name: "Mega Macro",
  41855. height: math.unit(1500, "miles")
  41856. },
  41857. {
  41858. name: "Giga Macro",
  41859. height: math.unit(1.5e6, "miles")
  41860. },
  41861. ]
  41862. ))
  41863. characterMakers.push(() => makeCharacter(
  41864. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  41865. {
  41866. front: {
  41867. height: math.unit(6, "feet"),
  41868. weight: math.unit(200, "lb"),
  41869. name: "Front",
  41870. image: {
  41871. source: "./media/characters/wulver/front.svg",
  41872. extra: 1724/1632,
  41873. bottom: 130/1854
  41874. }
  41875. },
  41876. frontNsfw: {
  41877. height: math.unit(6, "feet"),
  41878. weight: math.unit(200, "lb"),
  41879. name: "Front (NSFW)",
  41880. image: {
  41881. source: "./media/characters/wulver/front-nsfw.svg",
  41882. extra: 1724/1632,
  41883. bottom: 130/1854
  41884. }
  41885. },
  41886. },
  41887. [
  41888. {
  41889. name: "Human-Sized",
  41890. height: math.unit(6, "feet")
  41891. },
  41892. {
  41893. name: "Normal",
  41894. height: math.unit(4, "meters"),
  41895. default: true
  41896. },
  41897. {
  41898. name: "Large",
  41899. height: math.unit(6, "m")
  41900. },
  41901. ]
  41902. ))
  41903. characterMakers.push(() => makeCharacter(
  41904. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  41905. {
  41906. front: {
  41907. height: math.unit(7, "feet"),
  41908. name: "Front",
  41909. image: {
  41910. source: "./media/characters/maru/front.svg",
  41911. extra: 1595/1570,
  41912. bottom: 0/1595
  41913. }
  41914. },
  41915. },
  41916. [
  41917. {
  41918. name: "Normal",
  41919. height: math.unit(7, "feet"),
  41920. default: true
  41921. },
  41922. {
  41923. name: "Macro",
  41924. height: math.unit(700, "feet")
  41925. },
  41926. {
  41927. name: "Mega Macro",
  41928. height: math.unit(25, "miles")
  41929. },
  41930. ]
  41931. ))
  41932. characterMakers.push(() => makeCharacter(
  41933. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  41934. {
  41935. front: {
  41936. height: math.unit(6, "feet"),
  41937. weight: math.unit(170, "lb"),
  41938. name: "Front",
  41939. image: {
  41940. source: "./media/characters/xenon/front.svg",
  41941. extra: 1376/1305,
  41942. bottom: 56/1432
  41943. }
  41944. },
  41945. back: {
  41946. height: math.unit(6, "feet"),
  41947. weight: math.unit(170, "lb"),
  41948. name: "Back",
  41949. image: {
  41950. source: "./media/characters/xenon/back.svg",
  41951. extra: 1328/1259,
  41952. bottom: 95/1423
  41953. }
  41954. },
  41955. maw: {
  41956. height: math.unit(0.52, "feet"),
  41957. name: "Maw",
  41958. image: {
  41959. source: "./media/characters/xenon/maw.svg"
  41960. }
  41961. },
  41962. handLeft: {
  41963. height: math.unit(0.82 * 169 / 153, "feet"),
  41964. name: "Hand (Left)",
  41965. image: {
  41966. source: "./media/characters/xenon/hand-left.svg"
  41967. }
  41968. },
  41969. handRight: {
  41970. height: math.unit(0.82, "feet"),
  41971. name: "Hand (Right)",
  41972. image: {
  41973. source: "./media/characters/xenon/hand-right.svg"
  41974. }
  41975. },
  41976. footLeft: {
  41977. height: math.unit(1.13, "feet"),
  41978. name: "Foot (Left)",
  41979. image: {
  41980. source: "./media/characters/xenon/foot-left.svg"
  41981. }
  41982. },
  41983. footRight: {
  41984. height: math.unit(1.13 * 194 / 196, "feet"),
  41985. name: "Foot (Right)",
  41986. image: {
  41987. source: "./media/characters/xenon/foot-right.svg"
  41988. }
  41989. },
  41990. },
  41991. [
  41992. {
  41993. name: "Micro",
  41994. height: math.unit(0.8, "inches")
  41995. },
  41996. {
  41997. name: "Normal",
  41998. height: math.unit(6, "feet")
  41999. },
  42000. {
  42001. name: "Macro",
  42002. height: math.unit(50, "feet"),
  42003. default: true
  42004. },
  42005. {
  42006. name: "Macro+",
  42007. height: math.unit(250, "feet")
  42008. },
  42009. {
  42010. name: "Megamacro",
  42011. height: math.unit(1500, "feet")
  42012. },
  42013. ]
  42014. ))
  42015. characterMakers.push(() => makeCharacter(
  42016. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  42017. {
  42018. front: {
  42019. height: math.unit(7 + 5/12, "feet"),
  42020. name: "Front",
  42021. image: {
  42022. source: "./media/characters/zane/front.svg",
  42023. extra: 1260/1203,
  42024. bottom: 94/1354
  42025. }
  42026. },
  42027. back: {
  42028. height: math.unit(5.05, "feet"),
  42029. name: "Back",
  42030. image: {
  42031. source: "./media/characters/zane/back.svg",
  42032. extra: 893/829,
  42033. bottom: 30/923
  42034. }
  42035. },
  42036. werewolf: {
  42037. height: math.unit(11, "feet"),
  42038. name: "Werewolf",
  42039. image: {
  42040. source: "./media/characters/zane/werewolf.svg",
  42041. extra: 1383/1323,
  42042. bottom: 89/1472
  42043. }
  42044. },
  42045. foot: {
  42046. height: math.unit(1.46, "feet"),
  42047. name: "Foot",
  42048. image: {
  42049. source: "./media/characters/zane/foot.svg"
  42050. }
  42051. },
  42052. footFront: {
  42053. height: math.unit(0.784, "feet"),
  42054. name: "Foot (Front)",
  42055. image: {
  42056. source: "./media/characters/zane/foot-front.svg"
  42057. }
  42058. },
  42059. dick: {
  42060. height: math.unit(1.95, "feet"),
  42061. name: "Dick",
  42062. image: {
  42063. source: "./media/characters/zane/dick.svg"
  42064. }
  42065. },
  42066. dickWerewolf: {
  42067. height: math.unit(3.77, "feet"),
  42068. name: "Dick (Werewolf)",
  42069. image: {
  42070. source: "./media/characters/zane/dick.svg"
  42071. }
  42072. },
  42073. },
  42074. [
  42075. {
  42076. name: "Normal",
  42077. height: math.unit(7 + 5/12, "feet"),
  42078. default: true
  42079. },
  42080. ]
  42081. ))
  42082. characterMakers.push(() => makeCharacter(
  42083. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  42084. {
  42085. front: {
  42086. height: math.unit(6 + 2/12, "feet"),
  42087. weight: math.unit(284, "lb"),
  42088. name: "Front",
  42089. image: {
  42090. source: "./media/characters/benni-desparque/front.svg",
  42091. extra: 1353/1126,
  42092. bottom: 69/1422
  42093. }
  42094. },
  42095. },
  42096. [
  42097. {
  42098. name: "Civilian",
  42099. height: math.unit(6 + 2/12, "feet")
  42100. },
  42101. {
  42102. name: "Normal",
  42103. height: math.unit(98, "feet"),
  42104. default: true
  42105. },
  42106. {
  42107. name: "Kaiju Fighter",
  42108. height: math.unit(268, "feet")
  42109. },
  42110. ]
  42111. ))
  42112. characterMakers.push(() => makeCharacter(
  42113. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  42114. {
  42115. front: {
  42116. height: math.unit(5, "feet"),
  42117. weight: math.unit(105, "lb"),
  42118. name: "Front",
  42119. image: {
  42120. source: "./media/characters/maxine/front.svg",
  42121. extra: 1386/1250,
  42122. bottom: 71/1457
  42123. }
  42124. },
  42125. },
  42126. [
  42127. {
  42128. name: "Normal",
  42129. height: math.unit(5, "feet"),
  42130. default: true
  42131. },
  42132. ]
  42133. ))
  42134. characterMakers.push(() => makeCharacter(
  42135. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  42136. {
  42137. front: {
  42138. height: math.unit(11 + 7/12, "feet"),
  42139. weight: math.unit(9576, "lb"),
  42140. name: "Front",
  42141. image: {
  42142. source: "./media/characters/scaly/front.svg",
  42143. extra: 888/867,
  42144. bottom: 36/924
  42145. }
  42146. },
  42147. },
  42148. [
  42149. {
  42150. name: "Normal",
  42151. height: math.unit(11 + 7/12, "feet"),
  42152. default: true
  42153. },
  42154. ]
  42155. ))
  42156. characterMakers.push(() => makeCharacter(
  42157. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  42158. {
  42159. front: {
  42160. height: math.unit(6 + 3/12, "feet"),
  42161. name: "Front",
  42162. image: {
  42163. source: "./media/characters/saelria/front.svg",
  42164. extra: 1243/1138,
  42165. bottom: 46/1289
  42166. }
  42167. },
  42168. },
  42169. [
  42170. {
  42171. name: "Micro",
  42172. height: math.unit(6, "inches"),
  42173. },
  42174. {
  42175. name: "Normal",
  42176. height: math.unit(6 + 3/12, "feet"),
  42177. default: true
  42178. },
  42179. {
  42180. name: "Macro",
  42181. height: math.unit(25, "feet")
  42182. },
  42183. ]
  42184. ))
  42185. characterMakers.push(() => makeCharacter(
  42186. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  42187. {
  42188. front: {
  42189. height: math.unit(80, "meters"),
  42190. weight: math.unit(7000, "tonnes"),
  42191. name: "Front",
  42192. image: {
  42193. source: "./media/characters/tef/front.svg",
  42194. extra: 2036/1991,
  42195. bottom: 54/2090
  42196. }
  42197. },
  42198. back: {
  42199. height: math.unit(80, "meters"),
  42200. weight: math.unit(7000, "tonnes"),
  42201. name: "Back",
  42202. image: {
  42203. source: "./media/characters/tef/back.svg",
  42204. extra: 2036/1991,
  42205. bottom: 54/2090
  42206. }
  42207. },
  42208. },
  42209. [
  42210. {
  42211. name: "Macro",
  42212. height: math.unit(80, "meters"),
  42213. default: true
  42214. },
  42215. ]
  42216. ))
  42217. characterMakers.push(() => makeCharacter(
  42218. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  42219. {
  42220. front: {
  42221. height: math.unit(13, "feet"),
  42222. weight: math.unit(6, "tons"),
  42223. name: "Front",
  42224. image: {
  42225. source: "./media/characters/rover/front.svg",
  42226. extra: 1233/1156,
  42227. bottom: 50/1283
  42228. }
  42229. },
  42230. back: {
  42231. height: math.unit(13, "feet"),
  42232. weight: math.unit(6, "tons"),
  42233. name: "Back",
  42234. image: {
  42235. source: "./media/characters/rover/back.svg",
  42236. extra: 1327/1258,
  42237. bottom: 39/1366
  42238. }
  42239. },
  42240. },
  42241. [
  42242. {
  42243. name: "Normal",
  42244. height: math.unit(13, "feet"),
  42245. default: true
  42246. },
  42247. {
  42248. name: "Macro",
  42249. height: math.unit(1300, "feet")
  42250. },
  42251. {
  42252. name: "Megamacro",
  42253. height: math.unit(1300, "miles")
  42254. },
  42255. {
  42256. name: "Gigamacro",
  42257. height: math.unit(1300000, "miles")
  42258. },
  42259. ]
  42260. ))
  42261. characterMakers.push(() => makeCharacter(
  42262. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  42263. {
  42264. front: {
  42265. height: math.unit(6, "feet"),
  42266. weight: math.unit(150, "lb"),
  42267. name: "Front",
  42268. image: {
  42269. source: "./media/characters/ariz/front.svg",
  42270. extra: 1401/1346,
  42271. bottom: 5/1406
  42272. }
  42273. },
  42274. },
  42275. [
  42276. {
  42277. name: "Normal",
  42278. height: math.unit(10, "feet"),
  42279. default: true
  42280. },
  42281. ]
  42282. ))
  42283. characterMakers.push(() => makeCharacter(
  42284. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  42285. {
  42286. front: {
  42287. height: math.unit(6, "feet"),
  42288. weight: math.unit(140, "lb"),
  42289. name: "Front",
  42290. image: {
  42291. source: "./media/characters/sigrun/front.svg",
  42292. extra: 1418/1359,
  42293. bottom: 27/1445
  42294. }
  42295. },
  42296. },
  42297. [
  42298. {
  42299. name: "Macro",
  42300. height: math.unit(35, "feet"),
  42301. default: true
  42302. },
  42303. ]
  42304. ))
  42305. characterMakers.push(() => makeCharacter(
  42306. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  42307. {
  42308. front: {
  42309. height: math.unit(6, "feet"),
  42310. weight: math.unit(150, "lb"),
  42311. name: "Front",
  42312. image: {
  42313. source: "./media/characters/numin/front.svg",
  42314. extra: 1433/1388,
  42315. bottom: 12/1445
  42316. }
  42317. },
  42318. },
  42319. [
  42320. {
  42321. name: "Macro",
  42322. height: math.unit(21.5, "km"),
  42323. default: true
  42324. },
  42325. ]
  42326. ))
  42327. characterMakers.push(() => makeCharacter(
  42328. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  42329. {
  42330. front: {
  42331. height: math.unit(6, "feet"),
  42332. weight: math.unit(463, "lb"),
  42333. name: "Front",
  42334. image: {
  42335. source: "./media/characters/melwa/front.svg",
  42336. extra: 1307/1248,
  42337. bottom: 93/1400
  42338. }
  42339. },
  42340. },
  42341. [
  42342. {
  42343. name: "Macro",
  42344. height: math.unit(50, "meters"),
  42345. default: true
  42346. },
  42347. ]
  42348. ))
  42349. characterMakers.push(() => makeCharacter(
  42350. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  42351. {
  42352. front: {
  42353. height: math.unit(325, "feet"),
  42354. name: "Front",
  42355. image: {
  42356. source: "./media/characters/zorkaiju/front.svg",
  42357. extra: 1955/1814,
  42358. bottom: 40/1995
  42359. }
  42360. },
  42361. frontExtended: {
  42362. height: math.unit(325, "feet"),
  42363. name: "Front (Extended)",
  42364. image: {
  42365. source: "./media/characters/zorkaiju/front-extended.svg",
  42366. extra: 1955/1814,
  42367. bottom: 40/1995
  42368. }
  42369. },
  42370. side: {
  42371. height: math.unit(325, "feet"),
  42372. name: "Side",
  42373. image: {
  42374. source: "./media/characters/zorkaiju/side.svg",
  42375. extra: 1495/1396,
  42376. bottom: 17/1512
  42377. }
  42378. },
  42379. sideExtended: {
  42380. height: math.unit(325, "feet"),
  42381. name: "Side (Extended)",
  42382. image: {
  42383. source: "./media/characters/zorkaiju/side-extended.svg",
  42384. extra: 1495/1396,
  42385. bottom: 17/1512
  42386. }
  42387. },
  42388. back: {
  42389. height: math.unit(325, "feet"),
  42390. name: "Back",
  42391. image: {
  42392. source: "./media/characters/zorkaiju/back.svg",
  42393. extra: 1959/1821,
  42394. bottom: 31/1990
  42395. }
  42396. },
  42397. backExtended: {
  42398. height: math.unit(325, "feet"),
  42399. name: "Back (Extended)",
  42400. image: {
  42401. source: "./media/characters/zorkaiju/back-extended.svg",
  42402. extra: 1959/1821,
  42403. bottom: 31/1990
  42404. }
  42405. },
  42406. hand: {
  42407. height: math.unit(58.4, "feet"),
  42408. name: "Hand",
  42409. image: {
  42410. source: "./media/characters/zorkaiju/hand.svg"
  42411. }
  42412. },
  42413. handExtended: {
  42414. height: math.unit(61.4, "feet"),
  42415. name: "Hand (Extended)",
  42416. image: {
  42417. source: "./media/characters/zorkaiju/hand-extended.svg"
  42418. }
  42419. },
  42420. foot: {
  42421. height: math.unit(95, "feet"),
  42422. name: "Foot",
  42423. image: {
  42424. source: "./media/characters/zorkaiju/foot.svg"
  42425. }
  42426. },
  42427. leftArm: {
  42428. height: math.unit(59, "feet"),
  42429. name: "Left Arm",
  42430. image: {
  42431. source: "./media/characters/zorkaiju/left-arm.svg"
  42432. }
  42433. },
  42434. rightArm: {
  42435. height: math.unit(59, "feet"),
  42436. name: "Right Arm",
  42437. image: {
  42438. source: "./media/characters/zorkaiju/right-arm.svg"
  42439. }
  42440. },
  42441. leftArmExtended: {
  42442. height: math.unit(59 * 1.033546, "feet"),
  42443. name: "Left Arm (Extended)",
  42444. image: {
  42445. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  42446. }
  42447. },
  42448. rightArmExtended: {
  42449. height: math.unit(59 * 1.0496, "feet"),
  42450. name: "Right Arm (Extended)",
  42451. image: {
  42452. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  42453. }
  42454. },
  42455. tail: {
  42456. height: math.unit(104, "feet"),
  42457. name: "Tail",
  42458. image: {
  42459. source: "./media/characters/zorkaiju/tail.svg"
  42460. }
  42461. },
  42462. tailExtended: {
  42463. height: math.unit(104, "feet"),
  42464. name: "Tail (Extended)",
  42465. image: {
  42466. source: "./media/characters/zorkaiju/tail-extended.svg"
  42467. }
  42468. },
  42469. tailBottom: {
  42470. height: math.unit(104, "feet"),
  42471. name: "Tail Bottom",
  42472. image: {
  42473. source: "./media/characters/zorkaiju/tail-bottom.svg"
  42474. }
  42475. },
  42476. crystal: {
  42477. height: math.unit(27.54, "feet"),
  42478. name: "Crystal",
  42479. image: {
  42480. source: "./media/characters/zorkaiju/crystal.svg"
  42481. }
  42482. },
  42483. },
  42484. [
  42485. {
  42486. name: "Kaiju",
  42487. height: math.unit(325, "feet"),
  42488. default: true
  42489. },
  42490. ]
  42491. ))
  42492. characterMakers.push(() => makeCharacter(
  42493. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  42494. {
  42495. front: {
  42496. height: math.unit(6 + 1/12, "feet"),
  42497. weight: math.unit(115, "lb"),
  42498. name: "Front",
  42499. image: {
  42500. source: "./media/characters/bailey-belfry/front.svg",
  42501. extra: 1240/1121,
  42502. bottom: 101/1341
  42503. }
  42504. },
  42505. },
  42506. [
  42507. {
  42508. name: "Normal",
  42509. height: math.unit(6 + 1/12, "feet"),
  42510. default: true
  42511. },
  42512. ]
  42513. ))
  42514. characterMakers.push(() => makeCharacter(
  42515. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  42516. {
  42517. side: {
  42518. height: math.unit(4, "meters"),
  42519. weight: math.unit(250, "kg"),
  42520. name: "Side",
  42521. image: {
  42522. source: "./media/characters/blacky/side.svg",
  42523. extra: 1027/919,
  42524. bottom: 43/1070
  42525. }
  42526. },
  42527. maw: {
  42528. height: math.unit(1, "meters"),
  42529. name: "Maw",
  42530. image: {
  42531. source: "./media/characters/blacky/maw.svg"
  42532. }
  42533. },
  42534. paw: {
  42535. height: math.unit(1, "meters"),
  42536. name: "Paw",
  42537. image: {
  42538. source: "./media/characters/blacky/paw.svg"
  42539. }
  42540. },
  42541. },
  42542. [
  42543. {
  42544. name: "Normal",
  42545. height: math.unit(4, "meters"),
  42546. default: true
  42547. },
  42548. ]
  42549. ))
  42550. characterMakers.push(() => makeCharacter(
  42551. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  42552. {
  42553. front: {
  42554. height: math.unit(170, "cm"),
  42555. weight: math.unit(66, "kg"),
  42556. name: "Front",
  42557. image: {
  42558. source: "./media/characters/thux-ei/front.svg",
  42559. extra: 1109/1011,
  42560. bottom: 8/1117
  42561. }
  42562. },
  42563. },
  42564. [
  42565. {
  42566. name: "Normal",
  42567. height: math.unit(170, "cm"),
  42568. default: true
  42569. },
  42570. ]
  42571. ))
  42572. characterMakers.push(() => makeCharacter(
  42573. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  42574. {
  42575. front: {
  42576. height: math.unit(5, "feet"),
  42577. weight: math.unit(120, "lb"),
  42578. name: "Front",
  42579. image: {
  42580. source: "./media/characters/roxanne-voltaire/front.svg",
  42581. extra: 1901/1779,
  42582. bottom: 53/1954
  42583. }
  42584. },
  42585. },
  42586. [
  42587. {
  42588. name: "Normal",
  42589. height: math.unit(5, "feet"),
  42590. default: true
  42591. },
  42592. {
  42593. name: "Giant",
  42594. height: math.unit(50, "feet")
  42595. },
  42596. {
  42597. name: "Titan",
  42598. height: math.unit(500, "feet")
  42599. },
  42600. {
  42601. name: "Macro",
  42602. height: math.unit(5000, "feet")
  42603. },
  42604. {
  42605. name: "Megamacro",
  42606. height: math.unit(50000, "feet")
  42607. },
  42608. {
  42609. name: "Gigamacro",
  42610. height: math.unit(500000, "feet")
  42611. },
  42612. {
  42613. name: "Teramacro",
  42614. height: math.unit(5e6, "feet")
  42615. },
  42616. ]
  42617. ))
  42618. characterMakers.push(() => makeCharacter(
  42619. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  42620. {
  42621. front: {
  42622. height: math.unit(6 + 2/12, "feet"),
  42623. name: "Front",
  42624. image: {
  42625. source: "./media/characters/squeaks/front.svg",
  42626. extra: 1823/1768,
  42627. bottom: 138/1961
  42628. }
  42629. },
  42630. },
  42631. [
  42632. {
  42633. name: "Micro",
  42634. height: math.unit(0.5, "inches")
  42635. },
  42636. {
  42637. name: "Normal",
  42638. height: math.unit(6 + 2/12, "feet"),
  42639. default: true
  42640. },
  42641. {
  42642. name: "Macro",
  42643. height: math.unit(600, "feet")
  42644. },
  42645. ]
  42646. ))
  42647. characterMakers.push(() => makeCharacter(
  42648. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  42649. {
  42650. front: {
  42651. height: math.unit(1.72, "meters"),
  42652. name: "Front",
  42653. image: {
  42654. source: "./media/characters/archinger/front.svg",
  42655. extra: 1861/1675,
  42656. bottom: 125/1986
  42657. }
  42658. },
  42659. back: {
  42660. height: math.unit(1.72, "meters"),
  42661. name: "Back",
  42662. image: {
  42663. source: "./media/characters/archinger/back.svg",
  42664. extra: 1844/1701,
  42665. bottom: 104/1948
  42666. }
  42667. },
  42668. cock: {
  42669. height: math.unit(0.59, "feet"),
  42670. name: "Cock",
  42671. image: {
  42672. source: "./media/characters/archinger/cock.svg"
  42673. }
  42674. },
  42675. },
  42676. [
  42677. {
  42678. name: "Normal",
  42679. height: math.unit(1.72, "meters"),
  42680. default: true
  42681. },
  42682. {
  42683. name: "Macro",
  42684. height: math.unit(84, "meters")
  42685. },
  42686. {
  42687. name: "Macro+",
  42688. height: math.unit(112, "meters")
  42689. },
  42690. {
  42691. name: "Macro++",
  42692. height: math.unit(960, "meters")
  42693. },
  42694. {
  42695. name: "Macro+++",
  42696. height: math.unit(4, "km")
  42697. },
  42698. {
  42699. name: "Macro++++",
  42700. height: math.unit(48, "km")
  42701. },
  42702. {
  42703. name: "Macro+++++",
  42704. height: math.unit(4500, "km")
  42705. },
  42706. ]
  42707. ))
  42708. characterMakers.push(() => makeCharacter(
  42709. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  42710. {
  42711. front: {
  42712. height: math.unit(5 + 5/12, "feet"),
  42713. name: "Front",
  42714. image: {
  42715. source: "./media/characters/alsnapz/front.svg",
  42716. extra: 1157/1065,
  42717. bottom: 42/1199
  42718. }
  42719. },
  42720. },
  42721. [
  42722. {
  42723. name: "Normal",
  42724. height: math.unit(5 + 5/12, "feet"),
  42725. default: true
  42726. },
  42727. ]
  42728. ))
  42729. characterMakers.push(() => makeCharacter(
  42730. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  42731. {
  42732. side: {
  42733. height: math.unit(3.2, "earths"),
  42734. name: "Side",
  42735. image: {
  42736. source: "./media/characters/mag/side.svg",
  42737. extra: 1331/1008,
  42738. bottom: 52/1383
  42739. }
  42740. },
  42741. wing: {
  42742. height: math.unit(1.94, "earths"),
  42743. name: "Wing",
  42744. image: {
  42745. source: "./media/characters/mag/wing.svg"
  42746. }
  42747. },
  42748. dick: {
  42749. height: math.unit(1.8, "earths"),
  42750. name: "Dick",
  42751. image: {
  42752. source: "./media/characters/mag/dick.svg"
  42753. }
  42754. },
  42755. ass: {
  42756. height: math.unit(1.33, "earths"),
  42757. name: "Ass",
  42758. image: {
  42759. source: "./media/characters/mag/ass.svg"
  42760. }
  42761. },
  42762. head: {
  42763. height: math.unit(1.1, "earths"),
  42764. name: "Head",
  42765. image: {
  42766. source: "./media/characters/mag/head.svg"
  42767. }
  42768. },
  42769. maw: {
  42770. height: math.unit(1.62, "earths"),
  42771. name: "Maw",
  42772. image: {
  42773. source: "./media/characters/mag/maw.svg"
  42774. }
  42775. },
  42776. },
  42777. [
  42778. {
  42779. name: "Small",
  42780. height: math.unit(162, "feet")
  42781. },
  42782. {
  42783. name: "Normal",
  42784. height: math.unit(3.2, "earths"),
  42785. default: true
  42786. },
  42787. ]
  42788. ))
  42789. characterMakers.push(() => makeCharacter(
  42790. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  42791. {
  42792. front: {
  42793. height: math.unit(512, "feet"),
  42794. weight: math.unit(63509, "tonnes"),
  42795. name: "Front",
  42796. image: {
  42797. source: "./media/characters/vorrel-harroc/front.svg",
  42798. extra: 1075/1063,
  42799. bottom: 62/1137
  42800. }
  42801. },
  42802. },
  42803. [
  42804. {
  42805. name: "Normal",
  42806. height: math.unit(10, "feet")
  42807. },
  42808. {
  42809. name: "Macro",
  42810. height: math.unit(512, "feet"),
  42811. default: true
  42812. },
  42813. {
  42814. name: "Megamacro",
  42815. height: math.unit(256, "miles")
  42816. },
  42817. {
  42818. name: "Gigamacro",
  42819. height: math.unit(4096, "miles")
  42820. },
  42821. ]
  42822. ))
  42823. characterMakers.push(() => makeCharacter(
  42824. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  42825. {
  42826. side: {
  42827. height: math.unit(50, "feet"),
  42828. name: "Side",
  42829. image: {
  42830. source: "./media/characters/froimar/side.svg",
  42831. extra: 855/638,
  42832. bottom: 99/954
  42833. }
  42834. },
  42835. },
  42836. [
  42837. {
  42838. name: "Macro",
  42839. height: math.unit(50, "feet"),
  42840. default: true
  42841. },
  42842. ]
  42843. ))
  42844. characterMakers.push(() => makeCharacter(
  42845. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  42846. {
  42847. front: {
  42848. height: math.unit(210, "miles"),
  42849. name: "Front",
  42850. image: {
  42851. source: "./media/characters/timothy/front.svg",
  42852. extra: 1007/943,
  42853. bottom: 62/1069
  42854. }
  42855. },
  42856. frontSkirt: {
  42857. height: math.unit(210, "miles"),
  42858. name: "Front (Skirt)",
  42859. image: {
  42860. source: "./media/characters/timothy/front-skirt.svg",
  42861. extra: 1007/943,
  42862. bottom: 62/1069
  42863. }
  42864. },
  42865. frontCoat: {
  42866. height: math.unit(210, "miles"),
  42867. name: "Front (Coat)",
  42868. image: {
  42869. source: "./media/characters/timothy/front-coat.svg",
  42870. extra: 1007/943,
  42871. bottom: 62/1069
  42872. }
  42873. },
  42874. },
  42875. [
  42876. {
  42877. name: "Macro",
  42878. height: math.unit(210, "miles"),
  42879. default: true
  42880. },
  42881. {
  42882. name: "Megamacro",
  42883. height: math.unit(210000, "miles")
  42884. },
  42885. ]
  42886. ))
  42887. characterMakers.push(() => makeCharacter(
  42888. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  42889. {
  42890. front: {
  42891. height: math.unit(188, "feet"),
  42892. name: "Front",
  42893. image: {
  42894. source: "./media/characters/pyotr/front.svg",
  42895. extra: 1912/1826,
  42896. bottom: 18/1930
  42897. }
  42898. },
  42899. },
  42900. [
  42901. {
  42902. name: "Macro",
  42903. height: math.unit(188, "feet"),
  42904. default: true
  42905. },
  42906. {
  42907. name: "Megamacro",
  42908. height: math.unit(8, "miles")
  42909. },
  42910. ]
  42911. ))
  42912. characterMakers.push(() => makeCharacter(
  42913. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  42914. {
  42915. side: {
  42916. height: math.unit(10, "feet"),
  42917. weight: math.unit(4500, "lb"),
  42918. name: "Side",
  42919. image: {
  42920. source: "./media/characters/ackart/side.svg",
  42921. extra: 1776/1668,
  42922. bottom: 116/1892
  42923. }
  42924. },
  42925. },
  42926. [
  42927. {
  42928. name: "Normal",
  42929. height: math.unit(10, "feet"),
  42930. default: true
  42931. },
  42932. ]
  42933. ))
  42934. characterMakers.push(() => makeCharacter(
  42935. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  42936. {
  42937. side: {
  42938. height: math.unit(21, "feet"),
  42939. name: "Side",
  42940. image: {
  42941. source: "./media/characters/nolow/side.svg",
  42942. extra: 1484/1434,
  42943. bottom: 85/1569
  42944. }
  42945. },
  42946. sideErect: {
  42947. height: math.unit(21, "feet"),
  42948. name: "Side-erect",
  42949. image: {
  42950. source: "./media/characters/nolow/side-erect.svg",
  42951. extra: 1484/1434,
  42952. bottom: 85/1569
  42953. }
  42954. },
  42955. },
  42956. [
  42957. {
  42958. name: "Regular",
  42959. height: math.unit(12, "feet")
  42960. },
  42961. {
  42962. name: "Big Chee",
  42963. height: math.unit(21, "feet"),
  42964. default: true
  42965. },
  42966. ]
  42967. ))
  42968. characterMakers.push(() => makeCharacter(
  42969. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  42970. {
  42971. front: {
  42972. height: math.unit(7, "feet"),
  42973. weight: math.unit(250, "lb"),
  42974. name: "Front",
  42975. image: {
  42976. source: "./media/characters/nines/front.svg",
  42977. extra: 1741/1607,
  42978. bottom: 41/1782
  42979. }
  42980. },
  42981. side: {
  42982. height: math.unit(7, "feet"),
  42983. weight: math.unit(250, "lb"),
  42984. name: "Side",
  42985. image: {
  42986. source: "./media/characters/nines/side.svg",
  42987. extra: 1854/1735,
  42988. bottom: 93/1947
  42989. }
  42990. },
  42991. back: {
  42992. height: math.unit(7, "feet"),
  42993. weight: math.unit(250, "lb"),
  42994. name: "Back",
  42995. image: {
  42996. source: "./media/characters/nines/back.svg",
  42997. extra: 1748/1615,
  42998. bottom: 20/1768
  42999. }
  43000. },
  43001. },
  43002. [
  43003. {
  43004. name: "Megamacro",
  43005. height: math.unit(99, "km"),
  43006. default: true
  43007. },
  43008. ]
  43009. ))
  43010. characterMakers.push(() => makeCharacter(
  43011. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  43012. {
  43013. front: {
  43014. height: math.unit(5 + 10/12, "feet"),
  43015. weight: math.unit(210, "lb"),
  43016. name: "Front",
  43017. image: {
  43018. source: "./media/characters/zenith/front.svg",
  43019. extra: 1531/1452,
  43020. bottom: 198/1729
  43021. }
  43022. },
  43023. back: {
  43024. height: math.unit(5 + 10/12, "feet"),
  43025. weight: math.unit(210, "lb"),
  43026. name: "Back",
  43027. image: {
  43028. source: "./media/characters/zenith/back.svg",
  43029. extra: 1571/1487,
  43030. bottom: 75/1646
  43031. }
  43032. },
  43033. },
  43034. [
  43035. {
  43036. name: "Normal",
  43037. height: math.unit(5 + 10/12, "feet"),
  43038. default: true
  43039. }
  43040. ]
  43041. ))
  43042. characterMakers.push(() => makeCharacter(
  43043. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  43044. {
  43045. front: {
  43046. height: math.unit(4, "feet"),
  43047. weight: math.unit(60, "lb"),
  43048. name: "Front",
  43049. image: {
  43050. source: "./media/characters/jasper/front.svg",
  43051. extra: 1450/1379,
  43052. bottom: 19/1469
  43053. }
  43054. },
  43055. },
  43056. [
  43057. {
  43058. name: "Normal",
  43059. height: math.unit(4, "feet"),
  43060. default: true
  43061. },
  43062. ]
  43063. ))
  43064. characterMakers.push(() => makeCharacter(
  43065. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  43066. {
  43067. front: {
  43068. height: math.unit(6 + 5/12, "feet"),
  43069. weight: math.unit(290, "lb"),
  43070. name: "Front",
  43071. image: {
  43072. source: "./media/characters/tiberius-thyben/front.svg",
  43073. extra: 757/739,
  43074. bottom: 39/796
  43075. }
  43076. },
  43077. },
  43078. [
  43079. {
  43080. name: "Micro",
  43081. height: math.unit(1.5, "inches")
  43082. },
  43083. {
  43084. name: "Normal",
  43085. height: math.unit(6 + 5/12, "feet"),
  43086. default: true
  43087. },
  43088. {
  43089. name: "Macro",
  43090. height: math.unit(300, "feet")
  43091. },
  43092. ]
  43093. ))
  43094. characterMakers.push(() => makeCharacter(
  43095. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  43096. {
  43097. front: {
  43098. height: math.unit(5 + 6/12, "feet"),
  43099. weight: math.unit(60, "kg"),
  43100. name: "Front",
  43101. image: {
  43102. source: "./media/characters/sabre/front.svg",
  43103. extra: 738/671,
  43104. bottom: 27/765
  43105. }
  43106. },
  43107. },
  43108. [
  43109. {
  43110. name: "Teeny",
  43111. height: math.unit(2, "inches")
  43112. },
  43113. {
  43114. name: "Smol",
  43115. height: math.unit(8, "inches")
  43116. },
  43117. {
  43118. name: "Normal",
  43119. height: math.unit(5 + 6/12, "feet"),
  43120. default: true
  43121. },
  43122. {
  43123. name: "Mini-Macro",
  43124. height: math.unit(15, "feet")
  43125. },
  43126. {
  43127. name: "Macro",
  43128. height: math.unit(50, "feet")
  43129. },
  43130. ]
  43131. ))
  43132. characterMakers.push(() => makeCharacter(
  43133. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  43134. {
  43135. front: {
  43136. height: math.unit(6 + 4/12, "feet"),
  43137. weight: math.unit(170, "lb"),
  43138. name: "Front",
  43139. image: {
  43140. source: "./media/characters/charlie/front.svg",
  43141. extra: 1348/1228,
  43142. bottom: 15/1363
  43143. }
  43144. },
  43145. },
  43146. [
  43147. {
  43148. name: "Macro",
  43149. height: math.unit(1700, "meters"),
  43150. default: true
  43151. },
  43152. {
  43153. name: "MegaMacro",
  43154. height: math.unit(20400, "meters")
  43155. },
  43156. ]
  43157. ))
  43158. characterMakers.push(() => makeCharacter(
  43159. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  43160. {
  43161. front: {
  43162. height: math.unit(6 + 3/12, "feet"),
  43163. weight: math.unit(185, "lb"),
  43164. name: "Front",
  43165. image: {
  43166. source: "./media/characters/susan-grant/front.svg",
  43167. extra: 1351/1327,
  43168. bottom: 26/1377
  43169. }
  43170. },
  43171. },
  43172. [
  43173. {
  43174. name: "Normal",
  43175. height: math.unit(6 + 3/12, "feet"),
  43176. default: true
  43177. },
  43178. {
  43179. name: "Macro",
  43180. height: math.unit(225, "feet")
  43181. },
  43182. {
  43183. name: "Macro+",
  43184. height: math.unit(900, "feet")
  43185. },
  43186. {
  43187. name: "MegaMacro",
  43188. height: math.unit(14400, "feet")
  43189. },
  43190. ]
  43191. ))
  43192. characterMakers.push(() => makeCharacter(
  43193. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  43194. {
  43195. front: {
  43196. height: math.unit(5 + 4/12, "feet"),
  43197. weight: math.unit(110, "lb"),
  43198. name: "Front",
  43199. image: {
  43200. source: "./media/characters/axel-isanov/front.svg",
  43201. extra: 1096/1065,
  43202. bottom: 13/1109
  43203. }
  43204. },
  43205. },
  43206. [
  43207. {
  43208. name: "Normal",
  43209. height: math.unit(5 + 4/12, "feet"),
  43210. default: true
  43211. },
  43212. ]
  43213. ))
  43214. characterMakers.push(() => makeCharacter(
  43215. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  43216. {
  43217. front: {
  43218. height: math.unit(9, "feet"),
  43219. weight: math.unit(467, "lb"),
  43220. name: "Front",
  43221. image: {
  43222. source: "./media/characters/necahual/front.svg",
  43223. extra: 920/873,
  43224. bottom: 26/946
  43225. }
  43226. },
  43227. back: {
  43228. height: math.unit(9, "feet"),
  43229. weight: math.unit(467, "lb"),
  43230. name: "Back",
  43231. image: {
  43232. source: "./media/characters/necahual/back.svg",
  43233. extra: 930/884,
  43234. bottom: 16/946
  43235. }
  43236. },
  43237. frontUnderwear: {
  43238. height: math.unit(9, "feet"),
  43239. weight: math.unit(467, "lb"),
  43240. name: "Front (Underwear)",
  43241. image: {
  43242. source: "./media/characters/necahual/front-underwear.svg",
  43243. extra: 920/873,
  43244. bottom: 26/946
  43245. }
  43246. },
  43247. frontDressed: {
  43248. height: math.unit(9, "feet"),
  43249. weight: math.unit(467, "lb"),
  43250. name: "Front (Dressed)",
  43251. image: {
  43252. source: "./media/characters/necahual/front-dressed.svg",
  43253. extra: 920/873,
  43254. bottom: 26/946
  43255. }
  43256. },
  43257. },
  43258. [
  43259. {
  43260. name: "Comprsesed",
  43261. height: math.unit(9, "feet")
  43262. },
  43263. {
  43264. name: "Natural",
  43265. height: math.unit(15, "feet"),
  43266. default: true
  43267. },
  43268. {
  43269. name: "Boosted",
  43270. height: math.unit(50, "feet")
  43271. },
  43272. {
  43273. name: "Boosted+",
  43274. height: math.unit(150, "feet")
  43275. },
  43276. {
  43277. name: "Max",
  43278. height: math.unit(500, "feet")
  43279. },
  43280. ]
  43281. ))
  43282. characterMakers.push(() => makeCharacter(
  43283. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  43284. {
  43285. front: {
  43286. height: math.unit(22 + 1/12, "feet"),
  43287. weight: math.unit(3200, "lb"),
  43288. name: "Front",
  43289. image: {
  43290. source: "./media/characters/theo-acacia/front.svg",
  43291. extra: 1796/1741,
  43292. bottom: 83/1879
  43293. }
  43294. },
  43295. frontUnderwear: {
  43296. height: math.unit(22 + 1/12, "feet"),
  43297. weight: math.unit(3200, "lb"),
  43298. name: "Front (Underwear)",
  43299. image: {
  43300. source: "./media/characters/theo-acacia/front-underwear.svg",
  43301. extra: 1796/1741,
  43302. bottom: 83/1879
  43303. }
  43304. },
  43305. frontNude: {
  43306. height: math.unit(22 + 1/12, "feet"),
  43307. weight: math.unit(3200, "lb"),
  43308. name: "Front (Nude)",
  43309. image: {
  43310. source: "./media/characters/theo-acacia/front-nude.svg",
  43311. extra: 1796/1741,
  43312. bottom: 83/1879
  43313. }
  43314. },
  43315. },
  43316. [
  43317. {
  43318. name: "Normal",
  43319. height: math.unit(22 + 1/12, "feet"),
  43320. default: true
  43321. },
  43322. ]
  43323. ))
  43324. characterMakers.push(() => makeCharacter(
  43325. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43326. {
  43327. front: {
  43328. height: math.unit(20, "feet"),
  43329. name: "Front",
  43330. image: {
  43331. source: "./media/characters/astra/front.svg",
  43332. extra: 1850/1714,
  43333. bottom: 106/1956
  43334. }
  43335. },
  43336. frontUndressed: {
  43337. height: math.unit(20, "feet"),
  43338. name: "Front (Undressed)",
  43339. image: {
  43340. source: "./media/characters/astra/front-undressed.svg",
  43341. extra: 1926/1749,
  43342. bottom: 0/1926
  43343. }
  43344. },
  43345. hand: {
  43346. height: math.unit(1.53, "feet"),
  43347. name: "Hand",
  43348. image: {
  43349. source: "./media/characters/astra/hand.svg"
  43350. }
  43351. },
  43352. paw: {
  43353. height: math.unit(1.53, "feet"),
  43354. name: "Paw",
  43355. image: {
  43356. source: "./media/characters/astra/paw.svg"
  43357. }
  43358. },
  43359. },
  43360. [
  43361. {
  43362. name: "Smallest",
  43363. height: math.unit(20, "feet")
  43364. },
  43365. {
  43366. name: "Normal",
  43367. height: math.unit(1e9, "miles"),
  43368. default: true
  43369. },
  43370. {
  43371. name: "Larger",
  43372. height: math.unit(5, "multiverses")
  43373. },
  43374. {
  43375. name: "Largest",
  43376. height: math.unit(1e9, "multiverses")
  43377. },
  43378. ]
  43379. ))
  43380. characterMakers.push(() => makeCharacter(
  43381. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43382. {
  43383. front: {
  43384. height: math.unit(8, "feet"),
  43385. name: "Front",
  43386. image: {
  43387. source: "./media/characters/breanna/front.svg",
  43388. extra: 1912/1632,
  43389. bottom: 33/1945
  43390. }
  43391. },
  43392. },
  43393. [
  43394. {
  43395. name: "Smallest",
  43396. height: math.unit(8, "feet")
  43397. },
  43398. {
  43399. name: "Normal",
  43400. height: math.unit(1, "mile"),
  43401. default: true
  43402. },
  43403. {
  43404. name: "Maximum",
  43405. height: math.unit(1500000000000, "lightyears")
  43406. },
  43407. ]
  43408. ))
  43409. characterMakers.push(() => makeCharacter(
  43410. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  43411. {
  43412. front: {
  43413. height: math.unit(5 + 11/12, "feet"),
  43414. weight: math.unit(155, "lb"),
  43415. name: "Front",
  43416. image: {
  43417. source: "./media/characters/cai/front.svg",
  43418. extra: 1823/1702,
  43419. bottom: 32/1855
  43420. }
  43421. },
  43422. back: {
  43423. height: math.unit(5 + 11/12, "feet"),
  43424. weight: math.unit(155, "lb"),
  43425. name: "Back",
  43426. image: {
  43427. source: "./media/characters/cai/back.svg",
  43428. extra: 1809/1708,
  43429. bottom: 31/1840
  43430. }
  43431. },
  43432. },
  43433. [
  43434. {
  43435. name: "Normal",
  43436. height: math.unit(5 + 11/12, "feet"),
  43437. default: true
  43438. },
  43439. {
  43440. name: "Big",
  43441. height: math.unit(15, "feet")
  43442. },
  43443. {
  43444. name: "Macro",
  43445. height: math.unit(200, "feet")
  43446. },
  43447. ]
  43448. ))
  43449. characterMakers.push(() => makeCharacter(
  43450. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  43451. {
  43452. front: {
  43453. height: math.unit(5 + 6/12, "feet"),
  43454. weight: math.unit(160, "lb"),
  43455. name: "Front",
  43456. image: {
  43457. source: "./media/characters/zanna-virtuedòttir/front.svg",
  43458. extra: 1227/1174,
  43459. bottom: 37/1264
  43460. }
  43461. },
  43462. },
  43463. [
  43464. {
  43465. name: "Macro",
  43466. height: math.unit(444, "meters"),
  43467. default: true
  43468. },
  43469. ]
  43470. ))
  43471. characterMakers.push(() => makeCharacter(
  43472. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  43473. {
  43474. front: {
  43475. height: math.unit(18 + 7/12, "feet"),
  43476. name: "Front",
  43477. image: {
  43478. source: "./media/characters/rex/front.svg",
  43479. extra: 1941/1807,
  43480. bottom: 66/2007
  43481. }
  43482. },
  43483. back: {
  43484. height: math.unit(18 + 7/12, "feet"),
  43485. name: "Back",
  43486. image: {
  43487. source: "./media/characters/rex/back.svg",
  43488. extra: 1937/1822,
  43489. bottom: 42/1979
  43490. }
  43491. },
  43492. boot: {
  43493. height: math.unit(3.45, "feet"),
  43494. name: "Boot",
  43495. image: {
  43496. source: "./media/characters/rex/boot.svg"
  43497. }
  43498. },
  43499. paw: {
  43500. height: math.unit(4.17, "feet"),
  43501. name: "Paw",
  43502. image: {
  43503. source: "./media/characters/rex/paw.svg"
  43504. }
  43505. },
  43506. head: {
  43507. height: math.unit(6.728, "feet"),
  43508. name: "Head",
  43509. image: {
  43510. source: "./media/characters/rex/head.svg"
  43511. }
  43512. },
  43513. },
  43514. [
  43515. {
  43516. name: "Nano",
  43517. height: math.unit(18 + 7/12, "feet")
  43518. },
  43519. {
  43520. name: "Micro",
  43521. height: math.unit(1.5, "megameters")
  43522. },
  43523. {
  43524. name: "Normal",
  43525. height: math.unit(440, "megameters"),
  43526. default: true
  43527. },
  43528. {
  43529. name: "Macro",
  43530. height: math.unit(2.5, "gigameters")
  43531. },
  43532. {
  43533. name: "Gigamacro",
  43534. height: math.unit(2, "galaxies")
  43535. },
  43536. ]
  43537. ))
  43538. characterMakers.push(() => makeCharacter(
  43539. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  43540. {
  43541. side: {
  43542. height: math.unit(32, "feet"),
  43543. weight: math.unit(250000, "lb"),
  43544. name: "Side",
  43545. image: {
  43546. source: "./media/characters/silverwing/side.svg",
  43547. extra: 1100/1019,
  43548. bottom: 204/1304
  43549. }
  43550. },
  43551. },
  43552. [
  43553. {
  43554. name: "Normal",
  43555. height: math.unit(32, "feet"),
  43556. default: true
  43557. },
  43558. ]
  43559. ))
  43560. characterMakers.push(() => makeCharacter(
  43561. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  43562. {
  43563. front: {
  43564. height: math.unit(6 + 6/12, "feet"),
  43565. weight: math.unit(350, "lb"),
  43566. name: "Front",
  43567. image: {
  43568. source: "./media/characters/tristan-hawthorne/front.svg",
  43569. extra: 1159/1124,
  43570. bottom: 37/1196
  43571. },
  43572. form: "labrador",
  43573. default: true
  43574. },
  43575. skunkFront: {
  43576. height: math.unit(4 + 6/12, "feet"),
  43577. weight: math.unit(120, "lb"),
  43578. name: "Front",
  43579. image: {
  43580. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  43581. extra: 1609/1551,
  43582. bottom: 169/1778
  43583. },
  43584. form: "skunk",
  43585. default: true
  43586. },
  43587. },
  43588. [
  43589. {
  43590. name: "Normal",
  43591. height: math.unit(6 + 6/12, "feet"),
  43592. form: "labrador",
  43593. default: true
  43594. },
  43595. {
  43596. name: "Normal",
  43597. height: math.unit(4 + 6/12, "feet"),
  43598. form: "skunk",
  43599. default: true
  43600. },
  43601. ],
  43602. {
  43603. "labrador": {
  43604. name: "Labrador",
  43605. default: true
  43606. },
  43607. "skunk": {
  43608. name: "Skunk"
  43609. }
  43610. }
  43611. ))
  43612. characterMakers.push(() => makeCharacter(
  43613. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  43614. {
  43615. front: {
  43616. height: math.unit(5 + 11/12, "feet"),
  43617. weight: math.unit(190, "lb"),
  43618. name: "Front",
  43619. image: {
  43620. source: "./media/characters/mizu/front.svg",
  43621. extra: 1988/1788,
  43622. bottom: 14/2002
  43623. }
  43624. },
  43625. },
  43626. [
  43627. {
  43628. name: "Normal",
  43629. height: math.unit(5 + 11/12, "feet"),
  43630. default: true
  43631. },
  43632. ]
  43633. ))
  43634. characterMakers.push(() => makeCharacter(
  43635. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  43636. {
  43637. front: {
  43638. height: math.unit(1.7, "feet"),
  43639. weight: math.unit(50, "lb"),
  43640. name: "Front",
  43641. image: {
  43642. source: "./media/characters/dechroma/front.svg",
  43643. extra: 1095/859,
  43644. bottom: 64/1159
  43645. }
  43646. },
  43647. },
  43648. [
  43649. {
  43650. name: "Normal",
  43651. height: math.unit(1.7, "feet"),
  43652. default: true
  43653. },
  43654. ]
  43655. ))
  43656. characterMakers.push(() => makeCharacter(
  43657. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  43658. {
  43659. side: {
  43660. height: math.unit(30, "feet"),
  43661. name: "Side",
  43662. image: {
  43663. source: "./media/characters/veluren-thanazel/side.svg",
  43664. extra: 1611/633,
  43665. bottom: 118/1729
  43666. }
  43667. },
  43668. front: {
  43669. height: math.unit(30, "feet"),
  43670. name: "Front",
  43671. image: {
  43672. source: "./media/characters/veluren-thanazel/front.svg",
  43673. extra: 1486/636,
  43674. bottom: 238/1724
  43675. }
  43676. },
  43677. head: {
  43678. height: math.unit(21.4, "feet"),
  43679. name: "Head",
  43680. image: {
  43681. source: "./media/characters/veluren-thanazel/head.svg"
  43682. }
  43683. },
  43684. genitals: {
  43685. height: math.unit(19.4, "feet"),
  43686. name: "Genitals",
  43687. image: {
  43688. source: "./media/characters/veluren-thanazel/genitals.svg"
  43689. }
  43690. },
  43691. },
  43692. [
  43693. {
  43694. name: "Social",
  43695. height: math.unit(6, "feet")
  43696. },
  43697. {
  43698. name: "Play",
  43699. height: math.unit(12, "feet")
  43700. },
  43701. {
  43702. name: "True",
  43703. height: math.unit(30, "feet"),
  43704. default: true
  43705. },
  43706. ]
  43707. ))
  43708. characterMakers.push(() => makeCharacter(
  43709. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  43710. {
  43711. front: {
  43712. height: math.unit(7 + 6/12, "feet"),
  43713. weight: math.unit(500, "kg"),
  43714. name: "Front",
  43715. image: {
  43716. source: "./media/characters/arcturas/front.svg",
  43717. extra: 1700/1500,
  43718. bottom: 145/1845
  43719. }
  43720. },
  43721. },
  43722. [
  43723. {
  43724. name: "Normal",
  43725. height: math.unit(7 + 6/12, "feet"),
  43726. default: true
  43727. },
  43728. ]
  43729. ))
  43730. characterMakers.push(() => makeCharacter(
  43731. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  43732. {
  43733. side: {
  43734. height: math.unit(6, "feet"),
  43735. weight: math.unit(2, "tons"),
  43736. name: "Side",
  43737. image: {
  43738. source: "./media/characters/vitaen/side.svg",
  43739. extra: 1157/617,
  43740. bottom: 122/1279
  43741. }
  43742. },
  43743. },
  43744. [
  43745. {
  43746. name: "Normal",
  43747. height: math.unit(6, "feet"),
  43748. default: true
  43749. },
  43750. ]
  43751. ))
  43752. characterMakers.push(() => makeCharacter(
  43753. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  43754. {
  43755. front: {
  43756. height: math.unit(19, "feet"),
  43757. name: "Front",
  43758. image: {
  43759. source: "./media/characters/fia-dreamweaver/front.svg",
  43760. extra: 1630/1504,
  43761. bottom: 25/1655
  43762. }
  43763. },
  43764. },
  43765. [
  43766. {
  43767. name: "Normal",
  43768. height: math.unit(19, "feet"),
  43769. default: true
  43770. },
  43771. ]
  43772. ))
  43773. characterMakers.push(() => makeCharacter(
  43774. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  43775. {
  43776. front: {
  43777. height: math.unit(5 + 4/12, "feet"),
  43778. name: "Front",
  43779. image: {
  43780. source: "./media/characters/artan/front.svg",
  43781. extra: 1618/1535,
  43782. bottom: 46/1664
  43783. }
  43784. },
  43785. back: {
  43786. height: math.unit(5 + 4/12, "feet"),
  43787. name: "Back",
  43788. image: {
  43789. source: "./media/characters/artan/back.svg",
  43790. extra: 1618/1543,
  43791. bottom: 31/1649
  43792. }
  43793. },
  43794. },
  43795. [
  43796. {
  43797. name: "Normal",
  43798. height: math.unit(5 + 4/12, "feet"),
  43799. default: true
  43800. },
  43801. ]
  43802. ))
  43803. characterMakers.push(() => makeCharacter(
  43804. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  43805. {
  43806. side: {
  43807. height: math.unit(182, "cm"),
  43808. weight: math.unit(1000, "lb"),
  43809. name: "Side",
  43810. image: {
  43811. source: "./media/characters/silver-dragon/side.svg",
  43812. extra: 710/287,
  43813. bottom: 88/798
  43814. }
  43815. },
  43816. },
  43817. [
  43818. {
  43819. name: "Normal",
  43820. height: math.unit(182, "cm"),
  43821. default: true
  43822. },
  43823. ]
  43824. ))
  43825. characterMakers.push(() => makeCharacter(
  43826. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  43827. {
  43828. side: {
  43829. height: math.unit(6 + 6/12, "feet"),
  43830. weight: math.unit(1.5, "tons"),
  43831. name: "Side",
  43832. image: {
  43833. source: "./media/characters/zephyr/side.svg",
  43834. extra: 1433/586,
  43835. bottom: 109/1542
  43836. }
  43837. },
  43838. },
  43839. [
  43840. {
  43841. name: "Normal",
  43842. height: math.unit(6 + 6/12, "feet"),
  43843. default: true
  43844. },
  43845. ]
  43846. ))
  43847. characterMakers.push(() => makeCharacter(
  43848. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  43849. {
  43850. side: {
  43851. height: math.unit(1, "feet"),
  43852. name: "Side",
  43853. image: {
  43854. source: "./media/characters/vixye/side.svg",
  43855. extra: 632/541,
  43856. bottom: 0/632
  43857. }
  43858. },
  43859. },
  43860. [
  43861. {
  43862. name: "Normal",
  43863. height: math.unit(1, "feet"),
  43864. default: true
  43865. },
  43866. {
  43867. name: "True",
  43868. height: math.unit(1e15, "multiverses")
  43869. },
  43870. ]
  43871. ))
  43872. characterMakers.push(() => makeCharacter(
  43873. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  43874. {
  43875. front: {
  43876. height: math.unit(8 + 2/12, "feet"),
  43877. weight: math.unit(650, "lb"),
  43878. name: "Front",
  43879. image: {
  43880. source: "./media/characters/darla-mac-lochlainn/front.svg",
  43881. extra: 1174/1137,
  43882. bottom: 82/1256
  43883. }
  43884. },
  43885. back: {
  43886. height: math.unit(8 + 2/12, "feet"),
  43887. weight: math.unit(650, "lb"),
  43888. name: "Back",
  43889. image: {
  43890. source: "./media/characters/darla-mac-lochlainn/back.svg",
  43891. extra: 1204/1157,
  43892. bottom: 46/1250
  43893. }
  43894. },
  43895. },
  43896. [
  43897. {
  43898. name: "Wildform",
  43899. height: math.unit(8 + 2/12, "feet"),
  43900. default: true
  43901. },
  43902. ]
  43903. ))
  43904. characterMakers.push(() => makeCharacter(
  43905. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  43906. {
  43907. front: {
  43908. height: math.unit(18, "feet"),
  43909. name: "Front",
  43910. image: {
  43911. source: "./media/characters/cyphin/front.svg",
  43912. extra: 970/886,
  43913. bottom: 42/1012
  43914. }
  43915. },
  43916. back: {
  43917. height: math.unit(18, "feet"),
  43918. name: "Back",
  43919. image: {
  43920. source: "./media/characters/cyphin/back.svg",
  43921. extra: 1009/894,
  43922. bottom: 24/1033
  43923. }
  43924. },
  43925. head: {
  43926. height: math.unit(5.05, "feet"),
  43927. name: "Head",
  43928. image: {
  43929. source: "./media/characters/cyphin/head.svg"
  43930. }
  43931. },
  43932. tailbud: {
  43933. height: math.unit(5, "feet"),
  43934. name: "Tailbud",
  43935. image: {
  43936. source: "./media/characters/cyphin/tailbud.svg"
  43937. }
  43938. },
  43939. },
  43940. [
  43941. ]
  43942. ))
  43943. characterMakers.push(() => makeCharacter(
  43944. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  43945. {
  43946. side: {
  43947. height: math.unit(10, "feet"),
  43948. weight: math.unit(6, "tons"),
  43949. name: "Side",
  43950. image: {
  43951. source: "./media/characters/raijin/side.svg",
  43952. extra: 1529/613,
  43953. bottom: 337/1866
  43954. }
  43955. },
  43956. },
  43957. [
  43958. {
  43959. name: "Normal",
  43960. height: math.unit(10, "feet"),
  43961. default: true
  43962. },
  43963. ]
  43964. ))
  43965. characterMakers.push(() => makeCharacter(
  43966. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  43967. {
  43968. side: {
  43969. height: math.unit(9, "feet"),
  43970. name: "Side",
  43971. image: {
  43972. source: "./media/characters/nilghais/side.svg",
  43973. extra: 1047/744,
  43974. bottom: 91/1138
  43975. }
  43976. },
  43977. head: {
  43978. height: math.unit(3.14, "feet"),
  43979. name: "Head",
  43980. image: {
  43981. source: "./media/characters/nilghais/head.svg"
  43982. }
  43983. },
  43984. mouth: {
  43985. height: math.unit(4.6, "feet"),
  43986. name: "Mouth",
  43987. image: {
  43988. source: "./media/characters/nilghais/mouth.svg"
  43989. }
  43990. },
  43991. wings: {
  43992. height: math.unit(24, "feet"),
  43993. name: "Wings",
  43994. image: {
  43995. source: "./media/characters/nilghais/wings.svg"
  43996. }
  43997. },
  43998. ass: {
  43999. height: math.unit(6.12, "feet"),
  44000. name: "Ass",
  44001. image: {
  44002. source: "./media/characters/nilghais/ass.svg"
  44003. }
  44004. },
  44005. },
  44006. [
  44007. {
  44008. name: "Normal",
  44009. height: math.unit(9, "feet"),
  44010. default: true
  44011. },
  44012. ]
  44013. ))
  44014. characterMakers.push(() => makeCharacter(
  44015. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  44016. {
  44017. regular: {
  44018. height: math.unit(16 + 2/12, "feet"),
  44019. weight: math.unit(2300, "lb"),
  44020. name: "Regular",
  44021. image: {
  44022. source: "./media/characters/zolgar/regular.svg",
  44023. extra: 1246/1004,
  44024. bottom: 124/1370
  44025. }
  44026. },
  44027. boxers: {
  44028. height: math.unit(16 + 2/12, "feet"),
  44029. weight: math.unit(2300, "lb"),
  44030. name: "Boxers",
  44031. image: {
  44032. source: "./media/characters/zolgar/boxers.svg",
  44033. extra: 1246/1004,
  44034. bottom: 124/1370
  44035. }
  44036. },
  44037. armored: {
  44038. height: math.unit(16 + 2/12, "feet"),
  44039. weight: math.unit(2300, "lb"),
  44040. name: "Armored",
  44041. image: {
  44042. source: "./media/characters/zolgar/armored.svg",
  44043. extra: 1246/1004,
  44044. bottom: 124/1370
  44045. }
  44046. },
  44047. goth: {
  44048. height: math.unit(16 + 2/12, "feet"),
  44049. weight: math.unit(2300, "lb"),
  44050. name: "Goth",
  44051. image: {
  44052. source: "./media/characters/zolgar/goth.svg",
  44053. extra: 1246/1004,
  44054. bottom: 124/1370
  44055. }
  44056. },
  44057. },
  44058. [
  44059. {
  44060. name: "Shrunken Down",
  44061. height: math.unit(9 + 2/12, "feet")
  44062. },
  44063. {
  44064. name: "Normal",
  44065. height: math.unit(16 + 2/12, "feet"),
  44066. default: true
  44067. },
  44068. ]
  44069. ))
  44070. characterMakers.push(() => makeCharacter(
  44071. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  44072. {
  44073. front: {
  44074. height: math.unit(6, "feet"),
  44075. weight: math.unit(168, "lb"),
  44076. name: "Front",
  44077. image: {
  44078. source: "./media/characters/luca/front.svg",
  44079. extra: 841/667,
  44080. bottom: 102/943
  44081. }
  44082. },
  44083. },
  44084. [
  44085. {
  44086. name: "Normal",
  44087. height: math.unit(6, "feet"),
  44088. default: true
  44089. },
  44090. ]
  44091. ))
  44092. characterMakers.push(() => makeCharacter(
  44093. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  44094. {
  44095. side: {
  44096. height: math.unit(7 + 3/12, "feet"),
  44097. weight: math.unit(312, "lb"),
  44098. name: "Side",
  44099. image: {
  44100. source: "./media/characters/zezo/side.svg",
  44101. extra: 1192/1067,
  44102. bottom: 63/1255
  44103. }
  44104. },
  44105. },
  44106. [
  44107. {
  44108. name: "Normal",
  44109. height: math.unit(7 + 3/12, "feet"),
  44110. default: true
  44111. },
  44112. ]
  44113. ))
  44114. characterMakers.push(() => makeCharacter(
  44115. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  44116. {
  44117. front: {
  44118. height: math.unit(5 + 5/12, "feet"),
  44119. weight: math.unit(170, "lb"),
  44120. name: "Front",
  44121. image: {
  44122. source: "./media/characters/mayso/front.svg",
  44123. extra: 1215/1108,
  44124. bottom: 16/1231
  44125. }
  44126. },
  44127. },
  44128. [
  44129. {
  44130. name: "Normal",
  44131. height: math.unit(5 + 5/12, "feet"),
  44132. default: true
  44133. },
  44134. ]
  44135. ))
  44136. characterMakers.push(() => makeCharacter(
  44137. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  44138. {
  44139. front: {
  44140. height: math.unit(4 + 3/12, "feet"),
  44141. weight: math.unit(80, "lb"),
  44142. name: "Front",
  44143. image: {
  44144. source: "./media/characters/hess/front.svg",
  44145. extra: 1200/1123,
  44146. bottom: 16/1216
  44147. }
  44148. },
  44149. },
  44150. [
  44151. {
  44152. name: "Normal",
  44153. height: math.unit(4 + 3/12, "feet"),
  44154. default: true
  44155. },
  44156. ]
  44157. ))
  44158. characterMakers.push(() => makeCharacter(
  44159. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  44160. {
  44161. front: {
  44162. height: math.unit(1.9, "meters"),
  44163. name: "Front",
  44164. image: {
  44165. source: "./media/characters/ashgar/front.svg",
  44166. extra: 1177/1146,
  44167. bottom: 99/1276
  44168. }
  44169. },
  44170. back: {
  44171. height: math.unit(1.9, "meters"),
  44172. name: "Back",
  44173. image: {
  44174. source: "./media/characters/ashgar/back.svg",
  44175. extra: 1201/1183,
  44176. bottom: 53/1254
  44177. }
  44178. },
  44179. feral: {
  44180. height: math.unit(1.4, "meters"),
  44181. name: "Feral",
  44182. image: {
  44183. source: "./media/characters/ashgar/feral.svg",
  44184. extra: 370/345,
  44185. bottom: 45/415
  44186. }
  44187. },
  44188. },
  44189. [
  44190. {
  44191. name: "Normal",
  44192. height: math.unit(1.9, "meters"),
  44193. default: true
  44194. },
  44195. ]
  44196. ))
  44197. characterMakers.push(() => makeCharacter(
  44198. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  44199. {
  44200. regular: {
  44201. height: math.unit(6, "feet"),
  44202. weight: math.unit(220, "lb"),
  44203. name: "Regular",
  44204. image: {
  44205. source: "./media/characters/phillip/regular.svg",
  44206. extra: 1373/1277,
  44207. bottom: 75/1448
  44208. }
  44209. },
  44210. dressed: {
  44211. height: math.unit(6, "feet"),
  44212. weight: math.unit(220, "lb"),
  44213. name: "Dressed",
  44214. image: {
  44215. source: "./media/characters/phillip/dressed.svg",
  44216. extra: 1373/1277,
  44217. bottom: 75/1448
  44218. }
  44219. },
  44220. paw: {
  44221. height: math.unit(1.44, "feet"),
  44222. name: "Paw",
  44223. image: {
  44224. source: "./media/characters/phillip/paw.svg"
  44225. }
  44226. },
  44227. },
  44228. [
  44229. {
  44230. name: "Normal",
  44231. height: math.unit(6, "feet"),
  44232. default: true
  44233. },
  44234. ]
  44235. ))
  44236. characterMakers.push(() => makeCharacter(
  44237. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  44238. {
  44239. side: {
  44240. height: math.unit(42, "feet"),
  44241. name: "Side",
  44242. image: {
  44243. source: "./media/characters/uvula/side.svg",
  44244. extra: 683/586,
  44245. bottom: 60/743
  44246. }
  44247. },
  44248. front: {
  44249. height: math.unit(42, "feet"),
  44250. name: "Front",
  44251. image: {
  44252. source: "./media/characters/uvula/front.svg",
  44253. extra: 705/613,
  44254. bottom: 54/759
  44255. }
  44256. },
  44257. maw: {
  44258. height: math.unit(23.5, "feet"),
  44259. name: "Maw",
  44260. image: {
  44261. source: "./media/characters/uvula/maw.svg"
  44262. }
  44263. },
  44264. },
  44265. [
  44266. {
  44267. name: "Original Size",
  44268. height: math.unit(14, "inches")
  44269. },
  44270. {
  44271. name: "Human Size",
  44272. height: math.unit(6, "feet")
  44273. },
  44274. {
  44275. name: "Big",
  44276. height: math.unit(42, "feet"),
  44277. default: true
  44278. },
  44279. {
  44280. name: "Bigger",
  44281. height: math.unit(100, "feet")
  44282. },
  44283. ]
  44284. ))
  44285. characterMakers.push(() => makeCharacter(
  44286. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  44287. {
  44288. front: {
  44289. height: math.unit(5 + 11/12, "feet"),
  44290. name: "Front",
  44291. image: {
  44292. source: "./media/characters/lannah/front.svg",
  44293. extra: 1208/1113,
  44294. bottom: 97/1305
  44295. }
  44296. },
  44297. },
  44298. [
  44299. {
  44300. name: "Normal",
  44301. height: math.unit(5 + 11/12, "feet"),
  44302. default: true
  44303. },
  44304. ]
  44305. ))
  44306. characterMakers.push(() => makeCharacter(
  44307. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  44308. {
  44309. front: {
  44310. height: math.unit(6 + 3/12, "feet"),
  44311. weight: math.unit(3.5, "tons"),
  44312. name: "Front",
  44313. image: {
  44314. source: "./media/characters/emberflame/front.svg",
  44315. extra: 1198/672,
  44316. bottom: 82/1280
  44317. }
  44318. },
  44319. side: {
  44320. height: math.unit(6 + 3/12, "feet"),
  44321. weight: math.unit(3.5, "tons"),
  44322. name: "Side",
  44323. image: {
  44324. source: "./media/characters/emberflame/side.svg",
  44325. extra: 938/527,
  44326. bottom: 56/994
  44327. }
  44328. },
  44329. },
  44330. [
  44331. {
  44332. name: "Normal",
  44333. height: math.unit(6 + 3/12, "feet"),
  44334. default: true
  44335. },
  44336. ]
  44337. ))
  44338. characterMakers.push(() => makeCharacter(
  44339. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  44340. {
  44341. side: {
  44342. height: math.unit(17.5, "feet"),
  44343. weight: math.unit(35, "tons"),
  44344. name: "Side",
  44345. image: {
  44346. source: "./media/characters/sophie-ambrose/side.svg",
  44347. extra: 1573/1242,
  44348. bottom: 71/1644
  44349. }
  44350. },
  44351. maw: {
  44352. height: math.unit(7.4, "feet"),
  44353. name: "Maw",
  44354. image: {
  44355. source: "./media/characters/sophie-ambrose/maw.svg"
  44356. }
  44357. },
  44358. },
  44359. [
  44360. {
  44361. name: "Normal",
  44362. height: math.unit(17.5, "feet"),
  44363. default: true
  44364. },
  44365. ]
  44366. ))
  44367. characterMakers.push(() => makeCharacter(
  44368. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  44369. {
  44370. front: {
  44371. height: math.unit(280, "feet"),
  44372. weight: math.unit(550, "tons"),
  44373. name: "Front",
  44374. image: {
  44375. source: "./media/characters/king-mugi/front.svg",
  44376. extra: 1102/947,
  44377. bottom: 104/1206
  44378. }
  44379. },
  44380. },
  44381. [
  44382. {
  44383. name: "King Mugi",
  44384. height: math.unit(280, "feet"),
  44385. default: true
  44386. },
  44387. ]
  44388. ))
  44389. characterMakers.push(() => makeCharacter(
  44390. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  44391. {
  44392. front: {
  44393. height: math.unit(64, "meters"),
  44394. name: "Front",
  44395. image: {
  44396. source: "./media/characters/nova-fox/front.svg",
  44397. extra: 1310/1246,
  44398. bottom: 65/1375
  44399. }
  44400. },
  44401. },
  44402. [
  44403. {
  44404. name: "Macro",
  44405. height: math.unit(64, "meters"),
  44406. default: true
  44407. },
  44408. ]
  44409. ))
  44410. characterMakers.push(() => makeCharacter(
  44411. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  44412. {
  44413. front: {
  44414. height: math.unit(6 + 3/12, "feet"),
  44415. weight: math.unit(170, "lb"),
  44416. name: "Front",
  44417. image: {
  44418. source: "./media/characters/sam-bat/front.svg",
  44419. extra: 1601/1411,
  44420. bottom: 125/1726
  44421. }
  44422. },
  44423. back: {
  44424. height: math.unit(6 + 3/12, "feet"),
  44425. weight: math.unit(170, "lb"),
  44426. name: "Back",
  44427. image: {
  44428. source: "./media/characters/sam-bat/back.svg",
  44429. extra: 1577/1405,
  44430. bottom: 58/1635
  44431. }
  44432. },
  44433. },
  44434. [
  44435. {
  44436. name: "Normal",
  44437. height: math.unit(6 + 3/12, "feet"),
  44438. default: true
  44439. },
  44440. ]
  44441. ))
  44442. characterMakers.push(() => makeCharacter(
  44443. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  44444. {
  44445. front: {
  44446. height: math.unit(59, "feet"),
  44447. weight: math.unit(40000, "lb"),
  44448. name: "Front",
  44449. image: {
  44450. source: "./media/characters/inari/front.svg",
  44451. extra: 1884/1350,
  44452. bottom: 95/1979
  44453. }
  44454. },
  44455. },
  44456. [
  44457. {
  44458. name: "Gigantamax",
  44459. height: math.unit(59, "feet"),
  44460. default: true
  44461. },
  44462. ]
  44463. ))
  44464. characterMakers.push(() => makeCharacter(
  44465. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  44466. {
  44467. front: {
  44468. height: math.unit(5 + 8/12, "feet"),
  44469. name: "Front",
  44470. image: {
  44471. source: "./media/characters/elizabeth/front.svg",
  44472. extra: 1395/1298,
  44473. bottom: 54/1449
  44474. }
  44475. },
  44476. mouth: {
  44477. height: math.unit(1.97, "feet"),
  44478. name: "Mouth",
  44479. image: {
  44480. source: "./media/characters/elizabeth/mouth.svg"
  44481. }
  44482. },
  44483. foot: {
  44484. height: math.unit(1.17, "feet"),
  44485. name: "Foot",
  44486. image: {
  44487. source: "./media/characters/elizabeth/foot.svg"
  44488. }
  44489. },
  44490. },
  44491. [
  44492. {
  44493. name: "Normal",
  44494. height: math.unit(5 + 8/12, "feet"),
  44495. default: true
  44496. },
  44497. {
  44498. name: "Minimacro",
  44499. height: math.unit(18, "feet")
  44500. },
  44501. {
  44502. name: "Macro",
  44503. height: math.unit(180, "feet")
  44504. },
  44505. ]
  44506. ))
  44507. characterMakers.push(() => makeCharacter(
  44508. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  44509. {
  44510. front: {
  44511. height: math.unit(5 + 2/12, "feet"),
  44512. name: "Front",
  44513. image: {
  44514. source: "./media/characters/october-gossamer/front.svg",
  44515. extra: 505/454,
  44516. bottom: 7/512
  44517. }
  44518. },
  44519. back: {
  44520. height: math.unit(5 + 2/12, "feet"),
  44521. name: "Back",
  44522. image: {
  44523. source: "./media/characters/october-gossamer/back.svg",
  44524. extra: 501/454,
  44525. bottom: 11/512
  44526. }
  44527. },
  44528. },
  44529. [
  44530. {
  44531. name: "Normal",
  44532. height: math.unit(5 + 2/12, "feet"),
  44533. default: true
  44534. },
  44535. ]
  44536. ))
  44537. characterMakers.push(() => makeCharacter(
  44538. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  44539. {
  44540. front: {
  44541. height: math.unit(5, "feet"),
  44542. name: "Front",
  44543. image: {
  44544. source: "./media/characters/epiglottis/front.svg",
  44545. extra: 923/849,
  44546. bottom: 17/940
  44547. }
  44548. },
  44549. },
  44550. [
  44551. {
  44552. name: "Original Size",
  44553. height: math.unit(10, "inches")
  44554. },
  44555. {
  44556. name: "Human Size",
  44557. height: math.unit(5, "feet"),
  44558. default: true
  44559. },
  44560. {
  44561. name: "Big",
  44562. height: math.unit(25, "feet")
  44563. },
  44564. {
  44565. name: "Bigger",
  44566. height: math.unit(50, "feet")
  44567. },
  44568. {
  44569. name: "oh lawd",
  44570. height: math.unit(75, "feet")
  44571. },
  44572. ]
  44573. ))
  44574. characterMakers.push(() => makeCharacter(
  44575. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  44576. {
  44577. front: {
  44578. height: math.unit(2 + 4/12, "feet"),
  44579. weight: math.unit(60, "lb"),
  44580. name: "Front",
  44581. image: {
  44582. source: "./media/characters/lerm/front.svg",
  44583. extra: 796/790,
  44584. bottom: 79/875
  44585. }
  44586. },
  44587. },
  44588. [
  44589. {
  44590. name: "Normal",
  44591. height: math.unit(2 + 4/12, "feet"),
  44592. default: true
  44593. },
  44594. ]
  44595. ))
  44596. characterMakers.push(() => makeCharacter(
  44597. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  44598. {
  44599. front: {
  44600. height: math.unit(5.5, "feet"),
  44601. weight: math.unit(130, "lb"),
  44602. name: "Front",
  44603. image: {
  44604. source: "./media/characters/xena-nebadon/front.svg",
  44605. extra: 1828/1730,
  44606. bottom: 79/1907
  44607. }
  44608. },
  44609. },
  44610. [
  44611. {
  44612. name: "Tiny Puppy",
  44613. height: math.unit(3, "inches")
  44614. },
  44615. {
  44616. name: "Normal",
  44617. height: math.unit(5.5, "feet"),
  44618. default: true
  44619. },
  44620. {
  44621. name: "Lotta Lady",
  44622. height: math.unit(12, "feet")
  44623. },
  44624. {
  44625. name: "Pretty Big",
  44626. height: math.unit(100, "feet")
  44627. },
  44628. {
  44629. name: "Big",
  44630. height: math.unit(500, "feet")
  44631. },
  44632. {
  44633. name: "Skyscraper Toys",
  44634. height: math.unit(2500, "feet")
  44635. },
  44636. {
  44637. name: "Plane Catcher",
  44638. height: math.unit(8, "miles")
  44639. },
  44640. {
  44641. name: "Planet Toys",
  44642. height: math.unit(15, "earths")
  44643. },
  44644. {
  44645. name: "Stardust",
  44646. height: math.unit(0.25, "galaxies")
  44647. },
  44648. {
  44649. name: "Snacks",
  44650. height: math.unit(70, "universes")
  44651. },
  44652. ]
  44653. ))
  44654. characterMakers.push(() => makeCharacter(
  44655. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  44656. {
  44657. front: {
  44658. height: math.unit(1.6, "meters"),
  44659. weight: math.unit(60, "kg"),
  44660. name: "Front",
  44661. image: {
  44662. source: "./media/characters/bounty/front.svg",
  44663. extra: 1426/1308,
  44664. bottom: 15/1441
  44665. }
  44666. },
  44667. back: {
  44668. height: math.unit(1.6, "meters"),
  44669. weight: math.unit(60, "kg"),
  44670. name: "Back",
  44671. image: {
  44672. source: "./media/characters/bounty/back.svg",
  44673. extra: 1417/1307,
  44674. bottom: 8/1425
  44675. }
  44676. },
  44677. },
  44678. [
  44679. {
  44680. name: "Normal",
  44681. height: math.unit(1.6, "meters"),
  44682. default: true
  44683. },
  44684. {
  44685. name: "Macro",
  44686. height: math.unit(300, "meters")
  44687. },
  44688. ]
  44689. ))
  44690. characterMakers.push(() => makeCharacter(
  44691. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  44692. {
  44693. front: {
  44694. height: math.unit(2 + 8/12, "feet"),
  44695. weight: math.unit(15, "lb"),
  44696. name: "Front",
  44697. image: {
  44698. source: "./media/characters/mochi/front.svg",
  44699. extra: 1022/852,
  44700. bottom: 435/1457
  44701. }
  44702. },
  44703. back: {
  44704. height: math.unit(2 + 8/12, "feet"),
  44705. weight: math.unit(15, "lb"),
  44706. name: "Back",
  44707. image: {
  44708. source: "./media/characters/mochi/back.svg",
  44709. extra: 1335/1119,
  44710. bottom: 39/1374
  44711. }
  44712. },
  44713. bird: {
  44714. height: math.unit(2 + 8/12, "feet"),
  44715. weight: math.unit(15, "lb"),
  44716. name: "Bird",
  44717. image: {
  44718. source: "./media/characters/mochi/bird.svg",
  44719. extra: 1251/1113,
  44720. bottom: 178/1429
  44721. }
  44722. },
  44723. kaiju: {
  44724. height: math.unit(154, "feet"),
  44725. weight: math.unit(1e7, "lb"),
  44726. name: "Kaiju",
  44727. image: {
  44728. source: "./media/characters/mochi/kaiju.svg",
  44729. extra: 460/324,
  44730. bottom: 40/500
  44731. }
  44732. },
  44733. head: {
  44734. height: math.unit(1.21, "feet"),
  44735. name: "Head",
  44736. image: {
  44737. source: "./media/characters/mochi/head.svg"
  44738. }
  44739. },
  44740. alternateTail: {
  44741. height: math.unit(2 + 8/12, "feet"),
  44742. weight: math.unit(45, "lb"),
  44743. name: "Alternate Tail",
  44744. image: {
  44745. source: "./media/characters/mochi/alternate-tail.svg",
  44746. extra: 139/76,
  44747. bottom: 45/184
  44748. }
  44749. },
  44750. },
  44751. [
  44752. {
  44753. name: "Micro",
  44754. height: math.unit(2, "inches")
  44755. },
  44756. {
  44757. name: "Normal",
  44758. height: math.unit(2 + 8/12, "feet"),
  44759. default: true
  44760. },
  44761. {
  44762. name: "Macro",
  44763. height: math.unit(106, "feet")
  44764. },
  44765. ]
  44766. ))
  44767. characterMakers.push(() => makeCharacter(
  44768. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  44769. {
  44770. front: {
  44771. height: math.unit(5.67, "feet"),
  44772. weight: math.unit(135, "lb"),
  44773. name: "Front",
  44774. image: {
  44775. source: "./media/characters/sarel/front.svg",
  44776. extra: 865/788,
  44777. bottom: 97/962
  44778. }
  44779. },
  44780. back: {
  44781. height: math.unit(5.67, "feet"),
  44782. weight: math.unit(135, "lb"),
  44783. name: "Back",
  44784. image: {
  44785. source: "./media/characters/sarel/back.svg",
  44786. extra: 857/777,
  44787. bottom: 32/889
  44788. }
  44789. },
  44790. chozoan: {
  44791. height: math.unit(5.67, "feet"),
  44792. weight: math.unit(135, "lb"),
  44793. name: "Chozoan",
  44794. image: {
  44795. source: "./media/characters/sarel/chozoan.svg",
  44796. extra: 865/788,
  44797. bottom: 97/962
  44798. }
  44799. },
  44800. current: {
  44801. height: math.unit(5.67, "feet"),
  44802. weight: math.unit(135, "lb"),
  44803. name: "Current",
  44804. image: {
  44805. source: "./media/characters/sarel/current.svg",
  44806. extra: 865/788,
  44807. bottom: 97/962
  44808. }
  44809. },
  44810. head: {
  44811. height: math.unit(1.77, "feet"),
  44812. name: "Head",
  44813. image: {
  44814. source: "./media/characters/sarel/head.svg"
  44815. }
  44816. },
  44817. claws: {
  44818. height: math.unit(1.8, "feet"),
  44819. name: "Claws",
  44820. image: {
  44821. source: "./media/characters/sarel/claws.svg"
  44822. }
  44823. },
  44824. clawsAlt: {
  44825. height: math.unit(1.8, "feet"),
  44826. name: "Claws-alt",
  44827. image: {
  44828. source: "./media/characters/sarel/claws-alt.svg"
  44829. }
  44830. },
  44831. },
  44832. [
  44833. {
  44834. name: "Normal",
  44835. height: math.unit(5.67, "feet"),
  44836. default: true
  44837. },
  44838. ]
  44839. ))
  44840. characterMakers.push(() => makeCharacter(
  44841. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  44842. {
  44843. front: {
  44844. height: math.unit(5500, "feet"),
  44845. name: "Front",
  44846. image: {
  44847. source: "./media/characters/alyonia/front.svg",
  44848. extra: 1200/1135,
  44849. bottom: 29/1229
  44850. }
  44851. },
  44852. back: {
  44853. height: math.unit(5500, "feet"),
  44854. name: "Back",
  44855. image: {
  44856. source: "./media/characters/alyonia/back.svg",
  44857. extra: 1205/1138,
  44858. bottom: 10/1215
  44859. }
  44860. },
  44861. },
  44862. [
  44863. {
  44864. name: "Small",
  44865. height: math.unit(10, "feet")
  44866. },
  44867. {
  44868. name: "Macro",
  44869. height: math.unit(500, "feet")
  44870. },
  44871. {
  44872. name: "Mega Macro",
  44873. height: math.unit(5500, "feet"),
  44874. default: true
  44875. },
  44876. {
  44877. name: "Mega Macro+",
  44878. height: math.unit(500000, "feet")
  44879. },
  44880. {
  44881. name: "Giga Macro",
  44882. height: math.unit(3000, "miles")
  44883. },
  44884. {
  44885. name: "Tera Macro",
  44886. height: math.unit(2.8e6, "miles")
  44887. },
  44888. {
  44889. name: "Galactic",
  44890. height: math.unit(120000, "lightyears")
  44891. },
  44892. ]
  44893. ))
  44894. characterMakers.push(() => makeCharacter(
  44895. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  44896. {
  44897. werewolf: {
  44898. height: math.unit(8, "feet"),
  44899. weight: math.unit(425, "lb"),
  44900. name: "Werewolf",
  44901. image: {
  44902. source: "./media/characters/autumn/werewolf.svg",
  44903. extra: 2154/2031,
  44904. bottom: 160/2314
  44905. }
  44906. },
  44907. human: {
  44908. height: math.unit(5 + 8/12, "feet"),
  44909. weight: math.unit(150, "lb"),
  44910. name: "Human",
  44911. image: {
  44912. source: "./media/characters/autumn/human.svg",
  44913. extra: 1200/1149,
  44914. bottom: 30/1230
  44915. }
  44916. },
  44917. },
  44918. [
  44919. {
  44920. name: "Normal",
  44921. height: math.unit(8, "feet"),
  44922. default: true
  44923. },
  44924. ]
  44925. ))
  44926. characterMakers.push(() => makeCharacter(
  44927. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  44928. {
  44929. front: {
  44930. height: math.unit(8 + 5/12, "feet"),
  44931. weight: math.unit(825, "lb"),
  44932. name: "Front",
  44933. image: {
  44934. source: "./media/characters/cobalt-charizard/front.svg",
  44935. extra: 1268/1155,
  44936. bottom: 122/1390
  44937. }
  44938. },
  44939. side: {
  44940. height: math.unit(8 + 5/12, "feet"),
  44941. weight: math.unit(825, "lb"),
  44942. name: "Side",
  44943. image: {
  44944. source: "./media/characters/cobalt-charizard/side.svg",
  44945. extra: 1348/1257,
  44946. bottom: 58/1406
  44947. }
  44948. },
  44949. gMax: {
  44950. height: math.unit(134 + 11/12, "feet"),
  44951. name: "G-Max",
  44952. image: {
  44953. source: "./media/characters/cobalt-charizard/g-max.svg",
  44954. extra: 1835/1541,
  44955. bottom: 151/1986
  44956. }
  44957. },
  44958. },
  44959. [
  44960. {
  44961. name: "Normal",
  44962. height: math.unit(8 + 5/12, "feet"),
  44963. default: true
  44964. },
  44965. ]
  44966. ))
  44967. characterMakers.push(() => makeCharacter(
  44968. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  44969. {
  44970. front: {
  44971. height: math.unit(6 + 3/12, "feet"),
  44972. weight: math.unit(210, "lb"),
  44973. name: "Front",
  44974. image: {
  44975. source: "./media/characters/stella/front.svg",
  44976. extra: 3549/3335,
  44977. bottom: 51/3600
  44978. }
  44979. },
  44980. },
  44981. [
  44982. {
  44983. name: "Normal",
  44984. height: math.unit(6 + 3/12, "feet"),
  44985. default: true
  44986. },
  44987. ]
  44988. ))
  44989. characterMakers.push(() => makeCharacter(
  44990. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  44991. {
  44992. front: {
  44993. height: math.unit(5, "feet"),
  44994. weight: math.unit(90, "lb"),
  44995. name: "Front",
  44996. image: {
  44997. source: "./media/characters/riley-bishop/front.svg",
  44998. extra: 1450/1428,
  44999. bottom: 152/1602
  45000. }
  45001. },
  45002. },
  45003. [
  45004. {
  45005. name: "Normal",
  45006. height: math.unit(5, "feet"),
  45007. default: true
  45008. },
  45009. ]
  45010. ))
  45011. characterMakers.push(() => makeCharacter(
  45012. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  45013. {
  45014. side: {
  45015. height: math.unit(8 + 2/12, "feet"),
  45016. weight: math.unit(500, "kg"),
  45017. name: "Side",
  45018. image: {
  45019. source: "./media/characters/theo-arcanine/side.svg",
  45020. extra: 1342/1074,
  45021. bottom: 111/1453
  45022. }
  45023. },
  45024. },
  45025. [
  45026. {
  45027. name: "Normal",
  45028. height: math.unit(8 + 2/12, "feet"),
  45029. default: true
  45030. },
  45031. ]
  45032. ))
  45033. characterMakers.push(() => makeCharacter(
  45034. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  45035. {
  45036. front: {
  45037. height: math.unit(4, "feet"),
  45038. name: "Front",
  45039. image: {
  45040. source: "./media/characters/kali/front.svg",
  45041. extra: 1921/1357,
  45042. bottom: 70/1991
  45043. }
  45044. },
  45045. },
  45046. [
  45047. {
  45048. name: "Normal",
  45049. height: math.unit(4, "feet"),
  45050. default: true
  45051. },
  45052. {
  45053. name: "Macro",
  45054. height: math.unit(32, "meters")
  45055. },
  45056. {
  45057. name: "Macro+",
  45058. height: math.unit(150, "meters")
  45059. },
  45060. {
  45061. name: "Megamacro",
  45062. height: math.unit(7500, "meters")
  45063. },
  45064. {
  45065. name: "Megamacro+",
  45066. height: math.unit(80, "kilometers")
  45067. },
  45068. ]
  45069. ))
  45070. characterMakers.push(() => makeCharacter(
  45071. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  45072. {
  45073. side: {
  45074. height: math.unit(5 + 11/12, "feet"),
  45075. weight: math.unit(236, "lb"),
  45076. name: "Side",
  45077. image: {
  45078. source: "./media/characters/gapp/side.svg",
  45079. extra: 775/340,
  45080. bottom: 58/833
  45081. }
  45082. },
  45083. mouth: {
  45084. height: math.unit(2.98, "feet"),
  45085. name: "Mouth",
  45086. image: {
  45087. source: "./media/characters/gapp/mouth.svg"
  45088. }
  45089. },
  45090. },
  45091. [
  45092. {
  45093. name: "Normal",
  45094. height: math.unit(5 + 1/12, "feet"),
  45095. default: true
  45096. },
  45097. ]
  45098. ))
  45099. characterMakers.push(() => makeCharacter(
  45100. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  45101. {
  45102. front: {
  45103. height: math.unit(6, "feet"),
  45104. name: "Front",
  45105. image: {
  45106. source: "./media/characters/persephone/front.svg",
  45107. extra: 1895/1717,
  45108. bottom: 96/1991
  45109. }
  45110. },
  45111. back: {
  45112. height: math.unit(6, "feet"),
  45113. name: "Back",
  45114. image: {
  45115. source: "./media/characters/persephone/back.svg",
  45116. extra: 1868/1679,
  45117. bottom: 26/1894
  45118. }
  45119. },
  45120. casual: {
  45121. height: math.unit(6, "feet"),
  45122. name: "Casual",
  45123. image: {
  45124. source: "./media/characters/persephone/casual.svg",
  45125. extra: 1713/1541,
  45126. bottom: 76/1789
  45127. }
  45128. },
  45129. },
  45130. [
  45131. {
  45132. name: "Human Size",
  45133. height: math.unit(6, "feet")
  45134. },
  45135. {
  45136. name: "Big Steppy",
  45137. height: math.unit(600, "meters"),
  45138. default: true
  45139. },
  45140. {
  45141. name: "Galaxy Brain",
  45142. height: math.unit(1, "zettameter")
  45143. },
  45144. ]
  45145. ))
  45146. characterMakers.push(() => makeCharacter(
  45147. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  45148. {
  45149. front: {
  45150. height: math.unit(1.85, "meters"),
  45151. name: "Front",
  45152. image: {
  45153. source: "./media/characters/riley-foxthing/front.svg",
  45154. extra: 1495/1354,
  45155. bottom: 122/1617
  45156. }
  45157. },
  45158. frontAlt: {
  45159. height: math.unit(1.85, "meters"),
  45160. name: "Front (Alt)",
  45161. image: {
  45162. source: "./media/characters/riley-foxthing/front-alt.svg",
  45163. extra: 1572/1389,
  45164. bottom: 116/1688
  45165. }
  45166. },
  45167. },
  45168. [
  45169. {
  45170. name: "Normal Sized",
  45171. height: math.unit(1.85, "meters"),
  45172. default: true
  45173. },
  45174. {
  45175. name: "Quite Sizable",
  45176. height: math.unit(5, "meters")
  45177. },
  45178. {
  45179. name: "Rather Large",
  45180. height: math.unit(20, "meters")
  45181. },
  45182. {
  45183. name: "Macro",
  45184. height: math.unit(450, "meters")
  45185. },
  45186. {
  45187. name: "Giga",
  45188. height: math.unit(5, "km")
  45189. },
  45190. ]
  45191. ))
  45192. characterMakers.push(() => makeCharacter(
  45193. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  45194. {
  45195. front: {
  45196. height: math.unit(6, "feet"),
  45197. weight: math.unit(200, "lb"),
  45198. name: "Front",
  45199. image: {
  45200. source: "./media/characters/blizzard/front.svg",
  45201. extra: 1136/990,
  45202. bottom: 136/1272
  45203. }
  45204. },
  45205. back: {
  45206. height: math.unit(6, "feet"),
  45207. weight: math.unit(200, "lb"),
  45208. name: "Back",
  45209. image: {
  45210. source: "./media/characters/blizzard/back.svg",
  45211. extra: 1175/1034,
  45212. bottom: 97/1272
  45213. }
  45214. },
  45215. sitting: {
  45216. height: math.unit(3.725, "feet"),
  45217. weight: math.unit(200, "lb"),
  45218. name: "Sitting",
  45219. image: {
  45220. source: "./media/characters/blizzard/sitting.svg",
  45221. extra: 581/485,
  45222. bottom: 90/671
  45223. }
  45224. },
  45225. frontWizard: {
  45226. height: math.unit(7.9, "feet"),
  45227. weight: math.unit(200, "lb"),
  45228. name: "Front (Wizard)",
  45229. image: {
  45230. source: "./media/characters/blizzard/front-wizard.svg"
  45231. }
  45232. },
  45233. backWizard: {
  45234. height: math.unit(7.9, "feet"),
  45235. weight: math.unit(200, "lb"),
  45236. name: "Back (Wizard)",
  45237. image: {
  45238. source: "./media/characters/blizzard/back-wizard.svg"
  45239. }
  45240. },
  45241. frontNsfw: {
  45242. height: math.unit(6, "feet"),
  45243. weight: math.unit(200, "lb"),
  45244. name: "Front (NSFW)",
  45245. image: {
  45246. source: "./media/characters/blizzard/front-nsfw.svg",
  45247. extra: 1136/990,
  45248. bottom: 136/1272
  45249. }
  45250. },
  45251. backNsfw: {
  45252. height: math.unit(6, "feet"),
  45253. weight: math.unit(200, "lb"),
  45254. name: "Back (NSFW)",
  45255. image: {
  45256. source: "./media/characters/blizzard/back-nsfw.svg",
  45257. extra: 1175/1034,
  45258. bottom: 97/1272
  45259. }
  45260. },
  45261. sittingNsfw: {
  45262. height: math.unit(3.725, "feet"),
  45263. weight: math.unit(200, "lb"),
  45264. name: "Sitting (NSFW)",
  45265. image: {
  45266. source: "./media/characters/blizzard/sitting-nsfw.svg",
  45267. extra: 581/485,
  45268. bottom: 90/671
  45269. }
  45270. },
  45271. wizardFrontNsfw: {
  45272. height: math.unit(7.9, "feet"),
  45273. weight: math.unit(200, "lb"),
  45274. name: "Wizard (Front, NSFW)",
  45275. image: {
  45276. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  45277. }
  45278. },
  45279. },
  45280. [
  45281. {
  45282. name: "Normal",
  45283. height: math.unit(6, "feet"),
  45284. default: true
  45285. },
  45286. ]
  45287. ))
  45288. characterMakers.push(() => makeCharacter(
  45289. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  45290. {
  45291. front: {
  45292. height: math.unit(5 + 2/12, "feet"),
  45293. name: "Front",
  45294. image: {
  45295. source: "./media/characters/lumi/front.svg",
  45296. extra: 1328/1268,
  45297. bottom: 103/1431
  45298. }
  45299. },
  45300. back: {
  45301. height: math.unit(5 + 2/12, "feet"),
  45302. name: "Back",
  45303. image: {
  45304. source: "./media/characters/lumi/back.svg",
  45305. extra: 1381/1327,
  45306. bottom: 43/1424
  45307. }
  45308. },
  45309. },
  45310. [
  45311. {
  45312. name: "Normal",
  45313. height: math.unit(5 + 2/12, "feet"),
  45314. default: true
  45315. },
  45316. ]
  45317. ))
  45318. characterMakers.push(() => makeCharacter(
  45319. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  45320. {
  45321. front: {
  45322. height: math.unit(5 + 9/12, "feet"),
  45323. name: "Front",
  45324. image: {
  45325. source: "./media/characters/aliya-cotton/front.svg",
  45326. extra: 577/564,
  45327. bottom: 29/606
  45328. }
  45329. },
  45330. },
  45331. [
  45332. {
  45333. name: "Normal",
  45334. height: math.unit(5 + 9/12, "feet"),
  45335. default: true
  45336. },
  45337. ]
  45338. ))
  45339. characterMakers.push(() => makeCharacter(
  45340. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  45341. {
  45342. front: {
  45343. height: math.unit(2.7, "meters"),
  45344. weight: math.unit(25000, "lb"),
  45345. name: "Front",
  45346. image: {
  45347. source: "./media/characters/noah-luxray/front.svg",
  45348. extra: 1644/825,
  45349. bottom: 339/1983
  45350. }
  45351. },
  45352. side: {
  45353. height: math.unit(2.97, "meters"),
  45354. weight: math.unit(25000, "lb"),
  45355. name: "Side",
  45356. image: {
  45357. source: "./media/characters/noah-luxray/side.svg",
  45358. extra: 1319/650,
  45359. bottom: 163/1482
  45360. }
  45361. },
  45362. dick: {
  45363. height: math.unit(7.4, "feet"),
  45364. weight: math.unit(2500, "lb"),
  45365. name: "Dick",
  45366. image: {
  45367. source: "./media/characters/noah-luxray/dick.svg"
  45368. }
  45369. },
  45370. dickAlt: {
  45371. height: math.unit(10.83, "feet"),
  45372. weight: math.unit(2500, "lb"),
  45373. name: "Dick-alt",
  45374. image: {
  45375. source: "./media/characters/noah-luxray/dick-alt.svg"
  45376. }
  45377. },
  45378. },
  45379. [
  45380. {
  45381. name: "BIG",
  45382. height: math.unit(2.7, "meters"),
  45383. default: true
  45384. },
  45385. ]
  45386. ))
  45387. characterMakers.push(() => makeCharacter(
  45388. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  45389. {
  45390. standing: {
  45391. height: math.unit(183, "cm"),
  45392. weight: math.unit(68, "kg"),
  45393. name: "Standing",
  45394. image: {
  45395. source: "./media/characters/arion/standing.svg",
  45396. extra: 1869/1807,
  45397. bottom: 93/1962
  45398. }
  45399. },
  45400. reclining: {
  45401. height: math.unit(70.5, "cm"),
  45402. weight: math.unit(68, "lb"),
  45403. name: "Reclining",
  45404. image: {
  45405. source: "./media/characters/arion/reclining.svg",
  45406. extra: 937/870,
  45407. bottom: 63/1000
  45408. }
  45409. },
  45410. },
  45411. [
  45412. {
  45413. name: "Colossus Size, Low",
  45414. height: math.unit(33, "meters"),
  45415. default: true
  45416. },
  45417. {
  45418. name: "Colossus Size, Mid",
  45419. height: math.unit(52, "meters")
  45420. },
  45421. {
  45422. name: "Colossus Size, High",
  45423. height: math.unit(60, "meters")
  45424. },
  45425. {
  45426. name: "Titan Size, Low",
  45427. height: math.unit(91, "meters"),
  45428. },
  45429. {
  45430. name: "Titan Size, Mid",
  45431. height: math.unit(122, "meters")
  45432. },
  45433. {
  45434. name: "Titan Size, High",
  45435. height: math.unit(162, "meters")
  45436. },
  45437. ]
  45438. ))
  45439. characterMakers.push(() => makeCharacter(
  45440. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  45441. {
  45442. front: {
  45443. height: math.unit(53, "meters"),
  45444. name: "Front",
  45445. image: {
  45446. source: "./media/characters/stellar-marbey/front.svg",
  45447. extra: 1913/1805,
  45448. bottom: 92/2005
  45449. }
  45450. },
  45451. back: {
  45452. height: math.unit(53, "meters"),
  45453. name: "Back",
  45454. image: {
  45455. source: "./media/characters/stellar-marbey/back.svg",
  45456. extra: 1960/1851,
  45457. bottom: 28/1988
  45458. }
  45459. },
  45460. mouth: {
  45461. height: math.unit(3.5, "meters"),
  45462. name: "Mouth",
  45463. image: {
  45464. source: "./media/characters/stellar-marbey/mouth.svg"
  45465. }
  45466. },
  45467. },
  45468. [
  45469. {
  45470. name: "Macro",
  45471. height: math.unit(53, "meters"),
  45472. default: true
  45473. },
  45474. ]
  45475. ))
  45476. characterMakers.push(() => makeCharacter(
  45477. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  45478. {
  45479. front: {
  45480. height: math.unit(8 + 1/12, "feet"),
  45481. weight: math.unit(233, "lb"),
  45482. name: "Front",
  45483. image: {
  45484. source: "./media/characters/matsu/front.svg",
  45485. extra: 832/772,
  45486. bottom: 40/872
  45487. }
  45488. },
  45489. back: {
  45490. height: math.unit(8 + 1/12, "feet"),
  45491. weight: math.unit(233, "lb"),
  45492. name: "Back",
  45493. image: {
  45494. source: "./media/characters/matsu/back.svg",
  45495. extra: 839/780,
  45496. bottom: 47/886
  45497. }
  45498. },
  45499. },
  45500. [
  45501. {
  45502. name: "Normal",
  45503. height: math.unit(8 + 1/12, "feet"),
  45504. default: true
  45505. },
  45506. ]
  45507. ))
  45508. characterMakers.push(() => makeCharacter(
  45509. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  45510. {
  45511. front: {
  45512. height: math.unit(4, "feet"),
  45513. weight: math.unit(148, "lb"),
  45514. name: "Front",
  45515. image: {
  45516. source: "./media/characters/thiz/front.svg",
  45517. extra: 1913/1748,
  45518. bottom: 62/1975
  45519. }
  45520. },
  45521. },
  45522. [
  45523. {
  45524. name: "Normal",
  45525. height: math.unit(4, "feet"),
  45526. default: true
  45527. },
  45528. ]
  45529. ))
  45530. characterMakers.push(() => makeCharacter(
  45531. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  45532. {
  45533. front: {
  45534. height: math.unit(7 + 6/12, "feet"),
  45535. weight: math.unit(267, "lb"),
  45536. name: "Front",
  45537. image: {
  45538. source: "./media/characters/marcel/front.svg",
  45539. extra: 1221/1096,
  45540. bottom: 76/1297
  45541. }
  45542. },
  45543. },
  45544. [
  45545. {
  45546. name: "Normal",
  45547. height: math.unit(7 + 6/12, "feet"),
  45548. default: true
  45549. },
  45550. ]
  45551. ))
  45552. characterMakers.push(() => makeCharacter(
  45553. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  45554. {
  45555. side: {
  45556. height: math.unit(42, "meters"),
  45557. name: "Side",
  45558. image: {
  45559. source: "./media/characters/flake/side.svg",
  45560. extra: 1525/1306,
  45561. bottom: 209/1734
  45562. }
  45563. },
  45564. },
  45565. [
  45566. {
  45567. name: "Normal",
  45568. height: math.unit(42, "meters"),
  45569. default: true
  45570. },
  45571. ]
  45572. ))
  45573. characterMakers.push(() => makeCharacter(
  45574. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  45575. {
  45576. dressed: {
  45577. height: math.unit(6 + 4/12, "feet"),
  45578. weight: math.unit(520, "lb"),
  45579. name: "Dressed",
  45580. image: {
  45581. source: "./media/characters/someonne/dressed.svg",
  45582. extra: 1020/1010,
  45583. bottom: 178/1198
  45584. }
  45585. },
  45586. undressed: {
  45587. height: math.unit(6 + 4/12, "feet"),
  45588. weight: math.unit(520, "lb"),
  45589. name: "Undressed",
  45590. image: {
  45591. source: "./media/characters/someonne/undressed.svg",
  45592. extra: 1019/1014,
  45593. bottom: 169/1188
  45594. }
  45595. },
  45596. },
  45597. [
  45598. {
  45599. name: "Normal",
  45600. height: math.unit(6 + 4/12, "feet"),
  45601. default: true
  45602. },
  45603. ]
  45604. ))
  45605. characterMakers.push(() => makeCharacter(
  45606. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  45607. {
  45608. front: {
  45609. height: math.unit(3, "feet"),
  45610. weight: math.unit(30, "lb"),
  45611. name: "Front",
  45612. image: {
  45613. source: "./media/characters/till/front.svg",
  45614. extra: 892/823,
  45615. bottom: 55/947
  45616. }
  45617. },
  45618. },
  45619. [
  45620. {
  45621. name: "Normal",
  45622. height: math.unit(3, "feet"),
  45623. default: true
  45624. },
  45625. ]
  45626. ))
  45627. characterMakers.push(() => makeCharacter(
  45628. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  45629. {
  45630. front: {
  45631. height: math.unit(9 + 8/12, "feet"),
  45632. weight: math.unit(800, "lb"),
  45633. name: "Front",
  45634. image: {
  45635. source: "./media/characters/sydney-heki/front.svg",
  45636. extra: 1360/1300,
  45637. bottom: 22/1382
  45638. }
  45639. },
  45640. back: {
  45641. height: math.unit(9 + 8/12, "feet"),
  45642. weight: math.unit(800, "lb"),
  45643. name: "Back",
  45644. image: {
  45645. source: "./media/characters/sydney-heki/back.svg",
  45646. extra: 1356/1293,
  45647. bottom: 12/1368
  45648. }
  45649. },
  45650. frontDressed: {
  45651. height: math.unit(9 + 8/12, "feet"),
  45652. weight: math.unit(800, "lb"),
  45653. name: "Front-dressed",
  45654. image: {
  45655. source: "./media/characters/sydney-heki/front-dressed.svg",
  45656. extra: 1360/1300,
  45657. bottom: 22/1382
  45658. }
  45659. },
  45660. },
  45661. [
  45662. {
  45663. name: "Normal",
  45664. height: math.unit(9 + 8/12, "feet"),
  45665. default: true
  45666. },
  45667. {
  45668. name: "Macro",
  45669. height: math.unit(500, "feet")
  45670. },
  45671. {
  45672. name: "Megamacro",
  45673. height: math.unit(3.6, "miles")
  45674. },
  45675. ]
  45676. ))
  45677. characterMakers.push(() => makeCharacter(
  45678. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  45679. {
  45680. front: {
  45681. height: math.unit(200, "cm"),
  45682. weight: math.unit(250, "lb"),
  45683. name: "Front",
  45684. image: {
  45685. source: "./media/characters/fowler-karlsson/front.svg",
  45686. extra: 897/845,
  45687. bottom: 123/1020
  45688. }
  45689. },
  45690. back: {
  45691. height: math.unit(200, "cm"),
  45692. weight: math.unit(250, "lb"),
  45693. name: "Back",
  45694. image: {
  45695. source: "./media/characters/fowler-karlsson/back.svg",
  45696. extra: 999/944,
  45697. bottom: 26/1025
  45698. }
  45699. },
  45700. dick: {
  45701. height: math.unit(1.92, "feet"),
  45702. weight: math.unit(150, "lb"),
  45703. name: "Dick",
  45704. image: {
  45705. source: "./media/characters/fowler-karlsson/dick.svg"
  45706. }
  45707. },
  45708. },
  45709. [
  45710. {
  45711. name: "Normal",
  45712. height: math.unit(200, "cm"),
  45713. default: true
  45714. },
  45715. {
  45716. name: "Smaller Macro",
  45717. height: math.unit(90, "m")
  45718. },
  45719. {
  45720. name: "Macro",
  45721. height: math.unit(150, "m")
  45722. },
  45723. {
  45724. name: "Bigger Macro",
  45725. height: math.unit(300, "m")
  45726. },
  45727. ]
  45728. ))
  45729. characterMakers.push(() => makeCharacter(
  45730. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  45731. {
  45732. side: {
  45733. height: math.unit(8 + 2/12, "feet"),
  45734. weight: math.unit(1, "tonne"),
  45735. name: "Side",
  45736. image: {
  45737. source: "./media/characters/rylide/side.svg",
  45738. extra: 1318/1034,
  45739. bottom: 106/1424
  45740. }
  45741. },
  45742. sitting: {
  45743. height: math.unit(303, "cm"),
  45744. weight: math.unit(1, "tonne"),
  45745. name: "Sitting",
  45746. image: {
  45747. source: "./media/characters/rylide/sitting.svg",
  45748. extra: 1303/1103,
  45749. bottom: 36/1339
  45750. }
  45751. },
  45752. },
  45753. [
  45754. {
  45755. name: "Normal",
  45756. height: math.unit(8 + 2/12, "feet"),
  45757. default: true
  45758. },
  45759. ]
  45760. ))
  45761. characterMakers.push(() => makeCharacter(
  45762. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  45763. {
  45764. front: {
  45765. height: math.unit(5 + 10/12, "feet"),
  45766. weight: math.unit(160, "lb"),
  45767. name: "Front",
  45768. image: {
  45769. source: "./media/characters/pudask/front.svg",
  45770. extra: 1616/1590,
  45771. bottom: 161/1777
  45772. }
  45773. },
  45774. },
  45775. [
  45776. {
  45777. name: "Ferret Height",
  45778. height: math.unit(2 + 5/12, "feet")
  45779. },
  45780. {
  45781. name: "Canon Height",
  45782. height: math.unit(5 + 10/12, "feet"),
  45783. default: true
  45784. },
  45785. ]
  45786. ))
  45787. characterMakers.push(() => makeCharacter(
  45788. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  45789. {
  45790. front: {
  45791. height: math.unit(3 + 6/12, "feet"),
  45792. weight: math.unit(60, "lb"),
  45793. name: "Front",
  45794. image: {
  45795. source: "./media/characters/ramita/front.svg",
  45796. extra: 1402/1232,
  45797. bottom: 62/1464
  45798. }
  45799. },
  45800. dressed: {
  45801. height: math.unit(3 + 6/12, "feet"),
  45802. weight: math.unit(60, "lb"),
  45803. name: "Dressed",
  45804. image: {
  45805. source: "./media/characters/ramita/dressed.svg",
  45806. extra: 1534/1249,
  45807. bottom: 50/1584
  45808. }
  45809. },
  45810. },
  45811. [
  45812. {
  45813. name: "Normal",
  45814. height: math.unit(3 + 6/12, "feet"),
  45815. default: true
  45816. },
  45817. ]
  45818. ))
  45819. characterMakers.push(() => makeCharacter(
  45820. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  45821. {
  45822. front: {
  45823. height: math.unit(8, "feet"),
  45824. name: "Front",
  45825. image: {
  45826. source: "./media/characters/ark/front.svg",
  45827. extra: 772/693,
  45828. bottom: 45/817
  45829. }
  45830. },
  45831. },
  45832. [
  45833. {
  45834. name: "Normal",
  45835. height: math.unit(8, "feet"),
  45836. default: true
  45837. },
  45838. ]
  45839. ))
  45840. characterMakers.push(() => makeCharacter(
  45841. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  45842. {
  45843. front: {
  45844. height: math.unit(6, "feet"),
  45845. weight: math.unit(250, "lb"),
  45846. volume: math.unit(5/8, "gallons"),
  45847. name: "Front",
  45848. image: {
  45849. source: "./media/characters/ludwig-horn/front.svg",
  45850. extra: 1782/1635,
  45851. bottom: 96/1878
  45852. }
  45853. },
  45854. back: {
  45855. height: math.unit(6, "feet"),
  45856. weight: math.unit(250, "lb"),
  45857. volume: math.unit(5/8, "gallons"),
  45858. name: "Back",
  45859. image: {
  45860. source: "./media/characters/ludwig-horn/back.svg",
  45861. extra: 1874/1729,
  45862. bottom: 27/1901
  45863. }
  45864. },
  45865. dick: {
  45866. height: math.unit(1.05, "feet"),
  45867. weight: math.unit(15, "lb"),
  45868. volume: math.unit(5/8, "gallons"),
  45869. name: "Dick",
  45870. image: {
  45871. source: "./media/characters/ludwig-horn/dick.svg"
  45872. }
  45873. },
  45874. },
  45875. [
  45876. {
  45877. name: "Small",
  45878. height: math.unit(6, "feet")
  45879. },
  45880. {
  45881. name: "Typical",
  45882. height: math.unit(12, "feet"),
  45883. default: true
  45884. },
  45885. {
  45886. name: "Building",
  45887. height: math.unit(80, "feet")
  45888. },
  45889. {
  45890. name: "Town",
  45891. height: math.unit(800, "feet")
  45892. },
  45893. {
  45894. name: "Kingdom",
  45895. height: math.unit(80000, "feet")
  45896. },
  45897. {
  45898. name: "Planet",
  45899. height: math.unit(8000000, "feet")
  45900. },
  45901. {
  45902. name: "Universe",
  45903. height: math.unit(8000000000, "feet")
  45904. },
  45905. {
  45906. name: "Transcended",
  45907. height: math.unit(8e27, "feet")
  45908. },
  45909. ]
  45910. ))
  45911. characterMakers.push(() => makeCharacter(
  45912. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  45913. {
  45914. front: {
  45915. height: math.unit(5, "feet"),
  45916. weight: math.unit(50, "kg"),
  45917. name: "Front",
  45918. image: {
  45919. source: "./media/characters/biot-avery/front.svg",
  45920. extra: 1295/1232,
  45921. bottom: 86/1381
  45922. }
  45923. },
  45924. },
  45925. [
  45926. {
  45927. name: "Normal",
  45928. height: math.unit(5, "feet"),
  45929. default: true
  45930. },
  45931. ]
  45932. ))
  45933. characterMakers.push(() => makeCharacter(
  45934. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  45935. {
  45936. front: {
  45937. height: math.unit(6, "feet"),
  45938. name: "Front",
  45939. image: {
  45940. source: "./media/characters/kitsune-kiro/front.svg",
  45941. extra: 1270/1158,
  45942. bottom: 42/1312
  45943. }
  45944. },
  45945. frontAlt: {
  45946. height: math.unit(6, "feet"),
  45947. name: "Front-alt",
  45948. image: {
  45949. source: "./media/characters/kitsune-kiro/front-alt.svg",
  45950. extra: 1130/1081,
  45951. bottom: 36/1166
  45952. }
  45953. },
  45954. },
  45955. [
  45956. {
  45957. name: "Smol",
  45958. height: math.unit(3, "feet")
  45959. },
  45960. {
  45961. name: "Normal",
  45962. height: math.unit(6, "feet"),
  45963. default: true
  45964. },
  45965. ]
  45966. ))
  45967. characterMakers.push(() => makeCharacter(
  45968. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  45969. {
  45970. front: {
  45971. height: math.unit(6, "feet"),
  45972. weight: math.unit(125, "lb"),
  45973. name: "Front",
  45974. image: {
  45975. source: "./media/characters/jack-thatcher/front.svg",
  45976. extra: 1474/1370,
  45977. bottom: 26/1500
  45978. }
  45979. },
  45980. back: {
  45981. height: math.unit(6, "feet"),
  45982. weight: math.unit(125, "lb"),
  45983. name: "Back",
  45984. image: {
  45985. source: "./media/characters/jack-thatcher/back.svg",
  45986. extra: 1489/1384,
  45987. bottom: 18/1507
  45988. }
  45989. },
  45990. },
  45991. [
  45992. {
  45993. name: "Normal",
  45994. height: math.unit(6, "feet"),
  45995. default: true
  45996. },
  45997. {
  45998. name: "Macro",
  45999. height: math.unit(75, "feet")
  46000. },
  46001. {
  46002. name: "Macro-er",
  46003. height: math.unit(250, "feet")
  46004. },
  46005. ]
  46006. ))
  46007. characterMakers.push(() => makeCharacter(
  46008. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  46009. {
  46010. front: {
  46011. height: math.unit(7, "feet"),
  46012. weight: math.unit(110, "kg"),
  46013. name: "Front",
  46014. image: {
  46015. source: "./media/characters/max-hyper/front.svg",
  46016. extra: 1969/1881,
  46017. bottom: 49/2018
  46018. }
  46019. },
  46020. },
  46021. [
  46022. {
  46023. name: "Normal",
  46024. height: math.unit(7, "feet"),
  46025. default: true
  46026. },
  46027. ]
  46028. ))
  46029. characterMakers.push(() => makeCharacter(
  46030. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  46031. {
  46032. front: {
  46033. height: math.unit(5 + 5/12, "feet"),
  46034. weight: math.unit(160, "lb"),
  46035. name: "Front",
  46036. image: {
  46037. source: "./media/characters/spook/front.svg",
  46038. extra: 794/791,
  46039. bottom: 54/848
  46040. }
  46041. },
  46042. back: {
  46043. height: math.unit(5 + 5/12, "feet"),
  46044. weight: math.unit(160, "lb"),
  46045. name: "Back",
  46046. image: {
  46047. source: "./media/characters/spook/back.svg",
  46048. extra: 812/798,
  46049. bottom: 32/844
  46050. }
  46051. },
  46052. },
  46053. [
  46054. {
  46055. name: "Normal",
  46056. height: math.unit(5 + 5/12, "feet"),
  46057. default: true
  46058. },
  46059. ]
  46060. ))
  46061. characterMakers.push(() => makeCharacter(
  46062. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  46063. {
  46064. front: {
  46065. height: math.unit(18, "feet"),
  46066. name: "Front",
  46067. image: {
  46068. source: "./media/characters/xeaduulix/front.svg",
  46069. extra: 1380/1166,
  46070. bottom: 110/1490
  46071. }
  46072. },
  46073. back: {
  46074. height: math.unit(18, "feet"),
  46075. name: "Back",
  46076. image: {
  46077. source: "./media/characters/xeaduulix/back.svg",
  46078. extra: 1592/1170,
  46079. bottom: 128/1720
  46080. }
  46081. },
  46082. frontNsfw: {
  46083. height: math.unit(18, "feet"),
  46084. name: "Front (NSFW)",
  46085. image: {
  46086. source: "./media/characters/xeaduulix/front-nsfw.svg",
  46087. extra: 1380/1166,
  46088. bottom: 110/1490
  46089. }
  46090. },
  46091. backNsfw: {
  46092. height: math.unit(18, "feet"),
  46093. name: "Back (NSFW)",
  46094. image: {
  46095. source: "./media/characters/xeaduulix/back-nsfw.svg",
  46096. extra: 1592/1170,
  46097. bottom: 128/1720
  46098. }
  46099. },
  46100. },
  46101. [
  46102. {
  46103. name: "Normal",
  46104. height: math.unit(18, "feet"),
  46105. default: true
  46106. },
  46107. ]
  46108. ))
  46109. characterMakers.push(() => makeCharacter(
  46110. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  46111. {
  46112. spreadWings: {
  46113. height: math.unit(20, "feet"),
  46114. name: "Spread Wings",
  46115. image: {
  46116. source: "./media/characters/fledge/spread-wings.svg",
  46117. extra: 693/635,
  46118. bottom: 26/719
  46119. }
  46120. },
  46121. front: {
  46122. height: math.unit(20, "feet"),
  46123. name: "Front",
  46124. image: {
  46125. source: "./media/characters/fledge/front.svg",
  46126. extra: 684/637,
  46127. bottom: 18/702
  46128. }
  46129. },
  46130. frontAlt: {
  46131. height: math.unit(20, "feet"),
  46132. name: "Front (Alt)",
  46133. image: {
  46134. source: "./media/characters/fledge/front-alt.svg",
  46135. extra: 708/664,
  46136. bottom: 13/721
  46137. }
  46138. },
  46139. back: {
  46140. height: math.unit(20, "feet"),
  46141. name: "Back",
  46142. image: {
  46143. source: "./media/characters/fledge/back.svg",
  46144. extra: 718/634,
  46145. bottom: 22/740
  46146. }
  46147. },
  46148. head: {
  46149. height: math.unit(5.55, "feet"),
  46150. name: "Head",
  46151. image: {
  46152. source: "./media/characters/fledge/head.svg"
  46153. }
  46154. },
  46155. headAlt: {
  46156. height: math.unit(5.1, "feet"),
  46157. name: "Head (Alt)",
  46158. image: {
  46159. source: "./media/characters/fledge/head-alt.svg"
  46160. }
  46161. },
  46162. },
  46163. [
  46164. {
  46165. name: "Small",
  46166. height: math.unit(6 + 2/12, "feet")
  46167. },
  46168. {
  46169. name: "Big",
  46170. height: math.unit(20, "feet"),
  46171. default: true
  46172. },
  46173. {
  46174. name: "Giant",
  46175. height: math.unit(100, "feet")
  46176. },
  46177. {
  46178. name: "Macro",
  46179. height: math.unit(200, "feet")
  46180. },
  46181. ]
  46182. ))
  46183. characterMakers.push(() => makeCharacter(
  46184. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  46185. {
  46186. front: {
  46187. height: math.unit(1, "meter"),
  46188. name: "Front",
  46189. image: {
  46190. source: "./media/characters/atlas-morenai/front.svg",
  46191. extra: 1275/1043,
  46192. bottom: 19/1294
  46193. }
  46194. },
  46195. back: {
  46196. height: math.unit(1, "meter"),
  46197. name: "Back",
  46198. image: {
  46199. source: "./media/characters/atlas-morenai/back.svg",
  46200. extra: 1141/1001,
  46201. bottom: 25/1166
  46202. }
  46203. },
  46204. },
  46205. [
  46206. {
  46207. name: "Normal",
  46208. height: math.unit(1, "meter"),
  46209. default: true
  46210. },
  46211. {
  46212. name: "Magic-Infused",
  46213. height: math.unit(5, "meters")
  46214. },
  46215. ]
  46216. ))
  46217. characterMakers.push(() => makeCharacter(
  46218. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  46219. {
  46220. front: {
  46221. height: math.unit(5, "meters"),
  46222. name: "Front",
  46223. image: {
  46224. source: "./media/characters/cintia/front.svg",
  46225. extra: 1312/1228,
  46226. bottom: 38/1350
  46227. }
  46228. },
  46229. back: {
  46230. height: math.unit(5, "meters"),
  46231. name: "Back",
  46232. image: {
  46233. source: "./media/characters/cintia/back.svg",
  46234. extra: 1260/1166,
  46235. bottom: 98/1358
  46236. }
  46237. },
  46238. frontDick: {
  46239. height: math.unit(5, "meters"),
  46240. name: "Front (Dick)",
  46241. image: {
  46242. source: "./media/characters/cintia/front-dick.svg",
  46243. extra: 1312/1228,
  46244. bottom: 38/1350
  46245. }
  46246. },
  46247. backDick: {
  46248. height: math.unit(5, "meters"),
  46249. name: "Back (Dick)",
  46250. image: {
  46251. source: "./media/characters/cintia/back-dick.svg",
  46252. extra: 1260/1166,
  46253. bottom: 98/1358
  46254. }
  46255. },
  46256. bust: {
  46257. height: math.unit(1.97, "meters"),
  46258. name: "Bust",
  46259. image: {
  46260. source: "./media/characters/cintia/bust.svg",
  46261. extra: 617/565,
  46262. bottom: 0/617
  46263. }
  46264. },
  46265. },
  46266. [
  46267. {
  46268. name: "Normal",
  46269. height: math.unit(5, "meters"),
  46270. default: true
  46271. },
  46272. ]
  46273. ))
  46274. characterMakers.push(() => makeCharacter(
  46275. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  46276. {
  46277. side: {
  46278. height: math.unit(100, "feet"),
  46279. name: "Side",
  46280. image: {
  46281. source: "./media/characters/denora/side.svg",
  46282. extra: 875/803,
  46283. bottom: 9/884
  46284. }
  46285. },
  46286. },
  46287. [
  46288. {
  46289. name: "Standard",
  46290. height: math.unit(100, "feet"),
  46291. default: true
  46292. },
  46293. {
  46294. name: "Grand",
  46295. height: math.unit(1000, "feet")
  46296. },
  46297. {
  46298. name: "Conquering",
  46299. height: math.unit(10000, "feet")
  46300. },
  46301. ]
  46302. ))
  46303. characterMakers.push(() => makeCharacter(
  46304. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  46305. {
  46306. dressed: {
  46307. height: math.unit(8 + 5/12, "feet"),
  46308. weight: math.unit(700, "lb"),
  46309. name: "Dressed",
  46310. image: {
  46311. source: "./media/characters/kiva/dressed.svg",
  46312. extra: 1102/1055,
  46313. bottom: 60/1162
  46314. }
  46315. },
  46316. nude: {
  46317. height: math.unit(8 + 5/12, "feet"),
  46318. weight: math.unit(700, "lb"),
  46319. name: "Nude",
  46320. image: {
  46321. source: "./media/characters/kiva/nude.svg",
  46322. extra: 1102/1055,
  46323. bottom: 60/1162
  46324. }
  46325. },
  46326. },
  46327. [
  46328. {
  46329. name: "Base Height",
  46330. height: math.unit(8 + 5/12, "feet"),
  46331. default: true
  46332. },
  46333. {
  46334. name: "Macro",
  46335. height: math.unit(100, "feet")
  46336. },
  46337. {
  46338. name: "Max",
  46339. height: math.unit(3280, "feet")
  46340. },
  46341. ]
  46342. ))
  46343. characterMakers.push(() => makeCharacter(
  46344. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  46345. {
  46346. front: {
  46347. height: math.unit(6 + 8/12, "feet"),
  46348. weight: math.unit(250, "lb"),
  46349. name: "Front",
  46350. image: {
  46351. source: "./media/characters/ztragon/front.svg",
  46352. extra: 1825/1684,
  46353. bottom: 98/1923
  46354. }
  46355. },
  46356. },
  46357. [
  46358. {
  46359. name: "Normal",
  46360. height: math.unit(6 + 8/12, "feet"),
  46361. default: true
  46362. },
  46363. {
  46364. name: "Macro",
  46365. height: math.unit(80, "feet")
  46366. },
  46367. ]
  46368. ))
  46369. characterMakers.push(() => makeCharacter(
  46370. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  46371. {
  46372. front: {
  46373. height: math.unit(10.4, "feet"),
  46374. weight: math.unit(2, "tons"),
  46375. name: "Front",
  46376. image: {
  46377. source: "./media/characters/yesenia/front.svg",
  46378. extra: 1479/1474,
  46379. bottom: 233/1712
  46380. }
  46381. },
  46382. },
  46383. [
  46384. {
  46385. name: "Normal",
  46386. height: math.unit(10.4, "feet"),
  46387. default: true
  46388. },
  46389. ]
  46390. ))
  46391. characterMakers.push(() => makeCharacter(
  46392. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  46393. {
  46394. normal: {
  46395. height: math.unit(6 + 1/12, "feet"),
  46396. weight: math.unit(180, "lb"),
  46397. name: "Normal",
  46398. image: {
  46399. source: "./media/characters/leanne-lycheborne/normal.svg",
  46400. extra: 1748/1660,
  46401. bottom: 98/1846
  46402. }
  46403. },
  46404. were: {
  46405. height: math.unit(12, "feet"),
  46406. weight: math.unit(1600, "lb"),
  46407. name: "Were",
  46408. image: {
  46409. source: "./media/characters/leanne-lycheborne/were.svg",
  46410. extra: 1485/1432,
  46411. bottom: 66/1551
  46412. }
  46413. },
  46414. },
  46415. [
  46416. {
  46417. name: "Normal",
  46418. height: math.unit(6 + 1/12, "feet"),
  46419. default: true
  46420. },
  46421. ]
  46422. ))
  46423. characterMakers.push(() => makeCharacter(
  46424. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  46425. {
  46426. side: {
  46427. height: math.unit(13, "feet"),
  46428. name: "Side",
  46429. image: {
  46430. source: "./media/characters/kira-tyler/side.svg",
  46431. extra: 693/393,
  46432. bottom: 58/751
  46433. }
  46434. },
  46435. },
  46436. [
  46437. {
  46438. name: "Normal",
  46439. height: math.unit(13, "feet"),
  46440. default: true
  46441. },
  46442. ]
  46443. ))
  46444. characterMakers.push(() => makeCharacter(
  46445. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  46446. {
  46447. front: {
  46448. height: math.unit(10.3, "feet"),
  46449. weight: math.unit(150, "lb"),
  46450. name: "Front",
  46451. image: {
  46452. source: "./media/characters/blaze/front.svg",
  46453. extra: 1378/1286,
  46454. bottom: 172/1550
  46455. }
  46456. },
  46457. },
  46458. [
  46459. {
  46460. name: "Normal",
  46461. height: math.unit(10.3, "feet"),
  46462. default: true
  46463. },
  46464. ]
  46465. ))
  46466. characterMakers.push(() => makeCharacter(
  46467. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  46468. {
  46469. side: {
  46470. height: math.unit(2, "meters"),
  46471. weight: math.unit(400, "kg"),
  46472. name: "Side",
  46473. image: {
  46474. source: "./media/characters/anu/side.svg",
  46475. extra: 506/394,
  46476. bottom: 18/524
  46477. }
  46478. },
  46479. },
  46480. [
  46481. {
  46482. name: "Humanoid",
  46483. height: math.unit(2, "meters")
  46484. },
  46485. {
  46486. name: "Normal",
  46487. height: math.unit(5, "meters"),
  46488. default: true
  46489. },
  46490. ]
  46491. ))
  46492. characterMakers.push(() => makeCharacter(
  46493. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  46494. {
  46495. front: {
  46496. height: math.unit(5 + 5/12, "feet"),
  46497. weight: math.unit(170, "lb"),
  46498. name: "Front",
  46499. image: {
  46500. source: "./media/characters/synx-the-lynx/front.svg",
  46501. extra: 1893/1745,
  46502. bottom: 17/1910
  46503. }
  46504. },
  46505. side: {
  46506. height: math.unit(5 + 5/12, "feet"),
  46507. weight: math.unit(170, "lb"),
  46508. name: "Side",
  46509. image: {
  46510. source: "./media/characters/synx-the-lynx/side.svg",
  46511. extra: 1884/1740,
  46512. bottom: 39/1923
  46513. }
  46514. },
  46515. back: {
  46516. height: math.unit(5 + 5/12, "feet"),
  46517. weight: math.unit(170, "lb"),
  46518. name: "Back",
  46519. image: {
  46520. source: "./media/characters/synx-the-lynx/back.svg",
  46521. extra: 1903/1755,
  46522. bottom: 14/1917
  46523. }
  46524. },
  46525. },
  46526. [
  46527. {
  46528. name: "Normal",
  46529. height: math.unit(5 + 5/12, "feet"),
  46530. default: true
  46531. },
  46532. ]
  46533. ))
  46534. characterMakers.push(() => makeCharacter(
  46535. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  46536. {
  46537. back: {
  46538. height: math.unit(15, "feet"),
  46539. name: "Back",
  46540. image: {
  46541. source: "./media/characters/nadezda-fex/back.svg",
  46542. extra: 1695/1481,
  46543. bottom: 25/1720
  46544. }
  46545. },
  46546. },
  46547. [
  46548. {
  46549. name: "Normal",
  46550. height: math.unit(15, "feet"),
  46551. default: true
  46552. },
  46553. {
  46554. name: "Macro",
  46555. height: math.unit(2.5, "miles")
  46556. },
  46557. {
  46558. name: "Goddess",
  46559. height: math.unit(2, "multiverses")
  46560. },
  46561. ]
  46562. ))
  46563. characterMakers.push(() => makeCharacter(
  46564. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  46565. {
  46566. front: {
  46567. height: math.unit(216, "cm"),
  46568. name: "Front",
  46569. image: {
  46570. source: "./media/characters/lev/front.svg",
  46571. extra: 1728/1670,
  46572. bottom: 82/1810
  46573. }
  46574. },
  46575. back: {
  46576. height: math.unit(216, "cm"),
  46577. name: "Back",
  46578. image: {
  46579. source: "./media/characters/lev/back.svg",
  46580. extra: 1738/1675,
  46581. bottom: 24/1762
  46582. }
  46583. },
  46584. dressed: {
  46585. height: math.unit(216, "cm"),
  46586. name: "Dressed",
  46587. image: {
  46588. source: "./media/characters/lev/dressed.svg",
  46589. extra: 1397/1351,
  46590. bottom: 73/1470
  46591. }
  46592. },
  46593. head: {
  46594. height: math.unit(0.51, "meter"),
  46595. name: "Head",
  46596. image: {
  46597. source: "./media/characters/lev/head.svg"
  46598. }
  46599. },
  46600. },
  46601. [
  46602. {
  46603. name: "Normal",
  46604. height: math.unit(216, "cm"),
  46605. default: true
  46606. },
  46607. {
  46608. name: "Relatively Macro",
  46609. height: math.unit(80, "meters")
  46610. },
  46611. {
  46612. name: "Megamacro",
  46613. height: math.unit(21600, "meters")
  46614. },
  46615. {
  46616. name: "Megamacro+",
  46617. height: math.unit(64800, "meters")
  46618. },
  46619. ]
  46620. ))
  46621. characterMakers.push(() => makeCharacter(
  46622. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  46623. {
  46624. front: {
  46625. height: math.unit(2, "meters"),
  46626. weight: math.unit(80, "kg"),
  46627. name: "Front",
  46628. image: {
  46629. source: "./media/characters/moka/front.svg",
  46630. extra: 1337/1255,
  46631. bottom: 58/1395
  46632. }
  46633. },
  46634. },
  46635. [
  46636. {
  46637. name: "Micro",
  46638. height: math.unit(15, "cm")
  46639. },
  46640. {
  46641. name: "Normal",
  46642. height: math.unit(2, "meters"),
  46643. default: true
  46644. },
  46645. {
  46646. name: "Macro",
  46647. height: math.unit(20, "meters"),
  46648. },
  46649. ]
  46650. ))
  46651. characterMakers.push(() => makeCharacter(
  46652. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  46653. {
  46654. front: {
  46655. height: math.unit(9, "feet"),
  46656. weight: math.unit(240, "lb"),
  46657. name: "Front",
  46658. image: {
  46659. source: "./media/characters/kuzco/front.svg",
  46660. extra: 1593/1487,
  46661. bottom: 32/1625
  46662. }
  46663. },
  46664. side: {
  46665. height: math.unit(9, "feet"),
  46666. weight: math.unit(240, "lb"),
  46667. name: "Side",
  46668. image: {
  46669. source: "./media/characters/kuzco/side.svg",
  46670. extra: 1575/1485,
  46671. bottom: 30/1605
  46672. }
  46673. },
  46674. back: {
  46675. height: math.unit(9, "feet"),
  46676. weight: math.unit(240, "lb"),
  46677. name: "Back",
  46678. image: {
  46679. source: "./media/characters/kuzco/back.svg",
  46680. extra: 1603/1514,
  46681. bottom: 14/1617
  46682. }
  46683. },
  46684. },
  46685. [
  46686. {
  46687. name: "Normal",
  46688. height: math.unit(9, "feet"),
  46689. default: true
  46690. },
  46691. ]
  46692. ))
  46693. characterMakers.push(() => makeCharacter(
  46694. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  46695. {
  46696. side: {
  46697. height: math.unit(2, "meters"),
  46698. weight: math.unit(300, "kg"),
  46699. name: "Side",
  46700. image: {
  46701. source: "./media/characters/ceruleus/side.svg",
  46702. extra: 1068/974,
  46703. bottom: 126/1194
  46704. }
  46705. },
  46706. },
  46707. [
  46708. {
  46709. name: "Normal",
  46710. height: math.unit(16, "meters"),
  46711. default: true
  46712. },
  46713. ]
  46714. ))
  46715. characterMakers.push(() => makeCharacter(
  46716. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  46717. {
  46718. front: {
  46719. height: math.unit(9, "feet"),
  46720. weight: math.unit(500, "kg"),
  46721. name: "Front",
  46722. image: {
  46723. source: "./media/characters/acouya/front.svg",
  46724. extra: 1660/1473,
  46725. bottom: 28/1688
  46726. }
  46727. },
  46728. },
  46729. [
  46730. {
  46731. name: "Normal",
  46732. height: math.unit(9, "feet"),
  46733. default: true
  46734. },
  46735. ]
  46736. ))
  46737. characterMakers.push(() => makeCharacter(
  46738. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  46739. {
  46740. front: {
  46741. height: math.unit(5 + 6/12, "feet"),
  46742. weight: math.unit(195, "lb"),
  46743. name: "Front",
  46744. image: {
  46745. source: "./media/characters/vant/front.svg",
  46746. extra: 1396/1320,
  46747. bottom: 20/1416
  46748. }
  46749. },
  46750. back: {
  46751. height: math.unit(5 + 6/12, "feet"),
  46752. weight: math.unit(195, "lb"),
  46753. name: "Back",
  46754. image: {
  46755. source: "./media/characters/vant/back.svg",
  46756. extra: 1396/1320,
  46757. bottom: 20/1416
  46758. }
  46759. },
  46760. maw: {
  46761. height: math.unit(0.75, "feet"),
  46762. name: "Maw",
  46763. image: {
  46764. source: "./media/characters/vant/maw.svg"
  46765. }
  46766. },
  46767. paw: {
  46768. height: math.unit(1.07, "feet"),
  46769. name: "Paw",
  46770. image: {
  46771. source: "./media/characters/vant/paw.svg"
  46772. }
  46773. },
  46774. },
  46775. [
  46776. {
  46777. name: "Micro",
  46778. height: math.unit(0.25, "inches")
  46779. },
  46780. {
  46781. name: "Normal",
  46782. height: math.unit(5 + 6/12, "feet"),
  46783. default: true
  46784. },
  46785. {
  46786. name: "Macro",
  46787. height: math.unit(75, "feet")
  46788. },
  46789. ]
  46790. ))
  46791. characterMakers.push(() => makeCharacter(
  46792. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  46793. {
  46794. front: {
  46795. height: math.unit(30, "meters"),
  46796. weight: math.unit(363, "tons"),
  46797. name: "Front",
  46798. image: {
  46799. source: "./media/characters/ahra/front.svg",
  46800. extra: 1914/1814,
  46801. bottom: 46/1960
  46802. }
  46803. },
  46804. },
  46805. [
  46806. {
  46807. name: "Macro",
  46808. height: math.unit(30, "meters"),
  46809. default: true
  46810. },
  46811. ]
  46812. ))
  46813. characterMakers.push(() => makeCharacter(
  46814. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  46815. {
  46816. undressed: {
  46817. height: math.unit(2, "m"),
  46818. weight: math.unit(250, "kg"),
  46819. name: "Undressed",
  46820. image: {
  46821. source: "./media/characters/coriander/undressed.svg",
  46822. extra: 1757/1606,
  46823. bottom: 107/1864
  46824. }
  46825. },
  46826. dressed: {
  46827. height: math.unit(2, "m"),
  46828. weight: math.unit(250, "kg"),
  46829. name: "Dressed",
  46830. image: {
  46831. source: "./media/characters/coriander/dressed.svg",
  46832. extra: 1757/1606,
  46833. bottom: 107/1864
  46834. }
  46835. },
  46836. },
  46837. [
  46838. {
  46839. name: "Normal",
  46840. height: math.unit(4, "meters"),
  46841. default: true
  46842. },
  46843. {
  46844. name: "XL",
  46845. height: math.unit(6, "meters")
  46846. },
  46847. {
  46848. name: "XXL",
  46849. height: math.unit(8, "meters")
  46850. },
  46851. ]
  46852. ))
  46853. characterMakers.push(() => makeCharacter(
  46854. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  46855. {
  46856. front: {
  46857. height: math.unit(6, "feet"),
  46858. name: "Front",
  46859. image: {
  46860. source: "./media/characters/syrinx/front.svg",
  46861. extra: 1557/1259,
  46862. bottom: 171/1728
  46863. }
  46864. },
  46865. },
  46866. [
  46867. {
  46868. name: "Normal",
  46869. height: math.unit(6 + 3/12, "feet"),
  46870. default: true
  46871. },
  46872. ]
  46873. ))
  46874. characterMakers.push(() => makeCharacter(
  46875. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  46876. {
  46877. front: {
  46878. height: math.unit(11 + 6/12, "feet"),
  46879. weight: math.unit(1.5, "tons"),
  46880. name: "Front",
  46881. image: {
  46882. source: "./media/characters/bor/front.svg",
  46883. extra: 1189/1109,
  46884. bottom: 170/1359
  46885. }
  46886. },
  46887. },
  46888. [
  46889. {
  46890. name: "Normal",
  46891. height: math.unit(11 + 6/12, "feet"),
  46892. default: true
  46893. },
  46894. {
  46895. name: "Macro",
  46896. height: math.unit(32 + 9/12, "feet")
  46897. },
  46898. ]
  46899. ))
  46900. characterMakers.push(() => makeCharacter(
  46901. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  46902. {
  46903. anthro: {
  46904. height: math.unit(9, "feet"),
  46905. weight: math.unit(2076, "lb"),
  46906. name: "Anthro",
  46907. image: {
  46908. source: "./media/characters/abacus/anthro.svg",
  46909. extra: 1540/1494,
  46910. bottom: 233/1773
  46911. }
  46912. },
  46913. pigeon: {
  46914. height: math.unit(1, "feet"),
  46915. name: "Pigeon",
  46916. image: {
  46917. source: "./media/characters/abacus/pigeon.svg",
  46918. extra: 528/525,
  46919. bottom: 46/574
  46920. }
  46921. },
  46922. },
  46923. [
  46924. {
  46925. name: "Normal",
  46926. height: math.unit(9, "feet"),
  46927. default: true
  46928. },
  46929. ]
  46930. ))
  46931. characterMakers.push(() => makeCharacter(
  46932. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  46933. {
  46934. side: {
  46935. height: math.unit(6, "feet"),
  46936. name: "Side",
  46937. image: {
  46938. source: "./media/characters/delkhan/side.svg",
  46939. extra: 1884/1786,
  46940. bottom: 308/2192
  46941. }
  46942. },
  46943. head: {
  46944. height: math.unit(3.38, "feet"),
  46945. name: "Head",
  46946. image: {
  46947. source: "./media/characters/delkhan/head.svg"
  46948. }
  46949. },
  46950. },
  46951. [
  46952. {
  46953. name: "Normal",
  46954. height: math.unit(72, "feet"),
  46955. default: true
  46956. },
  46957. {
  46958. name: "Giant",
  46959. height: math.unit(172, "feet")
  46960. },
  46961. ]
  46962. ))
  46963. characterMakers.push(() => makeCharacter(
  46964. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  46965. {
  46966. standing: {
  46967. height: math.unit(6, "feet"),
  46968. name: "Standing",
  46969. image: {
  46970. source: "./media/characters/euchidat/standing.svg",
  46971. extra: 1612/1553,
  46972. bottom: 116/1728
  46973. }
  46974. },
  46975. leaning: {
  46976. height: math.unit(6, "feet"),
  46977. name: "Leaning",
  46978. image: {
  46979. source: "./media/characters/euchidat/leaning.svg",
  46980. extra: 1719/1674,
  46981. bottom: 27/1746
  46982. }
  46983. },
  46984. },
  46985. [
  46986. {
  46987. name: "Normal",
  46988. height: math.unit(175, "feet"),
  46989. default: true
  46990. },
  46991. {
  46992. name: "Megamacro",
  46993. height: math.unit(190, "miles")
  46994. },
  46995. {
  46996. name: "Gigamacro",
  46997. height: math.unit(190000, "miles")
  46998. },
  46999. ]
  47000. ))
  47001. characterMakers.push(() => makeCharacter(
  47002. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  47003. {
  47004. front: {
  47005. height: math.unit(6, "feet"),
  47006. weight: math.unit(150, "lb"),
  47007. name: "Front",
  47008. image: {
  47009. source: "./media/characters/rebecca-stack/front.svg",
  47010. extra: 1256/1201,
  47011. bottom: 18/1274
  47012. }
  47013. },
  47014. },
  47015. [
  47016. {
  47017. name: "Normal",
  47018. height: math.unit(5 + 8/12, "feet"),
  47019. default: true
  47020. },
  47021. {
  47022. name: "Demolitionist",
  47023. height: math.unit(200, "feet")
  47024. },
  47025. {
  47026. name: "Out of Control",
  47027. height: math.unit(2, "miles")
  47028. },
  47029. {
  47030. name: "Giga",
  47031. height: math.unit(7200, "miles")
  47032. },
  47033. ]
  47034. ))
  47035. characterMakers.push(() => makeCharacter(
  47036. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  47037. {
  47038. front: {
  47039. height: math.unit(6, "feet"),
  47040. weight: math.unit(150, "lb"),
  47041. name: "Front",
  47042. image: {
  47043. source: "./media/characters/jenny-cartwright/front.svg",
  47044. extra: 1384/1376,
  47045. bottom: 58/1442
  47046. }
  47047. },
  47048. },
  47049. [
  47050. {
  47051. name: "Normal",
  47052. height: math.unit(6 + 7/12, "feet"),
  47053. default: true
  47054. },
  47055. {
  47056. name: "Librarian",
  47057. height: math.unit(55, "feet")
  47058. },
  47059. {
  47060. name: "Sightseer",
  47061. height: math.unit(50, "miles")
  47062. },
  47063. {
  47064. name: "Giga",
  47065. height: math.unit(30000, "miles")
  47066. },
  47067. ]
  47068. ))
  47069. characterMakers.push(() => makeCharacter(
  47070. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  47071. {
  47072. nude: {
  47073. height: math.unit(8, "feet"),
  47074. weight: math.unit(225, "lb"),
  47075. name: "Nude",
  47076. image: {
  47077. source: "./media/characters/marvy/nude.svg",
  47078. extra: 1900/1683,
  47079. bottom: 89/1989
  47080. }
  47081. },
  47082. dressed: {
  47083. height: math.unit(8, "feet"),
  47084. weight: math.unit(225, "lb"),
  47085. name: "Dressed",
  47086. image: {
  47087. source: "./media/characters/marvy/dressed.svg",
  47088. extra: 1900/1683,
  47089. bottom: 89/1989
  47090. }
  47091. },
  47092. head: {
  47093. height: math.unit(2.85, "feet"),
  47094. name: "Head",
  47095. image: {
  47096. source: "./media/characters/marvy/head.svg"
  47097. }
  47098. },
  47099. },
  47100. [
  47101. {
  47102. name: "Normal",
  47103. height: math.unit(8, "feet"),
  47104. default: true
  47105. },
  47106. ]
  47107. ))
  47108. characterMakers.push(() => makeCharacter(
  47109. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  47110. {
  47111. front: {
  47112. height: math.unit(8, "feet"),
  47113. weight: math.unit(250, "lb"),
  47114. name: "Front",
  47115. image: {
  47116. source: "./media/characters/leah/front.svg",
  47117. extra: 1257/1149,
  47118. bottom: 109/1366
  47119. }
  47120. },
  47121. },
  47122. [
  47123. {
  47124. name: "Normal",
  47125. height: math.unit(8, "feet"),
  47126. default: true
  47127. },
  47128. {
  47129. name: "Minimacro",
  47130. height: math.unit(40, "feet")
  47131. },
  47132. {
  47133. name: "Macro",
  47134. height: math.unit(124, "feet")
  47135. },
  47136. {
  47137. name: "Megamacro",
  47138. height: math.unit(850, "feet")
  47139. },
  47140. ]
  47141. ))
  47142. characterMakers.push(() => makeCharacter(
  47143. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  47144. {
  47145. side: {
  47146. height: math.unit(13 + 6/12, "feet"),
  47147. weight: math.unit(3200, "lb"),
  47148. name: "Side",
  47149. image: {
  47150. source: "./media/characters/alvir/side.svg",
  47151. extra: 896/589,
  47152. bottom: 26/922
  47153. }
  47154. },
  47155. },
  47156. [
  47157. {
  47158. name: "Normal",
  47159. height: math.unit(13 + 6/12, "feet"),
  47160. default: true
  47161. },
  47162. ]
  47163. ))
  47164. characterMakers.push(() => makeCharacter(
  47165. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  47166. {
  47167. front: {
  47168. height: math.unit(5 + 4/12, "feet"),
  47169. weight: math.unit(236, "lb"),
  47170. name: "Front",
  47171. image: {
  47172. source: "./media/characters/zaina-khalil/front.svg",
  47173. extra: 1533/1485,
  47174. bottom: 94/1627
  47175. }
  47176. },
  47177. side: {
  47178. height: math.unit(5 + 4/12, "feet"),
  47179. weight: math.unit(236, "lb"),
  47180. name: "Side",
  47181. image: {
  47182. source: "./media/characters/zaina-khalil/side.svg",
  47183. extra: 1537/1498,
  47184. bottom: 66/1603
  47185. }
  47186. },
  47187. back: {
  47188. height: math.unit(5 + 4/12, "feet"),
  47189. weight: math.unit(236, "lb"),
  47190. name: "Back",
  47191. image: {
  47192. source: "./media/characters/zaina-khalil/back.svg",
  47193. extra: 1546/1494,
  47194. bottom: 89/1635
  47195. }
  47196. },
  47197. },
  47198. [
  47199. {
  47200. name: "Normal",
  47201. height: math.unit(5 + 4/12, "feet"),
  47202. default: true
  47203. },
  47204. ]
  47205. ))
  47206. characterMakers.push(() => makeCharacter(
  47207. { name: "Terry", species: ["husky"], tags: ["taur"] },
  47208. {
  47209. side: {
  47210. height: math.unit(12, "feet"),
  47211. weight: math.unit(4000, "lb"),
  47212. name: "Side",
  47213. image: {
  47214. source: "./media/characters/terry/side.svg",
  47215. extra: 1518/1439,
  47216. bottom: 149/1667
  47217. }
  47218. },
  47219. },
  47220. [
  47221. {
  47222. name: "Normal",
  47223. height: math.unit(12, "feet"),
  47224. default: true
  47225. },
  47226. ]
  47227. ))
  47228. characterMakers.push(() => makeCharacter(
  47229. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  47230. {
  47231. front: {
  47232. height: math.unit(12, "feet"),
  47233. weight: math.unit(1500, "lb"),
  47234. name: "Front",
  47235. image: {
  47236. source: "./media/characters/kahea/front.svg",
  47237. extra: 1722/1617,
  47238. bottom: 179/1901
  47239. }
  47240. },
  47241. },
  47242. [
  47243. {
  47244. name: "Normal",
  47245. height: math.unit(12, "feet"),
  47246. default: true
  47247. },
  47248. ]
  47249. ))
  47250. characterMakers.push(() => makeCharacter(
  47251. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  47252. {
  47253. demonFront: {
  47254. height: math.unit(36, "feet"),
  47255. name: "Front",
  47256. image: {
  47257. source: "./media/characters/alex-xuria/demon-front.svg",
  47258. extra: 1705/1673,
  47259. bottom: 198/1903
  47260. },
  47261. form: "demon",
  47262. default: true
  47263. },
  47264. demonBack: {
  47265. height: math.unit(36, "feet"),
  47266. name: "Back",
  47267. image: {
  47268. source: "./media/characters/alex-xuria/demon-back.svg",
  47269. extra: 1725/1693,
  47270. bottom: 70/1795
  47271. },
  47272. form: "demon"
  47273. },
  47274. demonHead: {
  47275. height: math.unit(2.14, "meters"),
  47276. name: "Head",
  47277. image: {
  47278. source: "./media/characters/alex-xuria/demon-head.svg"
  47279. },
  47280. form: "demon"
  47281. },
  47282. demonHand: {
  47283. height: math.unit(1.61, "meters"),
  47284. name: "Hand",
  47285. image: {
  47286. source: "./media/characters/alex-xuria/demon-hand.svg"
  47287. },
  47288. form: "demon"
  47289. },
  47290. demonPaw: {
  47291. height: math.unit(1.35, "meters"),
  47292. name: "Paw",
  47293. image: {
  47294. source: "./media/characters/alex-xuria/demon-paw.svg"
  47295. },
  47296. form: "demon"
  47297. },
  47298. demonFoot: {
  47299. height: math.unit(2.2, "meters"),
  47300. name: "Foot",
  47301. image: {
  47302. source: "./media/characters/alex-xuria/demon-foot.svg"
  47303. },
  47304. form: "demon"
  47305. },
  47306. demonCock: {
  47307. height: math.unit(1.74, "meters"),
  47308. name: "Cock",
  47309. image: {
  47310. source: "./media/characters/alex-xuria/demon-cock.svg"
  47311. },
  47312. form: "demon"
  47313. },
  47314. demonTailClosed: {
  47315. height: math.unit(1.47, "meters"),
  47316. name: "Tail (Closed)",
  47317. image: {
  47318. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  47319. },
  47320. form: "demon"
  47321. },
  47322. demonTailOpen: {
  47323. height: math.unit(2.85, "meters"),
  47324. name: "Tail (Open)",
  47325. image: {
  47326. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  47327. },
  47328. form: "demon"
  47329. },
  47330. incubusFront: {
  47331. height: math.unit(12, "feet"),
  47332. name: "Front",
  47333. image: {
  47334. source: "./media/characters/alex-xuria/incubus-front.svg",
  47335. extra: 1754/1677,
  47336. bottom: 125/1879
  47337. },
  47338. form: "incubus",
  47339. default: true
  47340. },
  47341. incubusBack: {
  47342. height: math.unit(12, "feet"),
  47343. name: "Back",
  47344. image: {
  47345. source: "./media/characters/alex-xuria/incubus-back.svg",
  47346. extra: 1702/1647,
  47347. bottom: 30/1732
  47348. },
  47349. form: "incubus"
  47350. },
  47351. incubusHead: {
  47352. height: math.unit(3.45, "feet"),
  47353. name: "Head",
  47354. image: {
  47355. source: "./media/characters/alex-xuria/incubus-head.svg"
  47356. },
  47357. form: "incubus"
  47358. },
  47359. rabbitFront: {
  47360. height: math.unit(6, "feet"),
  47361. name: "Front",
  47362. image: {
  47363. source: "./media/characters/alex-xuria/rabbit-front.svg",
  47364. extra: 1369/1349,
  47365. bottom: 45/1414
  47366. },
  47367. form: "rabbit",
  47368. default: true
  47369. },
  47370. rabbitSide: {
  47371. height: math.unit(6, "feet"),
  47372. name: "Side",
  47373. image: {
  47374. source: "./media/characters/alex-xuria/rabbit-side.svg",
  47375. extra: 1370/1356,
  47376. bottom: 37/1407
  47377. },
  47378. form: "rabbit"
  47379. },
  47380. rabbitBack: {
  47381. height: math.unit(6, "feet"),
  47382. name: "Back",
  47383. image: {
  47384. source: "./media/characters/alex-xuria/rabbit-back.svg",
  47385. extra: 1375/1358,
  47386. bottom: 43/1418
  47387. },
  47388. form: "rabbit"
  47389. },
  47390. },
  47391. [
  47392. {
  47393. name: "Normal",
  47394. height: math.unit(6, "feet"),
  47395. default: true,
  47396. form: "rabbit"
  47397. },
  47398. {
  47399. name: "Incubus",
  47400. height: math.unit(12, "feet"),
  47401. default: true,
  47402. form: "incubus"
  47403. },
  47404. {
  47405. name: "Demon",
  47406. height: math.unit(36, "feet"),
  47407. default: true,
  47408. form: "demon"
  47409. }
  47410. ],
  47411. {
  47412. "demon": {
  47413. name: "Demon",
  47414. default: true
  47415. },
  47416. "incubus": {
  47417. name: "Incubus",
  47418. },
  47419. "rabbit": {
  47420. name: "Rabbit"
  47421. }
  47422. }
  47423. ))
  47424. characterMakers.push(() => makeCharacter(
  47425. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  47426. {
  47427. front: {
  47428. height: math.unit(7 + 5/12, "feet"),
  47429. weight: math.unit(510, "lb"),
  47430. name: "Front",
  47431. image: {
  47432. source: "./media/characters/syrup/front.svg",
  47433. extra: 932/916,
  47434. bottom: 26/958
  47435. }
  47436. },
  47437. },
  47438. [
  47439. {
  47440. name: "Normal",
  47441. height: math.unit(7 + 5/12, "feet"),
  47442. default: true
  47443. },
  47444. {
  47445. name: "Big",
  47446. height: math.unit(50, "feet")
  47447. },
  47448. {
  47449. name: "Macro",
  47450. height: math.unit(300, "feet")
  47451. },
  47452. {
  47453. name: "Megamacro",
  47454. height: math.unit(1, "mile")
  47455. },
  47456. ]
  47457. ))
  47458. characterMakers.push(() => makeCharacter(
  47459. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  47460. {
  47461. front: {
  47462. height: math.unit(6 + 9/12, "feet"),
  47463. name: "Front",
  47464. image: {
  47465. source: "./media/characters/zeimne/front.svg",
  47466. extra: 1969/1806,
  47467. bottom: 53/2022
  47468. }
  47469. },
  47470. },
  47471. [
  47472. {
  47473. name: "Normal",
  47474. height: math.unit(6 + 9/12, "feet"),
  47475. default: true
  47476. },
  47477. {
  47478. name: "Giant",
  47479. height: math.unit(550, "feet")
  47480. },
  47481. {
  47482. name: "Mega",
  47483. height: math.unit(3, "miles")
  47484. },
  47485. {
  47486. name: "Giga",
  47487. height: math.unit(250, "miles")
  47488. },
  47489. {
  47490. name: "Tera",
  47491. height: math.unit(1, "AU")
  47492. },
  47493. ]
  47494. ))
  47495. characterMakers.push(() => makeCharacter(
  47496. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  47497. {
  47498. front: {
  47499. height: math.unit(5 + 2/12, "feet"),
  47500. name: "Front",
  47501. image: {
  47502. source: "./media/characters/grar/front.svg",
  47503. extra: 1331/1119,
  47504. bottom: 60/1391
  47505. }
  47506. },
  47507. back: {
  47508. height: math.unit(5 + 2/12, "feet"),
  47509. name: "Back",
  47510. image: {
  47511. source: "./media/characters/grar/back.svg",
  47512. extra: 1385/1169,
  47513. bottom: 23/1408
  47514. }
  47515. },
  47516. },
  47517. [
  47518. {
  47519. name: "Normal",
  47520. height: math.unit(5 + 2/12, "feet"),
  47521. default: true
  47522. },
  47523. ]
  47524. ))
  47525. characterMakers.push(() => makeCharacter(
  47526. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  47527. {
  47528. front: {
  47529. height: math.unit(13 + 7/12, "feet"),
  47530. weight: math.unit(2200, "lb"),
  47531. name: "Front",
  47532. image: {
  47533. source: "./media/characters/endraya/front.svg",
  47534. extra: 1289/1215,
  47535. bottom: 50/1339
  47536. }
  47537. },
  47538. nude: {
  47539. height: math.unit(13 + 7/12, "feet"),
  47540. weight: math.unit(2200, "lb"),
  47541. name: "Nude",
  47542. image: {
  47543. source: "./media/characters/endraya/nude.svg",
  47544. extra: 1247/1171,
  47545. bottom: 40/1287
  47546. }
  47547. },
  47548. head: {
  47549. height: math.unit(2.6, "feet"),
  47550. name: "Head",
  47551. image: {
  47552. source: "./media/characters/endraya/head.svg"
  47553. }
  47554. },
  47555. slit: {
  47556. height: math.unit(3.4, "feet"),
  47557. name: "Slit",
  47558. image: {
  47559. source: "./media/characters/endraya/slit.svg"
  47560. }
  47561. },
  47562. },
  47563. [
  47564. {
  47565. name: "Normal",
  47566. height: math.unit(13 + 7/12, "feet"),
  47567. default: true
  47568. },
  47569. {
  47570. name: "Macro",
  47571. height: math.unit(200, "feet")
  47572. },
  47573. ]
  47574. ))
  47575. characterMakers.push(() => makeCharacter(
  47576. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  47577. {
  47578. front: {
  47579. height: math.unit(1.81, "meters"),
  47580. weight: math.unit(69, "kg"),
  47581. name: "Front",
  47582. image: {
  47583. source: "./media/characters/rodryana/front.svg",
  47584. extra: 2002/1921,
  47585. bottom: 53/2055
  47586. }
  47587. },
  47588. back: {
  47589. height: math.unit(1.81, "meters"),
  47590. weight: math.unit(69, "kg"),
  47591. name: "Back",
  47592. image: {
  47593. source: "./media/characters/rodryana/back.svg",
  47594. extra: 1993/1926,
  47595. bottom: 48/2041
  47596. }
  47597. },
  47598. maw: {
  47599. height: math.unit(0.19769417475, "meters"),
  47600. name: "Maw",
  47601. image: {
  47602. source: "./media/characters/rodryana/maw.svg"
  47603. }
  47604. },
  47605. slit: {
  47606. height: math.unit(0.31631067961, "meters"),
  47607. name: "Slit",
  47608. image: {
  47609. source: "./media/characters/rodryana/slit.svg"
  47610. }
  47611. },
  47612. },
  47613. [
  47614. {
  47615. name: "Normal",
  47616. height: math.unit(1.81, "meters")
  47617. },
  47618. {
  47619. name: "Mini Macro",
  47620. height: math.unit(181, "meters")
  47621. },
  47622. {
  47623. name: "Macro",
  47624. height: math.unit(452, "meters"),
  47625. default: true
  47626. },
  47627. {
  47628. name: "Mega Macro",
  47629. height: math.unit(1.375, "km")
  47630. },
  47631. {
  47632. name: "Giga Macro",
  47633. height: math.unit(13.575, "km")
  47634. },
  47635. ]
  47636. ))
  47637. characterMakers.push(() => makeCharacter(
  47638. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  47639. {
  47640. front: {
  47641. height: math.unit(6, "feet"),
  47642. weight: math.unit(1000, "lb"),
  47643. name: "Front",
  47644. image: {
  47645. source: "./media/characters/asaya/front.svg",
  47646. extra: 1460/1200,
  47647. bottom: 71/1531
  47648. }
  47649. },
  47650. },
  47651. [
  47652. {
  47653. name: "Normal",
  47654. height: math.unit(8, "km"),
  47655. default: true
  47656. },
  47657. ]
  47658. ))
  47659. characterMakers.push(() => makeCharacter(
  47660. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  47661. {
  47662. front: {
  47663. height: math.unit(3.5, "meters"),
  47664. name: "Front",
  47665. image: {
  47666. source: "./media/characters/sarzu-and-israz/front.svg",
  47667. extra: 1570/1558,
  47668. bottom: 150/1720
  47669. },
  47670. },
  47671. back: {
  47672. height: math.unit(3.5, "meters"),
  47673. name: "Back",
  47674. image: {
  47675. source: "./media/characters/sarzu-and-israz/back.svg",
  47676. extra: 1523/1509,
  47677. bottom: 132/1655
  47678. },
  47679. },
  47680. frontFemale: {
  47681. height: math.unit(3.5, "meters"),
  47682. name: "Front (Female)",
  47683. image: {
  47684. source: "./media/characters/sarzu-and-israz/front-female.svg",
  47685. extra: 1570/1558,
  47686. bottom: 150/1720
  47687. },
  47688. },
  47689. frontHerm: {
  47690. height: math.unit(3.5, "meters"),
  47691. name: "Front (Herm)",
  47692. image: {
  47693. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  47694. extra: 1570/1558,
  47695. bottom: 150/1720
  47696. },
  47697. },
  47698. },
  47699. [
  47700. {
  47701. name: "Normal",
  47702. height: math.unit(3.5, "meters"),
  47703. default: true,
  47704. },
  47705. {
  47706. name: "Macro",
  47707. height: math.unit(65.5, "meters"),
  47708. },
  47709. ],
  47710. ))
  47711. characterMakers.push(() => makeCharacter(
  47712. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  47713. {
  47714. front: {
  47715. height: math.unit(6, "feet"),
  47716. weight: math.unit(250, "lb"),
  47717. name: "Front",
  47718. image: {
  47719. source: "./media/characters/zenimma/front.svg",
  47720. extra: 1346/1320,
  47721. bottom: 58/1404
  47722. }
  47723. },
  47724. back: {
  47725. height: math.unit(6, "feet"),
  47726. weight: math.unit(250, "lb"),
  47727. name: "Back",
  47728. image: {
  47729. source: "./media/characters/zenimma/back.svg",
  47730. extra: 1324/1308,
  47731. bottom: 44/1368
  47732. }
  47733. },
  47734. dick: {
  47735. height: math.unit(1.44, "feet"),
  47736. name: "Dick",
  47737. image: {
  47738. source: "./media/characters/zenimma/dick.svg"
  47739. }
  47740. },
  47741. },
  47742. [
  47743. {
  47744. name: "Canon Height",
  47745. height: math.unit(66, "miles"),
  47746. default: true
  47747. },
  47748. ]
  47749. ))
  47750. characterMakers.push(() => makeCharacter(
  47751. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  47752. {
  47753. nude: {
  47754. height: math.unit(6, "feet"),
  47755. weight: math.unit(150, "lb"),
  47756. name: "Nude",
  47757. image: {
  47758. source: "./media/characters/shavon/nude.svg",
  47759. extra: 1242/1096,
  47760. bottom: 98/1340
  47761. }
  47762. },
  47763. dressed: {
  47764. height: math.unit(6, "feet"),
  47765. weight: math.unit(150, "lb"),
  47766. name: "Dressed",
  47767. image: {
  47768. source: "./media/characters/shavon/dressed.svg",
  47769. extra: 1242/1096,
  47770. bottom: 98/1340
  47771. }
  47772. },
  47773. },
  47774. [
  47775. {
  47776. name: "Macro",
  47777. height: math.unit(255, "feet"),
  47778. default: true
  47779. },
  47780. ]
  47781. ))
  47782. characterMakers.push(() => makeCharacter(
  47783. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  47784. {
  47785. front: {
  47786. height: math.unit(6, "feet"),
  47787. name: "Front",
  47788. image: {
  47789. source: "./media/characters/steph/front.svg",
  47790. extra: 1430/1330,
  47791. bottom: 54/1484
  47792. }
  47793. },
  47794. },
  47795. [
  47796. {
  47797. name: "Normal",
  47798. height: math.unit(6, "feet"),
  47799. default: true
  47800. },
  47801. ]
  47802. ))
  47803. characterMakers.push(() => makeCharacter(
  47804. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  47805. {
  47806. front: {
  47807. height: math.unit(9, "feet"),
  47808. weight: math.unit(400, "lb"),
  47809. name: "Front",
  47810. image: {
  47811. source: "./media/characters/kil'aman/front.svg",
  47812. extra: 1210/1159,
  47813. bottom: 109/1319
  47814. }
  47815. },
  47816. head: {
  47817. height: math.unit(2.14, "feet"),
  47818. name: "Head",
  47819. image: {
  47820. source: "./media/characters/kil'aman/head.svg"
  47821. }
  47822. },
  47823. maw: {
  47824. height: math.unit(1.21, "feet"),
  47825. name: "Maw",
  47826. image: {
  47827. source: "./media/characters/kil'aman/maw.svg"
  47828. }
  47829. },
  47830. foot: {
  47831. height: math.unit(1.7, "feet"),
  47832. name: "Foot",
  47833. image: {
  47834. source: "./media/characters/kil'aman/foot.svg"
  47835. }
  47836. },
  47837. dick: {
  47838. height: math.unit(2.1, "feet"),
  47839. name: "Dick",
  47840. image: {
  47841. source: "./media/characters/kil'aman/dick.svg"
  47842. }
  47843. },
  47844. },
  47845. [
  47846. {
  47847. name: "Normal",
  47848. height: math.unit(9, "feet")
  47849. },
  47850. {
  47851. name: "Canon Height",
  47852. height: math.unit(10, "miles"),
  47853. default: true
  47854. },
  47855. {
  47856. name: "Maximum",
  47857. height: math.unit(6e9, "miles")
  47858. },
  47859. ]
  47860. ))
  47861. characterMakers.push(() => makeCharacter(
  47862. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  47863. {
  47864. front: {
  47865. height: math.unit(90, "feet"),
  47866. weight: math.unit(675000, "lb"),
  47867. name: "Front",
  47868. image: {
  47869. source: "./media/characters/qadan/front.svg",
  47870. extra: 1012/1004,
  47871. bottom: 78/1090
  47872. }
  47873. },
  47874. back: {
  47875. height: math.unit(90, "feet"),
  47876. weight: math.unit(675000, "lb"),
  47877. name: "Back",
  47878. image: {
  47879. source: "./media/characters/qadan/back.svg",
  47880. extra: 1042/1031,
  47881. bottom: 55/1097
  47882. }
  47883. },
  47884. armored: {
  47885. height: math.unit(90, "feet"),
  47886. weight: math.unit(675000, "lb"),
  47887. name: "Armored",
  47888. image: {
  47889. source: "./media/characters/qadan/armored.svg",
  47890. extra: 1047/1037,
  47891. bottom: 48/1095
  47892. }
  47893. },
  47894. },
  47895. [
  47896. {
  47897. name: "Normal",
  47898. height: math.unit(90, "feet"),
  47899. default: true
  47900. },
  47901. ]
  47902. ))
  47903. characterMakers.push(() => makeCharacter(
  47904. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  47905. {
  47906. front: {
  47907. height: math.unit(6, "feet"),
  47908. weight: math.unit(225, "lb"),
  47909. name: "Front",
  47910. image: {
  47911. source: "./media/characters/brooke/front.svg",
  47912. extra: 1050/1010,
  47913. bottom: 66/1116
  47914. }
  47915. },
  47916. back: {
  47917. height: math.unit(6, "feet"),
  47918. weight: math.unit(225, "lb"),
  47919. name: "Back",
  47920. image: {
  47921. source: "./media/characters/brooke/back.svg",
  47922. extra: 1053/1013,
  47923. bottom: 41/1094
  47924. }
  47925. },
  47926. dressed: {
  47927. height: math.unit(6, "feet"),
  47928. weight: math.unit(225, "lb"),
  47929. name: "Dressed",
  47930. image: {
  47931. source: "./media/characters/brooke/dressed.svg",
  47932. extra: 1050/1010,
  47933. bottom: 66/1116
  47934. }
  47935. },
  47936. },
  47937. [
  47938. {
  47939. name: "Canon Height",
  47940. height: math.unit(500, "miles"),
  47941. default: true
  47942. },
  47943. ]
  47944. ))
  47945. characterMakers.push(() => makeCharacter(
  47946. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  47947. {
  47948. front: {
  47949. height: math.unit(6 + 2/12, "feet"),
  47950. weight: math.unit(210, "lb"),
  47951. name: "Front",
  47952. image: {
  47953. source: "./media/characters/wubs/front.svg",
  47954. extra: 1345/1325,
  47955. bottom: 70/1415
  47956. }
  47957. },
  47958. back: {
  47959. height: math.unit(6 + 2/12, "feet"),
  47960. weight: math.unit(210, "lb"),
  47961. name: "Back",
  47962. image: {
  47963. source: "./media/characters/wubs/back.svg",
  47964. extra: 1296/1275,
  47965. bottom: 58/1354
  47966. }
  47967. },
  47968. },
  47969. [
  47970. {
  47971. name: "Normal",
  47972. height: math.unit(6 + 2/12, "feet"),
  47973. default: true
  47974. },
  47975. {
  47976. name: "Macro",
  47977. height: math.unit(1000, "feet")
  47978. },
  47979. {
  47980. name: "Megamacro",
  47981. height: math.unit(1, "mile")
  47982. },
  47983. ]
  47984. ))
  47985. characterMakers.push(() => makeCharacter(
  47986. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  47987. {
  47988. front: {
  47989. height: math.unit(4, "feet"),
  47990. weight: math.unit(120, "lb"),
  47991. name: "Front",
  47992. image: {
  47993. source: "./media/characters/blue/front.svg",
  47994. extra: 1636/1525,
  47995. bottom: 43/1679
  47996. }
  47997. },
  47998. back: {
  47999. height: math.unit(4, "feet"),
  48000. weight: math.unit(120, "lb"),
  48001. name: "Back",
  48002. image: {
  48003. source: "./media/characters/blue/back.svg",
  48004. extra: 1660/1560,
  48005. bottom: 57/1717
  48006. }
  48007. },
  48008. paws: {
  48009. height: math.unit(0.826, "feet"),
  48010. name: "Paws",
  48011. image: {
  48012. source: "./media/characters/blue/paws.svg"
  48013. }
  48014. },
  48015. },
  48016. [
  48017. {
  48018. name: "Micro",
  48019. height: math.unit(3, "inches")
  48020. },
  48021. {
  48022. name: "Normal",
  48023. height: math.unit(4, "feet"),
  48024. default: true
  48025. },
  48026. {
  48027. name: "Femenine Form",
  48028. height: math.unit(14, "feet")
  48029. },
  48030. {
  48031. name: "Werebat Form",
  48032. height: math.unit(18, "feet")
  48033. },
  48034. ]
  48035. ))
  48036. characterMakers.push(() => makeCharacter(
  48037. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  48038. {
  48039. female: {
  48040. height: math.unit(7 + 4/12, "feet"),
  48041. weight: math.unit(243, "lb"),
  48042. name: "Female",
  48043. image: {
  48044. source: "./media/characters/kaya/female.svg",
  48045. extra: 975/898,
  48046. bottom: 34/1009
  48047. }
  48048. },
  48049. herm: {
  48050. height: math.unit(7 + 4/12, "feet"),
  48051. weight: math.unit(243, "lb"),
  48052. name: "Herm",
  48053. image: {
  48054. source: "./media/characters/kaya/herm.svg",
  48055. extra: 975/898,
  48056. bottom: 34/1009
  48057. }
  48058. },
  48059. },
  48060. [
  48061. {
  48062. name: "Normal",
  48063. height: math.unit(7 + 4/12, "feet"),
  48064. default: true
  48065. },
  48066. ]
  48067. ))
  48068. characterMakers.push(() => makeCharacter(
  48069. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  48070. {
  48071. female: {
  48072. height: math.unit(9 + 4/12, "feet"),
  48073. weight: math.unit(398, "lb"),
  48074. name: "Female",
  48075. image: {
  48076. source: "./media/characters/kassandra/female.svg",
  48077. extra: 908/839,
  48078. bottom: 61/969
  48079. }
  48080. },
  48081. intersex: {
  48082. height: math.unit(9 + 4/12, "feet"),
  48083. weight: math.unit(398, "lb"),
  48084. name: "Intersex",
  48085. image: {
  48086. source: "./media/characters/kassandra/intersex.svg",
  48087. extra: 908/839,
  48088. bottom: 61/969
  48089. }
  48090. },
  48091. },
  48092. [
  48093. {
  48094. name: "Normal",
  48095. height: math.unit(9 + 4/12, "feet"),
  48096. default: true
  48097. },
  48098. ]
  48099. ))
  48100. characterMakers.push(() => makeCharacter(
  48101. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  48102. {
  48103. front: {
  48104. height: math.unit(3, "meters"),
  48105. name: "Front",
  48106. image: {
  48107. source: "./media/characters/amy/front.svg",
  48108. extra: 1380/1343,
  48109. bottom: 70/1450
  48110. }
  48111. },
  48112. back: {
  48113. height: math.unit(3, "meters"),
  48114. name: "Back",
  48115. image: {
  48116. source: "./media/characters/amy/back.svg",
  48117. extra: 1380/1347,
  48118. bottom: 66/1446
  48119. }
  48120. },
  48121. },
  48122. [
  48123. {
  48124. name: "Normal",
  48125. height: math.unit(3, "meters"),
  48126. default: true
  48127. },
  48128. ]
  48129. ))
  48130. characterMakers.push(() => makeCharacter(
  48131. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  48132. {
  48133. side: {
  48134. height: math.unit(47, "cm"),
  48135. weight: math.unit(10.8, "kg"),
  48136. name: "Side",
  48137. image: {
  48138. source: "./media/characters/alphaschakal/side.svg",
  48139. extra: 1058/568,
  48140. bottom: 62/1120
  48141. }
  48142. },
  48143. back: {
  48144. height: math.unit(78, "cm"),
  48145. weight: math.unit(10.8, "kg"),
  48146. name: "Back",
  48147. image: {
  48148. source: "./media/characters/alphaschakal/back.svg",
  48149. extra: 1102/942,
  48150. bottom: 185/1287
  48151. }
  48152. },
  48153. head: {
  48154. height: math.unit(28, "cm"),
  48155. name: "Head",
  48156. image: {
  48157. source: "./media/characters/alphaschakal/head.svg",
  48158. extra: 696/508,
  48159. bottom: 0/696
  48160. }
  48161. },
  48162. paw: {
  48163. height: math.unit(16, "cm"),
  48164. name: "Paw",
  48165. image: {
  48166. source: "./media/characters/alphaschakal/paw.svg"
  48167. }
  48168. },
  48169. },
  48170. [
  48171. {
  48172. name: "Normal",
  48173. height: math.unit(47, "cm"),
  48174. default: true
  48175. },
  48176. {
  48177. name: "Macro",
  48178. height: math.unit(340, "cm")
  48179. },
  48180. ]
  48181. ))
  48182. characterMakers.push(() => makeCharacter(
  48183. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  48184. {
  48185. front: {
  48186. height: math.unit(36, "earths"),
  48187. name: "Front",
  48188. image: {
  48189. source: "./media/characters/ecobyss/front.svg",
  48190. extra: 1282/1215,
  48191. bottom: 11/1293
  48192. }
  48193. },
  48194. back: {
  48195. height: math.unit(36, "earths"),
  48196. name: "Back",
  48197. image: {
  48198. source: "./media/characters/ecobyss/back.svg",
  48199. extra: 1291/1222,
  48200. bottom: 8/1299
  48201. }
  48202. },
  48203. },
  48204. [
  48205. {
  48206. name: "Normal",
  48207. height: math.unit(36, "earths"),
  48208. default: true
  48209. },
  48210. ]
  48211. ))
  48212. characterMakers.push(() => makeCharacter(
  48213. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  48214. {
  48215. front: {
  48216. height: math.unit(12, "feet"),
  48217. name: "Front",
  48218. image: {
  48219. source: "./media/characters/vasuk/front.svg",
  48220. extra: 1326/1207,
  48221. bottom: 64/1390
  48222. }
  48223. },
  48224. },
  48225. [
  48226. {
  48227. name: "Normal",
  48228. height: math.unit(12, "feet"),
  48229. default: true
  48230. },
  48231. ]
  48232. ))
  48233. characterMakers.push(() => makeCharacter(
  48234. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  48235. {
  48236. side: {
  48237. height: math.unit(100, "feet"),
  48238. name: "Side",
  48239. image: {
  48240. source: "./media/characters/linneaus/side.svg",
  48241. extra: 987/807,
  48242. bottom: 47/1034
  48243. }
  48244. },
  48245. },
  48246. [
  48247. {
  48248. name: "Macro",
  48249. height: math.unit(100, "feet"),
  48250. default: true
  48251. },
  48252. ]
  48253. ))
  48254. characterMakers.push(() => makeCharacter(
  48255. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  48256. {
  48257. front: {
  48258. height: math.unit(8, "feet"),
  48259. weight: math.unit(1200, "lb"),
  48260. name: "Front",
  48261. image: {
  48262. source: "./media/characters/nyterious-daligdig/front.svg",
  48263. extra: 1284/1094,
  48264. bottom: 84/1368
  48265. }
  48266. },
  48267. back: {
  48268. height: math.unit(8, "feet"),
  48269. weight: math.unit(1200, "lb"),
  48270. name: "Back",
  48271. image: {
  48272. source: "./media/characters/nyterious-daligdig/back.svg",
  48273. extra: 1301/1121,
  48274. bottom: 129/1430
  48275. }
  48276. },
  48277. mouth: {
  48278. height: math.unit(1.464, "feet"),
  48279. name: "Mouth",
  48280. image: {
  48281. source: "./media/characters/nyterious-daligdig/mouth.svg"
  48282. }
  48283. },
  48284. },
  48285. [
  48286. {
  48287. name: "Small",
  48288. height: math.unit(8, "feet"),
  48289. default: true
  48290. },
  48291. {
  48292. name: "Normal",
  48293. height: math.unit(15, "feet")
  48294. },
  48295. {
  48296. name: "Macro",
  48297. height: math.unit(90, "feet")
  48298. },
  48299. ]
  48300. ))
  48301. characterMakers.push(() => makeCharacter(
  48302. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  48303. {
  48304. front: {
  48305. height: math.unit(7 + 4/12, "feet"),
  48306. weight: math.unit(252, "lb"),
  48307. name: "Front",
  48308. image: {
  48309. source: "./media/characters/bandel/front.svg",
  48310. extra: 1946/1775,
  48311. bottom: 26/1972
  48312. }
  48313. },
  48314. back: {
  48315. height: math.unit(7 + 4/12, "feet"),
  48316. weight: math.unit(252, "lb"),
  48317. name: "Back",
  48318. image: {
  48319. source: "./media/characters/bandel/back.svg",
  48320. extra: 1940/1770,
  48321. bottom: 25/1965
  48322. }
  48323. },
  48324. maw: {
  48325. height: math.unit(2.15, "feet"),
  48326. name: "Maw",
  48327. image: {
  48328. source: "./media/characters/bandel/maw.svg"
  48329. }
  48330. },
  48331. stomach: {
  48332. height: math.unit(1.95, "feet"),
  48333. name: "Stomach",
  48334. image: {
  48335. source: "./media/characters/bandel/stomach.svg"
  48336. }
  48337. },
  48338. },
  48339. [
  48340. {
  48341. name: "Normal",
  48342. height: math.unit(7 + 4/12, "feet"),
  48343. default: true
  48344. },
  48345. ]
  48346. ))
  48347. characterMakers.push(() => makeCharacter(
  48348. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  48349. {
  48350. front: {
  48351. height: math.unit(10 + 5/12, "feet"),
  48352. weight: math.unit(773.5, "kg"),
  48353. name: "Front",
  48354. image: {
  48355. source: "./media/characters/zed/front.svg",
  48356. extra: 987/941,
  48357. bottom: 52/1039
  48358. }
  48359. },
  48360. },
  48361. [
  48362. {
  48363. name: "Short",
  48364. height: math.unit(5 + 4/12, "feet")
  48365. },
  48366. {
  48367. name: "Average",
  48368. height: math.unit(10 + 5/12, "feet"),
  48369. default: true
  48370. },
  48371. {
  48372. name: "Mini-Macro",
  48373. height: math.unit(24 + 9/12, "feet")
  48374. },
  48375. {
  48376. name: "Macro",
  48377. height: math.unit(249, "feet")
  48378. },
  48379. {
  48380. name: "Mega-Macro",
  48381. height: math.unit(12490, "feet")
  48382. },
  48383. {
  48384. name: "Giga-Macro",
  48385. height: math.unit(24.9, "miles")
  48386. },
  48387. {
  48388. name: "Tera-Macro",
  48389. height: math.unit(24900, "miles")
  48390. },
  48391. {
  48392. name: "Cosmic Scale",
  48393. height: math.unit(38.9, "lightyears")
  48394. },
  48395. {
  48396. name: "Universal Scale",
  48397. height: math.unit(138e12, "lightyears")
  48398. },
  48399. ]
  48400. ))
  48401. characterMakers.push(() => makeCharacter(
  48402. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  48403. {
  48404. front: {
  48405. height: math.unit(1561, "inches"),
  48406. name: "Front",
  48407. image: {
  48408. source: "./media/characters/ivan/front.svg",
  48409. extra: 1126/1071,
  48410. bottom: 26/1152
  48411. }
  48412. },
  48413. back: {
  48414. height: math.unit(1561, "inches"),
  48415. name: "Back",
  48416. image: {
  48417. source: "./media/characters/ivan/back.svg",
  48418. extra: 1134/1079,
  48419. bottom: 30/1164
  48420. }
  48421. },
  48422. },
  48423. [
  48424. {
  48425. name: "Normal",
  48426. height: math.unit(1561, "inches"),
  48427. default: true
  48428. },
  48429. ]
  48430. ))
  48431. characterMakers.push(() => makeCharacter(
  48432. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  48433. {
  48434. front: {
  48435. height: math.unit(5 + 7/12, "feet"),
  48436. weight: math.unit(150, "lb"),
  48437. name: "Front",
  48438. image: {
  48439. source: "./media/characters/robin-arctic-hare/front.svg",
  48440. extra: 1148/974,
  48441. bottom: 20/1168
  48442. }
  48443. },
  48444. },
  48445. [
  48446. {
  48447. name: "Normal",
  48448. height: math.unit(5 + 7/12, "feet"),
  48449. default: true
  48450. },
  48451. ]
  48452. ))
  48453. characterMakers.push(() => makeCharacter(
  48454. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  48455. {
  48456. side: {
  48457. height: math.unit(5, "feet"),
  48458. name: "Side",
  48459. image: {
  48460. source: "./media/characters/birch/side.svg",
  48461. extra: 985/796,
  48462. bottom: 111/1096
  48463. }
  48464. },
  48465. },
  48466. [
  48467. {
  48468. name: "Normal",
  48469. height: math.unit(5, "feet"),
  48470. default: true
  48471. },
  48472. ]
  48473. ))
  48474. characterMakers.push(() => makeCharacter(
  48475. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  48476. {
  48477. front: {
  48478. height: math.unit(4, "feet"),
  48479. name: "Front",
  48480. image: {
  48481. source: "./media/characters/rasp/front.svg",
  48482. extra: 561/478,
  48483. bottom: 74/635
  48484. }
  48485. },
  48486. },
  48487. [
  48488. {
  48489. name: "Normal",
  48490. height: math.unit(4, "feet"),
  48491. default: true
  48492. },
  48493. ]
  48494. ))
  48495. characterMakers.push(() => makeCharacter(
  48496. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  48497. {
  48498. front: {
  48499. height: math.unit(4 + 6/12, "feet"),
  48500. name: "Front",
  48501. image: {
  48502. source: "./media/characters/agatha/front.svg",
  48503. extra: 947/933,
  48504. bottom: 42/989
  48505. }
  48506. },
  48507. back: {
  48508. height: math.unit(4 + 6/12, "feet"),
  48509. name: "Back",
  48510. image: {
  48511. source: "./media/characters/agatha/back.svg",
  48512. extra: 935/922,
  48513. bottom: 48/983
  48514. }
  48515. },
  48516. },
  48517. [
  48518. {
  48519. name: "Normal",
  48520. height: math.unit(4 + 6 /12, "feet"),
  48521. default: true
  48522. },
  48523. {
  48524. name: "Max Size",
  48525. height: math.unit(500, "feet")
  48526. },
  48527. ]
  48528. ))
  48529. characterMakers.push(() => makeCharacter(
  48530. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  48531. {
  48532. side: {
  48533. height: math.unit(30, "feet"),
  48534. name: "Side",
  48535. image: {
  48536. source: "./media/characters/roggy/side.svg",
  48537. extra: 909/643,
  48538. bottom: 63/972
  48539. }
  48540. },
  48541. lounging: {
  48542. height: math.unit(20, "feet"),
  48543. name: "Lounging",
  48544. image: {
  48545. source: "./media/characters/roggy/lounging.svg",
  48546. extra: 643/479,
  48547. bottom: 145/788
  48548. }
  48549. },
  48550. handpaw: {
  48551. height: math.unit(13.1, "feet"),
  48552. name: "Handpaw",
  48553. image: {
  48554. source: "./media/characters/roggy/handpaw.svg"
  48555. }
  48556. },
  48557. footpaw: {
  48558. height: math.unit(15.8, "feet"),
  48559. name: "Footpaw",
  48560. image: {
  48561. source: "./media/characters/roggy/footpaw.svg"
  48562. }
  48563. },
  48564. },
  48565. [
  48566. {
  48567. name: "Menacing",
  48568. height: math.unit(30, "feet"),
  48569. default: true
  48570. },
  48571. ]
  48572. ))
  48573. characterMakers.push(() => makeCharacter(
  48574. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  48575. {
  48576. front: {
  48577. height: math.unit(5 + 7/12, "feet"),
  48578. weight: math.unit(135, "lb"),
  48579. name: "Front",
  48580. image: {
  48581. source: "./media/characters/naomi/front.svg",
  48582. extra: 1209/1154,
  48583. bottom: 129/1338
  48584. }
  48585. },
  48586. back: {
  48587. height: math.unit(5 + 7/12, "feet"),
  48588. weight: math.unit(135, "lb"),
  48589. name: "Back",
  48590. image: {
  48591. source: "./media/characters/naomi/back.svg",
  48592. extra: 1252/1190,
  48593. bottom: 23/1275
  48594. }
  48595. },
  48596. },
  48597. [
  48598. {
  48599. name: "Normal",
  48600. height: math.unit(5 + 7 /12, "feet"),
  48601. default: true
  48602. },
  48603. ]
  48604. ))
  48605. characterMakers.push(() => makeCharacter(
  48606. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  48607. {
  48608. side: {
  48609. height: math.unit(35, "meters"),
  48610. name: "Side",
  48611. image: {
  48612. source: "./media/characters/kimpi/side.svg",
  48613. extra: 419/382,
  48614. bottom: 63/482
  48615. }
  48616. },
  48617. hand: {
  48618. height: math.unit(8.96, "meters"),
  48619. name: "Hand",
  48620. image: {
  48621. source: "./media/characters/kimpi/hand.svg"
  48622. }
  48623. },
  48624. },
  48625. [
  48626. {
  48627. name: "Normal",
  48628. height: math.unit(35, "meters"),
  48629. default: true
  48630. },
  48631. ]
  48632. ))
  48633. characterMakers.push(() => makeCharacter(
  48634. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  48635. {
  48636. front: {
  48637. height: math.unit(4 + 4/12, "feet"),
  48638. name: "Front",
  48639. image: {
  48640. source: "./media/characters/pepper-purrloin/front.svg",
  48641. extra: 1141/1024,
  48642. bottom: 21/1162
  48643. }
  48644. },
  48645. },
  48646. [
  48647. {
  48648. name: "Normal",
  48649. height: math.unit(4 + 4/12, "feet"),
  48650. default: true
  48651. },
  48652. ]
  48653. ))
  48654. characterMakers.push(() => makeCharacter(
  48655. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  48656. {
  48657. front: {
  48658. height: math.unit(6 + 2/12, "feet"),
  48659. name: "Front",
  48660. image: {
  48661. source: "./media/characters/raphael/front.svg",
  48662. extra: 1101/962,
  48663. bottom: 59/1160
  48664. }
  48665. },
  48666. },
  48667. [
  48668. {
  48669. name: "Normal",
  48670. height: math.unit(6 + 2/12, "feet"),
  48671. default: true
  48672. },
  48673. ]
  48674. ))
  48675. characterMakers.push(() => makeCharacter(
  48676. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  48677. {
  48678. front: {
  48679. height: math.unit(6, "feet"),
  48680. weight: math.unit(150, "lb"),
  48681. name: "Front",
  48682. image: {
  48683. source: "./media/characters/victor-williams/front.svg",
  48684. extra: 1894/1825,
  48685. bottom: 67/1961
  48686. }
  48687. },
  48688. },
  48689. [
  48690. {
  48691. name: "Normal",
  48692. height: math.unit(6, "feet"),
  48693. default: true
  48694. },
  48695. ]
  48696. ))
  48697. characterMakers.push(() => makeCharacter(
  48698. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  48699. {
  48700. front: {
  48701. height: math.unit(5 + 8/12, "feet"),
  48702. weight: math.unit(150, "lb"),
  48703. name: "Front",
  48704. image: {
  48705. source: "./media/characters/rachel/front.svg",
  48706. extra: 1902/1787,
  48707. bottom: 46/1948
  48708. }
  48709. },
  48710. },
  48711. [
  48712. {
  48713. name: "Base Height",
  48714. height: math.unit(5 + 8/12, "feet"),
  48715. default: true
  48716. },
  48717. {
  48718. name: "Macro",
  48719. height: math.unit(200, "feet")
  48720. },
  48721. {
  48722. name: "Mega Macro",
  48723. height: math.unit(1, "mile")
  48724. },
  48725. {
  48726. name: "Giga Macro",
  48727. height: math.unit(1500, "miles")
  48728. },
  48729. {
  48730. name: "Tera Macro",
  48731. height: math.unit(8000, "miles")
  48732. },
  48733. {
  48734. name: "Tera Macro+",
  48735. height: math.unit(2e5, "miles")
  48736. },
  48737. ]
  48738. ))
  48739. characterMakers.push(() => makeCharacter(
  48740. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  48741. {
  48742. front: {
  48743. height: math.unit(6.5, "feet"),
  48744. name: "Front",
  48745. image: {
  48746. source: "./media/characters/svetlana-rozovskaya/front.svg",
  48747. extra: 860/819,
  48748. bottom: 307/1167
  48749. }
  48750. },
  48751. back: {
  48752. height: math.unit(6.5, "feet"),
  48753. name: "Back",
  48754. image: {
  48755. source: "./media/characters/svetlana-rozovskaya/back.svg",
  48756. extra: 880/837,
  48757. bottom: 395/1275
  48758. }
  48759. },
  48760. sleeping: {
  48761. height: math.unit(2.79, "feet"),
  48762. name: "Sleeping",
  48763. image: {
  48764. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  48765. extra: 465/383,
  48766. bottom: 263/728
  48767. }
  48768. },
  48769. maw: {
  48770. height: math.unit(2.52, "feet"),
  48771. name: "Maw",
  48772. image: {
  48773. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  48774. }
  48775. },
  48776. },
  48777. [
  48778. {
  48779. name: "Normal",
  48780. height: math.unit(6.5, "feet"),
  48781. default: true
  48782. },
  48783. ]
  48784. ))
  48785. characterMakers.push(() => makeCharacter(
  48786. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  48787. {
  48788. front: {
  48789. height: math.unit(5, "feet"),
  48790. name: "Front",
  48791. image: {
  48792. source: "./media/characters/nova-nerium/front.svg",
  48793. extra: 1548/1392,
  48794. bottom: 374/1922
  48795. }
  48796. },
  48797. back: {
  48798. height: math.unit(5, "feet"),
  48799. name: "Back",
  48800. image: {
  48801. source: "./media/characters/nova-nerium/back.svg",
  48802. extra: 1658/1468,
  48803. bottom: 257/1915
  48804. }
  48805. },
  48806. },
  48807. [
  48808. {
  48809. name: "Normal",
  48810. height: math.unit(5, "feet"),
  48811. default: true
  48812. },
  48813. ]
  48814. ))
  48815. characterMakers.push(() => makeCharacter(
  48816. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  48817. {
  48818. front: {
  48819. height: math.unit(5 + 4/12, "feet"),
  48820. name: "Front",
  48821. image: {
  48822. source: "./media/characters/ashe-pyriph/front.svg",
  48823. extra: 1935/1747,
  48824. bottom: 60/1995
  48825. }
  48826. },
  48827. },
  48828. [
  48829. {
  48830. name: "Normal",
  48831. height: math.unit(5 + 4/12, "feet"),
  48832. default: true
  48833. },
  48834. ]
  48835. ))
  48836. characterMakers.push(() => makeCharacter(
  48837. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  48838. {
  48839. front: {
  48840. height: math.unit(8.7, "feet"),
  48841. name: "Front",
  48842. image: {
  48843. source: "./media/characters/flicker-wisp/front.svg",
  48844. extra: 1835/1613,
  48845. bottom: 449/2284
  48846. }
  48847. },
  48848. side: {
  48849. height: math.unit(8.7, "feet"),
  48850. name: "Side",
  48851. image: {
  48852. source: "./media/characters/flicker-wisp/side.svg",
  48853. extra: 1841/1642,
  48854. bottom: 336/2177
  48855. },
  48856. default: true
  48857. },
  48858. maw: {
  48859. height: math.unit(3.35, "feet"),
  48860. name: "Maw",
  48861. image: {
  48862. source: "./media/characters/flicker-wisp/maw.svg",
  48863. extra: 2338/1506,
  48864. bottom: 0/2338
  48865. }
  48866. },
  48867. ovipositor: {
  48868. height: math.unit(4.95, "feet"),
  48869. name: "Ovipositor",
  48870. image: {
  48871. source: "./media/characters/flicker-wisp/ovipositor.svg"
  48872. }
  48873. },
  48874. egg: {
  48875. height: math.unit(0.385, "feet"),
  48876. weight: math.unit(2, "lb"),
  48877. name: "Egg",
  48878. image: {
  48879. source: "./media/characters/flicker-wisp/egg.svg"
  48880. }
  48881. },
  48882. },
  48883. [
  48884. {
  48885. name: "Normal",
  48886. height: math.unit(8.7, "feet"),
  48887. default: true
  48888. },
  48889. ]
  48890. ))
  48891. characterMakers.push(() => makeCharacter(
  48892. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  48893. {
  48894. side: {
  48895. height: math.unit(11, "feet"),
  48896. name: "Side",
  48897. image: {
  48898. source: "./media/characters/faefnul/side.svg",
  48899. extra: 1100/1007,
  48900. bottom: 0/1100
  48901. }
  48902. },
  48903. },
  48904. [
  48905. {
  48906. name: "Normal",
  48907. height: math.unit(11, "feet"),
  48908. default: true
  48909. },
  48910. ]
  48911. ))
  48912. characterMakers.push(() => makeCharacter(
  48913. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  48914. {
  48915. front: {
  48916. height: math.unit(6 + 2/12, "feet"),
  48917. name: "Front",
  48918. image: {
  48919. source: "./media/characters/shady/front.svg",
  48920. extra: 502/461,
  48921. bottom: 9/511
  48922. }
  48923. },
  48924. kneeling: {
  48925. height: math.unit(4.6, "feet"),
  48926. name: "Kneeling",
  48927. image: {
  48928. source: "./media/characters/shady/kneeling.svg",
  48929. extra: 1328/1219,
  48930. bottom: 117/1445
  48931. }
  48932. },
  48933. maw: {
  48934. height: math.unit(2, "feet"),
  48935. name: "Maw",
  48936. image: {
  48937. source: "./media/characters/shady/maw.svg"
  48938. }
  48939. },
  48940. },
  48941. [
  48942. {
  48943. name: "Nano",
  48944. height: math.unit(1, "mm")
  48945. },
  48946. {
  48947. name: "Micro",
  48948. height: math.unit(12, "mm")
  48949. },
  48950. {
  48951. name: "Tiny",
  48952. height: math.unit(3, "inches")
  48953. },
  48954. {
  48955. name: "Normal",
  48956. height: math.unit(6 + 2/12, "feet"),
  48957. default: true
  48958. },
  48959. {
  48960. name: "Big",
  48961. height: math.unit(15, "feet")
  48962. },
  48963. {
  48964. name: "Macro",
  48965. height: math.unit(150, "feet")
  48966. },
  48967. {
  48968. name: "Titanic",
  48969. height: math.unit(500, "feet")
  48970. },
  48971. ]
  48972. ))
  48973. characterMakers.push(() => makeCharacter(
  48974. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  48975. {
  48976. front: {
  48977. height: math.unit(12, "feet"),
  48978. name: "Front",
  48979. image: {
  48980. source: "./media/characters/fenrir/front.svg",
  48981. extra: 968/875,
  48982. bottom: 22/990
  48983. }
  48984. },
  48985. },
  48986. [
  48987. {
  48988. name: "Big",
  48989. height: math.unit(12, "feet"),
  48990. default: true
  48991. },
  48992. ]
  48993. ))
  48994. characterMakers.push(() => makeCharacter(
  48995. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  48996. {
  48997. front: {
  48998. height: math.unit(5 + 4/12, "feet"),
  48999. name: "Front",
  49000. image: {
  49001. source: "./media/characters/makar/front.svg",
  49002. extra: 1181/1112,
  49003. bottom: 78/1259
  49004. }
  49005. },
  49006. },
  49007. [
  49008. {
  49009. name: "Normal",
  49010. height: math.unit(5 + 4/12, "feet"),
  49011. default: true
  49012. },
  49013. ]
  49014. ))
  49015. characterMakers.push(() => makeCharacter(
  49016. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  49017. {
  49018. front: {
  49019. height: math.unit(5 + 7/12, "feet"),
  49020. name: "Front",
  49021. image: {
  49022. source: "./media/characters/callow/front.svg",
  49023. extra: 1482/1304,
  49024. bottom: 23/1505
  49025. }
  49026. },
  49027. back: {
  49028. height: math.unit(5 + 7/12, "feet"),
  49029. name: "Back",
  49030. image: {
  49031. source: "./media/characters/callow/back.svg",
  49032. extra: 1484/1296,
  49033. bottom: 25/1509
  49034. }
  49035. },
  49036. },
  49037. [
  49038. {
  49039. name: "Micro",
  49040. height: math.unit(3, "inches"),
  49041. default: true
  49042. },
  49043. {
  49044. name: "Normal",
  49045. height: math.unit(5 + 7/12, "feet")
  49046. },
  49047. ]
  49048. ))
  49049. characterMakers.push(() => makeCharacter(
  49050. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  49051. {
  49052. front: {
  49053. height: math.unit(6 + 2/12, "feet"),
  49054. name: "Front",
  49055. image: {
  49056. source: "./media/characters/natel/front.svg",
  49057. extra: 1833/1692,
  49058. bottom: 166/1999
  49059. }
  49060. },
  49061. },
  49062. [
  49063. {
  49064. name: "Normal",
  49065. height: math.unit(6 + 2/12, "feet"),
  49066. default: true
  49067. },
  49068. ]
  49069. ))
  49070. characterMakers.push(() => makeCharacter(
  49071. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  49072. {
  49073. front: {
  49074. height: math.unit(1.75, "meters"),
  49075. name: "Front",
  49076. image: {
  49077. source: "./media/characters/misu/front.svg",
  49078. extra: 1690/1558,
  49079. bottom: 234/1924
  49080. }
  49081. },
  49082. back: {
  49083. height: math.unit(1.75, "meters"),
  49084. name: "Back",
  49085. image: {
  49086. source: "./media/characters/misu/back.svg",
  49087. extra: 1762/1618,
  49088. bottom: 146/1908
  49089. }
  49090. },
  49091. frontNude: {
  49092. height: math.unit(1.75, "meters"),
  49093. name: "Front (Nude)",
  49094. image: {
  49095. source: "./media/characters/misu/front-nude.svg",
  49096. extra: 1690/1558,
  49097. bottom: 234/1924
  49098. }
  49099. },
  49100. backNude: {
  49101. height: math.unit(1.75, "meters"),
  49102. name: "Back (Nude)",
  49103. image: {
  49104. source: "./media/characters/misu/back-nude.svg",
  49105. extra: 1762/1618,
  49106. bottom: 146/1908
  49107. }
  49108. },
  49109. frontErect: {
  49110. height: math.unit(1.75, "meters"),
  49111. name: "Front (Erect)",
  49112. image: {
  49113. source: "./media/characters/misu/front-erect.svg",
  49114. extra: 1690/1558,
  49115. bottom: 234/1924
  49116. }
  49117. },
  49118. maw: {
  49119. height: math.unit(0.47, "meters"),
  49120. name: "Maw",
  49121. image: {
  49122. source: "./media/characters/misu/maw.svg"
  49123. }
  49124. },
  49125. head: {
  49126. height: math.unit(0.35, "meters"),
  49127. name: "Head",
  49128. image: {
  49129. source: "./media/characters/misu/head.svg"
  49130. }
  49131. },
  49132. rear: {
  49133. height: math.unit(0.47, "meters"),
  49134. name: "Rear",
  49135. image: {
  49136. source: "./media/characters/misu/rear.svg"
  49137. }
  49138. },
  49139. },
  49140. [
  49141. {
  49142. name: "Normal",
  49143. height: math.unit(1.75, "meters")
  49144. },
  49145. {
  49146. name: "Not good for the people",
  49147. height: math.unit(42, "meters")
  49148. },
  49149. {
  49150. name: "Not good for the neighborhood",
  49151. height: math.unit(135, "meters")
  49152. },
  49153. {
  49154. name: "Bit bigger problem",
  49155. height: math.unit(380, "meters"),
  49156. default: true
  49157. },
  49158. {
  49159. name: "Not good for the city",
  49160. height: math.unit(1.5, "km")
  49161. },
  49162. {
  49163. name: "Not good for the county",
  49164. height: math.unit(5.5, "km")
  49165. },
  49166. {
  49167. name: "Not good for the state",
  49168. height: math.unit(25, "km")
  49169. },
  49170. {
  49171. name: "Not good for the country",
  49172. height: math.unit(125, "km")
  49173. },
  49174. {
  49175. name: "Not good for the continent",
  49176. height: math.unit(2100, "km")
  49177. },
  49178. {
  49179. name: "Not good for the planet",
  49180. height: math.unit(35000, "km")
  49181. },
  49182. {
  49183. name: "Just no",
  49184. height: math.unit(8.5e18, "km")
  49185. },
  49186. ]
  49187. ))
  49188. characterMakers.push(() => makeCharacter(
  49189. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  49190. {
  49191. front: {
  49192. height: math.unit(6.5, "feet"),
  49193. name: "Front",
  49194. image: {
  49195. source: "./media/characters/poppy/front.svg",
  49196. extra: 1878/1812,
  49197. bottom: 43/1921
  49198. }
  49199. },
  49200. feet: {
  49201. height: math.unit(1.06, "feet"),
  49202. name: "Feet",
  49203. image: {
  49204. source: "./media/characters/poppy/feet.svg",
  49205. extra: 1083/1083,
  49206. bottom: 87/1170
  49207. }
  49208. },
  49209. },
  49210. [
  49211. {
  49212. name: "Human",
  49213. height: math.unit(6.5, "feet")
  49214. },
  49215. {
  49216. name: "Default",
  49217. height: math.unit(300, "feet"),
  49218. default: true
  49219. },
  49220. {
  49221. name: "Huge",
  49222. height: math.unit(850, "feet")
  49223. },
  49224. {
  49225. name: "Mega",
  49226. height: math.unit(8000, "feet")
  49227. },
  49228. {
  49229. name: "Giga",
  49230. height: math.unit(300, "miles")
  49231. },
  49232. ]
  49233. ))
  49234. characterMakers.push(() => makeCharacter(
  49235. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  49236. {
  49237. bipedal: {
  49238. height: math.unit(7, "feet"),
  49239. name: "Bipedal",
  49240. image: {
  49241. source: "./media/characters/zener/bipedal.svg",
  49242. extra: 874/805,
  49243. bottom: 109/983
  49244. }
  49245. },
  49246. quadrupedal: {
  49247. height: math.unit(4.64, "feet"),
  49248. name: "Quadrupedal",
  49249. image: {
  49250. source: "./media/characters/zener/quadrupedal.svg",
  49251. extra: 638/507,
  49252. bottom: 190/828
  49253. }
  49254. },
  49255. cock: {
  49256. height: math.unit(18, "inches"),
  49257. name: "Cock",
  49258. image: {
  49259. source: "./media/characters/zener/cock.svg"
  49260. }
  49261. },
  49262. },
  49263. [
  49264. {
  49265. name: "Normal",
  49266. height: math.unit(7, "feet"),
  49267. default: true
  49268. },
  49269. ]
  49270. ))
  49271. characterMakers.push(() => makeCharacter(
  49272. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  49273. {
  49274. nude: {
  49275. height: math.unit(5 + 6/12, "feet"),
  49276. name: "Nude",
  49277. image: {
  49278. source: "./media/characters/charlie-dog/nude.svg",
  49279. extra: 768/734,
  49280. bottom: 26/794
  49281. }
  49282. },
  49283. dressed: {
  49284. height: math.unit(5 + 6/12, "feet"),
  49285. name: "Dressed",
  49286. image: {
  49287. source: "./media/characters/charlie-dog/dressed.svg",
  49288. extra: 768/734,
  49289. bottom: 26/794
  49290. }
  49291. },
  49292. },
  49293. [
  49294. {
  49295. name: "Normal",
  49296. height: math.unit(5 + 6/12, "feet"),
  49297. default: true
  49298. },
  49299. ]
  49300. ))
  49301. characterMakers.push(() => makeCharacter(
  49302. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  49303. {
  49304. front: {
  49305. height: math.unit(6 + 4/12, "feet"),
  49306. name: "Front",
  49307. image: {
  49308. source: "./media/characters/ir'istrasz/front.svg",
  49309. extra: 1014/977,
  49310. bottom: 65/1079
  49311. }
  49312. },
  49313. back: {
  49314. height: math.unit(6 + 4/12, "feet"),
  49315. name: "Back",
  49316. image: {
  49317. source: "./media/characters/ir'istrasz/back.svg",
  49318. extra: 1024/992,
  49319. bottom: 34/1058
  49320. }
  49321. },
  49322. },
  49323. [
  49324. {
  49325. name: "Normal",
  49326. height: math.unit(6 + 4/12, "feet"),
  49327. default: true
  49328. },
  49329. ]
  49330. ))
  49331. characterMakers.push(() => makeCharacter(
  49332. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  49333. {
  49334. front: {
  49335. height: math.unit(5 + 8/12, "feet"),
  49336. name: "Front",
  49337. image: {
  49338. source: "./media/characters/dee-ditto/front.svg",
  49339. extra: 1874/1785,
  49340. bottom: 68/1942
  49341. }
  49342. },
  49343. back: {
  49344. height: math.unit(5 + 8/12, "feet"),
  49345. name: "Back",
  49346. image: {
  49347. source: "./media/characters/dee-ditto/back.svg",
  49348. extra: 1870/1783,
  49349. bottom: 77/1947
  49350. }
  49351. },
  49352. },
  49353. [
  49354. {
  49355. name: "Normal",
  49356. height: math.unit(5 + 8/12, "feet"),
  49357. default: true
  49358. },
  49359. ]
  49360. ))
  49361. characterMakers.push(() => makeCharacter(
  49362. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  49363. {
  49364. front: {
  49365. height: math.unit(7 + 6/12, "feet"),
  49366. name: "Front",
  49367. image: {
  49368. source: "./media/characters/fey/front.svg",
  49369. extra: 995/979,
  49370. bottom: 30/1025
  49371. }
  49372. },
  49373. back: {
  49374. height: math.unit(7 + 6/12, "feet"),
  49375. name: "Back",
  49376. image: {
  49377. source: "./media/characters/fey/back.svg",
  49378. extra: 1079/1008,
  49379. bottom: 5/1084
  49380. }
  49381. },
  49382. dressed: {
  49383. height: math.unit(7 + 6/12, "feet"),
  49384. name: "Dressed",
  49385. image: {
  49386. source: "./media/characters/fey/dressed.svg",
  49387. extra: 995/979,
  49388. bottom: 30/1025
  49389. }
  49390. },
  49391. },
  49392. [
  49393. {
  49394. name: "Normal",
  49395. height: math.unit(7 + 6/12, "feet"),
  49396. default: true
  49397. },
  49398. ]
  49399. ))
  49400. characterMakers.push(() => makeCharacter(
  49401. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  49402. {
  49403. standing: {
  49404. height: math.unit(17, "feet"),
  49405. name: "Standing",
  49406. image: {
  49407. source: "./media/characters/aster/standing.svg",
  49408. extra: 1798/1598,
  49409. bottom: 117/1915
  49410. }
  49411. },
  49412. },
  49413. [
  49414. {
  49415. name: "Normal",
  49416. height: math.unit(17, "feet"),
  49417. default: true
  49418. },
  49419. {
  49420. name: "Homewrecker",
  49421. height: math.unit(95, "feet")
  49422. },
  49423. {
  49424. name: "Planet Devourer",
  49425. height: math.unit(1008000, "miles")
  49426. },
  49427. ]
  49428. ))
  49429. characterMakers.push(() => makeCharacter(
  49430. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  49431. {
  49432. front: {
  49433. height: math.unit(6 + 5/12, "feet"),
  49434. weight: math.unit(265, "lb"),
  49435. name: "Front",
  49436. image: {
  49437. source: "./media/characters/devon-childs/front.svg",
  49438. extra: 1795/1721,
  49439. bottom: 41/1836
  49440. }
  49441. },
  49442. side: {
  49443. height: math.unit(6 + 5/12, "feet"),
  49444. weight: math.unit(265, "lb"),
  49445. name: "Side",
  49446. image: {
  49447. source: "./media/characters/devon-childs/side.svg",
  49448. extra: 1812/1738,
  49449. bottom: 30/1842
  49450. }
  49451. },
  49452. back: {
  49453. height: math.unit(6 + 5/12, "feet"),
  49454. weight: math.unit(265, "lb"),
  49455. name: "Back",
  49456. image: {
  49457. source: "./media/characters/devon-childs/back.svg",
  49458. extra: 1808/1735,
  49459. bottom: 23/1831
  49460. }
  49461. },
  49462. hand: {
  49463. height: math.unit(1.464, "feet"),
  49464. name: "Hand",
  49465. image: {
  49466. source: "./media/characters/devon-childs/hand.svg"
  49467. }
  49468. },
  49469. foot: {
  49470. height: math.unit(1.6, "feet"),
  49471. name: "Foot",
  49472. image: {
  49473. source: "./media/characters/devon-childs/foot.svg"
  49474. }
  49475. },
  49476. },
  49477. [
  49478. {
  49479. name: "Micro",
  49480. height: math.unit(7, "cm")
  49481. },
  49482. {
  49483. name: "Normal",
  49484. height: math.unit(6 + 5/12, "feet"),
  49485. default: true
  49486. },
  49487. {
  49488. name: "Macro",
  49489. height: math.unit(154, "feet")
  49490. },
  49491. ]
  49492. ))
  49493. characterMakers.push(() => makeCharacter(
  49494. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  49495. {
  49496. front: {
  49497. height: math.unit(6, "feet"),
  49498. weight: math.unit(180, "lb"),
  49499. name: "Front",
  49500. image: {
  49501. source: "./media/characters/lydemox-vir/front.svg",
  49502. extra: 1632/1435,
  49503. bottom: 58/1690
  49504. }
  49505. },
  49506. frontSFW: {
  49507. height: math.unit(6, "feet"),
  49508. weight: math.unit(180, "lb"),
  49509. name: "Front (SFW)",
  49510. image: {
  49511. source: "./media/characters/lydemox-vir/front-sfw.svg",
  49512. extra: 1632/1435,
  49513. bottom: 58/1690
  49514. }
  49515. },
  49516. back: {
  49517. height: math.unit(6, "feet"),
  49518. weight: math.unit(180, "lb"),
  49519. name: "Back",
  49520. image: {
  49521. source: "./media/characters/lydemox-vir/back.svg",
  49522. extra: 1593/1408,
  49523. bottom: 31/1624
  49524. }
  49525. },
  49526. paw: {
  49527. height: math.unit(1.85, "feet"),
  49528. name: "Paw",
  49529. image: {
  49530. source: "./media/characters/lydemox-vir/paw.svg"
  49531. }
  49532. },
  49533. dick: {
  49534. height: math.unit(1.8, "feet"),
  49535. name: "Dick",
  49536. image: {
  49537. source: "./media/characters/lydemox-vir/dick.svg"
  49538. }
  49539. },
  49540. },
  49541. [
  49542. {
  49543. name: "Macro",
  49544. height: math.unit(100, "feet"),
  49545. default: true
  49546. },
  49547. {
  49548. name: "Teramacro",
  49549. height: math.unit(1, "earth")
  49550. },
  49551. {
  49552. name: "Planetary",
  49553. height: math.unit(20, "earths")
  49554. },
  49555. ]
  49556. ))
  49557. characterMakers.push(() => makeCharacter(
  49558. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  49559. {
  49560. front: {
  49561. height: math.unit(15 + 8/12, "feet"),
  49562. weight: math.unit(1237, "kg"),
  49563. name: "Front",
  49564. image: {
  49565. source: "./media/characters/mia/front.svg",
  49566. extra: 1573/1446,
  49567. bottom: 58/1631
  49568. }
  49569. },
  49570. },
  49571. [
  49572. {
  49573. name: "Small",
  49574. height: math.unit(9 + 5/12, "feet")
  49575. },
  49576. {
  49577. name: "Normal",
  49578. height: math.unit(15 + 8/12, "feet"),
  49579. default: true
  49580. },
  49581. ]
  49582. ))
  49583. characterMakers.push(() => makeCharacter(
  49584. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  49585. {
  49586. front: {
  49587. height: math.unit(10 + 6/12, "feet"),
  49588. weight: math.unit(1.3, "tons"),
  49589. name: "Front",
  49590. image: {
  49591. source: "./media/characters/mr-graves/front.svg",
  49592. extra: 1779/1695,
  49593. bottom: 198/1977
  49594. }
  49595. },
  49596. },
  49597. [
  49598. {
  49599. name: "Normal",
  49600. height: math.unit(10 + 6 /12, "feet"),
  49601. default: true
  49602. },
  49603. ]
  49604. ))
  49605. characterMakers.push(() => makeCharacter(
  49606. { name: "Jess", species: ["human"], tags: ["anthro"] },
  49607. {
  49608. dressedFront: {
  49609. height: math.unit(5 + 8/12, "feet"),
  49610. weight: math.unit(125, "lb"),
  49611. name: "Dressed (Front)",
  49612. image: {
  49613. source: "./media/characters/jess/dressed-front.svg",
  49614. extra: 1176/1152,
  49615. bottom: 42/1218
  49616. }
  49617. },
  49618. dressedSide: {
  49619. height: math.unit(5 + 8/12, "feet"),
  49620. weight: math.unit(125, "lb"),
  49621. name: "Dressed (Side)",
  49622. image: {
  49623. source: "./media/characters/jess/dressed-side.svg",
  49624. extra: 1204/1190,
  49625. bottom: 6/1210
  49626. }
  49627. },
  49628. nudeFront: {
  49629. height: math.unit(5 + 8/12, "feet"),
  49630. weight: math.unit(125, "lb"),
  49631. name: "Nude (Front)",
  49632. image: {
  49633. source: "./media/characters/jess/nude-front.svg",
  49634. extra: 1176/1152,
  49635. bottom: 42/1218
  49636. }
  49637. },
  49638. nudeSide: {
  49639. height: math.unit(5 + 8/12, "feet"),
  49640. weight: math.unit(125, "lb"),
  49641. name: "Nude (Side)",
  49642. image: {
  49643. source: "./media/characters/jess/nude-side.svg",
  49644. extra: 1204/1190,
  49645. bottom: 6/1210
  49646. }
  49647. },
  49648. organsFront: {
  49649. height: math.unit(2.83799342105, "feet"),
  49650. name: "Organs (Front)",
  49651. image: {
  49652. source: "./media/characters/jess/organs-front.svg"
  49653. }
  49654. },
  49655. organsSide: {
  49656. height: math.unit(2.64225290474, "feet"),
  49657. name: "Organs (Side)",
  49658. image: {
  49659. source: "./media/characters/jess/organs-side.svg"
  49660. }
  49661. },
  49662. digestiveTractFront: {
  49663. height: math.unit(2.8106580871, "feet"),
  49664. name: "Digestive Tract (Front)",
  49665. image: {
  49666. source: "./media/characters/jess/digestive-tract-front.svg"
  49667. }
  49668. },
  49669. digestiveTractSide: {
  49670. height: math.unit(2.54365045014, "feet"),
  49671. name: "Digestive Tract (Side)",
  49672. image: {
  49673. source: "./media/characters/jess/digestive-tract-side.svg"
  49674. }
  49675. },
  49676. respiratorySystemFront: {
  49677. height: math.unit(1.11196233456, "feet"),
  49678. name: "Respiratory System (Front)",
  49679. image: {
  49680. source: "./media/characters/jess/respiratory-system-front.svg"
  49681. }
  49682. },
  49683. respiratorySystemSide: {
  49684. height: math.unit(0.89327966297, "feet"),
  49685. name: "Respiratory System (Side)",
  49686. image: {
  49687. source: "./media/characters/jess/respiratory-system-side.svg"
  49688. }
  49689. },
  49690. urinaryTractFront: {
  49691. height: math.unit(1.16126356186, "feet"),
  49692. name: "Urinary Tract (Front)",
  49693. image: {
  49694. source: "./media/characters/jess/urinary-tract-front.svg"
  49695. }
  49696. },
  49697. urinaryTractSide: {
  49698. height: math.unit(1.20910039627, "feet"),
  49699. name: "Urinary Tract (Side)",
  49700. image: {
  49701. source: "./media/characters/jess/urinary-tract-side.svg"
  49702. }
  49703. },
  49704. reproductiveOrgansFront: {
  49705. height: math.unit(0.48422591566, "feet"),
  49706. name: "Reproductive Organs (Front)",
  49707. image: {
  49708. source: "./media/characters/jess/reproductive-organs-front.svg"
  49709. }
  49710. },
  49711. reproductiveOrgansSide: {
  49712. height: math.unit(0.61553314481, "feet"),
  49713. name: "Reproductive Organs (Side)",
  49714. image: {
  49715. source: "./media/characters/jess/reproductive-organs-side.svg"
  49716. }
  49717. },
  49718. breastsFront: {
  49719. height: math.unit(0.47690395121, "feet"),
  49720. name: "Breasts (Front)",
  49721. image: {
  49722. source: "./media/characters/jess/breasts-front.svg"
  49723. }
  49724. },
  49725. breastsSide: {
  49726. height: math.unit(0.30556998307, "feet"),
  49727. name: "Breasts (Side)",
  49728. image: {
  49729. source: "./media/characters/jess/breasts-side.svg"
  49730. }
  49731. },
  49732. heartFront: {
  49733. height: math.unit(0.53011022622, "feet"),
  49734. name: "Heart (Front)",
  49735. image: {
  49736. source: "./media/characters/jess/heart-front.svg"
  49737. }
  49738. },
  49739. heartSide: {
  49740. height: math.unit(0.51790695213, "feet"),
  49741. name: "Heart (Side)",
  49742. image: {
  49743. source: "./media/characters/jess/heart-side.svg"
  49744. }
  49745. },
  49746. earsAndNoseFront: {
  49747. height: math.unit(0.29385483995, "feet"),
  49748. name: "Ears and Nose (Front)",
  49749. image: {
  49750. source: "./media/characters/jess/ears-and-nose-front.svg"
  49751. }
  49752. },
  49753. earsAndNoseSide: {
  49754. height: math.unit(0.18109658741, "feet"),
  49755. name: "Ears and Nose (Side)",
  49756. image: {
  49757. source: "./media/characters/jess/ears-and-nose-side.svg"
  49758. }
  49759. },
  49760. },
  49761. [
  49762. {
  49763. name: "Normal",
  49764. height: math.unit(5 + 8/12, "feet"),
  49765. default: true
  49766. },
  49767. ]
  49768. ))
  49769. characterMakers.push(() => makeCharacter(
  49770. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  49771. {
  49772. front: {
  49773. height: math.unit(6, "feet"),
  49774. weight: math.unit(6.64467e-7, "grams"),
  49775. name: "Front",
  49776. image: {
  49777. source: "./media/characters/wimpering/front.svg",
  49778. extra: 597/587,
  49779. bottom: 34/631
  49780. }
  49781. },
  49782. },
  49783. [
  49784. {
  49785. name: "Micro",
  49786. height: math.unit(0.4, "mm"),
  49787. default: true
  49788. },
  49789. ]
  49790. ))
  49791. characterMakers.push(() => makeCharacter(
  49792. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  49793. {
  49794. front: {
  49795. height: math.unit(5 + 2/12, "feet"),
  49796. weight: math.unit(110, "lb"),
  49797. name: "Front",
  49798. image: {
  49799. source: "./media/characters/keltre/front.svg",
  49800. extra: 1099/1057,
  49801. bottom: 22/1121
  49802. }
  49803. },
  49804. back: {
  49805. height: math.unit(5 + 2/12, "feet"),
  49806. weight: math.unit(110, "lb"),
  49807. name: "Back",
  49808. image: {
  49809. source: "./media/characters/keltre/back.svg",
  49810. extra: 1095/1053,
  49811. bottom: 17/1112
  49812. }
  49813. },
  49814. dressed: {
  49815. height: math.unit(5 + 2/12, "feet"),
  49816. weight: math.unit(110, "lb"),
  49817. name: "Dressed",
  49818. image: {
  49819. source: "./media/characters/keltre/dressed.svg",
  49820. extra: 1099/1057,
  49821. bottom: 22/1121
  49822. }
  49823. },
  49824. winter: {
  49825. height: math.unit(5 + 2/12, "feet"),
  49826. weight: math.unit(110, "lb"),
  49827. name: "Winter",
  49828. image: {
  49829. source: "./media/characters/keltre/winter.svg",
  49830. extra: 1099/1057,
  49831. bottom: 22/1121
  49832. }
  49833. },
  49834. head: {
  49835. height: math.unit(1.61 * 0.86, "feet"),
  49836. name: "Head",
  49837. image: {
  49838. source: "./media/characters/keltre/head.svg",
  49839. extra: 534/421,
  49840. bottom: 0/534
  49841. }
  49842. },
  49843. hand: {
  49844. height: math.unit(1.3 * 0.86, "feet"),
  49845. name: "Hand",
  49846. image: {
  49847. source: "./media/characters/keltre/hand.svg"
  49848. }
  49849. },
  49850. foot: {
  49851. height: math.unit(1.8 * 0.86, "feet"),
  49852. name: "Foot",
  49853. image: {
  49854. source: "./media/characters/keltre/foot.svg"
  49855. }
  49856. },
  49857. },
  49858. [
  49859. {
  49860. name: "Fine",
  49861. height: math.unit(1, "inch")
  49862. },
  49863. {
  49864. name: "Dimnutive",
  49865. height: math.unit(4, "inches")
  49866. },
  49867. {
  49868. name: "Tiny",
  49869. height: math.unit(1, "foot")
  49870. },
  49871. {
  49872. name: "Small",
  49873. height: math.unit(3, "feet")
  49874. },
  49875. {
  49876. name: "Normal",
  49877. height: math.unit(5 + 2/12, "feet"),
  49878. default: true
  49879. },
  49880. ]
  49881. ))
  49882. characterMakers.push(() => makeCharacter(
  49883. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  49884. {
  49885. front: {
  49886. height: math.unit(6 + 2/12, "feet"),
  49887. name: "Front",
  49888. image: {
  49889. source: "./media/characters/nox/front.svg",
  49890. extra: 1917/1830,
  49891. bottom: 74/1991
  49892. }
  49893. },
  49894. back: {
  49895. height: math.unit(6 + 2/12, "feet"),
  49896. name: "Back",
  49897. image: {
  49898. source: "./media/characters/nox/back.svg",
  49899. extra: 1896/1815,
  49900. bottom: 21/1917
  49901. }
  49902. },
  49903. head: {
  49904. height: math.unit(1.1, "feet"),
  49905. name: "Head",
  49906. image: {
  49907. source: "./media/characters/nox/head.svg",
  49908. extra: 874/704,
  49909. bottom: 0/874
  49910. }
  49911. },
  49912. tattoo: {
  49913. height: math.unit(0.729, "feet"),
  49914. name: "Tattoo",
  49915. image: {
  49916. source: "./media/characters/nox/tattoo.svg"
  49917. }
  49918. },
  49919. },
  49920. [
  49921. {
  49922. name: "Normal",
  49923. height: math.unit(6 + 2/12, "feet")
  49924. },
  49925. {
  49926. name: "Gigamacro",
  49927. height: math.unit(2, "earths"),
  49928. default: true
  49929. },
  49930. {
  49931. name: "Cosmic",
  49932. height: math.unit(867, "yottameters")
  49933. },
  49934. ]
  49935. ))
  49936. characterMakers.push(() => makeCharacter(
  49937. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  49938. {
  49939. front: {
  49940. height: math.unit(6, "feet"),
  49941. weight: math.unit(150, "lb"),
  49942. name: "Front",
  49943. image: {
  49944. source: "./media/characters/caspian/front.svg",
  49945. extra: 1443/1359,
  49946. bottom: 0/1443
  49947. }
  49948. },
  49949. back: {
  49950. height: math.unit(6, "feet"),
  49951. weight: math.unit(150, "lb"),
  49952. name: "Back",
  49953. image: {
  49954. source: "./media/characters/caspian/back.svg",
  49955. extra: 1379/1309,
  49956. bottom: 0/1379
  49957. }
  49958. },
  49959. head: {
  49960. height: math.unit(0.9, "feet"),
  49961. name: "Head",
  49962. image: {
  49963. source: "./media/characters/caspian/head.svg",
  49964. extra: 692/492,
  49965. bottom: 0/692
  49966. }
  49967. },
  49968. headAlt: {
  49969. height: math.unit(0.95, "feet"),
  49970. name: "Head (Alt)",
  49971. image: {
  49972. source: "./media/characters/caspian/head-alt.svg",
  49973. extra: 668/508,
  49974. bottom: 0/668
  49975. }
  49976. },
  49977. hand: {
  49978. height: math.unit(0.8, "feet"),
  49979. name: "Hand",
  49980. image: {
  49981. source: "./media/characters/caspian/hand.svg"
  49982. }
  49983. },
  49984. paw: {
  49985. height: math.unit(0.95, "feet"),
  49986. name: "Paw",
  49987. image: {
  49988. source: "./media/characters/caspian/paw.svg"
  49989. }
  49990. },
  49991. },
  49992. [
  49993. {
  49994. name: "Normal",
  49995. height: math.unit(162, "feet"),
  49996. default: true
  49997. },
  49998. ]
  49999. ))
  50000. characterMakers.push(() => makeCharacter(
  50001. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  50002. {
  50003. front: {
  50004. height: math.unit(6, "feet"),
  50005. name: "Front",
  50006. image: {
  50007. source: "./media/characters/myra-aisling/front.svg",
  50008. extra: 1268/1166,
  50009. bottom: 73/1341
  50010. }
  50011. },
  50012. back: {
  50013. height: math.unit(6, "feet"),
  50014. name: "Back",
  50015. image: {
  50016. source: "./media/characters/myra-aisling/back.svg",
  50017. extra: 1249/1149,
  50018. bottom: 79/1328
  50019. }
  50020. },
  50021. dressed: {
  50022. height: math.unit(6, "feet"),
  50023. name: "Dressed",
  50024. image: {
  50025. source: "./media/characters/myra-aisling/dressed.svg",
  50026. extra: 1290/1189,
  50027. bottom: 47/1337
  50028. }
  50029. },
  50030. hand: {
  50031. height: math.unit(1.1, "feet"),
  50032. name: "Hand",
  50033. image: {
  50034. source: "./media/characters/myra-aisling/hand.svg"
  50035. }
  50036. },
  50037. paw: {
  50038. height: math.unit(1.23, "feet"),
  50039. name: "Paw",
  50040. image: {
  50041. source: "./media/characters/myra-aisling/paw.svg"
  50042. }
  50043. },
  50044. },
  50045. [
  50046. {
  50047. name: "Normal",
  50048. height: math.unit(160, "feet"),
  50049. default: true
  50050. },
  50051. ]
  50052. ))
  50053. characterMakers.push(() => makeCharacter(
  50054. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  50055. {
  50056. front: {
  50057. height: math.unit(6, "feet"),
  50058. name: "Front",
  50059. image: {
  50060. source: "./media/characters/tenley-sidero/front.svg",
  50061. extra: 1365/1276,
  50062. bottom: 47/1412
  50063. }
  50064. },
  50065. back: {
  50066. height: math.unit(6, "feet"),
  50067. name: "Back",
  50068. image: {
  50069. source: "./media/characters/tenley-sidero/back.svg",
  50070. extra: 1383/1283,
  50071. bottom: 35/1418
  50072. }
  50073. },
  50074. dressed: {
  50075. height: math.unit(6, "feet"),
  50076. name: "Dressed",
  50077. image: {
  50078. source: "./media/characters/tenley-sidero/dressed.svg",
  50079. extra: 1364/1275,
  50080. bottom: 42/1406
  50081. }
  50082. },
  50083. head: {
  50084. height: math.unit(1.47, "feet"),
  50085. name: "Head",
  50086. image: {
  50087. source: "./media/characters/tenley-sidero/head.svg",
  50088. extra: 610/490,
  50089. bottom: 0/610
  50090. }
  50091. },
  50092. },
  50093. [
  50094. {
  50095. name: "Normal",
  50096. height: math.unit(154, "feet"),
  50097. default: true
  50098. },
  50099. ]
  50100. ))
  50101. characterMakers.push(() => makeCharacter(
  50102. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  50103. {
  50104. front: {
  50105. height: math.unit(5, "inches"),
  50106. name: "Front",
  50107. image: {
  50108. source: "./media/characters/mallory/front.svg",
  50109. extra: 1919/1678,
  50110. bottom: 29/1948
  50111. }
  50112. },
  50113. hand: {
  50114. height: math.unit(0.73, "inches"),
  50115. name: "Hand",
  50116. image: {
  50117. source: "./media/characters/mallory/hand.svg"
  50118. }
  50119. },
  50120. paw: {
  50121. height: math.unit(0.68, "inches"),
  50122. name: "Paw",
  50123. image: {
  50124. source: "./media/characters/mallory/paw.svg"
  50125. }
  50126. },
  50127. },
  50128. [
  50129. {
  50130. name: "Small",
  50131. height: math.unit(5, "inches"),
  50132. default: true
  50133. },
  50134. ]
  50135. ))
  50136. characterMakers.push(() => makeCharacter(
  50137. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  50138. {
  50139. naked: {
  50140. height: math.unit(6, "feet"),
  50141. name: "Naked",
  50142. image: {
  50143. source: "./media/characters/mab/naked.svg",
  50144. extra: 1855/1757,
  50145. bottom: 208/2063
  50146. }
  50147. },
  50148. outside: {
  50149. height: math.unit(6, "feet"),
  50150. name: "Outside",
  50151. image: {
  50152. source: "./media/characters/mab/outside.svg",
  50153. extra: 1855/1757,
  50154. bottom: 208/2063
  50155. }
  50156. },
  50157. party: {
  50158. height: math.unit(6, "feet"),
  50159. name: "Party",
  50160. image: {
  50161. source: "./media/characters/mab/party.svg",
  50162. extra: 1855/1757,
  50163. bottom: 208/2063
  50164. }
  50165. },
  50166. },
  50167. [
  50168. {
  50169. name: "Normal",
  50170. height: math.unit(165, "feet"),
  50171. default: true
  50172. },
  50173. ]
  50174. ))
  50175. characterMakers.push(() => makeCharacter(
  50176. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  50177. {
  50178. feral: {
  50179. height: math.unit(12, "feet"),
  50180. weight: math.unit(20000, "lb"),
  50181. name: "Side",
  50182. image: {
  50183. source: "./media/characters/winter/feral.svg",
  50184. extra: 1286/943,
  50185. bottom: 112/1398
  50186. },
  50187. form: "feral",
  50188. default: true
  50189. },
  50190. feralNsfw: {
  50191. height: math.unit(12, "feet"),
  50192. weight: math.unit(20000, "lb"),
  50193. name: "Side (NSFW)",
  50194. image: {
  50195. source: "./media/characters/winter/feral-nsfw.svg",
  50196. extra: 1286/943,
  50197. bottom: 112/1398
  50198. },
  50199. form: "feral"
  50200. },
  50201. dick: {
  50202. height: math.unit(3.79, "feet"),
  50203. name: "Dick",
  50204. image: {
  50205. source: "./media/characters/winter/dick.svg"
  50206. },
  50207. form: "feral"
  50208. },
  50209. anthro: {
  50210. height: math.unit(12, "feet"),
  50211. weight: math.unit(10, "tons"),
  50212. name: "Anthro",
  50213. image: {
  50214. source: "./media/characters/winter/anthro.svg",
  50215. extra: 1701/1553,
  50216. bottom: 64/1765
  50217. },
  50218. form: "anthro",
  50219. default: true
  50220. },
  50221. },
  50222. [
  50223. {
  50224. name: "Big",
  50225. height: math.unit(12, "feet"),
  50226. default: true,
  50227. form: "feral"
  50228. },
  50229. {
  50230. name: "Big",
  50231. height: math.unit(12, "feet"),
  50232. default: true,
  50233. form: "anthro"
  50234. },
  50235. ],
  50236. {
  50237. "feral": {
  50238. name: "Feral",
  50239. default: true
  50240. },
  50241. "anthro": {
  50242. name: "Anthro"
  50243. }
  50244. }
  50245. ))
  50246. characterMakers.push(() => makeCharacter(
  50247. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  50248. {
  50249. front: {
  50250. height: math.unit(4.1, "inches"),
  50251. name: "Front",
  50252. image: {
  50253. source: "./media/characters/alto/front.svg",
  50254. extra: 736/627,
  50255. bottom: 90/826
  50256. }
  50257. },
  50258. },
  50259. [
  50260. {
  50261. name: "Normal",
  50262. height: math.unit(4.1, "inches"),
  50263. default: true
  50264. },
  50265. ]
  50266. ))
  50267. characterMakers.push(() => makeCharacter(
  50268. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  50269. {
  50270. sitting: {
  50271. height: math.unit(3, "feet"),
  50272. name: "Sitting",
  50273. image: {
  50274. source: "./media/characters/ratstrid-v/sitting.svg",
  50275. extra: 355/310,
  50276. bottom: 136/491
  50277. }
  50278. },
  50279. },
  50280. [
  50281. {
  50282. name: "Normal",
  50283. height: math.unit(3, "feet"),
  50284. default: true
  50285. },
  50286. ]
  50287. ))
  50288. characterMakers.push(() => makeCharacter(
  50289. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  50290. {
  50291. back: {
  50292. height: math.unit(6, "feet"),
  50293. weight: math.unit(450, "lb"),
  50294. name: "Back",
  50295. image: {
  50296. source: "./media/characters/siz/back.svg",
  50297. extra: 1449/1274,
  50298. bottom: 13/1462
  50299. }
  50300. },
  50301. },
  50302. [
  50303. {
  50304. name: "Smallest",
  50305. height: math.unit(18 + 3/12, "feet")
  50306. },
  50307. {
  50308. name: "Modest",
  50309. height: math.unit(56 + 8/12, "feet"),
  50310. default: true
  50311. },
  50312. {
  50313. name: "Largest",
  50314. height: math.unit(3590, "feet")
  50315. },
  50316. ]
  50317. ))
  50318. characterMakers.push(() => makeCharacter(
  50319. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  50320. {
  50321. front: {
  50322. height: math.unit(5 + 9/12, "feet"),
  50323. weight: math.unit(150, "lb"),
  50324. name: "Front",
  50325. image: {
  50326. source: "./media/characters/ven/front.svg",
  50327. extra: 1372/1320,
  50328. bottom: 73/1445
  50329. }
  50330. },
  50331. side: {
  50332. height: math.unit(5 + 9/12, "feet"),
  50333. weight: math.unit(1150, "lb"),
  50334. name: "Side",
  50335. image: {
  50336. source: "./media/characters/ven/side.svg",
  50337. extra: 1119/1070,
  50338. bottom: 42/1161
  50339. },
  50340. default: true
  50341. },
  50342. },
  50343. [
  50344. {
  50345. name: "Normal",
  50346. height: math.unit(5 + 9/12, "feet"),
  50347. default: true
  50348. },
  50349. ]
  50350. ))
  50351. characterMakers.push(() => makeCharacter(
  50352. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  50353. {
  50354. front: {
  50355. height: math.unit(12, "feet"),
  50356. weight: math.unit(1000, "kg"),
  50357. name: "Front",
  50358. image: {
  50359. source: "./media/characters/maple/front.svg",
  50360. extra: 1193/1081,
  50361. bottom: 22/1215
  50362. }
  50363. },
  50364. },
  50365. [
  50366. {
  50367. name: "Compressed",
  50368. height: math.unit(7, "feet")
  50369. },
  50370. {
  50371. name: "Normal",
  50372. height: math.unit(12, "feet"),
  50373. default: true
  50374. },
  50375. ]
  50376. ))
  50377. characterMakers.push(() => makeCharacter(
  50378. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  50379. {
  50380. front: {
  50381. height: math.unit(9, "feet"),
  50382. weight: math.unit(1500, "lb"),
  50383. name: "Front",
  50384. image: {
  50385. source: "./media/characters/nora/front.svg",
  50386. extra: 1348/1286,
  50387. bottom: 218/1566
  50388. }
  50389. },
  50390. erect: {
  50391. height: math.unit(9, "feet"),
  50392. weight: math.unit(11500, "lb"),
  50393. name: "Erect",
  50394. image: {
  50395. source: "./media/characters/nora/erect.svg",
  50396. extra: 1488/1433,
  50397. bottom: 133/1621
  50398. }
  50399. },
  50400. },
  50401. [
  50402. {
  50403. name: "Normal",
  50404. height: math.unit(9, "feet"),
  50405. default: true
  50406. },
  50407. ]
  50408. ))
  50409. characterMakers.push(() => makeCharacter(
  50410. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  50411. {
  50412. front: {
  50413. height: math.unit(25, "feet"),
  50414. weight: math.unit(27500, "lb"),
  50415. name: "Front",
  50416. image: {
  50417. source: "./media/characters/north-caudin/front.svg",
  50418. extra: 1184/1082,
  50419. bottom: 23/1207
  50420. }
  50421. },
  50422. },
  50423. [
  50424. {
  50425. name: "Compressed",
  50426. height: math.unit(10, "feet")
  50427. },
  50428. {
  50429. name: "Normal",
  50430. height: math.unit(25, "feet"),
  50431. default: true
  50432. },
  50433. ]
  50434. ))
  50435. characterMakers.push(() => makeCharacter(
  50436. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  50437. {
  50438. front: {
  50439. height: math.unit(9, "feet"),
  50440. weight: math.unit(1250, "lb"),
  50441. name: "Front",
  50442. image: {
  50443. source: "./media/characters/merrian/front.svg",
  50444. extra: 2393/2304,
  50445. bottom: 40/2433
  50446. }
  50447. },
  50448. },
  50449. [
  50450. {
  50451. name: "Normal",
  50452. height: math.unit(9, "feet"),
  50453. default: true
  50454. },
  50455. ]
  50456. ))
  50457. characterMakers.push(() => makeCharacter(
  50458. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  50459. {
  50460. front: {
  50461. height: math.unit(9, "feet"),
  50462. weight: math.unit(1000, "lb"),
  50463. name: "Front",
  50464. image: {
  50465. source: "./media/characters/hazel/front.svg",
  50466. extra: 2351/2298,
  50467. bottom: 38/2389
  50468. }
  50469. },
  50470. },
  50471. [
  50472. {
  50473. name: "Normal",
  50474. height: math.unit(9, "feet"),
  50475. default: true
  50476. },
  50477. ]
  50478. ))
  50479. characterMakers.push(() => makeCharacter(
  50480. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  50481. {
  50482. front: {
  50483. height: math.unit(13, "feet"),
  50484. weight: math.unit(3200, "lb"),
  50485. name: "Front",
  50486. image: {
  50487. source: "./media/characters/emma/front.svg",
  50488. extra: 2263/2029,
  50489. bottom: 68/2331
  50490. }
  50491. },
  50492. },
  50493. [
  50494. {
  50495. name: "Normal",
  50496. height: math.unit(13, "feet"),
  50497. default: true
  50498. },
  50499. ]
  50500. ))
  50501. characterMakers.push(() => makeCharacter(
  50502. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  50503. {
  50504. front: {
  50505. height: math.unit(11 + 9/12, "feet"),
  50506. weight: math.unit(2500, "lb"),
  50507. name: "Front",
  50508. image: {
  50509. source: "./media/characters/ilumina/front.svg",
  50510. extra: 2248/2209,
  50511. bottom: 164/2412
  50512. }
  50513. },
  50514. },
  50515. [
  50516. {
  50517. name: "Normal",
  50518. height: math.unit(11 + 9/12, "feet"),
  50519. default: true
  50520. },
  50521. ]
  50522. ))
  50523. characterMakers.push(() => makeCharacter(
  50524. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  50525. {
  50526. front: {
  50527. height: math.unit(8 + 10/12, "feet"),
  50528. weight: math.unit(1350, "lb"),
  50529. name: "Front",
  50530. image: {
  50531. source: "./media/characters/moonshine/front.svg",
  50532. extra: 2395/2288,
  50533. bottom: 40/2435
  50534. }
  50535. },
  50536. },
  50537. [
  50538. {
  50539. name: "Normal",
  50540. height: math.unit(8 + 10/12, "feet"),
  50541. default: true
  50542. },
  50543. ]
  50544. ))
  50545. characterMakers.push(() => makeCharacter(
  50546. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  50547. {
  50548. front: {
  50549. height: math.unit(14, "feet"),
  50550. weight: math.unit(3400, "lb"),
  50551. name: "Front",
  50552. image: {
  50553. source: "./media/characters/aletia/front.svg",
  50554. extra: 1185/1052,
  50555. bottom: 21/1206
  50556. }
  50557. },
  50558. },
  50559. [
  50560. {
  50561. name: "Compressed",
  50562. height: math.unit(8, "feet")
  50563. },
  50564. {
  50565. name: "Normal",
  50566. height: math.unit(14, "feet"),
  50567. default: true
  50568. },
  50569. ]
  50570. ))
  50571. characterMakers.push(() => makeCharacter(
  50572. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  50573. {
  50574. front: {
  50575. height: math.unit(17, "feet"),
  50576. weight: math.unit(6500, "lb"),
  50577. name: "Front",
  50578. image: {
  50579. source: "./media/characters/deidra/front.svg",
  50580. extra: 1201/1081,
  50581. bottom: 16/1217
  50582. }
  50583. },
  50584. },
  50585. [
  50586. {
  50587. name: "Compressed",
  50588. height: math.unit(9 + 6/12, "feet")
  50589. },
  50590. {
  50591. name: "Normal",
  50592. height: math.unit(17, "feet"),
  50593. default: true
  50594. },
  50595. ]
  50596. ))
  50597. characterMakers.push(() => makeCharacter(
  50598. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  50599. {
  50600. front: {
  50601. height: math.unit(7 + 4/12, "feet"),
  50602. weight: math.unit(280, "lb"),
  50603. name: "Front",
  50604. image: {
  50605. source: "./media/characters/freki-yrmori/front.svg",
  50606. extra: 1286/1182,
  50607. bottom: 29/1315
  50608. }
  50609. },
  50610. maw: {
  50611. height: math.unit(0.9, "feet"),
  50612. name: "Maw",
  50613. image: {
  50614. source: "./media/characters/freki-yrmori/maw.svg"
  50615. }
  50616. },
  50617. },
  50618. [
  50619. {
  50620. name: "Normal",
  50621. height: math.unit(7 + 4/12, "feet"),
  50622. default: true
  50623. },
  50624. {
  50625. name: "Macro",
  50626. height: math.unit(38.5, "meters")
  50627. },
  50628. ]
  50629. ))
  50630. characterMakers.push(() => makeCharacter(
  50631. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  50632. {
  50633. side: {
  50634. height: math.unit(47.2, "meters"),
  50635. weight: math.unit(10000, "tons"),
  50636. name: "Side",
  50637. image: {
  50638. source: "./media/characters/aetherios/side.svg",
  50639. extra: 2363/642,
  50640. bottom: 221/2584
  50641. }
  50642. },
  50643. top: {
  50644. height: math.unit(240, "meters"),
  50645. weight: math.unit(10000, "tons"),
  50646. name: "Top",
  50647. image: {
  50648. source: "./media/characters/aetherios/top.svg"
  50649. }
  50650. },
  50651. bottom: {
  50652. height: math.unit(240, "meters"),
  50653. weight: math.unit(10000, "tons"),
  50654. name: "Bottom",
  50655. image: {
  50656. source: "./media/characters/aetherios/bottom.svg"
  50657. }
  50658. },
  50659. head: {
  50660. height: math.unit(38.6, "meters"),
  50661. name: "Head",
  50662. image: {
  50663. source: "./media/characters/aetherios/head.svg",
  50664. extra: 1335/1112,
  50665. bottom: 0/1335
  50666. }
  50667. },
  50668. front: {
  50669. height: math.unit(29, "meters"),
  50670. name: "Front",
  50671. image: {
  50672. source: "./media/characters/aetherios/front.svg",
  50673. extra: 1266/953,
  50674. bottom: 158/1424
  50675. }
  50676. },
  50677. maw: {
  50678. height: math.unit(16.37, "meters"),
  50679. name: "Maw",
  50680. image: {
  50681. source: "./media/characters/aetherios/maw.svg",
  50682. extra: 748/637,
  50683. bottom: 0/748
  50684. },
  50685. extraAttributes: {
  50686. preyCapacity: {
  50687. name: "Capacity",
  50688. power: 3,
  50689. type: "volume",
  50690. base: math.unit(1000, "people")
  50691. },
  50692. tongueSize: {
  50693. name: "Tongue Size",
  50694. power: 2,
  50695. type: "area",
  50696. base: math.unit(21, "m^2")
  50697. }
  50698. }
  50699. },
  50700. forepaw: {
  50701. height: math.unit(18, "meters"),
  50702. name: "Forepaw",
  50703. image: {
  50704. source: "./media/characters/aetherios/forepaw.svg"
  50705. }
  50706. },
  50707. hindpaw: {
  50708. height: math.unit(23, "meters"),
  50709. name: "Hindpaw",
  50710. image: {
  50711. source: "./media/characters/aetherios/hindpaw.svg"
  50712. }
  50713. },
  50714. genitals: {
  50715. height: math.unit(42, "meters"),
  50716. name: "Genitals",
  50717. image: {
  50718. source: "./media/characters/aetherios/genitals.svg"
  50719. }
  50720. },
  50721. },
  50722. [
  50723. {
  50724. name: "Normal",
  50725. height: math.unit(47.2, "meters"),
  50726. default: true
  50727. },
  50728. {
  50729. name: "Macro",
  50730. height: math.unit(160, "meters")
  50731. },
  50732. {
  50733. name: "Mega",
  50734. height: math.unit(1.87, "km")
  50735. },
  50736. {
  50737. name: "Giga",
  50738. height: math.unit(40000, "km")
  50739. },
  50740. {
  50741. name: "Stellar",
  50742. height: math.unit(158000000, "km")
  50743. },
  50744. {
  50745. name: "Cosmic",
  50746. height: math.unit(9.46e12, "km")
  50747. },
  50748. ]
  50749. ))
  50750. characterMakers.push(() => makeCharacter(
  50751. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  50752. {
  50753. front: {
  50754. height: math.unit(5 + 4/12, "feet"),
  50755. weight: math.unit(80, "lb"),
  50756. name: "Front",
  50757. image: {
  50758. source: "./media/characters/mizu-gieeg/front.svg",
  50759. extra: 850/709,
  50760. bottom: 52/902
  50761. }
  50762. },
  50763. back: {
  50764. height: math.unit(5 + 4/12, "feet"),
  50765. weight: math.unit(80, "lb"),
  50766. name: "Back",
  50767. image: {
  50768. source: "./media/characters/mizu-gieeg/back.svg",
  50769. extra: 882/745,
  50770. bottom: 25/907
  50771. }
  50772. },
  50773. },
  50774. [
  50775. {
  50776. name: "Normal",
  50777. height: math.unit(5 + 4/12, "feet"),
  50778. default: true
  50779. },
  50780. ]
  50781. ))
  50782. characterMakers.push(() => makeCharacter(
  50783. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  50784. {
  50785. front: {
  50786. height: math.unit(6, "feet"),
  50787. name: "Front",
  50788. image: {
  50789. source: "./media/characters/roselle-st-papier/front.svg",
  50790. extra: 1430/1280,
  50791. bottom: 37/1467
  50792. }
  50793. },
  50794. back: {
  50795. height: math.unit(6, "feet"),
  50796. name: "Back",
  50797. image: {
  50798. source: "./media/characters/roselle-st-papier/back.svg",
  50799. extra: 1491/1296,
  50800. bottom: 23/1514
  50801. }
  50802. },
  50803. ear: {
  50804. height: math.unit(1.26, "feet"),
  50805. name: "Ear",
  50806. image: {
  50807. source: "./media/characters/roselle-st-papier/ear.svg"
  50808. }
  50809. },
  50810. },
  50811. [
  50812. {
  50813. name: "Normal",
  50814. height: math.unit(150, "feet"),
  50815. default: true
  50816. },
  50817. ]
  50818. ))
  50819. characterMakers.push(() => makeCharacter(
  50820. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  50821. {
  50822. front: {
  50823. height: math.unit(1, "inches"),
  50824. name: "Front",
  50825. image: {
  50826. source: "./media/characters/valargent/front.svg",
  50827. extra: 1825/1694,
  50828. bottom: 62/1887
  50829. }
  50830. },
  50831. back: {
  50832. height: math.unit(1, "inches"),
  50833. name: "Back",
  50834. image: {
  50835. source: "./media/characters/valargent/back.svg",
  50836. extra: 1775/1682,
  50837. bottom: 88/1863
  50838. }
  50839. },
  50840. },
  50841. [
  50842. {
  50843. name: "Micro",
  50844. height: math.unit(1, "inch"),
  50845. default: true
  50846. },
  50847. ]
  50848. ))
  50849. characterMakers.push(() => makeCharacter(
  50850. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  50851. {
  50852. front: {
  50853. height: math.unit(3.4, "meters"),
  50854. name: "Front",
  50855. image: {
  50856. source: "./media/characters/zarina/front.svg",
  50857. extra: 1733/1425,
  50858. bottom: 93/1826
  50859. }
  50860. },
  50861. squatting: {
  50862. height: math.unit(2.14, "meters"),
  50863. name: "Squatting",
  50864. image: {
  50865. source: "./media/characters/zarina/squatting.svg",
  50866. extra: 1073/788,
  50867. bottom: 63/1136
  50868. }
  50869. },
  50870. back: {
  50871. height: math.unit(2.14, "meters"),
  50872. name: "Back",
  50873. image: {
  50874. source: "./media/characters/zarina/back.svg",
  50875. extra: 1128/885,
  50876. bottom: 0/1128
  50877. }
  50878. },
  50879. },
  50880. [
  50881. {
  50882. name: "Normal",
  50883. height: math.unit(3.4, "meters"),
  50884. default: true
  50885. },
  50886. {
  50887. name: "Big",
  50888. height: math.unit(5, "meters")
  50889. },
  50890. {
  50891. name: "Macro",
  50892. height: math.unit(110, "meters")
  50893. },
  50894. ]
  50895. ))
  50896. characterMakers.push(() => makeCharacter(
  50897. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  50898. {
  50899. front: {
  50900. height: math.unit(7, "feet"),
  50901. name: "Front",
  50902. image: {
  50903. source: "./media/characters/ventus-astro-fox/front.svg",
  50904. extra: 1792/1623,
  50905. bottom: 28/1820
  50906. }
  50907. },
  50908. back: {
  50909. height: math.unit(7, "feet"),
  50910. name: "Back",
  50911. image: {
  50912. source: "./media/characters/ventus-astro-fox/back.svg",
  50913. extra: 1789/1620,
  50914. bottom: 31/1820
  50915. }
  50916. },
  50917. outfit: {
  50918. height: math.unit(7, "feet"),
  50919. name: "Outfit",
  50920. image: {
  50921. source: "./media/characters/ventus-astro-fox/outfit.svg",
  50922. extra: 1054/925,
  50923. bottom: 15/1069
  50924. }
  50925. },
  50926. head: {
  50927. height: math.unit(1.12, "feet"),
  50928. name: "Head",
  50929. image: {
  50930. source: "./media/characters/ventus-astro-fox/head.svg",
  50931. extra: 866/504,
  50932. bottom: 0/866
  50933. }
  50934. },
  50935. hand: {
  50936. height: math.unit(1, "feet"),
  50937. name: "Hand",
  50938. image: {
  50939. source: "./media/characters/ventus-astro-fox/hand.svg"
  50940. }
  50941. },
  50942. paw: {
  50943. height: math.unit(1.5, "feet"),
  50944. name: "Paw",
  50945. image: {
  50946. source: "./media/characters/ventus-astro-fox/paw.svg"
  50947. }
  50948. },
  50949. },
  50950. [
  50951. {
  50952. name: "Normal",
  50953. height: math.unit(7, "feet"),
  50954. default: true
  50955. },
  50956. {
  50957. name: "Macro",
  50958. height: math.unit(200, "feet")
  50959. },
  50960. {
  50961. name: "Cosmic",
  50962. height: math.unit(3, "universes")
  50963. },
  50964. ]
  50965. ))
  50966. characterMakers.push(() => makeCharacter(
  50967. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  50968. {
  50969. front: {
  50970. height: math.unit(3, "meters"),
  50971. weight: math.unit(7000, "lb"),
  50972. name: "Front",
  50973. image: {
  50974. source: "./media/characters/core-t/front.svg",
  50975. extra: 5729/4941,
  50976. bottom: 1129/6858
  50977. }
  50978. },
  50979. },
  50980. [
  50981. {
  50982. name: "Big",
  50983. height: math.unit(3, "meters"),
  50984. default: true
  50985. },
  50986. ]
  50987. ))
  50988. characterMakers.push(() => makeCharacter(
  50989. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  50990. {
  50991. normal: {
  50992. height: math.unit(6 + 6/12, "feet"),
  50993. weight: math.unit(275, "lb"),
  50994. name: "Front",
  50995. image: {
  50996. source: "./media/characters/cadbunny/normal.svg",
  50997. extra: 1129/947,
  50998. bottom: 93/1222
  50999. },
  51000. default: true,
  51001. form: "normal"
  51002. },
  51003. gigantamax: {
  51004. height: math.unit(26, "feet"),
  51005. weight: math.unit(16000, "lb"),
  51006. name: "Front",
  51007. image: {
  51008. source: "./media/characters/cadbunny/gigantamax.svg",
  51009. extra: 1133/944,
  51010. bottom: 90/1223
  51011. },
  51012. default: true,
  51013. form: "gigantamax"
  51014. },
  51015. },
  51016. [
  51017. {
  51018. name: "Normal",
  51019. height: math.unit(6 + 6/12, "feet"),
  51020. default: true,
  51021. form: "normal"
  51022. },
  51023. {
  51024. name: "Small",
  51025. height: math.unit(26, "feet"),
  51026. default: true,
  51027. form: "gigantamax"
  51028. },
  51029. {
  51030. name: "Large",
  51031. height: math.unit(78, "feet"),
  51032. form: "gigantamax"
  51033. },
  51034. ],
  51035. {
  51036. "normal": {
  51037. name: "Normal",
  51038. default: true
  51039. },
  51040. "gigantamax": {
  51041. name: "Gigantamax"
  51042. }
  51043. }
  51044. ))
  51045. characterMakers.push(() => makeCharacter(
  51046. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  51047. {
  51048. anthroFront: {
  51049. height: math.unit(8, "feet"),
  51050. weight: math.unit(300, "lb"),
  51051. name: "Front",
  51052. image: {
  51053. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  51054. extra: 1272/1176,
  51055. bottom: 53/1325
  51056. },
  51057. form: "anthro",
  51058. default: true
  51059. },
  51060. feralSide: {
  51061. height: math.unit(4, "feet"),
  51062. weight: math.unit(250, "lb"),
  51063. name: "Side",
  51064. image: {
  51065. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  51066. extra: 731/621,
  51067. bottom: 0/731
  51068. },
  51069. form: "feral",
  51070. default: true
  51071. },
  51072. },
  51073. [
  51074. {
  51075. name: "Regular",
  51076. height: math.unit(8, "feet"),
  51077. form: "anthro"
  51078. },
  51079. {
  51080. name: "Macro",
  51081. height: math.unit(250, "feet"),
  51082. form: "anthro",
  51083. default: true
  51084. },
  51085. {
  51086. name: "Regular",
  51087. height: math.unit(4, "feet"),
  51088. form: "feral"
  51089. },
  51090. {
  51091. name: "Macro",
  51092. height: math.unit(125, "feet"),
  51093. form: "feral",
  51094. default: true
  51095. },
  51096. ],
  51097. {
  51098. "anthro": {
  51099. name: "Anthro",
  51100. default: true
  51101. },
  51102. "feral": {
  51103. name: "Feral",
  51104. },
  51105. }
  51106. ))
  51107. characterMakers.push(() => makeCharacter(
  51108. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  51109. {
  51110. front: {
  51111. height: math.unit(11 + 10/12, "feet"),
  51112. weight: math.unit(1587, "kg"),
  51113. name: "Front",
  51114. image: {
  51115. source: "./media/characters/maple-javira-dragon/front.svg",
  51116. extra: 1136/744,
  51117. bottom: 73/1209
  51118. }
  51119. },
  51120. side: {
  51121. height: math.unit(11 + 10/12, "feet"),
  51122. weight: math.unit(1587, "kg"),
  51123. name: "Side",
  51124. image: {
  51125. source: "./media/characters/maple-javira-dragon/side.svg",
  51126. extra: 712/505,
  51127. bottom: 17/729
  51128. }
  51129. },
  51130. head: {
  51131. height: math.unit(8.05, "feet"),
  51132. name: "Head",
  51133. image: {
  51134. source: "./media/characters/maple-javira-dragon/head.svg",
  51135. extra: 1420/1344,
  51136. bottom: 0/1420
  51137. }
  51138. },
  51139. },
  51140. [
  51141. {
  51142. name: "Normal",
  51143. height: math.unit(11 + 10/12, "feet"),
  51144. default: true
  51145. },
  51146. ]
  51147. ))
  51148. characterMakers.push(() => makeCharacter(
  51149. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  51150. {
  51151. front: {
  51152. height: math.unit(117, "cm"),
  51153. weight: math.unit(50, "kg"),
  51154. name: "Front",
  51155. image: {
  51156. source: "./media/characters/sonia-wyverntail/front.svg",
  51157. extra: 708/592,
  51158. bottom: 25/733
  51159. }
  51160. },
  51161. },
  51162. [
  51163. {
  51164. name: "Normal",
  51165. height: math.unit(117, "cm"),
  51166. default: true
  51167. },
  51168. ]
  51169. ))
  51170. characterMakers.push(() => makeCharacter(
  51171. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  51172. {
  51173. front: {
  51174. height: math.unit(6 + 5/12, "feet"),
  51175. name: "Front",
  51176. image: {
  51177. source: "./media/characters/micah/front.svg",
  51178. extra: 1758/1546,
  51179. bottom: 214/1972
  51180. }
  51181. },
  51182. },
  51183. [
  51184. {
  51185. name: "Normal",
  51186. height: math.unit(6 + 5/12, "feet"),
  51187. default: true
  51188. },
  51189. ]
  51190. ))
  51191. characterMakers.push(() => makeCharacter(
  51192. { name: "Zarya", species: ["raccoon"], tags: ["anthro"] },
  51193. {
  51194. front: {
  51195. height: math.unit(5 + 10/12, "feet"),
  51196. weight: math.unit(220, "lb"),
  51197. name: "Front",
  51198. image: {
  51199. source: "./media/characters/zarya/front.svg",
  51200. extra: 593/572,
  51201. bottom: 50/643
  51202. }
  51203. },
  51204. back: {
  51205. height: math.unit(5 + 10/12, "feet"),
  51206. weight: math.unit(220, "lb"),
  51207. name: "Back",
  51208. image: {
  51209. source: "./media/characters/zarya/back.svg",
  51210. extra: 603/582,
  51211. bottom: 38/641
  51212. }
  51213. },
  51214. },
  51215. [
  51216. {
  51217. name: "Normal",
  51218. height: math.unit(5 + 10/12, "feet"),
  51219. default: true
  51220. },
  51221. ]
  51222. ))
  51223. characterMakers.push(() => makeCharacter(
  51224. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  51225. {
  51226. front: {
  51227. height: math.unit(7.5, "feet"),
  51228. name: "Front",
  51229. image: {
  51230. source: "./media/characters/sven-hatisson/front.svg",
  51231. extra: 917/857,
  51232. bottom: 42/959
  51233. }
  51234. },
  51235. back: {
  51236. height: math.unit(7.5, "feet"),
  51237. name: "Back",
  51238. image: {
  51239. source: "./media/characters/sven-hatisson/back.svg",
  51240. extra: 903/856,
  51241. bottom: 15/918
  51242. }
  51243. },
  51244. },
  51245. [
  51246. {
  51247. name: "Base Height",
  51248. height: math.unit(7.5, "feet")
  51249. },
  51250. {
  51251. name: "Usual Height",
  51252. height: math.unit(13.5, "feet"),
  51253. default: true
  51254. },
  51255. {
  51256. name: "Smaller Macro",
  51257. height: math.unit(85, "feet")
  51258. },
  51259. {
  51260. name: "Moderate Macro",
  51261. height: math.unit(320, "feet")
  51262. },
  51263. {
  51264. name: "Large Macro",
  51265. height: math.unit(1000, "feet")
  51266. },
  51267. {
  51268. name: "Largest Size",
  51269. height: math.unit(2, "miles")
  51270. },
  51271. ]
  51272. ))
  51273. characterMakers.push(() => makeCharacter(
  51274. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  51275. {
  51276. side: {
  51277. height: math.unit(1.8, "meters"),
  51278. weight: math.unit(275, "kg"),
  51279. name: "Side",
  51280. image: {
  51281. source: "./media/characters/terra/side.svg",
  51282. extra: 1273/1147,
  51283. bottom: 0/1273
  51284. }
  51285. },
  51286. },
  51287. [
  51288. {
  51289. name: "Normal",
  51290. height: math.unit(16.2, "meters"),
  51291. default: true
  51292. },
  51293. ]
  51294. ))
  51295. characterMakers.push(() => makeCharacter(
  51296. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  51297. {
  51298. borzoiFront: {
  51299. height: math.unit(6 + 9/12, "feet"),
  51300. name: "Front",
  51301. image: {
  51302. source: "./media/characters/rae/borzoi-front.svg",
  51303. extra: 1161/1098,
  51304. bottom: 31/1192
  51305. },
  51306. form: "borzoi",
  51307. default: true
  51308. },
  51309. werewolfFront: {
  51310. height: math.unit(8 + 7/12, "feet"),
  51311. name: "Front",
  51312. image: {
  51313. source: "./media/characters/rae/werewolf-front.svg",
  51314. extra: 1411/1334,
  51315. bottom: 127/1538
  51316. },
  51317. form: "werewolf",
  51318. default: true
  51319. },
  51320. },
  51321. [
  51322. {
  51323. name: "Normal",
  51324. height: math.unit(6 + 9/12, "feet"),
  51325. default: true,
  51326. form: "borzoi"
  51327. },
  51328. {
  51329. name: "Normal",
  51330. height: math.unit(8 + 7/12, "feet"),
  51331. default: true,
  51332. form: "werewolf"
  51333. },
  51334. ],
  51335. {
  51336. "borzoi": {
  51337. name: "Borzoi",
  51338. default: true
  51339. },
  51340. "werewolf": {
  51341. name: "Werewolf",
  51342. },
  51343. }
  51344. ))
  51345. characterMakers.push(() => makeCharacter(
  51346. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  51347. {
  51348. front: {
  51349. height: math.unit(8 + 7/12, "feet"),
  51350. weight: math.unit(482, "lb"),
  51351. name: "Front",
  51352. image: {
  51353. source: "./media/characters/kit/front.svg",
  51354. extra: 1247/1103,
  51355. bottom: 41/1288
  51356. }
  51357. },
  51358. back: {
  51359. height: math.unit(8 + 7/12, "feet"),
  51360. weight: math.unit(482, "lb"),
  51361. name: "Back",
  51362. image: {
  51363. source: "./media/characters/kit/back.svg",
  51364. extra: 1252/1123,
  51365. bottom: 21/1273
  51366. }
  51367. },
  51368. paw: {
  51369. height: math.unit(1.46, "feet"),
  51370. name: "Paw",
  51371. image: {
  51372. source: "./media/characters/kit/paw.svg"
  51373. }
  51374. },
  51375. },
  51376. [
  51377. {
  51378. name: "Normal",
  51379. height: math.unit(2.61, "meters"),
  51380. default: true
  51381. },
  51382. {
  51383. name: "\"Tall\"",
  51384. height: math.unit(8.21, "meters")
  51385. },
  51386. {
  51387. name: "Tall",
  51388. height: math.unit(19.6, "meters")
  51389. },
  51390. {
  51391. name: "Very Tall",
  51392. height: math.unit(57.91, "meters")
  51393. },
  51394. {
  51395. name: "Semi-Macro",
  51396. height: math.unit(138.64, "meters")
  51397. },
  51398. {
  51399. name: "Macro",
  51400. height: math.unit(831.99, "meters")
  51401. },
  51402. {
  51403. name: "EX-Macro",
  51404. height: math.unit(96451121, "meters")
  51405. },
  51406. {
  51407. name: "S1-Omnipotent",
  51408. height: math.unit(4.42074e+9, "meters")
  51409. },
  51410. {
  51411. name: "S2-Omnipotent",
  51412. height: math.unit(9.42074e+17, "meters")
  51413. },
  51414. {
  51415. name: "Omnipotent",
  51416. height: math.unit(4.23112e+24, "meters")
  51417. },
  51418. {
  51419. name: "Hypergod",
  51420. height: math.unit(5.05176e+27, "meters")
  51421. },
  51422. {
  51423. name: "Hypergod-EX",
  51424. height: math.unit(9.45532e+49, "meters")
  51425. },
  51426. {
  51427. name: "Hypergod-SP",
  51428. height: math.unit(9.45532e+195, "meters")
  51429. },
  51430. ]
  51431. ))
  51432. characterMakers.push(() => makeCharacter(
  51433. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  51434. {
  51435. side: {
  51436. height: math.unit(0.6, "meters"),
  51437. weight: math.unit(24, "kg"),
  51438. name: "Side",
  51439. image: {
  51440. source: "./media/characters/celeste/side.svg",
  51441. extra: 810/517,
  51442. bottom: 53/863
  51443. }
  51444. },
  51445. },
  51446. [
  51447. {
  51448. name: "Velociraptor",
  51449. height: math.unit(0.6, "meters"),
  51450. default: true
  51451. },
  51452. {
  51453. name: "Utahraptor",
  51454. height: math.unit(1.8, "meters")
  51455. },
  51456. {
  51457. name: "Gallimimus",
  51458. height: math.unit(4.0, "meters")
  51459. },
  51460. {
  51461. name: "Large",
  51462. height: math.unit(20, "meters")
  51463. },
  51464. {
  51465. name: "Planetary",
  51466. height: math.unit(50, "megameters")
  51467. },
  51468. {
  51469. name: "Stellar",
  51470. height: math.unit(1.5, "gigameters")
  51471. },
  51472. {
  51473. name: "Galactic",
  51474. height: math.unit(100, "exameters")
  51475. },
  51476. ]
  51477. ))
  51478. characterMakers.push(() => makeCharacter(
  51479. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  51480. {
  51481. front: {
  51482. height: math.unit(6, "feet"),
  51483. weight: math.unit(210, "lb"),
  51484. name: "Front",
  51485. image: {
  51486. source: "./media/characters/glacia/front.svg",
  51487. extra: 958/901,
  51488. bottom: 45/1003
  51489. }
  51490. },
  51491. },
  51492. [
  51493. {
  51494. name: "Macro",
  51495. height: math.unit(1000, "meters"),
  51496. default: true
  51497. },
  51498. ]
  51499. ))
  51500. characterMakers.push(() => makeCharacter(
  51501. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  51502. {
  51503. front: {
  51504. height: math.unit(4, "meters"),
  51505. name: "Front",
  51506. image: {
  51507. source: "./media/characters/giri/front.svg",
  51508. extra: 966/894,
  51509. bottom: 21/987
  51510. }
  51511. },
  51512. },
  51513. [
  51514. {
  51515. name: "Normal",
  51516. height: math.unit(4, "meters"),
  51517. default: true
  51518. },
  51519. ]
  51520. ))
  51521. characterMakers.push(() => makeCharacter(
  51522. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  51523. {
  51524. back: {
  51525. height: math.unit(4, "feet"),
  51526. weight: math.unit(37, "lb"),
  51527. name: "Back",
  51528. image: {
  51529. source: "./media/characters/tin/back.svg",
  51530. extra: 845/780,
  51531. bottom: 28/873
  51532. }
  51533. },
  51534. },
  51535. [
  51536. {
  51537. name: "Normal",
  51538. height: math.unit(4, "feet"),
  51539. default: true
  51540. },
  51541. ]
  51542. ))
  51543. characterMakers.push(() => makeCharacter(
  51544. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  51545. {
  51546. front: {
  51547. height: math.unit(25, "feet"),
  51548. name: "Front",
  51549. image: {
  51550. source: "./media/characters/cadenza-vivace/front.svg",
  51551. extra: 1842/1578,
  51552. bottom: 30/1872
  51553. }
  51554. },
  51555. },
  51556. [
  51557. {
  51558. name: "Macro",
  51559. height: math.unit(25, "feet"),
  51560. default: true
  51561. },
  51562. ]
  51563. ))
  51564. characterMakers.push(() => makeCharacter(
  51565. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  51566. {
  51567. front: {
  51568. height: math.unit(10, "feet"),
  51569. weight: math.unit(625, "kg"),
  51570. name: "Front",
  51571. image: {
  51572. source: "./media/characters/zain/front.svg",
  51573. extra: 1682/1498,
  51574. bottom: 223/1905
  51575. }
  51576. },
  51577. back: {
  51578. height: math.unit(10, "feet"),
  51579. weight: math.unit(625, "kg"),
  51580. name: "Back",
  51581. image: {
  51582. source: "./media/characters/zain/back.svg",
  51583. extra: 1814/1657,
  51584. bottom: 152/1966
  51585. }
  51586. },
  51587. head: {
  51588. height: math.unit(10, "feet"),
  51589. weight: math.unit(625, "kg"),
  51590. name: "Head",
  51591. image: {
  51592. source: "./media/characters/zain/head.svg",
  51593. extra: 1059/762,
  51594. bottom: 0/1059
  51595. }
  51596. },
  51597. },
  51598. [
  51599. {
  51600. name: "Normal",
  51601. height: math.unit(10, "feet"),
  51602. default: true
  51603. },
  51604. ]
  51605. ))
  51606. characterMakers.push(() => makeCharacter(
  51607. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  51608. {
  51609. front: {
  51610. height: math.unit(6 + 5/12, "feet"),
  51611. weight: math.unit(750, "lb"),
  51612. name: "Front",
  51613. image: {
  51614. source: "./media/characters/ruchex/front.svg",
  51615. extra: 877/820,
  51616. bottom: 17/894
  51617. },
  51618. extraAttributes: {
  51619. "width": {
  51620. name: "Width",
  51621. power: 1,
  51622. type: "length",
  51623. base: math.unit(4.757, "feet")
  51624. },
  51625. }
  51626. },
  51627. },
  51628. [
  51629. {
  51630. name: "Normal",
  51631. height: math.unit(6 + 5/12, "feet"),
  51632. default: true
  51633. },
  51634. ]
  51635. ))
  51636. characterMakers.push(() => makeCharacter(
  51637. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  51638. {
  51639. dressedFront: {
  51640. height: math.unit(191, "cm"),
  51641. weight: math.unit(80, "kg"),
  51642. name: "Front",
  51643. image: {
  51644. source: "./media/characters/buster/dressed-front.svg",
  51645. extra: 1022/973,
  51646. bottom: 69/1091
  51647. }
  51648. },
  51649. dressedBack: {
  51650. height: math.unit(191, "cm"),
  51651. weight: math.unit(80, "kg"),
  51652. name: "Back",
  51653. image: {
  51654. source: "./media/characters/buster/dressed-back.svg",
  51655. extra: 1018/970,
  51656. bottom: 55/1073
  51657. }
  51658. },
  51659. nudeFront: {
  51660. height: math.unit(191, "cm"),
  51661. weight: math.unit(80, "kg"),
  51662. name: "Front (Nude)",
  51663. image: {
  51664. source: "./media/characters/buster/nude-front.svg",
  51665. extra: 1022/973,
  51666. bottom: 69/1091
  51667. }
  51668. },
  51669. nudeBack: {
  51670. height: math.unit(191, "cm"),
  51671. weight: math.unit(80, "kg"),
  51672. name: "Back (Nude)",
  51673. image: {
  51674. source: "./media/characters/buster/nude-back.svg",
  51675. extra: 1018/970,
  51676. bottom: 55/1073
  51677. }
  51678. },
  51679. dick: {
  51680. height: math.unit(2.59, "feet"),
  51681. name: "Dick",
  51682. image: {
  51683. source: "./media/characters/buster/dick.svg"
  51684. }
  51685. },
  51686. ass: {
  51687. height: math.unit(1.2, "feet"),
  51688. name: "Ass",
  51689. image: {
  51690. source: "./media/characters/buster/ass.svg"
  51691. }
  51692. },
  51693. },
  51694. [
  51695. {
  51696. name: "Normal",
  51697. height: math.unit(191, "cm"),
  51698. default: true
  51699. },
  51700. ]
  51701. ))
  51702. characterMakers.push(() => makeCharacter(
  51703. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  51704. {
  51705. side: {
  51706. height: math.unit(8.1, "feet"),
  51707. weight: math.unit(3500, "lb"),
  51708. name: "Side",
  51709. image: {
  51710. source: "./media/characters/sonya/side.svg",
  51711. extra: 1730/1317,
  51712. bottom: 86/1816
  51713. }
  51714. },
  51715. },
  51716. [
  51717. {
  51718. name: "Normal",
  51719. height: math.unit(8.1, "feet"),
  51720. default: true
  51721. },
  51722. ]
  51723. ))
  51724. characterMakers.push(() => makeCharacter(
  51725. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  51726. {
  51727. front: {
  51728. height: math.unit(6, "feet"),
  51729. weight: math.unit(150, "lb"),
  51730. name: "Front",
  51731. image: {
  51732. source: "./media/characters/cadence-andrysiak/front.svg",
  51733. extra: 1164/1121,
  51734. bottom: 60/1224
  51735. }
  51736. },
  51737. back: {
  51738. height: math.unit(6, "feet"),
  51739. weight: math.unit(150, "lb"),
  51740. name: "Back",
  51741. image: {
  51742. source: "./media/characters/cadence-andrysiak/back.svg",
  51743. extra: 1200/1165,
  51744. bottom: 9/1209
  51745. }
  51746. },
  51747. dressed: {
  51748. height: math.unit(6, "feet"),
  51749. weight: math.unit(150, "lb"),
  51750. name: "Dressed",
  51751. image: {
  51752. source: "./media/characters/cadence-andrysiak/dressed.svg",
  51753. extra: 1164/1121,
  51754. bottom: 60/1224
  51755. }
  51756. },
  51757. },
  51758. [
  51759. {
  51760. name: "Micro",
  51761. height: math.unit(1, "mm")
  51762. },
  51763. {
  51764. name: "Normal",
  51765. height: math.unit(6, "feet"),
  51766. default: true
  51767. },
  51768. ]
  51769. ))
  51770. characterMakers.push(() => makeCharacter(
  51771. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  51772. {
  51773. front: {
  51774. height: math.unit(60, "inches"),
  51775. weight: math.unit(16, "lb"),
  51776. preyCapacity: math.unit(80, "liters"),
  51777. name: "Front",
  51778. image: {
  51779. source: "./media/characters/penny-lynx/front.svg",
  51780. extra: 1959/1769,
  51781. bottom: 49/2008
  51782. }
  51783. },
  51784. },
  51785. [
  51786. {
  51787. name: "Nokia",
  51788. height: math.unit(2, "inches")
  51789. },
  51790. {
  51791. name: "Desktop",
  51792. height: math.unit(24, "inches")
  51793. },
  51794. {
  51795. name: "TV",
  51796. height: math.unit(60, "inches")
  51797. },
  51798. {
  51799. name: "Jumbotron",
  51800. height: math.unit(12, "feet")
  51801. },
  51802. {
  51803. name: "Billboard",
  51804. height: math.unit(48, "feet"),
  51805. default: true
  51806. },
  51807. {
  51808. name: "IMAX",
  51809. height: math.unit(96, "feet")
  51810. },
  51811. {
  51812. name: "SINGULARITY",
  51813. height: math.unit(864938, "miles")
  51814. },
  51815. ]
  51816. ))
  51817. characterMakers.push(() => makeCharacter(
  51818. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  51819. {
  51820. front: {
  51821. height: math.unit(5 + 4/12, "feet"),
  51822. weight: math.unit(230, "lb"),
  51823. name: "Front",
  51824. image: {
  51825. source: "./media/characters/sukebe/front.svg",
  51826. extra: 2130/2038,
  51827. bottom: 90/2220
  51828. }
  51829. },
  51830. back: {
  51831. height: math.unit(3.48, "feet"),
  51832. weight: math.unit(230, "lb"),
  51833. name: "Back",
  51834. image: {
  51835. source: "./media/characters/sukebe/back.svg",
  51836. extra: 1670/1604,
  51837. bottom: 0/1670
  51838. }
  51839. },
  51840. },
  51841. [
  51842. {
  51843. name: "Normal",
  51844. height: math.unit(5 + 4/12, "feet"),
  51845. default: true
  51846. },
  51847. ]
  51848. ))
  51849. characterMakers.push(() => makeCharacter(
  51850. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  51851. {
  51852. front: {
  51853. height: math.unit(6, "feet"),
  51854. name: "Front",
  51855. image: {
  51856. source: "./media/characters/nylla/front.svg",
  51857. extra: 1868/1699,
  51858. bottom: 97/1965
  51859. }
  51860. },
  51861. back: {
  51862. height: math.unit(6, "feet"),
  51863. name: "Back",
  51864. image: {
  51865. source: "./media/characters/nylla/back.svg",
  51866. extra: 1889/1712,
  51867. bottom: 93/1982
  51868. }
  51869. },
  51870. frontNsfw: {
  51871. height: math.unit(6, "feet"),
  51872. name: "Front (NSFW)",
  51873. image: {
  51874. source: "./media/characters/nylla/front-nsfw.svg",
  51875. extra: 1868/1699,
  51876. bottom: 97/1965
  51877. },
  51878. extraAttributes: {
  51879. "dickLength": {
  51880. name: "Dick Length",
  51881. power: 1,
  51882. type: "length",
  51883. base: math.unit(1.4, "feet")
  51884. },
  51885. "cumVolume": {
  51886. name: "Cum Volume",
  51887. power: 3,
  51888. type: "volume",
  51889. base: math.unit(100, "mL")
  51890. },
  51891. }
  51892. },
  51893. backNsfw: {
  51894. height: math.unit(6, "feet"),
  51895. name: "Back (NSFW)",
  51896. image: {
  51897. source: "./media/characters/nylla/back-nsfw.svg",
  51898. extra: 1889/1712,
  51899. bottom: 93/1982
  51900. }
  51901. },
  51902. maw: {
  51903. height: math.unit(2.10, "feet"),
  51904. name: "Maw",
  51905. image: {
  51906. source: "./media/characters/nylla/maw.svg"
  51907. }
  51908. },
  51909. paws: {
  51910. height: math.unit(2.06, "feet"),
  51911. name: "Paws",
  51912. image: {
  51913. source: "./media/characters/nylla/paws.svg"
  51914. }
  51915. },
  51916. muzzle: {
  51917. height: math.unit(0.61, "feet"),
  51918. name: "Muzzle",
  51919. image: {
  51920. source: "./media/characters/nylla/muzzle.svg"
  51921. }
  51922. },
  51923. sheath: {
  51924. height: math.unit(1.305, "feet"),
  51925. name: "Sheath",
  51926. image: {
  51927. source: "./media/characters/nylla/sheath.svg"
  51928. }
  51929. },
  51930. },
  51931. [
  51932. {
  51933. name: "Micro",
  51934. height: math.unit(7.5, "inches")
  51935. },
  51936. {
  51937. name: "Normal",
  51938. height: math.unit(7, "feet"),
  51939. default: true
  51940. },
  51941. {
  51942. name: "Macro",
  51943. height: math.unit(60, "feet")
  51944. },
  51945. {
  51946. name: "Mega",
  51947. height: math.unit(200, "feet")
  51948. },
  51949. ]
  51950. ))
  51951. characterMakers.push(() => makeCharacter(
  51952. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  51953. {
  51954. front: {
  51955. height: math.unit(10, "feet"),
  51956. weight: math.unit(2300, "lb"),
  51957. name: "Front",
  51958. image: {
  51959. source: "./media/characters/hunt3r/front.svg",
  51960. extra: 1909/1742,
  51961. bottom: 46/1955
  51962. }
  51963. },
  51964. },
  51965. [
  51966. {
  51967. name: "Normal",
  51968. height: math.unit(10, "feet"),
  51969. default: true
  51970. },
  51971. ]
  51972. ))
  51973. characterMakers.push(() => makeCharacter(
  51974. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  51975. {
  51976. dressed: {
  51977. height: math.unit(11, "feet"),
  51978. weight: math.unit(18500, "lb"),
  51979. preyCapacity: math.unit(9, "people"),
  51980. name: "Dressed",
  51981. image: {
  51982. source: "./media/characters/cylphis/dressed.svg",
  51983. extra: 1028/1003,
  51984. bottom: 75/1103
  51985. },
  51986. },
  51987. undressed: {
  51988. height: math.unit(11, "feet"),
  51989. weight: math.unit(18500, "lb"),
  51990. preyCapacity: math.unit(9, "people"),
  51991. name: "Undressed",
  51992. image: {
  51993. source: "./media/characters/cylphis/undressed.svg",
  51994. extra: 1028/1003,
  51995. bottom: 75/1103
  51996. }
  51997. },
  51998. full: {
  51999. height: math.unit(11, "feet"),
  52000. weight: math.unit(18500 + 150*9, "lb"),
  52001. preyCapacity: math.unit(9, "people"),
  52002. name: "Full",
  52003. image: {
  52004. source: "./media/characters/cylphis/full.svg",
  52005. extra: 1028/1003,
  52006. bottom: 75/1103
  52007. }
  52008. },
  52009. },
  52010. [
  52011. {
  52012. name: "Small",
  52013. height: math.unit(8, "feet")
  52014. },
  52015. {
  52016. name: "Normal",
  52017. height: math.unit(11, "feet"),
  52018. default: true
  52019. },
  52020. ]
  52021. ))
  52022. characterMakers.push(() => makeCharacter(
  52023. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  52024. {
  52025. front: {
  52026. height: math.unit(2 + 7/12, "feet"),
  52027. name: "Front",
  52028. image: {
  52029. source: "./media/characters/orishan/front.svg",
  52030. extra: 1058/1023,
  52031. bottom: 23/1081
  52032. }
  52033. },
  52034. back: {
  52035. height: math.unit(2 + 7/12, "feet"),
  52036. name: "Back",
  52037. image: {
  52038. source: "./media/characters/orishan/back.svg",
  52039. extra: 1058/1023,
  52040. bottom: 23/1081
  52041. }
  52042. },
  52043. },
  52044. [
  52045. {
  52046. name: "Micro",
  52047. height: math.unit(2, "cm")
  52048. },
  52049. {
  52050. name: "Normal",
  52051. height: math.unit(2 + 7/12, "feet"),
  52052. default: true
  52053. },
  52054. ]
  52055. ))
  52056. characterMakers.push(() => makeCharacter(
  52057. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  52058. {
  52059. front: {
  52060. height: math.unit(3, "meters"),
  52061. weight: math.unit(508, "kg"),
  52062. name: "Front",
  52063. image: {
  52064. source: "./media/characters/seranis/front.svg",
  52065. extra: 1478/1454,
  52066. bottom: 41/1519
  52067. }
  52068. },
  52069. },
  52070. [
  52071. {
  52072. name: "Normal",
  52073. height: math.unit(3, "meters"),
  52074. default: true
  52075. },
  52076. {
  52077. name: "Macro",
  52078. height: math.unit(108, "meters")
  52079. },
  52080. {
  52081. name: "Megamacro",
  52082. height: math.unit(1250, "meters")
  52083. },
  52084. ]
  52085. ))
  52086. characterMakers.push(() => makeCharacter(
  52087. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  52088. {
  52089. undressed: {
  52090. height: math.unit(5 + 3/12, "feet"),
  52091. name: "Undressed",
  52092. image: {
  52093. source: "./media/characters/ankou/undressed.svg",
  52094. extra: 1301/1213,
  52095. bottom: 87/1388
  52096. }
  52097. },
  52098. dressed: {
  52099. height: math.unit(5 + 3/12, "feet"),
  52100. name: "Dressed",
  52101. image: {
  52102. source: "./media/characters/ankou/dressed.svg",
  52103. extra: 1301/1213,
  52104. bottom: 87/1388
  52105. }
  52106. },
  52107. head: {
  52108. height: math.unit(1.61, "feet"),
  52109. name: "Head",
  52110. image: {
  52111. source: "./media/characters/ankou/head.svg"
  52112. }
  52113. },
  52114. },
  52115. [
  52116. {
  52117. name: "Normal",
  52118. height: math.unit(5 + 3/12, "feet"),
  52119. default: true
  52120. },
  52121. ]
  52122. ))
  52123. characterMakers.push(() => makeCharacter(
  52124. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  52125. {
  52126. side: {
  52127. height: math.unit(6 + 3/12, "feet"),
  52128. weight: math.unit(200, "kg"),
  52129. name: "Side",
  52130. image: {
  52131. source: "./media/characters/juniper-skunktaur/side.svg",
  52132. extra: 1574/1229,
  52133. bottom: 38/1612
  52134. }
  52135. },
  52136. front: {
  52137. height: math.unit(6 + 3/12, "feet"),
  52138. weight: math.unit(200, "kg"),
  52139. name: "Front",
  52140. image: {
  52141. source: "./media/characters/juniper-skunktaur/front.svg",
  52142. extra: 1337/1278,
  52143. bottom: 22/1359
  52144. }
  52145. },
  52146. back: {
  52147. height: math.unit(6 + 3/12, "feet"),
  52148. weight: math.unit(200, "kg"),
  52149. name: "Back",
  52150. image: {
  52151. source: "./media/characters/juniper-skunktaur/back.svg",
  52152. extra: 1618/1273,
  52153. bottom: 13/1631
  52154. }
  52155. },
  52156. top: {
  52157. height: math.unit(2.62, "feet"),
  52158. weight: math.unit(200, "kg"),
  52159. name: "Top",
  52160. image: {
  52161. source: "./media/characters/juniper-skunktaur/top.svg"
  52162. }
  52163. },
  52164. },
  52165. [
  52166. {
  52167. name: "Normal",
  52168. height: math.unit(6 + 3/12, "feet"),
  52169. default: true
  52170. },
  52171. ]
  52172. ))
  52173. characterMakers.push(() => makeCharacter(
  52174. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  52175. {
  52176. front: {
  52177. height: math.unit(20.5, "feet"),
  52178. name: "Front",
  52179. image: {
  52180. source: "./media/characters/rei/front.svg",
  52181. extra: 1349/1195,
  52182. bottom: 31/1380
  52183. }
  52184. },
  52185. back: {
  52186. height: math.unit(20.5, "feet"),
  52187. name: "Back",
  52188. image: {
  52189. source: "./media/characters/rei/back.svg",
  52190. extra: 1358/1204,
  52191. bottom: 22/1380
  52192. }
  52193. },
  52194. pawsDigi: {
  52195. height: math.unit(3.45, "feet"),
  52196. name: "Paws (Digi)",
  52197. image: {
  52198. source: "./media/characters/rei/paws-digi.svg"
  52199. }
  52200. },
  52201. pawsPlanti: {
  52202. height: math.unit(3.45, "feet"),
  52203. name: "Paws (Planti)",
  52204. image: {
  52205. source: "./media/characters/rei/paws-planti.svg"
  52206. }
  52207. },
  52208. },
  52209. [
  52210. {
  52211. name: "Normal",
  52212. height: math.unit(20.5, "feet"),
  52213. default: true
  52214. },
  52215. ]
  52216. ))
  52217. characterMakers.push(() => makeCharacter(
  52218. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  52219. {
  52220. front: {
  52221. height: math.unit(5 + 11/12, "feet"),
  52222. name: "Front",
  52223. image: {
  52224. source: "./media/characters/carina/front.svg",
  52225. extra: 1720/1449,
  52226. bottom: 14/1734
  52227. }
  52228. },
  52229. back: {
  52230. height: math.unit(5 + 11/12, "feet"),
  52231. name: "Back",
  52232. image: {
  52233. source: "./media/characters/carina/back.svg",
  52234. extra: 1493/1445,
  52235. bottom: 17/1510
  52236. }
  52237. },
  52238. paw: {
  52239. height: math.unit(0.92, "feet"),
  52240. name: "Paw",
  52241. image: {
  52242. source: "./media/characters/carina/paw.svg"
  52243. }
  52244. },
  52245. },
  52246. [
  52247. {
  52248. name: "Normal",
  52249. height: math.unit(5 + 11/12, "feet"),
  52250. default: true
  52251. },
  52252. ]
  52253. ))
  52254. characterMakers.push(() => makeCharacter(
  52255. { name: "Maya", species: ["cat"], tags: ["anthro"] },
  52256. {
  52257. front: {
  52258. height: math.unit(4.88, "meters"),
  52259. name: "Front",
  52260. image: {
  52261. source: "./media/characters/maya/front.svg",
  52262. extra: 1222/1145,
  52263. bottom: 57/1279
  52264. }
  52265. },
  52266. },
  52267. [
  52268. {
  52269. name: "Normal",
  52270. height: math.unit(4.88, "meters"),
  52271. default: true
  52272. },
  52273. {
  52274. name: "Macro",
  52275. height: math.unit(38.1, "meters")
  52276. },
  52277. {
  52278. name: "Macro+",
  52279. height: math.unit(152.4, "meters")
  52280. },
  52281. {
  52282. name: "Macro++",
  52283. height: math.unit(16.09, "km")
  52284. },
  52285. {
  52286. name: "Mega-macro",
  52287. height: math.unit(700, "megameters")
  52288. },
  52289. ]
  52290. ))
  52291. characterMakers.push(() => makeCharacter(
  52292. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  52293. {
  52294. front: {
  52295. height: math.unit(6 + 2/12, "feet"),
  52296. weight: math.unit(500, "lb"),
  52297. preyCapacity: math.unit(4, "people"),
  52298. name: "Front",
  52299. image: {
  52300. source: "./media/characters/yepir/front.svg"
  52301. }
  52302. },
  52303. side: {
  52304. height: math.unit(6 + 2/12, "feet"),
  52305. weight: math.unit(500, "lb"),
  52306. preyCapacity: math.unit(4, "people"),
  52307. name: "Side",
  52308. image: {
  52309. source: "./media/characters/yepir/side.svg"
  52310. }
  52311. },
  52312. paw: {
  52313. height: math.unit(1.05, "feet"),
  52314. name: "Paw",
  52315. image: {
  52316. source: "./media/characters/yepir/paw.svg"
  52317. }
  52318. },
  52319. },
  52320. [
  52321. {
  52322. name: "Normal",
  52323. height: math.unit(6 + 2/12, "feet"),
  52324. default: true
  52325. },
  52326. ]
  52327. ))
  52328. characterMakers.push(() => makeCharacter(
  52329. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  52330. {
  52331. front: {
  52332. height: math.unit(5 + 4/12, "feet"),
  52333. name: "Front",
  52334. image: {
  52335. source: "./media/characters/russec/front.svg",
  52336. extra: 1926/1626,
  52337. bottom: 72/1998
  52338. }
  52339. },
  52340. back: {
  52341. height: math.unit(5 + 4/12, "feet"),
  52342. name: "Back",
  52343. image: {
  52344. source: "./media/characters/russec/back.svg",
  52345. extra: 1910/1591,
  52346. bottom: 48/1958
  52347. }
  52348. },
  52349. },
  52350. [
  52351. {
  52352. name: "Small",
  52353. height: math.unit(5 + 4/12, "feet")
  52354. },
  52355. {
  52356. name: "Normal",
  52357. height: math.unit(72, "feet"),
  52358. default: true
  52359. },
  52360. ]
  52361. ))
  52362. characterMakers.push(() => makeCharacter(
  52363. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  52364. {
  52365. side: {
  52366. height: math.unit(12, "feet"),
  52367. name: "Side",
  52368. image: {
  52369. source: "./media/characters/cianus/side.svg",
  52370. extra: 808/526,
  52371. bottom: 61/869
  52372. }
  52373. },
  52374. },
  52375. [
  52376. {
  52377. name: "Normal",
  52378. height: math.unit(12, "feet"),
  52379. default: true
  52380. },
  52381. ]
  52382. ))
  52383. characterMakers.push(() => makeCharacter(
  52384. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  52385. {
  52386. front: {
  52387. height: math.unit(9 + 6/12, "feet"),
  52388. weight: math.unit(300, "lb"),
  52389. name: "Front",
  52390. image: {
  52391. source: "./media/characters/ahab/front.svg",
  52392. extra: 1897/1868,
  52393. bottom: 121/2018
  52394. }
  52395. },
  52396. frontNsfw: {
  52397. height: math.unit(9 + 6/12, "feet"),
  52398. weight: math.unit(300, "lb"),
  52399. name: "Front-nsfw",
  52400. image: {
  52401. source: "./media/characters/ahab/front-nsfw.svg",
  52402. extra: 1897/1868,
  52403. bottom: 121/2018
  52404. }
  52405. },
  52406. },
  52407. [
  52408. {
  52409. name: "Normal",
  52410. height: math.unit(9 + 6/12, "feet")
  52411. },
  52412. {
  52413. name: "Macro",
  52414. height: math.unit(657, "feet"),
  52415. default: true
  52416. },
  52417. ]
  52418. ))
  52419. characterMakers.push(() => makeCharacter(
  52420. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  52421. {
  52422. front: {
  52423. height: math.unit(2.69, "meters"),
  52424. weight: math.unit(132, "kg"),
  52425. name: "Front",
  52426. image: {
  52427. source: "./media/characters/aarkus/front.svg",
  52428. extra: 1400/1231,
  52429. bottom: 34/1434
  52430. }
  52431. },
  52432. back: {
  52433. height: math.unit(2.69, "meters"),
  52434. weight: math.unit(132, "kg"),
  52435. name: "Back",
  52436. image: {
  52437. source: "./media/characters/aarkus/back.svg",
  52438. extra: 1381/1218,
  52439. bottom: 30/1411
  52440. }
  52441. },
  52442. frontNsfw: {
  52443. height: math.unit(2.69, "meters"),
  52444. weight: math.unit(132, "kg"),
  52445. name: "Front (NSFW)",
  52446. image: {
  52447. source: "./media/characters/aarkus/front-nsfw.svg",
  52448. extra: 1400/1231,
  52449. bottom: 34/1434
  52450. }
  52451. },
  52452. foot: {
  52453. height: math.unit(1.45, "feet"),
  52454. name: "Foot",
  52455. image: {
  52456. source: "./media/characters/aarkus/foot.svg"
  52457. }
  52458. },
  52459. head: {
  52460. height: math.unit(2.85, "feet"),
  52461. name: "Head",
  52462. image: {
  52463. source: "./media/characters/aarkus/head.svg"
  52464. }
  52465. },
  52466. headAlt: {
  52467. height: math.unit(3.07, "feet"),
  52468. name: "Head (Alt)",
  52469. image: {
  52470. source: "./media/characters/aarkus/head-alt.svg"
  52471. }
  52472. },
  52473. mouth: {
  52474. height: math.unit(1.25, "feet"),
  52475. name: "Mouth",
  52476. image: {
  52477. source: "./media/characters/aarkus/mouth.svg"
  52478. }
  52479. },
  52480. dick: {
  52481. height: math.unit(1.77, "feet"),
  52482. name: "Dick",
  52483. image: {
  52484. source: "./media/characters/aarkus/dick.svg"
  52485. }
  52486. },
  52487. },
  52488. [
  52489. {
  52490. name: "Normal",
  52491. height: math.unit(2.69, "meters"),
  52492. default: true
  52493. },
  52494. {
  52495. name: "Macro",
  52496. height: math.unit(269, "meters")
  52497. },
  52498. {
  52499. name: "Macro+",
  52500. height: math.unit(672.5, "meters")
  52501. },
  52502. {
  52503. name: "Megamacro",
  52504. height: math.unit(2.017, "km")
  52505. },
  52506. ]
  52507. ))
  52508. characterMakers.push(() => makeCharacter(
  52509. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  52510. {
  52511. front: {
  52512. height: math.unit(23.47, "cm"),
  52513. weight: math.unit(600, "grams"),
  52514. name: "Front",
  52515. image: {
  52516. source: "./media/characters/diode/front.svg",
  52517. extra: 1778/1396,
  52518. bottom: 95/1873
  52519. }
  52520. },
  52521. side: {
  52522. height: math.unit(23.47, "cm"),
  52523. weight: math.unit(600, "grams"),
  52524. name: "Side",
  52525. image: {
  52526. source: "./media/characters/diode/side.svg",
  52527. extra: 1831/1404,
  52528. bottom: 86/1917
  52529. }
  52530. },
  52531. wings: {
  52532. height: math.unit(0.683, "feet"),
  52533. name: "Wings",
  52534. image: {
  52535. source: "./media/characters/diode/wings.svg"
  52536. }
  52537. },
  52538. },
  52539. [
  52540. {
  52541. name: "Normal",
  52542. height: math.unit(23.47, "cm"),
  52543. default: true
  52544. },
  52545. ]
  52546. ))
  52547. characterMakers.push(() => makeCharacter(
  52548. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  52549. {
  52550. front: {
  52551. height: math.unit(6 + 3/12, "feet"),
  52552. weight: math.unit(250, "lb"),
  52553. name: "Front",
  52554. image: {
  52555. source: "./media/characters/reika/front.svg",
  52556. extra: 1120/1078,
  52557. bottom: 86/1206
  52558. }
  52559. },
  52560. },
  52561. [
  52562. {
  52563. name: "Normal",
  52564. height: math.unit(6 + 3/12, "feet"),
  52565. default: true
  52566. },
  52567. ]
  52568. ))
  52569. characterMakers.push(() => makeCharacter(
  52570. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  52571. {
  52572. front: {
  52573. height: math.unit(16 + 8/12, "feet"),
  52574. weight: math.unit(9000, "lb"),
  52575. name: "Front",
  52576. image: {
  52577. source: "./media/characters/lokuto-takama/front.svg",
  52578. extra: 1774/1632,
  52579. bottom: 147/1921
  52580. },
  52581. extraAttributes: {
  52582. "bustWidth": {
  52583. name: "Bust Width",
  52584. power: 1,
  52585. type: "length",
  52586. base: math.unit(2.4, "meters")
  52587. },
  52588. "breastWeight": {
  52589. name: "Breast Weight",
  52590. power: 3,
  52591. type: "mass",
  52592. base: math.unit(1000, "kg")
  52593. },
  52594. }
  52595. },
  52596. },
  52597. [
  52598. {
  52599. name: "Normal",
  52600. height: math.unit(16 + 8/12, "feet"),
  52601. default: true
  52602. },
  52603. ]
  52604. ))
  52605. characterMakers.push(() => makeCharacter(
  52606. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  52607. {
  52608. front: {
  52609. height: math.unit(10, "cm"),
  52610. weight: math.unit(850, "grams"),
  52611. name: "Front",
  52612. image: {
  52613. source: "./media/characters/owak-bone/front.svg",
  52614. extra: 1965/1801,
  52615. bottom: 31/1996
  52616. }
  52617. },
  52618. },
  52619. [
  52620. {
  52621. name: "Normal",
  52622. height: math.unit(10, "cm"),
  52623. default: true
  52624. },
  52625. ]
  52626. ))
  52627. characterMakers.push(() => makeCharacter(
  52628. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  52629. {
  52630. front: {
  52631. height: math.unit(2 + 6/12, "feet"),
  52632. weight: math.unit(9, "lb"),
  52633. name: "Front",
  52634. image: {
  52635. source: "./media/characters/muffin/front.svg",
  52636. extra: 1220/1195,
  52637. bottom: 84/1304
  52638. }
  52639. },
  52640. },
  52641. [
  52642. {
  52643. name: "Normal",
  52644. height: math.unit(2 + 6/12, "feet"),
  52645. default: true
  52646. },
  52647. ]
  52648. ))
  52649. characterMakers.push(() => makeCharacter(
  52650. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  52651. {
  52652. front: {
  52653. height: math.unit(7, "feet"),
  52654. name: "Front",
  52655. image: {
  52656. source: "./media/characters/chimera/front.svg",
  52657. extra: 1752/1614,
  52658. bottom: 68/1820
  52659. }
  52660. },
  52661. },
  52662. [
  52663. {
  52664. name: "Normal",
  52665. height: math.unit(7, "feet")
  52666. },
  52667. {
  52668. name: "Gigamacro",
  52669. height: math.unit(2.9, "gigameters"),
  52670. default: true
  52671. },
  52672. {
  52673. name: "Universal",
  52674. height: math.unit(1.56e26, "yottameters")
  52675. },
  52676. ]
  52677. ))
  52678. characterMakers.push(() => makeCharacter(
  52679. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  52680. {
  52681. front: {
  52682. height: math.unit(3, "feet"),
  52683. weight: math.unit(20, "lb"),
  52684. name: "Front",
  52685. image: {
  52686. source: "./media/characters/kit-fennec-fox/front.svg",
  52687. extra: 1027/932,
  52688. bottom: 16/1043
  52689. }
  52690. },
  52691. back: {
  52692. height: math.unit(3, "feet"),
  52693. weight: math.unit(20, "lb"),
  52694. name: "Back",
  52695. image: {
  52696. source: "./media/characters/kit-fennec-fox/back.svg",
  52697. extra: 1027/932,
  52698. bottom: 16/1043
  52699. }
  52700. },
  52701. },
  52702. [
  52703. {
  52704. name: "Normal",
  52705. height: math.unit(3, "feet"),
  52706. default: true
  52707. },
  52708. ]
  52709. ))
  52710. characterMakers.push(() => makeCharacter(
  52711. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  52712. {
  52713. front: {
  52714. height: math.unit(167, "cm"),
  52715. name: "Front",
  52716. image: {
  52717. source: "./media/characters/blue-otter/front.svg",
  52718. extra: 1951/1920,
  52719. bottom: 31/1982
  52720. }
  52721. },
  52722. },
  52723. [
  52724. {
  52725. name: "Otter-Sized",
  52726. height: math.unit(100, "cm")
  52727. },
  52728. {
  52729. name: "Normal",
  52730. height: math.unit(167, "cm"),
  52731. default: true
  52732. },
  52733. ]
  52734. ))
  52735. characterMakers.push(() => makeCharacter(
  52736. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  52737. {
  52738. front: {
  52739. height: math.unit(4 + 4/12, "feet"),
  52740. name: "Front",
  52741. image: {
  52742. source: "./media/characters/maverick-leopard-gecko/front.svg",
  52743. extra: 1072/1067,
  52744. bottom: 117/1189
  52745. }
  52746. },
  52747. back: {
  52748. height: math.unit(4 + 4/12, "feet"),
  52749. name: "Back",
  52750. image: {
  52751. source: "./media/characters/maverick-leopard-gecko/back.svg",
  52752. extra: 1135/1129,
  52753. bottom: 57/1192
  52754. }
  52755. },
  52756. head: {
  52757. height: math.unit(1.77, "feet"),
  52758. name: "Head",
  52759. image: {
  52760. source: "./media/characters/maverick-leopard-gecko/head.svg"
  52761. }
  52762. },
  52763. },
  52764. [
  52765. {
  52766. name: "Normal",
  52767. height: math.unit(4 + 4/12, "feet"),
  52768. default: true
  52769. },
  52770. ]
  52771. ))
  52772. characterMakers.push(() => makeCharacter(
  52773. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  52774. {
  52775. front: {
  52776. height: math.unit(2, "inches"),
  52777. name: "Front",
  52778. image: {
  52779. source: "./media/characters/carley-hartford/front.svg",
  52780. extra: 1035/988,
  52781. bottom: 23/1058
  52782. }
  52783. },
  52784. back: {
  52785. height: math.unit(2, "inches"),
  52786. name: "Back",
  52787. image: {
  52788. source: "./media/characters/carley-hartford/back.svg",
  52789. extra: 1035/988,
  52790. bottom: 23/1058
  52791. }
  52792. },
  52793. dressed: {
  52794. height: math.unit(2, "inches"),
  52795. name: "Dressed",
  52796. image: {
  52797. source: "./media/characters/carley-hartford/dressed.svg",
  52798. extra: 651/620,
  52799. bottom: 0/651
  52800. }
  52801. },
  52802. },
  52803. [
  52804. {
  52805. name: "Micro",
  52806. height: math.unit(2, "inches"),
  52807. default: true
  52808. },
  52809. {
  52810. name: "Macro",
  52811. height: math.unit(6 + 3/12, "feet")
  52812. },
  52813. ]
  52814. ))
  52815. characterMakers.push(() => makeCharacter(
  52816. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  52817. {
  52818. front: {
  52819. height: math.unit(2 + 3/12, "feet"),
  52820. weight: math.unit(15 + 7/16, "lb"),
  52821. name: "Front",
  52822. image: {
  52823. source: "./media/characters/duke/front.svg",
  52824. extra: 910/815,
  52825. bottom: 30/940
  52826. }
  52827. },
  52828. },
  52829. [
  52830. {
  52831. name: "Normal",
  52832. height: math.unit(2 + 3/12, "feet"),
  52833. default: true
  52834. },
  52835. ]
  52836. ))
  52837. characterMakers.push(() => makeCharacter(
  52838. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  52839. {
  52840. front: {
  52841. height: math.unit(5 + 4/12, "feet"),
  52842. weight: math.unit(156, "lb"),
  52843. name: "Front",
  52844. image: {
  52845. source: "./media/characters/dein/front.svg",
  52846. extra: 855/815,
  52847. bottom: 48/903
  52848. }
  52849. },
  52850. side: {
  52851. height: math.unit(5 + 4/12, "feet"),
  52852. weight: math.unit(156, "lb"),
  52853. name: "side",
  52854. image: {
  52855. source: "./media/characters/dein/side.svg",
  52856. extra: 846/803,
  52857. bottom: 25/871
  52858. }
  52859. },
  52860. maw: {
  52861. height: math.unit(1.45, "feet"),
  52862. name: "Maw",
  52863. image: {
  52864. source: "./media/characters/dein/maw.svg"
  52865. }
  52866. },
  52867. },
  52868. [
  52869. {
  52870. name: "Ferret Sized",
  52871. height: math.unit(2 + 5/12, "feet")
  52872. },
  52873. {
  52874. name: "Normal",
  52875. height: math.unit(5 + 4/12, "feet"),
  52876. default: true
  52877. },
  52878. ]
  52879. ))
  52880. characterMakers.push(() => makeCharacter(
  52881. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  52882. {
  52883. front: {
  52884. height: math.unit(84 + 8/12, "feet"),
  52885. weight: math.unit(942180, "lb"),
  52886. name: "Front",
  52887. image: {
  52888. source: "./media/characters/daurine-arima/front.svg",
  52889. extra: 1989/1782,
  52890. bottom: 37/2026
  52891. }
  52892. },
  52893. side: {
  52894. height: math.unit(84 + 8/12, "feet"),
  52895. weight: math.unit(942180, "lb"),
  52896. name: "Side",
  52897. image: {
  52898. source: "./media/characters/daurine-arima/side.svg",
  52899. extra: 1997/1790,
  52900. bottom: 21/2018
  52901. }
  52902. },
  52903. back: {
  52904. height: math.unit(84 + 8/12, "feet"),
  52905. weight: math.unit(942180, "lb"),
  52906. name: "Back",
  52907. image: {
  52908. source: "./media/characters/daurine-arima/back.svg",
  52909. extra: 1992/1800,
  52910. bottom: 12/2004
  52911. }
  52912. },
  52913. head: {
  52914. height: math.unit(15.5, "feet"),
  52915. name: "Head",
  52916. image: {
  52917. source: "./media/characters/daurine-arima/head.svg"
  52918. }
  52919. },
  52920. headAlt: {
  52921. height: math.unit(19.19, "feet"),
  52922. name: "Head (Alt)",
  52923. image: {
  52924. source: "./media/characters/daurine-arima/head-alt.svg"
  52925. }
  52926. },
  52927. },
  52928. [
  52929. {
  52930. name: "Minimum height",
  52931. height: math.unit(8 + 10/12, "feet")
  52932. },
  52933. {
  52934. name: "Comfort height",
  52935. height: math.unit(19 + 6 /12, "feet")
  52936. },
  52937. {
  52938. name: "\"Normal\" height",
  52939. height: math.unit(28 + 10/12, "feet")
  52940. },
  52941. {
  52942. name: "Base height",
  52943. height: math.unit(84 + 8/12, "feet"),
  52944. default: true
  52945. },
  52946. {
  52947. name: "Mini-macro",
  52948. height: math.unit(2360, "feet")
  52949. },
  52950. {
  52951. name: "Macro",
  52952. height: math.unit(10, "miles")
  52953. },
  52954. {
  52955. name: "Goddess",
  52956. height: math.unit(9.99e40, "yottameters")
  52957. },
  52958. ]
  52959. ))
  52960. characterMakers.push(() => makeCharacter(
  52961. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  52962. {
  52963. front: {
  52964. height: math.unit(2.3, "meters"),
  52965. name: "Front",
  52966. image: {
  52967. source: "./media/characters/cilenomon/front.svg",
  52968. extra: 1963/1778,
  52969. bottom: 54/2017
  52970. }
  52971. },
  52972. },
  52973. [
  52974. {
  52975. name: "Normal",
  52976. height: math.unit(2.3, "meters"),
  52977. default: true
  52978. },
  52979. {
  52980. name: "Big",
  52981. height: math.unit(5, "meters")
  52982. },
  52983. {
  52984. name: "Macro",
  52985. height: math.unit(30, "meters")
  52986. },
  52987. {
  52988. name: "True",
  52989. height: math.unit(1, "universe")
  52990. },
  52991. ]
  52992. ))
  52993. characterMakers.push(() => makeCharacter(
  52994. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  52995. {
  52996. front: {
  52997. height: math.unit(5, "feet"),
  52998. name: "Front",
  52999. image: {
  53000. source: "./media/characters/sen-mink/front.svg",
  53001. extra: 1727/1675,
  53002. bottom: 35/1762
  53003. }
  53004. },
  53005. },
  53006. [
  53007. {
  53008. name: "Normal",
  53009. height: math.unit(5, "feet"),
  53010. default: true
  53011. },
  53012. ]
  53013. ))
  53014. characterMakers.push(() => makeCharacter(
  53015. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  53016. {
  53017. front: {
  53018. height: math.unit(5.42999, "feet"),
  53019. weight: math.unit(100, "lb"),
  53020. name: "Front",
  53021. image: {
  53022. source: "./media/characters/ophois/front.svg",
  53023. extra: 1429/1286,
  53024. bottom: 60/1489
  53025. }
  53026. },
  53027. },
  53028. [
  53029. {
  53030. name: "Normal",
  53031. height: math.unit(5.42999, "feet"),
  53032. default: true
  53033. },
  53034. ]
  53035. ))
  53036. characterMakers.push(() => makeCharacter(
  53037. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  53038. {
  53039. front: {
  53040. height: math.unit(2, "meters"),
  53041. name: "Front",
  53042. image: {
  53043. source: "./media/characters/riley/front.svg",
  53044. extra: 1779/1754,
  53045. bottom: 139/1918
  53046. }
  53047. },
  53048. },
  53049. [
  53050. {
  53051. name: "Normal",
  53052. height: math.unit(2, "meters"),
  53053. default: true
  53054. },
  53055. ]
  53056. ))
  53057. characterMakers.push(() => makeCharacter(
  53058. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  53059. {
  53060. front: {
  53061. height: math.unit(6 + 2/12, "feet"),
  53062. weight: math.unit(195, "lb"),
  53063. preyCapacity: math.unit(6, "people"),
  53064. name: "Front",
  53065. image: {
  53066. source: "./media/characters/shuken-flash/front.svg",
  53067. extra: 1905/1739,
  53068. bottom: 65/1970
  53069. }
  53070. },
  53071. back: {
  53072. height: math.unit(6 + 2/12, "feet"),
  53073. weight: math.unit(195, "lb"),
  53074. preyCapacity: math.unit(6, "people"),
  53075. name: "Back",
  53076. image: {
  53077. source: "./media/characters/shuken-flash/back.svg",
  53078. extra: 1912/1751,
  53079. bottom: 13/1925
  53080. }
  53081. },
  53082. },
  53083. [
  53084. {
  53085. name: "Normal",
  53086. height: math.unit(6 + 2/12, "feet"),
  53087. default: true
  53088. },
  53089. ]
  53090. ))
  53091. characterMakers.push(() => makeCharacter(
  53092. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  53093. {
  53094. front: {
  53095. height: math.unit(5 + 9/12, "feet"),
  53096. weight: math.unit(150, "lb"),
  53097. name: "Front",
  53098. image: {
  53099. source: "./media/characters/plat/front.svg",
  53100. extra: 1816/1703,
  53101. bottom: 43/1859
  53102. }
  53103. },
  53104. side: {
  53105. height: math.unit(5 + 9/12, "feet"),
  53106. weight: math.unit(300, "lb"),
  53107. name: "Side",
  53108. image: {
  53109. source: "./media/characters/plat/side.svg",
  53110. extra: 1824/1699,
  53111. bottom: 18/1842
  53112. }
  53113. },
  53114. },
  53115. [
  53116. {
  53117. name: "Normal",
  53118. height: math.unit(5 + 9/12, "feet"),
  53119. default: true
  53120. },
  53121. ]
  53122. ))
  53123. characterMakers.push(() => makeCharacter(
  53124. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  53125. {
  53126. front: {
  53127. height: math.unit(9, "feet"),
  53128. weight: math.unit(1800, "lb"),
  53129. name: "Front",
  53130. image: {
  53131. source: "./media/characters/elaine/front.svg",
  53132. extra: 1833/1354,
  53133. bottom: 25/1858
  53134. }
  53135. },
  53136. back: {
  53137. height: math.unit(8.8, "feet"),
  53138. weight: math.unit(1800, "lb"),
  53139. name: "Back",
  53140. image: {
  53141. source: "./media/characters/elaine/back.svg",
  53142. extra: 1641/1233,
  53143. bottom: 53/1694
  53144. }
  53145. },
  53146. },
  53147. [
  53148. {
  53149. name: "Normal",
  53150. height: math.unit(9, "feet"),
  53151. default: true
  53152. },
  53153. ]
  53154. ))
  53155. characterMakers.push(() => makeCharacter(
  53156. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  53157. {
  53158. front: {
  53159. height: math.unit(17 + 9/12, "feet"),
  53160. weight: math.unit(8000, "lb"),
  53161. name: "Front",
  53162. image: {
  53163. source: "./media/characters/vera-raven/front.svg",
  53164. extra: 1457/1412,
  53165. bottom: 121/1578
  53166. }
  53167. },
  53168. side: {
  53169. height: math.unit(17 + 9/12, "feet"),
  53170. weight: math.unit(8000, "lb"),
  53171. name: "Side",
  53172. image: {
  53173. source: "./media/characters/vera-raven/side.svg",
  53174. extra: 1510/1464,
  53175. bottom: 54/1564
  53176. }
  53177. },
  53178. },
  53179. [
  53180. {
  53181. name: "Normal",
  53182. height: math.unit(17 + 9/12, "feet"),
  53183. default: true
  53184. },
  53185. ]
  53186. ))
  53187. characterMakers.push(() => makeCharacter(
  53188. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  53189. {
  53190. dressed: {
  53191. height: math.unit(6 + 9/12, "feet"),
  53192. name: "Dressed",
  53193. image: {
  53194. source: "./media/characters/nakisha/dressed.svg",
  53195. extra: 1909/1757,
  53196. bottom: 48/1957
  53197. }
  53198. },
  53199. nude: {
  53200. height: math.unit(6 + 9/12, "feet"),
  53201. name: "Nude",
  53202. image: {
  53203. source: "./media/characters/nakisha/nude.svg",
  53204. extra: 1917/1765,
  53205. bottom: 34/1951
  53206. }
  53207. },
  53208. },
  53209. [
  53210. {
  53211. name: "Normal",
  53212. height: math.unit(6 + 9/12, "feet"),
  53213. default: true
  53214. },
  53215. ]
  53216. ))
  53217. characterMakers.push(() => makeCharacter(
  53218. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  53219. {
  53220. front: {
  53221. height: math.unit(87, "meters"),
  53222. name: "Front",
  53223. image: {
  53224. source: "./media/characters/serafin/front.svg",
  53225. extra: 1919/1776,
  53226. bottom: 65/1984
  53227. }
  53228. },
  53229. },
  53230. [
  53231. {
  53232. name: "Normal",
  53233. height: math.unit(87, "meters"),
  53234. default: true
  53235. },
  53236. ]
  53237. ))
  53238. characterMakers.push(() => makeCharacter(
  53239. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  53240. {
  53241. front: {
  53242. height: math.unit(6, "feet"),
  53243. weight: math.unit(200, "lb"),
  53244. name: "Front",
  53245. image: {
  53246. source: "./media/characters/poptart/front.svg",
  53247. extra: 615/583,
  53248. bottom: 23/638
  53249. }
  53250. },
  53251. back: {
  53252. height: math.unit(6, "feet"),
  53253. weight: math.unit(200, "lb"),
  53254. name: "Back",
  53255. image: {
  53256. source: "./media/characters/poptart/back.svg",
  53257. extra: 617/584,
  53258. bottom: 22/639
  53259. }
  53260. },
  53261. frontNsfw: {
  53262. height: math.unit(6, "feet"),
  53263. weight: math.unit(200, "lb"),
  53264. name: "Front (NSFW)",
  53265. image: {
  53266. source: "./media/characters/poptart/front-nsfw.svg",
  53267. extra: 615/583,
  53268. bottom: 23/638
  53269. }
  53270. },
  53271. backNsfw: {
  53272. height: math.unit(6, "feet"),
  53273. weight: math.unit(200, "lb"),
  53274. name: "Back (NSFW)",
  53275. image: {
  53276. source: "./media/characters/poptart/back-nsfw.svg",
  53277. extra: 617/584,
  53278. bottom: 22/639
  53279. }
  53280. },
  53281. hand: {
  53282. height: math.unit(1.14, "feet"),
  53283. name: "Hand",
  53284. image: {
  53285. source: "./media/characters/poptart/hand.svg"
  53286. }
  53287. },
  53288. foot: {
  53289. height: math.unit(1.5, "feet"),
  53290. name: "Foot",
  53291. image: {
  53292. source: "./media/characters/poptart/foot.svg"
  53293. }
  53294. },
  53295. },
  53296. [
  53297. {
  53298. name: "Normal",
  53299. height: math.unit(6, "feet"),
  53300. default: true
  53301. },
  53302. {
  53303. name: "Grande",
  53304. height: math.unit(350, "feet")
  53305. },
  53306. {
  53307. name: "Massif",
  53308. height: math.unit(967, "feet")
  53309. },
  53310. ]
  53311. ))
  53312. characterMakers.push(() => makeCharacter(
  53313. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  53314. {
  53315. hyenaSide: {
  53316. height: math.unit(120, "cm"),
  53317. weight: math.unit(120, "lb"),
  53318. name: "Side",
  53319. image: {
  53320. source: "./media/characters/trance/hyena-side.svg",
  53321. extra: 998/904,
  53322. bottom: 76/1074
  53323. }
  53324. },
  53325. },
  53326. [
  53327. {
  53328. name: "Normal",
  53329. height: math.unit(120, "cm"),
  53330. default: true
  53331. },
  53332. {
  53333. name: "Dire",
  53334. height: math.unit(230, "cm")
  53335. },
  53336. {
  53337. name: "Macro",
  53338. height: math.unit(37, "feet")
  53339. },
  53340. ]
  53341. ))
  53342. characterMakers.push(() => makeCharacter(
  53343. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  53344. {
  53345. front: {
  53346. height: math.unit(6 + 3/12, "feet"),
  53347. name: "Front",
  53348. image: {
  53349. source: "./media/characters/michael-berretta/front.svg",
  53350. extra: 515/494,
  53351. bottom: 20/535
  53352. }
  53353. },
  53354. back: {
  53355. height: math.unit(6 + 3/12, "feet"),
  53356. name: "Back",
  53357. image: {
  53358. source: "./media/characters/michael-berretta/back.svg",
  53359. extra: 520/497,
  53360. bottom: 21/541
  53361. }
  53362. },
  53363. frontNsfw: {
  53364. height: math.unit(6 + 3/12, "feet"),
  53365. name: "Front (NSFW)",
  53366. image: {
  53367. source: "./media/characters/michael-berretta/front-nsfw.svg",
  53368. extra: 515/494,
  53369. bottom: 20/535
  53370. }
  53371. },
  53372. dick: {
  53373. height: math.unit(1, "feet"),
  53374. name: "Dick",
  53375. image: {
  53376. source: "./media/characters/michael-berretta/dick.svg"
  53377. }
  53378. },
  53379. },
  53380. [
  53381. {
  53382. name: "Normal",
  53383. height: math.unit(6 + 3/12, "feet"),
  53384. default: true
  53385. },
  53386. {
  53387. name: "Big",
  53388. height: math.unit(12, "feet")
  53389. },
  53390. {
  53391. name: "Macro",
  53392. height: math.unit(187.5, "feet")
  53393. },
  53394. ]
  53395. ))
  53396. characterMakers.push(() => makeCharacter(
  53397. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  53398. {
  53399. front: {
  53400. height: math.unit(9 + 9/12, "feet"),
  53401. weight: math.unit(1244, "lb"),
  53402. name: "Front",
  53403. image: {
  53404. source: "./media/characters/stella-edgecomb/front.svg",
  53405. extra: 1835/1706,
  53406. bottom: 49/1884
  53407. }
  53408. },
  53409. pen: {
  53410. height: math.unit(0.95, "feet"),
  53411. name: "Pen",
  53412. image: {
  53413. source: "./media/characters/stella-edgecomb/pen.svg"
  53414. }
  53415. },
  53416. },
  53417. [
  53418. {
  53419. name: "Cozy Bear",
  53420. height: math.unit(0.5, "inches")
  53421. },
  53422. {
  53423. name: "Normal",
  53424. height: math.unit(9 + 9/12, "feet"),
  53425. default: true
  53426. },
  53427. {
  53428. name: "Giga Bear",
  53429. height: math.unit(1, "mile")
  53430. },
  53431. {
  53432. name: "Great Bear",
  53433. height: math.unit(53, "miles")
  53434. },
  53435. {
  53436. name: "Goddess Bear",
  53437. height: math.unit(40000, "miles")
  53438. },
  53439. {
  53440. name: "Sun Bear",
  53441. height: math.unit(900000, "miles")
  53442. },
  53443. ]
  53444. ))
  53445. characterMakers.push(() => makeCharacter(
  53446. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  53447. {
  53448. anthroFront: {
  53449. height: math.unit(556, "cm"),
  53450. weight: math.unit(2650, "kg"),
  53451. preyCapacity: math.unit(3, "people"),
  53452. name: "Front",
  53453. image: {
  53454. source: "./media/characters/ash´iika/front.svg",
  53455. extra: 710/673,
  53456. bottom: 15/725
  53457. },
  53458. form: "anthro",
  53459. default: true
  53460. },
  53461. anthroSide: {
  53462. height: math.unit(556, "cm"),
  53463. weight: math.unit(2650, "kg"),
  53464. preyCapacity: math.unit(3, "people"),
  53465. name: "Side",
  53466. image: {
  53467. source: "./media/characters/ash´iika/side.svg",
  53468. extra: 696/676,
  53469. bottom: 13/709
  53470. },
  53471. form: "anthro"
  53472. },
  53473. anthroDressed: {
  53474. height: math.unit(556, "cm"),
  53475. weight: math.unit(2650, "kg"),
  53476. preyCapacity: math.unit(3, "people"),
  53477. name: "Dressed",
  53478. image: {
  53479. source: "./media/characters/ash´iika/dressed.svg",
  53480. extra: 710/673,
  53481. bottom: 15/725
  53482. },
  53483. form: "anthro"
  53484. },
  53485. anthroHead: {
  53486. height: math.unit(3.5, "feet"),
  53487. name: "Head",
  53488. image: {
  53489. source: "./media/characters/ash´iika/head.svg",
  53490. extra: 348/291,
  53491. bottom: 45/393
  53492. },
  53493. form: "anthro"
  53494. },
  53495. feralSide: {
  53496. height: math.unit(870, "cm"),
  53497. weight: math.unit(17500, "kg"),
  53498. preyCapacity: math.unit(15, "people"),
  53499. name: "Side",
  53500. image: {
  53501. source: "./media/characters/ash´iika/feral.svg",
  53502. extra: 595/199,
  53503. bottom: 7/602
  53504. },
  53505. form: "feral",
  53506. default: true,
  53507. },
  53508. },
  53509. [
  53510. {
  53511. name: "Normal",
  53512. height: math.unit(556, "cm"),
  53513. default: true,
  53514. form: "anthro"
  53515. },
  53516. {
  53517. name: "Macro",
  53518. height: math.unit(88, "meters"),
  53519. form: "anthro"
  53520. },
  53521. {
  53522. name: "Normal",
  53523. height: math.unit(870, "cm"),
  53524. default: true,
  53525. form: "feral"
  53526. },
  53527. {
  53528. name: "Large",
  53529. height: math.unit(25, "meters"),
  53530. form: "feral"
  53531. },
  53532. ],
  53533. {
  53534. "anthro": {
  53535. name: "Anthro",
  53536. default: true
  53537. },
  53538. "feral": {
  53539. name: "Feral",
  53540. },
  53541. }
  53542. ))
  53543. characterMakers.push(() => makeCharacter(
  53544. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  53545. {
  53546. front: {
  53547. height: math.unit(10, "feet"),
  53548. weight: math.unit(800, "lb"),
  53549. name: "Front",
  53550. image: {
  53551. source: "./media/characters/yen/front.svg",
  53552. extra: 443/411,
  53553. bottom: 6/449
  53554. }
  53555. },
  53556. sleeping: {
  53557. height: math.unit(10, "feet"),
  53558. weight: math.unit(800, "lb"),
  53559. name: "Sleeping",
  53560. image: {
  53561. source: "./media/characters/yen/sleeping.svg",
  53562. extra: 470/422,
  53563. bottom: 0/470
  53564. }
  53565. },
  53566. head: {
  53567. height: math.unit(2.2, "feet"),
  53568. name: "Head",
  53569. image: {
  53570. source: "./media/characters/yen/head.svg"
  53571. }
  53572. },
  53573. headAlt: {
  53574. height: math.unit(2.1, "feet"),
  53575. name: "Head (Alt)",
  53576. image: {
  53577. source: "./media/characters/yen/head-alt.svg"
  53578. }
  53579. },
  53580. },
  53581. [
  53582. {
  53583. name: "Normal",
  53584. height: math.unit(10, "feet"),
  53585. default: true
  53586. },
  53587. ]
  53588. ))
  53589. characterMakers.push(() => makeCharacter(
  53590. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  53591. {
  53592. front: {
  53593. height: math.unit(12, "feet"),
  53594. name: "Front",
  53595. image: {
  53596. source: "./media/characters/citra/front.svg",
  53597. extra: 1950/1710,
  53598. bottom: 47/1997
  53599. }
  53600. },
  53601. },
  53602. [
  53603. {
  53604. name: "Normal",
  53605. height: math.unit(12, "feet"),
  53606. default: true
  53607. },
  53608. ]
  53609. ))
  53610. characterMakers.push(() => makeCharacter(
  53611. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  53612. {
  53613. side: {
  53614. height: math.unit(7 + 10/12, "feet"),
  53615. name: "Side",
  53616. image: {
  53617. source: "./media/characters/sholstim/side.svg",
  53618. extra: 786/682,
  53619. bottom: 40/826
  53620. }
  53621. },
  53622. },
  53623. [
  53624. {
  53625. name: "Normal",
  53626. height: math.unit(7 + 10/12, "feet"),
  53627. default: true
  53628. },
  53629. ]
  53630. ))
  53631. characterMakers.push(() => makeCharacter(
  53632. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  53633. {
  53634. front: {
  53635. height: math.unit(3.10, "meters"),
  53636. name: "Front",
  53637. image: {
  53638. source: "./media/characters/aggyn/front.svg",
  53639. extra: 1188/963,
  53640. bottom: 24/1212
  53641. }
  53642. },
  53643. },
  53644. [
  53645. {
  53646. name: "Normal",
  53647. height: math.unit(3.10, "meters"),
  53648. default: true
  53649. },
  53650. ]
  53651. ))
  53652. characterMakers.push(() => makeCharacter(
  53653. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  53654. {
  53655. front: {
  53656. height: math.unit(7 + 5/12, "feet"),
  53657. weight: math.unit(687, "lb"),
  53658. name: "Front",
  53659. image: {
  53660. source: "./media/characters/alsandair-hergenroether/front.svg",
  53661. extra: 1251/1186,
  53662. bottom: 75/1326
  53663. }
  53664. },
  53665. back: {
  53666. height: math.unit(7 + 5/12, "feet"),
  53667. weight: math.unit(687, "lb"),
  53668. name: "Back",
  53669. image: {
  53670. source: "./media/characters/alsandair-hergenroether/back.svg",
  53671. extra: 1290/1229,
  53672. bottom: 17/1307
  53673. }
  53674. },
  53675. },
  53676. [
  53677. {
  53678. name: "Max Compression",
  53679. height: math.unit(7 + 5/12, "feet"),
  53680. default: true
  53681. },
  53682. {
  53683. name: "\"Normal\"",
  53684. height: math.unit(2, "universes")
  53685. },
  53686. ]
  53687. ))
  53688. characterMakers.push(() => makeCharacter(
  53689. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  53690. {
  53691. front: {
  53692. height: math.unit(4 + 1/12, "feet"),
  53693. weight: math.unit(92, "lb"),
  53694. name: "Front",
  53695. image: {
  53696. source: "./media/characters/ie/front.svg",
  53697. extra: 1585/1352,
  53698. bottom: 91/1676
  53699. }
  53700. },
  53701. },
  53702. [
  53703. {
  53704. name: "Normal",
  53705. height: math.unit(4 + 1/12, "feet"),
  53706. default: true
  53707. },
  53708. ]
  53709. ))
  53710. characterMakers.push(() => makeCharacter(
  53711. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  53712. {
  53713. anthro: {
  53714. height: math.unit(6, "feet"),
  53715. weight: math.unit(150, "lb"),
  53716. name: "Front",
  53717. image: {
  53718. source: "./media/characters/willow/anthro.svg",
  53719. extra: 1073/986,
  53720. bottom: 34/1107
  53721. },
  53722. form: "anthro",
  53723. default: true
  53724. },
  53725. taur: {
  53726. height: math.unit(6, "feet"),
  53727. weight: math.unit(150, "lb"),
  53728. name: "Side",
  53729. image: {
  53730. source: "./media/characters/willow/taur.svg",
  53731. extra: 647/512,
  53732. bottom: 136/783
  53733. },
  53734. form: "taur",
  53735. default: true
  53736. },
  53737. },
  53738. [
  53739. {
  53740. name: "Humanoid",
  53741. height: math.unit(2.7, "meters"),
  53742. form: "anthro"
  53743. },
  53744. {
  53745. name: "Normal",
  53746. height: math.unit(9, "meters"),
  53747. form: "anthro",
  53748. default: true
  53749. },
  53750. {
  53751. name: "Humanoid",
  53752. height: math.unit(2.1, "meters"),
  53753. form: "taur"
  53754. },
  53755. {
  53756. name: "Normal",
  53757. height: math.unit(7, "meters"),
  53758. form: "taur",
  53759. default: true
  53760. },
  53761. ],
  53762. {
  53763. "anthro": {
  53764. name: "Anthro",
  53765. default: true
  53766. },
  53767. "taur": {
  53768. name: "Taur",
  53769. },
  53770. }
  53771. ))
  53772. characterMakers.push(() => makeCharacter(
  53773. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  53774. {
  53775. front: {
  53776. height: math.unit(2 + 5/12, "feet"),
  53777. name: "Front",
  53778. image: {
  53779. source: "./media/characters/kyan/front.svg",
  53780. extra: 460/334,
  53781. bottom: 23/483
  53782. },
  53783. extraAttributes: {
  53784. "toeLength": {
  53785. name: "Toe Length",
  53786. power: 1,
  53787. type: "length",
  53788. base: math.unit(7, "cm")
  53789. },
  53790. "toeclawLength": {
  53791. name: "Toeclaw Length",
  53792. power: 1,
  53793. type: "length",
  53794. base: math.unit(4.7, "cm")
  53795. },
  53796. "earHeight": {
  53797. name: "Ear Height",
  53798. power: 1,
  53799. type: "length",
  53800. base: math.unit(14.1, "cm")
  53801. },
  53802. }
  53803. },
  53804. paws: {
  53805. height: math.unit(0.45, "feet"),
  53806. name: "Paws",
  53807. image: {
  53808. source: "./media/characters/kyan/paws.svg",
  53809. extra: 581/581,
  53810. bottom: 114/695
  53811. }
  53812. },
  53813. },
  53814. [
  53815. {
  53816. name: "Normal",
  53817. height: math.unit(2 + 5/12, "feet"),
  53818. default: true
  53819. },
  53820. ]
  53821. ))
  53822. characterMakers.push(() => makeCharacter(
  53823. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  53824. {
  53825. front: {
  53826. height: math.unit(2 + 2/3, "feet"),
  53827. name: "Front",
  53828. image: {
  53829. source: "./media/characters/xazzon/front.svg",
  53830. extra: 1109/984,
  53831. bottom: 42/1151
  53832. }
  53833. },
  53834. back: {
  53835. height: math.unit(2 + 2/3, "feet"),
  53836. name: "Back",
  53837. image: {
  53838. source: "./media/characters/xazzon/back.svg",
  53839. extra: 1095/971,
  53840. bottom: 23/1118
  53841. }
  53842. },
  53843. },
  53844. [
  53845. {
  53846. name: "Normal",
  53847. height: math.unit(2 + 2/3, "feet"),
  53848. default: true
  53849. },
  53850. ]
  53851. ))
  53852. characterMakers.push(() => makeCharacter(
  53853. { name: "Aurora Beagsidhe", species: ["catgirl"], tags: ["anthro"] },
  53854. {
  53855. dressed: {
  53856. height: math.unit(5 + 7/12, "feet"),
  53857. weight: math.unit(173, "lb"),
  53858. name: "Dressed",
  53859. image: {
  53860. source: "./media/characters/aurora-beagsidhe/dressed.svg",
  53861. extra: 3262/2862,
  53862. bottom: 188/3450
  53863. }
  53864. },
  53865. undressed: {
  53866. height: math.unit(5 + 7/12, "feet"),
  53867. weight: math.unit(173, "lb"),
  53868. name: "Undressed",
  53869. image: {
  53870. source: "./media/characters/aurora-beagsidhe/undressed.svg",
  53871. extra: 3262/2862,
  53872. bottom: 188/3450
  53873. }
  53874. },
  53875. },
  53876. [
  53877. {
  53878. name: "The void",
  53879. height: math.unit(7.29193e-34, "angstroms")
  53880. },
  53881. {
  53882. name: "Uh-Oh.",
  53883. height: math.unit(5.734e-7, "angstroms")
  53884. },
  53885. {
  53886. name: "Pico",
  53887. height: math.unit(0.876, "angstroms")
  53888. },
  53889. {
  53890. name: "Nano",
  53891. height: math.unit(0.000134200, "mm")
  53892. },
  53893. {
  53894. name: "Micro",
  53895. height: math.unit(0.0673020, "mm")
  53896. },
  53897. {
  53898. name: "Tiny",
  53899. height: math.unit(2.4, "mm")
  53900. },
  53901. {
  53902. name: "Actual Normal",
  53903. height: math.unit(3, "inches"),
  53904. default: true
  53905. },
  53906. {
  53907. name: "Normal",
  53908. height: math.unit(5 + 8/12, "feet")
  53909. },
  53910. {
  53911. name: "Giant",
  53912. height: math.unit(12, "feet")
  53913. },
  53914. {
  53915. name: "City Ruler",
  53916. height: math.unit(270, "meters")
  53917. },
  53918. {
  53919. name: "Giga",
  53920. height: math.unit(1117.6, "km")
  53921. },
  53922. {
  53923. name: "All-Powerful Queen",
  53924. height: math.unit(70.8, "gigameters")
  53925. },
  53926. {
  53927. name: "'Goddess'",
  53928. height: math.unit(600, "yottameters")
  53929. },
  53930. {
  53931. name: "Biggest!",
  53932. height: math.unit(4.23e5, "yottameters")
  53933. },
  53934. ]
  53935. ))
  53936. characterMakers.push(() => makeCharacter(
  53937. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  53938. {
  53939. front: {
  53940. height: math.unit(8, "feet"),
  53941. weight: math.unit(300, "lb"),
  53942. name: "Front",
  53943. image: {
  53944. source: "./media/characters/khyla-shadowsong/front.svg",
  53945. extra: 861/798,
  53946. bottom: 32/893
  53947. }
  53948. },
  53949. side: {
  53950. height: math.unit(8, "feet"),
  53951. weight: math.unit(300, "lb"),
  53952. name: "Side",
  53953. image: {
  53954. source: "./media/characters/khyla-shadowsong/side.svg",
  53955. extra: 790/750,
  53956. bottom: 87/877
  53957. }
  53958. },
  53959. back: {
  53960. height: math.unit(8, "feet"),
  53961. weight: math.unit(300, "lb"),
  53962. name: "Back",
  53963. image: {
  53964. source: "./media/characters/khyla-shadowsong/back.svg",
  53965. extra: 855/808,
  53966. bottom: 14/869
  53967. }
  53968. },
  53969. head: {
  53970. height: math.unit(2.7, "feet"),
  53971. name: "Head",
  53972. image: {
  53973. source: "./media/characters/khyla-shadowsong/head.svg"
  53974. }
  53975. },
  53976. },
  53977. [
  53978. {
  53979. name: "Micro",
  53980. height: math.unit(6, "inches")
  53981. },
  53982. {
  53983. name: "Normal",
  53984. height: math.unit(8, "feet"),
  53985. default: true
  53986. },
  53987. ]
  53988. ))
  53989. characterMakers.push(() => makeCharacter(
  53990. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  53991. {
  53992. hyperFront: {
  53993. height: math.unit(9 + 4/12, "feet"),
  53994. weight: math.unit(2000, "lb"),
  53995. name: "Front",
  53996. image: {
  53997. source: "./media/characters/tiden/hyper-front.svg",
  53998. extra: 400/382,
  53999. bottom: 6/406
  54000. },
  54001. form: "hyper",
  54002. },
  54003. regularFront: {
  54004. height: math.unit(7 + 10/12, "feet"),
  54005. weight: math.unit(470, "lb"),
  54006. name: "Front",
  54007. image: {
  54008. source: "./media/characters/tiden/regular-front.svg",
  54009. extra: 468/442,
  54010. bottom: 6/474
  54011. },
  54012. form: "regular",
  54013. },
  54014. },
  54015. [
  54016. {
  54017. name: "Normal",
  54018. height: math.unit(9 + 4/12, "feet"),
  54019. default: true,
  54020. form: "hyper"
  54021. },
  54022. {
  54023. name: "Normal",
  54024. height: math.unit(7 + 10/12, "feet"),
  54025. default: true,
  54026. form: "regular"
  54027. },
  54028. ],
  54029. {
  54030. "hyper": {
  54031. name: "Hyper",
  54032. default: true
  54033. },
  54034. "regular": {
  54035. name: "Regular",
  54036. },
  54037. }
  54038. ))
  54039. characterMakers.push(() => makeCharacter(
  54040. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  54041. {
  54042. side: {
  54043. height: math.unit(6, "feet"),
  54044. weight: math.unit(150, "lb"),
  54045. name: "Side",
  54046. image: {
  54047. source: "./media/characters/jason-crowe/side.svg",
  54048. extra: 1771/766,
  54049. bottom: 219/1990
  54050. }
  54051. },
  54052. },
  54053. [
  54054. {
  54055. name: "Pocket Gryphon",
  54056. height: math.unit(6, "cm")
  54057. },
  54058. {
  54059. name: "Raven",
  54060. height: math.unit(60, "cm")
  54061. },
  54062. {
  54063. name: "Normal",
  54064. height: math.unit(1, "meter"),
  54065. default: true
  54066. },
  54067. ]
  54068. ))
  54069. characterMakers.push(() => makeCharacter(
  54070. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  54071. {
  54072. front: {
  54073. height: math.unit(9 + 6/12, "feet"),
  54074. weight: math.unit(1100, "lb"),
  54075. name: "Front",
  54076. image: {
  54077. source: "./media/characters/django/front.svg",
  54078. extra: 1231/1136,
  54079. bottom: 34/1265
  54080. }
  54081. },
  54082. side: {
  54083. height: math.unit(9 + 6/12, "feet"),
  54084. weight: math.unit(1100, "lb"),
  54085. name: "Side",
  54086. image: {
  54087. source: "./media/characters/django/side.svg",
  54088. extra: 1267/1174,
  54089. bottom: 9/1276
  54090. }
  54091. },
  54092. },
  54093. [
  54094. {
  54095. name: "Normal",
  54096. height: math.unit(9 + 6/12, "feet"),
  54097. default: true
  54098. },
  54099. {
  54100. name: "Macro 1",
  54101. height: math.unit(50, "feet")
  54102. },
  54103. {
  54104. name: "Macro 2",
  54105. height: math.unit(500, "feet")
  54106. },
  54107. {
  54108. name: "Mega Macro",
  54109. height: math.unit(5300, "feet")
  54110. },
  54111. ]
  54112. ))
  54113. characterMakers.push(() => makeCharacter(
  54114. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  54115. {
  54116. frontSfw: {
  54117. height: math.unit(120, "cm"),
  54118. weight: math.unit(15, "kg"),
  54119. name: "Front (SFW)",
  54120. image: {
  54121. source: "./media/characters/eri/front-sfw.svg",
  54122. extra: 1014/939,
  54123. bottom: 37/1051
  54124. },
  54125. form: "moth",
  54126. },
  54127. frontNsfw: {
  54128. height: math.unit(120, "cm"),
  54129. weight: math.unit(15, "kg"),
  54130. name: "Front (NSFW)",
  54131. image: {
  54132. source: "./media/characters/eri/front-nsfw.svg",
  54133. extra: 1014/939,
  54134. bottom: 37/1051
  54135. },
  54136. form: "moth",
  54137. default: true
  54138. },
  54139. egg: {
  54140. height: math.unit(10, "cm"),
  54141. name: "Egg",
  54142. image: {
  54143. source: "./media/characters/eri/egg.svg"
  54144. },
  54145. form: "egg",
  54146. default: true
  54147. },
  54148. },
  54149. [
  54150. {
  54151. name: "Normal",
  54152. height: math.unit(120, "cm"),
  54153. default: true,
  54154. form: "moth"
  54155. },
  54156. {
  54157. name: "Normal",
  54158. height: math.unit(10, "cm"),
  54159. default: true,
  54160. form: "egg"
  54161. },
  54162. ],
  54163. {
  54164. "moth": {
  54165. name: "Moth",
  54166. default: true
  54167. },
  54168. "egg": {
  54169. name: "Egg",
  54170. },
  54171. }
  54172. ))
  54173. characterMakers.push(() => makeCharacter(
  54174. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  54175. {
  54176. front: {
  54177. height: math.unit(200, "feet"),
  54178. name: "Front",
  54179. image: {
  54180. source: "./media/characters/bishop-dowser/front.svg",
  54181. extra: 933/868,
  54182. bottom: 106/1039
  54183. }
  54184. },
  54185. },
  54186. [
  54187. {
  54188. name: "Giant",
  54189. height: math.unit(200, "feet"),
  54190. default: true
  54191. },
  54192. ]
  54193. ))
  54194. characterMakers.push(() => makeCharacter(
  54195. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  54196. {
  54197. front: {
  54198. height: math.unit(2, "meters"),
  54199. preyCapacity: math.unit(3, "people"),
  54200. name: "Front",
  54201. image: {
  54202. source: "./media/characters/fryra/front.svg",
  54203. extra: 1025/948,
  54204. bottom: 30/1055
  54205. },
  54206. extraAttributes: {
  54207. "breastVolume": {
  54208. name: "Breast Volume",
  54209. power: 3,
  54210. type: "volume",
  54211. base: math.unit(8, "liters")
  54212. },
  54213. }
  54214. },
  54215. back: {
  54216. height: math.unit(2, "meters"),
  54217. preyCapacity: math.unit(3, "people"),
  54218. name: "Back",
  54219. image: {
  54220. source: "./media/characters/fryra/back.svg",
  54221. extra: 993/938,
  54222. bottom: 38/1031
  54223. },
  54224. extraAttributes: {
  54225. "breastVolume": {
  54226. name: "Breast Volume",
  54227. power: 3,
  54228. type: "volume",
  54229. base: math.unit(8, "liters")
  54230. },
  54231. }
  54232. },
  54233. head: {
  54234. height: math.unit(1.33, "feet"),
  54235. name: "Head",
  54236. image: {
  54237. source: "./media/characters/fryra/head.svg"
  54238. }
  54239. },
  54240. maw: {
  54241. height: math.unit(0.56, "feet"),
  54242. name: "Maw",
  54243. image: {
  54244. source: "./media/characters/fryra/maw.svg"
  54245. }
  54246. },
  54247. },
  54248. [
  54249. {
  54250. name: "Micro",
  54251. height: math.unit(5, "cm")
  54252. },
  54253. {
  54254. name: "Normal",
  54255. height: math.unit(2, "meters"),
  54256. default: true
  54257. },
  54258. {
  54259. name: "Small Macro",
  54260. height: math.unit(8, "meters")
  54261. },
  54262. {
  54263. name: "Macro",
  54264. height: math.unit(50, "meters")
  54265. },
  54266. {
  54267. name: "Megamacro",
  54268. height: math.unit(1, "km")
  54269. },
  54270. {
  54271. name: "Planetary",
  54272. height: math.unit(300000, "km")
  54273. },
  54274. {
  54275. name: "Universal",
  54276. height: math.unit(250, "lightyears")
  54277. },
  54278. {
  54279. name: "Fabric of Reality",
  54280. height: math.unit(1000, "multiverses")
  54281. },
  54282. ]
  54283. ))
  54284. characterMakers.push(() => makeCharacter(
  54285. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  54286. {
  54287. frontDressed: {
  54288. height: math.unit(6 + 2/12, "feet"),
  54289. name: "Front (Dressed)",
  54290. image: {
  54291. source: "./media/characters/fiera/front-dressed.svg",
  54292. extra: 1883/1793,
  54293. bottom: 70/1953
  54294. }
  54295. },
  54296. backDressed: {
  54297. height: math.unit(6 + 2/12, "feet"),
  54298. name: "Back (Dressed)",
  54299. image: {
  54300. source: "./media/characters/fiera/back-dressed.svg",
  54301. extra: 1847/1780,
  54302. bottom: 70/1917
  54303. }
  54304. },
  54305. frontNude: {
  54306. height: math.unit(6 + 2/12, "feet"),
  54307. name: "Front (Nude)",
  54308. image: {
  54309. source: "./media/characters/fiera/front-nude.svg",
  54310. extra: 1875/1785,
  54311. bottom: 66/1941
  54312. }
  54313. },
  54314. backNude: {
  54315. height: math.unit(6 + 2/12, "feet"),
  54316. name: "Back (Nude)",
  54317. image: {
  54318. source: "./media/characters/fiera/back-nude.svg",
  54319. extra: 1855/1788,
  54320. bottom: 44/1899
  54321. }
  54322. },
  54323. maw: {
  54324. height: math.unit(1.3, "feet"),
  54325. name: "Maw",
  54326. image: {
  54327. source: "./media/characters/fiera/maw.svg"
  54328. }
  54329. },
  54330. paw: {
  54331. height: math.unit(1, "feet"),
  54332. name: "Paw",
  54333. image: {
  54334. source: "./media/characters/fiera/paw.svg"
  54335. }
  54336. },
  54337. shoe: {
  54338. height: math.unit(1.05, "feet"),
  54339. name: "Shoe",
  54340. image: {
  54341. source: "./media/characters/fiera/shoe.svg"
  54342. }
  54343. },
  54344. },
  54345. [
  54346. {
  54347. name: "Normal",
  54348. height: math.unit(6 + 2/12, "feet"),
  54349. default: true
  54350. },
  54351. {
  54352. name: "Size Difference",
  54353. height: math.unit(13, "feet")
  54354. },
  54355. {
  54356. name: "Macro",
  54357. height: math.unit(60, "feet")
  54358. },
  54359. {
  54360. name: "Mega Macro",
  54361. height: math.unit(200, "feet")
  54362. },
  54363. ]
  54364. ))
  54365. characterMakers.push(() => makeCharacter(
  54366. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  54367. {
  54368. back: {
  54369. height: math.unit(6, "feet"),
  54370. name: "Back",
  54371. image: {
  54372. source: "./media/characters/flare/back.svg",
  54373. extra: 1883/1765,
  54374. bottom: 32/1915
  54375. }
  54376. },
  54377. },
  54378. [
  54379. {
  54380. name: "Normal",
  54381. height: math.unit(6 + 2/12, "feet"),
  54382. default: true
  54383. },
  54384. {
  54385. name: "Size Difference",
  54386. height: math.unit(13, "feet")
  54387. },
  54388. {
  54389. name: "Macro",
  54390. height: math.unit(60, "feet")
  54391. },
  54392. {
  54393. name: "Macro 2",
  54394. height: math.unit(100, "feet")
  54395. },
  54396. {
  54397. name: "Mega Macro",
  54398. height: math.unit(200, "feet")
  54399. },
  54400. ]
  54401. ))
  54402. characterMakers.push(() => makeCharacter(
  54403. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  54404. {
  54405. front: {
  54406. height: math.unit(2.2, "m"),
  54407. weight: math.unit(300, "kg"),
  54408. name: "Front",
  54409. image: {
  54410. source: "./media/characters/hanna/front.svg",
  54411. extra: 1696/1502,
  54412. bottom: 206/1902
  54413. }
  54414. },
  54415. },
  54416. [
  54417. {
  54418. name: "Humanoid",
  54419. height: math.unit(2.2, "meters")
  54420. },
  54421. {
  54422. name: "Normal",
  54423. height: math.unit(4.8, "meters"),
  54424. default: true
  54425. },
  54426. ]
  54427. ))
  54428. characterMakers.push(() => makeCharacter(
  54429. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  54430. {
  54431. front: {
  54432. height: math.unit(2.8, "meters"),
  54433. name: "Front",
  54434. image: {
  54435. source: "./media/characters/argo/front.svg",
  54436. extra: 731/518,
  54437. bottom: 84/815
  54438. }
  54439. },
  54440. },
  54441. [
  54442. {
  54443. name: "Normal",
  54444. height: math.unit(3, "meters"),
  54445. default: true
  54446. },
  54447. ]
  54448. ))
  54449. characterMakers.push(() => makeCharacter(
  54450. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  54451. {
  54452. side: {
  54453. height: math.unit(3.8, "meters"),
  54454. name: "Side",
  54455. image: {
  54456. source: "./media/characters/sybil/side.svg",
  54457. extra: 382/361,
  54458. bottom: 25/407
  54459. }
  54460. },
  54461. },
  54462. [
  54463. {
  54464. name: "Normal",
  54465. height: math.unit(3.8, "meters"),
  54466. default: true
  54467. },
  54468. ]
  54469. ))
  54470. characterMakers.push(() => makeCharacter(
  54471. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  54472. {
  54473. side: {
  54474. height: math.unit(6, "meters"),
  54475. name: "Side",
  54476. image: {
  54477. source: "./media/characters/plum/side.svg",
  54478. extra: 858/755,
  54479. bottom: 45/903
  54480. },
  54481. form: "taur",
  54482. default: true
  54483. },
  54484. back: {
  54485. height: math.unit(6.3, "meters"),
  54486. name: "Back",
  54487. image: {
  54488. source: "./media/characters/plum/back.svg",
  54489. extra: 887/813,
  54490. bottom: 32/919
  54491. },
  54492. form: "taur",
  54493. },
  54494. feral: {
  54495. height: math.unit(5.5, "meter"),
  54496. name: "Front",
  54497. image: {
  54498. source: "./media/characters/plum/feral.svg",
  54499. extra: 568/403,
  54500. bottom: 51/619
  54501. },
  54502. form: "feral",
  54503. default: true
  54504. },
  54505. head: {
  54506. height: math.unit(1.46, "meter"),
  54507. name: "Head",
  54508. image: {
  54509. source: "./media/characters/plum/head.svg"
  54510. },
  54511. form: "taur"
  54512. },
  54513. tailTop: {
  54514. height: math.unit(5.6, "meter"),
  54515. name: "Tail (Top)",
  54516. image: {
  54517. source: "./media/characters/plum/tail-top.svg"
  54518. },
  54519. form: "taur",
  54520. },
  54521. tailBottom: {
  54522. height: math.unit(5.6, "meter"),
  54523. name: "Tail (Bottom)",
  54524. image: {
  54525. source: "./media/characters/plum/tail-bottom.svg"
  54526. },
  54527. form: "taur",
  54528. },
  54529. feralHead: {
  54530. height: math.unit(2.56549521, "meter"),
  54531. name: "Head",
  54532. image: {
  54533. source: "./media/characters/plum/head.svg"
  54534. },
  54535. form: "feral"
  54536. },
  54537. feralTailTop: {
  54538. height: math.unit(5.44728435, "meter"),
  54539. name: "Tail (Top)",
  54540. image: {
  54541. source: "./media/characters/plum/tail-top.svg"
  54542. },
  54543. form: "feral",
  54544. },
  54545. feralTailBottom: {
  54546. height: math.unit(5.44728435, "meter"),
  54547. name: "Tail (Bottom)",
  54548. image: {
  54549. source: "./media/characters/plum/tail-bottom.svg"
  54550. },
  54551. form: "feral",
  54552. },
  54553. },
  54554. [
  54555. {
  54556. name: "Normal",
  54557. height: math.unit(6, "meters"),
  54558. default: true,
  54559. form: "taur"
  54560. },
  54561. {
  54562. name: "Normal",
  54563. height: math.unit(5.5, "meters"),
  54564. default: true,
  54565. form: "feral"
  54566. },
  54567. ],
  54568. {
  54569. "taur": {
  54570. name: "Taur",
  54571. default: true
  54572. },
  54573. "feral": {
  54574. name: "Feral",
  54575. },
  54576. }
  54577. ))
  54578. characterMakers.push(() => makeCharacter(
  54579. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  54580. {
  54581. front: {
  54582. height: math.unit(6, "feet"),
  54583. weight: math.unit(115, "lb"),
  54584. name: "Front",
  54585. image: {
  54586. source: "./media/characters/celeste-kitsune/front.svg",
  54587. extra: 393/366,
  54588. bottom: 7/400
  54589. }
  54590. },
  54591. side: {
  54592. height: math.unit(6, "feet"),
  54593. weight: math.unit(115, "lb"),
  54594. name: "Side",
  54595. image: {
  54596. source: "./media/characters/celeste-kitsune/side.svg",
  54597. extra: 818/765,
  54598. bottom: 40/858
  54599. }
  54600. },
  54601. },
  54602. [
  54603. {
  54604. name: "Megamacro",
  54605. height: math.unit(1500, "miles"),
  54606. default: true
  54607. },
  54608. ]
  54609. ))
  54610. characterMakers.push(() => makeCharacter(
  54611. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  54612. {
  54613. front: {
  54614. height: math.unit(8, "meters"),
  54615. name: "Front",
  54616. image: {
  54617. source: "./media/characters/io/front.svg",
  54618. extra: 865/722,
  54619. bottom: 58/923
  54620. }
  54621. },
  54622. back: {
  54623. height: math.unit(8, "meters"),
  54624. name: "Back",
  54625. image: {
  54626. source: "./media/characters/io/back.svg",
  54627. extra: 920/776,
  54628. bottom: 42/962
  54629. }
  54630. },
  54631. head: {
  54632. height: math.unit(5.09, "meters"),
  54633. name: "Head",
  54634. image: {
  54635. source: "./media/characters/io/head.svg"
  54636. }
  54637. },
  54638. hand: {
  54639. height: math.unit(1.6, "meters"),
  54640. name: "Hand",
  54641. image: {
  54642. source: "./media/characters/io/hand.svg"
  54643. }
  54644. },
  54645. foot: {
  54646. height: math.unit(2.4, "meters"),
  54647. name: "Foot",
  54648. image: {
  54649. source: "./media/characters/io/foot.svg"
  54650. }
  54651. },
  54652. },
  54653. [
  54654. {
  54655. name: "Normal",
  54656. height: math.unit(8, "meters"),
  54657. default: true
  54658. },
  54659. ]
  54660. ))
  54661. characterMakers.push(() => makeCharacter(
  54662. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  54663. {
  54664. side: {
  54665. height: math.unit(6 + 3/12, "feet"),
  54666. weight: math.unit(225, "lb"),
  54667. name: "Side",
  54668. image: {
  54669. source: "./media/characters/silas/side.svg",
  54670. extra: 703/653,
  54671. bottom: 23/726
  54672. },
  54673. extraAttributes: {
  54674. "pawLength": {
  54675. name: "Paw Length",
  54676. power: 1,
  54677. type: "length",
  54678. base: math.unit(12, "inches")
  54679. },
  54680. "pawWidth": {
  54681. name: "Paw Width",
  54682. power: 1,
  54683. type: "length",
  54684. base: math.unit(4.5, "inches")
  54685. },
  54686. "pawArea": {
  54687. name: "Paw Area",
  54688. power: 2,
  54689. type: "area",
  54690. base: math.unit(12 * 4.5, "inches^2")
  54691. },
  54692. }
  54693. },
  54694. },
  54695. [
  54696. {
  54697. name: "Normal",
  54698. height: math.unit(6 + 3/12, "feet"),
  54699. default: true
  54700. },
  54701. ]
  54702. ))
  54703. characterMakers.push(() => makeCharacter(
  54704. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  54705. {
  54706. back: {
  54707. height: math.unit(1.6, "meters"),
  54708. weight: math.unit(150, "lb"),
  54709. name: "Back",
  54710. image: {
  54711. source: "./media/characters/zari/back.svg",
  54712. extra: 424/411,
  54713. bottom: 32/456
  54714. },
  54715. extraAttributes: {
  54716. "bladderCapacity": {
  54717. name: "Bladder Size",
  54718. power: 3,
  54719. type: "volume",
  54720. base: math.unit(500, "mL")
  54721. },
  54722. "bladderFlow": {
  54723. name: "Flow Rate",
  54724. power: 3,
  54725. type: "volume",
  54726. base: math.unit(25, "mL")
  54727. },
  54728. }
  54729. },
  54730. },
  54731. [
  54732. {
  54733. name: "Normal",
  54734. height: math.unit(1.6, "meters"),
  54735. default: true
  54736. },
  54737. ]
  54738. ))
  54739. characterMakers.push(() => makeCharacter(
  54740. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  54741. {
  54742. front: {
  54743. height: math.unit(25, "feet"),
  54744. weight: math.unit(5, "tons"),
  54745. name: "Front",
  54746. image: {
  54747. source: "./media/characters/charlie-human/front.svg",
  54748. extra: 1870/1740,
  54749. bottom: 102/1972
  54750. },
  54751. extraAttributes: {
  54752. "dickLength": {
  54753. name: "Dick Length",
  54754. power: 1,
  54755. type: "length",
  54756. base: math.unit(9, "feet")
  54757. },
  54758. }
  54759. },
  54760. back: {
  54761. height: math.unit(25, "feet"),
  54762. weight: math.unit(5, "tons"),
  54763. name: "Back",
  54764. image: {
  54765. source: "./media/characters/charlie-human/back.svg",
  54766. extra: 1858/1733,
  54767. bottom: 105/1963
  54768. },
  54769. extraAttributes: {
  54770. "dickLength": {
  54771. name: "Dick Length",
  54772. power: 1,
  54773. type: "length",
  54774. base: math.unit(9, "feet")
  54775. },
  54776. }
  54777. },
  54778. },
  54779. [
  54780. {
  54781. name: "\"Normal\"",
  54782. height: math.unit(6 + 4/12, "feet")
  54783. },
  54784. {
  54785. name: "Big",
  54786. height: math.unit(25, "feet"),
  54787. default: true
  54788. },
  54789. ]
  54790. ))
  54791. characterMakers.push(() => makeCharacter(
  54792. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  54793. {
  54794. front: {
  54795. height: math.unit(6 + 4/12, "feet"),
  54796. weight: math.unit(320, "lb"),
  54797. name: "Front",
  54798. image: {
  54799. source: "./media/characters/ookitsu/front.svg",
  54800. extra: 1160/976,
  54801. bottom: 38/1198
  54802. }
  54803. },
  54804. frontNsfw: {
  54805. height: math.unit(6 + 4/12, "feet"),
  54806. weight: math.unit(320, "lb"),
  54807. name: "Front (NSFW)",
  54808. image: {
  54809. source: "./media/characters/ookitsu/front-nsfw.svg",
  54810. extra: 1160/976,
  54811. bottom: 38/1198
  54812. }
  54813. },
  54814. back: {
  54815. height: math.unit(6 + 4/12, "feet"),
  54816. weight: math.unit(320, "lb"),
  54817. name: "Back",
  54818. image: {
  54819. source: "./media/characters/ookitsu/back.svg",
  54820. extra: 1030/975,
  54821. bottom: 70/1100
  54822. }
  54823. },
  54824. head: {
  54825. height: math.unit(1.79, "feet"),
  54826. name: "Head",
  54827. image: {
  54828. source: "./media/characters/ookitsu/head.svg"
  54829. }
  54830. },
  54831. hand: {
  54832. height: math.unit(0.92, "feet"),
  54833. name: "Hand",
  54834. image: {
  54835. source: "./media/characters/ookitsu/hand.svg"
  54836. }
  54837. },
  54838. tails: {
  54839. height: math.unit(3.3, "feet"),
  54840. name: "Tails",
  54841. image: {
  54842. source: "./media/characters/ookitsu/tails.svg"
  54843. }
  54844. },
  54845. dick: {
  54846. height: math.unit(1.10833, "feet"),
  54847. name: "Dick",
  54848. image: {
  54849. source: "./media/characters/ookitsu/dick.svg"
  54850. }
  54851. },
  54852. },
  54853. [
  54854. {
  54855. name: "Normal",
  54856. height: math.unit(6 + 4/12, "feet"),
  54857. default: true
  54858. },
  54859. {
  54860. name: "Macro",
  54861. height: math.unit(30, "feet")
  54862. },
  54863. ]
  54864. ))
  54865. characterMakers.push(() => makeCharacter(
  54866. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  54867. {
  54868. anthroFront: {
  54869. height: math.unit(6, "feet"),
  54870. weight: math.unit(250, "lb"),
  54871. name: "Front",
  54872. image: {
  54873. source: "./media/characters/jhusky/anthro-front.svg",
  54874. extra: 474/439,
  54875. bottom: 7/481
  54876. },
  54877. form: "anthro",
  54878. default: true
  54879. },
  54880. taurSideSfw: {
  54881. height: math.unit(6 + 4/12, "feet"),
  54882. weight: math.unit(500, "lb"),
  54883. name: "Side (SFW)",
  54884. image: {
  54885. source: "./media/characters/jhusky/taur-side-sfw.svg",
  54886. extra: 1741/1629,
  54887. bottom: 196/1937
  54888. },
  54889. form: "taur",
  54890. default: true
  54891. },
  54892. taurSideNsfw: {
  54893. height: math.unit(6 + 4/12, "feet"),
  54894. weight: math.unit(500, "lb"),
  54895. name: "Taur (NSFW)",
  54896. image: {
  54897. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  54898. extra: 1741/1629,
  54899. bottom: 196/1937
  54900. },
  54901. form: "taur",
  54902. },
  54903. },
  54904. [
  54905. {
  54906. name: "Huge",
  54907. height: math.unit(500, "feet"),
  54908. form: "anthro"
  54909. },
  54910. {
  54911. name: "Macro",
  54912. height: math.unit(1000, "feet"),
  54913. default: true,
  54914. form: "anthro"
  54915. },
  54916. {
  54917. name: "Megamacro",
  54918. height: math.unit(10000, "feet"),
  54919. form: "anthro"
  54920. },
  54921. {
  54922. name: "Huge",
  54923. height: math.unit(528, "feet"),
  54924. form: "taur"
  54925. },
  54926. {
  54927. name: "Macro",
  54928. height: math.unit(1056, "feet"),
  54929. default: true,
  54930. form: "taur"
  54931. },
  54932. {
  54933. name: "Megamacro",
  54934. height: math.unit(10556, "feet"),
  54935. form: "taur"
  54936. },
  54937. ],
  54938. {
  54939. "anthro": {
  54940. name: "Anthro",
  54941. default: true
  54942. },
  54943. "taur": {
  54944. name: "Taur",
  54945. },
  54946. }
  54947. ))
  54948. characterMakers.push(() => makeCharacter(
  54949. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  54950. {
  54951. front: {
  54952. height: math.unit(8, "feet"),
  54953. weight: math.unit(500, "lb"),
  54954. name: "Front",
  54955. image: {
  54956. source: "./media/characters/armail/front.svg",
  54957. extra: 1753/1669,
  54958. bottom: 155/1908
  54959. }
  54960. },
  54961. back: {
  54962. height: math.unit(8, "feet"),
  54963. weight: math.unit(500, "lb"),
  54964. name: "Back",
  54965. image: {
  54966. source: "./media/characters/armail/back.svg",
  54967. extra: 1872/1803,
  54968. bottom: 63/1935
  54969. }
  54970. },
  54971. },
  54972. [
  54973. {
  54974. name: "Micro",
  54975. height: math.unit(0.25, "feet")
  54976. },
  54977. {
  54978. name: "Normal",
  54979. height: math.unit(8, "feet"),
  54980. default: true
  54981. },
  54982. {
  54983. name: "Mini-macro",
  54984. height: math.unit(30, "feet")
  54985. },
  54986. {
  54987. name: "Macro",
  54988. height: math.unit(400, "feet")
  54989. },
  54990. {
  54991. name: "Mega-macro",
  54992. height: math.unit(6000, "feet")
  54993. },
  54994. ]
  54995. ))
  54996. characterMakers.push(() => makeCharacter(
  54997. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  54998. {
  54999. front: {
  55000. height: math.unit(6 + 7/12, "feet"),
  55001. weight: math.unit(210, "lb"),
  55002. name: "Front",
  55003. image: {
  55004. source: "./media/characters/wilfred-t-buxton/front.svg",
  55005. extra: 1068/882,
  55006. bottom: 28/1096
  55007. }
  55008. },
  55009. },
  55010. [
  55011. {
  55012. name: "Normal",
  55013. height: math.unit(6 + 7/12, "feet"),
  55014. default: true
  55015. },
  55016. ]
  55017. ))
  55018. characterMakers.push(() => makeCharacter(
  55019. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  55020. {
  55021. front: {
  55022. height: math.unit(5 + 2/12, "feet"),
  55023. weight: math.unit(120, "lb"),
  55024. name: "Front",
  55025. image: {
  55026. source: "./media/characters/leighton-marrow/front.svg",
  55027. extra: 441/409,
  55028. bottom: 37/478
  55029. }
  55030. },
  55031. },
  55032. [
  55033. {
  55034. name: "Normal",
  55035. height: math.unit(5 + 2/12, "feet"),
  55036. default: true
  55037. },
  55038. ]
  55039. ))
  55040. characterMakers.push(() => makeCharacter(
  55041. { name: "Licos", species: ["werewolf"], tags: ["anthro"] },
  55042. {
  55043. front: {
  55044. height: math.unit(4, "meters"),
  55045. weight: math.unit(1200, "kg"),
  55046. name: "Front",
  55047. image: {
  55048. source: "./media/characters/licos/front.svg",
  55049. extra: 1727/1604,
  55050. bottom: 101/1828
  55051. }
  55052. },
  55053. },
  55054. [
  55055. {
  55056. name: "Normal",
  55057. height: math.unit(4, "meters"),
  55058. default: true
  55059. },
  55060. ]
  55061. ))
  55062. characterMakers.push(() => makeCharacter(
  55063. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  55064. {
  55065. front: {
  55066. height: math.unit(10 + 3/12, "feet"),
  55067. name: "Front",
  55068. image: {
  55069. source: "./media/characters/theo-monkey/front.svg",
  55070. extra: 1735/1658,
  55071. bottom: 73/1808
  55072. }
  55073. },
  55074. back: {
  55075. height: math.unit(10 + 3/12, "feet"),
  55076. name: "Back",
  55077. image: {
  55078. source: "./media/characters/theo-monkey/back.svg",
  55079. extra: 1742/1664,
  55080. bottom: 33/1775
  55081. }
  55082. },
  55083. head: {
  55084. height: math.unit(2.29, "feet"),
  55085. name: "Head",
  55086. image: {
  55087. source: "./media/characters/theo-monkey/head.svg"
  55088. }
  55089. },
  55090. handPalm: {
  55091. height: math.unit(1.73, "feet"),
  55092. name: "Hand (Palm)",
  55093. image: {
  55094. source: "./media/characters/theo-monkey/hand-palm.svg"
  55095. }
  55096. },
  55097. handBack: {
  55098. height: math.unit(1.63, "feet"),
  55099. name: "Hand (Back)",
  55100. image: {
  55101. source: "./media/characters/theo-monkey/hand-back.svg"
  55102. }
  55103. },
  55104. footSole: {
  55105. height: math.unit(2.15, "feet"),
  55106. name: "Foot (Sole)",
  55107. image: {
  55108. source: "./media/characters/theo-monkey/foot-sole.svg"
  55109. }
  55110. },
  55111. footSide: {
  55112. height: math.unit(1.6, "feet"),
  55113. name: "Foot (Side)",
  55114. image: {
  55115. source: "./media/characters/theo-monkey/foot-side.svg"
  55116. }
  55117. },
  55118. },
  55119. [
  55120. {
  55121. name: "Normal",
  55122. height: math.unit(10 + 3/12, "feet"),
  55123. default: true
  55124. },
  55125. ]
  55126. ))
  55127. characterMakers.push(() => makeCharacter(
  55128. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  55129. {
  55130. front: {
  55131. height: math.unit(11, "feet"),
  55132. weight: math.unit(3000, "lb"),
  55133. preyCapacity: math.unit(10, "people"),
  55134. name: "Front",
  55135. image: {
  55136. source: "./media/characters/brook/front.svg",
  55137. extra: 909/835,
  55138. bottom: 108/1017
  55139. }
  55140. },
  55141. back: {
  55142. height: math.unit(11, "feet"),
  55143. weight: math.unit(3000, "lb"),
  55144. preyCapacity: math.unit(10, "people"),
  55145. name: "Back",
  55146. image: {
  55147. source: "./media/characters/brook/back.svg",
  55148. extra: 976/916,
  55149. bottom: 34/1010
  55150. }
  55151. },
  55152. backAlt: {
  55153. height: math.unit(11, "feet"),
  55154. weight: math.unit(3000, "lb"),
  55155. preyCapacity: math.unit(10, "people"),
  55156. name: "Back (Alt)",
  55157. image: {
  55158. source: "./media/characters/brook/back-alt.svg",
  55159. extra: 1283/1213,
  55160. bottom: 35/1318
  55161. }
  55162. },
  55163. bust: {
  55164. height: math.unit(9.0859030837, "feet"),
  55165. weight: math.unit(3000, "lb"),
  55166. preyCapacity: math.unit(10, "people"),
  55167. name: "Bust",
  55168. image: {
  55169. source: "./media/characters/brook/bust.svg",
  55170. extra: 2043/1923,
  55171. bottom: 0/2043
  55172. }
  55173. },
  55174. },
  55175. [
  55176. {
  55177. name: "Small",
  55178. height: math.unit(11, "feet"),
  55179. default: true
  55180. },
  55181. {
  55182. name: "Towering",
  55183. height: math.unit(5, "km")
  55184. },
  55185. {
  55186. name: "Enormous",
  55187. height: math.unit(25, "earths")
  55188. },
  55189. ]
  55190. ))
  55191. characterMakers.push(() => makeCharacter(
  55192. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  55193. {
  55194. front: {
  55195. height: math.unit(4, "feet"),
  55196. weight: math.unit(150, "lb"),
  55197. name: "Front",
  55198. image: {
  55199. source: "./media/characters/squishi/front.svg",
  55200. extra: 1428/1271,
  55201. bottom: 30/1458
  55202. },
  55203. extraAttributes: {
  55204. "pawSize": {
  55205. name: "Paw Size",
  55206. power: 1,
  55207. type: "length",
  55208. base: math.unit(14, "ShoeSizeMensUS"),
  55209. defaultUnit: "ShoeSizeMensUS"
  55210. },
  55211. }
  55212. },
  55213. side: {
  55214. height: math.unit(4, "feet"),
  55215. weight: math.unit(150, "lb"),
  55216. name: "Side",
  55217. image: {
  55218. source: "./media/characters/squishi/side.svg",
  55219. extra: 1428/1271,
  55220. bottom: 30/1458
  55221. },
  55222. extraAttributes: {
  55223. "pawSize": {
  55224. name: "Paw Size",
  55225. power: 1,
  55226. type: "length",
  55227. base: math.unit(14, "ShoeSizeMensUS"),
  55228. defaultUnit: "ShoeSizeMensUS"
  55229. },
  55230. }
  55231. },
  55232. back: {
  55233. height: math.unit(4, "feet"),
  55234. weight: math.unit(150, "lb"),
  55235. name: "Back",
  55236. image: {
  55237. source: "./media/characters/squishi/back.svg",
  55238. extra: 1428/1271,
  55239. bottom: 30/1458
  55240. },
  55241. extraAttributes: {
  55242. "pawSize": {
  55243. name: "Paw Size",
  55244. power: 1,
  55245. type: "length",
  55246. base: math.unit(14, "ShoeSizeMensUS"),
  55247. defaultUnit: "ShoeSizeMensUS"
  55248. },
  55249. }
  55250. },
  55251. },
  55252. [
  55253. {
  55254. name: "Normal",
  55255. height: math.unit(4, "feet"),
  55256. default: true
  55257. },
  55258. ]
  55259. ))
  55260. characterMakers.push(() => makeCharacter(
  55261. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  55262. {
  55263. front: {
  55264. height: math.unit(7 + 8/12, "feet"),
  55265. weight: math.unit(333, "lb"),
  55266. name: "Front",
  55267. image: {
  55268. source: "./media/characters/vincent-vasroc/front.svg",
  55269. extra: 1962/1860,
  55270. bottom: 41/2003
  55271. }
  55272. },
  55273. back: {
  55274. height: math.unit(7 + 8/12, "feet"),
  55275. weight: math.unit(333, "lb"),
  55276. name: "Back",
  55277. image: {
  55278. source: "./media/characters/vincent-vasroc/back.svg",
  55279. extra: 1952/1815,
  55280. bottom: 33/1985
  55281. }
  55282. },
  55283. paw: {
  55284. height: math.unit(1.24, "feet"),
  55285. name: "Paw",
  55286. image: {
  55287. source: "./media/characters/vincent-vasroc/paw.svg"
  55288. }
  55289. },
  55290. ear: {
  55291. height: math.unit(0.75, "feet"),
  55292. name: "Ear",
  55293. image: {
  55294. source: "./media/characters/vincent-vasroc/ear.svg"
  55295. }
  55296. },
  55297. },
  55298. [
  55299. {
  55300. name: "Nano",
  55301. height: math.unit(92, "micrometers")
  55302. },
  55303. {
  55304. name: "Normal",
  55305. height: math.unit(7 + 8/12, "feet"),
  55306. default: true
  55307. },
  55308. ]
  55309. ))
  55310. characterMakers.push(() => makeCharacter(
  55311. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  55312. {
  55313. frontNsfw: {
  55314. height: math.unit(40, "feet"),
  55315. weight: math.unit(58, "tons"),
  55316. name: "Front (NSFW)",
  55317. image: {
  55318. source: "./media/characters/ru-kahn/front-nsfw.svg",
  55319. extra: 1265/965,
  55320. bottom: 155/1420
  55321. }
  55322. },
  55323. frontSfw: {
  55324. height: math.unit(40, "feet"),
  55325. weight: math.unit(58, "tons"),
  55326. name: "Front (SFW)",
  55327. image: {
  55328. source: "./media/characters/ru-kahn/front-sfw.svg",
  55329. extra: 1265/965,
  55330. bottom: 80/1345
  55331. }
  55332. },
  55333. },
  55334. [
  55335. {
  55336. name: "Small",
  55337. height: math.unit(4, "feet")
  55338. },
  55339. {
  55340. name: "Normal",
  55341. height: math.unit(40, "feet"),
  55342. default: true
  55343. },
  55344. {
  55345. name: "Macro",
  55346. height: math.unit(400, "feet")
  55347. },
  55348. ]
  55349. ))
  55350. characterMakers.push(() => makeCharacter(
  55351. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  55352. {
  55353. frontNude: {
  55354. height: math.unit(6 + 5/12, "feet"),
  55355. name: "Front (Nude)",
  55356. image: {
  55357. source: "./media/characters/sylvie-laforge/front-nude.svg",
  55358. extra: 1369/1366,
  55359. bottom: 68/1437
  55360. }
  55361. },
  55362. frontDressed: {
  55363. height: math.unit(6 + 5/12, "feet"),
  55364. name: "Front (Dressed)",
  55365. image: {
  55366. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  55367. extra: 1369/1366,
  55368. bottom: 68/1437
  55369. }
  55370. },
  55371. },
  55372. [
  55373. {
  55374. name: "Normal",
  55375. height: math.unit(6 + 5/12, "feet"),
  55376. default: true
  55377. },
  55378. {
  55379. name: "Maximum",
  55380. height: math.unit(1930, "feet")
  55381. },
  55382. ]
  55383. ))
  55384. characterMakers.push(() => makeCharacter(
  55385. { name: "Kaja", species: ["zoroark"], tags: ["anthro"] },
  55386. {
  55387. front: {
  55388. height: math.unit(5 + 6/12, "feet"),
  55389. name: "Front",
  55390. image: {
  55391. source: "./media/characters/kaja/front.svg",
  55392. extra: 1874/1514,
  55393. bottom: 117/1991
  55394. }
  55395. },
  55396. },
  55397. [
  55398. {
  55399. name: "Normal",
  55400. height: math.unit(5 + 6/12, "feet"),
  55401. default: true
  55402. },
  55403. ]
  55404. ))
  55405. characterMakers.push(() => makeCharacter(
  55406. { name: "Mark Smith", species: ["husky"], tags: ["anthro"] },
  55407. {
  55408. front: {
  55409. height: math.unit(5 + 9/12, "feet"),
  55410. weight: math.unit(200, "lb"),
  55411. name: "Front",
  55412. image: {
  55413. source: "./media/characters/mark-smith/front.svg",
  55414. extra: 1004/943,
  55415. bottom: 58/1062
  55416. }
  55417. },
  55418. back: {
  55419. height: math.unit(5 + 9/12, "feet"),
  55420. weight: math.unit(200, "lb"),
  55421. name: "Back",
  55422. image: {
  55423. source: "./media/characters/mark-smith/back.svg",
  55424. extra: 1023/953,
  55425. bottom: 24/1047
  55426. }
  55427. },
  55428. head: {
  55429. height: math.unit(1.82, "feet"),
  55430. name: "Head",
  55431. image: {
  55432. source: "./media/characters/mark-smith/head.svg"
  55433. }
  55434. },
  55435. hand: {
  55436. height: math.unit(1.4, "feet"),
  55437. name: "Hand",
  55438. image: {
  55439. source: "./media/characters/mark-smith/hand.svg"
  55440. }
  55441. },
  55442. paw: {
  55443. height: math.unit(1.69, "feet"),
  55444. name: "Paw",
  55445. image: {
  55446. source: "./media/characters/mark-smith/paw.svg"
  55447. }
  55448. },
  55449. },
  55450. [
  55451. {
  55452. name: "Micro",
  55453. height: math.unit(0.25, "inches")
  55454. },
  55455. {
  55456. name: "Normal",
  55457. height: math.unit(5 + 9/12, "feet"),
  55458. default: true
  55459. },
  55460. {
  55461. name: "Macro",
  55462. height: math.unit(500, "feet")
  55463. },
  55464. ]
  55465. ))
  55466. characterMakers.push(() => makeCharacter(
  55467. { name: "Rebecca 'Becky' Houston", species: ["gryphon"], tags: ["anthro"] },
  55468. {
  55469. frontNude: {
  55470. height: math.unit(6, "feet"),
  55471. name: "Front (Nude)",
  55472. image: {
  55473. source: "./media/characters/rebecca-becky-houston/front-nude.svg",
  55474. extra: 1384/1321,
  55475. bottom: 57/1441
  55476. }
  55477. },
  55478. frontDressed: {
  55479. height: math.unit(6, "feet"),
  55480. name: "Front (Dressed)",
  55481. image: {
  55482. source: "./media/characters/rebecca-becky-houston/front-dressed.svg",
  55483. extra: 1384/1321,
  55484. bottom: 57/1441
  55485. }
  55486. },
  55487. },
  55488. [
  55489. {
  55490. name: "Normal",
  55491. height: math.unit(6, "feet"),
  55492. default: true
  55493. },
  55494. {
  55495. name: "Maximum",
  55496. height: math.unit(1776, "feet")
  55497. },
  55498. ]
  55499. ))
  55500. characterMakers.push(() => makeCharacter(
  55501. { name: "Devos", species: ["dragon"], tags: ["feral"] },
  55502. {
  55503. front: {
  55504. height: math.unit(2 + 4/12, "feet"),
  55505. weight: math.unit(350, "lb"),
  55506. name: "Front",
  55507. image: {
  55508. source: "./media/characters/devos/front.svg",
  55509. extra: 958/852,
  55510. bottom: 143/1101
  55511. }
  55512. },
  55513. },
  55514. [
  55515. {
  55516. name: "Base",
  55517. height: math.unit(2 + 4/12, "feet"),
  55518. default: true
  55519. },
  55520. ]
  55521. ))
  55522. characterMakers.push(() => makeCharacter(
  55523. { name: "Hiveheart", species: ["sliver"], tags: ["anthro"] },
  55524. {
  55525. front: {
  55526. height: math.unit(9 + 2/12, "feet"),
  55527. name: "Front",
  55528. image: {
  55529. source: "./media/characters/hiveheart/front.svg",
  55530. extra: 394/364,
  55531. bottom: 65/459
  55532. }
  55533. },
  55534. back: {
  55535. height: math.unit(9 + 2/12, "feet"),
  55536. name: "Back",
  55537. image: {
  55538. source: "./media/characters/hiveheart/back.svg",
  55539. extra: 374/357,
  55540. bottom: 63/437
  55541. }
  55542. },
  55543. },
  55544. [
  55545. {
  55546. name: "Base",
  55547. height: math.unit(9 + 2/12, "feet"),
  55548. default: true
  55549. },
  55550. ]
  55551. ))
  55552. characterMakers.push(() => makeCharacter(
  55553. { name: "Bryn", species: ["moth"], tags: ["anthro"] },
  55554. {
  55555. front: {
  55556. height: math.unit(2.5, "inches"),
  55557. weight: math.unit(0.6, "oz"),
  55558. name: "Front",
  55559. image: {
  55560. source: "./media/characters/bryn/front.svg",
  55561. extra: 1480/1205,
  55562. bottom: 27/1507
  55563. }
  55564. },
  55565. back: {
  55566. height: math.unit(2.5, "inches"),
  55567. weight: math.unit(0.6, "oz"),
  55568. name: "Back",
  55569. image: {
  55570. source: "./media/characters/bryn/back.svg",
  55571. extra: 1475/1201,
  55572. bottom: 39/1514
  55573. }
  55574. },
  55575. foot: {
  55576. height: math.unit(0.4, "inches"),
  55577. name: "Foot",
  55578. image: {
  55579. source: "./media/characters/bryn/foot.svg"
  55580. }
  55581. },
  55582. },
  55583. [
  55584. {
  55585. name: "Normal",
  55586. height: math.unit(2.5, "inches"),
  55587. default: true
  55588. },
  55589. ]
  55590. ))
  55591. characterMakers.push(() => makeCharacter(
  55592. { name: "Delta", species: ["dragon"], tags: ["feral"] },
  55593. {
  55594. side: {
  55595. height: math.unit(7, "feet"),
  55596. weight: math.unit(657, "kg"),
  55597. name: "Side",
  55598. image: {
  55599. source: "./media/characters/delta/side.svg",
  55600. extra: 781/212,
  55601. bottom: 7/788
  55602. },
  55603. extraAttributes: {
  55604. "wingspan": {
  55605. name: "Wingspan",
  55606. power: 1,
  55607. type: "length",
  55608. base: math.unit(48, "feet")
  55609. },
  55610. "length": {
  55611. name: "Length",
  55612. power: 1,
  55613. type: "length",
  55614. base: math.unit(21, "feet")
  55615. },
  55616. "pawSize": {
  55617. name: "Paw Size",
  55618. power: 2,
  55619. type: "area",
  55620. base: math.unit(1.5*1.4, "feet^2")
  55621. },
  55622. }
  55623. },
  55624. },
  55625. [
  55626. {
  55627. name: "Normal",
  55628. height: math.unit(6, "feet"),
  55629. default: true
  55630. },
  55631. ]
  55632. ))
  55633. characterMakers.push(() => makeCharacter(
  55634. { name: "Pyrow", species: ["sergix"], tags: ["anthro"] },
  55635. {
  55636. front: {
  55637. height: math.unit(6, "feet"),
  55638. name: "Front",
  55639. image: {
  55640. source: "./media/characters/pyrow/front.svg",
  55641. extra: 513/486,
  55642. bottom: 14/527
  55643. }
  55644. },
  55645. frontWing: {
  55646. height: math.unit(6, "feet"),
  55647. name: "Front (Wing)",
  55648. image: {
  55649. source: "./media/characters/pyrow/front-wing.svg",
  55650. extra: 539/383,
  55651. bottom: 20/559
  55652. }
  55653. },
  55654. back: {
  55655. height: math.unit(6, "feet"),
  55656. name: "Back",
  55657. image: {
  55658. source: "./media/characters/pyrow/back.svg",
  55659. extra: 500/473,
  55660. bottom: 9/509
  55661. }
  55662. },
  55663. },
  55664. [
  55665. {
  55666. name: "Normal",
  55667. height: math.unit(6, "feet"),
  55668. default: true
  55669. },
  55670. ]
  55671. ))
  55672. characterMakers.push(() => makeCharacter(
  55673. { name: "Velikan", species: ["behemoth"], tags: ["anthro"] },
  55674. {
  55675. front: {
  55676. height: math.unit(5, "meters"),
  55677. weight: math.unit(3, "tonnes"),
  55678. name: "Front",
  55679. image: {
  55680. source: "./media/characters/velikan/front.svg",
  55681. extra: 867/744,
  55682. bottom: 71/938
  55683. },
  55684. extraAttributes: {
  55685. "shoeSize": {
  55686. name: "Shoe Size",
  55687. power: 1,
  55688. type: "length",
  55689. base: math.unit(135, "ShoeSizeUK"),
  55690. defaultUnit: "ShoeSizeUK"
  55691. },
  55692. }
  55693. },
  55694. },
  55695. [
  55696. {
  55697. name: "Normal",
  55698. height: math.unit(5, "meters"),
  55699. default: true
  55700. },
  55701. {
  55702. name: "Macro",
  55703. height: math.unit(1, "km")
  55704. },
  55705. {
  55706. name: "Mega Macro",
  55707. height: math.unit(100, "km")
  55708. },
  55709. {
  55710. name: "Giga Macro",
  55711. height: math.unit(2, "megameters")
  55712. },
  55713. {
  55714. name: "Planetary",
  55715. height: math.unit(22, "megameters")
  55716. },
  55717. {
  55718. name: "Solar",
  55719. height: math.unit(8, "gigameters")
  55720. },
  55721. {
  55722. name: "Cosmic",
  55723. height: math.unit(10, "zettameters")
  55724. },
  55725. {
  55726. name: "Omni",
  55727. height: math.unit(9e260, "multiverses")
  55728. },
  55729. ]
  55730. ))
  55731. characterMakers.push(() => makeCharacter(
  55732. { name: "Sabiki", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  55733. {
  55734. front: {
  55735. height: math.unit(4 + 3/12, "feet"),
  55736. weight: math.unit(90, "lb"),
  55737. name: "Front",
  55738. image: {
  55739. source: "./media/characters/sabiki/front.svg",
  55740. extra: 1662/1423,
  55741. bottom: 65/1727
  55742. }
  55743. },
  55744. },
  55745. [
  55746. {
  55747. name: "Normal",
  55748. height: math.unit(4 + 3/12, "feet"),
  55749. default: true
  55750. },
  55751. ]
  55752. ))
  55753. characterMakers.push(() => makeCharacter(
  55754. { name: "Carmel", species: ["ant"], tags: ["anthro"] },
  55755. {
  55756. frontSfw: {
  55757. height: math.unit(2, "mm"),
  55758. name: "Front (SFW)",
  55759. image: {
  55760. source: "./media/characters/carmel/front-sfw.svg",
  55761. extra: 1131/1006,
  55762. bottom: 66/1197
  55763. }
  55764. },
  55765. frontNsfw: {
  55766. height: math.unit(2, "mm"),
  55767. name: "Front (NSFW)",
  55768. image: {
  55769. source: "./media/characters/carmel/front-nsfw.svg",
  55770. extra: 1131/1006,
  55771. bottom: 66/1197
  55772. }
  55773. },
  55774. foot: {
  55775. height: math.unit(0.3, "mm"),
  55776. name: "Foot",
  55777. image: {
  55778. source: "./media/characters/carmel/foot.svg"
  55779. }
  55780. },
  55781. tongue: {
  55782. height: math.unit(0.71, "mm"),
  55783. name: "Tongue",
  55784. image: {
  55785. source: "./media/characters/carmel/tongue.svg"
  55786. }
  55787. },
  55788. dick: {
  55789. height: math.unit(0.085, "mm"),
  55790. name: "Dick",
  55791. image: {
  55792. source: "./media/characters/carmel/dick.svg"
  55793. }
  55794. },
  55795. },
  55796. [
  55797. {
  55798. name: "Micro",
  55799. height: math.unit(2, "mm"),
  55800. default: true
  55801. },
  55802. {
  55803. name: "Normal",
  55804. height: math.unit(4 + 8/12, "feet")
  55805. },
  55806. {
  55807. name: "Mega Macro",
  55808. height: math.unit(250, "feet")
  55809. },
  55810. {
  55811. name: "BIGGER",
  55812. height: math.unit(1000, "feet")
  55813. },
  55814. {
  55815. name: "BIGGEST",
  55816. height: math.unit(2, "miles")
  55817. },
  55818. ]
  55819. ))
  55820. characterMakers.push(() => makeCharacter(
  55821. { name: "Tamani", species: ["lion"], tags: ["anthro", "feral"] },
  55822. {
  55823. front: {
  55824. height: math.unit(6.5, "feet"),
  55825. weight: math.unit(198, "lb"),
  55826. name: "Front",
  55827. image: {
  55828. source: "./media/characters/tamani/anthro.svg",
  55829. extra: 930/890,
  55830. bottom: 34/964
  55831. },
  55832. form: "anthro",
  55833. default: true
  55834. },
  55835. side: {
  55836. height: math.unit(6, "feet"),
  55837. weight: math.unit(198*2, "lb"),
  55838. name: "Side",
  55839. image: {
  55840. source: "./media/characters/tamani/feral.svg",
  55841. extra: 559/519,
  55842. bottom: 43/602
  55843. },
  55844. form: "feral"
  55845. },
  55846. },
  55847. [
  55848. {
  55849. name: "Normal",
  55850. height: math.unit(6.5, "feet"),
  55851. default: true,
  55852. form: "anthro"
  55853. },
  55854. {
  55855. name: "Normal",
  55856. height: math.unit(6, "feet"),
  55857. default: true,
  55858. form: "feral"
  55859. },
  55860. ],
  55861. {
  55862. "anthro": {
  55863. name: "Anthro",
  55864. default: true
  55865. },
  55866. "feral": {
  55867. name: "Feral",
  55868. },
  55869. }
  55870. ))
  55871. //characters
  55872. function makeCharacters() {
  55873. const results = [];
  55874. characterMakers.forEach(character => {
  55875. results.push(character());
  55876. });
  55877. return results;
  55878. }