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.
 
 
 

59059 lines
1.5 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.preyCapacity) {
  46. views[key].attributes.preyCapacity = {
  47. name: "Prey Capacity",
  48. power: 3,
  49. type: "volume",
  50. base: value.preyCapacity,
  51. defaultUnit: "people"
  52. }
  53. }
  54. if (value.energyNeed) {
  55. views[key].attributes.capacity = {
  56. name: "Food Intake",
  57. power: 3 * 3 / 4,
  58. type: "energy",
  59. base: value.energyNeed
  60. }
  61. }
  62. if (value.extraAttributes) {
  63. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  64. views[key].attributes[attrKey] = attrValue
  65. })
  66. }
  67. });
  68. return createEntityMaker(info, views, defaultSizes, forms);
  69. }
  70. const speciesData = {
  71. animal: {
  72. name: "Animal"
  73. },
  74. dog: {
  75. name: "Dog",
  76. parents: [
  77. "canine"
  78. ]
  79. },
  80. canine: {
  81. name: "Canine",
  82. parents: [
  83. "mammal"
  84. ]
  85. },
  86. crux: {
  87. name: "Crux",
  88. parents: [
  89. "mammal"
  90. ]
  91. },
  92. mammal: {
  93. name: "Mammal",
  94. parents: [
  95. "animal"
  96. ]
  97. },
  98. "rough-collie": {
  99. name: "Rough Collie",
  100. parents: [
  101. "dog"
  102. ]
  103. },
  104. dragon: {
  105. name: "Dragon",
  106. parents: [
  107. "reptile"
  108. ]
  109. },
  110. reptile: {
  111. name: "Reptile",
  112. parents: [
  113. "animal"
  114. ]
  115. },
  116. woodpecker: {
  117. name: "Woodpecker",
  118. parents: [
  119. "avian"
  120. ]
  121. },
  122. avian: {
  123. name: "Avian",
  124. parents: [
  125. "animal"
  126. ]
  127. },
  128. kitsune: {
  129. name: "Kitsune",
  130. parents: [
  131. "fox"
  132. ]
  133. },
  134. fox: {
  135. name: "Fox",
  136. parents: [
  137. "mammal"
  138. ]
  139. },
  140. pokemon: {
  141. name: "Pokemon",
  142. parents: [
  143. "video-games"
  144. ]
  145. },
  146. tiger: {
  147. name: "Tiger",
  148. parents: [
  149. "cat"
  150. ]
  151. },
  152. cat: {
  153. name: "Cat",
  154. parents: [
  155. "feliform"
  156. ]
  157. },
  158. "blue-jay": {
  159. name: "Blue Jay",
  160. parents: [
  161. "corvid"
  162. ]
  163. },
  164. wolf: {
  165. name: "Wolf",
  166. parents: [
  167. "mammal"
  168. ]
  169. },
  170. coyote: {
  171. name: "Coyote",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. raccoon: {
  177. name: "Raccoon",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. weasel: {
  183. name: "Weasel",
  184. parents: [
  185. "mustelid"
  186. ]
  187. },
  188. "red-panda": {
  189. name: "Red Panda",
  190. parents: [
  191. "mammal"
  192. ]
  193. },
  194. dolphin: {
  195. name: "Dolphin",
  196. parents: [
  197. "mammal"
  198. ]
  199. },
  200. "african-wild-dog": {
  201. name: "African Wild Dog",
  202. parents: [
  203. "canine"
  204. ]
  205. },
  206. "hyena": {
  207. name: "Hyena",
  208. parents: [
  209. "feliform"
  210. ]
  211. },
  212. "carbuncle": {
  213. name: "Carbuncle",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. bat: {
  219. name: "Bat",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "leaf-nosed-bat": {
  225. name: "Leaf-Nosed Bat",
  226. parents: [
  227. "bat"
  228. ]
  229. },
  230. "fish": {
  231. name: "Fish",
  232. parents: [
  233. "animal"
  234. ]
  235. },
  236. "ram": {
  237. name: "Ram",
  238. parents: [
  239. "mammal"
  240. ]
  241. },
  242. "demon": {
  243. name: "Demon",
  244. parents: [
  245. "supernatural"
  246. ]
  247. },
  248. "cougar": {
  249. name: "Cougar",
  250. parents: [
  251. "cat"
  252. ]
  253. },
  254. "goat": {
  255. name: "Goat",
  256. parents: [
  257. "mammal"
  258. ]
  259. },
  260. "lion": {
  261. name: "Lion",
  262. parents: [
  263. "cat"
  264. ]
  265. },
  266. "harpy-eager": {
  267. name: "Harpy Eagle",
  268. parents: [
  269. "avian"
  270. ]
  271. },
  272. "deer": {
  273. name: "Deer",
  274. parents: [
  275. "mammal"
  276. ]
  277. },
  278. "phoenix": {
  279. name: "Phoenix",
  280. parents: [
  281. "avian"
  282. ]
  283. },
  284. "aeromorph": {
  285. name: "Aeromorph",
  286. parents: [
  287. "machine"
  288. ]
  289. },
  290. "machine": {
  291. name: "Machine",
  292. },
  293. "android": {
  294. name: "Android",
  295. parents: [
  296. "machine"
  297. ]
  298. },
  299. "jackal": {
  300. name: "Jackal",
  301. parents: [
  302. "canine"
  303. ]
  304. },
  305. "corvid": {
  306. name: "Corvid",
  307. parents: [
  308. "passerine"
  309. ]
  310. },
  311. "pharaoh-hound": {
  312. name: "Pharaoh Hound",
  313. parents: [
  314. "dog"
  315. ]
  316. },
  317. "skunk": {
  318. name: "Skunk",
  319. parents: [
  320. "mammal"
  321. ]
  322. },
  323. "shark": {
  324. name: "Shark",
  325. parents: [
  326. "fish"
  327. ]
  328. },
  329. "black-panther": {
  330. name: "Black Panther",
  331. parents: [
  332. "cat"
  333. ]
  334. },
  335. "umbra": {
  336. name: "Umbra",
  337. parents: [
  338. "animal"
  339. ]
  340. },
  341. "raven": {
  342. name: "Raven",
  343. parents: [
  344. "corvid"
  345. ]
  346. },
  347. "snow-leopard": {
  348. name: "Snow Leopard",
  349. parents: [
  350. "cat"
  351. ]
  352. },
  353. "barbary-lion": {
  354. name: "Barbary Lion",
  355. parents: [
  356. "lion"
  357. ]
  358. },
  359. "dra'gal": {
  360. name: "Dra'Gal",
  361. parents: [
  362. "mammal"
  363. ]
  364. },
  365. "german-shepherd": {
  366. name: "German Shepherd",
  367. parents: [
  368. "dog"
  369. ]
  370. },
  371. "bayleef": {
  372. name: "Bayleef",
  373. parents: [
  374. "pokemon",
  375. "plant",
  376. "animal"
  377. ]
  378. },
  379. "mouse": {
  380. name: "Mouse",
  381. parents: [
  382. "rodent"
  383. ]
  384. },
  385. "rat": {
  386. name: "Rat",
  387. parents: [
  388. "mammal"
  389. ]
  390. },
  391. "hoshiko-beast": {
  392. name: "Hoshiko Beast",
  393. parents: ["animal"]
  394. },
  395. "snow-jugani": {
  396. name: "Snow Jugani",
  397. parents: ["cat"]
  398. },
  399. "patamon": {
  400. name: "Patamon",
  401. parents: ["digimon", "guinea-pig"]
  402. },
  403. "digimon": {
  404. name: "Digimon",
  405. parents: [
  406. "video-games"
  407. ]
  408. },
  409. "jugani": {
  410. name: "Jugani",
  411. parents: ["cat"]
  412. },
  413. "luxray": {
  414. name: "Luxray",
  415. parents: ["pokemon", "lion"]
  416. },
  417. "mech": {
  418. name: "Mech",
  419. parents: ["machine"]
  420. },
  421. "zoid": {
  422. name: "Zoid",
  423. parents: ["mech"]
  424. },
  425. "monster": {
  426. name: "Monster",
  427. parents: ["animal"]
  428. },
  429. "foo-dog": {
  430. name: "Foo Dog",
  431. parents: ["mammal"]
  432. },
  433. "elephant": {
  434. name: "Elephant",
  435. parents: ["mammal"]
  436. },
  437. "eagle": {
  438. name: "Eagle",
  439. parents: ["bird-of-prey"]
  440. },
  441. "cow": {
  442. name: "Cow",
  443. parents: ["mammal"]
  444. },
  445. "crocodile": {
  446. name: "Crocodile",
  447. parents: ["reptile"]
  448. },
  449. "borzoi": {
  450. name: "Borzoi",
  451. parents: ["dog"]
  452. },
  453. "snake": {
  454. name: "Snake",
  455. parents: ["reptile"]
  456. },
  457. "horned-bush-viper": {
  458. name: "Horned Bush Viper",
  459. parents: ["viper"]
  460. },
  461. "cobra": {
  462. name: "Cobra",
  463. parents: ["snake"]
  464. },
  465. "harpy-eagle": {
  466. name: "Harpy Eagle",
  467. parents: ["eagle"]
  468. },
  469. "raptor": {
  470. name: "Raptor",
  471. parents: ["dinosaur"]
  472. },
  473. "dinosaur": {
  474. name: "Dinosaur",
  475. parents: ["reptile"]
  476. },
  477. "veilhound": {
  478. name: "Veilhound",
  479. parents: ["hellhound"]
  480. },
  481. "hellhound": {
  482. name: "Hellhound",
  483. parents: ["canine", "demon"]
  484. },
  485. "insect": {
  486. name: "Insect",
  487. parents: ["animal"]
  488. },
  489. "beetle": {
  490. name: "Beetle",
  491. parents: ["insect"]
  492. },
  493. "moth": {
  494. name: "Moth",
  495. parents: ["insect"]
  496. },
  497. "eastern-dragon": {
  498. name: "Eastern Dragon",
  499. parents: ["dragon"]
  500. },
  501. "jaguar": {
  502. name: "Jaguar",
  503. parents: ["cat"]
  504. },
  505. "horse": {
  506. name: "Horse",
  507. parents: ["mammal"]
  508. },
  509. "sergal": {
  510. name: "Sergal",
  511. parents: ["mammal", "avian", "vilous"]
  512. },
  513. "gryphon": {
  514. name: "Gryphon",
  515. parents: ["lion", "eagle"]
  516. },
  517. "robot": {
  518. name: "Robot",
  519. parents: ["machine"]
  520. },
  521. "medihound": {
  522. name: "Medihound",
  523. parents: ["robot", "dog"]
  524. },
  525. "sylveon": {
  526. name: "Sylveon",
  527. parents: ["pokemon"]
  528. },
  529. "catgirl": {
  530. name: "Catgirl",
  531. parents: ["mammal"]
  532. },
  533. "cowgirl": {
  534. name: "Cowgirl",
  535. parents: ["mammal"]
  536. },
  537. "pony": {
  538. name: "Pony",
  539. parents: ["horse"]
  540. },
  541. "rabbit": {
  542. name: "Rabbit",
  543. parents: ["leporidae"]
  544. },
  545. "fennec-fox": {
  546. name: "Fennec Fox",
  547. parents: ["fox"]
  548. },
  549. "azodian": {
  550. name: "Azodian",
  551. parents: ["mouse"]
  552. },
  553. "shiba-inu": {
  554. name: "Shiba Inu",
  555. parents: ["dog"]
  556. },
  557. "changeling": {
  558. name: "Changeling",
  559. parents: ["insect"]
  560. },
  561. "cheetah": {
  562. name: "Cheetah",
  563. parents: ["cat"]
  564. },
  565. "golden-jackal": {
  566. name: "Golden Jackal",
  567. parents: ["jackal"]
  568. },
  569. "manectric": {
  570. name: "Manectric",
  571. parents: ["pokemon", "wolf"]
  572. },
  573. "rat": {
  574. name: "Rat",
  575. parents: ["rodent"]
  576. },
  577. "rodent": {
  578. name: "Rodent",
  579. parents: ["mammal"]
  580. },
  581. "octocoon": {
  582. name: "Octocoon",
  583. parents: ["raccoon", "octopus"]
  584. },
  585. "octopus": {
  586. name: "Octopus",
  587. parents: ["fish"]
  588. },
  589. "werewolf": {
  590. name: "Werewolf",
  591. parents: ["wolf", "werebeast"]
  592. },
  593. "werebeast": {
  594. name: "Werebeast",
  595. parents: ["monster"]
  596. },
  597. "meerkat": {
  598. name: "Meerkat",
  599. parents: ["mammal"]
  600. },
  601. "human": {
  602. name: "Human",
  603. parents: ["mammal"]
  604. },
  605. "geth": {
  606. name: "Geth",
  607. parents: ["android"]
  608. },
  609. "husky": {
  610. name: "Husky",
  611. parents: ["dog"]
  612. },
  613. "long-eared-bat": {
  614. name: "Long Eared Bat",
  615. parents: ["bat"]
  616. },
  617. "lizard": {
  618. name: "Lizard",
  619. parents: ["reptile"]
  620. },
  621. "salamander": {
  622. name: "Salamander",
  623. parents: ["lizard"]
  624. },
  625. "chameleon": {
  626. name: "Chameleon",
  627. parents: ["lizard"]
  628. },
  629. "gecko": {
  630. name: "Gecko",
  631. parents: ["lizard"]
  632. },
  633. "kobold": {
  634. name: "Kobold",
  635. parents: ["reptile"]
  636. },
  637. "charizard": {
  638. name: "Charizard",
  639. parents: ["pokemon", "dragon"]
  640. },
  641. "lugia": {
  642. name: "Lugia",
  643. parents: ["pokemon", "avian"]
  644. },
  645. "cerberus": {
  646. name: "Cerberus",
  647. parents: ["dog"]
  648. },
  649. "tyrantrum": {
  650. name: "Tyrantrum",
  651. parents: ["pokemon"]
  652. },
  653. "lemur": {
  654. name: "Lemur",
  655. parents: ["mammal"]
  656. },
  657. "kelpie": {
  658. name: "Kelpie",
  659. parents: ["horse", "monster"]
  660. },
  661. "labrador": {
  662. name: "Labrador",
  663. parents: ["dog"]
  664. },
  665. "sylveon": {
  666. name: "Sylveon",
  667. parents: ["eeveelution"]
  668. },
  669. "eeveelution": {
  670. name: "Eeveelution",
  671. parents: ["pokemon", "cat"]
  672. },
  673. "polar-bear": {
  674. name: "Polar Bear",
  675. parents: ["bear"]
  676. },
  677. "bear": {
  678. name: "Bear",
  679. parents: ["mammal"]
  680. },
  681. "absol": {
  682. name: "Absol",
  683. parents: ["pokemon", "cat"]
  684. },
  685. "wolver": {
  686. name: "Wolver",
  687. parents: ["mammal"]
  688. },
  689. "rottweiler": {
  690. name: "Rottweiler",
  691. parents: ["dog"]
  692. },
  693. "zebra": {
  694. name: "Zebra",
  695. parents: ["horse"]
  696. },
  697. "yoshi": {
  698. name: "Yoshi",
  699. parents: ["dinosaur"]
  700. },
  701. "lynx": {
  702. name: "Lynx",
  703. parents: ["cat"]
  704. },
  705. "unknown": {
  706. name: "Unknown",
  707. parents: []
  708. },
  709. "thylacine": {
  710. name: "Thylacine",
  711. parents: ["mammal"]
  712. },
  713. "gabumon": {
  714. name: "Gabumon",
  715. parents: ["digimon"]
  716. },
  717. "border-collie": {
  718. name: "Border Collie",
  719. parents: ["dog"]
  720. },
  721. "imp": {
  722. name: "Imp",
  723. parents: ["demon"]
  724. },
  725. "kangaroo": {
  726. name: "Kangaroo",
  727. parents: ["marsupial"]
  728. },
  729. "renamon": {
  730. name: "Renamon",
  731. parents: ["digimon", "fox"]
  732. },
  733. "candy-orca-dragon": {
  734. name: "Candy Orca Dragon",
  735. parents: ["fish", "dragon", "candy"]
  736. },
  737. "sabertooth-tiger": {
  738. name: "Sabertooth Tiger",
  739. parents: ["cat"]
  740. },
  741. "espurr": {
  742. name: "Espurr",
  743. parents: ["pokemon", "cat"]
  744. },
  745. "otter": {
  746. name: "Otter",
  747. parents: ["mustelid"]
  748. },
  749. "elemental": {
  750. name: "Elemental",
  751. parents: ["mammal"]
  752. },
  753. "mew": {
  754. name: "Mew",
  755. parents: ["pokemon"]
  756. },
  757. "goodra": {
  758. name: "Goodra",
  759. parents: ["pokemon"]
  760. },
  761. "fairy": {
  762. name: "Fairy",
  763. parents: ["magical"]
  764. },
  765. "typhlosion": {
  766. name: "Typhlosion",
  767. parents: ["pokemon"]
  768. },
  769. "magical": {
  770. name: "Magical",
  771. parents: []
  772. },
  773. "xenomorph": {
  774. name: "Xenomorph",
  775. parents: ["monster", "alien"]
  776. },
  777. "charr": {
  778. name: "Charr",
  779. parents: ["cat"]
  780. },
  781. "siberian-husky": {
  782. name: "Siberian Husky",
  783. parents: ["husky"]
  784. },
  785. "alligator": {
  786. name: "Alligator",
  787. parents: ["reptile"]
  788. },
  789. "bernese-mountain-dog": {
  790. name: "Bernese Mountain Dog",
  791. parents: ["dog"]
  792. },
  793. "reshiram": {
  794. name: "Reshiram",
  795. parents: ["pokemon", "dragon"]
  796. },
  797. "grizzly-bear": {
  798. name: "Grizzly Bear",
  799. parents: ["bear"]
  800. },
  801. "water-monitor": {
  802. name: "Water Monitor",
  803. parents: ["lizard"]
  804. },
  805. "banchofossa": {
  806. name: "Banchofossa",
  807. parents: ["mammal"]
  808. },
  809. "kirin": {
  810. name: "Kirin",
  811. parents: ["monster"]
  812. },
  813. "quilava": {
  814. name: "Quilava",
  815. parents: ["pokemon"]
  816. },
  817. "seviper": {
  818. name: "Seviper",
  819. parents: ["pokemon", "viper"]
  820. },
  821. "flying-fox": {
  822. name: "Flying Fox",
  823. parents: ["bat"]
  824. },
  825. "keynain": {
  826. name: "Keynain",
  827. parents: ["avian"]
  828. },
  829. "lucario": {
  830. name: "Lucario",
  831. parents: ["pokemon", "jackal"]
  832. },
  833. "siamese-cat": {
  834. name: "Siamese Cat",
  835. parents: ["cat"]
  836. },
  837. "spider": {
  838. name: "Spider",
  839. parents: ["insect"]
  840. },
  841. "samurott": {
  842. name: "Samurott",
  843. parents: ["pokemon", "otter"]
  844. },
  845. "megalodon": {
  846. name: "Megalodon",
  847. parents: ["shark"]
  848. },
  849. "unicorn": {
  850. name: "Unicorn",
  851. parents: ["horse"]
  852. },
  853. "greninja": {
  854. name: "Greninja",
  855. parents: ["pokemon", "frog"]
  856. },
  857. "water-dragon": {
  858. name: "Water Dragon",
  859. parents: ["dragon"]
  860. },
  861. "cross-fox": {
  862. name: "Cross Fox",
  863. parents: ["fox"]
  864. },
  865. "synth": {
  866. name: "Synth",
  867. parents: ["machine"]
  868. },
  869. "construct": {
  870. name: "Construct",
  871. parents: []
  872. },
  873. "mexican-wolf": {
  874. name: "Mexican Wolf",
  875. parents: ["wolf"]
  876. },
  877. "leopard": {
  878. name: "Leopard",
  879. parents: ["cat"]
  880. },
  881. "pig": {
  882. name: "Pig",
  883. parents: ["mammal"]
  884. },
  885. "ampharos": {
  886. name: "Ampharos",
  887. parents: ["pokemon", "sheep"]
  888. },
  889. "orca": {
  890. name: "Orca",
  891. parents: ["fish"]
  892. },
  893. "lycanroc": {
  894. name: "Lycanroc",
  895. parents: ["pokemon", "wolf"]
  896. },
  897. "surkanu": {
  898. name: "Surkanu",
  899. parents: ["monster"]
  900. },
  901. "seal": {
  902. name: "Seal",
  903. parents: ["mammal"]
  904. },
  905. "keldeo": {
  906. name: "Keldeo",
  907. parents: ["pokemon"]
  908. },
  909. "great-dane": {
  910. name: "Great Dane",
  911. parents: ["dog"]
  912. },
  913. "black-backed-jackal": {
  914. name: "Black Backed Jackal",
  915. parents: ["jackal"]
  916. },
  917. "sheep": {
  918. name: "Sheep",
  919. parents: ["mammal"]
  920. },
  921. "leopard-seal": {
  922. name: "Leopard Seal",
  923. parents: ["seal"]
  924. },
  925. "zoroark": {
  926. name: "Zoroark",
  927. parents: ["pokemon", "fox"]
  928. },
  929. "maned-wolf": {
  930. name: "Maned Wolf",
  931. parents: ["canine"]
  932. },
  933. "dracha": {
  934. name: "Dracha",
  935. parents: ["dragon"]
  936. },
  937. "wolxi": {
  938. name: "Wolxi",
  939. parents: ["mammal", "alien"]
  940. },
  941. "dratini": {
  942. name: "Dratini",
  943. parents: ["pokemon", "dragon"]
  944. },
  945. "skaven": {
  946. name: "Skaven",
  947. parents: ["rat"]
  948. },
  949. "mongoose": {
  950. name: "Mongoose",
  951. parents: ["mammal"]
  952. },
  953. "lopunny": {
  954. name: "Lopunny",
  955. parents: ["pokemon", "rabbit"]
  956. },
  957. "feraligatr": {
  958. name: "Feraligatr",
  959. parents: ["pokemon", "alligator"]
  960. },
  961. "houndoom": {
  962. name: "Houndoom",
  963. parents: ["pokemon", "dog"]
  964. },
  965. "protogen": {
  966. name: "Protogen",
  967. parents: ["machine"]
  968. },
  969. "saint-bernard": {
  970. name: "Saint Bernard",
  971. parents: ["dog"]
  972. },
  973. "crow": {
  974. name: "Crow",
  975. parents: ["corvid"]
  976. },
  977. "delphox": {
  978. name: "Delphox",
  979. parents: ["pokemon", "fox"]
  980. },
  981. "moose": {
  982. name: "Moose",
  983. parents: ["mammal"]
  984. },
  985. "joraxian": {
  986. name: "Joraxian",
  987. parents: ["monster", "canine", "demon"]
  988. },
  989. "nimbat": {
  990. name: "Nimbat",
  991. parents: ["mammal"]
  992. },
  993. "aardwolf": {
  994. name: "Aardwolf",
  995. parents: ["canine"]
  996. },
  997. "fluudrani": {
  998. name: "Fluudrani",
  999. parents: ["animal"]
  1000. },
  1001. "arcanine": {
  1002. name: "Arcanine",
  1003. parents: ["pokemon", "dog"]
  1004. },
  1005. "inteleon": {
  1006. name: "Inteleon",
  1007. parents: ["pokemon", "fish"]
  1008. },
  1009. "ninetales": {
  1010. name: "Ninetales",
  1011. parents: ["pokemon", "kitsune"]
  1012. },
  1013. "tigrex": {
  1014. name: "Tigrex",
  1015. parents: ["tiger"]
  1016. },
  1017. "zorua": {
  1018. name: "Zorua",
  1019. parents: ["pokemon", "fox"]
  1020. },
  1021. "vulpix": {
  1022. name: "Vulpix",
  1023. parents: ["pokemon", "fox"]
  1024. },
  1025. "barghest": {
  1026. name: "Barghest",
  1027. parents: ["monster"]
  1028. },
  1029. "gray-wolf": {
  1030. name: "Gray Wolf",
  1031. parents: ["wolf"]
  1032. },
  1033. "ruppells-fox": {
  1034. name: "Rüppell's Fox",
  1035. parents: ["fox"]
  1036. },
  1037. "bull-terrier": {
  1038. name: "Bull Terrier",
  1039. parents: ["dog"]
  1040. },
  1041. "european-honey-buzzard": {
  1042. name: "European Honey Buzzard",
  1043. parents: ["avian"]
  1044. },
  1045. "t-rex": {
  1046. name: "Tyrannosaurus Rex",
  1047. parents: ["dinosaur"]
  1048. },
  1049. "mactarian": {
  1050. name: "Mactarian",
  1051. parents: ["shark", "monster"]
  1052. },
  1053. "mewtwo-y": {
  1054. name: "Mewtwo Y",
  1055. parents: ["mewtwo"]
  1056. },
  1057. "mewtwo": {
  1058. name: "Mewtwo",
  1059. parents: ["pokemon"]
  1060. },
  1061. "eevee": {
  1062. name: "Eevee",
  1063. parents: ["eeveelution"]
  1064. },
  1065. "mienshao": {
  1066. name: "Mienshao",
  1067. parents: ["pokemon"]
  1068. },
  1069. "sugar-glider": {
  1070. name: "Sugar Glider",
  1071. parents: ["opossum"]
  1072. },
  1073. "spectral-bat": {
  1074. name: "Spectral Bat",
  1075. parents: ["bat"]
  1076. },
  1077. "scolipede": {
  1078. name: "Scolipede",
  1079. parents: ["pokemon", "insect"]
  1080. },
  1081. "jackalope": {
  1082. name: "Jackalope",
  1083. parents: ["rabbit", "antelope"]
  1084. },
  1085. "caracal": {
  1086. name: "Caracal",
  1087. parents: ["cat"]
  1088. },
  1089. "stoat": {
  1090. name: "Stoat",
  1091. parents: ["mammal"]
  1092. },
  1093. "african-golden-cat": {
  1094. name: "African Golden Cat",
  1095. parents: ["cat"]
  1096. },
  1097. "gigantosaurus": {
  1098. name: "Gigantosaurus",
  1099. parents: ["dinosaur"]
  1100. },
  1101. "zorgoia": {
  1102. name: "Zorgoia",
  1103. parents: ["mammal"]
  1104. },
  1105. "monitor-lizard": {
  1106. name: "Monitor Lizard",
  1107. parents: ["lizard"]
  1108. },
  1109. "ziralkia": {
  1110. name: "Ziralkia",
  1111. parents: ["mammal"]
  1112. },
  1113. "kiiasi": {
  1114. name: "Kiiasi",
  1115. parents: ["animal"]
  1116. },
  1117. "synx": {
  1118. name: "Synx",
  1119. parents: ["monster"]
  1120. },
  1121. "panther": {
  1122. name: "Panther",
  1123. parents: ["cat"]
  1124. },
  1125. "azumarill": {
  1126. name: "Azumarill",
  1127. parents: ["pokemon"]
  1128. },
  1129. "river-snaptail": {
  1130. name: "River Snaptail",
  1131. parents: ["otter", "crocodile"]
  1132. },
  1133. "great-blue-heron": {
  1134. name: "Great Blue Heron",
  1135. parents: ["avian"]
  1136. },
  1137. "smeargle": {
  1138. name: "Smeargle",
  1139. parents: ["pokemon"]
  1140. },
  1141. "vendeilen": {
  1142. name: "Vendeilen",
  1143. parents: ["monster"]
  1144. },
  1145. "ventura": {
  1146. name: "Ventura",
  1147. parents: ["canine"]
  1148. },
  1149. "clouded-leopard": {
  1150. name: "Clouded Leopard",
  1151. parents: ["leopard"]
  1152. },
  1153. "argonian": {
  1154. name: "Argonian",
  1155. parents: ["lizard"]
  1156. },
  1157. "salazzle": {
  1158. name: "Salazzle",
  1159. parents: ["pokemon", "lizard"]
  1160. },
  1161. "je-stoff-drachen": {
  1162. name: "Je-Stoff Drachen",
  1163. parents: ["dragon"]
  1164. },
  1165. "finnish-spitz-dog": {
  1166. name: "Finnish Spitz Dog",
  1167. parents: ["dog"]
  1168. },
  1169. "gray-fox": {
  1170. name: "Gray Fox",
  1171. parents: ["fox"]
  1172. },
  1173. "opossum": {
  1174. name: "Opossum",
  1175. parents: ["mammal"]
  1176. },
  1177. "antelope": {
  1178. name: "Antelope",
  1179. parents: ["mammal"]
  1180. },
  1181. "weavile": {
  1182. name: "Weavile",
  1183. parents: ["pokemon"]
  1184. },
  1185. "pikachu": {
  1186. name: "Pikachu",
  1187. parents: ["pokemon", "mouse"]
  1188. },
  1189. "grovyle": {
  1190. name: "Grovyle",
  1191. parents: ["pokemon", "plant"]
  1192. },
  1193. "sthara": {
  1194. name: "Sthara",
  1195. parents: ["snow-leopard", "reptile"]
  1196. },
  1197. "star-warrior": {
  1198. name: "Star Warrior",
  1199. parents: ["magical"]
  1200. },
  1201. "dragonoid": {
  1202. name: "Dragonoid",
  1203. parents: ["dragon"]
  1204. },
  1205. "suicune": {
  1206. name: "Suicune",
  1207. parents: ["pokemon"]
  1208. },
  1209. "vole": {
  1210. name: "Vole",
  1211. parents: ["mammal"]
  1212. },
  1213. "blaziken": {
  1214. name: "Blaziken",
  1215. parents: ["pokemon", "avian"]
  1216. },
  1217. "buizel": {
  1218. name: "Buizel",
  1219. parents: ["pokemon", "fish"]
  1220. },
  1221. "floatzel": {
  1222. name: "Floatzel",
  1223. parents: ["pokemon", "fish"]
  1224. },
  1225. "umok": {
  1226. name: "Umok",
  1227. parents: ["avian"]
  1228. },
  1229. "sea-monster": {
  1230. name: "Sea Monster",
  1231. parents: ["monster", "fish"]
  1232. },
  1233. "egyptian-vulture": {
  1234. name: "Egyptian Vulture",
  1235. parents: ["avian"]
  1236. },
  1237. "doberman": {
  1238. name: "Doberman",
  1239. parents: ["dog"]
  1240. },
  1241. "zangoose": {
  1242. name: "Zangoose",
  1243. parents: ["pokemon", "mongoose"]
  1244. },
  1245. "mongoose": {
  1246. name: "Mongoose",
  1247. parents: ["mammal"]
  1248. },
  1249. "wickerbeast": {
  1250. name: "Wickerbeast",
  1251. parents: ["monster"]
  1252. },
  1253. "zenari": {
  1254. name: "Zenari",
  1255. parents: ["lizard"]
  1256. },
  1257. "plant": {
  1258. name: "Plant",
  1259. parents: []
  1260. },
  1261. "raskatox": {
  1262. name: "Raskatox",
  1263. parents: ["raccoon", "skunk", "cat", "fox"]
  1264. },
  1265. "mikromare": {
  1266. name: "mikromare",
  1267. parents: ["alien"]
  1268. },
  1269. "alien": {
  1270. name: "Alien",
  1271. parents: ["animal"]
  1272. },
  1273. "deity": {
  1274. name: "Deity",
  1275. parents: []
  1276. },
  1277. "skarlan": {
  1278. name: "Skarlan",
  1279. parents: ["slug", "dragon"]
  1280. },
  1281. "slug": {
  1282. name: "Slug",
  1283. parents: ["mollusk"]
  1284. },
  1285. "mollusk": {
  1286. name: "Mollusk",
  1287. parents: ["animal"]
  1288. },
  1289. "chimera": {
  1290. name: "Chimera",
  1291. parents: ["monster"]
  1292. },
  1293. "gestalt": {
  1294. name: "Gestalt",
  1295. parents: ["construct"]
  1296. },
  1297. "mimic": {
  1298. name: "Mimic",
  1299. parents: ["monster"]
  1300. },
  1301. "calico-rat": {
  1302. name: "Calico Rat",
  1303. parents: ["rat"]
  1304. },
  1305. "panda": {
  1306. name: "Panda",
  1307. parents: ["mammal"]
  1308. },
  1309. "oni": {
  1310. name: "Oni",
  1311. parents: ["monster"]
  1312. },
  1313. "pegasus": {
  1314. name: "Pegasus",
  1315. parents: ["horse"]
  1316. },
  1317. "vulpera": {
  1318. name: "Vulpera",
  1319. parents: ["fennec-fox"]
  1320. },
  1321. "ceratosaurus": {
  1322. name: "Ceratosaurus",
  1323. parents: ["dinosaur"]
  1324. },
  1325. "nykur": {
  1326. name: "Nykur",
  1327. parents: ["horse", "monster"]
  1328. },
  1329. "giraffe": {
  1330. name: "Giraffe",
  1331. parents: ["mammal"]
  1332. },
  1333. "tauren": {
  1334. name: "Tauren",
  1335. parents: ["cow"]
  1336. },
  1337. "draconi": {
  1338. name: "Draconi",
  1339. parents: ["alien", "cat", "cyborg"]
  1340. },
  1341. "dire-wolf": {
  1342. name: "Dire Wolf",
  1343. parents: ["wolf"]
  1344. },
  1345. "ferromorph": {
  1346. name: "Ferromorph",
  1347. parents: ["construct"]
  1348. },
  1349. "meowth": {
  1350. name: "Meowth",
  1351. parents: ["cat", "pokemon"]
  1352. },
  1353. "pavodragon": {
  1354. name: "Pavodragon",
  1355. parents: ["dragon"]
  1356. },
  1357. "aaltranae": {
  1358. name: "Aaltranae",
  1359. parents: ["dragon"]
  1360. },
  1361. "cyborg": {
  1362. name: "Cyborg",
  1363. parents: ["machine"]
  1364. },
  1365. "draptor": {
  1366. name: "Draptor",
  1367. parents: ["dragon"]
  1368. },
  1369. "candy": {
  1370. name: "Candy",
  1371. parents: []
  1372. },
  1373. "drenath": {
  1374. name: "Drenath",
  1375. parents: ["dragon", "snake", "rabbit"]
  1376. },
  1377. "coyju": {
  1378. name: "Coyju",
  1379. parents: ["coyote", "kaiju"]
  1380. },
  1381. "kaiju": {
  1382. name: "Kaiju",
  1383. parents: ["monster"]
  1384. },
  1385. "nickit": {
  1386. name: "Nickit",
  1387. parents: ["pokemon", "cat"]
  1388. },
  1389. "lopunny": {
  1390. name: "Lopunny",
  1391. parents: ["pokemon", "rabbit"]
  1392. },
  1393. "korean-jindo-dog": {
  1394. name: "Korean Jindo Dog",
  1395. parents: ["dog"]
  1396. },
  1397. "naga": {
  1398. name: "Naga",
  1399. parents: ["snake", "monster"]
  1400. },
  1401. "undead": {
  1402. name: "Undead",
  1403. parents: ["monster"]
  1404. },
  1405. "whale": {
  1406. name: "Whale",
  1407. parents: ["fish"]
  1408. },
  1409. "gelato-bee": {
  1410. name: "Gelato Bee",
  1411. parents: ["bee"]
  1412. },
  1413. "bee": {
  1414. name: "Bee",
  1415. parents: ["insect"]
  1416. },
  1417. "gardevoir": {
  1418. name: "Gardevoir",
  1419. parents: ["pokemon"]
  1420. },
  1421. "ant": {
  1422. name: "Ant",
  1423. parents: ["insect"]
  1424. },
  1425. "frog": {
  1426. name: "Frog",
  1427. parents: ["amphibian"]
  1428. },
  1429. "amphibian": {
  1430. name: "Amphibian",
  1431. parents: ["animal"]
  1432. },
  1433. "pangolin": {
  1434. name: "Pangolin",
  1435. parents: ["mammal"]
  1436. },
  1437. "uragi'viidorn": {
  1438. name: "Uragi'viidorn",
  1439. parents: ["avian", "bear"]
  1440. },
  1441. "gryphdelphais": {
  1442. name: "Gryphdelphais",
  1443. parents: ["dolphin", "gryphon"]
  1444. },
  1445. "plush": {
  1446. name: "Plush",
  1447. parents: ["construct"]
  1448. },
  1449. "draiger": {
  1450. name: "Draiger",
  1451. parents: ["dragon","tiger"]
  1452. },
  1453. "foxsky": {
  1454. name: "Foxsky",
  1455. parents: ["fox", "husky"]
  1456. },
  1457. "umbreon": {
  1458. name: "Umbreon",
  1459. parents: ["eeveelution"]
  1460. },
  1461. "slime-dragon": {
  1462. name: "Slime Dragon",
  1463. parents: ["dragon", "goo"]
  1464. },
  1465. "enderman": {
  1466. name: "Enderman",
  1467. parents: ["monster"]
  1468. },
  1469. "gremlin": {
  1470. name: "Gremlin",
  1471. parents: ["monster"]
  1472. },
  1473. "dragonsune": {
  1474. name: "Dragonsune",
  1475. parents: ["dragon", "kitsune"]
  1476. },
  1477. "ghost": {
  1478. name: "Ghost",
  1479. parents: ["supernatural"]
  1480. },
  1481. "false-vampire-bat": {
  1482. name: "False Vampire Bat",
  1483. parents: ["bat"]
  1484. },
  1485. "succubus": {
  1486. name: "Succubus",
  1487. parents: ["demon"]
  1488. },
  1489. "mia": {
  1490. name: "Mia",
  1491. parents: ["canine"]
  1492. },
  1493. "rainbow": {
  1494. name: "Rainbow",
  1495. parents: ["monster"]
  1496. },
  1497. "solgaleo": {
  1498. name: "Solgaleo",
  1499. parents: ["pokemon"]
  1500. },
  1501. "lucent-nargacuga": {
  1502. name: "Lucent Nargacuga",
  1503. parents: ["nargacuga"]
  1504. },
  1505. "monster-hunter": {
  1506. name: "Monster Hunter",
  1507. parents: ["monster", "video-games"]
  1508. },
  1509. "leviathan": {
  1510. "name": "Leviathan",
  1511. "url": "sea-monster"
  1512. },
  1513. "bull": {
  1514. name: "Bull",
  1515. parents: ["mammal"]
  1516. },
  1517. "tanuki": {
  1518. name: "Tanuki",
  1519. parents: ["monster"]
  1520. },
  1521. "chakat": {
  1522. name: "Chakat",
  1523. parents: ["cat"]
  1524. },
  1525. "hydra": {
  1526. name: "Hydra",
  1527. parents: ["monster"]
  1528. },
  1529. "zigzagoon": {
  1530. name: "Zigzagoon",
  1531. parents: ["raccoon", "pokemon"]
  1532. },
  1533. "vulture": {
  1534. name: "Vulture",
  1535. parents: ["avian"]
  1536. },
  1537. "eastern-dragon": {
  1538. name: "Eastern Dragon",
  1539. parents: ["dragon"]
  1540. },
  1541. "gryffon": {
  1542. name: "Gryffon",
  1543. parents: ["phoenix", "red-panda"]
  1544. },
  1545. "amtsvane": {
  1546. name: "Amtsvane",
  1547. parents: ["reptile"]
  1548. },
  1549. "kigavi": {
  1550. name: "Kigavi",
  1551. parents: ["avian"]
  1552. },
  1553. "turian": {
  1554. name: "Turian",
  1555. parents: ["avian"]
  1556. },
  1557. "zeraora": {
  1558. name: "Zeraora",
  1559. parents: ["pokemon", "cat"]
  1560. },
  1561. "sandshrew": {
  1562. name: "Sandshrew",
  1563. parents: ["pokemon", "pangolin"]
  1564. },
  1565. "valais-blacknose-sheep": {
  1566. name: "Valais Blacknose Sheep",
  1567. parents: ["sheep"]
  1568. },
  1569. "novaleit": {
  1570. name: "Novaleit",
  1571. parents: ["mammal"]
  1572. },
  1573. "dunnoh": {
  1574. name: "Dunnoh",
  1575. parents: ["mammal"]
  1576. },
  1577. "lunaral-dragon": {
  1578. name: "Lunaral Dragon",
  1579. parents: ["dragon"]
  1580. },
  1581. "arctic-wolf": {
  1582. name: "Arctic Wolf",
  1583. parents: ["wolf"]
  1584. },
  1585. "donkey": {
  1586. name: "Donkey",
  1587. parents: ["horse"]
  1588. },
  1589. "chinchilla": {
  1590. name: "Chinchilla",
  1591. parents: ["rodent"]
  1592. },
  1593. "felkin": {
  1594. name: "Felkin",
  1595. parents: ["dragon"]
  1596. },
  1597. "tykeriel": {
  1598. name: "Tykeriel",
  1599. parents: ["avian"]
  1600. },
  1601. "folf": {
  1602. name: "Folf",
  1603. parents: ["fox", "wolf"]
  1604. },
  1605. "pooltoy": {
  1606. name: "Pooltoy",
  1607. parents: ["construct"]
  1608. },
  1609. "demi": {
  1610. name: "Demi",
  1611. parents: ["human"]
  1612. },
  1613. "stegosaurus": {
  1614. name: "Stegosaurus",
  1615. parents: ["dinosaur"]
  1616. },
  1617. "computer-virus": {
  1618. name: "Computer Virus",
  1619. parents: ["program"]
  1620. },
  1621. "program": {
  1622. name: "Program",
  1623. parents: ["construct"]
  1624. },
  1625. "space-springhare": {
  1626. name: "Space Springhare",
  1627. parents: ["hare"]
  1628. },
  1629. "river-drake": {
  1630. name: "River Drake",
  1631. parents: ["dragon"]
  1632. },
  1633. "djinn": {
  1634. "name": "Djinn",
  1635. "url": "supernatural"
  1636. },
  1637. "supernatural": {
  1638. name: "Supernatural",
  1639. parents: ["monster"]
  1640. },
  1641. "grasshopper-mouse": {
  1642. name: "Grasshopper Mouse",
  1643. parents: ["mouse"]
  1644. },
  1645. "somali-cat": {
  1646. name: "Somali Cat",
  1647. parents: ["cat"]
  1648. },
  1649. "minccino": {
  1650. name: "Minccino",
  1651. parents: ["pokemon", "chinchilla"]
  1652. },
  1653. "pine-marten": {
  1654. name: "Pine Marten",
  1655. parents: ["marten"]
  1656. },
  1657. "marten": {
  1658. name: "Marten",
  1659. parents: ["mustelid"]
  1660. },
  1661. "mustelid": {
  1662. name: "Mustelid",
  1663. parents: ["mammal"]
  1664. },
  1665. "caribou": {
  1666. name: "Caribou",
  1667. parents: ["deer"]
  1668. },
  1669. "gnoll": {
  1670. name: "Gnoll",
  1671. parents: ["hyena", "monster"]
  1672. },
  1673. "peacekeeper": {
  1674. name: "Peacekeeper",
  1675. parents: ["human"]
  1676. },
  1677. "river-otter": {
  1678. name: "River Otter",
  1679. parents: ["otter"]
  1680. },
  1681. "dhole": {
  1682. name: "Dhole",
  1683. parents: ["canine"]
  1684. },
  1685. "springbok": {
  1686. name: "Springbok",
  1687. parents: ["antelope"]
  1688. },
  1689. "marsupial": {
  1690. name: "Marsupial",
  1691. parents: ["mammal"]
  1692. },
  1693. "townsend-big-eared-bat": {
  1694. name: "Townsend Big-eared Bat",
  1695. parents: ["bat"]
  1696. },
  1697. "squirrel": {
  1698. name: "Squirrel",
  1699. parents: ["rodent"]
  1700. },
  1701. "magpie": {
  1702. name: "Magpie",
  1703. parents: ["corvid"]
  1704. },
  1705. "civet": {
  1706. name: "Civet",
  1707. parents: ["feliform"]
  1708. },
  1709. "feliform": {
  1710. name: "Feliform",
  1711. parents: ["mammal"]
  1712. },
  1713. "tiefling": {
  1714. name: "Tiefling",
  1715. parents: ["devil"]
  1716. },
  1717. "devil": {
  1718. name: "Devil",
  1719. parents: ["supernatural"]
  1720. },
  1721. "sika-deer": {
  1722. name: "Sika Deer",
  1723. parents: ["deer"]
  1724. },
  1725. "vaporeon": {
  1726. name: "Vaporeon",
  1727. parents: ["eeveelution"]
  1728. },
  1729. "leafeon": {
  1730. name: "Leafeon",
  1731. parents: ["eeveelution"]
  1732. },
  1733. "jolteon": {
  1734. name: "Jolteon",
  1735. parents: ["eeveelution"]
  1736. },
  1737. "spireborn": {
  1738. name: "Spireborn",
  1739. parents: ["zorgoia"]
  1740. },
  1741. "vampire": {
  1742. name: "Vampire",
  1743. parents: ["monster"]
  1744. },
  1745. "extraplanar": {
  1746. name: "Extraplanar",
  1747. parents: []
  1748. },
  1749. "goo": {
  1750. name: "Goo",
  1751. parents: []
  1752. },
  1753. "skink": {
  1754. name: "Skink",
  1755. parents: ["lizard"]
  1756. },
  1757. "bat-eared-fox": {
  1758. name: "Bat-eared Fox",
  1759. parents: ["fox"]
  1760. },
  1761. "belted-kingfisher": {
  1762. name: "Belted Kingfisher",
  1763. parents: ["avian"]
  1764. },
  1765. "omnifalcon": {
  1766. name: "Omnifalcon",
  1767. parents: ["gryphon", "falcon", "harpy-eagle"]
  1768. },
  1769. "falcon": {
  1770. name: "Falcon",
  1771. parents: ["bird-of-prey"]
  1772. },
  1773. "avali": {
  1774. name: "Avali",
  1775. parents: ["avian", "alien"]
  1776. },
  1777. "arctic-fox": {
  1778. name: "Arctic Fox",
  1779. parents: ["fox"]
  1780. },
  1781. "snow-tiger": {
  1782. name: "Snow Tiger",
  1783. parents: ["tiger"]
  1784. },
  1785. "marble-fox": {
  1786. name: "Marble Fox",
  1787. parents: ["fox"]
  1788. },
  1789. "king-wickerbeast": {
  1790. name: "King Wickerbeast",
  1791. parents: ["wickerbeast"]
  1792. },
  1793. "wickerbeast": {
  1794. name: "Wickerbeast",
  1795. parents: ["mammal"]
  1796. },
  1797. "european-polecat": {
  1798. name: "European Polecat",
  1799. parents: ["polecat"]
  1800. },
  1801. "polecat": {
  1802. name: "Polecat",
  1803. parents: ["mustelid"]
  1804. },
  1805. "teshari": {
  1806. name: "Teshari",
  1807. parents: ["avian", "raptor"]
  1808. },
  1809. "alicorn": {
  1810. name: "Alicorn",
  1811. parents: ["horse"]
  1812. },
  1813. "atlas-moth": {
  1814. name: "Atlas Moth",
  1815. parents: ["moth"]
  1816. },
  1817. "owlbear": {
  1818. name: "Owlbear",
  1819. parents: ["owl", "bear", "monster"]
  1820. },
  1821. "owl": {
  1822. name: "Owl",
  1823. parents: ["avian"]
  1824. },
  1825. "silvertongue": {
  1826. name: "Silvertongue",
  1827. parents: ["reptile"]
  1828. },
  1829. "ahuizotl": {
  1830. name: "Ahuizotl",
  1831. parents: ["monster"]
  1832. },
  1833. "ender-dragon": {
  1834. name: "Ender Dragon",
  1835. parents: ["dragon"]
  1836. },
  1837. "bruhathkayosaurus": {
  1838. name: "Bruhathkayosaurus",
  1839. parents: ["sauropod"]
  1840. },
  1841. "sauropod": {
  1842. name: "Sauropod",
  1843. parents: ["dinosaur"]
  1844. },
  1845. "black-sable-antelope": {
  1846. name: "Black Sable Antelope",
  1847. parents: ["antelope"]
  1848. },
  1849. "slime": {
  1850. name: "Slime",
  1851. parents: ["goo"]
  1852. },
  1853. "utahraptor": {
  1854. name: "Utahraptor",
  1855. parents: ["raptor"]
  1856. },
  1857. "indian-giant-squirrel": {
  1858. name: "Indian Giant Squirrel",
  1859. parents: ["squirrel"]
  1860. },
  1861. "golden-retriever": {
  1862. name: "Golden Retriever",
  1863. parents: ["dog"]
  1864. },
  1865. "triceratops": {
  1866. name: "Triceratops",
  1867. parents: ["dinosaur"]
  1868. },
  1869. "drake": {
  1870. name: "Drake",
  1871. parents: ["dragon"]
  1872. },
  1873. "okapi": {
  1874. name: "Okapi",
  1875. parents: ["giraffe"]
  1876. },
  1877. "arctic-hare": {
  1878. name: "Arctic Hare",
  1879. parents: ["hare"]
  1880. },
  1881. "hare": {
  1882. name: "Hare",
  1883. parents: ["leporidae"]
  1884. },
  1885. "leporidae": {
  1886. name: "Leporidae",
  1887. parents: ["mammal"]
  1888. },
  1889. "leopard-gecko": {
  1890. name: "Leopard Gecko",
  1891. parents: ["gecko"]
  1892. },
  1893. "dreamspawn": {
  1894. name: "Dreamspawn",
  1895. parents: ["illusion"]
  1896. },
  1897. "illusion": {
  1898. name: "Illusion",
  1899. parents: []
  1900. },
  1901. "purrloin": {
  1902. name: "Purrloin",
  1903. parents: ["cat", "pokemon"]
  1904. },
  1905. "noivern": {
  1906. name: "Noivern",
  1907. parents: ["bat", "dragon", "pokemon"]
  1908. },
  1909. "hedgehog": {
  1910. name: "Hedgehog",
  1911. parents: ["mammal"]
  1912. },
  1913. "liger": {
  1914. name: "Liger",
  1915. parents: ["lion", "tiger", "hybrid"]
  1916. },
  1917. "hybrid": {
  1918. name: "Hybrid",
  1919. parents: []
  1920. },
  1921. "drider": {
  1922. name: "Drider",
  1923. parents: ["spider"]
  1924. },
  1925. "sabresune": {
  1926. name: "Sabresune",
  1927. parents: ["kitsune", "sabertooth-tiger"]
  1928. },
  1929. "ditto": {
  1930. name: "Ditto",
  1931. parents: ["pokemon", "goo"]
  1932. },
  1933. "amogus": {
  1934. name: "Amogus",
  1935. parents: ["deity"]
  1936. },
  1937. "ferret": {
  1938. name: "Ferret",
  1939. parents: ["mustelid"]
  1940. },
  1941. "guinea-pig": {
  1942. name: "Guinea Pig",
  1943. parents: ["rodent"]
  1944. },
  1945. "viper": {
  1946. name: "Viper",
  1947. parents: ["snake"]
  1948. },
  1949. "cinderace": {
  1950. name: "Cinderace",
  1951. parents: ["pokemon", "rabbit"]
  1952. },
  1953. "caudin": {
  1954. name: "Caudin",
  1955. parents: ["dragon"]
  1956. },
  1957. "red-winged-blackbird": {
  1958. name: "Red-Winged Blackbird",
  1959. parents: ["avian"]
  1960. },
  1961. "hooded-wheater": {
  1962. name: "Hooded Wheater",
  1963. parents: ["passerine"]
  1964. },
  1965. "passerine": {
  1966. name: "Passerine",
  1967. parents: ["avian"]
  1968. },
  1969. "gieeg": {
  1970. name: "Gieeg",
  1971. parents: ["alien"]
  1972. },
  1973. "ringtail": {
  1974. name: "Ringtail",
  1975. parents: ["raccoon"]
  1976. },
  1977. "hisuian-zoroark": {
  1978. name: "Hisuian Zoroark",
  1979. parents: ["zoroark", "hisuian"]
  1980. },
  1981. "hisuian": {
  1982. name: "Hisuian",
  1983. parents: ["regional-pokemon"]
  1984. },
  1985. "regional-pokemon": {
  1986. name: "Regional Pokemon",
  1987. parents: ["pokemon"]
  1988. },
  1989. "cybeast": {
  1990. name: "Cybeast",
  1991. parents: ["computer-virus"]
  1992. },
  1993. "javira-dragon": {
  1994. name: "Javira Dragon",
  1995. parents: ["dragon"]
  1996. },
  1997. "koopew": {
  1998. name: "Koopew",
  1999. parents: ["dragon", "alien"]
  2000. },
  2001. "nevrean": {
  2002. name: "Nevrean",
  2003. parents: ["avian", "vilous"]
  2004. },
  2005. "vilous": {
  2006. name: "Vilous Species",
  2007. parents: []
  2008. },
  2009. "titanoboa": {
  2010. name: "Titanoboa",
  2011. parents: ["snake"]
  2012. },
  2013. "raichu": {
  2014. name: "Raichu",
  2015. parents: ["pikachu"]
  2016. },
  2017. "taur": {
  2018. name: "Taur",
  2019. parents: []
  2020. },
  2021. "continental-giant-rabbit": {
  2022. name: "Continental Giant Rabbit",
  2023. parents: ["rabbit"]
  2024. },
  2025. "demigryph": {
  2026. name: "Demigryph",
  2027. parents: ["lion", "eagle"]
  2028. },
  2029. "bald-eagle": {
  2030. name: "Bald Eagle",
  2031. parents: ["eagle"]
  2032. },
  2033. "kestrel": {
  2034. name: "Kestrel",
  2035. parents: ["falcon"]
  2036. },
  2037. "mockingbird": {
  2038. name: "Mockingbird",
  2039. parents: ["songbird"]
  2040. },
  2041. "songbird": {
  2042. name: "Songbird",
  2043. parents: ["avian"]
  2044. },
  2045. "bird-of-prey": {
  2046. name: "Bird of Prey",
  2047. parents: ["avian"]
  2048. },
  2049. "marowak": {
  2050. name: "Marowak",
  2051. parents: ["pokemon", "reptile"]
  2052. },
  2053. "joltik": {
  2054. name: "Joltik",
  2055. parents: ["pokemon", "insect"]
  2056. },
  2057. "mink": {
  2058. name: "Mink",
  2059. parents: ["mustelid"]
  2060. },
  2061. "sandcat": {
  2062. name: "Sandcat",
  2063. parents: ["cat"]
  2064. },
  2065. "hrothgar": {
  2066. name: "Hrothgar",
  2067. parents: ["cat"]
  2068. },
  2069. "garchomp": {
  2070. name: "Garchomp",
  2071. parents: ["dragon", "pokemon"]
  2072. },
  2073. "nargacuga": {
  2074. name: "Nargacuga",
  2075. parents: ["monster-hunter"]
  2076. },
  2077. "sable": {
  2078. name: "Sable",
  2079. parents: ["marten"]
  2080. },
  2081. "deino": {
  2082. name: "Deino",
  2083. parents: ["pokemon", "dinosaur"]
  2084. },
  2085. "housecat": {
  2086. name: "Housecat",
  2087. parents: ["cat"]
  2088. },
  2089. "bombay-cat": {
  2090. name: "Bombay Cat",
  2091. parents: ["housecat"]
  2092. },
  2093. "maine-coon": {
  2094. name: "Maine Coon",
  2095. parents: ["housecat"]
  2096. },
  2097. "coelacanth": {
  2098. name: "Coelacanth",
  2099. parents: ["fish"]
  2100. },
  2101. "silvally": {
  2102. name: "Silvally",
  2103. parents: ["legendary-pokemon"]
  2104. },
  2105. "legendary-pokemon": {
  2106. name: "Legendary Pokemon",
  2107. parents: ["pokemon"]
  2108. },
  2109. "great-maccao": {
  2110. name: "Great Maccao",
  2111. parents: ["monster-hunter", "raptor"]
  2112. },
  2113. "shapeshifter": {
  2114. name: "shapeshifter",
  2115. parents: []
  2116. },
  2117. "obstagoon": {
  2118. name: "Obstagoon",
  2119. parents: ["zigzagoon"]
  2120. },
  2121. "thomsons-gazelle": {
  2122. name: "Thomsons Gazelle",
  2123. parents: ["gazelle"]
  2124. },
  2125. "gazelle": {
  2126. name: "Gazelle",
  2127. parents: ["antelope"]
  2128. },
  2129. "monkey": {
  2130. name: "Monkey",
  2131. parents: ["primate"]
  2132. },
  2133. "serval": {
  2134. name: "Serval",
  2135. parents: ["cat"]
  2136. },
  2137. "swampert": {
  2138. name: "Swampert",
  2139. parents: ["pokemon"]
  2140. },
  2141. "red-fox": {
  2142. name: "Red Fox",
  2143. parents: ["fox"]
  2144. },
  2145. "sliver": {
  2146. name: "Sliver",
  2147. parents: ["alien"]
  2148. },
  2149. "sergix": {
  2150. name: "Sergix",
  2151. parents: ["demon", "sergal", "phoenix"]
  2152. },
  2153. "behemoth": {
  2154. name: "Behemoth",
  2155. parents: ["monster", "dragon", "final-fantasy"]
  2156. },
  2157. "final-fantasy": {
  2158. name: "Final Fantasy",
  2159. parents: ["video-games"]
  2160. },
  2161. "video-games": {
  2162. name: "Video Games",
  2163. parents: []
  2164. },
  2165. "eastern-cottontail-rabbit": {
  2166. name: "Eastern Cottontail Rabbit",
  2167. parents: ["rabbit"]
  2168. },
  2169. "thresher-shark": {
  2170. name: "Thresher Shark",
  2171. parents: ["shark"]
  2172. },
  2173. "ai": {
  2174. name: "AI",
  2175. parents: []
  2176. },
  2177. "black-tip-reef-shark": {
  2178. name: "Black Tip Reef Shark",
  2179. parents: ["shark"]
  2180. },
  2181. "quetzalcoatlus-northropi": {
  2182. name: "Quetzalcoatlus Northropi",
  2183. parents: ["dinosaur"]
  2184. },
  2185. "snivy": {
  2186. name: "Snivy",
  2187. parents: ["pokemon", "snake"]
  2188. },
  2189. "nedynvor": {
  2190. name: "Nedynvor",
  2191. parents: ["avian"]
  2192. },
  2193. "marbled-polecat": {
  2194. name: "Marbled Polecat",
  2195. parents: ["polecat"]
  2196. },
  2197. "ape": {
  2198. name: "Ape",
  2199. parents: ["primate"]
  2200. },
  2201. "primate": {
  2202. name: "Primate",
  2203. parents: ["mammal"]
  2204. },
  2205. "kulve-taroth": {
  2206. name: "Kulve Taroth",
  2207. parents: ["monster-hunter", "dragon"]
  2208. },
  2209. "irthos": {
  2210. name: "Irthos",
  2211. parents: ["dragon"]
  2212. },
  2213. }
  2214. //species
  2215. function getSpeciesInfo(speciesList) {
  2216. let result = new Set();
  2217. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2218. result.add(entry)
  2219. });
  2220. return Array.from(result);
  2221. };
  2222. function getSpeciesInfoHelper(species) {
  2223. if (!speciesData[species]) {
  2224. console.warn(species + " doesn't exist");
  2225. return [];
  2226. }
  2227. if (speciesData[species].parents) {
  2228. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2229. } else {
  2230. return [species];
  2231. }
  2232. }
  2233. characterMakers.push(() => makeCharacter(
  2234. {
  2235. name: "Fen",
  2236. species: ["crux"],
  2237. description: {
  2238. title: "Bio",
  2239. text: "Very furry. Sheds on everything."
  2240. },
  2241. tags: [
  2242. "anthro",
  2243. "goo"
  2244. ]
  2245. },
  2246. {
  2247. front: {
  2248. height: math.unit(12, "feet"),
  2249. weight: math.unit(2400, "lb"),
  2250. preyCapacity: math.unit(1, "people"),
  2251. name: "Front",
  2252. image: {
  2253. source: "./media/characters/fen/front.svg",
  2254. extra: 1804/1562,
  2255. bottom: 205/2009
  2256. },
  2257. extraAttributes: {
  2258. pawSize: {
  2259. name: "Paw Size",
  2260. power: 2,
  2261. type: "area",
  2262. base: math.unit(0.35, "m^2")
  2263. }
  2264. }
  2265. },
  2266. diving: {
  2267. height: math.unit(4.9, "meters"),
  2268. weight: math.unit(2400, "lb"),
  2269. name: "Diving",
  2270. image: {
  2271. source: "./media/characters/fen/diving.svg"
  2272. }
  2273. },
  2274. sleeby: {
  2275. height: math.unit(3.45, "meters"),
  2276. weight: math.unit(2400, "lb"),
  2277. name: "Sleeby",
  2278. image: {
  2279. source: "./media/characters/fen/sleeby.svg"
  2280. }
  2281. },
  2282. goo: {
  2283. height: math.unit(12, "feet"),
  2284. weight: math.unit(3600, "lb"),
  2285. volume: math.unit(1000, "liters"),
  2286. preyCapacity: math.unit(6, "people"),
  2287. name: "Goo",
  2288. image: {
  2289. source: "./media/characters/fen/goo.svg",
  2290. extra: 1307/1071,
  2291. bottom: 134/1441
  2292. }
  2293. },
  2294. horror: {
  2295. height: math.unit(13.6, "feet"),
  2296. weight: math.unit(2400, "lb"),
  2297. preyCapacity: math.unit(1, "people"),
  2298. name: "Horror",
  2299. image: {
  2300. source: "./media/characters/fen/horror.svg",
  2301. extra: 893/797,
  2302. bottom: 0/893
  2303. }
  2304. },
  2305. gooNsfw: {
  2306. height: math.unit(12, "feet"),
  2307. weight: math.unit(3750, "lb"),
  2308. volume: math.unit(1000, "liters"),
  2309. preyCapacity: math.unit(6, "people"),
  2310. name: "Goo (NSFW)",
  2311. image: {
  2312. source: "./media/characters/fen/goo-nsfw.svg",
  2313. extra: 1875/1734,
  2314. bottom: 122/1997
  2315. }
  2316. },
  2317. maw: {
  2318. height: math.unit(5.03, "feet"),
  2319. name: "Maw",
  2320. image: {
  2321. source: "./media/characters/fen/maw.svg"
  2322. }
  2323. },
  2324. gooCeiling: {
  2325. height: math.unit(6.6, "feet"),
  2326. weight: math.unit(3000, "lb"),
  2327. volume: math.unit(1000, "liters"),
  2328. preyCapacity: math.unit(6, "people"),
  2329. name: "Maw (Goo)",
  2330. image: {
  2331. source: "./media/characters/fen/goo-maw.svg"
  2332. }
  2333. },
  2334. paw: {
  2335. height: math.unit(3.77, "feet"),
  2336. name: "Paw",
  2337. image: {
  2338. source: "./media/characters/fen/paw.svg"
  2339. },
  2340. extraAttributes: {
  2341. "toeSize": {
  2342. name: "Toe Size",
  2343. power: 2,
  2344. type: "area",
  2345. base: math.unit(0.02875, "m^2")
  2346. },
  2347. "pawSize": {
  2348. name: "Paw Size",
  2349. power: 2,
  2350. type: "area",
  2351. base: math.unit(0.378, "m^2")
  2352. },
  2353. }
  2354. },
  2355. tail: {
  2356. height: math.unit(12.1, "feet"),
  2357. name: "Tail",
  2358. image: {
  2359. source: "./media/characters/fen/tail.svg"
  2360. }
  2361. },
  2362. tailFull: {
  2363. height: math.unit(12.1, "feet"),
  2364. name: "Full Tail",
  2365. image: {
  2366. source: "./media/characters/fen/tail-full.svg"
  2367. }
  2368. },
  2369. back: {
  2370. height: math.unit(12, "feet"),
  2371. weight: math.unit(2400, "lb"),
  2372. name: "Back",
  2373. image: {
  2374. source: "./media/characters/fen/back.svg",
  2375. },
  2376. info: {
  2377. description: {
  2378. mode: "append",
  2379. text: "\n\nHe is not currently looking at you."
  2380. }
  2381. }
  2382. },
  2383. full: {
  2384. height: math.unit(1.85, "meter"),
  2385. weight: math.unit(3200, "lb"),
  2386. name: "Full",
  2387. image: {
  2388. source: "./media/characters/fen/full.svg",
  2389. extra: 1133/859,
  2390. bottom: 145/1278
  2391. },
  2392. info: {
  2393. description: {
  2394. mode: "append",
  2395. text: "\n\nMunch."
  2396. }
  2397. }
  2398. },
  2399. gooLounging: {
  2400. height: math.unit(4.53, "feet"),
  2401. weight: math.unit(3000, "lb"),
  2402. preyCapacity: math.unit(6, "people"),
  2403. name: "Goo (Lounging)",
  2404. image: {
  2405. source: "./media/characters/fen/goo-lounging.svg",
  2406. bottom: 116 / 613
  2407. }
  2408. },
  2409. lounging: {
  2410. height: math.unit(10.52, "feet"),
  2411. weight: math.unit(2400, "lb"),
  2412. name: "Lounging",
  2413. image: {
  2414. source: "./media/characters/fen/lounging.svg"
  2415. }
  2416. },
  2417. },
  2418. [
  2419. {
  2420. name: "Small",
  2421. height: math.unit(2.2428, "meter")
  2422. },
  2423. {
  2424. name: "Normal",
  2425. height: math.unit(12, "feet"),
  2426. default: true,
  2427. },
  2428. {
  2429. name: "Big",
  2430. height: math.unit(20, "feet")
  2431. },
  2432. {
  2433. name: "Minimacro",
  2434. height: math.unit(40, "feet"),
  2435. info: {
  2436. description: {
  2437. mode: "append",
  2438. text: "\n\nTOO DAMN BIG"
  2439. }
  2440. }
  2441. },
  2442. {
  2443. name: "Macro",
  2444. height: math.unit(100, "feet"),
  2445. info: {
  2446. description: {
  2447. mode: "append",
  2448. text: "\n\nTOO DAMN BIG"
  2449. }
  2450. }
  2451. },
  2452. {
  2453. name: "Megamacro",
  2454. height: math.unit(2, "miles")
  2455. },
  2456. {
  2457. name: "Gigamacro",
  2458. height: math.unit(10, "earths")
  2459. },
  2460. ]
  2461. ))
  2462. characterMakers.push(() => makeCharacter(
  2463. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2464. {
  2465. front: {
  2466. height: math.unit(183, "cm"),
  2467. weight: math.unit(80, "kg"),
  2468. name: "Front",
  2469. image: {
  2470. source: "./media/characters/sofia-fluttertail/front.svg",
  2471. bottom: 0.01,
  2472. extra: 2154 / 2081
  2473. }
  2474. },
  2475. frontAlt: {
  2476. height: math.unit(183, "cm"),
  2477. weight: math.unit(80, "kg"),
  2478. name: "Front (alt)",
  2479. image: {
  2480. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2481. }
  2482. },
  2483. back: {
  2484. height: math.unit(183, "cm"),
  2485. weight: math.unit(80, "kg"),
  2486. name: "Back",
  2487. image: {
  2488. source: "./media/characters/sofia-fluttertail/back.svg"
  2489. }
  2490. },
  2491. kneeling: {
  2492. height: math.unit(125, "cm"),
  2493. weight: math.unit(80, "kg"),
  2494. name: "Kneeling",
  2495. image: {
  2496. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2497. extra: 1033 / 977,
  2498. bottom: 23.7 / 1057
  2499. }
  2500. },
  2501. maw: {
  2502. height: math.unit(183 / 5, "cm"),
  2503. name: "Maw",
  2504. image: {
  2505. source: "./media/characters/sofia-fluttertail/maw.svg"
  2506. }
  2507. },
  2508. mawcloseup: {
  2509. height: math.unit(183 / 5 * 0.41, "cm"),
  2510. name: "Maw (Closeup)",
  2511. image: {
  2512. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2513. }
  2514. },
  2515. paws: {
  2516. height: math.unit(1.17, "feet"),
  2517. name: "Paws",
  2518. image: {
  2519. source: "./media/characters/sofia-fluttertail/paws.svg",
  2520. extra: 851 / 851,
  2521. bottom: 17 / 868
  2522. }
  2523. },
  2524. },
  2525. [
  2526. {
  2527. name: "Normal",
  2528. height: math.unit(1.83, "meter")
  2529. },
  2530. {
  2531. name: "Size Thief",
  2532. height: math.unit(18, "feet")
  2533. },
  2534. {
  2535. name: "50 Foot Collie",
  2536. height: math.unit(50, "feet")
  2537. },
  2538. {
  2539. name: "Macro",
  2540. height: math.unit(96, "feet"),
  2541. default: true
  2542. },
  2543. {
  2544. name: "Megamerger",
  2545. height: math.unit(650, "feet")
  2546. },
  2547. ]
  2548. ))
  2549. characterMakers.push(() => makeCharacter(
  2550. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2551. {
  2552. front: {
  2553. height: math.unit(7, "feet"),
  2554. weight: math.unit(100, "kg"),
  2555. name: "Front",
  2556. image: {
  2557. source: "./media/characters/march/front.svg",
  2558. extra: 1992/1851,
  2559. bottom: 39/2031
  2560. }
  2561. },
  2562. foot: {
  2563. height: math.unit(0.9, "feet"),
  2564. name: "Foot",
  2565. image: {
  2566. source: "./media/characters/march/foot.svg"
  2567. }
  2568. },
  2569. },
  2570. [
  2571. {
  2572. name: "Normal",
  2573. height: math.unit(7.9, "feet")
  2574. },
  2575. {
  2576. name: "Macro",
  2577. height: math.unit(220, "meters")
  2578. },
  2579. {
  2580. name: "Megamacro",
  2581. height: math.unit(2.98, "km"),
  2582. default: true
  2583. },
  2584. {
  2585. name: "Gigamacro",
  2586. height: math.unit(15963, "km")
  2587. },
  2588. {
  2589. name: "Teramacro",
  2590. height: math.unit(2980000000, "km")
  2591. },
  2592. {
  2593. name: "Examacro",
  2594. height: math.unit(250, "parsecs")
  2595. },
  2596. ]
  2597. ))
  2598. characterMakers.push(() => makeCharacter(
  2599. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2600. {
  2601. front: {
  2602. height: math.unit(6, "feet"),
  2603. weight: math.unit(60, "kg"),
  2604. name: "Front",
  2605. image: {
  2606. source: "./media/characters/noir/front.svg",
  2607. extra: 1,
  2608. bottom: 0.032
  2609. }
  2610. },
  2611. },
  2612. [
  2613. {
  2614. name: "Normal",
  2615. height: math.unit(6.6, "feet")
  2616. },
  2617. {
  2618. name: "Macro",
  2619. height: math.unit(500, "feet")
  2620. },
  2621. {
  2622. name: "Megamacro",
  2623. height: math.unit(2.5, "km"),
  2624. default: true
  2625. },
  2626. {
  2627. name: "Gigamacro",
  2628. height: math.unit(22500, "km")
  2629. },
  2630. {
  2631. name: "Teramacro",
  2632. height: math.unit(2500000000, "km")
  2633. },
  2634. {
  2635. name: "Examacro",
  2636. height: math.unit(200, "parsecs")
  2637. },
  2638. ]
  2639. ))
  2640. characterMakers.push(() => makeCharacter(
  2641. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2642. {
  2643. front: {
  2644. height: math.unit(7, "feet"),
  2645. weight: math.unit(100, "kg"),
  2646. name: "Front",
  2647. image: {
  2648. source: "./media/characters/okuri/front.svg",
  2649. extra: 739/665,
  2650. bottom: 39/778
  2651. }
  2652. },
  2653. back: {
  2654. height: math.unit(7, "feet"),
  2655. weight: math.unit(100, "kg"),
  2656. name: "Back",
  2657. image: {
  2658. source: "./media/characters/okuri/back.svg",
  2659. extra: 734/653,
  2660. bottom: 13/747
  2661. }
  2662. },
  2663. sitting: {
  2664. height: math.unit(2.95, "feet"),
  2665. weight: math.unit(100, "kg"),
  2666. name: "Sitting",
  2667. image: {
  2668. source: "./media/characters/okuri/sitting.svg",
  2669. extra: 370/318,
  2670. bottom: 99/469
  2671. }
  2672. },
  2673. },
  2674. [
  2675. {
  2676. name: "Smallest",
  2677. height: math.unit(5 + 2/12, "feet")
  2678. },
  2679. {
  2680. name: "Smaller",
  2681. height: math.unit(300, "feet")
  2682. },
  2683. {
  2684. name: "Small",
  2685. height: math.unit(1000, "feet")
  2686. },
  2687. {
  2688. name: "Macro",
  2689. height: math.unit(1, "mile")
  2690. },
  2691. {
  2692. name: "Mega Macro (Small)",
  2693. height: math.unit(20, "km")
  2694. },
  2695. {
  2696. name: "Mega Macro (Large)",
  2697. height: math.unit(600, "km")
  2698. },
  2699. {
  2700. name: "Giga Macro",
  2701. height: math.unit(10000, "km")
  2702. },
  2703. {
  2704. name: "Normal",
  2705. height: math.unit(577560, "km"),
  2706. default: true
  2707. },
  2708. {
  2709. name: "Large",
  2710. height: math.unit(4, "galaxies")
  2711. },
  2712. {
  2713. name: "Largest",
  2714. height: math.unit(15, "multiverses")
  2715. },
  2716. ]
  2717. ))
  2718. characterMakers.push(() => makeCharacter(
  2719. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2720. {
  2721. front: {
  2722. height: math.unit(7, "feet"),
  2723. weight: math.unit(100, "kg"),
  2724. name: "Front",
  2725. image: {
  2726. source: "./media/characters/manny/front.svg",
  2727. extra: 1,
  2728. bottom: 0.06
  2729. }
  2730. },
  2731. back: {
  2732. height: math.unit(7, "feet"),
  2733. weight: math.unit(100, "kg"),
  2734. name: "Back",
  2735. image: {
  2736. source: "./media/characters/manny/back.svg",
  2737. extra: 1,
  2738. bottom: 0.014
  2739. }
  2740. },
  2741. },
  2742. [
  2743. {
  2744. name: "Normal",
  2745. height: math.unit(7, "feet"),
  2746. },
  2747. {
  2748. name: "Macro",
  2749. height: math.unit(78, "feet"),
  2750. default: true
  2751. },
  2752. {
  2753. name: "Macro+",
  2754. height: math.unit(300, "meters")
  2755. },
  2756. {
  2757. name: "Macro++",
  2758. height: math.unit(2400, "meters")
  2759. },
  2760. {
  2761. name: "Megamacro",
  2762. height: math.unit(5167, "meters")
  2763. },
  2764. {
  2765. name: "Gigamacro",
  2766. height: math.unit(41769, "miles")
  2767. },
  2768. ]
  2769. ))
  2770. characterMakers.push(() => makeCharacter(
  2771. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2772. {
  2773. front: {
  2774. height: math.unit(7, "feet"),
  2775. weight: math.unit(100, "kg"),
  2776. name: "Front",
  2777. image: {
  2778. source: "./media/characters/adake/front-1.svg"
  2779. }
  2780. },
  2781. frontAlt: {
  2782. height: math.unit(7, "feet"),
  2783. weight: math.unit(100, "kg"),
  2784. name: "Front (Alt)",
  2785. image: {
  2786. source: "./media/characters/adake/front-2.svg",
  2787. extra: 1,
  2788. bottom: 0.01
  2789. }
  2790. },
  2791. back: {
  2792. height: math.unit(7, "feet"),
  2793. weight: math.unit(100, "kg"),
  2794. name: "Back",
  2795. image: {
  2796. source: "./media/characters/adake/back.svg",
  2797. }
  2798. },
  2799. kneel: {
  2800. height: math.unit(5.385, "feet"),
  2801. weight: math.unit(100, "kg"),
  2802. name: "Kneeling",
  2803. image: {
  2804. source: "./media/characters/adake/kneel.svg",
  2805. bottom: 0.052
  2806. }
  2807. },
  2808. },
  2809. [
  2810. {
  2811. name: "Normal",
  2812. height: math.unit(7, "feet"),
  2813. },
  2814. {
  2815. name: "Macro",
  2816. height: math.unit(78, "feet"),
  2817. default: true
  2818. },
  2819. {
  2820. name: "Macro+",
  2821. height: math.unit(300, "meters")
  2822. },
  2823. {
  2824. name: "Macro++",
  2825. height: math.unit(2400, "meters")
  2826. },
  2827. {
  2828. name: "Megamacro",
  2829. height: math.unit(5167, "meters")
  2830. },
  2831. {
  2832. name: "Gigamacro",
  2833. height: math.unit(41769, "miles")
  2834. },
  2835. ]
  2836. ))
  2837. characterMakers.push(() => makeCharacter(
  2838. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2839. {
  2840. front: {
  2841. height: math.unit(1.65, "meters"),
  2842. weight: math.unit(50, "kg"),
  2843. name: "Front",
  2844. image: {
  2845. source: "./media/characters/elijah/front.svg",
  2846. extra: 858 / 830,
  2847. bottom: 95.5 / 953.8559
  2848. }
  2849. },
  2850. back: {
  2851. height: math.unit(1.65, "meters"),
  2852. weight: math.unit(50, "kg"),
  2853. name: "Back",
  2854. image: {
  2855. source: "./media/characters/elijah/back.svg",
  2856. extra: 895 / 850,
  2857. bottom: 5.3 / 897.956
  2858. }
  2859. },
  2860. frontNsfw: {
  2861. height: math.unit(1.65, "meters"),
  2862. weight: math.unit(50, "kg"),
  2863. name: "Front (NSFW)",
  2864. image: {
  2865. source: "./media/characters/elijah/front-nsfw.svg",
  2866. extra: 858 / 830,
  2867. bottom: 95.5 / 953.8559
  2868. }
  2869. },
  2870. backNsfw: {
  2871. height: math.unit(1.65, "meters"),
  2872. weight: math.unit(50, "kg"),
  2873. name: "Back (NSFW)",
  2874. image: {
  2875. source: "./media/characters/elijah/back-nsfw.svg",
  2876. extra: 895 / 850,
  2877. bottom: 5.3 / 897.956
  2878. }
  2879. },
  2880. dick: {
  2881. height: math.unit(1, "feet"),
  2882. name: "Dick",
  2883. image: {
  2884. source: "./media/characters/elijah/dick.svg"
  2885. }
  2886. },
  2887. beakOpen: {
  2888. height: math.unit(1.25, "feet"),
  2889. name: "Beak (Open)",
  2890. image: {
  2891. source: "./media/characters/elijah/beak-open.svg"
  2892. }
  2893. },
  2894. beakShut: {
  2895. height: math.unit(1.25, "feet"),
  2896. name: "Beak (Shut)",
  2897. image: {
  2898. source: "./media/characters/elijah/beak-shut.svg"
  2899. }
  2900. },
  2901. footFlexing: {
  2902. height: math.unit(1.61, "feet"),
  2903. name: "Foot (Flexing)",
  2904. image: {
  2905. source: "./media/characters/elijah/foot-flexing.svg"
  2906. }
  2907. },
  2908. footStepping: {
  2909. height: math.unit(1.44, "feet"),
  2910. name: "Foot (Stepping)",
  2911. image: {
  2912. source: "./media/characters/elijah/foot-stepping.svg"
  2913. }
  2914. },
  2915. plantigradeLeg: {
  2916. height: math.unit(2.34, "feet"),
  2917. name: "Plantigrade Leg",
  2918. image: {
  2919. source: "./media/characters/elijah/plantigrade-leg.svg"
  2920. }
  2921. },
  2922. plantigradeFootLeft: {
  2923. height: math.unit(0.9, "feet"),
  2924. name: "Plantigrade Foot (Left)",
  2925. image: {
  2926. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2927. }
  2928. },
  2929. plantigradeFootRight: {
  2930. height: math.unit(0.9, "feet"),
  2931. name: "Plantigrade Foot (Right)",
  2932. image: {
  2933. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2934. }
  2935. },
  2936. },
  2937. [
  2938. {
  2939. name: "Normal",
  2940. height: math.unit(1.65, "meters")
  2941. },
  2942. {
  2943. name: "Macro",
  2944. height: math.unit(55, "meters"),
  2945. default: true
  2946. },
  2947. {
  2948. name: "Macro+",
  2949. height: math.unit(105, "meters")
  2950. },
  2951. ]
  2952. ))
  2953. characterMakers.push(() => makeCharacter(
  2954. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2955. {
  2956. front: {
  2957. height: math.unit(7 + 2/12, "feet"),
  2958. weight: math.unit(320, "kg"),
  2959. preyCapacity: math.unit(0.276549935, "people"),
  2960. name: "Front",
  2961. image: {
  2962. source: "./media/characters/rai/front.svg",
  2963. extra: 1802/1696,
  2964. bottom: 68/1870
  2965. },
  2966. form: "anthro",
  2967. default: true
  2968. },
  2969. frontDressed: {
  2970. height: math.unit(7 + 2/12, "feet"),
  2971. weight: math.unit(320, "kg"),
  2972. preyCapacity: math.unit(0.276549935, "people"),
  2973. name: "Front (Dressed)",
  2974. image: {
  2975. source: "./media/characters/rai/front-dressed.svg",
  2976. extra: 1802/1696,
  2977. bottom: 68/1870
  2978. },
  2979. form: "anthro"
  2980. },
  2981. side: {
  2982. height: math.unit(7 + 2/12, "feet"),
  2983. weight: math.unit(320, "kg"),
  2984. preyCapacity: math.unit(0.276549935, "people"),
  2985. name: "Side",
  2986. image: {
  2987. source: "./media/characters/rai/side.svg",
  2988. extra: 1789/1710,
  2989. bottom: 115/1904
  2990. },
  2991. form: "anthro"
  2992. },
  2993. back: {
  2994. height: math.unit(7 + 2/12, "feet"),
  2995. weight: math.unit(320, "kg"),
  2996. preyCapacity: math.unit(0.276549935, "people"),
  2997. name: "Back",
  2998. image: {
  2999. source: "./media/characters/rai/back.svg",
  3000. extra: 1770/1707,
  3001. bottom: 28/1798
  3002. },
  3003. form: "anthro"
  3004. },
  3005. feral: {
  3006. height: math.unit(9.5, "feet"),
  3007. weight: math.unit(640, "kg"),
  3008. preyCapacity: math.unit(4, "people"),
  3009. name: "Feral",
  3010. image: {
  3011. source: "./media/characters/rai/feral.svg",
  3012. extra: 945/553,
  3013. bottom: 176/1121
  3014. },
  3015. form: "feral",
  3016. default: true
  3017. },
  3018. dragon: {
  3019. height: math.unit(23, "feet"),
  3020. weight: math.unit(50000, "lb"),
  3021. name: "Dragon",
  3022. image: {
  3023. source: "./media/characters/rai/dragon.svg",
  3024. extra: 2498 / 2030,
  3025. bottom: 85.2 / 2584
  3026. },
  3027. form: "dragon",
  3028. default: true
  3029. },
  3030. maw: {
  3031. height: math.unit(1.69, "feet"),
  3032. name: "Maw",
  3033. image: {
  3034. source: "./media/characters/rai/maw.svg"
  3035. },
  3036. form: "anthro"
  3037. },
  3038. },
  3039. [
  3040. {
  3041. name: "Normal",
  3042. height: math.unit(7 + 2/12, "feet"),
  3043. form: "anthro"
  3044. },
  3045. {
  3046. name: "Big",
  3047. height: math.unit(11, "feet"),
  3048. form: "anthro"
  3049. },
  3050. {
  3051. name: "Minimacro",
  3052. height: math.unit(77, "feet"),
  3053. form: "anthro"
  3054. },
  3055. {
  3056. name: "Macro",
  3057. height: math.unit(302, "feet"),
  3058. default: true,
  3059. form: "anthro"
  3060. },
  3061. {
  3062. name: "Normal",
  3063. height: math.unit(9.5, "feet"),
  3064. form: "feral",
  3065. default: true
  3066. },
  3067. {
  3068. name: "Normal",
  3069. height: math.unit(23, "feet"),
  3070. form: "dragon",
  3071. default: true
  3072. }
  3073. ],
  3074. {
  3075. "anthro": {
  3076. name: "Anthro",
  3077. default: true
  3078. },
  3079. "feral": {
  3080. name: "Feral",
  3081. },
  3082. "dragon": {
  3083. name: "Dragon",
  3084. },
  3085. }
  3086. ))
  3087. characterMakers.push(() => makeCharacter(
  3088. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  3089. {
  3090. frontDressed: {
  3091. height: math.unit(216, "feet"),
  3092. weight: math.unit(7000000, "lb"),
  3093. preyCapacity: math.unit(1321, "people"),
  3094. name: "Front (Dressed)",
  3095. image: {
  3096. source: "./media/characters/jazzy/front-dressed.svg",
  3097. extra: 2738 / 2651,
  3098. bottom: 41.8 / 2786
  3099. }
  3100. },
  3101. backDressed: {
  3102. height: math.unit(216, "feet"),
  3103. weight: math.unit(7000000, "lb"),
  3104. preyCapacity: math.unit(1321, "people"),
  3105. name: "Back (Dressed)",
  3106. image: {
  3107. source: "./media/characters/jazzy/back-dressed.svg",
  3108. extra: 2775 / 2673,
  3109. bottom: 36.8 / 2817
  3110. }
  3111. },
  3112. front: {
  3113. height: math.unit(216, "feet"),
  3114. weight: math.unit(7000000, "lb"),
  3115. preyCapacity: math.unit(1321, "people"),
  3116. name: "Front",
  3117. image: {
  3118. source: "./media/characters/jazzy/front.svg",
  3119. extra: 2738 / 2651,
  3120. bottom: 41.8 / 2786
  3121. }
  3122. },
  3123. back: {
  3124. height: math.unit(216, "feet"),
  3125. weight: math.unit(7000000, "lb"),
  3126. preyCapacity: math.unit(1321, "people"),
  3127. name: "Back",
  3128. image: {
  3129. source: "./media/characters/jazzy/back.svg",
  3130. extra: 2775 / 2673,
  3131. bottom: 36.8 / 2817
  3132. }
  3133. },
  3134. maw: {
  3135. height: math.unit(20, "feet"),
  3136. name: "Maw",
  3137. image: {
  3138. source: "./media/characters/jazzy/maw.svg"
  3139. }
  3140. },
  3141. paws: {
  3142. height: math.unit(27.5, "feet"),
  3143. name: "Paws",
  3144. image: {
  3145. source: "./media/characters/jazzy/paws.svg"
  3146. }
  3147. },
  3148. eye: {
  3149. height: math.unit(4.4, "feet"),
  3150. name: "Eye",
  3151. image: {
  3152. source: "./media/characters/jazzy/eye.svg"
  3153. }
  3154. },
  3155. droneOffense: {
  3156. height: math.unit(9.5, "inches"),
  3157. name: "Drone (Offense)",
  3158. image: {
  3159. source: "./media/characters/jazzy/drone-offense.svg"
  3160. }
  3161. },
  3162. droneRecon: {
  3163. height: math.unit(9.5, "inches"),
  3164. name: "Drone (Recon)",
  3165. image: {
  3166. source: "./media/characters/jazzy/drone-recon.svg"
  3167. }
  3168. },
  3169. droneDefense: {
  3170. height: math.unit(9.5, "inches"),
  3171. name: "Drone (Defense)",
  3172. image: {
  3173. source: "./media/characters/jazzy/drone-defense.svg"
  3174. }
  3175. },
  3176. },
  3177. [
  3178. {
  3179. name: "Macro",
  3180. height: math.unit(216, "feet"),
  3181. default: true
  3182. },
  3183. ]
  3184. ))
  3185. characterMakers.push(() => makeCharacter(
  3186. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3187. {
  3188. front: {
  3189. height: math.unit(9 + 6/12, "feet"),
  3190. weight: math.unit(700, "lb"),
  3191. name: "Front",
  3192. image: {
  3193. source: "./media/characters/flamm/front.svg",
  3194. extra: 1736/1596,
  3195. bottom: 93/1829
  3196. }
  3197. },
  3198. buff: {
  3199. height: math.unit(9 + 6/12, "feet"),
  3200. weight: math.unit(950, "lb"),
  3201. name: "Buff",
  3202. image: {
  3203. source: "./media/characters/flamm/buff.svg",
  3204. extra: 3018/2874,
  3205. bottom: 221/3239
  3206. }
  3207. },
  3208. },
  3209. [
  3210. {
  3211. name: "Normal",
  3212. height: math.unit(9.5, "feet")
  3213. },
  3214. {
  3215. name: "Macro",
  3216. height: math.unit(200, "feet"),
  3217. default: true
  3218. },
  3219. ]
  3220. ))
  3221. characterMakers.push(() => makeCharacter(
  3222. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3223. {
  3224. front: {
  3225. height: math.unit(5 + 3/12, "feet"),
  3226. weight: math.unit(60, "kg"),
  3227. name: "Front",
  3228. image: {
  3229. source: "./media/characters/zephiro/front.svg",
  3230. extra: 1873/1761,
  3231. bottom: 147/2020
  3232. }
  3233. },
  3234. side: {
  3235. height: math.unit(5 + 3/12, "feet"),
  3236. weight: math.unit(60, "kg"),
  3237. name: "Side",
  3238. image: {
  3239. source: "./media/characters/zephiro/side.svg",
  3240. extra: 1929/1827,
  3241. bottom: 65/1994
  3242. }
  3243. },
  3244. back: {
  3245. height: math.unit(5 + 3/12, "feet"),
  3246. weight: math.unit(60, "kg"),
  3247. name: "Back",
  3248. image: {
  3249. source: "./media/characters/zephiro/back.svg",
  3250. extra: 1926/1816,
  3251. bottom: 41/1967
  3252. }
  3253. },
  3254. hand: {
  3255. height: math.unit(0.68, "feet"),
  3256. name: "Hand",
  3257. image: {
  3258. source: "./media/characters/zephiro/hand.svg"
  3259. }
  3260. },
  3261. paw: {
  3262. height: math.unit(1, "feet"),
  3263. name: "Paw",
  3264. image: {
  3265. source: "./media/characters/zephiro/paw.svg"
  3266. }
  3267. },
  3268. beans: {
  3269. height: math.unit(0.93, "feet"),
  3270. name: "Beans",
  3271. image: {
  3272. source: "./media/characters/zephiro/beans.svg"
  3273. }
  3274. },
  3275. },
  3276. [
  3277. {
  3278. name: "Micro",
  3279. height: math.unit(3, "inches")
  3280. },
  3281. {
  3282. name: "Normal",
  3283. height: math.unit(5 + 3 / 12, "feet"),
  3284. default: true
  3285. },
  3286. {
  3287. name: "Macro",
  3288. height: math.unit(118, "feet")
  3289. },
  3290. ]
  3291. ))
  3292. characterMakers.push(() => makeCharacter(
  3293. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3294. {
  3295. front: {
  3296. height: math.unit(5, "feet"),
  3297. weight: math.unit(90, "kg"),
  3298. preyCapacity: math.unit(14, "people"),
  3299. name: "Front",
  3300. image: {
  3301. source: "./media/characters/fory/front.svg",
  3302. extra: 2862 / 2674,
  3303. bottom: 180 / 3043.8
  3304. },
  3305. form: "weaselbun",
  3306. default: true,
  3307. extraAttributes: {
  3308. "pawSize": {
  3309. name: "Paw Size",
  3310. power: 2,
  3311. type: "area",
  3312. base: math.unit(0.1596, "m^2")
  3313. },
  3314. "pawLength": {
  3315. name: "Paw Length",
  3316. power: 1,
  3317. type: "length",
  3318. base: math.unit(0.7, "m")
  3319. }
  3320. }
  3321. },
  3322. back: {
  3323. height: math.unit(5, "feet"),
  3324. weight: math.unit(90, "kg"),
  3325. preyCapacity: math.unit(14, "people"),
  3326. name: "Back",
  3327. image: {
  3328. source: "./media/characters/fory/back.svg",
  3329. extra: 1790/1672,
  3330. bottom: 84/1874
  3331. },
  3332. form: "weaselbun",
  3333. extraAttributes: {
  3334. "pawSize": {
  3335. name: "Paw Size",
  3336. power: 2,
  3337. type: "area",
  3338. base: math.unit(0.1596, "m^2")
  3339. },
  3340. "pawLength": {
  3341. name: "Paw Length",
  3342. power: 1,
  3343. type: "length",
  3344. base: math.unit(0.7, "m")
  3345. }
  3346. }
  3347. },
  3348. paw: {
  3349. height: math.unit(2.14, "feet"),
  3350. name: "Paw",
  3351. image: {
  3352. source: "./media/characters/fory/paw.svg"
  3353. },
  3354. form: "weaselbun",
  3355. extraAttributes: {
  3356. "pawSize": {
  3357. name: "Paw Size",
  3358. power: 2,
  3359. type: "area",
  3360. base: math.unit(0.1596, "m^2")
  3361. },
  3362. "pawLength": {
  3363. name: "Paw Length",
  3364. power: 1,
  3365. type: "length",
  3366. base: math.unit(0.48, "m")
  3367. }
  3368. }
  3369. },
  3370. bunBack: {
  3371. height: math.unit(3, "feet"),
  3372. weight: math.unit(20, "kg"),
  3373. preyCapacity: math.unit(3, "people"),
  3374. name: "Back",
  3375. image: {
  3376. source: "./media/characters/fory/bun-back.svg",
  3377. extra: 1749/1564,
  3378. bottom: 246/1995
  3379. },
  3380. form: "bun",
  3381. default: true,
  3382. extraAttributes: {
  3383. "pawSize": {
  3384. name: "Paw Size",
  3385. power: 2,
  3386. type: "area",
  3387. base: math.unit(0.072, "m^2")
  3388. },
  3389. "pawLength": {
  3390. name: "Paw Length",
  3391. power: 1,
  3392. type: "length",
  3393. base: math.unit(0.45, "m")
  3394. }
  3395. }
  3396. },
  3397. },
  3398. [
  3399. {
  3400. name: "Normal",
  3401. height: math.unit(5, "feet"),
  3402. form: "weaselbun"
  3403. },
  3404. {
  3405. name: "Macro",
  3406. height: math.unit(50, "feet"),
  3407. default: true,
  3408. form: "weaselbun"
  3409. },
  3410. {
  3411. name: "Megamacro",
  3412. height: math.unit(10, "miles"),
  3413. form: "weaselbun"
  3414. },
  3415. {
  3416. name: "Gigamacro",
  3417. height: math.unit(5, "earths"),
  3418. form: "weaselbun"
  3419. },
  3420. {
  3421. name: "Normal",
  3422. height: math.unit(3, "feet"),
  3423. default: true,
  3424. form: "bun"
  3425. },
  3426. {
  3427. name: "Fun-Size",
  3428. height: math.unit(12, "feet"),
  3429. form: "bun"
  3430. },
  3431. {
  3432. name: "Macro",
  3433. height: math.unit(100, "feet"),
  3434. form: "bun"
  3435. },
  3436. {
  3437. name: "Planetary",
  3438. height: math.unit(3, "earths"),
  3439. form: "bun"
  3440. },
  3441. ],
  3442. {
  3443. "weaselbun": {
  3444. name: "Weaselbun",
  3445. default: true
  3446. },
  3447. "bun": {
  3448. name: "Bun",
  3449. },
  3450. }
  3451. ))
  3452. characterMakers.push(() => makeCharacter(
  3453. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3454. {
  3455. front: {
  3456. height: math.unit(7, "feet"),
  3457. weight: math.unit(90, "kg"),
  3458. name: "Front",
  3459. image: {
  3460. source: "./media/characters/kurrikage/front.svg",
  3461. extra: 1845/1733,
  3462. bottom: 119/1964
  3463. }
  3464. },
  3465. back: {
  3466. height: math.unit(7, "feet"),
  3467. weight: math.unit(90, "kg"),
  3468. name: "Back",
  3469. image: {
  3470. source: "./media/characters/kurrikage/back.svg",
  3471. extra: 1790/1677,
  3472. bottom: 61/1851
  3473. }
  3474. },
  3475. dressed: {
  3476. height: math.unit(7, "feet"),
  3477. weight: math.unit(90, "kg"),
  3478. name: "Dressed",
  3479. image: {
  3480. source: "./media/characters/kurrikage/dressed.svg",
  3481. extra: 1845/1733,
  3482. bottom: 119/1964
  3483. }
  3484. },
  3485. foot: {
  3486. height: math.unit(1.5, "feet"),
  3487. name: "Foot",
  3488. image: {
  3489. source: "./media/characters/kurrikage/foot.svg"
  3490. }
  3491. },
  3492. staff: {
  3493. height: math.unit(6.7, "feet"),
  3494. name: "Staff",
  3495. image: {
  3496. source: "./media/characters/kurrikage/staff.svg"
  3497. }
  3498. },
  3499. peek: {
  3500. height: math.unit(1.05, "feet"),
  3501. name: "Peeking",
  3502. image: {
  3503. source: "./media/characters/kurrikage/peek.svg",
  3504. bottom: 0.08
  3505. }
  3506. },
  3507. },
  3508. [
  3509. {
  3510. name: "Normal",
  3511. height: math.unit(12, "feet"),
  3512. default: true
  3513. },
  3514. {
  3515. name: "Big",
  3516. height: math.unit(20, "feet")
  3517. },
  3518. {
  3519. name: "Macro",
  3520. height: math.unit(500, "feet")
  3521. },
  3522. {
  3523. name: "Megamacro",
  3524. height: math.unit(20, "miles")
  3525. },
  3526. ]
  3527. ))
  3528. characterMakers.push(() => makeCharacter(
  3529. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3530. {
  3531. front: {
  3532. height: math.unit(6, "feet"),
  3533. weight: math.unit(75, "kg"),
  3534. name: "Front",
  3535. image: {
  3536. source: "./media/characters/shingo/front.svg",
  3537. extra: 1900/1825,
  3538. bottom: 82/1982
  3539. }
  3540. },
  3541. side: {
  3542. height: math.unit(6, "feet"),
  3543. weight: math.unit(75, "kg"),
  3544. name: "Side",
  3545. image: {
  3546. source: "./media/characters/shingo/side.svg",
  3547. extra: 1930/1865,
  3548. bottom: 16/1946
  3549. }
  3550. },
  3551. back: {
  3552. height: math.unit(6, "feet"),
  3553. weight: math.unit(75, "kg"),
  3554. name: "Back",
  3555. image: {
  3556. source: "./media/characters/shingo/back.svg",
  3557. extra: 1922/1852,
  3558. bottom: 16/1938
  3559. }
  3560. },
  3561. frontDressed: {
  3562. height: math.unit(6, "feet"),
  3563. weight: math.unit(150, "lb"),
  3564. name: "Front-dressed",
  3565. image: {
  3566. source: "./media/characters/shingo/front-dressed.svg",
  3567. extra: 1900/1825,
  3568. bottom: 82/1982
  3569. }
  3570. },
  3571. paw: {
  3572. height: math.unit(1.29, "feet"),
  3573. name: "Paw",
  3574. image: {
  3575. source: "./media/characters/shingo/paw.svg"
  3576. }
  3577. },
  3578. hand: {
  3579. height: math.unit(1.07, "feet"),
  3580. name: "Hand",
  3581. image: {
  3582. source: "./media/characters/shingo/hand.svg"
  3583. }
  3584. },
  3585. frontAlt: {
  3586. height: math.unit(6, "feet"),
  3587. weight: math.unit(75, "kg"),
  3588. name: "Front (Alt)",
  3589. image: {
  3590. source: "./media/characters/shingo/front-alt.svg",
  3591. extra: 3511 / 3338,
  3592. bottom: 0.005
  3593. }
  3594. },
  3595. frontAlt2: {
  3596. height: math.unit(6, "feet"),
  3597. weight: math.unit(75, "kg"),
  3598. name: "Front (Alt 2)",
  3599. image: {
  3600. source: "./media/characters/shingo/front-alt-2.svg",
  3601. extra: 706/681,
  3602. bottom: 11/717
  3603. }
  3604. },
  3605. pawAlt: {
  3606. height: math.unit(1, "feet"),
  3607. name: "Paw (Alt)",
  3608. image: {
  3609. source: "./media/characters/shingo/paw-alt.svg"
  3610. }
  3611. },
  3612. },
  3613. [
  3614. {
  3615. name: "Micro",
  3616. height: math.unit(4, "inches")
  3617. },
  3618. {
  3619. name: "Normal",
  3620. height: math.unit(6, "feet"),
  3621. default: true
  3622. },
  3623. {
  3624. name: "Macro",
  3625. height: math.unit(108, "feet")
  3626. },
  3627. {
  3628. name: "Macro+",
  3629. height: math.unit(1500, "feet")
  3630. },
  3631. ]
  3632. ))
  3633. characterMakers.push(() => makeCharacter(
  3634. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3635. {
  3636. side: {
  3637. height: math.unit(6, "feet"),
  3638. weight: math.unit(75, "kg"),
  3639. name: "Side",
  3640. image: {
  3641. source: "./media/characters/aigey/side.svg"
  3642. }
  3643. },
  3644. },
  3645. [
  3646. {
  3647. name: "Macro",
  3648. height: math.unit(200, "feet"),
  3649. default: true
  3650. },
  3651. {
  3652. name: "Megamacro",
  3653. height: math.unit(100, "miles")
  3654. },
  3655. ]
  3656. )
  3657. )
  3658. characterMakers.push(() => makeCharacter(
  3659. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3660. {
  3661. front: {
  3662. height: math.unit(5 + 5 / 12, "feet"),
  3663. weight: math.unit(75, "kg"),
  3664. name: "Front",
  3665. image: {
  3666. source: "./media/characters/natasha/front.svg",
  3667. extra: 859 / 824,
  3668. bottom: 23 / 879.6
  3669. }
  3670. },
  3671. frontNsfw: {
  3672. height: math.unit(5 + 5 / 12, "feet"),
  3673. weight: math.unit(75, "kg"),
  3674. name: "Front (NSFW)",
  3675. image: {
  3676. source: "./media/characters/natasha/front-nsfw.svg",
  3677. extra: 859 / 824,
  3678. bottom: 23 / 879.6
  3679. }
  3680. },
  3681. frontErect: {
  3682. height: math.unit(5 + 5 / 12, "feet"),
  3683. weight: math.unit(75, "kg"),
  3684. name: "Front (Erect)",
  3685. image: {
  3686. source: "./media/characters/natasha/front-erect.svg",
  3687. extra: 859 / 824,
  3688. bottom: 23 / 879.6
  3689. }
  3690. },
  3691. back: {
  3692. height: math.unit(5 + 5 / 12, "feet"),
  3693. weight: math.unit(75, "kg"),
  3694. name: "Back",
  3695. image: {
  3696. source: "./media/characters/natasha/back.svg",
  3697. extra: 887.9 / 852.6,
  3698. bottom: 9.7 / 896.4
  3699. }
  3700. },
  3701. backAlt: {
  3702. height: math.unit(5 + 5 / 12, "feet"),
  3703. weight: math.unit(75, "kg"),
  3704. name: "Back (Alt)",
  3705. image: {
  3706. source: "./media/characters/natasha/back-alt.svg",
  3707. extra: 1236.7 / 1192,
  3708. bottom: 22.3 / 1258.2
  3709. }
  3710. },
  3711. dick: {
  3712. height: math.unit(1.772, "feet"),
  3713. name: "Dick",
  3714. image: {
  3715. source: "./media/characters/natasha/dick.svg"
  3716. }
  3717. },
  3718. paw: {
  3719. height: math.unit(0.250, "meters"),
  3720. name: "Paw",
  3721. image: {
  3722. source: "./media/characters/natasha/paw.svg"
  3723. },
  3724. extraAttributes: {
  3725. "toeSize": {
  3726. name: "Toe Size",
  3727. power: 2,
  3728. type: "area",
  3729. base: math.unit(0.0024, "m^2")
  3730. },
  3731. "padSize": {
  3732. name: "Pad Size",
  3733. power: 2,
  3734. type: "area",
  3735. base: math.unit(0.00889, "m^2")
  3736. },
  3737. "pawSize": {
  3738. name: "Paw Size",
  3739. power: 2,
  3740. type: "area",
  3741. base: math.unit(0.023667, "m^2")
  3742. },
  3743. }
  3744. },
  3745. },
  3746. [
  3747. {
  3748. name: "Shortstack",
  3749. height: math.unit(3, "feet"),
  3750. default: true
  3751. },
  3752. {
  3753. name: "Normal",
  3754. height: math.unit(5 + 5 / 12, "feet")
  3755. },
  3756. {
  3757. name: "Large",
  3758. height: math.unit(12, "feet")
  3759. },
  3760. {
  3761. name: "Macro",
  3762. height: math.unit(100, "feet")
  3763. },
  3764. {
  3765. name: "Macro+",
  3766. height: math.unit(260, "feet")
  3767. },
  3768. {
  3769. name: "Macro++",
  3770. height: math.unit(1, "mile")
  3771. },
  3772. ]
  3773. ))
  3774. characterMakers.push(() => makeCharacter(
  3775. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3776. {
  3777. front: {
  3778. height: math.unit(6, "feet"),
  3779. weight: math.unit(75, "kg"),
  3780. name: "Front",
  3781. image: {
  3782. source: "./media/characters/malik/front.svg",
  3783. extra: 1750/1561,
  3784. bottom: 80/1830
  3785. },
  3786. extraAttributes: {
  3787. "toeSize": {
  3788. name: "Toe Size",
  3789. power: 2,
  3790. type: "area",
  3791. base: math.unit(0.0159, "m^2")
  3792. },
  3793. "pawSize": {
  3794. name: "Paw Size",
  3795. power: 2,
  3796. type: "area",
  3797. base: math.unit(0.09834, "m^2")
  3798. },
  3799. }
  3800. },
  3801. side: {
  3802. height: math.unit(6, "feet"),
  3803. weight: math.unit(75, "kg"),
  3804. name: "Side",
  3805. image: {
  3806. source: "./media/characters/malik/side.svg",
  3807. extra: 1802/1685,
  3808. bottom: 42/1844
  3809. },
  3810. extraAttributes: {
  3811. "toeSize": {
  3812. name: "Toe Size",
  3813. power: 2,
  3814. type: "area",
  3815. base: math.unit(0.0159, "m^2")
  3816. },
  3817. "pawSize": {
  3818. name: "Paw Size",
  3819. power: 2,
  3820. type: "area",
  3821. base: math.unit(0.09834, "m^2")
  3822. },
  3823. }
  3824. },
  3825. back: {
  3826. height: math.unit(6, "feet"),
  3827. weight: math.unit(75, "kg"),
  3828. name: "Back",
  3829. image: {
  3830. source: "./media/characters/malik/back.svg",
  3831. extra: 1803/1607,
  3832. bottom: 33/1836
  3833. },
  3834. extraAttributes: {
  3835. "toeSize": {
  3836. name: "Toe Size",
  3837. power: 2,
  3838. type: "area",
  3839. base: math.unit(0.0159, "m^2")
  3840. },
  3841. "pawSize": {
  3842. name: "Paw Size",
  3843. power: 2,
  3844. type: "area",
  3845. base: math.unit(0.09834, "m^2")
  3846. },
  3847. }
  3848. },
  3849. },
  3850. [
  3851. {
  3852. name: "Macro",
  3853. height: math.unit(156, "feet"),
  3854. default: true
  3855. },
  3856. {
  3857. name: "Macro+",
  3858. height: math.unit(1188, "feet")
  3859. },
  3860. ]
  3861. ))
  3862. characterMakers.push(() => makeCharacter(
  3863. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3864. {
  3865. front: {
  3866. height: math.unit(6, "feet"),
  3867. weight: math.unit(75, "kg"),
  3868. name: "Front",
  3869. image: {
  3870. source: "./media/characters/sefer/front.svg",
  3871. extra: 848 / 659,
  3872. bottom: 28.3 / 876.442
  3873. }
  3874. },
  3875. back: {
  3876. height: math.unit(6, "feet"),
  3877. weight: math.unit(75, "kg"),
  3878. name: "Back",
  3879. image: {
  3880. source: "./media/characters/sefer/back.svg",
  3881. extra: 864 / 695,
  3882. bottom: 10 / 871
  3883. }
  3884. },
  3885. frontDressed: {
  3886. height: math.unit(6, "feet"),
  3887. weight: math.unit(75, "kg"),
  3888. name: "Dressed",
  3889. image: {
  3890. source: "./media/characters/sefer/dressed.svg",
  3891. extra: 839 / 653,
  3892. bottom: 37.6 / 878
  3893. }
  3894. },
  3895. },
  3896. [
  3897. {
  3898. name: "Normal",
  3899. height: math.unit(6, "feet"),
  3900. default: true
  3901. },
  3902. {
  3903. name: "Big",
  3904. height: math.unit(8, "meters")
  3905. },
  3906. ]
  3907. ))
  3908. characterMakers.push(() => makeCharacter(
  3909. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3910. {
  3911. body: {
  3912. height: math.unit(2.2428, "meter"),
  3913. weight: math.unit(124.738, "kg"),
  3914. name: "Body",
  3915. image: {
  3916. extra: 1225 / 1050,
  3917. source: "./media/characters/north/front.svg"
  3918. }
  3919. }
  3920. },
  3921. [
  3922. {
  3923. name: "Micro",
  3924. height: math.unit(4, "inches")
  3925. },
  3926. {
  3927. name: "Macro",
  3928. height: math.unit(63, "meters")
  3929. },
  3930. {
  3931. name: "Megamacro",
  3932. height: math.unit(101, "miles"),
  3933. default: true
  3934. }
  3935. ]
  3936. ))
  3937. characterMakers.push(() => makeCharacter(
  3938. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3939. {
  3940. angled: {
  3941. height: math.unit(4, "meter"),
  3942. weight: math.unit(150, "kg"),
  3943. name: "Angled",
  3944. image: {
  3945. source: "./media/characters/talan/angled-sfw.svg",
  3946. bottom: 29 / 3734
  3947. }
  3948. },
  3949. angledNsfw: {
  3950. height: math.unit(4, "meter"),
  3951. weight: math.unit(150, "kg"),
  3952. name: "Angled (NSFW)",
  3953. image: {
  3954. source: "./media/characters/talan/angled-nsfw.svg",
  3955. bottom: 29 / 3734
  3956. }
  3957. },
  3958. frontNsfw: {
  3959. height: math.unit(4, "meter"),
  3960. weight: math.unit(150, "kg"),
  3961. name: "Front (NSFW)",
  3962. image: {
  3963. source: "./media/characters/talan/front-nsfw.svg",
  3964. bottom: 29 / 3734
  3965. }
  3966. },
  3967. sideNsfw: {
  3968. height: math.unit(4, "meter"),
  3969. weight: math.unit(150, "kg"),
  3970. name: "Side (NSFW)",
  3971. image: {
  3972. source: "./media/characters/talan/side-nsfw.svg",
  3973. bottom: 29 / 3734
  3974. }
  3975. },
  3976. back: {
  3977. height: math.unit(4, "meter"),
  3978. weight: math.unit(150, "kg"),
  3979. name: "Back",
  3980. image: {
  3981. source: "./media/characters/talan/back.svg"
  3982. }
  3983. },
  3984. dickBottom: {
  3985. height: math.unit(0.621, "meter"),
  3986. name: "Dick (Bottom)",
  3987. image: {
  3988. source: "./media/characters/talan/dick-bottom.svg"
  3989. }
  3990. },
  3991. dickTop: {
  3992. height: math.unit(0.621, "meter"),
  3993. name: "Dick (Top)",
  3994. image: {
  3995. source: "./media/characters/talan/dick-top.svg"
  3996. }
  3997. },
  3998. dickSide: {
  3999. height: math.unit(0.305, "meter"),
  4000. name: "Dick (Side)",
  4001. image: {
  4002. source: "./media/characters/talan/dick-side.svg"
  4003. }
  4004. },
  4005. dickFront: {
  4006. height: math.unit(0.305, "meter"),
  4007. name: "Dick (Front)",
  4008. image: {
  4009. source: "./media/characters/talan/dick-front.svg"
  4010. }
  4011. },
  4012. },
  4013. [
  4014. {
  4015. name: "Normal",
  4016. height: math.unit(4, "meters")
  4017. },
  4018. {
  4019. name: "Macro",
  4020. height: math.unit(100, "meters")
  4021. },
  4022. {
  4023. name: "Megamacro",
  4024. height: math.unit(2, "miles"),
  4025. default: true
  4026. },
  4027. {
  4028. name: "Gigamacro",
  4029. height: math.unit(5000, "miles")
  4030. },
  4031. {
  4032. name: "Teramacro",
  4033. height: math.unit(100, "parsecs")
  4034. }
  4035. ]
  4036. ))
  4037. characterMakers.push(() => makeCharacter(
  4038. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  4039. {
  4040. front: {
  4041. height: math.unit(2, "meter"),
  4042. weight: math.unit(90, "kg"),
  4043. name: "Front",
  4044. image: {
  4045. source: "./media/characters/gael'rathus/front.svg"
  4046. }
  4047. },
  4048. frontAlt: {
  4049. height: math.unit(2, "meter"),
  4050. weight: math.unit(90, "kg"),
  4051. name: "Front (alt)",
  4052. image: {
  4053. source: "./media/characters/gael'rathus/front-alt.svg"
  4054. }
  4055. },
  4056. frontAlt2: {
  4057. height: math.unit(2, "meter"),
  4058. weight: math.unit(90, "kg"),
  4059. name: "Front (alt 2)",
  4060. image: {
  4061. source: "./media/characters/gael'rathus/front-alt-2.svg"
  4062. }
  4063. }
  4064. },
  4065. [
  4066. {
  4067. name: "Normal",
  4068. height: math.unit(9, "feet"),
  4069. default: true
  4070. },
  4071. {
  4072. name: "Large",
  4073. height: math.unit(25, "feet")
  4074. },
  4075. {
  4076. name: "Macro",
  4077. height: math.unit(0.25, "miles")
  4078. },
  4079. {
  4080. name: "Megamacro",
  4081. height: math.unit(10, "miles")
  4082. }
  4083. ]
  4084. ))
  4085. characterMakers.push(() => makeCharacter(
  4086. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  4087. {
  4088. side: {
  4089. height: math.unit(2, "meter"),
  4090. weight: math.unit(140, "kg"),
  4091. name: "Side",
  4092. image: {
  4093. source: "./media/characters/sosha/side.svg",
  4094. extra: 1170/1006,
  4095. bottom: 94/1264
  4096. }
  4097. },
  4098. maw: {
  4099. height: math.unit(2.87, "feet"),
  4100. name: "Maw",
  4101. image: {
  4102. source: "./media/characters/sosha/maw.svg",
  4103. extra: 966/865,
  4104. bottom: 0/966
  4105. }
  4106. },
  4107. cooch: {
  4108. height: math.unit(5.6, "feet"),
  4109. name: "Cooch",
  4110. image: {
  4111. source: "./media/characters/sosha/cooch.svg"
  4112. }
  4113. },
  4114. },
  4115. [
  4116. {
  4117. name: "Normal",
  4118. height: math.unit(12, "feet"),
  4119. default: true
  4120. }
  4121. ]
  4122. ))
  4123. characterMakers.push(() => makeCharacter(
  4124. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4125. {
  4126. side: {
  4127. height: math.unit(5 + 5 / 12, "feet"),
  4128. weight: math.unit(170, "kg"),
  4129. name: "Side",
  4130. image: {
  4131. source: "./media/characters/runnola/side.svg",
  4132. extra: 741 / 448,
  4133. bottom: 0.05
  4134. }
  4135. },
  4136. },
  4137. [
  4138. {
  4139. name: "Small",
  4140. height: math.unit(3, "feet")
  4141. },
  4142. {
  4143. name: "Normal",
  4144. height: math.unit(5 + 5 / 12, "feet"),
  4145. default: true
  4146. },
  4147. {
  4148. name: "Big",
  4149. height: math.unit(10, "feet")
  4150. },
  4151. ]
  4152. ))
  4153. characterMakers.push(() => makeCharacter(
  4154. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4155. {
  4156. front: {
  4157. height: math.unit(2, "meter"),
  4158. weight: math.unit(50, "kg"),
  4159. name: "Front",
  4160. image: {
  4161. source: "./media/characters/kurribird/front.svg",
  4162. bottom: 0.015
  4163. }
  4164. },
  4165. frontAlt: {
  4166. height: math.unit(1.5, "meter"),
  4167. weight: math.unit(50, "kg"),
  4168. name: "Front (Alt)",
  4169. image: {
  4170. source: "./media/characters/kurribird/front-alt.svg",
  4171. extra: 1.45
  4172. }
  4173. },
  4174. },
  4175. [
  4176. {
  4177. name: "Normal",
  4178. height: math.unit(7, "feet")
  4179. },
  4180. {
  4181. name: "Big",
  4182. height: math.unit(12, "feet"),
  4183. default: true
  4184. },
  4185. {
  4186. name: "Macro",
  4187. height: math.unit(1500, "feet")
  4188. },
  4189. {
  4190. name: "Megamacro",
  4191. height: math.unit(2, "miles")
  4192. }
  4193. ]
  4194. ))
  4195. characterMakers.push(() => makeCharacter(
  4196. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4197. {
  4198. front: {
  4199. height: math.unit(2, "meter"),
  4200. weight: math.unit(80, "kg"),
  4201. name: "Front",
  4202. image: {
  4203. source: "./media/characters/elbial/front.svg",
  4204. extra: 1643 / 1556,
  4205. bottom: 60.2 / 1696
  4206. }
  4207. },
  4208. side: {
  4209. height: math.unit(2, "meter"),
  4210. weight: math.unit(80, "kg"),
  4211. name: "Side",
  4212. image: {
  4213. source: "./media/characters/elbial/side.svg",
  4214. extra: 1601/1528,
  4215. bottom: 97/1698
  4216. }
  4217. },
  4218. back: {
  4219. height: math.unit(2, "meter"),
  4220. weight: math.unit(80, "kg"),
  4221. name: "Back",
  4222. image: {
  4223. source: "./media/characters/elbial/back.svg",
  4224. extra: 1653/1569,
  4225. bottom: 20/1673
  4226. }
  4227. },
  4228. frontDressed: {
  4229. height: math.unit(2, "meter"),
  4230. weight: math.unit(80, "kg"),
  4231. name: "Front (Dressed)",
  4232. image: {
  4233. source: "./media/characters/elbial/front-dressed.svg",
  4234. extra: 1638/1569,
  4235. bottom: 70/1708
  4236. }
  4237. },
  4238. genitals: {
  4239. height: math.unit(2 / 3.367, "meter"),
  4240. name: "Genitals",
  4241. image: {
  4242. source: "./media/characters/elbial/genitals.svg"
  4243. }
  4244. },
  4245. },
  4246. [
  4247. {
  4248. name: "Large",
  4249. height: math.unit(100, "feet")
  4250. },
  4251. {
  4252. name: "Macro",
  4253. height: math.unit(500, "feet"),
  4254. default: true
  4255. },
  4256. {
  4257. name: "Megamacro",
  4258. height: math.unit(10, "miles")
  4259. },
  4260. {
  4261. name: "Gigamacro",
  4262. height: math.unit(25000, "miles")
  4263. },
  4264. {
  4265. name: "Full-Size",
  4266. height: math.unit(8000000, "gigaparsecs")
  4267. }
  4268. ]
  4269. ))
  4270. characterMakers.push(() => makeCharacter(
  4271. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4272. {
  4273. front: {
  4274. height: math.unit(2, "meter"),
  4275. weight: math.unit(60, "kg"),
  4276. name: "Front",
  4277. image: {
  4278. source: "./media/characters/noah/front.svg"
  4279. }
  4280. },
  4281. talons: {
  4282. height: math.unit(0.315, "meter"),
  4283. name: "Talons",
  4284. image: {
  4285. source: "./media/characters/noah/talons.svg"
  4286. }
  4287. }
  4288. },
  4289. [
  4290. {
  4291. name: "Large",
  4292. height: math.unit(50, "feet")
  4293. },
  4294. {
  4295. name: "Macro",
  4296. height: math.unit(750, "feet"),
  4297. default: true
  4298. },
  4299. {
  4300. name: "Megamacro",
  4301. height: math.unit(50, "miles")
  4302. },
  4303. {
  4304. name: "Gigamacro",
  4305. height: math.unit(100000, "miles")
  4306. },
  4307. {
  4308. name: "Full-Size",
  4309. height: math.unit(3000000000, "miles")
  4310. }
  4311. ]
  4312. ))
  4313. characterMakers.push(() => makeCharacter(
  4314. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4315. {
  4316. front: {
  4317. height: math.unit(2, "meter"),
  4318. weight: math.unit(80, "kg"),
  4319. name: "Front",
  4320. image: {
  4321. source: "./media/characters/natalya/front.svg"
  4322. }
  4323. },
  4324. back: {
  4325. height: math.unit(2, "meter"),
  4326. weight: math.unit(80, "kg"),
  4327. name: "Back",
  4328. image: {
  4329. source: "./media/characters/natalya/back.svg"
  4330. }
  4331. }
  4332. },
  4333. [
  4334. {
  4335. name: "Normal",
  4336. height: math.unit(150, "feet"),
  4337. default: true
  4338. },
  4339. {
  4340. name: "Megamacro",
  4341. height: math.unit(5, "miles")
  4342. },
  4343. {
  4344. name: "Full-Size",
  4345. height: math.unit(600, "kiloparsecs")
  4346. }
  4347. ]
  4348. ))
  4349. characterMakers.push(() => makeCharacter(
  4350. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4351. {
  4352. front: {
  4353. height: math.unit(2, "meter"),
  4354. weight: math.unit(50, "kg"),
  4355. name: "Front",
  4356. image: {
  4357. source: "./media/characters/erestrebah/front.svg",
  4358. extra: 1262/1162,
  4359. bottom: 96/1358
  4360. }
  4361. },
  4362. back: {
  4363. height: math.unit(2, "meter"),
  4364. weight: math.unit(50, "kg"),
  4365. name: "Back",
  4366. image: {
  4367. source: "./media/characters/erestrebah/back.svg",
  4368. extra: 1257/1139,
  4369. bottom: 13/1270
  4370. }
  4371. },
  4372. wing: {
  4373. height: math.unit(2, "meter"),
  4374. weight: math.unit(50, "kg"),
  4375. name: "Wing",
  4376. image: {
  4377. source: "./media/characters/erestrebah/wing.svg",
  4378. extra: 1262/1162,
  4379. bottom: 96/1358
  4380. }
  4381. },
  4382. mouth: {
  4383. height: math.unit(0.39, "feet"),
  4384. name: "Mouth",
  4385. image: {
  4386. source: "./media/characters/erestrebah/mouth.svg"
  4387. }
  4388. }
  4389. },
  4390. [
  4391. {
  4392. name: "Normal",
  4393. height: math.unit(10, "feet")
  4394. },
  4395. {
  4396. name: "Large",
  4397. height: math.unit(50, "feet"),
  4398. default: true
  4399. },
  4400. {
  4401. name: "Macro",
  4402. height: math.unit(300, "feet")
  4403. },
  4404. {
  4405. name: "Macro+",
  4406. height: math.unit(750, "feet")
  4407. },
  4408. {
  4409. name: "Megamacro",
  4410. height: math.unit(3, "miles")
  4411. }
  4412. ]
  4413. ))
  4414. characterMakers.push(() => makeCharacter(
  4415. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4416. {
  4417. front: {
  4418. height: math.unit(2, "meter"),
  4419. weight: math.unit(80, "kg"),
  4420. name: "Front",
  4421. image: {
  4422. source: "./media/characters/jennifer/front.svg",
  4423. bottom: 0.11,
  4424. extra: 1.16
  4425. }
  4426. },
  4427. frontAlt: {
  4428. height: math.unit(2, "meter"),
  4429. weight: math.unit(80, "kg"),
  4430. name: "Front (Alt)",
  4431. image: {
  4432. source: "./media/characters/jennifer/front-alt.svg"
  4433. }
  4434. }
  4435. },
  4436. [
  4437. {
  4438. name: "Canon Height",
  4439. height: math.unit(120, "feet"),
  4440. default: true
  4441. },
  4442. {
  4443. name: "Macro+",
  4444. height: math.unit(300, "feet")
  4445. },
  4446. {
  4447. name: "Megamacro",
  4448. height: math.unit(20000, "feet")
  4449. }
  4450. ]
  4451. ))
  4452. characterMakers.push(() => makeCharacter(
  4453. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4454. {
  4455. front: {
  4456. height: math.unit(2, "meter"),
  4457. weight: math.unit(50, "kg"),
  4458. name: "Front",
  4459. image: {
  4460. source: "./media/characters/kalista/front.svg",
  4461. extra: 1314/1145,
  4462. bottom: 101/1415
  4463. }
  4464. },
  4465. back: {
  4466. height: math.unit(2, "meter"),
  4467. weight: math.unit(50, "kg"),
  4468. name: "Back",
  4469. image: {
  4470. source: "./media/characters/kalista/back.svg",
  4471. extra: 1366 / 1156,
  4472. bottom: 33.9 / 1362.78
  4473. }
  4474. }
  4475. },
  4476. [
  4477. {
  4478. name: "Uncomfortably Small",
  4479. height: math.unit(10, "feet")
  4480. },
  4481. {
  4482. name: "Small",
  4483. height: math.unit(30, "feet")
  4484. },
  4485. {
  4486. name: "Macro",
  4487. height: math.unit(100, "feet"),
  4488. default: true
  4489. },
  4490. {
  4491. name: "Macro+",
  4492. height: math.unit(2000, "feet")
  4493. },
  4494. {
  4495. name: "True Form",
  4496. height: math.unit(8924, "miles")
  4497. }
  4498. ]
  4499. ))
  4500. characterMakers.push(() => makeCharacter(
  4501. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4502. {
  4503. front: {
  4504. height: math.unit(2, "meter"),
  4505. weight: math.unit(120, "kg"),
  4506. name: "Front",
  4507. image: {
  4508. source: "./media/characters/ggv/front.svg"
  4509. }
  4510. },
  4511. side: {
  4512. height: math.unit(2, "meter"),
  4513. weight: math.unit(120, "kg"),
  4514. name: "Side",
  4515. image: {
  4516. source: "./media/characters/ggv/side.svg"
  4517. }
  4518. }
  4519. },
  4520. [
  4521. {
  4522. name: "Extremely Puny",
  4523. height: math.unit(9 + 5 / 12, "feet")
  4524. },
  4525. {
  4526. name: "Horribly Small",
  4527. height: math.unit(47.7, "miles"),
  4528. default: true
  4529. },
  4530. {
  4531. name: "Reasonably Sized",
  4532. height: math.unit(25000, "parsecs")
  4533. },
  4534. {
  4535. name: "Slightly Uncompressed",
  4536. height: math.unit(7.77e31, "parsecs")
  4537. },
  4538. {
  4539. name: "Omniversal",
  4540. height: math.unit(1e300, "meters")
  4541. },
  4542. ]
  4543. ))
  4544. characterMakers.push(() => makeCharacter(
  4545. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4546. {
  4547. front: {
  4548. height: math.unit(2, "meter"),
  4549. weight: math.unit(75, "lb"),
  4550. name: "Front",
  4551. image: {
  4552. source: "./media/characters/napalm/front.svg"
  4553. }
  4554. },
  4555. back: {
  4556. height: math.unit(2, "meter"),
  4557. weight: math.unit(75, "lb"),
  4558. name: "Back",
  4559. image: {
  4560. source: "./media/characters/napalm/back.svg"
  4561. }
  4562. }
  4563. },
  4564. [
  4565. {
  4566. name: "Standard",
  4567. height: math.unit(55, "feet"),
  4568. default: true
  4569. }
  4570. ]
  4571. ))
  4572. characterMakers.push(() => makeCharacter(
  4573. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4574. {
  4575. front: {
  4576. height: math.unit(7 + 5 / 6, "feet"),
  4577. weight: math.unit(325, "lb"),
  4578. name: "Front",
  4579. image: {
  4580. source: "./media/characters/asana/front.svg",
  4581. extra: 1133 / 1060,
  4582. bottom: 15.2 / 1148.6
  4583. }
  4584. },
  4585. back: {
  4586. height: math.unit(7 + 5 / 6, "feet"),
  4587. weight: math.unit(325, "lb"),
  4588. name: "Back",
  4589. image: {
  4590. source: "./media/characters/asana/back.svg",
  4591. extra: 1114 / 1043,
  4592. bottom: 5 / 1120
  4593. }
  4594. },
  4595. dressedDark: {
  4596. height: math.unit(7 + 5 / 6, "feet"),
  4597. weight: math.unit(325, "lb"),
  4598. name: "Dressed (Dark)",
  4599. image: {
  4600. source: "./media/characters/asana/dressed-dark.svg",
  4601. extra: 1133 / 1060,
  4602. bottom: 15.2 / 1148.6
  4603. }
  4604. },
  4605. dressedLight: {
  4606. height: math.unit(7 + 5 / 6, "feet"),
  4607. weight: math.unit(325, "lb"),
  4608. name: "Dressed (Light)",
  4609. image: {
  4610. source: "./media/characters/asana/dressed-light.svg",
  4611. extra: 1133 / 1060,
  4612. bottom: 15.2 / 1148.6
  4613. }
  4614. },
  4615. },
  4616. [
  4617. {
  4618. name: "Standard",
  4619. height: math.unit(7 + 5 / 6, "feet"),
  4620. default: true
  4621. },
  4622. {
  4623. name: "Large",
  4624. height: math.unit(10, "meters")
  4625. },
  4626. {
  4627. name: "Macro",
  4628. height: math.unit(2500, "meters")
  4629. },
  4630. {
  4631. name: "Megamacro",
  4632. height: math.unit(5e6, "meters")
  4633. },
  4634. {
  4635. name: "Examacro",
  4636. height: math.unit(5e12, "lightyears")
  4637. },
  4638. {
  4639. name: "Max Size",
  4640. height: math.unit(1e31, "lightyears")
  4641. }
  4642. ]
  4643. ))
  4644. characterMakers.push(() => makeCharacter(
  4645. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4646. {
  4647. front: {
  4648. height: math.unit(2, "meter"),
  4649. weight: math.unit(60, "kg"),
  4650. name: "Front",
  4651. image: {
  4652. source: "./media/characters/ebony/front.svg",
  4653. bottom: 0.03,
  4654. extra: 1045 / 810 + 0.03
  4655. }
  4656. },
  4657. side: {
  4658. height: math.unit(2, "meter"),
  4659. weight: math.unit(60, "kg"),
  4660. name: "Side",
  4661. image: {
  4662. source: "./media/characters/ebony/side.svg",
  4663. bottom: 0.03,
  4664. extra: 1045 / 810 + 0.03
  4665. }
  4666. },
  4667. back: {
  4668. height: math.unit(2, "meter"),
  4669. weight: math.unit(60, "kg"),
  4670. name: "Back",
  4671. image: {
  4672. source: "./media/characters/ebony/back.svg",
  4673. bottom: 0.01,
  4674. extra: 1045 / 810 + 0.01
  4675. }
  4676. },
  4677. },
  4678. [
  4679. // TODO check why I did this lol
  4680. {
  4681. name: "Standard",
  4682. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4683. default: true
  4684. },
  4685. {
  4686. name: "Macro",
  4687. height: math.unit(200, "feet")
  4688. },
  4689. {
  4690. name: "Gigamacro",
  4691. height: math.unit(13000, "km")
  4692. }
  4693. ]
  4694. ))
  4695. characterMakers.push(() => makeCharacter(
  4696. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4697. {
  4698. front: {
  4699. height: math.unit(6, "feet"),
  4700. weight: math.unit(175, "lb"),
  4701. name: "Front",
  4702. image: {
  4703. source: "./media/characters/mountain/front.svg",
  4704. extra: 972 / 955,
  4705. bottom: 64 / 1036.6
  4706. }
  4707. },
  4708. back: {
  4709. height: math.unit(6, "feet"),
  4710. weight: math.unit(175, "lb"),
  4711. name: "Back",
  4712. image: {
  4713. source: "./media/characters/mountain/back.svg",
  4714. extra: 970 / 950,
  4715. bottom: 28.25 / 999
  4716. }
  4717. },
  4718. },
  4719. [
  4720. {
  4721. name: "Large",
  4722. height: math.unit(20, "meters")
  4723. },
  4724. {
  4725. name: "Macro",
  4726. height: math.unit(300, "meters")
  4727. },
  4728. {
  4729. name: "Gigamacro",
  4730. height: math.unit(10000, "km"),
  4731. default: true
  4732. },
  4733. {
  4734. name: "Examacro",
  4735. height: math.unit(10e9, "lightyears")
  4736. }
  4737. ]
  4738. ))
  4739. characterMakers.push(() => makeCharacter(
  4740. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4741. {
  4742. front: {
  4743. height: math.unit(8, "feet"),
  4744. weight: math.unit(500, "lb"),
  4745. name: "Front",
  4746. image: {
  4747. source: "./media/characters/rick/front.svg"
  4748. }
  4749. }
  4750. },
  4751. [
  4752. {
  4753. name: "Normal",
  4754. height: math.unit(8, "feet"),
  4755. default: true
  4756. },
  4757. {
  4758. name: "Macro",
  4759. height: math.unit(5, "km")
  4760. }
  4761. ]
  4762. ))
  4763. characterMakers.push(() => makeCharacter(
  4764. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4765. {
  4766. front: {
  4767. height: math.unit(8, "feet"),
  4768. weight: math.unit(120, "lb"),
  4769. name: "Front",
  4770. image: {
  4771. source: "./media/characters/ona/front.svg"
  4772. }
  4773. },
  4774. frontAlt: {
  4775. height: math.unit(8, "feet"),
  4776. weight: math.unit(120, "lb"),
  4777. name: "Front (Alt)",
  4778. image: {
  4779. source: "./media/characters/ona/front-alt.svg"
  4780. }
  4781. },
  4782. back: {
  4783. height: math.unit(8, "feet"),
  4784. weight: math.unit(120, "lb"),
  4785. name: "Back",
  4786. image: {
  4787. source: "./media/characters/ona/back.svg"
  4788. }
  4789. },
  4790. foot: {
  4791. height: math.unit(1.1, "feet"),
  4792. name: "Foot",
  4793. image: {
  4794. source: "./media/characters/ona/foot.svg"
  4795. }
  4796. }
  4797. },
  4798. [
  4799. {
  4800. name: "Megamacro",
  4801. height: math.unit(70, "km"),
  4802. default: true
  4803. },
  4804. {
  4805. name: "Gigamacro",
  4806. height: math.unit(681818, "miles")
  4807. },
  4808. {
  4809. name: "Examacro",
  4810. height: math.unit(3800000, "lightyears")
  4811. },
  4812. ]
  4813. ))
  4814. characterMakers.push(() => makeCharacter(
  4815. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4816. {
  4817. front: {
  4818. height: math.unit(12, "feet"),
  4819. weight: math.unit(3000, "lb"),
  4820. name: "Front",
  4821. image: {
  4822. source: "./media/characters/mech/front.svg",
  4823. extra: 2900 / 2770,
  4824. bottom: 110 / 3010
  4825. }
  4826. },
  4827. back: {
  4828. height: math.unit(12, "feet"),
  4829. weight: math.unit(3000, "lb"),
  4830. name: "Back",
  4831. image: {
  4832. source: "./media/characters/mech/back.svg",
  4833. extra: 3011 / 2890,
  4834. bottom: 94 / 3105
  4835. }
  4836. },
  4837. maw: {
  4838. height: math.unit(3.07, "feet"),
  4839. name: "Maw",
  4840. image: {
  4841. source: "./media/characters/mech/maw.svg"
  4842. }
  4843. },
  4844. head: {
  4845. height: math.unit(3.07, "feet"),
  4846. name: "Head",
  4847. image: {
  4848. source: "./media/characters/mech/head.svg"
  4849. }
  4850. },
  4851. dick: {
  4852. height: math.unit(1.43, "feet"),
  4853. name: "Dick",
  4854. image: {
  4855. source: "./media/characters/mech/dick.svg"
  4856. }
  4857. },
  4858. },
  4859. [
  4860. {
  4861. name: "Normal",
  4862. height: math.unit(12, "feet")
  4863. },
  4864. {
  4865. name: "Macro",
  4866. height: math.unit(300, "feet"),
  4867. default: true
  4868. },
  4869. {
  4870. name: "Macro+",
  4871. height: math.unit(1500, "feet")
  4872. },
  4873. ]
  4874. ))
  4875. characterMakers.push(() => makeCharacter(
  4876. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4877. {
  4878. front: {
  4879. height: math.unit(1.3, "meter"),
  4880. weight: math.unit(30, "kg"),
  4881. name: "Front",
  4882. image: {
  4883. source: "./media/characters/gregory/front.svg",
  4884. }
  4885. }
  4886. },
  4887. [
  4888. {
  4889. name: "Normal",
  4890. height: math.unit(1.3, "meter"),
  4891. default: true
  4892. },
  4893. {
  4894. name: "Macro",
  4895. height: math.unit(20, "meter")
  4896. }
  4897. ]
  4898. ))
  4899. characterMakers.push(() => makeCharacter(
  4900. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4901. {
  4902. front: {
  4903. height: math.unit(2.8, "meter"),
  4904. weight: math.unit(200, "kg"),
  4905. name: "Front",
  4906. image: {
  4907. source: "./media/characters/elory/front.svg",
  4908. }
  4909. }
  4910. },
  4911. [
  4912. {
  4913. name: "Normal",
  4914. height: math.unit(2.8, "meter"),
  4915. default: true
  4916. },
  4917. {
  4918. name: "Macro",
  4919. height: math.unit(38, "meter")
  4920. }
  4921. ]
  4922. ))
  4923. characterMakers.push(() => makeCharacter(
  4924. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4925. {
  4926. front: {
  4927. height: math.unit(470, "feet"),
  4928. weight: math.unit(924, "tons"),
  4929. name: "Front",
  4930. image: {
  4931. source: "./media/characters/angelpatamon/front.svg",
  4932. }
  4933. }
  4934. },
  4935. [
  4936. {
  4937. name: "Normal",
  4938. height: math.unit(470, "feet"),
  4939. default: true
  4940. },
  4941. {
  4942. name: "Deity Size I",
  4943. height: math.unit(28651.2, "km")
  4944. },
  4945. {
  4946. name: "Deity Size II",
  4947. height: math.unit(171907.2, "km")
  4948. }
  4949. ]
  4950. ))
  4951. characterMakers.push(() => makeCharacter(
  4952. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4953. {
  4954. side: {
  4955. height: math.unit(7.2, "meter"),
  4956. weight: math.unit(8.2, "tons"),
  4957. name: "Side",
  4958. image: {
  4959. source: "./media/characters/cryae/side.svg",
  4960. extra: 3500 / 1500
  4961. }
  4962. }
  4963. },
  4964. [
  4965. {
  4966. name: "Normal",
  4967. height: math.unit(7.2, "meter"),
  4968. default: true
  4969. }
  4970. ]
  4971. ))
  4972. characterMakers.push(() => makeCharacter(
  4973. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4974. {
  4975. front: {
  4976. height: math.unit(6, "feet"),
  4977. weight: math.unit(175, "lb"),
  4978. name: "Front",
  4979. image: {
  4980. source: "./media/characters/xera/front.svg",
  4981. extra: 2377 / 1972,
  4982. bottom: 75.5 / 2452
  4983. }
  4984. },
  4985. side: {
  4986. height: math.unit(6, "feet"),
  4987. weight: math.unit(175, "lb"),
  4988. name: "Side",
  4989. image: {
  4990. source: "./media/characters/xera/side.svg",
  4991. extra: 2345 / 2019,
  4992. bottom: 39.7 / 2384
  4993. }
  4994. },
  4995. back: {
  4996. height: math.unit(6, "feet"),
  4997. weight: math.unit(175, "lb"),
  4998. name: "Back",
  4999. image: {
  5000. source: "./media/characters/xera/back.svg",
  5001. extra: 2095 / 1984,
  5002. bottom: 67 / 2166
  5003. }
  5004. },
  5005. },
  5006. [
  5007. {
  5008. name: "Small",
  5009. height: math.unit(10, "feet")
  5010. },
  5011. {
  5012. name: "Macro",
  5013. height: math.unit(500, "meters"),
  5014. default: true
  5015. },
  5016. {
  5017. name: "Macro+",
  5018. height: math.unit(10, "km")
  5019. },
  5020. {
  5021. name: "Gigamacro",
  5022. height: math.unit(25000, "km")
  5023. },
  5024. {
  5025. name: "Teramacro",
  5026. height: math.unit(3e6, "km")
  5027. }
  5028. ]
  5029. ))
  5030. characterMakers.push(() => makeCharacter(
  5031. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  5032. {
  5033. front: {
  5034. height: math.unit(6, "feet"),
  5035. weight: math.unit(175, "lb"),
  5036. name: "Front",
  5037. image: {
  5038. source: "./media/characters/nebula/front.svg",
  5039. extra: 2566 / 2362,
  5040. bottom: 81 / 2644
  5041. }
  5042. }
  5043. },
  5044. [
  5045. {
  5046. name: "Small",
  5047. height: math.unit(4.5, "meters")
  5048. },
  5049. {
  5050. name: "Macro",
  5051. height: math.unit(1500, "meters"),
  5052. default: true
  5053. },
  5054. {
  5055. name: "Megamacro",
  5056. height: math.unit(150, "km")
  5057. },
  5058. {
  5059. name: "Gigamacro",
  5060. height: math.unit(27000, "km")
  5061. }
  5062. ]
  5063. ))
  5064. characterMakers.push(() => makeCharacter(
  5065. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  5066. {
  5067. front: {
  5068. height: math.unit(6, "feet"),
  5069. weight: math.unit(225, "lb"),
  5070. name: "Front",
  5071. image: {
  5072. source: "./media/characters/abysgar/front.svg",
  5073. extra: 1739/1614,
  5074. bottom: 71/1810
  5075. }
  5076. },
  5077. frontNsfw: {
  5078. height: math.unit(6, "feet"),
  5079. weight: math.unit(225, "lb"),
  5080. name: "Front (NSFW)",
  5081. image: {
  5082. source: "./media/characters/abysgar/front-nsfw.svg",
  5083. extra: 1739/1614,
  5084. bottom: 71/1810
  5085. }
  5086. },
  5087. back: {
  5088. height: math.unit(4.6, "feet"),
  5089. weight: math.unit(225, "lb"),
  5090. name: "Back",
  5091. image: {
  5092. source: "./media/characters/abysgar/back.svg",
  5093. extra: 1384/1327,
  5094. bottom: 0/1384
  5095. }
  5096. },
  5097. head: {
  5098. height: math.unit(1.25, "feet"),
  5099. name: "Head",
  5100. image: {
  5101. source: "./media/characters/abysgar/head.svg",
  5102. extra: 669/569,
  5103. bottom: 0/669
  5104. }
  5105. },
  5106. },
  5107. [
  5108. {
  5109. name: "Small",
  5110. height: math.unit(4.5, "meters")
  5111. },
  5112. {
  5113. name: "Macro",
  5114. height: math.unit(1250, "meters"),
  5115. default: true
  5116. },
  5117. {
  5118. name: "Megamacro",
  5119. height: math.unit(125, "km")
  5120. },
  5121. {
  5122. name: "Gigamacro",
  5123. height: math.unit(26000, "km")
  5124. }
  5125. ]
  5126. ))
  5127. characterMakers.push(() => makeCharacter(
  5128. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5129. {
  5130. front: {
  5131. height: math.unit(6, "feet"),
  5132. weight: math.unit(180, "lb"),
  5133. name: "Front",
  5134. image: {
  5135. source: "./media/characters/yakuz/front.svg"
  5136. }
  5137. }
  5138. },
  5139. [
  5140. {
  5141. name: "Small",
  5142. height: math.unit(5, "meters")
  5143. },
  5144. {
  5145. name: "Macro",
  5146. height: math.unit(1500, "meters"),
  5147. default: true
  5148. },
  5149. {
  5150. name: "Megamacro",
  5151. height: math.unit(200, "km")
  5152. },
  5153. {
  5154. name: "Gigamacro",
  5155. height: math.unit(100000, "km")
  5156. }
  5157. ]
  5158. ))
  5159. characterMakers.push(() => makeCharacter(
  5160. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5161. {
  5162. front: {
  5163. height: math.unit(6, "feet"),
  5164. weight: math.unit(175, "lb"),
  5165. name: "Front",
  5166. image: {
  5167. source: "./media/characters/mirova/front.svg",
  5168. extra: 3334 / 3071,
  5169. bottom: 42 / 3375.6
  5170. }
  5171. }
  5172. },
  5173. [
  5174. {
  5175. name: "Small",
  5176. height: math.unit(5, "meters")
  5177. },
  5178. {
  5179. name: "Macro",
  5180. height: math.unit(900, "meters"),
  5181. default: true
  5182. },
  5183. {
  5184. name: "Megamacro",
  5185. height: math.unit(135, "km")
  5186. },
  5187. {
  5188. name: "Gigamacro",
  5189. height: math.unit(20000, "km")
  5190. }
  5191. ]
  5192. ))
  5193. characterMakers.push(() => makeCharacter(
  5194. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5195. {
  5196. side: {
  5197. height: math.unit(28.35, "feet"),
  5198. weight: math.unit(99.75, "tons"),
  5199. name: "Side",
  5200. image: {
  5201. source: "./media/characters/asana-mech/side.svg",
  5202. extra: 923 / 699,
  5203. bottom: 50 / 975
  5204. }
  5205. },
  5206. chaingun: {
  5207. height: math.unit(7, "feet"),
  5208. weight: math.unit(2400, "lb"),
  5209. name: "Chaingun",
  5210. image: {
  5211. source: "./media/characters/asana-mech/chaingun.svg"
  5212. }
  5213. },
  5214. laser: {
  5215. height: math.unit(7.12, "feet"),
  5216. weight: math.unit(2000, "lb"),
  5217. name: "Laser",
  5218. image: {
  5219. source: "./media/characters/asana-mech/laser.svg"
  5220. }
  5221. },
  5222. },
  5223. [
  5224. {
  5225. name: "Normal",
  5226. height: math.unit(28.35, "feet"),
  5227. default: true
  5228. },
  5229. {
  5230. name: "Macro",
  5231. height: math.unit(2500, "feet")
  5232. },
  5233. {
  5234. name: "Megamacro",
  5235. height: math.unit(25, "miles")
  5236. },
  5237. {
  5238. name: "Examacro",
  5239. height: math.unit(6e8, "lightyears")
  5240. },
  5241. ]
  5242. ))
  5243. characterMakers.push(() => makeCharacter(
  5244. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5245. {
  5246. front: {
  5247. height: math.unit(5, "meters"),
  5248. weight: math.unit(1000, "kg"),
  5249. name: "Front",
  5250. image: {
  5251. source: "./media/characters/asche/front.svg",
  5252. extra: 1258 / 1190,
  5253. bottom: 47 / 1305
  5254. }
  5255. },
  5256. frontUnderwear: {
  5257. height: math.unit(5, "meters"),
  5258. weight: math.unit(1000, "kg"),
  5259. name: "Front (Underwear)",
  5260. image: {
  5261. source: "./media/characters/asche/front-underwear.svg",
  5262. extra: 1258 / 1190,
  5263. bottom: 47 / 1305
  5264. }
  5265. },
  5266. frontDressed: {
  5267. height: math.unit(5, "meters"),
  5268. weight: math.unit(1000, "kg"),
  5269. name: "Front (Dressed)",
  5270. image: {
  5271. source: "./media/characters/asche/front-dressed.svg",
  5272. extra: 1258 / 1190,
  5273. bottom: 47 / 1305
  5274. }
  5275. },
  5276. frontArmor: {
  5277. height: math.unit(5, "meters"),
  5278. weight: math.unit(1000, "kg"),
  5279. name: "Front (Armored)",
  5280. image: {
  5281. source: "./media/characters/asche/front-armored.svg",
  5282. extra: 1374 / 1308,
  5283. bottom: 23 / 1397
  5284. }
  5285. },
  5286. mp724: {
  5287. height: math.unit(0.96, "meters"),
  5288. weight: math.unit(38, "kg"),
  5289. name: "H&K MP724",
  5290. image: {
  5291. source: "./media/characters/asche/h&k-mp724.svg"
  5292. }
  5293. },
  5294. side: {
  5295. height: math.unit(5, "meters"),
  5296. weight: math.unit(1000, "kg"),
  5297. name: "Side",
  5298. image: {
  5299. source: "./media/characters/asche/side.svg",
  5300. extra: 1717 / 1609,
  5301. bottom: 0.005
  5302. }
  5303. },
  5304. back: {
  5305. height: math.unit(5, "meters"),
  5306. weight: math.unit(1000, "kg"),
  5307. name: "Back",
  5308. image: {
  5309. source: "./media/characters/asche/back.svg",
  5310. extra: 1570 / 1501
  5311. }
  5312. },
  5313. },
  5314. [
  5315. {
  5316. name: "DEFCON 5",
  5317. height: math.unit(5, "meters")
  5318. },
  5319. {
  5320. name: "DEFCON 4",
  5321. height: math.unit(500, "meters"),
  5322. default: true
  5323. },
  5324. {
  5325. name: "DEFCON 3",
  5326. height: math.unit(5, "km")
  5327. },
  5328. {
  5329. name: "DEFCON 2",
  5330. height: math.unit(500, "km")
  5331. },
  5332. {
  5333. name: "DEFCON 1",
  5334. height: math.unit(500000, "km")
  5335. },
  5336. {
  5337. name: "DEFCON 0",
  5338. height: math.unit(3, "gigaparsecs")
  5339. },
  5340. ]
  5341. ))
  5342. characterMakers.push(() => makeCharacter(
  5343. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5344. {
  5345. front: {
  5346. height: math.unit(7, "feet"),
  5347. weight: math.unit(92.7, "kg"),
  5348. name: "Front",
  5349. image: {
  5350. source: "./media/characters/gale/front.svg",
  5351. extra: 977/919,
  5352. bottom: 105/1082
  5353. }
  5354. },
  5355. side: {
  5356. height: math.unit(6.7, "feet"),
  5357. weight: math.unit(92.7, "kg"),
  5358. name: "Side",
  5359. image: {
  5360. source: "./media/characters/gale/side.svg",
  5361. extra: 978/922,
  5362. bottom: 140/1118
  5363. }
  5364. },
  5365. back: {
  5366. height: math.unit(7, "feet"),
  5367. weight: math.unit(92.7, "kg"),
  5368. name: "Back",
  5369. image: {
  5370. source: "./media/characters/gale/back.svg",
  5371. extra: 966/920,
  5372. bottom: 61/1027
  5373. }
  5374. },
  5375. maw: {
  5376. height: math.unit(2.23, "feet"),
  5377. name: "Maw",
  5378. image: {
  5379. source: "./media/characters/gale/maw.svg"
  5380. }
  5381. },
  5382. foot: {
  5383. height: math.unit(2.1, "feet"),
  5384. name: "Foot",
  5385. image: {
  5386. source: "./media/characters/gale/foot.svg"
  5387. }
  5388. },
  5389. },
  5390. [
  5391. {
  5392. name: "Normal",
  5393. height: math.unit(7, "feet")
  5394. },
  5395. {
  5396. name: "Macro",
  5397. height: math.unit(150, "feet"),
  5398. default: true
  5399. },
  5400. {
  5401. name: "Macro+",
  5402. height: math.unit(300, "feet")
  5403. },
  5404. ]
  5405. ))
  5406. characterMakers.push(() => makeCharacter(
  5407. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5408. {
  5409. front: {
  5410. height: math.unit(5 + 10/12, "feet"),
  5411. weight: math.unit(67, "kg"),
  5412. name: "Front",
  5413. image: {
  5414. source: "./media/characters/draylen/front.svg",
  5415. extra: 832/777,
  5416. bottom: 85/917
  5417. }
  5418. }
  5419. },
  5420. [
  5421. {
  5422. name: "Normal",
  5423. height: math.unit(5 + 10/12, "feet")
  5424. },
  5425. {
  5426. name: "Macro",
  5427. height: math.unit(150, "feet"),
  5428. default: true
  5429. }
  5430. ]
  5431. ))
  5432. characterMakers.push(() => makeCharacter(
  5433. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5434. {
  5435. front: {
  5436. height: math.unit(7 + 9 / 12, "feet"),
  5437. weight: math.unit(379, "lbs"),
  5438. name: "Front",
  5439. image: {
  5440. source: "./media/characters/chez/front.svg"
  5441. }
  5442. },
  5443. side: {
  5444. height: math.unit(7 + 9 / 12, "feet"),
  5445. weight: math.unit(379, "lbs"),
  5446. name: "Side",
  5447. image: {
  5448. source: "./media/characters/chez/side.svg"
  5449. }
  5450. }
  5451. },
  5452. [
  5453. {
  5454. name: "Normal",
  5455. height: math.unit(7 + 9 / 12, "feet"),
  5456. default: true
  5457. },
  5458. {
  5459. name: "God King",
  5460. height: math.unit(9750000, "meters")
  5461. }
  5462. ]
  5463. ))
  5464. characterMakers.push(() => makeCharacter(
  5465. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5466. {
  5467. front: {
  5468. height: math.unit(6, "feet"),
  5469. weight: math.unit(275, "lbs"),
  5470. name: "Front",
  5471. image: {
  5472. source: "./media/characters/kaylum/front.svg",
  5473. bottom: 0.01,
  5474. extra: 1166 / 1031
  5475. }
  5476. },
  5477. frontWingless: {
  5478. height: math.unit(6, "feet"),
  5479. weight: math.unit(275, "lbs"),
  5480. name: "Front (Wingless)",
  5481. image: {
  5482. source: "./media/characters/kaylum/front-wingless.svg",
  5483. bottom: 0.01,
  5484. extra: 1117 / 1031
  5485. }
  5486. }
  5487. },
  5488. [
  5489. {
  5490. name: "Normal",
  5491. height: math.unit(3.05, "meters")
  5492. },
  5493. {
  5494. name: "Master",
  5495. height: math.unit(5.5, "meters")
  5496. },
  5497. {
  5498. name: "Rampage",
  5499. height: math.unit(19, "meters")
  5500. },
  5501. {
  5502. name: "Macro Lite",
  5503. height: math.unit(37, "meters")
  5504. },
  5505. {
  5506. name: "Hyper Predator",
  5507. height: math.unit(61, "meters")
  5508. },
  5509. {
  5510. name: "Macro",
  5511. height: math.unit(138, "meters"),
  5512. default: true
  5513. }
  5514. ]
  5515. ))
  5516. characterMakers.push(() => makeCharacter(
  5517. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5518. {
  5519. front: {
  5520. height: math.unit(5 + 5 / 12, "feet"),
  5521. weight: math.unit(120, "lbs"),
  5522. name: "Front",
  5523. image: {
  5524. source: "./media/characters/geta/front.svg",
  5525. extra: 1003/933,
  5526. bottom: 21/1024
  5527. }
  5528. },
  5529. paw: {
  5530. height: math.unit(0.35, "feet"),
  5531. name: "Paw",
  5532. image: {
  5533. source: "./media/characters/geta/paw.svg"
  5534. }
  5535. },
  5536. },
  5537. [
  5538. {
  5539. name: "Micro",
  5540. height: math.unit(3, "inches"),
  5541. default: true
  5542. },
  5543. {
  5544. name: "Normal",
  5545. height: math.unit(5 + 5 / 12, "feet")
  5546. }
  5547. ]
  5548. ))
  5549. characterMakers.push(() => makeCharacter(
  5550. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5551. {
  5552. front: {
  5553. height: math.unit(6, "feet"),
  5554. weight: math.unit(300, "lbs"),
  5555. name: "Front",
  5556. image: {
  5557. source: "./media/characters/tyrnn/front.svg"
  5558. }
  5559. }
  5560. },
  5561. [
  5562. {
  5563. name: "Main Height",
  5564. height: math.unit(355, "feet"),
  5565. default: true
  5566. },
  5567. {
  5568. name: "Fave. Height",
  5569. height: math.unit(2400, "feet")
  5570. }
  5571. ]
  5572. ))
  5573. characterMakers.push(() => makeCharacter(
  5574. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5575. {
  5576. front: {
  5577. height: math.unit(6, "feet"),
  5578. weight: math.unit(300, "lbs"),
  5579. name: "Front",
  5580. image: {
  5581. source: "./media/characters/appledectomy/front.svg"
  5582. }
  5583. }
  5584. },
  5585. [
  5586. {
  5587. name: "Macro",
  5588. height: math.unit(2500, "feet")
  5589. },
  5590. {
  5591. name: "Megamacro",
  5592. height: math.unit(50, "miles"),
  5593. default: true
  5594. },
  5595. {
  5596. name: "Gigamacro",
  5597. height: math.unit(5000, "miles")
  5598. },
  5599. {
  5600. name: "Teramacro",
  5601. height: math.unit(250000, "miles")
  5602. },
  5603. ]
  5604. ))
  5605. characterMakers.push(() => makeCharacter(
  5606. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5607. {
  5608. front: {
  5609. height: math.unit(6, "feet"),
  5610. weight: math.unit(200, "lbs"),
  5611. name: "Front",
  5612. image: {
  5613. source: "./media/characters/vulpes/front.svg",
  5614. extra: 573 / 543,
  5615. bottom: 0.033
  5616. }
  5617. },
  5618. side: {
  5619. height: math.unit(6, "feet"),
  5620. weight: math.unit(200, "lbs"),
  5621. name: "Side",
  5622. image: {
  5623. source: "./media/characters/vulpes/side.svg",
  5624. extra: 577 / 549,
  5625. bottom: 11 / 588
  5626. }
  5627. },
  5628. back: {
  5629. height: math.unit(6, "feet"),
  5630. weight: math.unit(200, "lbs"),
  5631. name: "Back",
  5632. image: {
  5633. source: "./media/characters/vulpes/back.svg",
  5634. extra: 573 / 549,
  5635. bottom: 20 / 593
  5636. }
  5637. },
  5638. feet: {
  5639. height: math.unit(1.276, "feet"),
  5640. name: "Feet",
  5641. image: {
  5642. source: "./media/characters/vulpes/feet.svg"
  5643. }
  5644. },
  5645. maw: {
  5646. height: math.unit(1.18, "feet"),
  5647. name: "Maw",
  5648. image: {
  5649. source: "./media/characters/vulpes/maw.svg"
  5650. }
  5651. },
  5652. },
  5653. [
  5654. {
  5655. name: "Micro",
  5656. height: math.unit(2, "inches")
  5657. },
  5658. {
  5659. name: "Normal",
  5660. height: math.unit(6.3, "feet")
  5661. },
  5662. {
  5663. name: "Macro",
  5664. height: math.unit(850, "feet")
  5665. },
  5666. {
  5667. name: "Megamacro",
  5668. height: math.unit(7500, "feet"),
  5669. default: true
  5670. },
  5671. {
  5672. name: "Gigamacro",
  5673. height: math.unit(570000, "miles")
  5674. }
  5675. ]
  5676. ))
  5677. characterMakers.push(() => makeCharacter(
  5678. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5679. {
  5680. front: {
  5681. height: math.unit(6, "feet"),
  5682. weight: math.unit(210, "lbs"),
  5683. name: "Front",
  5684. image: {
  5685. source: "./media/characters/rain-fallen/front.svg"
  5686. }
  5687. },
  5688. side: {
  5689. height: math.unit(6, "feet"),
  5690. weight: math.unit(210, "lbs"),
  5691. name: "Side",
  5692. image: {
  5693. source: "./media/characters/rain-fallen/side.svg"
  5694. }
  5695. },
  5696. back: {
  5697. height: math.unit(6, "feet"),
  5698. weight: math.unit(210, "lbs"),
  5699. name: "Back",
  5700. image: {
  5701. source: "./media/characters/rain-fallen/back.svg"
  5702. }
  5703. },
  5704. feral: {
  5705. height: math.unit(9, "feet"),
  5706. weight: math.unit(700, "lbs"),
  5707. name: "Feral",
  5708. image: {
  5709. source: "./media/characters/rain-fallen/feral.svg"
  5710. }
  5711. },
  5712. },
  5713. [
  5714. {
  5715. name: "Meddling with Mortals",
  5716. height: math.unit(8 + 8/12, "feet")
  5717. },
  5718. {
  5719. name: "Normal",
  5720. height: math.unit(5, "meter")
  5721. },
  5722. {
  5723. name: "Macro",
  5724. height: math.unit(150, "meter"),
  5725. default: true
  5726. },
  5727. {
  5728. name: "Megamacro",
  5729. height: math.unit(278e6, "meter")
  5730. },
  5731. {
  5732. name: "Gigamacro",
  5733. height: math.unit(2e9, "meter")
  5734. },
  5735. {
  5736. name: "Teramacro",
  5737. height: math.unit(8e12, "meter")
  5738. },
  5739. {
  5740. name: "Devourer",
  5741. height: math.unit(14, "zettameters")
  5742. },
  5743. {
  5744. name: "Scarlet King",
  5745. height: math.unit(18, "yottameters")
  5746. },
  5747. {
  5748. name: "Void",
  5749. height: math.unit(1e88, "yottameters")
  5750. }
  5751. ]
  5752. ))
  5753. characterMakers.push(() => makeCharacter(
  5754. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5755. {
  5756. standing: {
  5757. height: math.unit(6, "feet"),
  5758. weight: math.unit(180, "lbs"),
  5759. name: "Standing",
  5760. image: {
  5761. source: "./media/characters/zaakira/standing.svg",
  5762. extra: 1599/1504,
  5763. bottom: 39/1638
  5764. }
  5765. },
  5766. laying: {
  5767. height: math.unit(3.3, "feet"),
  5768. weight: math.unit(180, "lbs"),
  5769. name: "Laying",
  5770. image: {
  5771. source: "./media/characters/zaakira/laying.svg"
  5772. }
  5773. },
  5774. },
  5775. [
  5776. {
  5777. name: "Normal",
  5778. height: math.unit(12, "feet")
  5779. },
  5780. {
  5781. name: "Macro",
  5782. height: math.unit(279, "feet"),
  5783. default: true
  5784. }
  5785. ]
  5786. ))
  5787. characterMakers.push(() => makeCharacter(
  5788. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5789. {
  5790. femSfw: {
  5791. height: math.unit(8, "feet"),
  5792. weight: math.unit(350, "lb"),
  5793. name: "Fem",
  5794. image: {
  5795. source: "./media/characters/sigvald/fem-sfw.svg",
  5796. extra: 182 / 164,
  5797. bottom: 8.7 / 190.5
  5798. }
  5799. },
  5800. femNsfw: {
  5801. height: math.unit(8, "feet"),
  5802. weight: math.unit(350, "lb"),
  5803. name: "Fem (NSFW)",
  5804. image: {
  5805. source: "./media/characters/sigvald/fem-nsfw.svg",
  5806. extra: 182 / 164,
  5807. bottom: 8.7 / 190.5
  5808. }
  5809. },
  5810. maleNsfw: {
  5811. height: math.unit(8, "feet"),
  5812. weight: math.unit(350, "lb"),
  5813. name: "Male (NSFW)",
  5814. image: {
  5815. source: "./media/characters/sigvald/male-nsfw.svg",
  5816. extra: 182 / 164,
  5817. bottom: 8.7 / 190.5
  5818. }
  5819. },
  5820. hermNsfw: {
  5821. height: math.unit(8, "feet"),
  5822. weight: math.unit(350, "lb"),
  5823. name: "Herm (NSFW)",
  5824. image: {
  5825. source: "./media/characters/sigvald/herm-nsfw.svg",
  5826. extra: 182 / 164,
  5827. bottom: 8.7 / 190.5
  5828. }
  5829. },
  5830. dick: {
  5831. height: math.unit(2.36, "feet"),
  5832. name: "Dick",
  5833. image: {
  5834. source: "./media/characters/sigvald/dick.svg"
  5835. }
  5836. },
  5837. eye: {
  5838. height: math.unit(0.31, "feet"),
  5839. name: "Eye",
  5840. image: {
  5841. source: "./media/characters/sigvald/eye.svg"
  5842. }
  5843. },
  5844. mouth: {
  5845. height: math.unit(0.92, "feet"),
  5846. name: "Mouth",
  5847. image: {
  5848. source: "./media/characters/sigvald/mouth.svg"
  5849. }
  5850. },
  5851. paws: {
  5852. height: math.unit(2.2, "feet"),
  5853. name: "Paws",
  5854. image: {
  5855. source: "./media/characters/sigvald/paws.svg"
  5856. }
  5857. }
  5858. },
  5859. [
  5860. {
  5861. name: "Normal",
  5862. height: math.unit(8, "feet")
  5863. },
  5864. {
  5865. name: "Large",
  5866. height: math.unit(12, "feet")
  5867. },
  5868. {
  5869. name: "Larger",
  5870. height: math.unit(20, "feet")
  5871. },
  5872. {
  5873. name: "Macro",
  5874. height: math.unit(150, "feet")
  5875. },
  5876. {
  5877. name: "Macro+",
  5878. height: math.unit(200, "feet"),
  5879. default: true
  5880. },
  5881. ]
  5882. ))
  5883. characterMakers.push(() => makeCharacter(
  5884. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5885. {
  5886. side: {
  5887. height: math.unit(12, "feet"),
  5888. weight: math.unit(2000, "kg"),
  5889. name: "Side",
  5890. image: {
  5891. source: "./media/characters/scott/side.svg",
  5892. extra: 754 / 724,
  5893. bottom: 0.069
  5894. }
  5895. },
  5896. upright: {
  5897. height: math.unit(12, "feet"),
  5898. weight: math.unit(2000, "kg"),
  5899. name: "Upright",
  5900. image: {
  5901. source: "./media/characters/scott/upright.svg",
  5902. extra: 3881 / 3722,
  5903. bottom: 0.05
  5904. }
  5905. },
  5906. },
  5907. [
  5908. {
  5909. name: "Normal",
  5910. height: math.unit(12, "feet"),
  5911. default: true
  5912. },
  5913. ]
  5914. ))
  5915. characterMakers.push(() => makeCharacter(
  5916. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5917. {
  5918. side: {
  5919. height: math.unit(8, "meters"),
  5920. weight: math.unit(84755, "lbs"),
  5921. name: "Side",
  5922. image: {
  5923. source: "./media/characters/tobias/side.svg",
  5924. extra: 1474 / 1096,
  5925. bottom: 38.9 / 1513.1235
  5926. }
  5927. },
  5928. },
  5929. [
  5930. {
  5931. name: "Normal",
  5932. height: math.unit(8, "meters"),
  5933. default: true
  5934. },
  5935. ]
  5936. ))
  5937. characterMakers.push(() => makeCharacter(
  5938. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5939. {
  5940. front: {
  5941. height: math.unit(5.5, "feet"),
  5942. weight: math.unit(400, "lbs"),
  5943. name: "Front",
  5944. image: {
  5945. source: "./media/characters/kieran/front.svg",
  5946. extra: 2694 / 2364,
  5947. bottom: 217 / 2908
  5948. }
  5949. },
  5950. side: {
  5951. height: math.unit(5.5, "feet"),
  5952. weight: math.unit(400, "lbs"),
  5953. name: "Side",
  5954. image: {
  5955. source: "./media/characters/kieran/side.svg",
  5956. extra: 875 / 777,
  5957. bottom: 84.6 / 959
  5958. }
  5959. },
  5960. },
  5961. [
  5962. {
  5963. name: "Normal",
  5964. height: math.unit(5.5, "feet"),
  5965. default: true
  5966. },
  5967. ]
  5968. ))
  5969. characterMakers.push(() => makeCharacter(
  5970. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5971. {
  5972. side: {
  5973. height: math.unit(2, "meters"),
  5974. weight: math.unit(70, "kg"),
  5975. name: "Side",
  5976. image: {
  5977. source: "./media/characters/sanya/side.svg",
  5978. bottom: 0.02,
  5979. extra: 1.02
  5980. }
  5981. },
  5982. },
  5983. [
  5984. {
  5985. name: "Small",
  5986. height: math.unit(2, "meters")
  5987. },
  5988. {
  5989. name: "Normal",
  5990. height: math.unit(3, "meters")
  5991. },
  5992. {
  5993. name: "Macro",
  5994. height: math.unit(16, "meters"),
  5995. default: true
  5996. },
  5997. ]
  5998. ))
  5999. characterMakers.push(() => makeCharacter(
  6000. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  6001. {
  6002. front: {
  6003. height: math.unit(2, "meters"),
  6004. weight: math.unit(120, "kg"),
  6005. name: "Front",
  6006. image: {
  6007. source: "./media/characters/miranda/front.svg",
  6008. extra: 195 / 185,
  6009. bottom: 10.9 / 206.5
  6010. }
  6011. },
  6012. back: {
  6013. height: math.unit(2, "meters"),
  6014. weight: math.unit(120, "kg"),
  6015. name: "Back",
  6016. image: {
  6017. source: "./media/characters/miranda/back.svg",
  6018. extra: 201 / 193,
  6019. bottom: 2.3 / 203.7
  6020. }
  6021. },
  6022. },
  6023. [
  6024. {
  6025. name: "Normal",
  6026. height: math.unit(10, "feet"),
  6027. default: true
  6028. }
  6029. ]
  6030. ))
  6031. characterMakers.push(() => makeCharacter(
  6032. { name: "James", species: ["deer"], tags: ["anthro"] },
  6033. {
  6034. side: {
  6035. height: math.unit(2, "meters"),
  6036. weight: math.unit(100, "kg"),
  6037. name: "Front",
  6038. image: {
  6039. source: "./media/characters/james/front.svg",
  6040. extra: 10 / 8.5
  6041. }
  6042. },
  6043. },
  6044. [
  6045. {
  6046. name: "Normal",
  6047. height: math.unit(8.5, "feet"),
  6048. default: true
  6049. }
  6050. ]
  6051. ))
  6052. characterMakers.push(() => makeCharacter(
  6053. { name: "Heather", species: ["cow"], tags: ["taur"] },
  6054. {
  6055. side: {
  6056. height: math.unit(9.5, "feet"),
  6057. weight: math.unit(2500, "lbs"),
  6058. name: "Side",
  6059. image: {
  6060. source: "./media/characters/heather/side.svg"
  6061. }
  6062. },
  6063. },
  6064. [
  6065. {
  6066. name: "Normal",
  6067. height: math.unit(9.5, "feet"),
  6068. default: true
  6069. }
  6070. ]
  6071. ))
  6072. characterMakers.push(() => makeCharacter(
  6073. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  6074. {
  6075. side: {
  6076. height: math.unit(6.5, "feet"),
  6077. weight: math.unit(400, "lbs"),
  6078. name: "Side",
  6079. image: {
  6080. source: "./media/characters/lukas/side.svg",
  6081. extra: 7.25 / 6.5
  6082. }
  6083. },
  6084. },
  6085. [
  6086. {
  6087. name: "Normal",
  6088. height: math.unit(6.5, "feet"),
  6089. default: true
  6090. }
  6091. ]
  6092. ))
  6093. characterMakers.push(() => makeCharacter(
  6094. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  6095. {
  6096. side: {
  6097. height: math.unit(5, "feet"),
  6098. weight: math.unit(3000, "lbs"),
  6099. name: "Side",
  6100. image: {
  6101. source: "./media/characters/louise/side.svg"
  6102. }
  6103. },
  6104. },
  6105. [
  6106. {
  6107. name: "Normal",
  6108. height: math.unit(5, "feet"),
  6109. default: true
  6110. }
  6111. ]
  6112. ))
  6113. characterMakers.push(() => makeCharacter(
  6114. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6115. {
  6116. side: {
  6117. height: math.unit(6, "feet"),
  6118. weight: math.unit(150, "lbs"),
  6119. name: "Side",
  6120. image: {
  6121. source: "./media/characters/ramona/side.svg",
  6122. extra: 871/854,
  6123. bottom: 41/912
  6124. }
  6125. },
  6126. },
  6127. [
  6128. {
  6129. name: "Normal",
  6130. height: math.unit(6 + 4/12, "feet")
  6131. },
  6132. {
  6133. name: "Minimacro",
  6134. height: math.unit(5.3, "meters"),
  6135. default: true
  6136. },
  6137. {
  6138. name: "Macro",
  6139. height: math.unit(20, "stories")
  6140. },
  6141. {
  6142. name: "Macro+",
  6143. height: math.unit(50, "stories")
  6144. },
  6145. ]
  6146. ))
  6147. characterMakers.push(() => makeCharacter(
  6148. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6149. {
  6150. standing: {
  6151. height: math.unit(5.75, "feet"),
  6152. weight: math.unit(160, "lbs"),
  6153. name: "Standing",
  6154. image: {
  6155. source: "./media/characters/deerpuff/standing.svg",
  6156. extra: 682 / 624
  6157. }
  6158. },
  6159. sitting: {
  6160. height: math.unit(5.75 / 1.79, "feet"),
  6161. weight: math.unit(160, "lbs"),
  6162. name: "Sitting",
  6163. image: {
  6164. source: "./media/characters/deerpuff/sitting.svg",
  6165. bottom: 44 / 400,
  6166. extra: 1
  6167. }
  6168. },
  6169. taurLaying: {
  6170. height: math.unit(6, "feet"),
  6171. weight: math.unit(400, "lbs"),
  6172. name: "Taur (Laying)",
  6173. image: {
  6174. source: "./media/characters/deerpuff/taur-laying.svg"
  6175. }
  6176. },
  6177. },
  6178. [
  6179. {
  6180. name: "Puffball",
  6181. height: math.unit(6, "inches")
  6182. },
  6183. {
  6184. name: "Normalpuff",
  6185. height: math.unit(5.75, "feet")
  6186. },
  6187. {
  6188. name: "Macropuff",
  6189. height: math.unit(1500, "feet"),
  6190. default: true
  6191. },
  6192. {
  6193. name: "Megapuff",
  6194. height: math.unit(500, "miles")
  6195. },
  6196. {
  6197. name: "Gigapuff",
  6198. height: math.unit(250000, "miles")
  6199. },
  6200. {
  6201. name: "Omegapuff",
  6202. height: math.unit(1000, "lightyears")
  6203. },
  6204. ]
  6205. ))
  6206. characterMakers.push(() => makeCharacter(
  6207. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6208. {
  6209. stomping: {
  6210. height: math.unit(6, "feet"),
  6211. weight: math.unit(170, "lbs"),
  6212. name: "Stomping",
  6213. image: {
  6214. source: "./media/characters/vivian/stomping.svg"
  6215. }
  6216. },
  6217. sitting: {
  6218. height: math.unit(6 / 1.75, "feet"),
  6219. weight: math.unit(170, "lbs"),
  6220. name: "Sitting",
  6221. image: {
  6222. source: "./media/characters/vivian/sitting.svg",
  6223. bottom: 1 / 6.4,
  6224. extra: 1,
  6225. }
  6226. },
  6227. },
  6228. [
  6229. {
  6230. name: "Normal",
  6231. height: math.unit(7, "feet"),
  6232. default: true
  6233. },
  6234. {
  6235. name: "Macro",
  6236. height: math.unit(10, "stories")
  6237. },
  6238. {
  6239. name: "Macro+",
  6240. height: math.unit(30, "stories")
  6241. },
  6242. {
  6243. name: "Megamacro",
  6244. height: math.unit(10, "miles")
  6245. },
  6246. {
  6247. name: "Megamacro+",
  6248. height: math.unit(2750000, "meters")
  6249. },
  6250. ]
  6251. ))
  6252. characterMakers.push(() => makeCharacter(
  6253. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6254. {
  6255. front: {
  6256. height: math.unit(6, "feet"),
  6257. weight: math.unit(160, "lbs"),
  6258. name: "Front",
  6259. image: {
  6260. source: "./media/characters/prince/front.svg",
  6261. extra: 1938/1682,
  6262. bottom: 45/1983
  6263. }
  6264. },
  6265. back: {
  6266. height: math.unit(6, "feet"),
  6267. weight: math.unit(160, "lbs"),
  6268. name: "Back",
  6269. image: {
  6270. source: "./media/characters/prince/back.svg",
  6271. extra: 1955/1726,
  6272. bottom: 6/1961
  6273. }
  6274. },
  6275. },
  6276. [
  6277. {
  6278. name: "Normal",
  6279. height: math.unit(7.75, "feet"),
  6280. default: true
  6281. },
  6282. {
  6283. name: "Not cute",
  6284. height: math.unit(17, "feet")
  6285. },
  6286. {
  6287. name: "I said NOT",
  6288. height: math.unit(91, "feet")
  6289. },
  6290. {
  6291. name: "Please stop",
  6292. height: math.unit(560, "feet")
  6293. },
  6294. {
  6295. name: "What have you done",
  6296. height: math.unit(2200, "feet")
  6297. },
  6298. {
  6299. name: "Deer God",
  6300. height: math.unit(3.6, "miles")
  6301. },
  6302. ]
  6303. ))
  6304. characterMakers.push(() => makeCharacter(
  6305. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6306. {
  6307. standing: {
  6308. height: math.unit(6, "feet"),
  6309. weight: math.unit(300, "lbs"),
  6310. name: "Standing",
  6311. image: {
  6312. source: "./media/characters/psymon/standing.svg",
  6313. extra: 1888 / 1810,
  6314. bottom: 0.05
  6315. }
  6316. },
  6317. slithering: {
  6318. height: math.unit(6, "feet"),
  6319. weight: math.unit(300, "lbs"),
  6320. name: "Slithering",
  6321. image: {
  6322. source: "./media/characters/psymon/slithering.svg",
  6323. extra: 1330 / 1224
  6324. }
  6325. },
  6326. slitheringAlt: {
  6327. height: math.unit(6, "feet"),
  6328. weight: math.unit(300, "lbs"),
  6329. name: "Slithering (Alt)",
  6330. image: {
  6331. source: "./media/characters/psymon/slithering-alt.svg",
  6332. extra: 1330 / 1224
  6333. }
  6334. },
  6335. },
  6336. [
  6337. {
  6338. name: "Normal",
  6339. height: math.unit(11.25, "feet"),
  6340. default: true
  6341. },
  6342. {
  6343. name: "Large",
  6344. height: math.unit(27, "feet")
  6345. },
  6346. {
  6347. name: "Giant",
  6348. height: math.unit(87, "feet")
  6349. },
  6350. {
  6351. name: "Macro",
  6352. height: math.unit(365, "feet")
  6353. },
  6354. {
  6355. name: "Megamacro",
  6356. height: math.unit(3, "miles")
  6357. },
  6358. {
  6359. name: "World Serpent",
  6360. height: math.unit(8000, "miles")
  6361. },
  6362. ]
  6363. ))
  6364. characterMakers.push(() => makeCharacter(
  6365. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6366. {
  6367. front: {
  6368. height: math.unit(6, "feet"),
  6369. weight: math.unit(180, "lbs"),
  6370. name: "Front",
  6371. image: {
  6372. source: "./media/characters/daimos/front.svg",
  6373. extra: 4160 / 3897,
  6374. bottom: 0.021
  6375. }
  6376. }
  6377. },
  6378. [
  6379. {
  6380. name: "Normal",
  6381. height: math.unit(8, "feet"),
  6382. default: true
  6383. },
  6384. {
  6385. name: "Big Dog",
  6386. height: math.unit(22, "feet")
  6387. },
  6388. {
  6389. name: "Macro",
  6390. height: math.unit(127, "feet")
  6391. },
  6392. {
  6393. name: "Megamacro",
  6394. height: math.unit(3600, "feet")
  6395. },
  6396. ]
  6397. ))
  6398. characterMakers.push(() => makeCharacter(
  6399. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6400. {
  6401. side: {
  6402. height: math.unit(6, "feet"),
  6403. weight: math.unit(180, "lbs"),
  6404. name: "Side",
  6405. image: {
  6406. source: "./media/characters/blake/side.svg",
  6407. extra: 1212 / 1120,
  6408. bottom: 0.05
  6409. }
  6410. },
  6411. crouched: {
  6412. height: math.unit(6 * 0.57, "feet"),
  6413. weight: math.unit(180, "lbs"),
  6414. name: "Crouched",
  6415. image: {
  6416. source: "./media/characters/blake/crouched.svg",
  6417. extra: 840 / 587,
  6418. bottom: 0.04
  6419. }
  6420. },
  6421. bent: {
  6422. height: math.unit(6 * 0.75, "feet"),
  6423. weight: math.unit(180, "lbs"),
  6424. name: "Bent",
  6425. image: {
  6426. source: "./media/characters/blake/bent.svg",
  6427. extra: 592 / 544,
  6428. bottom: 0.035
  6429. }
  6430. },
  6431. },
  6432. [
  6433. {
  6434. name: "Normal",
  6435. height: math.unit(8 + 1 / 6, "feet"),
  6436. default: true
  6437. },
  6438. {
  6439. name: "Big Backside",
  6440. height: math.unit(37, "feet")
  6441. },
  6442. {
  6443. name: "Subway Shredder",
  6444. height: math.unit(72, "feet")
  6445. },
  6446. {
  6447. name: "City Carver",
  6448. height: math.unit(1675, "feet")
  6449. },
  6450. {
  6451. name: "Tectonic Tweaker",
  6452. height: math.unit(2300, "miles")
  6453. },
  6454. ]
  6455. ))
  6456. characterMakers.push(() => makeCharacter(
  6457. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6458. {
  6459. front: {
  6460. height: math.unit(6, "feet"),
  6461. weight: math.unit(180, "lbs"),
  6462. name: "Front",
  6463. image: {
  6464. source: "./media/characters/guisetto/front.svg",
  6465. extra: 856 / 817,
  6466. bottom: 0.06
  6467. }
  6468. },
  6469. airborne: {
  6470. height: math.unit(6, "feet"),
  6471. weight: math.unit(180, "lbs"),
  6472. name: "Airborne",
  6473. image: {
  6474. source: "./media/characters/guisetto/airborne.svg",
  6475. extra: 584 / 525
  6476. }
  6477. },
  6478. },
  6479. [
  6480. {
  6481. name: "Normal",
  6482. height: math.unit(10 + 11 / 12, "feet"),
  6483. default: true
  6484. },
  6485. {
  6486. name: "Large",
  6487. height: math.unit(35, "feet")
  6488. },
  6489. {
  6490. name: "Macro",
  6491. height: math.unit(475, "feet")
  6492. },
  6493. ]
  6494. ))
  6495. characterMakers.push(() => makeCharacter(
  6496. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6497. {
  6498. front: {
  6499. height: math.unit(6, "feet"),
  6500. weight: math.unit(180, "lbs"),
  6501. name: "Front",
  6502. image: {
  6503. source: "./media/characters/luxor/front.svg",
  6504. extra: 2940 / 2152
  6505. }
  6506. },
  6507. back: {
  6508. height: math.unit(6, "feet"),
  6509. weight: math.unit(180, "lbs"),
  6510. name: "Back",
  6511. image: {
  6512. source: "./media/characters/luxor/back.svg",
  6513. extra: 1083 / 960
  6514. }
  6515. },
  6516. },
  6517. [
  6518. {
  6519. name: "Normal",
  6520. height: math.unit(5 + 5 / 6, "feet"),
  6521. default: true
  6522. },
  6523. {
  6524. name: "Lamp",
  6525. height: math.unit(50, "feet")
  6526. },
  6527. {
  6528. name: "Lämp",
  6529. height: math.unit(300, "feet")
  6530. },
  6531. {
  6532. name: "The sun is a lamp",
  6533. height: math.unit(250000, "miles")
  6534. },
  6535. ]
  6536. ))
  6537. characterMakers.push(() => makeCharacter(
  6538. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6539. {
  6540. front: {
  6541. height: math.unit(6, "feet"),
  6542. weight: math.unit(50, "lbs"),
  6543. name: "Front",
  6544. image: {
  6545. source: "./media/characters/huoyan/front.svg"
  6546. }
  6547. },
  6548. side: {
  6549. height: math.unit(6, "feet"),
  6550. weight: math.unit(180, "lbs"),
  6551. name: "Side",
  6552. image: {
  6553. source: "./media/characters/huoyan/side.svg"
  6554. }
  6555. },
  6556. },
  6557. [
  6558. {
  6559. name: "Chef",
  6560. height: math.unit(9, "feet")
  6561. },
  6562. {
  6563. name: "Normal",
  6564. height: math.unit(65, "feet"),
  6565. default: true
  6566. },
  6567. {
  6568. name: "Macro",
  6569. height: math.unit(780, "feet")
  6570. },
  6571. {
  6572. name: "Flaming Mountain",
  6573. height: math.unit(4.8, "miles")
  6574. },
  6575. {
  6576. name: "Celestial",
  6577. height: math.unit(765000, "miles")
  6578. },
  6579. ]
  6580. ))
  6581. characterMakers.push(() => makeCharacter(
  6582. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6583. {
  6584. front: {
  6585. height: math.unit(5 + 3 / 4, "feet"),
  6586. weight: math.unit(120, "lbs"),
  6587. name: "Front",
  6588. image: {
  6589. source: "./media/characters/tails/front.svg"
  6590. }
  6591. }
  6592. },
  6593. [
  6594. {
  6595. name: "Normal",
  6596. height: math.unit(5 + 3 / 4, "feet"),
  6597. default: true
  6598. }
  6599. ]
  6600. ))
  6601. characterMakers.push(() => makeCharacter(
  6602. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6603. {
  6604. front: {
  6605. height: math.unit(4, "feet"),
  6606. weight: math.unit(50, "lbs"),
  6607. name: "Front",
  6608. image: {
  6609. source: "./media/characters/rainy/front.svg"
  6610. }
  6611. }
  6612. },
  6613. [
  6614. {
  6615. name: "Macro",
  6616. height: math.unit(800, "feet"),
  6617. default: true
  6618. }
  6619. ]
  6620. ))
  6621. characterMakers.push(() => makeCharacter(
  6622. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6623. {
  6624. front: {
  6625. height: math.unit(6, "feet"),
  6626. weight: math.unit(150, "lbs"),
  6627. name: "Front",
  6628. image: {
  6629. source: "./media/characters/rainier/front.svg"
  6630. }
  6631. }
  6632. },
  6633. [
  6634. {
  6635. name: "Micro",
  6636. height: math.unit(2, "mm"),
  6637. default: true
  6638. }
  6639. ]
  6640. ))
  6641. characterMakers.push(() => makeCharacter(
  6642. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6643. {
  6644. front: {
  6645. height: math.unit(8 + 4/12, "feet"),
  6646. weight: math.unit(450, "kilograms"),
  6647. volume: math.unit(5, "cups"),
  6648. name: "Front",
  6649. image: {
  6650. source: "./media/characters/andy-renard/front.svg",
  6651. extra: 1839/1726,
  6652. bottom: 134/1973
  6653. }
  6654. },
  6655. back: {
  6656. height: math.unit(8 + 4/12, "feet"),
  6657. weight: math.unit(450, "kilograms"),
  6658. volume: math.unit(5, "cups"),
  6659. name: "Back",
  6660. image: {
  6661. source: "./media/characters/andy-renard/back.svg",
  6662. extra: 1838/1710,
  6663. bottom: 105/1943
  6664. }
  6665. },
  6666. },
  6667. [
  6668. {
  6669. name: "Tall",
  6670. height: math.unit(8 + 4/12, "feet")
  6671. },
  6672. {
  6673. name: "Mini Macro",
  6674. height: math.unit(15, "feet"),
  6675. default: true
  6676. },
  6677. {
  6678. name: "Macro",
  6679. height: math.unit(100, "feet")
  6680. },
  6681. {
  6682. name: "Mega Macro",
  6683. height: math.unit(1000, "feet")
  6684. },
  6685. {
  6686. name: "Giga Macro",
  6687. height: math.unit(10, "miles")
  6688. },
  6689. {
  6690. name: "God Macro",
  6691. height: math.unit(1, "multiverse")
  6692. },
  6693. ]
  6694. ))
  6695. characterMakers.push(() => makeCharacter(
  6696. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6697. {
  6698. front: {
  6699. height: math.unit(6, "feet"),
  6700. weight: math.unit(210, "lbs"),
  6701. name: "Front",
  6702. image: {
  6703. source: "./media/characters/cimmaron/front-sfw.svg",
  6704. extra: 701 / 676,
  6705. bottom: 0.046
  6706. }
  6707. },
  6708. back: {
  6709. height: math.unit(6, "feet"),
  6710. weight: math.unit(210, "lbs"),
  6711. name: "Back",
  6712. image: {
  6713. source: "./media/characters/cimmaron/back-sfw.svg",
  6714. extra: 701 / 676,
  6715. bottom: 0.046
  6716. }
  6717. },
  6718. frontNsfw: {
  6719. height: math.unit(6, "feet"),
  6720. weight: math.unit(210, "lbs"),
  6721. name: "Front (NSFW)",
  6722. image: {
  6723. source: "./media/characters/cimmaron/front-nsfw.svg",
  6724. extra: 701 / 676,
  6725. bottom: 0.046
  6726. }
  6727. },
  6728. backNsfw: {
  6729. height: math.unit(6, "feet"),
  6730. weight: math.unit(210, "lbs"),
  6731. name: "Back (NSFW)",
  6732. image: {
  6733. source: "./media/characters/cimmaron/back-nsfw.svg",
  6734. extra: 701 / 676,
  6735. bottom: 0.046
  6736. }
  6737. },
  6738. dick: {
  6739. height: math.unit(1.714, "feet"),
  6740. name: "Dick",
  6741. image: {
  6742. source: "./media/characters/cimmaron/dick.svg"
  6743. }
  6744. },
  6745. },
  6746. [
  6747. {
  6748. name: "Normal",
  6749. height: math.unit(6, "feet"),
  6750. default: true
  6751. },
  6752. {
  6753. name: "Macro Mayor",
  6754. height: math.unit(350, "meters")
  6755. },
  6756. ]
  6757. ))
  6758. characterMakers.push(() => makeCharacter(
  6759. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6760. {
  6761. front: {
  6762. height: math.unit(6, "feet"),
  6763. weight: math.unit(200, "lbs"),
  6764. name: "Front",
  6765. image: {
  6766. source: "./media/characters/akari/front.svg",
  6767. extra: 962 / 901,
  6768. bottom: 0.04
  6769. }
  6770. }
  6771. },
  6772. [
  6773. {
  6774. name: "Micro",
  6775. height: math.unit(5, "inches"),
  6776. default: true
  6777. },
  6778. {
  6779. name: "Normal",
  6780. height: math.unit(7, "feet")
  6781. },
  6782. ]
  6783. ))
  6784. characterMakers.push(() => makeCharacter(
  6785. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6786. {
  6787. front: {
  6788. height: math.unit(6, "feet"),
  6789. weight: math.unit(140, "lbs"),
  6790. name: "Front",
  6791. image: {
  6792. source: "./media/characters/cynosura/front.svg",
  6793. extra: 437/410,
  6794. bottom: 9/446
  6795. }
  6796. },
  6797. back: {
  6798. height: math.unit(6, "feet"),
  6799. weight: math.unit(140, "lbs"),
  6800. name: "Back",
  6801. image: {
  6802. source: "./media/characters/cynosura/back.svg",
  6803. extra: 1304/1160,
  6804. bottom: 71/1375
  6805. }
  6806. },
  6807. },
  6808. [
  6809. {
  6810. name: "Micro",
  6811. height: math.unit(4, "inches")
  6812. },
  6813. {
  6814. name: "Normal",
  6815. height: math.unit(5.75, "feet"),
  6816. default: true
  6817. },
  6818. {
  6819. name: "Tall",
  6820. height: math.unit(10, "feet")
  6821. },
  6822. {
  6823. name: "Big",
  6824. height: math.unit(20, "feet")
  6825. },
  6826. {
  6827. name: "Macro",
  6828. height: math.unit(50, "feet")
  6829. },
  6830. ]
  6831. ))
  6832. characterMakers.push(() => makeCharacter(
  6833. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6834. {
  6835. front: {
  6836. height: math.unit(13 + 2/12, "feet"),
  6837. weight: math.unit(800, "kg"),
  6838. name: "Front",
  6839. image: {
  6840. source: "./media/characters/gin/front.svg",
  6841. extra: 1312/1191,
  6842. bottom: 45/1357
  6843. }
  6844. },
  6845. mouth: {
  6846. height: math.unit(2.39 * 1.8, "feet"),
  6847. name: "Mouth",
  6848. image: {
  6849. source: "./media/characters/gin/mouth.svg"
  6850. }
  6851. },
  6852. hand: {
  6853. height: math.unit(1.57 * 2.19, "feet"),
  6854. name: "Hand",
  6855. image: {
  6856. source: "./media/characters/gin/hand.svg"
  6857. }
  6858. },
  6859. foot: {
  6860. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6861. name: "Foot",
  6862. image: {
  6863. source: "./media/characters/gin/foot.svg"
  6864. }
  6865. },
  6866. sole: {
  6867. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6868. name: "Sole",
  6869. image: {
  6870. source: "./media/characters/gin/sole.svg"
  6871. }
  6872. },
  6873. },
  6874. [
  6875. {
  6876. name: "Very Small",
  6877. height: math.unit(13 + 2 / 12, "feet")
  6878. },
  6879. {
  6880. name: "Micro",
  6881. height: math.unit(600, "miles")
  6882. },
  6883. {
  6884. name: "Regular",
  6885. height: math.unit(20, "earths"),
  6886. default: true
  6887. },
  6888. {
  6889. name: "Macro",
  6890. height: math.unit(2.2, "solarradii")
  6891. },
  6892. {
  6893. name: "Teramacro",
  6894. height: math.unit(1.2, "galaxies")
  6895. },
  6896. {
  6897. name: "Omegamacro",
  6898. height: math.unit(200, "universes")
  6899. },
  6900. ]
  6901. ))
  6902. characterMakers.push(() => makeCharacter(
  6903. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6904. {
  6905. front: {
  6906. height: math.unit(6 + 1 / 6, "feet"),
  6907. weight: math.unit(178, "lbs"),
  6908. name: "Front",
  6909. image: {
  6910. source: "./media/characters/guy/front.svg"
  6911. }
  6912. }
  6913. },
  6914. [
  6915. {
  6916. name: "Normal",
  6917. height: math.unit(6 + 1 / 6, "feet"),
  6918. default: true
  6919. },
  6920. {
  6921. name: "Large",
  6922. height: math.unit(25 + 7 / 12, "feet")
  6923. },
  6924. {
  6925. name: "Macro",
  6926. height: math.unit(60 + 9 / 12, "feet")
  6927. },
  6928. {
  6929. name: "Macro+",
  6930. height: math.unit(246, "feet")
  6931. },
  6932. {
  6933. name: "Macro++",
  6934. height: math.unit(878, "feet")
  6935. }
  6936. ]
  6937. ))
  6938. characterMakers.push(() => makeCharacter(
  6939. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6940. {
  6941. front: {
  6942. height: math.unit(9, "feet"),
  6943. weight: math.unit(800, "lbs"),
  6944. name: "Front",
  6945. image: {
  6946. source: "./media/characters/tiberius/front.svg",
  6947. extra: 2295 / 2071
  6948. }
  6949. },
  6950. back: {
  6951. height: math.unit(9, "feet"),
  6952. weight: math.unit(800, "lbs"),
  6953. name: "Back",
  6954. image: {
  6955. source: "./media/characters/tiberius/back.svg",
  6956. extra: 2373 / 2160
  6957. }
  6958. },
  6959. },
  6960. [
  6961. {
  6962. name: "Normal",
  6963. height: math.unit(9, "feet"),
  6964. default: true
  6965. }
  6966. ]
  6967. ))
  6968. characterMakers.push(() => makeCharacter(
  6969. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6970. {
  6971. front: {
  6972. height: math.unit(6, "feet"),
  6973. weight: math.unit(600, "lbs"),
  6974. name: "Front",
  6975. image: {
  6976. source: "./media/characters/surgo/front.svg",
  6977. extra: 3591 / 2227
  6978. }
  6979. },
  6980. back: {
  6981. height: math.unit(6, "feet"),
  6982. weight: math.unit(600, "lbs"),
  6983. name: "Back",
  6984. image: {
  6985. source: "./media/characters/surgo/back.svg",
  6986. extra: 3557 / 2228
  6987. }
  6988. },
  6989. laying: {
  6990. height: math.unit(6 * 0.85, "feet"),
  6991. weight: math.unit(600, "lbs"),
  6992. name: "Laying",
  6993. image: {
  6994. source: "./media/characters/surgo/laying.svg"
  6995. }
  6996. },
  6997. },
  6998. [
  6999. {
  7000. name: "Normal",
  7001. height: math.unit(6, "feet"),
  7002. default: true
  7003. }
  7004. ]
  7005. ))
  7006. characterMakers.push(() => makeCharacter(
  7007. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  7008. {
  7009. side: {
  7010. height: math.unit(6, "feet"),
  7011. weight: math.unit(150, "lbs"),
  7012. name: "Side",
  7013. image: {
  7014. source: "./media/characters/cibus/side.svg",
  7015. extra: 800 / 400
  7016. }
  7017. },
  7018. },
  7019. [
  7020. {
  7021. name: "Normal",
  7022. height: math.unit(6, "feet"),
  7023. default: true
  7024. }
  7025. ]
  7026. ))
  7027. characterMakers.push(() => makeCharacter(
  7028. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  7029. {
  7030. front: {
  7031. height: math.unit(6, "feet"),
  7032. weight: math.unit(240, "lbs"),
  7033. name: "Front",
  7034. image: {
  7035. source: "./media/characters/nibbles/front.svg"
  7036. }
  7037. },
  7038. side: {
  7039. height: math.unit(6, "feet"),
  7040. weight: math.unit(240, "lbs"),
  7041. name: "Side",
  7042. image: {
  7043. source: "./media/characters/nibbles/side.svg"
  7044. }
  7045. },
  7046. },
  7047. [
  7048. {
  7049. name: "Normal",
  7050. height: math.unit(9, "feet"),
  7051. default: true
  7052. }
  7053. ]
  7054. ))
  7055. characterMakers.push(() => makeCharacter(
  7056. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  7057. {
  7058. side: {
  7059. height: math.unit(5 + 1 / 6, "feet"),
  7060. weight: math.unit(130, "lbs"),
  7061. name: "Side",
  7062. image: {
  7063. source: "./media/characters/rikky/side.svg",
  7064. extra: 851 / 801
  7065. }
  7066. },
  7067. },
  7068. [
  7069. {
  7070. name: "Normal",
  7071. height: math.unit(5 + 1 / 6, "feet")
  7072. },
  7073. {
  7074. name: "Macro",
  7075. height: math.unit(152, "feet"),
  7076. default: true
  7077. },
  7078. {
  7079. name: "Megamacro",
  7080. height: math.unit(7, "miles")
  7081. }
  7082. ]
  7083. ))
  7084. characterMakers.push(() => makeCharacter(
  7085. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  7086. {
  7087. side: {
  7088. height: math.unit(370, "cm"),
  7089. weight: math.unit(350, "lbs"),
  7090. name: "Side",
  7091. image: {
  7092. source: "./media/characters/malfressa/side.svg"
  7093. }
  7094. },
  7095. walking: {
  7096. height: math.unit(370, "cm"),
  7097. weight: math.unit(350, "lbs"),
  7098. name: "Walking",
  7099. image: {
  7100. source: "./media/characters/malfressa/walking.svg"
  7101. }
  7102. },
  7103. feral: {
  7104. height: math.unit(2500, "cm"),
  7105. weight: math.unit(100000, "lbs"),
  7106. name: "Feral",
  7107. image: {
  7108. source: "./media/characters/malfressa/feral.svg",
  7109. extra: 2108 / 837,
  7110. bottom: 0.02
  7111. }
  7112. },
  7113. },
  7114. [
  7115. {
  7116. name: "Normal",
  7117. height: math.unit(370, "cm")
  7118. },
  7119. {
  7120. name: "Macro",
  7121. height: math.unit(300, "meters"),
  7122. default: true
  7123. }
  7124. ]
  7125. ))
  7126. characterMakers.push(() => makeCharacter(
  7127. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7128. {
  7129. front: {
  7130. height: math.unit(6, "feet"),
  7131. weight: math.unit(60, "kg"),
  7132. name: "Front",
  7133. image: {
  7134. source: "./media/characters/jaro/front.svg",
  7135. extra: 845/817,
  7136. bottom: 45/890
  7137. }
  7138. },
  7139. back: {
  7140. height: math.unit(6, "feet"),
  7141. weight: math.unit(60, "kg"),
  7142. name: "Back",
  7143. image: {
  7144. source: "./media/characters/jaro/back.svg",
  7145. extra: 847/817,
  7146. bottom: 34/881
  7147. }
  7148. },
  7149. },
  7150. [
  7151. {
  7152. name: "Micro",
  7153. height: math.unit(7, "inches")
  7154. },
  7155. {
  7156. name: "Normal",
  7157. height: math.unit(5.5, "feet"),
  7158. default: true
  7159. },
  7160. {
  7161. name: "Minimacro",
  7162. height: math.unit(20, "feet")
  7163. },
  7164. {
  7165. name: "Macro",
  7166. height: math.unit(200, "meters")
  7167. }
  7168. ]
  7169. ))
  7170. characterMakers.push(() => makeCharacter(
  7171. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7172. {
  7173. front: {
  7174. height: math.unit(6, "feet"),
  7175. weight: math.unit(195, "lb"),
  7176. name: "Front",
  7177. image: {
  7178. source: "./media/characters/rogue/front.svg"
  7179. }
  7180. },
  7181. },
  7182. [
  7183. {
  7184. name: "Macro",
  7185. height: math.unit(90, "feet"),
  7186. default: true
  7187. },
  7188. ]
  7189. ))
  7190. characterMakers.push(() => makeCharacter(
  7191. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7192. {
  7193. standing: {
  7194. height: math.unit(5 + 8 / 12, "feet"),
  7195. weight: math.unit(140, "lb"),
  7196. name: "Standing",
  7197. image: {
  7198. source: "./media/characters/piper/standing.svg",
  7199. extra: 1440/1284,
  7200. bottom: 66/1506
  7201. }
  7202. },
  7203. running: {
  7204. height: math.unit(5 + 8 / 12, "feet"),
  7205. weight: math.unit(140, "lb"),
  7206. name: "Running",
  7207. image: {
  7208. source: "./media/characters/piper/running.svg",
  7209. extra: 3948/3655,
  7210. bottom: 0/3948
  7211. }
  7212. },
  7213. sole: {
  7214. height: math.unit(0.81, "feet"),
  7215. weight: math.unit(2, "kg"),
  7216. name: "Sole",
  7217. image: {
  7218. source: "./media/characters/piper/sole.svg"
  7219. }
  7220. },
  7221. nipple: {
  7222. height: math.unit(0.25, "feet"),
  7223. weight: math.unit(1.5, "lb"),
  7224. name: "Nipple",
  7225. image: {
  7226. source: "./media/characters/piper/nipple.svg"
  7227. }
  7228. },
  7229. head: {
  7230. height: math.unit(1.1, "feet"),
  7231. name: "Head",
  7232. image: {
  7233. source: "./media/characters/piper/head.svg"
  7234. }
  7235. },
  7236. },
  7237. [
  7238. {
  7239. name: "Micro",
  7240. height: math.unit(2, "inches")
  7241. },
  7242. {
  7243. name: "Normal",
  7244. height: math.unit(5 + 8 / 12, "feet")
  7245. },
  7246. {
  7247. name: "Macro",
  7248. height: math.unit(250, "feet"),
  7249. default: true
  7250. },
  7251. {
  7252. name: "Megamacro",
  7253. height: math.unit(7, "miles")
  7254. },
  7255. ]
  7256. ))
  7257. characterMakers.push(() => makeCharacter(
  7258. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7259. {
  7260. front: {
  7261. height: math.unit(6, "feet"),
  7262. weight: math.unit(220, "lb"),
  7263. name: "Front",
  7264. image: {
  7265. source: "./media/characters/gemini/front.svg"
  7266. }
  7267. },
  7268. back: {
  7269. height: math.unit(6, "feet"),
  7270. weight: math.unit(220, "lb"),
  7271. name: "Back",
  7272. image: {
  7273. source: "./media/characters/gemini/back.svg"
  7274. }
  7275. },
  7276. kneeling: {
  7277. height: math.unit(6 / 1.5, "feet"),
  7278. weight: math.unit(220, "lb"),
  7279. name: "Kneeling",
  7280. image: {
  7281. source: "./media/characters/gemini/kneeling.svg",
  7282. bottom: 0.02
  7283. }
  7284. },
  7285. },
  7286. [
  7287. {
  7288. name: "Macro",
  7289. height: math.unit(300, "meters"),
  7290. default: true
  7291. },
  7292. {
  7293. name: "Megamacro",
  7294. height: math.unit(6900, "meters")
  7295. },
  7296. ]
  7297. ))
  7298. characterMakers.push(() => makeCharacter(
  7299. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7300. {
  7301. anthro: {
  7302. height: math.unit(2.35, "meters"),
  7303. weight: math.unit(73, "kg"),
  7304. name: "Anthro",
  7305. image: {
  7306. source: "./media/characters/alicia/anthro.svg",
  7307. extra: 2571 / 2385,
  7308. bottom: 75 / 2648
  7309. }
  7310. },
  7311. paw: {
  7312. height: math.unit(1.32, "feet"),
  7313. name: "Paw",
  7314. image: {
  7315. source: "./media/characters/alicia/paw.svg"
  7316. }
  7317. },
  7318. feral: {
  7319. height: math.unit(1.69, "meters"),
  7320. weight: math.unit(73, "kg"),
  7321. name: "Feral",
  7322. image: {
  7323. source: "./media/characters/alicia/feral.svg",
  7324. extra: 2123 / 1715,
  7325. bottom: 222 / 2349
  7326. }
  7327. },
  7328. },
  7329. [
  7330. {
  7331. name: "Normal",
  7332. height: math.unit(2.35, "meters")
  7333. },
  7334. {
  7335. name: "Macro",
  7336. height: math.unit(60, "meters"),
  7337. default: true
  7338. },
  7339. {
  7340. name: "Megamacro",
  7341. height: math.unit(10000, "kilometers")
  7342. },
  7343. ]
  7344. ))
  7345. characterMakers.push(() => makeCharacter(
  7346. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7347. {
  7348. front: {
  7349. height: math.unit(7, "feet"),
  7350. weight: math.unit(250, "lbs"),
  7351. name: "Front",
  7352. image: {
  7353. source: "./media/characters/archy/front.svg"
  7354. }
  7355. }
  7356. },
  7357. [
  7358. {
  7359. name: "Micro",
  7360. height: math.unit(1, "inch")
  7361. },
  7362. {
  7363. name: "Shorty",
  7364. height: math.unit(5, "feet")
  7365. },
  7366. {
  7367. name: "Normal",
  7368. height: math.unit(7, "feet")
  7369. },
  7370. {
  7371. name: "Macro",
  7372. height: math.unit(600, "meters"),
  7373. default: true
  7374. },
  7375. {
  7376. name: "Megamacro",
  7377. height: math.unit(1, "mile")
  7378. },
  7379. ]
  7380. ))
  7381. characterMakers.push(() => makeCharacter(
  7382. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7383. {
  7384. front: {
  7385. height: math.unit(1.65, "meters"),
  7386. weight: math.unit(74, "kg"),
  7387. name: "Front",
  7388. image: {
  7389. source: "./media/characters/berri/front.svg",
  7390. extra: 857 / 837,
  7391. bottom: 18 / 877
  7392. }
  7393. },
  7394. bum: {
  7395. height: math.unit(1.46, "feet"),
  7396. name: "Bum",
  7397. image: {
  7398. source: "./media/characters/berri/bum.svg"
  7399. }
  7400. },
  7401. mouth: {
  7402. height: math.unit(0.44, "feet"),
  7403. name: "Mouth",
  7404. image: {
  7405. source: "./media/characters/berri/mouth.svg"
  7406. }
  7407. },
  7408. paw: {
  7409. height: math.unit(0.826, "feet"),
  7410. name: "Paw",
  7411. image: {
  7412. source: "./media/characters/berri/paw.svg"
  7413. }
  7414. },
  7415. },
  7416. [
  7417. {
  7418. name: "Normal",
  7419. height: math.unit(1.65, "meters")
  7420. },
  7421. {
  7422. name: "Macro",
  7423. height: math.unit(60, "m"),
  7424. default: true
  7425. },
  7426. {
  7427. name: "Megamacro",
  7428. height: math.unit(9.213, "km")
  7429. },
  7430. {
  7431. name: "Planet Eater",
  7432. height: math.unit(489, "megameters")
  7433. },
  7434. {
  7435. name: "Teramacro",
  7436. height: math.unit(2471635000000, "meters")
  7437. },
  7438. {
  7439. name: "Examacro",
  7440. height: math.unit(8.0624e+26, "meters")
  7441. }
  7442. ]
  7443. ))
  7444. characterMakers.push(() => makeCharacter(
  7445. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7446. {
  7447. front: {
  7448. height: math.unit(1.72, "meters"),
  7449. weight: math.unit(68, "kg"),
  7450. name: "Front",
  7451. image: {
  7452. source: "./media/characters/lexi/front.svg"
  7453. }
  7454. }
  7455. },
  7456. [
  7457. {
  7458. name: "Very Smol",
  7459. height: math.unit(10, "mm")
  7460. },
  7461. {
  7462. name: "Micro",
  7463. height: math.unit(6.8, "cm"),
  7464. default: true
  7465. },
  7466. {
  7467. name: "Normal",
  7468. height: math.unit(1.72, "m")
  7469. }
  7470. ]
  7471. ))
  7472. characterMakers.push(() => makeCharacter(
  7473. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7474. {
  7475. front: {
  7476. height: math.unit(1.69, "meters"),
  7477. weight: math.unit(68, "kg"),
  7478. name: "Front",
  7479. image: {
  7480. source: "./media/characters/martin/front.svg",
  7481. extra: 596 / 581
  7482. }
  7483. }
  7484. },
  7485. [
  7486. {
  7487. name: "Micro",
  7488. height: math.unit(6.85, "cm"),
  7489. default: true
  7490. },
  7491. {
  7492. name: "Normal",
  7493. height: math.unit(1.69, "m")
  7494. }
  7495. ]
  7496. ))
  7497. characterMakers.push(() => makeCharacter(
  7498. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7499. {
  7500. front: {
  7501. height: math.unit(1.69, "meters"),
  7502. weight: math.unit(68, "kg"),
  7503. name: "Front",
  7504. image: {
  7505. source: "./media/characters/juno/front.svg"
  7506. }
  7507. }
  7508. },
  7509. [
  7510. {
  7511. name: "Micro",
  7512. height: math.unit(7, "cm")
  7513. },
  7514. {
  7515. name: "Normal",
  7516. height: math.unit(1.89, "m")
  7517. },
  7518. {
  7519. name: "Macro",
  7520. height: math.unit(353, "meters"),
  7521. default: true
  7522. }
  7523. ]
  7524. ))
  7525. characterMakers.push(() => makeCharacter(
  7526. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7527. {
  7528. front: {
  7529. height: math.unit(1.93, "meters"),
  7530. weight: math.unit(83, "kg"),
  7531. name: "Front",
  7532. image: {
  7533. source: "./media/characters/samantha/front.svg"
  7534. }
  7535. },
  7536. frontClothed: {
  7537. height: math.unit(1.93, "meters"),
  7538. weight: math.unit(83, "kg"),
  7539. name: "Front (Clothed)",
  7540. image: {
  7541. source: "./media/characters/samantha/front-clothed.svg"
  7542. }
  7543. },
  7544. back: {
  7545. height: math.unit(1.93, "meters"),
  7546. weight: math.unit(83, "kg"),
  7547. name: "Back",
  7548. image: {
  7549. source: "./media/characters/samantha/back.svg"
  7550. }
  7551. },
  7552. },
  7553. [
  7554. {
  7555. name: "Normal",
  7556. height: math.unit(1.93, "m")
  7557. },
  7558. {
  7559. name: "Macro",
  7560. height: math.unit(74, "meters"),
  7561. default: true
  7562. },
  7563. {
  7564. name: "Macro+",
  7565. height: math.unit(223, "meters"),
  7566. },
  7567. {
  7568. name: "Megamacro",
  7569. height: math.unit(8381, "meters"),
  7570. },
  7571. {
  7572. name: "Megamacro+",
  7573. height: math.unit(12000, "kilometers")
  7574. },
  7575. ]
  7576. ))
  7577. characterMakers.push(() => makeCharacter(
  7578. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7579. {
  7580. front: {
  7581. height: math.unit(1.92, "meters"),
  7582. weight: math.unit(80, "kg"),
  7583. name: "Front",
  7584. image: {
  7585. source: "./media/characters/dr-clay/front.svg"
  7586. }
  7587. },
  7588. frontClothed: {
  7589. height: math.unit(1.92, "meters"),
  7590. weight: math.unit(80, "kg"),
  7591. name: "Front (Clothed)",
  7592. image: {
  7593. source: "./media/characters/dr-clay/front-clothed.svg"
  7594. }
  7595. }
  7596. },
  7597. [
  7598. {
  7599. name: "Normal",
  7600. height: math.unit(1.92, "m")
  7601. },
  7602. {
  7603. name: "Macro",
  7604. height: math.unit(214, "meters"),
  7605. default: true
  7606. },
  7607. {
  7608. name: "Macro+",
  7609. height: math.unit(12.237, "meters"),
  7610. },
  7611. {
  7612. name: "Megamacro",
  7613. height: math.unit(557, "megameters"),
  7614. },
  7615. {
  7616. name: "Unimaginable",
  7617. height: math.unit(120e9, "lightyears")
  7618. },
  7619. ]
  7620. ))
  7621. characterMakers.push(() => makeCharacter(
  7622. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7623. {
  7624. front: {
  7625. height: math.unit(2, "meters"),
  7626. weight: math.unit(80, "kg"),
  7627. name: "Front",
  7628. image: {
  7629. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7630. }
  7631. }
  7632. },
  7633. [
  7634. {
  7635. name: "Teramacro",
  7636. height: math.unit(500000, "lightyears"),
  7637. default: true
  7638. },
  7639. ]
  7640. ))
  7641. characterMakers.push(() => makeCharacter(
  7642. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7643. {
  7644. crux: {
  7645. height: math.unit(2, "meters"),
  7646. weight: math.unit(150, "kg"),
  7647. name: "Crux",
  7648. image: {
  7649. source: "./media/characters/vemus/crux.svg",
  7650. extra: 1074/936,
  7651. bottom: 23/1097
  7652. }
  7653. },
  7654. skunkTanuki: {
  7655. height: math.unit(2, "meters"),
  7656. weight: math.unit(150, "kg"),
  7657. name: "Skunk-Tanuki",
  7658. image: {
  7659. source: "./media/characters/vemus/skunk-tanuki.svg",
  7660. extra: 926/893,
  7661. bottom: 20/946
  7662. }
  7663. },
  7664. },
  7665. [
  7666. {
  7667. name: "Normal",
  7668. height: math.unit(4, "meters"),
  7669. default: true
  7670. },
  7671. {
  7672. name: "Big",
  7673. height: math.unit(8, "meters")
  7674. },
  7675. {
  7676. name: "Macro",
  7677. height: math.unit(100, "meters")
  7678. },
  7679. {
  7680. name: "Macro+",
  7681. height: math.unit(1500, "meters")
  7682. },
  7683. {
  7684. name: "Stellar",
  7685. height: math.unit(14e8, "meters")
  7686. },
  7687. ]
  7688. ))
  7689. characterMakers.push(() => makeCharacter(
  7690. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7691. {
  7692. front: {
  7693. height: math.unit(2, "meters"),
  7694. weight: math.unit(70, "kg"),
  7695. name: "Front",
  7696. image: {
  7697. source: "./media/characters/beherit/front.svg",
  7698. extra: 1234/1109,
  7699. bottom: 55/1289
  7700. }
  7701. }
  7702. },
  7703. [
  7704. {
  7705. name: "Normal",
  7706. height: math.unit(6, "feet")
  7707. },
  7708. {
  7709. name: "Lorg",
  7710. height: math.unit(25, "feet"),
  7711. default: true
  7712. },
  7713. {
  7714. name: "Lorger",
  7715. height: math.unit(75, "feet")
  7716. },
  7717. {
  7718. name: "Macro",
  7719. height: math.unit(200, "meters")
  7720. },
  7721. ]
  7722. ))
  7723. characterMakers.push(() => makeCharacter(
  7724. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7725. {
  7726. front: {
  7727. height: math.unit(2, "meters"),
  7728. weight: math.unit(150, "kg"),
  7729. name: "Front",
  7730. image: {
  7731. source: "./media/characters/everett/front.svg",
  7732. extra: 1017/866,
  7733. bottom: 86/1103
  7734. }
  7735. },
  7736. paw: {
  7737. height: math.unit(2 / 3.6, "meters"),
  7738. name: "Paw",
  7739. image: {
  7740. source: "./media/characters/everett/paw.svg"
  7741. }
  7742. },
  7743. },
  7744. [
  7745. {
  7746. name: "Normal",
  7747. height: math.unit(15, "feet"),
  7748. default: true
  7749. },
  7750. {
  7751. name: "Lorg",
  7752. height: math.unit(70, "feet"),
  7753. default: true
  7754. },
  7755. {
  7756. name: "Lorger",
  7757. height: math.unit(250, "feet")
  7758. },
  7759. {
  7760. name: "Macro",
  7761. height: math.unit(500, "meters")
  7762. },
  7763. ]
  7764. ))
  7765. characterMakers.push(() => makeCharacter(
  7766. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7767. {
  7768. front: {
  7769. height: math.unit(2, "meters"),
  7770. weight: math.unit(86, "kg"),
  7771. name: "Front",
  7772. image: {
  7773. source: "./media/characters/rose/front.svg",
  7774. extra: 1785/1636,
  7775. bottom: 30/1815
  7776. },
  7777. form: "liom",
  7778. default: true
  7779. },
  7780. frontSporty: {
  7781. height: math.unit(2, "meters"),
  7782. weight: math.unit(86, "kg"),
  7783. name: "Front (Sporty)",
  7784. image: {
  7785. source: "./media/characters/rose/front-sporty.svg",
  7786. extra: 350/335,
  7787. bottom: 10/360
  7788. },
  7789. form: "liom"
  7790. },
  7791. frontAlt: {
  7792. height: math.unit(1.6, "meters"),
  7793. weight: math.unit(86, "kg"),
  7794. name: "Front (Alt)",
  7795. image: {
  7796. source: "./media/characters/rose/front-alt.svg",
  7797. extra: 299/283,
  7798. bottom: 3/302
  7799. },
  7800. form: "liom"
  7801. },
  7802. plush: {
  7803. height: math.unit(2, "meters"),
  7804. weight: math.unit(86/3, "kg"),
  7805. name: "Plush",
  7806. image: {
  7807. source: "./media/characters/rose/plush.svg",
  7808. extra: 361/337,
  7809. bottom: 11/372
  7810. },
  7811. form: "plush",
  7812. default: true
  7813. },
  7814. faeStanding: {
  7815. height: math.unit(10, "cm"),
  7816. weight: math.unit(10, "grams"),
  7817. name: "Standing",
  7818. image: {
  7819. source: "./media/characters/rose/fae-standing.svg",
  7820. extra: 1189/1060,
  7821. bottom: 27/1216
  7822. },
  7823. form: "fae",
  7824. default: true
  7825. },
  7826. faeSitting: {
  7827. height: math.unit(5, "cm"),
  7828. weight: math.unit(10, "grams"),
  7829. name: "Sitting",
  7830. image: {
  7831. source: "./media/characters/rose/fae-sitting.svg",
  7832. extra: 737/577,
  7833. bottom: 356/1093
  7834. },
  7835. form: "fae"
  7836. },
  7837. faePaw: {
  7838. height: math.unit(1.35, "cm"),
  7839. name: "Paw",
  7840. image: {
  7841. source: "./media/characters/rose/fae-paw.svg"
  7842. },
  7843. form: "fae"
  7844. },
  7845. },
  7846. [
  7847. {
  7848. name: "True Micro",
  7849. height: math.unit(9, "cm"),
  7850. form: "liom"
  7851. },
  7852. {
  7853. name: "Micro",
  7854. height: math.unit(16, "cm"),
  7855. form: "liom"
  7856. },
  7857. {
  7858. name: "Normal",
  7859. height: math.unit(1.85, "meters"),
  7860. default: true,
  7861. form: "liom"
  7862. },
  7863. {
  7864. name: "Mini-Macro",
  7865. height: math.unit(5, "meters"),
  7866. form: "liom"
  7867. },
  7868. {
  7869. name: "Macro",
  7870. height: math.unit(15, "meters"),
  7871. form: "liom"
  7872. },
  7873. {
  7874. name: "True Macro",
  7875. height: math.unit(40, "meters"),
  7876. form: "liom"
  7877. },
  7878. {
  7879. name: "City Scale",
  7880. height: math.unit(1, "km"),
  7881. form: "liom"
  7882. },
  7883. {
  7884. name: "Plushie",
  7885. height: math.unit(9, "cm"),
  7886. form: "plush",
  7887. default: true
  7888. },
  7889. {
  7890. name: "Fae",
  7891. height: math.unit(10, "cm"),
  7892. form: "fae",
  7893. default: true
  7894. },
  7895. ],
  7896. {
  7897. "liom": {
  7898. name: "Liom"
  7899. },
  7900. "plush": {
  7901. name: "Plush"
  7902. },
  7903. "fae": {
  7904. name: "Fae Fox",
  7905. default: true
  7906. }
  7907. }
  7908. ))
  7909. characterMakers.push(() => makeCharacter(
  7910. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7911. {
  7912. front: {
  7913. height: math.unit(2, "meters"),
  7914. weight: math.unit(350, "lbs"),
  7915. name: "Front",
  7916. image: {
  7917. source: "./media/characters/regal/front.svg"
  7918. }
  7919. },
  7920. back: {
  7921. height: math.unit(2, "meters"),
  7922. weight: math.unit(350, "lbs"),
  7923. name: "Back",
  7924. image: {
  7925. source: "./media/characters/regal/back.svg"
  7926. }
  7927. },
  7928. },
  7929. [
  7930. {
  7931. name: "Macro",
  7932. height: math.unit(350, "feet"),
  7933. default: true
  7934. }
  7935. ]
  7936. ))
  7937. characterMakers.push(() => makeCharacter(
  7938. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7939. {
  7940. front: {
  7941. height: math.unit(4 + 11 / 12, "feet"),
  7942. weight: math.unit(100, "lbs"),
  7943. name: "Front",
  7944. image: {
  7945. source: "./media/characters/opal/front.svg"
  7946. }
  7947. },
  7948. frontAlt: {
  7949. height: math.unit(4 + 11 / 12, "feet"),
  7950. weight: math.unit(100, "lbs"),
  7951. name: "Front (Alt)",
  7952. image: {
  7953. source: "./media/characters/opal/front-alt.svg"
  7954. }
  7955. },
  7956. },
  7957. [
  7958. {
  7959. name: "Small",
  7960. height: math.unit(4 + 11 / 12, "feet")
  7961. },
  7962. {
  7963. name: "Normal",
  7964. height: math.unit(20, "feet"),
  7965. default: true
  7966. },
  7967. {
  7968. name: "Macro",
  7969. height: math.unit(120, "feet")
  7970. },
  7971. {
  7972. name: "Megamacro",
  7973. height: math.unit(80, "miles")
  7974. },
  7975. {
  7976. name: "True Size",
  7977. height: math.unit(100000, "lightyears")
  7978. },
  7979. ]
  7980. ))
  7981. characterMakers.push(() => makeCharacter(
  7982. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7983. {
  7984. front: {
  7985. height: math.unit(6, "feet"),
  7986. weight: math.unit(200, "lbs"),
  7987. name: "Front",
  7988. image: {
  7989. source: "./media/characters/vector-wuff/front.svg"
  7990. }
  7991. }
  7992. },
  7993. [
  7994. {
  7995. name: "Normal",
  7996. height: math.unit(2.8, "meters")
  7997. },
  7998. {
  7999. name: "Macro",
  8000. height: math.unit(450, "meters"),
  8001. default: true
  8002. },
  8003. {
  8004. name: "Megamacro",
  8005. height: math.unit(15, "kilometers")
  8006. }
  8007. ]
  8008. ))
  8009. characterMakers.push(() => makeCharacter(
  8010. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  8011. {
  8012. front: {
  8013. height: math.unit(6, "feet"),
  8014. weight: math.unit(256, "lbs"),
  8015. name: "Front",
  8016. image: {
  8017. source: "./media/characters/dannik/front.svg"
  8018. }
  8019. }
  8020. },
  8021. [
  8022. {
  8023. name: "Macro",
  8024. height: math.unit(69.57, "meters"),
  8025. default: true
  8026. },
  8027. ]
  8028. ))
  8029. characterMakers.push(() => makeCharacter(
  8030. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  8031. {
  8032. front: {
  8033. height: math.unit(6, "feet"),
  8034. weight: math.unit(120, "lbs"),
  8035. name: "Front",
  8036. image: {
  8037. source: "./media/characters/azura-saharah/front.svg"
  8038. }
  8039. },
  8040. back: {
  8041. height: math.unit(6, "feet"),
  8042. weight: math.unit(120, "lbs"),
  8043. name: "Back",
  8044. image: {
  8045. source: "./media/characters/azura-saharah/back.svg"
  8046. }
  8047. },
  8048. },
  8049. [
  8050. {
  8051. name: "Macro",
  8052. height: math.unit(100, "feet"),
  8053. default: true
  8054. },
  8055. ]
  8056. ))
  8057. characterMakers.push(() => makeCharacter(
  8058. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  8059. {
  8060. side: {
  8061. height: math.unit(5 + 4 / 12, "feet"),
  8062. weight: math.unit(163, "lbs"),
  8063. name: "Side",
  8064. image: {
  8065. source: "./media/characters/kennedy/side.svg"
  8066. }
  8067. }
  8068. },
  8069. [
  8070. {
  8071. name: "Standard Doggo",
  8072. height: math.unit(5 + 4 / 12, "feet")
  8073. },
  8074. {
  8075. name: "Big Doggo",
  8076. height: math.unit(25 + 3 / 12, "feet"),
  8077. default: true
  8078. },
  8079. ]
  8080. ))
  8081. characterMakers.push(() => makeCharacter(
  8082. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  8083. {
  8084. front: {
  8085. height: math.unit(5 + 5/12, "feet"),
  8086. weight: math.unit(100, "lbs"),
  8087. name: "Front",
  8088. image: {
  8089. source: "./media/characters/odios-de-lunar/front.svg",
  8090. extra: 1468/1323,
  8091. bottom: 22/1490
  8092. }
  8093. }
  8094. },
  8095. [
  8096. {
  8097. name: "Micro",
  8098. height: math.unit(3, "inches")
  8099. },
  8100. {
  8101. name: "Normal",
  8102. height: math.unit(5.5, "feet"),
  8103. default: true
  8104. },
  8105. {
  8106. name: "Macro",
  8107. height: math.unit(100, "feet")
  8108. },
  8109. ]
  8110. ))
  8111. characterMakers.push(() => makeCharacter(
  8112. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8113. {
  8114. back: {
  8115. height: math.unit(6, "feet"),
  8116. weight: math.unit(220, "lbs"),
  8117. name: "Back",
  8118. image: {
  8119. source: "./media/characters/mandake/back.svg"
  8120. }
  8121. }
  8122. },
  8123. [
  8124. {
  8125. name: "Normal",
  8126. height: math.unit(7, "feet"),
  8127. default: true
  8128. },
  8129. {
  8130. name: "Macro",
  8131. height: math.unit(78, "feet")
  8132. },
  8133. {
  8134. name: "Macro+",
  8135. height: math.unit(300, "meters")
  8136. },
  8137. {
  8138. name: "Macro++",
  8139. height: math.unit(2400, "feet")
  8140. },
  8141. {
  8142. name: "Megamacro",
  8143. height: math.unit(5167, "meters")
  8144. },
  8145. {
  8146. name: "Gigamacro",
  8147. height: math.unit(41769, "miles")
  8148. },
  8149. ]
  8150. ))
  8151. characterMakers.push(() => makeCharacter(
  8152. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8153. {
  8154. front: {
  8155. height: math.unit(6, "feet"),
  8156. weight: math.unit(120, "lbs"),
  8157. name: "Front",
  8158. image: {
  8159. source: "./media/characters/yozey/front.svg"
  8160. }
  8161. },
  8162. frontAlt: {
  8163. height: math.unit(6, "feet"),
  8164. weight: math.unit(120, "lbs"),
  8165. name: "Front (Alt)",
  8166. image: {
  8167. source: "./media/characters/yozey/front-alt.svg"
  8168. }
  8169. },
  8170. side: {
  8171. height: math.unit(6, "feet"),
  8172. weight: math.unit(120, "lbs"),
  8173. name: "Side",
  8174. image: {
  8175. source: "./media/characters/yozey/side.svg"
  8176. }
  8177. },
  8178. },
  8179. [
  8180. {
  8181. name: "Micro",
  8182. height: math.unit(3, "inches"),
  8183. default: true
  8184. },
  8185. {
  8186. name: "Normal",
  8187. height: math.unit(6, "feet")
  8188. }
  8189. ]
  8190. ))
  8191. characterMakers.push(() => makeCharacter(
  8192. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8193. {
  8194. front: {
  8195. height: math.unit(6, "feet"),
  8196. weight: math.unit(103, "lbs"),
  8197. name: "Front",
  8198. image: {
  8199. source: "./media/characters/valeska-voss/front.svg"
  8200. }
  8201. }
  8202. },
  8203. [
  8204. {
  8205. name: "Mini-Sized Sub",
  8206. height: math.unit(3.1, "inches")
  8207. },
  8208. {
  8209. name: "Mid-Sized Sub",
  8210. height: math.unit(6.2, "inches")
  8211. },
  8212. {
  8213. name: "Full-Sized Sub",
  8214. height: math.unit(9.3, "inches")
  8215. },
  8216. {
  8217. name: "Normal",
  8218. height: math.unit(5 + 2 / 12, "foot"),
  8219. default: true
  8220. },
  8221. ]
  8222. ))
  8223. characterMakers.push(() => makeCharacter(
  8224. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8225. {
  8226. front: {
  8227. height: math.unit(6, "feet"),
  8228. weight: math.unit(160, "lbs"),
  8229. name: "Front",
  8230. image: {
  8231. source: "./media/characters/gene-zeta/front.svg",
  8232. extra: 3006 / 2826,
  8233. bottom: 182 / 3188
  8234. }
  8235. }
  8236. },
  8237. [
  8238. {
  8239. name: "Micro",
  8240. height: math.unit(6, "inches")
  8241. },
  8242. {
  8243. name: "Normal",
  8244. height: math.unit(5 + 11 / 12, "foot"),
  8245. default: true
  8246. },
  8247. {
  8248. name: "Macro",
  8249. height: math.unit(140, "feet")
  8250. },
  8251. {
  8252. name: "Supercharged",
  8253. height: math.unit(2500, "feet")
  8254. },
  8255. ]
  8256. ))
  8257. characterMakers.push(() => makeCharacter(
  8258. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8259. {
  8260. front: {
  8261. height: math.unit(6, "feet"),
  8262. weight: math.unit(350, "lbs"),
  8263. name: "Front",
  8264. image: {
  8265. source: "./media/characters/razinox/front.svg",
  8266. extra: 1686 / 1548,
  8267. bottom: 28.2 / 1868
  8268. }
  8269. },
  8270. back: {
  8271. height: math.unit(6, "feet"),
  8272. weight: math.unit(350, "lbs"),
  8273. name: "Back",
  8274. image: {
  8275. source: "./media/characters/razinox/back.svg",
  8276. extra: 1660 / 1590,
  8277. bottom: 15 / 1665
  8278. }
  8279. },
  8280. },
  8281. [
  8282. {
  8283. name: "Normal",
  8284. height: math.unit(10 + 8 / 12, "foot")
  8285. },
  8286. {
  8287. name: "Minimacro",
  8288. height: math.unit(15, "foot")
  8289. },
  8290. {
  8291. name: "Macro",
  8292. height: math.unit(60, "foot"),
  8293. default: true
  8294. },
  8295. {
  8296. name: "Megamacro",
  8297. height: math.unit(5, "miles")
  8298. },
  8299. {
  8300. name: "Gigamacro",
  8301. height: math.unit(6000, "miles")
  8302. },
  8303. ]
  8304. ))
  8305. characterMakers.push(() => makeCharacter(
  8306. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8307. {
  8308. front: {
  8309. height: math.unit(6, "feet"),
  8310. weight: math.unit(150, "lbs"),
  8311. name: "Front",
  8312. image: {
  8313. source: "./media/characters/cobalt/front.svg"
  8314. }
  8315. }
  8316. },
  8317. [
  8318. {
  8319. name: "Normal",
  8320. height: math.unit(8 + 1 / 12, "foot")
  8321. },
  8322. {
  8323. name: "Macro",
  8324. height: math.unit(111, "foot"),
  8325. default: true
  8326. },
  8327. {
  8328. name: "Supracosmic",
  8329. height: math.unit(1e42, "feet")
  8330. },
  8331. ]
  8332. ))
  8333. characterMakers.push(() => makeCharacter(
  8334. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8335. {
  8336. front: {
  8337. height: math.unit(5, "inches"),
  8338. name: "Front",
  8339. image: {
  8340. source: "./media/characters/amanda/front.svg",
  8341. extra: 926/791,
  8342. bottom: 38/964
  8343. }
  8344. },
  8345. back: {
  8346. height: math.unit(5, "inches"),
  8347. name: "Back",
  8348. image: {
  8349. source: "./media/characters/amanda/back.svg",
  8350. extra: 909/805,
  8351. bottom: 43/952
  8352. }
  8353. },
  8354. },
  8355. [
  8356. {
  8357. name: "Micro",
  8358. height: math.unit(5, "inches"),
  8359. default: true
  8360. },
  8361. ]
  8362. ))
  8363. characterMakers.push(() => makeCharacter(
  8364. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8365. {
  8366. front: {
  8367. height: math.unit(2.75, "meters"),
  8368. weight: math.unit(1200, "lb"),
  8369. name: "Front",
  8370. image: {
  8371. source: "./media/characters/teal/front.svg",
  8372. extra: 2463 / 2320,
  8373. bottom: 166 / 2629
  8374. }
  8375. },
  8376. back: {
  8377. height: math.unit(2.75, "meters"),
  8378. weight: math.unit(1200, "lb"),
  8379. name: "Back",
  8380. image: {
  8381. source: "./media/characters/teal/back.svg",
  8382. extra: 2580 / 2489,
  8383. bottom: 151 / 2731
  8384. }
  8385. },
  8386. sitting: {
  8387. height: math.unit(1.9, "meters"),
  8388. weight: math.unit(1200, "lb"),
  8389. name: "Sitting",
  8390. image: {
  8391. source: "./media/characters/teal/sitting.svg",
  8392. extra: 623 / 590,
  8393. bottom: 121 / 744
  8394. }
  8395. },
  8396. standing: {
  8397. height: math.unit(2.75, "meters"),
  8398. weight: math.unit(1200, "lb"),
  8399. name: "Standing",
  8400. image: {
  8401. source: "./media/characters/teal/standing.svg",
  8402. extra: 923 / 893,
  8403. bottom: 60 / 983
  8404. }
  8405. },
  8406. stretching: {
  8407. height: math.unit(3.65, "meters"),
  8408. weight: math.unit(1200, "lb"),
  8409. name: "Stretching",
  8410. image: {
  8411. source: "./media/characters/teal/stretching.svg",
  8412. extra: 1276 / 1244,
  8413. bottom: 0 / 1276
  8414. }
  8415. },
  8416. legged: {
  8417. height: math.unit(1.3, "meters"),
  8418. weight: math.unit(100, "lb"),
  8419. name: "Legged",
  8420. image: {
  8421. source: "./media/characters/teal/legged.svg",
  8422. extra: 462 / 437,
  8423. bottom: 24 / 486
  8424. }
  8425. },
  8426. naga: {
  8427. height: math.unit(5.4, "meters"),
  8428. weight: math.unit(4000, "lb"),
  8429. name: "Naga",
  8430. image: {
  8431. source: "./media/characters/teal/naga.svg",
  8432. extra: 1902 / 1858,
  8433. bottom: 0 / 1902
  8434. }
  8435. },
  8436. hand: {
  8437. height: math.unit(0.52, "meters"),
  8438. name: "Hand",
  8439. image: {
  8440. source: "./media/characters/teal/hand.svg"
  8441. }
  8442. },
  8443. maw: {
  8444. height: math.unit(0.43, "meters"),
  8445. name: "Maw",
  8446. image: {
  8447. source: "./media/characters/teal/maw.svg"
  8448. }
  8449. },
  8450. slit: {
  8451. height: math.unit(0.25, "meters"),
  8452. name: "Slit",
  8453. image: {
  8454. source: "./media/characters/teal/slit.svg"
  8455. }
  8456. },
  8457. },
  8458. [
  8459. {
  8460. name: "Normal",
  8461. height: math.unit(2.75, "meters"),
  8462. default: true
  8463. },
  8464. {
  8465. name: "Macro",
  8466. height: math.unit(300, "feet")
  8467. },
  8468. {
  8469. name: "Macro+",
  8470. height: math.unit(2000, "feet")
  8471. },
  8472. ]
  8473. ))
  8474. characterMakers.push(() => makeCharacter(
  8475. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8476. {
  8477. frontCat: {
  8478. height: math.unit(6, "feet"),
  8479. weight: math.unit(180, "lbs"),
  8480. name: "Front (Cat)",
  8481. image: {
  8482. source: "./media/characters/ravin-amulet/front-cat.svg"
  8483. }
  8484. },
  8485. frontCatAlt: {
  8486. height: math.unit(6, "feet"),
  8487. weight: math.unit(180, "lbs"),
  8488. name: "Front (Alt, Cat)",
  8489. image: {
  8490. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8491. }
  8492. },
  8493. frontWerewolf: {
  8494. height: math.unit(6 * 1.2, "feet"),
  8495. weight: math.unit(225, "lbs"),
  8496. name: "Front (Werewolf)",
  8497. image: {
  8498. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8499. }
  8500. },
  8501. backWerewolf: {
  8502. height: math.unit(6 * 1.2, "feet"),
  8503. weight: math.unit(225, "lbs"),
  8504. name: "Back (Werewolf)",
  8505. image: {
  8506. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8507. }
  8508. },
  8509. },
  8510. [
  8511. {
  8512. name: "Nano",
  8513. height: math.unit(1, "micrometer")
  8514. },
  8515. {
  8516. name: "Micro",
  8517. height: math.unit(1, "inch")
  8518. },
  8519. {
  8520. name: "Normal",
  8521. height: math.unit(6, "feet"),
  8522. default: true
  8523. },
  8524. {
  8525. name: "Macro",
  8526. height: math.unit(60, "feet")
  8527. }
  8528. ]
  8529. ))
  8530. characterMakers.push(() => makeCharacter(
  8531. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8532. {
  8533. front: {
  8534. height: math.unit(6, "feet"),
  8535. weight: math.unit(165, "lbs"),
  8536. name: "Front",
  8537. image: {
  8538. source: "./media/characters/fluoresce/front.svg"
  8539. }
  8540. }
  8541. },
  8542. [
  8543. {
  8544. name: "Micro",
  8545. height: math.unit(6, "cm")
  8546. },
  8547. {
  8548. name: "Normal",
  8549. height: math.unit(5 + 7 / 12, "feet"),
  8550. default: true
  8551. },
  8552. {
  8553. name: "Macro",
  8554. height: math.unit(56, "feet")
  8555. },
  8556. {
  8557. name: "Megamacro",
  8558. height: math.unit(1.9, "miles")
  8559. },
  8560. ]
  8561. ))
  8562. characterMakers.push(() => makeCharacter(
  8563. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8564. {
  8565. front: {
  8566. height: math.unit(9 + 6 / 12, "feet"),
  8567. weight: math.unit(523, "lbs"),
  8568. name: "Side",
  8569. image: {
  8570. source: "./media/characters/aurora/side.svg",
  8571. extra: 474/393,
  8572. bottom: 5/479
  8573. }
  8574. }
  8575. },
  8576. [
  8577. {
  8578. name: "Normal",
  8579. height: math.unit(9 + 6 / 12, "feet")
  8580. },
  8581. {
  8582. name: "Macro",
  8583. height: math.unit(96, "feet"),
  8584. default: true
  8585. },
  8586. {
  8587. name: "Macro+",
  8588. height: math.unit(243, "feet")
  8589. },
  8590. ]
  8591. ))
  8592. characterMakers.push(() => makeCharacter(
  8593. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8594. {
  8595. front: {
  8596. height: math.unit(194, "cm"),
  8597. weight: math.unit(90, "kg"),
  8598. name: "Front",
  8599. image: {
  8600. source: "./media/characters/ranek/front.svg",
  8601. extra: 1862/1791,
  8602. bottom: 80/1942
  8603. }
  8604. },
  8605. back: {
  8606. height: math.unit(194, "cm"),
  8607. weight: math.unit(90, "kg"),
  8608. name: "Back",
  8609. image: {
  8610. source: "./media/characters/ranek/back.svg",
  8611. extra: 1853/1787,
  8612. bottom: 74/1927
  8613. }
  8614. },
  8615. feral: {
  8616. height: math.unit(30, "cm"),
  8617. weight: math.unit(1.6, "lbs"),
  8618. name: "Feral",
  8619. image: {
  8620. source: "./media/characters/ranek/feral.svg",
  8621. extra: 990/631,
  8622. bottom: 29/1019
  8623. }
  8624. },
  8625. },
  8626. [
  8627. {
  8628. name: "Normal",
  8629. height: math.unit(194, "cm"),
  8630. default: true
  8631. },
  8632. {
  8633. name: "Macro",
  8634. height: math.unit(100, "meters")
  8635. },
  8636. ]
  8637. ))
  8638. characterMakers.push(() => makeCharacter(
  8639. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8640. {
  8641. front: {
  8642. height: math.unit(5 + 6 / 12, "feet"),
  8643. weight: math.unit(153, "lbs"),
  8644. name: "Front",
  8645. image: {
  8646. source: "./media/characters/andrew-cooper/front.svg"
  8647. }
  8648. },
  8649. },
  8650. [
  8651. {
  8652. name: "Nano",
  8653. height: math.unit(1, "mm")
  8654. },
  8655. {
  8656. name: "Micro",
  8657. height: math.unit(2, "inches")
  8658. },
  8659. {
  8660. name: "Normal",
  8661. height: math.unit(5 + 6 / 12, "feet"),
  8662. default: true
  8663. }
  8664. ]
  8665. ))
  8666. characterMakers.push(() => makeCharacter(
  8667. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8668. {
  8669. front: {
  8670. height: math.unit(6, "feet"),
  8671. weight: math.unit(180, "lbs"),
  8672. name: "Front",
  8673. image: {
  8674. source: "./media/characters/akane-sato/front.svg",
  8675. extra: 1219 / 1140
  8676. }
  8677. },
  8678. back: {
  8679. height: math.unit(6, "feet"),
  8680. weight: math.unit(180, "lbs"),
  8681. name: "Back",
  8682. image: {
  8683. source: "./media/characters/akane-sato/back.svg",
  8684. extra: 1219 / 1170
  8685. }
  8686. },
  8687. },
  8688. [
  8689. {
  8690. name: "Normal",
  8691. height: math.unit(2.5, "meters")
  8692. },
  8693. {
  8694. name: "Macro",
  8695. height: math.unit(250, "meters"),
  8696. default: true
  8697. },
  8698. {
  8699. name: "Megamacro",
  8700. height: math.unit(25, "km")
  8701. },
  8702. ]
  8703. ))
  8704. characterMakers.push(() => makeCharacter(
  8705. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8706. {
  8707. front: {
  8708. height: math.unit(6, "feet"),
  8709. weight: math.unit(65, "kg"),
  8710. name: "Front",
  8711. image: {
  8712. source: "./media/characters/rook/front.svg",
  8713. extra: 960 / 950
  8714. }
  8715. }
  8716. },
  8717. [
  8718. {
  8719. name: "Normal",
  8720. height: math.unit(8.8, "feet")
  8721. },
  8722. {
  8723. name: "Macro",
  8724. height: math.unit(88, "feet"),
  8725. default: true
  8726. },
  8727. {
  8728. name: "Megamacro",
  8729. height: math.unit(8, "miles")
  8730. },
  8731. ]
  8732. ))
  8733. characterMakers.push(() => makeCharacter(
  8734. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8735. {
  8736. front: {
  8737. height: math.unit(12 + 2 / 12, "feet"),
  8738. weight: math.unit(808, "lbs"),
  8739. name: "Front",
  8740. image: {
  8741. source: "./media/characters/prodigy/front.svg"
  8742. }
  8743. }
  8744. },
  8745. [
  8746. {
  8747. name: "Normal",
  8748. height: math.unit(12 + 2 / 12, "feet"),
  8749. default: true
  8750. },
  8751. {
  8752. name: "Macro",
  8753. height: math.unit(143, "feet")
  8754. },
  8755. {
  8756. name: "Macro+",
  8757. height: math.unit(400, "feet")
  8758. },
  8759. ]
  8760. ))
  8761. characterMakers.push(() => makeCharacter(
  8762. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8763. {
  8764. front: {
  8765. height: math.unit(6, "feet"),
  8766. weight: math.unit(225, "lbs"),
  8767. name: "Front",
  8768. image: {
  8769. source: "./media/characters/daniel/front.svg"
  8770. }
  8771. },
  8772. leaning: {
  8773. height: math.unit(6, "feet"),
  8774. weight: math.unit(225, "lbs"),
  8775. name: "Leaning",
  8776. image: {
  8777. source: "./media/characters/daniel/leaning.svg"
  8778. }
  8779. },
  8780. },
  8781. [
  8782. {
  8783. name: "Macro",
  8784. height: math.unit(1000, "feet"),
  8785. default: true
  8786. },
  8787. ]
  8788. ))
  8789. characterMakers.push(() => makeCharacter(
  8790. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8791. {
  8792. front: {
  8793. height: math.unit(6, "feet"),
  8794. weight: math.unit(88, "lbs"),
  8795. name: "Front",
  8796. image: {
  8797. source: "./media/characters/chiros/front.svg",
  8798. extra: 306 / 226
  8799. }
  8800. },
  8801. side: {
  8802. height: math.unit(6, "feet"),
  8803. weight: math.unit(88, "lbs"),
  8804. name: "Side",
  8805. image: {
  8806. source: "./media/characters/chiros/side.svg",
  8807. extra: 306 / 226
  8808. }
  8809. },
  8810. },
  8811. [
  8812. {
  8813. name: "Normal",
  8814. height: math.unit(6, "cm"),
  8815. default: true
  8816. },
  8817. ]
  8818. ))
  8819. characterMakers.push(() => makeCharacter(
  8820. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8821. {
  8822. front: {
  8823. height: math.unit(6, "feet"),
  8824. weight: math.unit(100, "lbs"),
  8825. name: "Front",
  8826. image: {
  8827. source: "./media/characters/selka/front.svg",
  8828. extra: 947 / 887
  8829. }
  8830. }
  8831. },
  8832. [
  8833. {
  8834. name: "Normal",
  8835. height: math.unit(5, "cm"),
  8836. default: true
  8837. },
  8838. ]
  8839. ))
  8840. characterMakers.push(() => makeCharacter(
  8841. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8842. {
  8843. front: {
  8844. height: math.unit(8 + 3 / 12, "feet"),
  8845. weight: math.unit(424, "lbs"),
  8846. name: "Front",
  8847. image: {
  8848. source: "./media/characters/verin/front.svg",
  8849. extra: 1845 / 1550
  8850. }
  8851. },
  8852. frontArmored: {
  8853. height: math.unit(8 + 3 / 12, "feet"),
  8854. weight: math.unit(424, "lbs"),
  8855. name: "Front (Armored)",
  8856. image: {
  8857. source: "./media/characters/verin/front-armor.svg",
  8858. extra: 1845 / 1550,
  8859. bottom: 0.01
  8860. }
  8861. },
  8862. back: {
  8863. height: math.unit(8 + 3 / 12, "feet"),
  8864. weight: math.unit(424, "lbs"),
  8865. name: "Back",
  8866. image: {
  8867. source: "./media/characters/verin/back.svg",
  8868. bottom: 0.1,
  8869. extra: 1
  8870. }
  8871. },
  8872. foot: {
  8873. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8874. name: "Foot",
  8875. image: {
  8876. source: "./media/characters/verin/foot.svg"
  8877. }
  8878. },
  8879. },
  8880. [
  8881. {
  8882. name: "Normal",
  8883. height: math.unit(8 + 3 / 12, "feet")
  8884. },
  8885. {
  8886. name: "Minimacro",
  8887. height: math.unit(21, "feet"),
  8888. default: true
  8889. },
  8890. {
  8891. name: "Macro",
  8892. height: math.unit(626, "feet")
  8893. },
  8894. ]
  8895. ))
  8896. characterMakers.push(() => makeCharacter(
  8897. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8898. {
  8899. front: {
  8900. height: math.unit(2.718, "meters"),
  8901. weight: math.unit(150, "lbs"),
  8902. name: "Front",
  8903. image: {
  8904. source: "./media/characters/sovrim-terraquian/front.svg",
  8905. extra: 1752/1689,
  8906. bottom: 36/1788
  8907. }
  8908. },
  8909. back: {
  8910. height: math.unit(2.718, "meters"),
  8911. weight: math.unit(150, "lbs"),
  8912. name: "Back",
  8913. image: {
  8914. source: "./media/characters/sovrim-terraquian/back.svg",
  8915. extra: 1698/1657,
  8916. bottom: 58/1756
  8917. }
  8918. },
  8919. tongue: {
  8920. height: math.unit(2.865, "feet"),
  8921. name: "Tongue",
  8922. image: {
  8923. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8924. }
  8925. },
  8926. hand: {
  8927. height: math.unit(1.61, "feet"),
  8928. name: "Hand",
  8929. image: {
  8930. source: "./media/characters/sovrim-terraquian/hand.svg"
  8931. }
  8932. },
  8933. foot: {
  8934. height: math.unit(1.05, "feet"),
  8935. name: "Foot",
  8936. image: {
  8937. source: "./media/characters/sovrim-terraquian/foot.svg"
  8938. }
  8939. },
  8940. footAlt: {
  8941. height: math.unit(0.88, "feet"),
  8942. name: "Foot (Alt)",
  8943. image: {
  8944. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8945. }
  8946. },
  8947. },
  8948. [
  8949. {
  8950. name: "Micro",
  8951. height: math.unit(2, "inches")
  8952. },
  8953. {
  8954. name: "Small",
  8955. height: math.unit(1, "meter")
  8956. },
  8957. {
  8958. name: "Normal",
  8959. height: math.unit(Math.E, "meters"),
  8960. default: true
  8961. },
  8962. {
  8963. name: "Macro",
  8964. height: math.unit(20, "meters")
  8965. },
  8966. {
  8967. name: "Macro+",
  8968. height: math.unit(400, "meters")
  8969. },
  8970. ]
  8971. ))
  8972. characterMakers.push(() => makeCharacter(
  8973. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8974. {
  8975. front: {
  8976. height: math.unit(7, "feet"),
  8977. weight: math.unit(489, "lbs"),
  8978. name: "Front",
  8979. image: {
  8980. source: "./media/characters/reece-silvermane/front.svg",
  8981. bottom: 0.02,
  8982. extra: 1
  8983. }
  8984. },
  8985. },
  8986. [
  8987. {
  8988. name: "Macro",
  8989. height: math.unit(1.5, "miles"),
  8990. default: true
  8991. },
  8992. ]
  8993. ))
  8994. characterMakers.push(() => makeCharacter(
  8995. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8996. {
  8997. front: {
  8998. height: math.unit(6, "feet"),
  8999. weight: math.unit(78, "kg"),
  9000. name: "Front",
  9001. image: {
  9002. source: "./media/characters/kane/front.svg",
  9003. extra: 978 / 899
  9004. }
  9005. },
  9006. },
  9007. [
  9008. {
  9009. name: "Normal",
  9010. height: math.unit(2.1, "m"),
  9011. },
  9012. {
  9013. name: "Macro",
  9014. height: math.unit(1, "km"),
  9015. default: true
  9016. },
  9017. ]
  9018. ))
  9019. characterMakers.push(() => makeCharacter(
  9020. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  9021. {
  9022. front: {
  9023. height: math.unit(6, "feet"),
  9024. weight: math.unit(200, "kg"),
  9025. name: "Front",
  9026. image: {
  9027. source: "./media/characters/tegon/front.svg",
  9028. bottom: 0.01,
  9029. extra: 1
  9030. }
  9031. },
  9032. },
  9033. [
  9034. {
  9035. name: "Micro",
  9036. height: math.unit(1, "inch")
  9037. },
  9038. {
  9039. name: "Normal",
  9040. height: math.unit(6 + 3 / 12, "feet"),
  9041. default: true
  9042. },
  9043. {
  9044. name: "Macro",
  9045. height: math.unit(300, "feet")
  9046. },
  9047. {
  9048. name: "Megamacro",
  9049. height: math.unit(69, "miles")
  9050. },
  9051. ]
  9052. ))
  9053. characterMakers.push(() => makeCharacter(
  9054. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  9055. {
  9056. side: {
  9057. height: math.unit(6, "feet"),
  9058. weight: math.unit(2304, "lbs"),
  9059. name: "Side",
  9060. image: {
  9061. source: "./media/characters/arcturax/side.svg",
  9062. extra: 790 / 376,
  9063. bottom: 0.01
  9064. }
  9065. },
  9066. },
  9067. [
  9068. {
  9069. name: "Micro",
  9070. height: math.unit(2, "inch")
  9071. },
  9072. {
  9073. name: "Normal",
  9074. height: math.unit(6, "feet")
  9075. },
  9076. {
  9077. name: "Macro",
  9078. height: math.unit(39, "feet"),
  9079. default: true
  9080. },
  9081. {
  9082. name: "Megamacro",
  9083. height: math.unit(7, "miles")
  9084. },
  9085. ]
  9086. ))
  9087. characterMakers.push(() => makeCharacter(
  9088. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  9089. {
  9090. front: {
  9091. height: math.unit(6, "feet"),
  9092. weight: math.unit(50, "lbs"),
  9093. name: "Front",
  9094. image: {
  9095. source: "./media/characters/sentri/front.svg",
  9096. extra: 1750 / 1570,
  9097. bottom: 0.025
  9098. }
  9099. },
  9100. frontAlt: {
  9101. height: math.unit(6, "feet"),
  9102. weight: math.unit(50, "lbs"),
  9103. name: "Front (Alt)",
  9104. image: {
  9105. source: "./media/characters/sentri/front-alt.svg",
  9106. extra: 1750 / 1570,
  9107. bottom: 0.025
  9108. }
  9109. },
  9110. },
  9111. [
  9112. {
  9113. name: "Normal",
  9114. height: math.unit(15, "feet"),
  9115. default: true
  9116. },
  9117. {
  9118. name: "Macro",
  9119. height: math.unit(2500, "feet")
  9120. }
  9121. ]
  9122. ))
  9123. characterMakers.push(() => makeCharacter(
  9124. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9125. {
  9126. front: {
  9127. height: math.unit(5 + 8 / 12, "feet"),
  9128. weight: math.unit(130, "lbs"),
  9129. name: "Front",
  9130. image: {
  9131. source: "./media/characters/corvin/front.svg",
  9132. extra: 1803 / 1629
  9133. }
  9134. },
  9135. frontShirt: {
  9136. height: math.unit(5 + 8 / 12, "feet"),
  9137. weight: math.unit(130, "lbs"),
  9138. name: "Front (Shirt)",
  9139. image: {
  9140. source: "./media/characters/corvin/front-shirt.svg",
  9141. extra: 1803 / 1629
  9142. }
  9143. },
  9144. frontPoncho: {
  9145. height: math.unit(5 + 8 / 12, "feet"),
  9146. weight: math.unit(130, "lbs"),
  9147. name: "Front (Poncho)",
  9148. image: {
  9149. source: "./media/characters/corvin/front-poncho.svg",
  9150. extra: 1803 / 1629
  9151. }
  9152. },
  9153. side: {
  9154. height: math.unit(5 + 8 / 12, "feet"),
  9155. weight: math.unit(130, "lbs"),
  9156. name: "Side",
  9157. image: {
  9158. source: "./media/characters/corvin/side.svg",
  9159. extra: 1012 / 945
  9160. }
  9161. },
  9162. back: {
  9163. height: math.unit(5 + 8 / 12, "feet"),
  9164. weight: math.unit(130, "lbs"),
  9165. name: "Back",
  9166. image: {
  9167. source: "./media/characters/corvin/back.svg",
  9168. extra: 1803 / 1629
  9169. }
  9170. },
  9171. },
  9172. [
  9173. {
  9174. name: "Micro",
  9175. height: math.unit(3, "inches")
  9176. },
  9177. {
  9178. name: "Normal",
  9179. height: math.unit(5 + 8 / 12, "feet")
  9180. },
  9181. {
  9182. name: "Macro",
  9183. height: math.unit(300, "feet"),
  9184. default: true
  9185. },
  9186. {
  9187. name: "Megamacro",
  9188. height: math.unit(500, "miles")
  9189. }
  9190. ]
  9191. ))
  9192. characterMakers.push(() => makeCharacter(
  9193. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9194. {
  9195. front: {
  9196. height: math.unit(6, "feet"),
  9197. weight: math.unit(135, "lbs"),
  9198. name: "Front",
  9199. image: {
  9200. source: "./media/characters/q/front.svg",
  9201. extra: 854 / 752,
  9202. bottom: 0.005
  9203. }
  9204. },
  9205. back: {
  9206. height: math.unit(6, "feet"),
  9207. weight: math.unit(130, "lbs"),
  9208. name: "Back",
  9209. image: {
  9210. source: "./media/characters/q/back.svg",
  9211. extra: 854 / 752
  9212. }
  9213. },
  9214. },
  9215. [
  9216. {
  9217. name: "Macro",
  9218. height: math.unit(90, "feet"),
  9219. default: true
  9220. },
  9221. {
  9222. name: "Extra Macro",
  9223. height: math.unit(300, "feet"),
  9224. },
  9225. {
  9226. name: "BIG WALF",
  9227. height: math.unit(750, "feet"),
  9228. },
  9229. ]
  9230. ))
  9231. characterMakers.push(() => makeCharacter(
  9232. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9233. {
  9234. front: {
  9235. height: math.unit(3, "feet"),
  9236. weight: math.unit(28, "lbs"),
  9237. name: "Front",
  9238. image: {
  9239. source: "./media/characters/citrine/front.svg"
  9240. }
  9241. }
  9242. },
  9243. [
  9244. {
  9245. name: "Normal",
  9246. height: math.unit(3, "feet"),
  9247. default: true
  9248. }
  9249. ]
  9250. ))
  9251. characterMakers.push(() => makeCharacter(
  9252. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9253. {
  9254. front: {
  9255. height: math.unit(14, "feet"),
  9256. weight: math.unit(1450, "kg"),
  9257. preyCapacity: math.unit(15, "people"),
  9258. name: "Front",
  9259. image: {
  9260. source: "./media/characters/aura-starwind/front.svg",
  9261. extra: 1440/1327,
  9262. bottom: 11/1451
  9263. }
  9264. },
  9265. side: {
  9266. height: math.unit(14, "feet"),
  9267. weight: math.unit(1450, "kg"),
  9268. preyCapacity: math.unit(15, "people"),
  9269. name: "Side",
  9270. image: {
  9271. source: "./media/characters/aura-starwind/side.svg",
  9272. extra: 1654 / 1497
  9273. }
  9274. },
  9275. taur: {
  9276. height: math.unit(18, "feet"),
  9277. weight: math.unit(5500, "kg"),
  9278. preyCapacity: math.unit(50, "people"),
  9279. name: "Taur",
  9280. image: {
  9281. source: "./media/characters/aura-starwind/taur.svg",
  9282. extra: 1760 / 1650
  9283. }
  9284. },
  9285. feral: {
  9286. height: math.unit(46, "feet"),
  9287. weight: math.unit(25000, "kg"),
  9288. preyCapacity: math.unit(120, "people"),
  9289. name: "Feral",
  9290. image: {
  9291. source: "./media/characters/aura-starwind/feral.svg"
  9292. }
  9293. },
  9294. },
  9295. [
  9296. {
  9297. name: "Normal",
  9298. height: math.unit(14, "feet"),
  9299. default: true
  9300. },
  9301. {
  9302. name: "Macro",
  9303. height: math.unit(50, "meters")
  9304. },
  9305. {
  9306. name: "Megamacro",
  9307. height: math.unit(5000, "meters")
  9308. },
  9309. {
  9310. name: "Gigamacro",
  9311. height: math.unit(100000, "kilometers")
  9312. },
  9313. ]
  9314. ))
  9315. characterMakers.push(() => makeCharacter(
  9316. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9317. {
  9318. front: {
  9319. height: math.unit(2 + 7 / 12, "feet"),
  9320. weight: math.unit(32, "lbs"),
  9321. name: "Front",
  9322. image: {
  9323. source: "./media/characters/rivet/front.svg",
  9324. extra: 1716 / 1658,
  9325. bottom: 0.03
  9326. }
  9327. },
  9328. foot: {
  9329. height: math.unit(0.551, "feet"),
  9330. name: "Rivet's Foot",
  9331. image: {
  9332. source: "./media/characters/rivet/foot.svg"
  9333. },
  9334. rename: true
  9335. }
  9336. },
  9337. [
  9338. {
  9339. name: "Micro",
  9340. height: math.unit(1.5, "inches"),
  9341. },
  9342. {
  9343. name: "Normal",
  9344. height: math.unit(2 + 7 / 12, "feet"),
  9345. default: true
  9346. },
  9347. {
  9348. name: "Macro",
  9349. height: math.unit(85, "feet")
  9350. },
  9351. {
  9352. name: "Megamacro",
  9353. height: math.unit(2.2, "km")
  9354. }
  9355. ]
  9356. ))
  9357. characterMakers.push(() => makeCharacter(
  9358. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9359. {
  9360. front: {
  9361. height: math.unit(5 + 9 / 12, "feet"),
  9362. weight: math.unit(150, "lbs"),
  9363. name: "Front",
  9364. image: {
  9365. source: "./media/characters/coffee/front.svg",
  9366. extra: 946/880,
  9367. bottom: 66/1012
  9368. }
  9369. },
  9370. foot: {
  9371. height: math.unit(1.29, "feet"),
  9372. name: "Foot",
  9373. image: {
  9374. source: "./media/characters/coffee/foot.svg"
  9375. }
  9376. },
  9377. },
  9378. [
  9379. {
  9380. name: "Micro",
  9381. height: math.unit(2, "inches"),
  9382. },
  9383. {
  9384. name: "Normal",
  9385. height: math.unit(5 + 9 / 12, "feet"),
  9386. default: true
  9387. },
  9388. {
  9389. name: "Macro",
  9390. height: math.unit(800, "feet")
  9391. },
  9392. {
  9393. name: "Megamacro",
  9394. height: math.unit(25, "miles")
  9395. }
  9396. ]
  9397. ))
  9398. characterMakers.push(() => makeCharacter(
  9399. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9400. {
  9401. front: {
  9402. height: math.unit(6, "feet"),
  9403. weight: math.unit(200, "lbs"),
  9404. name: "Front",
  9405. image: {
  9406. source: "./media/characters/chari-gal/front.svg",
  9407. extra: 1568 / 1385,
  9408. bottom: 0.047
  9409. }
  9410. },
  9411. gigantamax: {
  9412. height: math.unit(6 * 16, "feet"),
  9413. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9414. name: "Gigantamax",
  9415. image: {
  9416. source: "./media/characters/chari-gal/gigantamax.svg",
  9417. extra: 1124 / 888,
  9418. bottom: 0.03
  9419. }
  9420. },
  9421. },
  9422. [
  9423. {
  9424. name: "Normal",
  9425. height: math.unit(5 + 7 / 12, "feet")
  9426. },
  9427. {
  9428. name: "Macro",
  9429. height: math.unit(200, "feet"),
  9430. default: true
  9431. }
  9432. ]
  9433. ))
  9434. characterMakers.push(() => makeCharacter(
  9435. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9436. {
  9437. front: {
  9438. height: math.unit(6, "feet"),
  9439. weight: math.unit(150, "lbs"),
  9440. name: "Front",
  9441. image: {
  9442. source: "./media/characters/nova/front.svg",
  9443. extra: 5000 / 4722,
  9444. bottom: 0.02
  9445. }
  9446. }
  9447. },
  9448. [
  9449. {
  9450. name: "Micro-",
  9451. height: math.unit(0.8, "inches")
  9452. },
  9453. {
  9454. name: "Micro",
  9455. height: math.unit(2, "inches"),
  9456. default: true
  9457. },
  9458. ]
  9459. ))
  9460. characterMakers.push(() => makeCharacter(
  9461. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9462. {
  9463. koboldFront: {
  9464. height: math.unit(3 + 1 / 12, "feet"),
  9465. weight: math.unit(21.7, "lbs"),
  9466. name: "Front",
  9467. image: {
  9468. source: "./media/characters/argent/kobold-front.svg",
  9469. extra: 1471 / 1331,
  9470. bottom: 100.8 / 1575.5
  9471. },
  9472. form: "kobold",
  9473. default: true
  9474. },
  9475. dragonFront: {
  9476. height: math.unit(75, "inches"),
  9477. name: "Front",
  9478. image: {
  9479. source: "./media/characters/argent/dragon-front.svg",
  9480. extra: 1389/1248,
  9481. bottom: 54/1443
  9482. },
  9483. form: "dragon",
  9484. },
  9485. dragonBack: {
  9486. height: math.unit(75, "inches"),
  9487. name: "Back",
  9488. image: {
  9489. source: "./media/characters/argent/dragon-back.svg",
  9490. extra: 1399/1271,
  9491. bottom: 23/1422
  9492. },
  9493. form: "dragon",
  9494. },
  9495. dragonDressed: {
  9496. height: math.unit(75, "inches"),
  9497. name: "Dressed",
  9498. image: {
  9499. source: "./media/characters/argent/dragon-dressed.svg",
  9500. extra: 1350/1215,
  9501. bottom: 26/1376
  9502. },
  9503. form: "dragon"
  9504. },
  9505. dragonHead: {
  9506. height: math.unit(23.5, "inches"),
  9507. name: "Head",
  9508. image: {
  9509. source: "./media/characters/argent/dragon-head.svg"
  9510. },
  9511. form: "dragon",
  9512. },
  9513. },
  9514. [
  9515. {
  9516. name: "Micro",
  9517. height: math.unit(2, "inches"),
  9518. form: "kobold",
  9519. },
  9520. {
  9521. name: "Normal",
  9522. height: math.unit(3 + 1 / 12, "feet"),
  9523. form: "kobold",
  9524. default: true
  9525. },
  9526. {
  9527. name: "Macro",
  9528. height: math.unit(120, "feet"),
  9529. form: "kobold",
  9530. },
  9531. {
  9532. name: "Speck",
  9533. height: math.unit(1, "mm"),
  9534. form: "dragon",
  9535. },
  9536. {
  9537. name: "Tiny",
  9538. height: math.unit(1, "cm"),
  9539. form: "dragon",
  9540. },
  9541. {
  9542. name: "Micro",
  9543. height: math.unit(5, "cm"),
  9544. form: "dragon",
  9545. },
  9546. {
  9547. name: "Normal",
  9548. height: math.unit(75, "inches"),
  9549. form: "dragon",
  9550. default: true
  9551. },
  9552. {
  9553. name: "Extra Tall",
  9554. height: math.unit(9, "feet"),
  9555. form: "dragon",
  9556. },
  9557. {
  9558. name: "Inconvenient",
  9559. height: math.unit(5, "meters"),
  9560. form: "dragon",
  9561. },
  9562. {
  9563. name: "Macro",
  9564. height: math.unit(70, "meters"),
  9565. form: "dragon",
  9566. },
  9567. {
  9568. name: "Macro+",
  9569. height: math.unit(250, "meters"),
  9570. form: "dragon",
  9571. },
  9572. {
  9573. name: "Megamacro",
  9574. height: math.unit(20, "km"),
  9575. form: "dragon",
  9576. },
  9577. {
  9578. name: "Mountainous",
  9579. height: math.unit(100, "km"),
  9580. form: "dragon",
  9581. },
  9582. {
  9583. name: "Continental",
  9584. height: math.unit(2, "megameters"),
  9585. form: "dragon",
  9586. },
  9587. {
  9588. name: "Too Big",
  9589. height: math.unit(900, "megameters"),
  9590. form: "dragon",
  9591. },
  9592. ],
  9593. {
  9594. "kobold": {
  9595. name: "Kobold",
  9596. default: true
  9597. },
  9598. "dragon": {
  9599. name: "Dragon",
  9600. },
  9601. }
  9602. ))
  9603. characterMakers.push(() => makeCharacter(
  9604. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9605. {
  9606. lamp: {
  9607. height: math.unit(7 * 1559 / 989, "feet"),
  9608. name: "Magic Lamp",
  9609. image: {
  9610. source: "./media/characters/mira-al-cul/lamp.svg",
  9611. extra: 1617 / 1559
  9612. }
  9613. },
  9614. front: {
  9615. height: math.unit(7, "feet"),
  9616. name: "Front",
  9617. image: {
  9618. source: "./media/characters/mira-al-cul/front.svg",
  9619. extra: 1044 / 990
  9620. }
  9621. },
  9622. },
  9623. [
  9624. {
  9625. name: "Heavily Restricted",
  9626. height: math.unit(7 * 1559 / 989, "feet")
  9627. },
  9628. {
  9629. name: "Freshly Freed",
  9630. height: math.unit(50 * 1559 / 989, "feet")
  9631. },
  9632. {
  9633. name: "World Encompassing",
  9634. height: math.unit(10000 * 1559 / 989, "miles")
  9635. },
  9636. {
  9637. name: "Galactic",
  9638. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9639. },
  9640. {
  9641. name: "Palmed Universe",
  9642. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9643. default: true
  9644. },
  9645. {
  9646. name: "Multiversal Matriarch",
  9647. height: math.unit(8.87e10, "yottameters")
  9648. },
  9649. {
  9650. name: "Void Mother",
  9651. height: math.unit(3.14e110, "yottaparsecs")
  9652. },
  9653. {
  9654. name: "Toying with Transcendence",
  9655. height: math.unit(1e307, "meters")
  9656. },
  9657. ]
  9658. ))
  9659. characterMakers.push(() => makeCharacter(
  9660. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9661. {
  9662. front: {
  9663. height: math.unit(17 + 1 / 12, "feet"),
  9664. weight: math.unit(476.2 * 5, "lbs"),
  9665. name: "Front",
  9666. image: {
  9667. source: "./media/characters/kuro-shi-uchū/front.svg",
  9668. extra: 2329 / 1835,
  9669. bottom: 0.02
  9670. }
  9671. },
  9672. },
  9673. [
  9674. {
  9675. name: "Micro",
  9676. height: math.unit(2, "inches")
  9677. },
  9678. {
  9679. name: "Normal",
  9680. height: math.unit(12, "meters")
  9681. },
  9682. {
  9683. name: "Planetary",
  9684. height: math.unit(0.00929, "AU"),
  9685. default: true
  9686. },
  9687. {
  9688. name: "Universal",
  9689. height: math.unit(20, "gigaparsecs")
  9690. },
  9691. ]
  9692. ))
  9693. characterMakers.push(() => makeCharacter(
  9694. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9695. {
  9696. front: {
  9697. height: math.unit(5 + 2 / 12, "feet"),
  9698. weight: math.unit(120, "lbs"),
  9699. name: "Front",
  9700. image: {
  9701. source: "./media/characters/katherine/front.svg",
  9702. extra: 2075 / 1969
  9703. }
  9704. },
  9705. dress: {
  9706. height: math.unit(5 + 2 / 12, "feet"),
  9707. weight: math.unit(120, "lbs"),
  9708. name: "Dress",
  9709. image: {
  9710. source: "./media/characters/katherine/dress.svg",
  9711. extra: 2258 / 2064
  9712. }
  9713. },
  9714. },
  9715. [
  9716. {
  9717. name: "Micro",
  9718. height: math.unit(1, "inches"),
  9719. default: true
  9720. },
  9721. {
  9722. name: "Normal",
  9723. height: math.unit(5 + 2 / 12, "feet")
  9724. },
  9725. {
  9726. name: "Macro",
  9727. height: math.unit(100, "meters")
  9728. },
  9729. {
  9730. name: "Megamacro",
  9731. height: math.unit(80, "miles")
  9732. },
  9733. ]
  9734. ))
  9735. characterMakers.push(() => makeCharacter(
  9736. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9737. {
  9738. front: {
  9739. height: math.unit(7 + 8 / 12, "feet"),
  9740. weight: math.unit(250, "lbs"),
  9741. name: "Front",
  9742. image: {
  9743. source: "./media/characters/yevis/front.svg",
  9744. extra: 1938 / 1755
  9745. }
  9746. }
  9747. },
  9748. [
  9749. {
  9750. name: "Mortal",
  9751. height: math.unit(7 + 8 / 12, "feet")
  9752. },
  9753. {
  9754. name: "Battle",
  9755. height: math.unit(25 + 11 / 12, "feet")
  9756. },
  9757. {
  9758. name: "Wrath",
  9759. height: math.unit(1654 + 11 / 12, "feet")
  9760. },
  9761. {
  9762. name: "Planet Destroyer",
  9763. height: math.unit(12000, "miles")
  9764. },
  9765. {
  9766. name: "Galaxy Conqueror",
  9767. height: math.unit(1.45, "zettameters"),
  9768. default: true
  9769. },
  9770. {
  9771. name: "Universal War",
  9772. height: math.unit(184, "gigaparsecs")
  9773. },
  9774. {
  9775. name: "Eternity War",
  9776. height: math.unit(1.98e55, "yottaparsecs")
  9777. },
  9778. ]
  9779. ))
  9780. characterMakers.push(() => makeCharacter(
  9781. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9782. {
  9783. front: {
  9784. height: math.unit(5 + 8 / 12, "feet"),
  9785. weight: math.unit(63, "kg"),
  9786. name: "Front",
  9787. image: {
  9788. source: "./media/characters/xavier/front.svg",
  9789. extra: 944 / 883
  9790. }
  9791. },
  9792. frontStretch: {
  9793. height: math.unit(5 + 8 / 12, "feet"),
  9794. weight: math.unit(63, "kg"),
  9795. name: "Stretching",
  9796. image: {
  9797. source: "./media/characters/xavier/front-stretch.svg",
  9798. extra: 962 / 820
  9799. }
  9800. },
  9801. },
  9802. [
  9803. {
  9804. name: "Normal",
  9805. height: math.unit(5 + 8 / 12, "feet")
  9806. },
  9807. {
  9808. name: "Macro",
  9809. height: math.unit(100, "meters"),
  9810. default: true
  9811. },
  9812. {
  9813. name: "McLargeHuge",
  9814. height: math.unit(10, "miles")
  9815. },
  9816. ]
  9817. ))
  9818. characterMakers.push(() => makeCharacter(
  9819. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9820. {
  9821. front: {
  9822. height: math.unit(5 + 5 / 12, "feet"),
  9823. weight: math.unit(150, "lb"),
  9824. name: "Front",
  9825. image: {
  9826. source: "./media/characters/joshii/front.svg",
  9827. extra: 765 / 653,
  9828. bottom: 51 / 816
  9829. }
  9830. },
  9831. foot: {
  9832. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9833. name: "Foot",
  9834. image: {
  9835. source: "./media/characters/joshii/foot.svg"
  9836. }
  9837. },
  9838. },
  9839. [
  9840. {
  9841. name: "Micro",
  9842. height: math.unit(2, "inches")
  9843. },
  9844. {
  9845. name: "Normal",
  9846. height: math.unit(5 + 5 / 12, "feet")
  9847. },
  9848. {
  9849. name: "Macro",
  9850. height: math.unit(785, "feet"),
  9851. default: true
  9852. },
  9853. {
  9854. name: "Megamacro",
  9855. height: math.unit(24.5, "miles")
  9856. },
  9857. ]
  9858. ))
  9859. characterMakers.push(() => makeCharacter(
  9860. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9861. {
  9862. front: {
  9863. height: math.unit(6, "feet"),
  9864. weight: math.unit(150, "lb"),
  9865. name: "Front",
  9866. image: {
  9867. source: "./media/characters/goddess-elizabeth/front.svg",
  9868. extra: 1800 / 1525,
  9869. bottom: 0.005
  9870. }
  9871. },
  9872. foot: {
  9873. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9874. name: "Foot",
  9875. image: {
  9876. source: "./media/characters/goddess-elizabeth/foot.svg"
  9877. }
  9878. },
  9879. mouth: {
  9880. height: math.unit(6, "feet"),
  9881. name: "Mouth",
  9882. image: {
  9883. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9884. }
  9885. },
  9886. },
  9887. [
  9888. {
  9889. name: "Micro",
  9890. height: math.unit(12, "feet")
  9891. },
  9892. {
  9893. name: "Normal",
  9894. height: math.unit(80, "miles"),
  9895. default: true
  9896. },
  9897. {
  9898. name: "Macro",
  9899. height: math.unit(15000, "parsecs")
  9900. },
  9901. ]
  9902. ))
  9903. characterMakers.push(() => makeCharacter(
  9904. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9905. {
  9906. front: {
  9907. height: math.unit(5 + 9 / 12, "feet"),
  9908. weight: math.unit(144, "lb"),
  9909. name: "Front",
  9910. image: {
  9911. source: "./media/characters/kara/front.svg"
  9912. }
  9913. },
  9914. feet: {
  9915. height: math.unit(6 / 6.765, "feet"),
  9916. name: "Kara's Feet",
  9917. rename: true,
  9918. image: {
  9919. source: "./media/characters/kara/feet.svg"
  9920. }
  9921. },
  9922. },
  9923. [
  9924. {
  9925. name: "Normal",
  9926. height: math.unit(5 + 9 / 12, "feet")
  9927. },
  9928. {
  9929. name: "Macro",
  9930. height: math.unit(174, "feet"),
  9931. default: true
  9932. },
  9933. ]
  9934. ))
  9935. characterMakers.push(() => makeCharacter(
  9936. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9937. {
  9938. front: {
  9939. height: math.unit(18, "feet"),
  9940. weight: math.unit(4050, "lb"),
  9941. name: "Front",
  9942. image: {
  9943. source: "./media/characters/tyrone/front.svg",
  9944. extra: 2405 / 2270,
  9945. bottom: 182 / 2587
  9946. }
  9947. },
  9948. },
  9949. [
  9950. {
  9951. name: "Normal",
  9952. height: math.unit(18, "feet"),
  9953. default: true
  9954. },
  9955. {
  9956. name: "Macro",
  9957. height: math.unit(300, "feet")
  9958. },
  9959. {
  9960. name: "Megamacro",
  9961. height: math.unit(15, "km")
  9962. },
  9963. {
  9964. name: "Gigamacro",
  9965. height: math.unit(500, "km")
  9966. },
  9967. {
  9968. name: "Teramacro",
  9969. height: math.unit(0.5, "gigameters")
  9970. },
  9971. {
  9972. name: "Omnimacro",
  9973. height: math.unit(1e252, "yottauniverse")
  9974. },
  9975. ]
  9976. ))
  9977. characterMakers.push(() => makeCharacter(
  9978. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9979. {
  9980. front: {
  9981. height: math.unit(7 + 8 / 12, "feet"),
  9982. weight: math.unit(120, "lb"),
  9983. name: "Front",
  9984. image: {
  9985. source: "./media/characters/danny/front.svg",
  9986. extra: 1490 / 1350
  9987. }
  9988. },
  9989. back: {
  9990. height: math.unit(7 + 8 / 12, "feet"),
  9991. weight: math.unit(120, "lb"),
  9992. name: "Back",
  9993. image: {
  9994. source: "./media/characters/danny/back.svg",
  9995. extra: 1490 / 1350
  9996. }
  9997. },
  9998. },
  9999. [
  10000. {
  10001. name: "Normal",
  10002. height: math.unit(7 + 8 / 12, "feet"),
  10003. default: true
  10004. },
  10005. ]
  10006. ))
  10007. characterMakers.push(() => makeCharacter(
  10008. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  10009. {
  10010. front: {
  10011. height: math.unit(3.5, "inches"),
  10012. weight: math.unit(19, "grams"),
  10013. name: "Front",
  10014. image: {
  10015. source: "./media/characters/mallow/front.svg",
  10016. extra: 471 / 431
  10017. }
  10018. },
  10019. back: {
  10020. height: math.unit(3.5, "inches"),
  10021. weight: math.unit(19, "grams"),
  10022. name: "Back",
  10023. image: {
  10024. source: "./media/characters/mallow/back.svg",
  10025. extra: 471 / 431
  10026. }
  10027. },
  10028. },
  10029. [
  10030. {
  10031. name: "Normal",
  10032. height: math.unit(3.5, "inches"),
  10033. default: true
  10034. },
  10035. ]
  10036. ))
  10037. characterMakers.push(() => makeCharacter(
  10038. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  10039. {
  10040. front: {
  10041. height: math.unit(9, "feet"),
  10042. weight: math.unit(230, "kg"),
  10043. name: "Front",
  10044. image: {
  10045. source: "./media/characters/starry-aqua/front.svg"
  10046. }
  10047. },
  10048. back: {
  10049. height: math.unit(9, "feet"),
  10050. weight: math.unit(230, "kg"),
  10051. name: "Back",
  10052. image: {
  10053. source: "./media/characters/starry-aqua/back.svg"
  10054. }
  10055. },
  10056. hand: {
  10057. height: math.unit(9 * 0.1168, "feet"),
  10058. name: "Hand",
  10059. image: {
  10060. source: "./media/characters/starry-aqua/hand.svg"
  10061. }
  10062. },
  10063. foot: {
  10064. height: math.unit(9 * 0.18, "feet"),
  10065. name: "Foot",
  10066. image: {
  10067. source: "./media/characters/starry-aqua/foot.svg"
  10068. }
  10069. }
  10070. },
  10071. [
  10072. {
  10073. name: "Micro",
  10074. height: math.unit(3, "inches")
  10075. },
  10076. {
  10077. name: "Normal",
  10078. height: math.unit(9, "feet")
  10079. },
  10080. {
  10081. name: "Macro",
  10082. height: math.unit(300, "feet"),
  10083. default: true
  10084. },
  10085. {
  10086. name: "Megamacro",
  10087. height: math.unit(3200, "feet")
  10088. }
  10089. ]
  10090. ))
  10091. characterMakers.push(() => makeCharacter(
  10092. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  10093. {
  10094. front: {
  10095. height: math.unit(15, "feet"),
  10096. weight: math.unit(5026, "lb"),
  10097. name: "Front",
  10098. image: {
  10099. source: "./media/characters/luka-towers/front.svg",
  10100. extra: 1269/1133,
  10101. bottom: 51/1320
  10102. }
  10103. },
  10104. },
  10105. [
  10106. {
  10107. name: "Normal",
  10108. height: math.unit(15, "feet"),
  10109. default: true
  10110. },
  10111. {
  10112. name: "Minimacro",
  10113. height: math.unit(25, "feet")
  10114. },
  10115. {
  10116. name: "Macro",
  10117. height: math.unit(320, "feet")
  10118. },
  10119. {
  10120. name: "Megamacro",
  10121. height: math.unit(35000, "feet")
  10122. },
  10123. {
  10124. name: "Gigamacro",
  10125. height: math.unit(4000, "miles")
  10126. },
  10127. {
  10128. name: "Teramacro",
  10129. height: math.unit(15000, "miles")
  10130. },
  10131. ]
  10132. ))
  10133. characterMakers.push(() => makeCharacter(
  10134. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10135. {
  10136. front: {
  10137. height: math.unit(6, "feet"),
  10138. weight: math.unit(150, "lb"),
  10139. name: "Front",
  10140. image: {
  10141. source: "./media/characters/natalie-nightring/front.svg",
  10142. extra: 1,
  10143. bottom: 0.06
  10144. }
  10145. },
  10146. },
  10147. [
  10148. {
  10149. name: "Uh Oh",
  10150. height: math.unit(0.1, "mm")
  10151. },
  10152. {
  10153. name: "Small",
  10154. height: math.unit(3, "inches")
  10155. },
  10156. {
  10157. name: "Human Scale",
  10158. height: math.unit(6, "feet")
  10159. },
  10160. {
  10161. name: "Librarian",
  10162. height: math.unit(50, "feet"),
  10163. default: true
  10164. },
  10165. {
  10166. name: "Immense",
  10167. height: math.unit(200, "miles")
  10168. },
  10169. ]
  10170. ))
  10171. characterMakers.push(() => makeCharacter(
  10172. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10173. {
  10174. front: {
  10175. height: math.unit(6, "feet"),
  10176. weight: math.unit(180, "lbs"),
  10177. name: "Front",
  10178. image: {
  10179. source: "./media/characters/danni-rosie/front.svg",
  10180. extra: 1260 / 1128,
  10181. bottom: 0.022
  10182. }
  10183. },
  10184. },
  10185. [
  10186. {
  10187. name: "Micro",
  10188. height: math.unit(2, "inches"),
  10189. default: true
  10190. },
  10191. ]
  10192. ))
  10193. characterMakers.push(() => makeCharacter(
  10194. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10195. {
  10196. front: {
  10197. height: math.unit(5 + 9 / 12, "feet"),
  10198. weight: math.unit(220, "lb"),
  10199. name: "Front",
  10200. image: {
  10201. source: "./media/characters/samantha-kruse/front.svg",
  10202. extra: (985 / 935),
  10203. bottom: 0.03
  10204. }
  10205. },
  10206. frontUndressed: {
  10207. height: math.unit(5 + 9 / 12, "feet"),
  10208. weight: math.unit(220, "lb"),
  10209. name: "Front (Undressed)",
  10210. image: {
  10211. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10212. extra: (973 / 923),
  10213. bottom: 0.025
  10214. }
  10215. },
  10216. fat: {
  10217. height: math.unit(5 + 9 / 12, "feet"),
  10218. weight: math.unit(900, "lb"),
  10219. name: "Front (Fat)",
  10220. image: {
  10221. source: "./media/characters/samantha-kruse/fat.svg",
  10222. extra: 2688 / 2561
  10223. }
  10224. },
  10225. },
  10226. [
  10227. {
  10228. name: "Normal",
  10229. height: math.unit(5 + 9 / 12, "feet"),
  10230. default: true
  10231. }
  10232. ]
  10233. ))
  10234. characterMakers.push(() => makeCharacter(
  10235. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10236. {
  10237. back: {
  10238. height: math.unit(5 + 4 / 12, "feet"),
  10239. weight: math.unit(4963, "lb"),
  10240. name: "Back",
  10241. image: {
  10242. source: "./media/characters/amelia-rosie/back.svg",
  10243. extra: 1113 / 963,
  10244. bottom: 0.01
  10245. }
  10246. },
  10247. },
  10248. [
  10249. {
  10250. name: "Level 0",
  10251. height: math.unit(5 + 4 / 12, "feet")
  10252. },
  10253. {
  10254. name: "Level 1",
  10255. height: math.unit(164597, "feet"),
  10256. default: true
  10257. },
  10258. {
  10259. name: "Level 2",
  10260. height: math.unit(956243, "miles")
  10261. },
  10262. {
  10263. name: "Level 3",
  10264. height: math.unit(29421709423, "miles")
  10265. },
  10266. {
  10267. name: "Level 4",
  10268. height: math.unit(154, "lightyears")
  10269. },
  10270. {
  10271. name: "Level 5",
  10272. height: math.unit(4738272, "lightyears")
  10273. },
  10274. {
  10275. name: "Level 6",
  10276. height: math.unit(145787152896, "lightyears")
  10277. },
  10278. ]
  10279. ))
  10280. characterMakers.push(() => makeCharacter(
  10281. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10282. {
  10283. front: {
  10284. height: math.unit(5 + 11 / 12, "feet"),
  10285. weight: math.unit(65, "kg"),
  10286. name: "Front",
  10287. image: {
  10288. source: "./media/characters/rook-kitara/front.svg",
  10289. extra: 1347 / 1274,
  10290. bottom: 0.005
  10291. }
  10292. },
  10293. },
  10294. [
  10295. {
  10296. name: "Totally Unfair",
  10297. height: math.unit(1.8, "mm")
  10298. },
  10299. {
  10300. name: "Lap Rookie",
  10301. height: math.unit(1.4, "feet")
  10302. },
  10303. {
  10304. name: "Normal",
  10305. height: math.unit(5 + 11 / 12, "feet"),
  10306. default: true
  10307. },
  10308. {
  10309. name: "How Did This Happen",
  10310. height: math.unit(80, "miles")
  10311. }
  10312. ]
  10313. ))
  10314. characterMakers.push(() => makeCharacter(
  10315. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10316. {
  10317. front: {
  10318. height: math.unit(7, "feet"),
  10319. weight: math.unit(300, "lb"),
  10320. name: "Front",
  10321. image: {
  10322. source: "./media/characters/pisces/front.svg",
  10323. extra: 2255 / 2115,
  10324. bottom: 0.03
  10325. }
  10326. },
  10327. back: {
  10328. height: math.unit(7, "feet"),
  10329. weight: math.unit(300, "lb"),
  10330. name: "Back",
  10331. image: {
  10332. source: "./media/characters/pisces/back.svg",
  10333. extra: 2146 / 2055,
  10334. bottom: 0.04
  10335. }
  10336. },
  10337. },
  10338. [
  10339. {
  10340. name: "Normal",
  10341. height: math.unit(7, "feet"),
  10342. default: true
  10343. },
  10344. {
  10345. name: "Swimming Pool",
  10346. height: math.unit(12.2, "meters")
  10347. },
  10348. {
  10349. name: "Olympic Swimming Pool",
  10350. height: math.unit(56.3, "meters")
  10351. },
  10352. {
  10353. name: "Lake Superior",
  10354. height: math.unit(93900, "meters")
  10355. },
  10356. {
  10357. name: "Mediterranean Sea",
  10358. height: math.unit(644457, "meters")
  10359. },
  10360. {
  10361. name: "World's Oceans",
  10362. height: math.unit(4567491, "meters")
  10363. },
  10364. ]
  10365. ))
  10366. characterMakers.push(() => makeCharacter(
  10367. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10368. {
  10369. front: {
  10370. height: math.unit(2.3, "meters"),
  10371. weight: math.unit(120, "kg"),
  10372. name: "Front",
  10373. image: {
  10374. source: "./media/characters/zelas/front.svg"
  10375. }
  10376. },
  10377. side: {
  10378. height: math.unit(2.3, "meters"),
  10379. weight: math.unit(120, "kg"),
  10380. name: "Side",
  10381. image: {
  10382. source: "./media/characters/zelas/side.svg"
  10383. }
  10384. },
  10385. back: {
  10386. height: math.unit(2.3, "meters"),
  10387. weight: math.unit(120, "kg"),
  10388. name: "Back",
  10389. image: {
  10390. source: "./media/characters/zelas/back.svg"
  10391. }
  10392. },
  10393. foot: {
  10394. height: math.unit(1.116, "feet"),
  10395. name: "Foot",
  10396. image: {
  10397. source: "./media/characters/zelas/foot.svg"
  10398. }
  10399. },
  10400. },
  10401. [
  10402. {
  10403. name: "Normal",
  10404. height: math.unit(2.3, "meters")
  10405. },
  10406. {
  10407. name: "Macro",
  10408. height: math.unit(30, "meters"),
  10409. default: true
  10410. },
  10411. ]
  10412. ))
  10413. characterMakers.push(() => makeCharacter(
  10414. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10415. {
  10416. front: {
  10417. height: math.unit(1, "inch"),
  10418. weight: math.unit(0.21, "grams"),
  10419. name: "Front",
  10420. image: {
  10421. source: "./media/characters/talbot/front.svg",
  10422. extra: 594 / 544
  10423. }
  10424. },
  10425. },
  10426. [
  10427. {
  10428. name: "Micro",
  10429. height: math.unit(1, "inch"),
  10430. default: true
  10431. },
  10432. ]
  10433. ))
  10434. characterMakers.push(() => makeCharacter(
  10435. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10436. {
  10437. front: {
  10438. height: math.unit(3 + 3 / 12, "feet"),
  10439. weight: math.unit(51.8, "lb"),
  10440. name: "Front",
  10441. image: {
  10442. source: "./media/characters/fliss/front.svg",
  10443. extra: 840 / 640
  10444. }
  10445. },
  10446. },
  10447. [
  10448. {
  10449. name: "Teeny Tiny",
  10450. height: math.unit(1, "mm")
  10451. },
  10452. {
  10453. name: "Small",
  10454. height: math.unit(1, "inch"),
  10455. default: true
  10456. },
  10457. {
  10458. name: "Standard Sylveon",
  10459. height: math.unit(3 + 3 / 12, "feet")
  10460. },
  10461. {
  10462. name: "Large Nuisance",
  10463. height: math.unit(33, "feet")
  10464. },
  10465. {
  10466. name: "City Filler",
  10467. height: math.unit(3000, "feet")
  10468. },
  10469. {
  10470. name: "New Horizon",
  10471. height: math.unit(6000, "miles")
  10472. },
  10473. ]
  10474. ))
  10475. characterMakers.push(() => makeCharacter(
  10476. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10477. {
  10478. front: {
  10479. height: math.unit(5, "cm"),
  10480. weight: math.unit(1.94, "g"),
  10481. name: "Front",
  10482. image: {
  10483. source: "./media/characters/fleta/front.svg",
  10484. extra: 835 / 803
  10485. }
  10486. },
  10487. back: {
  10488. height: math.unit(5, "cm"),
  10489. weight: math.unit(1.94, "g"),
  10490. name: "Back",
  10491. image: {
  10492. source: "./media/characters/fleta/back.svg",
  10493. extra: 835 / 803
  10494. }
  10495. },
  10496. },
  10497. [
  10498. {
  10499. name: "Micro",
  10500. height: math.unit(5, "cm"),
  10501. default: true
  10502. },
  10503. ]
  10504. ))
  10505. characterMakers.push(() => makeCharacter(
  10506. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10507. {
  10508. front: {
  10509. height: math.unit(6, "feet"),
  10510. weight: math.unit(225, "lb"),
  10511. name: "Front",
  10512. image: {
  10513. source: "./media/characters/dominic/front.svg",
  10514. extra: 1770 / 1620,
  10515. bottom: 0.025
  10516. }
  10517. },
  10518. back: {
  10519. height: math.unit(6, "feet"),
  10520. weight: math.unit(225, "lb"),
  10521. name: "Back",
  10522. image: {
  10523. source: "./media/characters/dominic/back.svg",
  10524. extra: 1745 / 1620,
  10525. bottom: 0.065
  10526. }
  10527. },
  10528. },
  10529. [
  10530. {
  10531. name: "Nano",
  10532. height: math.unit(0.1, "mm")
  10533. },
  10534. {
  10535. name: "Micro-",
  10536. height: math.unit(1, "mm")
  10537. },
  10538. {
  10539. name: "Micro",
  10540. height: math.unit(4, "inches")
  10541. },
  10542. {
  10543. name: "Normal",
  10544. height: math.unit(6 + 4 / 12, "feet"),
  10545. default: true
  10546. },
  10547. {
  10548. name: "Macro",
  10549. height: math.unit(115, "feet")
  10550. },
  10551. {
  10552. name: "Macro+",
  10553. height: math.unit(955, "feet")
  10554. },
  10555. {
  10556. name: "Megamacro",
  10557. height: math.unit(8990, "feet")
  10558. },
  10559. {
  10560. name: "Gigmacro",
  10561. height: math.unit(9310, "miles")
  10562. },
  10563. {
  10564. name: "Teramacro",
  10565. height: math.unit(1567005010, "miles")
  10566. },
  10567. {
  10568. name: "Examacro",
  10569. height: math.unit(1425, "parsecs")
  10570. },
  10571. ]
  10572. ))
  10573. characterMakers.push(() => makeCharacter(
  10574. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10575. {
  10576. front: {
  10577. height: math.unit(400, "feet"),
  10578. weight: math.unit(44444444, "lb"),
  10579. name: "Front",
  10580. image: {
  10581. source: "./media/characters/major-colonel/front.svg"
  10582. }
  10583. },
  10584. back: {
  10585. height: math.unit(400, "feet"),
  10586. weight: math.unit(44444444, "lb"),
  10587. name: "Back",
  10588. image: {
  10589. source: "./media/characters/major-colonel/back.svg"
  10590. }
  10591. },
  10592. },
  10593. [
  10594. {
  10595. name: "Macro",
  10596. height: math.unit(400, "feet"),
  10597. default: true
  10598. },
  10599. ]
  10600. ))
  10601. characterMakers.push(() => makeCharacter(
  10602. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10603. {
  10604. catFront: {
  10605. height: math.unit(6, "feet"),
  10606. weight: math.unit(120, "lb"),
  10607. name: "Front (Cat Side)",
  10608. image: {
  10609. source: "./media/characters/axel-lycan/cat-front.svg",
  10610. extra: 430 / 402,
  10611. bottom: 43 / 472.35
  10612. }
  10613. },
  10614. catBack: {
  10615. height: math.unit(6, "feet"),
  10616. weight: math.unit(120, "lb"),
  10617. name: "Back (Cat Side)",
  10618. image: {
  10619. source: "./media/characters/axel-lycan/cat-back.svg",
  10620. extra: 447 / 419,
  10621. bottom: 23.3 / 469
  10622. }
  10623. },
  10624. wolfFront: {
  10625. height: math.unit(6, "feet"),
  10626. weight: math.unit(120, "lb"),
  10627. name: "Front (Wolf Side)",
  10628. image: {
  10629. source: "./media/characters/axel-lycan/wolf-front.svg",
  10630. extra: 485 / 456,
  10631. bottom: 19 / 504
  10632. }
  10633. },
  10634. wolfBack: {
  10635. height: math.unit(6, "feet"),
  10636. weight: math.unit(120, "lb"),
  10637. name: "Back (Wolf Side)",
  10638. image: {
  10639. source: "./media/characters/axel-lycan/wolf-back.svg",
  10640. extra: 475 / 438,
  10641. bottom: 39.2 / 514
  10642. }
  10643. },
  10644. },
  10645. [
  10646. {
  10647. name: "Macro",
  10648. height: math.unit(1, "km"),
  10649. default: true
  10650. },
  10651. ]
  10652. ))
  10653. characterMakers.push(() => makeCharacter(
  10654. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10655. {
  10656. front: {
  10657. height: math.unit(5 + 9 / 12, "feet"),
  10658. weight: math.unit(175, "lb"),
  10659. name: "Front",
  10660. image: {
  10661. source: "./media/characters/vanrel-hyena/front.svg",
  10662. extra: 1086 / 1010,
  10663. bottom: 0.04
  10664. }
  10665. },
  10666. },
  10667. [
  10668. {
  10669. name: "Normal",
  10670. height: math.unit(5 + 9 / 12, "feet"),
  10671. default: true
  10672. },
  10673. ]
  10674. ))
  10675. characterMakers.push(() => makeCharacter(
  10676. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10677. {
  10678. front: {
  10679. height: math.unit(6, "feet"),
  10680. weight: math.unit(103, "lb"),
  10681. name: "Front",
  10682. image: {
  10683. source: "./media/characters/abbott-absol/front.svg",
  10684. extra: 2010 / 1842
  10685. }
  10686. },
  10687. },
  10688. [
  10689. {
  10690. name: "Megamicro",
  10691. height: math.unit(0.1, "mm")
  10692. },
  10693. {
  10694. name: "Micro",
  10695. height: math.unit(1, "inch")
  10696. },
  10697. {
  10698. name: "Normal",
  10699. height: math.unit(6, "feet"),
  10700. default: true
  10701. },
  10702. ]
  10703. ))
  10704. characterMakers.push(() => makeCharacter(
  10705. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10706. {
  10707. front: {
  10708. height: math.unit(6, "feet"),
  10709. weight: math.unit(264, "lb"),
  10710. name: "Front",
  10711. image: {
  10712. source: "./media/characters/hector/front.svg",
  10713. extra: 2280 / 2130,
  10714. bottom: 0.07
  10715. }
  10716. },
  10717. },
  10718. [
  10719. {
  10720. name: "Normal",
  10721. height: math.unit(12.25, "foot"),
  10722. default: true
  10723. },
  10724. {
  10725. name: "Macro",
  10726. height: math.unit(160, "feet")
  10727. },
  10728. ]
  10729. ))
  10730. characterMakers.push(() => makeCharacter(
  10731. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10732. {
  10733. front: {
  10734. height: math.unit(6, "feet"),
  10735. weight: math.unit(150, "lb"),
  10736. name: "Front",
  10737. image: {
  10738. source: "./media/characters/sal/front.svg",
  10739. extra: 1846 / 1699,
  10740. bottom: 0.04
  10741. }
  10742. },
  10743. },
  10744. [
  10745. {
  10746. name: "Megamacro",
  10747. height: math.unit(10, "miles"),
  10748. default: true
  10749. },
  10750. ]
  10751. ))
  10752. characterMakers.push(() => makeCharacter(
  10753. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10754. {
  10755. front: {
  10756. height: math.unit(3, "meters"),
  10757. weight: math.unit(450, "kg"),
  10758. name: "front",
  10759. image: {
  10760. source: "./media/characters/ranger/front.svg",
  10761. extra: 2401 / 2243,
  10762. bottom: 0.05
  10763. }
  10764. },
  10765. },
  10766. [
  10767. {
  10768. name: "Normal",
  10769. height: math.unit(3, "meters"),
  10770. default: true
  10771. },
  10772. ]
  10773. ))
  10774. characterMakers.push(() => makeCharacter(
  10775. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10776. {
  10777. front: {
  10778. height: math.unit(14, "feet"),
  10779. weight: math.unit(800, "kg"),
  10780. name: "Front",
  10781. image: {
  10782. source: "./media/characters/theresa/front.svg",
  10783. extra: 3575 / 3346,
  10784. bottom: 0.03
  10785. }
  10786. },
  10787. },
  10788. [
  10789. {
  10790. name: "Normal",
  10791. height: math.unit(14, "feet"),
  10792. default: true
  10793. },
  10794. ]
  10795. ))
  10796. characterMakers.push(() => makeCharacter(
  10797. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10798. {
  10799. front: {
  10800. height: math.unit(6, "feet"),
  10801. weight: math.unit(3, "kg"),
  10802. name: "Front",
  10803. image: {
  10804. source: "./media/characters/ine/front.svg",
  10805. extra: 678 / 539,
  10806. bottom: 0.023
  10807. }
  10808. },
  10809. },
  10810. [
  10811. {
  10812. name: "Normal",
  10813. height: math.unit(2.265, "feet"),
  10814. default: true
  10815. },
  10816. ]
  10817. ))
  10818. characterMakers.push(() => makeCharacter(
  10819. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10820. {
  10821. front: {
  10822. height: math.unit(5, "feet"),
  10823. weight: math.unit(30, "kg"),
  10824. name: "Front",
  10825. image: {
  10826. source: "./media/characters/vial/front.svg",
  10827. extra: 1365 / 1277,
  10828. bottom: 0.04
  10829. }
  10830. },
  10831. },
  10832. [
  10833. {
  10834. name: "Normal",
  10835. height: math.unit(5, "feet"),
  10836. default: true
  10837. },
  10838. ]
  10839. ))
  10840. characterMakers.push(() => makeCharacter(
  10841. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10842. {
  10843. side: {
  10844. height: math.unit(3.4, "meters"),
  10845. weight: math.unit(1000, "lb"),
  10846. name: "Side",
  10847. image: {
  10848. source: "./media/characters/rovoska/side.svg",
  10849. extra: 4403 / 1515
  10850. }
  10851. },
  10852. },
  10853. [
  10854. {
  10855. name: "Normal",
  10856. height: math.unit(3.4, "meters"),
  10857. default: true
  10858. },
  10859. ]
  10860. ))
  10861. characterMakers.push(() => makeCharacter(
  10862. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10863. {
  10864. front: {
  10865. height: math.unit(8, "feet"),
  10866. weight: math.unit(315, "lb"),
  10867. name: "Front",
  10868. image: {
  10869. source: "./media/characters/gunner-rotthbauer/front.svg"
  10870. }
  10871. },
  10872. back: {
  10873. height: math.unit(8, "feet"),
  10874. weight: math.unit(315, "lb"),
  10875. name: "Back",
  10876. image: {
  10877. source: "./media/characters/gunner-rotthbauer/back.svg"
  10878. }
  10879. },
  10880. },
  10881. [
  10882. {
  10883. name: "Micro",
  10884. height: math.unit(3.5, "inches")
  10885. },
  10886. {
  10887. name: "Normal",
  10888. height: math.unit(8, "feet"),
  10889. default: true
  10890. },
  10891. {
  10892. name: "Macro",
  10893. height: math.unit(250, "feet")
  10894. },
  10895. {
  10896. name: "Megamacro",
  10897. height: math.unit(1, "AU")
  10898. },
  10899. ]
  10900. ))
  10901. characterMakers.push(() => makeCharacter(
  10902. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10903. {
  10904. front: {
  10905. height: math.unit(5 + 5 / 12, "feet"),
  10906. weight: math.unit(140, "lb"),
  10907. name: "Front",
  10908. image: {
  10909. source: "./media/characters/allatia/front.svg",
  10910. extra: 1227 / 1180,
  10911. bottom: 0.027
  10912. }
  10913. },
  10914. },
  10915. [
  10916. {
  10917. name: "Normal",
  10918. height: math.unit(5 + 5 / 12, "feet")
  10919. },
  10920. {
  10921. name: "Macro",
  10922. height: math.unit(250, "feet"),
  10923. default: true
  10924. },
  10925. {
  10926. name: "Megamacro",
  10927. height: math.unit(8, "miles")
  10928. }
  10929. ]
  10930. ))
  10931. characterMakers.push(() => makeCharacter(
  10932. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10933. {
  10934. front: {
  10935. height: math.unit(6, "feet"),
  10936. weight: math.unit(120, "lb"),
  10937. name: "Front",
  10938. image: {
  10939. source: "./media/characters/tene/front.svg",
  10940. extra: 814/750,
  10941. bottom: 36/850
  10942. }
  10943. },
  10944. stomping: {
  10945. height: math.unit(2.025, "meters"),
  10946. weight: math.unit(120, "lb"),
  10947. name: "Stomping",
  10948. image: {
  10949. source: "./media/characters/tene/stomping.svg",
  10950. extra: 885/821,
  10951. bottom: 15/900
  10952. }
  10953. },
  10954. sitting: {
  10955. height: math.unit(1, "meter"),
  10956. weight: math.unit(120, "lb"),
  10957. name: "Sitting",
  10958. image: {
  10959. source: "./media/characters/tene/sitting.svg",
  10960. extra: 396/366,
  10961. bottom: 79/475
  10962. }
  10963. },
  10964. smiling: {
  10965. height: math.unit(1.2, "feet"),
  10966. name: "Smiling",
  10967. image: {
  10968. source: "./media/characters/tene/smiling.svg",
  10969. extra: 1364/1071,
  10970. bottom: 0/1364
  10971. }
  10972. },
  10973. smug: {
  10974. height: math.unit(1.3, "feet"),
  10975. name: "Smug",
  10976. image: {
  10977. source: "./media/characters/tene/smug.svg",
  10978. extra: 1323/1082,
  10979. bottom: 0/1323
  10980. }
  10981. },
  10982. feral: {
  10983. height: math.unit(3.9, "feet"),
  10984. weight: math.unit(250, "lb"),
  10985. name: "Feral",
  10986. image: {
  10987. source: "./media/characters/tene/feral.svg",
  10988. extra: 717 / 458,
  10989. bottom: 0.179
  10990. }
  10991. },
  10992. },
  10993. [
  10994. {
  10995. name: "Normal",
  10996. height: math.unit(6, "feet")
  10997. },
  10998. {
  10999. name: "Macro",
  11000. height: math.unit(300, "feet"),
  11001. default: true
  11002. },
  11003. {
  11004. name: "Megamacro",
  11005. height: math.unit(5, "miles")
  11006. },
  11007. ]
  11008. ))
  11009. characterMakers.push(() => makeCharacter(
  11010. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  11011. {
  11012. side: {
  11013. height: math.unit(6, "feet"),
  11014. name: "Side",
  11015. image: {
  11016. source: "./media/characters/evander/side.svg",
  11017. extra: 877 / 477
  11018. }
  11019. },
  11020. },
  11021. [
  11022. {
  11023. name: "Normal",
  11024. height: math.unit(0.83, "meters"),
  11025. default: true
  11026. },
  11027. ]
  11028. ))
  11029. characterMakers.push(() => makeCharacter(
  11030. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  11031. {
  11032. front: {
  11033. height: math.unit(12, "feet"),
  11034. weight: math.unit(1000, "lb"),
  11035. name: "Front",
  11036. image: {
  11037. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  11038. extra: 1762 / 1611
  11039. }
  11040. },
  11041. back: {
  11042. height: math.unit(12, "feet"),
  11043. weight: math.unit(1000, "lb"),
  11044. name: "Back",
  11045. image: {
  11046. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  11047. extra: 1762 / 1611
  11048. }
  11049. },
  11050. },
  11051. [
  11052. {
  11053. name: "Normal",
  11054. height: math.unit(12, "feet"),
  11055. default: true
  11056. },
  11057. {
  11058. name: "Kaiju",
  11059. height: math.unit(150, "feet")
  11060. },
  11061. ]
  11062. ))
  11063. characterMakers.push(() => makeCharacter(
  11064. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  11065. {
  11066. front: {
  11067. height: math.unit(6, "feet"),
  11068. weight: math.unit(150, "lb"),
  11069. name: "Front",
  11070. image: {
  11071. source: "./media/characters/zero-alurus/front.svg"
  11072. }
  11073. },
  11074. back: {
  11075. height: math.unit(6, "feet"),
  11076. weight: math.unit(150, "lb"),
  11077. name: "Back",
  11078. image: {
  11079. source: "./media/characters/zero-alurus/back.svg"
  11080. }
  11081. },
  11082. },
  11083. [
  11084. {
  11085. name: "Normal",
  11086. height: math.unit(5 + 10 / 12, "feet")
  11087. },
  11088. {
  11089. name: "Macro",
  11090. height: math.unit(60, "feet"),
  11091. default: true
  11092. },
  11093. {
  11094. name: "Macro+",
  11095. height: math.unit(450, "feet")
  11096. },
  11097. ]
  11098. ))
  11099. characterMakers.push(() => makeCharacter(
  11100. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  11101. {
  11102. front: {
  11103. height: math.unit(6, "feet"),
  11104. weight: math.unit(200, "lb"),
  11105. name: "Front",
  11106. image: {
  11107. source: "./media/characters/mega-shi/front.svg",
  11108. extra: 1279 / 1250,
  11109. bottom: 0.02
  11110. }
  11111. },
  11112. back: {
  11113. height: math.unit(6, "feet"),
  11114. weight: math.unit(200, "lb"),
  11115. name: "Back",
  11116. image: {
  11117. source: "./media/characters/mega-shi/back.svg",
  11118. extra: 1279 / 1250,
  11119. bottom: 0.02
  11120. }
  11121. },
  11122. },
  11123. [
  11124. {
  11125. name: "Micro",
  11126. height: math.unit(16 + 6 / 12, "feet")
  11127. },
  11128. {
  11129. name: "Third Dimension",
  11130. height: math.unit(40, "meters")
  11131. },
  11132. {
  11133. name: "Normal",
  11134. height: math.unit(660, "feet"),
  11135. default: true
  11136. },
  11137. {
  11138. name: "Megamacro",
  11139. height: math.unit(10, "miles")
  11140. },
  11141. {
  11142. name: "Planetary Launch",
  11143. height: math.unit(500, "miles")
  11144. },
  11145. {
  11146. name: "Interstellar",
  11147. height: math.unit(1e9, "miles")
  11148. },
  11149. {
  11150. name: "Leaving the Universe",
  11151. height: math.unit(1, "gigaparsec")
  11152. },
  11153. {
  11154. name: "Travelling Universes",
  11155. height: math.unit(30e15, "parsecs")
  11156. },
  11157. ]
  11158. ))
  11159. characterMakers.push(() => makeCharacter(
  11160. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11161. {
  11162. front: {
  11163. height: math.unit(5 + 4/12, "feet"),
  11164. weight: math.unit(120, "lb"),
  11165. name: "Front",
  11166. image: {
  11167. source: "./media/characters/odyssey/front.svg",
  11168. extra: 1747/1571,
  11169. bottom: 47/1794
  11170. }
  11171. },
  11172. side: {
  11173. height: math.unit(5.1, "feet"),
  11174. weight: math.unit(120, "lb"),
  11175. name: "Side",
  11176. image: {
  11177. source: "./media/characters/odyssey/side.svg",
  11178. extra: 1847/1619,
  11179. bottom: 47/1894
  11180. }
  11181. },
  11182. lounging: {
  11183. height: math.unit(1.464, "feet"),
  11184. weight: math.unit(120, "lb"),
  11185. name: "Lounging",
  11186. image: {
  11187. source: "./media/characters/odyssey/lounging.svg",
  11188. extra: 1235/837,
  11189. bottom: 551/1786
  11190. }
  11191. },
  11192. },
  11193. [
  11194. {
  11195. name: "Normal",
  11196. height: math.unit(5 + 4 / 12, "feet")
  11197. },
  11198. {
  11199. name: "Macro",
  11200. height: math.unit(1, "km")
  11201. },
  11202. {
  11203. name: "Megamacro",
  11204. height: math.unit(3000, "km")
  11205. },
  11206. {
  11207. name: "Gigamacro",
  11208. height: math.unit(1, "AU"),
  11209. default: true
  11210. },
  11211. {
  11212. name: "Omniversal",
  11213. height: math.unit(100e14, "lightyears")
  11214. },
  11215. ]
  11216. ))
  11217. characterMakers.push(() => makeCharacter(
  11218. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11219. {
  11220. front: {
  11221. height: math.unit(5 + 10/12, "feet"),
  11222. name: "Front",
  11223. image: {
  11224. source: "./media/characters/mekuto/front.svg",
  11225. extra: 875/835,
  11226. bottom: 46/921
  11227. }
  11228. },
  11229. },
  11230. [
  11231. {
  11232. name: "Minimicro",
  11233. height: math.unit(0.2, "inches")
  11234. },
  11235. {
  11236. name: "Micro",
  11237. height: math.unit(1.5, "inches")
  11238. },
  11239. {
  11240. name: "Normal",
  11241. height: math.unit(5 + 10 / 12, "feet"),
  11242. default: true
  11243. },
  11244. {
  11245. name: "Minimacro",
  11246. height: math.unit(17 + 9 / 12, "feet")
  11247. },
  11248. {
  11249. name: "Macro",
  11250. height: math.unit(177.5, "feet")
  11251. },
  11252. {
  11253. name: "Megamacro",
  11254. height: math.unit(152, "miles")
  11255. },
  11256. ]
  11257. ))
  11258. characterMakers.push(() => makeCharacter(
  11259. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11260. {
  11261. front: {
  11262. height: math.unit(6.5, "inches"),
  11263. weight: math.unit(13, "oz"),
  11264. name: "Front",
  11265. image: {
  11266. source: "./media/characters/dafydd-tomos/front.svg",
  11267. extra: 2990 / 2603,
  11268. bottom: 0.03
  11269. }
  11270. },
  11271. },
  11272. [
  11273. {
  11274. name: "Micro",
  11275. height: math.unit(6.5, "inches"),
  11276. default: true
  11277. },
  11278. ]
  11279. ))
  11280. characterMakers.push(() => makeCharacter(
  11281. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11282. {
  11283. front: {
  11284. height: math.unit(6, "feet"),
  11285. weight: math.unit(150, "lb"),
  11286. name: "Front",
  11287. image: {
  11288. source: "./media/characters/splinter/front.svg",
  11289. extra: 2990 / 2882,
  11290. bottom: 0.04
  11291. }
  11292. },
  11293. back: {
  11294. height: math.unit(6, "feet"),
  11295. weight: math.unit(150, "lb"),
  11296. name: "Back",
  11297. image: {
  11298. source: "./media/characters/splinter/back.svg",
  11299. extra: 2990 / 2882,
  11300. bottom: 0.04
  11301. }
  11302. },
  11303. },
  11304. [
  11305. {
  11306. name: "Normal",
  11307. height: math.unit(6, "feet")
  11308. },
  11309. {
  11310. name: "Macro",
  11311. height: math.unit(230, "meters"),
  11312. default: true
  11313. },
  11314. ]
  11315. ))
  11316. characterMakers.push(() => makeCharacter(
  11317. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11318. {
  11319. front: {
  11320. height: math.unit(4 + 10 / 12, "feet"),
  11321. weight: math.unit(480, "lb"),
  11322. name: "Front",
  11323. image: {
  11324. source: "./media/characters/snow-gabumon/front.svg",
  11325. extra: 1140 / 963,
  11326. bottom: 0.058
  11327. }
  11328. },
  11329. back: {
  11330. height: math.unit(4 + 10 / 12, "feet"),
  11331. weight: math.unit(480, "lb"),
  11332. name: "Back",
  11333. image: {
  11334. source: "./media/characters/snow-gabumon/back.svg",
  11335. extra: 1115 / 962,
  11336. bottom: 0.041
  11337. }
  11338. },
  11339. frontUndresed: {
  11340. height: math.unit(4 + 10 / 12, "feet"),
  11341. weight: math.unit(480, "lb"),
  11342. name: "Front (Undressed)",
  11343. image: {
  11344. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11345. extra: 1061 / 960,
  11346. bottom: 0.045
  11347. }
  11348. },
  11349. },
  11350. [
  11351. {
  11352. name: "Micro",
  11353. height: math.unit(1, "inch")
  11354. },
  11355. {
  11356. name: "Normal",
  11357. height: math.unit(4 + 10 / 12, "feet"),
  11358. default: true
  11359. },
  11360. {
  11361. name: "Macro",
  11362. height: math.unit(200, "feet")
  11363. },
  11364. {
  11365. name: "Megamacro",
  11366. height: math.unit(120, "miles")
  11367. },
  11368. {
  11369. name: "Gigamacro",
  11370. height: math.unit(9800, "miles")
  11371. },
  11372. ]
  11373. ))
  11374. characterMakers.push(() => makeCharacter(
  11375. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11376. {
  11377. front: {
  11378. height: math.unit(1.7, "meters"),
  11379. weight: math.unit(140, "lb"),
  11380. name: "Front",
  11381. image: {
  11382. source: "./media/characters/moody/front.svg",
  11383. extra: 3226 / 3007,
  11384. bottom: 0.087
  11385. }
  11386. },
  11387. },
  11388. [
  11389. {
  11390. name: "Micro",
  11391. height: math.unit(1, "mm")
  11392. },
  11393. {
  11394. name: "Normal",
  11395. height: math.unit(1.7, "meters"),
  11396. default: true
  11397. },
  11398. {
  11399. name: "Macro",
  11400. height: math.unit(80, "meters")
  11401. },
  11402. {
  11403. name: "Macro+",
  11404. height: math.unit(500, "meters")
  11405. },
  11406. ]
  11407. ))
  11408. characterMakers.push(() => makeCharacter(
  11409. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11410. {
  11411. front: {
  11412. height: math.unit(6, "feet"),
  11413. weight: math.unit(150, "lb"),
  11414. name: "Front",
  11415. image: {
  11416. source: "./media/characters/zyas/front.svg",
  11417. extra: 1180 / 1120,
  11418. bottom: 0.045
  11419. }
  11420. },
  11421. },
  11422. [
  11423. {
  11424. name: "Normal",
  11425. height: math.unit(10, "feet"),
  11426. default: true
  11427. },
  11428. {
  11429. name: "Macro",
  11430. height: math.unit(500, "feet")
  11431. },
  11432. {
  11433. name: "Megamacro",
  11434. height: math.unit(5, "miles")
  11435. },
  11436. {
  11437. name: "Teramacro",
  11438. height: math.unit(150000, "miles")
  11439. },
  11440. ]
  11441. ))
  11442. characterMakers.push(() => makeCharacter(
  11443. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11444. {
  11445. front: {
  11446. height: math.unit(6, "feet"),
  11447. weight: math.unit(150, "lb"),
  11448. name: "Front",
  11449. image: {
  11450. source: "./media/characters/cuon/front.svg",
  11451. extra: 1390 / 1320,
  11452. bottom: 0.008
  11453. }
  11454. },
  11455. },
  11456. [
  11457. {
  11458. name: "Micro",
  11459. height: math.unit(3, "inches")
  11460. },
  11461. {
  11462. name: "Normal",
  11463. height: math.unit(18 + 9 / 12, "feet"),
  11464. default: true
  11465. },
  11466. {
  11467. name: "Macro",
  11468. height: math.unit(360, "feet")
  11469. },
  11470. {
  11471. name: "Megamacro",
  11472. height: math.unit(360, "miles")
  11473. },
  11474. ]
  11475. ))
  11476. characterMakers.push(() => makeCharacter(
  11477. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11478. {
  11479. front: {
  11480. height: math.unit(2.4, "meters"),
  11481. weight: math.unit(70, "kg"),
  11482. name: "Front",
  11483. image: {
  11484. source: "./media/characters/nyanuxk/front.svg",
  11485. extra: 1172 / 1084,
  11486. bottom: 0.065
  11487. }
  11488. },
  11489. side: {
  11490. height: math.unit(2.4, "meters"),
  11491. weight: math.unit(70, "kg"),
  11492. name: "Side",
  11493. image: {
  11494. source: "./media/characters/nyanuxk/side.svg",
  11495. extra: 1190 / 1132,
  11496. bottom: 0.007
  11497. }
  11498. },
  11499. back: {
  11500. height: math.unit(2.4, "meters"),
  11501. weight: math.unit(70, "kg"),
  11502. name: "Back",
  11503. image: {
  11504. source: "./media/characters/nyanuxk/back.svg",
  11505. extra: 1200 / 1141,
  11506. bottom: 0.015
  11507. }
  11508. },
  11509. foot: {
  11510. height: math.unit(0.52, "meters"),
  11511. name: "Foot",
  11512. image: {
  11513. source: "./media/characters/nyanuxk/foot.svg"
  11514. }
  11515. },
  11516. },
  11517. [
  11518. {
  11519. name: "Micro",
  11520. height: math.unit(2, "cm")
  11521. },
  11522. {
  11523. name: "Normal",
  11524. height: math.unit(2.4, "meters"),
  11525. default: true
  11526. },
  11527. {
  11528. name: "Smaller Macro",
  11529. height: math.unit(120, "meters")
  11530. },
  11531. {
  11532. name: "Bigger Macro",
  11533. height: math.unit(1.2, "km")
  11534. },
  11535. {
  11536. name: "Megamacro",
  11537. height: math.unit(15, "kilometers")
  11538. },
  11539. {
  11540. name: "Gigamacro",
  11541. height: math.unit(2000, "km")
  11542. },
  11543. {
  11544. name: "Teramacro",
  11545. height: math.unit(500000, "km")
  11546. },
  11547. ]
  11548. ))
  11549. characterMakers.push(() => makeCharacter(
  11550. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11551. {
  11552. side: {
  11553. height: math.unit(6, "feet"),
  11554. name: "Side",
  11555. image: {
  11556. source: "./media/characters/ailbhe/side.svg",
  11557. extra: 757 / 464,
  11558. bottom: 0.041
  11559. }
  11560. },
  11561. },
  11562. [
  11563. {
  11564. name: "Normal",
  11565. height: math.unit(1.07, "meters"),
  11566. default: true
  11567. },
  11568. ]
  11569. ))
  11570. characterMakers.push(() => makeCharacter(
  11571. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11572. {
  11573. front: {
  11574. height: math.unit(6, "feet"),
  11575. weight: math.unit(120, "kg"),
  11576. name: "Front",
  11577. image: {
  11578. source: "./media/characters/zevulfius/front.svg",
  11579. extra: 965 / 903
  11580. }
  11581. },
  11582. side: {
  11583. height: math.unit(6, "feet"),
  11584. weight: math.unit(120, "kg"),
  11585. name: "Side",
  11586. image: {
  11587. source: "./media/characters/zevulfius/side.svg",
  11588. extra: 939 / 900
  11589. }
  11590. },
  11591. back: {
  11592. height: math.unit(6, "feet"),
  11593. weight: math.unit(120, "kg"),
  11594. name: "Back",
  11595. image: {
  11596. source: "./media/characters/zevulfius/back.svg",
  11597. extra: 918 / 854,
  11598. bottom: 0.005
  11599. }
  11600. },
  11601. foot: {
  11602. height: math.unit(6 / 3.72, "feet"),
  11603. name: "Foot",
  11604. image: {
  11605. source: "./media/characters/zevulfius/foot.svg"
  11606. }
  11607. },
  11608. },
  11609. [
  11610. {
  11611. name: "Macro",
  11612. height: math.unit(750, "meters")
  11613. },
  11614. {
  11615. name: "Megamacro",
  11616. height: math.unit(20, "km"),
  11617. default: true
  11618. },
  11619. {
  11620. name: "Gigamacro",
  11621. height: math.unit(2000, "km")
  11622. },
  11623. {
  11624. name: "Teramacro",
  11625. height: math.unit(250000, "km")
  11626. },
  11627. ]
  11628. ))
  11629. characterMakers.push(() => makeCharacter(
  11630. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11631. {
  11632. front: {
  11633. height: math.unit(100, "feet"),
  11634. weight: math.unit(350, "kg"),
  11635. name: "Front",
  11636. image: {
  11637. source: "./media/characters/rikes/front.svg",
  11638. extra: 1565 / 1483,
  11639. bottom: 0.017
  11640. }
  11641. },
  11642. },
  11643. [
  11644. {
  11645. name: "Macro",
  11646. height: math.unit(100, "feet"),
  11647. default: true
  11648. },
  11649. ]
  11650. ))
  11651. characterMakers.push(() => makeCharacter(
  11652. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11653. {
  11654. front: {
  11655. height: math.unit(8, "feet"),
  11656. weight: math.unit(356, "lb"),
  11657. name: "Front",
  11658. image: {
  11659. source: "./media/characters/adam-silver-mane/front.svg",
  11660. extra: 1036/937,
  11661. bottom: 63/1099
  11662. }
  11663. },
  11664. side: {
  11665. height: math.unit(8, "feet"),
  11666. weight: math.unit(356, "lb"),
  11667. name: "Side",
  11668. image: {
  11669. source: "./media/characters/adam-silver-mane/side.svg",
  11670. extra: 997/901,
  11671. bottom: 59/1056
  11672. }
  11673. },
  11674. frontNsfw: {
  11675. height: math.unit(8, "feet"),
  11676. weight: math.unit(356, "lb"),
  11677. name: "Front (NSFW)",
  11678. image: {
  11679. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11680. extra: 1036/937,
  11681. bottom: 63/1099
  11682. }
  11683. },
  11684. sideNsfw: {
  11685. height: math.unit(8, "feet"),
  11686. weight: math.unit(356, "lb"),
  11687. name: "Side (NSFW)",
  11688. image: {
  11689. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11690. extra: 997/901,
  11691. bottom: 59/1056
  11692. }
  11693. },
  11694. dick: {
  11695. height: math.unit(2.1, "feet"),
  11696. name: "Dick",
  11697. image: {
  11698. source: "./media/characters/adam-silver-mane/dick.svg"
  11699. }
  11700. },
  11701. taur: {
  11702. height: math.unit(16, "feet"),
  11703. weight: math.unit(1500, "kg"),
  11704. name: "Taur",
  11705. image: {
  11706. source: "./media/characters/adam-silver-mane/taur.svg",
  11707. extra: 1713 / 1571,
  11708. bottom: 0.01
  11709. }
  11710. },
  11711. },
  11712. [
  11713. {
  11714. name: "Normal",
  11715. height: math.unit(8, "feet")
  11716. },
  11717. {
  11718. name: "Minimacro",
  11719. height: math.unit(80, "feet")
  11720. },
  11721. {
  11722. name: "MDA",
  11723. height: math.unit(80, "meters")
  11724. },
  11725. {
  11726. name: "Macro",
  11727. height: math.unit(800, "feet"),
  11728. default: true
  11729. },
  11730. {
  11731. name: "Megamacro",
  11732. height: math.unit(8000, "feet")
  11733. },
  11734. {
  11735. name: "Gigamacro",
  11736. height: math.unit(800, "miles")
  11737. },
  11738. {
  11739. name: "Teramacro",
  11740. height: math.unit(80000, "miles")
  11741. },
  11742. {
  11743. name: "Celestial",
  11744. height: math.unit(8e6, "miles")
  11745. },
  11746. {
  11747. name: "Star Dragon",
  11748. height: math.unit(800000, "parsecs")
  11749. },
  11750. {
  11751. name: "Godly",
  11752. height: math.unit(800, "teraparsecs")
  11753. },
  11754. ]
  11755. ))
  11756. characterMakers.push(() => makeCharacter(
  11757. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11758. {
  11759. front: {
  11760. height: math.unit(6, "feet"),
  11761. weight: math.unit(150, "lb"),
  11762. name: "Front",
  11763. image: {
  11764. source: "./media/characters/ky'owin/front.svg",
  11765. extra: 3862/3053,
  11766. bottom: 74/3936
  11767. }
  11768. },
  11769. },
  11770. [
  11771. {
  11772. name: "Normal",
  11773. height: math.unit(6 + 8 / 12, "feet")
  11774. },
  11775. {
  11776. name: "Large",
  11777. height: math.unit(68, "feet")
  11778. },
  11779. {
  11780. name: "Macro",
  11781. height: math.unit(132, "feet")
  11782. },
  11783. {
  11784. name: "Macro+",
  11785. height: math.unit(340, "feet")
  11786. },
  11787. {
  11788. name: "Macro++",
  11789. height: math.unit(680, "feet"),
  11790. default: true
  11791. },
  11792. {
  11793. name: "Megamacro",
  11794. height: math.unit(1, "mile")
  11795. },
  11796. {
  11797. name: "Megamacro+",
  11798. height: math.unit(10, "miles")
  11799. },
  11800. ]
  11801. ))
  11802. characterMakers.push(() => makeCharacter(
  11803. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11804. {
  11805. front: {
  11806. height: math.unit(4, "feet"),
  11807. weight: math.unit(50, "lb"),
  11808. name: "Front",
  11809. image: {
  11810. source: "./media/characters/mal/front.svg",
  11811. extra: 785 / 724,
  11812. bottom: 0.07
  11813. }
  11814. },
  11815. },
  11816. [
  11817. {
  11818. name: "Micro",
  11819. height: math.unit(4, "inches")
  11820. },
  11821. {
  11822. name: "Normal",
  11823. height: math.unit(4, "feet"),
  11824. default: true
  11825. },
  11826. {
  11827. name: "Macro",
  11828. height: math.unit(200, "feet")
  11829. },
  11830. ]
  11831. ))
  11832. characterMakers.push(() => makeCharacter(
  11833. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11834. {
  11835. front: {
  11836. height: math.unit(6, "feet"),
  11837. weight: math.unit(150, "lb"),
  11838. name: "Front",
  11839. image: {
  11840. source: "./media/characters/jordan-deware/front.svg",
  11841. extra: 1191 / 1012
  11842. }
  11843. },
  11844. },
  11845. [
  11846. {
  11847. name: "Nano",
  11848. height: math.unit(0.01, "mm")
  11849. },
  11850. {
  11851. name: "Minimicro",
  11852. height: math.unit(1, "mm")
  11853. },
  11854. {
  11855. name: "Micro",
  11856. height: math.unit(0.5, "inches")
  11857. },
  11858. {
  11859. name: "Normal",
  11860. height: math.unit(4, "feet"),
  11861. default: true
  11862. },
  11863. {
  11864. name: "Minimacro",
  11865. height: math.unit(40, "meters")
  11866. },
  11867. {
  11868. name: "Small Macro",
  11869. height: math.unit(400, "meters")
  11870. },
  11871. {
  11872. name: "Macro",
  11873. height: math.unit(4, "miles")
  11874. },
  11875. {
  11876. name: "Megamacro",
  11877. height: math.unit(40, "miles")
  11878. },
  11879. {
  11880. name: "Megamacro+",
  11881. height: math.unit(400, "miles")
  11882. },
  11883. {
  11884. name: "Gigamacro",
  11885. height: math.unit(400000, "miles")
  11886. },
  11887. ]
  11888. ))
  11889. characterMakers.push(() => makeCharacter(
  11890. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11891. {
  11892. side: {
  11893. height: math.unit(6, "feet"),
  11894. weight: math.unit(150, "lb"),
  11895. name: "Side",
  11896. image: {
  11897. source: "./media/characters/kimiko/side.svg",
  11898. extra: 600 / 358
  11899. }
  11900. },
  11901. },
  11902. [
  11903. {
  11904. name: "Normal",
  11905. height: math.unit(15, "feet"),
  11906. default: true
  11907. },
  11908. {
  11909. name: "Macro",
  11910. height: math.unit(220, "feet")
  11911. },
  11912. {
  11913. name: "Macro+",
  11914. height: math.unit(1450, "feet")
  11915. },
  11916. {
  11917. name: "Megamacro",
  11918. height: math.unit(11500, "feet")
  11919. },
  11920. {
  11921. name: "Gigamacro",
  11922. height: math.unit(9500, "miles")
  11923. },
  11924. {
  11925. name: "Teramacro",
  11926. height: math.unit(2208005005, "miles")
  11927. },
  11928. {
  11929. name: "Examacro",
  11930. height: math.unit(2750, "parsecs")
  11931. },
  11932. {
  11933. name: "Zettamacro",
  11934. height: math.unit(101500, "parsecs")
  11935. },
  11936. ]
  11937. ))
  11938. characterMakers.push(() => makeCharacter(
  11939. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11940. {
  11941. front: {
  11942. height: math.unit(6, "feet"),
  11943. weight: math.unit(70, "kg"),
  11944. name: "Front",
  11945. image: {
  11946. source: "./media/characters/andrew-sleepy/front.svg"
  11947. }
  11948. },
  11949. side: {
  11950. height: math.unit(6, "feet"),
  11951. weight: math.unit(70, "kg"),
  11952. name: "Side",
  11953. image: {
  11954. source: "./media/characters/andrew-sleepy/side.svg"
  11955. }
  11956. },
  11957. },
  11958. [
  11959. {
  11960. name: "Micro",
  11961. height: math.unit(1, "mm"),
  11962. default: true
  11963. },
  11964. ]
  11965. ))
  11966. characterMakers.push(() => makeCharacter(
  11967. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11968. {
  11969. front: {
  11970. height: math.unit(6, "feet"),
  11971. weight: math.unit(150, "lb"),
  11972. name: "Front",
  11973. image: {
  11974. source: "./media/characters/judio/front.svg",
  11975. extra: 1258 / 1110
  11976. }
  11977. },
  11978. },
  11979. [
  11980. {
  11981. name: "Normal",
  11982. height: math.unit(5 + 6 / 12, "feet")
  11983. },
  11984. {
  11985. name: "Macro",
  11986. height: math.unit(1000, "feet"),
  11987. default: true
  11988. },
  11989. {
  11990. name: "Megamacro",
  11991. height: math.unit(10, "miles")
  11992. },
  11993. ]
  11994. ))
  11995. characterMakers.push(() => makeCharacter(
  11996. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11997. {
  11998. frontDressed: {
  11999. height: math.unit(6, "feet"),
  12000. weight: math.unit(68, "kg"),
  12001. name: "Front (Dressed)",
  12002. image: {
  12003. source: "./media/characters/nomaxice/front-dressed.svg",
  12004. extra: 1137/824,
  12005. bottom: 74/1211
  12006. }
  12007. },
  12008. frontShorts: {
  12009. height: math.unit(6, "feet"),
  12010. weight: math.unit(68, "kg"),
  12011. name: "Front (Shorts)",
  12012. image: {
  12013. source: "./media/characters/nomaxice/front-shorts.svg",
  12014. extra: 1137/824,
  12015. bottom: 74/1211
  12016. }
  12017. },
  12018. back: {
  12019. height: math.unit(6, "feet"),
  12020. weight: math.unit(68, "kg"),
  12021. name: "Back",
  12022. image: {
  12023. source: "./media/characters/nomaxice/back.svg",
  12024. extra: 822/786,
  12025. bottom: 39/861
  12026. }
  12027. },
  12028. hand: {
  12029. height: math.unit(0.565, "feet"),
  12030. name: "Hand",
  12031. image: {
  12032. source: "./media/characters/nomaxice/hand.svg"
  12033. }
  12034. },
  12035. foot: {
  12036. height: math.unit(1, "feet"),
  12037. name: "Foot",
  12038. image: {
  12039. source: "./media/characters/nomaxice/foot.svg"
  12040. }
  12041. },
  12042. },
  12043. [
  12044. {
  12045. name: "Micro",
  12046. height: math.unit(8, "cm")
  12047. },
  12048. {
  12049. name: "Norm",
  12050. height: math.unit(1.82, "m")
  12051. },
  12052. {
  12053. name: "Norm+",
  12054. height: math.unit(8.8, "feet"),
  12055. default: true
  12056. },
  12057. {
  12058. name: "Big",
  12059. height: math.unit(8, "meters")
  12060. },
  12061. {
  12062. name: "Macro",
  12063. height: math.unit(18, "meters")
  12064. },
  12065. {
  12066. name: "Macro+",
  12067. height: math.unit(88, "meters")
  12068. },
  12069. ]
  12070. ))
  12071. characterMakers.push(() => makeCharacter(
  12072. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  12073. {
  12074. front: {
  12075. height: math.unit(12, "feet"),
  12076. weight: math.unit(1.5, "tons"),
  12077. name: "Front",
  12078. image: {
  12079. source: "./media/characters/dydros/front.svg",
  12080. extra: 863 / 800,
  12081. bottom: 0.015
  12082. }
  12083. },
  12084. back: {
  12085. height: math.unit(12, "feet"),
  12086. weight: math.unit(1.5, "tons"),
  12087. name: "Back",
  12088. image: {
  12089. source: "./media/characters/dydros/back.svg",
  12090. extra: 900 / 843,
  12091. bottom: 0.005
  12092. }
  12093. },
  12094. },
  12095. [
  12096. {
  12097. name: "Normal",
  12098. height: math.unit(12, "feet"),
  12099. default: true
  12100. },
  12101. ]
  12102. ))
  12103. characterMakers.push(() => makeCharacter(
  12104. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12105. {
  12106. front: {
  12107. height: math.unit(6, "feet"),
  12108. weight: math.unit(100, "kg"),
  12109. name: "Front",
  12110. image: {
  12111. source: "./media/characters/riggi/front.svg",
  12112. extra: 5787 / 5303
  12113. }
  12114. },
  12115. hyper: {
  12116. height: math.unit(6 * 5 / 3, "feet"),
  12117. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12118. name: "Hyper",
  12119. image: {
  12120. source: "./media/characters/riggi/hyper.svg",
  12121. extra: 3595 / 3485
  12122. }
  12123. },
  12124. },
  12125. [
  12126. {
  12127. name: "Small Macro",
  12128. height: math.unit(50, "feet")
  12129. },
  12130. {
  12131. name: "Default",
  12132. height: math.unit(200, "feet"),
  12133. default: true
  12134. },
  12135. {
  12136. name: "Loom",
  12137. height: math.unit(10000, "feet")
  12138. },
  12139. {
  12140. name: "Cruising Altitude",
  12141. height: math.unit(30000, "feet")
  12142. },
  12143. {
  12144. name: "Megamacro",
  12145. height: math.unit(100, "miles")
  12146. },
  12147. {
  12148. name: "Continent Sized",
  12149. height: math.unit(2800, "miles")
  12150. },
  12151. {
  12152. name: "Earth Sized",
  12153. height: math.unit(8000, "miles")
  12154. },
  12155. ]
  12156. ))
  12157. characterMakers.push(() => makeCharacter(
  12158. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12159. {
  12160. front: {
  12161. height: math.unit(6, "feet"),
  12162. weight: math.unit(250, "lb"),
  12163. name: "Front",
  12164. image: {
  12165. source: "./media/characters/alexi/front.svg",
  12166. extra: 3483 / 3291,
  12167. bottom: 0.04
  12168. }
  12169. },
  12170. back: {
  12171. height: math.unit(6, "feet"),
  12172. weight: math.unit(250, "lb"),
  12173. name: "Back",
  12174. image: {
  12175. source: "./media/characters/alexi/back.svg",
  12176. extra: 3533 / 3356,
  12177. bottom: 0.021
  12178. }
  12179. },
  12180. frontTransforming: {
  12181. height: math.unit(8.58, "feet"),
  12182. weight: math.unit(1300, "lb"),
  12183. name: "Transforming",
  12184. image: {
  12185. source: "./media/characters/alexi/front-transforming.svg",
  12186. extra: 437 / 409,
  12187. bottom: 19 / 458.66
  12188. }
  12189. },
  12190. frontTransformed: {
  12191. height: math.unit(12.5, "feet"),
  12192. weight: math.unit(4000, "lb"),
  12193. name: "Transformed",
  12194. image: {
  12195. source: "./media/characters/alexi/front-transformed.svg",
  12196. extra: 639 / 614,
  12197. bottom: 30.55 / 671
  12198. }
  12199. },
  12200. },
  12201. [
  12202. {
  12203. name: "Normal",
  12204. height: math.unit(14, "feet"),
  12205. default: true
  12206. },
  12207. {
  12208. name: "Minimacro",
  12209. height: math.unit(30, "meters")
  12210. },
  12211. {
  12212. name: "Macro",
  12213. height: math.unit(500, "meters")
  12214. },
  12215. {
  12216. name: "Megamacro",
  12217. height: math.unit(9000, "km")
  12218. },
  12219. {
  12220. name: "Teramacro",
  12221. height: math.unit(384000, "km")
  12222. },
  12223. ]
  12224. ))
  12225. characterMakers.push(() => makeCharacter(
  12226. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12227. {
  12228. front: {
  12229. height: math.unit(6, "feet"),
  12230. weight: math.unit(150, "lb"),
  12231. name: "Front",
  12232. image: {
  12233. source: "./media/characters/kayroo/front.svg",
  12234. extra: 1153 / 1038,
  12235. bottom: 0.06
  12236. }
  12237. },
  12238. foot: {
  12239. height: math.unit(6, "feet"),
  12240. weight: math.unit(150, "lb"),
  12241. name: "Foot",
  12242. image: {
  12243. source: "./media/characters/kayroo/foot.svg"
  12244. }
  12245. },
  12246. },
  12247. [
  12248. {
  12249. name: "Normal",
  12250. height: math.unit(8, "feet"),
  12251. default: true
  12252. },
  12253. {
  12254. name: "Minimacro",
  12255. height: math.unit(250, "feet")
  12256. },
  12257. {
  12258. name: "Macro",
  12259. height: math.unit(2800, "feet")
  12260. },
  12261. {
  12262. name: "Megamacro",
  12263. height: math.unit(5200, "feet")
  12264. },
  12265. {
  12266. name: "Gigamacro",
  12267. height: math.unit(27000, "feet")
  12268. },
  12269. {
  12270. name: "Omega",
  12271. height: math.unit(45000, "feet")
  12272. },
  12273. ]
  12274. ))
  12275. characterMakers.push(() => makeCharacter(
  12276. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12277. {
  12278. front: {
  12279. height: math.unit(18, "feet"),
  12280. weight: math.unit(5800, "lb"),
  12281. name: "Front",
  12282. image: {
  12283. source: "./media/characters/rhys/front.svg",
  12284. extra: 3386 / 3090,
  12285. bottom: 0.07
  12286. }
  12287. },
  12288. },
  12289. [
  12290. {
  12291. name: "Normal",
  12292. height: math.unit(18, "feet"),
  12293. default: true
  12294. },
  12295. {
  12296. name: "Working Size",
  12297. height: math.unit(200, "feet")
  12298. },
  12299. {
  12300. name: "Demolition Size",
  12301. height: math.unit(2000, "feet")
  12302. },
  12303. {
  12304. name: "Maximum Licensed Size",
  12305. height: math.unit(5, "miles")
  12306. },
  12307. {
  12308. name: "Maximum Observed Size",
  12309. height: math.unit(10, "yottameters")
  12310. },
  12311. ]
  12312. ))
  12313. characterMakers.push(() => makeCharacter(
  12314. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12315. {
  12316. front: {
  12317. height: math.unit(6, "feet"),
  12318. weight: math.unit(250, "lb"),
  12319. name: "Front",
  12320. image: {
  12321. source: "./media/characters/toto/front.svg",
  12322. extra: 527 / 479,
  12323. bottom: 0.05
  12324. }
  12325. },
  12326. },
  12327. [
  12328. {
  12329. name: "Micro",
  12330. height: math.unit(3, "feet")
  12331. },
  12332. {
  12333. name: "Normal",
  12334. height: math.unit(10, "feet")
  12335. },
  12336. {
  12337. name: "Macro",
  12338. height: math.unit(150, "feet"),
  12339. default: true
  12340. },
  12341. {
  12342. name: "Megamacro",
  12343. height: math.unit(1200, "feet")
  12344. },
  12345. ]
  12346. ))
  12347. characterMakers.push(() => makeCharacter(
  12348. { name: "King", species: ["lion"], tags: ["anthro"] },
  12349. {
  12350. back: {
  12351. height: math.unit(6, "feet"),
  12352. weight: math.unit(150, "lb"),
  12353. name: "Back",
  12354. image: {
  12355. source: "./media/characters/king/back.svg"
  12356. }
  12357. },
  12358. },
  12359. [
  12360. {
  12361. name: "Micro",
  12362. height: math.unit(2, "inches")
  12363. },
  12364. {
  12365. name: "Normal",
  12366. height: math.unit(8, "feet")
  12367. },
  12368. {
  12369. name: "Macro",
  12370. height: math.unit(200, "feet"),
  12371. default: true
  12372. },
  12373. {
  12374. name: "Megamacro",
  12375. height: math.unit(50, "miles")
  12376. },
  12377. ]
  12378. ))
  12379. characterMakers.push(() => makeCharacter(
  12380. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12381. {
  12382. front: {
  12383. height: math.unit(11, "feet"),
  12384. weight: math.unit(1400, "lb"),
  12385. name: "Front",
  12386. image: {
  12387. source: "./media/characters/cordite/front.svg",
  12388. extra: 1919/1827,
  12389. bottom: 40/1959
  12390. }
  12391. },
  12392. side: {
  12393. height: math.unit(11, "feet"),
  12394. weight: math.unit(1400, "lb"),
  12395. name: "Side",
  12396. image: {
  12397. source: "./media/characters/cordite/side.svg",
  12398. extra: 1908/1793,
  12399. bottom: 38/1946
  12400. }
  12401. },
  12402. back: {
  12403. height: math.unit(11, "feet"),
  12404. weight: math.unit(1400, "lb"),
  12405. name: "Back",
  12406. image: {
  12407. source: "./media/characters/cordite/back.svg",
  12408. extra: 1938/1837,
  12409. bottom: 10/1948
  12410. }
  12411. },
  12412. feral: {
  12413. height: math.unit(2, "feet"),
  12414. weight: math.unit(90, "lb"),
  12415. name: "Feral",
  12416. image: {
  12417. source: "./media/characters/cordite/feral.svg",
  12418. extra: 1260 / 755,
  12419. bottom: 0.05
  12420. }
  12421. },
  12422. },
  12423. [
  12424. {
  12425. name: "Normal",
  12426. height: math.unit(11, "feet"),
  12427. default: true
  12428. },
  12429. ]
  12430. ))
  12431. characterMakers.push(() => makeCharacter(
  12432. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12433. {
  12434. front: {
  12435. height: math.unit(6, "feet"),
  12436. weight: math.unit(150, "lb"),
  12437. name: "Front",
  12438. image: {
  12439. source: "./media/characters/pianostrong/front.svg",
  12440. extra: 6577 / 6254,
  12441. bottom: 0.02
  12442. }
  12443. },
  12444. side: {
  12445. height: math.unit(6, "feet"),
  12446. weight: math.unit(150, "lb"),
  12447. name: "Side",
  12448. image: {
  12449. source: "./media/characters/pianostrong/side.svg",
  12450. extra: 6106 / 5730
  12451. }
  12452. },
  12453. back: {
  12454. height: math.unit(6, "feet"),
  12455. weight: math.unit(150, "lb"),
  12456. name: "Back",
  12457. image: {
  12458. source: "./media/characters/pianostrong/back.svg",
  12459. extra: 6085 / 5733,
  12460. bottom: 0.01
  12461. }
  12462. },
  12463. },
  12464. [
  12465. {
  12466. name: "Macro",
  12467. height: math.unit(100, "feet")
  12468. },
  12469. {
  12470. name: "Macro+",
  12471. height: math.unit(300, "feet"),
  12472. default: true
  12473. },
  12474. {
  12475. name: "Macro++",
  12476. height: math.unit(1000, "feet")
  12477. },
  12478. ]
  12479. ))
  12480. characterMakers.push(() => makeCharacter(
  12481. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12482. {
  12483. front: {
  12484. height: math.unit(6, "feet"),
  12485. weight: math.unit(150, "lb"),
  12486. name: "Front",
  12487. image: {
  12488. source: "./media/characters/kona/front.svg",
  12489. extra: 2960 / 2629,
  12490. bottom: 0.005
  12491. }
  12492. },
  12493. },
  12494. [
  12495. {
  12496. name: "Normal",
  12497. height: math.unit(11 + 8 / 12, "feet")
  12498. },
  12499. {
  12500. name: "Macro",
  12501. height: math.unit(850, "feet"),
  12502. default: true
  12503. },
  12504. {
  12505. name: "Macro+",
  12506. height: math.unit(1.5, "km"),
  12507. default: true
  12508. },
  12509. {
  12510. name: "Megamacro",
  12511. height: math.unit(80, "miles")
  12512. },
  12513. {
  12514. name: "Gigamacro",
  12515. height: math.unit(3500, "miles")
  12516. },
  12517. ]
  12518. ))
  12519. characterMakers.push(() => makeCharacter(
  12520. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12521. {
  12522. side: {
  12523. height: math.unit(1.9, "meters"),
  12524. weight: math.unit(326, "kg"),
  12525. name: "Side",
  12526. image: {
  12527. source: "./media/characters/levi/side.svg",
  12528. extra: 1704 / 1334,
  12529. bottom: 0.02
  12530. }
  12531. },
  12532. },
  12533. [
  12534. {
  12535. name: "Normal",
  12536. height: math.unit(1.9, "meters"),
  12537. default: true
  12538. },
  12539. {
  12540. name: "Macro",
  12541. height: math.unit(20, "meters")
  12542. },
  12543. {
  12544. name: "Macro+",
  12545. height: math.unit(200, "meters")
  12546. },
  12547. {
  12548. name: "Megamacro",
  12549. height: math.unit(2, "km")
  12550. },
  12551. {
  12552. name: "Megamacro+",
  12553. height: math.unit(20, "km")
  12554. },
  12555. {
  12556. name: "Gigamacro",
  12557. height: math.unit(2500, "km")
  12558. },
  12559. {
  12560. name: "Gigamacro+",
  12561. height: math.unit(120000, "km")
  12562. },
  12563. {
  12564. name: "Teramacro",
  12565. height: math.unit(7.77e6, "km")
  12566. },
  12567. ]
  12568. ))
  12569. characterMakers.push(() => makeCharacter(
  12570. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12571. {
  12572. front: {
  12573. height: math.unit(6 + 4/12, "feet"),
  12574. weight: math.unit(190, "lb"),
  12575. name: "Front",
  12576. image: {
  12577. source: "./media/characters/bmc/front.svg",
  12578. extra: 1626/1472,
  12579. bottom: 79/1705
  12580. }
  12581. },
  12582. back: {
  12583. height: math.unit(6 + 4/12, "feet"),
  12584. weight: math.unit(190, "lb"),
  12585. name: "Back",
  12586. image: {
  12587. source: "./media/characters/bmc/back.svg",
  12588. extra: 1640/1479,
  12589. bottom: 45/1685
  12590. }
  12591. },
  12592. frontArmor: {
  12593. height: math.unit(6 + 4/12, "feet"),
  12594. weight: math.unit(190, "lb"),
  12595. name: "Front-armor",
  12596. image: {
  12597. source: "./media/characters/bmc/front-armor.svg",
  12598. extra: 1538/1468,
  12599. bottom: 79/1617
  12600. }
  12601. },
  12602. },
  12603. [
  12604. {
  12605. name: "Human-sized",
  12606. height: math.unit(6 + 4 / 12, "feet")
  12607. },
  12608. {
  12609. name: "Interactive Size",
  12610. height: math.unit(25, "feet")
  12611. },
  12612. {
  12613. name: "Small",
  12614. height: math.unit(250, "feet")
  12615. },
  12616. {
  12617. name: "Normal",
  12618. height: math.unit(1250, "feet"),
  12619. default: true
  12620. },
  12621. {
  12622. name: "Good Day",
  12623. height: math.unit(88, "miles")
  12624. },
  12625. {
  12626. name: "Largest Measured Size",
  12627. height: math.unit(105.960, "galaxies")
  12628. },
  12629. ]
  12630. ))
  12631. characterMakers.push(() => makeCharacter(
  12632. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12633. {
  12634. front: {
  12635. height: math.unit(20, "feet"),
  12636. weight: math.unit(2016, "kg"),
  12637. name: "Front",
  12638. image: {
  12639. source: "./media/characters/sven-the-kaiju/front.svg",
  12640. extra: 1277/1250,
  12641. bottom: 35/1312
  12642. }
  12643. },
  12644. mouth: {
  12645. height: math.unit(1.85, "feet"),
  12646. name: "Mouth",
  12647. image: {
  12648. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12649. }
  12650. },
  12651. },
  12652. [
  12653. {
  12654. name: "Fairy",
  12655. height: math.unit(6, "inches")
  12656. },
  12657. {
  12658. name: "Normal",
  12659. height: math.unit(20, "feet"),
  12660. default: true
  12661. },
  12662. {
  12663. name: "Rampage",
  12664. height: math.unit(200, "feet")
  12665. },
  12666. {
  12667. name: "Archfey Forest Guardian",
  12668. height: math.unit(1, "mile")
  12669. },
  12670. ]
  12671. ))
  12672. characterMakers.push(() => makeCharacter(
  12673. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12674. {
  12675. front: {
  12676. height: math.unit(4, "meters"),
  12677. weight: math.unit(2, "tons"),
  12678. name: "Front",
  12679. image: {
  12680. source: "./media/characters/marik/front.svg",
  12681. extra: 1057 / 1003,
  12682. bottom: 0.08
  12683. }
  12684. },
  12685. },
  12686. [
  12687. {
  12688. name: "Normal",
  12689. height: math.unit(4, "meters"),
  12690. default: true
  12691. },
  12692. {
  12693. name: "Macro",
  12694. height: math.unit(20, "meters")
  12695. },
  12696. {
  12697. name: "Megamacro",
  12698. height: math.unit(50, "km")
  12699. },
  12700. {
  12701. name: "Gigamacro",
  12702. height: math.unit(100, "km")
  12703. },
  12704. {
  12705. name: "Alpha Macro",
  12706. height: math.unit(7.88e7, "yottameters")
  12707. },
  12708. ]
  12709. ))
  12710. characterMakers.push(() => makeCharacter(
  12711. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12712. {
  12713. front: {
  12714. height: math.unit(6, "feet"),
  12715. weight: math.unit(110, "lb"),
  12716. name: "Front",
  12717. image: {
  12718. source: "./media/characters/mel/front.svg",
  12719. extra: 736 / 617,
  12720. bottom: 0.017
  12721. }
  12722. },
  12723. },
  12724. [
  12725. {
  12726. name: "Pico",
  12727. height: math.unit(3, "pm")
  12728. },
  12729. {
  12730. name: "Nano",
  12731. height: math.unit(3, "nm")
  12732. },
  12733. {
  12734. name: "Micro",
  12735. height: math.unit(0.3, "mm"),
  12736. default: true
  12737. },
  12738. {
  12739. name: "Micro+",
  12740. height: math.unit(3, "mm")
  12741. },
  12742. {
  12743. name: "Normal",
  12744. height: math.unit(5 + 10.5 / 12, "feet")
  12745. },
  12746. ]
  12747. ))
  12748. characterMakers.push(() => makeCharacter(
  12749. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12750. {
  12751. kaiju: {
  12752. height: math.unit(1.75, "meters"),
  12753. weight: math.unit(55, "kg"),
  12754. name: "Kaiju",
  12755. image: {
  12756. source: "./media/characters/lykonous/kaiju.svg",
  12757. extra: 1055 / 946,
  12758. bottom: 0.135
  12759. }
  12760. },
  12761. },
  12762. [
  12763. {
  12764. name: "Normal",
  12765. height: math.unit(2.5, "meters"),
  12766. default: true
  12767. },
  12768. {
  12769. name: "Kaiju Dragon",
  12770. height: math.unit(60, "meters")
  12771. },
  12772. {
  12773. name: "Mega Kaiju",
  12774. height: math.unit(120, "km")
  12775. },
  12776. {
  12777. name: "Giga Kaiju",
  12778. height: math.unit(200, "megameters")
  12779. },
  12780. {
  12781. name: "Terra Kaiju",
  12782. height: math.unit(400, "gigameters")
  12783. },
  12784. {
  12785. name: "Kaiju Dragon God",
  12786. height: math.unit(13000, "exaparsecs")
  12787. },
  12788. ]
  12789. ))
  12790. characterMakers.push(() => makeCharacter(
  12791. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12792. {
  12793. front: {
  12794. height: math.unit(6, "feet"),
  12795. weight: math.unit(150, "lb"),
  12796. name: "Front",
  12797. image: {
  12798. source: "./media/characters/blü/front.svg",
  12799. extra: 1883 / 1564,
  12800. bottom: 0.031
  12801. }
  12802. },
  12803. },
  12804. [
  12805. {
  12806. name: "Normal",
  12807. height: math.unit(13, "feet"),
  12808. default: true
  12809. },
  12810. {
  12811. name: "Big Boi",
  12812. height: math.unit(150, "meters")
  12813. },
  12814. {
  12815. name: "Mini Stomper",
  12816. height: math.unit(300, "meters")
  12817. },
  12818. {
  12819. name: "Macro",
  12820. height: math.unit(1000, "meters")
  12821. },
  12822. {
  12823. name: "Megamacro",
  12824. height: math.unit(11000, "meters")
  12825. },
  12826. {
  12827. name: "Gigamacro",
  12828. height: math.unit(11000, "km")
  12829. },
  12830. {
  12831. name: "Teramacro",
  12832. height: math.unit(420000, "km")
  12833. },
  12834. {
  12835. name: "Examacro",
  12836. height: math.unit(120, "parsecs")
  12837. },
  12838. {
  12839. name: "God Tho",
  12840. height: math.unit(98000000000, "parsecs")
  12841. },
  12842. ]
  12843. ))
  12844. characterMakers.push(() => makeCharacter(
  12845. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12846. {
  12847. taurFront: {
  12848. height: math.unit(6, "feet"),
  12849. weight: math.unit(200, "lb"),
  12850. name: "Taur (Front)",
  12851. image: {
  12852. source: "./media/characters/scales/taur-front.svg",
  12853. extra: 1,
  12854. bottom: 0.05
  12855. }
  12856. },
  12857. taurBack: {
  12858. height: math.unit(6, "feet"),
  12859. weight: math.unit(200, "lb"),
  12860. name: "Taur (Back)",
  12861. image: {
  12862. source: "./media/characters/scales/taur-back.svg",
  12863. extra: 1,
  12864. bottom: 0.08
  12865. }
  12866. },
  12867. anthro: {
  12868. height: math.unit(6 * 7 / 12, "feet"),
  12869. weight: math.unit(100, "lb"),
  12870. name: "Anthro",
  12871. image: {
  12872. source: "./media/characters/scales/anthro.svg",
  12873. extra: 1,
  12874. bottom: 0.06
  12875. }
  12876. },
  12877. },
  12878. [
  12879. {
  12880. name: "Normal",
  12881. height: math.unit(12, "feet"),
  12882. default: true
  12883. },
  12884. ]
  12885. ))
  12886. characterMakers.push(() => makeCharacter(
  12887. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12888. {
  12889. front: {
  12890. height: math.unit(6, "feet"),
  12891. weight: math.unit(150, "lb"),
  12892. name: "Front",
  12893. image: {
  12894. source: "./media/characters/koragos/front.svg",
  12895. extra: 841 / 794,
  12896. bottom: 0.035
  12897. }
  12898. },
  12899. back: {
  12900. height: math.unit(6, "feet"),
  12901. weight: math.unit(150, "lb"),
  12902. name: "Back",
  12903. image: {
  12904. source: "./media/characters/koragos/back.svg",
  12905. extra: 841 / 810,
  12906. bottom: 0.022
  12907. }
  12908. },
  12909. },
  12910. [
  12911. {
  12912. name: "Normal",
  12913. height: math.unit(6 + 11 / 12, "feet"),
  12914. default: true
  12915. },
  12916. {
  12917. name: "Macro",
  12918. height: math.unit(490, "feet")
  12919. },
  12920. {
  12921. name: "Megamacro",
  12922. height: math.unit(10, "miles")
  12923. },
  12924. {
  12925. name: "Gigamacro",
  12926. height: math.unit(50, "miles")
  12927. },
  12928. ]
  12929. ))
  12930. characterMakers.push(() => makeCharacter(
  12931. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12932. {
  12933. front: {
  12934. height: math.unit(6, "feet"),
  12935. weight: math.unit(250, "lb"),
  12936. name: "Front",
  12937. image: {
  12938. source: "./media/characters/xylrem/front.svg",
  12939. extra: 3323 / 3050,
  12940. bottom: 0.065
  12941. }
  12942. },
  12943. },
  12944. [
  12945. {
  12946. name: "Micro",
  12947. height: math.unit(4, "feet")
  12948. },
  12949. {
  12950. name: "Normal",
  12951. height: math.unit(16, "feet"),
  12952. default: true
  12953. },
  12954. {
  12955. name: "Macro",
  12956. height: math.unit(2720, "feet")
  12957. },
  12958. {
  12959. name: "Megamacro",
  12960. height: math.unit(25000, "miles")
  12961. },
  12962. ]
  12963. ))
  12964. characterMakers.push(() => makeCharacter(
  12965. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12966. {
  12967. front: {
  12968. height: math.unit(8, "feet"),
  12969. weight: math.unit(250, "kg"),
  12970. name: "Front",
  12971. image: {
  12972. source: "./media/characters/ikideru/front.svg",
  12973. extra: 930 / 870,
  12974. bottom: 0.087
  12975. }
  12976. },
  12977. back: {
  12978. height: math.unit(8, "feet"),
  12979. weight: math.unit(250, "kg"),
  12980. name: "Back",
  12981. image: {
  12982. source: "./media/characters/ikideru/back.svg",
  12983. extra: 919 / 852,
  12984. bottom: 0.055
  12985. }
  12986. },
  12987. },
  12988. [
  12989. {
  12990. name: "Rare",
  12991. height: math.unit(8, "feet"),
  12992. default: true
  12993. },
  12994. {
  12995. name: "Playful Loom",
  12996. height: math.unit(80, "feet")
  12997. },
  12998. {
  12999. name: "City Leaner",
  13000. height: math.unit(230, "feet")
  13001. },
  13002. {
  13003. name: "Megamacro",
  13004. height: math.unit(2500, "feet")
  13005. },
  13006. {
  13007. name: "Gigamacro",
  13008. height: math.unit(26400, "feet")
  13009. },
  13010. {
  13011. name: "Tectonic Shifter",
  13012. height: math.unit(1.7, "megameters")
  13013. },
  13014. {
  13015. name: "Planet Carer",
  13016. height: math.unit(21, "megameters")
  13017. },
  13018. {
  13019. name: "God",
  13020. height: math.unit(11157.22, "parsecs")
  13021. },
  13022. ]
  13023. ))
  13024. characterMakers.push(() => makeCharacter(
  13025. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  13026. {
  13027. front: {
  13028. height: math.unit(6, "feet"),
  13029. weight: math.unit(120, "lb"),
  13030. name: "Front",
  13031. image: {
  13032. source: "./media/characters/neo/front.svg"
  13033. }
  13034. },
  13035. },
  13036. [
  13037. {
  13038. name: "Micro",
  13039. height: math.unit(2, "inches"),
  13040. default: true
  13041. },
  13042. {
  13043. name: "Human Size",
  13044. height: math.unit(5 + 8 / 12, "feet")
  13045. },
  13046. ]
  13047. ))
  13048. characterMakers.push(() => makeCharacter(
  13049. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  13050. {
  13051. front: {
  13052. height: math.unit(13 + 10 / 12, "feet"),
  13053. weight: math.unit(5320, "lb"),
  13054. name: "Front",
  13055. image: {
  13056. source: "./media/characters/chauncey-chantz/front.svg",
  13057. extra: 1587 / 1435,
  13058. bottom: 0.02
  13059. }
  13060. },
  13061. },
  13062. [
  13063. {
  13064. name: "Normal",
  13065. height: math.unit(13 + 10 / 12, "feet"),
  13066. default: true
  13067. },
  13068. {
  13069. name: "Macro",
  13070. height: math.unit(45, "feet")
  13071. },
  13072. {
  13073. name: "Megamacro",
  13074. height: math.unit(250, "miles")
  13075. },
  13076. {
  13077. name: "Planetary",
  13078. height: math.unit(10000, "miles")
  13079. },
  13080. {
  13081. name: "Galactic",
  13082. height: math.unit(40000, "parsecs")
  13083. },
  13084. {
  13085. name: "Universal",
  13086. height: math.unit(1, "yottameter")
  13087. },
  13088. ]
  13089. ))
  13090. characterMakers.push(() => makeCharacter(
  13091. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  13092. {
  13093. front: {
  13094. height: math.unit(6, "feet"),
  13095. weight: math.unit(150, "lb"),
  13096. name: "Front",
  13097. image: {
  13098. source: "./media/characters/epifox/front.svg",
  13099. extra: 1,
  13100. bottom: 0.075
  13101. }
  13102. },
  13103. },
  13104. [
  13105. {
  13106. name: "Micro",
  13107. height: math.unit(6, "inches")
  13108. },
  13109. {
  13110. name: "Normal",
  13111. height: math.unit(12, "feet"),
  13112. default: true
  13113. },
  13114. {
  13115. name: "Macro",
  13116. height: math.unit(3810, "feet")
  13117. },
  13118. {
  13119. name: "Megamacro",
  13120. height: math.unit(500, "miles")
  13121. },
  13122. ]
  13123. ))
  13124. characterMakers.push(() => makeCharacter(
  13125. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13126. {
  13127. front: {
  13128. height: math.unit(1.8796, "m"),
  13129. weight: math.unit(230, "lb"),
  13130. name: "Front",
  13131. image: {
  13132. source: "./media/characters/colin-t/front.svg",
  13133. extra: 1272 / 1193,
  13134. bottom: 0.07
  13135. }
  13136. },
  13137. },
  13138. [
  13139. {
  13140. name: "Micro",
  13141. height: math.unit(0.571, "meters")
  13142. },
  13143. {
  13144. name: "Normal",
  13145. height: math.unit(1.8796, "meters"),
  13146. default: true
  13147. },
  13148. {
  13149. name: "Tall",
  13150. height: math.unit(4, "meters")
  13151. },
  13152. {
  13153. name: "Macro",
  13154. height: math.unit(67.241, "meters")
  13155. },
  13156. {
  13157. name: "Megamacro",
  13158. height: math.unit(371.856, "meters")
  13159. },
  13160. {
  13161. name: "Planetary",
  13162. height: math.unit(12631.5689, "km")
  13163. },
  13164. ]
  13165. ))
  13166. characterMakers.push(() => makeCharacter(
  13167. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13168. {
  13169. front: {
  13170. height: math.unit(1.85, "meters"),
  13171. weight: math.unit(80, "kg"),
  13172. name: "Front",
  13173. image: {
  13174. source: "./media/characters/matvei/front.svg",
  13175. extra: 456/447,
  13176. bottom: 8/464
  13177. }
  13178. },
  13179. back: {
  13180. height: math.unit(1.85, "meters"),
  13181. weight: math.unit(80, "kg"),
  13182. name: "Back",
  13183. image: {
  13184. source: "./media/characters/matvei/back.svg",
  13185. extra: 434/427,
  13186. bottom: 11/445
  13187. }
  13188. },
  13189. },
  13190. [
  13191. {
  13192. name: "Normal",
  13193. height: math.unit(1.85, "meters"),
  13194. default: true
  13195. },
  13196. ]
  13197. ))
  13198. characterMakers.push(() => makeCharacter(
  13199. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13200. {
  13201. front: {
  13202. height: math.unit(5 + 9 / 12, "feet"),
  13203. weight: math.unit(70, "lb"),
  13204. name: "Front",
  13205. image: {
  13206. source: "./media/characters/quincy/front.svg",
  13207. extra: 3041 / 2751
  13208. }
  13209. },
  13210. back: {
  13211. height: math.unit(5 + 9 / 12, "feet"),
  13212. weight: math.unit(70, "lb"),
  13213. name: "Back",
  13214. image: {
  13215. source: "./media/characters/quincy/back.svg",
  13216. extra: 3041 / 2751
  13217. }
  13218. },
  13219. flying: {
  13220. height: math.unit(5 + 4 / 12, "feet"),
  13221. weight: math.unit(70, "lb"),
  13222. name: "Flying",
  13223. image: {
  13224. source: "./media/characters/quincy/flying.svg",
  13225. extra: 1044 / 930
  13226. }
  13227. },
  13228. },
  13229. [
  13230. {
  13231. name: "Micro",
  13232. height: math.unit(3, "cm")
  13233. },
  13234. {
  13235. name: "Normal",
  13236. height: math.unit(5 + 9 / 12, "feet")
  13237. },
  13238. {
  13239. name: "Macro",
  13240. height: math.unit(200, "meters"),
  13241. default: true
  13242. },
  13243. {
  13244. name: "Megamacro",
  13245. height: math.unit(1000, "meters")
  13246. },
  13247. ]
  13248. ))
  13249. characterMakers.push(() => makeCharacter(
  13250. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13251. {
  13252. front: {
  13253. height: math.unit(3 + 11/12, "feet"),
  13254. weight: math.unit(50, "lb"),
  13255. name: "Front",
  13256. image: {
  13257. source: "./media/characters/vanrel/front.svg",
  13258. extra: 1104/949,
  13259. bottom: 52/1156
  13260. }
  13261. },
  13262. back: {
  13263. height: math.unit(3 + 11/12, "feet"),
  13264. weight: math.unit(50, "lb"),
  13265. name: "Back",
  13266. image: {
  13267. source: "./media/characters/vanrel/back.svg",
  13268. extra: 1119/976,
  13269. bottom: 37/1156
  13270. }
  13271. },
  13272. tome: {
  13273. height: math.unit(1.35, "feet"),
  13274. weight: math.unit(10, "lb"),
  13275. name: "Vanrel's Tome",
  13276. rename: true,
  13277. image: {
  13278. source: "./media/characters/vanrel/tome.svg"
  13279. }
  13280. },
  13281. beans: {
  13282. height: math.unit(0.89, "feet"),
  13283. name: "Beans",
  13284. image: {
  13285. source: "./media/characters/vanrel/beans.svg"
  13286. }
  13287. },
  13288. },
  13289. [
  13290. {
  13291. name: "Normal",
  13292. height: math.unit(3 + 11/12, "feet"),
  13293. default: true
  13294. },
  13295. ]
  13296. ))
  13297. characterMakers.push(() => makeCharacter(
  13298. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13299. {
  13300. front: {
  13301. height: math.unit(7 + 5 / 12, "feet"),
  13302. name: "Front",
  13303. image: {
  13304. source: "./media/characters/kuiper-vanrel/front.svg",
  13305. extra: 1219/1169,
  13306. bottom: 69/1288
  13307. }
  13308. },
  13309. back: {
  13310. height: math.unit(7 + 5 / 12, "feet"),
  13311. name: "Back",
  13312. image: {
  13313. source: "./media/characters/kuiper-vanrel/back.svg",
  13314. extra: 1236/1193,
  13315. bottom: 27/1263
  13316. }
  13317. },
  13318. foot: {
  13319. height: math.unit(0.55, "meters"),
  13320. name: "Foot",
  13321. image: {
  13322. source: "./media/characters/kuiper-vanrel/foot.svg",
  13323. }
  13324. },
  13325. battle: {
  13326. height: math.unit(6.824, "feet"),
  13327. name: "Battle",
  13328. image: {
  13329. source: "./media/characters/kuiper-vanrel/battle.svg",
  13330. extra: 1466 / 1327,
  13331. bottom: 29 / 1492.5
  13332. }
  13333. },
  13334. meerkui: {
  13335. height: math.unit(18, "inches"),
  13336. name: "Meerkui",
  13337. image: {
  13338. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13339. extra: 1354/1289,
  13340. bottom: 69/1423
  13341. }
  13342. },
  13343. },
  13344. [
  13345. {
  13346. name: "Normal",
  13347. height: math.unit(7 + 5 / 12, "feet"),
  13348. default: true
  13349. },
  13350. ]
  13351. ))
  13352. characterMakers.push(() => makeCharacter(
  13353. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13354. {
  13355. front: {
  13356. height: math.unit(8 + 5 / 12, "feet"),
  13357. name: "Front",
  13358. image: {
  13359. source: "./media/characters/keset-vanrel/front.svg",
  13360. extra: 1231/1148,
  13361. bottom: 82/1313
  13362. }
  13363. },
  13364. back: {
  13365. height: math.unit(8 + 5 / 12, "feet"),
  13366. name: "Back",
  13367. image: {
  13368. source: "./media/characters/keset-vanrel/back.svg",
  13369. extra: 1240/1174,
  13370. bottom: 33/1273
  13371. }
  13372. },
  13373. hand: {
  13374. height: math.unit(0.6, "meters"),
  13375. name: "Hand",
  13376. image: {
  13377. source: "./media/characters/keset-vanrel/hand.svg"
  13378. }
  13379. },
  13380. foot: {
  13381. height: math.unit(0.94978, "meters"),
  13382. name: "Foot",
  13383. image: {
  13384. source: "./media/characters/keset-vanrel/foot.svg"
  13385. }
  13386. },
  13387. battle: {
  13388. height: math.unit(7.408, "feet"),
  13389. name: "Battle",
  13390. image: {
  13391. source: "./media/characters/keset-vanrel/battle.svg",
  13392. extra: 1890 / 1386,
  13393. bottom: 73.28 / 1970
  13394. }
  13395. },
  13396. },
  13397. [
  13398. {
  13399. name: "Normal",
  13400. height: math.unit(8 + 5 / 12, "feet"),
  13401. default: true
  13402. },
  13403. ]
  13404. ))
  13405. characterMakers.push(() => makeCharacter(
  13406. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13407. {
  13408. front: {
  13409. height: math.unit(6, "feet"),
  13410. weight: math.unit(150, "lb"),
  13411. name: "Front",
  13412. image: {
  13413. source: "./media/characters/neos/front.svg",
  13414. extra: 1696 / 992,
  13415. bottom: 0.14
  13416. }
  13417. },
  13418. },
  13419. [
  13420. {
  13421. name: "Normal",
  13422. height: math.unit(54, "cm"),
  13423. default: true
  13424. },
  13425. {
  13426. name: "Macro",
  13427. height: math.unit(100, "m")
  13428. },
  13429. {
  13430. name: "Megamacro",
  13431. height: math.unit(10, "km")
  13432. },
  13433. {
  13434. name: "Megamacro+",
  13435. height: math.unit(100, "km")
  13436. },
  13437. {
  13438. name: "Gigamacro",
  13439. height: math.unit(100, "Mm")
  13440. },
  13441. {
  13442. name: "Teramacro",
  13443. height: math.unit(100, "Gm")
  13444. },
  13445. {
  13446. name: "Examacro",
  13447. height: math.unit(100, "Em")
  13448. },
  13449. {
  13450. name: "Godly",
  13451. height: math.unit(10000, "Ym")
  13452. },
  13453. {
  13454. name: "Beyond Godly",
  13455. height: math.unit(25, "multiverses")
  13456. },
  13457. ]
  13458. ))
  13459. characterMakers.push(() => makeCharacter(
  13460. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13461. {
  13462. feminine: {
  13463. height: math.unit(5, "feet"),
  13464. weight: math.unit(100, "lb"),
  13465. name: "Feminine",
  13466. image: {
  13467. source: "./media/characters/sammy-mouse/feminine.svg",
  13468. extra: 2526 / 2425,
  13469. bottom: 0.123
  13470. }
  13471. },
  13472. masculine: {
  13473. height: math.unit(5, "feet"),
  13474. weight: math.unit(100, "lb"),
  13475. name: "Masculine",
  13476. image: {
  13477. source: "./media/characters/sammy-mouse/masculine.svg",
  13478. extra: 2526 / 2425,
  13479. bottom: 0.123
  13480. }
  13481. },
  13482. },
  13483. [
  13484. {
  13485. name: "Micro",
  13486. height: math.unit(5, "inches")
  13487. },
  13488. {
  13489. name: "Normal",
  13490. height: math.unit(5, "feet"),
  13491. default: true
  13492. },
  13493. {
  13494. name: "Macro",
  13495. height: math.unit(60, "feet")
  13496. },
  13497. ]
  13498. ))
  13499. characterMakers.push(() => makeCharacter(
  13500. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13501. {
  13502. front: {
  13503. height: math.unit(4, "feet"),
  13504. weight: math.unit(50, "lb"),
  13505. name: "Front",
  13506. image: {
  13507. source: "./media/characters/kole/front.svg",
  13508. extra: 1423 / 1303,
  13509. bottom: 0.025
  13510. }
  13511. },
  13512. back: {
  13513. height: math.unit(4, "feet"),
  13514. weight: math.unit(50, "lb"),
  13515. name: "Back",
  13516. image: {
  13517. source: "./media/characters/kole/back.svg",
  13518. extra: 1426 / 1280,
  13519. bottom: 0.02
  13520. }
  13521. },
  13522. },
  13523. [
  13524. {
  13525. name: "Normal",
  13526. height: math.unit(4, "feet"),
  13527. default: true
  13528. },
  13529. ]
  13530. ))
  13531. characterMakers.push(() => makeCharacter(
  13532. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13533. {
  13534. front: {
  13535. height: math.unit(2.5, "feet"),
  13536. weight: math.unit(32, "lb"),
  13537. name: "Front",
  13538. image: {
  13539. source: "./media/characters/rufran/front.svg",
  13540. extra: 1313/885,
  13541. bottom: 94/1407
  13542. }
  13543. },
  13544. side: {
  13545. height: math.unit(2.5, "feet"),
  13546. weight: math.unit(32, "lb"),
  13547. name: "Side",
  13548. image: {
  13549. source: "./media/characters/rufran/side.svg",
  13550. extra: 1109/852,
  13551. bottom: 118/1227
  13552. }
  13553. },
  13554. back: {
  13555. height: math.unit(2.5, "feet"),
  13556. weight: math.unit(32, "lb"),
  13557. name: "Back",
  13558. image: {
  13559. source: "./media/characters/rufran/back.svg",
  13560. extra: 1280/878,
  13561. bottom: 131/1411
  13562. }
  13563. },
  13564. mouth: {
  13565. height: math.unit(1.13, "feet"),
  13566. name: "Mouth",
  13567. image: {
  13568. source: "./media/characters/rufran/mouth.svg"
  13569. }
  13570. },
  13571. foot: {
  13572. height: math.unit(1.33, "feet"),
  13573. name: "Foot",
  13574. image: {
  13575. source: "./media/characters/rufran/foot.svg"
  13576. }
  13577. },
  13578. koboldFront: {
  13579. height: math.unit(2 + 6 / 12, "feet"),
  13580. weight: math.unit(20, "lb"),
  13581. name: "Front (Kobold)",
  13582. image: {
  13583. source: "./media/characters/rufran/kobold-front.svg",
  13584. extra: 2041 / 1839,
  13585. bottom: 0.055
  13586. }
  13587. },
  13588. koboldBack: {
  13589. height: math.unit(2 + 6 / 12, "feet"),
  13590. weight: math.unit(20, "lb"),
  13591. name: "Back (Kobold)",
  13592. image: {
  13593. source: "./media/characters/rufran/kobold-back.svg",
  13594. extra: 2054 / 1839,
  13595. bottom: 0.01
  13596. }
  13597. },
  13598. koboldHand: {
  13599. height: math.unit(0.2166, "meters"),
  13600. name: "Hand (Kobold)",
  13601. image: {
  13602. source: "./media/characters/rufran/kobold-hand.svg"
  13603. }
  13604. },
  13605. koboldFoot: {
  13606. height: math.unit(0.185, "meters"),
  13607. name: "Foot (Kobold)",
  13608. image: {
  13609. source: "./media/characters/rufran/kobold-foot.svg"
  13610. }
  13611. },
  13612. },
  13613. [
  13614. {
  13615. name: "Micro",
  13616. height: math.unit(1, "inch")
  13617. },
  13618. {
  13619. name: "Normal",
  13620. height: math.unit(2 + 6 / 12, "feet"),
  13621. default: true
  13622. },
  13623. {
  13624. name: "Big",
  13625. height: math.unit(60, "feet")
  13626. },
  13627. {
  13628. name: "Macro",
  13629. height: math.unit(325, "feet")
  13630. },
  13631. ]
  13632. ))
  13633. characterMakers.push(() => makeCharacter(
  13634. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13635. {
  13636. front: {
  13637. height: math.unit(0.3, "meters"),
  13638. weight: math.unit(3.5, "kg"),
  13639. name: "Front",
  13640. image: {
  13641. source: "./media/characters/chip/front.svg",
  13642. extra: 748 / 674
  13643. }
  13644. },
  13645. },
  13646. [
  13647. {
  13648. name: "Micro",
  13649. height: math.unit(1, "inch"),
  13650. default: true
  13651. },
  13652. ]
  13653. ))
  13654. characterMakers.push(() => makeCharacter(
  13655. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13656. {
  13657. side: {
  13658. height: math.unit(2.3, "meters"),
  13659. weight: math.unit(3500, "lb"),
  13660. name: "Side",
  13661. image: {
  13662. source: "./media/characters/torvid/side.svg",
  13663. extra: 1972 / 722,
  13664. bottom: 0.035
  13665. }
  13666. },
  13667. },
  13668. [
  13669. {
  13670. name: "Normal",
  13671. height: math.unit(2.3, "meters"),
  13672. default: true
  13673. },
  13674. ]
  13675. ))
  13676. characterMakers.push(() => makeCharacter(
  13677. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13678. {
  13679. front: {
  13680. height: math.unit(2, "meters"),
  13681. weight: math.unit(150.5, "kg"),
  13682. name: "Front",
  13683. image: {
  13684. source: "./media/characters/susan/front.svg",
  13685. extra: 693 / 635,
  13686. bottom: 0.05
  13687. }
  13688. },
  13689. },
  13690. [
  13691. {
  13692. name: "Megamacro",
  13693. height: math.unit(505, "miles"),
  13694. default: true
  13695. },
  13696. ]
  13697. ))
  13698. characterMakers.push(() => makeCharacter(
  13699. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13700. {
  13701. front: {
  13702. height: math.unit(6, "feet"),
  13703. weight: math.unit(150, "lb"),
  13704. name: "Front",
  13705. image: {
  13706. source: "./media/characters/raindrops/front.svg",
  13707. extra: 2655 / 2461,
  13708. bottom: 49 / 2705
  13709. }
  13710. },
  13711. back: {
  13712. height: math.unit(6, "feet"),
  13713. weight: math.unit(150, "lb"),
  13714. name: "Back",
  13715. image: {
  13716. source: "./media/characters/raindrops/back.svg",
  13717. extra: 2574 / 2400,
  13718. bottom: 65 / 2634
  13719. }
  13720. },
  13721. },
  13722. [
  13723. {
  13724. name: "Micro",
  13725. height: math.unit(6, "inches")
  13726. },
  13727. {
  13728. name: "Normal",
  13729. height: math.unit(6 + 2 / 12, "feet")
  13730. },
  13731. {
  13732. name: "Macro",
  13733. height: math.unit(131, "feet"),
  13734. default: true
  13735. },
  13736. {
  13737. name: "Megamacro",
  13738. height: math.unit(15, "miles")
  13739. },
  13740. {
  13741. name: "Gigamacro",
  13742. height: math.unit(4000, "miles")
  13743. },
  13744. {
  13745. name: "Teramacro",
  13746. height: math.unit(315000, "miles")
  13747. },
  13748. ]
  13749. ))
  13750. characterMakers.push(() => makeCharacter(
  13751. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13752. {
  13753. front: {
  13754. height: math.unit(2.794, "meters"),
  13755. weight: math.unit(325, "kg"),
  13756. name: "Front",
  13757. image: {
  13758. source: "./media/characters/tezwa/front.svg",
  13759. extra: 2083 / 1906,
  13760. bottom: 0.031
  13761. }
  13762. },
  13763. foot: {
  13764. height: math.unit(0.687, "meters"),
  13765. name: "Foot",
  13766. image: {
  13767. source: "./media/characters/tezwa/foot.svg"
  13768. }
  13769. },
  13770. },
  13771. [
  13772. {
  13773. name: "Normal",
  13774. height: math.unit(9 + 2 / 12, "feet"),
  13775. default: true
  13776. },
  13777. ]
  13778. ))
  13779. characterMakers.push(() => makeCharacter(
  13780. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13781. {
  13782. front: {
  13783. height: math.unit(58, "feet"),
  13784. weight: math.unit(89000, "lb"),
  13785. name: "Front",
  13786. image: {
  13787. source: "./media/characters/typhus/front.svg",
  13788. extra: 816 / 800,
  13789. bottom: 0.065
  13790. }
  13791. },
  13792. },
  13793. [
  13794. {
  13795. name: "Macro",
  13796. height: math.unit(58, "feet"),
  13797. default: true
  13798. },
  13799. ]
  13800. ))
  13801. characterMakers.push(() => makeCharacter(
  13802. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13803. {
  13804. front: {
  13805. height: math.unit(12, "feet"),
  13806. weight: math.unit(6, "tonnes"),
  13807. name: "Front",
  13808. image: {
  13809. source: "./media/characters/lyra-von-wulf/front.svg",
  13810. extra: 1,
  13811. bottom: 0.10
  13812. }
  13813. },
  13814. frontMecha: {
  13815. height: math.unit(12, "feet"),
  13816. weight: math.unit(12, "tonnes"),
  13817. name: "Front (Mecha)",
  13818. image: {
  13819. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13820. extra: 1,
  13821. bottom: 0.042
  13822. }
  13823. },
  13824. maw: {
  13825. height: math.unit(2.2, "feet"),
  13826. name: "Maw",
  13827. image: {
  13828. source: "./media/characters/lyra-von-wulf/maw.svg"
  13829. }
  13830. },
  13831. },
  13832. [
  13833. {
  13834. name: "Normal",
  13835. height: math.unit(12, "feet"),
  13836. default: true
  13837. },
  13838. {
  13839. name: "Classic",
  13840. height: math.unit(50, "feet")
  13841. },
  13842. {
  13843. name: "Macro",
  13844. height: math.unit(500, "feet")
  13845. },
  13846. {
  13847. name: "Megamacro",
  13848. height: math.unit(1, "mile")
  13849. },
  13850. {
  13851. name: "Gigamacro",
  13852. height: math.unit(400, "miles")
  13853. },
  13854. {
  13855. name: "Teramacro",
  13856. height: math.unit(22000, "miles")
  13857. },
  13858. {
  13859. name: "Solarmacro",
  13860. height: math.unit(8600000, "miles")
  13861. },
  13862. {
  13863. name: "Galactic",
  13864. height: math.unit(1057000, "lightyears")
  13865. },
  13866. ]
  13867. ))
  13868. characterMakers.push(() => makeCharacter(
  13869. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13870. {
  13871. front: {
  13872. height: math.unit(6 + 10 / 12, "feet"),
  13873. weight: math.unit(150, "lb"),
  13874. name: "Front",
  13875. image: {
  13876. source: "./media/characters/dixon/front.svg",
  13877. extra: 3361 / 3209,
  13878. bottom: 0.01
  13879. }
  13880. },
  13881. },
  13882. [
  13883. {
  13884. name: "Normal",
  13885. height: math.unit(6 + 10 / 12, "feet"),
  13886. default: true
  13887. },
  13888. {
  13889. name: "Big",
  13890. height: math.unit(12, "meters")
  13891. },
  13892. {
  13893. name: "Macro",
  13894. height: math.unit(500, "meters")
  13895. },
  13896. {
  13897. name: "Megamacro",
  13898. height: math.unit(2, "km")
  13899. },
  13900. ]
  13901. ))
  13902. characterMakers.push(() => makeCharacter(
  13903. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13904. {
  13905. front: {
  13906. height: math.unit(185, "cm"),
  13907. weight: math.unit(68, "kg"),
  13908. name: "Front",
  13909. image: {
  13910. source: "./media/characters/kauko/front.svg",
  13911. extra: 1455 / 1421,
  13912. bottom: 0.03
  13913. }
  13914. },
  13915. back: {
  13916. height: math.unit(185, "cm"),
  13917. weight: math.unit(68, "kg"),
  13918. name: "Back",
  13919. image: {
  13920. source: "./media/characters/kauko/back.svg",
  13921. extra: 1455 / 1421,
  13922. bottom: 0.004
  13923. }
  13924. },
  13925. },
  13926. [
  13927. {
  13928. name: "Normal",
  13929. height: math.unit(185, "cm"),
  13930. default: true
  13931. },
  13932. ]
  13933. ))
  13934. characterMakers.push(() => makeCharacter(
  13935. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13936. {
  13937. frontSfw: {
  13938. height: math.unit(5, "meters"),
  13939. weight: math.unit(4250, "lb"),
  13940. name: "Front",
  13941. image: {
  13942. source: "./media/characters/varg/front-sfw.svg",
  13943. extra: 1103/1010,
  13944. bottom: 50/1153
  13945. },
  13946. form: "anthro",
  13947. default: true
  13948. },
  13949. backSfw: {
  13950. height: math.unit(5, "meters"),
  13951. weight: math.unit(4250, "lb"),
  13952. name: "Back",
  13953. image: {
  13954. source: "./media/characters/varg/back-sfw.svg",
  13955. extra: 1038/1022,
  13956. bottom: 36/1074
  13957. },
  13958. form: "anthro"
  13959. },
  13960. frontNsfw: {
  13961. height: math.unit(5, "meters"),
  13962. weight: math.unit(4250, "lb"),
  13963. name: "Front (NSFW)",
  13964. image: {
  13965. source: "./media/characters/varg/front-nsfw.svg",
  13966. extra: 1103/1010,
  13967. bottom: 50/1153
  13968. },
  13969. form: "anthro"
  13970. },
  13971. sheath: {
  13972. height: math.unit(3.8, "feet"),
  13973. weight: math.unit(90, "kilograms"),
  13974. name: "Sheath",
  13975. image: {
  13976. source: "./media/characters/varg/sheath.svg"
  13977. },
  13978. form: "anthro"
  13979. },
  13980. dick: {
  13981. height: math.unit(4.6, "feet"),
  13982. weight: math.unit(451, "kilograms"),
  13983. name: "Dick",
  13984. image: {
  13985. source: "./media/characters/varg/dick.svg"
  13986. },
  13987. form: "anthro"
  13988. },
  13989. feralSfw: {
  13990. height: math.unit(5, "meters"),
  13991. weight: math.unit(100000, "lb"),
  13992. name: "Side",
  13993. image: {
  13994. source: "./media/characters/varg/feral-sfw.svg",
  13995. extra: 1065/511,
  13996. bottom: 211/1276
  13997. },
  13998. form: "feral",
  13999. default: true
  14000. },
  14001. feralNsfw: {
  14002. height: math.unit(5, "meters"),
  14003. weight: math.unit(100000, "lb"),
  14004. name: "Side (NSFW)",
  14005. image: {
  14006. source: "./media/characters/varg/feral-nsfw.svg",
  14007. extra: 1065/511,
  14008. bottom: 211/1276
  14009. },
  14010. form: "feral",
  14011. },
  14012. feralSheath: {
  14013. height: math.unit(9.8, "feet"),
  14014. weight: math.unit(2000, "kilograms"),
  14015. name: "Sheath",
  14016. image: {
  14017. source: "./media/characters/varg/sheath.svg"
  14018. },
  14019. form: "feral"
  14020. },
  14021. feralDick: {
  14022. height: math.unit(13.11, "feet"),
  14023. weight: math.unit(10440, "kilograms"),
  14024. name: "Dick",
  14025. image: {
  14026. source: "./media/characters/varg/dick.svg"
  14027. },
  14028. form: "feral"
  14029. },
  14030. },
  14031. [
  14032. {
  14033. name: "Normal",
  14034. height: math.unit(5, "meters"),
  14035. form: "anthro"
  14036. },
  14037. {
  14038. name: "Macro",
  14039. height: math.unit(200, "meters"),
  14040. form: "anthro"
  14041. },
  14042. {
  14043. name: "Megamacro",
  14044. height: math.unit(20, "kilometers"),
  14045. form: "anthro"
  14046. },
  14047. {
  14048. name: "True Size",
  14049. height: math.unit(211, "km"),
  14050. form: "anthro",
  14051. default: true
  14052. },
  14053. {
  14054. name: "Gigamacro",
  14055. height: math.unit(1000, "km"),
  14056. form: "anthro"
  14057. },
  14058. {
  14059. name: "Gigamacro+",
  14060. height: math.unit(8000, "km"),
  14061. form: "anthro"
  14062. },
  14063. {
  14064. name: "Teramacro",
  14065. height: math.unit(1000000, "km"),
  14066. form: "anthro"
  14067. },
  14068. {
  14069. name: "Normal",
  14070. height: math.unit(5, "meters"),
  14071. form: "feral"
  14072. },
  14073. {
  14074. name: "Macro",
  14075. height: math.unit(200, "meters"),
  14076. form: "feral"
  14077. },
  14078. {
  14079. name: "Megamacro",
  14080. height: math.unit(20, "kilometers"),
  14081. form: "feral"
  14082. },
  14083. {
  14084. name: "True Size",
  14085. height: math.unit(211, "km"),
  14086. form: "feral",
  14087. default: true
  14088. },
  14089. {
  14090. name: "Gigamacro",
  14091. height: math.unit(1000, "km"),
  14092. form: "feral"
  14093. },
  14094. {
  14095. name: "Gigamacro+",
  14096. height: math.unit(8000, "km"),
  14097. form: "feral"
  14098. },
  14099. {
  14100. name: "Teramacro",
  14101. height: math.unit(1000000, "km"),
  14102. form: "feral"
  14103. },
  14104. ],
  14105. {
  14106. "anthro": {
  14107. name: "Anthro",
  14108. default: true
  14109. },
  14110. "feral": {
  14111. name: "Feral",
  14112. },
  14113. }
  14114. ))
  14115. characterMakers.push(() => makeCharacter(
  14116. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  14117. {
  14118. front: {
  14119. height: math.unit(7 + 7 / 12, "feet"),
  14120. weight: math.unit(267, "lb"),
  14121. name: "Front",
  14122. image: {
  14123. source: "./media/characters/dayza/front.svg",
  14124. extra: 1262 / 1200,
  14125. bottom: 0.035
  14126. }
  14127. },
  14128. side: {
  14129. height: math.unit(7 + 7 / 12, "feet"),
  14130. weight: math.unit(267, "lb"),
  14131. name: "Side",
  14132. image: {
  14133. source: "./media/characters/dayza/side.svg",
  14134. extra: 1295 / 1245,
  14135. bottom: 0.05
  14136. }
  14137. },
  14138. back: {
  14139. height: math.unit(7 + 7 / 12, "feet"),
  14140. weight: math.unit(267, "lb"),
  14141. name: "Back",
  14142. image: {
  14143. source: "./media/characters/dayza/back.svg",
  14144. extra: 1241 / 1170
  14145. }
  14146. },
  14147. },
  14148. [
  14149. {
  14150. name: "Normal",
  14151. height: math.unit(7 + 7 / 12, "feet"),
  14152. default: true
  14153. },
  14154. {
  14155. name: "Macro",
  14156. height: math.unit(155, "feet")
  14157. },
  14158. ]
  14159. ))
  14160. characterMakers.push(() => makeCharacter(
  14161. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14162. {
  14163. front: {
  14164. height: math.unit(6 + 5 / 12, "feet"),
  14165. weight: math.unit(160, "lb"),
  14166. name: "Front",
  14167. image: {
  14168. source: "./media/characters/xanthos/front.svg",
  14169. extra: 1,
  14170. bottom: 0.04
  14171. }
  14172. },
  14173. back: {
  14174. height: math.unit(6 + 5 / 12, "feet"),
  14175. weight: math.unit(160, "lb"),
  14176. name: "Back",
  14177. image: {
  14178. source: "./media/characters/xanthos/back.svg",
  14179. extra: 1,
  14180. bottom: 0.03
  14181. }
  14182. },
  14183. hand: {
  14184. height: math.unit(0.928, "feet"),
  14185. name: "Hand",
  14186. image: {
  14187. source: "./media/characters/xanthos/hand.svg"
  14188. }
  14189. },
  14190. foot: {
  14191. height: math.unit(1.286, "feet"),
  14192. name: "Foot",
  14193. image: {
  14194. source: "./media/characters/xanthos/foot.svg"
  14195. }
  14196. },
  14197. },
  14198. [
  14199. {
  14200. name: "Normal",
  14201. height: math.unit(6 + 5 / 12, "feet"),
  14202. default: true
  14203. },
  14204. {
  14205. name: "Normal+",
  14206. height: math.unit(6, "meters")
  14207. },
  14208. {
  14209. name: "Macro",
  14210. height: math.unit(40, "feet")
  14211. },
  14212. {
  14213. name: "Macro+",
  14214. height: math.unit(200, "meters")
  14215. },
  14216. {
  14217. name: "Megamacro",
  14218. height: math.unit(20, "km")
  14219. },
  14220. {
  14221. name: "Megamacro+",
  14222. height: math.unit(100, "km")
  14223. },
  14224. {
  14225. name: "Gigamacro",
  14226. height: math.unit(200, "megameters")
  14227. },
  14228. {
  14229. name: "Gigamacro+",
  14230. height: math.unit(1.5, "gigameters")
  14231. },
  14232. ]
  14233. ))
  14234. characterMakers.push(() => makeCharacter(
  14235. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  14236. {
  14237. front: {
  14238. height: math.unit(6 + 3 / 12, "feet"),
  14239. weight: math.unit(215, "lb"),
  14240. name: "Front",
  14241. image: {
  14242. source: "./media/characters/grynn/front.svg",
  14243. extra: 4627 / 4209,
  14244. bottom: 0.047
  14245. }
  14246. },
  14247. },
  14248. [
  14249. {
  14250. name: "Micro",
  14251. height: math.unit(6, "inches")
  14252. },
  14253. {
  14254. name: "Normal",
  14255. height: math.unit(6 + 3 / 12, "feet"),
  14256. default: true
  14257. },
  14258. {
  14259. name: "Big",
  14260. height: math.unit(104, "feet")
  14261. },
  14262. {
  14263. name: "Macro",
  14264. height: math.unit(944, "feet")
  14265. },
  14266. {
  14267. name: "Macro+",
  14268. height: math.unit(9480, "feet")
  14269. },
  14270. {
  14271. name: "Megamacro",
  14272. height: math.unit(78752, "feet")
  14273. },
  14274. {
  14275. name: "Megamacro+",
  14276. height: math.unit(630128, "feet")
  14277. },
  14278. {
  14279. name: "Megamacro++",
  14280. height: math.unit(3150695, "feet")
  14281. },
  14282. ]
  14283. ))
  14284. characterMakers.push(() => makeCharacter(
  14285. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  14286. {
  14287. front: {
  14288. height: math.unit(7 + 5 / 12, "feet"),
  14289. weight: math.unit(450, "lb"),
  14290. name: "Front",
  14291. image: {
  14292. source: "./media/characters/mocha-aura/front.svg",
  14293. extra: 1907 / 1817,
  14294. bottom: 0.04
  14295. }
  14296. },
  14297. back: {
  14298. height: math.unit(7 + 5 / 12, "feet"),
  14299. weight: math.unit(450, "lb"),
  14300. name: "Back",
  14301. image: {
  14302. source: "./media/characters/mocha-aura/back.svg",
  14303. extra: 1900 / 1825,
  14304. bottom: 0.045
  14305. }
  14306. },
  14307. },
  14308. [
  14309. {
  14310. name: "Nano",
  14311. height: math.unit(1, "nm")
  14312. },
  14313. {
  14314. name: "Megamicro",
  14315. height: math.unit(1, "mm")
  14316. },
  14317. {
  14318. name: "Micro",
  14319. height: math.unit(3, "inches")
  14320. },
  14321. {
  14322. name: "Normal",
  14323. height: math.unit(7 + 5 / 12, "feet"),
  14324. default: true
  14325. },
  14326. {
  14327. name: "Macro",
  14328. height: math.unit(30, "feet")
  14329. },
  14330. {
  14331. name: "Megamacro",
  14332. height: math.unit(3500, "feet")
  14333. },
  14334. {
  14335. name: "Teramacro",
  14336. height: math.unit(500000, "miles")
  14337. },
  14338. {
  14339. name: "Petamacro",
  14340. height: math.unit(50000000000000000, "parsecs")
  14341. },
  14342. ]
  14343. ))
  14344. characterMakers.push(() => makeCharacter(
  14345. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  14346. {
  14347. front: {
  14348. height: math.unit(6, "feet"),
  14349. weight: math.unit(150, "lb"),
  14350. name: "Front",
  14351. image: {
  14352. source: "./media/characters/ilisha-devya/front.svg",
  14353. extra: 1053/1049,
  14354. bottom: 270/1323
  14355. }
  14356. },
  14357. back: {
  14358. height: math.unit(6, "feet"),
  14359. weight: math.unit(150, "lb"),
  14360. name: "Back",
  14361. image: {
  14362. source: "./media/characters/ilisha-devya/back.svg",
  14363. extra: 1131/1128,
  14364. bottom: 39/1170
  14365. }
  14366. },
  14367. },
  14368. [
  14369. {
  14370. name: "Macro",
  14371. height: math.unit(500, "feet"),
  14372. default: true
  14373. },
  14374. {
  14375. name: "Megamacro",
  14376. height: math.unit(10, "miles")
  14377. },
  14378. {
  14379. name: "Gigamacro",
  14380. height: math.unit(100000, "miles")
  14381. },
  14382. {
  14383. name: "Examacro",
  14384. height: math.unit(1e9, "lightyears")
  14385. },
  14386. {
  14387. name: "Omniversal",
  14388. height: math.unit(1e33, "lightyears")
  14389. },
  14390. {
  14391. name: "Beyond Infinite",
  14392. height: math.unit(1e100, "lightyears")
  14393. },
  14394. ]
  14395. ))
  14396. characterMakers.push(() => makeCharacter(
  14397. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  14398. {
  14399. Side: {
  14400. height: math.unit(6, "feet"),
  14401. weight: math.unit(150, "lb"),
  14402. name: "Side",
  14403. image: {
  14404. source: "./media/characters/mira/side.svg",
  14405. extra: 900 / 799,
  14406. bottom: 0.02
  14407. }
  14408. },
  14409. },
  14410. [
  14411. {
  14412. name: "Human Size",
  14413. height: math.unit(6, "feet")
  14414. },
  14415. {
  14416. name: "Macro",
  14417. height: math.unit(100, "feet"),
  14418. default: true
  14419. },
  14420. {
  14421. name: "Megamacro",
  14422. height: math.unit(10, "miles")
  14423. },
  14424. {
  14425. name: "Gigamacro",
  14426. height: math.unit(25000, "miles")
  14427. },
  14428. {
  14429. name: "Teramacro",
  14430. height: math.unit(300, "AU")
  14431. },
  14432. {
  14433. name: "Full Size",
  14434. height: math.unit(4.5e10, "lightyears")
  14435. },
  14436. ]
  14437. ))
  14438. characterMakers.push(() => makeCharacter(
  14439. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  14440. {
  14441. front: {
  14442. height: math.unit(6, "feet"),
  14443. weight: math.unit(150, "lb"),
  14444. name: "Front",
  14445. image: {
  14446. source: "./media/characters/holly/front.svg",
  14447. extra: 639 / 606
  14448. }
  14449. },
  14450. back: {
  14451. height: math.unit(6, "feet"),
  14452. weight: math.unit(150, "lb"),
  14453. name: "Back",
  14454. image: {
  14455. source: "./media/characters/holly/back.svg",
  14456. extra: 623 / 598
  14457. }
  14458. },
  14459. frontWorking: {
  14460. height: math.unit(6, "feet"),
  14461. weight: math.unit(150, "lb"),
  14462. name: "Front (Working)",
  14463. image: {
  14464. source: "./media/characters/holly/front-working.svg",
  14465. extra: 607 / 577,
  14466. bottom: 0.048
  14467. }
  14468. },
  14469. },
  14470. [
  14471. {
  14472. name: "Normal",
  14473. height: math.unit(12 + 3 / 12, "feet"),
  14474. default: true
  14475. },
  14476. ]
  14477. ))
  14478. characterMakers.push(() => makeCharacter(
  14479. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  14480. {
  14481. front: {
  14482. height: math.unit(6, "feet"),
  14483. weight: math.unit(150, "lb"),
  14484. name: "Front",
  14485. image: {
  14486. source: "./media/characters/porter/front.svg",
  14487. extra: 1,
  14488. bottom: 0.01
  14489. }
  14490. },
  14491. frontRobes: {
  14492. height: math.unit(6, "feet"),
  14493. weight: math.unit(150, "lb"),
  14494. name: "Front (Robes)",
  14495. image: {
  14496. source: "./media/characters/porter/front-robes.svg",
  14497. extra: 1.01,
  14498. bottom: 0.01
  14499. }
  14500. },
  14501. },
  14502. [
  14503. {
  14504. name: "Normal",
  14505. height: math.unit(11 + 9 / 12, "feet"),
  14506. default: true
  14507. },
  14508. ]
  14509. ))
  14510. characterMakers.push(() => makeCharacter(
  14511. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  14512. {
  14513. legendary: {
  14514. height: math.unit(6, "feet"),
  14515. weight: math.unit(150, "lb"),
  14516. name: "Legendary",
  14517. image: {
  14518. source: "./media/characters/lucy/legendary.svg",
  14519. extra: 1355 / 1100,
  14520. bottom: 0.045
  14521. }
  14522. },
  14523. },
  14524. [
  14525. {
  14526. name: "Legendary",
  14527. height: math.unit(86882 * 2, "miles"),
  14528. default: true
  14529. },
  14530. ]
  14531. ))
  14532. characterMakers.push(() => makeCharacter(
  14533. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  14534. {
  14535. front: {
  14536. height: math.unit(6, "feet"),
  14537. weight: math.unit(150, "lb"),
  14538. name: "Front",
  14539. image: {
  14540. source: "./media/characters/drusilla/front.svg",
  14541. extra: 678 / 635,
  14542. bottom: 0.03
  14543. }
  14544. },
  14545. back: {
  14546. height: math.unit(6, "feet"),
  14547. weight: math.unit(150, "lb"),
  14548. name: "Back",
  14549. image: {
  14550. source: "./media/characters/drusilla/back.svg",
  14551. extra: 678 / 635,
  14552. bottom: 0.005
  14553. }
  14554. },
  14555. },
  14556. [
  14557. {
  14558. name: "Macro",
  14559. height: math.unit(100, "feet")
  14560. },
  14561. {
  14562. name: "Canon Height",
  14563. height: math.unit(2000, "feet"),
  14564. default: true
  14565. },
  14566. ]
  14567. ))
  14568. characterMakers.push(() => makeCharacter(
  14569. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  14570. {
  14571. front: {
  14572. height: math.unit(6, "feet"),
  14573. weight: math.unit(180, "lb"),
  14574. name: "Front",
  14575. image: {
  14576. source: "./media/characters/renard-thatch/front.svg",
  14577. extra: 2411 / 2275,
  14578. bottom: 0.01
  14579. }
  14580. },
  14581. frontPosing: {
  14582. height: math.unit(6, "feet"),
  14583. weight: math.unit(180, "lb"),
  14584. name: "Front (Posing)",
  14585. image: {
  14586. source: "./media/characters/renard-thatch/front-posing.svg",
  14587. extra: 2381 / 2261,
  14588. bottom: 0.01
  14589. }
  14590. },
  14591. back: {
  14592. height: math.unit(6, "feet"),
  14593. weight: math.unit(180, "lb"),
  14594. name: "Back",
  14595. image: {
  14596. source: "./media/characters/renard-thatch/back.svg",
  14597. extra: 2428 / 2288
  14598. }
  14599. },
  14600. },
  14601. [
  14602. {
  14603. name: "Micro",
  14604. height: math.unit(3, "inches")
  14605. },
  14606. {
  14607. name: "Default",
  14608. height: math.unit(6, "feet"),
  14609. default: true
  14610. },
  14611. {
  14612. name: "Macro",
  14613. height: math.unit(75, "feet")
  14614. },
  14615. ]
  14616. ))
  14617. characterMakers.push(() => makeCharacter(
  14618. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  14619. {
  14620. front: {
  14621. height: math.unit(1450, "feet"),
  14622. weight: math.unit(1.21e6, "tons"),
  14623. name: "Front",
  14624. image: {
  14625. source: "./media/characters/sekvra/front.svg",
  14626. extra: 1193/1190,
  14627. bottom: 78/1271
  14628. }
  14629. },
  14630. side: {
  14631. height: math.unit(1450, "feet"),
  14632. weight: math.unit(1.21e6, "tons"),
  14633. name: "Side",
  14634. image: {
  14635. source: "./media/characters/sekvra/side.svg",
  14636. extra: 1193/1190,
  14637. bottom: 52/1245
  14638. }
  14639. },
  14640. back: {
  14641. height: math.unit(1450, "feet"),
  14642. weight: math.unit(1.21e6, "tons"),
  14643. name: "Back",
  14644. image: {
  14645. source: "./media/characters/sekvra/back.svg",
  14646. extra: 1219/1216,
  14647. bottom: 21/1240
  14648. }
  14649. },
  14650. frontClothed: {
  14651. height: math.unit(1450, "feet"),
  14652. weight: math.unit(1.21e6, "tons"),
  14653. name: "Front (Clothed)",
  14654. image: {
  14655. source: "./media/characters/sekvra/front-clothed.svg",
  14656. extra: 1192/1189,
  14657. bottom: 79/1271
  14658. }
  14659. },
  14660. },
  14661. [
  14662. {
  14663. name: "Macro",
  14664. height: math.unit(1450, "feet"),
  14665. default: true
  14666. },
  14667. {
  14668. name: "Megamacro",
  14669. height: math.unit(15000, "feet")
  14670. },
  14671. ]
  14672. ))
  14673. characterMakers.push(() => makeCharacter(
  14674. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14675. {
  14676. front: {
  14677. height: math.unit(6, "feet"),
  14678. weight: math.unit(150, "lb"),
  14679. name: "Front",
  14680. image: {
  14681. source: "./media/characters/carmine/front.svg",
  14682. extra: 1,
  14683. bottom: 0.035
  14684. }
  14685. },
  14686. frontArmor: {
  14687. height: math.unit(6, "feet"),
  14688. weight: math.unit(150, "lb"),
  14689. name: "Front (Armor)",
  14690. image: {
  14691. source: "./media/characters/carmine/front-armor.svg",
  14692. extra: 1,
  14693. bottom: 0.035
  14694. }
  14695. },
  14696. },
  14697. [
  14698. {
  14699. name: "Large",
  14700. height: math.unit(1, "mile")
  14701. },
  14702. {
  14703. name: "Huge",
  14704. height: math.unit(40, "miles"),
  14705. default: true
  14706. },
  14707. {
  14708. name: "Colossal",
  14709. height: math.unit(2500, "miles")
  14710. },
  14711. ]
  14712. ))
  14713. characterMakers.push(() => makeCharacter(
  14714. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  14715. {
  14716. front: {
  14717. height: math.unit(6, "feet"),
  14718. weight: math.unit(150, "lb"),
  14719. name: "Front",
  14720. image: {
  14721. source: "./media/characters/elyssia/front.svg",
  14722. extra: 2201 / 2035,
  14723. bottom: 0.05
  14724. }
  14725. },
  14726. frontClothed: {
  14727. height: math.unit(6, "feet"),
  14728. weight: math.unit(150, "lb"),
  14729. name: "Front (Clothed)",
  14730. image: {
  14731. source: "./media/characters/elyssia/front-clothed.svg",
  14732. extra: 2201 / 2035,
  14733. bottom: 0.05
  14734. }
  14735. },
  14736. back: {
  14737. height: math.unit(6, "feet"),
  14738. weight: math.unit(150, "lb"),
  14739. name: "Back",
  14740. image: {
  14741. source: "./media/characters/elyssia/back.svg",
  14742. extra: 2201 / 2035,
  14743. bottom: 0.013
  14744. }
  14745. },
  14746. },
  14747. [
  14748. {
  14749. name: "Smaller",
  14750. height: math.unit(150, "feet")
  14751. },
  14752. {
  14753. name: "Standard",
  14754. height: math.unit(1400, "feet"),
  14755. default: true
  14756. },
  14757. {
  14758. name: "Distracted",
  14759. height: math.unit(15000, "feet")
  14760. },
  14761. ]
  14762. ))
  14763. characterMakers.push(() => makeCharacter(
  14764. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  14765. {
  14766. front: {
  14767. height: math.unit(7 + 4/12, "feet"),
  14768. weight: math.unit(690, "lb"),
  14769. name: "Front",
  14770. image: {
  14771. source: "./media/characters/geno-maxwell/front.svg",
  14772. extra: 984/856,
  14773. bottom: 87/1071
  14774. }
  14775. },
  14776. back: {
  14777. height: math.unit(7 + 4/12, "feet"),
  14778. weight: math.unit(690, "lb"),
  14779. name: "Back",
  14780. image: {
  14781. source: "./media/characters/geno-maxwell/back.svg",
  14782. extra: 981/854,
  14783. bottom: 57/1038
  14784. }
  14785. },
  14786. frontCostume: {
  14787. height: math.unit(7 + 4/12, "feet"),
  14788. weight: math.unit(690, "lb"),
  14789. name: "Front (Costume)",
  14790. image: {
  14791. source: "./media/characters/geno-maxwell/front-costume.svg",
  14792. extra: 984/856,
  14793. bottom: 87/1071
  14794. }
  14795. },
  14796. backcostume: {
  14797. height: math.unit(7 + 4/12, "feet"),
  14798. weight: math.unit(690, "lb"),
  14799. name: "Back (Costume)",
  14800. image: {
  14801. source: "./media/characters/geno-maxwell/back-costume.svg",
  14802. extra: 981/854,
  14803. bottom: 57/1038
  14804. }
  14805. },
  14806. },
  14807. [
  14808. {
  14809. name: "Micro",
  14810. height: math.unit(3, "inches")
  14811. },
  14812. {
  14813. name: "Normal",
  14814. height: math.unit(7 + 4 / 12, "feet"),
  14815. default: true
  14816. },
  14817. {
  14818. name: "Macro",
  14819. height: math.unit(220, "feet")
  14820. },
  14821. {
  14822. name: "Megamacro",
  14823. height: math.unit(11, "miles")
  14824. },
  14825. ]
  14826. ))
  14827. characterMakers.push(() => makeCharacter(
  14828. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  14829. {
  14830. front: {
  14831. height: math.unit(7 + 4/12, "feet"),
  14832. weight: math.unit(750, "lb"),
  14833. name: "Front",
  14834. image: {
  14835. source: "./media/characters/regena-maxwell/front.svg",
  14836. extra: 984/856,
  14837. bottom: 87/1071
  14838. }
  14839. },
  14840. back: {
  14841. height: math.unit(7 + 4/12, "feet"),
  14842. weight: math.unit(750, "lb"),
  14843. name: "Back",
  14844. image: {
  14845. source: "./media/characters/regena-maxwell/back.svg",
  14846. extra: 981/854,
  14847. bottom: 57/1038
  14848. }
  14849. },
  14850. frontCostume: {
  14851. height: math.unit(7 + 4/12, "feet"),
  14852. weight: math.unit(750, "lb"),
  14853. name: "Front (Costume)",
  14854. image: {
  14855. source: "./media/characters/regena-maxwell/front-costume.svg",
  14856. extra: 984/856,
  14857. bottom: 87/1071
  14858. }
  14859. },
  14860. backcostume: {
  14861. height: math.unit(7 + 4/12, "feet"),
  14862. weight: math.unit(750, "lb"),
  14863. name: "Back (Costume)",
  14864. image: {
  14865. source: "./media/characters/regena-maxwell/back-costume.svg",
  14866. extra: 981/854,
  14867. bottom: 57/1038
  14868. }
  14869. },
  14870. },
  14871. [
  14872. {
  14873. name: "Normal",
  14874. height: math.unit(7 + 4 / 12, "feet"),
  14875. default: true
  14876. },
  14877. {
  14878. name: "Macro",
  14879. height: math.unit(220, "feet")
  14880. },
  14881. {
  14882. name: "Megamacro",
  14883. height: math.unit(11, "miles")
  14884. },
  14885. ]
  14886. ))
  14887. characterMakers.push(() => makeCharacter(
  14888. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14889. {
  14890. front: {
  14891. height: math.unit(6, "feet"),
  14892. weight: math.unit(150, "lb"),
  14893. name: "Front",
  14894. image: {
  14895. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14896. extra: 860 / 690,
  14897. bottom: 0.03
  14898. }
  14899. },
  14900. },
  14901. [
  14902. {
  14903. name: "Normal",
  14904. height: math.unit(1.7, "meters"),
  14905. default: true
  14906. },
  14907. ]
  14908. ))
  14909. characterMakers.push(() => makeCharacter(
  14910. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14911. {
  14912. front: {
  14913. height: math.unit(6, "feet"),
  14914. weight: math.unit(150, "lb"),
  14915. name: "Front",
  14916. image: {
  14917. source: "./media/characters/quilly/front.svg",
  14918. extra: 890 / 776
  14919. }
  14920. },
  14921. },
  14922. [
  14923. {
  14924. name: "Gigamacro",
  14925. height: math.unit(404090, "miles"),
  14926. default: true
  14927. },
  14928. ]
  14929. ))
  14930. characterMakers.push(() => makeCharacter(
  14931. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14932. {
  14933. front: {
  14934. height: math.unit(7 + 8 / 12, "feet"),
  14935. weight: math.unit(350, "lb"),
  14936. name: "Front",
  14937. image: {
  14938. source: "./media/characters/tempest/front.svg",
  14939. extra: 1175 / 1086,
  14940. bottom: 0.02
  14941. }
  14942. },
  14943. },
  14944. [
  14945. {
  14946. name: "Normal",
  14947. height: math.unit(7 + 8 / 12, "feet"),
  14948. default: true
  14949. },
  14950. ]
  14951. ))
  14952. characterMakers.push(() => makeCharacter(
  14953. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14954. {
  14955. side: {
  14956. height: math.unit(4 + 5 / 12, "feet"),
  14957. weight: math.unit(80, "lb"),
  14958. name: "Side",
  14959. image: {
  14960. source: "./media/characters/rodger/side.svg",
  14961. extra: 1235 / 1118
  14962. }
  14963. },
  14964. },
  14965. [
  14966. {
  14967. name: "Micro",
  14968. height: math.unit(1, "inch")
  14969. },
  14970. {
  14971. name: "Normal",
  14972. height: math.unit(4 + 5 / 12, "feet"),
  14973. default: true
  14974. },
  14975. {
  14976. name: "Macro",
  14977. height: math.unit(120, "feet")
  14978. },
  14979. ]
  14980. ))
  14981. characterMakers.push(() => makeCharacter(
  14982. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14983. {
  14984. front: {
  14985. height: math.unit(6, "feet"),
  14986. weight: math.unit(150, "lb"),
  14987. name: "Front",
  14988. image: {
  14989. source: "./media/characters/danyel/front.svg",
  14990. extra: 1185 / 1123,
  14991. bottom: 0.05
  14992. }
  14993. },
  14994. },
  14995. [
  14996. {
  14997. name: "Shrunken",
  14998. height: math.unit(0.5, "mm")
  14999. },
  15000. {
  15001. name: "Micro",
  15002. height: math.unit(1, "mm"),
  15003. default: true
  15004. },
  15005. {
  15006. name: "Upsized",
  15007. height: math.unit(5 + 5 / 12, "feet")
  15008. },
  15009. ]
  15010. ))
  15011. characterMakers.push(() => makeCharacter(
  15012. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  15013. {
  15014. front: {
  15015. height: math.unit(5 + 6 / 12, "feet"),
  15016. weight: math.unit(200, "lb"),
  15017. name: "Front",
  15018. image: {
  15019. source: "./media/characters/vivian-bijoux/front.svg",
  15020. extra: 1217/1209,
  15021. bottom: 76/1293
  15022. }
  15023. },
  15024. back: {
  15025. height: math.unit(5 + 6 / 12, "feet"),
  15026. weight: math.unit(200, "lb"),
  15027. name: "Back",
  15028. image: {
  15029. source: "./media/characters/vivian-bijoux/back.svg",
  15030. extra: 1214/1208,
  15031. bottom: 51/1265
  15032. }
  15033. },
  15034. dressed: {
  15035. height: math.unit(5 + 6 / 12, "feet"),
  15036. weight: math.unit(200, "lb"),
  15037. name: "Dressed",
  15038. image: {
  15039. source: "./media/characters/vivian-bijoux/dressed.svg",
  15040. extra: 1217/1209,
  15041. bottom: 76/1293
  15042. }
  15043. },
  15044. },
  15045. [
  15046. {
  15047. name: "Normal",
  15048. height: math.unit(5 + 6 / 12, "feet"),
  15049. default: true
  15050. },
  15051. {
  15052. name: "Bad Dream",
  15053. height: math.unit(500, "feet")
  15054. },
  15055. {
  15056. name: "Nightmare",
  15057. height: math.unit(500, "miles")
  15058. },
  15059. ]
  15060. ))
  15061. characterMakers.push(() => makeCharacter(
  15062. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  15063. {
  15064. front: {
  15065. height: math.unit(6 + 1 / 12, "feet"),
  15066. weight: math.unit(260, "lb"),
  15067. name: "Front",
  15068. image: {
  15069. source: "./media/characters/zeta/front.svg",
  15070. extra: 1968 / 1889,
  15071. bottom: 0.06
  15072. }
  15073. },
  15074. back: {
  15075. height: math.unit(6 + 1 / 12, "feet"),
  15076. weight: math.unit(260, "lb"),
  15077. name: "Back",
  15078. image: {
  15079. source: "./media/characters/zeta/back.svg",
  15080. extra: 1944 / 1858,
  15081. bottom: 0.03
  15082. }
  15083. },
  15084. hand: {
  15085. height: math.unit(1.112, "feet"),
  15086. name: "Hand",
  15087. image: {
  15088. source: "./media/characters/zeta/hand.svg"
  15089. }
  15090. },
  15091. foot: {
  15092. height: math.unit(1.48, "feet"),
  15093. name: "Foot",
  15094. image: {
  15095. source: "./media/characters/zeta/foot.svg"
  15096. }
  15097. },
  15098. },
  15099. [
  15100. {
  15101. name: "Micro",
  15102. height: math.unit(6, "inches")
  15103. },
  15104. {
  15105. name: "Normal",
  15106. height: math.unit(6 + 1 / 12, "feet"),
  15107. default: true
  15108. },
  15109. {
  15110. name: "Macro",
  15111. height: math.unit(20, "feet")
  15112. },
  15113. ]
  15114. ))
  15115. characterMakers.push(() => makeCharacter(
  15116. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  15117. {
  15118. front: {
  15119. height: math.unit(6, "feet"),
  15120. weight: math.unit(150, "lb"),
  15121. name: "Front",
  15122. image: {
  15123. source: "./media/characters/jamie-larsen/front.svg",
  15124. extra: 962 / 933,
  15125. bottom: 0.02
  15126. }
  15127. },
  15128. back: {
  15129. height: math.unit(6, "feet"),
  15130. weight: math.unit(150, "lb"),
  15131. name: "Back",
  15132. image: {
  15133. source: "./media/characters/jamie-larsen/back.svg",
  15134. extra: 997 / 946
  15135. }
  15136. },
  15137. },
  15138. [
  15139. {
  15140. name: "Macro",
  15141. height: math.unit(28 + 7 / 12, "feet"),
  15142. default: true
  15143. },
  15144. {
  15145. name: "Macro+",
  15146. height: math.unit(180, "feet")
  15147. },
  15148. {
  15149. name: "Megamacro",
  15150. height: math.unit(10, "miles")
  15151. },
  15152. {
  15153. name: "Gigamacro",
  15154. height: math.unit(200000, "miles")
  15155. },
  15156. ]
  15157. ))
  15158. characterMakers.push(() => makeCharacter(
  15159. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15160. {
  15161. front: {
  15162. height: math.unit(6, "feet"),
  15163. weight: math.unit(120, "lb"),
  15164. name: "Front",
  15165. image: {
  15166. source: "./media/characters/vance/front.svg",
  15167. extra: 1980 / 1890,
  15168. bottom: 0.09
  15169. }
  15170. },
  15171. back: {
  15172. height: math.unit(6, "feet"),
  15173. weight: math.unit(120, "lb"),
  15174. name: "Back",
  15175. image: {
  15176. source: "./media/characters/vance/back.svg",
  15177. extra: 2081 / 1994,
  15178. bottom: 0.014
  15179. }
  15180. },
  15181. hand: {
  15182. height: math.unit(0.88, "feet"),
  15183. name: "Hand",
  15184. image: {
  15185. source: "./media/characters/vance/hand.svg"
  15186. }
  15187. },
  15188. foot: {
  15189. height: math.unit(0.64, "feet"),
  15190. name: "Foot",
  15191. image: {
  15192. source: "./media/characters/vance/foot.svg"
  15193. }
  15194. },
  15195. },
  15196. [
  15197. {
  15198. name: "Small",
  15199. height: math.unit(90, "feet"),
  15200. default: true
  15201. },
  15202. {
  15203. name: "Macro",
  15204. height: math.unit(100, "meters")
  15205. },
  15206. {
  15207. name: "Megamacro",
  15208. height: math.unit(15, "miles")
  15209. },
  15210. ]
  15211. ))
  15212. characterMakers.push(() => makeCharacter(
  15213. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  15214. {
  15215. front: {
  15216. height: math.unit(6, "feet"),
  15217. weight: math.unit(180, "lb"),
  15218. name: "Front",
  15219. image: {
  15220. source: "./media/characters/xochitl/front.svg",
  15221. extra: 2297 / 2261,
  15222. bottom: 0.065
  15223. }
  15224. },
  15225. back: {
  15226. height: math.unit(6, "feet"),
  15227. weight: math.unit(180, "lb"),
  15228. name: "Back",
  15229. image: {
  15230. source: "./media/characters/xochitl/back.svg",
  15231. extra: 2386 / 2354,
  15232. bottom: 0.01
  15233. }
  15234. },
  15235. foot: {
  15236. height: math.unit(6 / 5 * 1.15, "feet"),
  15237. weight: math.unit(150, "lb"),
  15238. name: "Foot",
  15239. image: {
  15240. source: "./media/characters/xochitl/foot.svg"
  15241. }
  15242. },
  15243. },
  15244. [
  15245. {
  15246. name: "Macro",
  15247. height: math.unit(80, "feet")
  15248. },
  15249. {
  15250. name: "Macro+",
  15251. height: math.unit(400, "feet"),
  15252. default: true
  15253. },
  15254. {
  15255. name: "Gigamacro",
  15256. height: math.unit(80000, "miles")
  15257. },
  15258. {
  15259. name: "Gigamacro+",
  15260. height: math.unit(400000, "miles")
  15261. },
  15262. {
  15263. name: "Teramacro",
  15264. height: math.unit(300, "AU")
  15265. },
  15266. ]
  15267. ))
  15268. characterMakers.push(() => makeCharacter(
  15269. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  15270. {
  15271. front: {
  15272. height: math.unit(6, "feet"),
  15273. weight: math.unit(150, "lb"),
  15274. name: "Front",
  15275. image: {
  15276. source: "./media/characters/vincent/front.svg",
  15277. extra: 1130 / 1080,
  15278. bottom: 0.055
  15279. }
  15280. },
  15281. beak: {
  15282. height: math.unit(6 * 0.1, "feet"),
  15283. name: "Beak",
  15284. image: {
  15285. source: "./media/characters/vincent/beak.svg"
  15286. }
  15287. },
  15288. hand: {
  15289. height: math.unit(6 * 0.85, "feet"),
  15290. weight: math.unit(150, "lb"),
  15291. name: "Hand",
  15292. image: {
  15293. source: "./media/characters/vincent/hand.svg"
  15294. }
  15295. },
  15296. foot: {
  15297. height: math.unit(6 * 0.19, "feet"),
  15298. weight: math.unit(150, "lb"),
  15299. name: "Foot",
  15300. image: {
  15301. source: "./media/characters/vincent/foot.svg"
  15302. }
  15303. },
  15304. },
  15305. [
  15306. {
  15307. name: "Base",
  15308. height: math.unit(6 + 5 / 12, "feet"),
  15309. default: true
  15310. },
  15311. {
  15312. name: "Macro",
  15313. height: math.unit(300, "feet")
  15314. },
  15315. {
  15316. name: "Megamacro",
  15317. height: math.unit(2, "miles")
  15318. },
  15319. {
  15320. name: "Gigamacro",
  15321. height: math.unit(1000, "miles")
  15322. },
  15323. ]
  15324. ))
  15325. characterMakers.push(() => makeCharacter(
  15326. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  15327. {
  15328. front: {
  15329. height: math.unit(2, "meters"),
  15330. weight: math.unit(500, "kg"),
  15331. name: "Front",
  15332. image: {
  15333. source: "./media/characters/coatl/front.svg",
  15334. extra: 3948 / 3500,
  15335. bottom: 0.082
  15336. }
  15337. },
  15338. },
  15339. [
  15340. {
  15341. name: "Normal",
  15342. height: math.unit(4, "meters")
  15343. },
  15344. {
  15345. name: "Macro",
  15346. height: math.unit(100, "meters"),
  15347. default: true
  15348. },
  15349. {
  15350. name: "Macro+",
  15351. height: math.unit(300, "meters")
  15352. },
  15353. {
  15354. name: "Megamacro",
  15355. height: math.unit(3, "gigameters")
  15356. },
  15357. {
  15358. name: "Megamacro+",
  15359. height: math.unit(300, "terameters")
  15360. },
  15361. {
  15362. name: "Megamacro++",
  15363. height: math.unit(3, "lightyears")
  15364. },
  15365. ]
  15366. ))
  15367. characterMakers.push(() => makeCharacter(
  15368. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  15369. {
  15370. front: {
  15371. height: math.unit(6, "feet"),
  15372. weight: math.unit(50, "kg"),
  15373. name: "front",
  15374. image: {
  15375. source: "./media/characters/shiroryu/front.svg",
  15376. extra: 1990 / 1935
  15377. }
  15378. },
  15379. },
  15380. [
  15381. {
  15382. name: "Mortal Mingling",
  15383. height: math.unit(3, "meters")
  15384. },
  15385. {
  15386. name: "Kaiju-ish",
  15387. height: math.unit(250, "meters")
  15388. },
  15389. {
  15390. name: "Somewhat Godly",
  15391. height: math.unit(400, "km"),
  15392. default: true
  15393. },
  15394. {
  15395. name: "Planetary",
  15396. height: math.unit(300, "megameters")
  15397. },
  15398. {
  15399. name: "Galaxy-dwarfing",
  15400. height: math.unit(450, "kiloparsecs")
  15401. },
  15402. {
  15403. name: "Universe Eater",
  15404. height: math.unit(150, "gigaparsecs")
  15405. },
  15406. {
  15407. name: "Almost Immeasurable",
  15408. height: math.unit(1.3e266, "yottaparsecs")
  15409. },
  15410. ]
  15411. ))
  15412. characterMakers.push(() => makeCharacter(
  15413. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  15414. {
  15415. front: {
  15416. height: math.unit(6, "feet"),
  15417. weight: math.unit(150, "lb"),
  15418. name: "Front",
  15419. image: {
  15420. source: "./media/characters/umeko/front.svg",
  15421. extra: 1,
  15422. bottom: 0.019
  15423. }
  15424. },
  15425. frontArmored: {
  15426. height: math.unit(6, "feet"),
  15427. weight: math.unit(150, "lb"),
  15428. name: "Front (Armored)",
  15429. image: {
  15430. source: "./media/characters/umeko/front-armored.svg",
  15431. extra: 1,
  15432. bottom: 0.021
  15433. }
  15434. },
  15435. },
  15436. [
  15437. {
  15438. name: "Macro",
  15439. height: math.unit(220, "feet"),
  15440. default: true
  15441. },
  15442. {
  15443. name: "Guardian Dragon",
  15444. height: math.unit(50, "miles")
  15445. },
  15446. {
  15447. name: "Cosmic",
  15448. height: math.unit(800000, "miles")
  15449. },
  15450. ]
  15451. ))
  15452. characterMakers.push(() => makeCharacter(
  15453. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  15454. {
  15455. front: {
  15456. height: math.unit(6, "feet"),
  15457. weight: math.unit(150, "lb"),
  15458. name: "Front",
  15459. image: {
  15460. source: "./media/characters/cassidy/front.svg",
  15461. extra: 810/808,
  15462. bottom: 41/851
  15463. }
  15464. },
  15465. },
  15466. [
  15467. {
  15468. name: "Canon Height",
  15469. height: math.unit(120, "feet"),
  15470. default: true
  15471. },
  15472. {
  15473. name: "Macro+",
  15474. height: math.unit(400, "feet")
  15475. },
  15476. {
  15477. name: "Macro++",
  15478. height: math.unit(4000, "feet")
  15479. },
  15480. {
  15481. name: "Megamacro",
  15482. height: math.unit(3, "miles")
  15483. },
  15484. ]
  15485. ))
  15486. characterMakers.push(() => makeCharacter(
  15487. { name: "Isaac", species: ["moose"], 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/isaac/front.svg",
  15495. extra: 896 / 815,
  15496. bottom: 0.11
  15497. }
  15498. },
  15499. },
  15500. [
  15501. {
  15502. name: "Human Size",
  15503. height: math.unit(8, "feet"),
  15504. default: true
  15505. },
  15506. {
  15507. name: "Macro",
  15508. height: math.unit(400, "feet")
  15509. },
  15510. {
  15511. name: "Megamacro",
  15512. height: math.unit(50, "miles")
  15513. },
  15514. {
  15515. name: "Canon Height",
  15516. height: math.unit(200, "AU")
  15517. },
  15518. ]
  15519. ))
  15520. characterMakers.push(() => makeCharacter(
  15521. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  15522. {
  15523. front: {
  15524. height: math.unit(6, "feet"),
  15525. weight: math.unit(72, "kg"),
  15526. name: "Front",
  15527. image: {
  15528. source: "./media/characters/sleekit/front.svg",
  15529. extra: 4693 / 4487,
  15530. bottom: 0.012
  15531. }
  15532. },
  15533. },
  15534. [
  15535. {
  15536. name: "Minimum Height",
  15537. height: math.unit(10, "meters")
  15538. },
  15539. {
  15540. name: "Smaller",
  15541. height: math.unit(25, "meters")
  15542. },
  15543. {
  15544. name: "Larger",
  15545. height: math.unit(38, "meters"),
  15546. default: true
  15547. },
  15548. {
  15549. name: "Maximum height",
  15550. height: math.unit(100, "meters")
  15551. },
  15552. ]
  15553. ))
  15554. characterMakers.push(() => makeCharacter(
  15555. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  15556. {
  15557. front: {
  15558. height: math.unit(6, "feet"),
  15559. weight: math.unit(150, "lb"),
  15560. name: "Front",
  15561. image: {
  15562. source: "./media/characters/nillia/front.svg",
  15563. extra: 2195 / 2037,
  15564. bottom: 0.005
  15565. }
  15566. },
  15567. back: {
  15568. height: math.unit(6, "feet"),
  15569. weight: math.unit(150, "lb"),
  15570. name: "Back",
  15571. image: {
  15572. source: "./media/characters/nillia/back.svg",
  15573. extra: 2195 / 2037,
  15574. bottom: 0.005
  15575. }
  15576. },
  15577. },
  15578. [
  15579. {
  15580. name: "Canon Height",
  15581. height: math.unit(489, "feet"),
  15582. default: true
  15583. }
  15584. ]
  15585. ))
  15586. characterMakers.push(() => makeCharacter(
  15587. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  15588. {
  15589. front: {
  15590. height: math.unit(6, "feet"),
  15591. weight: math.unit(150, "lb"),
  15592. name: "Front",
  15593. image: {
  15594. source: "./media/characters/mesmyriza/front.svg",
  15595. extra: 2067 / 1784,
  15596. bottom: 0.035
  15597. }
  15598. },
  15599. foot: {
  15600. height: math.unit(6 / (250 / 35), "feet"),
  15601. name: "Foot",
  15602. image: {
  15603. source: "./media/characters/mesmyriza/foot.svg"
  15604. }
  15605. },
  15606. },
  15607. [
  15608. {
  15609. name: "Macro",
  15610. height: math.unit(457, "meters"),
  15611. default: true
  15612. },
  15613. {
  15614. name: "Megamacro",
  15615. height: math.unit(8, "megameters")
  15616. },
  15617. ]
  15618. ))
  15619. characterMakers.push(() => makeCharacter(
  15620. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  15621. {
  15622. front: {
  15623. height: math.unit(6, "feet"),
  15624. weight: math.unit(250, "lb"),
  15625. name: "Front",
  15626. image: {
  15627. source: "./media/characters/saudade/front.svg",
  15628. extra: 1172 / 1139,
  15629. bottom: 0.035
  15630. }
  15631. },
  15632. },
  15633. [
  15634. {
  15635. name: "Micro",
  15636. height: math.unit(3, "inches")
  15637. },
  15638. {
  15639. name: "Normal",
  15640. height: math.unit(6, "feet"),
  15641. default: true
  15642. },
  15643. {
  15644. name: "Macro",
  15645. height: math.unit(50, "feet")
  15646. },
  15647. {
  15648. name: "Megamacro",
  15649. height: math.unit(2800, "feet")
  15650. },
  15651. ]
  15652. ))
  15653. characterMakers.push(() => makeCharacter(
  15654. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15655. {
  15656. front: {
  15657. height: math.unit(5 + 4 / 12, "feet"),
  15658. weight: math.unit(100, "lb"),
  15659. name: "Front",
  15660. image: {
  15661. source: "./media/characters/keireer/front.svg",
  15662. extra: 716 / 666,
  15663. bottom: 0.05
  15664. }
  15665. },
  15666. },
  15667. [
  15668. {
  15669. name: "Normal",
  15670. height: math.unit(5 + 4 / 12, "feet"),
  15671. default: true
  15672. },
  15673. ]
  15674. ))
  15675. characterMakers.push(() => makeCharacter(
  15676. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15677. {
  15678. front: {
  15679. height: math.unit(5.5, "feet"),
  15680. weight: math.unit(90, "kg"),
  15681. name: "Front",
  15682. image: {
  15683. source: "./media/characters/mirja/front.svg",
  15684. extra: 1452/1262,
  15685. bottom: 67/1519
  15686. }
  15687. },
  15688. frontDressed: {
  15689. height: math.unit(5.5, "feet"),
  15690. weight: math.unit(90, "lb"),
  15691. name: "Front (Dressed)",
  15692. image: {
  15693. source: "./media/characters/mirja/dressed.svg",
  15694. extra: 1452/1262,
  15695. bottom: 67/1519
  15696. }
  15697. },
  15698. back: {
  15699. height: math.unit(6, "feet"),
  15700. weight: math.unit(90, "lb"),
  15701. name: "Back",
  15702. image: {
  15703. source: "./media/characters/mirja/back.svg",
  15704. extra: 1892/1795,
  15705. bottom: 48/1940
  15706. }
  15707. },
  15708. maw: {
  15709. height: math.unit(1.312, "feet"),
  15710. name: "Maw",
  15711. image: {
  15712. source: "./media/characters/mirja/maw.svg"
  15713. }
  15714. },
  15715. paw: {
  15716. height: math.unit(1.15, "feet"),
  15717. name: "Paw",
  15718. image: {
  15719. source: "./media/characters/mirja/paw.svg"
  15720. }
  15721. },
  15722. },
  15723. [
  15724. {
  15725. name: "\"Incognito\"",
  15726. height: math.unit(3, "meters")
  15727. },
  15728. {
  15729. name: "Strolling Size",
  15730. height: math.unit(15, "km")
  15731. },
  15732. {
  15733. name: "Larger Strolling Size",
  15734. height: math.unit(400, "km")
  15735. },
  15736. {
  15737. name: "Preferred Size",
  15738. height: math.unit(5000, "km"),
  15739. default: true
  15740. },
  15741. {
  15742. name: "True Size",
  15743. height: math.unit(30657809462086840000000000000000, "parsecs"),
  15744. },
  15745. ]
  15746. ))
  15747. characterMakers.push(() => makeCharacter(
  15748. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  15749. {
  15750. front: {
  15751. height: math.unit(15, "feet"),
  15752. weight: math.unit(880, "kg"),
  15753. name: "Front",
  15754. image: {
  15755. source: "./media/characters/nightraver/front.svg",
  15756. extra: 2444 / 2160,
  15757. bottom: 0.027
  15758. }
  15759. },
  15760. back: {
  15761. height: math.unit(15, "feet"),
  15762. weight: math.unit(880, "kg"),
  15763. name: "Back",
  15764. image: {
  15765. source: "./media/characters/nightraver/back.svg",
  15766. extra: 2309 / 2180,
  15767. bottom: 0.005
  15768. }
  15769. },
  15770. sole: {
  15771. height: math.unit(2.878, "feet"),
  15772. name: "Sole",
  15773. image: {
  15774. source: "./media/characters/nightraver/sole.svg"
  15775. }
  15776. },
  15777. foot: {
  15778. height: math.unit(2.285, "feet"),
  15779. name: "Foot",
  15780. image: {
  15781. source: "./media/characters/nightraver/foot.svg"
  15782. }
  15783. },
  15784. maw: {
  15785. height: math.unit(2.67, "feet"),
  15786. name: "Maw",
  15787. image: {
  15788. source: "./media/characters/nightraver/maw.svg"
  15789. }
  15790. },
  15791. },
  15792. [
  15793. {
  15794. name: "Micro",
  15795. height: math.unit(1, "cm")
  15796. },
  15797. {
  15798. name: "Normal",
  15799. height: math.unit(15, "feet"),
  15800. default: true
  15801. },
  15802. {
  15803. name: "Macro",
  15804. height: math.unit(300, "feet")
  15805. },
  15806. {
  15807. name: "Megamacro",
  15808. height: math.unit(300, "miles")
  15809. },
  15810. {
  15811. name: "Gigamacro",
  15812. height: math.unit(10000, "miles")
  15813. },
  15814. ]
  15815. ))
  15816. characterMakers.push(() => makeCharacter(
  15817. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  15818. {
  15819. side: {
  15820. height: math.unit(2, "inches"),
  15821. weight: math.unit(5, "grams"),
  15822. name: "Side",
  15823. image: {
  15824. source: "./media/characters/arc/side.svg"
  15825. }
  15826. },
  15827. },
  15828. [
  15829. {
  15830. name: "Micro",
  15831. height: math.unit(2, "inches"),
  15832. default: true
  15833. },
  15834. ]
  15835. ))
  15836. characterMakers.push(() => makeCharacter(
  15837. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  15838. {
  15839. front: {
  15840. height: math.unit(1.1938, "meters"),
  15841. weight: math.unit(54, "kg"),
  15842. name: "Front",
  15843. image: {
  15844. source: "./media/characters/nebula-shahar/front.svg",
  15845. extra: 1642 / 1436,
  15846. bottom: 0.06
  15847. }
  15848. },
  15849. },
  15850. [
  15851. {
  15852. name: "Megamicro",
  15853. height: math.unit(0.3, "mm")
  15854. },
  15855. {
  15856. name: "Micro",
  15857. height: math.unit(3, "cm")
  15858. },
  15859. {
  15860. name: "Normal",
  15861. height: math.unit(138, "cm"),
  15862. default: true
  15863. },
  15864. {
  15865. name: "Macro",
  15866. height: math.unit(30, "m")
  15867. },
  15868. ]
  15869. ))
  15870. characterMakers.push(() => makeCharacter(
  15871. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  15872. {
  15873. front: {
  15874. height: math.unit(5.24, "feet"),
  15875. weight: math.unit(150, "lb"),
  15876. name: "Front",
  15877. image: {
  15878. source: "./media/characters/shayla/front.svg",
  15879. extra: 1512 / 1414,
  15880. bottom: 0.01
  15881. }
  15882. },
  15883. back: {
  15884. height: math.unit(5.24, "feet"),
  15885. weight: math.unit(150, "lb"),
  15886. name: "Back",
  15887. image: {
  15888. source: "./media/characters/shayla/back.svg",
  15889. extra: 1512 / 1414
  15890. }
  15891. },
  15892. hand: {
  15893. height: math.unit(0.7781496062992126, "feet"),
  15894. name: "Hand",
  15895. image: {
  15896. source: "./media/characters/shayla/hand.svg"
  15897. }
  15898. },
  15899. foot: {
  15900. height: math.unit(1.4206036745406823, "feet"),
  15901. name: "Foot",
  15902. image: {
  15903. source: "./media/characters/shayla/foot.svg"
  15904. }
  15905. },
  15906. },
  15907. [
  15908. {
  15909. name: "Micro",
  15910. height: math.unit(0.32, "feet")
  15911. },
  15912. {
  15913. name: "Normal",
  15914. height: math.unit(5.24, "feet"),
  15915. default: true
  15916. },
  15917. {
  15918. name: "Macro",
  15919. height: math.unit(492.12, "feet")
  15920. },
  15921. {
  15922. name: "Megamacro",
  15923. height: math.unit(186.41, "miles")
  15924. },
  15925. ]
  15926. ))
  15927. characterMakers.push(() => makeCharacter(
  15928. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  15929. {
  15930. front: {
  15931. height: math.unit(2.2, "m"),
  15932. weight: math.unit(120, "kg"),
  15933. name: "Front",
  15934. image: {
  15935. source: "./media/characters/pia-jr/front.svg",
  15936. extra: 1000 / 970,
  15937. bottom: 0.035
  15938. }
  15939. },
  15940. hand: {
  15941. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15942. name: "Hand",
  15943. image: {
  15944. source: "./media/characters/pia-jr/hand.svg"
  15945. }
  15946. },
  15947. paw: {
  15948. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15949. name: "Paw",
  15950. image: {
  15951. source: "./media/characters/pia-jr/paw.svg"
  15952. }
  15953. },
  15954. },
  15955. [
  15956. {
  15957. name: "Micro",
  15958. height: math.unit(1.2, "cm")
  15959. },
  15960. {
  15961. name: "Normal",
  15962. height: math.unit(2.2, "m"),
  15963. default: true
  15964. },
  15965. {
  15966. name: "Macro",
  15967. height: math.unit(180, "m")
  15968. },
  15969. {
  15970. name: "Megamacro",
  15971. height: math.unit(420, "km")
  15972. },
  15973. ]
  15974. ))
  15975. characterMakers.push(() => makeCharacter(
  15976. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15977. {
  15978. front: {
  15979. height: math.unit(2, "m"),
  15980. weight: math.unit(115, "kg"),
  15981. name: "Front",
  15982. image: {
  15983. source: "./media/characters/pia-sr/front.svg",
  15984. extra: 760 / 730,
  15985. bottom: 0.015
  15986. }
  15987. },
  15988. back: {
  15989. height: math.unit(2, "m"),
  15990. weight: math.unit(115, "kg"),
  15991. name: "Back",
  15992. image: {
  15993. source: "./media/characters/pia-sr/back.svg",
  15994. extra: 760 / 730,
  15995. bottom: 0.01
  15996. }
  15997. },
  15998. hand: {
  15999. height: math.unit(0.89 * 6.56 / 6, "feet"),
  16000. name: "Hand",
  16001. image: {
  16002. source: "./media/characters/pia-sr/hand.svg"
  16003. }
  16004. },
  16005. foot: {
  16006. height: math.unit(1.83, "feet"),
  16007. name: "Foot",
  16008. image: {
  16009. source: "./media/characters/pia-sr/foot.svg"
  16010. }
  16011. },
  16012. },
  16013. [
  16014. {
  16015. name: "Micro",
  16016. height: math.unit(88, "mm")
  16017. },
  16018. {
  16019. name: "Normal",
  16020. height: math.unit(2, "m"),
  16021. default: true
  16022. },
  16023. {
  16024. name: "Macro",
  16025. height: math.unit(200, "m")
  16026. },
  16027. {
  16028. name: "Megamacro",
  16029. height: math.unit(420, "km")
  16030. },
  16031. ]
  16032. ))
  16033. characterMakers.push(() => makeCharacter(
  16034. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  16035. {
  16036. front: {
  16037. height: math.unit(8 + 2 / 12, "feet"),
  16038. weight: math.unit(300, "lb"),
  16039. name: "Front",
  16040. image: {
  16041. source: "./media/characters/kibibyte/front.svg",
  16042. extra: 2221 / 2098,
  16043. bottom: 0.04
  16044. }
  16045. },
  16046. },
  16047. [
  16048. {
  16049. name: "Normal",
  16050. height: math.unit(8 + 2 / 12, "feet"),
  16051. default: true
  16052. },
  16053. {
  16054. name: "Socialable Macro",
  16055. height: math.unit(50, "feet")
  16056. },
  16057. {
  16058. name: "Macro",
  16059. height: math.unit(300, "feet")
  16060. },
  16061. {
  16062. name: "Megamacro",
  16063. height: math.unit(500, "miles")
  16064. },
  16065. ]
  16066. ))
  16067. characterMakers.push(() => makeCharacter(
  16068. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  16069. {
  16070. front: {
  16071. height: math.unit(6, "feet"),
  16072. weight: math.unit(150, "lb"),
  16073. name: "Front",
  16074. image: {
  16075. source: "./media/characters/felix/front.svg",
  16076. extra: 762 / 722,
  16077. bottom: 0.02
  16078. }
  16079. },
  16080. frontClothed: {
  16081. height: math.unit(6, "feet"),
  16082. weight: math.unit(150, "lb"),
  16083. name: "Front (Clothed)",
  16084. image: {
  16085. source: "./media/characters/felix/front-clothed.svg",
  16086. extra: 762 / 722,
  16087. bottom: 0.02
  16088. }
  16089. },
  16090. },
  16091. [
  16092. {
  16093. name: "Normal",
  16094. height: math.unit(6 + 8 / 12, "feet"),
  16095. default: true
  16096. },
  16097. {
  16098. name: "Macro",
  16099. height: math.unit(2600, "feet")
  16100. },
  16101. {
  16102. name: "Megamacro",
  16103. height: math.unit(450, "miles")
  16104. },
  16105. ]
  16106. ))
  16107. characterMakers.push(() => makeCharacter(
  16108. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  16109. {
  16110. front: {
  16111. height: math.unit(6 + 1 / 12, "feet"),
  16112. weight: math.unit(250, "lb"),
  16113. name: "Front",
  16114. image: {
  16115. source: "./media/characters/tobo/front.svg",
  16116. extra: 608 / 586,
  16117. bottom: 0.023
  16118. }
  16119. },
  16120. back: {
  16121. height: math.unit(6 + 1 / 12, "feet"),
  16122. weight: math.unit(250, "lb"),
  16123. name: "Back",
  16124. image: {
  16125. source: "./media/characters/tobo/back.svg",
  16126. extra: 608 / 586
  16127. }
  16128. },
  16129. },
  16130. [
  16131. {
  16132. name: "Nano",
  16133. height: math.unit(2, "nm")
  16134. },
  16135. {
  16136. name: "Megamicro",
  16137. height: math.unit(0.1, "mm")
  16138. },
  16139. {
  16140. name: "Micro",
  16141. height: math.unit(1, "inch"),
  16142. default: true
  16143. },
  16144. {
  16145. name: "Human-sized",
  16146. height: math.unit(6 + 1 / 12, "feet")
  16147. },
  16148. {
  16149. name: "Macro",
  16150. height: math.unit(250, "feet")
  16151. },
  16152. {
  16153. name: "Megamacro",
  16154. height: math.unit(75, "miles")
  16155. },
  16156. {
  16157. name: "Texas-sized",
  16158. height: math.unit(750, "miles")
  16159. },
  16160. {
  16161. name: "Teramacro",
  16162. height: math.unit(50000, "miles")
  16163. },
  16164. ]
  16165. ))
  16166. characterMakers.push(() => makeCharacter(
  16167. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  16168. {
  16169. front: {
  16170. height: math.unit(6, "feet"),
  16171. weight: math.unit(269, "lb"),
  16172. name: "Front",
  16173. image: {
  16174. source: "./media/characters/danny-kapowsky/front.svg",
  16175. extra: 766 / 736,
  16176. bottom: 0.044
  16177. }
  16178. },
  16179. back: {
  16180. height: math.unit(6, "feet"),
  16181. weight: math.unit(269, "lb"),
  16182. name: "Back",
  16183. image: {
  16184. source: "./media/characters/danny-kapowsky/back.svg",
  16185. extra: 797 / 760,
  16186. bottom: 0.025
  16187. }
  16188. },
  16189. },
  16190. [
  16191. {
  16192. name: "Macro",
  16193. height: math.unit(150, "feet"),
  16194. default: true
  16195. },
  16196. {
  16197. name: "Macro+",
  16198. height: math.unit(200, "feet")
  16199. },
  16200. {
  16201. name: "Macro++",
  16202. height: math.unit(300, "feet")
  16203. },
  16204. {
  16205. name: "Macro+++",
  16206. height: math.unit(400, "feet")
  16207. },
  16208. ]
  16209. ))
  16210. characterMakers.push(() => makeCharacter(
  16211. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  16212. {
  16213. side: {
  16214. height: math.unit(6, "feet"),
  16215. weight: math.unit(170, "lb"),
  16216. name: "Side",
  16217. image: {
  16218. source: "./media/characters/finn/side.svg",
  16219. extra: 1953 / 1807,
  16220. bottom: 0.057
  16221. }
  16222. },
  16223. },
  16224. [
  16225. {
  16226. name: "Megamacro",
  16227. height: math.unit(14445, "feet"),
  16228. default: true
  16229. },
  16230. ]
  16231. ))
  16232. characterMakers.push(() => makeCharacter(
  16233. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  16234. {
  16235. front: {
  16236. height: math.unit(5 + 6 / 12, "feet"),
  16237. weight: math.unit(125, "lb"),
  16238. name: "Front",
  16239. image: {
  16240. source: "./media/characters/roy/front.svg",
  16241. extra: 1,
  16242. bottom: 0.11
  16243. }
  16244. },
  16245. },
  16246. [
  16247. {
  16248. name: "Micro",
  16249. height: math.unit(3, "inches"),
  16250. default: true
  16251. },
  16252. {
  16253. name: "Normal",
  16254. height: math.unit(5 + 6 / 12, "feet")
  16255. },
  16256. {
  16257. name: "Lesser Macro",
  16258. height: math.unit(60, "feet")
  16259. },
  16260. {
  16261. name: "Greater Macro",
  16262. height: math.unit(120, "feet")
  16263. },
  16264. ]
  16265. ))
  16266. characterMakers.push(() => makeCharacter(
  16267. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  16268. {
  16269. front: {
  16270. height: math.unit(6, "feet"),
  16271. weight: math.unit(100, "lb"),
  16272. name: "Front",
  16273. image: {
  16274. source: "./media/characters/aevsivs/front.svg",
  16275. extra: 1,
  16276. bottom: 0.03
  16277. }
  16278. },
  16279. back: {
  16280. height: math.unit(6, "feet"),
  16281. weight: math.unit(100, "lb"),
  16282. name: "Back",
  16283. image: {
  16284. source: "./media/characters/aevsivs/back.svg"
  16285. }
  16286. },
  16287. },
  16288. [
  16289. {
  16290. name: "Micro",
  16291. height: math.unit(2, "inches"),
  16292. default: true
  16293. },
  16294. {
  16295. name: "Normal",
  16296. height: math.unit(5, "feet")
  16297. },
  16298. ]
  16299. ))
  16300. characterMakers.push(() => makeCharacter(
  16301. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  16302. {
  16303. front: {
  16304. height: math.unit(5 + 7 / 12, "feet"),
  16305. weight: math.unit(159, "lb"),
  16306. name: "Front",
  16307. image: {
  16308. source: "./media/characters/hildegard/front.svg",
  16309. extra: 289 / 269,
  16310. bottom: 7.63 / 297.8
  16311. }
  16312. },
  16313. back: {
  16314. height: math.unit(5 + 7 / 12, "feet"),
  16315. weight: math.unit(159, "lb"),
  16316. name: "Back",
  16317. image: {
  16318. source: "./media/characters/hildegard/back.svg",
  16319. extra: 280 / 260,
  16320. bottom: 2.3 / 282
  16321. }
  16322. },
  16323. },
  16324. [
  16325. {
  16326. name: "Normal",
  16327. height: math.unit(5 + 7 / 12, "feet"),
  16328. default: true
  16329. },
  16330. ]
  16331. ))
  16332. characterMakers.push(() => makeCharacter(
  16333. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  16334. {
  16335. bernard: {
  16336. height: math.unit(2 + 7 / 12, "feet"),
  16337. weight: math.unit(66, "lb"),
  16338. name: "Bernard",
  16339. rename: true,
  16340. image: {
  16341. source: "./media/characters/bernard-wilder/bernard.svg",
  16342. extra: 192 / 128,
  16343. bottom: 0.05
  16344. }
  16345. },
  16346. wilder: {
  16347. height: math.unit(5 + 8 / 12, "feet"),
  16348. weight: math.unit(143, "lb"),
  16349. name: "Wilder",
  16350. rename: true,
  16351. image: {
  16352. source: "./media/characters/bernard-wilder/wilder.svg",
  16353. extra: 361 / 312,
  16354. bottom: 0.02
  16355. }
  16356. },
  16357. },
  16358. [
  16359. {
  16360. name: "Normal",
  16361. height: math.unit(2 + 7 / 12, "feet"),
  16362. default: true
  16363. },
  16364. ]
  16365. ))
  16366. characterMakers.push(() => makeCharacter(
  16367. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  16368. {
  16369. anthro: {
  16370. height: math.unit(6 + 1 / 12, "feet"),
  16371. weight: math.unit(155, "lb"),
  16372. name: "Anthro",
  16373. image: {
  16374. source: "./media/characters/hearth/anthro.svg",
  16375. extra: 1178/1136,
  16376. bottom: 28/1206
  16377. }
  16378. },
  16379. feral: {
  16380. height: math.unit(3.78, "feet"),
  16381. weight: math.unit(35, "kg"),
  16382. name: "Feral",
  16383. image: {
  16384. source: "./media/characters/hearth/feral.svg",
  16385. extra: 153 / 135,
  16386. bottom: 0.03
  16387. }
  16388. },
  16389. },
  16390. [
  16391. {
  16392. name: "Normal",
  16393. height: math.unit(6 + 1 / 12, "feet"),
  16394. default: true
  16395. },
  16396. ]
  16397. ))
  16398. characterMakers.push(() => makeCharacter(
  16399. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  16400. {
  16401. front: {
  16402. height: math.unit(6, "feet"),
  16403. weight: math.unit(182, "lb"),
  16404. name: "Front",
  16405. image: {
  16406. source: "./media/characters/ingrid/front.svg",
  16407. extra: 294 / 268,
  16408. bottom: 0.027
  16409. }
  16410. },
  16411. },
  16412. [
  16413. {
  16414. name: "Normal",
  16415. height: math.unit(6, "feet"),
  16416. default: true
  16417. },
  16418. ]
  16419. ))
  16420. characterMakers.push(() => makeCharacter(
  16421. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  16422. {
  16423. eevee: {
  16424. height: math.unit(2 + 10 / 12, "feet"),
  16425. weight: math.unit(86, "lb"),
  16426. name: "Malgam",
  16427. image: {
  16428. source: "./media/characters/malgam/eevee.svg",
  16429. extra: 952/784,
  16430. bottom: 38/990
  16431. }
  16432. },
  16433. sylveon: {
  16434. height: math.unit(4, "feet"),
  16435. weight: math.unit(101, "lb"),
  16436. name: "Future Malgam",
  16437. rename: true,
  16438. image: {
  16439. source: "./media/characters/malgam/sylveon.svg",
  16440. extra: 371 / 325,
  16441. bottom: 0.015
  16442. }
  16443. },
  16444. gigantamax: {
  16445. height: math.unit(50, "feet"),
  16446. name: "Gigantamax Malgam",
  16447. rename: true,
  16448. image: {
  16449. source: "./media/characters/malgam/gigantamax.svg"
  16450. }
  16451. },
  16452. },
  16453. [
  16454. {
  16455. name: "Normal",
  16456. height: math.unit(2 + 10 / 12, "feet"),
  16457. default: true
  16458. },
  16459. ]
  16460. ))
  16461. characterMakers.push(() => makeCharacter(
  16462. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  16463. {
  16464. front: {
  16465. height: math.unit(5 + 11 / 12, "feet"),
  16466. weight: math.unit(188, "lb"),
  16467. name: "Front",
  16468. image: {
  16469. source: "./media/characters/fleur/front.svg",
  16470. extra: 309 / 283,
  16471. bottom: 0.007
  16472. }
  16473. },
  16474. },
  16475. [
  16476. {
  16477. name: "Normal",
  16478. height: math.unit(5 + 11 / 12, "feet"),
  16479. default: true
  16480. },
  16481. ]
  16482. ))
  16483. characterMakers.push(() => makeCharacter(
  16484. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  16485. {
  16486. front: {
  16487. height: math.unit(5 + 4 / 12, "feet"),
  16488. weight: math.unit(122, "lb"),
  16489. name: "Front",
  16490. image: {
  16491. source: "./media/characters/jude/front.svg",
  16492. extra: 288 / 273,
  16493. bottom: 0.03
  16494. }
  16495. },
  16496. },
  16497. [
  16498. {
  16499. name: "Normal",
  16500. height: math.unit(5 + 4 / 12, "feet"),
  16501. default: true
  16502. },
  16503. ]
  16504. ))
  16505. characterMakers.push(() => makeCharacter(
  16506. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  16507. {
  16508. front: {
  16509. height: math.unit(5 + 11 / 12, "feet"),
  16510. weight: math.unit(190, "lb"),
  16511. name: "Front",
  16512. image: {
  16513. source: "./media/characters/seara/front.svg",
  16514. extra: 1,
  16515. bottom: 0.05
  16516. }
  16517. },
  16518. },
  16519. [
  16520. {
  16521. name: "Normal",
  16522. height: math.unit(5 + 11 / 12, "feet"),
  16523. default: true
  16524. },
  16525. ]
  16526. ))
  16527. characterMakers.push(() => makeCharacter(
  16528. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  16529. {
  16530. front: {
  16531. height: math.unit(16 + 5 / 12, "feet"),
  16532. weight: math.unit(524, "lb"),
  16533. name: "Front",
  16534. image: {
  16535. source: "./media/characters/caspian-lugia/front.svg",
  16536. extra: 1,
  16537. bottom: 0.04
  16538. }
  16539. },
  16540. },
  16541. [
  16542. {
  16543. name: "Normal",
  16544. height: math.unit(16 + 5 / 12, "feet"),
  16545. default: true
  16546. },
  16547. ]
  16548. ))
  16549. characterMakers.push(() => makeCharacter(
  16550. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  16551. {
  16552. front: {
  16553. height: math.unit(5 + 7 / 12, "feet"),
  16554. weight: math.unit(170, "lb"),
  16555. name: "Front",
  16556. image: {
  16557. source: "./media/characters/mika/front.svg",
  16558. extra: 1,
  16559. bottom: 0.016
  16560. }
  16561. },
  16562. },
  16563. [
  16564. {
  16565. name: "Normal",
  16566. height: math.unit(5 + 7 / 12, "feet"),
  16567. default: true
  16568. },
  16569. ]
  16570. ))
  16571. characterMakers.push(() => makeCharacter(
  16572. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  16573. {
  16574. front: {
  16575. height: math.unit(6 + 2 / 12, "feet"),
  16576. weight: math.unit(268, "lb"),
  16577. name: "Front",
  16578. image: {
  16579. source: "./media/characters/sol/front.svg",
  16580. extra: 247 / 231,
  16581. bottom: 0.05
  16582. }
  16583. },
  16584. },
  16585. [
  16586. {
  16587. name: "Normal",
  16588. height: math.unit(6 + 2 / 12, "feet"),
  16589. default: true
  16590. },
  16591. ]
  16592. ))
  16593. characterMakers.push(() => makeCharacter(
  16594. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  16595. {
  16596. buizel: {
  16597. height: math.unit(2 + 5 / 12, "feet"),
  16598. weight: math.unit(87, "lb"),
  16599. name: "Front",
  16600. image: {
  16601. source: "./media/characters/umiko/buizel.svg",
  16602. extra: 172 / 157,
  16603. bottom: 0.01
  16604. },
  16605. form: "buizel",
  16606. default: true
  16607. },
  16608. floatzel: {
  16609. height: math.unit(5 + 9 / 12, "feet"),
  16610. weight: math.unit(250, "lb"),
  16611. name: "Front",
  16612. image: {
  16613. source: "./media/characters/umiko/floatzel.svg",
  16614. extra: 1076/1006,
  16615. bottom: 15/1091
  16616. },
  16617. form: "floatzel",
  16618. default: true
  16619. },
  16620. },
  16621. [
  16622. {
  16623. name: "Normal",
  16624. height: math.unit(2 + 5 / 12, "feet"),
  16625. form: "buizel",
  16626. default: true
  16627. },
  16628. {
  16629. name: "Normal",
  16630. height: math.unit(5 + 9 / 12, "feet"),
  16631. form: "floatzel",
  16632. default: true
  16633. },
  16634. ],
  16635. {
  16636. "buizel": {
  16637. name: "Buizel"
  16638. },
  16639. "floatzel": {
  16640. name: "Floatzel",
  16641. default: true
  16642. }
  16643. }
  16644. ))
  16645. characterMakers.push(() => makeCharacter(
  16646. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  16647. {
  16648. front: {
  16649. height: math.unit(6 + 2 / 12, "feet"),
  16650. weight: math.unit(146, "lb"),
  16651. name: "Front",
  16652. image: {
  16653. source: "./media/characters/iliac/front.svg",
  16654. extra: 389 / 365,
  16655. bottom: 0.035
  16656. }
  16657. },
  16658. },
  16659. [
  16660. {
  16661. name: "Normal",
  16662. height: math.unit(6 + 2 / 12, "feet"),
  16663. default: true
  16664. },
  16665. ]
  16666. ))
  16667. characterMakers.push(() => makeCharacter(
  16668. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16669. {
  16670. front: {
  16671. height: math.unit(6, "feet"),
  16672. weight: math.unit(170, "lb"),
  16673. name: "Front",
  16674. image: {
  16675. source: "./media/characters/topaz/front.svg",
  16676. extra: 317 / 303,
  16677. bottom: 0.055
  16678. }
  16679. },
  16680. },
  16681. [
  16682. {
  16683. name: "Normal",
  16684. height: math.unit(6, "feet"),
  16685. default: true
  16686. },
  16687. ]
  16688. ))
  16689. characterMakers.push(() => makeCharacter(
  16690. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  16691. {
  16692. front: {
  16693. height: math.unit(5 + 11 / 12, "feet"),
  16694. weight: math.unit(144, "lb"),
  16695. name: "Front",
  16696. image: {
  16697. source: "./media/characters/gabriel/front.svg",
  16698. extra: 285 / 262,
  16699. bottom: 0.004
  16700. }
  16701. },
  16702. },
  16703. [
  16704. {
  16705. name: "Normal",
  16706. height: math.unit(5 + 11 / 12, "feet"),
  16707. default: true
  16708. },
  16709. ]
  16710. ))
  16711. characterMakers.push(() => makeCharacter(
  16712. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  16713. {
  16714. side: {
  16715. height: math.unit(6 + 5 / 12, "feet"),
  16716. weight: math.unit(300, "lb"),
  16717. name: "Side",
  16718. image: {
  16719. source: "./media/characters/tempest-suicune/side.svg",
  16720. extra: 195 / 154,
  16721. bottom: 0.04
  16722. }
  16723. },
  16724. },
  16725. [
  16726. {
  16727. name: "Normal",
  16728. height: math.unit(6 + 5 / 12, "feet"),
  16729. default: true
  16730. },
  16731. ]
  16732. ))
  16733. characterMakers.push(() => makeCharacter(
  16734. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  16735. {
  16736. front: {
  16737. height: math.unit(7 + 2 / 12, "feet"),
  16738. weight: math.unit(322, "lb"),
  16739. name: "Front",
  16740. image: {
  16741. source: "./media/characters/vulcan/front.svg",
  16742. extra: 154 / 147,
  16743. bottom: 0.04
  16744. }
  16745. },
  16746. },
  16747. [
  16748. {
  16749. name: "Normal",
  16750. height: math.unit(7 + 2 / 12, "feet"),
  16751. default: true
  16752. },
  16753. ]
  16754. ))
  16755. characterMakers.push(() => makeCharacter(
  16756. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  16757. {
  16758. front: {
  16759. height: math.unit(5 + 10 / 12, "feet"),
  16760. weight: math.unit(264, "lb"),
  16761. name: "Front",
  16762. image: {
  16763. source: "./media/characters/gault/front.svg",
  16764. extra: 161 / 140,
  16765. bottom: 0.028
  16766. }
  16767. },
  16768. },
  16769. [
  16770. {
  16771. name: "Normal",
  16772. height: math.unit(5 + 10 / 12, "feet"),
  16773. default: true
  16774. },
  16775. ]
  16776. ))
  16777. characterMakers.push(() => makeCharacter(
  16778. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  16779. {
  16780. front: {
  16781. height: math.unit(6, "feet"),
  16782. weight: math.unit(150, "lb"),
  16783. name: "Front",
  16784. image: {
  16785. source: "./media/characters/shard/front.svg",
  16786. extra: 273 / 238,
  16787. bottom: 0.02
  16788. }
  16789. },
  16790. },
  16791. [
  16792. {
  16793. name: "Normal",
  16794. height: math.unit(3 + 6 / 12, "feet"),
  16795. default: true
  16796. },
  16797. ]
  16798. ))
  16799. characterMakers.push(() => makeCharacter(
  16800. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  16801. {
  16802. front: {
  16803. height: math.unit(5 + 11 / 12, "feet"),
  16804. weight: math.unit(146, "lb"),
  16805. name: "Front",
  16806. image: {
  16807. source: "./media/characters/ashe/front.svg",
  16808. extra: 400 / 373,
  16809. bottom: 0.01
  16810. }
  16811. },
  16812. },
  16813. [
  16814. {
  16815. name: "Normal",
  16816. height: math.unit(5 + 11 / 12, "feet"),
  16817. default: true
  16818. },
  16819. ]
  16820. ))
  16821. characterMakers.push(() => makeCharacter(
  16822. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  16823. {
  16824. front: {
  16825. height: math.unit(5 + 5 / 12, "feet"),
  16826. weight: math.unit(135, "lb"),
  16827. name: "Front",
  16828. image: {
  16829. source: "./media/characters/beatrix/front.svg",
  16830. extra: 392 / 379,
  16831. bottom: 0.01
  16832. }
  16833. },
  16834. },
  16835. [
  16836. {
  16837. name: "Normal",
  16838. height: math.unit(6, "feet"),
  16839. default: true
  16840. },
  16841. ]
  16842. ))
  16843. characterMakers.push(() => makeCharacter(
  16844. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  16845. {
  16846. front: {
  16847. height: math.unit(6 + 2/12, "feet"),
  16848. weight: math.unit(135, "lb"),
  16849. name: "Front",
  16850. image: {
  16851. source: "./media/characters/ignatius/front.svg",
  16852. extra: 1380/1259,
  16853. bottom: 27/1407
  16854. }
  16855. },
  16856. },
  16857. [
  16858. {
  16859. name: "Normal",
  16860. height: math.unit(6 + 2/12, "feet"),
  16861. default: true
  16862. },
  16863. ]
  16864. ))
  16865. characterMakers.push(() => makeCharacter(
  16866. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  16867. {
  16868. front: {
  16869. height: math.unit(6 + 2 / 12, "feet"),
  16870. weight: math.unit(138, "lb"),
  16871. name: "Front",
  16872. image: {
  16873. source: "./media/characters/mei-li/front.svg",
  16874. extra: 237 / 229,
  16875. bottom: 0.03
  16876. }
  16877. },
  16878. },
  16879. [
  16880. {
  16881. name: "Normal",
  16882. height: math.unit(6 + 2 / 12, "feet"),
  16883. default: true
  16884. },
  16885. ]
  16886. ))
  16887. characterMakers.push(() => makeCharacter(
  16888. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  16889. {
  16890. front: {
  16891. height: math.unit(2 + 4 / 12, "feet"),
  16892. weight: math.unit(62, "lb"),
  16893. name: "Front",
  16894. image: {
  16895. source: "./media/characters/puru/front.svg",
  16896. extra: 206 / 149,
  16897. bottom: 0.06
  16898. }
  16899. },
  16900. },
  16901. [
  16902. {
  16903. name: "Normal",
  16904. height: math.unit(2 + 4 / 12, "feet"),
  16905. default: true
  16906. },
  16907. ]
  16908. ))
  16909. characterMakers.push(() => makeCharacter(
  16910. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16911. {
  16912. anthro: {
  16913. height: math.unit(5 + 8/12, "feet"),
  16914. weight: math.unit(200, "lb"),
  16915. energyNeed: math.unit(2000, "kcal"),
  16916. name: "Anthro",
  16917. image: {
  16918. source: "./media/characters/kee/anthro.svg",
  16919. extra: 3251/3184,
  16920. bottom: 250/3501
  16921. }
  16922. },
  16923. taur: {
  16924. height: math.unit(11, "feet"),
  16925. weight: math.unit(500, "lb"),
  16926. energyNeed: math.unit(5000, "kcal"),
  16927. name: "Taur",
  16928. image: {
  16929. source: "./media/characters/kee/taur.svg",
  16930. extra: 1362/1320,
  16931. bottom: 83/1445
  16932. }
  16933. },
  16934. },
  16935. [
  16936. {
  16937. name: "Normal",
  16938. height: math.unit(5 + 8/12, "feet"),
  16939. default: true
  16940. },
  16941. {
  16942. name: "Macro",
  16943. height: math.unit(35, "feet")
  16944. },
  16945. ]
  16946. ))
  16947. characterMakers.push(() => makeCharacter(
  16948. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16949. {
  16950. anthro: {
  16951. height: math.unit(7, "feet"),
  16952. weight: math.unit(190, "lb"),
  16953. name: "Anthro",
  16954. image: {
  16955. source: "./media/characters/cobalt-dracha/anthro.svg",
  16956. extra: 231 / 225,
  16957. bottom: 0.04
  16958. }
  16959. },
  16960. feral: {
  16961. height: math.unit(9 + 7 / 12, "feet"),
  16962. weight: math.unit(294, "lb"),
  16963. name: "Feral",
  16964. image: {
  16965. source: "./media/characters/cobalt-dracha/feral.svg",
  16966. extra: 692 / 633,
  16967. bottom: 0.05
  16968. }
  16969. },
  16970. },
  16971. [
  16972. {
  16973. name: "Normal",
  16974. height: math.unit(7, "feet"),
  16975. default: true
  16976. },
  16977. ]
  16978. ))
  16979. characterMakers.push(() => makeCharacter(
  16980. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16981. {
  16982. fallen: {
  16983. height: math.unit(11 + 8 / 12, "feet"),
  16984. weight: math.unit(485, "lb"),
  16985. name: "Java (Fallen)",
  16986. rename: true,
  16987. image: {
  16988. source: "./media/characters/java/fallen.svg",
  16989. extra: 226 / 208,
  16990. bottom: 0.005
  16991. }
  16992. },
  16993. godkin: {
  16994. height: math.unit(10 + 6 / 12, "feet"),
  16995. weight: math.unit(328, "lb"),
  16996. name: "Java (Godkin)",
  16997. rename: true,
  16998. image: {
  16999. source: "./media/characters/java/godkin.svg",
  17000. extra: 1104/1068,
  17001. bottom: 36/1140
  17002. }
  17003. },
  17004. },
  17005. [
  17006. {
  17007. name: "Normal",
  17008. height: math.unit(11 + 8 / 12, "feet"),
  17009. default: true
  17010. },
  17011. ]
  17012. ))
  17013. characterMakers.push(() => makeCharacter(
  17014. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  17015. {
  17016. front: {
  17017. height: math.unit(5 + 9 / 12, "feet"),
  17018. weight: math.unit(170, "lb"),
  17019. name: "Front",
  17020. image: {
  17021. source: "./media/characters/purna/front.svg",
  17022. extra: 239 / 229,
  17023. bottom: 0.01
  17024. }
  17025. },
  17026. },
  17027. [
  17028. {
  17029. name: "Normal",
  17030. height: math.unit(5 + 9 / 12, "feet"),
  17031. default: true
  17032. },
  17033. ]
  17034. ))
  17035. characterMakers.push(() => makeCharacter(
  17036. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  17037. {
  17038. front: {
  17039. height: math.unit(5 + 9 / 12, "feet"),
  17040. weight: math.unit(142, "lb"),
  17041. name: "Front",
  17042. image: {
  17043. source: "./media/characters/kuva/front.svg",
  17044. extra: 281 / 271,
  17045. bottom: 0.006
  17046. }
  17047. },
  17048. },
  17049. [
  17050. {
  17051. name: "Normal",
  17052. height: math.unit(5 + 9 / 12, "feet"),
  17053. default: true
  17054. },
  17055. ]
  17056. ))
  17057. characterMakers.push(() => makeCharacter(
  17058. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  17059. {
  17060. anthro: {
  17061. height: math.unit(9 + 2 / 12, "feet"),
  17062. weight: math.unit(270, "lb"),
  17063. name: "Anthro",
  17064. image: {
  17065. source: "./media/characters/embra/anthro.svg",
  17066. extra: 200 / 187,
  17067. bottom: 0.02
  17068. }
  17069. },
  17070. feral: {
  17071. height: math.unit(18 + 8 / 12, "feet"),
  17072. weight: math.unit(576, "lb"),
  17073. name: "Feral",
  17074. image: {
  17075. source: "./media/characters/embra/feral.svg",
  17076. extra: 152 / 137,
  17077. bottom: 0.037
  17078. }
  17079. },
  17080. },
  17081. [
  17082. {
  17083. name: "Normal",
  17084. height: math.unit(9 + 2 / 12, "feet"),
  17085. default: true
  17086. },
  17087. ]
  17088. ))
  17089. characterMakers.push(() => makeCharacter(
  17090. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  17091. {
  17092. anthro: {
  17093. height: math.unit(10 + 9 / 12, "feet"),
  17094. weight: math.unit(224, "lb"),
  17095. name: "Anthro",
  17096. image: {
  17097. source: "./media/characters/grottos/anthro.svg",
  17098. extra: 350 / 332,
  17099. bottom: 0.045
  17100. }
  17101. },
  17102. feral: {
  17103. height: math.unit(20 + 7 / 12, "feet"),
  17104. weight: math.unit(629, "lb"),
  17105. name: "Feral",
  17106. image: {
  17107. source: "./media/characters/grottos/feral.svg",
  17108. extra: 207 / 190,
  17109. bottom: 0.05
  17110. }
  17111. },
  17112. },
  17113. [
  17114. {
  17115. name: "Normal",
  17116. height: math.unit(10 + 9 / 12, "feet"),
  17117. default: true
  17118. },
  17119. ]
  17120. ))
  17121. characterMakers.push(() => makeCharacter(
  17122. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17123. {
  17124. anthro: {
  17125. height: math.unit(9 + 6 / 12, "feet"),
  17126. weight: math.unit(298, "lb"),
  17127. name: "Anthro",
  17128. image: {
  17129. source: "./media/characters/frifna/anthro.svg",
  17130. extra: 282 / 269,
  17131. bottom: 0.015
  17132. }
  17133. },
  17134. feral: {
  17135. height: math.unit(16 + 2 / 12, "feet"),
  17136. weight: math.unit(624, "lb"),
  17137. name: "Feral",
  17138. image: {
  17139. source: "./media/characters/frifna/feral.svg"
  17140. }
  17141. },
  17142. },
  17143. [
  17144. {
  17145. name: "Normal",
  17146. height: math.unit(9 + 6 / 12, "feet"),
  17147. default: true
  17148. },
  17149. ]
  17150. ))
  17151. characterMakers.push(() => makeCharacter(
  17152. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17153. {
  17154. front: {
  17155. height: math.unit(6 + 2 / 12, "feet"),
  17156. weight: math.unit(168, "lb"),
  17157. name: "Front",
  17158. image: {
  17159. source: "./media/characters/elise/front.svg",
  17160. extra: 276 / 271
  17161. }
  17162. },
  17163. },
  17164. [
  17165. {
  17166. name: "Normal",
  17167. height: math.unit(6 + 2 / 12, "feet"),
  17168. default: true
  17169. },
  17170. ]
  17171. ))
  17172. characterMakers.push(() => makeCharacter(
  17173. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  17174. {
  17175. front: {
  17176. height: math.unit(5 + 10 / 12, "feet"),
  17177. weight: math.unit(210, "lb"),
  17178. name: "Front",
  17179. image: {
  17180. source: "./media/characters/glade/front.svg",
  17181. extra: 258 / 247,
  17182. bottom: 0.008
  17183. }
  17184. },
  17185. },
  17186. [
  17187. {
  17188. name: "Normal",
  17189. height: math.unit(5 + 10 / 12, "feet"),
  17190. default: true
  17191. },
  17192. ]
  17193. ))
  17194. characterMakers.push(() => makeCharacter(
  17195. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  17196. {
  17197. front: {
  17198. height: math.unit(5 + 10 / 12, "feet"),
  17199. weight: math.unit(129, "lb"),
  17200. name: "Front",
  17201. image: {
  17202. source: "./media/characters/rina/front.svg",
  17203. extra: 266 / 255,
  17204. bottom: 0.005
  17205. }
  17206. },
  17207. },
  17208. [
  17209. {
  17210. name: "Normal",
  17211. height: math.unit(5 + 10 / 12, "feet"),
  17212. default: true
  17213. },
  17214. ]
  17215. ))
  17216. characterMakers.push(() => makeCharacter(
  17217. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  17218. {
  17219. front: {
  17220. height: math.unit(6 + 1 / 12, "feet"),
  17221. weight: math.unit(192, "lb"),
  17222. name: "Front",
  17223. image: {
  17224. source: "./media/characters/veronica/front.svg",
  17225. extra: 319 / 309,
  17226. bottom: 0.005
  17227. }
  17228. },
  17229. },
  17230. [
  17231. {
  17232. name: "Normal",
  17233. height: math.unit(6 + 1 / 12, "feet"),
  17234. default: true
  17235. },
  17236. ]
  17237. ))
  17238. characterMakers.push(() => makeCharacter(
  17239. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  17240. {
  17241. front: {
  17242. height: math.unit(9 + 3 / 12, "feet"),
  17243. weight: math.unit(1100, "lb"),
  17244. name: "Front",
  17245. image: {
  17246. source: "./media/characters/braxton/front.svg",
  17247. extra: 1057 / 984,
  17248. bottom: 0.05
  17249. }
  17250. },
  17251. },
  17252. [
  17253. {
  17254. name: "Normal",
  17255. height: math.unit(9 + 3 / 12, "feet")
  17256. },
  17257. {
  17258. name: "Giant",
  17259. height: math.unit(300, "feet"),
  17260. default: true
  17261. },
  17262. {
  17263. name: "Macro",
  17264. height: math.unit(700, "feet")
  17265. },
  17266. {
  17267. name: "Megamacro",
  17268. height: math.unit(6000, "feet")
  17269. },
  17270. ]
  17271. ))
  17272. characterMakers.push(() => makeCharacter(
  17273. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  17274. {
  17275. front: {
  17276. height: math.unit(6 + 7 / 12, "feet"),
  17277. weight: math.unit(150, "lb"),
  17278. name: "Front",
  17279. image: {
  17280. source: "./media/characters/blue-feyonics/front.svg",
  17281. extra: 1403 / 1306,
  17282. bottom: 0.047
  17283. }
  17284. },
  17285. },
  17286. [
  17287. {
  17288. name: "Normal",
  17289. height: math.unit(6 + 7 / 12, "feet"),
  17290. default: true
  17291. },
  17292. ]
  17293. ))
  17294. characterMakers.push(() => makeCharacter(
  17295. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  17296. {
  17297. front: {
  17298. height: math.unit(1.8, "meters"),
  17299. weight: math.unit(60, "kg"),
  17300. name: "Front",
  17301. image: {
  17302. source: "./media/characters/maxwell/front.svg",
  17303. extra: 2060 / 1873
  17304. }
  17305. },
  17306. },
  17307. [
  17308. {
  17309. name: "Micro",
  17310. height: math.unit(1, "mm")
  17311. },
  17312. {
  17313. name: "Normal",
  17314. height: math.unit(1.8, "meter"),
  17315. default: true
  17316. },
  17317. {
  17318. name: "Macro",
  17319. height: math.unit(30, "meters")
  17320. },
  17321. {
  17322. name: "Megamacro",
  17323. height: math.unit(10, "km")
  17324. },
  17325. ]
  17326. ))
  17327. characterMakers.push(() => makeCharacter(
  17328. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  17329. {
  17330. front: {
  17331. height: math.unit(6, "feet"),
  17332. weight: math.unit(150, "lb"),
  17333. name: "Front",
  17334. image: {
  17335. source: "./media/characters/jack/front.svg",
  17336. extra: 1754 / 1640,
  17337. bottom: 0.01
  17338. }
  17339. },
  17340. },
  17341. [
  17342. {
  17343. name: "Normal",
  17344. height: math.unit(80000, "feet"),
  17345. default: true
  17346. },
  17347. {
  17348. name: "Max size",
  17349. height: math.unit(10, "lightyears")
  17350. },
  17351. ]
  17352. ))
  17353. characterMakers.push(() => makeCharacter(
  17354. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  17355. {
  17356. urban: {
  17357. height: math.unit(5, "feet"),
  17358. weight: math.unit(240, "lb"),
  17359. name: "Urban",
  17360. image: {
  17361. source: "./media/characters/cafat/urban.svg",
  17362. extra: 1223/1126,
  17363. bottom: 205/1428
  17364. }
  17365. },
  17366. summer: {
  17367. height: math.unit(5, "feet"),
  17368. weight: math.unit(240, "lb"),
  17369. name: "Summer",
  17370. image: {
  17371. source: "./media/characters/cafat/summer.svg",
  17372. extra: 1223/1126,
  17373. bottom: 205/1428
  17374. }
  17375. },
  17376. winter: {
  17377. height: math.unit(5, "feet"),
  17378. weight: math.unit(240, "lb"),
  17379. name: "Winter",
  17380. image: {
  17381. source: "./media/characters/cafat/winter.svg",
  17382. extra: 1223/1126,
  17383. bottom: 205/1428
  17384. }
  17385. },
  17386. lingerie: {
  17387. height: math.unit(5, "feet"),
  17388. weight: math.unit(240, "lb"),
  17389. name: "Lingerie",
  17390. image: {
  17391. source: "./media/characters/cafat/lingerie.svg",
  17392. extra: 1223/1126,
  17393. bottom: 205/1428
  17394. }
  17395. },
  17396. upright: {
  17397. height: math.unit(6.3, "feet"),
  17398. weight: math.unit(240, "lb"),
  17399. name: "Upright",
  17400. image: {
  17401. source: "./media/characters/cafat/upright.svg",
  17402. bottom: 0.01
  17403. }
  17404. },
  17405. uprightFull: {
  17406. height: math.unit(6.3, "feet"),
  17407. weight: math.unit(240, "lb"),
  17408. name: "Upright (Full)",
  17409. image: {
  17410. source: "./media/characters/cafat/upright-full.svg",
  17411. bottom: 0.01
  17412. }
  17413. },
  17414. },
  17415. [
  17416. {
  17417. name: "Small",
  17418. height: math.unit(5, "feet"),
  17419. default: true
  17420. },
  17421. {
  17422. name: "Large",
  17423. height: math.unit(13, "feet")
  17424. },
  17425. ]
  17426. ))
  17427. characterMakers.push(() => makeCharacter(
  17428. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  17429. {
  17430. front: {
  17431. height: math.unit(6, "feet"),
  17432. weight: math.unit(150, "lb"),
  17433. name: "Front",
  17434. image: {
  17435. source: "./media/characters/verin-raharra/front.svg",
  17436. extra: 5019 / 4835,
  17437. bottom: 0.023
  17438. }
  17439. },
  17440. },
  17441. [
  17442. {
  17443. name: "Normal",
  17444. height: math.unit(7 + 5 / 12, "feet"),
  17445. default: true
  17446. },
  17447. {
  17448. name: "Upsized",
  17449. height: math.unit(20, "feet")
  17450. },
  17451. ]
  17452. ))
  17453. characterMakers.push(() => makeCharacter(
  17454. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  17455. {
  17456. front: {
  17457. height: math.unit(7, "feet"),
  17458. weight: math.unit(230, "lb"),
  17459. name: "Front",
  17460. image: {
  17461. source: "./media/characters/nakata/front.svg",
  17462. extra: 1.005,
  17463. bottom: 0.01
  17464. }
  17465. },
  17466. },
  17467. [
  17468. {
  17469. name: "Normal",
  17470. height: math.unit(7, "feet"),
  17471. default: true
  17472. },
  17473. {
  17474. name: "Big",
  17475. height: math.unit(14, "feet")
  17476. },
  17477. {
  17478. name: "Macro",
  17479. height: math.unit(400, "feet")
  17480. },
  17481. ]
  17482. ))
  17483. characterMakers.push(() => makeCharacter(
  17484. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  17485. {
  17486. front: {
  17487. height: math.unit(4.91, "feet"),
  17488. weight: math.unit(100, "lb"),
  17489. name: "Front",
  17490. image: {
  17491. source: "./media/characters/lily/front.svg",
  17492. extra: 1585 / 1415,
  17493. bottom: 0.02
  17494. }
  17495. },
  17496. },
  17497. [
  17498. {
  17499. name: "Normal",
  17500. height: math.unit(4.91, "feet"),
  17501. default: true
  17502. },
  17503. ]
  17504. ))
  17505. characterMakers.push(() => makeCharacter(
  17506. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  17507. {
  17508. laying: {
  17509. height: math.unit(4 + 4 / 12, "feet"),
  17510. weight: math.unit(600, "lb"),
  17511. name: "Laying",
  17512. image: {
  17513. source: "./media/characters/sheila/laying.svg",
  17514. extra: 1333 / 1265,
  17515. bottom: 0.16
  17516. }
  17517. },
  17518. },
  17519. [
  17520. {
  17521. name: "Normal",
  17522. height: math.unit(4 + 4 / 12, "feet"),
  17523. default: true
  17524. },
  17525. ]
  17526. ))
  17527. characterMakers.push(() => makeCharacter(
  17528. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  17529. {
  17530. front: {
  17531. height: math.unit(6, "feet"),
  17532. weight: math.unit(190, "lb"),
  17533. name: "Front",
  17534. image: {
  17535. source: "./media/characters/sax/front.svg",
  17536. extra: 1187 / 973,
  17537. bottom: 0.042
  17538. }
  17539. },
  17540. },
  17541. [
  17542. {
  17543. name: "Micro",
  17544. height: math.unit(4, "inches"),
  17545. default: true
  17546. },
  17547. ]
  17548. ))
  17549. characterMakers.push(() => makeCharacter(
  17550. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  17551. {
  17552. front: {
  17553. height: math.unit(6, "feet"),
  17554. weight: math.unit(150, "lb"),
  17555. name: "Front",
  17556. image: {
  17557. source: "./media/characters/pandora/front.svg",
  17558. extra: 2720 / 2556,
  17559. bottom: 0.015
  17560. }
  17561. },
  17562. back: {
  17563. height: math.unit(6, "feet"),
  17564. weight: math.unit(150, "lb"),
  17565. name: "Back",
  17566. image: {
  17567. source: "./media/characters/pandora/back.svg",
  17568. extra: 2720 / 2556,
  17569. bottom: 0.01
  17570. }
  17571. },
  17572. beans: {
  17573. height: math.unit(6 / 8, "feet"),
  17574. name: "Beans",
  17575. image: {
  17576. source: "./media/characters/pandora/beans.svg"
  17577. }
  17578. },
  17579. collar: {
  17580. height: math.unit(0.31, "feet"),
  17581. name: "Collar",
  17582. image: {
  17583. source: "./media/characters/pandora/collar.svg"
  17584. }
  17585. },
  17586. skirt: {
  17587. height: math.unit(6, "feet"),
  17588. weight: math.unit(150, "lb"),
  17589. name: "Skirt",
  17590. image: {
  17591. source: "./media/characters/pandora/skirt.svg",
  17592. extra: 1622 / 1525,
  17593. bottom: 0.015
  17594. }
  17595. },
  17596. hoodie: {
  17597. height: math.unit(6, "feet"),
  17598. weight: math.unit(150, "lb"),
  17599. name: "Hoodie",
  17600. image: {
  17601. source: "./media/characters/pandora/hoodie.svg",
  17602. extra: 1622 / 1525,
  17603. bottom: 0.015
  17604. }
  17605. },
  17606. casual: {
  17607. height: math.unit(6, "feet"),
  17608. weight: math.unit(150, "lb"),
  17609. name: "Casual",
  17610. image: {
  17611. source: "./media/characters/pandora/casual.svg",
  17612. extra: 1622 / 1525,
  17613. bottom: 0.015
  17614. }
  17615. },
  17616. },
  17617. [
  17618. {
  17619. name: "Normal",
  17620. height: math.unit(6, "feet")
  17621. },
  17622. {
  17623. name: "Big Steppy",
  17624. height: math.unit(1, "km"),
  17625. default: true
  17626. },
  17627. {
  17628. name: "Galactic Steppy",
  17629. height: math.unit(2, "gigameters")
  17630. },
  17631. ]
  17632. ))
  17633. characterMakers.push(() => makeCharacter(
  17634. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  17635. {
  17636. side: {
  17637. height: math.unit(10, "feet"),
  17638. weight: math.unit(800, "kg"),
  17639. name: "Side",
  17640. image: {
  17641. source: "./media/characters/venio-darcony/side.svg",
  17642. extra: 1373 / 1003,
  17643. bottom: 0.037
  17644. }
  17645. },
  17646. front: {
  17647. height: math.unit(19, "feet"),
  17648. weight: math.unit(800, "kg"),
  17649. name: "Front",
  17650. image: {
  17651. source: "./media/characters/venio-darcony/front.svg"
  17652. }
  17653. },
  17654. back: {
  17655. height: math.unit(19, "feet"),
  17656. weight: math.unit(800, "kg"),
  17657. name: "Back",
  17658. image: {
  17659. source: "./media/characters/venio-darcony/back.svg"
  17660. }
  17661. },
  17662. sideNsfw: {
  17663. height: math.unit(10, "feet"),
  17664. weight: math.unit(800, "kg"),
  17665. name: "Side (NSFW)",
  17666. image: {
  17667. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17668. extra: 1373 / 1003,
  17669. bottom: 0.037
  17670. }
  17671. },
  17672. frontNsfw: {
  17673. height: math.unit(19, "feet"),
  17674. weight: math.unit(800, "kg"),
  17675. name: "Front (NSFW)",
  17676. image: {
  17677. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17678. }
  17679. },
  17680. backNsfw: {
  17681. height: math.unit(19, "feet"),
  17682. weight: math.unit(800, "kg"),
  17683. name: "Back (NSFW)",
  17684. image: {
  17685. source: "./media/characters/venio-darcony/back-nsfw.svg"
  17686. }
  17687. },
  17688. sideArmored: {
  17689. height: math.unit(10, "feet"),
  17690. weight: math.unit(800, "kg"),
  17691. name: "Side (Armored)",
  17692. image: {
  17693. source: "./media/characters/venio-darcony/side-armored.svg",
  17694. extra: 1373 / 1003,
  17695. bottom: 0.037
  17696. }
  17697. },
  17698. frontArmored: {
  17699. height: math.unit(19, "feet"),
  17700. weight: math.unit(900, "kg"),
  17701. name: "Front (Armored)",
  17702. image: {
  17703. source: "./media/characters/venio-darcony/front-armored.svg"
  17704. }
  17705. },
  17706. backArmored: {
  17707. height: math.unit(19, "feet"),
  17708. weight: math.unit(900, "kg"),
  17709. name: "Back (Armored)",
  17710. image: {
  17711. source: "./media/characters/venio-darcony/back-armored.svg"
  17712. }
  17713. },
  17714. sword: {
  17715. height: math.unit(10, "feet"),
  17716. weight: math.unit(50, "lb"),
  17717. name: "Sword",
  17718. image: {
  17719. source: "./media/characters/venio-darcony/sword.svg"
  17720. }
  17721. },
  17722. },
  17723. [
  17724. {
  17725. name: "Normal",
  17726. height: math.unit(10, "feet")
  17727. },
  17728. {
  17729. name: "Macro",
  17730. height: math.unit(130, "feet"),
  17731. default: true
  17732. },
  17733. {
  17734. name: "Macro+",
  17735. height: math.unit(240, "feet")
  17736. },
  17737. ]
  17738. ))
  17739. characterMakers.push(() => makeCharacter(
  17740. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  17741. {
  17742. front: {
  17743. height: math.unit(6, "feet"),
  17744. weight: math.unit(150, "lb"),
  17745. name: "Front",
  17746. image: {
  17747. source: "./media/characters/veski/front.svg",
  17748. extra: 1299 / 1225,
  17749. bottom: 0.04
  17750. }
  17751. },
  17752. back: {
  17753. height: math.unit(6, "feet"),
  17754. weight: math.unit(150, "lb"),
  17755. name: "Back",
  17756. image: {
  17757. source: "./media/characters/veski/back.svg",
  17758. extra: 1299 / 1225,
  17759. bottom: 0.008
  17760. }
  17761. },
  17762. maw: {
  17763. height: math.unit(1.5 * 1.21, "feet"),
  17764. name: "Maw",
  17765. image: {
  17766. source: "./media/characters/veski/maw.svg"
  17767. }
  17768. },
  17769. },
  17770. [
  17771. {
  17772. name: "Macro",
  17773. height: math.unit(2, "km"),
  17774. default: true
  17775. },
  17776. ]
  17777. ))
  17778. characterMakers.push(() => makeCharacter(
  17779. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  17780. {
  17781. front: {
  17782. height: math.unit(5 + 7 / 12, "feet"),
  17783. name: "Front",
  17784. image: {
  17785. source: "./media/characters/isabelle/front.svg",
  17786. extra: 2130 / 1976,
  17787. bottom: 0.05
  17788. }
  17789. },
  17790. },
  17791. [
  17792. {
  17793. name: "Supermicro",
  17794. height: math.unit(10, "micrometers")
  17795. },
  17796. {
  17797. name: "Micro",
  17798. height: math.unit(1, "inch")
  17799. },
  17800. {
  17801. name: "Tiny",
  17802. height: math.unit(5, "inches")
  17803. },
  17804. {
  17805. name: "Standard",
  17806. height: math.unit(5 + 7 / 12, "inches")
  17807. },
  17808. {
  17809. name: "Macro",
  17810. height: math.unit(80, "meters"),
  17811. default: true
  17812. },
  17813. {
  17814. name: "Megamacro",
  17815. height: math.unit(250, "meters")
  17816. },
  17817. {
  17818. name: "Gigamacro",
  17819. height: math.unit(5, "km")
  17820. },
  17821. {
  17822. name: "Cosmic",
  17823. height: math.unit(2.5e6, "miles")
  17824. },
  17825. ]
  17826. ))
  17827. characterMakers.push(() => makeCharacter(
  17828. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  17829. {
  17830. front: {
  17831. height: math.unit(6, "feet"),
  17832. weight: math.unit(150, "lb"),
  17833. name: "Front",
  17834. image: {
  17835. source: "./media/characters/hanzo/front.svg",
  17836. extra: 374 / 344,
  17837. bottom: 0.02
  17838. }
  17839. },
  17840. },
  17841. [
  17842. {
  17843. name: "Normal",
  17844. height: math.unit(8, "feet"),
  17845. default: true
  17846. },
  17847. ]
  17848. ))
  17849. characterMakers.push(() => makeCharacter(
  17850. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  17851. {
  17852. front: {
  17853. height: math.unit(7, "feet"),
  17854. weight: math.unit(130, "lb"),
  17855. name: "Front",
  17856. image: {
  17857. source: "./media/characters/anna/front.svg",
  17858. extra: 169 / 145,
  17859. bottom: 0.06
  17860. }
  17861. },
  17862. full: {
  17863. height: math.unit(4.96, "feet"),
  17864. weight: math.unit(220, "lb"),
  17865. name: "Full",
  17866. image: {
  17867. source: "./media/characters/anna/full.svg",
  17868. extra: 138 / 114,
  17869. bottom: 0.15
  17870. }
  17871. },
  17872. tongue: {
  17873. height: math.unit(2.53, "feet"),
  17874. name: "Tongue",
  17875. image: {
  17876. source: "./media/characters/anna/tongue.svg"
  17877. }
  17878. },
  17879. },
  17880. [
  17881. {
  17882. name: "Normal",
  17883. height: math.unit(7, "feet"),
  17884. default: true
  17885. },
  17886. ]
  17887. ))
  17888. characterMakers.push(() => makeCharacter(
  17889. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  17890. {
  17891. front: {
  17892. height: math.unit(7, "feet"),
  17893. weight: math.unit(150, "lb"),
  17894. name: "Front",
  17895. image: {
  17896. source: "./media/characters/ian-corvid/front.svg",
  17897. extra: 150 / 142,
  17898. bottom: 0.02
  17899. }
  17900. },
  17901. back: {
  17902. height: math.unit(7, "feet"),
  17903. weight: math.unit(150, "lb"),
  17904. name: "Back",
  17905. image: {
  17906. source: "./media/characters/ian-corvid/back.svg",
  17907. extra: 150 / 143,
  17908. bottom: 0.01
  17909. }
  17910. },
  17911. stomping: {
  17912. height: math.unit(7, "feet"),
  17913. weight: math.unit(150, "lb"),
  17914. name: "Stomping",
  17915. image: {
  17916. source: "./media/characters/ian-corvid/stomping.svg",
  17917. extra: 76 / 72
  17918. }
  17919. },
  17920. sitting: {
  17921. height: math.unit(7 / 1.8, "feet"),
  17922. weight: math.unit(150, "lb"),
  17923. name: "Sitting",
  17924. image: {
  17925. source: "./media/characters/ian-corvid/sitting.svg",
  17926. extra: 1400 / 1269,
  17927. bottom: 0.15
  17928. }
  17929. },
  17930. },
  17931. [
  17932. {
  17933. name: "Tiny Microw",
  17934. height: math.unit(1, "inch")
  17935. },
  17936. {
  17937. name: "Microw",
  17938. height: math.unit(6, "inches")
  17939. },
  17940. {
  17941. name: "Crow",
  17942. height: math.unit(7 + 1 / 12, "feet"),
  17943. default: true
  17944. },
  17945. {
  17946. name: "Macrow",
  17947. height: math.unit(176, "feet")
  17948. },
  17949. ]
  17950. ))
  17951. characterMakers.push(() => makeCharacter(
  17952. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17953. {
  17954. front: {
  17955. height: math.unit(5 + 7 / 12, "feet"),
  17956. weight: math.unit(147, "lb"),
  17957. name: "Front",
  17958. image: {
  17959. source: "./media/characters/natalie-kellon/front.svg",
  17960. extra: 1214 / 1141,
  17961. bottom: 0.02
  17962. }
  17963. },
  17964. },
  17965. [
  17966. {
  17967. name: "Micro",
  17968. height: math.unit(1 / 16, "inch")
  17969. },
  17970. {
  17971. name: "Tiny",
  17972. height: math.unit(4, "inches")
  17973. },
  17974. {
  17975. name: "Normal",
  17976. height: math.unit(5 + 7 / 12, "feet"),
  17977. default: true
  17978. },
  17979. {
  17980. name: "Amazon",
  17981. height: math.unit(12, "feet")
  17982. },
  17983. {
  17984. name: "Giantess",
  17985. height: math.unit(160, "meters")
  17986. },
  17987. {
  17988. name: "Titaness",
  17989. height: math.unit(800, "meters")
  17990. },
  17991. ]
  17992. ))
  17993. characterMakers.push(() => makeCharacter(
  17994. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17995. {
  17996. front: {
  17997. height: math.unit(6, "feet"),
  17998. weight: math.unit(150, "lb"),
  17999. name: "Front",
  18000. image: {
  18001. source: "./media/characters/alluria/front.svg",
  18002. extra: 806 / 738,
  18003. bottom: 0.01
  18004. }
  18005. },
  18006. side: {
  18007. height: math.unit(6, "feet"),
  18008. weight: math.unit(150, "lb"),
  18009. name: "Side",
  18010. image: {
  18011. source: "./media/characters/alluria/side.svg",
  18012. extra: 800 / 750,
  18013. }
  18014. },
  18015. back: {
  18016. height: math.unit(6, "feet"),
  18017. weight: math.unit(150, "lb"),
  18018. name: "Back",
  18019. image: {
  18020. source: "./media/characters/alluria/back.svg",
  18021. extra: 806 / 738,
  18022. }
  18023. },
  18024. frontMaid: {
  18025. height: math.unit(6, "feet"),
  18026. weight: math.unit(150, "lb"),
  18027. name: "Front (Maid)",
  18028. image: {
  18029. source: "./media/characters/alluria/front-maid.svg",
  18030. extra: 806 / 738,
  18031. bottom: 0.01
  18032. }
  18033. },
  18034. sideMaid: {
  18035. height: math.unit(6, "feet"),
  18036. weight: math.unit(150, "lb"),
  18037. name: "Side (Maid)",
  18038. image: {
  18039. source: "./media/characters/alluria/side-maid.svg",
  18040. extra: 800 / 750,
  18041. bottom: 0.005
  18042. }
  18043. },
  18044. backMaid: {
  18045. height: math.unit(6, "feet"),
  18046. weight: math.unit(150, "lb"),
  18047. name: "Back (Maid)",
  18048. image: {
  18049. source: "./media/characters/alluria/back-maid.svg",
  18050. extra: 806 / 738,
  18051. }
  18052. },
  18053. },
  18054. [
  18055. {
  18056. name: "Micro",
  18057. height: math.unit(6, "inches"),
  18058. default: true
  18059. },
  18060. ]
  18061. ))
  18062. characterMakers.push(() => makeCharacter(
  18063. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  18064. {
  18065. front: {
  18066. height: math.unit(6, "feet"),
  18067. weight: math.unit(150, "lb"),
  18068. name: "Front",
  18069. image: {
  18070. source: "./media/characters/kyle/front.svg",
  18071. extra: 1069 / 962,
  18072. bottom: 77.228 / 1727.45
  18073. }
  18074. },
  18075. },
  18076. [
  18077. {
  18078. name: "Macro",
  18079. height: math.unit(150, "feet"),
  18080. default: true
  18081. },
  18082. ]
  18083. ))
  18084. characterMakers.push(() => makeCharacter(
  18085. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  18086. {
  18087. front: {
  18088. height: math.unit(6, "feet"),
  18089. weight: math.unit(300, "lb"),
  18090. name: "Front",
  18091. image: {
  18092. source: "./media/characters/duncan/front.svg",
  18093. extra: 1650 / 1482,
  18094. bottom: 0.05
  18095. }
  18096. },
  18097. },
  18098. [
  18099. {
  18100. name: "Macro",
  18101. height: math.unit(100, "feet"),
  18102. default: true
  18103. },
  18104. ]
  18105. ))
  18106. characterMakers.push(() => makeCharacter(
  18107. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  18108. {
  18109. front: {
  18110. height: math.unit(5 + 4 / 12, "feet"),
  18111. weight: math.unit(220, "lb"),
  18112. name: "Front",
  18113. image: {
  18114. source: "./media/characters/memory/front.svg",
  18115. extra: 3641 / 3545,
  18116. bottom: 0.03
  18117. }
  18118. },
  18119. back: {
  18120. height: math.unit(5 + 4 / 12, "feet"),
  18121. weight: math.unit(220, "lb"),
  18122. name: "Back",
  18123. image: {
  18124. source: "./media/characters/memory/back.svg",
  18125. extra: 3641 / 3545,
  18126. bottom: 0.025
  18127. }
  18128. },
  18129. frontSkirt: {
  18130. height: math.unit(5 + 4 / 12, "feet"),
  18131. weight: math.unit(220, "lb"),
  18132. name: "Front (Skirt)",
  18133. image: {
  18134. source: "./media/characters/memory/front-skirt.svg",
  18135. extra: 3641 / 3545,
  18136. bottom: 0.03
  18137. }
  18138. },
  18139. frontDress: {
  18140. height: math.unit(5 + 4 / 12, "feet"),
  18141. weight: math.unit(220, "lb"),
  18142. name: "Front (Dress)",
  18143. image: {
  18144. source: "./media/characters/memory/front-dress.svg",
  18145. extra: 3641 / 3545,
  18146. bottom: 0.03
  18147. }
  18148. },
  18149. },
  18150. [
  18151. {
  18152. name: "Micro",
  18153. height: math.unit(6, "inches"),
  18154. default: true
  18155. },
  18156. {
  18157. name: "Normal",
  18158. height: math.unit(5 + 4 / 12, "feet")
  18159. },
  18160. ]
  18161. ))
  18162. characterMakers.push(() => makeCharacter(
  18163. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  18164. {
  18165. front: {
  18166. height: math.unit(4 + 11 / 12, "feet"),
  18167. weight: math.unit(100, "lb"),
  18168. name: "Front",
  18169. image: {
  18170. source: "./media/characters/luno/front.svg",
  18171. extra: 1535 / 1487,
  18172. bottom: 0.03
  18173. }
  18174. },
  18175. },
  18176. [
  18177. {
  18178. name: "Micro",
  18179. height: math.unit(3, "inches")
  18180. },
  18181. {
  18182. name: "Normal",
  18183. height: math.unit(4 + 11 / 12, "feet"),
  18184. default: true
  18185. },
  18186. {
  18187. name: "Macro",
  18188. height: math.unit(300, "feet")
  18189. },
  18190. {
  18191. name: "Megamacro",
  18192. height: math.unit(700, "miles")
  18193. },
  18194. ]
  18195. ))
  18196. characterMakers.push(() => makeCharacter(
  18197. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  18198. {
  18199. front: {
  18200. height: math.unit(6 + 2 / 12, "feet"),
  18201. weight: math.unit(170, "lb"),
  18202. name: "Front",
  18203. image: {
  18204. source: "./media/characters/jamesy/front.svg",
  18205. extra: 440 / 382,
  18206. bottom: 0.005
  18207. }
  18208. },
  18209. },
  18210. [
  18211. {
  18212. name: "Micro",
  18213. height: math.unit(3, "inches")
  18214. },
  18215. {
  18216. name: "Normal",
  18217. height: math.unit(6 + 2 / 12, "feet"),
  18218. default: true
  18219. },
  18220. {
  18221. name: "Macro",
  18222. height: math.unit(300, "feet")
  18223. },
  18224. {
  18225. name: "Megamacro",
  18226. height: math.unit(700, "miles")
  18227. },
  18228. ]
  18229. ))
  18230. characterMakers.push(() => makeCharacter(
  18231. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  18232. {
  18233. front: {
  18234. height: math.unit(6, "feet"),
  18235. weight: math.unit(160, "lb"),
  18236. name: "Front",
  18237. image: {
  18238. source: "./media/characters/mark/front.svg",
  18239. extra: 3300 / 3100,
  18240. bottom: 136.42 / 3440.47
  18241. }
  18242. },
  18243. },
  18244. [
  18245. {
  18246. name: "Macro",
  18247. height: math.unit(120, "meters")
  18248. },
  18249. {
  18250. name: "Bigger Macro",
  18251. height: math.unit(350, "meters")
  18252. },
  18253. {
  18254. name: "Megamacro",
  18255. height: math.unit(8, "km"),
  18256. default: true
  18257. },
  18258. {
  18259. name: "Continental",
  18260. height: math.unit(4550, "km")
  18261. },
  18262. {
  18263. name: "Planetary",
  18264. height: math.unit(65000, "km")
  18265. },
  18266. ]
  18267. ))
  18268. characterMakers.push(() => makeCharacter(
  18269. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  18270. {
  18271. front: {
  18272. height: math.unit(6, "feet"),
  18273. weight: math.unit(400, "lb"),
  18274. name: "Front",
  18275. image: {
  18276. source: "./media/characters/mac/front.svg",
  18277. extra: 1048 / 987.7,
  18278. bottom: 60 / 1107.6,
  18279. }
  18280. },
  18281. },
  18282. [
  18283. {
  18284. name: "Macro",
  18285. height: math.unit(500, "feet"),
  18286. default: true
  18287. },
  18288. ]
  18289. ))
  18290. characterMakers.push(() => makeCharacter(
  18291. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  18292. {
  18293. front: {
  18294. height: math.unit(5 + 2 / 12, "feet"),
  18295. weight: math.unit(190, "lb"),
  18296. name: "Front",
  18297. image: {
  18298. source: "./media/characters/bari/front.svg",
  18299. extra: 3156 / 2880,
  18300. bottom: 0.03
  18301. }
  18302. },
  18303. back: {
  18304. height: math.unit(5 + 2 / 12, "feet"),
  18305. weight: math.unit(190, "lb"),
  18306. name: "Back",
  18307. image: {
  18308. source: "./media/characters/bari/back.svg",
  18309. extra: 3260 / 2834,
  18310. bottom: 0.025
  18311. }
  18312. },
  18313. frontPlush: {
  18314. height: math.unit(5 + 2 / 12, "feet"),
  18315. weight: math.unit(190, "lb"),
  18316. name: "Front (Plush)",
  18317. image: {
  18318. source: "./media/characters/bari/front-plush.svg",
  18319. extra: 1112 / 1061,
  18320. bottom: 0.002
  18321. }
  18322. },
  18323. },
  18324. [
  18325. {
  18326. name: "Micro",
  18327. height: math.unit(3, "inches")
  18328. },
  18329. {
  18330. name: "Normal",
  18331. height: math.unit(5 + 2 / 12, "feet"),
  18332. default: true
  18333. },
  18334. {
  18335. name: "Macro",
  18336. height: math.unit(20, "feet")
  18337. },
  18338. ]
  18339. ))
  18340. characterMakers.push(() => makeCharacter(
  18341. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  18342. {
  18343. front: {
  18344. height: math.unit(6 + 1 / 12, "feet"),
  18345. weight: math.unit(275, "lb"),
  18346. name: "Front",
  18347. image: {
  18348. source: "./media/characters/hunter-misha-raven/front.svg"
  18349. }
  18350. },
  18351. },
  18352. [
  18353. {
  18354. name: "Mortal",
  18355. height: math.unit(6 + 1 / 12, "feet")
  18356. },
  18357. {
  18358. name: "Divine",
  18359. height: math.unit(1.12134e34, "parsecs"),
  18360. default: true
  18361. },
  18362. ]
  18363. ))
  18364. characterMakers.push(() => makeCharacter(
  18365. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  18366. {
  18367. front: {
  18368. height: math.unit(6 + 3 / 12, "feet"),
  18369. weight: math.unit(220, "lb"),
  18370. name: "Front",
  18371. image: {
  18372. source: "./media/characters/max-calore/front.svg",
  18373. extra: 1700 / 1648,
  18374. bottom: 0.01
  18375. }
  18376. },
  18377. back: {
  18378. height: math.unit(6 + 3 / 12, "feet"),
  18379. weight: math.unit(220, "lb"),
  18380. name: "Back",
  18381. image: {
  18382. source: "./media/characters/max-calore/back.svg",
  18383. extra: 1700 / 1648,
  18384. bottom: 0.01
  18385. }
  18386. },
  18387. },
  18388. [
  18389. {
  18390. name: "Normal",
  18391. height: math.unit(6 + 3 / 12, "feet"),
  18392. default: true
  18393. },
  18394. ]
  18395. ))
  18396. characterMakers.push(() => makeCharacter(
  18397. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  18398. {
  18399. side: {
  18400. height: math.unit(2 + 8 / 12, "feet"),
  18401. weight: math.unit(99, "lb"),
  18402. name: "Side",
  18403. image: {
  18404. source: "./media/characters/aspen/side.svg",
  18405. extra: 152 / 138,
  18406. bottom: 0.032
  18407. }
  18408. },
  18409. },
  18410. [
  18411. {
  18412. name: "Normal",
  18413. height: math.unit(2 + 8 / 12, "feet"),
  18414. default: true
  18415. },
  18416. ]
  18417. ))
  18418. characterMakers.push(() => makeCharacter(
  18419. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  18420. {
  18421. side: {
  18422. height: math.unit(3 + 2 / 12, "feet"),
  18423. weight: math.unit(224, "lb"),
  18424. name: "Side",
  18425. image: {
  18426. source: "./media/characters/sheila-feral-wolf/side.svg",
  18427. extra: 179 / 166,
  18428. bottom: 0.03
  18429. }
  18430. },
  18431. },
  18432. [
  18433. {
  18434. name: "Normal",
  18435. height: math.unit(3 + 2 / 12, "feet"),
  18436. default: true
  18437. },
  18438. ]
  18439. ))
  18440. characterMakers.push(() => makeCharacter(
  18441. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  18442. {
  18443. side: {
  18444. height: math.unit(1 + 9 / 12, "feet"),
  18445. weight: math.unit(38, "lb"),
  18446. name: "Side",
  18447. image: {
  18448. source: "./media/characters/michelle/side.svg",
  18449. extra: 147 / 136.7,
  18450. bottom: 0.03
  18451. }
  18452. },
  18453. },
  18454. [
  18455. {
  18456. name: "Normal",
  18457. height: math.unit(1 + 9 / 12, "feet"),
  18458. default: true
  18459. },
  18460. ]
  18461. ))
  18462. characterMakers.push(() => makeCharacter(
  18463. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  18464. {
  18465. front: {
  18466. height: math.unit(1.54, "feet"),
  18467. weight: math.unit(50, "lb"),
  18468. name: "Front",
  18469. image: {
  18470. source: "./media/characters/nino/front.svg"
  18471. }
  18472. },
  18473. },
  18474. [
  18475. {
  18476. name: "Normal",
  18477. height: math.unit(1.54, "feet"),
  18478. default: true
  18479. },
  18480. ]
  18481. ))
  18482. characterMakers.push(() => makeCharacter(
  18483. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  18484. {
  18485. front: {
  18486. height: math.unit(1.49, "feet"),
  18487. weight: math.unit(45, "lb"),
  18488. name: "Front",
  18489. image: {
  18490. source: "./media/characters/viola/front.svg"
  18491. }
  18492. },
  18493. },
  18494. [
  18495. {
  18496. name: "Normal",
  18497. height: math.unit(1.49, "feet"),
  18498. default: true
  18499. },
  18500. ]
  18501. ))
  18502. characterMakers.push(() => makeCharacter(
  18503. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  18504. {
  18505. front: {
  18506. height: math.unit(6 + 5 / 12, "feet"),
  18507. weight: math.unit(580, "lb"),
  18508. name: "Front",
  18509. image: {
  18510. source: "./media/characters/atlas/front.svg",
  18511. extra: 298.5 / 290,
  18512. bottom: 0.015
  18513. }
  18514. },
  18515. },
  18516. [
  18517. {
  18518. name: "Normal",
  18519. height: math.unit(6 + 5 / 12, "feet"),
  18520. default: true
  18521. },
  18522. ]
  18523. ))
  18524. characterMakers.push(() => makeCharacter(
  18525. { name: "Davy", species: ["cat"], tags: ["feral"] },
  18526. {
  18527. side: {
  18528. height: math.unit(15.6, "inches"),
  18529. weight: math.unit(10, "lb"),
  18530. name: "Side",
  18531. image: {
  18532. source: "./media/characters/davy/side.svg",
  18533. extra: 200 / 170,
  18534. bottom: 0.01
  18535. }
  18536. },
  18537. },
  18538. [
  18539. {
  18540. name: "Normal",
  18541. height: math.unit(15.6, "inches"),
  18542. default: true
  18543. },
  18544. ]
  18545. ))
  18546. characterMakers.push(() => makeCharacter(
  18547. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  18548. {
  18549. side: {
  18550. height: math.unit(4 + 8 / 12, "feet"),
  18551. weight: math.unit(166, "lb"),
  18552. name: "Side",
  18553. image: {
  18554. source: "./media/characters/fiona/side.svg",
  18555. extra: 232 / 220,
  18556. bottom: 0.03
  18557. }
  18558. },
  18559. },
  18560. [
  18561. {
  18562. name: "Normal",
  18563. height: math.unit(4 + 8 / 12, "feet"),
  18564. default: true
  18565. },
  18566. ]
  18567. ))
  18568. characterMakers.push(() => makeCharacter(
  18569. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  18570. {
  18571. front: {
  18572. height: math.unit(26, "inches"),
  18573. weight: math.unit(35, "lb"),
  18574. name: "Front",
  18575. image: {
  18576. source: "./media/characters/lyla/front.svg",
  18577. bottom: 0.1
  18578. }
  18579. },
  18580. },
  18581. [
  18582. {
  18583. name: "Normal",
  18584. height: math.unit(3, "feet"),
  18585. default: true
  18586. },
  18587. ]
  18588. ))
  18589. characterMakers.push(() => makeCharacter(
  18590. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  18591. {
  18592. side: {
  18593. height: math.unit(1.8, "feet"),
  18594. weight: math.unit(44, "lb"),
  18595. name: "Side",
  18596. image: {
  18597. source: "./media/characters/perseus/side.svg",
  18598. bottom: 0.21
  18599. }
  18600. },
  18601. },
  18602. [
  18603. {
  18604. name: "Normal",
  18605. height: math.unit(1.8, "feet"),
  18606. default: true
  18607. },
  18608. ]
  18609. ))
  18610. characterMakers.push(() => makeCharacter(
  18611. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  18612. {
  18613. side: {
  18614. height: math.unit(4 + 2 / 12, "feet"),
  18615. weight: math.unit(20, "lb"),
  18616. name: "Side",
  18617. image: {
  18618. source: "./media/characters/remus/side.svg"
  18619. }
  18620. },
  18621. },
  18622. [
  18623. {
  18624. name: "Normal",
  18625. height: math.unit(4 + 2 / 12, "feet"),
  18626. default: true
  18627. },
  18628. ]
  18629. ))
  18630. characterMakers.push(() => makeCharacter(
  18631. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  18632. {
  18633. front: {
  18634. height: math.unit(4 + 11 / 12, "feet"),
  18635. weight: math.unit(114, "lb"),
  18636. name: "Front",
  18637. image: {
  18638. source: "./media/characters/raf/front.svg",
  18639. extra: 1504/1339,
  18640. bottom: 26/1530
  18641. }
  18642. },
  18643. side: {
  18644. height: math.unit(4 + 11 / 12, "feet"),
  18645. weight: math.unit(114, "lb"),
  18646. name: "Side",
  18647. image: {
  18648. source: "./media/characters/raf/side.svg",
  18649. extra: 1466/1316,
  18650. bottom: 29/1495
  18651. }
  18652. },
  18653. paw: {
  18654. height: math.unit(1.45, "feet"),
  18655. name: "Paw",
  18656. image: {
  18657. source: "./media/characters/raf/paw.svg"
  18658. },
  18659. extraAttributes: {
  18660. "toeSize": {
  18661. name: "Toe Size",
  18662. power: 2,
  18663. type: "area",
  18664. base: math.unit(0.004, "m^2")
  18665. },
  18666. "padSize": {
  18667. name: "Pad Size",
  18668. power: 2,
  18669. type: "area",
  18670. base: math.unit(0.04, "m^2")
  18671. },
  18672. "footSize": {
  18673. name: "Foot Size",
  18674. power: 2,
  18675. type: "area",
  18676. base: math.unit(0.08, "m^2")
  18677. },
  18678. }
  18679. },
  18680. },
  18681. [
  18682. {
  18683. name: "Micro",
  18684. height: math.unit(2, "inches")
  18685. },
  18686. {
  18687. name: "Normal",
  18688. height: math.unit(4 + 11 / 12, "feet"),
  18689. default: true
  18690. },
  18691. {
  18692. name: "Macro",
  18693. height: math.unit(70, "feet")
  18694. },
  18695. ]
  18696. ))
  18697. characterMakers.push(() => makeCharacter(
  18698. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  18699. {
  18700. front: {
  18701. height: math.unit(1.5, "meters"),
  18702. weight: math.unit(68, "kg"),
  18703. name: "Front",
  18704. image: {
  18705. source: "./media/characters/liam-einarr/front.svg",
  18706. extra: 2822 / 2666
  18707. }
  18708. },
  18709. back: {
  18710. height: math.unit(1.5, "meters"),
  18711. weight: math.unit(68, "kg"),
  18712. name: "Back",
  18713. image: {
  18714. source: "./media/characters/liam-einarr/back.svg",
  18715. extra: 2822 / 2666,
  18716. bottom: 0.015
  18717. }
  18718. },
  18719. },
  18720. [
  18721. {
  18722. name: "Normal",
  18723. height: math.unit(1.5, "meters"),
  18724. default: true
  18725. },
  18726. {
  18727. name: "Macro",
  18728. height: math.unit(150, "meters")
  18729. },
  18730. {
  18731. name: "Megamacro",
  18732. height: math.unit(35, "km")
  18733. },
  18734. ]
  18735. ))
  18736. characterMakers.push(() => makeCharacter(
  18737. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  18738. {
  18739. front: {
  18740. height: math.unit(6, "feet"),
  18741. weight: math.unit(75, "kg"),
  18742. name: "Front",
  18743. image: {
  18744. source: "./media/characters/linda/front.svg",
  18745. extra: 930 / 874,
  18746. bottom: 0.004
  18747. }
  18748. },
  18749. },
  18750. [
  18751. {
  18752. name: "Normal",
  18753. height: math.unit(6, "feet"),
  18754. default: true
  18755. },
  18756. ]
  18757. ))
  18758. characterMakers.push(() => makeCharacter(
  18759. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  18760. {
  18761. front: {
  18762. height: math.unit(6 + 8 / 12, "feet"),
  18763. weight: math.unit(220, "lb"),
  18764. name: "Front",
  18765. image: {
  18766. source: "./media/characters/caylex/front.svg",
  18767. extra: 821 / 772,
  18768. bottom: 0.07
  18769. }
  18770. },
  18771. back: {
  18772. height: math.unit(6 + 8 / 12, "feet"),
  18773. weight: math.unit(220, "lb"),
  18774. name: "Back",
  18775. image: {
  18776. source: "./media/characters/caylex/back.svg",
  18777. extra: 821 / 772,
  18778. bottom: 0.022
  18779. }
  18780. },
  18781. hand: {
  18782. height: math.unit(1.25, "feet"),
  18783. name: "Hand",
  18784. image: {
  18785. source: "./media/characters/caylex/hand.svg"
  18786. }
  18787. },
  18788. foot: {
  18789. height: math.unit(1.6, "feet"),
  18790. name: "Foot",
  18791. image: {
  18792. source: "./media/characters/caylex/foot.svg"
  18793. }
  18794. },
  18795. armored: {
  18796. height: math.unit(6 + 8 / 12, "feet"),
  18797. weight: math.unit(250, "lb"),
  18798. name: "Armored",
  18799. image: {
  18800. source: "./media/characters/caylex/armored.svg",
  18801. extra: 1420 / 1310,
  18802. bottom: 0.045
  18803. }
  18804. },
  18805. },
  18806. [
  18807. {
  18808. name: "Normal",
  18809. height: math.unit(6 + 8 / 12, "feet"),
  18810. default: true
  18811. },
  18812. {
  18813. name: "Normal+",
  18814. height: math.unit(12, "feet")
  18815. },
  18816. ]
  18817. ))
  18818. characterMakers.push(() => makeCharacter(
  18819. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  18820. {
  18821. front: {
  18822. height: math.unit(7 + 6 / 12, "feet"),
  18823. weight: math.unit(288, "lb"),
  18824. name: "Front",
  18825. image: {
  18826. source: "./media/characters/alana/front.svg",
  18827. extra: 679 / 653,
  18828. bottom: 22.5 / 701
  18829. }
  18830. },
  18831. },
  18832. [
  18833. {
  18834. name: "Normal",
  18835. height: math.unit(7 + 6 / 12, "feet")
  18836. },
  18837. {
  18838. name: "Large",
  18839. height: math.unit(50, "feet")
  18840. },
  18841. {
  18842. name: "Macro",
  18843. height: math.unit(100, "feet"),
  18844. default: true
  18845. },
  18846. {
  18847. name: "Macro+",
  18848. height: math.unit(200, "feet")
  18849. },
  18850. ]
  18851. ))
  18852. characterMakers.push(() => makeCharacter(
  18853. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  18854. {
  18855. front: {
  18856. height: math.unit(6 + 1 / 12, "feet"),
  18857. weight: math.unit(210, "lb"),
  18858. name: "Front",
  18859. image: {
  18860. source: "./media/characters/hasani/front.svg",
  18861. extra: 244 / 232,
  18862. bottom: 0.01
  18863. }
  18864. },
  18865. back: {
  18866. height: math.unit(6 + 1 / 12, "feet"),
  18867. weight: math.unit(210, "lb"),
  18868. name: "Back",
  18869. image: {
  18870. source: "./media/characters/hasani/back.svg",
  18871. extra: 244 / 232,
  18872. bottom: 0.01
  18873. }
  18874. },
  18875. },
  18876. [
  18877. {
  18878. name: "Normal",
  18879. height: math.unit(6 + 1 / 12, "feet")
  18880. },
  18881. {
  18882. name: "Macro",
  18883. height: math.unit(175, "feet"),
  18884. default: true
  18885. },
  18886. ]
  18887. ))
  18888. characterMakers.push(() => makeCharacter(
  18889. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  18890. {
  18891. front: {
  18892. height: math.unit(1.82, "meters"),
  18893. weight: math.unit(140, "lb"),
  18894. name: "Front",
  18895. image: {
  18896. source: "./media/characters/nita/front.svg",
  18897. extra: 2473 / 2363,
  18898. bottom: 0.01
  18899. }
  18900. },
  18901. },
  18902. [
  18903. {
  18904. name: "Normal",
  18905. height: math.unit(1.82, "m")
  18906. },
  18907. {
  18908. name: "Macro",
  18909. height: math.unit(300, "m")
  18910. },
  18911. {
  18912. name: "Mistake Canon",
  18913. height: math.unit(0.5, "miles"),
  18914. default: true
  18915. },
  18916. {
  18917. name: "Big Mistake",
  18918. height: math.unit(13, "miles")
  18919. },
  18920. {
  18921. name: "Playing God",
  18922. height: math.unit(2450, "miles")
  18923. },
  18924. ]
  18925. ))
  18926. characterMakers.push(() => makeCharacter(
  18927. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  18928. {
  18929. front: {
  18930. height: math.unit(4, "feet"),
  18931. weight: math.unit(120, "lb"),
  18932. name: "Front",
  18933. image: {
  18934. source: "./media/characters/shiriko/front.svg",
  18935. extra: 970/934,
  18936. bottom: 5/975
  18937. }
  18938. },
  18939. },
  18940. [
  18941. {
  18942. name: "Normal",
  18943. height: math.unit(4, "feet"),
  18944. default: true
  18945. },
  18946. ]
  18947. ))
  18948. characterMakers.push(() => makeCharacter(
  18949. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  18950. {
  18951. front: {
  18952. height: math.unit(6, "feet"),
  18953. name: "front",
  18954. image: {
  18955. source: "./media/characters/deja/front.svg",
  18956. extra: 926 / 840,
  18957. bottom: 0.07
  18958. }
  18959. },
  18960. },
  18961. [
  18962. {
  18963. name: "Planck Length",
  18964. height: math.unit(1.6e-35, "meters")
  18965. },
  18966. {
  18967. name: "Normal",
  18968. height: math.unit(30.48, "meters"),
  18969. default: true
  18970. },
  18971. {
  18972. name: "Universal",
  18973. height: math.unit(8.8e26, "meters")
  18974. },
  18975. ]
  18976. ))
  18977. characterMakers.push(() => makeCharacter(
  18978. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  18979. {
  18980. side: {
  18981. height: math.unit(8, "feet"),
  18982. weight: math.unit(6300, "lb"),
  18983. name: "Side",
  18984. image: {
  18985. source: "./media/characters/anima/side.svg",
  18986. bottom: 0.035
  18987. }
  18988. },
  18989. },
  18990. [
  18991. {
  18992. name: "Normal",
  18993. height: math.unit(8, "feet"),
  18994. default: true
  18995. },
  18996. ]
  18997. ))
  18998. characterMakers.push(() => makeCharacter(
  18999. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  19000. {
  19001. front: {
  19002. height: math.unit(8, "feet"),
  19003. weight: math.unit(350, "lb"),
  19004. name: "Front",
  19005. image: {
  19006. source: "./media/characters/bianca/front.svg",
  19007. extra: 234 / 225,
  19008. bottom: 0.03
  19009. }
  19010. },
  19011. },
  19012. [
  19013. {
  19014. name: "Normal",
  19015. height: math.unit(8, "feet"),
  19016. default: true
  19017. },
  19018. ]
  19019. ))
  19020. characterMakers.push(() => makeCharacter(
  19021. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  19022. {
  19023. front: {
  19024. height: math.unit(11 + 5/12, "feet"),
  19025. weight: math.unit(1200, "lb"),
  19026. name: "Front",
  19027. image: {
  19028. source: "./media/characters/adinia/front.svg",
  19029. extra: 1767/1641,
  19030. bottom: 44/1811
  19031. },
  19032. extraAttributes: {
  19033. "energyIntake": {
  19034. name: "Energy Intake",
  19035. power: 3,
  19036. type: "energy",
  19037. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19038. },
  19039. }
  19040. },
  19041. back: {
  19042. height: math.unit(11 + 5/12, "feet"),
  19043. weight: math.unit(1200, "lb"),
  19044. name: "Back",
  19045. image: {
  19046. source: "./media/characters/adinia/back.svg",
  19047. extra: 1834/1684,
  19048. bottom: 14/1848
  19049. },
  19050. extraAttributes: {
  19051. "energyIntake": {
  19052. name: "Energy Intake",
  19053. power: 3,
  19054. type: "energy",
  19055. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19056. },
  19057. }
  19058. },
  19059. maw: {
  19060. height: math.unit(3.79, "feet"),
  19061. name: "Maw",
  19062. image: {
  19063. source: "./media/characters/adinia/maw.svg"
  19064. }
  19065. },
  19066. rump: {
  19067. height: math.unit(4.6, "feet"),
  19068. name: "Rump",
  19069. image: {
  19070. source: "./media/characters/adinia/rump.svg"
  19071. }
  19072. },
  19073. },
  19074. [
  19075. {
  19076. name: "Normal",
  19077. height: math.unit(11 + 5 / 12, "feet"),
  19078. default: true
  19079. },
  19080. ]
  19081. ))
  19082. characterMakers.push(() => makeCharacter(
  19083. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  19084. {
  19085. front: {
  19086. height: math.unit(3, "meters"),
  19087. weight: math.unit(200, "kg"),
  19088. name: "Front",
  19089. image: {
  19090. source: "./media/characters/lykasa/front.svg",
  19091. extra: 1076 / 976,
  19092. bottom: 0.06
  19093. }
  19094. },
  19095. },
  19096. [
  19097. {
  19098. name: "Normal",
  19099. height: math.unit(3, "meters")
  19100. },
  19101. {
  19102. name: "Kaiju",
  19103. height: math.unit(120, "meters"),
  19104. default: true
  19105. },
  19106. {
  19107. name: "Mega Kaiju",
  19108. height: math.unit(240, "km")
  19109. },
  19110. {
  19111. name: "Giga Kaiju",
  19112. height: math.unit(400, "megameters")
  19113. },
  19114. {
  19115. name: "Tera Kaiju",
  19116. height: math.unit(800, "gigameters")
  19117. },
  19118. {
  19119. name: "Kaiju Dragon Goddess",
  19120. height: math.unit(26, "zettaparsecs")
  19121. },
  19122. ]
  19123. ))
  19124. characterMakers.push(() => makeCharacter(
  19125. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  19126. {
  19127. side: {
  19128. height: math.unit(283 / 124 * 6, "feet"),
  19129. weight: math.unit(35000, "lb"),
  19130. name: "Side",
  19131. image: {
  19132. source: "./media/characters/malfaren/side.svg",
  19133. extra: 1310/529,
  19134. bottom: 24/1334
  19135. }
  19136. },
  19137. front: {
  19138. height: math.unit(22.36, "feet"),
  19139. weight: math.unit(35000, "lb"),
  19140. name: "Front",
  19141. image: {
  19142. source: "./media/characters/malfaren/front.svg",
  19143. extra: 1237/1115,
  19144. bottom: 32/1269
  19145. }
  19146. },
  19147. maw: {
  19148. height: math.unit(6.9, "feet"),
  19149. name: "Maw",
  19150. image: {
  19151. source: "./media/characters/malfaren/maw.svg"
  19152. }
  19153. },
  19154. dick: {
  19155. height: math.unit(6.19, "feet"),
  19156. name: "Dick",
  19157. image: {
  19158. source: "./media/characters/malfaren/dick.svg"
  19159. }
  19160. },
  19161. eye: {
  19162. height: math.unit(0.69, "feet"),
  19163. name: "Eye",
  19164. image: {
  19165. source: "./media/characters/malfaren/eye.svg"
  19166. }
  19167. },
  19168. },
  19169. [
  19170. {
  19171. name: "Big",
  19172. height: math.unit(283 / 162 * 6, "feet"),
  19173. },
  19174. {
  19175. name: "Bigger",
  19176. height: math.unit(283 / 124 * 6, "feet")
  19177. },
  19178. {
  19179. name: "Massive",
  19180. height: math.unit(283 / 92 * 6, "feet"),
  19181. default: true
  19182. },
  19183. {
  19184. name: "👀💦",
  19185. height: math.unit(283 / 73 * 6, "feet"),
  19186. },
  19187. ]
  19188. ))
  19189. characterMakers.push(() => makeCharacter(
  19190. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  19191. {
  19192. front: {
  19193. height: math.unit(1.7, "m"),
  19194. weight: math.unit(70, "kg"),
  19195. name: "Front",
  19196. image: {
  19197. source: "./media/characters/kernel/front.svg",
  19198. extra: 222 / 210,
  19199. bottom: 0.007
  19200. }
  19201. },
  19202. },
  19203. [
  19204. {
  19205. name: "Nano",
  19206. height: math.unit(17, "micrometers")
  19207. },
  19208. {
  19209. name: "Micro",
  19210. height: math.unit(1.7, "mm")
  19211. },
  19212. {
  19213. name: "Small",
  19214. height: math.unit(1.7, "cm")
  19215. },
  19216. {
  19217. name: "Normal",
  19218. height: math.unit(1.7, "m"),
  19219. default: true
  19220. },
  19221. ]
  19222. ))
  19223. characterMakers.push(() => makeCharacter(
  19224. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  19225. {
  19226. front: {
  19227. height: math.unit(1.75, "meters"),
  19228. weight: math.unit(65, "kg"),
  19229. name: "Front",
  19230. image: {
  19231. source: "./media/characters/jayne-folest/front.svg",
  19232. extra: 2115 / 2007,
  19233. bottom: 0.02
  19234. }
  19235. },
  19236. back: {
  19237. height: math.unit(1.75, "meters"),
  19238. weight: math.unit(65, "kg"),
  19239. name: "Back",
  19240. image: {
  19241. source: "./media/characters/jayne-folest/back.svg",
  19242. extra: 2115 / 2007,
  19243. bottom: 0.005
  19244. }
  19245. },
  19246. frontClothed: {
  19247. height: math.unit(1.75, "meters"),
  19248. weight: math.unit(65, "kg"),
  19249. name: "Front (Clothed)",
  19250. image: {
  19251. source: "./media/characters/jayne-folest/front-clothed.svg",
  19252. extra: 2115 / 2007,
  19253. bottom: 0.035
  19254. }
  19255. },
  19256. hand: {
  19257. height: math.unit(1 / 1.260, "feet"),
  19258. name: "Hand",
  19259. image: {
  19260. source: "./media/characters/jayne-folest/hand.svg"
  19261. }
  19262. },
  19263. foot: {
  19264. height: math.unit(1 / 0.918, "feet"),
  19265. name: "Foot",
  19266. image: {
  19267. source: "./media/characters/jayne-folest/foot.svg"
  19268. }
  19269. },
  19270. },
  19271. [
  19272. {
  19273. name: "Micro",
  19274. height: math.unit(4, "cm")
  19275. },
  19276. {
  19277. name: "Normal",
  19278. height: math.unit(1.75, "meters")
  19279. },
  19280. {
  19281. name: "Macro",
  19282. height: math.unit(47.5, "meters"),
  19283. default: true
  19284. },
  19285. ]
  19286. ))
  19287. characterMakers.push(() => makeCharacter(
  19288. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  19289. {
  19290. front: {
  19291. height: math.unit(180, "cm"),
  19292. weight: math.unit(70, "kg"),
  19293. name: "Front",
  19294. image: {
  19295. source: "./media/characters/algier/front.svg",
  19296. extra: 596 / 572,
  19297. bottom: 0.04
  19298. }
  19299. },
  19300. back: {
  19301. height: math.unit(180, "cm"),
  19302. weight: math.unit(70, "kg"),
  19303. name: "Back",
  19304. image: {
  19305. source: "./media/characters/algier/back.svg",
  19306. extra: 596 / 572,
  19307. bottom: 0.025
  19308. }
  19309. },
  19310. frontdressed: {
  19311. height: math.unit(180, "cm"),
  19312. weight: math.unit(150, "kg"),
  19313. name: "Front-dressed",
  19314. image: {
  19315. source: "./media/characters/algier/front-dressed.svg",
  19316. extra: 596 / 572,
  19317. bottom: 0.038
  19318. }
  19319. },
  19320. },
  19321. [
  19322. {
  19323. name: "Micro",
  19324. height: math.unit(5, "cm")
  19325. },
  19326. {
  19327. name: "Normal",
  19328. height: math.unit(180, "cm"),
  19329. default: true
  19330. },
  19331. {
  19332. name: "Macro",
  19333. height: math.unit(64, "m")
  19334. },
  19335. ]
  19336. ))
  19337. characterMakers.push(() => makeCharacter(
  19338. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  19339. {
  19340. upright: {
  19341. height: math.unit(7, "feet"),
  19342. weight: math.unit(300, "lb"),
  19343. name: "Upright",
  19344. image: {
  19345. source: "./media/characters/pretzel/upright.svg",
  19346. extra: 534 / 522,
  19347. bottom: 0.065
  19348. }
  19349. },
  19350. sprawling: {
  19351. height: math.unit(3.75, "feet"),
  19352. weight: math.unit(300, "lb"),
  19353. name: "Sprawling",
  19354. image: {
  19355. source: "./media/characters/pretzel/sprawling.svg",
  19356. extra: 314 / 281,
  19357. bottom: 0.1
  19358. }
  19359. },
  19360. tongue: {
  19361. height: math.unit(2, "feet"),
  19362. name: "Tongue",
  19363. image: {
  19364. source: "./media/characters/pretzel/tongue.svg"
  19365. }
  19366. },
  19367. },
  19368. [
  19369. {
  19370. name: "Normal",
  19371. height: math.unit(7, "feet"),
  19372. default: true
  19373. },
  19374. {
  19375. name: "Oversized",
  19376. height: math.unit(15, "feet")
  19377. },
  19378. {
  19379. name: "Huge",
  19380. height: math.unit(30, "feet")
  19381. },
  19382. {
  19383. name: "Macro",
  19384. height: math.unit(250, "feet")
  19385. },
  19386. ]
  19387. ))
  19388. characterMakers.push(() => makeCharacter(
  19389. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  19390. {
  19391. sideFront: {
  19392. height: math.unit(5 + 2 / 12, "feet"),
  19393. weight: math.unit(120, "lb"),
  19394. name: "Front Side",
  19395. image: {
  19396. source: "./media/characters/roxi/side-front.svg",
  19397. extra: 2924 / 2717,
  19398. bottom: 0.08
  19399. }
  19400. },
  19401. sideBack: {
  19402. height: math.unit(5 + 2 / 12, "feet"),
  19403. weight: math.unit(120, "lb"),
  19404. name: "Back Side",
  19405. image: {
  19406. source: "./media/characters/roxi/side-back.svg",
  19407. extra: 2904 / 2693,
  19408. bottom: 0.06
  19409. }
  19410. },
  19411. front: {
  19412. height: math.unit(5 + 2 / 12, "feet"),
  19413. weight: math.unit(120, "lb"),
  19414. name: "Front",
  19415. image: {
  19416. source: "./media/characters/roxi/front.svg",
  19417. extra: 2028 / 1907,
  19418. bottom: 0.01
  19419. }
  19420. },
  19421. frontAlt: {
  19422. height: math.unit(5 + 2 / 12, "feet"),
  19423. weight: math.unit(120, "lb"),
  19424. name: "Front (Alt)",
  19425. image: {
  19426. source: "./media/characters/roxi/front-alt.svg",
  19427. extra: 1828 / 1798,
  19428. bottom: 0.01
  19429. }
  19430. },
  19431. sitting: {
  19432. height: math.unit(2.8, "feet"),
  19433. weight: math.unit(120, "lb"),
  19434. name: "Sitting",
  19435. image: {
  19436. source: "./media/characters/roxi/sitting.svg",
  19437. extra: 2660 / 2462,
  19438. bottom: 0.1
  19439. }
  19440. },
  19441. },
  19442. [
  19443. {
  19444. name: "Normal",
  19445. height: math.unit(5 + 2 / 12, "feet"),
  19446. default: true
  19447. },
  19448. ]
  19449. ))
  19450. characterMakers.push(() => makeCharacter(
  19451. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  19452. {
  19453. side: {
  19454. height: math.unit(55, "feet"),
  19455. weight: math.unit(153, "tons"),
  19456. name: "Side",
  19457. image: {
  19458. source: "./media/characters/shadow/side.svg",
  19459. extra: 701 / 628,
  19460. bottom: 0.02
  19461. }
  19462. },
  19463. flying: {
  19464. height: math.unit(145, "feet"),
  19465. weight: math.unit(153, "tons"),
  19466. name: "Flying",
  19467. image: {
  19468. source: "./media/characters/shadow/flying.svg"
  19469. }
  19470. },
  19471. },
  19472. [
  19473. {
  19474. name: "Normal",
  19475. height: math.unit(55, "feet"),
  19476. default: true
  19477. },
  19478. ]
  19479. ))
  19480. characterMakers.push(() => makeCharacter(
  19481. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  19482. {
  19483. front: {
  19484. height: math.unit(6, "feet"),
  19485. weight: math.unit(200, "lb"),
  19486. name: "Front",
  19487. image: {
  19488. source: "./media/characters/marcie/front.svg",
  19489. extra: 960 / 876,
  19490. bottom: 58 / 1017.87
  19491. }
  19492. },
  19493. },
  19494. [
  19495. {
  19496. name: "Macro",
  19497. height: math.unit(1, "mile"),
  19498. default: true
  19499. },
  19500. ]
  19501. ))
  19502. characterMakers.push(() => makeCharacter(
  19503. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  19504. {
  19505. front: {
  19506. height: math.unit(7, "feet"),
  19507. weight: math.unit(200, "lb"),
  19508. name: "Front",
  19509. image: {
  19510. source: "./media/characters/kachina/front.svg",
  19511. extra: 1290.68 / 1119,
  19512. bottom: 36.5 / 1327.18
  19513. }
  19514. },
  19515. },
  19516. [
  19517. {
  19518. name: "Normal",
  19519. height: math.unit(7, "feet"),
  19520. default: true
  19521. },
  19522. ]
  19523. ))
  19524. characterMakers.push(() => makeCharacter(
  19525. { name: "Kash", species: ["canine"], tags: ["feral"] },
  19526. {
  19527. looking: {
  19528. height: math.unit(2, "meters"),
  19529. weight: math.unit(300, "kg"),
  19530. name: "Looking",
  19531. image: {
  19532. source: "./media/characters/kash/looking.svg",
  19533. extra: 474 / 344,
  19534. bottom: 0.03
  19535. }
  19536. },
  19537. side: {
  19538. height: math.unit(2, "meters"),
  19539. weight: math.unit(300, "kg"),
  19540. name: "Side",
  19541. image: {
  19542. source: "./media/characters/kash/side.svg",
  19543. extra: 302 / 251,
  19544. bottom: 0.03
  19545. }
  19546. },
  19547. front: {
  19548. height: math.unit(2, "meters"),
  19549. weight: math.unit(300, "kg"),
  19550. name: "Front",
  19551. image: {
  19552. source: "./media/characters/kash/front.svg",
  19553. extra: 495 / 360,
  19554. bottom: 0.015
  19555. }
  19556. },
  19557. },
  19558. [
  19559. {
  19560. name: "Normal",
  19561. height: math.unit(2, "meters"),
  19562. default: true
  19563. },
  19564. {
  19565. name: "Big",
  19566. height: math.unit(3, "meters")
  19567. },
  19568. {
  19569. name: "Large",
  19570. height: math.unit(5, "meters")
  19571. },
  19572. ]
  19573. ))
  19574. characterMakers.push(() => makeCharacter(
  19575. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  19576. {
  19577. feeding: {
  19578. height: math.unit(6.7, "feet"),
  19579. weight: math.unit(350, "lb"),
  19580. name: "Feeding",
  19581. image: {
  19582. source: "./media/characters/lalim/feeding.svg",
  19583. }
  19584. },
  19585. },
  19586. [
  19587. {
  19588. name: "Normal",
  19589. height: math.unit(6.7, "feet"),
  19590. default: true
  19591. },
  19592. ]
  19593. ))
  19594. characterMakers.push(() => makeCharacter(
  19595. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  19596. {
  19597. front: {
  19598. height: math.unit(9.5, "feet"),
  19599. weight: math.unit(600, "lb"),
  19600. name: "Front",
  19601. image: {
  19602. source: "./media/characters/de'vout/front.svg",
  19603. extra: 1443 / 1328,
  19604. bottom: 0.025
  19605. }
  19606. },
  19607. back: {
  19608. height: math.unit(9.5, "feet"),
  19609. weight: math.unit(600, "lb"),
  19610. name: "Back",
  19611. image: {
  19612. source: "./media/characters/de'vout/back.svg",
  19613. extra: 1443 / 1328
  19614. }
  19615. },
  19616. frontDressed: {
  19617. height: math.unit(9.5, "feet"),
  19618. weight: math.unit(600, "lb"),
  19619. name: "Front (Dressed",
  19620. image: {
  19621. source: "./media/characters/de'vout/front-dressed.svg",
  19622. extra: 1443 / 1328,
  19623. bottom: 0.025
  19624. }
  19625. },
  19626. backDressed: {
  19627. height: math.unit(9.5, "feet"),
  19628. weight: math.unit(600, "lb"),
  19629. name: "Back (Dressed",
  19630. image: {
  19631. source: "./media/characters/de'vout/back-dressed.svg",
  19632. extra: 1443 / 1328
  19633. }
  19634. },
  19635. },
  19636. [
  19637. {
  19638. name: "Normal",
  19639. height: math.unit(9.5, "feet"),
  19640. default: true
  19641. },
  19642. ]
  19643. ))
  19644. characterMakers.push(() => makeCharacter(
  19645. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  19646. {
  19647. front: {
  19648. height: math.unit(8, "feet"),
  19649. weight: math.unit(225, "lb"),
  19650. name: "Front",
  19651. image: {
  19652. source: "./media/characters/talana/front.svg",
  19653. extra: 1410 / 1300,
  19654. bottom: 0.015
  19655. }
  19656. },
  19657. frontDressed: {
  19658. height: math.unit(8, "feet"),
  19659. weight: math.unit(225, "lb"),
  19660. name: "Front (Dressed",
  19661. image: {
  19662. source: "./media/characters/talana/front-dressed.svg",
  19663. extra: 1410 / 1300,
  19664. bottom: 0.015
  19665. }
  19666. },
  19667. },
  19668. [
  19669. {
  19670. name: "Normal",
  19671. height: math.unit(8, "feet"),
  19672. default: true
  19673. },
  19674. ]
  19675. ))
  19676. characterMakers.push(() => makeCharacter(
  19677. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19678. {
  19679. side: {
  19680. height: math.unit(7.2, "feet"),
  19681. weight: math.unit(150, "lb"),
  19682. name: "Side",
  19683. image: {
  19684. source: "./media/characters/xeauvok/side.svg",
  19685. extra: 1975 / 1523,
  19686. bottom: 0.07
  19687. }
  19688. },
  19689. },
  19690. [
  19691. {
  19692. name: "Normal",
  19693. height: math.unit(7.2, "feet"),
  19694. default: true
  19695. },
  19696. ]
  19697. ))
  19698. characterMakers.push(() => makeCharacter(
  19699. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  19700. {
  19701. side: {
  19702. height: math.unit(4, "meters"),
  19703. weight: math.unit(2200, "kg"),
  19704. name: "Side",
  19705. image: {
  19706. source: "./media/characters/zara/side.svg",
  19707. extra: 765/744,
  19708. bottom: 156/921
  19709. }
  19710. },
  19711. },
  19712. [
  19713. {
  19714. name: "Normal",
  19715. height: math.unit(4, "meters"),
  19716. default: true
  19717. },
  19718. ]
  19719. ))
  19720. characterMakers.push(() => makeCharacter(
  19721. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  19722. {
  19723. side: {
  19724. height: math.unit(6, "feet"),
  19725. weight: math.unit(150, "lb"),
  19726. name: "Side",
  19727. image: {
  19728. source: "./media/characters/richard-dragon/side.svg",
  19729. extra: 845 / 340,
  19730. bottom: 0.017
  19731. }
  19732. },
  19733. maw: {
  19734. height: math.unit(2.97, "feet"),
  19735. name: "Maw",
  19736. image: {
  19737. source: "./media/characters/richard-dragon/maw.svg"
  19738. }
  19739. },
  19740. },
  19741. [
  19742. ]
  19743. ))
  19744. characterMakers.push(() => makeCharacter(
  19745. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  19746. {
  19747. front: {
  19748. height: math.unit(4, "feet"),
  19749. weight: math.unit(100, "lb"),
  19750. name: "Front",
  19751. image: {
  19752. source: "./media/characters/richard-smeargle/front.svg",
  19753. extra: 2952 / 2820,
  19754. bottom: 0.028
  19755. }
  19756. },
  19757. },
  19758. [
  19759. {
  19760. name: "Normal",
  19761. height: math.unit(4, "feet"),
  19762. default: true
  19763. },
  19764. {
  19765. name: "Dynamax",
  19766. height: math.unit(20, "meters")
  19767. },
  19768. ]
  19769. ))
  19770. characterMakers.push(() => makeCharacter(
  19771. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  19772. {
  19773. front: {
  19774. height: math.unit(6, "feet"),
  19775. weight: math.unit(110, "lb"),
  19776. name: "Front",
  19777. image: {
  19778. source: "./media/characters/klay/front.svg",
  19779. extra: 962 / 883,
  19780. bottom: 0.04
  19781. }
  19782. },
  19783. back: {
  19784. height: math.unit(6, "feet"),
  19785. weight: math.unit(110, "lb"),
  19786. name: "Back",
  19787. image: {
  19788. source: "./media/characters/klay/back.svg",
  19789. extra: 962 / 883
  19790. }
  19791. },
  19792. beans: {
  19793. height: math.unit(1.15, "feet"),
  19794. name: "Beans",
  19795. image: {
  19796. source: "./media/characters/klay/beans.svg"
  19797. }
  19798. },
  19799. },
  19800. [
  19801. {
  19802. name: "Micro",
  19803. height: math.unit(6, "inches")
  19804. },
  19805. {
  19806. name: "Mini",
  19807. height: math.unit(3, "feet")
  19808. },
  19809. {
  19810. name: "Normal",
  19811. height: math.unit(6, "feet"),
  19812. default: true
  19813. },
  19814. {
  19815. name: "Big",
  19816. height: math.unit(25, "feet")
  19817. },
  19818. {
  19819. name: "Macro",
  19820. height: math.unit(100, "feet")
  19821. },
  19822. {
  19823. name: "Megamacro",
  19824. height: math.unit(400, "feet")
  19825. },
  19826. ]
  19827. ))
  19828. characterMakers.push(() => makeCharacter(
  19829. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  19830. {
  19831. front: {
  19832. height: math.unit(6, "feet"),
  19833. weight: math.unit(160, "lb"),
  19834. name: "Front",
  19835. image: {
  19836. source: "./media/characters/marcus/front.svg",
  19837. extra: 734 / 676,
  19838. bottom: 0.03
  19839. }
  19840. },
  19841. },
  19842. [
  19843. {
  19844. name: "Little",
  19845. height: math.unit(6, "feet")
  19846. },
  19847. {
  19848. name: "Normal",
  19849. height: math.unit(110, "feet"),
  19850. default: true
  19851. },
  19852. {
  19853. name: "Macro",
  19854. height: math.unit(250, "feet")
  19855. },
  19856. {
  19857. name: "Megamacro",
  19858. height: math.unit(1000, "feet")
  19859. },
  19860. ]
  19861. ))
  19862. characterMakers.push(() => makeCharacter(
  19863. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  19864. {
  19865. front: {
  19866. height: math.unit(7, "feet"),
  19867. weight: math.unit(275, "lb"),
  19868. name: "Front",
  19869. image: {
  19870. source: "./media/characters/claude-delroute/front.svg",
  19871. extra: 902/827,
  19872. bottom: 26/928
  19873. }
  19874. },
  19875. side: {
  19876. height: math.unit(7, "feet"),
  19877. weight: math.unit(275, "lb"),
  19878. name: "Side",
  19879. image: {
  19880. source: "./media/characters/claude-delroute/side.svg",
  19881. extra: 908/853,
  19882. bottom: 16/924
  19883. }
  19884. },
  19885. back: {
  19886. height: math.unit(7, "feet"),
  19887. weight: math.unit(275, "lb"),
  19888. name: "Back",
  19889. image: {
  19890. source: "./media/characters/claude-delroute/back.svg",
  19891. extra: 911/829,
  19892. bottom: 18/929
  19893. }
  19894. },
  19895. maw: {
  19896. height: math.unit(0.6407, "meters"),
  19897. name: "Maw",
  19898. image: {
  19899. source: "./media/characters/claude-delroute/maw.svg"
  19900. }
  19901. },
  19902. },
  19903. [
  19904. {
  19905. name: "Normal",
  19906. height: math.unit(7, "feet"),
  19907. default: true
  19908. },
  19909. {
  19910. name: "Lorge",
  19911. height: math.unit(20, "feet")
  19912. },
  19913. ]
  19914. ))
  19915. characterMakers.push(() => makeCharacter(
  19916. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  19917. {
  19918. front: {
  19919. height: math.unit(8 + 4 / 12, "feet"),
  19920. weight: math.unit(600, "lb"),
  19921. name: "Front",
  19922. image: {
  19923. source: "./media/characters/dragonien/front.svg",
  19924. extra: 100 / 94,
  19925. bottom: 3.3 / 103.3445
  19926. }
  19927. },
  19928. back: {
  19929. height: math.unit(8 + 4 / 12, "feet"),
  19930. weight: math.unit(600, "lb"),
  19931. name: "Back",
  19932. image: {
  19933. source: "./media/characters/dragonien/back.svg",
  19934. extra: 776 / 746,
  19935. bottom: 6.4 / 782.0616
  19936. }
  19937. },
  19938. foot: {
  19939. height: math.unit(1.54, "feet"),
  19940. name: "Foot",
  19941. image: {
  19942. source: "./media/characters/dragonien/foot.svg",
  19943. }
  19944. },
  19945. },
  19946. [
  19947. {
  19948. name: "Normal",
  19949. height: math.unit(8 + 4 / 12, "feet"),
  19950. default: true
  19951. },
  19952. {
  19953. name: "Macro",
  19954. height: math.unit(200, "feet")
  19955. },
  19956. {
  19957. name: "Megamacro",
  19958. height: math.unit(1, "mile")
  19959. },
  19960. {
  19961. name: "Gigamacro",
  19962. height: math.unit(1000, "miles")
  19963. },
  19964. ]
  19965. ))
  19966. characterMakers.push(() => makeCharacter(
  19967. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  19968. {
  19969. front: {
  19970. height: math.unit(5 + 2 / 12, "feet"),
  19971. weight: math.unit(110, "lb"),
  19972. name: "Front",
  19973. image: {
  19974. source: "./media/characters/desta/front.svg",
  19975. extra: 767 / 726,
  19976. bottom: 11.7 / 779
  19977. }
  19978. },
  19979. back: {
  19980. height: math.unit(5 + 2 / 12, "feet"),
  19981. weight: math.unit(110, "lb"),
  19982. name: "Back",
  19983. image: {
  19984. source: "./media/characters/desta/back.svg",
  19985. extra: 777 / 728,
  19986. bottom: 6 / 784
  19987. }
  19988. },
  19989. frontAlt: {
  19990. height: math.unit(5 + 2 / 12, "feet"),
  19991. weight: math.unit(110, "lb"),
  19992. name: "Front",
  19993. image: {
  19994. source: "./media/characters/desta/front-alt.svg",
  19995. extra: 1482 / 1417
  19996. }
  19997. },
  19998. side: {
  19999. height: math.unit(5 + 2 / 12, "feet"),
  20000. weight: math.unit(110, "lb"),
  20001. name: "Side",
  20002. image: {
  20003. source: "./media/characters/desta/side.svg",
  20004. extra: 2579 / 2491,
  20005. bottom: 0.053
  20006. }
  20007. },
  20008. },
  20009. [
  20010. {
  20011. name: "Micro",
  20012. height: math.unit(6, "inches")
  20013. },
  20014. {
  20015. name: "Normal",
  20016. height: math.unit(5 + 2 / 12, "feet"),
  20017. default: true
  20018. },
  20019. {
  20020. name: "Macro",
  20021. height: math.unit(62, "feet")
  20022. },
  20023. {
  20024. name: "Megamacro",
  20025. height: math.unit(1800, "feet")
  20026. },
  20027. ]
  20028. ))
  20029. characterMakers.push(() => makeCharacter(
  20030. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  20031. {
  20032. front: {
  20033. height: math.unit(10, "feet"),
  20034. weight: math.unit(700, "lb"),
  20035. name: "Front",
  20036. image: {
  20037. source: "./media/characters/storm-alystar/front.svg",
  20038. extra: 2112 / 1898,
  20039. bottom: 0.034
  20040. }
  20041. },
  20042. },
  20043. [
  20044. {
  20045. name: "Micro",
  20046. height: math.unit(3.5, "inches")
  20047. },
  20048. {
  20049. name: "Normal",
  20050. height: math.unit(10, "feet"),
  20051. default: true
  20052. },
  20053. {
  20054. name: "Macro",
  20055. height: math.unit(400, "feet")
  20056. },
  20057. {
  20058. name: "Deific",
  20059. height: math.unit(60, "miles")
  20060. },
  20061. ]
  20062. ))
  20063. characterMakers.push(() => makeCharacter(
  20064. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  20065. {
  20066. front: {
  20067. height: math.unit(2.35, "meters"),
  20068. weight: math.unit(119, "kg"),
  20069. name: "Front",
  20070. image: {
  20071. source: "./media/characters/ilia/front.svg",
  20072. extra: 1285 / 1255,
  20073. bottom: 0.06
  20074. }
  20075. },
  20076. },
  20077. [
  20078. {
  20079. name: "Normal",
  20080. height: math.unit(2.35, "meters")
  20081. },
  20082. {
  20083. name: "Macro",
  20084. height: math.unit(140, "meters"),
  20085. default: true
  20086. },
  20087. {
  20088. name: "Megamacro",
  20089. height: math.unit(100, "miles")
  20090. },
  20091. ]
  20092. ))
  20093. characterMakers.push(() => makeCharacter(
  20094. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  20095. {
  20096. front: {
  20097. height: math.unit(6 + 5 / 12, "feet"),
  20098. weight: math.unit(190, "lb"),
  20099. name: "Front",
  20100. image: {
  20101. source: "./media/characters/kingdead/front.svg",
  20102. extra: 1228 / 1177
  20103. }
  20104. },
  20105. },
  20106. [
  20107. {
  20108. name: "Micro",
  20109. height: math.unit(7, "inches")
  20110. },
  20111. {
  20112. name: "Normal",
  20113. height: math.unit(6 + 5 / 12, "feet")
  20114. },
  20115. {
  20116. name: "Macro",
  20117. height: math.unit(150, "feet"),
  20118. default: true
  20119. },
  20120. {
  20121. name: "Megamacro",
  20122. height: math.unit(200, "miles")
  20123. },
  20124. ]
  20125. ))
  20126. characterMakers.push(() => makeCharacter(
  20127. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  20128. {
  20129. front: {
  20130. height: math.unit(8, "feet"),
  20131. weight: math.unit(600, "lb"),
  20132. name: "Front",
  20133. image: {
  20134. source: "./media/characters/kyrehx/front.svg",
  20135. extra: 1195 / 1095,
  20136. bottom: 0.034
  20137. }
  20138. },
  20139. },
  20140. [
  20141. {
  20142. name: "Micro",
  20143. height: math.unit(2, "inches")
  20144. },
  20145. {
  20146. name: "Normal",
  20147. height: math.unit(8, "feet"),
  20148. default: true
  20149. },
  20150. {
  20151. name: "Macro",
  20152. height: math.unit(255, "feet")
  20153. },
  20154. ]
  20155. ))
  20156. characterMakers.push(() => makeCharacter(
  20157. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  20158. {
  20159. front: {
  20160. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20161. weight: math.unit(184, "lb"),
  20162. name: "Front",
  20163. image: {
  20164. source: "./media/characters/xang/front.svg",
  20165. extra: 845 / 755
  20166. }
  20167. },
  20168. },
  20169. [
  20170. {
  20171. name: "Normal",
  20172. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20173. default: true
  20174. },
  20175. {
  20176. name: "Macro",
  20177. height: math.unit(0.935 * 146, "feet")
  20178. },
  20179. {
  20180. name: "Megamacro",
  20181. height: math.unit(0.935 * 3, "miles")
  20182. },
  20183. ]
  20184. ))
  20185. characterMakers.push(() => makeCharacter(
  20186. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  20187. {
  20188. frontDressed: {
  20189. height: math.unit(5 + 7 / 12, "feet"),
  20190. weight: math.unit(140, "lb"),
  20191. name: "Front (Dressed)",
  20192. image: {
  20193. source: "./media/characters/doc-weardno/front-dressed.svg",
  20194. extra: 263 / 234
  20195. }
  20196. },
  20197. backDressed: {
  20198. height: math.unit(5 + 7 / 12, "feet"),
  20199. weight: math.unit(140, "lb"),
  20200. name: "Back (Dressed)",
  20201. image: {
  20202. source: "./media/characters/doc-weardno/back-dressed.svg",
  20203. extra: 266 / 238
  20204. }
  20205. },
  20206. front: {
  20207. height: math.unit(5 + 7 / 12, "feet"),
  20208. weight: math.unit(140, "lb"),
  20209. name: "Front",
  20210. image: {
  20211. source: "./media/characters/doc-weardno/front.svg",
  20212. extra: 254 / 233
  20213. }
  20214. },
  20215. },
  20216. [
  20217. {
  20218. name: "Micro",
  20219. height: math.unit(3, "inches")
  20220. },
  20221. {
  20222. name: "Normal",
  20223. height: math.unit(5 + 7 / 12, "feet"),
  20224. default: true
  20225. },
  20226. {
  20227. name: "Macro",
  20228. height: math.unit(25, "feet")
  20229. },
  20230. {
  20231. name: "Megamacro",
  20232. height: math.unit(2, "miles")
  20233. },
  20234. ]
  20235. ))
  20236. characterMakers.push(() => makeCharacter(
  20237. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  20238. {
  20239. front: {
  20240. height: math.unit(6 + 2 / 12, "feet"),
  20241. weight: math.unit(153, "lb"),
  20242. name: "Front",
  20243. image: {
  20244. source: "./media/characters/seth-whilst/front.svg",
  20245. bottom: 0.07
  20246. }
  20247. },
  20248. },
  20249. [
  20250. {
  20251. name: "Micro",
  20252. height: math.unit(5, "inches")
  20253. },
  20254. {
  20255. name: "Normal",
  20256. height: math.unit(6 + 2 / 12, "feet"),
  20257. default: true
  20258. },
  20259. ]
  20260. ))
  20261. characterMakers.push(() => makeCharacter(
  20262. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  20263. {
  20264. front: {
  20265. height: math.unit(3, "inches"),
  20266. weight: math.unit(8, "grams"),
  20267. name: "Front",
  20268. image: {
  20269. source: "./media/characters/pocket-jabari/front.svg",
  20270. extra: 1024 / 974,
  20271. bottom: 0.039
  20272. }
  20273. },
  20274. },
  20275. [
  20276. {
  20277. name: "Minimicro",
  20278. height: math.unit(8, "mm")
  20279. },
  20280. {
  20281. name: "Micro",
  20282. height: math.unit(3, "inches"),
  20283. default: true
  20284. },
  20285. {
  20286. name: "Normal",
  20287. height: math.unit(3, "feet")
  20288. },
  20289. ]
  20290. ))
  20291. characterMakers.push(() => makeCharacter(
  20292. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  20293. {
  20294. frontDressed: {
  20295. height: math.unit(15, "feet"),
  20296. weight: math.unit(3280, "lb"),
  20297. name: "Front (Dressed)",
  20298. image: {
  20299. source: "./media/characters/sapphy/front-dressed.svg",
  20300. extra: 1951/1654,
  20301. bottom: 194/2145
  20302. },
  20303. form: "anthro",
  20304. default: true
  20305. },
  20306. backDressed: {
  20307. height: math.unit(15, "feet"),
  20308. weight: math.unit(3280, "lb"),
  20309. name: "Back (Dressed)",
  20310. image: {
  20311. source: "./media/characters/sapphy/back-dressed.svg",
  20312. extra: 2058/1918,
  20313. bottom: 125/2183
  20314. },
  20315. form: "anthro"
  20316. },
  20317. frontNude: {
  20318. height: math.unit(15, "feet"),
  20319. weight: math.unit(3280, "lb"),
  20320. name: "Front (Nude)",
  20321. image: {
  20322. source: "./media/characters/sapphy/front-nude.svg",
  20323. extra: 1951/1654,
  20324. bottom: 194/2145
  20325. },
  20326. form: "anthro"
  20327. },
  20328. backNude: {
  20329. height: math.unit(15, "feet"),
  20330. weight: math.unit(3280, "lb"),
  20331. name: "Back (Nude)",
  20332. image: {
  20333. source: "./media/characters/sapphy/back-nude.svg",
  20334. extra: 2058/1918,
  20335. bottom: 125/2183
  20336. },
  20337. form: "anthro"
  20338. },
  20339. full: {
  20340. height: math.unit(15, "feet"),
  20341. weight: math.unit(3280, "lb"),
  20342. name: "Full",
  20343. image: {
  20344. source: "./media/characters/sapphy/full.svg",
  20345. extra: 1396/1317,
  20346. bottom: 44/1440
  20347. },
  20348. form: "anthro"
  20349. },
  20350. dick: {
  20351. height: math.unit(3.8, "feet"),
  20352. name: "Dick",
  20353. image: {
  20354. source: "./media/characters/sapphy/dick.svg"
  20355. },
  20356. form: "anthro"
  20357. },
  20358. feral: {
  20359. height: math.unit(35, "feet"),
  20360. weight: math.unit(160, "tons"),
  20361. name: "Feral",
  20362. image: {
  20363. source: "./media/characters/sapphy/feral.svg",
  20364. extra: 1050/573,
  20365. bottom: 60/1110
  20366. },
  20367. form: "feral",
  20368. default: true
  20369. },
  20370. },
  20371. [
  20372. {
  20373. name: "Normal",
  20374. height: math.unit(15, "feet"),
  20375. form: "anthro"
  20376. },
  20377. {
  20378. name: "Casual Macro",
  20379. height: math.unit(120, "feet"),
  20380. form: "anthro"
  20381. },
  20382. {
  20383. name: "Macro",
  20384. height: math.unit(2150, "feet"),
  20385. default: true,
  20386. form: "anthro"
  20387. },
  20388. {
  20389. name: "Megamacro",
  20390. height: math.unit(8, "miles"),
  20391. form: "anthro"
  20392. },
  20393. {
  20394. name: "Galaxy Mom",
  20395. height: math.unit(6, "megalightyears"),
  20396. form: "anthro"
  20397. },
  20398. {
  20399. name: "Normal",
  20400. height: math.unit(35, "feet"),
  20401. form: "feral",
  20402. default: true
  20403. },
  20404. {
  20405. name: "Macro",
  20406. height: math.unit(300, "feet"),
  20407. form: "feral"
  20408. },
  20409. {
  20410. name: "Galaxy Mom",
  20411. height: math.unit(10, "megalightyears"),
  20412. form: "feral"
  20413. },
  20414. ],
  20415. {
  20416. "anthro": {
  20417. name: "Anthro",
  20418. default: true
  20419. },
  20420. "feral": {
  20421. name: "Feral"
  20422. }
  20423. }
  20424. ))
  20425. characterMakers.push(() => makeCharacter(
  20426. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  20427. {
  20428. hyenaFront: {
  20429. height: math.unit(6, "feet"),
  20430. weight: math.unit(190, "lb"),
  20431. name: "Front",
  20432. image: {
  20433. source: "./media/characters/kiro/hyena-front.svg",
  20434. extra: 927/839,
  20435. bottom: 91/1018
  20436. },
  20437. form: "hyena",
  20438. default: true
  20439. },
  20440. front: {
  20441. height: math.unit(6, "feet"),
  20442. weight: math.unit(170, "lb"),
  20443. name: "Front",
  20444. image: {
  20445. source: "./media/characters/kiro/front.svg",
  20446. extra: 1064 / 1012,
  20447. bottom: 0.052
  20448. },
  20449. form: "folf",
  20450. default: true
  20451. },
  20452. },
  20453. [
  20454. {
  20455. name: "Micro",
  20456. height: math.unit(6, "inches"),
  20457. form: "folf"
  20458. },
  20459. {
  20460. name: "Normal",
  20461. height: math.unit(6, "feet"),
  20462. form: "folf",
  20463. default: true
  20464. },
  20465. {
  20466. name: "Macro",
  20467. height: math.unit(72, "feet"),
  20468. form: "folf"
  20469. },
  20470. {
  20471. name: "Micro",
  20472. height: math.unit(6, "inches"),
  20473. form: "hyena"
  20474. },
  20475. {
  20476. name: "Normal",
  20477. height: math.unit(6, "feet"),
  20478. form: "hyena",
  20479. default: true
  20480. },
  20481. {
  20482. name: "Macro",
  20483. height: math.unit(72, "feet"),
  20484. form: "hyena"
  20485. },
  20486. ],
  20487. {
  20488. "hyena": {
  20489. name: "Hyena",
  20490. default: true
  20491. },
  20492. "folf": {
  20493. name: "Folf",
  20494. },
  20495. }
  20496. ))
  20497. characterMakers.push(() => makeCharacter(
  20498. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  20499. {
  20500. front: {
  20501. height: math.unit(5 + 9 / 12, "feet"),
  20502. weight: math.unit(175, "lb"),
  20503. name: "Front",
  20504. image: {
  20505. source: "./media/characters/irishfox/front.svg",
  20506. extra: 1912 / 1680,
  20507. bottom: 0.02
  20508. }
  20509. },
  20510. },
  20511. [
  20512. {
  20513. name: "Nano",
  20514. height: math.unit(1, "mm")
  20515. },
  20516. {
  20517. name: "Micro",
  20518. height: math.unit(2, "inches")
  20519. },
  20520. {
  20521. name: "Normal",
  20522. height: math.unit(5 + 9 / 12, "feet"),
  20523. default: true
  20524. },
  20525. {
  20526. name: "Macro",
  20527. height: math.unit(45, "feet")
  20528. },
  20529. ]
  20530. ))
  20531. characterMakers.push(() => makeCharacter(
  20532. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  20533. {
  20534. front: {
  20535. height: math.unit(6 + 1 / 12, "feet"),
  20536. weight: math.unit(75, "lb"),
  20537. name: "Front",
  20538. image: {
  20539. source: "./media/characters/aronai-sieyes/front.svg",
  20540. extra: 1532/1450,
  20541. bottom: 42/1574
  20542. }
  20543. },
  20544. side: {
  20545. height: math.unit(6 + 1 / 12, "feet"),
  20546. weight: math.unit(75, "lb"),
  20547. name: "Side",
  20548. image: {
  20549. source: "./media/characters/aronai-sieyes/side.svg",
  20550. extra: 1422/1365,
  20551. bottom: 148/1570
  20552. }
  20553. },
  20554. back: {
  20555. height: math.unit(6 + 1 / 12, "feet"),
  20556. weight: math.unit(75, "lb"),
  20557. name: "Back",
  20558. image: {
  20559. source: "./media/characters/aronai-sieyes/back.svg",
  20560. extra: 1526/1464,
  20561. bottom: 51/1577
  20562. }
  20563. },
  20564. dressed: {
  20565. height: math.unit(6 + 1 / 12, "feet"),
  20566. weight: math.unit(75, "lb"),
  20567. name: "Dressed",
  20568. image: {
  20569. source: "./media/characters/aronai-sieyes/dressed.svg",
  20570. extra: 1559/1483,
  20571. bottom: 39/1598
  20572. }
  20573. },
  20574. slit: {
  20575. height: math.unit(1.3, "feet"),
  20576. name: "Slit",
  20577. image: {
  20578. source: "./media/characters/aronai-sieyes/slit.svg"
  20579. }
  20580. },
  20581. slitSpread: {
  20582. height: math.unit(0.9, "feet"),
  20583. name: "Slit (Spread)",
  20584. image: {
  20585. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  20586. }
  20587. },
  20588. rump: {
  20589. height: math.unit(1.3, "feet"),
  20590. name: "Rump",
  20591. image: {
  20592. source: "./media/characters/aronai-sieyes/rump.svg"
  20593. }
  20594. },
  20595. maw: {
  20596. height: math.unit(1.25, "feet"),
  20597. name: "Maw",
  20598. image: {
  20599. source: "./media/characters/aronai-sieyes/maw.svg"
  20600. }
  20601. },
  20602. feral: {
  20603. height: math.unit(18, "feet"),
  20604. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  20605. name: "Feral",
  20606. image: {
  20607. source: "./media/characters/aronai-sieyes/feral.svg",
  20608. extra: 1530 / 1240,
  20609. bottom: 0.035
  20610. }
  20611. },
  20612. },
  20613. [
  20614. {
  20615. name: "Micro",
  20616. height: math.unit(2, "inches")
  20617. },
  20618. {
  20619. name: "Normal",
  20620. height: math.unit(6 + 1 / 12, "feet"),
  20621. default: true
  20622. }
  20623. ]
  20624. ))
  20625. characterMakers.push(() => makeCharacter(
  20626. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  20627. {
  20628. front: {
  20629. height: math.unit(12, "feet"),
  20630. weight: math.unit(410, "kg"),
  20631. name: "Front",
  20632. image: {
  20633. source: "./media/characters/xuna/front.svg",
  20634. extra: 2184 / 1980
  20635. }
  20636. },
  20637. side: {
  20638. height: math.unit(12, "feet"),
  20639. weight: math.unit(410, "kg"),
  20640. name: "Side",
  20641. image: {
  20642. source: "./media/characters/xuna/side.svg",
  20643. extra: 2184 / 1980
  20644. }
  20645. },
  20646. back: {
  20647. height: math.unit(12, "feet"),
  20648. weight: math.unit(410, "kg"),
  20649. name: "Back",
  20650. image: {
  20651. source: "./media/characters/xuna/back.svg",
  20652. extra: 2184 / 1980
  20653. }
  20654. },
  20655. },
  20656. [
  20657. {
  20658. name: "Nano glow",
  20659. height: math.unit(10, "nm")
  20660. },
  20661. {
  20662. name: "Micro floof",
  20663. height: math.unit(0.3, "m")
  20664. },
  20665. {
  20666. name: "Huggable softy boi",
  20667. height: math.unit(3.6576, "m"),
  20668. default: true
  20669. },
  20670. {
  20671. name: "Admirable floof",
  20672. height: math.unit(80, "meters")
  20673. },
  20674. {
  20675. name: "Gentle macro",
  20676. height: math.unit(300, "meters")
  20677. },
  20678. {
  20679. name: "Very careful floof",
  20680. height: math.unit(3200, "meters")
  20681. },
  20682. {
  20683. name: "The mega floof",
  20684. height: math.unit(36000, "meters")
  20685. },
  20686. {
  20687. name: "Giga-fur-Wicker",
  20688. height: math.unit(4800000, "meters")
  20689. },
  20690. {
  20691. name: "Licky world",
  20692. height: math.unit(20000000, "meters")
  20693. },
  20694. {
  20695. name: "Floofy cyan sun",
  20696. height: math.unit(1500000000, "meters")
  20697. },
  20698. {
  20699. name: "Milky Wicker",
  20700. height: math.unit(1000000000000000000000, "meters")
  20701. },
  20702. {
  20703. name: "The observing Wicker",
  20704. height: math.unit(999999999999999999999999999, "meters")
  20705. },
  20706. ]
  20707. ))
  20708. characterMakers.push(() => makeCharacter(
  20709. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20710. {
  20711. front: {
  20712. height: math.unit(5 + 9 / 12, "feet"),
  20713. weight: math.unit(150, "lb"),
  20714. name: "Front",
  20715. image: {
  20716. source: "./media/characters/arokha-sieyes/front.svg",
  20717. extra: 1425 / 1284,
  20718. bottom: 0.05
  20719. }
  20720. },
  20721. },
  20722. [
  20723. {
  20724. name: "Normal",
  20725. height: math.unit(5 + 9 / 12, "feet")
  20726. },
  20727. {
  20728. name: "Macro",
  20729. height: math.unit(30, "meters"),
  20730. default: true
  20731. },
  20732. ]
  20733. ))
  20734. characterMakers.push(() => makeCharacter(
  20735. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20736. {
  20737. front: {
  20738. height: math.unit(6, "feet"),
  20739. weight: math.unit(180, "lb"),
  20740. name: "Front",
  20741. image: {
  20742. source: "./media/characters/arokh-sieyes/front.svg",
  20743. extra: 1830 / 1769,
  20744. bottom: 0.01
  20745. }
  20746. },
  20747. },
  20748. [
  20749. {
  20750. name: "Normal",
  20751. height: math.unit(6, "feet")
  20752. },
  20753. {
  20754. name: "Macro",
  20755. height: math.unit(30, "meters"),
  20756. default: true
  20757. },
  20758. ]
  20759. ))
  20760. characterMakers.push(() => makeCharacter(
  20761. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  20762. {
  20763. side: {
  20764. height: math.unit(13 + 1 / 12, "feet"),
  20765. weight: math.unit(8.5, "tonnes"),
  20766. preyCapacity: math.unit(36, "people"),
  20767. name: "Side",
  20768. image: {
  20769. source: "./media/characters/goldeneye/side.svg",
  20770. extra: 1139/741,
  20771. bottom: 98/1237
  20772. }
  20773. },
  20774. front: {
  20775. height: math.unit(5.1, "feet"),
  20776. weight: math.unit(8.5, "tonnes"),
  20777. preyCapacity: math.unit(36, "people"),
  20778. name: "Front",
  20779. image: {
  20780. source: "./media/characters/goldeneye/front.svg",
  20781. extra: 635/365,
  20782. bottom: 598/1233
  20783. }
  20784. },
  20785. maw: {
  20786. height: math.unit(6.6, "feet"),
  20787. name: "Maw",
  20788. image: {
  20789. source: "./media/characters/goldeneye/maw.svg"
  20790. }
  20791. },
  20792. headFront: {
  20793. height: math.unit(8, "feet"),
  20794. name: "Head (Front)",
  20795. image: {
  20796. source: "./media/characters/goldeneye/head-front.svg"
  20797. }
  20798. },
  20799. headSide: {
  20800. height: math.unit(6, "feet"),
  20801. name: "Head (Side)",
  20802. image: {
  20803. source: "./media/characters/goldeneye/head-side.svg"
  20804. }
  20805. },
  20806. headBack: {
  20807. height: math.unit(8, "feet"),
  20808. name: "Head (Back)",
  20809. image: {
  20810. source: "./media/characters/goldeneye/head-back.svg"
  20811. }
  20812. },
  20813. paw: {
  20814. height: math.unit(3.4, "feet"),
  20815. name: "Paw",
  20816. image: {
  20817. source: "./media/characters/goldeneye/paw.svg"
  20818. }
  20819. },
  20820. toering: {
  20821. height: math.unit(0.45, "feet"),
  20822. name: "Toering",
  20823. image: {
  20824. source: "./media/characters/goldeneye/toering.svg"
  20825. }
  20826. },
  20827. eyes: {
  20828. height: math.unit(0.5, "feet"),
  20829. name: "Eyes",
  20830. image: {
  20831. source: "./media/characters/goldeneye/eyes.svg"
  20832. }
  20833. },
  20834. },
  20835. [
  20836. {
  20837. name: "Normal",
  20838. height: math.unit(13 + 1 / 12, "feet"),
  20839. default: true
  20840. },
  20841. ]
  20842. ))
  20843. characterMakers.push(() => makeCharacter(
  20844. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  20845. {
  20846. front: {
  20847. height: math.unit(6 + 1 / 12, "feet"),
  20848. weight: math.unit(210, "lb"),
  20849. name: "Front",
  20850. image: {
  20851. source: "./media/characters/leonardo-lycheborne/front.svg",
  20852. extra: 776/723,
  20853. bottom: 34/810
  20854. }
  20855. },
  20856. side: {
  20857. height: math.unit(6 + 1 / 12, "feet"),
  20858. weight: math.unit(210, "lb"),
  20859. name: "Side",
  20860. image: {
  20861. source: "./media/characters/leonardo-lycheborne/side.svg",
  20862. extra: 780/728,
  20863. bottom: 12/792
  20864. }
  20865. },
  20866. back: {
  20867. height: math.unit(6 + 1 / 12, "feet"),
  20868. weight: math.unit(210, "lb"),
  20869. name: "Back",
  20870. image: {
  20871. source: "./media/characters/leonardo-lycheborne/back.svg",
  20872. extra: 775/721,
  20873. bottom: 17/792
  20874. }
  20875. },
  20876. hand: {
  20877. height: math.unit(1.08, "feet"),
  20878. name: "Hand",
  20879. image: {
  20880. source: "./media/characters/leonardo-lycheborne/hand.svg"
  20881. }
  20882. },
  20883. foot: {
  20884. height: math.unit(1.32, "feet"),
  20885. name: "Foot",
  20886. image: {
  20887. source: "./media/characters/leonardo-lycheborne/foot.svg"
  20888. }
  20889. },
  20890. maw: {
  20891. height: math.unit(1, "feet"),
  20892. name: "Maw",
  20893. image: {
  20894. source: "./media/characters/leonardo-lycheborne/maw.svg"
  20895. }
  20896. },
  20897. were: {
  20898. height: math.unit(20, "feet"),
  20899. weight: math.unit(7800, "lb"),
  20900. name: "Were",
  20901. image: {
  20902. source: "./media/characters/leonardo-lycheborne/were.svg",
  20903. extra: 1224/1165,
  20904. bottom: 72/1296
  20905. }
  20906. },
  20907. feral: {
  20908. height: math.unit(7.5, "feet"),
  20909. weight: math.unit(600, "lb"),
  20910. name: "Feral",
  20911. image: {
  20912. source: "./media/characters/leonardo-lycheborne/feral.svg",
  20913. extra: 797/702,
  20914. bottom: 139/936
  20915. }
  20916. },
  20917. taur: {
  20918. height: math.unit(11, "feet"),
  20919. weight: math.unit(3300, "lb"),
  20920. name: "Taur",
  20921. image: {
  20922. source: "./media/characters/leonardo-lycheborne/taur.svg",
  20923. extra: 1271/1197,
  20924. bottom: 47/1318
  20925. }
  20926. },
  20927. barghest: {
  20928. height: math.unit(11, "feet"),
  20929. weight: math.unit(1300, "lb"),
  20930. name: "Barghest",
  20931. image: {
  20932. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  20933. extra: 1291/1204,
  20934. bottom: 37/1328
  20935. }
  20936. },
  20937. dick: {
  20938. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  20939. name: "Dick",
  20940. image: {
  20941. source: "./media/characters/leonardo-lycheborne/dick.svg"
  20942. }
  20943. },
  20944. dickWere: {
  20945. height: math.unit((20) / 3.8, "feet"),
  20946. name: "Dick (Were)",
  20947. image: {
  20948. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  20949. }
  20950. },
  20951. },
  20952. [
  20953. {
  20954. name: "Normal",
  20955. height: math.unit(6 + 1 / 12, "feet"),
  20956. default: true
  20957. },
  20958. ]
  20959. ))
  20960. characterMakers.push(() => makeCharacter(
  20961. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  20962. {
  20963. front: {
  20964. height: math.unit(10, "feet"),
  20965. weight: math.unit(350, "lb"),
  20966. name: "Front",
  20967. image: {
  20968. source: "./media/characters/jet/front.svg",
  20969. extra: 2050 / 1980,
  20970. bottom: 0.013
  20971. }
  20972. },
  20973. back: {
  20974. height: math.unit(10, "feet"),
  20975. weight: math.unit(350, "lb"),
  20976. name: "Back",
  20977. image: {
  20978. source: "./media/characters/jet/back.svg",
  20979. extra: 2050 / 1980,
  20980. bottom: 0.013
  20981. }
  20982. },
  20983. },
  20984. [
  20985. {
  20986. name: "Micro",
  20987. height: math.unit(6, "inches")
  20988. },
  20989. {
  20990. name: "Normal",
  20991. height: math.unit(10, "feet"),
  20992. default: true
  20993. },
  20994. {
  20995. name: "Macro",
  20996. height: math.unit(100, "feet")
  20997. },
  20998. ]
  20999. ))
  21000. characterMakers.push(() => makeCharacter(
  21001. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  21002. {
  21003. front: {
  21004. height: math.unit(15, "feet"),
  21005. weight: math.unit(2800, "lb"),
  21006. name: "Front",
  21007. image: {
  21008. source: "./media/characters/tanarath/front.svg",
  21009. extra: 2392 / 2220,
  21010. bottom: 0.03
  21011. }
  21012. },
  21013. back: {
  21014. height: math.unit(15, "feet"),
  21015. weight: math.unit(2800, "lb"),
  21016. name: "Back",
  21017. image: {
  21018. source: "./media/characters/tanarath/back.svg",
  21019. extra: 2392 / 2220,
  21020. bottom: 0.03
  21021. }
  21022. },
  21023. },
  21024. [
  21025. {
  21026. name: "Normal",
  21027. height: math.unit(15, "feet"),
  21028. default: true
  21029. },
  21030. ]
  21031. ))
  21032. characterMakers.push(() => makeCharacter(
  21033. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  21034. {
  21035. front: {
  21036. height: math.unit(7 + 1 / 12, "feet"),
  21037. weight: math.unit(175, "lb"),
  21038. name: "Front",
  21039. image: {
  21040. source: "./media/characters/patty-cattybatty/front.svg",
  21041. extra: 908 / 874,
  21042. bottom: 0.025
  21043. }
  21044. },
  21045. },
  21046. [
  21047. {
  21048. name: "Micro",
  21049. height: math.unit(1, "inch")
  21050. },
  21051. {
  21052. name: "Normal",
  21053. height: math.unit(7 + 1 / 12, "feet")
  21054. },
  21055. {
  21056. name: "Mini Macro",
  21057. height: math.unit(155, "feet")
  21058. },
  21059. {
  21060. name: "Macro",
  21061. height: math.unit(1077, "feet")
  21062. },
  21063. {
  21064. name: "Mega Macro",
  21065. height: math.unit(47650, "feet"),
  21066. default: true
  21067. },
  21068. {
  21069. name: "Giga Macro",
  21070. height: math.unit(440, "miles")
  21071. },
  21072. {
  21073. name: "Tera Macro",
  21074. height: math.unit(8700, "miles")
  21075. },
  21076. {
  21077. name: "Planetary Macro",
  21078. height: math.unit(32700, "miles")
  21079. },
  21080. {
  21081. name: "Solar Macro",
  21082. height: math.unit(550000, "miles")
  21083. },
  21084. {
  21085. name: "Celestial Macro",
  21086. height: math.unit(2.5, "AU")
  21087. },
  21088. ]
  21089. ))
  21090. characterMakers.push(() => makeCharacter(
  21091. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  21092. {
  21093. front: {
  21094. height: math.unit(4 + 5 / 12, "feet"),
  21095. weight: math.unit(90, "lb"),
  21096. name: "Front",
  21097. image: {
  21098. source: "./media/characters/cappu/front.svg",
  21099. extra: 1247 / 1152,
  21100. bottom: 0.012
  21101. }
  21102. },
  21103. },
  21104. [
  21105. {
  21106. name: "Normal",
  21107. height: math.unit(4 + 5 / 12, "feet"),
  21108. default: true
  21109. },
  21110. ]
  21111. ))
  21112. characterMakers.push(() => makeCharacter(
  21113. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  21114. {
  21115. frontDressed: {
  21116. height: math.unit(70, "cm"),
  21117. weight: math.unit(6, "kg"),
  21118. name: "Front (Dressed)",
  21119. image: {
  21120. source: "./media/characters/sebi/front-dressed.svg",
  21121. extra: 713.5 / 686.5,
  21122. bottom: 0.003
  21123. }
  21124. },
  21125. front: {
  21126. height: math.unit(70, "cm"),
  21127. weight: math.unit(5, "kg"),
  21128. name: "Front",
  21129. image: {
  21130. source: "./media/characters/sebi/front.svg",
  21131. extra: 713.5 / 686.5,
  21132. bottom: 0.003
  21133. }
  21134. }
  21135. },
  21136. [
  21137. {
  21138. name: "Normal",
  21139. height: math.unit(70, "cm"),
  21140. default: true
  21141. },
  21142. {
  21143. name: "Macro",
  21144. height: math.unit(8, "meters")
  21145. },
  21146. ]
  21147. ))
  21148. characterMakers.push(() => makeCharacter(
  21149. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21150. {
  21151. front: {
  21152. height: math.unit(6, "feet"),
  21153. weight: math.unit(150, "lb"),
  21154. name: "Front",
  21155. image: {
  21156. source: "./media/characters/typhek/front.svg",
  21157. extra: 1948 / 1929,
  21158. bottom: 0.025
  21159. }
  21160. },
  21161. side: {
  21162. height: math.unit(6, "feet"),
  21163. weight: math.unit(150, "lb"),
  21164. name: "Side",
  21165. image: {
  21166. source: "./media/characters/typhek/side.svg",
  21167. extra: 2034 / 2010,
  21168. bottom: 0.003
  21169. }
  21170. },
  21171. back: {
  21172. height: math.unit(6, "feet"),
  21173. weight: math.unit(150, "lb"),
  21174. name: "Back",
  21175. image: {
  21176. source: "./media/characters/typhek/back.svg",
  21177. extra: 2005 / 1978,
  21178. bottom: 0.004
  21179. }
  21180. },
  21181. palm: {
  21182. height: math.unit(1.2, "feet"),
  21183. name: "Palm",
  21184. image: {
  21185. source: "./media/characters/typhek/palm.svg"
  21186. }
  21187. },
  21188. fist: {
  21189. height: math.unit(1.1, "feet"),
  21190. name: "Fist",
  21191. image: {
  21192. source: "./media/characters/typhek/fist.svg"
  21193. }
  21194. },
  21195. foot: {
  21196. height: math.unit(1.57, "feet"),
  21197. name: "Foot",
  21198. image: {
  21199. source: "./media/characters/typhek/foot.svg"
  21200. }
  21201. },
  21202. sole: {
  21203. height: math.unit(2.05, "feet"),
  21204. name: "Sole",
  21205. image: {
  21206. source: "./media/characters/typhek/sole.svg"
  21207. }
  21208. },
  21209. },
  21210. [
  21211. {
  21212. name: "Macro",
  21213. height: math.unit(40, "stories"),
  21214. default: true
  21215. },
  21216. {
  21217. name: "Megamacro",
  21218. height: math.unit(1, "mile")
  21219. },
  21220. {
  21221. name: "Gigamacro",
  21222. height: math.unit(4000, "solarradii")
  21223. },
  21224. {
  21225. name: "Universal",
  21226. height: math.unit(1.1, "universes")
  21227. }
  21228. ]
  21229. ))
  21230. characterMakers.push(() => makeCharacter(
  21231. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  21232. {
  21233. side: {
  21234. height: math.unit(5 + 7 / 12, "feet"),
  21235. weight: math.unit(150, "lb"),
  21236. name: "Side",
  21237. image: {
  21238. source: "./media/characters/kassy/side.svg",
  21239. extra: 1280 / 1225,
  21240. bottom: 0.002
  21241. }
  21242. },
  21243. front: {
  21244. height: math.unit(5 + 7 / 12, "feet"),
  21245. weight: math.unit(150, "lb"),
  21246. name: "Front",
  21247. image: {
  21248. source: "./media/characters/kassy/front.svg",
  21249. extra: 1280 / 1225,
  21250. bottom: 0.025
  21251. }
  21252. },
  21253. back: {
  21254. height: math.unit(5 + 7 / 12, "feet"),
  21255. weight: math.unit(150, "lb"),
  21256. name: "Back",
  21257. image: {
  21258. source: "./media/characters/kassy/back.svg",
  21259. extra: 1280 / 1225,
  21260. bottom: 0.002
  21261. }
  21262. },
  21263. foot: {
  21264. height: math.unit(1.266, "feet"),
  21265. name: "Foot",
  21266. image: {
  21267. source: "./media/characters/kassy/foot.svg"
  21268. }
  21269. },
  21270. },
  21271. [
  21272. {
  21273. name: "Normal",
  21274. height: math.unit(5 + 7 / 12, "feet")
  21275. },
  21276. {
  21277. name: "Macro",
  21278. height: math.unit(137, "feet"),
  21279. default: true
  21280. },
  21281. {
  21282. name: "Megamacro",
  21283. height: math.unit(1, "mile")
  21284. },
  21285. ]
  21286. ))
  21287. characterMakers.push(() => makeCharacter(
  21288. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  21289. {
  21290. front: {
  21291. height: math.unit(6 + 1 / 12, "feet"),
  21292. weight: math.unit(200, "lb"),
  21293. name: "Front",
  21294. image: {
  21295. source: "./media/characters/neil/front.svg",
  21296. extra: 1326 / 1250,
  21297. bottom: 0.023
  21298. }
  21299. },
  21300. },
  21301. [
  21302. {
  21303. name: "Normal",
  21304. height: math.unit(6 + 1 / 12, "feet"),
  21305. default: true
  21306. },
  21307. {
  21308. name: "Macro",
  21309. height: math.unit(200, "feet")
  21310. },
  21311. ]
  21312. ))
  21313. characterMakers.push(() => makeCharacter(
  21314. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  21315. {
  21316. front: {
  21317. height: math.unit(5 + 9 / 12, "feet"),
  21318. weight: math.unit(190, "lb"),
  21319. name: "Front",
  21320. image: {
  21321. source: "./media/characters/atticus/front.svg",
  21322. extra: 2934 / 2785,
  21323. bottom: 0.025
  21324. }
  21325. },
  21326. },
  21327. [
  21328. {
  21329. name: "Normal",
  21330. height: math.unit(5 + 9 / 12, "feet"),
  21331. default: true
  21332. },
  21333. {
  21334. name: "Macro",
  21335. height: math.unit(180, "feet")
  21336. },
  21337. ]
  21338. ))
  21339. characterMakers.push(() => makeCharacter(
  21340. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  21341. {
  21342. side: {
  21343. height: math.unit(9, "feet"),
  21344. weight: math.unit(650, "lb"),
  21345. name: "Side",
  21346. image: {
  21347. source: "./media/characters/milo/side.svg",
  21348. extra: 2644 / 2310,
  21349. bottom: 0.032
  21350. }
  21351. },
  21352. },
  21353. [
  21354. {
  21355. name: "Normal",
  21356. height: math.unit(9, "feet"),
  21357. default: true
  21358. },
  21359. {
  21360. name: "Macro",
  21361. height: math.unit(300, "feet")
  21362. },
  21363. ]
  21364. ))
  21365. characterMakers.push(() => makeCharacter(
  21366. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  21367. {
  21368. side: {
  21369. height: math.unit(8, "meters"),
  21370. weight: math.unit(90000, "kg"),
  21371. name: "Side",
  21372. image: {
  21373. source: "./media/characters/ijzer/side.svg",
  21374. extra: 2756 / 1600,
  21375. bottom: 0.01
  21376. }
  21377. },
  21378. },
  21379. [
  21380. {
  21381. name: "Small",
  21382. height: math.unit(3, "meters")
  21383. },
  21384. {
  21385. name: "Normal",
  21386. height: math.unit(8, "meters"),
  21387. default: true
  21388. },
  21389. {
  21390. name: "Normal+",
  21391. height: math.unit(10, "meters")
  21392. },
  21393. {
  21394. name: "Bigger",
  21395. height: math.unit(24, "meters")
  21396. },
  21397. {
  21398. name: "Huge",
  21399. height: math.unit(80, "meters")
  21400. },
  21401. ]
  21402. ))
  21403. characterMakers.push(() => makeCharacter(
  21404. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  21405. {
  21406. front: {
  21407. height: math.unit(6 + 2 / 12, "feet"),
  21408. weight: math.unit(153, "lb"),
  21409. name: "Front",
  21410. image: {
  21411. source: "./media/characters/luca-cervicum/front.svg",
  21412. extra: 370 / 327,
  21413. bottom: 0.015
  21414. }
  21415. },
  21416. back: {
  21417. height: math.unit(6 + 2 / 12, "feet"),
  21418. weight: math.unit(153, "lb"),
  21419. name: "Back",
  21420. image: {
  21421. source: "./media/characters/luca-cervicum/back.svg",
  21422. extra: 367 / 333,
  21423. bottom: 0.005
  21424. }
  21425. },
  21426. frontGear: {
  21427. height: math.unit(6 + 2 / 12, "feet"),
  21428. weight: math.unit(173, "lb"),
  21429. name: "Front (Gear)",
  21430. image: {
  21431. source: "./media/characters/luca-cervicum/front-gear.svg",
  21432. extra: 377 / 333,
  21433. bottom: 0.006
  21434. }
  21435. },
  21436. },
  21437. [
  21438. {
  21439. name: "Normal",
  21440. height: math.unit(6 + 2 / 12, "feet"),
  21441. default: true
  21442. },
  21443. ]
  21444. ))
  21445. characterMakers.push(() => makeCharacter(
  21446. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  21447. {
  21448. front: {
  21449. height: math.unit(6 + 1 / 12, "feet"),
  21450. weight: math.unit(304, "lb"),
  21451. name: "Front",
  21452. image: {
  21453. source: "./media/characters/oliver/front.svg",
  21454. extra: 157 / 143,
  21455. bottom: 0.08
  21456. }
  21457. },
  21458. },
  21459. [
  21460. {
  21461. name: "Normal",
  21462. height: math.unit(6 + 1 / 12, "feet"),
  21463. default: true
  21464. },
  21465. ]
  21466. ))
  21467. characterMakers.push(() => makeCharacter(
  21468. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  21469. {
  21470. front: {
  21471. height: math.unit(5 + 7 / 12, "feet"),
  21472. weight: math.unit(140, "lb"),
  21473. name: "Front",
  21474. image: {
  21475. source: "./media/characters/shane/front.svg",
  21476. extra: 304 / 289,
  21477. bottom: 0.005
  21478. }
  21479. },
  21480. },
  21481. [
  21482. {
  21483. name: "Normal",
  21484. height: math.unit(5 + 7 / 12, "feet"),
  21485. default: true
  21486. },
  21487. ]
  21488. ))
  21489. characterMakers.push(() => makeCharacter(
  21490. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  21491. {
  21492. front: {
  21493. height: math.unit(5 + 9 / 12, "feet"),
  21494. weight: math.unit(178, "lb"),
  21495. name: "Front",
  21496. image: {
  21497. source: "./media/characters/shin/front.svg",
  21498. extra: 159 / 151,
  21499. bottom: 0.015
  21500. }
  21501. },
  21502. },
  21503. [
  21504. {
  21505. name: "Normal",
  21506. height: math.unit(5 + 9 / 12, "feet"),
  21507. default: true
  21508. },
  21509. ]
  21510. ))
  21511. characterMakers.push(() => makeCharacter(
  21512. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  21513. {
  21514. front: {
  21515. height: math.unit(5 + 10 / 12, "feet"),
  21516. weight: math.unit(168, "lb"),
  21517. name: "Front",
  21518. image: {
  21519. source: "./media/characters/xerxes/front.svg",
  21520. extra: 282 / 260,
  21521. bottom: 0.045
  21522. }
  21523. },
  21524. },
  21525. [
  21526. {
  21527. name: "Normal",
  21528. height: math.unit(5 + 10 / 12, "feet"),
  21529. default: true
  21530. },
  21531. ]
  21532. ))
  21533. characterMakers.push(() => makeCharacter(
  21534. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  21535. {
  21536. front: {
  21537. height: math.unit(6 + 7 / 12, "feet"),
  21538. weight: math.unit(208, "lb"),
  21539. name: "Front",
  21540. image: {
  21541. source: "./media/characters/chaska/front.svg",
  21542. extra: 332 / 319,
  21543. bottom: 0.015
  21544. }
  21545. },
  21546. },
  21547. [
  21548. {
  21549. name: "Normal",
  21550. height: math.unit(6 + 7 / 12, "feet"),
  21551. default: true
  21552. },
  21553. ]
  21554. ))
  21555. characterMakers.push(() => makeCharacter(
  21556. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  21557. {
  21558. front: {
  21559. height: math.unit(5 + 8 / 12, "feet"),
  21560. weight: math.unit(208, "lb"),
  21561. name: "Front",
  21562. image: {
  21563. source: "./media/characters/enuk/front.svg",
  21564. extra: 437 / 406,
  21565. bottom: 0.02
  21566. }
  21567. },
  21568. },
  21569. [
  21570. {
  21571. name: "Normal",
  21572. height: math.unit(5 + 8 / 12, "feet"),
  21573. default: true
  21574. },
  21575. ]
  21576. ))
  21577. characterMakers.push(() => makeCharacter(
  21578. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  21579. {
  21580. front: {
  21581. height: math.unit(5 + 10 / 12, "feet"),
  21582. weight: math.unit(252, "lb"),
  21583. name: "Front",
  21584. image: {
  21585. source: "./media/characters/bruun/front.svg",
  21586. extra: 197 / 187,
  21587. bottom: 0.012
  21588. }
  21589. },
  21590. },
  21591. [
  21592. {
  21593. name: "Normal",
  21594. height: math.unit(5 + 10 / 12, "feet"),
  21595. default: true
  21596. },
  21597. ]
  21598. ))
  21599. characterMakers.push(() => makeCharacter(
  21600. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  21601. {
  21602. front: {
  21603. height: math.unit(6 + 10 / 12, "feet"),
  21604. weight: math.unit(255, "lb"),
  21605. name: "Front",
  21606. image: {
  21607. source: "./media/characters/alexeev/front.svg",
  21608. extra: 213 / 200,
  21609. bottom: 0.05
  21610. }
  21611. },
  21612. },
  21613. [
  21614. {
  21615. name: "Normal",
  21616. height: math.unit(6 + 10 / 12, "feet"),
  21617. default: true
  21618. },
  21619. ]
  21620. ))
  21621. characterMakers.push(() => makeCharacter(
  21622. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  21623. {
  21624. front: {
  21625. height: math.unit(2 + 8 / 12, "feet"),
  21626. weight: math.unit(22, "lb"),
  21627. name: "Front",
  21628. image: {
  21629. source: "./media/characters/evelyn/front.svg",
  21630. extra: 208 / 180
  21631. }
  21632. },
  21633. },
  21634. [
  21635. {
  21636. name: "Normal",
  21637. height: math.unit(2 + 8 / 12, "feet"),
  21638. default: true
  21639. },
  21640. ]
  21641. ))
  21642. characterMakers.push(() => makeCharacter(
  21643. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  21644. {
  21645. front: {
  21646. height: math.unit(5 + 9 / 12, "feet"),
  21647. weight: math.unit(139, "lb"),
  21648. name: "Front",
  21649. image: {
  21650. source: "./media/characters/inca/front.svg",
  21651. extra: 294 / 291,
  21652. bottom: 0.03
  21653. }
  21654. },
  21655. },
  21656. [
  21657. {
  21658. name: "Normal",
  21659. height: math.unit(5 + 9 / 12, "feet"),
  21660. default: true
  21661. },
  21662. ]
  21663. ))
  21664. characterMakers.push(() => makeCharacter(
  21665. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  21666. {
  21667. front: {
  21668. height: math.unit(6 + 3 / 12, "feet"),
  21669. weight: math.unit(185, "lb"),
  21670. name: "Front",
  21671. image: {
  21672. source: "./media/characters/mera/front.svg",
  21673. extra: 291 / 277,
  21674. bottom: 0.03
  21675. }
  21676. },
  21677. },
  21678. [
  21679. {
  21680. name: "Normal",
  21681. height: math.unit(6 + 3 / 12, "feet"),
  21682. default: true
  21683. },
  21684. ]
  21685. ))
  21686. characterMakers.push(() => makeCharacter(
  21687. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  21688. {
  21689. front: {
  21690. height: math.unit(6 + 7 / 12, "feet"),
  21691. weight: math.unit(160, "lb"),
  21692. name: "Front",
  21693. image: {
  21694. source: "./media/characters/ceres/front.svg",
  21695. extra: 1023 / 950,
  21696. bottom: 0.027
  21697. }
  21698. },
  21699. back: {
  21700. height: math.unit(6 + 7 / 12, "feet"),
  21701. weight: math.unit(160, "lb"),
  21702. name: "Back",
  21703. image: {
  21704. source: "./media/characters/ceres/back.svg",
  21705. extra: 1023 / 950
  21706. }
  21707. },
  21708. },
  21709. [
  21710. {
  21711. name: "Normal",
  21712. height: math.unit(6 + 7 / 12, "feet"),
  21713. default: true
  21714. },
  21715. ]
  21716. ))
  21717. characterMakers.push(() => makeCharacter(
  21718. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  21719. {
  21720. front: {
  21721. height: math.unit(5 + 10 / 12, "feet"),
  21722. weight: math.unit(150, "lb"),
  21723. name: "Front",
  21724. image: {
  21725. source: "./media/characters/kris/front.svg",
  21726. extra: 885 / 803,
  21727. bottom: 0.03
  21728. }
  21729. },
  21730. },
  21731. [
  21732. {
  21733. name: "Normal",
  21734. height: math.unit(5 + 10 / 12, "feet"),
  21735. default: true
  21736. },
  21737. ]
  21738. ))
  21739. characterMakers.push(() => makeCharacter(
  21740. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  21741. {
  21742. front: {
  21743. height: math.unit(7, "feet"),
  21744. weight: math.unit(120, "kg"),
  21745. name: "Front",
  21746. image: {
  21747. source: "./media/characters/taluthus/front.svg",
  21748. extra: 903 / 833,
  21749. bottom: 0.015
  21750. }
  21751. },
  21752. },
  21753. [
  21754. {
  21755. name: "Normal",
  21756. height: math.unit(7, "feet"),
  21757. default: true
  21758. },
  21759. {
  21760. name: "Macro",
  21761. height: math.unit(300, "feet")
  21762. },
  21763. ]
  21764. ))
  21765. characterMakers.push(() => makeCharacter(
  21766. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  21767. {
  21768. front: {
  21769. height: math.unit(5 + 9 / 12, "feet"),
  21770. weight: math.unit(145, "lb"),
  21771. name: "Front",
  21772. image: {
  21773. source: "./media/characters/dawn/front.svg",
  21774. extra: 2094 / 2016,
  21775. bottom: 0.025
  21776. }
  21777. },
  21778. back: {
  21779. height: math.unit(5 + 9 / 12, "feet"),
  21780. weight: math.unit(160, "lb"),
  21781. name: "Back",
  21782. image: {
  21783. source: "./media/characters/dawn/back.svg",
  21784. extra: 2112 / 2080,
  21785. bottom: 0.005
  21786. }
  21787. },
  21788. },
  21789. [
  21790. {
  21791. name: "Normal",
  21792. height: math.unit(6 + 7 / 12, "feet"),
  21793. default: true
  21794. },
  21795. ]
  21796. ))
  21797. characterMakers.push(() => makeCharacter(
  21798. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  21799. {
  21800. anthro: {
  21801. height: math.unit(8 + 3 / 12, "feet"),
  21802. weight: math.unit(450, "lb"),
  21803. name: "Anthro",
  21804. image: {
  21805. source: "./media/characters/arador/anthro.svg",
  21806. extra: 1835 / 1718,
  21807. bottom: 0.025
  21808. }
  21809. },
  21810. feral: {
  21811. height: math.unit(4, "feet"),
  21812. weight: math.unit(200, "lb"),
  21813. name: "Feral",
  21814. image: {
  21815. source: "./media/characters/arador/feral.svg",
  21816. extra: 1683 / 1514,
  21817. bottom: 0.07
  21818. }
  21819. },
  21820. },
  21821. [
  21822. {
  21823. name: "Normal",
  21824. height: math.unit(8 + 3 / 12, "feet")
  21825. },
  21826. {
  21827. name: "Macro",
  21828. height: math.unit(82.5, "feet"),
  21829. default: true
  21830. },
  21831. ]
  21832. ))
  21833. characterMakers.push(() => makeCharacter(
  21834. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  21835. {
  21836. front: {
  21837. height: math.unit(5 + 10 / 12, "feet"),
  21838. weight: math.unit(125, "lb"),
  21839. name: "Front",
  21840. image: {
  21841. source: "./media/characters/dharsi/front.svg",
  21842. extra: 716 / 630,
  21843. bottom: 0.035
  21844. }
  21845. },
  21846. },
  21847. [
  21848. {
  21849. name: "Nano",
  21850. height: math.unit(100, "nm")
  21851. },
  21852. {
  21853. name: "Micro",
  21854. height: math.unit(2, "inches")
  21855. },
  21856. {
  21857. name: "Normal",
  21858. height: math.unit(5 + 10 / 12, "feet"),
  21859. default: true
  21860. },
  21861. {
  21862. name: "Macro",
  21863. height: math.unit(1000, "feet")
  21864. },
  21865. {
  21866. name: "Megamacro",
  21867. height: math.unit(10, "miles")
  21868. },
  21869. {
  21870. name: "Gigamacro",
  21871. height: math.unit(3000, "miles")
  21872. },
  21873. {
  21874. name: "Teramacro",
  21875. height: math.unit(500000, "miles")
  21876. },
  21877. {
  21878. name: "Teramacro+",
  21879. height: math.unit(30, "galaxies")
  21880. },
  21881. ]
  21882. ))
  21883. characterMakers.push(() => makeCharacter(
  21884. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  21885. {
  21886. front: {
  21887. height: math.unit(6, "feet"),
  21888. weight: math.unit(150, "lb"),
  21889. name: "Front",
  21890. image: {
  21891. source: "./media/characters/deathy/front.svg",
  21892. extra: 1552 / 1463,
  21893. bottom: 0.025
  21894. }
  21895. },
  21896. side: {
  21897. height: math.unit(6, "feet"),
  21898. weight: math.unit(150, "lb"),
  21899. name: "Side",
  21900. image: {
  21901. source: "./media/characters/deathy/side.svg",
  21902. extra: 1604 / 1455,
  21903. bottom: 0.025
  21904. }
  21905. },
  21906. back: {
  21907. height: math.unit(6, "feet"),
  21908. weight: math.unit(150, "lb"),
  21909. name: "Back",
  21910. image: {
  21911. source: "./media/characters/deathy/back.svg",
  21912. extra: 1580 / 1463,
  21913. bottom: 0.005
  21914. }
  21915. },
  21916. },
  21917. [
  21918. {
  21919. name: "Micro",
  21920. height: math.unit(5, "millimeters")
  21921. },
  21922. {
  21923. name: "Normal",
  21924. height: math.unit(6 + 5 / 12, "feet"),
  21925. default: true
  21926. },
  21927. ]
  21928. ))
  21929. characterMakers.push(() => makeCharacter(
  21930. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  21931. {
  21932. front: {
  21933. height: math.unit(16, "feet"),
  21934. weight: math.unit(4000, "lb"),
  21935. name: "Front",
  21936. image: {
  21937. source: "./media/characters/juniper/front.svg",
  21938. bottom: 0.04
  21939. }
  21940. },
  21941. },
  21942. [
  21943. {
  21944. name: "Normal",
  21945. height: math.unit(16, "feet"),
  21946. default: true
  21947. },
  21948. ]
  21949. ))
  21950. characterMakers.push(() => makeCharacter(
  21951. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  21952. {
  21953. front: {
  21954. height: math.unit(6, "feet"),
  21955. weight: math.unit(150, "lb"),
  21956. name: "Front",
  21957. image: {
  21958. source: "./media/characters/hipster/front.svg",
  21959. extra: 1312 / 1209,
  21960. bottom: 0.025
  21961. }
  21962. },
  21963. back: {
  21964. height: math.unit(6, "feet"),
  21965. weight: math.unit(150, "lb"),
  21966. name: "Back",
  21967. image: {
  21968. source: "./media/characters/hipster/back.svg",
  21969. extra: 1281 / 1196,
  21970. bottom: 0.01
  21971. }
  21972. },
  21973. },
  21974. [
  21975. {
  21976. name: "Micro",
  21977. height: math.unit(1, "mm")
  21978. },
  21979. {
  21980. name: "Normal",
  21981. height: math.unit(4, "inches"),
  21982. default: true
  21983. },
  21984. {
  21985. name: "Macro",
  21986. height: math.unit(500, "feet")
  21987. },
  21988. {
  21989. name: "Megamacro",
  21990. height: math.unit(1000, "miles")
  21991. },
  21992. ]
  21993. ))
  21994. characterMakers.push(() => makeCharacter(
  21995. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  21996. {
  21997. front: {
  21998. height: math.unit(6, "feet"),
  21999. weight: math.unit(150, "lb"),
  22000. name: "Front",
  22001. image: {
  22002. source: "./media/characters/tendirmuldr/front.svg",
  22003. extra: 1878 / 1772,
  22004. bottom: 0.015
  22005. }
  22006. },
  22007. },
  22008. [
  22009. {
  22010. name: "Megamacro",
  22011. height: math.unit(1500, "miles"),
  22012. default: true
  22013. },
  22014. ]
  22015. ))
  22016. characterMakers.push(() => makeCharacter(
  22017. { name: "Mort", species: ["demon"], tags: ["feral"] },
  22018. {
  22019. front: {
  22020. height: math.unit(14, "feet"),
  22021. weight: math.unit(12000, "lb"),
  22022. name: "Front",
  22023. image: {
  22024. source: "./media/characters/mort/front.svg",
  22025. extra: 365 / 318,
  22026. bottom: 0.01
  22027. }
  22028. },
  22029. side: {
  22030. height: math.unit(14, "feet"),
  22031. weight: math.unit(12000, "lb"),
  22032. name: "Side",
  22033. image: {
  22034. source: "./media/characters/mort/side.svg",
  22035. extra: 365 / 318,
  22036. bottom: 0.052
  22037. },
  22038. default: true
  22039. },
  22040. back: {
  22041. height: math.unit(14, "feet"),
  22042. weight: math.unit(12000, "lb"),
  22043. name: "Back",
  22044. image: {
  22045. source: "./media/characters/mort/back.svg",
  22046. extra: 371 / 332,
  22047. bottom: 0.18
  22048. }
  22049. },
  22050. },
  22051. [
  22052. {
  22053. name: "Normal",
  22054. height: math.unit(14, "feet"),
  22055. default: true
  22056. },
  22057. ]
  22058. ))
  22059. characterMakers.push(() => makeCharacter(
  22060. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  22061. {
  22062. front: {
  22063. height: math.unit(8, "feet"),
  22064. weight: math.unit(1, "ton"),
  22065. name: "Front",
  22066. image: {
  22067. source: "./media/characters/lycoa/front.svg",
  22068. extra: 1836/1728,
  22069. bottom: 81/1917
  22070. }
  22071. },
  22072. back: {
  22073. height: math.unit(8, "feet"),
  22074. weight: math.unit(1, "ton"),
  22075. name: "Back",
  22076. image: {
  22077. source: "./media/characters/lycoa/back.svg",
  22078. extra: 1785/1720,
  22079. bottom: 91/1876
  22080. }
  22081. },
  22082. head: {
  22083. height: math.unit(1.6243, "feet"),
  22084. name: "Head",
  22085. image: {
  22086. source: "./media/characters/lycoa/head.svg",
  22087. extra: 1011/782,
  22088. bottom: 0/1011
  22089. }
  22090. },
  22091. tailmaw: {
  22092. height: math.unit(1.9, "feet"),
  22093. name: "Tailmaw",
  22094. image: {
  22095. source: "./media/characters/lycoa/tailmaw.svg"
  22096. }
  22097. },
  22098. tentacles: {
  22099. height: math.unit(2.1, "feet"),
  22100. name: "Tentacles",
  22101. image: {
  22102. source: "./media/characters/lycoa/tentacles.svg"
  22103. }
  22104. },
  22105. dick: {
  22106. height: math.unit(1.73, "feet"),
  22107. name: "Dick",
  22108. image: {
  22109. source: "./media/characters/lycoa/dick.svg"
  22110. }
  22111. },
  22112. },
  22113. [
  22114. {
  22115. name: "Normal",
  22116. height: math.unit(8, "feet"),
  22117. default: true
  22118. },
  22119. {
  22120. name: "Macro",
  22121. height: math.unit(30, "feet")
  22122. },
  22123. ]
  22124. ))
  22125. characterMakers.push(() => makeCharacter(
  22126. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  22127. {
  22128. front: {
  22129. height: math.unit(4 + 2 / 12, "feet"),
  22130. weight: math.unit(70, "lb"),
  22131. name: "Front",
  22132. image: {
  22133. source: "./media/characters/naldara/front.svg",
  22134. extra: 1664/1387,
  22135. bottom: 81/1745
  22136. },
  22137. form: "anthro",
  22138. default: true
  22139. },
  22140. naga: {
  22141. height: math.unit(20, "feet"),
  22142. weight: math.unit(15000, "kg"),
  22143. name: "Front",
  22144. image: {
  22145. source: "./media/characters/naldara/naga.svg",
  22146. extra: 1590/1396,
  22147. bottom: 285/1875
  22148. },
  22149. form: "naga",
  22150. default: true
  22151. },
  22152. },
  22153. [
  22154. {
  22155. name: "Normal",
  22156. height: math.unit(4 + 2 / 12, "feet"),
  22157. form: "anthro",
  22158. default: true
  22159. },
  22160. {
  22161. name: "Normal",
  22162. height: math.unit(20, "feet"),
  22163. form: "naga",
  22164. default: true
  22165. },
  22166. ],
  22167. {
  22168. "anthro": {
  22169. name: "Anthro",
  22170. default: true
  22171. },
  22172. "naga": {
  22173. name: "Naga"
  22174. }
  22175. }
  22176. ))
  22177. characterMakers.push(() => makeCharacter(
  22178. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  22179. {
  22180. front: {
  22181. height: math.unit(13 + 7 / 12, "feet"),
  22182. weight: math.unit(1500, "lb"),
  22183. name: "Front",
  22184. image: {
  22185. source: "./media/characters/briar/front.svg",
  22186. extra: 1223/1157,
  22187. bottom: 123/1346
  22188. }
  22189. },
  22190. },
  22191. [
  22192. {
  22193. name: "Normal",
  22194. height: math.unit(13 + 7 / 12, "feet"),
  22195. default: true
  22196. },
  22197. ]
  22198. ))
  22199. characterMakers.push(() => makeCharacter(
  22200. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  22201. {
  22202. side: {
  22203. height: math.unit(16, "feet"),
  22204. weight: math.unit(500, "lb"),
  22205. name: "Side",
  22206. image: {
  22207. source: "./media/characters/vanguard/side.svg",
  22208. extra: 1022/914,
  22209. bottom: 30/1052
  22210. }
  22211. },
  22212. sideAlt: {
  22213. height: math.unit(10, "feet"),
  22214. weight: math.unit(500, "lb"),
  22215. name: "Side (Alt)",
  22216. image: {
  22217. source: "./media/characters/vanguard/side-alt.svg",
  22218. extra: 502 / 425,
  22219. bottom: 0.087
  22220. }
  22221. },
  22222. },
  22223. [
  22224. {
  22225. name: "Normal",
  22226. height: math.unit(17.71, "feet"),
  22227. default: true
  22228. },
  22229. ]
  22230. ))
  22231. characterMakers.push(() => makeCharacter(
  22232. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  22233. {
  22234. front: {
  22235. height: math.unit(7.5, "feet"),
  22236. weight: math.unit(2, "lb"),
  22237. name: "Front",
  22238. image: {
  22239. source: "./media/characters/artemis/work-safe-front.svg",
  22240. extra: 1192 / 1075,
  22241. bottom: 0.07
  22242. },
  22243. form: "work-safe",
  22244. default: true
  22245. },
  22246. frontNsfw: {
  22247. height: math.unit(7.5, "feet"),
  22248. weight: math.unit(2, "lb"),
  22249. name: "Front",
  22250. image: {
  22251. source: "./media/characters/artemis/calibrating-front.svg",
  22252. extra: 1192 / 1075,
  22253. bottom: 0.07
  22254. },
  22255. form: "calibrating",
  22256. default: true
  22257. },
  22258. frontNsfwer: {
  22259. height: math.unit(7.5, "feet"),
  22260. weight: math.unit(2, "lb"),
  22261. name: "Front",
  22262. image: {
  22263. source: "./media/characters/artemis/oversize-load-front.svg",
  22264. extra: 1192 / 1075,
  22265. bottom: 0.07
  22266. },
  22267. form: "oversize-load",
  22268. default: true
  22269. },
  22270. side: {
  22271. height: math.unit(7.5, "feet"),
  22272. weight: math.unit(2, "lb"),
  22273. name: "Side",
  22274. image: {
  22275. source: "./media/characters/artemis/work-safe-side.svg",
  22276. extra: 1192 / 1075,
  22277. bottom: 0.07
  22278. },
  22279. form: "work-safe"
  22280. },
  22281. sideNsfw: {
  22282. height: math.unit(7.5, "feet"),
  22283. weight: math.unit(2, "lb"),
  22284. name: "Side",
  22285. image: {
  22286. source: "./media/characters/artemis/calibrating-side.svg",
  22287. extra: 1192 / 1075,
  22288. bottom: 0.07
  22289. },
  22290. form: "calibrating"
  22291. },
  22292. sideNsfwer: {
  22293. height: math.unit(7.5, "feet"),
  22294. weight: math.unit(2, "lb"),
  22295. name: "Side",
  22296. image: {
  22297. source: "./media/characters/artemis/oversize-load-side.svg",
  22298. extra: 1192 / 1075,
  22299. bottom: 0.07
  22300. },
  22301. form: "oversize-load"
  22302. },
  22303. maw: {
  22304. height: math.unit(1.1, "feet"),
  22305. name: "Maw",
  22306. image: {
  22307. source: "./media/characters/artemis/maw.svg"
  22308. },
  22309. form: "work-safe"
  22310. },
  22311. stomach: {
  22312. height: math.unit(0.95, "feet"),
  22313. name: "Stomach",
  22314. image: {
  22315. source: "./media/characters/artemis/stomach.svg"
  22316. },
  22317. form: "work-safe"
  22318. },
  22319. dickCanine: {
  22320. height: math.unit(1, "feet"),
  22321. name: "Dick (Canine)",
  22322. image: {
  22323. source: "./media/characters/artemis/dick-canine.svg"
  22324. },
  22325. form: "calibrating"
  22326. },
  22327. dickEquine: {
  22328. height: math.unit(0.85, "feet"),
  22329. name: "Dick (Equine)",
  22330. image: {
  22331. source: "./media/characters/artemis/dick-equine.svg"
  22332. },
  22333. form: "calibrating"
  22334. },
  22335. dickExotic: {
  22336. height: math.unit(0.85, "feet"),
  22337. name: "Dick (Exotic)",
  22338. image: {
  22339. source: "./media/characters/artemis/dick-exotic.svg"
  22340. },
  22341. form: "calibrating"
  22342. },
  22343. dickCanineBigger: {
  22344. height: math.unit(1 * 1.33, "feet"),
  22345. name: "Dick (Canine)",
  22346. image: {
  22347. source: "./media/characters/artemis/dick-canine.svg"
  22348. },
  22349. form: "oversize-load"
  22350. },
  22351. dickEquineBigger: {
  22352. height: math.unit(0.85 * 1.33, "feet"),
  22353. name: "Dick (Equine)",
  22354. image: {
  22355. source: "./media/characters/artemis/dick-equine.svg"
  22356. },
  22357. form: "oversize-load"
  22358. },
  22359. dickExoticBigger: {
  22360. height: math.unit(0.85 * 1.33, "feet"),
  22361. name: "Dick (Exotic)",
  22362. image: {
  22363. source: "./media/characters/artemis/dick-exotic.svg"
  22364. },
  22365. form: "oversize-load"
  22366. },
  22367. },
  22368. [
  22369. {
  22370. name: "Normal",
  22371. height: math.unit(7.5, "feet"),
  22372. form: "work-safe",
  22373. default: true
  22374. },
  22375. {
  22376. name: "Normal",
  22377. height: math.unit(7.5, "feet"),
  22378. form: "calibrating",
  22379. default: true
  22380. },
  22381. {
  22382. name: "Normal",
  22383. height: math.unit(7.5, "feet"),
  22384. form: "oversize-load",
  22385. default: true
  22386. },
  22387. {
  22388. name: "Enlarged",
  22389. height: math.unit(12, "feet"),
  22390. form: "work-safe",
  22391. },
  22392. {
  22393. name: "Enlarged",
  22394. height: math.unit(12, "feet"),
  22395. form: "calibrating",
  22396. },
  22397. {
  22398. name: "Enlarged",
  22399. height: math.unit(12, "feet"),
  22400. form: "oversize-load",
  22401. },
  22402. ],
  22403. {
  22404. "work-safe": {
  22405. name: "Work-Safe",
  22406. default: true
  22407. },
  22408. "calibrating": {
  22409. name: "Calibrating"
  22410. },
  22411. "oversize-load": {
  22412. name: "Oversize Load"
  22413. }
  22414. }
  22415. ))
  22416. characterMakers.push(() => makeCharacter(
  22417. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  22418. {
  22419. front: {
  22420. height: math.unit(5 + 3 / 12, "feet"),
  22421. weight: math.unit(160, "lb"),
  22422. name: "Front",
  22423. image: {
  22424. source: "./media/characters/kira/front.svg",
  22425. extra: 906 / 786,
  22426. bottom: 0.01
  22427. }
  22428. },
  22429. back: {
  22430. height: math.unit(5 + 3 / 12, "feet"),
  22431. weight: math.unit(160, "lb"),
  22432. name: "Back",
  22433. image: {
  22434. source: "./media/characters/kira/back.svg",
  22435. extra: 882 / 757,
  22436. bottom: 0.005
  22437. }
  22438. },
  22439. frontDressed: {
  22440. height: math.unit(5 + 3 / 12, "feet"),
  22441. weight: math.unit(160, "lb"),
  22442. name: "Front (Dressed)",
  22443. image: {
  22444. source: "./media/characters/kira/front-dressed.svg",
  22445. extra: 906 / 786,
  22446. bottom: 0.01
  22447. }
  22448. },
  22449. beans: {
  22450. height: math.unit(0.92, "feet"),
  22451. name: "Beans",
  22452. image: {
  22453. source: "./media/characters/kira/beans.svg"
  22454. }
  22455. },
  22456. },
  22457. [
  22458. {
  22459. name: "Normal",
  22460. height: math.unit(5 + 3 / 12, "feet"),
  22461. default: true
  22462. },
  22463. ]
  22464. ))
  22465. characterMakers.push(() => makeCharacter(
  22466. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  22467. {
  22468. front: {
  22469. height: math.unit(5 + 4 / 12, "feet"),
  22470. weight: math.unit(145, "lb"),
  22471. name: "Front",
  22472. image: {
  22473. source: "./media/characters/scramble/front.svg",
  22474. extra: 763 / 727,
  22475. bottom: 0.05
  22476. }
  22477. },
  22478. back: {
  22479. height: math.unit(5 + 4 / 12, "feet"),
  22480. weight: math.unit(145, "lb"),
  22481. name: "Back",
  22482. image: {
  22483. source: "./media/characters/scramble/back.svg",
  22484. extra: 826 / 737,
  22485. bottom: 0.002
  22486. }
  22487. },
  22488. },
  22489. [
  22490. {
  22491. name: "Normal",
  22492. height: math.unit(5 + 4 / 12, "feet"),
  22493. default: true
  22494. },
  22495. ]
  22496. ))
  22497. characterMakers.push(() => makeCharacter(
  22498. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  22499. {
  22500. side: {
  22501. height: math.unit(6 + 2 / 12, "feet"),
  22502. weight: math.unit(190, "lb"),
  22503. name: "Side",
  22504. image: {
  22505. source: "./media/characters/biscuit/side.svg",
  22506. extra: 858 / 791,
  22507. bottom: 0.044
  22508. }
  22509. },
  22510. },
  22511. [
  22512. {
  22513. name: "Normal",
  22514. height: math.unit(6 + 2 / 12, "feet"),
  22515. default: true
  22516. },
  22517. ]
  22518. ))
  22519. characterMakers.push(() => makeCharacter(
  22520. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  22521. {
  22522. front: {
  22523. height: math.unit(5 + 2 / 12, "feet"),
  22524. weight: math.unit(120, "lb"),
  22525. name: "Front",
  22526. image: {
  22527. source: "./media/characters/poffin/front.svg",
  22528. extra: 786 / 680,
  22529. bottom: 0.005
  22530. }
  22531. },
  22532. },
  22533. [
  22534. {
  22535. name: "Normal",
  22536. height: math.unit(5 + 2 / 12, "feet"),
  22537. default: true
  22538. },
  22539. ]
  22540. ))
  22541. characterMakers.push(() => makeCharacter(
  22542. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  22543. {
  22544. front: {
  22545. height: math.unit(6 + 3 / 12, "feet"),
  22546. weight: math.unit(519, "lb"),
  22547. name: "Front",
  22548. image: {
  22549. source: "./media/characters/dhari/front.svg",
  22550. extra: 1048 / 946,
  22551. bottom: 0.015
  22552. }
  22553. },
  22554. back: {
  22555. height: math.unit(6 + 3 / 12, "feet"),
  22556. weight: math.unit(519, "lb"),
  22557. name: "Back",
  22558. image: {
  22559. source: "./media/characters/dhari/back.svg",
  22560. extra: 1048 / 931,
  22561. bottom: 0.005
  22562. }
  22563. },
  22564. frontDressed: {
  22565. height: math.unit(6 + 3 / 12, "feet"),
  22566. weight: math.unit(519, "lb"),
  22567. name: "Front (Dressed)",
  22568. image: {
  22569. source: "./media/characters/dhari/front-dressed.svg",
  22570. extra: 1713 / 1546,
  22571. bottom: 0.02
  22572. }
  22573. },
  22574. backDressed: {
  22575. height: math.unit(6 + 3 / 12, "feet"),
  22576. weight: math.unit(519, "lb"),
  22577. name: "Back (Dressed)",
  22578. image: {
  22579. source: "./media/characters/dhari/back-dressed.svg",
  22580. extra: 1699 / 1537,
  22581. bottom: 0.01
  22582. }
  22583. },
  22584. maw: {
  22585. height: math.unit(0.95, "feet"),
  22586. name: "Maw",
  22587. image: {
  22588. source: "./media/characters/dhari/maw.svg"
  22589. }
  22590. },
  22591. wereFront: {
  22592. height: math.unit(12 + 8 / 12, "feet"),
  22593. weight: math.unit(4000, "lb"),
  22594. name: "Front (Were)",
  22595. image: {
  22596. source: "./media/characters/dhari/were-front.svg",
  22597. extra: 1065 / 969,
  22598. bottom: 0.015
  22599. }
  22600. },
  22601. wereBack: {
  22602. height: math.unit(12 + 8 / 12, "feet"),
  22603. weight: math.unit(4000, "lb"),
  22604. name: "Back (Were)",
  22605. image: {
  22606. source: "./media/characters/dhari/were-back.svg",
  22607. extra: 1065 / 969,
  22608. bottom: 0.012
  22609. }
  22610. },
  22611. wereMaw: {
  22612. height: math.unit(0.625, "meters"),
  22613. name: "Maw (Were)",
  22614. image: {
  22615. source: "./media/characters/dhari/were-maw.svg"
  22616. }
  22617. },
  22618. },
  22619. [
  22620. {
  22621. name: "Normal",
  22622. height: math.unit(6 + 3 / 12, "feet"),
  22623. default: true
  22624. },
  22625. ]
  22626. ))
  22627. characterMakers.push(() => makeCharacter(
  22628. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  22629. {
  22630. anthro: {
  22631. height: math.unit(5 + 7 / 12, "feet"),
  22632. weight: math.unit(175, "lb"),
  22633. name: "Anthro",
  22634. image: {
  22635. source: "./media/characters/rena-dyne/anthro.svg",
  22636. extra: 1849 / 1785,
  22637. bottom: 0.005
  22638. }
  22639. },
  22640. taur: {
  22641. height: math.unit(15 + 6 / 12, "feet"),
  22642. weight: math.unit(8000, "lb"),
  22643. name: "Taur",
  22644. image: {
  22645. source: "./media/characters/rena-dyne/taur.svg",
  22646. extra: 2315 / 2234,
  22647. bottom: 0.033
  22648. }
  22649. },
  22650. },
  22651. [
  22652. {
  22653. name: "Normal",
  22654. height: math.unit(5 + 7 / 12, "feet"),
  22655. default: true
  22656. },
  22657. ]
  22658. ))
  22659. characterMakers.push(() => makeCharacter(
  22660. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  22661. {
  22662. front: {
  22663. height: math.unit(8, "feet"),
  22664. weight: math.unit(600, "lb"),
  22665. name: "Front",
  22666. image: {
  22667. source: "./media/characters/weremeep/front.svg",
  22668. extra: 970/849,
  22669. bottom: 7/977
  22670. }
  22671. },
  22672. },
  22673. [
  22674. {
  22675. name: "Normal",
  22676. height: math.unit(8, "feet"),
  22677. default: true
  22678. },
  22679. {
  22680. name: "Lorg",
  22681. height: math.unit(12, "feet")
  22682. },
  22683. {
  22684. name: "Oh Lawd She Comin'",
  22685. height: math.unit(20, "feet")
  22686. },
  22687. ]
  22688. ))
  22689. characterMakers.push(() => makeCharacter(
  22690. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  22691. {
  22692. front: {
  22693. height: math.unit(4, "feet"),
  22694. weight: math.unit(90, "lb"),
  22695. name: "Front",
  22696. image: {
  22697. source: "./media/characters/reza/front.svg",
  22698. extra: 1183 / 1111,
  22699. bottom: 0.017
  22700. }
  22701. },
  22702. back: {
  22703. height: math.unit(4, "feet"),
  22704. weight: math.unit(90, "lb"),
  22705. name: "Back",
  22706. image: {
  22707. source: "./media/characters/reza/back.svg",
  22708. extra: 1183 / 1111,
  22709. bottom: 0.01
  22710. }
  22711. },
  22712. drake: {
  22713. height: math.unit(30, "feet"),
  22714. weight: math.unit(246960, "lb"),
  22715. name: "Drake",
  22716. image: {
  22717. source: "./media/characters/reza/drake.svg",
  22718. extra: 2350 / 2024,
  22719. bottom: 60.7 / 2403
  22720. }
  22721. },
  22722. },
  22723. [
  22724. {
  22725. name: "Normal",
  22726. height: math.unit(4, "feet"),
  22727. default: true
  22728. },
  22729. ]
  22730. ))
  22731. characterMakers.push(() => makeCharacter(
  22732. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  22733. {
  22734. side: {
  22735. height: math.unit(15, "feet"),
  22736. weight: math.unit(14, "tons"),
  22737. name: "Side",
  22738. image: {
  22739. source: "./media/characters/athea/side.svg",
  22740. extra: 960 / 540,
  22741. bottom: 0.003
  22742. }
  22743. },
  22744. sitting: {
  22745. height: math.unit(6 * 2.85, "feet"),
  22746. weight: math.unit(14, "tons"),
  22747. name: "Sitting",
  22748. image: {
  22749. source: "./media/characters/athea/sitting.svg",
  22750. extra: 621 / 581,
  22751. bottom: 0.075
  22752. }
  22753. },
  22754. maw: {
  22755. height: math.unit(7.59498031496063, "feet"),
  22756. name: "Maw",
  22757. image: {
  22758. source: "./media/characters/athea/maw.svg"
  22759. }
  22760. },
  22761. },
  22762. [
  22763. {
  22764. name: "Lap Cat",
  22765. height: math.unit(2.5, "feet")
  22766. },
  22767. {
  22768. name: "Minimacro",
  22769. height: math.unit(15, "feet"),
  22770. default: true
  22771. },
  22772. {
  22773. name: "Macro",
  22774. height: math.unit(120, "feet")
  22775. },
  22776. {
  22777. name: "Macro+",
  22778. height: math.unit(640, "feet")
  22779. },
  22780. {
  22781. name: "Colossus",
  22782. height: math.unit(2.2, "miles")
  22783. },
  22784. ]
  22785. ))
  22786. characterMakers.push(() => makeCharacter(
  22787. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  22788. {
  22789. front: {
  22790. height: math.unit(8 + 8 / 12, "feet"),
  22791. weight: math.unit(130, "kg"),
  22792. name: "Front",
  22793. image: {
  22794. source: "./media/characters/seroko/front.svg",
  22795. extra: 1385 / 1280,
  22796. bottom: 0.025
  22797. }
  22798. },
  22799. back: {
  22800. height: math.unit(8 + 8 / 12, "feet"),
  22801. weight: math.unit(130, "kg"),
  22802. name: "Back",
  22803. image: {
  22804. source: "./media/characters/seroko/back.svg",
  22805. extra: 1369 / 1238,
  22806. bottom: 0.018
  22807. }
  22808. },
  22809. frontDressed: {
  22810. height: math.unit(8 + 8 / 12, "feet"),
  22811. weight: math.unit(130, "kg"),
  22812. name: "Front (Dressed)",
  22813. image: {
  22814. source: "./media/characters/seroko/front-dressed.svg",
  22815. extra: 1366 / 1275,
  22816. bottom: 0.03
  22817. }
  22818. },
  22819. },
  22820. [
  22821. {
  22822. name: "Normal",
  22823. height: math.unit(8 + 8 / 12, "feet"),
  22824. default: true
  22825. },
  22826. ]
  22827. ))
  22828. characterMakers.push(() => makeCharacter(
  22829. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  22830. {
  22831. front: {
  22832. height: math.unit(5.5, "feet"),
  22833. weight: math.unit(160, "lb"),
  22834. name: "Front",
  22835. image: {
  22836. source: "./media/characters/quatzi/front.svg",
  22837. extra: 2346 / 2242,
  22838. bottom: 0.015
  22839. }
  22840. },
  22841. },
  22842. [
  22843. {
  22844. name: "Normal",
  22845. height: math.unit(5.5, "feet"),
  22846. default: true
  22847. },
  22848. {
  22849. name: "Big",
  22850. height: math.unit(7.7, "feet")
  22851. },
  22852. ]
  22853. ))
  22854. characterMakers.push(() => makeCharacter(
  22855. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  22856. {
  22857. front: {
  22858. height: math.unit(5 + 11 / 12, "feet"),
  22859. weight: math.unit(180, "lb"),
  22860. name: "Front",
  22861. image: {
  22862. source: "./media/characters/sen/front.svg",
  22863. extra: 1321 / 1254,
  22864. bottom: 0.015
  22865. }
  22866. },
  22867. side: {
  22868. height: math.unit(5 + 11 / 12, "feet"),
  22869. weight: math.unit(180, "lb"),
  22870. name: "Side",
  22871. image: {
  22872. source: "./media/characters/sen/side.svg",
  22873. extra: 1321 / 1254,
  22874. bottom: 0.007
  22875. }
  22876. },
  22877. back: {
  22878. height: math.unit(5 + 11 / 12, "feet"),
  22879. weight: math.unit(180, "lb"),
  22880. name: "Back",
  22881. image: {
  22882. source: "./media/characters/sen/back.svg",
  22883. extra: 1321 / 1254
  22884. }
  22885. },
  22886. },
  22887. [
  22888. {
  22889. name: "Normal",
  22890. height: math.unit(5 + 11 / 12, "feet"),
  22891. default: true
  22892. },
  22893. ]
  22894. ))
  22895. characterMakers.push(() => makeCharacter(
  22896. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  22897. {
  22898. front: {
  22899. height: math.unit(166.6, "cm"),
  22900. weight: math.unit(66.6, "kg"),
  22901. name: "Front",
  22902. image: {
  22903. source: "./media/characters/fruity/front.svg",
  22904. extra: 1510 / 1386,
  22905. bottom: 0.04
  22906. }
  22907. },
  22908. back: {
  22909. height: math.unit(166.6, "cm"),
  22910. weight: math.unit(66.6, "lb"),
  22911. name: "Back",
  22912. image: {
  22913. source: "./media/characters/fruity/back.svg",
  22914. extra: 1563 / 1435,
  22915. bottom: 0.005
  22916. }
  22917. },
  22918. },
  22919. [
  22920. {
  22921. name: "Normal",
  22922. height: math.unit(166.6, "cm"),
  22923. default: true
  22924. },
  22925. {
  22926. name: "Demonic",
  22927. height: math.unit(166.6, "feet")
  22928. },
  22929. ]
  22930. ))
  22931. characterMakers.push(() => makeCharacter(
  22932. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  22933. {
  22934. side: {
  22935. height: math.unit(10, "feet"),
  22936. weight: math.unit(500, "lb"),
  22937. name: "Side",
  22938. image: {
  22939. source: "./media/characters/zost/side.svg",
  22940. extra: 2870/2533,
  22941. bottom: 252/3122
  22942. }
  22943. },
  22944. mawFront: {
  22945. height: math.unit(1.08, "meters"),
  22946. name: "Maw (Front)",
  22947. image: {
  22948. source: "./media/characters/zost/maw-front.svg"
  22949. }
  22950. },
  22951. mawSide: {
  22952. height: math.unit(2.66, "feet"),
  22953. name: "Maw (Side)",
  22954. image: {
  22955. source: "./media/characters/zost/maw-side.svg"
  22956. }
  22957. },
  22958. wingspan: {
  22959. height: math.unit(7.4, "feet"),
  22960. name: "Wingspan",
  22961. image: {
  22962. source: "./media/characters/zost/wingspan.svg"
  22963. }
  22964. },
  22965. },
  22966. [
  22967. {
  22968. name: "Normal",
  22969. height: math.unit(10, "feet"),
  22970. default: true
  22971. },
  22972. ]
  22973. ))
  22974. characterMakers.push(() => makeCharacter(
  22975. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  22976. {
  22977. front: {
  22978. height: math.unit(5 + 4 / 12, "feet"),
  22979. weight: math.unit(120, "lb"),
  22980. name: "Front",
  22981. image: {
  22982. source: "./media/characters/luci/front.svg",
  22983. extra: 1985 / 1884,
  22984. bottom: 0.04
  22985. }
  22986. },
  22987. back: {
  22988. height: math.unit(5 + 4 / 12, "feet"),
  22989. weight: math.unit(120, "lb"),
  22990. name: "Back",
  22991. image: {
  22992. source: "./media/characters/luci/back.svg",
  22993. extra: 1892 / 1791,
  22994. bottom: 0.002
  22995. }
  22996. },
  22997. },
  22998. [
  22999. {
  23000. name: "Normal",
  23001. height: math.unit(5 + 4 / 12, "feet"),
  23002. default: true
  23003. },
  23004. ]
  23005. ))
  23006. characterMakers.push(() => makeCharacter(
  23007. { name: "2th", species: ["monster"], tags: ["anthro"] },
  23008. {
  23009. front: {
  23010. height: math.unit(1500, "feet"),
  23011. weight: math.unit(3.8e6, "tons"),
  23012. name: "Front",
  23013. image: {
  23014. source: "./media/characters/2th/front.svg",
  23015. extra: 3489 / 3350,
  23016. bottom: 0.1
  23017. }
  23018. },
  23019. foot: {
  23020. height: math.unit(461, "feet"),
  23021. name: "Foot",
  23022. image: {
  23023. source: "./media/characters/2th/foot.svg"
  23024. }
  23025. },
  23026. },
  23027. [
  23028. {
  23029. name: "\"Micro\"",
  23030. height: math.unit(15 + 7 / 12, "feet")
  23031. },
  23032. {
  23033. name: "Normal",
  23034. height: math.unit(1500, "feet"),
  23035. default: true
  23036. },
  23037. {
  23038. name: "Macro",
  23039. height: math.unit(5000, "feet")
  23040. },
  23041. {
  23042. name: "Megamacro",
  23043. height: math.unit(15, "miles")
  23044. },
  23045. {
  23046. name: "Gigamacro",
  23047. height: math.unit(4000, "miles")
  23048. },
  23049. {
  23050. name: "Galactic",
  23051. height: math.unit(50, "AU")
  23052. },
  23053. ]
  23054. ))
  23055. characterMakers.push(() => makeCharacter(
  23056. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  23057. {
  23058. front: {
  23059. height: math.unit(5 + 6 / 12, "feet"),
  23060. weight: math.unit(220, "lb"),
  23061. name: "Front",
  23062. image: {
  23063. source: "./media/characters/amethyst/front.svg",
  23064. extra: 2078 / 2040,
  23065. bottom: 0.045
  23066. }
  23067. },
  23068. back: {
  23069. height: math.unit(5 + 6 / 12, "feet"),
  23070. weight: math.unit(220, "lb"),
  23071. name: "Back",
  23072. image: {
  23073. source: "./media/characters/amethyst/back.svg",
  23074. extra: 2021 / 1989,
  23075. bottom: 0.02
  23076. }
  23077. },
  23078. },
  23079. [
  23080. {
  23081. name: "Normal",
  23082. height: math.unit(5 + 6 / 12, "feet"),
  23083. default: true
  23084. },
  23085. ]
  23086. ))
  23087. characterMakers.push(() => makeCharacter(
  23088. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  23089. {
  23090. front: {
  23091. height: math.unit(4 + 11 / 12, "feet"),
  23092. weight: math.unit(120, "lb"),
  23093. name: "Front",
  23094. image: {
  23095. source: "./media/characters/yumi-akiyama/front.svg",
  23096. extra: 1327 / 1235,
  23097. bottom: 0.02
  23098. }
  23099. },
  23100. back: {
  23101. height: math.unit(4 + 11 / 12, "feet"),
  23102. weight: math.unit(120, "lb"),
  23103. name: "Back",
  23104. image: {
  23105. source: "./media/characters/yumi-akiyama/back.svg",
  23106. extra: 1287 / 1245,
  23107. bottom: 0.002
  23108. }
  23109. },
  23110. },
  23111. [
  23112. {
  23113. name: "Galactic",
  23114. height: math.unit(50, "galaxies"),
  23115. default: true
  23116. },
  23117. {
  23118. name: "Universal",
  23119. height: math.unit(100, "universes")
  23120. },
  23121. ]
  23122. ))
  23123. characterMakers.push(() => makeCharacter(
  23124. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  23125. {
  23126. front: {
  23127. height: math.unit(8, "feet"),
  23128. weight: math.unit(500, "lb"),
  23129. name: "Front",
  23130. image: {
  23131. source: "./media/characters/rifter-yrmori/front.svg",
  23132. extra: 1180 / 1125,
  23133. bottom: 0.02
  23134. }
  23135. },
  23136. back: {
  23137. height: math.unit(8, "feet"),
  23138. weight: math.unit(500, "lb"),
  23139. name: "Back",
  23140. image: {
  23141. source: "./media/characters/rifter-yrmori/back.svg",
  23142. extra: 1190 / 1145,
  23143. bottom: 0.001
  23144. }
  23145. },
  23146. wings: {
  23147. height: math.unit(7.75, "feet"),
  23148. weight: math.unit(500, "lb"),
  23149. name: "Wings",
  23150. image: {
  23151. source: "./media/characters/rifter-yrmori/wings.svg",
  23152. extra: 1357 / 1285
  23153. }
  23154. },
  23155. maw: {
  23156. height: math.unit(0.8, "feet"),
  23157. name: "Maw",
  23158. image: {
  23159. source: "./media/characters/rifter-yrmori/maw.svg"
  23160. }
  23161. },
  23162. mawfront: {
  23163. height: math.unit(1.45, "feet"),
  23164. name: "Maw (Front)",
  23165. image: {
  23166. source: "./media/characters/rifter-yrmori/maw-front.svg"
  23167. }
  23168. },
  23169. },
  23170. [
  23171. {
  23172. name: "Normal",
  23173. height: math.unit(8, "feet"),
  23174. default: true
  23175. },
  23176. {
  23177. name: "Macro",
  23178. height: math.unit(42, "meters")
  23179. },
  23180. ]
  23181. ))
  23182. characterMakers.push(() => makeCharacter(
  23183. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  23184. {
  23185. were: {
  23186. height: math.unit(25 + 6 / 12, "feet"),
  23187. weight: math.unit(10000, "lb"),
  23188. name: "Were",
  23189. image: {
  23190. source: "./media/characters/tahajin/were.svg",
  23191. extra: 801 / 770,
  23192. bottom: 0.042
  23193. }
  23194. },
  23195. aquatic: {
  23196. height: math.unit(6 + 4 / 12, "feet"),
  23197. weight: math.unit(160, "lb"),
  23198. name: "Aquatic",
  23199. image: {
  23200. source: "./media/characters/tahajin/aquatic.svg",
  23201. extra: 572 / 542,
  23202. bottom: 0.04
  23203. }
  23204. },
  23205. chow: {
  23206. height: math.unit(8 + 11 / 12, "feet"),
  23207. weight: math.unit(450, "lb"),
  23208. name: "Chow",
  23209. image: {
  23210. source: "./media/characters/tahajin/chow.svg",
  23211. extra: 660 / 640,
  23212. bottom: 0.015
  23213. }
  23214. },
  23215. demiNaga: {
  23216. height: math.unit(6 + 8 / 12, "feet"),
  23217. weight: math.unit(300, "lb"),
  23218. name: "Demi Naga",
  23219. image: {
  23220. source: "./media/characters/tahajin/demi-naga.svg",
  23221. extra: 643 / 615,
  23222. bottom: 0.1
  23223. }
  23224. },
  23225. data: {
  23226. height: math.unit(5, "inches"),
  23227. weight: math.unit(0.1, "lb"),
  23228. name: "Data",
  23229. image: {
  23230. source: "./media/characters/tahajin/data.svg"
  23231. }
  23232. },
  23233. fluu: {
  23234. height: math.unit(5 + 7 / 12, "feet"),
  23235. weight: math.unit(140, "lb"),
  23236. name: "Fluu",
  23237. image: {
  23238. source: "./media/characters/tahajin/fluu.svg",
  23239. extra: 628 / 592,
  23240. bottom: 0.02
  23241. }
  23242. },
  23243. starWarrior: {
  23244. height: math.unit(4 + 5 / 12, "feet"),
  23245. weight: math.unit(50, "lb"),
  23246. name: "Star Warrior",
  23247. image: {
  23248. source: "./media/characters/tahajin/star-warrior.svg"
  23249. }
  23250. },
  23251. },
  23252. [
  23253. {
  23254. name: "Normal",
  23255. height: math.unit(25 + 6 / 12, "feet"),
  23256. default: true
  23257. },
  23258. ]
  23259. ))
  23260. characterMakers.push(() => makeCharacter(
  23261. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  23262. {
  23263. front: {
  23264. height: math.unit(8, "feet"),
  23265. weight: math.unit(350, "lb"),
  23266. name: "Front",
  23267. image: {
  23268. source: "./media/characters/gabira/front.svg",
  23269. extra: 1261/1154,
  23270. bottom: 51/1312
  23271. }
  23272. },
  23273. back: {
  23274. height: math.unit(8, "feet"),
  23275. weight: math.unit(350, "lb"),
  23276. name: "Back",
  23277. image: {
  23278. source: "./media/characters/gabira/back.svg",
  23279. extra: 1265/1163,
  23280. bottom: 46/1311
  23281. }
  23282. },
  23283. head: {
  23284. height: math.unit(2.85, "feet"),
  23285. name: "Head",
  23286. image: {
  23287. source: "./media/characters/gabira/head.svg"
  23288. }
  23289. },
  23290. },
  23291. [
  23292. {
  23293. name: "Normal",
  23294. height: math.unit(8, "feet"),
  23295. default: true
  23296. },
  23297. ]
  23298. ))
  23299. characterMakers.push(() => makeCharacter(
  23300. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  23301. {
  23302. front: {
  23303. height: math.unit(5 + 3 / 12, "feet"),
  23304. weight: math.unit(137, "lb"),
  23305. name: "Front",
  23306. image: {
  23307. source: "./media/characters/sasha-katraine/front.svg",
  23308. extra: 1745/1694,
  23309. bottom: 37/1782
  23310. }
  23311. },
  23312. back: {
  23313. height: math.unit(5 + 3 / 12, "feet"),
  23314. weight: math.unit(137, "lb"),
  23315. name: "Back",
  23316. image: {
  23317. source: "./media/characters/sasha-katraine/back.svg",
  23318. extra: 1776/1699,
  23319. bottom: 26/1802
  23320. }
  23321. },
  23322. },
  23323. [
  23324. {
  23325. name: "Micro",
  23326. height: math.unit(5, "inches")
  23327. },
  23328. {
  23329. name: "Normal",
  23330. height: math.unit(5 + 3 / 12, "feet"),
  23331. default: true
  23332. },
  23333. ]
  23334. ))
  23335. characterMakers.push(() => makeCharacter(
  23336. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  23337. {
  23338. side: {
  23339. height: math.unit(4, "inches"),
  23340. weight: math.unit(200, "grams"),
  23341. name: "Side",
  23342. image: {
  23343. source: "./media/characters/der/side.svg",
  23344. extra: 719 / 400,
  23345. bottom: 30.6 / 749.9187
  23346. }
  23347. },
  23348. },
  23349. [
  23350. {
  23351. name: "Micro",
  23352. height: math.unit(4, "inches"),
  23353. default: true
  23354. },
  23355. ]
  23356. ))
  23357. characterMakers.push(() => makeCharacter(
  23358. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  23359. {
  23360. side: {
  23361. height: math.unit(30, "meters"),
  23362. weight: math.unit(700, "tonnes"),
  23363. name: "Side",
  23364. image: {
  23365. source: "./media/characters/fixerdragon/side.svg",
  23366. extra: (1293.0514 - 116.03) / 1106.86,
  23367. bottom: 116.03 / 1293.0514
  23368. }
  23369. },
  23370. },
  23371. [
  23372. {
  23373. name: "Planck",
  23374. height: math.unit(1.6e-35, "meters")
  23375. },
  23376. {
  23377. name: "Micro",
  23378. height: math.unit(0.4, "meters")
  23379. },
  23380. {
  23381. name: "Normal",
  23382. height: math.unit(30, "meters"),
  23383. default: true
  23384. },
  23385. {
  23386. name: "Megamacro",
  23387. height: math.unit(1.2, "megameters")
  23388. },
  23389. {
  23390. name: "Teramacro",
  23391. height: math.unit(130, "terameters")
  23392. },
  23393. {
  23394. name: "Yottamacro",
  23395. height: math.unit(6200, "yottameters")
  23396. },
  23397. ]
  23398. ));
  23399. characterMakers.push(() => makeCharacter(
  23400. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  23401. {
  23402. front: {
  23403. height: math.unit(8, "feet"),
  23404. weight: math.unit(250, "lb"),
  23405. name: "Front",
  23406. image: {
  23407. source: "./media/characters/kite/front.svg",
  23408. extra: 2796 / 2659,
  23409. bottom: 0.002
  23410. }
  23411. },
  23412. },
  23413. [
  23414. {
  23415. name: "Normal",
  23416. height: math.unit(8, "feet"),
  23417. default: true
  23418. },
  23419. {
  23420. name: "Macro",
  23421. height: math.unit(360, "feet")
  23422. },
  23423. {
  23424. name: "Megamacro",
  23425. height: math.unit(1500, "feet")
  23426. },
  23427. ]
  23428. ))
  23429. characterMakers.push(() => makeCharacter(
  23430. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  23431. {
  23432. front: {
  23433. height: math.unit(5 + 11/12, "feet"),
  23434. weight: math.unit(170, "lb"),
  23435. name: "Front",
  23436. image: {
  23437. source: "./media/characters/poojawa-vynar/front.svg",
  23438. extra: 1735/1585,
  23439. bottom: 96/1831
  23440. }
  23441. },
  23442. back: {
  23443. height: math.unit(5 + 11/12, "feet"),
  23444. weight: math.unit(170, "lb"),
  23445. name: "Back",
  23446. image: {
  23447. source: "./media/characters/poojawa-vynar/back.svg",
  23448. extra: 1749/1607,
  23449. bottom: 28/1777
  23450. }
  23451. },
  23452. male: {
  23453. height: math.unit(5 + 11/12, "feet"),
  23454. weight: math.unit(170, "lb"),
  23455. name: "Male",
  23456. image: {
  23457. source: "./media/characters/poojawa-vynar/male.svg",
  23458. extra: 1855/1713,
  23459. bottom: 63/1918
  23460. }
  23461. },
  23462. taur: {
  23463. height: math.unit(5 + 11/12, "feet"),
  23464. weight: math.unit(170, "lb"),
  23465. name: "Taur",
  23466. image: {
  23467. source: "./media/characters/poojawa-vynar/taur.svg",
  23468. extra: 1151/1059,
  23469. bottom: 356/1507
  23470. }
  23471. },
  23472. frontDressed: {
  23473. height: math.unit(5 + 11/12, "feet"),
  23474. weight: math.unit(170, "lb"),
  23475. name: "Front (Dressed)",
  23476. image: {
  23477. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  23478. extra: 1735/1585,
  23479. bottom: 96/1831
  23480. }
  23481. },
  23482. backDressed: {
  23483. height: math.unit(5 + 11/12, "feet"),
  23484. weight: math.unit(170, "lb"),
  23485. name: "Back (Dressed)",
  23486. image: {
  23487. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  23488. extra: 1749/1607,
  23489. bottom: 28/1777
  23490. }
  23491. },
  23492. maleDressed: {
  23493. height: math.unit(5 + 11/12, "feet"),
  23494. weight: math.unit(170, "lb"),
  23495. name: "Male (Dressed)",
  23496. image: {
  23497. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  23498. extra: 1855/1713,
  23499. bottom: 63/1918
  23500. }
  23501. },
  23502. taurDressed: {
  23503. height: math.unit(5 + 11/12, "feet"),
  23504. weight: math.unit(170, "lb"),
  23505. name: "Taur (Dressed)",
  23506. image: {
  23507. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  23508. extra: 1151/1059,
  23509. bottom: 356/1507
  23510. }
  23511. },
  23512. maw: {
  23513. height: math.unit(1.46, "feet"),
  23514. name: "Maw",
  23515. image: {
  23516. source: "./media/characters/poojawa-vynar/maw.svg"
  23517. }
  23518. },
  23519. head: {
  23520. height: math.unit(2.34, "feet"),
  23521. name: "Head",
  23522. image: {
  23523. source: "./media/characters/poojawa-vynar/head.svg"
  23524. }
  23525. },
  23526. paw: {
  23527. height: math.unit(1.61, "feet"),
  23528. name: "Paw",
  23529. image: {
  23530. source: "./media/characters/poojawa-vynar/paw.svg"
  23531. }
  23532. },
  23533. pawToering: {
  23534. height: math.unit(1.72, "feet"),
  23535. name: "Paw (Toering)",
  23536. image: {
  23537. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  23538. }
  23539. },
  23540. toering: {
  23541. height: math.unit(2.9, "inches"),
  23542. name: "Toering",
  23543. image: {
  23544. source: "./media/characters/poojawa-vynar/toering.svg"
  23545. }
  23546. },
  23547. shaft: {
  23548. height: math.unit(0.625, "feet"),
  23549. name: "Shaft",
  23550. image: {
  23551. source: "./media/characters/poojawa-vynar/shaft.svg"
  23552. }
  23553. },
  23554. spade: {
  23555. height: math.unit(0.42, "feet"),
  23556. name: "Spade",
  23557. image: {
  23558. source: "./media/characters/poojawa-vynar/spade.svg"
  23559. }
  23560. },
  23561. },
  23562. [
  23563. {
  23564. name: "Shortstack",
  23565. height: math.unit(4, "feet")
  23566. },
  23567. {
  23568. name: "Normal",
  23569. height: math.unit(5 + 11 / 12, "feet"),
  23570. default: true
  23571. },
  23572. {
  23573. name: "Tauric",
  23574. height: math.unit(4, "meters")
  23575. },
  23576. ]
  23577. ))
  23578. characterMakers.push(() => makeCharacter(
  23579. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  23580. {
  23581. front: {
  23582. height: math.unit(293, "meters"),
  23583. weight: math.unit(70400, "tons"),
  23584. name: "Front",
  23585. image: {
  23586. source: "./media/characters/violette/front.svg",
  23587. extra: 1227 / 1180,
  23588. bottom: 0.005
  23589. }
  23590. },
  23591. back: {
  23592. height: math.unit(293, "meters"),
  23593. weight: math.unit(70400, "tons"),
  23594. name: "Back",
  23595. image: {
  23596. source: "./media/characters/violette/back.svg",
  23597. extra: 1227 / 1180,
  23598. bottom: 0.005
  23599. }
  23600. },
  23601. },
  23602. [
  23603. {
  23604. name: "Macro",
  23605. height: math.unit(293, "meters"),
  23606. default: true
  23607. },
  23608. ]
  23609. ))
  23610. characterMakers.push(() => makeCharacter(
  23611. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  23612. {
  23613. front: {
  23614. height: math.unit(1050, "feet"),
  23615. weight: math.unit(200000, "tons"),
  23616. name: "Front",
  23617. image: {
  23618. source: "./media/characters/alessandra/front.svg",
  23619. extra: 960 / 912,
  23620. bottom: 0.06
  23621. }
  23622. },
  23623. },
  23624. [
  23625. {
  23626. name: "Macro",
  23627. height: math.unit(1050, "feet")
  23628. },
  23629. {
  23630. name: "Macro+",
  23631. height: math.unit(900, "meters"),
  23632. default: true
  23633. },
  23634. ]
  23635. ))
  23636. characterMakers.push(() => makeCharacter(
  23637. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  23638. {
  23639. front: {
  23640. height: math.unit(5, "feet"),
  23641. weight: math.unit(187, "lb"),
  23642. name: "Front",
  23643. image: {
  23644. source: "./media/characters/person/front.svg",
  23645. extra: 3087 / 2945,
  23646. bottom: 91 / 3181
  23647. }
  23648. },
  23649. },
  23650. [
  23651. {
  23652. name: "Micro",
  23653. height: math.unit(3, "inches")
  23654. },
  23655. {
  23656. name: "Normal",
  23657. height: math.unit(5, "feet"),
  23658. default: true
  23659. },
  23660. {
  23661. name: "Macro",
  23662. height: math.unit(90, "feet")
  23663. },
  23664. {
  23665. name: "Max Size",
  23666. height: math.unit(280, "feet")
  23667. },
  23668. ]
  23669. ))
  23670. characterMakers.push(() => makeCharacter(
  23671. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  23672. {
  23673. front: {
  23674. height: math.unit(4.5, "meters"),
  23675. weight: math.unit(3200, "lb"),
  23676. name: "Front",
  23677. image: {
  23678. source: "./media/characters/ty/front.svg",
  23679. extra: 1038 / 960,
  23680. bottom: 31.156 / 1068
  23681. }
  23682. },
  23683. back: {
  23684. height: math.unit(4.5, "meters"),
  23685. weight: math.unit(3200, "lb"),
  23686. name: "Back",
  23687. image: {
  23688. source: "./media/characters/ty/back.svg",
  23689. extra: 1044 / 966,
  23690. bottom: 7.48 / 1049
  23691. }
  23692. },
  23693. },
  23694. [
  23695. {
  23696. name: "Normal",
  23697. height: math.unit(4.5, "meters"),
  23698. default: true
  23699. },
  23700. ]
  23701. ))
  23702. characterMakers.push(() => makeCharacter(
  23703. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  23704. {
  23705. front: {
  23706. height: math.unit(5 + 4 / 12, "feet"),
  23707. weight: math.unit(115, "lb"),
  23708. name: "Front",
  23709. image: {
  23710. source: "./media/characters/rocky/front.svg",
  23711. extra: 1012 / 975,
  23712. bottom: 54 / 1066
  23713. }
  23714. },
  23715. },
  23716. [
  23717. {
  23718. name: "Normal",
  23719. height: math.unit(5 + 4 / 12, "feet"),
  23720. default: true
  23721. },
  23722. ]
  23723. ))
  23724. characterMakers.push(() => makeCharacter(
  23725. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  23726. {
  23727. upright: {
  23728. height: math.unit(6, "meters"),
  23729. weight: math.unit(4000, "kg"),
  23730. name: "Upright",
  23731. image: {
  23732. source: "./media/characters/ruin/upright.svg",
  23733. extra: 668 / 661,
  23734. bottom: 42 / 799.8396
  23735. }
  23736. },
  23737. },
  23738. [
  23739. {
  23740. name: "Normal",
  23741. height: math.unit(6, "meters"),
  23742. default: true
  23743. },
  23744. ]
  23745. ))
  23746. characterMakers.push(() => makeCharacter(
  23747. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  23748. {
  23749. front: {
  23750. height: math.unit(5, "feet"),
  23751. weight: math.unit(106, "lb"),
  23752. name: "Front",
  23753. image: {
  23754. source: "./media/characters/robin/front.svg",
  23755. extra: 862 / 799,
  23756. bottom: 42.4 / 914.8856
  23757. }
  23758. },
  23759. },
  23760. [
  23761. {
  23762. name: "Normal",
  23763. height: math.unit(5, "feet"),
  23764. default: true
  23765. },
  23766. ]
  23767. ))
  23768. characterMakers.push(() => makeCharacter(
  23769. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  23770. {
  23771. side: {
  23772. height: math.unit(3, "feet"),
  23773. weight: math.unit(225, "lb"),
  23774. name: "Side",
  23775. image: {
  23776. source: "./media/characters/saian/side.svg",
  23777. extra: 566 / 356,
  23778. bottom: 79.7 / 643
  23779. }
  23780. },
  23781. maw: {
  23782. height: math.unit(2.85, "feet"),
  23783. name: "Maw",
  23784. image: {
  23785. source: "./media/characters/saian/maw.svg"
  23786. }
  23787. },
  23788. },
  23789. [
  23790. {
  23791. name: "Normal",
  23792. height: math.unit(3, "feet"),
  23793. default: true
  23794. },
  23795. ]
  23796. ))
  23797. characterMakers.push(() => makeCharacter(
  23798. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  23799. {
  23800. side: {
  23801. height: math.unit(8, "feet"),
  23802. weight: math.unit(300, "lb"),
  23803. name: "Side",
  23804. image: {
  23805. source: "./media/characters/equus-silvermane/side.svg",
  23806. extra: 2176 / 2050,
  23807. bottom: 65.7 / 2245
  23808. }
  23809. },
  23810. front: {
  23811. height: math.unit(8, "feet"),
  23812. weight: math.unit(300, "lb"),
  23813. name: "Front",
  23814. image: {
  23815. source: "./media/characters/equus-silvermane/front.svg",
  23816. extra: 4633 / 4400,
  23817. bottom: 71.3 / 4706.915
  23818. }
  23819. },
  23820. sideStepping: {
  23821. height: math.unit(8, "feet"),
  23822. weight: math.unit(300, "lb"),
  23823. name: "Side (Stepping)",
  23824. image: {
  23825. source: "./media/characters/equus-silvermane/side-stepping.svg",
  23826. extra: 1968 / 1860,
  23827. bottom: 16.4 / 1989
  23828. }
  23829. },
  23830. },
  23831. [
  23832. {
  23833. name: "Normal",
  23834. height: math.unit(8, "feet")
  23835. },
  23836. {
  23837. name: "Minimacro",
  23838. height: math.unit(75, "feet"),
  23839. default: true
  23840. },
  23841. {
  23842. name: "Macro",
  23843. height: math.unit(150, "feet")
  23844. },
  23845. {
  23846. name: "Macro+",
  23847. height: math.unit(1000, "feet")
  23848. },
  23849. {
  23850. name: "Megamacro",
  23851. height: math.unit(1, "mile")
  23852. },
  23853. ]
  23854. ))
  23855. characterMakers.push(() => makeCharacter(
  23856. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  23857. {
  23858. side: {
  23859. height: math.unit(20, "feet"),
  23860. weight: math.unit(30000, "kg"),
  23861. name: "Side",
  23862. image: {
  23863. source: "./media/characters/windar/side.svg",
  23864. extra: 1491 / 1248,
  23865. bottom: 82.56 / 1568
  23866. }
  23867. },
  23868. },
  23869. [
  23870. {
  23871. name: "Normal",
  23872. height: math.unit(20, "feet"),
  23873. default: true
  23874. },
  23875. ]
  23876. ))
  23877. characterMakers.push(() => makeCharacter(
  23878. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  23879. {
  23880. side: {
  23881. height: math.unit(15.66, "feet"),
  23882. weight: math.unit(150, "lb"),
  23883. name: "Side",
  23884. image: {
  23885. source: "./media/characters/melody/side.svg",
  23886. extra: 1097 / 944,
  23887. bottom: 11.8 / 1109
  23888. }
  23889. },
  23890. sideOutfit: {
  23891. height: math.unit(15.66, "feet"),
  23892. weight: math.unit(150, "lb"),
  23893. name: "Side (Outfit)",
  23894. image: {
  23895. source: "./media/characters/melody/side-outfit.svg",
  23896. extra: 1097 / 944,
  23897. bottom: 11.8 / 1109
  23898. }
  23899. },
  23900. },
  23901. [
  23902. {
  23903. name: "Normal",
  23904. height: math.unit(15.66, "feet"),
  23905. default: true
  23906. },
  23907. ]
  23908. ))
  23909. characterMakers.push(() => makeCharacter(
  23910. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  23911. {
  23912. armoredFront: {
  23913. height: math.unit(8, "feet"),
  23914. weight: math.unit(325, "lb"),
  23915. name: "Front",
  23916. image: {
  23917. source: "./media/characters/windera/armored-front.svg",
  23918. extra: 1830/1598,
  23919. bottom: 151/1981
  23920. },
  23921. form: "armored",
  23922. default: true
  23923. },
  23924. macroFront: {
  23925. height: math.unit(70, "feet"),
  23926. weight: math.unit(315453, "lb"),
  23927. name: "Front",
  23928. image: {
  23929. source: "./media/characters/windera/macro-front.svg",
  23930. extra: 963/883,
  23931. bottom: 23/986
  23932. },
  23933. form: "macro",
  23934. default: true
  23935. },
  23936. },
  23937. [
  23938. {
  23939. name: "Normal",
  23940. height: math.unit(8, "feet"),
  23941. default: true,
  23942. form: "armored"
  23943. },
  23944. {
  23945. name: "Normal",
  23946. height: math.unit(70, "feet"),
  23947. default: true,
  23948. form: "macro"
  23949. },
  23950. ],
  23951. {
  23952. "armored": {
  23953. name: "Armored",
  23954. default: true
  23955. },
  23956. "macro": {
  23957. name: "Macro",
  23958. },
  23959. }
  23960. ))
  23961. characterMakers.push(() => makeCharacter(
  23962. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  23963. {
  23964. front: {
  23965. height: math.unit(28.75, "feet"),
  23966. weight: math.unit(2000, "kg"),
  23967. name: "Front",
  23968. image: {
  23969. source: "./media/characters/sonear/front.svg",
  23970. extra: 1041.1 / 964.9,
  23971. bottom: 53.7 / 1096.6
  23972. }
  23973. },
  23974. },
  23975. [
  23976. {
  23977. name: "Normal",
  23978. height: math.unit(28.75, "feet"),
  23979. default: true
  23980. },
  23981. ]
  23982. ))
  23983. characterMakers.push(() => makeCharacter(
  23984. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  23985. {
  23986. side: {
  23987. height: math.unit(25.5, "feet"),
  23988. weight: math.unit(23000, "kg"),
  23989. name: "Side",
  23990. image: {
  23991. source: "./media/characters/kanara/side.svg"
  23992. }
  23993. },
  23994. },
  23995. [
  23996. {
  23997. name: "Normal",
  23998. height: math.unit(25.5, "feet"),
  23999. default: true
  24000. },
  24001. ]
  24002. ))
  24003. characterMakers.push(() => makeCharacter(
  24004. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  24005. {
  24006. side: {
  24007. height: math.unit(10, "feet"),
  24008. weight: math.unit(1000, "kg"),
  24009. name: "Side",
  24010. image: {
  24011. source: "./media/characters/ereus/side.svg",
  24012. extra: 1157 / 959,
  24013. bottom: 153 / 1312.5
  24014. }
  24015. },
  24016. },
  24017. [
  24018. {
  24019. name: "Normal",
  24020. height: math.unit(10, "feet"),
  24021. default: true
  24022. },
  24023. ]
  24024. ))
  24025. characterMakers.push(() => makeCharacter(
  24026. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  24027. {
  24028. side: {
  24029. height: math.unit(4.5, "feet"),
  24030. weight: math.unit(500, "lb"),
  24031. name: "Side",
  24032. image: {
  24033. source: "./media/characters/e-ter/side.svg",
  24034. extra: 1550 / 1248,
  24035. bottom: 146 / 1694
  24036. }
  24037. },
  24038. },
  24039. [
  24040. {
  24041. name: "Normal",
  24042. height: math.unit(4.5, "feet"),
  24043. default: true
  24044. },
  24045. ]
  24046. ))
  24047. characterMakers.push(() => makeCharacter(
  24048. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  24049. {
  24050. side: {
  24051. height: math.unit(9.7, "feet"),
  24052. weight: math.unit(4000, "kg"),
  24053. name: "Side",
  24054. image: {
  24055. source: "./media/characters/yamie/side.svg"
  24056. }
  24057. },
  24058. },
  24059. [
  24060. {
  24061. name: "Normal",
  24062. height: math.unit(9.7, "feet"),
  24063. default: true
  24064. },
  24065. ]
  24066. ))
  24067. characterMakers.push(() => makeCharacter(
  24068. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  24069. {
  24070. front: {
  24071. height: math.unit(50, "feet"),
  24072. weight: math.unit(50000, "kg"),
  24073. name: "Front",
  24074. image: {
  24075. source: "./media/characters/anders/front.svg",
  24076. extra: 570 / 539,
  24077. bottom: 14.7 / 586.7
  24078. }
  24079. },
  24080. },
  24081. [
  24082. {
  24083. name: "Large",
  24084. height: math.unit(50, "feet")
  24085. },
  24086. {
  24087. name: "Macro",
  24088. height: math.unit(2000, "feet"),
  24089. default: true
  24090. },
  24091. {
  24092. name: "Megamacro",
  24093. height: math.unit(12, "miles")
  24094. },
  24095. ]
  24096. ))
  24097. characterMakers.push(() => makeCharacter(
  24098. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  24099. {
  24100. front: {
  24101. height: math.unit(7 + 2 / 12, "feet"),
  24102. weight: math.unit(300, "lb"),
  24103. name: "Front",
  24104. image: {
  24105. source: "./media/characters/reban/front.svg",
  24106. extra: 1287/1212,
  24107. bottom: 148/1435
  24108. }
  24109. },
  24110. head: {
  24111. height: math.unit(1.95, "feet"),
  24112. name: "Head",
  24113. image: {
  24114. source: "./media/characters/reban/head.svg"
  24115. }
  24116. },
  24117. maw: {
  24118. height: math.unit(0.95, "feet"),
  24119. name: "Maw",
  24120. image: {
  24121. source: "./media/characters/reban/maw.svg"
  24122. }
  24123. },
  24124. foot: {
  24125. height: math.unit(1.65, "feet"),
  24126. name: "Foot",
  24127. image: {
  24128. source: "./media/characters/reban/foot.svg"
  24129. }
  24130. },
  24131. dick: {
  24132. height: math.unit(7 / 5, "feet"),
  24133. name: "Dick",
  24134. image: {
  24135. source: "./media/characters/reban/dick.svg"
  24136. }
  24137. },
  24138. },
  24139. [
  24140. {
  24141. name: "Natural Height",
  24142. height: math.unit(7 + 2 / 12, "feet")
  24143. },
  24144. {
  24145. name: "Macro",
  24146. height: math.unit(500, "feet"),
  24147. default: true
  24148. },
  24149. {
  24150. name: "Canon Height",
  24151. height: math.unit(50, "AU")
  24152. },
  24153. ]
  24154. ))
  24155. characterMakers.push(() => makeCharacter(
  24156. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  24157. {
  24158. front: {
  24159. height: math.unit(6, "feet"),
  24160. weight: math.unit(150, "lb"),
  24161. name: "Front",
  24162. image: {
  24163. source: "./media/characters/terrance-keayes/front.svg",
  24164. extra: 1.005,
  24165. bottom: 151 / 1615
  24166. }
  24167. },
  24168. side: {
  24169. height: math.unit(6, "feet"),
  24170. weight: math.unit(150, "lb"),
  24171. name: "Side",
  24172. image: {
  24173. source: "./media/characters/terrance-keayes/side.svg",
  24174. extra: 1.005,
  24175. bottom: 129.4 / 1544
  24176. }
  24177. },
  24178. back: {
  24179. height: math.unit(6, "feet"),
  24180. weight: math.unit(150, "lb"),
  24181. name: "Back",
  24182. image: {
  24183. source: "./media/characters/terrance-keayes/back.svg",
  24184. extra: 1.005,
  24185. bottom: 58.4 / 1557.3
  24186. }
  24187. },
  24188. dick: {
  24189. height: math.unit(6 * 0.208, "feet"),
  24190. name: "Dick",
  24191. image: {
  24192. source: "./media/characters/terrance-keayes/dick.svg"
  24193. }
  24194. },
  24195. },
  24196. [
  24197. {
  24198. name: "Canon Height",
  24199. height: math.unit(35, "miles"),
  24200. default: true
  24201. },
  24202. ]
  24203. ))
  24204. characterMakers.push(() => makeCharacter(
  24205. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  24206. {
  24207. front: {
  24208. height: math.unit(6, "feet"),
  24209. weight: math.unit(150, "lb"),
  24210. name: "Front",
  24211. image: {
  24212. source: "./media/characters/ofelia/front.svg",
  24213. extra: 1130/1117,
  24214. bottom: 91/1221
  24215. }
  24216. },
  24217. back: {
  24218. height: math.unit(6, "feet"),
  24219. weight: math.unit(150, "lb"),
  24220. name: "Back",
  24221. image: {
  24222. source: "./media/characters/ofelia/back.svg",
  24223. extra: 1172/1159,
  24224. bottom: 28/1200
  24225. }
  24226. },
  24227. maw: {
  24228. height: math.unit(1, "feet"),
  24229. name: "Maw",
  24230. image: {
  24231. source: "./media/characters/ofelia/maw.svg"
  24232. }
  24233. },
  24234. foot: {
  24235. height: math.unit(1.949, "feet"),
  24236. name: "Foot",
  24237. image: {
  24238. source: "./media/characters/ofelia/foot.svg"
  24239. }
  24240. },
  24241. },
  24242. [
  24243. {
  24244. name: "Canon Height",
  24245. height: math.unit(2000, "miles"),
  24246. default: true
  24247. },
  24248. ]
  24249. ))
  24250. characterMakers.push(() => makeCharacter(
  24251. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  24252. {
  24253. front: {
  24254. height: math.unit(6, "feet"),
  24255. weight: math.unit(150, "lb"),
  24256. name: "Front",
  24257. image: {
  24258. source: "./media/characters/samuel/front.svg",
  24259. extra: 265 / 258,
  24260. bottom: 2 / 266.1566
  24261. }
  24262. },
  24263. },
  24264. [
  24265. {
  24266. name: "Macro",
  24267. height: math.unit(100, "feet"),
  24268. default: true
  24269. },
  24270. {
  24271. name: "Full Size",
  24272. height: math.unit(1000, "miles")
  24273. },
  24274. ]
  24275. ))
  24276. characterMakers.push(() => makeCharacter(
  24277. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  24278. {
  24279. front: {
  24280. height: math.unit(6, "feet"),
  24281. weight: math.unit(300, "lb"),
  24282. name: "Front",
  24283. image: {
  24284. source: "./media/characters/beishir-kiel/front.svg",
  24285. extra: 569 / 547,
  24286. bottom: 41.9 / 609
  24287. }
  24288. },
  24289. maw: {
  24290. height: math.unit(6 * 0.202, "feet"),
  24291. name: "Maw",
  24292. image: {
  24293. source: "./media/characters/beishir-kiel/maw.svg"
  24294. }
  24295. },
  24296. },
  24297. [
  24298. {
  24299. name: "Macro",
  24300. height: math.unit(300, "feet"),
  24301. default: true
  24302. },
  24303. ]
  24304. ))
  24305. characterMakers.push(() => makeCharacter(
  24306. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  24307. {
  24308. front: {
  24309. height: math.unit(5 + 7/12, "feet"),
  24310. weight: math.unit(120, "lb"),
  24311. name: "Front",
  24312. image: {
  24313. source: "./media/characters/logan-grey/front.svg",
  24314. extra: 1836/1738,
  24315. bottom: 108/1944
  24316. }
  24317. },
  24318. back: {
  24319. height: math.unit(5 + 7/12, "feet"),
  24320. weight: math.unit(120, "lb"),
  24321. name: "Back",
  24322. image: {
  24323. source: "./media/characters/logan-grey/back.svg",
  24324. extra: 1880/1794,
  24325. bottom: 24/1904
  24326. }
  24327. },
  24328. frontSfw: {
  24329. height: math.unit(5 + 7/12, "feet"),
  24330. weight: math.unit(120, "lb"),
  24331. name: "Front (SFW)",
  24332. image: {
  24333. source: "./media/characters/logan-grey/front-sfw.svg",
  24334. extra: 1836/1738,
  24335. bottom: 108/1944
  24336. }
  24337. },
  24338. backSfw: {
  24339. height: math.unit(5 + 7/12, "feet"),
  24340. weight: math.unit(120, "lb"),
  24341. name: "Back (SFW)",
  24342. image: {
  24343. source: "./media/characters/logan-grey/back-sfw.svg",
  24344. extra: 1880/1794,
  24345. bottom: 24/1904
  24346. }
  24347. },
  24348. hands: {
  24349. height: math.unit(0.84, "feet"),
  24350. name: "Hands",
  24351. image: {
  24352. source: "./media/characters/logan-grey/hands.svg"
  24353. }
  24354. },
  24355. paws: {
  24356. height: math.unit(0.72, "feet"),
  24357. name: "Paws",
  24358. image: {
  24359. source: "./media/characters/logan-grey/paws.svg"
  24360. }
  24361. },
  24362. cock: {
  24363. height: math.unit(1.45, "feet"),
  24364. name: "Cock",
  24365. image: {
  24366. source: "./media/characters/logan-grey/cock.svg"
  24367. }
  24368. },
  24369. cockAlt: {
  24370. height: math.unit(1.437, "feet"),
  24371. name: "Cock (alt)",
  24372. image: {
  24373. source: "./media/characters/logan-grey/cock-alt.svg"
  24374. }
  24375. },
  24376. },
  24377. [
  24378. {
  24379. name: "Normal",
  24380. height: math.unit(5 + 8 / 12, "feet")
  24381. },
  24382. {
  24383. name: "The 500 Foot Femboy",
  24384. height: math.unit(500, "feet"),
  24385. default: true
  24386. },
  24387. {
  24388. name: "Megmacro",
  24389. height: math.unit(20, "miles")
  24390. },
  24391. ]
  24392. ))
  24393. characterMakers.push(() => makeCharacter(
  24394. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  24395. {
  24396. front: {
  24397. height: math.unit(8 + 2 / 12, "feet"),
  24398. weight: math.unit(275, "lb"),
  24399. name: "Front",
  24400. image: {
  24401. source: "./media/characters/draganta/front.svg",
  24402. extra: 1177 / 1135,
  24403. bottom: 33.46 / 1212.1
  24404. }
  24405. },
  24406. },
  24407. [
  24408. {
  24409. name: "Normal",
  24410. height: math.unit(8 + 6 / 12, "feet"),
  24411. default: true
  24412. },
  24413. {
  24414. name: "Macro",
  24415. height: math.unit(150, "feet")
  24416. },
  24417. {
  24418. name: "Megamacro",
  24419. height: math.unit(1000, "miles")
  24420. },
  24421. ]
  24422. ))
  24423. characterMakers.push(() => makeCharacter(
  24424. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  24425. {
  24426. front: {
  24427. height: math.unit(1.72, "m"),
  24428. weight: math.unit(80, "lb"),
  24429. name: "Front",
  24430. image: {
  24431. source: "./media/characters/voski/front.svg",
  24432. extra: 2076.22 / 2022.4,
  24433. bottom: 102.7 / 2177.3866
  24434. }
  24435. },
  24436. frontFlaccid: {
  24437. height: math.unit(1.72, "m"),
  24438. weight: math.unit(80, "lb"),
  24439. name: "Front (Flaccid)",
  24440. image: {
  24441. source: "./media/characters/voski/front-flaccid.svg",
  24442. extra: 2076.22 / 2022.4,
  24443. bottom: 102.7 / 2177.3866
  24444. }
  24445. },
  24446. frontErect: {
  24447. height: math.unit(1.72, "m"),
  24448. weight: math.unit(80, "lb"),
  24449. name: "Front (Erect)",
  24450. image: {
  24451. source: "./media/characters/voski/front-erect.svg",
  24452. extra: 2076.22 / 2022.4,
  24453. bottom: 102.7 / 2177.3866
  24454. }
  24455. },
  24456. back: {
  24457. height: math.unit(1.72, "m"),
  24458. weight: math.unit(80, "lb"),
  24459. name: "Back",
  24460. image: {
  24461. source: "./media/characters/voski/back.svg",
  24462. extra: 2104 / 2051,
  24463. bottom: 10.45 / 2113.63
  24464. }
  24465. },
  24466. },
  24467. [
  24468. {
  24469. name: "Normal",
  24470. height: math.unit(1.72, "m")
  24471. },
  24472. {
  24473. name: "Macro",
  24474. height: math.unit(55, "m"),
  24475. default: true
  24476. },
  24477. {
  24478. name: "Macro+",
  24479. height: math.unit(300, "m")
  24480. },
  24481. {
  24482. name: "Macro++",
  24483. height: math.unit(700, "m")
  24484. },
  24485. {
  24486. name: "Macro+++",
  24487. height: math.unit(4500, "m")
  24488. },
  24489. {
  24490. name: "Macro++++",
  24491. height: math.unit(45, "km")
  24492. },
  24493. {
  24494. name: "Macro+++++",
  24495. height: math.unit(1220, "km")
  24496. },
  24497. ]
  24498. ))
  24499. characterMakers.push(() => makeCharacter(
  24500. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  24501. {
  24502. front: {
  24503. height: math.unit(2.3, "m"),
  24504. weight: math.unit(304, "kg"),
  24505. name: "Front",
  24506. image: {
  24507. source: "./media/characters/icowom-lee/front.svg",
  24508. extra: 985 / 955,
  24509. bottom: 25.4 / 1012
  24510. }
  24511. },
  24512. fronttentacles: {
  24513. height: math.unit(2.3, "m"),
  24514. weight: math.unit(304, "kg"),
  24515. name: "Front-tentacles",
  24516. image: {
  24517. source: "./media/characters/icowom-lee/front-tentacles.svg",
  24518. extra: 985 / 955,
  24519. bottom: 25.4 / 1012
  24520. }
  24521. },
  24522. back: {
  24523. height: math.unit(2.3, "m"),
  24524. weight: math.unit(304, "kg"),
  24525. name: "Back",
  24526. image: {
  24527. source: "./media/characters/icowom-lee/back.svg",
  24528. extra: 975 / 954,
  24529. bottom: 9.5 / 985
  24530. }
  24531. },
  24532. backtentacles: {
  24533. height: math.unit(2.3, "m"),
  24534. weight: math.unit(304, "kg"),
  24535. name: "Back-tentacles",
  24536. image: {
  24537. source: "./media/characters/icowom-lee/back-tentacles.svg",
  24538. extra: 975 / 954,
  24539. bottom: 9.5 / 985
  24540. }
  24541. },
  24542. frontDressed: {
  24543. height: math.unit(2.3, "m"),
  24544. weight: math.unit(304, "kg"),
  24545. name: "Front (Dressed)",
  24546. image: {
  24547. source: "./media/characters/icowom-lee/front-dressed.svg",
  24548. extra: 3076 / 2933,
  24549. bottom: 51.4 / 3125.1889
  24550. }
  24551. },
  24552. rump: {
  24553. height: math.unit(0.776, "meters"),
  24554. name: "Rump",
  24555. image: {
  24556. source: "./media/characters/icowom-lee/rump.svg"
  24557. }
  24558. },
  24559. genitals: {
  24560. height: math.unit(0.78, "meters"),
  24561. name: "Genitals",
  24562. image: {
  24563. source: "./media/characters/icowom-lee/genitals.svg"
  24564. }
  24565. },
  24566. },
  24567. [
  24568. {
  24569. name: "Normal",
  24570. height: math.unit(2.3, "meters"),
  24571. default: true
  24572. },
  24573. {
  24574. name: "Macro",
  24575. height: math.unit(94, "meters"),
  24576. default: true
  24577. },
  24578. ]
  24579. ))
  24580. characterMakers.push(() => makeCharacter(
  24581. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  24582. {
  24583. front: {
  24584. height: math.unit(22, "meters"),
  24585. weight: math.unit(21000, "kg"),
  24586. name: "Front",
  24587. image: {
  24588. source: "./media/characters/shock-diamond/front.svg",
  24589. extra: 2204 / 2053,
  24590. bottom: 65 / 2239.47
  24591. }
  24592. },
  24593. frontNude: {
  24594. height: math.unit(22, "meters"),
  24595. weight: math.unit(21000, "kg"),
  24596. name: "Front (Nude)",
  24597. image: {
  24598. source: "./media/characters/shock-diamond/front-nude.svg",
  24599. extra: 2514 / 2285,
  24600. bottom: 13 / 2527.56
  24601. }
  24602. },
  24603. },
  24604. [
  24605. {
  24606. name: "Normal",
  24607. height: math.unit(3, "meters")
  24608. },
  24609. {
  24610. name: "Macro",
  24611. height: math.unit(22, "meters"),
  24612. default: true
  24613. },
  24614. ]
  24615. ))
  24616. characterMakers.push(() => makeCharacter(
  24617. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  24618. {
  24619. front: {
  24620. height: math.unit(5 + 4/12, "feet"),
  24621. weight: math.unit(125, "lb"),
  24622. name: "Front",
  24623. image: {
  24624. source: "./media/characters/rory/front.svg",
  24625. extra: 1790/1681,
  24626. bottom: 66/1856
  24627. },
  24628. form: "normal",
  24629. default: true
  24630. },
  24631. back: {
  24632. height: math.unit(5 + 4/12, "feet"),
  24633. weight: math.unit(125, "lb"),
  24634. name: "Back",
  24635. image: {
  24636. source: "./media/characters/rory/back.svg",
  24637. extra: 1805/1690,
  24638. bottom: 56/1861
  24639. },
  24640. form: "normal"
  24641. },
  24642. frontDressed: {
  24643. height: math.unit(5 + 4/12, "feet"),
  24644. weight: math.unit(125, "lb"),
  24645. name: "Front (Dressed)",
  24646. image: {
  24647. source: "./media/characters/rory/front-dressed.svg",
  24648. extra: 1790/1681,
  24649. bottom: 66/1856
  24650. },
  24651. form: "normal"
  24652. },
  24653. backDressed: {
  24654. height: math.unit(5 + 4/12, "feet"),
  24655. weight: math.unit(125, "lb"),
  24656. name: "Back (Dressed)",
  24657. image: {
  24658. source: "./media/characters/rory/back-dressed.svg",
  24659. extra: 1805/1690,
  24660. bottom: 56/1861
  24661. },
  24662. form: "normal"
  24663. },
  24664. frontNsfw: {
  24665. height: math.unit(5 + 4/12, "feet"),
  24666. weight: math.unit(125, "lb"),
  24667. name: "Front (NSFW)",
  24668. image: {
  24669. source: "./media/characters/rory/front-nsfw.svg",
  24670. extra: 1790/1681,
  24671. bottom: 66/1856
  24672. },
  24673. form: "normal"
  24674. },
  24675. backNsfw: {
  24676. height: math.unit(5 + 4/12, "feet"),
  24677. weight: math.unit(125, "lb"),
  24678. name: "Back (NSFW)",
  24679. image: {
  24680. source: "./media/characters/rory/back-nsfw.svg",
  24681. extra: 1805/1690,
  24682. bottom: 56/1861
  24683. },
  24684. form: "normal"
  24685. },
  24686. dick: {
  24687. height: math.unit(0.8, "feet"),
  24688. name: "Dick",
  24689. image: {
  24690. source: "./media/characters/rory/dick.svg"
  24691. },
  24692. form: "normal"
  24693. },
  24694. thicc_front: {
  24695. height: math.unit(5 + 4/12, "feet"),
  24696. weight: math.unit(195, "lb"),
  24697. name: "Front",
  24698. image: {
  24699. source: "./media/characters/rory/thicc-front.svg",
  24700. extra: 1220/1100,
  24701. bottom: 103/1323
  24702. },
  24703. form: "thicc",
  24704. default: true
  24705. },
  24706. thicc_back: {
  24707. height: math.unit(5 + 4/12, "feet"),
  24708. weight: math.unit(195, "lb"),
  24709. name: "Back",
  24710. image: {
  24711. source: "./media/characters/rory/thicc-back.svg",
  24712. extra: 1166/1086,
  24713. bottom: 35/1201
  24714. },
  24715. form: "thicc"
  24716. },
  24717. },
  24718. [
  24719. {
  24720. name: "Micro",
  24721. height: math.unit(3, "inches"),
  24722. allForms: true
  24723. },
  24724. {
  24725. name: "Normal",
  24726. height: math.unit(5 + 4/12, "feet"),
  24727. allForms: true,
  24728. default: true
  24729. },
  24730. {
  24731. name: "Macro",
  24732. height: math.unit(90, "feet"),
  24733. allForms: true
  24734. },
  24735. {
  24736. name: "Supercharged",
  24737. height: math.unit(270, "feet"),
  24738. allForms: true
  24739. },
  24740. ],
  24741. {
  24742. "normal": {
  24743. name: "Normal",
  24744. default: true
  24745. },
  24746. "thicc": {
  24747. name: "Thicc",
  24748. },
  24749. }
  24750. ))
  24751. characterMakers.push(() => makeCharacter(
  24752. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  24753. {
  24754. front: {
  24755. height: math.unit(5 + 9 / 12, "feet"),
  24756. weight: math.unit(190, "lb"),
  24757. name: "Front",
  24758. image: {
  24759. source: "./media/characters/sprisk/front.svg",
  24760. extra: 1225 / 1180,
  24761. bottom: 42.7 / 1266.4
  24762. }
  24763. },
  24764. frontNsfw: {
  24765. height: math.unit(5 + 9 / 12, "feet"),
  24766. weight: math.unit(190, "lb"),
  24767. name: "Front (NSFW)",
  24768. image: {
  24769. source: "./media/characters/sprisk/front-nsfw.svg",
  24770. extra: 1225 / 1180,
  24771. bottom: 42.7 / 1266.4
  24772. }
  24773. },
  24774. back: {
  24775. height: math.unit(5 + 9 / 12, "feet"),
  24776. weight: math.unit(190, "lb"),
  24777. name: "Back",
  24778. image: {
  24779. source: "./media/characters/sprisk/back.svg",
  24780. extra: 1247 / 1200,
  24781. bottom: 5.6 / 1253.04
  24782. }
  24783. },
  24784. },
  24785. [
  24786. {
  24787. name: "Tiny",
  24788. height: math.unit(2, "inches")
  24789. },
  24790. {
  24791. name: "Normal",
  24792. height: math.unit(5 + 9 / 12, "feet"),
  24793. default: true
  24794. },
  24795. {
  24796. name: "Mini Macro",
  24797. height: math.unit(18, "feet")
  24798. },
  24799. {
  24800. name: "Macro",
  24801. height: math.unit(100, "feet")
  24802. },
  24803. {
  24804. name: "MACRO",
  24805. height: math.unit(50, "miles")
  24806. },
  24807. {
  24808. name: "M A C R O",
  24809. height: math.unit(300, "miles")
  24810. },
  24811. ]
  24812. ))
  24813. characterMakers.push(() => makeCharacter(
  24814. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  24815. {
  24816. side: {
  24817. height: math.unit(15.6, "meters"),
  24818. weight: math.unit(700000, "kg"),
  24819. name: "Side",
  24820. image: {
  24821. source: "./media/characters/bunsen/side.svg",
  24822. extra: 1644 / 358
  24823. }
  24824. },
  24825. foot: {
  24826. height: math.unit(1.611 * 1644 / 358, "meter"),
  24827. name: "Foot",
  24828. image: {
  24829. source: "./media/characters/bunsen/foot.svg"
  24830. }
  24831. },
  24832. },
  24833. [
  24834. {
  24835. name: "Small",
  24836. height: math.unit(10, "feet")
  24837. },
  24838. {
  24839. name: "Normal",
  24840. height: math.unit(15.6, "meters"),
  24841. default: true
  24842. },
  24843. ]
  24844. ))
  24845. characterMakers.push(() => makeCharacter(
  24846. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  24847. {
  24848. front: {
  24849. height: math.unit(4 + 11 / 12, "feet"),
  24850. weight: math.unit(140, "lb"),
  24851. name: "Front",
  24852. image: {
  24853. source: "./media/characters/sesh/front.svg",
  24854. extra: 3420 / 3231,
  24855. bottom: 72 / 3949.5
  24856. }
  24857. },
  24858. },
  24859. [
  24860. {
  24861. name: "Normal",
  24862. height: math.unit(4 + 11 / 12, "feet")
  24863. },
  24864. {
  24865. name: "Grown",
  24866. height: math.unit(15, "feet"),
  24867. default: true
  24868. },
  24869. {
  24870. name: "Macro",
  24871. height: math.unit(1500, "feet")
  24872. },
  24873. {
  24874. name: "Megamacro",
  24875. height: math.unit(30, "miles")
  24876. },
  24877. {
  24878. name: "Continental",
  24879. height: math.unit(3000, "miles")
  24880. },
  24881. {
  24882. name: "Gravity Mass",
  24883. height: math.unit(300000, "miles")
  24884. },
  24885. {
  24886. name: "Planet Buster",
  24887. height: math.unit(30000000, "miles")
  24888. },
  24889. {
  24890. name: "Big",
  24891. height: math.unit(3000000000, "miles")
  24892. },
  24893. ]
  24894. ))
  24895. characterMakers.push(() => makeCharacter(
  24896. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  24897. {
  24898. front: {
  24899. height: math.unit(9, "feet"),
  24900. weight: math.unit(350, "lb"),
  24901. name: "Front",
  24902. image: {
  24903. source: "./media/characters/pepper/front.svg",
  24904. extra: 1448 / 1312,
  24905. bottom: 9.4 / 1457.88
  24906. }
  24907. },
  24908. back: {
  24909. height: math.unit(9, "feet"),
  24910. weight: math.unit(350, "lb"),
  24911. name: "Back",
  24912. image: {
  24913. source: "./media/characters/pepper/back.svg",
  24914. extra: 1423 / 1300,
  24915. bottom: 4.6 / 1429
  24916. }
  24917. },
  24918. maw: {
  24919. height: math.unit(0.932, "feet"),
  24920. name: "Maw",
  24921. image: {
  24922. source: "./media/characters/pepper/maw.svg"
  24923. }
  24924. },
  24925. },
  24926. [
  24927. {
  24928. name: "Normal",
  24929. height: math.unit(9, "feet"),
  24930. default: true
  24931. },
  24932. ]
  24933. ))
  24934. characterMakers.push(() => makeCharacter(
  24935. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  24936. {
  24937. front: {
  24938. height: math.unit(6, "feet"),
  24939. weight: math.unit(150, "lb"),
  24940. name: "Front",
  24941. image: {
  24942. source: "./media/characters/maelstrom/front.svg",
  24943. extra: 2100 / 1883,
  24944. bottom: 94 / 2196.7
  24945. }
  24946. },
  24947. },
  24948. [
  24949. {
  24950. name: "Less Kaiju",
  24951. height: math.unit(200, "feet")
  24952. },
  24953. {
  24954. name: "Kaiju",
  24955. height: math.unit(400, "feet"),
  24956. default: true
  24957. },
  24958. {
  24959. name: "Kaiju-er",
  24960. height: math.unit(600, "feet")
  24961. },
  24962. ]
  24963. ))
  24964. characterMakers.push(() => makeCharacter(
  24965. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  24966. {
  24967. front: {
  24968. height: math.unit(6 + 5 / 12, "feet"),
  24969. weight: math.unit(180, "lb"),
  24970. name: "Front",
  24971. image: {
  24972. source: "./media/characters/lexir/front.svg",
  24973. extra: 180 / 172,
  24974. bottom: 12 / 192
  24975. }
  24976. },
  24977. back: {
  24978. height: math.unit(6 + 5 / 12, "feet"),
  24979. weight: math.unit(180, "lb"),
  24980. name: "Back",
  24981. image: {
  24982. source: "./media/characters/lexir/back.svg",
  24983. extra: 1273/1201,
  24984. bottom: 39/1312
  24985. }
  24986. },
  24987. },
  24988. [
  24989. {
  24990. name: "Very Smal",
  24991. height: math.unit(1, "nm")
  24992. },
  24993. {
  24994. name: "Normal",
  24995. height: math.unit(6 + 5 / 12, "feet"),
  24996. default: true
  24997. },
  24998. {
  24999. name: "Macro",
  25000. height: math.unit(1, "mile")
  25001. },
  25002. {
  25003. name: "Megamacro",
  25004. height: math.unit(50, "miles")
  25005. },
  25006. ]
  25007. ))
  25008. characterMakers.push(() => makeCharacter(
  25009. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  25010. {
  25011. front: {
  25012. height: math.unit(1.5, "meters"),
  25013. weight: math.unit(100, "lb"),
  25014. name: "Front",
  25015. image: {
  25016. source: "./media/characters/maksio/front.svg",
  25017. extra: 1549 / 1531,
  25018. bottom: 123.7 / 1674.5429
  25019. }
  25020. },
  25021. back: {
  25022. height: math.unit(1.5, "meters"),
  25023. weight: math.unit(100, "lb"),
  25024. name: "Back",
  25025. image: {
  25026. source: "./media/characters/maksio/back.svg",
  25027. extra: 1541 / 1509,
  25028. bottom: 97 / 1639
  25029. }
  25030. },
  25031. hand: {
  25032. height: math.unit(0.621, "feet"),
  25033. name: "Hand",
  25034. image: {
  25035. source: "./media/characters/maksio/hand.svg"
  25036. }
  25037. },
  25038. foot: {
  25039. height: math.unit(1.611, "feet"),
  25040. name: "Foot",
  25041. image: {
  25042. source: "./media/characters/maksio/foot.svg"
  25043. }
  25044. },
  25045. },
  25046. [
  25047. {
  25048. name: "Shrunken",
  25049. height: math.unit(10, "cm")
  25050. },
  25051. {
  25052. name: "Normal",
  25053. height: math.unit(150, "cm"),
  25054. default: true
  25055. },
  25056. ]
  25057. ))
  25058. characterMakers.push(() => makeCharacter(
  25059. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  25060. {
  25061. front: {
  25062. height: math.unit(100, "feet"),
  25063. name: "Front",
  25064. image: {
  25065. source: "./media/characters/erza-bear/front.svg",
  25066. extra: 2449 / 2390,
  25067. bottom: 46 / 2494
  25068. }
  25069. },
  25070. back: {
  25071. height: math.unit(100, "feet"),
  25072. name: "Back",
  25073. image: {
  25074. source: "./media/characters/erza-bear/back.svg",
  25075. extra: 2489 / 2430,
  25076. bottom: 85.4 / 2480
  25077. }
  25078. },
  25079. tail: {
  25080. height: math.unit(42, "feet"),
  25081. name: "Tail",
  25082. image: {
  25083. source: "./media/characters/erza-bear/tail.svg"
  25084. }
  25085. },
  25086. tongue: {
  25087. height: math.unit(8, "feet"),
  25088. name: "Tongue",
  25089. image: {
  25090. source: "./media/characters/erza-bear/tongue.svg"
  25091. }
  25092. },
  25093. dick: {
  25094. height: math.unit(10.5, "feet"),
  25095. name: "Dick",
  25096. image: {
  25097. source: "./media/characters/erza-bear/dick.svg"
  25098. }
  25099. },
  25100. dickVertical: {
  25101. height: math.unit(16.9, "feet"),
  25102. name: "Dick (Vertical)",
  25103. image: {
  25104. source: "./media/characters/erza-bear/dick-vertical.svg"
  25105. }
  25106. },
  25107. },
  25108. [
  25109. {
  25110. name: "Macro",
  25111. height: math.unit(100, "feet"),
  25112. default: true
  25113. },
  25114. ]
  25115. ))
  25116. characterMakers.push(() => makeCharacter(
  25117. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  25118. {
  25119. front: {
  25120. height: math.unit(172, "cm"),
  25121. weight: math.unit(73, "kg"),
  25122. name: "Front",
  25123. image: {
  25124. source: "./media/characters/violet-flor/front.svg",
  25125. extra: 1530 / 1442,
  25126. bottom: 61.9 / 1588.8
  25127. }
  25128. },
  25129. back: {
  25130. height: math.unit(180, "cm"),
  25131. weight: math.unit(73, "kg"),
  25132. name: "Back",
  25133. image: {
  25134. source: "./media/characters/violet-flor/back.svg",
  25135. extra: 1692 / 1630,
  25136. bottom: 20 / 1712
  25137. }
  25138. },
  25139. },
  25140. [
  25141. {
  25142. name: "Normal",
  25143. height: math.unit(172, "cm"),
  25144. default: true
  25145. },
  25146. ]
  25147. ))
  25148. characterMakers.push(() => makeCharacter(
  25149. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  25150. {
  25151. front: {
  25152. height: math.unit(6, "feet"),
  25153. weight: math.unit(220, "lb"),
  25154. name: "Front",
  25155. image: {
  25156. source: "./media/characters/lynn-rhea/front.svg",
  25157. extra: 310 / 273
  25158. }
  25159. },
  25160. back: {
  25161. height: math.unit(6, "feet"),
  25162. weight: math.unit(220, "lb"),
  25163. name: "Back",
  25164. image: {
  25165. source: "./media/characters/lynn-rhea/back.svg",
  25166. extra: 310 / 273
  25167. }
  25168. },
  25169. dicks: {
  25170. height: math.unit(0.9, "feet"),
  25171. name: "Dicks",
  25172. image: {
  25173. source: "./media/characters/lynn-rhea/dicks.svg"
  25174. }
  25175. },
  25176. slit: {
  25177. height: math.unit(0.4, "feet"),
  25178. name: "Slit",
  25179. image: {
  25180. source: "./media/characters/lynn-rhea/slit.svg"
  25181. }
  25182. },
  25183. },
  25184. [
  25185. {
  25186. name: "Micro",
  25187. height: math.unit(1, "inch")
  25188. },
  25189. {
  25190. name: "Macro",
  25191. height: math.unit(60, "feet"),
  25192. default: true
  25193. },
  25194. {
  25195. name: "Megamacro",
  25196. height: math.unit(2, "miles")
  25197. },
  25198. {
  25199. name: "Gigamacro",
  25200. height: math.unit(3, "earths")
  25201. },
  25202. {
  25203. name: "Galactic",
  25204. height: math.unit(0.8, "galaxies")
  25205. },
  25206. ]
  25207. ))
  25208. characterMakers.push(() => makeCharacter(
  25209. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  25210. {
  25211. front: {
  25212. height: math.unit(1600, "feet"),
  25213. weight: math.unit(85758785169, "kg"),
  25214. name: "Front",
  25215. image: {
  25216. source: "./media/characters/valathos/front.svg",
  25217. extra: 1451 / 1339
  25218. }
  25219. },
  25220. },
  25221. [
  25222. {
  25223. name: "Macro",
  25224. height: math.unit(1600, "feet"),
  25225. default: true
  25226. },
  25227. ]
  25228. ))
  25229. characterMakers.push(() => makeCharacter(
  25230. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  25231. {
  25232. front: {
  25233. height: math.unit(7 + 5 / 12, "feet"),
  25234. weight: math.unit(300, "lb"),
  25235. name: "Front",
  25236. image: {
  25237. source: "./media/characters/azula/front.svg",
  25238. extra: 3208 / 2880,
  25239. bottom: 80.2 / 3277
  25240. }
  25241. },
  25242. back: {
  25243. height: math.unit(7 + 5 / 12, "feet"),
  25244. weight: math.unit(300, "lb"),
  25245. name: "Back",
  25246. image: {
  25247. source: "./media/characters/azula/back.svg",
  25248. extra: 3169 / 2822,
  25249. bottom: 150.6 / 3321
  25250. }
  25251. },
  25252. },
  25253. [
  25254. {
  25255. name: "Normal",
  25256. height: math.unit(7 + 5 / 12, "feet"),
  25257. default: true
  25258. },
  25259. {
  25260. name: "Big",
  25261. height: math.unit(20, "feet")
  25262. },
  25263. ]
  25264. ))
  25265. characterMakers.push(() => makeCharacter(
  25266. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  25267. {
  25268. front: {
  25269. height: math.unit(5 + 1 / 12, "feet"),
  25270. weight: math.unit(110, "lb"),
  25271. name: "Front",
  25272. image: {
  25273. source: "./media/characters/rupert/front.svg",
  25274. extra: 1549 / 1495,
  25275. bottom: 54.2 / 1604.4
  25276. }
  25277. },
  25278. },
  25279. [
  25280. {
  25281. name: "Normal",
  25282. height: math.unit(5 + 1 / 12, "feet"),
  25283. default: true
  25284. },
  25285. ]
  25286. ))
  25287. characterMakers.push(() => makeCharacter(
  25288. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  25289. {
  25290. front: {
  25291. height: math.unit(8 + 4 / 12, "feet"),
  25292. weight: math.unit(350, "lb"),
  25293. name: "Front",
  25294. image: {
  25295. source: "./media/characters/sheera-castellar/front.svg",
  25296. extra: 1957 / 1894,
  25297. bottom: 26.97 / 1975.017
  25298. }
  25299. },
  25300. side: {
  25301. height: math.unit(8 + 4 / 12, "feet"),
  25302. weight: math.unit(350, "lb"),
  25303. name: "Side",
  25304. image: {
  25305. source: "./media/characters/sheera-castellar/side.svg",
  25306. extra: 1957 / 1894
  25307. }
  25308. },
  25309. back: {
  25310. height: math.unit(8 + 4 / 12, "feet"),
  25311. weight: math.unit(350, "lb"),
  25312. name: "Back",
  25313. image: {
  25314. source: "./media/characters/sheera-castellar/back.svg",
  25315. extra: 1957 / 1894
  25316. }
  25317. },
  25318. angled: {
  25319. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  25320. weight: math.unit(350, "lb"),
  25321. name: "Angled",
  25322. image: {
  25323. source: "./media/characters/sheera-castellar/angled.svg",
  25324. extra: 1807 / 1707,
  25325. bottom: 68 / 1875
  25326. }
  25327. },
  25328. genitals: {
  25329. height: math.unit(2.2, "feet"),
  25330. name: "Genitals",
  25331. image: {
  25332. source: "./media/characters/sheera-castellar/genitals.svg"
  25333. }
  25334. },
  25335. taur: {
  25336. height: math.unit(10 + 6/12, "feet"),
  25337. name: "Taur",
  25338. image: {
  25339. source: "./media/characters/sheera-castellar/taur.svg",
  25340. extra: 2017/1909,
  25341. bottom: 185/2202
  25342. }
  25343. },
  25344. },
  25345. [
  25346. {
  25347. name: "Normal",
  25348. height: math.unit(8 + 4 / 12, "feet")
  25349. },
  25350. {
  25351. name: "Macro",
  25352. height: math.unit(150, "feet"),
  25353. default: true
  25354. },
  25355. {
  25356. name: "Macro+",
  25357. height: math.unit(800, "feet")
  25358. },
  25359. ]
  25360. ))
  25361. characterMakers.push(() => makeCharacter(
  25362. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  25363. {
  25364. front: {
  25365. height: math.unit(6, "feet"),
  25366. weight: math.unit(150, "lb"),
  25367. name: "Front",
  25368. image: {
  25369. source: "./media/characters/jaipur/front.svg",
  25370. extra: 3860 / 3731,
  25371. bottom: 287 / 4140
  25372. }
  25373. },
  25374. back: {
  25375. height: math.unit(6, "feet"),
  25376. weight: math.unit(150, "lb"),
  25377. name: "Back",
  25378. image: {
  25379. source: "./media/characters/jaipur/back.svg",
  25380. extra: 1637/1561,
  25381. bottom: 154/1791
  25382. }
  25383. },
  25384. },
  25385. [
  25386. {
  25387. name: "Normal",
  25388. height: math.unit(1.85, "meters"),
  25389. default: true
  25390. },
  25391. {
  25392. name: "Macro",
  25393. height: math.unit(150, "meters")
  25394. },
  25395. {
  25396. name: "Macro+",
  25397. height: math.unit(0.5, "miles")
  25398. },
  25399. {
  25400. name: "Macro++",
  25401. height: math.unit(2.5, "miles")
  25402. },
  25403. {
  25404. name: "Macro+++",
  25405. height: math.unit(12, "miles")
  25406. },
  25407. {
  25408. name: "Macro++++",
  25409. height: math.unit(120, "miles")
  25410. },
  25411. {
  25412. name: "Macro+++++",
  25413. height: math.unit(1200, "miles")
  25414. },
  25415. ]
  25416. ))
  25417. characterMakers.push(() => makeCharacter(
  25418. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  25419. {
  25420. front: {
  25421. height: math.unit(6, "feet"),
  25422. weight: math.unit(150, "lb"),
  25423. name: "Front",
  25424. image: {
  25425. source: "./media/characters/sheila-wolf/front.svg",
  25426. extra: 1931 / 1808,
  25427. bottom: 29.5 / 1960
  25428. }
  25429. },
  25430. dick: {
  25431. height: math.unit(1.464, "feet"),
  25432. name: "Dick",
  25433. image: {
  25434. source: "./media/characters/sheila-wolf/dick.svg"
  25435. }
  25436. },
  25437. muzzle: {
  25438. height: math.unit(0.513, "feet"),
  25439. name: "Muzzle",
  25440. image: {
  25441. source: "./media/characters/sheila-wolf/muzzle.svg"
  25442. }
  25443. },
  25444. },
  25445. [
  25446. {
  25447. name: "Macro",
  25448. height: math.unit(70, "feet"),
  25449. default: true
  25450. },
  25451. ]
  25452. ))
  25453. characterMakers.push(() => makeCharacter(
  25454. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  25455. {
  25456. front: {
  25457. height: math.unit(32, "meters"),
  25458. weight: math.unit(300000, "kg"),
  25459. name: "Front",
  25460. image: {
  25461. source: "./media/characters/almor/front.svg",
  25462. extra: 1408 / 1322,
  25463. bottom: 94.6 / 1506.5
  25464. }
  25465. },
  25466. },
  25467. [
  25468. {
  25469. name: "Macro",
  25470. height: math.unit(32, "meters"),
  25471. default: true
  25472. },
  25473. ]
  25474. ))
  25475. characterMakers.push(() => makeCharacter(
  25476. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  25477. {
  25478. front: {
  25479. height: math.unit(7, "feet"),
  25480. weight: math.unit(200, "lb"),
  25481. name: "Front",
  25482. image: {
  25483. source: "./media/characters/silver/front.svg",
  25484. extra: 472.1 / 450.5,
  25485. bottom: 26.5 / 499.424
  25486. }
  25487. },
  25488. },
  25489. [
  25490. {
  25491. name: "Normal",
  25492. height: math.unit(7, "feet"),
  25493. default: true
  25494. },
  25495. {
  25496. name: "Macro",
  25497. height: math.unit(800, "feet")
  25498. },
  25499. {
  25500. name: "Megamacro",
  25501. height: math.unit(250, "miles")
  25502. },
  25503. ]
  25504. ))
  25505. characterMakers.push(() => makeCharacter(
  25506. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  25507. {
  25508. front: {
  25509. height: math.unit(6, "feet"),
  25510. weight: math.unit(150, "lb"),
  25511. name: "Front",
  25512. image: {
  25513. source: "./media/characters/pliskin/front.svg",
  25514. extra: 1469 / 1359,
  25515. bottom: 70 / 1540
  25516. }
  25517. },
  25518. },
  25519. [
  25520. {
  25521. name: "Micro",
  25522. height: math.unit(3, "inches")
  25523. },
  25524. {
  25525. name: "Normal",
  25526. height: math.unit(5 + 11 / 12, "feet"),
  25527. default: true
  25528. },
  25529. {
  25530. name: "Macro",
  25531. height: math.unit(120, "feet")
  25532. },
  25533. ]
  25534. ))
  25535. characterMakers.push(() => makeCharacter(
  25536. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  25537. {
  25538. front: {
  25539. height: math.unit(6, "feet"),
  25540. weight: math.unit(150, "lb"),
  25541. name: "Front",
  25542. image: {
  25543. source: "./media/characters/sammy/front.svg",
  25544. extra: 1193 / 1089,
  25545. bottom: 30.5 / 1226
  25546. }
  25547. },
  25548. },
  25549. [
  25550. {
  25551. name: "Macro",
  25552. height: math.unit(1700, "feet"),
  25553. default: true
  25554. },
  25555. {
  25556. name: "Examacro",
  25557. height: math.unit(2.5e9, "lightyears")
  25558. },
  25559. ]
  25560. ))
  25561. characterMakers.push(() => makeCharacter(
  25562. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  25563. {
  25564. front: {
  25565. height: math.unit(21, "meters"),
  25566. weight: math.unit(12, "tonnes"),
  25567. name: "Front",
  25568. image: {
  25569. source: "./media/characters/kuru/front.svg",
  25570. extra: 4301 / 3785,
  25571. bottom: 371.3 / 4691
  25572. }
  25573. },
  25574. },
  25575. [
  25576. {
  25577. name: "Macro",
  25578. height: math.unit(21, "meters"),
  25579. default: true
  25580. },
  25581. ]
  25582. ))
  25583. characterMakers.push(() => makeCharacter(
  25584. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  25585. {
  25586. front: {
  25587. height: math.unit(23, "meters"),
  25588. weight: math.unit(12.2, "tonnes"),
  25589. name: "Front",
  25590. image: {
  25591. source: "./media/characters/rakka/front.svg",
  25592. extra: 4670 / 4169,
  25593. bottom: 301 / 4968.7
  25594. }
  25595. },
  25596. },
  25597. [
  25598. {
  25599. name: "Macro",
  25600. height: math.unit(23, "meters"),
  25601. default: true
  25602. },
  25603. ]
  25604. ))
  25605. characterMakers.push(() => makeCharacter(
  25606. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  25607. {
  25608. front: {
  25609. height: math.unit(6, "feet"),
  25610. weight: math.unit(150, "lb"),
  25611. name: "Front",
  25612. image: {
  25613. source: "./media/characters/rhys-feline/front.svg",
  25614. extra: 2488 / 2308,
  25615. bottom: 35.67 / 2519.19
  25616. }
  25617. },
  25618. },
  25619. [
  25620. {
  25621. name: "Really Small",
  25622. height: math.unit(1, "nm")
  25623. },
  25624. {
  25625. name: "Micro",
  25626. height: math.unit(4, "inches")
  25627. },
  25628. {
  25629. name: "Normal",
  25630. height: math.unit(4 + 10 / 12, "feet"),
  25631. default: true
  25632. },
  25633. {
  25634. name: "Macro",
  25635. height: math.unit(100, "feet")
  25636. },
  25637. {
  25638. name: "Megamacto",
  25639. height: math.unit(50, "miles")
  25640. },
  25641. ]
  25642. ))
  25643. characterMakers.push(() => makeCharacter(
  25644. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  25645. {
  25646. side: {
  25647. height: math.unit(30, "feet"),
  25648. weight: math.unit(35000, "kg"),
  25649. name: "Side",
  25650. image: {
  25651. source: "./media/characters/alydar/side.svg",
  25652. extra: 234 / 222,
  25653. bottom: 6.5 / 241
  25654. }
  25655. },
  25656. front: {
  25657. height: math.unit(30, "feet"),
  25658. weight: math.unit(35000, "kg"),
  25659. name: "Front",
  25660. image: {
  25661. source: "./media/characters/alydar/front.svg",
  25662. extra: 223.37 / 210.2,
  25663. bottom: 22.3 / 246.76
  25664. }
  25665. },
  25666. top: {
  25667. height: math.unit(64.54, "feet"),
  25668. weight: math.unit(35000, "kg"),
  25669. name: "Top",
  25670. image: {
  25671. source: "./media/characters/alydar/top.svg"
  25672. }
  25673. },
  25674. anthro: {
  25675. height: math.unit(30, "feet"),
  25676. weight: math.unit(9000, "kg"),
  25677. name: "Anthro",
  25678. image: {
  25679. source: "./media/characters/alydar/anthro.svg",
  25680. extra: 432 / 421,
  25681. bottom: 7.18 / 440
  25682. }
  25683. },
  25684. maw: {
  25685. height: math.unit(11.693, "feet"),
  25686. name: "Maw",
  25687. image: {
  25688. source: "./media/characters/alydar/maw.svg"
  25689. }
  25690. },
  25691. head: {
  25692. height: math.unit(11.693, "feet"),
  25693. name: "Head",
  25694. image: {
  25695. source: "./media/characters/alydar/head.svg"
  25696. }
  25697. },
  25698. headAlt: {
  25699. height: math.unit(12.861, "feet"),
  25700. name: "Head (Alt)",
  25701. image: {
  25702. source: "./media/characters/alydar/head-alt.svg"
  25703. }
  25704. },
  25705. wing: {
  25706. height: math.unit(20.712, "feet"),
  25707. name: "Wing",
  25708. image: {
  25709. source: "./media/characters/alydar/wing.svg"
  25710. }
  25711. },
  25712. wingFeather: {
  25713. height: math.unit(9.662, "feet"),
  25714. name: "Wing Feather",
  25715. image: {
  25716. source: "./media/characters/alydar/wing-feather.svg"
  25717. }
  25718. },
  25719. countourFeather: {
  25720. height: math.unit(4.154, "feet"),
  25721. name: "Contour Feather",
  25722. image: {
  25723. source: "./media/characters/alydar/contour-feather.svg"
  25724. }
  25725. },
  25726. },
  25727. [
  25728. {
  25729. name: "Diplomatic",
  25730. height: math.unit(13, "feet"),
  25731. default: true
  25732. },
  25733. {
  25734. name: "Small",
  25735. height: math.unit(30, "feet")
  25736. },
  25737. {
  25738. name: "Normal",
  25739. height: math.unit(95, "feet"),
  25740. default: true
  25741. },
  25742. {
  25743. name: "Large",
  25744. height: math.unit(285, "feet")
  25745. },
  25746. {
  25747. name: "Incomprehensible",
  25748. height: math.unit(450, "megameters")
  25749. },
  25750. ]
  25751. ))
  25752. characterMakers.push(() => makeCharacter(
  25753. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  25754. {
  25755. side: {
  25756. height: math.unit(11, "feet"),
  25757. weight: math.unit(1750, "kg"),
  25758. name: "Side",
  25759. image: {
  25760. source: "./media/characters/selicia/side.svg",
  25761. extra: 440 / 396,
  25762. bottom: 24.8 / 465.979
  25763. }
  25764. },
  25765. maw: {
  25766. height: math.unit(4.665, "feet"),
  25767. name: "Maw",
  25768. image: {
  25769. source: "./media/characters/selicia/maw.svg"
  25770. }
  25771. },
  25772. },
  25773. [
  25774. {
  25775. name: "Normal",
  25776. height: math.unit(11, "feet"),
  25777. default: true
  25778. },
  25779. ]
  25780. ))
  25781. characterMakers.push(() => makeCharacter(
  25782. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  25783. {
  25784. side: {
  25785. height: math.unit(2 + 6 / 12, "feet"),
  25786. weight: math.unit(30, "lb"),
  25787. name: "Side",
  25788. image: {
  25789. source: "./media/characters/layla/side.svg",
  25790. extra: 244 / 188,
  25791. bottom: 18.2 / 262.1
  25792. }
  25793. },
  25794. back: {
  25795. height: math.unit(2 + 6 / 12, "feet"),
  25796. weight: math.unit(30, "lb"),
  25797. name: "Back",
  25798. image: {
  25799. source: "./media/characters/layla/back.svg",
  25800. extra: 308 / 241.5,
  25801. bottom: 8.9 / 316.8
  25802. }
  25803. },
  25804. cumming: {
  25805. height: math.unit(2 + 6 / 12, "feet"),
  25806. weight: math.unit(30, "lb"),
  25807. name: "Cumming",
  25808. image: {
  25809. source: "./media/characters/layla/cumming.svg",
  25810. extra: 342 / 279,
  25811. bottom: 595 / 938
  25812. }
  25813. },
  25814. dickFlaccid: {
  25815. height: math.unit(2.595, "feet"),
  25816. name: "Flaccid Genitals",
  25817. image: {
  25818. source: "./media/characters/layla/dick-flaccid.svg"
  25819. }
  25820. },
  25821. dickErect: {
  25822. height: math.unit(2.359, "feet"),
  25823. name: "Erect Genitals",
  25824. image: {
  25825. source: "./media/characters/layla/dick-erect.svg"
  25826. }
  25827. },
  25828. dragon: {
  25829. height: math.unit(40, "feet"),
  25830. name: "Dragon",
  25831. image: {
  25832. source: "./media/characters/layla/dragon.svg",
  25833. extra: 610/535,
  25834. bottom: 367/977
  25835. }
  25836. },
  25837. taur: {
  25838. height: math.unit(30, "feet"),
  25839. name: "Taur",
  25840. image: {
  25841. source: "./media/characters/layla/taur.svg",
  25842. extra: 1268/1199,
  25843. bottom: 112/1380
  25844. }
  25845. },
  25846. },
  25847. [
  25848. {
  25849. name: "Micro",
  25850. height: math.unit(1, "inch")
  25851. },
  25852. {
  25853. name: "Small",
  25854. height: math.unit(1, "foot")
  25855. },
  25856. {
  25857. name: "Normal",
  25858. height: math.unit(2 + 6 / 12, "feet"),
  25859. default: true
  25860. },
  25861. {
  25862. name: "Macro",
  25863. height: math.unit(200, "feet")
  25864. },
  25865. {
  25866. name: "Megamacro",
  25867. height: math.unit(1000, "miles")
  25868. },
  25869. {
  25870. name: "Planetary",
  25871. height: math.unit(8000, "miles")
  25872. },
  25873. {
  25874. name: "True Layla",
  25875. height: math.unit(200000 * 7, "multiverses")
  25876. },
  25877. ]
  25878. ))
  25879. characterMakers.push(() => makeCharacter(
  25880. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  25881. {
  25882. back: {
  25883. height: math.unit(10.5, "feet"),
  25884. weight: math.unit(800, "lb"),
  25885. name: "Back",
  25886. image: {
  25887. source: "./media/characters/knox/back.svg",
  25888. extra: 1486 / 1089,
  25889. bottom: 107 / 1601.4
  25890. }
  25891. },
  25892. side: {
  25893. height: math.unit(10.5, "feet"),
  25894. weight: math.unit(800, "lb"),
  25895. name: "Side",
  25896. image: {
  25897. source: "./media/characters/knox/side.svg",
  25898. extra: 244 / 218,
  25899. bottom: 14 / 260
  25900. }
  25901. },
  25902. },
  25903. [
  25904. {
  25905. name: "Compact",
  25906. height: math.unit(10.5, "feet"),
  25907. default: true
  25908. },
  25909. {
  25910. name: "Dynamax",
  25911. height: math.unit(210, "feet")
  25912. },
  25913. {
  25914. name: "Full Macro",
  25915. height: math.unit(850, "feet")
  25916. },
  25917. ]
  25918. ))
  25919. characterMakers.push(() => makeCharacter(
  25920. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  25921. {
  25922. front: {
  25923. height: math.unit(28, "feet"),
  25924. weight: math.unit(10500, "lb"),
  25925. name: "Front",
  25926. image: {
  25927. source: "./media/characters/kayda/front.svg",
  25928. extra: 1536 / 1428,
  25929. bottom: 68.7 / 1603
  25930. }
  25931. },
  25932. back: {
  25933. height: math.unit(28, "feet"),
  25934. weight: math.unit(10500, "lb"),
  25935. name: "Back",
  25936. image: {
  25937. source: "./media/characters/kayda/back.svg",
  25938. extra: 1557 / 1464,
  25939. bottom: 39.5 / 1597.49
  25940. }
  25941. },
  25942. dick: {
  25943. height: math.unit(3.858, "feet"),
  25944. name: "Dick",
  25945. image: {
  25946. source: "./media/characters/kayda/dick.svg"
  25947. }
  25948. },
  25949. },
  25950. [
  25951. {
  25952. name: "Macro",
  25953. height: math.unit(28, "feet"),
  25954. default: true
  25955. },
  25956. ]
  25957. ))
  25958. characterMakers.push(() => makeCharacter(
  25959. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  25960. {
  25961. front: {
  25962. height: math.unit(10 + 11 / 12, "feet"),
  25963. weight: math.unit(1400, "lb"),
  25964. name: "Front",
  25965. image: {
  25966. source: "./media/characters/brian/front.svg",
  25967. extra: 737 / 692,
  25968. bottom: 55.4 / 785
  25969. }
  25970. },
  25971. },
  25972. [
  25973. {
  25974. name: "Normal",
  25975. height: math.unit(10 + 11 / 12, "feet"),
  25976. default: true
  25977. },
  25978. ]
  25979. ))
  25980. characterMakers.push(() => makeCharacter(
  25981. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  25982. {
  25983. front: {
  25984. height: math.unit(5 + 8 / 12, "feet"),
  25985. weight: math.unit(140, "lb"),
  25986. name: "Front",
  25987. image: {
  25988. source: "./media/characters/khemri/front.svg",
  25989. extra: 4780 / 4059,
  25990. bottom: 80.1 / 4859.25
  25991. }
  25992. },
  25993. },
  25994. [
  25995. {
  25996. name: "Micro",
  25997. height: math.unit(6, "inches")
  25998. },
  25999. {
  26000. name: "Normal",
  26001. height: math.unit(5 + 8 / 12, "feet"),
  26002. default: true
  26003. },
  26004. ]
  26005. ))
  26006. characterMakers.push(() => makeCharacter(
  26007. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  26008. {
  26009. front: {
  26010. height: math.unit(13, "feet"),
  26011. weight: math.unit(1700, "lb"),
  26012. name: "Front",
  26013. image: {
  26014. source: "./media/characters/felix-braveheart/front.svg",
  26015. extra: 1222 / 1157,
  26016. bottom: 53.2 / 1280
  26017. }
  26018. },
  26019. back: {
  26020. height: math.unit(13, "feet"),
  26021. weight: math.unit(1700, "lb"),
  26022. name: "Back",
  26023. image: {
  26024. source: "./media/characters/felix-braveheart/back.svg",
  26025. extra: 1277 / 1203,
  26026. bottom: 50.2 / 1327
  26027. }
  26028. },
  26029. feral: {
  26030. height: math.unit(6, "feet"),
  26031. weight: math.unit(400, "lb"),
  26032. name: "Feral",
  26033. image: {
  26034. source: "./media/characters/felix-braveheart/feral.svg",
  26035. extra: 682 / 625,
  26036. bottom: 6.9 / 688
  26037. }
  26038. },
  26039. },
  26040. [
  26041. {
  26042. name: "Normal",
  26043. height: math.unit(13, "feet"),
  26044. default: true
  26045. },
  26046. ]
  26047. ))
  26048. characterMakers.push(() => makeCharacter(
  26049. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  26050. {
  26051. side: {
  26052. height: math.unit(5 + 11 / 12, "feet"),
  26053. weight: math.unit(1400, "lb"),
  26054. name: "Side",
  26055. image: {
  26056. source: "./media/characters/shadow-blade/side.svg",
  26057. extra: 1726 / 1267,
  26058. bottom: 58.4 / 1785
  26059. }
  26060. },
  26061. },
  26062. [
  26063. {
  26064. name: "Normal",
  26065. height: math.unit(5 + 11 / 12, "feet"),
  26066. default: true
  26067. },
  26068. ]
  26069. ))
  26070. characterMakers.push(() => makeCharacter(
  26071. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  26072. {
  26073. front: {
  26074. height: math.unit(1 + 6 / 12, "feet"),
  26075. weight: math.unit(25, "lb"),
  26076. name: "Front",
  26077. image: {
  26078. source: "./media/characters/karla-halldor/front.svg",
  26079. extra: 1459 / 1383,
  26080. bottom: 12 / 1472
  26081. }
  26082. },
  26083. },
  26084. [
  26085. {
  26086. name: "Normal",
  26087. height: math.unit(1 + 6 / 12, "feet"),
  26088. default: true
  26089. },
  26090. ]
  26091. ))
  26092. characterMakers.push(() => makeCharacter(
  26093. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  26094. {
  26095. front: {
  26096. height: math.unit(6 + 2 / 12, "feet"),
  26097. weight: math.unit(160, "lb"),
  26098. name: "Front",
  26099. image: {
  26100. source: "./media/characters/ariam/front.svg",
  26101. extra: 1073/976,
  26102. bottom: 52/1125
  26103. }
  26104. },
  26105. back: {
  26106. height: math.unit(6 + 2/12, "feet"),
  26107. weight: math.unit(160, "lb"),
  26108. name: "Back",
  26109. image: {
  26110. source: "./media/characters/ariam/back.svg",
  26111. extra: 1103/1023,
  26112. bottom: 9/1112
  26113. }
  26114. },
  26115. dressed: {
  26116. height: math.unit(6 + 2/12, "feet"),
  26117. weight: math.unit(160, "lb"),
  26118. name: "Dressed",
  26119. image: {
  26120. source: "./media/characters/ariam/dressed.svg",
  26121. extra: 1099/1009,
  26122. bottom: 25/1124
  26123. }
  26124. },
  26125. squatting: {
  26126. height: math.unit(4.1, "feet"),
  26127. weight: math.unit(160, "lb"),
  26128. name: "Squatting",
  26129. image: {
  26130. source: "./media/characters/ariam/squatting.svg",
  26131. extra: 2617 / 2112,
  26132. bottom: 61.2 / 2681,
  26133. }
  26134. },
  26135. },
  26136. [
  26137. {
  26138. name: "Normal",
  26139. height: math.unit(6 + 2 / 12, "feet"),
  26140. default: true
  26141. },
  26142. {
  26143. name: "Normal+",
  26144. height: math.unit(4, "meters")
  26145. },
  26146. {
  26147. name: "Macro",
  26148. height: math.unit(50, "meters")
  26149. },
  26150. {
  26151. name: "Macro+",
  26152. height: math.unit(100, "meters")
  26153. },
  26154. {
  26155. name: "Megamacro",
  26156. height: math.unit(20, "km")
  26157. },
  26158. {
  26159. name: "Caretaker",
  26160. height: math.unit(444, "megameters")
  26161. },
  26162. ]
  26163. ))
  26164. characterMakers.push(() => makeCharacter(
  26165. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  26166. {
  26167. front: {
  26168. height: math.unit(1.67, "meters"),
  26169. weight: math.unit(140, "lb"),
  26170. name: "Front",
  26171. image: {
  26172. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  26173. extra: 438 / 410,
  26174. bottom: 0.75 / 439
  26175. }
  26176. },
  26177. },
  26178. [
  26179. {
  26180. name: "Shrunken",
  26181. height: math.unit(7.6, "cm")
  26182. },
  26183. {
  26184. name: "Human Scale",
  26185. height: math.unit(1.67, "meters")
  26186. },
  26187. {
  26188. name: "Wolxi Scale",
  26189. height: math.unit(36.7, "meters"),
  26190. default: true
  26191. },
  26192. ]
  26193. ))
  26194. characterMakers.push(() => makeCharacter(
  26195. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  26196. {
  26197. front: {
  26198. height: math.unit(1.73, "meters"),
  26199. weight: math.unit(240, "lb"),
  26200. name: "Front",
  26201. image: {
  26202. source: "./media/characters/izue-two-mothers/front.svg",
  26203. extra: 469 / 437,
  26204. bottom: 1.24 / 470.6
  26205. }
  26206. },
  26207. },
  26208. [
  26209. {
  26210. name: "Shrunken",
  26211. height: math.unit(7.86, "cm")
  26212. },
  26213. {
  26214. name: "Human Scale",
  26215. height: math.unit(1.73, "meters")
  26216. },
  26217. {
  26218. name: "Wolxi Scale",
  26219. height: math.unit(38, "meters"),
  26220. default: true
  26221. },
  26222. ]
  26223. ))
  26224. characterMakers.push(() => makeCharacter(
  26225. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  26226. {
  26227. front: {
  26228. height: math.unit(1.55, "meters"),
  26229. weight: math.unit(120, "lb"),
  26230. name: "Front",
  26231. image: {
  26232. source: "./media/characters/teeku-love-shack/front.svg",
  26233. extra: 387 / 362,
  26234. bottom: 1.51 / 388
  26235. }
  26236. },
  26237. },
  26238. [
  26239. {
  26240. name: "Shrunken",
  26241. height: math.unit(7, "cm")
  26242. },
  26243. {
  26244. name: "Human Scale",
  26245. height: math.unit(1.55, "meters")
  26246. },
  26247. {
  26248. name: "Wolxi Scale",
  26249. height: math.unit(34.1, "meters"),
  26250. default: true
  26251. },
  26252. ]
  26253. ))
  26254. characterMakers.push(() => makeCharacter(
  26255. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  26256. {
  26257. front: {
  26258. height: math.unit(1.83, "meters"),
  26259. weight: math.unit(135, "lb"),
  26260. name: "Front",
  26261. image: {
  26262. source: "./media/characters/dejma-the-red/front.svg",
  26263. extra: 480 / 458,
  26264. bottom: 1.8 / 482
  26265. }
  26266. },
  26267. },
  26268. [
  26269. {
  26270. name: "Shrunken",
  26271. height: math.unit(8.3, "cm")
  26272. },
  26273. {
  26274. name: "Human Scale",
  26275. height: math.unit(1.83, "meters")
  26276. },
  26277. {
  26278. name: "Wolxi Scale",
  26279. height: math.unit(40, "meters"),
  26280. default: true
  26281. },
  26282. ]
  26283. ))
  26284. characterMakers.push(() => makeCharacter(
  26285. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  26286. {
  26287. front: {
  26288. height: math.unit(1.78, "meters"),
  26289. weight: math.unit(65, "kg"),
  26290. name: "Front",
  26291. image: {
  26292. source: "./media/characters/aki/front.svg",
  26293. extra: 452 / 415
  26294. }
  26295. },
  26296. frontNsfw: {
  26297. height: math.unit(1.78, "meters"),
  26298. weight: math.unit(65, "kg"),
  26299. name: "Front (NSFW)",
  26300. image: {
  26301. source: "./media/characters/aki/front-nsfw.svg",
  26302. extra: 452 / 415
  26303. }
  26304. },
  26305. back: {
  26306. height: math.unit(1.78, "meters"),
  26307. weight: math.unit(65, "kg"),
  26308. name: "Back",
  26309. image: {
  26310. source: "./media/characters/aki/back.svg",
  26311. extra: 452 / 415
  26312. }
  26313. },
  26314. rump: {
  26315. height: math.unit(2.05, "feet"),
  26316. name: "Rump",
  26317. image: {
  26318. source: "./media/characters/aki/rump.svg"
  26319. }
  26320. },
  26321. dick: {
  26322. height: math.unit(0.95, "feet"),
  26323. name: "Dick",
  26324. image: {
  26325. source: "./media/characters/aki/dick.svg"
  26326. }
  26327. },
  26328. },
  26329. [
  26330. {
  26331. name: "Micro",
  26332. height: math.unit(15, "cm")
  26333. },
  26334. {
  26335. name: "Normal",
  26336. height: math.unit(178, "cm"),
  26337. default: true
  26338. },
  26339. {
  26340. name: "Macro",
  26341. height: math.unit(214, "m")
  26342. },
  26343. {
  26344. name: "Macro+",
  26345. height: math.unit(534, "m")
  26346. },
  26347. ]
  26348. ))
  26349. characterMakers.push(() => makeCharacter(
  26350. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  26351. {
  26352. front: {
  26353. height: math.unit(5 + 5 / 12, "feet"),
  26354. weight: math.unit(120, "lb"),
  26355. name: "Front",
  26356. image: {
  26357. source: "./media/characters/ari/front.svg",
  26358. extra: 1550/1471,
  26359. bottom: 39/1589
  26360. }
  26361. },
  26362. },
  26363. [
  26364. {
  26365. name: "Normal",
  26366. height: math.unit(5 + 5 / 12, "feet")
  26367. },
  26368. {
  26369. name: "Macro",
  26370. height: math.unit(100, "feet"),
  26371. default: true
  26372. },
  26373. {
  26374. name: "Megamacro",
  26375. height: math.unit(100, "miles")
  26376. },
  26377. {
  26378. name: "Gigamacro",
  26379. height: math.unit(80000, "miles")
  26380. },
  26381. ]
  26382. ))
  26383. characterMakers.push(() => makeCharacter(
  26384. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  26385. {
  26386. side: {
  26387. height: math.unit(9, "feet"),
  26388. weight: math.unit(400, "kg"),
  26389. name: "Side",
  26390. image: {
  26391. source: "./media/characters/bolt/side.svg",
  26392. extra: 1126 / 896,
  26393. bottom: 60 / 1187.3,
  26394. }
  26395. },
  26396. },
  26397. [
  26398. {
  26399. name: "Micro",
  26400. height: math.unit(5, "inches")
  26401. },
  26402. {
  26403. name: "Normal",
  26404. height: math.unit(9, "feet"),
  26405. default: true
  26406. },
  26407. {
  26408. name: "Macro",
  26409. height: math.unit(700, "feet")
  26410. },
  26411. {
  26412. name: "Max Size",
  26413. height: math.unit(1.52e22, "yottameters")
  26414. },
  26415. ]
  26416. ))
  26417. characterMakers.push(() => makeCharacter(
  26418. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  26419. {
  26420. front: {
  26421. height: math.unit(4.3, "meters"),
  26422. weight: math.unit(3, "tons"),
  26423. name: "Front",
  26424. image: {
  26425. source: "./media/characters/draekon-sylviar/front.svg",
  26426. extra: 2072/1512,
  26427. bottom: 74/2146
  26428. }
  26429. },
  26430. back: {
  26431. height: math.unit(4.3, "meters"),
  26432. weight: math.unit(3, "tons"),
  26433. name: "Back",
  26434. image: {
  26435. source: "./media/characters/draekon-sylviar/back.svg",
  26436. extra: 1639/1483,
  26437. bottom: 41/1680
  26438. }
  26439. },
  26440. feral: {
  26441. height: math.unit(1.15, "meters"),
  26442. weight: math.unit(3, "tons"),
  26443. name: "Feral",
  26444. image: {
  26445. source: "./media/characters/draekon-sylviar/feral.svg",
  26446. extra: 1033/395,
  26447. bottom: 130/1163
  26448. }
  26449. },
  26450. maw: {
  26451. height: math.unit(1.3, "meters"),
  26452. name: "Maw",
  26453. image: {
  26454. source: "./media/characters/draekon-sylviar/maw.svg"
  26455. }
  26456. },
  26457. mawSeparated: {
  26458. height: math.unit(1.53, "meters"),
  26459. name: "Separated Maw",
  26460. image: {
  26461. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  26462. }
  26463. },
  26464. tail: {
  26465. height: math.unit(1.15, "meters"),
  26466. name: "Tail",
  26467. image: {
  26468. source: "./media/characters/draekon-sylviar/tail.svg"
  26469. }
  26470. },
  26471. tailDick: {
  26472. height: math.unit(1.15, "meters"),
  26473. name: "Tail (Dick)",
  26474. image: {
  26475. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  26476. }
  26477. },
  26478. tailDickSeparated: {
  26479. height: math.unit(1.19, "meters"),
  26480. name: "Tail (Separated Dick)",
  26481. image: {
  26482. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  26483. }
  26484. },
  26485. slit: {
  26486. height: math.unit(1, "meters"),
  26487. name: "Slit",
  26488. image: {
  26489. source: "./media/characters/draekon-sylviar/slit.svg"
  26490. }
  26491. },
  26492. dick: {
  26493. height: math.unit(1.15, "meters"),
  26494. name: "Dick",
  26495. image: {
  26496. source: "./media/characters/draekon-sylviar/dick.svg"
  26497. }
  26498. },
  26499. dickSeparated: {
  26500. height: math.unit(1.1, "meters"),
  26501. name: "Separated Dick",
  26502. image: {
  26503. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  26504. }
  26505. },
  26506. sheath: {
  26507. height: math.unit(1.15, "meters"),
  26508. name: "Sheath",
  26509. image: {
  26510. source: "./media/characters/draekon-sylviar/sheath.svg"
  26511. }
  26512. },
  26513. },
  26514. [
  26515. {
  26516. name: "Small",
  26517. height: math.unit(4.53 / 2, "meters"),
  26518. default: true
  26519. },
  26520. {
  26521. name: "Normal",
  26522. height: math.unit(4.53, "meters"),
  26523. default: true
  26524. },
  26525. {
  26526. name: "Large",
  26527. height: math.unit(4.53 * 2, "meters"),
  26528. },
  26529. ]
  26530. ))
  26531. characterMakers.push(() => makeCharacter(
  26532. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  26533. {
  26534. front: {
  26535. height: math.unit(6 + 2 / 12, "feet"),
  26536. weight: math.unit(180, "lb"),
  26537. name: "Front",
  26538. image: {
  26539. source: "./media/characters/brawler/front.svg",
  26540. extra: 3301 / 3027,
  26541. bottom: 138 / 3439
  26542. }
  26543. },
  26544. },
  26545. [
  26546. {
  26547. name: "Normal",
  26548. height: math.unit(6 + 2 / 12, "feet"),
  26549. default: true
  26550. },
  26551. ]
  26552. ))
  26553. characterMakers.push(() => makeCharacter(
  26554. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  26555. {
  26556. front: {
  26557. height: math.unit(11, "feet"),
  26558. weight: math.unit(1000, "lb"),
  26559. name: "Front",
  26560. image: {
  26561. source: "./media/characters/alex/front.svg",
  26562. bottom: 44.5 / 620
  26563. }
  26564. },
  26565. },
  26566. [
  26567. {
  26568. name: "Micro",
  26569. height: math.unit(5, "inches")
  26570. },
  26571. {
  26572. name: "Normal",
  26573. height: math.unit(11, "feet"),
  26574. default: true
  26575. },
  26576. {
  26577. name: "Macro",
  26578. height: math.unit(9.5e9, "feet")
  26579. },
  26580. {
  26581. name: "Max Size",
  26582. height: math.unit(1.4e283, "yottameters")
  26583. },
  26584. ]
  26585. ))
  26586. characterMakers.push(() => makeCharacter(
  26587. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  26588. {
  26589. female: {
  26590. height: math.unit(29.9, "m"),
  26591. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  26592. name: "Female",
  26593. image: {
  26594. source: "./media/characters/zenari/female.svg",
  26595. extra: 3281.6 / 3217,
  26596. bottom: 72.2 / 3353
  26597. }
  26598. },
  26599. male: {
  26600. height: math.unit(27.7, "m"),
  26601. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  26602. name: "Male",
  26603. image: {
  26604. source: "./media/characters/zenari/male.svg",
  26605. extra: 3008 / 2991,
  26606. bottom: 54.6 / 3069
  26607. }
  26608. },
  26609. },
  26610. [
  26611. {
  26612. name: "Macro",
  26613. height: math.unit(29.7, "meters"),
  26614. default: true
  26615. },
  26616. ]
  26617. ))
  26618. characterMakers.push(() => makeCharacter(
  26619. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  26620. {
  26621. female: {
  26622. height: math.unit(23.8, "m"),
  26623. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26624. name: "Female",
  26625. image: {
  26626. source: "./media/characters/mactarian/female.svg",
  26627. extra: 2662 / 2569,
  26628. bottom: 73 / 2736
  26629. }
  26630. },
  26631. male: {
  26632. height: math.unit(23.8, "m"),
  26633. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26634. name: "Male",
  26635. image: {
  26636. source: "./media/characters/mactarian/male.svg",
  26637. extra: 2673 / 2600,
  26638. bottom: 76 / 2750
  26639. }
  26640. },
  26641. },
  26642. [
  26643. {
  26644. name: "Macro",
  26645. height: math.unit(23.8, "meters"),
  26646. default: true
  26647. },
  26648. ]
  26649. ))
  26650. characterMakers.push(() => makeCharacter(
  26651. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  26652. {
  26653. female: {
  26654. height: math.unit(19.3, "m"),
  26655. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  26656. name: "Female",
  26657. image: {
  26658. source: "./media/characters/umok/female.svg",
  26659. extra: 2186 / 2078,
  26660. bottom: 87 / 2277
  26661. }
  26662. },
  26663. male: {
  26664. height: math.unit(19.5, "m"),
  26665. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  26666. name: "Male",
  26667. image: {
  26668. source: "./media/characters/umok/male.svg",
  26669. extra: 2233 / 2140,
  26670. bottom: 24.4 / 2258
  26671. }
  26672. },
  26673. },
  26674. [
  26675. {
  26676. name: "Macro",
  26677. height: math.unit(19.3, "meters"),
  26678. default: true
  26679. },
  26680. ]
  26681. ))
  26682. characterMakers.push(() => makeCharacter(
  26683. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  26684. {
  26685. female: {
  26686. height: math.unit(26.15, "m"),
  26687. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  26688. name: "Female",
  26689. image: {
  26690. source: "./media/characters/joraxian/female.svg",
  26691. extra: 2912 / 2824,
  26692. bottom: 36 / 2956
  26693. }
  26694. },
  26695. male: {
  26696. height: math.unit(25.4, "m"),
  26697. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  26698. name: "Male",
  26699. image: {
  26700. source: "./media/characters/joraxian/male.svg",
  26701. extra: 2877 / 2721,
  26702. bottom: 82 / 2967
  26703. }
  26704. },
  26705. },
  26706. [
  26707. {
  26708. name: "Macro",
  26709. height: math.unit(26.15, "meters"),
  26710. default: true
  26711. },
  26712. ]
  26713. ))
  26714. characterMakers.push(() => makeCharacter(
  26715. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  26716. {
  26717. female: {
  26718. height: math.unit(21.6, "m"),
  26719. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  26720. name: "Female",
  26721. image: {
  26722. source: "./media/characters/sthara/female.svg",
  26723. extra: 2516 / 2347,
  26724. bottom: 21.5 / 2537
  26725. }
  26726. },
  26727. male: {
  26728. height: math.unit(24, "m"),
  26729. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  26730. name: "Male",
  26731. image: {
  26732. source: "./media/characters/sthara/male.svg",
  26733. extra: 2732 / 2607,
  26734. bottom: 23 / 2732
  26735. }
  26736. },
  26737. },
  26738. [
  26739. {
  26740. name: "Macro",
  26741. height: math.unit(21.6, "meters"),
  26742. default: true
  26743. },
  26744. ]
  26745. ))
  26746. characterMakers.push(() => makeCharacter(
  26747. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  26748. {
  26749. front: {
  26750. height: math.unit(6 + 4 / 12, "feet"),
  26751. weight: math.unit(175, "lb"),
  26752. name: "Front",
  26753. image: {
  26754. source: "./media/characters/luka-bryzant/front.svg",
  26755. extra: 311 / 289,
  26756. bottom: 4 / 315
  26757. }
  26758. },
  26759. back: {
  26760. height: math.unit(6 + 4 / 12, "feet"),
  26761. weight: math.unit(175, "lb"),
  26762. name: "Back",
  26763. image: {
  26764. source: "./media/characters/luka-bryzant/back.svg",
  26765. extra: 311 / 289,
  26766. bottom: 3.8 / 313.7
  26767. }
  26768. },
  26769. },
  26770. [
  26771. {
  26772. name: "Micro",
  26773. height: math.unit(10, "inches")
  26774. },
  26775. {
  26776. name: "Normal",
  26777. height: math.unit(6 + 4 / 12, "feet"),
  26778. default: true
  26779. },
  26780. {
  26781. name: "Large",
  26782. height: math.unit(12, "feet")
  26783. },
  26784. ]
  26785. ))
  26786. characterMakers.push(() => makeCharacter(
  26787. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  26788. {
  26789. front: {
  26790. height: math.unit(5 + 7 / 12, "feet"),
  26791. weight: math.unit(185, "lb"),
  26792. name: "Front",
  26793. image: {
  26794. source: "./media/characters/aman-aquila/front.svg",
  26795. extra: 1013 / 976,
  26796. bottom: 45.6 / 1057
  26797. }
  26798. },
  26799. side: {
  26800. height: math.unit(5 + 7 / 12, "feet"),
  26801. weight: math.unit(185, "lb"),
  26802. name: "Side",
  26803. image: {
  26804. source: "./media/characters/aman-aquila/side.svg",
  26805. extra: 1054 / 1011,
  26806. bottom: 15 / 1070
  26807. }
  26808. },
  26809. back: {
  26810. height: math.unit(5 + 7 / 12, "feet"),
  26811. weight: math.unit(185, "lb"),
  26812. name: "Back",
  26813. image: {
  26814. source: "./media/characters/aman-aquila/back.svg",
  26815. extra: 1026 / 970,
  26816. bottom: 12 / 1039
  26817. }
  26818. },
  26819. head: {
  26820. height: math.unit(1.211, "feet"),
  26821. name: "Head",
  26822. image: {
  26823. source: "./media/characters/aman-aquila/head.svg",
  26824. }
  26825. },
  26826. },
  26827. [
  26828. {
  26829. name: "Minimicro",
  26830. height: math.unit(0.057, "inches")
  26831. },
  26832. {
  26833. name: "Micro",
  26834. height: math.unit(7, "inches")
  26835. },
  26836. {
  26837. name: "Mini",
  26838. height: math.unit(3 + 7 / 12, "feet")
  26839. },
  26840. {
  26841. name: "Normal",
  26842. height: math.unit(5 + 7 / 12, "feet"),
  26843. default: true
  26844. },
  26845. {
  26846. name: "Macro",
  26847. height: math.unit(157 + 7 / 12, "feet")
  26848. },
  26849. {
  26850. name: "Megamacro",
  26851. height: math.unit(1557 + 7 / 12, "feet")
  26852. },
  26853. {
  26854. name: "Gigamacro",
  26855. height: math.unit(15557 + 7 / 12, "feet")
  26856. },
  26857. ]
  26858. ))
  26859. characterMakers.push(() => makeCharacter(
  26860. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  26861. {
  26862. front: {
  26863. height: math.unit(3 + 2 / 12, "inches"),
  26864. weight: math.unit(0.3, "ounces"),
  26865. name: "Front",
  26866. image: {
  26867. source: "./media/characters/hiphae/front.svg",
  26868. extra: 1931 / 1683,
  26869. bottom: 24 / 1955
  26870. }
  26871. },
  26872. },
  26873. [
  26874. {
  26875. name: "Normal",
  26876. height: math.unit(3 + 1 / 2, "inches"),
  26877. default: true
  26878. },
  26879. ]
  26880. ))
  26881. characterMakers.push(() => makeCharacter(
  26882. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  26883. {
  26884. front: {
  26885. height: math.unit(5 + 10 / 12, "feet"),
  26886. weight: math.unit(165, "lb"),
  26887. name: "Front",
  26888. image: {
  26889. source: "./media/characters/nicky/front.svg",
  26890. extra: 3144 / 2886,
  26891. bottom: 45.6 / 3192
  26892. }
  26893. },
  26894. back: {
  26895. height: math.unit(5 + 10 / 12, "feet"),
  26896. weight: math.unit(165, "lb"),
  26897. name: "Back",
  26898. image: {
  26899. source: "./media/characters/nicky/back.svg",
  26900. extra: 3055 / 2804,
  26901. bottom: 28.4 / 3087
  26902. }
  26903. },
  26904. frontclothed: {
  26905. height: math.unit(5 + 10 / 12, "feet"),
  26906. weight: math.unit(165, "lb"),
  26907. name: "Front-clothed",
  26908. image: {
  26909. source: "./media/characters/nicky/front-clothed.svg",
  26910. extra: 3184.9 / 2926.9,
  26911. bottom: 86.5 / 3239.9
  26912. }
  26913. },
  26914. foot: {
  26915. height: math.unit(1.16, "feet"),
  26916. name: "Foot",
  26917. image: {
  26918. source: "./media/characters/nicky/foot.svg"
  26919. }
  26920. },
  26921. feet: {
  26922. height: math.unit(1.34, "feet"),
  26923. name: "Feet",
  26924. image: {
  26925. source: "./media/characters/nicky/feet.svg"
  26926. }
  26927. },
  26928. maw: {
  26929. height: math.unit(0.9, "feet"),
  26930. name: "Maw",
  26931. image: {
  26932. source: "./media/characters/nicky/maw.svg"
  26933. }
  26934. },
  26935. },
  26936. [
  26937. {
  26938. name: "Normal",
  26939. height: math.unit(5 + 10 / 12, "feet"),
  26940. default: true
  26941. },
  26942. {
  26943. name: "Macro",
  26944. height: math.unit(60, "feet")
  26945. },
  26946. {
  26947. name: "Megamacro",
  26948. height: math.unit(1, "mile")
  26949. },
  26950. ]
  26951. ))
  26952. characterMakers.push(() => makeCharacter(
  26953. { name: "Blair", species: ["seal"], tags: ["taur"] },
  26954. {
  26955. side: {
  26956. height: math.unit(10, "feet"),
  26957. weight: math.unit(600, "lb"),
  26958. name: "Side",
  26959. image: {
  26960. source: "./media/characters/blair/side.svg",
  26961. bottom: 16.6 / 475,
  26962. extra: 458 / 431
  26963. }
  26964. },
  26965. },
  26966. [
  26967. {
  26968. name: "Micro",
  26969. height: math.unit(8, "inches")
  26970. },
  26971. {
  26972. name: "Normal",
  26973. height: math.unit(10, "feet"),
  26974. default: true
  26975. },
  26976. {
  26977. name: "Macro",
  26978. height: math.unit(180, "feet")
  26979. },
  26980. ]
  26981. ))
  26982. characterMakers.push(() => makeCharacter(
  26983. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  26984. {
  26985. front: {
  26986. height: math.unit(5 + 4 / 12, "feet"),
  26987. weight: math.unit(125, "lb"),
  26988. name: "Front",
  26989. image: {
  26990. source: "./media/characters/fisher/front.svg",
  26991. extra: 444 / 390,
  26992. bottom: 2 / 444.8
  26993. }
  26994. },
  26995. },
  26996. [
  26997. {
  26998. name: "Micro",
  26999. height: math.unit(4, "inches")
  27000. },
  27001. {
  27002. name: "Normal",
  27003. height: math.unit(5 + 4 / 12, "feet"),
  27004. default: true
  27005. },
  27006. {
  27007. name: "Macro",
  27008. height: math.unit(100, "feet")
  27009. },
  27010. ]
  27011. ))
  27012. characterMakers.push(() => makeCharacter(
  27013. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  27014. {
  27015. front: {
  27016. height: math.unit(6.71, "feet"),
  27017. weight: math.unit(200, "lb"),
  27018. preyCapacity: math.unit(1000000, "people"),
  27019. name: "Front",
  27020. image: {
  27021. source: "./media/characters/gliss/front.svg",
  27022. extra: 2347 / 2231,
  27023. bottom: 113 / 2462
  27024. }
  27025. },
  27026. hammerspaceSize: {
  27027. height: math.unit(6.71 * 717, "feet"),
  27028. weight: math.unit(200, "lb"),
  27029. preyCapacity: math.unit(1000000, "people"),
  27030. name: "Hammerspace Size",
  27031. image: {
  27032. source: "./media/characters/gliss/front.svg",
  27033. extra: 2347 / 2231,
  27034. bottom: 113 / 2462
  27035. }
  27036. },
  27037. },
  27038. [
  27039. {
  27040. name: "Normal",
  27041. height: math.unit(6.71, "feet"),
  27042. default: true
  27043. },
  27044. ]
  27045. ))
  27046. characterMakers.push(() => makeCharacter(
  27047. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  27048. {
  27049. side: {
  27050. height: math.unit(1.44, "m"),
  27051. weight: math.unit(80, "kg"),
  27052. name: "Side",
  27053. image: {
  27054. source: "./media/characters/dune-anderson/side.svg",
  27055. bottom: 49 / 1426
  27056. }
  27057. },
  27058. },
  27059. [
  27060. {
  27061. name: "Wolf-sized",
  27062. height: math.unit(1.44, "meters")
  27063. },
  27064. {
  27065. name: "Normal",
  27066. height: math.unit(5.05, "meters"),
  27067. default: true
  27068. },
  27069. {
  27070. name: "Big",
  27071. height: math.unit(14.4, "meters")
  27072. },
  27073. {
  27074. name: "Huge",
  27075. height: math.unit(144, "meters")
  27076. },
  27077. ]
  27078. ))
  27079. characterMakers.push(() => makeCharacter(
  27080. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  27081. {
  27082. front: {
  27083. height: math.unit(7, "feet"),
  27084. weight: math.unit(425, "lb"),
  27085. name: "Front",
  27086. image: {
  27087. source: "./media/characters/hind/front.svg",
  27088. extra: 2091 / 1860,
  27089. bottom: 129 / 2220
  27090. }
  27091. },
  27092. back: {
  27093. height: math.unit(7, "feet"),
  27094. weight: math.unit(425, "lb"),
  27095. name: "Back",
  27096. image: {
  27097. source: "./media/characters/hind/back.svg",
  27098. extra: 2091 / 1860,
  27099. bottom: 24.6 / 2309
  27100. }
  27101. },
  27102. tail: {
  27103. height: math.unit(2.8, "feet"),
  27104. name: "Tail",
  27105. image: {
  27106. source: "./media/characters/hind/tail.svg"
  27107. }
  27108. },
  27109. head: {
  27110. height: math.unit(2.55, "feet"),
  27111. name: "Head",
  27112. image: {
  27113. source: "./media/characters/hind/head.svg"
  27114. }
  27115. },
  27116. },
  27117. [
  27118. {
  27119. name: "XS",
  27120. height: math.unit(0.7, "feet")
  27121. },
  27122. {
  27123. name: "Normal",
  27124. height: math.unit(7, "feet"),
  27125. default: true
  27126. },
  27127. {
  27128. name: "XL",
  27129. height: math.unit(70, "feet")
  27130. },
  27131. ]
  27132. ))
  27133. characterMakers.push(() => makeCharacter(
  27134. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  27135. {
  27136. front: {
  27137. height: math.unit(2.1, "meters"),
  27138. weight: math.unit(150, "lb"),
  27139. name: "Front",
  27140. image: {
  27141. source: "./media/characters/tharquench-sizestealer/front.svg",
  27142. extra: 1605/1470,
  27143. bottom: 36/1641
  27144. }
  27145. },
  27146. frontAlt: {
  27147. height: math.unit(2.1, "meters"),
  27148. weight: math.unit(150, "lb"),
  27149. name: "Front (Alt)",
  27150. image: {
  27151. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  27152. extra: 2318 / 2063,
  27153. bottom: 93.4 / 2410
  27154. }
  27155. },
  27156. },
  27157. [
  27158. {
  27159. name: "Nano",
  27160. height: math.unit(1, "mm")
  27161. },
  27162. {
  27163. name: "Micro",
  27164. height: math.unit(1, "cm")
  27165. },
  27166. {
  27167. name: "Normal",
  27168. height: math.unit(2.1, "meters"),
  27169. default: true
  27170. },
  27171. ]
  27172. ))
  27173. characterMakers.push(() => makeCharacter(
  27174. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  27175. {
  27176. front: {
  27177. height: math.unit(7 + 5 / 12, "feet"),
  27178. weight: math.unit(357, "lb"),
  27179. name: "Front",
  27180. image: {
  27181. source: "./media/characters/solex-draconov/front.svg",
  27182. extra: 1993 / 1865,
  27183. bottom: 117 / 2111
  27184. }
  27185. },
  27186. },
  27187. [
  27188. {
  27189. name: "Natural Height",
  27190. height: math.unit(7 + 5 / 12, "feet"),
  27191. default: true
  27192. },
  27193. {
  27194. name: "Macro",
  27195. height: math.unit(350, "feet")
  27196. },
  27197. {
  27198. name: "Macro+",
  27199. height: math.unit(1000, "feet")
  27200. },
  27201. {
  27202. name: "Megamacro",
  27203. height: math.unit(20, "km")
  27204. },
  27205. {
  27206. name: "Megamacro+",
  27207. height: math.unit(1000, "km")
  27208. },
  27209. {
  27210. name: "Gigamacro",
  27211. height: math.unit(2.5, "Gm")
  27212. },
  27213. {
  27214. name: "Teramacro",
  27215. height: math.unit(15, "Tm")
  27216. },
  27217. {
  27218. name: "Galactic",
  27219. height: math.unit(30, "Zm")
  27220. },
  27221. {
  27222. name: "Universal",
  27223. height: math.unit(21000, "Ym")
  27224. },
  27225. {
  27226. name: "Omniversal",
  27227. height: math.unit(9.861e50, "Ym")
  27228. },
  27229. {
  27230. name: "Existential",
  27231. height: math.unit(1e300, "meters")
  27232. },
  27233. ]
  27234. ))
  27235. characterMakers.push(() => makeCharacter(
  27236. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  27237. {
  27238. side: {
  27239. height: math.unit(25, "feet"),
  27240. weight: math.unit(90000, "lb"),
  27241. name: "Side",
  27242. image: {
  27243. source: "./media/characters/mandarax/side.svg",
  27244. extra: 614 / 332,
  27245. bottom: 55 / 630
  27246. }
  27247. },
  27248. lounging: {
  27249. height: math.unit(15.4, "feet"),
  27250. weight: math.unit(90000, "lb"),
  27251. name: "Lounging",
  27252. image: {
  27253. source: "./media/characters/mandarax/lounging.svg",
  27254. extra: 817/609,
  27255. bottom: 685/1502
  27256. }
  27257. },
  27258. head: {
  27259. height: math.unit(11.4, "feet"),
  27260. name: "Head",
  27261. image: {
  27262. source: "./media/characters/mandarax/head.svg"
  27263. }
  27264. },
  27265. belly: {
  27266. height: math.unit(33, "feet"),
  27267. name: "Belly",
  27268. preyCapacity: math.unit(500, "people"),
  27269. image: {
  27270. source: "./media/characters/mandarax/belly.svg"
  27271. }
  27272. },
  27273. dick: {
  27274. height: math.unit(8.46, "feet"),
  27275. name: "Dick",
  27276. image: {
  27277. source: "./media/characters/mandarax/dick.svg"
  27278. }
  27279. },
  27280. top: {
  27281. height: math.unit(28, "meters"),
  27282. name: "Top",
  27283. image: {
  27284. source: "./media/characters/mandarax/top.svg"
  27285. }
  27286. },
  27287. },
  27288. [
  27289. {
  27290. name: "Normal",
  27291. height: math.unit(25, "feet"),
  27292. default: true
  27293. },
  27294. ]
  27295. ))
  27296. characterMakers.push(() => makeCharacter(
  27297. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  27298. {
  27299. front: {
  27300. height: math.unit(5, "feet"),
  27301. weight: math.unit(90, "lb"),
  27302. name: "Front",
  27303. image: {
  27304. source: "./media/characters/pixil/front.svg",
  27305. extra: 2000 / 1618,
  27306. bottom: 12.3 / 2011
  27307. }
  27308. },
  27309. },
  27310. [
  27311. {
  27312. name: "Normal",
  27313. height: math.unit(5, "feet"),
  27314. default: true
  27315. },
  27316. {
  27317. name: "Megamacro",
  27318. height: math.unit(10, "miles"),
  27319. },
  27320. ]
  27321. ))
  27322. characterMakers.push(() => makeCharacter(
  27323. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  27324. {
  27325. front: {
  27326. height: math.unit(7 + 2 / 12, "feet"),
  27327. weight: math.unit(200, "lb"),
  27328. name: "Front",
  27329. image: {
  27330. source: "./media/characters/angel/front.svg",
  27331. extra: 1830 / 1737,
  27332. bottom: 22.6 / 1854,
  27333. }
  27334. },
  27335. },
  27336. [
  27337. {
  27338. name: "Normal",
  27339. height: math.unit(7 + 2 / 12, "feet"),
  27340. default: true
  27341. },
  27342. {
  27343. name: "Macro",
  27344. height: math.unit(1000, "feet")
  27345. },
  27346. {
  27347. name: "Megamacro",
  27348. height: math.unit(2, "miles")
  27349. },
  27350. {
  27351. name: "Gigamacro",
  27352. height: math.unit(20, "earths")
  27353. },
  27354. ]
  27355. ))
  27356. characterMakers.push(() => makeCharacter(
  27357. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  27358. {
  27359. front: {
  27360. height: math.unit(5, "feet"),
  27361. weight: math.unit(180, "lb"),
  27362. name: "Front",
  27363. image: {
  27364. source: "./media/characters/mekana/front.svg",
  27365. extra: 1671 / 1605,
  27366. bottom: 3.5 / 1691
  27367. }
  27368. },
  27369. side: {
  27370. height: math.unit(5, "feet"),
  27371. weight: math.unit(180, "lb"),
  27372. name: "Side",
  27373. image: {
  27374. source: "./media/characters/mekana/side.svg",
  27375. extra: 1671 / 1605,
  27376. bottom: 3.5 / 1691
  27377. }
  27378. },
  27379. back: {
  27380. height: math.unit(5, "feet"),
  27381. weight: math.unit(180, "lb"),
  27382. name: "Back",
  27383. image: {
  27384. source: "./media/characters/mekana/back.svg",
  27385. extra: 1671 / 1605,
  27386. bottom: 3.5 / 1691
  27387. }
  27388. },
  27389. },
  27390. [
  27391. {
  27392. name: "Normal",
  27393. height: math.unit(5, "feet"),
  27394. default: true
  27395. },
  27396. ]
  27397. ))
  27398. characterMakers.push(() => makeCharacter(
  27399. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  27400. {
  27401. front: {
  27402. height: math.unit(4 + 6 / 12, "feet"),
  27403. weight: math.unit(80, "lb"),
  27404. name: "Front",
  27405. image: {
  27406. source: "./media/characters/pixie/front.svg",
  27407. extra: 1924 / 1825,
  27408. bottom: 22.4 / 1946
  27409. }
  27410. },
  27411. },
  27412. [
  27413. {
  27414. name: "Normal",
  27415. height: math.unit(4 + 6 / 12, "feet"),
  27416. default: true
  27417. },
  27418. {
  27419. name: "Macro",
  27420. height: math.unit(40, "feet")
  27421. },
  27422. ]
  27423. ))
  27424. characterMakers.push(() => makeCharacter(
  27425. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  27426. {
  27427. front: {
  27428. height: math.unit(2.1, "meters"),
  27429. weight: math.unit(200, "lb"),
  27430. name: "Front",
  27431. image: {
  27432. source: "./media/characters/the-lascivious/front.svg",
  27433. extra: 1 / 0.893,
  27434. bottom: 3.5 / 573.7
  27435. }
  27436. },
  27437. },
  27438. [
  27439. {
  27440. name: "Human Scale",
  27441. height: math.unit(2.1, "meters")
  27442. },
  27443. {
  27444. name: "Wolxi Scale",
  27445. height: math.unit(46.2, "m"),
  27446. default: true
  27447. },
  27448. {
  27449. name: "Boinker of Buildings",
  27450. height: math.unit(10, "km")
  27451. },
  27452. {
  27453. name: "Shagger of Skyscrapers",
  27454. height: math.unit(40, "km")
  27455. },
  27456. {
  27457. name: "Banger of Boroughs",
  27458. height: math.unit(4000, "km")
  27459. },
  27460. {
  27461. name: "Screwer of States",
  27462. height: math.unit(100000, "km")
  27463. },
  27464. {
  27465. name: "Pounder of Planets",
  27466. height: math.unit(2000000, "km")
  27467. },
  27468. ]
  27469. ))
  27470. characterMakers.push(() => makeCharacter(
  27471. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  27472. {
  27473. front: {
  27474. height: math.unit(6, "feet"),
  27475. weight: math.unit(150, "lb"),
  27476. name: "Front",
  27477. image: {
  27478. source: "./media/characters/aj/front.svg",
  27479. extra: 2039 / 1562,
  27480. bottom: 40 / 2079
  27481. }
  27482. },
  27483. },
  27484. [
  27485. {
  27486. name: "Normal",
  27487. height: math.unit(11 + 6 / 12, "feet"),
  27488. default: true
  27489. },
  27490. {
  27491. name: "Megamacro",
  27492. height: math.unit(60, "megameters")
  27493. },
  27494. ]
  27495. ))
  27496. characterMakers.push(() => makeCharacter(
  27497. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  27498. {
  27499. side: {
  27500. height: math.unit(31 + 8 / 12, "feet"),
  27501. weight: math.unit(75000, "kg"),
  27502. name: "Side",
  27503. image: {
  27504. source: "./media/characters/koros/side.svg",
  27505. extra: 1442 / 1297,
  27506. bottom: 122.7 / 1562
  27507. }
  27508. },
  27509. dicksKingsCrown: {
  27510. height: math.unit(6, "feet"),
  27511. name: "Dicks (King's Crown)",
  27512. image: {
  27513. source: "./media/characters/koros/dicks-kings-crown.svg"
  27514. }
  27515. },
  27516. dicksTailSet: {
  27517. height: math.unit(3, "feet"),
  27518. name: "Dicks (Tail Set)",
  27519. image: {
  27520. source: "./media/characters/koros/dicks-tail-set.svg"
  27521. }
  27522. },
  27523. dickCumming: {
  27524. height: math.unit(7.98, "feet"),
  27525. name: "Dick (Cumming)",
  27526. image: {
  27527. source: "./media/characters/koros/dick-cumming.svg"
  27528. }
  27529. },
  27530. dicksBack: {
  27531. height: math.unit(5.9, "feet"),
  27532. name: "Dicks (Back)",
  27533. image: {
  27534. source: "./media/characters/koros/dicks-back.svg"
  27535. }
  27536. },
  27537. dicksFront: {
  27538. height: math.unit(3.72, "feet"),
  27539. name: "Dicks (Front)",
  27540. image: {
  27541. source: "./media/characters/koros/dicks-front.svg"
  27542. }
  27543. },
  27544. dicksPeeking: {
  27545. height: math.unit(3.0, "feet"),
  27546. name: "Dicks (Peeking)",
  27547. image: {
  27548. source: "./media/characters/koros/dicks-peeking.svg"
  27549. }
  27550. },
  27551. eye: {
  27552. height: math.unit(1.7, "feet"),
  27553. name: "Eye",
  27554. image: {
  27555. source: "./media/characters/koros/eye.svg"
  27556. }
  27557. },
  27558. headFront: {
  27559. height: math.unit(11.69, "feet"),
  27560. name: "Head (Front)",
  27561. image: {
  27562. source: "./media/characters/koros/head-front.svg"
  27563. }
  27564. },
  27565. headSide: {
  27566. height: math.unit(14, "feet"),
  27567. name: "Head (Side)",
  27568. image: {
  27569. source: "./media/characters/koros/head-side.svg"
  27570. }
  27571. },
  27572. leg: {
  27573. height: math.unit(17, "feet"),
  27574. name: "Leg",
  27575. image: {
  27576. source: "./media/characters/koros/leg.svg"
  27577. }
  27578. },
  27579. mawSide: {
  27580. height: math.unit(12.8, "feet"),
  27581. name: "Maw (Side)",
  27582. image: {
  27583. source: "./media/characters/koros/maw-side.svg"
  27584. }
  27585. },
  27586. mawSpitting: {
  27587. height: math.unit(17, "feet"),
  27588. name: "Maw (Spitting)",
  27589. image: {
  27590. source: "./media/characters/koros/maw-spitting.svg"
  27591. }
  27592. },
  27593. slit: {
  27594. height: math.unit(2.8, "feet"),
  27595. name: "Slit",
  27596. image: {
  27597. source: "./media/characters/koros/slit.svg"
  27598. }
  27599. },
  27600. stomach: {
  27601. height: math.unit(6.8, "feet"),
  27602. preyCapacity: math.unit(20, "people"),
  27603. name: "Stomach",
  27604. image: {
  27605. source: "./media/characters/koros/stomach.svg"
  27606. }
  27607. },
  27608. wingspanBottom: {
  27609. height: math.unit(114, "feet"),
  27610. name: "Wingspan (Bottom)",
  27611. image: {
  27612. source: "./media/characters/koros/wingspan-bottom.svg"
  27613. }
  27614. },
  27615. wingspanTop: {
  27616. height: math.unit(104, "feet"),
  27617. name: "Wingspan (Top)",
  27618. image: {
  27619. source: "./media/characters/koros/wingspan-top.svg"
  27620. }
  27621. },
  27622. },
  27623. [
  27624. {
  27625. name: "Normal",
  27626. height: math.unit(31 + 8 / 12, "feet"),
  27627. default: true
  27628. },
  27629. ]
  27630. ))
  27631. characterMakers.push(() => makeCharacter(
  27632. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  27633. {
  27634. front: {
  27635. height: math.unit(18 + 5 / 12, "feet"),
  27636. weight: math.unit(3750, "kg"),
  27637. name: "Front",
  27638. image: {
  27639. source: "./media/characters/vexx/front.svg",
  27640. extra: 426 / 396,
  27641. bottom: 31.5 / 458
  27642. }
  27643. },
  27644. maw: {
  27645. height: math.unit(6, "feet"),
  27646. name: "Maw",
  27647. image: {
  27648. source: "./media/characters/vexx/maw.svg"
  27649. }
  27650. },
  27651. },
  27652. [
  27653. {
  27654. name: "Normal",
  27655. height: math.unit(18 + 5 / 12, "feet"),
  27656. default: true
  27657. },
  27658. ]
  27659. ))
  27660. characterMakers.push(() => makeCharacter(
  27661. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  27662. {
  27663. front: {
  27664. height: math.unit(17 + 6 / 12, "feet"),
  27665. weight: math.unit(150, "lb"),
  27666. name: "Front",
  27667. image: {
  27668. source: "./media/characters/baadra/front.svg",
  27669. extra: 1694/1553,
  27670. bottom: 179/1873
  27671. }
  27672. },
  27673. frontAlt: {
  27674. height: math.unit(17 + 6 / 12, "feet"),
  27675. weight: math.unit(150, "lb"),
  27676. name: "Front (Alt)",
  27677. image: {
  27678. source: "./media/characters/baadra/front-alt.svg",
  27679. extra: 3137 / 2890,
  27680. bottom: 168.4 / 3305
  27681. }
  27682. },
  27683. back: {
  27684. height: math.unit(17 + 6 / 12, "feet"),
  27685. weight: math.unit(150, "lb"),
  27686. name: "Back",
  27687. image: {
  27688. source: "./media/characters/baadra/back.svg",
  27689. extra: 3142 / 2890,
  27690. bottom: 220 / 3371
  27691. }
  27692. },
  27693. head: {
  27694. height: math.unit(5.45, "feet"),
  27695. name: "Head",
  27696. image: {
  27697. source: "./media/characters/baadra/head.svg"
  27698. }
  27699. },
  27700. headAngry: {
  27701. height: math.unit(4.95, "feet"),
  27702. name: "Head (Angry)",
  27703. image: {
  27704. source: "./media/characters/baadra/head-angry.svg"
  27705. }
  27706. },
  27707. headOpen: {
  27708. height: math.unit(6, "feet"),
  27709. name: "Head (Open)",
  27710. image: {
  27711. source: "./media/characters/baadra/head-open.svg"
  27712. }
  27713. },
  27714. },
  27715. [
  27716. {
  27717. name: "Normal",
  27718. height: math.unit(17 + 6 / 12, "feet"),
  27719. default: true
  27720. },
  27721. ]
  27722. ))
  27723. characterMakers.push(() => makeCharacter(
  27724. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  27725. {
  27726. front: {
  27727. height: math.unit(7 + 3 / 12, "feet"),
  27728. weight: math.unit(180, "lb"),
  27729. name: "Front",
  27730. image: {
  27731. source: "./media/characters/juri/front.svg",
  27732. extra: 1401 / 1237,
  27733. bottom: 18.5 / 1418
  27734. }
  27735. },
  27736. side: {
  27737. height: math.unit(7 + 3 / 12, "feet"),
  27738. weight: math.unit(180, "lb"),
  27739. name: "Side",
  27740. image: {
  27741. source: "./media/characters/juri/side.svg",
  27742. extra: 1424 / 1242,
  27743. bottom: 18.5 / 1447
  27744. }
  27745. },
  27746. sitting: {
  27747. height: math.unit(6, "feet"),
  27748. weight: math.unit(180, "lb"),
  27749. name: "Sitting",
  27750. image: {
  27751. source: "./media/characters/juri/sitting.svg",
  27752. extra: 1270 / 1143,
  27753. bottom: 100 / 1343
  27754. }
  27755. },
  27756. back: {
  27757. height: math.unit(7 + 3 / 12, "feet"),
  27758. weight: math.unit(180, "lb"),
  27759. name: "Back",
  27760. image: {
  27761. source: "./media/characters/juri/back.svg",
  27762. extra: 1377 / 1240,
  27763. bottom: 23.7 / 1405
  27764. }
  27765. },
  27766. maw: {
  27767. height: math.unit(2.8, "feet"),
  27768. name: "Maw",
  27769. image: {
  27770. source: "./media/characters/juri/maw.svg"
  27771. }
  27772. },
  27773. stomach: {
  27774. height: math.unit(0.89, "feet"),
  27775. preyCapacity: math.unit(4, "liters"),
  27776. name: "Stomach",
  27777. image: {
  27778. source: "./media/characters/juri/stomach.svg"
  27779. }
  27780. },
  27781. },
  27782. [
  27783. {
  27784. name: "Normal",
  27785. height: math.unit(7 + 3 / 12, "feet"),
  27786. default: true
  27787. },
  27788. ]
  27789. ))
  27790. characterMakers.push(() => makeCharacter(
  27791. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  27792. {
  27793. fox: {
  27794. height: math.unit(5 + 6 / 12, "feet"),
  27795. weight: math.unit(140, "lb"),
  27796. name: "Fox",
  27797. image: {
  27798. source: "./media/characters/maxene-sita/fox.svg",
  27799. extra: 146 / 138,
  27800. bottom: 2.1 / 148.19
  27801. }
  27802. },
  27803. foxLaying: {
  27804. height: math.unit(1.70, "feet"),
  27805. weight: math.unit(140, "lb"),
  27806. name: "Fox (Laying)",
  27807. image: {
  27808. source: "./media/characters/maxene-sita/fox-laying.svg",
  27809. extra: 910 / 572,
  27810. bottom: 71 / 981
  27811. }
  27812. },
  27813. kitsune: {
  27814. height: math.unit(10, "feet"),
  27815. weight: math.unit(800, "lb"),
  27816. name: "Kitsune",
  27817. image: {
  27818. source: "./media/characters/maxene-sita/kitsune.svg",
  27819. extra: 185 / 176,
  27820. bottom: 4.7 / 189.9
  27821. }
  27822. },
  27823. hellhound: {
  27824. height: math.unit(10, "feet"),
  27825. weight: math.unit(700, "lb"),
  27826. name: "Hellhound",
  27827. image: {
  27828. source: "./media/characters/maxene-sita/hellhound.svg",
  27829. extra: 1600 / 1545,
  27830. bottom: 81 / 1681
  27831. }
  27832. },
  27833. },
  27834. [
  27835. {
  27836. name: "Normal",
  27837. height: math.unit(5 + 6 / 12, "feet"),
  27838. default: true
  27839. },
  27840. ]
  27841. ))
  27842. characterMakers.push(() => makeCharacter(
  27843. { name: "Maia", species: ["mew"], tags: ["feral"] },
  27844. {
  27845. front: {
  27846. height: math.unit(3 + 4 / 12, "feet"),
  27847. weight: math.unit(70, "lb"),
  27848. name: "Front",
  27849. image: {
  27850. source: "./media/characters/maia/front.svg",
  27851. extra: 227 / 219.5,
  27852. bottom: 40 / 267
  27853. }
  27854. },
  27855. back: {
  27856. height: math.unit(3 + 4 / 12, "feet"),
  27857. weight: math.unit(70, "lb"),
  27858. name: "Back",
  27859. image: {
  27860. source: "./media/characters/maia/back.svg",
  27861. extra: 237 / 225
  27862. }
  27863. },
  27864. },
  27865. [
  27866. {
  27867. name: "Normal",
  27868. height: math.unit(3 + 4 / 12, "feet"),
  27869. default: true
  27870. },
  27871. ]
  27872. ))
  27873. characterMakers.push(() => makeCharacter(
  27874. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  27875. {
  27876. front: {
  27877. height: math.unit(5 + 10 / 12, "feet"),
  27878. weight: math.unit(197, "lb"),
  27879. name: "Front",
  27880. image: {
  27881. source: "./media/characters/jabaro/front.svg",
  27882. extra: 225 / 216,
  27883. bottom: 5.06 / 230
  27884. }
  27885. },
  27886. back: {
  27887. height: math.unit(5 + 10 / 12, "feet"),
  27888. weight: math.unit(197, "lb"),
  27889. name: "Back",
  27890. image: {
  27891. source: "./media/characters/jabaro/back.svg",
  27892. extra: 225 / 219,
  27893. bottom: 1.9 / 227
  27894. }
  27895. },
  27896. },
  27897. [
  27898. {
  27899. name: "Normal",
  27900. height: math.unit(5 + 10 / 12, "feet"),
  27901. default: true
  27902. },
  27903. ]
  27904. ))
  27905. characterMakers.push(() => makeCharacter(
  27906. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  27907. {
  27908. front: {
  27909. height: math.unit(5 + 8 / 12, "feet"),
  27910. weight: math.unit(139, "lb"),
  27911. name: "Front",
  27912. image: {
  27913. source: "./media/characters/risa/front.svg",
  27914. extra: 270 / 260,
  27915. bottom: 11.2 / 282
  27916. }
  27917. },
  27918. back: {
  27919. height: math.unit(5 + 8 / 12, "feet"),
  27920. weight: math.unit(139, "lb"),
  27921. name: "Back",
  27922. image: {
  27923. source: "./media/characters/risa/back.svg",
  27924. extra: 264 / 255,
  27925. bottom: 4 / 268
  27926. }
  27927. },
  27928. },
  27929. [
  27930. {
  27931. name: "Normal",
  27932. height: math.unit(5 + 8 / 12, "feet"),
  27933. default: true
  27934. },
  27935. ]
  27936. ))
  27937. characterMakers.push(() => makeCharacter(
  27938. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  27939. {
  27940. front: {
  27941. height: math.unit(2 + 11 / 12, "feet"),
  27942. weight: math.unit(30, "lb"),
  27943. name: "Front",
  27944. image: {
  27945. source: "./media/characters/weatley/front.svg",
  27946. bottom: 10.7 / 414,
  27947. extra: 403.5 / 362
  27948. }
  27949. },
  27950. back: {
  27951. height: math.unit(2 + 11 / 12, "feet"),
  27952. weight: math.unit(30, "lb"),
  27953. name: "Back",
  27954. image: {
  27955. source: "./media/characters/weatley/back.svg",
  27956. bottom: 10.7 / 414,
  27957. extra: 403.5 / 362
  27958. }
  27959. },
  27960. },
  27961. [
  27962. {
  27963. name: "Normal",
  27964. height: math.unit(2 + 11 / 12, "feet"),
  27965. default: true
  27966. },
  27967. ]
  27968. ))
  27969. characterMakers.push(() => makeCharacter(
  27970. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  27971. {
  27972. front: {
  27973. height: math.unit(5 + 2 / 12, "feet"),
  27974. weight: math.unit(50, "kg"),
  27975. name: "Front",
  27976. image: {
  27977. source: "./media/characters/mercury-crescent/front.svg",
  27978. extra: 1088 / 1033,
  27979. bottom: 18.9 / 1109
  27980. }
  27981. },
  27982. },
  27983. [
  27984. {
  27985. name: "Normal",
  27986. height: math.unit(5 + 2 / 12, "feet"),
  27987. default: true
  27988. },
  27989. ]
  27990. ))
  27991. characterMakers.push(() => makeCharacter(
  27992. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  27993. {
  27994. front: {
  27995. height: math.unit(2, "feet"),
  27996. weight: math.unit(15, "kg"),
  27997. name: "Front",
  27998. image: {
  27999. source: "./media/characters/diamond-jones/front.svg",
  28000. extra: 727/723,
  28001. bottom: 46/773
  28002. }
  28003. },
  28004. },
  28005. [
  28006. {
  28007. name: "Normal",
  28008. height: math.unit(2, "feet"),
  28009. default: true
  28010. },
  28011. ]
  28012. ))
  28013. characterMakers.push(() => makeCharacter(
  28014. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  28015. {
  28016. front: {
  28017. height: math.unit(3, "feet"),
  28018. weight: math.unit(30, "kg"),
  28019. name: "Front",
  28020. image: {
  28021. source: "./media/characters/sweet-bit/front.svg",
  28022. extra: 675 / 567,
  28023. bottom: 27.7 / 703
  28024. }
  28025. },
  28026. },
  28027. [
  28028. {
  28029. name: "Normal",
  28030. height: math.unit(3, "feet"),
  28031. default: true
  28032. },
  28033. ]
  28034. ))
  28035. characterMakers.push(() => makeCharacter(
  28036. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  28037. {
  28038. side: {
  28039. height: math.unit(9.178, "feet"),
  28040. weight: math.unit(500, "lb"),
  28041. name: "Side",
  28042. image: {
  28043. source: "./media/characters/umbrazen/side.svg",
  28044. extra: 1730 / 1473,
  28045. bottom: 34.6 / 1765
  28046. }
  28047. },
  28048. },
  28049. [
  28050. {
  28051. name: "Normal",
  28052. height: math.unit(9.178, "feet"),
  28053. default: true
  28054. },
  28055. ]
  28056. ))
  28057. characterMakers.push(() => makeCharacter(
  28058. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  28059. {
  28060. front: {
  28061. height: math.unit(10, "feet"),
  28062. weight: math.unit(750, "lb"),
  28063. name: "Front",
  28064. image: {
  28065. source: "./media/characters/arlist/front.svg",
  28066. extra: 961 / 778,
  28067. bottom: 6.2 / 986
  28068. }
  28069. },
  28070. },
  28071. [
  28072. {
  28073. name: "Normal",
  28074. height: math.unit(10, "feet"),
  28075. default: true
  28076. },
  28077. ]
  28078. ))
  28079. characterMakers.push(() => makeCharacter(
  28080. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  28081. {
  28082. front: {
  28083. height: math.unit(5 + 1 / 12, "feet"),
  28084. weight: math.unit(110, "lb"),
  28085. name: "Front",
  28086. image: {
  28087. source: "./media/characters/aradel/front.svg",
  28088. extra: 324 / 303,
  28089. bottom: 3.6 / 329.4
  28090. }
  28091. },
  28092. },
  28093. [
  28094. {
  28095. name: "Normal",
  28096. height: math.unit(5 + 1 / 12, "feet"),
  28097. default: true
  28098. },
  28099. ]
  28100. ))
  28101. characterMakers.push(() => makeCharacter(
  28102. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  28103. {
  28104. dressed: {
  28105. height: math.unit(3 + 8 / 12, "feet"),
  28106. weight: math.unit(50, "lb"),
  28107. name: "Dressed",
  28108. image: {
  28109. source: "./media/characters/serryn/dressed.svg",
  28110. extra: 1792 / 1656,
  28111. bottom: 43.5 / 1840
  28112. }
  28113. },
  28114. nude: {
  28115. height: math.unit(3 + 8 / 12, "feet"),
  28116. weight: math.unit(50, "lb"),
  28117. name: "Nude",
  28118. image: {
  28119. source: "./media/characters/serryn/nude.svg",
  28120. extra: 1792 / 1656,
  28121. bottom: 43.5 / 1840
  28122. }
  28123. },
  28124. },
  28125. [
  28126. {
  28127. name: "Normal",
  28128. height: math.unit(3 + 8 / 12, "feet"),
  28129. default: true
  28130. },
  28131. ]
  28132. ))
  28133. characterMakers.push(() => makeCharacter(
  28134. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  28135. {
  28136. front: {
  28137. height: math.unit(7 + 10 / 12, "feet"),
  28138. weight: math.unit(255, "lb"),
  28139. name: "Front",
  28140. image: {
  28141. source: "./media/characters/xavier-thyme/front.svg",
  28142. extra: 3733 / 3642,
  28143. bottom: 131 / 3869
  28144. }
  28145. },
  28146. frontRaven: {
  28147. height: math.unit(7 + 10 / 12, "feet"),
  28148. weight: math.unit(255, "lb"),
  28149. name: "Front (Raven)",
  28150. image: {
  28151. source: "./media/characters/xavier-thyme/front-raven.svg",
  28152. extra: 4385 / 3642,
  28153. bottom: 131 / 4517
  28154. }
  28155. },
  28156. },
  28157. [
  28158. {
  28159. name: "Normal",
  28160. height: math.unit(7 + 10 / 12, "feet"),
  28161. default: true
  28162. },
  28163. ]
  28164. ))
  28165. characterMakers.push(() => makeCharacter(
  28166. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  28167. {
  28168. front: {
  28169. height: math.unit(1.6, "m"),
  28170. weight: math.unit(50, "kg"),
  28171. name: "Front",
  28172. image: {
  28173. source: "./media/characters/kiki/front.svg",
  28174. extra: 4682 / 3610,
  28175. bottom: 115 / 4777
  28176. }
  28177. },
  28178. },
  28179. [
  28180. {
  28181. name: "Normal",
  28182. height: math.unit(1.6, "meters"),
  28183. default: true
  28184. },
  28185. ]
  28186. ))
  28187. characterMakers.push(() => makeCharacter(
  28188. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  28189. {
  28190. front: {
  28191. height: math.unit(50, "m"),
  28192. weight: math.unit(500, "tonnes"),
  28193. name: "Front",
  28194. image: {
  28195. source: "./media/characters/ryoko/front.svg",
  28196. extra: 4632 / 3926,
  28197. bottom: 193 / 4823
  28198. }
  28199. },
  28200. },
  28201. [
  28202. {
  28203. name: "Normal",
  28204. height: math.unit(50, "meters"),
  28205. default: true
  28206. },
  28207. ]
  28208. ))
  28209. characterMakers.push(() => makeCharacter(
  28210. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  28211. {
  28212. front: {
  28213. height: math.unit(30, "m"),
  28214. weight: math.unit(22, "tonnes"),
  28215. name: "Front",
  28216. image: {
  28217. source: "./media/characters/elio/front.svg",
  28218. extra: 4582 / 3720,
  28219. bottom: 236 / 4828
  28220. }
  28221. },
  28222. },
  28223. [
  28224. {
  28225. name: "Normal",
  28226. height: math.unit(30, "meters"),
  28227. default: true
  28228. },
  28229. ]
  28230. ))
  28231. characterMakers.push(() => makeCharacter(
  28232. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  28233. {
  28234. front: {
  28235. height: math.unit(6 + 3 / 12, "feet"),
  28236. weight: math.unit(120, "lb"),
  28237. name: "Front",
  28238. image: {
  28239. source: "./media/characters/azura/front.svg",
  28240. extra: 1149 / 1135,
  28241. bottom: 45 / 1194
  28242. }
  28243. },
  28244. frontClothed: {
  28245. height: math.unit(6 + 3 / 12, "feet"),
  28246. weight: math.unit(120, "lb"),
  28247. name: "Front (Clothed)",
  28248. image: {
  28249. source: "./media/characters/azura/front-clothed.svg",
  28250. extra: 1149 / 1135,
  28251. bottom: 45 / 1194
  28252. }
  28253. },
  28254. },
  28255. [
  28256. {
  28257. name: "Normal",
  28258. height: math.unit(6 + 3 / 12, "feet"),
  28259. default: true
  28260. },
  28261. {
  28262. name: "Macro",
  28263. height: math.unit(20 + 6 / 12, "feet")
  28264. },
  28265. {
  28266. name: "Megamacro",
  28267. height: math.unit(12, "miles")
  28268. },
  28269. {
  28270. name: "Gigamacro",
  28271. height: math.unit(10000, "miles")
  28272. },
  28273. {
  28274. name: "Teramacro",
  28275. height: math.unit(900000, "miles")
  28276. },
  28277. ]
  28278. ))
  28279. characterMakers.push(() => makeCharacter(
  28280. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  28281. {
  28282. front: {
  28283. height: math.unit(12, "feet"),
  28284. weight: math.unit(1, "ton"),
  28285. capacity: math.unit(660000, "gallons"),
  28286. name: "Front",
  28287. image: {
  28288. source: "./media/characters/zeus/front.svg",
  28289. extra: 5005 / 4717,
  28290. bottom: 363 / 5388
  28291. }
  28292. },
  28293. },
  28294. [
  28295. {
  28296. name: "Normal",
  28297. height: math.unit(12, "feet")
  28298. },
  28299. {
  28300. name: "Preferred Size",
  28301. height: math.unit(0.5, "miles"),
  28302. default: true
  28303. },
  28304. {
  28305. name: "Giga Horse",
  28306. height: math.unit(300, "miles")
  28307. },
  28308. {
  28309. name: "Riding Planets",
  28310. height: math.unit(30, "megameters")
  28311. },
  28312. {
  28313. name: "Cosmic Giant",
  28314. height: math.unit(3, "zettameters")
  28315. },
  28316. {
  28317. name: "Breeding God",
  28318. height: math.unit(9.92e22, "yottameters")
  28319. },
  28320. ]
  28321. ))
  28322. characterMakers.push(() => makeCharacter(
  28323. { name: "Fang", species: ["monster"], tags: ["feral"] },
  28324. {
  28325. side: {
  28326. height: math.unit(9, "feet"),
  28327. weight: math.unit(1500, "kg"),
  28328. name: "Side",
  28329. image: {
  28330. source: "./media/characters/fang/side.svg",
  28331. extra: 924 / 866,
  28332. bottom: 47.5 / 972.3
  28333. }
  28334. },
  28335. },
  28336. [
  28337. {
  28338. name: "Normal",
  28339. height: math.unit(9, "feet"),
  28340. default: true
  28341. },
  28342. {
  28343. name: "Macro",
  28344. height: math.unit(75 + 6 / 12, "feet")
  28345. },
  28346. {
  28347. name: "Teramacro",
  28348. height: math.unit(50000, "miles")
  28349. },
  28350. ]
  28351. ))
  28352. characterMakers.push(() => makeCharacter(
  28353. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  28354. {
  28355. front: {
  28356. height: math.unit(10, "feet"),
  28357. weight: math.unit(2, "tons"),
  28358. name: "Front",
  28359. image: {
  28360. source: "./media/characters/rekhit/front.svg",
  28361. extra: 2796 / 2590,
  28362. bottom: 225 / 3022
  28363. }
  28364. },
  28365. },
  28366. [
  28367. {
  28368. name: "Normal",
  28369. height: math.unit(10, "feet"),
  28370. default: true
  28371. },
  28372. {
  28373. name: "Macro",
  28374. height: math.unit(500, "feet")
  28375. },
  28376. ]
  28377. ))
  28378. characterMakers.push(() => makeCharacter(
  28379. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  28380. {
  28381. front: {
  28382. height: math.unit(7 + 6.451 / 12, "feet"),
  28383. weight: math.unit(310, "lb"),
  28384. name: "Front",
  28385. image: {
  28386. source: "./media/characters/dahlia-verrick/front.svg",
  28387. extra: 1488 / 1365,
  28388. bottom: 6.2 / 1495
  28389. }
  28390. },
  28391. back: {
  28392. height: math.unit(7 + 6.451 / 12, "feet"),
  28393. weight: math.unit(310, "lb"),
  28394. name: "Back",
  28395. image: {
  28396. source: "./media/characters/dahlia-verrick/back.svg",
  28397. extra: 1472 / 1351,
  28398. bottom: 5.28 / 1477
  28399. }
  28400. },
  28401. frontBusiness: {
  28402. height: math.unit(7 + 6.451 / 12, "feet"),
  28403. weight: math.unit(200, "lb"),
  28404. name: "Front (Business)",
  28405. image: {
  28406. source: "./media/characters/dahlia-verrick/front-business.svg",
  28407. extra: 1478 / 1381,
  28408. bottom: 5.5 / 1484
  28409. }
  28410. },
  28411. frontCasual: {
  28412. height: math.unit(7 + 6.451 / 12, "feet"),
  28413. weight: math.unit(200, "lb"),
  28414. name: "Front (Casual)",
  28415. image: {
  28416. source: "./media/characters/dahlia-verrick/front-casual.svg",
  28417. extra: 1478 / 1381,
  28418. bottom: 5.5 / 1484
  28419. }
  28420. },
  28421. },
  28422. [
  28423. {
  28424. name: "Travel-Sized",
  28425. height: math.unit(7.45, "inches")
  28426. },
  28427. {
  28428. name: "Normal",
  28429. height: math.unit(7 + 6.451 / 12, "feet"),
  28430. default: true
  28431. },
  28432. {
  28433. name: "Hitting the Town",
  28434. height: math.unit(37 + 8 / 12, "feet")
  28435. },
  28436. {
  28437. name: "Stomp in the Suburbs",
  28438. height: math.unit(964 + 9.728 / 12, "feet")
  28439. },
  28440. {
  28441. name: "Sit on the City",
  28442. height: math.unit(61747 + 10.592 / 12, "feet")
  28443. },
  28444. {
  28445. name: "Glomp the Globe",
  28446. height: math.unit(252919327 + 4.832 / 12, "feet")
  28447. },
  28448. ]
  28449. ))
  28450. characterMakers.push(() => makeCharacter(
  28451. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  28452. {
  28453. front: {
  28454. height: math.unit(6 + 4 / 12, "feet"),
  28455. weight: math.unit(320, "lb"),
  28456. name: "Front",
  28457. image: {
  28458. source: "./media/characters/balina-mahigan/front.svg",
  28459. extra: 447 / 428,
  28460. bottom: 18 / 466
  28461. }
  28462. },
  28463. back: {
  28464. height: math.unit(6 + 4 / 12, "feet"),
  28465. weight: math.unit(320, "lb"),
  28466. name: "Back",
  28467. image: {
  28468. source: "./media/characters/balina-mahigan/back.svg",
  28469. extra: 445 / 428,
  28470. bottom: 4.07 / 448
  28471. }
  28472. },
  28473. arm: {
  28474. height: math.unit(1.88, "feet"),
  28475. name: "Arm",
  28476. image: {
  28477. source: "./media/characters/balina-mahigan/arm.svg"
  28478. }
  28479. },
  28480. backPort: {
  28481. height: math.unit(0.685, "feet"),
  28482. name: "Back Port",
  28483. image: {
  28484. source: "./media/characters/balina-mahigan/back-port.svg"
  28485. }
  28486. },
  28487. hoofpaw: {
  28488. height: math.unit(1.41, "feet"),
  28489. name: "Hoofpaw",
  28490. image: {
  28491. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  28492. }
  28493. },
  28494. leftHandBack: {
  28495. height: math.unit(0.938, "feet"),
  28496. name: "Left Hand (Back)",
  28497. image: {
  28498. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  28499. }
  28500. },
  28501. leftHandFront: {
  28502. height: math.unit(0.938, "feet"),
  28503. name: "Left Hand (Front)",
  28504. image: {
  28505. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  28506. }
  28507. },
  28508. rightHandBack: {
  28509. height: math.unit(0.95, "feet"),
  28510. name: "Right Hand (Back)",
  28511. image: {
  28512. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  28513. }
  28514. },
  28515. rightHandFront: {
  28516. height: math.unit(0.95, "feet"),
  28517. name: "Right Hand (Front)",
  28518. image: {
  28519. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  28520. }
  28521. },
  28522. },
  28523. [
  28524. {
  28525. name: "Normal",
  28526. height: math.unit(6 + 4 / 12, "feet"),
  28527. default: true
  28528. },
  28529. ]
  28530. ))
  28531. characterMakers.push(() => makeCharacter(
  28532. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  28533. {
  28534. front: {
  28535. height: math.unit(6, "feet"),
  28536. weight: math.unit(320, "lb"),
  28537. name: "Front",
  28538. image: {
  28539. source: "./media/characters/balina-mejeri/front.svg",
  28540. extra: 517 / 488,
  28541. bottom: 44.2 / 561
  28542. }
  28543. },
  28544. },
  28545. [
  28546. {
  28547. name: "Normal",
  28548. height: math.unit(6 + 4 / 12, "feet")
  28549. },
  28550. {
  28551. name: "Business",
  28552. height: math.unit(155, "feet"),
  28553. default: true
  28554. },
  28555. ]
  28556. ))
  28557. characterMakers.push(() => makeCharacter(
  28558. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  28559. {
  28560. kneeling: {
  28561. height: math.unit(6 + 4 / 12, "feet"),
  28562. weight: math.unit(300 * 20, "lb"),
  28563. name: "Kneeling",
  28564. image: {
  28565. source: "./media/characters/balbarian/kneeling.svg",
  28566. extra: 922 / 862,
  28567. bottom: 42.4 / 965
  28568. }
  28569. },
  28570. },
  28571. [
  28572. {
  28573. name: "Normal",
  28574. height: math.unit(6 + 4 / 12, "feet")
  28575. },
  28576. {
  28577. name: "Treasured",
  28578. height: math.unit(18 + 9 / 12, "feet"),
  28579. default: true
  28580. },
  28581. {
  28582. name: "Macro",
  28583. height: math.unit(900, "feet")
  28584. },
  28585. ]
  28586. ))
  28587. characterMakers.push(() => makeCharacter(
  28588. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  28589. {
  28590. front: {
  28591. height: math.unit(6 + 4 / 12, "feet"),
  28592. weight: math.unit(325, "lb"),
  28593. name: "Front",
  28594. image: {
  28595. source: "./media/characters/balina-amarini/front.svg",
  28596. extra: 415 / 403,
  28597. bottom: 19 / 433.4
  28598. }
  28599. },
  28600. back: {
  28601. height: math.unit(6 + 4 / 12, "feet"),
  28602. weight: math.unit(325, "lb"),
  28603. name: "Back",
  28604. image: {
  28605. source: "./media/characters/balina-amarini/back.svg",
  28606. extra: 415 / 403,
  28607. bottom: 13.5 / 432
  28608. }
  28609. },
  28610. overdrive: {
  28611. height: math.unit(6 + 4 / 12, "feet"),
  28612. weight: math.unit(400, "lb"),
  28613. name: "Overdrive",
  28614. image: {
  28615. source: "./media/characters/balina-amarini/overdrive.svg",
  28616. extra: 269 / 259,
  28617. bottom: 12 / 282
  28618. }
  28619. },
  28620. },
  28621. [
  28622. {
  28623. name: "Boom",
  28624. height: math.unit(9 + 10 / 12, "feet"),
  28625. default: true
  28626. },
  28627. {
  28628. name: "Macro",
  28629. height: math.unit(280, "feet")
  28630. },
  28631. ]
  28632. ))
  28633. characterMakers.push(() => makeCharacter(
  28634. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  28635. {
  28636. goddess: {
  28637. height: math.unit(600, "feet"),
  28638. weight: math.unit(2000000, "tons"),
  28639. name: "Goddess",
  28640. image: {
  28641. source: "./media/characters/lady-kubwa/goddess.svg",
  28642. extra: 1240.5 / 1223,
  28643. bottom: 22 / 1263
  28644. }
  28645. },
  28646. goddesser: {
  28647. height: math.unit(900, "feet"),
  28648. weight: math.unit(20000000, "lb"),
  28649. name: "Goddess-er",
  28650. image: {
  28651. source: "./media/characters/lady-kubwa/goddess-er.svg",
  28652. extra: 899 / 888,
  28653. bottom: 12.6 / 912
  28654. }
  28655. },
  28656. },
  28657. [
  28658. {
  28659. name: "Macro",
  28660. height: math.unit(600, "feet"),
  28661. default: true
  28662. },
  28663. {
  28664. name: "Megamacro",
  28665. height: math.unit(250, "miles")
  28666. },
  28667. ]
  28668. ))
  28669. characterMakers.push(() => makeCharacter(
  28670. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  28671. {
  28672. front: {
  28673. height: math.unit(7 + 7 / 12, "feet"),
  28674. weight: math.unit(250, "lb"),
  28675. name: "Front",
  28676. image: {
  28677. source: "./media/characters/tala-grovehorn/front.svg",
  28678. extra: 2636 / 2525,
  28679. bottom: 147 / 2781
  28680. }
  28681. },
  28682. back: {
  28683. height: math.unit(7 + 7 / 12, "feet"),
  28684. weight: math.unit(250, "lb"),
  28685. name: "Back",
  28686. image: {
  28687. source: "./media/characters/tala-grovehorn/back.svg",
  28688. extra: 2635 / 2539,
  28689. bottom: 100 / 2732.8
  28690. }
  28691. },
  28692. mouth: {
  28693. height: math.unit(1.15, "feet"),
  28694. name: "Mouth",
  28695. image: {
  28696. source: "./media/characters/tala-grovehorn/mouth.svg"
  28697. }
  28698. },
  28699. dick: {
  28700. height: math.unit(2.36, "feet"),
  28701. name: "Dick",
  28702. image: {
  28703. source: "./media/characters/tala-grovehorn/dick.svg"
  28704. }
  28705. },
  28706. slit: {
  28707. height: math.unit(0.61, "feet"),
  28708. name: "Slit",
  28709. image: {
  28710. source: "./media/characters/tala-grovehorn/slit.svg"
  28711. }
  28712. },
  28713. },
  28714. [
  28715. ]
  28716. ))
  28717. characterMakers.push(() => makeCharacter(
  28718. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  28719. {
  28720. front: {
  28721. height: math.unit(7 + 7 / 12, "feet"),
  28722. weight: math.unit(225, "lb"),
  28723. name: "Front",
  28724. image: {
  28725. source: "./media/characters/epona/front.svg",
  28726. extra: 2445 / 2290,
  28727. bottom: 251 / 2696
  28728. }
  28729. },
  28730. back: {
  28731. height: math.unit(7 + 7 / 12, "feet"),
  28732. weight: math.unit(225, "lb"),
  28733. name: "Back",
  28734. image: {
  28735. source: "./media/characters/epona/back.svg",
  28736. extra: 2546 / 2408,
  28737. bottom: 44 / 2589
  28738. }
  28739. },
  28740. genitals: {
  28741. height: math.unit(1.5, "feet"),
  28742. name: "Genitals",
  28743. image: {
  28744. source: "./media/characters/epona/genitals.svg"
  28745. }
  28746. },
  28747. },
  28748. [
  28749. {
  28750. name: "Normal",
  28751. height: math.unit(7 + 7 / 12, "feet"),
  28752. default: true
  28753. },
  28754. ]
  28755. ))
  28756. characterMakers.push(() => makeCharacter(
  28757. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  28758. {
  28759. front: {
  28760. height: math.unit(7, "feet"),
  28761. weight: math.unit(518, "lb"),
  28762. name: "Front",
  28763. image: {
  28764. source: "./media/characters/avia-bloodbourn/front.svg",
  28765. extra: 1466 / 1350,
  28766. bottom: 65 / 1527
  28767. }
  28768. },
  28769. },
  28770. [
  28771. ]
  28772. ))
  28773. characterMakers.push(() => makeCharacter(
  28774. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  28775. {
  28776. front: {
  28777. height: math.unit(9.35, "feet"),
  28778. weight: math.unit(600, "lb"),
  28779. name: "Front",
  28780. image: {
  28781. source: "./media/characters/amera/front.svg",
  28782. extra: 891 / 818,
  28783. bottom: 30 / 922.7
  28784. }
  28785. },
  28786. back: {
  28787. height: math.unit(9.35, "feet"),
  28788. weight: math.unit(600, "lb"),
  28789. name: "Back",
  28790. image: {
  28791. source: "./media/characters/amera/back.svg",
  28792. extra: 876 / 824,
  28793. bottom: 6.8 / 884
  28794. }
  28795. },
  28796. dick: {
  28797. height: math.unit(2.14, "feet"),
  28798. name: "Dick",
  28799. image: {
  28800. source: "./media/characters/amera/dick.svg"
  28801. }
  28802. },
  28803. },
  28804. [
  28805. {
  28806. name: "Normal",
  28807. height: math.unit(9.35, "feet"),
  28808. default: true
  28809. },
  28810. ]
  28811. ))
  28812. characterMakers.push(() => makeCharacter(
  28813. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  28814. {
  28815. kneeling: {
  28816. height: math.unit(3 + 4 / 12, "feet"),
  28817. weight: math.unit(90, "lb"),
  28818. name: "Kneeling",
  28819. image: {
  28820. source: "./media/characters/rosewen/kneeling.svg",
  28821. extra: 1835 / 1571,
  28822. bottom: 27.7 / 1862
  28823. }
  28824. },
  28825. },
  28826. [
  28827. {
  28828. name: "Normal",
  28829. height: math.unit(3 + 4 / 12, "feet"),
  28830. default: true
  28831. },
  28832. ]
  28833. ))
  28834. characterMakers.push(() => makeCharacter(
  28835. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  28836. {
  28837. front: {
  28838. height: math.unit(5 + 10 / 12, "feet"),
  28839. weight: math.unit(200, "lb"),
  28840. name: "Front",
  28841. image: {
  28842. source: "./media/characters/sabah/front.svg",
  28843. extra: 849 / 763,
  28844. bottom: 33.9 / 881
  28845. }
  28846. },
  28847. },
  28848. [
  28849. {
  28850. name: "Normal",
  28851. height: math.unit(5 + 10 / 12, "feet"),
  28852. default: true
  28853. },
  28854. ]
  28855. ))
  28856. characterMakers.push(() => makeCharacter(
  28857. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  28858. {
  28859. front: {
  28860. height: math.unit(3 + 5 / 12, "feet"),
  28861. weight: math.unit(40, "kg"),
  28862. name: "Front",
  28863. image: {
  28864. source: "./media/characters/purple-flame/front.svg",
  28865. extra: 1577 / 1412,
  28866. bottom: 97 / 1694
  28867. }
  28868. },
  28869. frontDressed: {
  28870. height: math.unit(3 + 5 / 12, "feet"),
  28871. weight: math.unit(40, "kg"),
  28872. name: "Front (Dressed)",
  28873. image: {
  28874. source: "./media/characters/purple-flame/front-dressed.svg",
  28875. extra: 1577 / 1412,
  28876. bottom: 97 / 1694
  28877. }
  28878. },
  28879. headphones: {
  28880. height: math.unit(0.85, "feet"),
  28881. name: "Headphones",
  28882. image: {
  28883. source: "./media/characters/purple-flame/headphones.svg"
  28884. }
  28885. },
  28886. },
  28887. [
  28888. {
  28889. name: "Really Small",
  28890. height: math.unit(5, "cm")
  28891. },
  28892. {
  28893. name: "Micro",
  28894. height: math.unit(1 + 5 / 12, "feet")
  28895. },
  28896. {
  28897. name: "Normal",
  28898. height: math.unit(3 + 5 / 12, "feet"),
  28899. default: true
  28900. },
  28901. {
  28902. name: "Minimacro",
  28903. height: math.unit(125, "feet")
  28904. },
  28905. {
  28906. name: "Macro",
  28907. height: math.unit(0.5, "miles")
  28908. },
  28909. {
  28910. name: "Megamacro",
  28911. height: math.unit(50, "miles")
  28912. },
  28913. {
  28914. name: "Gigantic",
  28915. height: math.unit(750, "miles")
  28916. },
  28917. {
  28918. name: "Planetary",
  28919. height: math.unit(15000, "miles")
  28920. },
  28921. ]
  28922. ))
  28923. characterMakers.push(() => makeCharacter(
  28924. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  28925. {
  28926. front: {
  28927. height: math.unit(14, "feet"),
  28928. weight: math.unit(959, "lb"),
  28929. name: "Front",
  28930. image: {
  28931. source: "./media/characters/arsenal/front.svg",
  28932. extra: 2357 / 2157,
  28933. bottom: 93 / 2458
  28934. }
  28935. },
  28936. },
  28937. [
  28938. {
  28939. name: "Normal",
  28940. height: math.unit(14, "feet"),
  28941. default: true
  28942. },
  28943. ]
  28944. ))
  28945. characterMakers.push(() => makeCharacter(
  28946. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  28947. {
  28948. front: {
  28949. height: math.unit(6, "feet"),
  28950. weight: math.unit(150, "lb"),
  28951. name: "Front",
  28952. image: {
  28953. source: "./media/characters/adira/front.svg",
  28954. extra: 1078 / 1029,
  28955. bottom: 87 / 1166
  28956. }
  28957. },
  28958. },
  28959. [
  28960. {
  28961. name: "Micro",
  28962. height: math.unit(4, "inches"),
  28963. default: true
  28964. },
  28965. {
  28966. name: "Macro",
  28967. height: math.unit(50, "feet")
  28968. },
  28969. ]
  28970. ))
  28971. characterMakers.push(() => makeCharacter(
  28972. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  28973. {
  28974. front: {
  28975. height: math.unit(16, "feet"),
  28976. weight: math.unit(1000, "lb"),
  28977. name: "Front",
  28978. image: {
  28979. source: "./media/characters/grim/front.svg",
  28980. extra: 622 / 614,
  28981. bottom: 18.1 / 642
  28982. }
  28983. },
  28984. back: {
  28985. height: math.unit(16, "feet"),
  28986. weight: math.unit(1000, "lb"),
  28987. name: "Back",
  28988. image: {
  28989. source: "./media/characters/grim/back.svg",
  28990. extra: 610.6 / 602,
  28991. bottom: 40.8 / 652
  28992. }
  28993. },
  28994. hunched: {
  28995. height: math.unit(9.75, "feet"),
  28996. weight: math.unit(1000, "lb"),
  28997. name: "Hunched",
  28998. image: {
  28999. source: "./media/characters/grim/hunched.svg",
  29000. extra: 304 / 297,
  29001. bottom: 35.4 / 394
  29002. }
  29003. },
  29004. },
  29005. [
  29006. {
  29007. name: "Normal",
  29008. height: math.unit(16, "feet"),
  29009. default: true
  29010. },
  29011. ]
  29012. ))
  29013. characterMakers.push(() => makeCharacter(
  29014. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  29015. {
  29016. front: {
  29017. height: math.unit(2.3, "meters"),
  29018. weight: math.unit(300, "lb"),
  29019. name: "Front",
  29020. image: {
  29021. source: "./media/characters/sinja/front-sfw.svg",
  29022. extra: 1393 / 1294,
  29023. bottom: 70 / 1463
  29024. }
  29025. },
  29026. frontNsfw: {
  29027. height: math.unit(2.3, "meters"),
  29028. weight: math.unit(300, "lb"),
  29029. name: "Front (NSFW)",
  29030. image: {
  29031. source: "./media/characters/sinja/front-nsfw.svg",
  29032. extra: 1393 / 1294,
  29033. bottom: 70 / 1463
  29034. }
  29035. },
  29036. back: {
  29037. height: math.unit(2.3, "meters"),
  29038. weight: math.unit(300, "lb"),
  29039. name: "Back",
  29040. image: {
  29041. source: "./media/characters/sinja/back.svg",
  29042. extra: 1393 / 1294,
  29043. bottom: 70 / 1463
  29044. }
  29045. },
  29046. head: {
  29047. height: math.unit(1.771, "feet"),
  29048. name: "Head",
  29049. image: {
  29050. source: "./media/characters/sinja/head.svg"
  29051. }
  29052. },
  29053. slit: {
  29054. height: math.unit(0.8, "feet"),
  29055. name: "Slit",
  29056. image: {
  29057. source: "./media/characters/sinja/slit.svg"
  29058. }
  29059. },
  29060. },
  29061. [
  29062. {
  29063. name: "Normal",
  29064. height: math.unit(2.3, "meters")
  29065. },
  29066. {
  29067. name: "Macro",
  29068. height: math.unit(91, "meters"),
  29069. default: true
  29070. },
  29071. {
  29072. name: "Megamacro",
  29073. height: math.unit(91440, "meters")
  29074. },
  29075. {
  29076. name: "Gigamacro",
  29077. height: math.unit(60960000, "meters")
  29078. },
  29079. {
  29080. name: "Teramacro",
  29081. height: math.unit(9144000000, "meters")
  29082. },
  29083. ]
  29084. ))
  29085. characterMakers.push(() => makeCharacter(
  29086. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  29087. {
  29088. front: {
  29089. height: math.unit(1.7, "meters"),
  29090. weight: math.unit(130, "lb"),
  29091. name: "Front",
  29092. image: {
  29093. source: "./media/characters/kyu/front.svg",
  29094. extra: 415 / 395,
  29095. bottom: 5 / 420
  29096. }
  29097. },
  29098. head: {
  29099. height: math.unit(1.75, "feet"),
  29100. name: "Head",
  29101. image: {
  29102. source: "./media/characters/kyu/head.svg"
  29103. }
  29104. },
  29105. foot: {
  29106. height: math.unit(0.81, "feet"),
  29107. name: "Foot",
  29108. image: {
  29109. source: "./media/characters/kyu/foot.svg"
  29110. }
  29111. },
  29112. },
  29113. [
  29114. {
  29115. name: "Normal",
  29116. height: math.unit(1.7, "meters")
  29117. },
  29118. {
  29119. name: "Macro",
  29120. height: math.unit(131, "feet"),
  29121. default: true
  29122. },
  29123. {
  29124. name: "Megamacro",
  29125. height: math.unit(91440, "meters")
  29126. },
  29127. {
  29128. name: "Gigamacro",
  29129. height: math.unit(60960000, "meters")
  29130. },
  29131. {
  29132. name: "Teramacro",
  29133. height: math.unit(9144000000, "meters")
  29134. },
  29135. ]
  29136. ))
  29137. characterMakers.push(() => makeCharacter(
  29138. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  29139. {
  29140. front: {
  29141. height: math.unit(7 + 1 / 12, "feet"),
  29142. weight: math.unit(250, "lb"),
  29143. name: "Front",
  29144. image: {
  29145. source: "./media/characters/joey/front.svg",
  29146. extra: 1791 / 1537,
  29147. bottom: 28 / 1816
  29148. }
  29149. },
  29150. },
  29151. [
  29152. {
  29153. name: "Micro",
  29154. height: math.unit(3, "inches")
  29155. },
  29156. {
  29157. name: "Normal",
  29158. height: math.unit(7 + 1 / 12, "feet"),
  29159. default: true
  29160. },
  29161. ]
  29162. ))
  29163. characterMakers.push(() => makeCharacter(
  29164. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  29165. {
  29166. front: {
  29167. height: math.unit(165, "cm"),
  29168. weight: math.unit(140, "lb"),
  29169. name: "Front",
  29170. image: {
  29171. source: "./media/characters/sam-evans/front.svg",
  29172. extra: 3417 / 3230,
  29173. bottom: 41.3 / 3417
  29174. }
  29175. },
  29176. frontSixTails: {
  29177. height: math.unit(165, "cm"),
  29178. weight: math.unit(140, "lb"),
  29179. name: "Front-six-tails",
  29180. image: {
  29181. source: "./media/characters/sam-evans/front-six-tails.svg",
  29182. extra: 3417 / 3230,
  29183. bottom: 41.3 / 3417
  29184. }
  29185. },
  29186. back: {
  29187. height: math.unit(165, "cm"),
  29188. weight: math.unit(140, "lb"),
  29189. name: "Back",
  29190. image: {
  29191. source: "./media/characters/sam-evans/back.svg",
  29192. extra: 3227 / 3032,
  29193. bottom: 6.8 / 3234
  29194. }
  29195. },
  29196. face: {
  29197. height: math.unit(0.68, "feet"),
  29198. name: "Face",
  29199. image: {
  29200. source: "./media/characters/sam-evans/face.svg"
  29201. }
  29202. },
  29203. },
  29204. [
  29205. {
  29206. name: "Normal",
  29207. height: math.unit(165, "cm"),
  29208. default: true
  29209. },
  29210. {
  29211. name: "Macro",
  29212. height: math.unit(100, "meters")
  29213. },
  29214. {
  29215. name: "Macro+",
  29216. height: math.unit(800, "meters")
  29217. },
  29218. {
  29219. name: "Macro++",
  29220. height: math.unit(3, "km")
  29221. },
  29222. {
  29223. name: "Macro+++",
  29224. height: math.unit(30, "km")
  29225. },
  29226. ]
  29227. ))
  29228. characterMakers.push(() => makeCharacter(
  29229. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  29230. {
  29231. front: {
  29232. height: math.unit(10, "feet"),
  29233. weight: math.unit(750, "lb"),
  29234. name: "Front",
  29235. image: {
  29236. source: "./media/characters/juliet-a/front.svg",
  29237. extra: 1766 / 1720,
  29238. bottom: 43 / 1809
  29239. }
  29240. },
  29241. back: {
  29242. height: math.unit(10, "feet"),
  29243. weight: math.unit(750, "lb"),
  29244. name: "Back",
  29245. image: {
  29246. source: "./media/characters/juliet-a/back.svg",
  29247. extra: 1781 / 1734,
  29248. bottom: 35 / 1810,
  29249. }
  29250. },
  29251. },
  29252. [
  29253. {
  29254. name: "Normal",
  29255. height: math.unit(10, "feet"),
  29256. default: true
  29257. },
  29258. {
  29259. name: "Dragon Form",
  29260. height: math.unit(250, "feet")
  29261. },
  29262. {
  29263. name: "Macro",
  29264. height: math.unit(1000, "feet")
  29265. },
  29266. {
  29267. name: "Megamacro",
  29268. height: math.unit(10000, "feet")
  29269. }
  29270. ]
  29271. ))
  29272. characterMakers.push(() => makeCharacter(
  29273. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  29274. {
  29275. regular: {
  29276. height: math.unit(7 + 3 / 12, "feet"),
  29277. weight: math.unit(260, "lb"),
  29278. name: "Regular",
  29279. image: {
  29280. source: "./media/characters/wild/regular.svg",
  29281. extra: 97.45 / 92,
  29282. bottom: 6.8 / 104.3
  29283. }
  29284. },
  29285. biggums: {
  29286. height: math.unit(8 + 6 / 12, "feet"),
  29287. weight: math.unit(425, "lb"),
  29288. name: "Biggums",
  29289. image: {
  29290. source: "./media/characters/wild/biggums.svg",
  29291. extra: 97.45 / 92,
  29292. bottom: 7.5 / 132.34
  29293. }
  29294. },
  29295. mawRegular: {
  29296. height: math.unit(1.24, "feet"),
  29297. name: "Maw (Regular)",
  29298. image: {
  29299. source: "./media/characters/wild/maw.svg"
  29300. }
  29301. },
  29302. mawBiggums: {
  29303. height: math.unit(1.47, "feet"),
  29304. name: "Maw (Biggums)",
  29305. image: {
  29306. source: "./media/characters/wild/maw.svg"
  29307. }
  29308. },
  29309. },
  29310. [
  29311. {
  29312. name: "Normal",
  29313. height: math.unit(7 + 3 / 12, "feet"),
  29314. default: true
  29315. },
  29316. ]
  29317. ))
  29318. characterMakers.push(() => makeCharacter(
  29319. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  29320. {
  29321. front: {
  29322. height: math.unit(2.5, "meters"),
  29323. weight: math.unit(200, "kg"),
  29324. name: "Front",
  29325. image: {
  29326. source: "./media/characters/vidar/front.svg",
  29327. extra: 2994 / 2795,
  29328. bottom: 56 / 3061
  29329. }
  29330. },
  29331. back: {
  29332. height: math.unit(2.5, "meters"),
  29333. weight: math.unit(200, "kg"),
  29334. name: "Back",
  29335. image: {
  29336. source: "./media/characters/vidar/back.svg",
  29337. extra: 3131 / 2928,
  29338. bottom: 13.5 / 3141.5
  29339. }
  29340. },
  29341. feral: {
  29342. height: math.unit(2.5, "meters"),
  29343. weight: math.unit(2000, "kg"),
  29344. name: "Feral",
  29345. image: {
  29346. source: "./media/characters/vidar/feral.svg",
  29347. extra: 2790 / 1765,
  29348. bottom: 6 / 2796
  29349. }
  29350. },
  29351. },
  29352. [
  29353. {
  29354. name: "Normal",
  29355. height: math.unit(2.5, "meters"),
  29356. default: true
  29357. },
  29358. {
  29359. name: "Macro",
  29360. height: math.unit(100, "meters")
  29361. },
  29362. ]
  29363. ))
  29364. characterMakers.push(() => makeCharacter(
  29365. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  29366. {
  29367. front: {
  29368. height: math.unit(5 + 9 / 12, "feet"),
  29369. weight: math.unit(120, "lb"),
  29370. name: "Front",
  29371. image: {
  29372. source: "./media/characters/ash/front.svg",
  29373. extra: 2189 / 1961,
  29374. bottom: 5.2 / 2194
  29375. }
  29376. },
  29377. },
  29378. [
  29379. {
  29380. name: "Normal",
  29381. height: math.unit(5 + 9 / 12, "feet"),
  29382. default: true
  29383. },
  29384. ]
  29385. ))
  29386. characterMakers.push(() => makeCharacter(
  29387. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  29388. {
  29389. front: {
  29390. height: math.unit(9, "feet"),
  29391. weight: math.unit(10000, "lb"),
  29392. name: "Front",
  29393. image: {
  29394. source: "./media/characters/gygabite/front.svg",
  29395. bottom: 31.7 / 537.8,
  29396. extra: 505 / 370
  29397. }
  29398. },
  29399. },
  29400. [
  29401. {
  29402. name: "Normal",
  29403. height: math.unit(9, "feet"),
  29404. default: true
  29405. },
  29406. ]
  29407. ))
  29408. characterMakers.push(() => makeCharacter(
  29409. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  29410. {
  29411. front: {
  29412. height: math.unit(12, "feet"),
  29413. weight: math.unit(4000, "lb"),
  29414. name: "Front",
  29415. image: {
  29416. source: "./media/characters/p0tat0/front.svg",
  29417. extra: 1065 / 921,
  29418. bottom: 55.7 / 1121.25
  29419. }
  29420. },
  29421. },
  29422. [
  29423. {
  29424. name: "Normal",
  29425. height: math.unit(12, "feet"),
  29426. default: true
  29427. },
  29428. ]
  29429. ))
  29430. characterMakers.push(() => makeCharacter(
  29431. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  29432. {
  29433. side: {
  29434. height: math.unit(6.5, "feet"),
  29435. weight: math.unit(800, "lb"),
  29436. name: "Side",
  29437. image: {
  29438. source: "./media/characters/dusk/side.svg",
  29439. extra: 615 / 373,
  29440. bottom: 53 / 664
  29441. }
  29442. },
  29443. sitting: {
  29444. height: math.unit(7, "feet"),
  29445. weight: math.unit(800, "lb"),
  29446. name: "Sitting",
  29447. image: {
  29448. source: "./media/characters/dusk/sitting.svg",
  29449. extra: 753 / 425,
  29450. bottom: 33 / 774
  29451. }
  29452. },
  29453. head: {
  29454. height: math.unit(6.1, "feet"),
  29455. name: "Head",
  29456. image: {
  29457. source: "./media/characters/dusk/head.svg"
  29458. }
  29459. },
  29460. },
  29461. [
  29462. {
  29463. name: "Normal",
  29464. height: math.unit(7, "feet"),
  29465. default: true
  29466. },
  29467. ]
  29468. ))
  29469. characterMakers.push(() => makeCharacter(
  29470. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  29471. {
  29472. front: {
  29473. height: math.unit(15, "feet"),
  29474. weight: math.unit(7000, "lb"),
  29475. name: "Front",
  29476. image: {
  29477. source: "./media/characters/jay-direwolf/front.svg",
  29478. extra: 1810 / 1732,
  29479. bottom: 66 / 1892
  29480. }
  29481. },
  29482. },
  29483. [
  29484. {
  29485. name: "Normal",
  29486. height: math.unit(15, "feet"),
  29487. default: true
  29488. },
  29489. ]
  29490. ))
  29491. characterMakers.push(() => makeCharacter(
  29492. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  29493. {
  29494. front: {
  29495. height: math.unit(4 + 9 / 12, "feet"),
  29496. weight: math.unit(130, "lb"),
  29497. name: "Front",
  29498. image: {
  29499. source: "./media/characters/anchovie/front.svg",
  29500. extra: 382 / 350,
  29501. bottom: 25 / 409
  29502. }
  29503. },
  29504. back: {
  29505. height: math.unit(4 + 9 / 12, "feet"),
  29506. weight: math.unit(130, "lb"),
  29507. name: "Back",
  29508. image: {
  29509. source: "./media/characters/anchovie/back.svg",
  29510. extra: 385 / 352,
  29511. bottom: 16.6 / 402
  29512. }
  29513. },
  29514. frontDressed: {
  29515. height: math.unit(4 + 9 / 12, "feet"),
  29516. weight: math.unit(130, "lb"),
  29517. name: "Front (Dressed)",
  29518. image: {
  29519. source: "./media/characters/anchovie/front-dressed.svg",
  29520. extra: 382 / 350,
  29521. bottom: 25 / 409
  29522. }
  29523. },
  29524. backDressed: {
  29525. height: math.unit(4 + 9 / 12, "feet"),
  29526. weight: math.unit(130, "lb"),
  29527. name: "Back (Dressed)",
  29528. image: {
  29529. source: "./media/characters/anchovie/back-dressed.svg",
  29530. extra: 385 / 352,
  29531. bottom: 16.6 / 402
  29532. }
  29533. },
  29534. },
  29535. [
  29536. {
  29537. name: "Micro",
  29538. height: math.unit(6.4, "inches")
  29539. },
  29540. {
  29541. name: "Normal",
  29542. height: math.unit(4 + 9 / 12, "feet"),
  29543. default: true
  29544. },
  29545. ]
  29546. ))
  29547. characterMakers.push(() => makeCharacter(
  29548. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  29549. {
  29550. front: {
  29551. height: math.unit(2, "meters"),
  29552. weight: math.unit(180, "lb"),
  29553. name: "Front",
  29554. image: {
  29555. source: "./media/characters/acidrenamon/front.svg",
  29556. extra: 987 / 890,
  29557. bottom: 22.8 / 1009
  29558. }
  29559. },
  29560. back: {
  29561. height: math.unit(2, "meters"),
  29562. weight: math.unit(180, "lb"),
  29563. name: "Back",
  29564. image: {
  29565. source: "./media/characters/acidrenamon/back.svg",
  29566. extra: 983 / 891,
  29567. bottom: 8.4 / 992
  29568. }
  29569. },
  29570. head: {
  29571. height: math.unit(1.92, "feet"),
  29572. name: "Head",
  29573. image: {
  29574. source: "./media/characters/acidrenamon/head.svg"
  29575. }
  29576. },
  29577. rump: {
  29578. height: math.unit(1.72, "feet"),
  29579. name: "Rump",
  29580. image: {
  29581. source: "./media/characters/acidrenamon/rump.svg"
  29582. }
  29583. },
  29584. tail: {
  29585. height: math.unit(4.2, "feet"),
  29586. name: "Tail",
  29587. image: {
  29588. source: "./media/characters/acidrenamon/tail.svg"
  29589. }
  29590. },
  29591. },
  29592. [
  29593. {
  29594. name: "Normal",
  29595. height: math.unit(2, "meters"),
  29596. default: true
  29597. },
  29598. {
  29599. name: "Minimacro",
  29600. height: math.unit(7, "meters")
  29601. },
  29602. {
  29603. name: "Macro",
  29604. height: math.unit(200, "meters")
  29605. },
  29606. {
  29607. name: "Gigamacro",
  29608. height: math.unit(0.2, "earths")
  29609. },
  29610. ]
  29611. ))
  29612. characterMakers.push(() => makeCharacter(
  29613. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  29614. {
  29615. front: {
  29616. height: math.unit(152, "feet"),
  29617. name: "Front",
  29618. image: {
  29619. source: "./media/characters/kenzie-lee/front.svg",
  29620. extra: 1869/1774,
  29621. bottom: 128/1997
  29622. }
  29623. },
  29624. side: {
  29625. height: math.unit(86, "feet"),
  29626. name: "Side",
  29627. image: {
  29628. source: "./media/characters/kenzie-lee/side.svg",
  29629. extra: 930/815,
  29630. bottom: 177/1107
  29631. }
  29632. },
  29633. paw: {
  29634. height: math.unit(15, "feet"),
  29635. name: "Paw",
  29636. image: {
  29637. source: "./media/characters/kenzie-lee/paw.svg"
  29638. }
  29639. },
  29640. },
  29641. [
  29642. {
  29643. name: "Kenzie Flea",
  29644. height: math.unit(2, "mm"),
  29645. default: true
  29646. },
  29647. {
  29648. name: "Micro",
  29649. height: math.unit(2, "inches")
  29650. },
  29651. {
  29652. name: "Normal",
  29653. height: math.unit(152, "feet")
  29654. },
  29655. {
  29656. name: "Megamacro",
  29657. height: math.unit(7, "miles")
  29658. },
  29659. {
  29660. name: "Gigamacro",
  29661. height: math.unit(8000, "miles")
  29662. },
  29663. ]
  29664. ))
  29665. characterMakers.push(() => makeCharacter(
  29666. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  29667. {
  29668. front: {
  29669. height: math.unit(6, "feet"),
  29670. name: "Front",
  29671. image: {
  29672. source: "./media/characters/withers/front.svg",
  29673. extra: 1935/1760,
  29674. bottom: 72/2007
  29675. }
  29676. },
  29677. back: {
  29678. height: math.unit(6, "feet"),
  29679. name: "Back",
  29680. image: {
  29681. source: "./media/characters/withers/back.svg",
  29682. extra: 1944/1792,
  29683. bottom: 12/1956
  29684. }
  29685. },
  29686. dressed: {
  29687. height: math.unit(6, "feet"),
  29688. name: "Dressed",
  29689. image: {
  29690. source: "./media/characters/withers/dressed.svg",
  29691. extra: 1937/1765,
  29692. bottom: 73/2010
  29693. }
  29694. },
  29695. phase1: {
  29696. height: math.unit(1.1, "feet"),
  29697. name: "Phase 1",
  29698. image: {
  29699. source: "./media/characters/withers/phase-1.svg",
  29700. extra: 1885/1232,
  29701. bottom: 0/1885
  29702. }
  29703. },
  29704. phase2: {
  29705. height: math.unit(1.05, "feet"),
  29706. name: "Phase 2",
  29707. image: {
  29708. source: "./media/characters/withers/phase-2.svg",
  29709. extra: 1792/1090,
  29710. bottom: 0/1792
  29711. }
  29712. },
  29713. partyWipe: {
  29714. height: math.unit(1.1, "feet"),
  29715. name: "Party Wipe",
  29716. image: {
  29717. source: "./media/characters/withers/party-wipe.svg",
  29718. extra: 1864/1207,
  29719. bottom: 0/1864
  29720. }
  29721. },
  29722. },
  29723. [
  29724. {
  29725. name: "Macro",
  29726. height: math.unit(167, "feet"),
  29727. default: true
  29728. },
  29729. {
  29730. name: "Megamacro",
  29731. height: math.unit(15, "miles")
  29732. }
  29733. ]
  29734. ))
  29735. characterMakers.push(() => makeCharacter(
  29736. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  29737. {
  29738. front: {
  29739. height: math.unit(6 + 7 / 12, "feet"),
  29740. weight: math.unit(250, "lb"),
  29741. name: "Front",
  29742. image: {
  29743. source: "./media/characters/nemoskii/front.svg",
  29744. extra: 2270 / 1734,
  29745. bottom: 86 / 2354
  29746. }
  29747. },
  29748. back: {
  29749. height: math.unit(6 + 7 / 12, "feet"),
  29750. weight: math.unit(250, "lb"),
  29751. name: "Back",
  29752. image: {
  29753. source: "./media/characters/nemoskii/back.svg",
  29754. extra: 1845 / 1788,
  29755. bottom: 10.5 / 1852
  29756. }
  29757. },
  29758. head: {
  29759. height: math.unit(1.31, "feet"),
  29760. name: "Head",
  29761. image: {
  29762. source: "./media/characters/nemoskii/head.svg"
  29763. }
  29764. },
  29765. },
  29766. [
  29767. {
  29768. name: "Micro",
  29769. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  29770. },
  29771. {
  29772. name: "Normal",
  29773. height: math.unit(6 + 7 / 12, "feet"),
  29774. default: true
  29775. },
  29776. {
  29777. name: "Macro",
  29778. height: math.unit((6 + 7 / 12) * 150, "feet")
  29779. },
  29780. {
  29781. name: "Macro+",
  29782. height: math.unit((6 + 7 / 12) * 500, "feet")
  29783. },
  29784. {
  29785. name: "Megamacro",
  29786. height: math.unit((6 + 7 / 12) * 100000, "feet")
  29787. },
  29788. ]
  29789. ))
  29790. characterMakers.push(() => makeCharacter(
  29791. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  29792. {
  29793. front: {
  29794. height: math.unit(1, "mile"),
  29795. weight: math.unit(265261.9, "lb"),
  29796. name: "Front",
  29797. image: {
  29798. source: "./media/characters/shui/front.svg",
  29799. extra: 1633 / 1564,
  29800. bottom: 91.5 / 1726
  29801. }
  29802. },
  29803. },
  29804. [
  29805. {
  29806. name: "Macro",
  29807. height: math.unit(1, "mile"),
  29808. default: true
  29809. },
  29810. ]
  29811. ))
  29812. characterMakers.push(() => makeCharacter(
  29813. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  29814. {
  29815. front: {
  29816. height: math.unit(12 + 6 / 12, "feet"),
  29817. weight: math.unit(1342, "lb"),
  29818. name: "Front",
  29819. image: {
  29820. source: "./media/characters/arokh-takakura/front.svg",
  29821. extra: 1089 / 1043,
  29822. bottom: 77.4 / 1176.7
  29823. }
  29824. },
  29825. back: {
  29826. height: math.unit(12 + 6 / 12, "feet"),
  29827. weight: math.unit(1342, "lb"),
  29828. name: "Back",
  29829. image: {
  29830. source: "./media/characters/arokh-takakura/back.svg",
  29831. extra: 1046 / 1019,
  29832. bottom: 102 / 1150
  29833. }
  29834. },
  29835. },
  29836. [
  29837. {
  29838. name: "Big",
  29839. height: math.unit(12 + 6 / 12, "feet"),
  29840. default: true
  29841. },
  29842. ]
  29843. ))
  29844. characterMakers.push(() => makeCharacter(
  29845. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  29846. {
  29847. front: {
  29848. height: math.unit(5 + 6 / 12, "feet"),
  29849. weight: math.unit(150, "lb"),
  29850. name: "Front",
  29851. image: {
  29852. source: "./media/characters/theo/front.svg",
  29853. extra: 1184 / 1131,
  29854. bottom: 7.4 / 1191
  29855. }
  29856. },
  29857. },
  29858. [
  29859. {
  29860. name: "Micro",
  29861. height: math.unit(5, "inches")
  29862. },
  29863. {
  29864. name: "Normal",
  29865. height: math.unit(5 + 6 / 12, "feet"),
  29866. default: true
  29867. },
  29868. ]
  29869. ))
  29870. characterMakers.push(() => makeCharacter(
  29871. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  29872. {
  29873. front: {
  29874. height: math.unit(5 + 9 / 12, "feet"),
  29875. weight: math.unit(130, "lb"),
  29876. name: "Front",
  29877. image: {
  29878. source: "./media/characters/cecelia-swift/front.svg",
  29879. extra: 502 / 484,
  29880. bottom: 23 / 523
  29881. }
  29882. },
  29883. back: {
  29884. height: math.unit(5 + 9 / 12, "feet"),
  29885. weight: math.unit(130, "lb"),
  29886. name: "Back",
  29887. image: {
  29888. source: "./media/characters/cecelia-swift/back.svg",
  29889. extra: 499 / 485,
  29890. bottom: 12 / 511
  29891. }
  29892. },
  29893. head: {
  29894. height: math.unit(0.90, "feet"),
  29895. name: "Head",
  29896. image: {
  29897. source: "./media/characters/cecelia-swift/head.svg"
  29898. }
  29899. },
  29900. rump: {
  29901. height: math.unit(1.75, "feet"),
  29902. name: "Rump",
  29903. image: {
  29904. source: "./media/characters/cecelia-swift/rump.svg"
  29905. }
  29906. },
  29907. },
  29908. [
  29909. {
  29910. name: "Normal",
  29911. height: math.unit(5 + 9 / 12, "feet"),
  29912. default: true
  29913. },
  29914. {
  29915. name: "Big",
  29916. height: math.unit(50, "feet")
  29917. },
  29918. {
  29919. name: "Macro",
  29920. height: math.unit(100, "feet")
  29921. },
  29922. {
  29923. name: "Macro+",
  29924. height: math.unit(500, "feet")
  29925. },
  29926. {
  29927. name: "Macro++",
  29928. height: math.unit(1000, "feet")
  29929. },
  29930. ]
  29931. ))
  29932. characterMakers.push(() => makeCharacter(
  29933. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  29934. {
  29935. front: {
  29936. height: math.unit(6, "feet"),
  29937. weight: math.unit(150, "lb"),
  29938. name: "Front",
  29939. image: {
  29940. source: "./media/characters/kaunan/front.svg",
  29941. extra: 2890 / 2523,
  29942. bottom: 49 / 2939
  29943. }
  29944. },
  29945. },
  29946. [
  29947. {
  29948. name: "Macro",
  29949. height: math.unit(150, "feet"),
  29950. default: true
  29951. },
  29952. ]
  29953. ))
  29954. characterMakers.push(() => makeCharacter(
  29955. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  29956. {
  29957. dressed: {
  29958. height: math.unit(175, "cm"),
  29959. weight: math.unit(60, "kg"),
  29960. name: "Dressed",
  29961. image: {
  29962. source: "./media/characters/fei/dressed.svg",
  29963. extra: 1402/1278,
  29964. bottom: 27/1429
  29965. }
  29966. },
  29967. nude: {
  29968. height: math.unit(175, "cm"),
  29969. weight: math.unit(60, "kg"),
  29970. name: "Nude",
  29971. image: {
  29972. source: "./media/characters/fei/nude.svg",
  29973. extra: 1402/1278,
  29974. bottom: 27/1429
  29975. }
  29976. },
  29977. heels: {
  29978. height: math.unit(0.466, "feet"),
  29979. name: "Heels",
  29980. image: {
  29981. source: "./media/characters/fei/heels.svg",
  29982. extra: 156/152,
  29983. bottom: 28/184
  29984. }
  29985. },
  29986. },
  29987. [
  29988. {
  29989. name: "Mortal",
  29990. height: math.unit(175, "cm")
  29991. },
  29992. {
  29993. name: "Normal",
  29994. height: math.unit(3500, "m")
  29995. },
  29996. {
  29997. name: "Stroll",
  29998. height: math.unit(18.4, "km"),
  29999. default: true
  30000. },
  30001. {
  30002. name: "Showoff",
  30003. height: math.unit(175, "km")
  30004. },
  30005. ]
  30006. ))
  30007. characterMakers.push(() => makeCharacter(
  30008. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  30009. {
  30010. front: {
  30011. height: math.unit(7, "feet"),
  30012. weight: math.unit(1000, "kg"),
  30013. name: "Front",
  30014. image: {
  30015. source: "./media/characters/edrax/front.svg",
  30016. extra: 2838 / 2550,
  30017. bottom: 130 / 2968
  30018. }
  30019. },
  30020. },
  30021. [
  30022. {
  30023. name: "Small",
  30024. height: math.unit(7, "feet")
  30025. },
  30026. {
  30027. name: "Normal",
  30028. height: math.unit(1500, "meters")
  30029. },
  30030. {
  30031. name: "Mega",
  30032. height: math.unit(12000000, "km"),
  30033. default: true
  30034. },
  30035. {
  30036. name: "Megamacro",
  30037. height: math.unit(10600000, "lightyears")
  30038. },
  30039. {
  30040. name: "Hypermacro",
  30041. height: math.unit(256, "yottameters")
  30042. },
  30043. ]
  30044. ))
  30045. characterMakers.push(() => makeCharacter(
  30046. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  30047. {
  30048. front: {
  30049. height: math.unit(10, "feet"),
  30050. weight: math.unit(750, "lb"),
  30051. name: "Front",
  30052. image: {
  30053. source: "./media/characters/clove/front.svg",
  30054. extra: 1918/1751,
  30055. bottom: 52/1970
  30056. }
  30057. },
  30058. back: {
  30059. height: math.unit(10, "feet"),
  30060. weight: math.unit(750, "lb"),
  30061. name: "Back",
  30062. image: {
  30063. source: "./media/characters/clove/back.svg",
  30064. extra: 1912/1747,
  30065. bottom: 50/1962
  30066. }
  30067. },
  30068. },
  30069. [
  30070. {
  30071. name: "Normal",
  30072. height: math.unit(10, "feet"),
  30073. default: true
  30074. },
  30075. ]
  30076. ))
  30077. characterMakers.push(() => makeCharacter(
  30078. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30079. {
  30080. front: {
  30081. height: math.unit(4, "feet"),
  30082. weight: math.unit(50, "lb"),
  30083. name: "Front",
  30084. image: {
  30085. source: "./media/characters/alex-rabbit/front.svg",
  30086. extra: 507 / 458,
  30087. bottom: 18.5 / 527
  30088. }
  30089. },
  30090. back: {
  30091. height: math.unit(4, "feet"),
  30092. weight: math.unit(50, "lb"),
  30093. name: "Back",
  30094. image: {
  30095. source: "./media/characters/alex-rabbit/back.svg",
  30096. extra: 502 / 460,
  30097. bottom: 18.9 / 521
  30098. }
  30099. },
  30100. },
  30101. [
  30102. {
  30103. name: "Normal",
  30104. height: math.unit(4, "feet"),
  30105. default: true
  30106. },
  30107. ]
  30108. ))
  30109. characterMakers.push(() => makeCharacter(
  30110. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  30111. {
  30112. front: {
  30113. height: math.unit(1 + 3 / 12, "feet"),
  30114. weight: math.unit(80, "lb"),
  30115. name: "Front",
  30116. image: {
  30117. source: "./media/characters/zander-rose/front.svg",
  30118. extra: 916 / 797,
  30119. bottom: 17 / 933
  30120. }
  30121. },
  30122. back: {
  30123. height: math.unit(1 + 3 / 12, "feet"),
  30124. weight: math.unit(80, "lb"),
  30125. name: "Back",
  30126. image: {
  30127. source: "./media/characters/zander-rose/back.svg",
  30128. extra: 903 / 779,
  30129. bottom: 31 / 934
  30130. }
  30131. },
  30132. },
  30133. [
  30134. {
  30135. name: "Normal",
  30136. height: math.unit(1 + 3 / 12, "feet"),
  30137. default: true
  30138. },
  30139. ]
  30140. ))
  30141. characterMakers.push(() => makeCharacter(
  30142. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  30143. {
  30144. anthro: {
  30145. height: math.unit(6, "feet"),
  30146. weight: math.unit(150, "lb"),
  30147. name: "Anthro",
  30148. image: {
  30149. source: "./media/characters/razz/anthro.svg",
  30150. extra: 1437 / 1343,
  30151. bottom: 48 / 1485
  30152. }
  30153. },
  30154. feral: {
  30155. height: math.unit(6, "feet"),
  30156. weight: math.unit(150, "lb"),
  30157. name: "Feral",
  30158. image: {
  30159. source: "./media/characters/razz/feral.svg",
  30160. extra: 2569 / 1385,
  30161. bottom: 95 / 2664
  30162. }
  30163. },
  30164. },
  30165. [
  30166. {
  30167. name: "Normal",
  30168. height: math.unit(6, "feet"),
  30169. default: true
  30170. },
  30171. ]
  30172. ))
  30173. characterMakers.push(() => makeCharacter(
  30174. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  30175. {
  30176. front: {
  30177. height: math.unit(9 + 4 / 12, "feet"),
  30178. weight: math.unit(500, "lb"),
  30179. name: "Front",
  30180. image: {
  30181. source: "./media/characters/morrigan/front.svg",
  30182. extra: 2707 / 2579,
  30183. bottom: 156 / 2863
  30184. }
  30185. },
  30186. },
  30187. [
  30188. {
  30189. name: "Normal",
  30190. height: math.unit(9 + 4 / 12, "feet"),
  30191. default: true
  30192. },
  30193. ]
  30194. ))
  30195. characterMakers.push(() => makeCharacter(
  30196. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  30197. {
  30198. front: {
  30199. height: math.unit(5, "stories"),
  30200. weight: math.unit(4000, "lb"),
  30201. name: "Front",
  30202. image: {
  30203. source: "./media/characters/jenene/front.svg",
  30204. extra: 1780 / 1710,
  30205. bottom: 57 / 1837
  30206. }
  30207. },
  30208. },
  30209. [
  30210. {
  30211. name: "Normal",
  30212. height: math.unit(5, "stories"),
  30213. default: true
  30214. },
  30215. ]
  30216. ))
  30217. characterMakers.push(() => makeCharacter(
  30218. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  30219. {
  30220. taurSfw: {
  30221. height: math.unit(10, "meters"),
  30222. weight: math.unit(17500, "kg"),
  30223. name: "Taur",
  30224. image: {
  30225. source: "./media/characters/faey/taur-sfw.svg",
  30226. extra: 1200 / 968,
  30227. bottom: 41 / 1241
  30228. }
  30229. },
  30230. chestmaw: {
  30231. height: math.unit(2.01, "meters"),
  30232. name: "Chestmaw",
  30233. image: {
  30234. source: "./media/characters/faey/chestmaw.svg"
  30235. }
  30236. },
  30237. foot: {
  30238. height: math.unit(2.43, "meters"),
  30239. name: "Foot",
  30240. image: {
  30241. source: "./media/characters/faey/foot.svg"
  30242. }
  30243. },
  30244. jaws: {
  30245. height: math.unit(1.66, "meters"),
  30246. name: "Jaws",
  30247. image: {
  30248. source: "./media/characters/faey/jaws.svg"
  30249. }
  30250. },
  30251. tongues: {
  30252. height: math.unit(2.01, "meters"),
  30253. name: "Tongues",
  30254. image: {
  30255. source: "./media/characters/faey/tongues.svg"
  30256. }
  30257. },
  30258. },
  30259. [
  30260. {
  30261. name: "Small",
  30262. height: math.unit(10, "meters"),
  30263. default: true
  30264. },
  30265. {
  30266. name: "Big",
  30267. height: math.unit(500000, "km")
  30268. },
  30269. ]
  30270. ))
  30271. characterMakers.push(() => makeCharacter(
  30272. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  30273. {
  30274. front: {
  30275. height: math.unit(7, "feet"),
  30276. weight: math.unit(275, "lb"),
  30277. name: "Front",
  30278. image: {
  30279. source: "./media/characters/roku/front.svg",
  30280. extra: 903 / 878,
  30281. bottom: 37 / 940
  30282. }
  30283. },
  30284. },
  30285. [
  30286. {
  30287. name: "Normal",
  30288. height: math.unit(7, "feet"),
  30289. default: true
  30290. },
  30291. {
  30292. name: "Macro",
  30293. height: math.unit(500, "feet")
  30294. },
  30295. {
  30296. name: "Megamacro",
  30297. height: math.unit(200, "miles")
  30298. },
  30299. ]
  30300. ))
  30301. characterMakers.push(() => makeCharacter(
  30302. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  30303. {
  30304. front: {
  30305. height: math.unit(6 + 2 / 12, "feet"),
  30306. weight: math.unit(150, "lb"),
  30307. name: "Front",
  30308. image: {
  30309. source: "./media/characters/lira/front.svg",
  30310. extra: 1727 / 1605,
  30311. bottom: 26 / 1753
  30312. }
  30313. },
  30314. back: {
  30315. height: math.unit(6 + 2 / 12, "feet"),
  30316. weight: math.unit(150, "lb"),
  30317. name: "Back",
  30318. image: {
  30319. source: "./media/characters/lira/back.svg",
  30320. extra: 1713/1621,
  30321. bottom: 20/1733
  30322. }
  30323. },
  30324. hand: {
  30325. height: math.unit(0.75, "feet"),
  30326. name: "Hand",
  30327. image: {
  30328. source: "./media/characters/lira/hand.svg"
  30329. }
  30330. },
  30331. maw: {
  30332. height: math.unit(0.65, "feet"),
  30333. name: "Maw",
  30334. image: {
  30335. source: "./media/characters/lira/maw.svg"
  30336. }
  30337. },
  30338. pawDigi: {
  30339. height: math.unit(1.6, "feet"),
  30340. name: "Paw Digi",
  30341. image: {
  30342. source: "./media/characters/lira/paw-digi.svg"
  30343. }
  30344. },
  30345. pawPlanti: {
  30346. height: math.unit(1.4, "feet"),
  30347. name: "Paw Planti",
  30348. image: {
  30349. source: "./media/characters/lira/paw-planti.svg"
  30350. }
  30351. },
  30352. },
  30353. [
  30354. {
  30355. name: "Normal",
  30356. height: math.unit(6 + 2 / 12, "feet"),
  30357. default: true
  30358. },
  30359. {
  30360. name: "Macro",
  30361. height: math.unit(100, "feet")
  30362. },
  30363. {
  30364. name: "Macro²",
  30365. height: math.unit(1600, "feet")
  30366. },
  30367. {
  30368. name: "Planetary",
  30369. height: math.unit(20, "earths")
  30370. },
  30371. ]
  30372. ))
  30373. characterMakers.push(() => makeCharacter(
  30374. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  30375. {
  30376. front: {
  30377. height: math.unit(6, "feet"),
  30378. weight: math.unit(150, "lb"),
  30379. name: "Front",
  30380. image: {
  30381. source: "./media/characters/hadjet/front.svg",
  30382. extra: 1480 / 1346,
  30383. bottom: 26 / 1506
  30384. }
  30385. },
  30386. frontNsfw: {
  30387. height: math.unit(6, "feet"),
  30388. weight: math.unit(150, "lb"),
  30389. name: "Front (NSFW)",
  30390. image: {
  30391. source: "./media/characters/hadjet/front-nsfw.svg",
  30392. extra: 1440 / 1358,
  30393. bottom: 52 / 1492
  30394. }
  30395. },
  30396. },
  30397. [
  30398. {
  30399. name: "Macro",
  30400. height: math.unit(10, "stories"),
  30401. default: true
  30402. },
  30403. {
  30404. name: "Megamacro",
  30405. height: math.unit(1.5, "miles")
  30406. },
  30407. {
  30408. name: "Megamacro+",
  30409. height: math.unit(5, "miles")
  30410. },
  30411. ]
  30412. ))
  30413. characterMakers.push(() => makeCharacter(
  30414. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  30415. {
  30416. side: {
  30417. height: math.unit(106, "feet"),
  30418. weight: math.unit(500, "tonnes"),
  30419. name: "Side",
  30420. image: {
  30421. source: "./media/characters/kodran/side.svg",
  30422. extra: 553 / 480,
  30423. bottom: 33 / 586
  30424. }
  30425. },
  30426. front: {
  30427. height: math.unit(132, "feet"),
  30428. weight: math.unit(500, "tonnes"),
  30429. name: "Front",
  30430. image: {
  30431. source: "./media/characters/kodran/front.svg",
  30432. extra: 667 / 643,
  30433. bottom: 42 / 709
  30434. }
  30435. },
  30436. flying: {
  30437. height: math.unit(350, "feet"),
  30438. weight: math.unit(500, "tonnes"),
  30439. name: "Flying",
  30440. image: {
  30441. source: "./media/characters/kodran/flying.svg"
  30442. }
  30443. },
  30444. foot: {
  30445. height: math.unit(33, "feet"),
  30446. name: "Foot",
  30447. image: {
  30448. source: "./media/characters/kodran/foot.svg"
  30449. }
  30450. },
  30451. footFront: {
  30452. height: math.unit(19, "feet"),
  30453. name: "Foot (Front)",
  30454. image: {
  30455. source: "./media/characters/kodran/foot-front.svg",
  30456. extra: 261 / 261,
  30457. bottom: 91 / 352
  30458. }
  30459. },
  30460. headFront: {
  30461. height: math.unit(53, "feet"),
  30462. name: "Head (Front)",
  30463. image: {
  30464. source: "./media/characters/kodran/head-front.svg"
  30465. }
  30466. },
  30467. headSide: {
  30468. height: math.unit(65, "feet"),
  30469. name: "Head (Side)",
  30470. image: {
  30471. source: "./media/characters/kodran/head-side.svg"
  30472. }
  30473. },
  30474. throat: {
  30475. height: math.unit(79, "feet"),
  30476. name: "Throat",
  30477. image: {
  30478. source: "./media/characters/kodran/throat.svg"
  30479. }
  30480. },
  30481. },
  30482. [
  30483. {
  30484. name: "Large",
  30485. height: math.unit(106, "feet"),
  30486. default: true
  30487. },
  30488. ]
  30489. ))
  30490. characterMakers.push(() => makeCharacter(
  30491. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  30492. {
  30493. side: {
  30494. height: math.unit(11, "feet"),
  30495. weight: math.unit(150, "lb"),
  30496. name: "Side",
  30497. image: {
  30498. source: "./media/characters/pyxaron/side.svg",
  30499. extra: 305 / 195,
  30500. bottom: 17 / 322
  30501. }
  30502. },
  30503. },
  30504. [
  30505. {
  30506. name: "Normal",
  30507. height: math.unit(11, "feet"),
  30508. default: true
  30509. },
  30510. ]
  30511. ))
  30512. characterMakers.push(() => makeCharacter(
  30513. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  30514. {
  30515. front: {
  30516. height: math.unit(6, "feet"),
  30517. weight: math.unit(150, "lb"),
  30518. name: "Front",
  30519. image: {
  30520. source: "./media/characters/meep/front.svg",
  30521. extra: 88 / 80,
  30522. bottom: 6 / 94
  30523. }
  30524. },
  30525. },
  30526. [
  30527. {
  30528. name: "Fun Sized",
  30529. height: math.unit(2, "inches"),
  30530. default: true
  30531. },
  30532. {
  30533. name: "Friend Sized",
  30534. height: math.unit(8, "inches")
  30535. },
  30536. ]
  30537. ))
  30538. characterMakers.push(() => makeCharacter(
  30539. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30540. {
  30541. front: {
  30542. height: math.unit(15, "feet"),
  30543. weight: math.unit(2500, "lb"),
  30544. name: "Front",
  30545. image: {
  30546. source: "./media/characters/holly-rabbit/front.svg",
  30547. extra: 1433 / 1233,
  30548. bottom: 125 / 1558
  30549. }
  30550. },
  30551. dick: {
  30552. height: math.unit(4.6, "feet"),
  30553. name: "Dick",
  30554. image: {
  30555. source: "./media/characters/holly-rabbit/dick.svg"
  30556. }
  30557. },
  30558. },
  30559. [
  30560. {
  30561. name: "Normal",
  30562. height: math.unit(15, "feet"),
  30563. default: true
  30564. },
  30565. {
  30566. name: "Macro",
  30567. height: math.unit(250, "feet")
  30568. },
  30569. {
  30570. name: "Macro+",
  30571. height: math.unit(2500, "feet")
  30572. },
  30573. ]
  30574. ))
  30575. characterMakers.push(() => makeCharacter(
  30576. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  30577. {
  30578. front: {
  30579. height: math.unit(3.02, "meters"),
  30580. weight: math.unit(500, "kg"),
  30581. name: "Front",
  30582. image: {
  30583. source: "./media/characters/drena/front.svg",
  30584. extra: 282 / 243,
  30585. bottom: 8 / 290
  30586. }
  30587. },
  30588. side: {
  30589. height: math.unit(3.02, "meters"),
  30590. weight: math.unit(500, "kg"),
  30591. name: "Side",
  30592. image: {
  30593. source: "./media/characters/drena/side.svg",
  30594. extra: 280 / 245,
  30595. bottom: 10 / 290
  30596. }
  30597. },
  30598. back: {
  30599. height: math.unit(3.02, "meters"),
  30600. weight: math.unit(500, "kg"),
  30601. name: "Back",
  30602. image: {
  30603. source: "./media/characters/drena/back.svg",
  30604. extra: 278 / 243,
  30605. bottom: 2 / 280
  30606. }
  30607. },
  30608. foot: {
  30609. height: math.unit(0.75, "meters"),
  30610. name: "Foot",
  30611. image: {
  30612. source: "./media/characters/drena/foot.svg"
  30613. }
  30614. },
  30615. maw: {
  30616. height: math.unit(0.82, "meters"),
  30617. name: "Maw",
  30618. image: {
  30619. source: "./media/characters/drena/maw.svg"
  30620. }
  30621. },
  30622. eating: {
  30623. height: math.unit(0.75, "meters"),
  30624. name: "Eating",
  30625. image: {
  30626. source: "./media/characters/drena/eating.svg"
  30627. }
  30628. },
  30629. rump: {
  30630. height: math.unit(0.93, "meters"),
  30631. name: "Rump",
  30632. image: {
  30633. source: "./media/characters/drena/rump.svg"
  30634. }
  30635. },
  30636. },
  30637. [
  30638. {
  30639. name: "Normal",
  30640. height: math.unit(3.02, "meters"),
  30641. default: true
  30642. },
  30643. ]
  30644. ))
  30645. characterMakers.push(() => makeCharacter(
  30646. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  30647. {
  30648. front: {
  30649. height: math.unit(6 + 4 / 12, "feet"),
  30650. weight: math.unit(250, "lb"),
  30651. name: "Front",
  30652. image: {
  30653. source: "./media/characters/remmyzilla/front.svg",
  30654. extra: 4033 / 3588,
  30655. bottom: 123 / 4156
  30656. }
  30657. },
  30658. back: {
  30659. height: math.unit(6 + 4 / 12, "feet"),
  30660. weight: math.unit(250, "lb"),
  30661. name: "Back",
  30662. image: {
  30663. source: "./media/characters/remmyzilla/back.svg",
  30664. extra: 2687 / 2555,
  30665. bottom: 48 / 2735
  30666. }
  30667. },
  30668. paw: {
  30669. height: math.unit(1.73, "feet"),
  30670. name: "Paw",
  30671. image: {
  30672. source: "./media/characters/remmyzilla/paw.svg"
  30673. },
  30674. extraAttributes: {
  30675. "toeSize": {
  30676. name: "Toe Size",
  30677. power: 2,
  30678. type: "area",
  30679. base: math.unit(0.0035, "m^2")
  30680. },
  30681. "padSize": {
  30682. name: "Pad Size",
  30683. power: 2,
  30684. type: "area",
  30685. base: math.unit(0.015, "m^2")
  30686. },
  30687. "pawsize": {
  30688. name: "Paw Size",
  30689. power: 2,
  30690. type: "area",
  30691. base: math.unit(0.072, "m^2")
  30692. },
  30693. }
  30694. },
  30695. maw: {
  30696. height: math.unit(1.73, "feet"),
  30697. name: "Maw",
  30698. image: {
  30699. source: "./media/characters/remmyzilla/maw.svg"
  30700. }
  30701. },
  30702. },
  30703. [
  30704. {
  30705. name: "Normal",
  30706. height: math.unit(6 + 4 / 12, "feet")
  30707. },
  30708. {
  30709. name: "Minimacro",
  30710. height: math.unit(12 + 8 / 12, "feet")
  30711. },
  30712. {
  30713. name: "Normal",
  30714. height: math.unit(640, "feet"),
  30715. default: true
  30716. },
  30717. {
  30718. name: "Megamacro",
  30719. height: math.unit(6400, "feet")
  30720. },
  30721. {
  30722. name: "Gigamacro",
  30723. height: math.unit(64000, "miles")
  30724. },
  30725. ]
  30726. ))
  30727. characterMakers.push(() => makeCharacter(
  30728. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  30729. {
  30730. front: {
  30731. height: math.unit(2.5, "meters"),
  30732. weight: math.unit(300, "lb"),
  30733. name: "Front",
  30734. image: {
  30735. source: "./media/characters/lawrence/front.svg",
  30736. extra: 357 / 335,
  30737. bottom: 30 / 387
  30738. }
  30739. },
  30740. back: {
  30741. height: math.unit(2.5, "meters"),
  30742. weight: math.unit(300, "lb"),
  30743. name: "Back",
  30744. image: {
  30745. source: "./media/characters/lawrence/back.svg",
  30746. extra: 357 / 338,
  30747. bottom: 16 / 373
  30748. }
  30749. },
  30750. head: {
  30751. height: math.unit(0.9, "meter"),
  30752. name: "Head",
  30753. image: {
  30754. source: "./media/characters/lawrence/head.svg"
  30755. }
  30756. },
  30757. maw: {
  30758. height: math.unit(0.7, "meter"),
  30759. name: "Maw",
  30760. image: {
  30761. source: "./media/characters/lawrence/maw.svg"
  30762. }
  30763. },
  30764. footBottom: {
  30765. height: math.unit(0.5, "meter"),
  30766. name: "Foot (Bottom)",
  30767. image: {
  30768. source: "./media/characters/lawrence/foot-bottom.svg"
  30769. }
  30770. },
  30771. footTop: {
  30772. height: math.unit(0.5, "meter"),
  30773. name: "Foot (Top)",
  30774. image: {
  30775. source: "./media/characters/lawrence/foot-top.svg"
  30776. }
  30777. },
  30778. },
  30779. [
  30780. {
  30781. name: "Normal",
  30782. height: math.unit(2.5, "meters"),
  30783. default: true
  30784. },
  30785. {
  30786. name: "Macro",
  30787. height: math.unit(95, "meters")
  30788. },
  30789. {
  30790. name: "Megamacro",
  30791. height: math.unit(150, "km")
  30792. },
  30793. ]
  30794. ))
  30795. characterMakers.push(() => makeCharacter(
  30796. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  30797. {
  30798. front: {
  30799. height: math.unit(4.2, "meters"),
  30800. preyCapacity: math.unit(50, "m^3"),
  30801. weight: math.unit(30, "tonnes"),
  30802. name: "Front",
  30803. image: {
  30804. source: "./media/characters/sydney/front.svg",
  30805. extra: 1177/1129,
  30806. bottom: 197/1374
  30807. },
  30808. extraAttributes: {
  30809. "length": {
  30810. name: "Length",
  30811. power: 1,
  30812. type: "length",
  30813. base: math.unit(21, "meters")
  30814. },
  30815. }
  30816. },
  30817. },
  30818. [
  30819. {
  30820. name: "Normal",
  30821. height: math.unit(4.2, "meters"),
  30822. default: true
  30823. },
  30824. ]
  30825. ))
  30826. characterMakers.push(() => makeCharacter(
  30827. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  30828. {
  30829. back: {
  30830. height: math.unit(201, "feet"),
  30831. name: "Back",
  30832. image: {
  30833. source: "./media/characters/jessica/back.svg",
  30834. extra: 273 / 259,
  30835. bottom: 7 / 280
  30836. }
  30837. },
  30838. },
  30839. [
  30840. {
  30841. name: "Normal",
  30842. height: math.unit(201, "feet"),
  30843. default: true
  30844. },
  30845. {
  30846. name: "Megamacro",
  30847. height: math.unit(8, "miles")
  30848. },
  30849. ]
  30850. ))
  30851. characterMakers.push(() => makeCharacter(
  30852. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  30853. {
  30854. side: {
  30855. height: math.unit(5.6, "m"),
  30856. weight: math.unit(8000, "kg"),
  30857. name: "Side",
  30858. image: {
  30859. source: "./media/characters/victoria/side.svg",
  30860. extra: 1542/1229,
  30861. bottom: 124/1666
  30862. }
  30863. },
  30864. maw: {
  30865. height: math.unit(7.14, "feet"),
  30866. name: "Maw",
  30867. image: {
  30868. source: "./media/characters/victoria/maw.svg"
  30869. }
  30870. },
  30871. },
  30872. [
  30873. {
  30874. name: "Normal",
  30875. height: math.unit(5.6, "m"),
  30876. default: true
  30877. },
  30878. ]
  30879. ))
  30880. characterMakers.push(() => makeCharacter(
  30881. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  30882. {
  30883. front: {
  30884. height: math.unit(5 + 6 / 12, "feet"),
  30885. name: "Front",
  30886. image: {
  30887. source: "./media/characters/cat/front.svg",
  30888. extra: 1449/1295,
  30889. bottom: 34/1483
  30890. },
  30891. form: "cat",
  30892. default: true
  30893. },
  30894. back: {
  30895. height: math.unit(5 + 6 / 12, "feet"),
  30896. name: "Back",
  30897. image: {
  30898. source: "./media/characters/cat/back.svg",
  30899. extra: 1466/1301,
  30900. bottom: 19/1485
  30901. },
  30902. form: "cat"
  30903. },
  30904. taur: {
  30905. height: math.unit(7, "feet"),
  30906. name: "Taur",
  30907. image: {
  30908. source: "./media/characters/cat/taur.svg",
  30909. extra: 1389/1233,
  30910. bottom: 83/1472
  30911. },
  30912. form: "taur",
  30913. default: true
  30914. },
  30915. lucarioFront: {
  30916. height: math.unit(4, "feet"),
  30917. name: "Lucario (Front)",
  30918. image: {
  30919. source: "./media/characters/cat/lucario-front.svg",
  30920. extra: 1149/1019,
  30921. bottom: 84/1233
  30922. },
  30923. form: "lucario",
  30924. default: true
  30925. },
  30926. lucarioBack: {
  30927. height: math.unit(4, "feet"),
  30928. name: "Lucario (Back)",
  30929. image: {
  30930. source: "./media/characters/cat/lucario-back.svg",
  30931. extra: 1190/1059,
  30932. bottom: 33/1223
  30933. },
  30934. form: "lucario"
  30935. },
  30936. megaLucario: {
  30937. height: math.unit(4, "feet"),
  30938. name: "Mega Lucario",
  30939. image: {
  30940. source: "./media/characters/cat/mega-lucario.svg",
  30941. extra: 1515 / 1319,
  30942. bottom: 63 / 1578
  30943. },
  30944. form: "lucario"
  30945. },
  30946. nickit: {
  30947. height: math.unit(2, "feet"),
  30948. name: "Nickit",
  30949. image: {
  30950. source: "./media/characters/cat/nickit.svg",
  30951. extra: 1980 / 1585,
  30952. bottom: 102 / 2082
  30953. },
  30954. form: "nickit",
  30955. default: true
  30956. },
  30957. lopunnyFront: {
  30958. height: math.unit(5, "feet"),
  30959. name: "Lopunny (Front)",
  30960. image: {
  30961. source: "./media/characters/cat/lopunny-front.svg",
  30962. extra: 1782 / 1469,
  30963. bottom: 38 / 1820
  30964. },
  30965. form: "lopunny",
  30966. default: true
  30967. },
  30968. lopunnyBack: {
  30969. height: math.unit(5, "feet"),
  30970. name: "Lopunny (Back)",
  30971. image: {
  30972. source: "./media/characters/cat/lopunny-back.svg",
  30973. extra: 1660 / 1490,
  30974. bottom: 25 / 1685
  30975. },
  30976. form: "lopunny"
  30977. },
  30978. },
  30979. [
  30980. {
  30981. name: "Really small",
  30982. height: math.unit(1, "nm")
  30983. },
  30984. {
  30985. name: "Micro",
  30986. height: math.unit(5, "inches")
  30987. },
  30988. {
  30989. name: "Normal",
  30990. height: math.unit(5 + 6 / 12, "feet"),
  30991. default: true
  30992. },
  30993. {
  30994. name: "Macro",
  30995. height: math.unit(50, "feet")
  30996. },
  30997. {
  30998. name: "Macro+",
  30999. height: math.unit(150, "feet")
  31000. },
  31001. {
  31002. name: "Megamacro",
  31003. height: math.unit(100, "miles")
  31004. },
  31005. ]
  31006. ))
  31007. characterMakers.push(() => makeCharacter(
  31008. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  31009. {
  31010. front: {
  31011. height: math.unit(63.4, "meters"),
  31012. weight: math.unit(3.28349e+6, "kilograms"),
  31013. name: "Front",
  31014. image: {
  31015. source: "./media/characters/kirina-violet/front.svg",
  31016. extra: 2812 / 2725,
  31017. bottom: 0 / 2812
  31018. }
  31019. },
  31020. back: {
  31021. height: math.unit(63.4, "meters"),
  31022. weight: math.unit(3.28349e+6, "kilograms"),
  31023. name: "Back",
  31024. image: {
  31025. source: "./media/characters/kirina-violet/back.svg",
  31026. extra: 2812 / 2725,
  31027. bottom: 0 / 2812
  31028. }
  31029. },
  31030. mouth: {
  31031. height: math.unit(4.35, "meters"),
  31032. name: "Mouth",
  31033. image: {
  31034. source: "./media/characters/kirina-violet/mouth.svg"
  31035. }
  31036. },
  31037. paw: {
  31038. height: math.unit(5.6, "meters"),
  31039. name: "Paw",
  31040. image: {
  31041. source: "./media/characters/kirina-violet/paw.svg"
  31042. }
  31043. },
  31044. tail: {
  31045. height: math.unit(18, "meters"),
  31046. name: "Tail",
  31047. image: {
  31048. source: "./media/characters/kirina-violet/tail.svg"
  31049. }
  31050. },
  31051. },
  31052. [
  31053. {
  31054. name: "Macro",
  31055. height: math.unit(63.4, "meters"),
  31056. default: true
  31057. },
  31058. ]
  31059. ))
  31060. characterMakers.push(() => makeCharacter(
  31061. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  31062. {
  31063. front: {
  31064. height: math.unit(75, "feet"),
  31065. name: "Front",
  31066. image: {
  31067. source: "./media/characters/cat-gigachu/front.svg",
  31068. extra: 1239/1027,
  31069. bottom: 32/1271
  31070. }
  31071. },
  31072. back: {
  31073. height: math.unit(75, "feet"),
  31074. name: "Back",
  31075. image: {
  31076. source: "./media/characters/cat-gigachu/back.svg",
  31077. extra: 1229/1030,
  31078. bottom: 9/1238
  31079. }
  31080. },
  31081. },
  31082. [
  31083. {
  31084. name: "Dynamax",
  31085. height: math.unit(75, "feet"),
  31086. default: true
  31087. },
  31088. ]
  31089. ))
  31090. characterMakers.push(() => makeCharacter(
  31091. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  31092. {
  31093. front: {
  31094. height: math.unit(6, "feet"),
  31095. weight: math.unit(150, "lb"),
  31096. name: "Front",
  31097. image: {
  31098. source: "./media/characters/sfaiyan/front.svg",
  31099. extra: 999 / 978,
  31100. bottom: 5 / 1004
  31101. }
  31102. },
  31103. },
  31104. [
  31105. {
  31106. name: "Normal",
  31107. height: math.unit(1.82, "meters")
  31108. },
  31109. {
  31110. name: "Giant",
  31111. height: math.unit(2.27, "km"),
  31112. default: true
  31113. },
  31114. ]
  31115. ))
  31116. characterMakers.push(() => makeCharacter(
  31117. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  31118. {
  31119. front: {
  31120. height: math.unit(179, "cm"),
  31121. weight: math.unit(100, "kg"),
  31122. name: "Front",
  31123. image: {
  31124. source: "./media/characters/raunehkeli/front.svg",
  31125. extra: 1934 / 1926,
  31126. bottom: 0 / 1934
  31127. }
  31128. },
  31129. },
  31130. [
  31131. {
  31132. name: "Normal",
  31133. height: math.unit(179, "cm")
  31134. },
  31135. {
  31136. name: "Maximum",
  31137. height: math.unit(575, "meters"),
  31138. default: true
  31139. },
  31140. ]
  31141. ))
  31142. characterMakers.push(() => makeCharacter(
  31143. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  31144. {
  31145. front: {
  31146. height: math.unit(6, "feet"),
  31147. weight: math.unit(150, "lb"),
  31148. name: "Front",
  31149. image: {
  31150. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  31151. extra: 2625 / 2518,
  31152. bottom: 60 / 2685
  31153. }
  31154. },
  31155. },
  31156. [
  31157. {
  31158. name: "Normal",
  31159. height: math.unit(6 + 2 / 12, "feet")
  31160. },
  31161. {
  31162. name: "Macro",
  31163. height: math.unit(1180, "feet"),
  31164. default: true
  31165. },
  31166. ]
  31167. ))
  31168. characterMakers.push(() => makeCharacter(
  31169. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  31170. {
  31171. front: {
  31172. height: math.unit(5 + 6 / 12, "feet"),
  31173. weight: math.unit(108, "lb"),
  31174. name: "Front",
  31175. image: {
  31176. source: "./media/characters/lilith-zott/front.svg",
  31177. extra: 2510 / 2238,
  31178. bottom: 100 / 2610
  31179. }
  31180. },
  31181. frontDressed: {
  31182. height: math.unit(5 + 6 / 12, "feet"),
  31183. weight: math.unit(108, "lb"),
  31184. name: "Front (Dressed)",
  31185. image: {
  31186. source: "./media/characters/lilith-zott/front-dressed.svg",
  31187. extra: 2510 / 2238,
  31188. bottom: 100 / 2610
  31189. }
  31190. },
  31191. },
  31192. [
  31193. {
  31194. name: "Normal",
  31195. height: math.unit(5 + 6 / 12, "feet")
  31196. },
  31197. {
  31198. name: "Macro",
  31199. height: math.unit(1030, "feet"),
  31200. default: true
  31201. },
  31202. ]
  31203. ))
  31204. characterMakers.push(() => makeCharacter(
  31205. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  31206. {
  31207. front: {
  31208. height: math.unit(6, "feet"),
  31209. weight: math.unit(150, "lb"),
  31210. name: "Front",
  31211. image: {
  31212. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  31213. extra: 2567 / 2435,
  31214. bottom: 39 / 2606
  31215. }
  31216. },
  31217. frontSuper: {
  31218. height: math.unit(6, "feet"),
  31219. name: "Front (Super)",
  31220. image: {
  31221. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  31222. extra: 2567 / 2435,
  31223. bottom: 39 / 2606
  31224. }
  31225. },
  31226. },
  31227. [
  31228. {
  31229. name: "Normal",
  31230. height: math.unit(5 + 10 / 12, "feet")
  31231. },
  31232. {
  31233. name: "Macro",
  31234. height: math.unit(1100, "feet"),
  31235. default: true
  31236. },
  31237. ]
  31238. ))
  31239. characterMakers.push(() => makeCharacter(
  31240. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  31241. {
  31242. front: {
  31243. height: math.unit(100, "miles"),
  31244. name: "Front",
  31245. image: {
  31246. source: "./media/characters/sona/front.svg",
  31247. extra: 2433 / 2201,
  31248. bottom: 53 / 2486
  31249. }
  31250. },
  31251. foot: {
  31252. height: math.unit(16.1, "miles"),
  31253. name: "Foot",
  31254. image: {
  31255. source: "./media/characters/sona/foot.svg"
  31256. }
  31257. },
  31258. },
  31259. [
  31260. {
  31261. name: "Macro",
  31262. height: math.unit(100, "miles"),
  31263. default: true
  31264. },
  31265. ]
  31266. ))
  31267. characterMakers.push(() => makeCharacter(
  31268. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  31269. {
  31270. front: {
  31271. height: math.unit(6, "feet"),
  31272. weight: math.unit(150, "lb"),
  31273. name: "Front",
  31274. image: {
  31275. source: "./media/characters/bailey/front.svg",
  31276. extra: 1778 / 1724,
  31277. bottom: 30 / 1808
  31278. }
  31279. },
  31280. },
  31281. [
  31282. {
  31283. name: "Micro",
  31284. height: math.unit(4, "inches")
  31285. },
  31286. {
  31287. name: "Normal",
  31288. height: math.unit(5 + 5 / 12, "feet"),
  31289. default: true
  31290. },
  31291. {
  31292. name: "Macro",
  31293. height: math.unit(250, "feet")
  31294. },
  31295. {
  31296. name: "Megamacro",
  31297. height: math.unit(100, "miles")
  31298. },
  31299. ]
  31300. ))
  31301. characterMakers.push(() => makeCharacter(
  31302. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  31303. {
  31304. front: {
  31305. height: math.unit(5 + 2 / 12, "feet"),
  31306. weight: math.unit(120, "lb"),
  31307. name: "Front",
  31308. image: {
  31309. source: "./media/characters/snaps/front.svg",
  31310. extra: 2370 / 2177,
  31311. bottom: 48 / 2418
  31312. }
  31313. },
  31314. back: {
  31315. height: math.unit(5 + 2 / 12, "feet"),
  31316. weight: math.unit(120, "lb"),
  31317. name: "Back",
  31318. image: {
  31319. source: "./media/characters/snaps/back.svg",
  31320. extra: 2408 / 2258,
  31321. bottom: 15 / 2423
  31322. }
  31323. },
  31324. },
  31325. [
  31326. {
  31327. name: "Micro",
  31328. height: math.unit(9, "inches")
  31329. },
  31330. {
  31331. name: "Normal",
  31332. height: math.unit(5 + 2 / 12, "feet"),
  31333. default: true
  31334. },
  31335. {
  31336. name: "Mini Macro",
  31337. height: math.unit(10, "feet")
  31338. },
  31339. ]
  31340. ))
  31341. characterMakers.push(() => makeCharacter(
  31342. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  31343. {
  31344. front: {
  31345. height: math.unit(1.8, "meters"),
  31346. weight: math.unit(85, "kg"),
  31347. name: "Front",
  31348. image: {
  31349. source: "./media/characters/azteck/front.svg",
  31350. extra: 2815 / 2625,
  31351. bottom: 89 / 2904
  31352. }
  31353. },
  31354. back: {
  31355. height: math.unit(1.8, "meters"),
  31356. weight: math.unit(85, "kg"),
  31357. name: "Back",
  31358. image: {
  31359. source: "./media/characters/azteck/back.svg",
  31360. extra: 2856 / 2648,
  31361. bottom: 85 / 2941
  31362. }
  31363. },
  31364. frontDressed: {
  31365. height: math.unit(1.8, "meters"),
  31366. weight: math.unit(85, "kg"),
  31367. name: "Front (Dressed)",
  31368. image: {
  31369. source: "./media/characters/azteck/front-dressed.svg",
  31370. extra: 2147 / 2003,
  31371. bottom: 68 / 2215
  31372. }
  31373. },
  31374. head: {
  31375. height: math.unit(0.47, "meters"),
  31376. weight: math.unit(85, "kg"),
  31377. name: "Head",
  31378. image: {
  31379. source: "./media/characters/azteck/head.svg"
  31380. }
  31381. },
  31382. },
  31383. [
  31384. {
  31385. name: "Bite sized",
  31386. height: math.unit(16, "cm")
  31387. },
  31388. {
  31389. name: "Normal",
  31390. height: math.unit(1.8, "meters"),
  31391. default: true
  31392. },
  31393. ]
  31394. ))
  31395. characterMakers.push(() => makeCharacter(
  31396. { name: "Pidge", species: ["hellhound"], 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/pidge/front.svg",
  31404. extra: 1936/1820,
  31405. bottom: 0/1936
  31406. }
  31407. },
  31408. back: {
  31409. height: math.unit(6, "feet"),
  31410. weight: math.unit(150, "lb"),
  31411. name: "Back",
  31412. image: {
  31413. source: "./media/characters/pidge/back.svg",
  31414. extra: 1938/1843,
  31415. bottom: 0/1938
  31416. }
  31417. },
  31418. casual: {
  31419. height: math.unit(6, "feet"),
  31420. weight: math.unit(150, "lb"),
  31421. name: "Casual",
  31422. image: {
  31423. source: "./media/characters/pidge/casual.svg",
  31424. extra: 1936/1820,
  31425. bottom: 0/1936
  31426. }
  31427. },
  31428. tech: {
  31429. height: math.unit(6, "feet"),
  31430. weight: math.unit(150, "lb"),
  31431. name: "Tech",
  31432. image: {
  31433. source: "./media/characters/pidge/tech.svg",
  31434. extra: 1802/1682,
  31435. bottom: 0/1802
  31436. }
  31437. },
  31438. head: {
  31439. height: math.unit(1.61, "feet"),
  31440. name: "Head",
  31441. image: {
  31442. source: "./media/characters/pidge/head.svg"
  31443. }
  31444. },
  31445. collar: {
  31446. height: math.unit(0.82, "feet"),
  31447. name: "Collar",
  31448. image: {
  31449. source: "./media/characters/pidge/collar.svg"
  31450. }
  31451. },
  31452. },
  31453. [
  31454. {
  31455. name: "Macro",
  31456. height: math.unit(2, "mile"),
  31457. default: true
  31458. },
  31459. {
  31460. name: "PUPPY",
  31461. height: math.unit(20, "miles")
  31462. },
  31463. ]
  31464. ))
  31465. characterMakers.push(() => makeCharacter(
  31466. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  31467. {
  31468. front: {
  31469. height: math.unit(6, "feet"),
  31470. weight: math.unit(150, "lb"),
  31471. name: "Front",
  31472. image: {
  31473. source: "./media/characters/en/front.svg",
  31474. extra: 1697 / 1563,
  31475. bottom: 103 / 1800
  31476. }
  31477. },
  31478. back: {
  31479. height: math.unit(6, "feet"),
  31480. weight: math.unit(150, "lb"),
  31481. name: "Back",
  31482. image: {
  31483. source: "./media/characters/en/back.svg",
  31484. extra: 1700 / 1570,
  31485. bottom: 51 / 1751
  31486. }
  31487. },
  31488. frontDressed: {
  31489. height: math.unit(6, "feet"),
  31490. weight: math.unit(150, "lb"),
  31491. name: "Front (Dressed)",
  31492. image: {
  31493. source: "./media/characters/en/front-dressed.svg",
  31494. extra: 1697 / 1563,
  31495. bottom: 103 / 1800
  31496. }
  31497. },
  31498. backDressed: {
  31499. height: math.unit(6, "feet"),
  31500. weight: math.unit(150, "lb"),
  31501. name: "Back (Dressed)",
  31502. image: {
  31503. source: "./media/characters/en/back-dressed.svg",
  31504. extra: 1700 / 1570,
  31505. bottom: 51 / 1751
  31506. }
  31507. },
  31508. },
  31509. [
  31510. {
  31511. name: "Macro",
  31512. height: math.unit(210, "feet"),
  31513. default: true
  31514. },
  31515. ]
  31516. ))
  31517. characterMakers.push(() => makeCharacter(
  31518. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  31519. {
  31520. front: {
  31521. height: math.unit(6, "feet"),
  31522. weight: math.unit(150, "lb"),
  31523. name: "Front",
  31524. image: {
  31525. source: "./media/characters/haze-orris/front.svg",
  31526. extra: 3975 / 3525,
  31527. bottom: 137 / 4112
  31528. }
  31529. },
  31530. },
  31531. [
  31532. {
  31533. name: "Micro",
  31534. height: math.unit(150, "mm"),
  31535. default: true
  31536. },
  31537. ]
  31538. ))
  31539. characterMakers.push(() => makeCharacter(
  31540. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  31541. {
  31542. front: {
  31543. height: math.unit(6, "feet"),
  31544. weight: math.unit(150, "lb"),
  31545. name: "Front",
  31546. image: {
  31547. source: "./media/characters/casselene-yaro/front.svg",
  31548. extra: 4721 / 4541,
  31549. bottom: 82 / 4803
  31550. }
  31551. },
  31552. back: {
  31553. height: math.unit(6, "feet"),
  31554. weight: math.unit(150, "lb"),
  31555. name: "Back",
  31556. image: {
  31557. source: "./media/characters/casselene-yaro/back.svg",
  31558. extra: 4569 / 4377,
  31559. bottom: 69 / 4638
  31560. }
  31561. },
  31562. dressed: {
  31563. height: math.unit(6, "feet"),
  31564. weight: math.unit(150, "lb"),
  31565. name: "Dressed",
  31566. image: {
  31567. source: "./media/characters/casselene-yaro/dressed.svg",
  31568. extra: 4721 / 4541,
  31569. bottom: 82 / 4803
  31570. }
  31571. },
  31572. maw: {
  31573. height: math.unit(1, "feet"),
  31574. name: "Maw",
  31575. image: {
  31576. source: "./media/characters/casselene-yaro/maw.svg"
  31577. }
  31578. },
  31579. },
  31580. [
  31581. {
  31582. name: "Macro",
  31583. height: math.unit(190, "feet"),
  31584. default: true
  31585. },
  31586. ]
  31587. ))
  31588. characterMakers.push(() => makeCharacter(
  31589. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  31590. {
  31591. front: {
  31592. height: math.unit(10, "feet"),
  31593. weight: math.unit(15015, "lb"),
  31594. name: "Front",
  31595. image: {
  31596. source: "./media/characters/platine/front.svg",
  31597. extra: 1741/1650,
  31598. bottom: 84/1825
  31599. }
  31600. },
  31601. side: {
  31602. height: math.unit(10, "feet"),
  31603. weight: math.unit(15015, "lb"),
  31604. name: "Side",
  31605. image: {
  31606. source: "./media/characters/platine/side.svg",
  31607. extra: 1790/1705,
  31608. bottom: 29/1819
  31609. }
  31610. },
  31611. },
  31612. [
  31613. {
  31614. name: "Normal",
  31615. height: math.unit(10, "feet"),
  31616. default: true
  31617. },
  31618. {
  31619. name: "Macro",
  31620. height: math.unit(100, "feet")
  31621. },
  31622. {
  31623. name: "Megamacro",
  31624. height: math.unit(1000, "feet")
  31625. },
  31626. ]
  31627. ))
  31628. characterMakers.push(() => makeCharacter(
  31629. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  31630. {
  31631. front: {
  31632. height: math.unit(15 + 5 / 12, "feet"),
  31633. weight: math.unit(4600, "lb"),
  31634. name: "Front",
  31635. image: {
  31636. source: "./media/characters/neapolitan-ananassa/front.svg",
  31637. extra: 2903 / 2736,
  31638. bottom: 0 / 2903
  31639. }
  31640. },
  31641. side: {
  31642. height: math.unit(15 + 5 / 12, "feet"),
  31643. weight: math.unit(4600, "lb"),
  31644. name: "Side",
  31645. image: {
  31646. source: "./media/characters/neapolitan-ananassa/side.svg",
  31647. extra: 2925 / 2719,
  31648. bottom: 0 / 2925
  31649. }
  31650. },
  31651. back: {
  31652. height: math.unit(15 + 5 / 12, "feet"),
  31653. weight: math.unit(4600, "lb"),
  31654. name: "Back",
  31655. image: {
  31656. source: "./media/characters/neapolitan-ananassa/back.svg",
  31657. extra: 2903 / 2736,
  31658. bottom: 0 / 2903
  31659. }
  31660. },
  31661. },
  31662. [
  31663. {
  31664. name: "Normal",
  31665. height: math.unit(15 + 5 / 12, "feet"),
  31666. default: true
  31667. },
  31668. {
  31669. name: "Post-Millenium",
  31670. height: math.unit(35 + 5 / 12, "feet")
  31671. },
  31672. {
  31673. name: "Post-Era",
  31674. height: math.unit(450 + 5 / 12, "feet")
  31675. },
  31676. ]
  31677. ))
  31678. characterMakers.push(() => makeCharacter(
  31679. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  31680. {
  31681. front: {
  31682. height: math.unit(300, "meters"),
  31683. weight: math.unit(125000, "tonnes"),
  31684. name: "Front",
  31685. image: {
  31686. source: "./media/characters/pazuzu/front.svg",
  31687. extra: 877 / 794,
  31688. bottom: 47 / 924
  31689. }
  31690. },
  31691. },
  31692. [
  31693. {
  31694. name: "Macro",
  31695. height: math.unit(300, "meters"),
  31696. default: true
  31697. },
  31698. ]
  31699. ))
  31700. characterMakers.push(() => makeCharacter(
  31701. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  31702. {
  31703. side: {
  31704. height: math.unit(10 + 7 / 12, "feet"),
  31705. weight: math.unit(2.5, "tons"),
  31706. name: "Side",
  31707. image: {
  31708. source: "./media/characters/aasha/side.svg",
  31709. extra: 1345 / 1245,
  31710. bottom: 111 / 1456
  31711. }
  31712. },
  31713. back: {
  31714. height: math.unit(10 + 7 / 12, "feet"),
  31715. weight: math.unit(2.5, "tons"),
  31716. name: "Back",
  31717. image: {
  31718. source: "./media/characters/aasha/back.svg",
  31719. extra: 1133 / 1057,
  31720. bottom: 257 / 1390
  31721. }
  31722. },
  31723. },
  31724. [
  31725. {
  31726. name: "Normal",
  31727. height: math.unit(10 + 7 / 12, "feet"),
  31728. default: true
  31729. },
  31730. ]
  31731. ))
  31732. characterMakers.push(() => makeCharacter(
  31733. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  31734. {
  31735. front: {
  31736. height: math.unit(6 + 3 / 12, "feet"),
  31737. name: "Front",
  31738. image: {
  31739. source: "./media/characters/nevan/front.svg",
  31740. extra: 704 / 704,
  31741. bottom: 28 / 732
  31742. }
  31743. },
  31744. back: {
  31745. height: math.unit(6 + 3 / 12, "feet"),
  31746. name: "Back",
  31747. image: {
  31748. source: "./media/characters/nevan/back.svg",
  31749. extra: 714 / 714,
  31750. bottom: 21 / 735
  31751. }
  31752. },
  31753. frontFlaccid: {
  31754. height: math.unit(6 + 3 / 12, "feet"),
  31755. name: "Front (Flaccid)",
  31756. image: {
  31757. source: "./media/characters/nevan/front-flaccid.svg",
  31758. extra: 704 / 704,
  31759. bottom: 28 / 732
  31760. }
  31761. },
  31762. frontErect: {
  31763. height: math.unit(6 + 3 / 12, "feet"),
  31764. name: "Front (Erect)",
  31765. image: {
  31766. source: "./media/characters/nevan/front-erect.svg",
  31767. extra: 704 / 704,
  31768. bottom: 28 / 732
  31769. }
  31770. },
  31771. backFlaccid: {
  31772. height: math.unit(6 + 3 / 12, "feet"),
  31773. name: "Back (Flaccid)",
  31774. image: {
  31775. source: "./media/characters/nevan/back-flaccid.svg",
  31776. extra: 714 / 714,
  31777. bottom: 21 / 735
  31778. }
  31779. },
  31780. },
  31781. [
  31782. {
  31783. name: "Normal",
  31784. height: math.unit(6 + 3 / 12, "feet"),
  31785. default: true
  31786. },
  31787. ]
  31788. ))
  31789. characterMakers.push(() => makeCharacter(
  31790. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  31791. {
  31792. front: {
  31793. height: math.unit(4, "feet"),
  31794. name: "Front",
  31795. image: {
  31796. source: "./media/characters/arhan/front.svg",
  31797. extra: 3368 / 3133,
  31798. bottom: 0 / 3368
  31799. }
  31800. },
  31801. side: {
  31802. height: math.unit(4, "feet"),
  31803. name: "Side",
  31804. image: {
  31805. source: "./media/characters/arhan/side.svg",
  31806. extra: 3347 / 3105,
  31807. bottom: 0 / 3347
  31808. }
  31809. },
  31810. tongue: {
  31811. height: math.unit(1.42, "feet"),
  31812. name: "Tongue",
  31813. image: {
  31814. source: "./media/characters/arhan/tongue.svg"
  31815. }
  31816. },
  31817. head: {
  31818. height: math.unit(0.85, "feet"),
  31819. name: "Head",
  31820. image: {
  31821. source: "./media/characters/arhan/head.svg"
  31822. }
  31823. },
  31824. },
  31825. [
  31826. {
  31827. name: "Normal",
  31828. height: math.unit(4, "feet"),
  31829. default: true
  31830. },
  31831. ]
  31832. ))
  31833. characterMakers.push(() => makeCharacter(
  31834. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  31835. {
  31836. front: {
  31837. height: math.unit(5 + 7.5 / 12, "feet"),
  31838. weight: math.unit(120, "lb"),
  31839. name: "Front",
  31840. image: {
  31841. source: "./media/characters/digi-duncan/front.svg",
  31842. extra: 330 / 326,
  31843. bottom: 16 / 346
  31844. }
  31845. },
  31846. side: {
  31847. height: math.unit(5 + 7.5 / 12, "feet"),
  31848. weight: math.unit(120, "lb"),
  31849. name: "Side",
  31850. image: {
  31851. source: "./media/characters/digi-duncan/side.svg",
  31852. extra: 341 / 337,
  31853. bottom: 1 / 342
  31854. }
  31855. },
  31856. back: {
  31857. height: math.unit(5 + 7.5 / 12, "feet"),
  31858. weight: math.unit(120, "lb"),
  31859. name: "Back",
  31860. image: {
  31861. source: "./media/characters/digi-duncan/back.svg",
  31862. extra: 330 / 326,
  31863. bottom: 12 / 342
  31864. }
  31865. },
  31866. },
  31867. [
  31868. {
  31869. name: "Speck",
  31870. height: math.unit(0.25, "mm")
  31871. },
  31872. {
  31873. name: "Micro",
  31874. height: math.unit(5, "mm")
  31875. },
  31876. {
  31877. name: "Tiny",
  31878. height: math.unit(0.5, "inches"),
  31879. default: true
  31880. },
  31881. {
  31882. name: "Human",
  31883. height: math.unit(5 + 7.5 / 12, "feet")
  31884. },
  31885. {
  31886. name: "Minigiant",
  31887. height: math.unit(8 + 5.25, "feet")
  31888. },
  31889. {
  31890. name: "Giant",
  31891. height: math.unit(2000, "feet")
  31892. },
  31893. {
  31894. name: "Mega",
  31895. height: math.unit(371.1, "miles")
  31896. },
  31897. ]
  31898. ))
  31899. characterMakers.push(() => makeCharacter(
  31900. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  31901. {
  31902. front: {
  31903. height: math.unit(2, "meters"),
  31904. weight: math.unit(350, "kg"),
  31905. name: "Front",
  31906. image: {
  31907. source: "./media/characters/jagaz-soulbreaker/front.svg",
  31908. extra: 898 / 838,
  31909. bottom: 9 / 907
  31910. }
  31911. },
  31912. },
  31913. [
  31914. {
  31915. name: "Micro",
  31916. height: math.unit(8, "meters")
  31917. },
  31918. {
  31919. name: "Normal",
  31920. height: math.unit(50, "meters"),
  31921. default: true
  31922. },
  31923. {
  31924. name: "Macro",
  31925. height: math.unit(500, "meters")
  31926. },
  31927. ]
  31928. ))
  31929. characterMakers.push(() => makeCharacter(
  31930. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  31931. {
  31932. front: {
  31933. height: math.unit(6 + 6 / 12, "feet"),
  31934. name: "Front",
  31935. image: {
  31936. source: "./media/characters/khardesh/front.svg",
  31937. extra: 1788/1596,
  31938. bottom: 66/1854
  31939. }
  31940. },
  31941. back: {
  31942. height: math.unit(6 + 6 / 12, "feet"),
  31943. name: "Back",
  31944. image: {
  31945. source: "./media/characters/khardesh/back.svg",
  31946. extra: 1781/1584,
  31947. bottom: 68/1849
  31948. }
  31949. },
  31950. },
  31951. [
  31952. {
  31953. name: "Normal",
  31954. height: math.unit(6 + 6 / 12, "feet"),
  31955. default: true
  31956. },
  31957. {
  31958. name: "Normal+",
  31959. height: math.unit(4, "meters")
  31960. },
  31961. {
  31962. name: "Macro",
  31963. height: math.unit(50, "meters")
  31964. },
  31965. {
  31966. name: "Macro+",
  31967. height: math.unit(100, "meters")
  31968. },
  31969. {
  31970. name: "Megamacro",
  31971. height: math.unit(20, "km")
  31972. },
  31973. ]
  31974. ))
  31975. characterMakers.push(() => makeCharacter(
  31976. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  31977. {
  31978. front: {
  31979. height: math.unit(6, "feet"),
  31980. weight: math.unit(150, "lb"),
  31981. name: "Front",
  31982. image: {
  31983. source: "./media/characters/kosho/front.svg",
  31984. extra: 1847 / 1847,
  31985. bottom: 86 / 1933
  31986. }
  31987. },
  31988. },
  31989. [
  31990. {
  31991. name: "Second-stage micro",
  31992. height: math.unit(0.5, "inches")
  31993. },
  31994. {
  31995. name: "First-stage micro",
  31996. height: math.unit(6, "inches")
  31997. },
  31998. {
  31999. name: "Normal",
  32000. height: math.unit(6, "feet"),
  32001. default: true
  32002. },
  32003. {
  32004. name: "First-stage macro",
  32005. height: math.unit(72, "feet")
  32006. },
  32007. {
  32008. name: "Second-stage macro",
  32009. height: math.unit(864, "feet")
  32010. },
  32011. ]
  32012. ))
  32013. characterMakers.push(() => makeCharacter(
  32014. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  32015. {
  32016. normal: {
  32017. height: math.unit(4 + 6 / 12, "feet"),
  32018. name: "Normal",
  32019. image: {
  32020. source: "./media/characters/hydra/normal.svg",
  32021. extra: 2833 / 2634,
  32022. bottom: 68 / 2901
  32023. }
  32024. },
  32025. smol: {
  32026. height: math.unit(0.705, "inches"),
  32027. name: "Smol",
  32028. image: {
  32029. source: "./media/characters/hydra/smol.svg",
  32030. extra: 2715 / 2540,
  32031. bottom: 0 / 2715
  32032. }
  32033. },
  32034. },
  32035. [
  32036. {
  32037. name: "Normal",
  32038. height: math.unit(4 + 6 / 12, "feet"),
  32039. default: true
  32040. }
  32041. ]
  32042. ))
  32043. characterMakers.push(() => makeCharacter(
  32044. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  32045. {
  32046. front: {
  32047. height: math.unit(0.6, "cm"),
  32048. name: "Front",
  32049. image: {
  32050. source: "./media/characters/daz/front.svg",
  32051. extra: 1682 / 1164,
  32052. bottom: 42 / 1724
  32053. }
  32054. },
  32055. },
  32056. [
  32057. {
  32058. name: "Normal",
  32059. height: math.unit(0.6, "cm"),
  32060. default: true
  32061. },
  32062. ]
  32063. ))
  32064. characterMakers.push(() => makeCharacter(
  32065. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  32066. {
  32067. front: {
  32068. height: math.unit(6, "feet"),
  32069. weight: math.unit(235, "lb"),
  32070. name: "Front",
  32071. image: {
  32072. source: "./media/characters/theo-pangolin/front.svg",
  32073. extra: 1996 / 1969,
  32074. bottom: 115 / 2111
  32075. }
  32076. },
  32077. back: {
  32078. height: math.unit(6, "feet"),
  32079. weight: math.unit(235, "lb"),
  32080. name: "Back",
  32081. image: {
  32082. source: "./media/characters/theo-pangolin/back.svg",
  32083. extra: 1979 / 1979,
  32084. bottom: 40 / 2019
  32085. }
  32086. },
  32087. feral: {
  32088. height: math.unit(2, "feet"),
  32089. weight: math.unit(30, "lb"),
  32090. name: "Feral",
  32091. image: {
  32092. source: "./media/characters/theo-pangolin/feral.svg",
  32093. extra: 803 / 791,
  32094. bottom: 181 / 984
  32095. }
  32096. },
  32097. footFive: {
  32098. height: math.unit(1.43, "feet"),
  32099. name: "Foot (Five Toes)",
  32100. image: {
  32101. source: "./media/characters/theo-pangolin/foot-five.svg"
  32102. }
  32103. },
  32104. footFour: {
  32105. height: math.unit(1.43, "feet"),
  32106. name: "Foot (Four Toes)",
  32107. image: {
  32108. source: "./media/characters/theo-pangolin/foot-four.svg"
  32109. }
  32110. },
  32111. handFour: {
  32112. height: math.unit(0.81, "feet"),
  32113. name: "Hand (Four Fingers)",
  32114. image: {
  32115. source: "./media/characters/theo-pangolin/hand-four.svg"
  32116. }
  32117. },
  32118. handThree: {
  32119. height: math.unit(0.81, "feet"),
  32120. name: "Hand (Three Fingers)",
  32121. image: {
  32122. source: "./media/characters/theo-pangolin/hand-three.svg"
  32123. }
  32124. },
  32125. headFront: {
  32126. height: math.unit(1.37, "feet"),
  32127. name: "Head (Front)",
  32128. image: {
  32129. source: "./media/characters/theo-pangolin/head-front.svg"
  32130. }
  32131. },
  32132. headSide: {
  32133. height: math.unit(1.43, "feet"),
  32134. name: "Head (Side)",
  32135. image: {
  32136. source: "./media/characters/theo-pangolin/head-side.svg"
  32137. }
  32138. },
  32139. tongue: {
  32140. height: math.unit(2.29, "feet"),
  32141. name: "Tongue",
  32142. image: {
  32143. source: "./media/characters/theo-pangolin/tongue.svg"
  32144. }
  32145. },
  32146. },
  32147. [
  32148. {
  32149. name: "Normal",
  32150. height: math.unit(6, "feet")
  32151. },
  32152. {
  32153. name: "Macro",
  32154. height: math.unit(400, "feet"),
  32155. default: true
  32156. },
  32157. ]
  32158. ))
  32159. characterMakers.push(() => makeCharacter(
  32160. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  32161. {
  32162. front: {
  32163. height: math.unit(6, "inches"),
  32164. weight: math.unit(0.036, "kg"),
  32165. name: "Front",
  32166. image: {
  32167. source: "./media/characters/renée/front.svg",
  32168. extra: 900 / 886,
  32169. bottom: 8 / 908
  32170. }
  32171. },
  32172. },
  32173. [
  32174. {
  32175. name: "Nano",
  32176. height: math.unit(1, "nm")
  32177. },
  32178. {
  32179. name: "Micro",
  32180. height: math.unit(1, "mm")
  32181. },
  32182. {
  32183. name: "Normal",
  32184. height: math.unit(6, "inches")
  32185. },
  32186. {
  32187. name: "Macro",
  32188. height: math.unit(2000, "feet"),
  32189. default: true
  32190. },
  32191. {
  32192. name: "Megamacro",
  32193. height: math.unit(2, "km")
  32194. },
  32195. {
  32196. name: "Gigamacro",
  32197. height: math.unit(2000, "km")
  32198. },
  32199. {
  32200. name: "Teramacro",
  32201. height: math.unit(250000, "km")
  32202. },
  32203. ]
  32204. ))
  32205. characterMakers.push(() => makeCharacter(
  32206. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  32207. {
  32208. front: {
  32209. height: math.unit(4, "meters"),
  32210. weight: math.unit(150, "kg"),
  32211. name: "Front",
  32212. image: {
  32213. source: "./media/characters/caledvwlch/front.svg",
  32214. extra: 1757/1537,
  32215. bottom: 31/1788
  32216. }
  32217. },
  32218. side: {
  32219. height: math.unit(4, "meters"),
  32220. weight: math.unit(150, "kg"),
  32221. name: "Side",
  32222. image: {
  32223. source: "./media/characters/caledvwlch/side.svg",
  32224. extra: 1605 / 1536,
  32225. bottom: 31 / 1636
  32226. }
  32227. },
  32228. back: {
  32229. height: math.unit(4, "meters"),
  32230. weight: math.unit(150, "kg"),
  32231. name: "Back",
  32232. image: {
  32233. source: "./media/characters/caledvwlch/back.svg",
  32234. extra: 1635 / 1565,
  32235. bottom: 27 / 1662
  32236. }
  32237. },
  32238. },
  32239. [
  32240. {
  32241. name: "\"Incognito\"",
  32242. height: math.unit(4, "meters")
  32243. },
  32244. {
  32245. name: "Small rampage",
  32246. height: math.unit(600, "meters")
  32247. },
  32248. {
  32249. name: "Mega",
  32250. height: math.unit(30, "km")
  32251. },
  32252. {
  32253. name: "Home-size",
  32254. height: math.unit(50, "km"),
  32255. default: true
  32256. },
  32257. {
  32258. name: "Giga",
  32259. height: math.unit(300, "km")
  32260. },
  32261. {
  32262. name: "Lounging",
  32263. height: math.unit(11000, "km")
  32264. },
  32265. {
  32266. name: "Planet snacking",
  32267. height: math.unit(2000000, "km")
  32268. },
  32269. ]
  32270. ))
  32271. characterMakers.push(() => makeCharacter(
  32272. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  32273. {
  32274. front: {
  32275. height: math.unit(6, "feet"),
  32276. weight: math.unit(215, "lb"),
  32277. name: "Front",
  32278. image: {
  32279. source: "./media/characters/sapphire-svell/front.svg",
  32280. extra: 495 / 455,
  32281. bottom: 20 / 515
  32282. }
  32283. },
  32284. back: {
  32285. height: math.unit(6, "feet"),
  32286. weight: math.unit(216, "lb"),
  32287. name: "Back",
  32288. image: {
  32289. source: "./media/characters/sapphire-svell/back.svg",
  32290. extra: 497 / 477,
  32291. bottom: 7 / 504
  32292. }
  32293. },
  32294. maw: {
  32295. height: math.unit(1.57, "feet"),
  32296. name: "Maw",
  32297. image: {
  32298. source: "./media/characters/sapphire-svell/maw.svg"
  32299. }
  32300. },
  32301. foot: {
  32302. height: math.unit(1.07, "feet"),
  32303. name: "Foot",
  32304. image: {
  32305. source: "./media/characters/sapphire-svell/foot.svg"
  32306. }
  32307. },
  32308. toering: {
  32309. height: math.unit(1.7, "inch"),
  32310. name: "Toering",
  32311. image: {
  32312. source: "./media/characters/sapphire-svell/toering.svg"
  32313. }
  32314. },
  32315. },
  32316. [
  32317. {
  32318. name: "Normal",
  32319. height: math.unit(300, "feet"),
  32320. default: true
  32321. },
  32322. {
  32323. name: "Augmented",
  32324. height: math.unit(1250, "feet")
  32325. },
  32326. {
  32327. name: "Unleashed",
  32328. height: math.unit(3000, "feet")
  32329. },
  32330. ]
  32331. ))
  32332. characterMakers.push(() => makeCharacter(
  32333. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  32334. {
  32335. side: {
  32336. height: math.unit(2 + 3 / 12, "feet"),
  32337. weight: math.unit(110, "lb"),
  32338. name: "Side",
  32339. image: {
  32340. source: "./media/characters/glitch-flux/side.svg",
  32341. extra: 997 / 805,
  32342. bottom: 20 / 1017
  32343. }
  32344. },
  32345. },
  32346. [
  32347. {
  32348. name: "Normal",
  32349. height: math.unit(2 + 3 / 12, "feet"),
  32350. default: true
  32351. },
  32352. ]
  32353. ))
  32354. characterMakers.push(() => makeCharacter(
  32355. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  32356. {
  32357. front: {
  32358. height: math.unit(4, "meters"),
  32359. name: "Front",
  32360. image: {
  32361. source: "./media/characters/mid/front.svg",
  32362. extra: 507 / 476,
  32363. bottom: 17 / 524
  32364. }
  32365. },
  32366. back: {
  32367. height: math.unit(4, "meters"),
  32368. name: "Back",
  32369. image: {
  32370. source: "./media/characters/mid/back.svg",
  32371. extra: 519 / 487,
  32372. bottom: 7 / 526
  32373. }
  32374. },
  32375. stuck: {
  32376. height: math.unit(2.2, "meters"),
  32377. name: "Stuck",
  32378. image: {
  32379. source: "./media/characters/mid/stuck.svg",
  32380. extra: 1951 / 1869,
  32381. bottom: 88 / 2039
  32382. }
  32383. }
  32384. },
  32385. [
  32386. {
  32387. name: "Normal",
  32388. height: math.unit(4, "meters"),
  32389. default: true
  32390. },
  32391. {
  32392. name: "Big",
  32393. height: math.unit(10, "meters")
  32394. },
  32395. {
  32396. name: "Macro",
  32397. height: math.unit(800, "meters")
  32398. },
  32399. {
  32400. name: "Megamacro",
  32401. height: math.unit(100, "km")
  32402. },
  32403. {
  32404. name: "Overgrown",
  32405. height: math.unit(1, "parsec")
  32406. },
  32407. ]
  32408. ))
  32409. characterMakers.push(() => makeCharacter(
  32410. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  32411. {
  32412. front: {
  32413. height: math.unit(2.5, "meters"),
  32414. weight: math.unit(225, "kg"),
  32415. name: "Front",
  32416. image: {
  32417. source: "./media/characters/iris/front.svg",
  32418. extra: 3348 / 3251,
  32419. bottom: 205 / 3553
  32420. }
  32421. },
  32422. maw: {
  32423. height: math.unit(0.56, "meter"),
  32424. name: "Maw",
  32425. image: {
  32426. source: "./media/characters/iris/maw.svg"
  32427. }
  32428. },
  32429. },
  32430. [
  32431. {
  32432. name: "Mewter cat",
  32433. height: math.unit(1.2, "meters")
  32434. },
  32435. {
  32436. name: "Normal",
  32437. height: math.unit(2.5, "meters"),
  32438. default: true
  32439. },
  32440. {
  32441. name: "Minimacro",
  32442. height: math.unit(18, "feet")
  32443. },
  32444. {
  32445. name: "Macro",
  32446. height: math.unit(140, "feet")
  32447. },
  32448. {
  32449. name: "Macro+",
  32450. height: math.unit(180, "meters")
  32451. },
  32452. {
  32453. name: "Megamacro",
  32454. height: math.unit(2746, "meters")
  32455. },
  32456. ]
  32457. ))
  32458. characterMakers.push(() => makeCharacter(
  32459. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  32460. {
  32461. front: {
  32462. height: math.unit(6, "feet"),
  32463. weight: math.unit(135, "lb"),
  32464. name: "Front",
  32465. image: {
  32466. source: "./media/characters/axel/front.svg",
  32467. extra: 908 / 908,
  32468. bottom: 58 / 966
  32469. }
  32470. },
  32471. side: {
  32472. height: math.unit(6, "feet"),
  32473. weight: math.unit(135, "lb"),
  32474. name: "Side",
  32475. image: {
  32476. source: "./media/characters/axel/side.svg",
  32477. extra: 958 / 958,
  32478. bottom: 11 / 969
  32479. }
  32480. },
  32481. back: {
  32482. height: math.unit(6, "feet"),
  32483. weight: math.unit(135, "lb"),
  32484. name: "Back",
  32485. image: {
  32486. source: "./media/characters/axel/back.svg",
  32487. extra: 887 / 887,
  32488. bottom: 34 / 921
  32489. }
  32490. },
  32491. head: {
  32492. height: math.unit(1.07, "feet"),
  32493. name: "Head",
  32494. image: {
  32495. source: "./media/characters/axel/head.svg"
  32496. }
  32497. },
  32498. beak: {
  32499. height: math.unit(1.4, "feet"),
  32500. name: "Beak",
  32501. image: {
  32502. source: "./media/characters/axel/beak.svg"
  32503. }
  32504. },
  32505. beakSide: {
  32506. height: math.unit(1.4, "feet"),
  32507. name: "Beak Side",
  32508. image: {
  32509. source: "./media/characters/axel/beak-side.svg"
  32510. }
  32511. },
  32512. sheath: {
  32513. height: math.unit(0.5, "feet"),
  32514. name: "Sheath",
  32515. image: {
  32516. source: "./media/characters/axel/sheath.svg"
  32517. }
  32518. },
  32519. dick: {
  32520. height: math.unit(0.98, "feet"),
  32521. name: "Dick",
  32522. image: {
  32523. source: "./media/characters/axel/dick.svg"
  32524. }
  32525. },
  32526. },
  32527. [
  32528. {
  32529. name: "Macro",
  32530. height: math.unit(68, "meters"),
  32531. default: true
  32532. },
  32533. ]
  32534. ))
  32535. characterMakers.push(() => makeCharacter(
  32536. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  32537. {
  32538. front: {
  32539. height: math.unit(3.5, "meters"),
  32540. weight: math.unit(1200, "kg"),
  32541. name: "Front",
  32542. image: {
  32543. source: "./media/characters/joanna/front.svg",
  32544. extra: 1596 / 1488,
  32545. bottom: 29 / 1625
  32546. }
  32547. },
  32548. back: {
  32549. height: math.unit(3.5, "meters"),
  32550. weight: math.unit(1200, "kg"),
  32551. name: "Back",
  32552. image: {
  32553. source: "./media/characters/joanna/back.svg",
  32554. extra: 1594 / 1495,
  32555. bottom: 26 / 1620
  32556. }
  32557. },
  32558. frontShorts: {
  32559. height: math.unit(3.5, "meters"),
  32560. weight: math.unit(1200, "kg"),
  32561. name: "Front (Shorts)",
  32562. image: {
  32563. source: "./media/characters/joanna/front-shorts.svg",
  32564. extra: 1596 / 1488,
  32565. bottom: 29 / 1625
  32566. }
  32567. },
  32568. frontBiker: {
  32569. height: math.unit(3.5, "meters"),
  32570. weight: math.unit(1200, "kg"),
  32571. name: "Front (Biker)",
  32572. image: {
  32573. source: "./media/characters/joanna/front-biker.svg",
  32574. extra: 1596 / 1488,
  32575. bottom: 29 / 1625
  32576. }
  32577. },
  32578. backBiker: {
  32579. height: math.unit(3.5, "meters"),
  32580. weight: math.unit(1200, "kg"),
  32581. name: "Back (Biker)",
  32582. image: {
  32583. source: "./media/characters/joanna/back-biker.svg",
  32584. extra: 1594 / 1495,
  32585. bottom: 88 / 1682
  32586. }
  32587. },
  32588. bikeLeft: {
  32589. height: math.unit(2.4, "meters"),
  32590. weight: math.unit(1600, "kg"),
  32591. name: "Bike (Left)",
  32592. image: {
  32593. source: "./media/characters/joanna/bike-left.svg",
  32594. extra: 720 / 720,
  32595. bottom: 8 / 728
  32596. }
  32597. },
  32598. bikeRight: {
  32599. height: math.unit(2.4, "meters"),
  32600. weight: math.unit(1600, "kg"),
  32601. name: "Bike (Right)",
  32602. image: {
  32603. source: "./media/characters/joanna/bike-right.svg",
  32604. extra: 720 / 720,
  32605. bottom: 8 / 728
  32606. }
  32607. },
  32608. },
  32609. [
  32610. {
  32611. name: "Incognito",
  32612. height: math.unit(3.5, "meters")
  32613. },
  32614. {
  32615. name: "Casual Big",
  32616. height: math.unit(200, "meters")
  32617. },
  32618. {
  32619. name: "Macro",
  32620. height: math.unit(600, "meters")
  32621. },
  32622. {
  32623. name: "Original",
  32624. height: math.unit(20, "km"),
  32625. default: true
  32626. },
  32627. {
  32628. name: "Giga",
  32629. height: math.unit(400, "km")
  32630. },
  32631. {
  32632. name: "Lounging",
  32633. height: math.unit(1500, "km")
  32634. },
  32635. {
  32636. name: "Planetary",
  32637. height: math.unit(200000, "km")
  32638. },
  32639. ]
  32640. ))
  32641. characterMakers.push(() => makeCharacter(
  32642. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  32643. {
  32644. front: {
  32645. height: math.unit(6, "feet"),
  32646. weight: math.unit(150, "lb"),
  32647. name: "Front",
  32648. image: {
  32649. source: "./media/characters/hugo-sigil/front.svg",
  32650. extra: 522 / 500,
  32651. bottom: 2 / 524
  32652. }
  32653. },
  32654. back: {
  32655. height: math.unit(6, "feet"),
  32656. weight: math.unit(150, "lb"),
  32657. name: "Back",
  32658. image: {
  32659. source: "./media/characters/hugo-sigil/back.svg",
  32660. extra: 519 / 495,
  32661. bottom: 5 / 524
  32662. }
  32663. },
  32664. maw: {
  32665. height: math.unit(1.4, "feet"),
  32666. weight: math.unit(150, "lb"),
  32667. name: "Maw",
  32668. image: {
  32669. source: "./media/characters/hugo-sigil/maw.svg"
  32670. }
  32671. },
  32672. feet: {
  32673. height: math.unit(1.56, "feet"),
  32674. weight: math.unit(150, "lb"),
  32675. name: "Feet",
  32676. image: {
  32677. source: "./media/characters/hugo-sigil/feet.svg",
  32678. extra: 177 / 177,
  32679. bottom: 12 / 189
  32680. }
  32681. },
  32682. },
  32683. [
  32684. {
  32685. name: "Normal",
  32686. height: math.unit(6, "feet")
  32687. },
  32688. {
  32689. name: "Macro",
  32690. height: math.unit(200, "feet"),
  32691. default: true
  32692. },
  32693. ]
  32694. ))
  32695. characterMakers.push(() => makeCharacter(
  32696. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  32697. {
  32698. front: {
  32699. height: math.unit(6, "feet"),
  32700. weight: math.unit(150, "lb"),
  32701. name: "Front",
  32702. image: {
  32703. source: "./media/characters/peri/front.svg",
  32704. extra: 2354 / 2233,
  32705. bottom: 49 / 2403
  32706. }
  32707. },
  32708. },
  32709. [
  32710. {
  32711. name: "Really Small",
  32712. height: math.unit(1, "nm")
  32713. },
  32714. {
  32715. name: "Micro",
  32716. height: math.unit(4, "inches")
  32717. },
  32718. {
  32719. name: "Normal",
  32720. height: math.unit(7, "inches"),
  32721. default: true
  32722. },
  32723. {
  32724. name: "Macro",
  32725. height: math.unit(400, "feet")
  32726. },
  32727. {
  32728. name: "Megamacro",
  32729. height: math.unit(100, "miles")
  32730. },
  32731. ]
  32732. ))
  32733. characterMakers.push(() => makeCharacter(
  32734. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  32735. {
  32736. frontSlim: {
  32737. height: math.unit(7, "feet"),
  32738. name: "Front (Slim)",
  32739. image: {
  32740. source: "./media/characters/issilora/front-slim.svg",
  32741. extra: 529 / 449,
  32742. bottom: 53 / 582
  32743. }
  32744. },
  32745. sideSlim: {
  32746. height: math.unit(7, "feet"),
  32747. name: "Side (Slim)",
  32748. image: {
  32749. source: "./media/characters/issilora/side-slim.svg",
  32750. extra: 570 / 480,
  32751. bottom: 30 / 600
  32752. }
  32753. },
  32754. backSlim: {
  32755. height: math.unit(7, "feet"),
  32756. name: "Back (Slim)",
  32757. image: {
  32758. source: "./media/characters/issilora/back-slim.svg",
  32759. extra: 537 / 455,
  32760. bottom: 46 / 583
  32761. }
  32762. },
  32763. frontBuff: {
  32764. height: math.unit(7, "feet"),
  32765. name: "Front (Buff)",
  32766. image: {
  32767. source: "./media/characters/issilora/front-buff.svg",
  32768. extra: 2310 / 2035,
  32769. bottom: 335 / 2645
  32770. }
  32771. },
  32772. head: {
  32773. height: math.unit(1.94, "feet"),
  32774. name: "Head",
  32775. image: {
  32776. source: "./media/characters/issilora/head.svg"
  32777. }
  32778. },
  32779. },
  32780. [
  32781. {
  32782. name: "Minimum",
  32783. height: math.unit(7, "feet")
  32784. },
  32785. {
  32786. name: "Comfortable",
  32787. height: math.unit(17, "feet")
  32788. },
  32789. {
  32790. name: "Fun Size",
  32791. height: math.unit(47, "feet")
  32792. },
  32793. {
  32794. name: "Natural Macro",
  32795. height: math.unit(137, "feet"),
  32796. default: true
  32797. },
  32798. {
  32799. name: "Maximum Kaiju",
  32800. height: math.unit(397, "feet")
  32801. },
  32802. ]
  32803. ))
  32804. characterMakers.push(() => makeCharacter(
  32805. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  32806. {
  32807. front: {
  32808. height: math.unit(50 + 9/12, "feet"),
  32809. weight: math.unit(32.8, "tons"),
  32810. name: "Front",
  32811. image: {
  32812. source: "./media/characters/irb'iiritaahn/front.svg",
  32813. extra: 1878/1826,
  32814. bottom: 326/2204
  32815. }
  32816. },
  32817. back: {
  32818. height: math.unit(50 + 9/12, "feet"),
  32819. weight: math.unit(32.8, "tons"),
  32820. name: "Back",
  32821. image: {
  32822. source: "./media/characters/irb'iiritaahn/back.svg",
  32823. extra: 2052/2018,
  32824. bottom: 152/2204
  32825. }
  32826. },
  32827. head: {
  32828. height: math.unit(12.86, "feet"),
  32829. name: "Head",
  32830. image: {
  32831. source: "./media/characters/irb'iiritaahn/head.svg"
  32832. }
  32833. },
  32834. maw: {
  32835. height: math.unit(9.66, "feet"),
  32836. name: "Maw",
  32837. image: {
  32838. source: "./media/characters/irb'iiritaahn/maw.svg"
  32839. }
  32840. },
  32841. frontDick: {
  32842. height: math.unit(8.78461, "feet"),
  32843. name: "Front Dick",
  32844. image: {
  32845. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  32846. }
  32847. },
  32848. rearDick: {
  32849. height: math.unit(8.78461, "feet"),
  32850. name: "Rear Dick",
  32851. image: {
  32852. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  32853. }
  32854. },
  32855. rearDickUnfolded: {
  32856. height: math.unit(8.78, "feet"),
  32857. name: "Rear Dick (Unfolded)",
  32858. image: {
  32859. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  32860. }
  32861. },
  32862. wings: {
  32863. height: math.unit(43, "feet"),
  32864. name: "Wings",
  32865. image: {
  32866. source: "./media/characters/irb'iiritaahn/wings.svg"
  32867. }
  32868. },
  32869. },
  32870. [
  32871. {
  32872. name: "Macro",
  32873. height: math.unit(50 + 9/12, "feet"),
  32874. default: true
  32875. },
  32876. ]
  32877. ))
  32878. characterMakers.push(() => makeCharacter(
  32879. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  32880. {
  32881. front: {
  32882. height: math.unit(205, "cm"),
  32883. weight: math.unit(102, "kg"),
  32884. name: "Front",
  32885. image: {
  32886. source: "./media/characters/irbisgreif/front.svg",
  32887. extra: 785/706,
  32888. bottom: 13/798
  32889. }
  32890. },
  32891. back: {
  32892. height: math.unit(205, "cm"),
  32893. weight: math.unit(102, "kg"),
  32894. name: "Back",
  32895. image: {
  32896. source: "./media/characters/irbisgreif/back.svg",
  32897. extra: 713/701,
  32898. bottom: 26/739
  32899. }
  32900. },
  32901. frontDressed: {
  32902. height: math.unit(216, "cm"),
  32903. weight: math.unit(102, "kg"),
  32904. name: "Front-dressed",
  32905. image: {
  32906. source: "./media/characters/irbisgreif/front-dressed.svg",
  32907. extra: 902/776,
  32908. bottom: 14/916
  32909. }
  32910. },
  32911. sideDressed: {
  32912. height: math.unit(195, "cm"),
  32913. weight: math.unit(102, "kg"),
  32914. name: "Side-dressed",
  32915. image: {
  32916. source: "./media/characters/irbisgreif/side-dressed.svg",
  32917. extra: 788/688,
  32918. bottom: 21/809
  32919. }
  32920. },
  32921. backDressed: {
  32922. height: math.unit(216, "cm"),
  32923. weight: math.unit(102, "kg"),
  32924. name: "Back-dressed",
  32925. image: {
  32926. source: "./media/characters/irbisgreif/back-dressed.svg",
  32927. extra: 901/783,
  32928. bottom: 10/911
  32929. }
  32930. },
  32931. dick: {
  32932. height: math.unit(0.49, "feet"),
  32933. name: "Dick",
  32934. image: {
  32935. source: "./media/characters/irbisgreif/dick.svg"
  32936. }
  32937. },
  32938. wingTop: {
  32939. height: math.unit(1.93 , "feet"),
  32940. name: "Wing-top",
  32941. image: {
  32942. source: "./media/characters/irbisgreif/wing-top.svg"
  32943. }
  32944. },
  32945. wingBottom: {
  32946. height: math.unit(1.93 , "feet"),
  32947. name: "Wing-bottom",
  32948. image: {
  32949. source: "./media/characters/irbisgreif/wing-bottom.svg"
  32950. }
  32951. },
  32952. },
  32953. [
  32954. {
  32955. name: "Normal",
  32956. height: math.unit(216, "cm"),
  32957. default: true
  32958. },
  32959. ]
  32960. ))
  32961. characterMakers.push(() => makeCharacter(
  32962. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  32963. {
  32964. front: {
  32965. height: math.unit(6, "feet"),
  32966. weight: math.unit(150, "lb"),
  32967. name: "Front",
  32968. image: {
  32969. source: "./media/characters/pride/front.svg",
  32970. extra: 1299/1230,
  32971. bottom: 18/1317
  32972. }
  32973. },
  32974. },
  32975. [
  32976. {
  32977. name: "Normal",
  32978. height: math.unit(7, "feet")
  32979. },
  32980. {
  32981. name: "Mini-macro",
  32982. height: math.unit(11, "feet")
  32983. },
  32984. {
  32985. name: "Macro",
  32986. height: math.unit(15, "meters"),
  32987. default: true
  32988. },
  32989. {
  32990. name: "Macro+",
  32991. height: math.unit(40, "meters")
  32992. },
  32993. ]
  32994. ))
  32995. characterMakers.push(() => makeCharacter(
  32996. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  32997. {
  32998. front: {
  32999. height: math.unit(4 + 2 / 12, "feet"),
  33000. weight: math.unit(95, "lb"),
  33001. name: "Front",
  33002. image: {
  33003. source: "./media/characters/vaelophis-nyx/front.svg",
  33004. extra: 2532/2330,
  33005. bottom: 0/2532
  33006. }
  33007. },
  33008. back: {
  33009. height: math.unit(4 + 2 / 12, "feet"),
  33010. weight: math.unit(95, "lb"),
  33011. name: "Back",
  33012. image: {
  33013. source: "./media/characters/vaelophis-nyx/back.svg",
  33014. extra: 2484/2361,
  33015. bottom: 0/2484
  33016. }
  33017. },
  33018. feralSide: {
  33019. height: math.unit(2 + 1/12, "feet"),
  33020. weight: math.unit(20, "lb"),
  33021. name: "Feral (Side)",
  33022. image: {
  33023. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  33024. extra: 1721/1581,
  33025. bottom: 70/1791
  33026. }
  33027. },
  33028. feralLazing: {
  33029. height: math.unit(1.08, "feet"),
  33030. weight: math.unit(20, "lb"),
  33031. name: "Feral (Lazing)",
  33032. image: {
  33033. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  33034. extra: 822/822,
  33035. bottom: 248/1070
  33036. }
  33037. },
  33038. ear: {
  33039. height: math.unit(0.416, "feet"),
  33040. name: "Ear",
  33041. image: {
  33042. source: "./media/characters/vaelophis-nyx/ear.svg"
  33043. }
  33044. },
  33045. eye: {
  33046. height: math.unit(0.0748, "feet"),
  33047. name: "Eye",
  33048. image: {
  33049. source: "./media/characters/vaelophis-nyx/eye.svg"
  33050. }
  33051. },
  33052. mouth: {
  33053. height: math.unit(0.378, "feet"),
  33054. name: "Mouth",
  33055. image: {
  33056. source: "./media/characters/vaelophis-nyx/mouth.svg"
  33057. }
  33058. },
  33059. spade: {
  33060. height: math.unit(0.55, "feet"),
  33061. name: "Spade",
  33062. image: {
  33063. source: "./media/characters/vaelophis-nyx/spade.svg"
  33064. }
  33065. },
  33066. },
  33067. [
  33068. {
  33069. name: "Normal",
  33070. height: math.unit(4 + 2/12, "feet"),
  33071. default: true
  33072. },
  33073. ]
  33074. ))
  33075. characterMakers.push(() => makeCharacter(
  33076. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  33077. {
  33078. front: {
  33079. height: math.unit(7, "feet"),
  33080. weight: math.unit(231, "lb"),
  33081. name: "Front",
  33082. image: {
  33083. source: "./media/characters/flux/front.svg",
  33084. extra: 919/871,
  33085. bottom: 0/919
  33086. }
  33087. },
  33088. back: {
  33089. height: math.unit(7, "feet"),
  33090. weight: math.unit(231, "lb"),
  33091. name: "Back",
  33092. image: {
  33093. source: "./media/characters/flux/back.svg",
  33094. extra: 1040/992,
  33095. bottom: 0/1040
  33096. }
  33097. },
  33098. frontDressed: {
  33099. height: math.unit(7, "feet"),
  33100. weight: math.unit(231, "lb"),
  33101. name: "Front (Dressed)",
  33102. image: {
  33103. source: "./media/characters/flux/front-dressed.svg",
  33104. extra: 919/871,
  33105. bottom: 0/919
  33106. }
  33107. },
  33108. feralSide: {
  33109. height: math.unit(5, "feet"),
  33110. weight: math.unit(150, "lb"),
  33111. name: "Feral (Side)",
  33112. image: {
  33113. source: "./media/characters/flux/feral-side.svg",
  33114. extra: 598/528,
  33115. bottom: 28/626
  33116. }
  33117. },
  33118. head: {
  33119. height: math.unit(1.585, "feet"),
  33120. name: "Head",
  33121. image: {
  33122. source: "./media/characters/flux/head.svg"
  33123. }
  33124. },
  33125. headSide: {
  33126. height: math.unit(1.74, "feet"),
  33127. name: "Head (Side)",
  33128. image: {
  33129. source: "./media/characters/flux/head-side.svg"
  33130. }
  33131. },
  33132. headSideFire: {
  33133. height: math.unit(1.76, "feet"),
  33134. name: "Head (Side, Fire)",
  33135. image: {
  33136. source: "./media/characters/flux/head-side-fire.svg"
  33137. }
  33138. },
  33139. },
  33140. [
  33141. {
  33142. name: "Normal",
  33143. height: math.unit(7, "feet"),
  33144. default: true
  33145. },
  33146. ]
  33147. ))
  33148. characterMakers.push(() => makeCharacter(
  33149. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  33150. {
  33151. front: {
  33152. height: math.unit(9, "feet"),
  33153. weight: math.unit(1012, "lb"),
  33154. name: "Front",
  33155. image: {
  33156. source: "./media/characters/ulfra-lupae/front.svg",
  33157. extra: 1083/1011,
  33158. bottom: 67/1150
  33159. }
  33160. },
  33161. },
  33162. [
  33163. {
  33164. name: "Micro",
  33165. height: math.unit(6, "inches")
  33166. },
  33167. {
  33168. name: "Socializing",
  33169. height: math.unit(6 + 5/12, "feet")
  33170. },
  33171. {
  33172. name: "Normal",
  33173. height: math.unit(9, "feet"),
  33174. default: true
  33175. },
  33176. {
  33177. name: "Macro",
  33178. height: math.unit(150, "feet")
  33179. },
  33180. ]
  33181. ))
  33182. characterMakers.push(() => makeCharacter(
  33183. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  33184. {
  33185. front: {
  33186. height: math.unit(5 + 2/12, "feet"),
  33187. weight: math.unit(120, "lb"),
  33188. name: "Front",
  33189. image: {
  33190. source: "./media/characters/timber/front.svg",
  33191. extra: 2814/2705,
  33192. bottom: 181/2995
  33193. }
  33194. },
  33195. },
  33196. [
  33197. {
  33198. name: "Normal",
  33199. height: math.unit(5 + 2/12, "feet"),
  33200. default: true
  33201. },
  33202. ]
  33203. ))
  33204. characterMakers.push(() => makeCharacter(
  33205. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  33206. {
  33207. front: {
  33208. height: math.unit(9, "feet"),
  33209. name: "Front",
  33210. image: {
  33211. source: "./media/characters/nicki/front.svg",
  33212. extra: 1240/990,
  33213. bottom: 45/1285
  33214. },
  33215. form: "anthro",
  33216. default: true
  33217. },
  33218. side: {
  33219. height: math.unit(9, "feet"),
  33220. name: "Side",
  33221. image: {
  33222. source: "./media/characters/nicki/side.svg",
  33223. extra: 1047/973,
  33224. bottom: 61/1108
  33225. },
  33226. form: "anthro"
  33227. },
  33228. back: {
  33229. height: math.unit(9, "feet"),
  33230. name: "Back",
  33231. image: {
  33232. source: "./media/characters/nicki/back.svg",
  33233. extra: 1006/965,
  33234. bottom: 39/1045
  33235. },
  33236. form: "anthro"
  33237. },
  33238. taur: {
  33239. height: math.unit(15, "feet"),
  33240. name: "Taur",
  33241. image: {
  33242. source: "./media/characters/nicki/taur.svg",
  33243. extra: 1592/1347,
  33244. bottom: 0/1592
  33245. },
  33246. form: "taur",
  33247. default: true
  33248. },
  33249. },
  33250. [
  33251. {
  33252. name: "Normal",
  33253. height: math.unit(9, "feet"),
  33254. form: "anthro",
  33255. default: true
  33256. },
  33257. {
  33258. name: "Normal",
  33259. height: math.unit(15, "feet"),
  33260. form: "taur",
  33261. default: true
  33262. }
  33263. ],
  33264. {
  33265. "anthro": {
  33266. name: "Anthro",
  33267. default: true
  33268. },
  33269. "taur": {
  33270. name: "Taur"
  33271. }
  33272. }
  33273. ))
  33274. characterMakers.push(() => makeCharacter(
  33275. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  33276. {
  33277. front: {
  33278. height: math.unit(7 + 10/12, "feet"),
  33279. weight: math.unit(3.5, "tons"),
  33280. name: "Front",
  33281. image: {
  33282. source: "./media/characters/lee/front.svg",
  33283. extra: 1773/1615,
  33284. bottom: 86/1859
  33285. }
  33286. },
  33287. hand: {
  33288. height: math.unit(1.78, "feet"),
  33289. name: "Hand",
  33290. image: {
  33291. source: "./media/characters/lee/hand.svg"
  33292. }
  33293. },
  33294. maw: {
  33295. height: math.unit(1.18, "feet"),
  33296. name: "Maw",
  33297. image: {
  33298. source: "./media/characters/lee/maw.svg"
  33299. }
  33300. },
  33301. },
  33302. [
  33303. {
  33304. name: "Normal",
  33305. height: math.unit(7 + 10/12, "feet"),
  33306. default: true
  33307. },
  33308. ]
  33309. ))
  33310. characterMakers.push(() => makeCharacter(
  33311. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  33312. {
  33313. front: {
  33314. height: math.unit(9, "feet"),
  33315. name: "Front",
  33316. image: {
  33317. source: "./media/characters/guti/front.svg",
  33318. extra: 4551/4355,
  33319. bottom: 123/4674
  33320. }
  33321. },
  33322. tongue: {
  33323. height: math.unit(1, "feet"),
  33324. name: "Tongue",
  33325. image: {
  33326. source: "./media/characters/guti/tongue.svg"
  33327. }
  33328. },
  33329. paw: {
  33330. height: math.unit(1.18, "feet"),
  33331. name: "Paw",
  33332. image: {
  33333. source: "./media/characters/guti/paw.svg"
  33334. }
  33335. },
  33336. },
  33337. [
  33338. {
  33339. name: "Normal",
  33340. height: math.unit(9, "feet"),
  33341. default: true
  33342. },
  33343. ]
  33344. ))
  33345. characterMakers.push(() => makeCharacter(
  33346. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  33347. {
  33348. side: {
  33349. height: math.unit(5, "meters"),
  33350. name: "Side",
  33351. image: {
  33352. source: "./media/characters/vesper/side.svg",
  33353. extra: 1605/1518,
  33354. bottom: 0/1605
  33355. }
  33356. },
  33357. },
  33358. [
  33359. {
  33360. name: "Small",
  33361. height: math.unit(5, "meters")
  33362. },
  33363. {
  33364. name: "Sage",
  33365. height: math.unit(100, "meters"),
  33366. default: true
  33367. },
  33368. {
  33369. name: "Fun Size",
  33370. height: math.unit(600, "meters")
  33371. },
  33372. {
  33373. name: "Goddess",
  33374. height: math.unit(20000, "km")
  33375. },
  33376. {
  33377. name: "Maximum",
  33378. height: math.unit(5, "galaxies")
  33379. },
  33380. ]
  33381. ))
  33382. characterMakers.push(() => makeCharacter(
  33383. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  33384. {
  33385. front: {
  33386. height: math.unit(6 + 3/12, "feet"),
  33387. weight: math.unit(190, "lb"),
  33388. name: "Front",
  33389. image: {
  33390. source: "./media/characters/gawain/front.svg",
  33391. extra: 2222/2139,
  33392. bottom: 90/2312
  33393. }
  33394. },
  33395. back: {
  33396. height: math.unit(6 + 3/12, "feet"),
  33397. weight: math.unit(190, "lb"),
  33398. name: "Back",
  33399. image: {
  33400. source: "./media/characters/gawain/back.svg",
  33401. extra: 2199/2111,
  33402. bottom: 73/2272
  33403. }
  33404. },
  33405. },
  33406. [
  33407. {
  33408. name: "Normal",
  33409. height: math.unit(6 + 3/12, "feet"),
  33410. default: true
  33411. },
  33412. ]
  33413. ))
  33414. characterMakers.push(() => makeCharacter(
  33415. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  33416. {
  33417. side: {
  33418. height: math.unit(3.5, "meters"),
  33419. weight: math.unit(16000, "lb"),
  33420. name: "Side",
  33421. image: {
  33422. source: "./media/characters/dascalti/side.svg",
  33423. extra: 392/273,
  33424. bottom: 47/439
  33425. }
  33426. },
  33427. breath: {
  33428. height: math.unit(7.4, "feet"),
  33429. name: "Breath",
  33430. image: {
  33431. source: "./media/characters/dascalti/breath.svg"
  33432. }
  33433. },
  33434. fed: {
  33435. height: math.unit(3.6, "meters"),
  33436. weight: math.unit(16000, "lb"),
  33437. name: "Fed",
  33438. image: {
  33439. source: "./media/characters/dascalti/fed.svg",
  33440. extra: 1419/820,
  33441. bottom: 95/1514
  33442. }
  33443. },
  33444. },
  33445. [
  33446. {
  33447. name: "Normal",
  33448. height: math.unit(3.5, "meters"),
  33449. default: true
  33450. },
  33451. ]
  33452. ))
  33453. characterMakers.push(() => makeCharacter(
  33454. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  33455. {
  33456. front: {
  33457. height: math.unit(3 + 5/12, "feet"),
  33458. name: "Front",
  33459. image: {
  33460. source: "./media/characters/mauve/front.svg",
  33461. extra: 1126/1033,
  33462. bottom: 65/1191
  33463. }
  33464. },
  33465. side: {
  33466. height: math.unit(3 + 5/12, "feet"),
  33467. name: "Side",
  33468. image: {
  33469. source: "./media/characters/mauve/side.svg",
  33470. extra: 1089/1001,
  33471. bottom: 29/1118
  33472. }
  33473. },
  33474. back: {
  33475. height: math.unit(3 + 5/12, "feet"),
  33476. name: "Back",
  33477. image: {
  33478. source: "./media/characters/mauve/back.svg",
  33479. extra: 1173/1053,
  33480. bottom: 109/1282
  33481. }
  33482. },
  33483. },
  33484. [
  33485. {
  33486. name: "Normal",
  33487. height: math.unit(3 + 5/12, "feet"),
  33488. default: true
  33489. },
  33490. ]
  33491. ))
  33492. characterMakers.push(() => makeCharacter(
  33493. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  33494. {
  33495. front: {
  33496. height: math.unit(6 + 3/12, "feet"),
  33497. weight: math.unit(430, "lb"),
  33498. name: "Front",
  33499. image: {
  33500. source: "./media/characters/carlos/front.svg",
  33501. extra: 1964/1913,
  33502. bottom: 70/2034
  33503. }
  33504. },
  33505. },
  33506. [
  33507. {
  33508. name: "Normal",
  33509. height: math.unit(6 + 3/12, "feet"),
  33510. default: true
  33511. },
  33512. ]
  33513. ))
  33514. characterMakers.push(() => makeCharacter(
  33515. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  33516. {
  33517. back: {
  33518. height: math.unit(5 + 10/12, "feet"),
  33519. weight: math.unit(200, "lb"),
  33520. name: "Back",
  33521. image: {
  33522. source: "./media/characters/jax/back.svg",
  33523. extra: 764/739,
  33524. bottom: 25/789
  33525. }
  33526. },
  33527. },
  33528. [
  33529. {
  33530. name: "Normal",
  33531. height: math.unit(5 + 10/12, "feet"),
  33532. default: true
  33533. },
  33534. ]
  33535. ))
  33536. characterMakers.push(() => makeCharacter(
  33537. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  33538. {
  33539. front: {
  33540. height: math.unit(8, "feet"),
  33541. weight: math.unit(250, "lb"),
  33542. name: "Front",
  33543. image: {
  33544. source: "./media/characters/eikthynir/front.svg",
  33545. extra: 1332/1166,
  33546. bottom: 82/1414
  33547. }
  33548. },
  33549. back: {
  33550. height: math.unit(8, "feet"),
  33551. weight: math.unit(250, "lb"),
  33552. name: "Back",
  33553. image: {
  33554. source: "./media/characters/eikthynir/back.svg",
  33555. extra: 1342/1190,
  33556. bottom: 19/1361
  33557. }
  33558. },
  33559. dick: {
  33560. height: math.unit(2.35, "feet"),
  33561. name: "Dick",
  33562. image: {
  33563. source: "./media/characters/eikthynir/dick.svg"
  33564. }
  33565. },
  33566. },
  33567. [
  33568. {
  33569. name: "Normal",
  33570. height: math.unit(8, "feet"),
  33571. default: true
  33572. },
  33573. ]
  33574. ))
  33575. characterMakers.push(() => makeCharacter(
  33576. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  33577. {
  33578. front: {
  33579. height: math.unit(99, "meters"),
  33580. weight: math.unit(13000, "tons"),
  33581. name: "Front",
  33582. image: {
  33583. source: "./media/characters/zlmos/front.svg",
  33584. extra: 2202/1992,
  33585. bottom: 315/2517
  33586. }
  33587. },
  33588. },
  33589. [
  33590. {
  33591. name: "Macro",
  33592. height: math.unit(99, "meters"),
  33593. default: true
  33594. },
  33595. ]
  33596. ))
  33597. characterMakers.push(() => makeCharacter(
  33598. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  33599. {
  33600. front: {
  33601. height: math.unit(6 + 5/12, "feet"),
  33602. name: "Front",
  33603. image: {
  33604. source: "./media/characters/purri/front.svg",
  33605. extra: 1698/1610,
  33606. bottom: 32/1730
  33607. }
  33608. },
  33609. frontAlt: {
  33610. height: math.unit(6 + 5/12, "feet"),
  33611. name: "Front (Alt)",
  33612. image: {
  33613. source: "./media/characters/purri/front-alt.svg",
  33614. extra: 450/420,
  33615. bottom: 26/476
  33616. }
  33617. },
  33618. boots: {
  33619. height: math.unit(5.5, "feet"),
  33620. name: "Boots",
  33621. image: {
  33622. source: "./media/characters/purri/boots.svg",
  33623. extra: 905/853,
  33624. bottom: 18/923
  33625. }
  33626. },
  33627. lying: {
  33628. height: math.unit(2, "feet"),
  33629. name: "Lying",
  33630. image: {
  33631. source: "./media/characters/purri/lying.svg",
  33632. extra: 940/843,
  33633. bottom: 146/1086
  33634. }
  33635. },
  33636. devious: {
  33637. height: math.unit(1.77, "feet"),
  33638. name: "Devious",
  33639. image: {
  33640. source: "./media/characters/purri/devious.svg",
  33641. extra: 1440/1155,
  33642. bottom: 147/1587
  33643. }
  33644. },
  33645. bean: {
  33646. height: math.unit(1.94, "feet"),
  33647. name: "Bean",
  33648. image: {
  33649. source: "./media/characters/purri/bean.svg"
  33650. }
  33651. },
  33652. },
  33653. [
  33654. {
  33655. name: "Micro",
  33656. height: math.unit(1, "mm")
  33657. },
  33658. {
  33659. name: "Normal",
  33660. height: math.unit(6 + 5/12, "feet"),
  33661. default: true
  33662. },
  33663. {
  33664. name: "Macro :3c",
  33665. height: math.unit(2, "miles")
  33666. },
  33667. ]
  33668. ))
  33669. characterMakers.push(() => makeCharacter(
  33670. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  33671. {
  33672. front: {
  33673. height: math.unit(6 + 2/12, "feet"),
  33674. weight: math.unit(250, "lb"),
  33675. name: "Front",
  33676. image: {
  33677. source: "./media/characters/moonlight/front.svg",
  33678. extra: 1044/908,
  33679. bottom: 56/1100
  33680. }
  33681. },
  33682. feral: {
  33683. height: math.unit(3 + 1/12, "feet"),
  33684. weight: math.unit(50, "kg"),
  33685. name: "Feral",
  33686. image: {
  33687. source: "./media/characters/moonlight/feral.svg",
  33688. extra: 3705/2791,
  33689. bottom: 145/3850
  33690. }
  33691. },
  33692. paw: {
  33693. height: math.unit(1, "feet"),
  33694. name: "Paw",
  33695. image: {
  33696. source: "./media/characters/moonlight/paw.svg"
  33697. }
  33698. },
  33699. paws: {
  33700. height: math.unit(0.98, "feet"),
  33701. name: "Paws",
  33702. image: {
  33703. source: "./media/characters/moonlight/paws.svg",
  33704. extra: 939/939,
  33705. bottom: 50/989
  33706. }
  33707. },
  33708. mouth: {
  33709. height: math.unit(0.48, "feet"),
  33710. name: "Mouth",
  33711. image: {
  33712. source: "./media/characters/moonlight/mouth.svg"
  33713. }
  33714. },
  33715. dick: {
  33716. height: math.unit(1.46, "feet"),
  33717. name: "Dick",
  33718. image: {
  33719. source: "./media/characters/moonlight/dick.svg"
  33720. }
  33721. },
  33722. },
  33723. [
  33724. {
  33725. name: "Normal",
  33726. height: math.unit(6 + 2/12, "feet"),
  33727. default: true
  33728. },
  33729. {
  33730. name: "Macro",
  33731. height: math.unit(300, "feet")
  33732. },
  33733. {
  33734. name: "Macro+",
  33735. height: math.unit(1, "mile")
  33736. },
  33737. {
  33738. name: "Mt. Moon",
  33739. height: math.unit(5, "miles")
  33740. },
  33741. {
  33742. name: "Megamacro",
  33743. height: math.unit(15, "miles")
  33744. },
  33745. ]
  33746. ))
  33747. characterMakers.push(() => makeCharacter(
  33748. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  33749. {
  33750. back: {
  33751. height: math.unit(6, "feet"),
  33752. weight: math.unit(150, "lb"),
  33753. name: "Back",
  33754. image: {
  33755. source: "./media/characters/sylen/back.svg",
  33756. extra: 1335/1273,
  33757. bottom: 107/1442
  33758. }
  33759. },
  33760. },
  33761. [
  33762. {
  33763. name: "Normal",
  33764. height: math.unit(5 + 5/12, "feet")
  33765. },
  33766. {
  33767. name: "Megamacro",
  33768. height: math.unit(3, "miles"),
  33769. default: true
  33770. },
  33771. ]
  33772. ))
  33773. characterMakers.push(() => makeCharacter(
  33774. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  33775. {
  33776. front: {
  33777. height: math.unit(6, "feet"),
  33778. weight: math.unit(190, "lb"),
  33779. name: "Front",
  33780. image: {
  33781. source: "./media/characters/huttser/front.svg",
  33782. extra: 1152/1058,
  33783. bottom: 23/1175
  33784. }
  33785. },
  33786. side: {
  33787. height: math.unit(6, "feet"),
  33788. weight: math.unit(190, "lb"),
  33789. name: "Side",
  33790. image: {
  33791. source: "./media/characters/huttser/side.svg",
  33792. extra: 1174/1065,
  33793. bottom: 18/1192
  33794. }
  33795. },
  33796. back: {
  33797. height: math.unit(6, "feet"),
  33798. weight: math.unit(190, "lb"),
  33799. name: "Back",
  33800. image: {
  33801. source: "./media/characters/huttser/back.svg",
  33802. extra: 1158/1056,
  33803. bottom: 12/1170
  33804. }
  33805. },
  33806. },
  33807. [
  33808. ]
  33809. ))
  33810. characterMakers.push(() => makeCharacter(
  33811. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  33812. {
  33813. side: {
  33814. height: math.unit(12 + 9/12, "feet"),
  33815. weight: math.unit(15000, "lb"),
  33816. name: "Side",
  33817. image: {
  33818. source: "./media/characters/faan/side.svg",
  33819. extra: 2747/2697,
  33820. bottom: 0/2747
  33821. }
  33822. },
  33823. front: {
  33824. height: math.unit(12 + 9/12, "feet"),
  33825. weight: math.unit(15000, "lb"),
  33826. name: "Front",
  33827. image: {
  33828. source: "./media/characters/faan/front.svg",
  33829. extra: 607/571,
  33830. bottom: 24/631
  33831. }
  33832. },
  33833. head: {
  33834. height: math.unit(2.85, "feet"),
  33835. name: "Head",
  33836. image: {
  33837. source: "./media/characters/faan/head.svg"
  33838. }
  33839. },
  33840. headAlt: {
  33841. height: math.unit(3.13, "feet"),
  33842. name: "Head-alt",
  33843. image: {
  33844. source: "./media/characters/faan/head-alt.svg"
  33845. }
  33846. },
  33847. },
  33848. [
  33849. {
  33850. name: "Normal",
  33851. height: math.unit(12 + 9/12, "feet"),
  33852. default: true
  33853. },
  33854. ]
  33855. ))
  33856. characterMakers.push(() => makeCharacter(
  33857. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  33858. {
  33859. front: {
  33860. height: math.unit(6, "feet"),
  33861. weight: math.unit(300, "lb"),
  33862. name: "Front",
  33863. image: {
  33864. source: "./media/characters/tanio/front.svg",
  33865. extra: 711/673,
  33866. bottom: 25/736
  33867. }
  33868. },
  33869. },
  33870. [
  33871. {
  33872. name: "Normal",
  33873. height: math.unit(6, "feet"),
  33874. default: true
  33875. },
  33876. ]
  33877. ))
  33878. characterMakers.push(() => makeCharacter(
  33879. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  33880. {
  33881. front: {
  33882. height: math.unit(3, "inches"),
  33883. name: "Front",
  33884. image: {
  33885. source: "./media/characters/noboru/front.svg",
  33886. extra: 1039/932,
  33887. bottom: 18/1057
  33888. }
  33889. },
  33890. },
  33891. [
  33892. {
  33893. name: "Micro",
  33894. height: math.unit(3, "inches"),
  33895. default: true
  33896. },
  33897. ]
  33898. ))
  33899. characterMakers.push(() => makeCharacter(
  33900. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  33901. {
  33902. front: {
  33903. height: math.unit(1.85, "meters"),
  33904. weight: math.unit(80, "kg"),
  33905. name: "Front",
  33906. image: {
  33907. source: "./media/characters/daniel-barrett/front.svg",
  33908. extra: 355/337,
  33909. bottom: 9/364
  33910. }
  33911. },
  33912. },
  33913. [
  33914. {
  33915. name: "Pico",
  33916. height: math.unit(0.0433, "mm")
  33917. },
  33918. {
  33919. name: "Nano",
  33920. height: math.unit(1.5, "mm")
  33921. },
  33922. {
  33923. name: "Micro",
  33924. height: math.unit(5.3, "cm"),
  33925. default: true
  33926. },
  33927. {
  33928. name: "Normal",
  33929. height: math.unit(1.85, "meters")
  33930. },
  33931. {
  33932. name: "Macro",
  33933. height: math.unit(64.7, "meters")
  33934. },
  33935. {
  33936. name: "Megamacro",
  33937. height: math.unit(2.26, "km")
  33938. },
  33939. {
  33940. name: "Gigamacro",
  33941. height: math.unit(79, "km")
  33942. },
  33943. {
  33944. name: "Teramacro",
  33945. height: math.unit(2765, "km")
  33946. },
  33947. {
  33948. name: "Petamacro",
  33949. height: math.unit(96678, "km")
  33950. },
  33951. ]
  33952. ))
  33953. characterMakers.push(() => makeCharacter(
  33954. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  33955. {
  33956. front: {
  33957. height: math.unit(30, "meters"),
  33958. weight: math.unit(400, "tons"),
  33959. name: "Front",
  33960. image: {
  33961. source: "./media/characters/zeel/front.svg",
  33962. extra: 2599/2599,
  33963. bottom: 226/2825
  33964. }
  33965. },
  33966. },
  33967. [
  33968. {
  33969. name: "Macro",
  33970. height: math.unit(30, "meters"),
  33971. default: true
  33972. },
  33973. ]
  33974. ))
  33975. characterMakers.push(() => makeCharacter(
  33976. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  33977. {
  33978. front: {
  33979. height: math.unit(6 + 7/12, "feet"),
  33980. weight: math.unit(210, "lb"),
  33981. name: "Front",
  33982. image: {
  33983. source: "./media/characters/tarn/front.svg",
  33984. extra: 3517/3220,
  33985. bottom: 91/3608
  33986. }
  33987. },
  33988. back: {
  33989. height: math.unit(6 + 7/12, "feet"),
  33990. weight: math.unit(210, "lb"),
  33991. name: "Back",
  33992. image: {
  33993. source: "./media/characters/tarn/back.svg",
  33994. extra: 3566/3241,
  33995. bottom: 34/3600
  33996. }
  33997. },
  33998. dick: {
  33999. height: math.unit(1.65, "feet"),
  34000. name: "Dick",
  34001. image: {
  34002. source: "./media/characters/tarn/dick.svg"
  34003. }
  34004. },
  34005. paw: {
  34006. height: math.unit(1.80, "feet"),
  34007. name: "Paw",
  34008. image: {
  34009. source: "./media/characters/tarn/paw.svg"
  34010. }
  34011. },
  34012. tongue: {
  34013. height: math.unit(0.97, "feet"),
  34014. name: "Tongue",
  34015. image: {
  34016. source: "./media/characters/tarn/tongue.svg"
  34017. }
  34018. },
  34019. },
  34020. [
  34021. {
  34022. name: "Micro",
  34023. height: math.unit(4, "inches")
  34024. },
  34025. {
  34026. name: "Normal",
  34027. height: math.unit(6 + 7/12, "feet"),
  34028. default: true
  34029. },
  34030. {
  34031. name: "Macro",
  34032. height: math.unit(300, "feet")
  34033. },
  34034. ]
  34035. ))
  34036. characterMakers.push(() => makeCharacter(
  34037. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  34038. {
  34039. front: {
  34040. height: math.unit(5 + 7/12, "feet"),
  34041. weight: math.unit(80, "kg"),
  34042. name: "Front",
  34043. image: {
  34044. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  34045. extra: 3023/2865,
  34046. bottom: 33/3056
  34047. }
  34048. },
  34049. back: {
  34050. height: math.unit(5 + 7/12, "feet"),
  34051. weight: math.unit(80, "kg"),
  34052. name: "Back",
  34053. image: {
  34054. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  34055. extra: 3020/2886,
  34056. bottom: 30/3050
  34057. }
  34058. },
  34059. dick: {
  34060. height: math.unit(0.98, "feet"),
  34061. name: "Dick",
  34062. image: {
  34063. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  34064. }
  34065. },
  34066. anatomy: {
  34067. height: math.unit(2.86, "feet"),
  34068. name: "Anatomy",
  34069. image: {
  34070. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  34071. }
  34072. },
  34073. },
  34074. [
  34075. {
  34076. name: "Really Small",
  34077. height: math.unit(2, "inches")
  34078. },
  34079. {
  34080. name: "Micro",
  34081. height: math.unit(5.583, "inches")
  34082. },
  34083. {
  34084. name: "Normal",
  34085. height: math.unit(5 + 7/12, "feet"),
  34086. default: true
  34087. },
  34088. {
  34089. name: "Macro",
  34090. height: math.unit(67, "feet")
  34091. },
  34092. {
  34093. name: "Megamacro",
  34094. height: math.unit(134, "feet")
  34095. },
  34096. ]
  34097. ))
  34098. characterMakers.push(() => makeCharacter(
  34099. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  34100. {
  34101. front: {
  34102. height: math.unit(9, "feet"),
  34103. weight: math.unit(120, "lb"),
  34104. name: "Front",
  34105. image: {
  34106. source: "./media/characters/sally/front.svg",
  34107. extra: 1506/1349,
  34108. bottom: 66/1572
  34109. }
  34110. },
  34111. },
  34112. [
  34113. {
  34114. name: "Normal",
  34115. height: math.unit(9, "feet"),
  34116. default: true
  34117. },
  34118. ]
  34119. ))
  34120. characterMakers.push(() => makeCharacter(
  34121. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  34122. {
  34123. front: {
  34124. height: math.unit(8, "feet"),
  34125. weight: math.unit(900, "lb"),
  34126. name: "Front",
  34127. image: {
  34128. source: "./media/characters/owen/front.svg",
  34129. extra: 1761/1657,
  34130. bottom: 74/1835
  34131. }
  34132. },
  34133. side: {
  34134. height: math.unit(8, "feet"),
  34135. weight: math.unit(900, "lb"),
  34136. name: "Side",
  34137. image: {
  34138. source: "./media/characters/owen/side.svg",
  34139. extra: 1797/1734,
  34140. bottom: 30/1827
  34141. }
  34142. },
  34143. back: {
  34144. height: math.unit(8, "feet"),
  34145. weight: math.unit(900, "lb"),
  34146. name: "Back",
  34147. image: {
  34148. source: "./media/characters/owen/back.svg",
  34149. extra: 1796/1706,
  34150. bottom: 59/1855
  34151. }
  34152. },
  34153. maw: {
  34154. height: math.unit(1.76, "feet"),
  34155. name: "Maw",
  34156. image: {
  34157. source: "./media/characters/owen/maw.svg"
  34158. }
  34159. },
  34160. },
  34161. [
  34162. {
  34163. name: "Normal",
  34164. height: math.unit(8, "feet"),
  34165. default: true
  34166. },
  34167. ]
  34168. ))
  34169. characterMakers.push(() => makeCharacter(
  34170. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  34171. {
  34172. front: {
  34173. height: math.unit(4, "feet"),
  34174. weight: math.unit(400, "lb"),
  34175. name: "Front",
  34176. image: {
  34177. source: "./media/characters/ryth/front.svg",
  34178. extra: 1920/1748,
  34179. bottom: 42/1962
  34180. }
  34181. },
  34182. back: {
  34183. height: math.unit(4, "feet"),
  34184. weight: math.unit(400, "lb"),
  34185. name: "Back",
  34186. image: {
  34187. source: "./media/characters/ryth/back.svg",
  34188. extra: 1897/1690,
  34189. bottom: 89/1986
  34190. }
  34191. },
  34192. mouth: {
  34193. height: math.unit(1.39, "feet"),
  34194. name: "Mouth",
  34195. image: {
  34196. source: "./media/characters/ryth/mouth.svg"
  34197. }
  34198. },
  34199. tailmaw: {
  34200. height: math.unit(1.23, "feet"),
  34201. name: "Tailmaw",
  34202. image: {
  34203. source: "./media/characters/ryth/tailmaw.svg"
  34204. }
  34205. },
  34206. goia: {
  34207. height: math.unit(4, "meters"),
  34208. weight: math.unit(10800, "lb"),
  34209. name: "Goia",
  34210. image: {
  34211. source: "./media/characters/ryth/goia.svg",
  34212. extra: 745/640,
  34213. bottom: 107/852
  34214. }
  34215. },
  34216. goiaFront: {
  34217. height: math.unit(4, "meters"),
  34218. weight: math.unit(10800, "lb"),
  34219. name: "Goia (Front)",
  34220. image: {
  34221. source: "./media/characters/ryth/goia-front.svg",
  34222. extra: 750/586,
  34223. bottom: 114/864
  34224. }
  34225. },
  34226. goiaMaw: {
  34227. height: math.unit(5.55, "feet"),
  34228. name: "Goia Maw",
  34229. image: {
  34230. source: "./media/characters/ryth/goia-maw.svg"
  34231. }
  34232. },
  34233. goiaForepaw: {
  34234. height: math.unit(3.5, "feet"),
  34235. name: "Goia Forepaw",
  34236. image: {
  34237. source: "./media/characters/ryth/goia-forepaw.svg"
  34238. }
  34239. },
  34240. goiaHindpaw: {
  34241. height: math.unit(5.55, "feet"),
  34242. name: "Goia Hindpaw",
  34243. image: {
  34244. source: "./media/characters/ryth/goia-hindpaw.svg"
  34245. }
  34246. },
  34247. },
  34248. [
  34249. {
  34250. name: "Normal",
  34251. height: math.unit(4, "feet"),
  34252. default: true
  34253. },
  34254. ]
  34255. ))
  34256. characterMakers.push(() => makeCharacter(
  34257. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  34258. {
  34259. front: {
  34260. height: math.unit(7, "feet"),
  34261. weight: math.unit(180, "lb"),
  34262. name: "Front",
  34263. image: {
  34264. source: "./media/characters/necrolance/front.svg",
  34265. extra: 1062/947,
  34266. bottom: 41/1103
  34267. }
  34268. },
  34269. back: {
  34270. height: math.unit(7, "feet"),
  34271. weight: math.unit(180, "lb"),
  34272. name: "Back",
  34273. image: {
  34274. source: "./media/characters/necrolance/back.svg",
  34275. extra: 1045/984,
  34276. bottom: 14/1059
  34277. }
  34278. },
  34279. wing: {
  34280. height: math.unit(2.67, "feet"),
  34281. name: "Wing",
  34282. image: {
  34283. source: "./media/characters/necrolance/wing.svg"
  34284. }
  34285. },
  34286. },
  34287. [
  34288. {
  34289. name: "Normal",
  34290. height: math.unit(7, "feet"),
  34291. default: true
  34292. },
  34293. ]
  34294. ))
  34295. characterMakers.push(() => makeCharacter(
  34296. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  34297. {
  34298. front: {
  34299. height: math.unit(76, "meters"),
  34300. weight: math.unit(30000, "tons"),
  34301. name: "Front",
  34302. image: {
  34303. source: "./media/characters/tyler/front.svg",
  34304. extra: 1640/1640,
  34305. bottom: 114/1754
  34306. }
  34307. },
  34308. },
  34309. [
  34310. {
  34311. name: "Macro",
  34312. height: math.unit(76, "meters"),
  34313. default: true
  34314. },
  34315. ]
  34316. ))
  34317. characterMakers.push(() => makeCharacter(
  34318. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  34319. {
  34320. front: {
  34321. height: math.unit(4 + 11/12, "feet"),
  34322. weight: math.unit(132, "lb"),
  34323. name: "Front",
  34324. image: {
  34325. source: "./media/characters/icey/front.svg",
  34326. extra: 2750/2550,
  34327. bottom: 33/2783
  34328. }
  34329. },
  34330. back: {
  34331. height: math.unit(4 + 11/12, "feet"),
  34332. weight: math.unit(132, "lb"),
  34333. name: "Back",
  34334. image: {
  34335. source: "./media/characters/icey/back.svg",
  34336. extra: 2624/2481,
  34337. bottom: 35/2659
  34338. }
  34339. },
  34340. },
  34341. [
  34342. {
  34343. name: "Normal",
  34344. height: math.unit(4 + 11/12, "feet"),
  34345. default: true
  34346. },
  34347. ]
  34348. ))
  34349. characterMakers.push(() => makeCharacter(
  34350. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  34351. {
  34352. front: {
  34353. height: math.unit(100, "feet"),
  34354. weight: math.unit(0, "lb"),
  34355. name: "Front",
  34356. image: {
  34357. source: "./media/characters/smile/front.svg",
  34358. extra: 2983/2912,
  34359. bottom: 162/3145
  34360. }
  34361. },
  34362. back: {
  34363. height: math.unit(100, "feet"),
  34364. weight: math.unit(0, "lb"),
  34365. name: "Back",
  34366. image: {
  34367. source: "./media/characters/smile/back.svg",
  34368. extra: 3143/3031,
  34369. bottom: 91/3234
  34370. }
  34371. },
  34372. head: {
  34373. height: math.unit(26.3, "feet"),
  34374. weight: math.unit(0, "lb"),
  34375. name: "Head",
  34376. image: {
  34377. source: "./media/characters/smile/head.svg"
  34378. }
  34379. },
  34380. collar: {
  34381. height: math.unit(5.3, "feet"),
  34382. weight: math.unit(0, "lb"),
  34383. name: "Collar",
  34384. image: {
  34385. source: "./media/characters/smile/collar.svg"
  34386. }
  34387. },
  34388. },
  34389. [
  34390. {
  34391. name: "Macro",
  34392. height: math.unit(100, "feet"),
  34393. default: true
  34394. },
  34395. ]
  34396. ))
  34397. characterMakers.push(() => makeCharacter(
  34398. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  34399. {
  34400. dragon: {
  34401. height: math.unit(26, "feet"),
  34402. weight: math.unit(36, "tons"),
  34403. name: "Dragon",
  34404. image: {
  34405. source: "./media/characters/arimphae/dragon.svg",
  34406. extra: 1574/983,
  34407. bottom: 357/1931
  34408. }
  34409. },
  34410. drake: {
  34411. height: math.unit(9, "feet"),
  34412. weight: math.unit(1.5, "tons"),
  34413. name: "Drake",
  34414. image: {
  34415. source: "./media/characters/arimphae/drake.svg",
  34416. extra: 1120/925,
  34417. bottom: 435/1555
  34418. }
  34419. },
  34420. },
  34421. [
  34422. {
  34423. name: "Small",
  34424. height: math.unit(26*5/9, "feet")
  34425. },
  34426. {
  34427. name: "Normal",
  34428. height: math.unit(26, "feet"),
  34429. default: true
  34430. },
  34431. ]
  34432. ))
  34433. characterMakers.push(() => makeCharacter(
  34434. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  34435. {
  34436. front: {
  34437. height: math.unit(8 + 9/12, "feet"),
  34438. name: "Front",
  34439. image: {
  34440. source: "./media/characters/xander/front.svg",
  34441. extra: 1237/974,
  34442. bottom: 94/1331
  34443. }
  34444. },
  34445. },
  34446. [
  34447. {
  34448. name: "Normal",
  34449. height: math.unit(8 + 9/12, "feet"),
  34450. default: true
  34451. },
  34452. {
  34453. name: "Gaze Grabber",
  34454. height: math.unit(13 + 8/12, "feet")
  34455. },
  34456. {
  34457. name: "Jaw Dropper",
  34458. height: math.unit(27, "feet")
  34459. },
  34460. {
  34461. name: "Show Stopper",
  34462. height: math.unit(136, "feet")
  34463. },
  34464. {
  34465. name: "Superstar",
  34466. height: math.unit(1.9e6, "miles")
  34467. },
  34468. ]
  34469. ))
  34470. characterMakers.push(() => makeCharacter(
  34471. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  34472. {
  34473. side: {
  34474. height: math.unit(2100, "feet"),
  34475. name: "Side",
  34476. image: {
  34477. source: "./media/characters/osiris/side.svg",
  34478. extra: 1105/939,
  34479. bottom: 167/1272
  34480. }
  34481. },
  34482. },
  34483. [
  34484. {
  34485. name: "Macro",
  34486. height: math.unit(2100, "feet"),
  34487. default: true
  34488. },
  34489. ]
  34490. ))
  34491. characterMakers.push(() => makeCharacter(
  34492. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  34493. {
  34494. front: {
  34495. height: math.unit(6 + 8/12, "feet"),
  34496. weight: math.unit(225, "lb"),
  34497. name: "Front",
  34498. image: {
  34499. source: "./media/characters/rhys-londe/front.svg",
  34500. extra: 2258/2141,
  34501. bottom: 188/2446
  34502. }
  34503. },
  34504. back: {
  34505. height: math.unit(6 + 8/12, "feet"),
  34506. weight: math.unit(225, "lb"),
  34507. name: "Back",
  34508. image: {
  34509. source: "./media/characters/rhys-londe/back.svg",
  34510. extra: 2237/2137,
  34511. bottom: 63/2300
  34512. }
  34513. },
  34514. frontNsfw: {
  34515. height: math.unit(6 + 8/12, "feet"),
  34516. weight: math.unit(225, "lb"),
  34517. name: "Front (NSFW)",
  34518. image: {
  34519. source: "./media/characters/rhys-londe/front-nsfw.svg",
  34520. extra: 2258/2141,
  34521. bottom: 188/2446
  34522. }
  34523. },
  34524. backNsfw: {
  34525. height: math.unit(6 + 8/12, "feet"),
  34526. weight: math.unit(225, "lb"),
  34527. name: "Back (NSFW)",
  34528. image: {
  34529. source: "./media/characters/rhys-londe/back-nsfw.svg",
  34530. extra: 2237/2137,
  34531. bottom: 63/2300
  34532. }
  34533. },
  34534. dick: {
  34535. height: math.unit(30, "inches"),
  34536. name: "Dick",
  34537. image: {
  34538. source: "./media/characters/rhys-londe/dick.svg"
  34539. }
  34540. },
  34541. maw: {
  34542. height: math.unit(1.6, "feet"),
  34543. name: "Maw",
  34544. image: {
  34545. source: "./media/characters/rhys-londe/maw.svg"
  34546. }
  34547. },
  34548. },
  34549. [
  34550. {
  34551. name: "Normal",
  34552. height: math.unit(6 + 8/12, "feet"),
  34553. default: true
  34554. },
  34555. ]
  34556. ))
  34557. characterMakers.push(() => makeCharacter(
  34558. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  34559. {
  34560. front: {
  34561. height: math.unit(3 + 10/12, "feet"),
  34562. weight: math.unit(90, "lb"),
  34563. name: "Front",
  34564. image: {
  34565. source: "./media/characters/taivas-ensim/front.svg",
  34566. extra: 1327/1216,
  34567. bottom: 96/1423
  34568. }
  34569. },
  34570. back: {
  34571. height: math.unit(3 + 10/12, "feet"),
  34572. weight: math.unit(90, "lb"),
  34573. name: "Back",
  34574. image: {
  34575. source: "./media/characters/taivas-ensim/back.svg",
  34576. extra: 1355/1247,
  34577. bottom: 11/1366
  34578. }
  34579. },
  34580. frontNsfw: {
  34581. height: math.unit(3 + 10/12, "feet"),
  34582. weight: math.unit(90, "lb"),
  34583. name: "Front (NSFW)",
  34584. image: {
  34585. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  34586. extra: 1327/1216,
  34587. bottom: 96/1423
  34588. }
  34589. },
  34590. backNsfw: {
  34591. height: math.unit(3 + 10/12, "feet"),
  34592. weight: math.unit(90, "lb"),
  34593. name: "Back (NSFW)",
  34594. image: {
  34595. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  34596. extra: 1355/1247,
  34597. bottom: 11/1366
  34598. }
  34599. },
  34600. },
  34601. [
  34602. {
  34603. name: "Normal",
  34604. height: math.unit(3 + 10/12, "feet"),
  34605. default: true
  34606. },
  34607. ]
  34608. ))
  34609. characterMakers.push(() => makeCharacter(
  34610. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  34611. {
  34612. front: {
  34613. height: math.unit(9 + 6/12, "feet"),
  34614. weight: math.unit(940, "lb"),
  34615. name: "Front",
  34616. image: {
  34617. source: "./media/characters/byliss/front.svg",
  34618. extra: 1327/1290,
  34619. bottom: 82/1409
  34620. }
  34621. },
  34622. back: {
  34623. height: math.unit(9 + 6/12, "feet"),
  34624. weight: math.unit(940, "lb"),
  34625. name: "Back",
  34626. image: {
  34627. source: "./media/characters/byliss/back.svg",
  34628. extra: 1376/1349,
  34629. bottom: 9/1385
  34630. }
  34631. },
  34632. frontNsfw: {
  34633. height: math.unit(9 + 6/12, "feet"),
  34634. weight: math.unit(940, "lb"),
  34635. name: "Front (NSFW)",
  34636. image: {
  34637. source: "./media/characters/byliss/front-nsfw.svg",
  34638. extra: 1327/1290,
  34639. bottom: 82/1409
  34640. }
  34641. },
  34642. backNsfw: {
  34643. height: math.unit(9 + 6/12, "feet"),
  34644. weight: math.unit(940, "lb"),
  34645. name: "Back (NSFW)",
  34646. image: {
  34647. source: "./media/characters/byliss/back-nsfw.svg",
  34648. extra: 1376/1349,
  34649. bottom: 9/1385
  34650. }
  34651. },
  34652. },
  34653. [
  34654. {
  34655. name: "Normal",
  34656. height: math.unit(9 + 6/12, "feet"),
  34657. default: true
  34658. },
  34659. ]
  34660. ))
  34661. characterMakers.push(() => makeCharacter(
  34662. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  34663. {
  34664. front: {
  34665. height: math.unit(5 + 2/12, "feet"),
  34666. weight: math.unit(200, "lb"),
  34667. name: "Front",
  34668. image: {
  34669. source: "./media/characters/noraly/front.svg",
  34670. extra: 4985/4773,
  34671. bottom: 150/5135
  34672. }
  34673. },
  34674. full: {
  34675. height: math.unit(5 + 2/12, "feet"),
  34676. weight: math.unit(164, "lb"),
  34677. name: "Full",
  34678. image: {
  34679. source: "./media/characters/noraly/full.svg",
  34680. extra: 1114/1059,
  34681. bottom: 35/1149
  34682. }
  34683. },
  34684. fuller: {
  34685. height: math.unit(5 + 2/12, "feet"),
  34686. weight: math.unit(230, "lb"),
  34687. name: "Fuller",
  34688. image: {
  34689. source: "./media/characters/noraly/fuller.svg",
  34690. extra: 1114/1059,
  34691. bottom: 35/1149
  34692. }
  34693. },
  34694. fullest: {
  34695. height: math.unit(5 + 2/12, "feet"),
  34696. weight: math.unit(300, "lb"),
  34697. name: "Fullest",
  34698. image: {
  34699. source: "./media/characters/noraly/fullest.svg",
  34700. extra: 1114/1059,
  34701. bottom: 35/1149
  34702. }
  34703. },
  34704. },
  34705. [
  34706. {
  34707. name: "Normal",
  34708. height: math.unit(5 + 2/12, "feet"),
  34709. default: true
  34710. },
  34711. ]
  34712. ))
  34713. characterMakers.push(() => makeCharacter(
  34714. { name: "Pera", species: ["snake"], tags: ["naga"] },
  34715. {
  34716. front: {
  34717. height: math.unit(5 + 2/12, "feet"),
  34718. weight: math.unit(210, "lb"),
  34719. name: "Front",
  34720. image: {
  34721. source: "./media/characters/pera/front.svg",
  34722. extra: 1560/1531,
  34723. bottom: 165/1725
  34724. }
  34725. },
  34726. back: {
  34727. height: math.unit(5 + 2/12, "feet"),
  34728. weight: math.unit(210, "lb"),
  34729. name: "Back",
  34730. image: {
  34731. source: "./media/characters/pera/back.svg",
  34732. extra: 1523/1493,
  34733. bottom: 152/1675
  34734. }
  34735. },
  34736. dick: {
  34737. height: math.unit(2.4, "feet"),
  34738. name: "Dick",
  34739. image: {
  34740. source: "./media/characters/pera/dick.svg"
  34741. }
  34742. },
  34743. },
  34744. [
  34745. {
  34746. name: "Normal",
  34747. height: math.unit(5 + 2/12, "feet"),
  34748. default: true
  34749. },
  34750. ]
  34751. ))
  34752. characterMakers.push(() => makeCharacter(
  34753. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  34754. {
  34755. front: {
  34756. height: math.unit(12, "feet"),
  34757. weight: math.unit(3200, "lb"),
  34758. name: "Front",
  34759. image: {
  34760. source: "./media/characters/julian/front.svg",
  34761. extra: 2962/2701,
  34762. bottom: 184/3146
  34763. }
  34764. },
  34765. maw: {
  34766. height: math.unit(5.35, "feet"),
  34767. name: "Maw",
  34768. image: {
  34769. source: "./media/characters/julian/maw.svg"
  34770. }
  34771. },
  34772. paw: {
  34773. height: math.unit(3.07, "feet"),
  34774. name: "Paw",
  34775. image: {
  34776. source: "./media/characters/julian/paw.svg"
  34777. }
  34778. },
  34779. },
  34780. [
  34781. {
  34782. name: "Default",
  34783. height: math.unit(12, "feet"),
  34784. default: true
  34785. },
  34786. {
  34787. name: "Big",
  34788. height: math.unit(50, "feet")
  34789. },
  34790. {
  34791. name: "Really Big",
  34792. height: math.unit(1, "mile")
  34793. },
  34794. {
  34795. name: "Extremely Big",
  34796. height: math.unit(100, "miles")
  34797. },
  34798. {
  34799. name: "Planet Hugger",
  34800. height: math.unit(200, "megameters")
  34801. },
  34802. {
  34803. name: "Unreasonably Big",
  34804. height: math.unit(1e300, "meters")
  34805. },
  34806. ]
  34807. ))
  34808. characterMakers.push(() => makeCharacter(
  34809. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  34810. {
  34811. solgooleo: {
  34812. height: math.unit(4, "meters"),
  34813. weight: math.unit(6000*1.5, "kg"),
  34814. volume: math.unit(6000, "liters"),
  34815. name: "Solgooleo",
  34816. image: {
  34817. source: "./media/characters/pi/solgooleo.svg",
  34818. extra: 388/331,
  34819. bottom: 29/417
  34820. }
  34821. },
  34822. },
  34823. [
  34824. {
  34825. name: "Normal",
  34826. height: math.unit(4, "meters"),
  34827. default: true
  34828. },
  34829. ]
  34830. ))
  34831. characterMakers.push(() => makeCharacter(
  34832. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  34833. {
  34834. front: {
  34835. height: math.unit(8, "feet"),
  34836. weight: math.unit(4, "tons"),
  34837. name: "Front",
  34838. image: {
  34839. source: "./media/characters/shaun/front.svg",
  34840. extra: 503/495,
  34841. bottom: 20/523
  34842. }
  34843. },
  34844. back: {
  34845. height: math.unit(8, "feet"),
  34846. weight: math.unit(4, "tons"),
  34847. name: "Back",
  34848. image: {
  34849. source: "./media/characters/shaun/back.svg",
  34850. extra: 487/480,
  34851. bottom: 20/507
  34852. }
  34853. },
  34854. },
  34855. [
  34856. {
  34857. name: "Lorg",
  34858. height: math.unit(8, "feet"),
  34859. default: true
  34860. },
  34861. ]
  34862. ))
  34863. characterMakers.push(() => makeCharacter(
  34864. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  34865. {
  34866. frontAnthro: {
  34867. height: math.unit(7, "feet"),
  34868. name: "Front",
  34869. image: {
  34870. source: "./media/characters/sini/front-anthro.svg",
  34871. extra: 726/678,
  34872. bottom: 35/761
  34873. },
  34874. form: "anthro",
  34875. default: true
  34876. },
  34877. backAnthro: {
  34878. height: math.unit(7, "feet"),
  34879. name: "Back",
  34880. image: {
  34881. source: "./media/characters/sini/back-anthro.svg",
  34882. extra: 743/701,
  34883. bottom: 12/755
  34884. },
  34885. form: "anthro",
  34886. },
  34887. frontAnthroNsfw: {
  34888. height: math.unit(7, "feet"),
  34889. name: "Front (NSFW)",
  34890. image: {
  34891. source: "./media/characters/sini/front-anthro-nsfw.svg",
  34892. extra: 726/678,
  34893. bottom: 35/761
  34894. },
  34895. form: "anthro"
  34896. },
  34897. backAnthroNsfw: {
  34898. height: math.unit(7, "feet"),
  34899. name: "Back (NSFW)",
  34900. image: {
  34901. source: "./media/characters/sini/back-anthro-nsfw.svg",
  34902. extra: 743/701,
  34903. bottom: 12/755
  34904. },
  34905. form: "anthro",
  34906. },
  34907. mawAnthro: {
  34908. height: math.unit(2.14, "feet"),
  34909. name: "Maw",
  34910. image: {
  34911. source: "./media/characters/sini/maw-anthro.svg"
  34912. },
  34913. form: "anthro"
  34914. },
  34915. dick: {
  34916. height: math.unit(1.45, "feet"),
  34917. name: "Dick",
  34918. image: {
  34919. source: "./media/characters/sini/dick-anthro.svg"
  34920. },
  34921. form: "anthro"
  34922. },
  34923. feral: {
  34924. height: math.unit(16, "feet"),
  34925. name: "Feral",
  34926. image: {
  34927. source: "./media/characters/sini/feral.svg",
  34928. extra: 814/605,
  34929. bottom: 11/825
  34930. },
  34931. form: "feral",
  34932. default: true
  34933. },
  34934. feralNsfw: {
  34935. height: math.unit(16, "feet"),
  34936. name: "Feral (NSFW)",
  34937. image: {
  34938. source: "./media/characters/sini/feral-nsfw.svg",
  34939. extra: 814/605,
  34940. bottom: 11/825
  34941. },
  34942. form: "feral"
  34943. },
  34944. mawFeral: {
  34945. height: math.unit(5.66, "feet"),
  34946. name: "Maw",
  34947. image: {
  34948. source: "./media/characters/sini/maw-feral.svg"
  34949. },
  34950. form: "feral",
  34951. },
  34952. pawFeral: {
  34953. height: math.unit(5.17, "feet"),
  34954. name: "Paw",
  34955. image: {
  34956. source: "./media/characters/sini/paw-feral.svg"
  34957. },
  34958. form: "feral",
  34959. },
  34960. rumpFeral: {
  34961. height: math.unit(13.11, "feet"),
  34962. name: "Rump",
  34963. image: {
  34964. source: "./media/characters/sini/rump-feral.svg"
  34965. },
  34966. form: "feral",
  34967. },
  34968. dickFeral: {
  34969. height: math.unit(1, "feet"),
  34970. name: "Dick",
  34971. image: {
  34972. source: "./media/characters/sini/dick-feral.svg"
  34973. },
  34974. form: "feral",
  34975. },
  34976. eyeFeral: {
  34977. height: math.unit(1.23, "feet"),
  34978. name: "Eye",
  34979. image: {
  34980. source: "./media/characters/sini/eye-feral.svg"
  34981. },
  34982. form: "feral",
  34983. },
  34984. },
  34985. [
  34986. {
  34987. name: "Normal",
  34988. height: math.unit(7, "feet"),
  34989. default: true,
  34990. form: "anthro"
  34991. },
  34992. {
  34993. name: "Normal",
  34994. height: math.unit(16, "feet"),
  34995. default: true,
  34996. form: "feral"
  34997. },
  34998. ],
  34999. {
  35000. "anthro": {
  35001. name: "Anthro",
  35002. default: true
  35003. },
  35004. "feral": {
  35005. name: "Feral",
  35006. }
  35007. }
  35008. ))
  35009. characterMakers.push(() => makeCharacter(
  35010. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  35011. {
  35012. side: {
  35013. height: math.unit(47.2, "meters"),
  35014. weight: math.unit(10000, "tons"),
  35015. name: "Side",
  35016. image: {
  35017. source: "./media/characters/raylldo/side.svg",
  35018. extra: 2363/642,
  35019. bottom: 221/2584
  35020. }
  35021. },
  35022. top: {
  35023. height: math.unit(240, "meters"),
  35024. weight: math.unit(10000, "tons"),
  35025. name: "Top",
  35026. image: {
  35027. source: "./media/characters/raylldo/top.svg"
  35028. }
  35029. },
  35030. bottom: {
  35031. height: math.unit(240, "meters"),
  35032. weight: math.unit(10000, "tons"),
  35033. name: "Bottom",
  35034. image: {
  35035. source: "./media/characters/raylldo/bottom.svg"
  35036. }
  35037. },
  35038. head: {
  35039. height: math.unit(38.6, "meters"),
  35040. name: "Head",
  35041. image: {
  35042. source: "./media/characters/raylldo/head.svg",
  35043. extra: 1335/1112,
  35044. bottom: 0/1335
  35045. }
  35046. },
  35047. maw: {
  35048. height: math.unit(16.37, "meters"),
  35049. name: "Maw",
  35050. image: {
  35051. source: "./media/characters/raylldo/maw.svg",
  35052. extra: 883/660,
  35053. bottom: 0/883
  35054. },
  35055. extraAttributes: {
  35056. preyCapacity: {
  35057. name: "Capacity",
  35058. power: 3,
  35059. type: "volume",
  35060. base: math.unit(1000, "people")
  35061. },
  35062. tongueSize: {
  35063. name: "Tongue Size",
  35064. power: 2,
  35065. type: "area",
  35066. base: math.unit(21, "m^2")
  35067. }
  35068. }
  35069. },
  35070. forepaw: {
  35071. height: math.unit(18, "meters"),
  35072. name: "Forepaw",
  35073. image: {
  35074. source: "./media/characters/raylldo/forepaw.svg"
  35075. }
  35076. },
  35077. hindpaw: {
  35078. height: math.unit(23, "meters"),
  35079. name: "Hindpaw",
  35080. image: {
  35081. source: "./media/characters/raylldo/hindpaw.svg"
  35082. }
  35083. },
  35084. genitals: {
  35085. height: math.unit(42, "meters"),
  35086. name: "Genitals",
  35087. image: {
  35088. source: "./media/characters/raylldo/genitals.svg"
  35089. }
  35090. },
  35091. },
  35092. [
  35093. {
  35094. name: "Normal",
  35095. height: math.unit(47.2, "meters"),
  35096. default: true
  35097. },
  35098. ]
  35099. ))
  35100. characterMakers.push(() => makeCharacter(
  35101. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  35102. {
  35103. anthroFront: {
  35104. height: math.unit(9, "feet"),
  35105. weight: math.unit(600, "lb"),
  35106. name: "Anthro (Front)",
  35107. image: {
  35108. source: "./media/characters/glint/anthro-front.svg",
  35109. extra: 1097/1018,
  35110. bottom: 28/1125
  35111. }
  35112. },
  35113. anthroBack: {
  35114. height: math.unit(9, "feet"),
  35115. weight: math.unit(600, "lb"),
  35116. name: "Anthro (Back)",
  35117. image: {
  35118. source: "./media/characters/glint/anthro-back.svg",
  35119. extra: 1154/997,
  35120. bottom: 36/1190
  35121. }
  35122. },
  35123. feral: {
  35124. height: math.unit(11, "feet"),
  35125. weight: math.unit(50000, "lb"),
  35126. name: "Feral",
  35127. image: {
  35128. source: "./media/characters/glint/feral.svg",
  35129. extra: 3035/1585,
  35130. bottom: 1169/4204
  35131. }
  35132. },
  35133. dickAnthro: {
  35134. height: math.unit(0.7, "meters"),
  35135. name: "Dick (Anthro)",
  35136. image: {
  35137. source: "./media/characters/glint/dick-anthro.svg"
  35138. }
  35139. },
  35140. dickFeral: {
  35141. height: math.unit(2.65, "meters"),
  35142. name: "Dick (Feral)",
  35143. image: {
  35144. source: "./media/characters/glint/dick-feral.svg"
  35145. }
  35146. },
  35147. slitHidden: {
  35148. height: math.unit(5.85, "meters"),
  35149. name: "Slit (Hidden)",
  35150. image: {
  35151. source: "./media/characters/glint/slit-hidden.svg"
  35152. }
  35153. },
  35154. slitErect: {
  35155. height: math.unit(5.85, "meters"),
  35156. name: "Slit (Erect)",
  35157. image: {
  35158. source: "./media/characters/glint/slit-erect.svg"
  35159. }
  35160. },
  35161. mawAnthro: {
  35162. height: math.unit(0.63, "meters"),
  35163. name: "Maw (Anthro)",
  35164. image: {
  35165. source: "./media/characters/glint/maw.svg"
  35166. }
  35167. },
  35168. mawFeral: {
  35169. height: math.unit(2.89, "meters"),
  35170. name: "Maw (Feral)",
  35171. image: {
  35172. source: "./media/characters/glint/maw.svg"
  35173. }
  35174. },
  35175. },
  35176. [
  35177. {
  35178. name: "Normal",
  35179. height: math.unit(9, "feet"),
  35180. default: true
  35181. },
  35182. ]
  35183. ))
  35184. characterMakers.push(() => makeCharacter(
  35185. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  35186. {
  35187. side: {
  35188. height: math.unit(15, "feet"),
  35189. weight: math.unit(5000, "kg"),
  35190. name: "Side",
  35191. image: {
  35192. source: "./media/characters/kairne/side.svg",
  35193. extra: 979/811,
  35194. bottom: 13/992
  35195. }
  35196. },
  35197. front: {
  35198. height: math.unit(15, "feet"),
  35199. weight: math.unit(5000, "kg"),
  35200. name: "Front",
  35201. image: {
  35202. source: "./media/characters/kairne/front.svg",
  35203. extra: 908/814,
  35204. bottom: 26/934
  35205. }
  35206. },
  35207. sideNsfw: {
  35208. height: math.unit(15, "feet"),
  35209. weight: math.unit(5000, "kg"),
  35210. name: "Side (NSFW)",
  35211. image: {
  35212. source: "./media/characters/kairne/side-nsfw.svg",
  35213. extra: 979/811,
  35214. bottom: 13/992
  35215. }
  35216. },
  35217. frontNsfw: {
  35218. height: math.unit(15, "feet"),
  35219. weight: math.unit(5000, "kg"),
  35220. name: "Front (NSFW)",
  35221. image: {
  35222. source: "./media/characters/kairne/front-nsfw.svg",
  35223. extra: 908/814,
  35224. bottom: 26/934
  35225. }
  35226. },
  35227. dickCaged: {
  35228. height: math.unit(0.65, "meters"),
  35229. name: "Dick-caged",
  35230. image: {
  35231. source: "./media/characters/kairne/dick-caged.svg"
  35232. }
  35233. },
  35234. dick: {
  35235. height: math.unit(0.79, "meters"),
  35236. name: "Dick",
  35237. image: {
  35238. source: "./media/characters/kairne/dick.svg"
  35239. }
  35240. },
  35241. genitals: {
  35242. height: math.unit(1.29, "meters"),
  35243. name: "Genitals",
  35244. image: {
  35245. source: "./media/characters/kairne/genitals.svg"
  35246. }
  35247. },
  35248. maw: {
  35249. height: math.unit(1.73, "meters"),
  35250. name: "Maw",
  35251. image: {
  35252. source: "./media/characters/kairne/maw.svg"
  35253. }
  35254. },
  35255. },
  35256. [
  35257. {
  35258. name: "Normal",
  35259. height: math.unit(15, "feet"),
  35260. default: true
  35261. },
  35262. ]
  35263. ))
  35264. characterMakers.push(() => makeCharacter(
  35265. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  35266. {
  35267. front: {
  35268. height: math.unit(5 + 8/12, "feet"),
  35269. weight: math.unit(139, "lb"),
  35270. name: "Front",
  35271. image: {
  35272. source: "./media/characters/biscuit-jackal/front.svg",
  35273. extra: 2106/1961,
  35274. bottom: 58/2164
  35275. }
  35276. },
  35277. back: {
  35278. height: math.unit(5 + 8/12, "feet"),
  35279. weight: math.unit(139, "lb"),
  35280. name: "Back",
  35281. image: {
  35282. source: "./media/characters/biscuit-jackal/back.svg",
  35283. extra: 2132/1976,
  35284. bottom: 57/2189
  35285. }
  35286. },
  35287. werejackal: {
  35288. height: math.unit(6 + 3/12, "feet"),
  35289. weight: math.unit(188, "lb"),
  35290. name: "Werejackal",
  35291. image: {
  35292. source: "./media/characters/biscuit-jackal/werejackal.svg",
  35293. extra: 2373/2178,
  35294. bottom: 53/2426
  35295. }
  35296. },
  35297. },
  35298. [
  35299. {
  35300. name: "Normal",
  35301. height: math.unit(5 + 8/12, "feet"),
  35302. default: true
  35303. },
  35304. ]
  35305. ))
  35306. characterMakers.push(() => makeCharacter(
  35307. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  35308. {
  35309. front: {
  35310. height: math.unit(140, "cm"),
  35311. weight: math.unit(45, "kg"),
  35312. name: "Front",
  35313. image: {
  35314. source: "./media/characters/tayra-white/front.svg",
  35315. extra: 2229/2192,
  35316. bottom: 75/2304
  35317. }
  35318. },
  35319. },
  35320. [
  35321. {
  35322. name: "Normal",
  35323. height: math.unit(140, "cm"),
  35324. default: true
  35325. },
  35326. ]
  35327. ))
  35328. characterMakers.push(() => makeCharacter(
  35329. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  35330. {
  35331. front: {
  35332. height: math.unit(4 + 5/12, "feet"),
  35333. name: "Front",
  35334. image: {
  35335. source: "./media/characters/scoop/front.svg",
  35336. extra: 1257/1136,
  35337. bottom: 69/1326
  35338. }
  35339. },
  35340. back: {
  35341. height: math.unit(4 + 5/12, "feet"),
  35342. name: "Back",
  35343. image: {
  35344. source: "./media/characters/scoop/back.svg",
  35345. extra: 1321/1152,
  35346. bottom: 32/1353
  35347. }
  35348. },
  35349. maw: {
  35350. height: math.unit(0.68, "feet"),
  35351. name: "Maw",
  35352. image: {
  35353. source: "./media/characters/scoop/maw.svg"
  35354. }
  35355. },
  35356. },
  35357. [
  35358. {
  35359. name: "Really Small",
  35360. height: math.unit(1, "mm")
  35361. },
  35362. {
  35363. name: "Micro",
  35364. height: math.unit(1, "inch")
  35365. },
  35366. {
  35367. name: "Normal",
  35368. height: math.unit(4 + 5/12, "feet"),
  35369. default: true
  35370. },
  35371. {
  35372. name: "Macro",
  35373. height: math.unit(200, "feet")
  35374. },
  35375. {
  35376. name: "Megamacro",
  35377. height: math.unit(3240, "feet")
  35378. },
  35379. {
  35380. name: "Teramacro",
  35381. height: math.unit(2500, "miles")
  35382. },
  35383. ]
  35384. ))
  35385. characterMakers.push(() => makeCharacter(
  35386. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  35387. {
  35388. front: {
  35389. height: math.unit(15 + 7/12, "feet"),
  35390. weight: math.unit(1150, "tons"),
  35391. name: "Front",
  35392. image: {
  35393. source: "./media/characters/saphinara/front.svg",
  35394. extra: 1837/1643,
  35395. bottom: 84/1921
  35396. },
  35397. form: "normal",
  35398. default: true
  35399. },
  35400. side: {
  35401. height: math.unit(15 + 7/12, "feet"),
  35402. weight: math.unit(1150, "tons"),
  35403. name: "Side",
  35404. image: {
  35405. source: "./media/characters/saphinara/side.svg",
  35406. extra: 605/547,
  35407. bottom: 6/611
  35408. },
  35409. form: "normal"
  35410. },
  35411. back: {
  35412. height: math.unit(15 + 7/12, "feet"),
  35413. weight: math.unit(1150, "tons"),
  35414. name: "Back",
  35415. image: {
  35416. source: "./media/characters/saphinara/back.svg",
  35417. extra: 591/531,
  35418. bottom: 13/604
  35419. },
  35420. form: "normal"
  35421. },
  35422. frontTail: {
  35423. height: math.unit(15 + 7/12, "feet"),
  35424. weight: math.unit(1150, "tons"),
  35425. name: "Front (Full Tail)",
  35426. image: {
  35427. source: "./media/characters/saphinara/front-tail.svg",
  35428. extra: 2256/1630,
  35429. bottom: 261/2517
  35430. },
  35431. form: "normal"
  35432. },
  35433. insides: {
  35434. height: math.unit(11.92, "feet"),
  35435. name: "Insides",
  35436. image: {
  35437. source: "./media/characters/saphinara/insides.svg"
  35438. },
  35439. form: "normal"
  35440. },
  35441. head: {
  35442. height: math.unit(4.17, "feet"),
  35443. name: "Head",
  35444. image: {
  35445. source: "./media/characters/saphinara/head.svg"
  35446. },
  35447. form: "normal"
  35448. },
  35449. tongue: {
  35450. height: math.unit(4.60, "feet"),
  35451. name: "Tongue",
  35452. image: {
  35453. source: "./media/characters/saphinara/tongue.svg"
  35454. },
  35455. form: "normal"
  35456. },
  35457. headEnraged: {
  35458. height: math.unit(5.55, "feet"),
  35459. name: "Head (Enraged)",
  35460. image: {
  35461. source: "./media/characters/saphinara/head-enraged.svg"
  35462. },
  35463. form: "normal"
  35464. },
  35465. wings: {
  35466. height: math.unit(11.95, "feet"),
  35467. name: "Wings",
  35468. image: {
  35469. source: "./media/characters/saphinara/wings.svg"
  35470. },
  35471. form: "normal"
  35472. },
  35473. feathers: {
  35474. height: math.unit(8.92, "feet"),
  35475. name: "Feathers",
  35476. image: {
  35477. source: "./media/characters/saphinara/feathers.svg"
  35478. },
  35479. form: "normal"
  35480. },
  35481. shackles: {
  35482. height: math.unit(2, "feet"),
  35483. name: "Shackles",
  35484. image: {
  35485. source: "./media/characters/saphinara/shackles.svg"
  35486. },
  35487. form: "normal"
  35488. },
  35489. eyes: {
  35490. height: math.unit(1.331, "feet"),
  35491. name: "Eyes",
  35492. image: {
  35493. source: "./media/characters/saphinara/eyes.svg"
  35494. },
  35495. form: "normal"
  35496. },
  35497. eyesEnraged: {
  35498. height: math.unit(1.331, "feet"),
  35499. name: "Eyes (Enraged)",
  35500. image: {
  35501. source: "./media/characters/saphinara/eyes-enraged.svg"
  35502. },
  35503. form: "normal"
  35504. },
  35505. trueFormSide: {
  35506. height: math.unit(200, "feet"),
  35507. weight: math.unit(1e7, "tons"),
  35508. name: "Side",
  35509. image: {
  35510. source: "./media/characters/saphinara/true-form-side.svg",
  35511. extra: 1399/770,
  35512. bottom: 97/1496
  35513. },
  35514. form: "true-form",
  35515. default: true
  35516. },
  35517. trueFormMaw: {
  35518. height: math.unit(71.5, "feet"),
  35519. name: "Maw",
  35520. image: {
  35521. source: "./media/characters/saphinara/true-form-maw.svg",
  35522. extra: 2302/1453,
  35523. bottom: 0/2302
  35524. },
  35525. form: "true-form"
  35526. },
  35527. meowberusSide: {
  35528. height: math.unit(75, "feet"),
  35529. weight: math.unit(180000, "kg"),
  35530. preyCapacity: math.unit(50000, "people"),
  35531. name: "Side",
  35532. image: {
  35533. source: "./media/characters/saphinara/meowberus-side.svg",
  35534. extra: 1400/711,
  35535. bottom: 126/1526
  35536. },
  35537. form: "meowberus",
  35538. extraAttributes: {
  35539. "pawArea": {
  35540. name: "Paw Size",
  35541. power: 2,
  35542. type: "area",
  35543. base: math.unit(35, "m^2")
  35544. }
  35545. }
  35546. },
  35547. },
  35548. [
  35549. {
  35550. name: "Normal",
  35551. height: math.unit(15 + 7/12, "feet"),
  35552. default: true,
  35553. form: "normal"
  35554. },
  35555. {
  35556. name: "Angry",
  35557. height: math.unit(30 + 6/12, "feet"),
  35558. form: "normal"
  35559. },
  35560. {
  35561. name: "Enraged",
  35562. height: math.unit(102 + 1/12, "feet"),
  35563. form: "normal"
  35564. },
  35565. {
  35566. name: "True",
  35567. height: math.unit(200, "feet"),
  35568. default: true,
  35569. form: "true-form"
  35570. },
  35571. {
  35572. name: "Normal",
  35573. height: math.unit(75, "feet"),
  35574. default: true,
  35575. form: "meowberus"
  35576. },
  35577. ],
  35578. {
  35579. "normal": {
  35580. name: "Normal",
  35581. default: true
  35582. },
  35583. "true-form": {
  35584. name: "True Form"
  35585. },
  35586. "meowberus": {
  35587. name: "Meowberus",
  35588. },
  35589. }
  35590. ))
  35591. characterMakers.push(() => makeCharacter(
  35592. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  35593. {
  35594. front: {
  35595. height: math.unit(6 + 8/12, "feet"),
  35596. weight: math.unit(300, "lb"),
  35597. name: "Front",
  35598. image: {
  35599. source: "./media/characters/jrain/front.svg",
  35600. extra: 3039/2865,
  35601. bottom: 399/3438
  35602. }
  35603. },
  35604. back: {
  35605. height: math.unit(6 + 8/12, "feet"),
  35606. weight: math.unit(300, "lb"),
  35607. name: "Back",
  35608. image: {
  35609. source: "./media/characters/jrain/back.svg",
  35610. extra: 3089/2938,
  35611. bottom: 172/3261
  35612. }
  35613. },
  35614. head: {
  35615. height: math.unit(2.14, "feet"),
  35616. name: "Head",
  35617. image: {
  35618. source: "./media/characters/jrain/head.svg"
  35619. }
  35620. },
  35621. maw: {
  35622. height: math.unit(1.77, "feet"),
  35623. name: "Maw",
  35624. image: {
  35625. source: "./media/characters/jrain/maw.svg"
  35626. }
  35627. },
  35628. leftHand: {
  35629. height: math.unit(1.1, "feet"),
  35630. name: "Left Hand",
  35631. image: {
  35632. source: "./media/characters/jrain/left-hand.svg"
  35633. }
  35634. },
  35635. rightHand: {
  35636. height: math.unit(1.1, "feet"),
  35637. name: "Right Hand",
  35638. image: {
  35639. source: "./media/characters/jrain/right-hand.svg"
  35640. }
  35641. },
  35642. eye: {
  35643. height: math.unit(0.35, "feet"),
  35644. name: "Eye",
  35645. image: {
  35646. source: "./media/characters/jrain/eye.svg"
  35647. }
  35648. },
  35649. },
  35650. [
  35651. {
  35652. name: "Normal",
  35653. height: math.unit(6 + 8/12, "feet"),
  35654. default: true
  35655. },
  35656. {
  35657. name: "Casually Large",
  35658. height: math.unit(25, "feet")
  35659. },
  35660. {
  35661. name: "Giant",
  35662. height: math.unit(100, "feet")
  35663. },
  35664. {
  35665. name: "Kaiju",
  35666. height: math.unit(300, "feet")
  35667. },
  35668. ]
  35669. ))
  35670. characterMakers.push(() => makeCharacter(
  35671. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  35672. {
  35673. dragon: {
  35674. height: math.unit(5, "meters"),
  35675. name: "Dragon",
  35676. image: {
  35677. source: "./media/characters/sabrina/dragon.svg",
  35678. extra: 3670 / 2365,
  35679. bottom: 333 / 4003
  35680. }
  35681. },
  35682. gryphon: {
  35683. height: math.unit(3, "meters"),
  35684. name: "Gryphon",
  35685. image: {
  35686. source: "./media/characters/sabrina/gryphon.svg",
  35687. extra: 1576 / 945,
  35688. bottom: 71 / 1647
  35689. }
  35690. },
  35691. snake: {
  35692. height: math.unit(12, "meters"),
  35693. name: "Snake",
  35694. image: {
  35695. source: "./media/characters/sabrina/snake.svg",
  35696. extra: 1758 / 1320,
  35697. bottom: 186 / 1944
  35698. }
  35699. },
  35700. collar: {
  35701. height: math.unit(1.86, "meters"),
  35702. name: "Collar",
  35703. image: {
  35704. source: "./media/characters/sabrina/collar.svg"
  35705. }
  35706. },
  35707. eye: {
  35708. height: math.unit(0.53, "meters"),
  35709. name: "Eye",
  35710. image: {
  35711. source: "./media/characters/sabrina/eye.svg"
  35712. }
  35713. },
  35714. foot: {
  35715. height: math.unit(1.86, "meters"),
  35716. name: "Foot",
  35717. image: {
  35718. source: "./media/characters/sabrina/foot.svg"
  35719. }
  35720. },
  35721. hand: {
  35722. height: math.unit(1.32, "meters"),
  35723. name: "Hand",
  35724. image: {
  35725. source: "./media/characters/sabrina/hand.svg"
  35726. }
  35727. },
  35728. head: {
  35729. height: math.unit(2.44, "meters"),
  35730. name: "Head",
  35731. image: {
  35732. source: "./media/characters/sabrina/head.svg"
  35733. }
  35734. },
  35735. headAngry: {
  35736. height: math.unit(2.44, "meters"),
  35737. name: "Head (Angry))",
  35738. image: {
  35739. source: "./media/characters/sabrina/head-angry.svg"
  35740. }
  35741. },
  35742. maw: {
  35743. height: math.unit(1.65, "meters"),
  35744. name: "Maw",
  35745. image: {
  35746. source: "./media/characters/sabrina/maw.svg"
  35747. }
  35748. },
  35749. spikes: {
  35750. height: math.unit(1.69, "meters"),
  35751. name: "Spikes",
  35752. image: {
  35753. source: "./media/characters/sabrina/spikes.svg"
  35754. }
  35755. },
  35756. stomach: {
  35757. height: math.unit(1.15, "meters"),
  35758. name: "Stomach",
  35759. image: {
  35760. source: "./media/characters/sabrina/stomach.svg"
  35761. }
  35762. },
  35763. tongue: {
  35764. height: math.unit(1.27, "meters"),
  35765. name: "Tongue",
  35766. image: {
  35767. source: "./media/characters/sabrina/tongue.svg"
  35768. }
  35769. },
  35770. wingDorsal: {
  35771. height: math.unit(4.85, "meters"),
  35772. name: "Wing (Dorsal)",
  35773. image: {
  35774. source: "./media/characters/sabrina/wing-dorsal.svg"
  35775. }
  35776. },
  35777. wingVentral: {
  35778. height: math.unit(4.85, "meters"),
  35779. name: "Wing (Ventral)",
  35780. image: {
  35781. source: "./media/characters/sabrina/wing-ventral.svg"
  35782. }
  35783. },
  35784. },
  35785. [
  35786. {
  35787. name: "Normal",
  35788. height: math.unit(5, "meters"),
  35789. default: true
  35790. },
  35791. ]
  35792. ))
  35793. characterMakers.push(() => makeCharacter(
  35794. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  35795. {
  35796. frontMaid: {
  35797. height: math.unit(5 + 5/12, "feet"),
  35798. weight: math.unit(130, "lb"),
  35799. name: "Front (Maid)",
  35800. image: {
  35801. source: "./media/characters/midnight-tales/front-maid.svg",
  35802. extra: 489/454,
  35803. bottom: 61/550
  35804. }
  35805. },
  35806. frontFormal: {
  35807. height: math.unit(5 + 5/12, "feet"),
  35808. weight: math.unit(130, "lb"),
  35809. name: "Front (Formal)",
  35810. image: {
  35811. source: "./media/characters/midnight-tales/front-formal.svg",
  35812. extra: 489/454,
  35813. bottom: 61/550
  35814. }
  35815. },
  35816. back: {
  35817. height: math.unit(5 + 5/12, "feet"),
  35818. weight: math.unit(130, "lb"),
  35819. name: "Back",
  35820. image: {
  35821. source: "./media/characters/midnight-tales/back.svg",
  35822. extra: 498/456,
  35823. bottom: 33/531
  35824. }
  35825. },
  35826. frontBeast: {
  35827. height: math.unit(40, "feet"),
  35828. weight: math.unit(64000, "lb"),
  35829. name: "Front (Beast)",
  35830. image: {
  35831. source: "./media/characters/midnight-tales/front-beast.svg",
  35832. extra: 927/860,
  35833. bottom: 53/980
  35834. }
  35835. },
  35836. backBeast: {
  35837. height: math.unit(40, "feet"),
  35838. weight: math.unit(64000, "lb"),
  35839. name: "Back (Beast)",
  35840. image: {
  35841. source: "./media/characters/midnight-tales/back-beast.svg",
  35842. extra: 929/855,
  35843. bottom: 16/945
  35844. }
  35845. },
  35846. footBeast: {
  35847. height: math.unit(6.7, "feet"),
  35848. name: "Foot (Beast)",
  35849. image: {
  35850. source: "./media/characters/midnight-tales/foot-beast.svg"
  35851. }
  35852. },
  35853. headBeast: {
  35854. height: math.unit(8, "feet"),
  35855. name: "Head (Beast)",
  35856. image: {
  35857. source: "./media/characters/midnight-tales/head-beast.svg"
  35858. }
  35859. },
  35860. },
  35861. [
  35862. {
  35863. name: "Normal",
  35864. height: math.unit(5 + 5 / 12, "feet"),
  35865. default: true
  35866. },
  35867. {
  35868. name: "Macro",
  35869. height: math.unit(25, "feet")
  35870. },
  35871. ]
  35872. ))
  35873. characterMakers.push(() => makeCharacter(
  35874. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  35875. {
  35876. front: {
  35877. height: math.unit(5 + 10/12, "feet"),
  35878. name: "Front",
  35879. image: {
  35880. source: "./media/characters/argon/front.svg",
  35881. extra: 2009/1935,
  35882. bottom: 118/2127
  35883. }
  35884. },
  35885. back: {
  35886. height: math.unit(5 + 10/12, "feet"),
  35887. name: "Back",
  35888. image: {
  35889. source: "./media/characters/argon/back.svg",
  35890. extra: 2047/1992,
  35891. bottom: 20/2067
  35892. }
  35893. },
  35894. frontDressed: {
  35895. height: math.unit(5 + 10/12, "feet"),
  35896. name: "Front (Dressed)",
  35897. image: {
  35898. source: "./media/characters/argon/front-dressed.svg",
  35899. extra: 2009/1935,
  35900. bottom: 118/2127
  35901. }
  35902. },
  35903. },
  35904. [
  35905. {
  35906. name: "Normal",
  35907. height: math.unit(5 + 10/12, "feet"),
  35908. default: true
  35909. },
  35910. ]
  35911. ))
  35912. characterMakers.push(() => makeCharacter(
  35913. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  35914. {
  35915. front: {
  35916. height: math.unit(8 + 6/12, "feet"),
  35917. weight: math.unit(1150, "lb"),
  35918. name: "Front",
  35919. image: {
  35920. source: "./media/characters/kichi/front.svg",
  35921. extra: 1267/1164,
  35922. bottom: 61/1328
  35923. }
  35924. },
  35925. back: {
  35926. height: math.unit(8 + 6/12, "feet"),
  35927. weight: math.unit(1150, "lb"),
  35928. name: "Back",
  35929. image: {
  35930. source: "./media/characters/kichi/back.svg",
  35931. extra: 1273/1166,
  35932. bottom: 33/1306
  35933. }
  35934. },
  35935. },
  35936. [
  35937. {
  35938. name: "Normal",
  35939. height: math.unit(8 + 6/12, "feet"),
  35940. default: true
  35941. },
  35942. ]
  35943. ))
  35944. characterMakers.push(() => makeCharacter(
  35945. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  35946. {
  35947. front: {
  35948. height: math.unit(6, "feet"),
  35949. weight: math.unit(210, "lb"),
  35950. name: "Front",
  35951. image: {
  35952. source: "./media/characters/manetel-greyscale/front.svg",
  35953. extra: 350/312,
  35954. bottom: 8/358
  35955. }
  35956. },
  35957. },
  35958. [
  35959. {
  35960. name: "Micro",
  35961. height: math.unit(2, "inches")
  35962. },
  35963. {
  35964. name: "Normal",
  35965. height: math.unit(6, "feet"),
  35966. default: true
  35967. },
  35968. {
  35969. name: "Minimacro",
  35970. height: math.unit(17, "feet")
  35971. },
  35972. {
  35973. name: "Macro",
  35974. height: math.unit(117, "feet")
  35975. },
  35976. ]
  35977. ))
  35978. characterMakers.push(() => makeCharacter(
  35979. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  35980. {
  35981. side: {
  35982. height: math.unit(5 + 1/12, "feet"),
  35983. weight: math.unit(418, "lb"),
  35984. name: "Side",
  35985. image: {
  35986. source: "./media/characters/softpurr/side.svg",
  35987. extra: 1993/1945,
  35988. bottom: 134/2127
  35989. }
  35990. },
  35991. front: {
  35992. height: math.unit(5 + 1/12, "feet"),
  35993. weight: math.unit(418, "lb"),
  35994. name: "Front",
  35995. image: {
  35996. source: "./media/characters/softpurr/front.svg",
  35997. extra: 1950/1856,
  35998. bottom: 174/2124
  35999. }
  36000. },
  36001. paw: {
  36002. height: math.unit(1, "feet"),
  36003. name: "Paw",
  36004. image: {
  36005. source: "./media/characters/softpurr/paw.svg"
  36006. }
  36007. },
  36008. },
  36009. [
  36010. {
  36011. name: "Normal",
  36012. height: math.unit(5 + 1/12, "feet"),
  36013. default: true
  36014. },
  36015. ]
  36016. ))
  36017. characterMakers.push(() => makeCharacter(
  36018. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  36019. {
  36020. front: {
  36021. height: math.unit(260, "meters"),
  36022. name: "Front",
  36023. image: {
  36024. source: "./media/characters/anahita/front.svg",
  36025. extra: 665/635,
  36026. bottom: 89/754
  36027. }
  36028. },
  36029. },
  36030. [
  36031. {
  36032. name: "Macro",
  36033. height: math.unit(260, "meters"),
  36034. default: true
  36035. },
  36036. ]
  36037. ))
  36038. characterMakers.push(() => makeCharacter(
  36039. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  36040. {
  36041. front: {
  36042. height: math.unit(4 + 10/12, "feet"),
  36043. weight: math.unit(160, "lb"),
  36044. name: "Front",
  36045. image: {
  36046. source: "./media/characters/chip-mouse/front.svg",
  36047. extra: 3528/3408,
  36048. bottom: 0/3528
  36049. }
  36050. },
  36051. frontNsfw: {
  36052. height: math.unit(4 + 10/12, "feet"),
  36053. weight: math.unit(160, "lb"),
  36054. name: "Front (NSFW)",
  36055. image: {
  36056. source: "./media/characters/chip-mouse/front-nsfw.svg",
  36057. extra: 3528/3408,
  36058. bottom: 0/3528
  36059. }
  36060. },
  36061. },
  36062. [
  36063. {
  36064. name: "Normal",
  36065. height: math.unit(4 + 10/12, "feet"),
  36066. default: true
  36067. },
  36068. ]
  36069. ))
  36070. characterMakers.push(() => makeCharacter(
  36071. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  36072. {
  36073. side: {
  36074. height: math.unit(10, "feet"),
  36075. weight: math.unit(14000, "lb"),
  36076. name: "Side",
  36077. image: {
  36078. source: "./media/characters/kremm/side.svg",
  36079. extra: 1390/1053,
  36080. bottom: 90/1480
  36081. }
  36082. },
  36083. gut: {
  36084. height: math.unit(5.8, "feet"),
  36085. name: "Gut",
  36086. image: {
  36087. source: "./media/characters/kremm/gut.svg"
  36088. }
  36089. },
  36090. ass: {
  36091. height: math.unit(6.1, "feet"),
  36092. name: "Ass",
  36093. image: {
  36094. source: "./media/characters/kremm/ass.svg"
  36095. }
  36096. },
  36097. jaws: {
  36098. height: math.unit(2.2, "feet"),
  36099. name: "Jaws",
  36100. image: {
  36101. source: "./media/characters/kremm/jaws.svg"
  36102. }
  36103. },
  36104. dick: {
  36105. height: math.unit(4.26, "feet"),
  36106. name: "Dick",
  36107. image: {
  36108. source: "./media/characters/kremm/dick.svg"
  36109. }
  36110. },
  36111. },
  36112. [
  36113. {
  36114. name: "Normal",
  36115. height: math.unit(10, "feet"),
  36116. default: true
  36117. },
  36118. ]
  36119. ))
  36120. characterMakers.push(() => makeCharacter(
  36121. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  36122. {
  36123. front: {
  36124. height: math.unit(30, "stories"),
  36125. name: "Front",
  36126. image: {
  36127. source: "./media/characters/kai/front.svg",
  36128. extra: 1892/1718,
  36129. bottom: 162/2054
  36130. }
  36131. },
  36132. },
  36133. [
  36134. {
  36135. name: "Macro",
  36136. height: math.unit(30, "stories"),
  36137. default: true
  36138. },
  36139. ]
  36140. ))
  36141. characterMakers.push(() => makeCharacter(
  36142. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  36143. {
  36144. front: {
  36145. height: math.unit(6 + 4/12, "feet"),
  36146. weight: math.unit(145, "lb"),
  36147. name: "Front",
  36148. image: {
  36149. source: "./media/characters/sykes/front.svg",
  36150. extra: 1321 / 1187,
  36151. bottom: 66 / 1387
  36152. }
  36153. },
  36154. back: {
  36155. height: math.unit(6 + 4/12, "feet"),
  36156. weight: math.unit(145, "lb"),
  36157. name: "Back",
  36158. image: {
  36159. source: "./media/characters/sykes/back.svg",
  36160. extra: 1326/1181,
  36161. bottom: 31/1357
  36162. }
  36163. },
  36164. traditionalOutfit: {
  36165. height: math.unit(6 + 4/12, "feet"),
  36166. weight: math.unit(145, "lb"),
  36167. name: "Traditional Outfit",
  36168. image: {
  36169. source: "./media/characters/sykes/traditional-outfit.svg",
  36170. extra: 1321 / 1187,
  36171. bottom: 66 / 1387
  36172. }
  36173. },
  36174. adventureOutfit: {
  36175. height: math.unit(6 + 4/12, "feet"),
  36176. weight: math.unit(145, "lb"),
  36177. name: "Adventure Outfit",
  36178. image: {
  36179. source: "./media/characters/sykes/adventure-outfit.svg",
  36180. extra: 1321 / 1187,
  36181. bottom: 66 / 1387
  36182. }
  36183. },
  36184. handLeft: {
  36185. height: math.unit(0.9, "feet"),
  36186. name: "Hand (Left)",
  36187. image: {
  36188. source: "./media/characters/sykes/hand-left.svg"
  36189. }
  36190. },
  36191. handRight: {
  36192. height: math.unit(0.839, "feet"),
  36193. name: "Hand (Right)",
  36194. image: {
  36195. source: "./media/characters/sykes/hand-right.svg"
  36196. }
  36197. },
  36198. leftFoot: {
  36199. height: math.unit(1.2, "feet"),
  36200. name: "Foot (Left)",
  36201. image: {
  36202. source: "./media/characters/sykes/foot-left.svg"
  36203. }
  36204. },
  36205. rightFoot: {
  36206. height: math.unit(1.2, "feet"),
  36207. name: "Foot (Right)",
  36208. image: {
  36209. source: "./media/characters/sykes/foot-right.svg"
  36210. }
  36211. },
  36212. maw: {
  36213. height: math.unit(1.93, "feet"),
  36214. name: "Maw",
  36215. image: {
  36216. source: "./media/characters/sykes/maw.svg"
  36217. }
  36218. },
  36219. teeth: {
  36220. height: math.unit(0.51, "feet"),
  36221. name: "Teeth",
  36222. image: {
  36223. source: "./media/characters/sykes/teeth.svg"
  36224. }
  36225. },
  36226. tongue: {
  36227. height: math.unit(2.13, "feet"),
  36228. name: "Tongue",
  36229. image: {
  36230. source: "./media/characters/sykes/tongue.svg"
  36231. }
  36232. },
  36233. uvula: {
  36234. height: math.unit(0.16, "feet"),
  36235. name: "Uvula",
  36236. image: {
  36237. source: "./media/characters/sykes/uvula.svg"
  36238. }
  36239. },
  36240. collar: {
  36241. height: math.unit(0.287, "feet"),
  36242. name: "Collar",
  36243. image: {
  36244. source: "./media/characters/sykes/collar.svg"
  36245. }
  36246. },
  36247. tail: {
  36248. height: math.unit(3.8, "feet"),
  36249. name: "Tail",
  36250. image: {
  36251. source: "./media/characters/sykes/tail.svg"
  36252. }
  36253. },
  36254. },
  36255. [
  36256. {
  36257. name: "Shrunken",
  36258. height: math.unit(5, "inches")
  36259. },
  36260. {
  36261. name: "Normal",
  36262. height: math.unit(6 + 4 / 12, "feet"),
  36263. default: true
  36264. },
  36265. {
  36266. name: "Big",
  36267. height: math.unit(15, "feet")
  36268. },
  36269. ]
  36270. ))
  36271. characterMakers.push(() => makeCharacter(
  36272. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  36273. {
  36274. front: {
  36275. height: math.unit(5 + 8/12, "feet"),
  36276. weight: math.unit(190, "lb"),
  36277. name: "Front",
  36278. image: {
  36279. source: "./media/characters/oven-otter/front.svg",
  36280. extra: 1809/1740,
  36281. bottom: 181/1990
  36282. }
  36283. },
  36284. back: {
  36285. height: math.unit(5 + 8/12, "feet"),
  36286. weight: math.unit(190, "lb"),
  36287. name: "Back",
  36288. image: {
  36289. source: "./media/characters/oven-otter/back.svg",
  36290. extra: 1709/1635,
  36291. bottom: 118/1827
  36292. }
  36293. },
  36294. hand: {
  36295. height: math.unit(1.07, "feet"),
  36296. name: "Hand",
  36297. image: {
  36298. source: "./media/characters/oven-otter/hand.svg"
  36299. }
  36300. },
  36301. beans: {
  36302. height: math.unit(1.74, "feet"),
  36303. name: "Beans",
  36304. image: {
  36305. source: "./media/characters/oven-otter/beans.svg"
  36306. }
  36307. },
  36308. },
  36309. [
  36310. {
  36311. name: "Micro",
  36312. height: math.unit(0.5, "inches")
  36313. },
  36314. {
  36315. name: "Normal",
  36316. height: math.unit(5 + 8/12, "feet"),
  36317. default: true
  36318. },
  36319. {
  36320. name: "Macro",
  36321. height: math.unit(250, "feet")
  36322. },
  36323. {
  36324. name: "Really High",
  36325. height: math.unit(420, "feet")
  36326. },
  36327. ]
  36328. ))
  36329. characterMakers.push(() => makeCharacter(
  36330. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  36331. {
  36332. front: {
  36333. height: math.unit(5, "meters"),
  36334. weight: math.unit(292000000000000, "kg"),
  36335. name: "Front",
  36336. image: {
  36337. source: "./media/characters/devourer/front.svg",
  36338. extra: 1800/1733,
  36339. bottom: 211/2011
  36340. }
  36341. },
  36342. maw: {
  36343. height: math.unit(1.1, "meter"),
  36344. name: "Maw",
  36345. image: {
  36346. source: "./media/characters/devourer/maw.svg"
  36347. }
  36348. },
  36349. },
  36350. [
  36351. {
  36352. name: "Small",
  36353. height: math.unit(3, "meters")
  36354. },
  36355. {
  36356. name: "Large",
  36357. height: math.unit(5, "meters"),
  36358. default: true
  36359. },
  36360. ]
  36361. ))
  36362. characterMakers.push(() => makeCharacter(
  36363. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  36364. {
  36365. front: {
  36366. height: math.unit(6, "feet"),
  36367. weight: math.unit(400, "lb"),
  36368. name: "Front",
  36369. image: {
  36370. source: "./media/characters/ellarby/front.svg",
  36371. extra: 1909/1763,
  36372. bottom: 80/1989
  36373. }
  36374. },
  36375. back: {
  36376. height: math.unit(6, "feet"),
  36377. weight: math.unit(400, "lb"),
  36378. name: "Back",
  36379. image: {
  36380. source: "./media/characters/ellarby/back.svg",
  36381. extra: 1914/1784,
  36382. bottom: 172/2086
  36383. }
  36384. },
  36385. },
  36386. [
  36387. {
  36388. name: "Mischief",
  36389. height: math.unit(18, "inches")
  36390. },
  36391. {
  36392. name: "Trouble",
  36393. height: math.unit(12, "feet")
  36394. },
  36395. {
  36396. name: "Havoc",
  36397. height: math.unit(200, "feet"),
  36398. default: true
  36399. },
  36400. {
  36401. name: "Pandemonium",
  36402. height: math.unit(1, "mile")
  36403. },
  36404. {
  36405. name: "Catastrophe",
  36406. height: math.unit(100, "miles")
  36407. },
  36408. ]
  36409. ))
  36410. characterMakers.push(() => makeCharacter(
  36411. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  36412. {
  36413. front: {
  36414. height: math.unit(4.7, "meters"),
  36415. weight: math.unit(6500, "kg"),
  36416. name: "Front",
  36417. image: {
  36418. source: "./media/characters/vex/front.svg",
  36419. extra: 1288/1140,
  36420. bottom: 100/1388
  36421. }
  36422. },
  36423. },
  36424. [
  36425. {
  36426. name: "Normal",
  36427. height: math.unit(4.7, "meters"),
  36428. default: true
  36429. },
  36430. ]
  36431. ))
  36432. characterMakers.push(() => makeCharacter(
  36433. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  36434. {
  36435. normal: {
  36436. height: math.unit(6, "feet"),
  36437. weight: math.unit(350, "lb"),
  36438. name: "Normal",
  36439. image: {
  36440. source: "./media/characters/teshy/normal.svg",
  36441. extra: 1795/1735,
  36442. bottom: 16/1811
  36443. }
  36444. },
  36445. monsterFront: {
  36446. height: math.unit(12, "feet"),
  36447. weight: math.unit(4700, "lb"),
  36448. name: "Monster (Front)",
  36449. image: {
  36450. source: "./media/characters/teshy/monster-front.svg",
  36451. extra: 2042/2034,
  36452. bottom: 128/2170
  36453. }
  36454. },
  36455. monsterSide: {
  36456. height: math.unit(12, "feet"),
  36457. weight: math.unit(4700, "lb"),
  36458. name: "Monster (Side)",
  36459. image: {
  36460. source: "./media/characters/teshy/monster-side.svg",
  36461. extra: 2067/2056,
  36462. bottom: 70/2137
  36463. }
  36464. },
  36465. monsterBack: {
  36466. height: math.unit(12, "feet"),
  36467. weight: math.unit(4700, "lb"),
  36468. name: "Monster (Back)",
  36469. image: {
  36470. source: "./media/characters/teshy/monster-back.svg",
  36471. extra: 1921/1914,
  36472. bottom: 171/2092
  36473. }
  36474. },
  36475. },
  36476. [
  36477. {
  36478. name: "Normal",
  36479. height: math.unit(6, "feet"),
  36480. default: true
  36481. },
  36482. ]
  36483. ))
  36484. characterMakers.push(() => makeCharacter(
  36485. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  36486. {
  36487. front: {
  36488. height: math.unit(6, "feet"),
  36489. name: "Front",
  36490. image: {
  36491. source: "./media/characters/ramey/front.svg",
  36492. extra: 790/787,
  36493. bottom: 27/817
  36494. }
  36495. },
  36496. },
  36497. [
  36498. {
  36499. name: "Normal",
  36500. height: math.unit(6, "feet"),
  36501. default: true
  36502. },
  36503. ]
  36504. ))
  36505. characterMakers.push(() => makeCharacter(
  36506. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  36507. {
  36508. front: {
  36509. height: math.unit(5 + 5/12, "feet"),
  36510. weight: math.unit(120, "lb"),
  36511. name: "Front",
  36512. image: {
  36513. source: "./media/characters/phirae/front.svg",
  36514. extra: 2491/2436,
  36515. bottom: 38/2529
  36516. }
  36517. },
  36518. },
  36519. [
  36520. {
  36521. name: "Normal",
  36522. height: math.unit(5 + 5/12, "feet"),
  36523. default: true
  36524. },
  36525. ]
  36526. ))
  36527. characterMakers.push(() => makeCharacter(
  36528. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  36529. {
  36530. front: {
  36531. height: math.unit(5 + 3/12, "feet"),
  36532. name: "Front",
  36533. image: {
  36534. source: "./media/characters/stagglas/front.svg",
  36535. extra: 962/882,
  36536. bottom: 53/1015
  36537. }
  36538. },
  36539. feral: {
  36540. height: math.unit(335, "cm"),
  36541. name: "Feral",
  36542. image: {
  36543. source: "./media/characters/stagglas/feral.svg",
  36544. extra: 1732/1090,
  36545. bottom: 48/1780
  36546. }
  36547. },
  36548. },
  36549. [
  36550. {
  36551. name: "Normal",
  36552. height: math.unit(5 + 3/12, "feet"),
  36553. default: true
  36554. },
  36555. ]
  36556. ))
  36557. characterMakers.push(() => makeCharacter(
  36558. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  36559. {
  36560. front: {
  36561. height: math.unit(5 + 4/12, "feet"),
  36562. weight: math.unit(145, "lb"),
  36563. name: "Front",
  36564. image: {
  36565. source: "./media/characters/starra/front.svg",
  36566. extra: 1790/1691,
  36567. bottom: 91/1881
  36568. }
  36569. },
  36570. },
  36571. [
  36572. {
  36573. name: "Normal",
  36574. height: math.unit(5 + 4/12, "feet"),
  36575. default: true
  36576. },
  36577. ]
  36578. ))
  36579. characterMakers.push(() => makeCharacter(
  36580. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  36581. {
  36582. front: {
  36583. height: math.unit(2.2, "meters"),
  36584. name: "Front",
  36585. image: {
  36586. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  36587. extra: 1248/972,
  36588. bottom: 38/1286
  36589. }
  36590. },
  36591. },
  36592. [
  36593. {
  36594. name: "Normal",
  36595. height: math.unit(2.2, "meters"),
  36596. default: true
  36597. },
  36598. ]
  36599. ))
  36600. characterMakers.push(() => makeCharacter(
  36601. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  36602. {
  36603. side: {
  36604. height: math.unit(8 + 2/12, "feet"),
  36605. weight: math.unit(1240, "lb"),
  36606. name: "Side",
  36607. image: {
  36608. source: "./media/characters/mika-valentine/side.svg",
  36609. extra: 2670/2501,
  36610. bottom: 250/2920
  36611. }
  36612. },
  36613. },
  36614. [
  36615. {
  36616. name: "Normal",
  36617. height: math.unit(8 + 2/12, "feet"),
  36618. default: true
  36619. },
  36620. ]
  36621. ))
  36622. characterMakers.push(() => makeCharacter(
  36623. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  36624. {
  36625. front: {
  36626. height: math.unit(7 + 2/12, "feet"),
  36627. name: "Front",
  36628. image: {
  36629. source: "./media/characters/xoltol/front.svg",
  36630. extra: 2212/2124,
  36631. bottom: 84/2296
  36632. }
  36633. },
  36634. side: {
  36635. height: math.unit(7 + 2/12, "feet"),
  36636. name: "Side",
  36637. image: {
  36638. source: "./media/characters/xoltol/side.svg",
  36639. extra: 2273/2197,
  36640. bottom: 26/2299
  36641. }
  36642. },
  36643. hand: {
  36644. height: math.unit(2.5, "feet"),
  36645. name: "Hand",
  36646. image: {
  36647. source: "./media/characters/xoltol/hand.svg"
  36648. }
  36649. },
  36650. },
  36651. [
  36652. {
  36653. name: "Small-ish",
  36654. height: math.unit(5 + 11/12, "feet")
  36655. },
  36656. {
  36657. name: "Normal",
  36658. height: math.unit(7 + 2/12, "feet")
  36659. },
  36660. {
  36661. name: "\"Macro\"",
  36662. height: math.unit(14 + 9/12, "feet"),
  36663. default: true
  36664. },
  36665. {
  36666. name: "Alternate Height",
  36667. height: math.unit(20, "feet")
  36668. },
  36669. {
  36670. name: "Actually Macro",
  36671. height: math.unit(100, "feet")
  36672. },
  36673. ]
  36674. ))
  36675. characterMakers.push(() => makeCharacter(
  36676. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  36677. {
  36678. front: {
  36679. height: math.unit(5 + 2/12, "feet"),
  36680. name: "Front",
  36681. image: {
  36682. source: "./media/characters/kotetsu-redwood/front.svg",
  36683. extra: 1053/942,
  36684. bottom: 60/1113
  36685. }
  36686. },
  36687. },
  36688. [
  36689. {
  36690. name: "Normal",
  36691. height: math.unit(5 + 2/12, "feet"),
  36692. default: true
  36693. },
  36694. ]
  36695. ))
  36696. characterMakers.push(() => makeCharacter(
  36697. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  36698. {
  36699. front: {
  36700. height: math.unit(2.4, "meters"),
  36701. weight: math.unit(125, "kg"),
  36702. name: "Front",
  36703. image: {
  36704. source: "./media/characters/lilith/front.svg",
  36705. extra: 1590/1513,
  36706. bottom: 203/1793
  36707. }
  36708. },
  36709. },
  36710. [
  36711. {
  36712. name: "Humanoid",
  36713. height: math.unit(2.4, "meters")
  36714. },
  36715. {
  36716. name: "Normal",
  36717. height: math.unit(6, "meters"),
  36718. default: true
  36719. },
  36720. {
  36721. name: "Largest",
  36722. height: math.unit(55, "meters")
  36723. },
  36724. ]
  36725. ))
  36726. characterMakers.push(() => makeCharacter(
  36727. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  36728. {
  36729. front: {
  36730. height: math.unit(8 + 4/12, "feet"),
  36731. weight: math.unit(535, "lb"),
  36732. name: "Front",
  36733. image: {
  36734. source: "./media/characters/beh'kah-bolger/front.svg",
  36735. extra: 1660/1603,
  36736. bottom: 37/1697
  36737. }
  36738. },
  36739. },
  36740. [
  36741. {
  36742. name: "Normal",
  36743. height: math.unit(8 + 4/12, "feet"),
  36744. default: true
  36745. },
  36746. {
  36747. name: "Kaiju",
  36748. height: math.unit(250, "feet")
  36749. },
  36750. {
  36751. name: "Still Growing",
  36752. height: math.unit(10, "miles")
  36753. },
  36754. {
  36755. name: "Continental",
  36756. height: math.unit(5000, "miles")
  36757. },
  36758. {
  36759. name: "Final Form",
  36760. height: math.unit(2500000, "miles")
  36761. },
  36762. ]
  36763. ))
  36764. characterMakers.push(() => makeCharacter(
  36765. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  36766. {
  36767. front: {
  36768. height: math.unit(7 + 2/12, "feet"),
  36769. weight: math.unit(230, "kg"),
  36770. name: "Front",
  36771. image: {
  36772. source: "./media/characters/tatyana-milewska/front.svg",
  36773. extra: 1199/1150,
  36774. bottom: 86/1285
  36775. }
  36776. },
  36777. },
  36778. [
  36779. {
  36780. name: "Normal",
  36781. height: math.unit(7 + 2/12, "feet"),
  36782. default: true
  36783. },
  36784. {
  36785. name: "Big",
  36786. height: math.unit(12, "feet")
  36787. },
  36788. {
  36789. name: "Minimacro",
  36790. height: math.unit(20, "feet")
  36791. },
  36792. {
  36793. name: "Macro",
  36794. height: math.unit(120, "feet")
  36795. },
  36796. ]
  36797. ))
  36798. characterMakers.push(() => makeCharacter(
  36799. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  36800. {
  36801. front: {
  36802. height: math.unit(7 + 8/12, "feet"),
  36803. weight: math.unit(152, "kg"),
  36804. name: "Front",
  36805. image: {
  36806. source: "./media/characters/helen-arri/front.svg",
  36807. extra: 440/423,
  36808. bottom: 14/454
  36809. }
  36810. },
  36811. back: {
  36812. height: math.unit(7 + 8/12, "feet"),
  36813. weight: math.unit(152, "kg"),
  36814. name: "Back",
  36815. image: {
  36816. source: "./media/characters/helen-arri/back.svg",
  36817. extra: 443/426,
  36818. bottom: 8/451
  36819. }
  36820. },
  36821. },
  36822. [
  36823. {
  36824. name: "Normal",
  36825. height: math.unit(7 + 8/12, "feet"),
  36826. default: true
  36827. },
  36828. {
  36829. name: "Big",
  36830. height: math.unit(14, "feet")
  36831. },
  36832. {
  36833. name: "Minimacro",
  36834. height: math.unit(24, "feet")
  36835. },
  36836. {
  36837. name: "Macro",
  36838. height: math.unit(140, "feet")
  36839. },
  36840. ]
  36841. ))
  36842. characterMakers.push(() => makeCharacter(
  36843. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  36844. {
  36845. front: {
  36846. height: math.unit(6, "meters"),
  36847. name: "Front",
  36848. image: {
  36849. source: "./media/characters/ehanu-rehu/front.svg",
  36850. extra: 1800/1800,
  36851. bottom: 59/1859
  36852. }
  36853. },
  36854. },
  36855. [
  36856. {
  36857. name: "Normal",
  36858. height: math.unit(6, "meters"),
  36859. default: true
  36860. },
  36861. ]
  36862. ))
  36863. characterMakers.push(() => makeCharacter(
  36864. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  36865. {
  36866. front: {
  36867. height: math.unit(7 + 3/12, "feet"),
  36868. name: "Front",
  36869. image: {
  36870. source: "./media/characters/renholder/front.svg",
  36871. extra: 3096/2960,
  36872. bottom: 250/3346
  36873. }
  36874. },
  36875. },
  36876. [
  36877. {
  36878. name: "Normal Bat",
  36879. height: math.unit(7 + 3/12, "feet"),
  36880. default: true
  36881. },
  36882. {
  36883. name: "Slightly Tall Bat",
  36884. height: math.unit(100, "feet")
  36885. },
  36886. {
  36887. name: "Big Bat",
  36888. height: math.unit(1000, "feet")
  36889. },
  36890. {
  36891. name: "City-Sized Bat",
  36892. height: math.unit(200000, "feet")
  36893. },
  36894. {
  36895. name: "Bigger Bat",
  36896. height: math.unit(10000, "miles")
  36897. },
  36898. {
  36899. name: "Solar Sized Bat",
  36900. height: math.unit(100, "AU")
  36901. },
  36902. {
  36903. name: "Galactic Bat",
  36904. height: math.unit(200000, "lightyears")
  36905. },
  36906. {
  36907. name: "Universally Known Bat",
  36908. height: math.unit(1, "universe")
  36909. },
  36910. ]
  36911. ))
  36912. characterMakers.push(() => makeCharacter(
  36913. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  36914. {
  36915. front: {
  36916. height: math.unit(6 + 11/12, "feet"),
  36917. weight: math.unit(250, "lb"),
  36918. name: "Front",
  36919. image: {
  36920. source: "./media/characters/cookiecat/front.svg",
  36921. extra: 893/827,
  36922. bottom: 14/907
  36923. }
  36924. },
  36925. },
  36926. [
  36927. {
  36928. name: "Micro",
  36929. height: math.unit(3, "inches")
  36930. },
  36931. {
  36932. name: "Normal",
  36933. height: math.unit(6 + 11/12, "feet"),
  36934. default: true
  36935. },
  36936. {
  36937. name: "Macro",
  36938. height: math.unit(100, "feet")
  36939. },
  36940. {
  36941. name: "Macro+",
  36942. height: math.unit(404, "feet")
  36943. },
  36944. {
  36945. name: "Megamacro",
  36946. height: math.unit(165, "miles")
  36947. },
  36948. {
  36949. name: "Planetary",
  36950. height: math.unit(4600, "miles")
  36951. },
  36952. ]
  36953. ))
  36954. characterMakers.push(() => makeCharacter(
  36955. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  36956. {
  36957. front: {
  36958. height: math.unit(10 + 3/12, "feet"),
  36959. weight: math.unit(1500, "lb"),
  36960. name: "Front",
  36961. image: {
  36962. source: "./media/characters/tux-kusanagi/front.svg",
  36963. extra: 944/840,
  36964. bottom: 39/983
  36965. }
  36966. },
  36967. back: {
  36968. height: math.unit(10 + 3/12, "feet"),
  36969. weight: math.unit(1500, "lb"),
  36970. name: "Back",
  36971. image: {
  36972. source: "./media/characters/tux-kusanagi/back.svg",
  36973. extra: 941/842,
  36974. bottom: 28/969
  36975. }
  36976. },
  36977. rump: {
  36978. height: math.unit(5.25, "feet"),
  36979. name: "Rump",
  36980. image: {
  36981. source: "./media/characters/tux-kusanagi/rump.svg"
  36982. }
  36983. },
  36984. beak: {
  36985. height: math.unit(1.54, "feet"),
  36986. name: "Beak",
  36987. image: {
  36988. source: "./media/characters/tux-kusanagi/beak.svg"
  36989. }
  36990. },
  36991. },
  36992. [
  36993. {
  36994. name: "Normal",
  36995. height: math.unit(10 + 3/12, "feet"),
  36996. default: true
  36997. },
  36998. ]
  36999. ))
  37000. characterMakers.push(() => makeCharacter(
  37001. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  37002. {
  37003. front: {
  37004. height: math.unit(58, "feet"),
  37005. weight: math.unit(200, "tons"),
  37006. name: "Front",
  37007. image: {
  37008. source: "./media/characters/uzarmazari/front.svg",
  37009. extra: 1575/1455,
  37010. bottom: 152/1727
  37011. }
  37012. },
  37013. back: {
  37014. height: math.unit(58, "feet"),
  37015. weight: math.unit(200, "tons"),
  37016. name: "Back",
  37017. image: {
  37018. source: "./media/characters/uzarmazari/back.svg",
  37019. extra: 1585/1510,
  37020. bottom: 157/1742
  37021. }
  37022. },
  37023. head: {
  37024. height: math.unit(26, "feet"),
  37025. name: "Head",
  37026. image: {
  37027. source: "./media/characters/uzarmazari/head.svg"
  37028. }
  37029. },
  37030. },
  37031. [
  37032. {
  37033. name: "Normal",
  37034. height: math.unit(58, "feet"),
  37035. default: true
  37036. },
  37037. ]
  37038. ))
  37039. characterMakers.push(() => makeCharacter(
  37040. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  37041. {
  37042. side: {
  37043. height: math.unit(15, "feet"),
  37044. name: "Side",
  37045. image: {
  37046. source: "./media/characters/akitu/side.svg",
  37047. extra: 1421/1321,
  37048. bottom: 157/1578
  37049. }
  37050. },
  37051. front: {
  37052. height: math.unit(15, "feet"),
  37053. name: "Front",
  37054. image: {
  37055. source: "./media/characters/akitu/front.svg",
  37056. extra: 1435/1326,
  37057. bottom: 232/1667
  37058. }
  37059. },
  37060. },
  37061. [
  37062. {
  37063. name: "Normal",
  37064. height: math.unit(15, "feet"),
  37065. default: true
  37066. },
  37067. ]
  37068. ))
  37069. characterMakers.push(() => makeCharacter(
  37070. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  37071. {
  37072. front: {
  37073. height: math.unit(10 + 8/12, "feet"),
  37074. name: "Front",
  37075. image: {
  37076. source: "./media/characters/azalie-croixland/front.svg",
  37077. extra: 1972/1856,
  37078. bottom: 31/2003
  37079. }
  37080. },
  37081. },
  37082. [
  37083. {
  37084. name: "Original Height",
  37085. height: math.unit(5 + 4/12, "feet")
  37086. },
  37087. {
  37088. name: "Normal Height",
  37089. height: math.unit(10 + 8/12, "feet"),
  37090. default: true
  37091. },
  37092. ]
  37093. ))
  37094. characterMakers.push(() => makeCharacter(
  37095. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  37096. {
  37097. side: {
  37098. height: math.unit(7 + 1/12, "feet"),
  37099. weight: math.unit(245, "lb"),
  37100. name: "Side",
  37101. image: {
  37102. source: "./media/characters/kavus-kazian/side.svg",
  37103. extra: 349/342,
  37104. bottom: 15/364
  37105. }
  37106. },
  37107. },
  37108. [
  37109. {
  37110. name: "Normal",
  37111. height: math.unit(7 + 1/12, "feet"),
  37112. default: true
  37113. },
  37114. ]
  37115. ))
  37116. characterMakers.push(() => makeCharacter(
  37117. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  37118. {
  37119. normalFront: {
  37120. height: math.unit(5 + 11/12, "feet"),
  37121. name: "Front",
  37122. image: {
  37123. source: "./media/characters/moonlight-rose/normal-front.svg",
  37124. extra: 1980/1825,
  37125. bottom: 18/1998
  37126. },
  37127. form: "normal",
  37128. default: true
  37129. },
  37130. normalBack: {
  37131. height: math.unit(5 + 11/12, "feet"),
  37132. name: "Back",
  37133. image: {
  37134. source: "./media/characters/moonlight-rose/normal-back.svg",
  37135. extra: 2010/1839,
  37136. bottom: 10/2020
  37137. },
  37138. form: "normal"
  37139. },
  37140. demonFront: {
  37141. height: math.unit(1.5, "earths"),
  37142. name: "Front",
  37143. image: {
  37144. source: "./media/characters/moonlight-rose/demon.svg",
  37145. extra: 1400/1294,
  37146. bottom: 45/1445
  37147. },
  37148. form: "demon",
  37149. default: true
  37150. },
  37151. terraFront: {
  37152. height: math.unit(1.5, "earths"),
  37153. name: "Front",
  37154. image: {
  37155. source: "./media/characters/moonlight-rose/terra.svg"
  37156. },
  37157. form: "terra",
  37158. default: true
  37159. },
  37160. jupiterFront: {
  37161. height: math.unit(69911*2, "km"),
  37162. name: "Front",
  37163. image: {
  37164. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  37165. extra: 1367/1286,
  37166. bottom: 55/1422
  37167. },
  37168. form: "jupiter",
  37169. default: true
  37170. },
  37171. neptuneFront: {
  37172. height: math.unit(24622*2, "feet"),
  37173. name: "Front",
  37174. image: {
  37175. source: "./media/characters/moonlight-rose/neptune-front.svg",
  37176. extra: 1851/1712,
  37177. bottom: 0/1851
  37178. },
  37179. form: "neptune",
  37180. default: true
  37181. },
  37182. },
  37183. [
  37184. {
  37185. name: "\"Natural\" Height",
  37186. height: math.unit(5 + 11/12, "feet"),
  37187. form: "normal"
  37188. },
  37189. {
  37190. name: "Smallest comfortable size",
  37191. height: math.unit(40, "meters"),
  37192. form: "normal"
  37193. },
  37194. {
  37195. name: "Common size",
  37196. height: math.unit(50, "km"),
  37197. form: "normal",
  37198. default: true
  37199. },
  37200. {
  37201. name: "Normal",
  37202. height: math.unit(1.5, "earths"),
  37203. form: "demon",
  37204. default: true
  37205. },
  37206. {
  37207. name: "Universal",
  37208. height: math.unit(15, "universes"),
  37209. form: "demon"
  37210. },
  37211. {
  37212. name: "Earth",
  37213. height: math.unit(1.5, "earths"),
  37214. form: "terra",
  37215. default: true
  37216. },
  37217. {
  37218. name: "Super Earth",
  37219. height: math.unit(67.5, "earths"),
  37220. form: "terra"
  37221. },
  37222. {
  37223. name: "Doesn't fit in a solar system...",
  37224. height: math.unit(1, "galaxy"),
  37225. form: "terra"
  37226. },
  37227. {
  37228. name: "Saturn",
  37229. height: math.unit(58232*2, "km"),
  37230. form: "jupiter"
  37231. },
  37232. {
  37233. name: "Jupiter",
  37234. height: math.unit(69911*2, "km"),
  37235. form: "jupiter",
  37236. default: true
  37237. },
  37238. {
  37239. name: "HD 100546 b",
  37240. height: math.unit(482938, "km"),
  37241. form: "jupiter"
  37242. },
  37243. {
  37244. name: "Enceladus",
  37245. height: math.unit(513*2, "km"),
  37246. form: "neptune"
  37247. },
  37248. {
  37249. name: "Europe",
  37250. height: math.unit(1560*2, "km"),
  37251. form: "neptune"
  37252. },
  37253. {
  37254. name: "Neptune",
  37255. height: math.unit(24622*2, "km"),
  37256. form: "neptune",
  37257. default: true
  37258. },
  37259. {
  37260. name: "CoRoT-9b",
  37261. height: math.unit(75067*2, "km"),
  37262. form: "neptune"
  37263. },
  37264. ],
  37265. {
  37266. "normal": {
  37267. name: "Normal",
  37268. default: true
  37269. },
  37270. "demon": {
  37271. name: "Demon"
  37272. },
  37273. "terra": {
  37274. name: "Terra"
  37275. },
  37276. "jupiter": {
  37277. name: "Jupiter"
  37278. },
  37279. "neptune": {
  37280. name: "Neptune"
  37281. }
  37282. }
  37283. ))
  37284. characterMakers.push(() => makeCharacter(
  37285. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  37286. {
  37287. front: {
  37288. height: math.unit(16, "feet"),
  37289. weight: math.unit(610, "kg"),
  37290. name: "Front",
  37291. image: {
  37292. source: "./media/characters/huckle/front.svg",
  37293. extra: 1731/1625,
  37294. bottom: 33/1764
  37295. }
  37296. },
  37297. back: {
  37298. height: math.unit(16, "feet"),
  37299. weight: math.unit(610, "kg"),
  37300. name: "Back",
  37301. image: {
  37302. source: "./media/characters/huckle/back.svg",
  37303. extra: 1738/1651,
  37304. bottom: 37/1775
  37305. }
  37306. },
  37307. laughing: {
  37308. height: math.unit(3.75, "feet"),
  37309. name: "Laughing",
  37310. image: {
  37311. source: "./media/characters/huckle/laughing.svg"
  37312. }
  37313. },
  37314. angry: {
  37315. height: math.unit(4.15, "feet"),
  37316. name: "Angry",
  37317. image: {
  37318. source: "./media/characters/huckle/angry.svg"
  37319. }
  37320. },
  37321. },
  37322. [
  37323. {
  37324. name: "Normal",
  37325. height: math.unit(16, "feet"),
  37326. default: true
  37327. },
  37328. {
  37329. name: "Mini Macro",
  37330. height: math.unit(463, "feet")
  37331. },
  37332. {
  37333. name: "Macro",
  37334. height: math.unit(1680, "meters")
  37335. },
  37336. {
  37337. name: "Mega Macro",
  37338. height: math.unit(175, "km")
  37339. },
  37340. {
  37341. name: "Terra Macro",
  37342. height: math.unit(32, "gigameters")
  37343. },
  37344. {
  37345. name: "Multiverse+",
  37346. height: math.unit(2.56e23, "yottameters")
  37347. },
  37348. ]
  37349. ))
  37350. characterMakers.push(() => makeCharacter(
  37351. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  37352. {
  37353. front: {
  37354. height: math.unit(6 + 9/12, "feet"),
  37355. weight: math.unit(280, "lb"),
  37356. name: "Front",
  37357. image: {
  37358. source: "./media/characters/candy/front.svg",
  37359. extra: 234/217,
  37360. bottom: 11/245
  37361. }
  37362. },
  37363. },
  37364. [
  37365. {
  37366. name: "Really Small",
  37367. height: math.unit(0.1, "nm")
  37368. },
  37369. {
  37370. name: "Micro",
  37371. height: math.unit(2, "inches")
  37372. },
  37373. {
  37374. name: "Normal",
  37375. height: math.unit(6 + 9/12, "feet"),
  37376. default: true
  37377. },
  37378. {
  37379. name: "Small Macro",
  37380. height: math.unit(69, "feet")
  37381. },
  37382. {
  37383. name: "Macro",
  37384. height: math.unit(160, "feet")
  37385. },
  37386. {
  37387. name: "Megamacro",
  37388. height: math.unit(22000, "miles")
  37389. },
  37390. {
  37391. name: "Gigamacro",
  37392. height: math.unit(50000, "miles")
  37393. },
  37394. ]
  37395. ))
  37396. characterMakers.push(() => makeCharacter(
  37397. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  37398. {
  37399. front: {
  37400. height: math.unit(4, "feet"),
  37401. weight: math.unit(90, "lb"),
  37402. name: "Front",
  37403. image: {
  37404. source: "./media/characters/joey-mcdonald/front.svg",
  37405. extra: 1059/852,
  37406. bottom: 33/1092
  37407. }
  37408. },
  37409. back: {
  37410. height: math.unit(4, "feet"),
  37411. weight: math.unit(90, "lb"),
  37412. name: "Back",
  37413. image: {
  37414. source: "./media/characters/joey-mcdonald/back.svg",
  37415. extra: 1077/879,
  37416. bottom: 5/1082
  37417. }
  37418. },
  37419. frontKobold: {
  37420. height: math.unit(4, "feet"),
  37421. weight: math.unit(100, "lb"),
  37422. name: "Front-kobold",
  37423. image: {
  37424. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  37425. extra: 1480/1367,
  37426. bottom: 0/1480
  37427. }
  37428. },
  37429. backKobold: {
  37430. height: math.unit(4, "feet"),
  37431. weight: math.unit(100, "lb"),
  37432. name: "Back-kobold",
  37433. image: {
  37434. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  37435. extra: 1449/1361,
  37436. bottom: 0/1449
  37437. }
  37438. },
  37439. },
  37440. [
  37441. {
  37442. name: "Normal",
  37443. height: math.unit(4, "feet"),
  37444. default: true
  37445. },
  37446. ]
  37447. ))
  37448. characterMakers.push(() => makeCharacter(
  37449. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  37450. {
  37451. front: {
  37452. height: math.unit(12 + 6/12, "feet"),
  37453. name: "Front",
  37454. image: {
  37455. source: "./media/characters/kass-lockheed/front.svg",
  37456. extra: 354/343,
  37457. bottom: 9/363
  37458. }
  37459. },
  37460. back: {
  37461. height: math.unit(12 + 6/12, "feet"),
  37462. name: "Back",
  37463. image: {
  37464. source: "./media/characters/kass-lockheed/back.svg",
  37465. extra: 364/352,
  37466. bottom: 3/367
  37467. }
  37468. },
  37469. dick: {
  37470. height: math.unit(3.12, "feet"),
  37471. name: "Dick",
  37472. image: {
  37473. source: "./media/characters/kass-lockheed/dick.svg"
  37474. }
  37475. },
  37476. head: {
  37477. height: math.unit(2.6, "feet"),
  37478. name: "Head",
  37479. image: {
  37480. source: "./media/characters/kass-lockheed/head.svg"
  37481. }
  37482. },
  37483. bleh: {
  37484. height: math.unit(2.85, "feet"),
  37485. name: "Bleh",
  37486. image: {
  37487. source: "./media/characters/kass-lockheed/bleh.svg"
  37488. }
  37489. },
  37490. smug: {
  37491. height: math.unit(2.85, "feet"),
  37492. name: "Smug",
  37493. image: {
  37494. source: "./media/characters/kass-lockheed/smug.svg"
  37495. }
  37496. },
  37497. },
  37498. [
  37499. {
  37500. name: "Normal",
  37501. height: math.unit(12 + 6/12, "feet"),
  37502. default: true
  37503. },
  37504. ]
  37505. ))
  37506. characterMakers.push(() => makeCharacter(
  37507. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  37508. {
  37509. front: {
  37510. height: math.unit(6 + 2/12, "feet"),
  37511. name: "Front",
  37512. image: {
  37513. source: "./media/characters/taylor/front.svg",
  37514. extra: 639/495,
  37515. bottom: 12/651
  37516. }
  37517. },
  37518. },
  37519. [
  37520. {
  37521. name: "Normal",
  37522. height: math.unit(6 + 2/12, "feet"),
  37523. default: true
  37524. },
  37525. {
  37526. name: "Big",
  37527. height: math.unit(15, "feet")
  37528. },
  37529. {
  37530. name: "Lorg",
  37531. height: math.unit(80, "feet")
  37532. },
  37533. {
  37534. name: "Too Lorg",
  37535. height: math.unit(120, "feet")
  37536. },
  37537. ]
  37538. ))
  37539. characterMakers.push(() => makeCharacter(
  37540. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  37541. {
  37542. front: {
  37543. height: math.unit(15, "feet"),
  37544. name: "Front",
  37545. image: {
  37546. source: "./media/characters/kaizer/front.svg",
  37547. extra: 1612/1436,
  37548. bottom: 43/1655
  37549. }
  37550. },
  37551. },
  37552. [
  37553. {
  37554. name: "Normal",
  37555. height: math.unit(15, "feet"),
  37556. default: true
  37557. },
  37558. ]
  37559. ))
  37560. characterMakers.push(() => makeCharacter(
  37561. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  37562. {
  37563. front: {
  37564. height: math.unit(2, "feet"),
  37565. weight: math.unit(30, "lb"),
  37566. name: "Front",
  37567. image: {
  37568. source: "./media/characters/sandy/front.svg",
  37569. extra: 1439/1307,
  37570. bottom: 194/1633
  37571. }
  37572. },
  37573. },
  37574. [
  37575. {
  37576. name: "Normal",
  37577. height: math.unit(2, "feet"),
  37578. default: true
  37579. },
  37580. ]
  37581. ))
  37582. characterMakers.push(() => makeCharacter(
  37583. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  37584. {
  37585. front: {
  37586. height: math.unit(3, "feet"),
  37587. name: "Front",
  37588. image: {
  37589. source: "./media/characters/mellvi/front.svg",
  37590. extra: 1831/1630,
  37591. bottom: 58/1889
  37592. }
  37593. },
  37594. },
  37595. [
  37596. {
  37597. name: "Normal",
  37598. height: math.unit(3, "feet"),
  37599. default: true
  37600. },
  37601. ]
  37602. ))
  37603. characterMakers.push(() => makeCharacter(
  37604. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  37605. {
  37606. front: {
  37607. height: math.unit(5 + 11/12, "feet"),
  37608. weight: math.unit(200, "lb"),
  37609. name: "Front",
  37610. image: {
  37611. source: "./media/characters/shirou/front.svg",
  37612. extra: 2491/2383,
  37613. bottom: 189/2680
  37614. }
  37615. },
  37616. back: {
  37617. height: math.unit(5 + 11/12, "feet"),
  37618. weight: math.unit(200, "lb"),
  37619. name: "Back",
  37620. image: {
  37621. source: "./media/characters/shirou/back.svg",
  37622. extra: 2554/2450,
  37623. bottom: 76/2630
  37624. }
  37625. },
  37626. },
  37627. [
  37628. {
  37629. name: "Normal",
  37630. height: math.unit(5 + 11/12, "feet"),
  37631. default: true
  37632. },
  37633. ]
  37634. ))
  37635. characterMakers.push(() => makeCharacter(
  37636. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  37637. {
  37638. front: {
  37639. height: math.unit(6 + 3/12, "feet"),
  37640. weight: math.unit(177, "lb"),
  37641. name: "Front",
  37642. image: {
  37643. source: "./media/characters/noryu/front.svg",
  37644. extra: 973/885,
  37645. bottom: 10/983
  37646. }
  37647. },
  37648. },
  37649. [
  37650. {
  37651. name: "Normal",
  37652. height: math.unit(6 + 3/12, "feet"),
  37653. default: true
  37654. },
  37655. ]
  37656. ))
  37657. characterMakers.push(() => makeCharacter(
  37658. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  37659. {
  37660. front: {
  37661. height: math.unit(5 + 6/12, "feet"),
  37662. weight: math.unit(170, "lb"),
  37663. name: "Front",
  37664. image: {
  37665. source: "./media/characters/mevolas-rubenido/front.svg",
  37666. extra: 2109/1901,
  37667. bottom: 96/2205
  37668. }
  37669. },
  37670. },
  37671. [
  37672. {
  37673. name: "Normal",
  37674. height: math.unit(5 + 6/12, "feet"),
  37675. default: true
  37676. },
  37677. ]
  37678. ))
  37679. characterMakers.push(() => makeCharacter(
  37680. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  37681. {
  37682. front: {
  37683. height: math.unit(100, "feet"),
  37684. name: "Front",
  37685. image: {
  37686. source: "./media/characters/dee/front.svg",
  37687. extra: 2153/2036,
  37688. bottom: 59/2212
  37689. }
  37690. },
  37691. back: {
  37692. height: math.unit(100, "feet"),
  37693. name: "Back",
  37694. image: {
  37695. source: "./media/characters/dee/back.svg",
  37696. extra: 2183/2058,
  37697. bottom: 75/2258
  37698. }
  37699. },
  37700. foot: {
  37701. height: math.unit(19.43, "feet"),
  37702. name: "Foot",
  37703. image: {
  37704. source: "./media/characters/dee/foot.svg"
  37705. }
  37706. },
  37707. hoof: {
  37708. height: math.unit(20.6, "feet"),
  37709. name: "Hoof",
  37710. image: {
  37711. source: "./media/characters/dee/hoof.svg"
  37712. }
  37713. },
  37714. },
  37715. [
  37716. {
  37717. name: "Macro",
  37718. height: math.unit(100, "feet"),
  37719. default: true
  37720. },
  37721. ]
  37722. ))
  37723. characterMakers.push(() => makeCharacter(
  37724. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  37725. {
  37726. front: {
  37727. height: math.unit(5 + 6/12, "feet"),
  37728. name: "Front",
  37729. image: {
  37730. source: "./media/characters/teh/front.svg",
  37731. extra: 1002/847,
  37732. bottom: 62/1064
  37733. }
  37734. },
  37735. },
  37736. [
  37737. {
  37738. name: "Normal",
  37739. height: math.unit(5 + 6/12, "feet"),
  37740. default: true
  37741. },
  37742. ]
  37743. ))
  37744. characterMakers.push(() => makeCharacter(
  37745. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  37746. {
  37747. side: {
  37748. height: math.unit(6 + 1/12, "feet"),
  37749. weight: math.unit(204, "lb"),
  37750. name: "Side",
  37751. image: {
  37752. source: "./media/characters/quicksilver-ayukoti/side.svg",
  37753. extra: 974/775,
  37754. bottom: 169/1143
  37755. }
  37756. },
  37757. sitting: {
  37758. height: math.unit(6 + 2/12, "feet"),
  37759. weight: math.unit(204, "lb"),
  37760. name: "Sitting",
  37761. image: {
  37762. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  37763. extra: 1175/964,
  37764. bottom: 378/1553
  37765. }
  37766. },
  37767. },
  37768. [
  37769. {
  37770. name: "Normal",
  37771. height: math.unit(6 + 1/12, "feet"),
  37772. default: true
  37773. },
  37774. ]
  37775. ))
  37776. characterMakers.push(() => makeCharacter(
  37777. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  37778. {
  37779. front: {
  37780. height: math.unit(6, "inches"),
  37781. name: "Front",
  37782. image: {
  37783. source: "./media/characters/tululi/front.svg",
  37784. extra: 1997/1876,
  37785. bottom: 20/2017
  37786. }
  37787. },
  37788. },
  37789. [
  37790. {
  37791. name: "Normal",
  37792. height: math.unit(6, "inches"),
  37793. default: true
  37794. },
  37795. ]
  37796. ))
  37797. characterMakers.push(() => makeCharacter(
  37798. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  37799. {
  37800. front: {
  37801. height: math.unit(4 + 1/12, "feet"),
  37802. name: "Front",
  37803. image: {
  37804. source: "./media/characters/star/front.svg",
  37805. extra: 1493/1189,
  37806. bottom: 48/1541
  37807. }
  37808. },
  37809. },
  37810. [
  37811. {
  37812. name: "Normal",
  37813. height: math.unit(4 + 1/12, "feet"),
  37814. default: true
  37815. },
  37816. ]
  37817. ))
  37818. characterMakers.push(() => makeCharacter(
  37819. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  37820. {
  37821. front: {
  37822. height: math.unit(6 + 3/12, "feet"),
  37823. name: "Front",
  37824. image: {
  37825. source: "./media/characters/comet/front.svg",
  37826. extra: 1681/1462,
  37827. bottom: 26/1707
  37828. }
  37829. },
  37830. },
  37831. [
  37832. {
  37833. name: "Normal",
  37834. height: math.unit(6 + 3/12, "feet"),
  37835. default: true
  37836. },
  37837. ]
  37838. ))
  37839. characterMakers.push(() => makeCharacter(
  37840. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  37841. {
  37842. front: {
  37843. height: math.unit(950, "feet"),
  37844. name: "Front",
  37845. image: {
  37846. source: "./media/characters/vortex/front.svg",
  37847. extra: 1497/1434,
  37848. bottom: 56/1553
  37849. }
  37850. },
  37851. maw: {
  37852. height: math.unit(285, "feet"),
  37853. name: "Maw",
  37854. image: {
  37855. source: "./media/characters/vortex/maw.svg"
  37856. }
  37857. },
  37858. },
  37859. [
  37860. {
  37861. name: "Macro",
  37862. height: math.unit(950, "feet"),
  37863. default: true
  37864. },
  37865. ]
  37866. ))
  37867. characterMakers.push(() => makeCharacter(
  37868. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  37869. {
  37870. front: {
  37871. height: math.unit(600, "feet"),
  37872. weight: math.unit(0.02, "grams"),
  37873. name: "Front",
  37874. image: {
  37875. source: "./media/characters/doodle/front.svg",
  37876. extra: 1578/1413,
  37877. bottom: 37/1615
  37878. }
  37879. },
  37880. },
  37881. [
  37882. {
  37883. name: "Macro",
  37884. height: math.unit(600, "feet"),
  37885. default: true
  37886. },
  37887. ]
  37888. ))
  37889. characterMakers.push(() => makeCharacter(
  37890. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  37891. {
  37892. front: {
  37893. height: math.unit(6 + 6/12, "feet"),
  37894. name: "Front",
  37895. image: {
  37896. source: "./media/characters/jai/front.svg",
  37897. extra: 1645/1534,
  37898. bottom: 115/1760
  37899. }
  37900. },
  37901. },
  37902. [
  37903. {
  37904. name: "Normal",
  37905. height: math.unit(6 + 6/12, "feet"),
  37906. default: true
  37907. },
  37908. ]
  37909. ))
  37910. characterMakers.push(() => makeCharacter(
  37911. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  37912. {
  37913. front: {
  37914. height: math.unit(6 + 8/12, "feet"),
  37915. name: "Front",
  37916. image: {
  37917. source: "./media/characters/pixel/front.svg",
  37918. extra: 1900/1735,
  37919. bottom: 63/1963
  37920. }
  37921. },
  37922. },
  37923. [
  37924. {
  37925. name: "Normal",
  37926. height: math.unit(6 + 8/12, "feet"),
  37927. default: true
  37928. },
  37929. ]
  37930. ))
  37931. characterMakers.push(() => makeCharacter(
  37932. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  37933. {
  37934. back: {
  37935. height: math.unit(4 + 1/12, "feet"),
  37936. weight: math.unit(75, "lb"),
  37937. name: "Back",
  37938. image: {
  37939. source: "./media/characters/rhett/back.svg",
  37940. extra: 930/878,
  37941. bottom: 25/955
  37942. }
  37943. },
  37944. front: {
  37945. height: math.unit(4 + 1/12, "feet"),
  37946. weight: math.unit(75, "lb"),
  37947. name: "Front",
  37948. image: {
  37949. source: "./media/characters/rhett/front.svg",
  37950. extra: 1682/1586,
  37951. bottom: 92/1774
  37952. }
  37953. },
  37954. },
  37955. [
  37956. {
  37957. name: "Micro",
  37958. height: math.unit(8, "inches")
  37959. },
  37960. {
  37961. name: "Tiny",
  37962. height: math.unit(2, "feet")
  37963. },
  37964. {
  37965. name: "Normal",
  37966. height: math.unit(4 + 1/12, "feet"),
  37967. default: true
  37968. },
  37969. ]
  37970. ))
  37971. characterMakers.push(() => makeCharacter(
  37972. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  37973. {
  37974. front: {
  37975. height: math.unit(3 + 3/12, "feet"),
  37976. name: "Front",
  37977. image: {
  37978. source: "./media/characters/penny/front.svg",
  37979. extra: 1406/1311,
  37980. bottom: 26/1432
  37981. }
  37982. },
  37983. },
  37984. [
  37985. {
  37986. name: "Normal",
  37987. height: math.unit(3 + 3/12, "feet"),
  37988. default: true
  37989. },
  37990. ]
  37991. ))
  37992. characterMakers.push(() => makeCharacter(
  37993. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  37994. {
  37995. front: {
  37996. height: math.unit(4 + 11/12, "feet"),
  37997. name: "Front",
  37998. image: {
  37999. source: "./media/characters/monty/front.svg",
  38000. extra: 1479/1209,
  38001. bottom: 0/1479
  38002. }
  38003. },
  38004. },
  38005. [
  38006. {
  38007. name: "Normal",
  38008. height: math.unit(4 + 11/12, "feet"),
  38009. default: true
  38010. },
  38011. ]
  38012. ))
  38013. characterMakers.push(() => makeCharacter(
  38014. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  38015. {
  38016. front: {
  38017. height: math.unit(8 + 4/12, "feet"),
  38018. name: "Front",
  38019. image: {
  38020. source: "./media/characters/sterling/front.svg",
  38021. extra: 1420/1236,
  38022. bottom: 27/1447
  38023. }
  38024. },
  38025. },
  38026. [
  38027. {
  38028. name: "Normal",
  38029. height: math.unit(8 + 4/12, "feet"),
  38030. default: true
  38031. },
  38032. ]
  38033. ))
  38034. characterMakers.push(() => makeCharacter(
  38035. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  38036. {
  38037. front: {
  38038. height: math.unit(15, "feet"),
  38039. name: "Front",
  38040. image: {
  38041. source: "./media/characters/marble/front.svg",
  38042. extra: 973/937,
  38043. bottom: 32/1005
  38044. }
  38045. },
  38046. },
  38047. [
  38048. {
  38049. name: "Normal",
  38050. height: math.unit(15, "feet"),
  38051. default: true
  38052. },
  38053. ]
  38054. ))
  38055. characterMakers.push(() => makeCharacter(
  38056. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  38057. {
  38058. front: {
  38059. height: math.unit(3, "inches"),
  38060. name: "Front",
  38061. image: {
  38062. source: "./media/characters/powder/front.svg",
  38063. extra: 1504/1334,
  38064. bottom: 518/2022
  38065. }
  38066. },
  38067. },
  38068. [
  38069. {
  38070. name: "Normal",
  38071. height: math.unit(3, "inches"),
  38072. default: true
  38073. },
  38074. ]
  38075. ))
  38076. characterMakers.push(() => makeCharacter(
  38077. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  38078. {
  38079. front: {
  38080. height: math.unit(4 + 5/12, "feet"),
  38081. name: "Front",
  38082. image: {
  38083. source: "./media/characters/joey-raccoon/front.svg",
  38084. extra: 1273/1197,
  38085. bottom: 0/1273
  38086. }
  38087. },
  38088. },
  38089. [
  38090. {
  38091. name: "Normal",
  38092. height: math.unit(4 + 5/12, "feet"),
  38093. default: true
  38094. },
  38095. ]
  38096. ))
  38097. characterMakers.push(() => makeCharacter(
  38098. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  38099. {
  38100. front: {
  38101. height: math.unit(8 + 4/12, "feet"),
  38102. name: "Front",
  38103. image: {
  38104. source: "./media/characters/vick/front.svg",
  38105. extra: 2187/2118,
  38106. bottom: 47/2234
  38107. }
  38108. },
  38109. },
  38110. [
  38111. {
  38112. name: "Normal",
  38113. height: math.unit(8 + 4/12, "feet"),
  38114. default: true
  38115. },
  38116. ]
  38117. ))
  38118. characterMakers.push(() => makeCharacter(
  38119. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  38120. {
  38121. front: {
  38122. height: math.unit(5 + 5/12, "feet"),
  38123. name: "Front",
  38124. image: {
  38125. source: "./media/characters/mitsy/front.svg",
  38126. extra: 1842/1695,
  38127. bottom: 0/1842
  38128. }
  38129. },
  38130. },
  38131. [
  38132. {
  38133. name: "Normal",
  38134. height: math.unit(5 + 5/12, "feet"),
  38135. default: true
  38136. },
  38137. ]
  38138. ))
  38139. characterMakers.push(() => makeCharacter(
  38140. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  38141. {
  38142. front: {
  38143. height: math.unit(6 + 3/12, "feet"),
  38144. name: "Front",
  38145. image: {
  38146. source: "./media/characters/silvy/front.svg",
  38147. extra: 1995/1836,
  38148. bottom: 225/2220
  38149. }
  38150. },
  38151. },
  38152. [
  38153. {
  38154. name: "Normal",
  38155. height: math.unit(6 + 3/12, "feet"),
  38156. default: true
  38157. },
  38158. ]
  38159. ))
  38160. characterMakers.push(() => makeCharacter(
  38161. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  38162. {
  38163. front: {
  38164. height: math.unit(3 + 8/12, "feet"),
  38165. name: "Front",
  38166. image: {
  38167. source: "./media/characters/rodney/front.svg",
  38168. extra: 1956/1747,
  38169. bottom: 31/1987
  38170. }
  38171. },
  38172. frontDressed: {
  38173. height: math.unit(2.9, "feet"),
  38174. name: "Front (Dressed)",
  38175. image: {
  38176. source: "./media/characters/rodney/front-dressed.svg",
  38177. extra: 1382/1241,
  38178. bottom: 385/1767
  38179. }
  38180. },
  38181. },
  38182. [
  38183. {
  38184. name: "Normal",
  38185. height: math.unit(3 + 8/12, "feet"),
  38186. default: true
  38187. },
  38188. ]
  38189. ))
  38190. characterMakers.push(() => makeCharacter(
  38191. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  38192. {
  38193. front: {
  38194. height: math.unit(5 + 9/12, "feet"),
  38195. weight: math.unit(194, "lbs"),
  38196. name: "Front",
  38197. image: {
  38198. source: "./media/characters/zakail-sudekai/front.svg",
  38199. extra: 2696/2533,
  38200. bottom: 248/2944
  38201. }
  38202. },
  38203. maw: {
  38204. height: math.unit(1.35, "feet"),
  38205. name: "Maw",
  38206. image: {
  38207. source: "./media/characters/zakail-sudekai/maw.svg"
  38208. }
  38209. },
  38210. },
  38211. [
  38212. {
  38213. name: "Normal",
  38214. height: math.unit(5 + 9/12, "feet"),
  38215. default: true
  38216. },
  38217. ]
  38218. ))
  38219. characterMakers.push(() => makeCharacter(
  38220. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  38221. {
  38222. front: {
  38223. height: math.unit(8 + 4/12, "feet"),
  38224. weight: math.unit(1200, "lb"),
  38225. name: "Front",
  38226. image: {
  38227. source: "./media/characters/eleanor/front.svg",
  38228. extra: 1226/1192,
  38229. bottom: 52/1278
  38230. }
  38231. },
  38232. back: {
  38233. height: math.unit(8 + 4/12, "feet"),
  38234. weight: math.unit(1200, "lb"),
  38235. name: "Back",
  38236. image: {
  38237. source: "./media/characters/eleanor/back.svg",
  38238. extra: 1242/1184,
  38239. bottom: 60/1302
  38240. }
  38241. },
  38242. head: {
  38243. height: math.unit(2.62, "feet"),
  38244. name: "Head",
  38245. image: {
  38246. source: "./media/characters/eleanor/head.svg"
  38247. }
  38248. },
  38249. },
  38250. [
  38251. {
  38252. name: "Normal",
  38253. height: math.unit(8 + 4/12, "feet"),
  38254. default: true
  38255. },
  38256. ]
  38257. ))
  38258. characterMakers.push(() => makeCharacter(
  38259. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  38260. {
  38261. front: {
  38262. height: math.unit(8 + 4/12, "feet"),
  38263. weight: math.unit(750, "lb"),
  38264. name: "Front",
  38265. image: {
  38266. source: "./media/characters/tanya/front.svg",
  38267. extra: 1749/1615,
  38268. bottom: 33/1782
  38269. }
  38270. },
  38271. },
  38272. [
  38273. {
  38274. name: "Normal",
  38275. height: math.unit(8 + 4/12, "feet"),
  38276. default: true
  38277. },
  38278. ]
  38279. ))
  38280. characterMakers.push(() => makeCharacter(
  38281. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  38282. {
  38283. front: {
  38284. height: math.unit(5, "feet"),
  38285. weight: math.unit(225, "lb"),
  38286. name: "Front",
  38287. image: {
  38288. source: "./media/characters/cindy/front.svg",
  38289. extra: 1320/1250,
  38290. bottom: 42/1362
  38291. }
  38292. },
  38293. frontDressed: {
  38294. height: math.unit(5, "feet"),
  38295. weight: math.unit(225, "lb"),
  38296. name: "Front (Dressed)",
  38297. image: {
  38298. source: "./media/characters/cindy/front-dressed.svg",
  38299. extra: 1320/1250,
  38300. bottom: 42/1362
  38301. }
  38302. },
  38303. back: {
  38304. height: math.unit(5, "feet"),
  38305. weight: math.unit(225, "lb"),
  38306. name: "Back",
  38307. image: {
  38308. source: "./media/characters/cindy/back.svg",
  38309. extra: 1384/1346,
  38310. bottom: 14/1398
  38311. }
  38312. },
  38313. },
  38314. [
  38315. {
  38316. name: "Normal",
  38317. height: math.unit(5, "feet"),
  38318. default: true
  38319. },
  38320. ]
  38321. ))
  38322. characterMakers.push(() => makeCharacter(
  38323. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  38324. {
  38325. front: {
  38326. height: math.unit(6 + 9/12, "feet"),
  38327. weight: math.unit(440, "lb"),
  38328. name: "Front",
  38329. image: {
  38330. source: "./media/characters/wilbur-owen/front.svg",
  38331. extra: 1575/1448,
  38332. bottom: 72/1647
  38333. }
  38334. },
  38335. back: {
  38336. height: math.unit(6 + 9/12, "feet"),
  38337. weight: math.unit(440, "lb"),
  38338. name: "Back",
  38339. image: {
  38340. source: "./media/characters/wilbur-owen/back.svg",
  38341. extra: 1578/1445,
  38342. bottom: 36/1614
  38343. }
  38344. },
  38345. },
  38346. [
  38347. {
  38348. name: "Normal",
  38349. height: math.unit(6 + 9/12, "feet"),
  38350. default: true
  38351. },
  38352. ]
  38353. ))
  38354. characterMakers.push(() => makeCharacter(
  38355. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  38356. {
  38357. front: {
  38358. height: math.unit(6 + 5/12, "feet"),
  38359. weight: math.unit(650, "lb"),
  38360. name: "Front",
  38361. image: {
  38362. source: "./media/characters/keegan/front.svg",
  38363. extra: 2387/2198,
  38364. bottom: 33/2420
  38365. }
  38366. },
  38367. side: {
  38368. height: math.unit(6 + 5/12, "feet"),
  38369. weight: math.unit(650, "lb"),
  38370. name: "Side",
  38371. image: {
  38372. source: "./media/characters/keegan/side.svg",
  38373. extra: 2390/2202,
  38374. bottom: 47/2437
  38375. }
  38376. },
  38377. back: {
  38378. height: math.unit(6 + 5/12, "feet"),
  38379. weight: math.unit(650, "lb"),
  38380. name: "Back",
  38381. image: {
  38382. source: "./media/characters/keegan/back.svg",
  38383. extra: 2418/2268,
  38384. bottom: 15/2433
  38385. }
  38386. },
  38387. frontSfw: {
  38388. height: math.unit(6 + 5/12, "feet"),
  38389. weight: math.unit(650, "lb"),
  38390. name: "Front (SFW)",
  38391. image: {
  38392. source: "./media/characters/keegan/front-sfw.svg",
  38393. extra: 2387/2198,
  38394. bottom: 33/2420
  38395. }
  38396. },
  38397. beans: {
  38398. height: math.unit(1.85, "feet"),
  38399. name: "Beans",
  38400. image: {
  38401. source: "./media/characters/keegan/beans.svg"
  38402. }
  38403. },
  38404. },
  38405. [
  38406. {
  38407. name: "Normal",
  38408. height: math.unit(6 + 5/12, "feet"),
  38409. default: true
  38410. },
  38411. ]
  38412. ))
  38413. characterMakers.push(() => makeCharacter(
  38414. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  38415. {
  38416. front: {
  38417. height: math.unit(9, "feet"),
  38418. name: "Front",
  38419. image: {
  38420. source: "./media/characters/colton/front.svg",
  38421. extra: 1589/1326,
  38422. bottom: 139/1728
  38423. }
  38424. },
  38425. },
  38426. [
  38427. {
  38428. name: "Normal",
  38429. height: math.unit(9, "feet"),
  38430. default: true
  38431. },
  38432. ]
  38433. ))
  38434. characterMakers.push(() => makeCharacter(
  38435. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  38436. {
  38437. front: {
  38438. height: math.unit(2 + 9/12, "feet"),
  38439. name: "Front",
  38440. image: {
  38441. source: "./media/characters/bora/front.svg",
  38442. extra: 1265/1250,
  38443. bottom: 24/1289
  38444. }
  38445. },
  38446. },
  38447. [
  38448. {
  38449. name: "Normal",
  38450. height: math.unit(2 + 9/12, "feet"),
  38451. default: true
  38452. },
  38453. ]
  38454. ))
  38455. characterMakers.push(() => makeCharacter(
  38456. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  38457. {
  38458. front: {
  38459. height: math.unit(8, "feet"),
  38460. name: "Front",
  38461. image: {
  38462. source: "./media/characters/myu-myu/front.svg",
  38463. extra: 1949/1857,
  38464. bottom: 90/2039
  38465. }
  38466. },
  38467. },
  38468. [
  38469. {
  38470. name: "Normal",
  38471. height: math.unit(8, "feet"),
  38472. default: true
  38473. },
  38474. {
  38475. name: "Big",
  38476. height: math.unit(15, "feet")
  38477. },
  38478. {
  38479. name: "BIG",
  38480. height: math.unit(25, "feet")
  38481. },
  38482. ]
  38483. ))
  38484. characterMakers.push(() => makeCharacter(
  38485. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  38486. {
  38487. side: {
  38488. height: math.unit(7 + 5/12, "feet"),
  38489. weight: math.unit(2800, "lb"),
  38490. name: "Side",
  38491. image: {
  38492. source: "./media/characters/haloren/side.svg",
  38493. extra: 1793/409,
  38494. bottom: 59/1852
  38495. }
  38496. },
  38497. frontPaw: {
  38498. height: math.unit(2.36, "feet"),
  38499. name: "Front paw",
  38500. image: {
  38501. source: "./media/characters/haloren/front-paw.svg"
  38502. }
  38503. },
  38504. hindPaw: {
  38505. height: math.unit(3.18, "feet"),
  38506. name: "Hind paw",
  38507. image: {
  38508. source: "./media/characters/haloren/hind-paw.svg"
  38509. }
  38510. },
  38511. maw: {
  38512. height: math.unit(5.05, "feet"),
  38513. name: "Maw",
  38514. image: {
  38515. source: "./media/characters/haloren/maw.svg"
  38516. }
  38517. },
  38518. dick: {
  38519. height: math.unit(2.90, "feet"),
  38520. name: "Dick",
  38521. image: {
  38522. source: "./media/characters/haloren/dick.svg"
  38523. }
  38524. },
  38525. },
  38526. [
  38527. {
  38528. name: "Normal",
  38529. height: math.unit(7 + 5/12, "feet"),
  38530. default: true
  38531. },
  38532. {
  38533. name: "Enhanced",
  38534. height: math.unit(14 + 3/12, "feet")
  38535. },
  38536. ]
  38537. ))
  38538. characterMakers.push(() => makeCharacter(
  38539. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  38540. {
  38541. front: {
  38542. height: math.unit(171, "cm"),
  38543. name: "Front",
  38544. image: {
  38545. source: "./media/characters/kimmy/front.svg",
  38546. extra: 1491/1435,
  38547. bottom: 53/1544
  38548. }
  38549. },
  38550. },
  38551. [
  38552. {
  38553. name: "Small",
  38554. height: math.unit(9, "cm")
  38555. },
  38556. {
  38557. name: "Normal",
  38558. height: math.unit(171, "cm"),
  38559. default: true
  38560. },
  38561. ]
  38562. ))
  38563. characterMakers.push(() => makeCharacter(
  38564. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  38565. {
  38566. front: {
  38567. height: math.unit(8, "feet"),
  38568. weight: math.unit(300, "lb"),
  38569. name: "Front",
  38570. image: {
  38571. source: "./media/characters/galeboomer/front.svg",
  38572. extra: 4651/4415,
  38573. bottom: 162/4813
  38574. }
  38575. },
  38576. back: {
  38577. height: math.unit(8, "feet"),
  38578. weight: math.unit(300, "lb"),
  38579. name: "Back",
  38580. image: {
  38581. source: "./media/characters/galeboomer/back.svg",
  38582. extra: 4544/4314,
  38583. bottom: 16/4560
  38584. }
  38585. },
  38586. frontAlt: {
  38587. height: math.unit(8, "feet"),
  38588. weight: math.unit(300, "lb"),
  38589. name: "Front (Alt)",
  38590. image: {
  38591. source: "./media/characters/galeboomer/front-alt.svg",
  38592. extra: 4458/4228,
  38593. bottom: 68/4526
  38594. }
  38595. },
  38596. maw: {
  38597. height: math.unit(1.2, "feet"),
  38598. name: "Maw",
  38599. image: {
  38600. source: "./media/characters/galeboomer/maw.svg"
  38601. }
  38602. },
  38603. },
  38604. [
  38605. {
  38606. name: "Normal",
  38607. height: math.unit(8, "feet"),
  38608. default: true
  38609. },
  38610. ]
  38611. ))
  38612. characterMakers.push(() => makeCharacter(
  38613. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  38614. {
  38615. front: {
  38616. height: math.unit(5 + 9/12, "feet"),
  38617. weight: math.unit(120, "lb"),
  38618. name: "Front",
  38619. image: {
  38620. source: "./media/characters/chyr/front.svg",
  38621. extra: 1323/1254,
  38622. bottom: 63/1386
  38623. }
  38624. },
  38625. back: {
  38626. height: math.unit(5 + 9/12, "feet"),
  38627. weight: math.unit(120, "lb"),
  38628. name: "Back",
  38629. image: {
  38630. source: "./media/characters/chyr/back.svg",
  38631. extra: 1323/1252,
  38632. bottom: 48/1371
  38633. }
  38634. },
  38635. },
  38636. [
  38637. {
  38638. name: "Normal",
  38639. height: math.unit(5 + 9/12, "feet"),
  38640. default: true
  38641. },
  38642. ]
  38643. ))
  38644. characterMakers.push(() => makeCharacter(
  38645. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  38646. {
  38647. front: {
  38648. height: math.unit(7, "feet"),
  38649. weight: math.unit(310, "lb"),
  38650. name: "Front",
  38651. image: {
  38652. source: "./media/characters/solarus/front.svg",
  38653. extra: 2415/2021,
  38654. bottom: 103/2518
  38655. }
  38656. },
  38657. back: {
  38658. height: math.unit(7, "feet"),
  38659. weight: math.unit(310, "lb"),
  38660. name: "Back",
  38661. image: {
  38662. source: "./media/characters/solarus/back.svg",
  38663. extra: 2463/2089,
  38664. bottom: 79/2542
  38665. }
  38666. },
  38667. },
  38668. [
  38669. {
  38670. name: "Normal",
  38671. height: math.unit(7, "feet"),
  38672. default: true
  38673. },
  38674. ]
  38675. ))
  38676. characterMakers.push(() => makeCharacter(
  38677. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  38678. {
  38679. front: {
  38680. height: math.unit(16, "feet"),
  38681. name: "Front",
  38682. image: {
  38683. source: "./media/characters/mutsuju-koizaemon/front.svg",
  38684. extra: 1844/1780,
  38685. bottom: 58/1902
  38686. }
  38687. },
  38688. winterCoat: {
  38689. height: math.unit(16, "feet"),
  38690. name: "Winter Coat",
  38691. image: {
  38692. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  38693. extra: 1807/1775,
  38694. bottom: 69/1876
  38695. }
  38696. },
  38697. },
  38698. [
  38699. {
  38700. name: "Normal",
  38701. height: math.unit(16, "feet"),
  38702. default: true
  38703. },
  38704. {
  38705. name: "Chicago Size",
  38706. height: math.unit(560, "feet")
  38707. },
  38708. ]
  38709. ))
  38710. characterMakers.push(() => makeCharacter(
  38711. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  38712. {
  38713. front: {
  38714. height: math.unit(11 + 6/12, "feet"),
  38715. weight: math.unit(1366, "lb"),
  38716. name: "Front",
  38717. image: {
  38718. source: "./media/characters/lexor/front.svg",
  38719. extra: 1560/1481,
  38720. bottom: 211/1771
  38721. }
  38722. },
  38723. back: {
  38724. height: math.unit(11 + 6/12, "feet"),
  38725. weight: math.unit(1366, "lb"),
  38726. name: "Back",
  38727. image: {
  38728. source: "./media/characters/lexor/back.svg",
  38729. extra: 1614/1533,
  38730. bottom: 76/1690
  38731. }
  38732. },
  38733. maw: {
  38734. height: math.unit(3, "feet"),
  38735. name: "Maw",
  38736. image: {
  38737. source: "./media/characters/lexor/maw.svg"
  38738. }
  38739. },
  38740. dick: {
  38741. height: math.unit(2.59, "feet"),
  38742. name: "Dick",
  38743. image: {
  38744. source: "./media/characters/lexor/dick.svg"
  38745. }
  38746. },
  38747. },
  38748. [
  38749. {
  38750. name: "Normal",
  38751. height: math.unit(11 + 6/12, "feet"),
  38752. default: true
  38753. },
  38754. ]
  38755. ))
  38756. characterMakers.push(() => makeCharacter(
  38757. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  38758. {
  38759. front: {
  38760. height: math.unit(5 + 8/12, "feet"),
  38761. name: "Front",
  38762. image: {
  38763. source: "./media/characters/magnum/front.svg",
  38764. extra: 942/855,
  38765. bottom: 26/968
  38766. }
  38767. },
  38768. },
  38769. [
  38770. {
  38771. name: "Normal",
  38772. height: math.unit(5 + 8/12, "feet"),
  38773. default: true
  38774. },
  38775. ]
  38776. ))
  38777. characterMakers.push(() => makeCharacter(
  38778. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  38779. {
  38780. front: {
  38781. height: math.unit(18 + 4/12, "feet"),
  38782. weight: math.unit(1500, "kg"),
  38783. name: "Front",
  38784. image: {
  38785. source: "./media/characters/solas-sharpsman/front.svg",
  38786. extra: 1698/1589,
  38787. bottom: 0/1698
  38788. }
  38789. },
  38790. },
  38791. [
  38792. {
  38793. name: "Normal",
  38794. height: math.unit(18 + 4/12, "feet"),
  38795. default: true
  38796. },
  38797. ]
  38798. ))
  38799. characterMakers.push(() => makeCharacter(
  38800. { name: "October", species: ["tiger"], tags: ["anthro"] },
  38801. {
  38802. front: {
  38803. height: math.unit(5 + 5/12, "feet"),
  38804. weight: math.unit(180, "lb"),
  38805. name: "Front",
  38806. image: {
  38807. source: "./media/characters/october/front.svg",
  38808. extra: 1800/1650,
  38809. bottom: 0/1800
  38810. }
  38811. },
  38812. frontNsfw: {
  38813. height: math.unit(5 + 5/12, "feet"),
  38814. weight: math.unit(180, "lb"),
  38815. name: "Front (NSFW)",
  38816. image: {
  38817. source: "./media/characters/october/front-nsfw.svg",
  38818. extra: 1392/1307,
  38819. bottom: 42/1434
  38820. }
  38821. },
  38822. },
  38823. [
  38824. {
  38825. name: "Normal",
  38826. height: math.unit(5 + 5/12, "feet"),
  38827. default: true
  38828. },
  38829. ]
  38830. ))
  38831. characterMakers.push(() => makeCharacter(
  38832. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  38833. {
  38834. front: {
  38835. height: math.unit(8 + 6/12, "feet"),
  38836. name: "Front",
  38837. image: {
  38838. source: "./media/characters/essynkardi/front.svg",
  38839. extra: 1914/1846,
  38840. bottom: 22/1936
  38841. }
  38842. },
  38843. },
  38844. [
  38845. {
  38846. name: "Normal",
  38847. height: math.unit(8 + 6/12, "feet"),
  38848. default: true
  38849. },
  38850. ]
  38851. ))
  38852. characterMakers.push(() => makeCharacter(
  38853. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  38854. {
  38855. front: {
  38856. height: math.unit(6 + 6/12, "feet"),
  38857. weight: math.unit(7, "lb"),
  38858. name: "Front",
  38859. image: {
  38860. source: "./media/characters/icky/front.svg",
  38861. extra: 813/782,
  38862. bottom: 66/879
  38863. }
  38864. },
  38865. back: {
  38866. height: math.unit(6 + 6/12, "feet"),
  38867. weight: math.unit(7, "lb"),
  38868. name: "Back",
  38869. image: {
  38870. source: "./media/characters/icky/back.svg",
  38871. extra: 754/735,
  38872. bottom: 56/810
  38873. }
  38874. },
  38875. },
  38876. [
  38877. {
  38878. name: "Normal",
  38879. height: math.unit(6 + 6/12, "feet"),
  38880. default: true
  38881. },
  38882. ]
  38883. ))
  38884. characterMakers.push(() => makeCharacter(
  38885. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  38886. {
  38887. front: {
  38888. height: math.unit(15, "feet"),
  38889. name: "Front",
  38890. image: {
  38891. source: "./media/characters/rojas/front.svg",
  38892. extra: 1462/1408,
  38893. bottom: 95/1557
  38894. }
  38895. },
  38896. back: {
  38897. height: math.unit(15, "feet"),
  38898. name: "Back",
  38899. image: {
  38900. source: "./media/characters/rojas/back.svg",
  38901. extra: 1023/954,
  38902. bottom: 28/1051
  38903. }
  38904. },
  38905. },
  38906. [
  38907. {
  38908. name: "Normal",
  38909. height: math.unit(15, "feet"),
  38910. default: true
  38911. },
  38912. ]
  38913. ))
  38914. characterMakers.push(() => makeCharacter(
  38915. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  38916. {
  38917. frontHuman: {
  38918. height: math.unit(5 + 7/12, "feet"),
  38919. name: "Front (Human)",
  38920. image: {
  38921. source: "./media/characters/alek-dryagan/front-human.svg",
  38922. extra: 1687/1667,
  38923. bottom: 69/1756
  38924. }
  38925. },
  38926. backHuman: {
  38927. height: math.unit(5 + 7/12, "feet"),
  38928. name: "Back (Human)",
  38929. image: {
  38930. source: "./media/characters/alek-dryagan/back-human.svg",
  38931. extra: 1670/1649,
  38932. bottom: 65/1735
  38933. }
  38934. },
  38935. frontDemi: {
  38936. height: math.unit(65, "feet"),
  38937. name: "Front (Demi)",
  38938. image: {
  38939. source: "./media/characters/alek-dryagan/front-demi.svg",
  38940. extra: 1669/1642,
  38941. bottom: 49/1718
  38942. }
  38943. },
  38944. backDemi: {
  38945. height: math.unit(65, "feet"),
  38946. name: "Back (Demi)",
  38947. image: {
  38948. source: "./media/characters/alek-dryagan/back-demi.svg",
  38949. extra: 1658/1637,
  38950. bottom: 40/1698
  38951. }
  38952. },
  38953. mawHuman: {
  38954. height: math.unit(0.3, "feet"),
  38955. name: "Maw (Human)",
  38956. image: {
  38957. source: "./media/characters/alek-dryagan/maw-human.svg"
  38958. }
  38959. },
  38960. mawDemi: {
  38961. height: math.unit(3.8, "feet"),
  38962. name: "Maw (Demi)",
  38963. image: {
  38964. source: "./media/characters/alek-dryagan/maw-demi.svg"
  38965. }
  38966. },
  38967. },
  38968. [
  38969. {
  38970. name: "Normal",
  38971. height: math.unit(5 + 7/12, "feet"),
  38972. default: true
  38973. },
  38974. ]
  38975. ))
  38976. characterMakers.push(() => makeCharacter(
  38977. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  38978. {
  38979. frontHuman: {
  38980. height: math.unit(5 + 2/12, "feet"),
  38981. name: "Front (Human)",
  38982. image: {
  38983. source: "./media/characters/gen/front-human.svg",
  38984. extra: 1627/1538,
  38985. bottom: 71/1698
  38986. }
  38987. },
  38988. backHuman: {
  38989. height: math.unit(5 + 2/12, "feet"),
  38990. name: "Back (Human)",
  38991. image: {
  38992. source: "./media/characters/gen/back-human.svg",
  38993. extra: 1638/1548,
  38994. bottom: 69/1707
  38995. }
  38996. },
  38997. frontDemi: {
  38998. height: math.unit(5 + 2/12, "feet"),
  38999. name: "Front (Demi)",
  39000. image: {
  39001. source: "./media/characters/gen/front-demi.svg",
  39002. extra: 1627/1538,
  39003. bottom: 71/1698
  39004. }
  39005. },
  39006. backDemi: {
  39007. height: math.unit(5 + 2/12, "feet"),
  39008. name: "Back (Demi)",
  39009. image: {
  39010. source: "./media/characters/gen/back-demi.svg",
  39011. extra: 1638/1548,
  39012. bottom: 69/1707
  39013. }
  39014. },
  39015. },
  39016. [
  39017. {
  39018. name: "Normal",
  39019. height: math.unit(5 + 2/12, "feet"),
  39020. default: true
  39021. },
  39022. ]
  39023. ))
  39024. characterMakers.push(() => makeCharacter(
  39025. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  39026. {
  39027. frontImp: {
  39028. height: math.unit(1 + 11/12, "feet"),
  39029. name: "Front (Imp)",
  39030. image: {
  39031. source: "./media/characters/max-kobold/front-imp.svg",
  39032. extra: 1238/1134,
  39033. bottom: 81/1319
  39034. }
  39035. },
  39036. backImp: {
  39037. height: math.unit(1 + 11/12, "feet"),
  39038. name: "Back (Imp)",
  39039. image: {
  39040. source: "./media/characters/max-kobold/back-imp.svg",
  39041. extra: 1334/1175,
  39042. bottom: 34/1368
  39043. }
  39044. },
  39045. frontDemi: {
  39046. height: math.unit(5 + 9/12, "feet"),
  39047. name: "Front (Demi)",
  39048. image: {
  39049. source: "./media/characters/max-kobold/front-demi.svg",
  39050. extra: 1715/1685,
  39051. bottom: 54/1769
  39052. }
  39053. },
  39054. backDemi: {
  39055. height: math.unit(5 + 9/12, "feet"),
  39056. name: "Back (Demi)",
  39057. image: {
  39058. source: "./media/characters/max-kobold/back-demi.svg",
  39059. extra: 1752/1729,
  39060. bottom: 41/1793
  39061. }
  39062. },
  39063. handImp: {
  39064. height: math.unit(0.45, "feet"),
  39065. name: "Hand (Imp)",
  39066. image: {
  39067. source: "./media/characters/max-kobold/hand.svg"
  39068. }
  39069. },
  39070. pawImp: {
  39071. height: math.unit(0.46, "feet"),
  39072. name: "Paw (Imp)",
  39073. image: {
  39074. source: "./media/characters/max-kobold/paw.svg"
  39075. }
  39076. },
  39077. handDemi: {
  39078. height: math.unit(0.80, "feet"),
  39079. name: "Hand (Demi)",
  39080. image: {
  39081. source: "./media/characters/max-kobold/hand.svg"
  39082. }
  39083. },
  39084. pawDemi: {
  39085. height: math.unit(1.1, "feet"),
  39086. name: "Paw (Demi)",
  39087. image: {
  39088. source: "./media/characters/max-kobold/paw.svg"
  39089. }
  39090. },
  39091. headImp: {
  39092. height: math.unit(1.33, "feet"),
  39093. name: "Head (Imp)",
  39094. image: {
  39095. source: "./media/characters/max-kobold/head-imp.svg"
  39096. }
  39097. },
  39098. mawImp: {
  39099. height: math.unit(0.75, "feet"),
  39100. name: "Maw (Imp)",
  39101. image: {
  39102. source: "./media/characters/max-kobold/maw-imp.svg"
  39103. }
  39104. },
  39105. mawDemi: {
  39106. height: math.unit(0.42, "feet"),
  39107. name: "Maw (Demi)",
  39108. image: {
  39109. source: "./media/characters/max-kobold/maw-demi.svg"
  39110. }
  39111. },
  39112. },
  39113. [
  39114. {
  39115. name: "Normal",
  39116. height: math.unit(1 + 11/12, "feet"),
  39117. default: true
  39118. },
  39119. ]
  39120. ))
  39121. characterMakers.push(() => makeCharacter(
  39122. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  39123. {
  39124. front: {
  39125. height: math.unit(7 + 5/12, "feet"),
  39126. name: "Front",
  39127. image: {
  39128. source: "./media/characters/carbon/front.svg",
  39129. extra: 1754/1689,
  39130. bottom: 65/1819
  39131. }
  39132. },
  39133. back: {
  39134. height: math.unit(7 + 5/12, "feet"),
  39135. name: "Back",
  39136. image: {
  39137. source: "./media/characters/carbon/back.svg",
  39138. extra: 1762/1695,
  39139. bottom: 24/1786
  39140. }
  39141. },
  39142. frontGigantamax: {
  39143. height: math.unit(150, "feet"),
  39144. name: "Front (Gigantamax)",
  39145. image: {
  39146. source: "./media/characters/carbon/front-gigantamax.svg",
  39147. extra: 1826/1669,
  39148. bottom: 59/1885
  39149. }
  39150. },
  39151. backGigantamax: {
  39152. height: math.unit(150, "feet"),
  39153. name: "Back (Gigantamax)",
  39154. image: {
  39155. source: "./media/characters/carbon/back-gigantamax.svg",
  39156. extra: 1796/1653,
  39157. bottom: 53/1849
  39158. }
  39159. },
  39160. maw: {
  39161. height: math.unit(0.48, "feet"),
  39162. name: "Maw",
  39163. image: {
  39164. source: "./media/characters/carbon/maw.svg"
  39165. }
  39166. },
  39167. mawGigantamax: {
  39168. height: math.unit(7.5, "feet"),
  39169. name: "Maw (Gigantamax)",
  39170. image: {
  39171. source: "./media/characters/carbon/maw-gigantamax.svg"
  39172. }
  39173. },
  39174. },
  39175. [
  39176. {
  39177. name: "Normal",
  39178. height: math.unit(7 + 5/12, "feet"),
  39179. default: true
  39180. },
  39181. ]
  39182. ))
  39183. characterMakers.push(() => makeCharacter(
  39184. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  39185. {
  39186. front: {
  39187. height: math.unit(6, "feet"),
  39188. name: "Front",
  39189. image: {
  39190. source: "./media/characters/maverick/front.svg",
  39191. extra: 1672/1661,
  39192. bottom: 85/1757
  39193. }
  39194. },
  39195. back: {
  39196. height: math.unit(6, "feet"),
  39197. name: "Back",
  39198. image: {
  39199. source: "./media/characters/maverick/back.svg",
  39200. extra: 1642/1631,
  39201. bottom: 38/1680
  39202. }
  39203. },
  39204. },
  39205. [
  39206. {
  39207. name: "Normal",
  39208. height: math.unit(6, "feet"),
  39209. default: true
  39210. },
  39211. ]
  39212. ))
  39213. characterMakers.push(() => makeCharacter(
  39214. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  39215. {
  39216. front: {
  39217. height: math.unit(15, "feet"),
  39218. weight: math.unit(615, "lb"),
  39219. name: "Front",
  39220. image: {
  39221. source: "./media/characters/grockle/front.svg",
  39222. extra: 1535/1427,
  39223. bottom: 56/1591
  39224. }
  39225. },
  39226. },
  39227. [
  39228. {
  39229. name: "Normal",
  39230. height: math.unit(15, "feet"),
  39231. default: true
  39232. },
  39233. {
  39234. name: "Large",
  39235. height: math.unit(150, "feet")
  39236. },
  39237. {
  39238. name: "Macro",
  39239. height: math.unit(1876, "feet")
  39240. },
  39241. {
  39242. name: "Mega Macro",
  39243. height: math.unit(121940, "feet")
  39244. },
  39245. {
  39246. name: "Giga Macro",
  39247. height: math.unit(750, "km")
  39248. },
  39249. {
  39250. name: "Tera Macro",
  39251. height: math.unit(750000, "km")
  39252. },
  39253. {
  39254. name: "Galactic",
  39255. height: math.unit(1.4e5, "km")
  39256. },
  39257. {
  39258. name: "Godlike",
  39259. height: math.unit(9.8e280, "galaxies")
  39260. },
  39261. ]
  39262. ))
  39263. characterMakers.push(() => makeCharacter(
  39264. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  39265. {
  39266. front: {
  39267. height: math.unit(11, "meters"),
  39268. weight: math.unit(20, "tonnes"),
  39269. name: "Front",
  39270. image: {
  39271. source: "./media/characters/alistair/front.svg",
  39272. extra: 1265/1009,
  39273. bottom: 93/1358
  39274. }
  39275. },
  39276. },
  39277. [
  39278. {
  39279. name: "Normal",
  39280. height: math.unit(11, "meters"),
  39281. default: true
  39282. },
  39283. ]
  39284. ))
  39285. characterMakers.push(() => makeCharacter(
  39286. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  39287. {
  39288. front: {
  39289. height: math.unit(5 + 8/12, "feet"),
  39290. name: "Front",
  39291. image: {
  39292. source: "./media/characters/haruka/front.svg",
  39293. extra: 2012/1952,
  39294. bottom: 0/2012
  39295. }
  39296. },
  39297. },
  39298. [
  39299. {
  39300. name: "Normal",
  39301. height: math.unit(5 + 8/12, "feet"),
  39302. default: true
  39303. },
  39304. ]
  39305. ))
  39306. characterMakers.push(() => makeCharacter(
  39307. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  39308. {
  39309. back: {
  39310. height: math.unit(9, "feet"),
  39311. name: "Back",
  39312. image: {
  39313. source: "./media/characters/vivian-sylveon/back.svg",
  39314. extra: 1853/1714,
  39315. bottom: 0/1853
  39316. }
  39317. },
  39318. },
  39319. [
  39320. {
  39321. name: "Normal",
  39322. height: math.unit(9, "feet"),
  39323. default: true
  39324. },
  39325. {
  39326. name: "Macro",
  39327. height: math.unit(500, "feet")
  39328. },
  39329. {
  39330. name: "Megamacro",
  39331. height: math.unit(600, "miles")
  39332. },
  39333. {
  39334. name: "Gigamacro",
  39335. height: math.unit(30000, "miles")
  39336. },
  39337. ]
  39338. ))
  39339. characterMakers.push(() => makeCharacter(
  39340. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  39341. {
  39342. anthro: {
  39343. height: math.unit(5 + 10/12, "feet"),
  39344. weight: math.unit(100, "lb"),
  39345. name: "Anthro",
  39346. image: {
  39347. source: "./media/characters/daiki/anthro.svg",
  39348. extra: 1115/1027,
  39349. bottom: 69/1184
  39350. }
  39351. },
  39352. feral: {
  39353. height: math.unit(200, "feet"),
  39354. name: "Feral",
  39355. image: {
  39356. source: "./media/characters/daiki/feral.svg",
  39357. extra: 1256/313,
  39358. bottom: 39/1295
  39359. }
  39360. },
  39361. feralHead: {
  39362. height: math.unit(171, "feet"),
  39363. name: "Feral Head",
  39364. image: {
  39365. source: "./media/characters/daiki/feral-head.svg"
  39366. }
  39367. },
  39368. manaDragon: {
  39369. height: math.unit(170, "meters"),
  39370. name: "Mana-dragon",
  39371. image: {
  39372. source: "./media/characters/daiki/mana-dragon.svg",
  39373. extra: 763/420,
  39374. bottom: 97/860
  39375. }
  39376. },
  39377. },
  39378. [
  39379. {
  39380. name: "Normal",
  39381. height: math.unit(5 + 10/12, "feet"),
  39382. default: true
  39383. },
  39384. ]
  39385. ))
  39386. characterMakers.push(() => makeCharacter(
  39387. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  39388. {
  39389. fullyEquippedFront: {
  39390. height: math.unit(3 + 1/12, "feet"),
  39391. weight: math.unit(24, "lb"),
  39392. name: "Fully Equipped (Front)",
  39393. image: {
  39394. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  39395. extra: 687/605,
  39396. bottom: 18/705
  39397. }
  39398. },
  39399. fullyEquippedBack: {
  39400. height: math.unit(3 + 1/12, "feet"),
  39401. weight: math.unit(24, "lb"),
  39402. name: "Fully Equipped (Back)",
  39403. image: {
  39404. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  39405. extra: 689/590,
  39406. bottom: 18/707
  39407. }
  39408. },
  39409. dailyWear: {
  39410. height: math.unit(3 + 1/12, "feet"),
  39411. weight: math.unit(24, "lb"),
  39412. name: "Daily Wear",
  39413. image: {
  39414. source: "./media/characters/tea-spot/daily-wear.svg",
  39415. extra: 701/620,
  39416. bottom: 21/722
  39417. }
  39418. },
  39419. maidWork: {
  39420. height: math.unit(3 + 1/12, "feet"),
  39421. weight: math.unit(24, "lb"),
  39422. name: "Maid Work",
  39423. image: {
  39424. source: "./media/characters/tea-spot/maid-work.svg",
  39425. extra: 693/609,
  39426. bottom: 15/708
  39427. }
  39428. },
  39429. },
  39430. [
  39431. {
  39432. name: "Normal",
  39433. height: math.unit(3 + 1/12, "feet"),
  39434. default: true
  39435. },
  39436. ]
  39437. ))
  39438. characterMakers.push(() => makeCharacter(
  39439. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  39440. {
  39441. front: {
  39442. height: math.unit(175, "cm"),
  39443. weight: math.unit(75, "kg"),
  39444. name: "Front",
  39445. image: {
  39446. source: "./media/characters/chee/front.svg",
  39447. extra: 1796/1740,
  39448. bottom: 40/1836
  39449. }
  39450. },
  39451. },
  39452. [
  39453. {
  39454. name: "Micro-Micro",
  39455. height: math.unit(1, "nm")
  39456. },
  39457. {
  39458. name: "Micro-erst",
  39459. height: math.unit(1, "micrometer")
  39460. },
  39461. {
  39462. name: "Micro-er",
  39463. height: math.unit(1, "cm")
  39464. },
  39465. {
  39466. name: "Normal",
  39467. height: math.unit(175, "cm"),
  39468. default: true
  39469. },
  39470. {
  39471. name: "Macro",
  39472. height: math.unit(100, "m")
  39473. },
  39474. {
  39475. name: "Macro-er",
  39476. height: math.unit(1, "km")
  39477. },
  39478. {
  39479. name: "Macro-erst",
  39480. height: math.unit(10, "km")
  39481. },
  39482. {
  39483. name: "Macro-Macro",
  39484. height: math.unit(100, "km")
  39485. },
  39486. ]
  39487. ))
  39488. characterMakers.push(() => makeCharacter(
  39489. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  39490. {
  39491. front: {
  39492. height: math.unit(11 + 9/12, "feet"),
  39493. weight: math.unit(935, "lb"),
  39494. name: "Front",
  39495. image: {
  39496. source: "./media/characters/kingsley/front.svg",
  39497. extra: 1803/1674,
  39498. bottom: 127/1930
  39499. }
  39500. },
  39501. frontNude: {
  39502. height: math.unit(11 + 9/12, "feet"),
  39503. weight: math.unit(935, "lb"),
  39504. name: "Front (Nude)",
  39505. image: {
  39506. source: "./media/characters/kingsley/front-nude.svg",
  39507. extra: 1803/1674,
  39508. bottom: 127/1930
  39509. }
  39510. },
  39511. },
  39512. [
  39513. {
  39514. name: "Normal",
  39515. height: math.unit(11 + 9/12, "feet"),
  39516. default: true
  39517. },
  39518. ]
  39519. ))
  39520. characterMakers.push(() => makeCharacter(
  39521. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  39522. {
  39523. side: {
  39524. height: math.unit(9, "feet"),
  39525. name: "Side",
  39526. image: {
  39527. source: "./media/characters/rymel/side.svg",
  39528. extra: 792/469,
  39529. bottom: 121/913
  39530. }
  39531. },
  39532. maw: {
  39533. height: math.unit(2.4, "meters"),
  39534. name: "Maw",
  39535. image: {
  39536. source: "./media/characters/rymel/maw.svg"
  39537. }
  39538. },
  39539. },
  39540. [
  39541. {
  39542. name: "House Drake",
  39543. height: math.unit(2, "feet")
  39544. },
  39545. {
  39546. name: "Reduced",
  39547. height: math.unit(4.5, "feet")
  39548. },
  39549. {
  39550. name: "Normal",
  39551. height: math.unit(9, "feet"),
  39552. default: true
  39553. },
  39554. ]
  39555. ))
  39556. characterMakers.push(() => makeCharacter(
  39557. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  39558. {
  39559. front: {
  39560. height: math.unit(1.74, "meters"),
  39561. weight: math.unit(55, "kg"),
  39562. name: "Front",
  39563. image: {
  39564. source: "./media/characters/rubus/front.svg",
  39565. extra: 1894/1742,
  39566. bottom: 44/1938
  39567. }
  39568. },
  39569. },
  39570. [
  39571. {
  39572. name: "Normal",
  39573. height: math.unit(1.74, "meters"),
  39574. default: true
  39575. },
  39576. ]
  39577. ))
  39578. characterMakers.push(() => makeCharacter(
  39579. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  39580. {
  39581. front: {
  39582. height: math.unit(5 + 2/12, "feet"),
  39583. weight: math.unit(112, "lb"),
  39584. name: "Front",
  39585. image: {
  39586. source: "./media/characters/cassie-kingston/front.svg",
  39587. extra: 1438/1390,
  39588. bottom: 47/1485
  39589. }
  39590. },
  39591. },
  39592. [
  39593. {
  39594. name: "Normal",
  39595. height: math.unit(5 + 2/12, "feet"),
  39596. default: true
  39597. },
  39598. {
  39599. name: "Macro",
  39600. height: math.unit(128, "feet")
  39601. },
  39602. {
  39603. name: "Megamacro",
  39604. height: math.unit(2.56, "miles")
  39605. },
  39606. ]
  39607. ))
  39608. characterMakers.push(() => makeCharacter(
  39609. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  39610. {
  39611. front: {
  39612. height: math.unit(7, "feet"),
  39613. name: "Front",
  39614. image: {
  39615. source: "./media/characters/fox/front.svg",
  39616. extra: 1798/1703,
  39617. bottom: 55/1853
  39618. }
  39619. },
  39620. back: {
  39621. height: math.unit(7, "feet"),
  39622. name: "Back",
  39623. image: {
  39624. source: "./media/characters/fox/back.svg",
  39625. extra: 1748/1649,
  39626. bottom: 32/1780
  39627. }
  39628. },
  39629. head: {
  39630. height: math.unit(1.95, "feet"),
  39631. name: "Head",
  39632. image: {
  39633. source: "./media/characters/fox/head.svg"
  39634. }
  39635. },
  39636. dick: {
  39637. height: math.unit(1.33, "feet"),
  39638. name: "Dick",
  39639. image: {
  39640. source: "./media/characters/fox/dick.svg"
  39641. }
  39642. },
  39643. foot: {
  39644. height: math.unit(1, "feet"),
  39645. name: "Foot",
  39646. image: {
  39647. source: "./media/characters/fox/foot.svg"
  39648. }
  39649. },
  39650. paw: {
  39651. height: math.unit(0.92, "feet"),
  39652. name: "Paw",
  39653. image: {
  39654. source: "./media/characters/fox/paw.svg"
  39655. }
  39656. },
  39657. },
  39658. [
  39659. {
  39660. name: "Small",
  39661. height: math.unit(3, "inches")
  39662. },
  39663. {
  39664. name: "\"Realistic\"",
  39665. height: math.unit(7, "feet")
  39666. },
  39667. {
  39668. name: "Normal",
  39669. height: math.unit(150, "feet"),
  39670. default: true
  39671. },
  39672. {
  39673. name: "BIG",
  39674. height: math.unit(1200, "feet")
  39675. },
  39676. {
  39677. name: "👀",
  39678. height: math.unit(5, "miles")
  39679. },
  39680. {
  39681. name: "👀👀👀",
  39682. height: math.unit(64, "miles")
  39683. },
  39684. ]
  39685. ))
  39686. characterMakers.push(() => makeCharacter(
  39687. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  39688. {
  39689. front: {
  39690. height: math.unit(625, "feet"),
  39691. name: "Front",
  39692. image: {
  39693. source: "./media/characters/asonja-rossa/front.svg",
  39694. extra: 1833/1686,
  39695. bottom: 24/1857
  39696. }
  39697. },
  39698. back: {
  39699. height: math.unit(625, "feet"),
  39700. name: "Back",
  39701. image: {
  39702. source: "./media/characters/asonja-rossa/back.svg",
  39703. extra: 1852/1753,
  39704. bottom: 26/1878
  39705. }
  39706. },
  39707. },
  39708. [
  39709. {
  39710. name: "Macro",
  39711. height: math.unit(625, "feet"),
  39712. default: true
  39713. },
  39714. ]
  39715. ))
  39716. characterMakers.push(() => makeCharacter(
  39717. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  39718. {
  39719. side: {
  39720. height: math.unit(8, "feet"),
  39721. name: "Side",
  39722. image: {
  39723. source: "./media/characters/rezukii/side.svg",
  39724. extra: 979/542,
  39725. bottom: 87/1066
  39726. }
  39727. },
  39728. sitting: {
  39729. height: math.unit(14.6, "feet"),
  39730. name: "Sitting",
  39731. image: {
  39732. source: "./media/characters/rezukii/sitting.svg",
  39733. extra: 1023/813,
  39734. bottom: 45/1068
  39735. }
  39736. },
  39737. },
  39738. [
  39739. {
  39740. name: "Tiny",
  39741. height: math.unit(2, "feet")
  39742. },
  39743. {
  39744. name: "Smol",
  39745. height: math.unit(4, "feet")
  39746. },
  39747. {
  39748. name: "Normal",
  39749. height: math.unit(8, "feet"),
  39750. default: true
  39751. },
  39752. {
  39753. name: "Big",
  39754. height: math.unit(12, "feet")
  39755. },
  39756. {
  39757. name: "Macro",
  39758. height: math.unit(30, "feet")
  39759. },
  39760. ]
  39761. ))
  39762. characterMakers.push(() => makeCharacter(
  39763. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  39764. {
  39765. front: {
  39766. height: math.unit(14, "feet"),
  39767. weight: math.unit(9.5, "tonnes"),
  39768. name: "Front",
  39769. image: {
  39770. source: "./media/characters/dawnheart/front.svg",
  39771. extra: 2792/2675,
  39772. bottom: 64/2856
  39773. }
  39774. },
  39775. },
  39776. [
  39777. {
  39778. name: "Normal",
  39779. height: math.unit(14, "feet"),
  39780. default: true
  39781. },
  39782. ]
  39783. ))
  39784. characterMakers.push(() => makeCharacter(
  39785. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  39786. {
  39787. front: {
  39788. height: math.unit(1.7, "m"),
  39789. name: "Front",
  39790. image: {
  39791. source: "./media/characters/gladi/front.svg",
  39792. extra: 1460/1362,
  39793. bottom: 19/1479
  39794. }
  39795. },
  39796. back: {
  39797. height: math.unit(1.7, "m"),
  39798. name: "Back",
  39799. image: {
  39800. source: "./media/characters/gladi/back.svg",
  39801. extra: 1459/1357,
  39802. bottom: 12/1471
  39803. }
  39804. },
  39805. feral: {
  39806. height: math.unit(2.05, "m"),
  39807. name: "Feral",
  39808. image: {
  39809. source: "./media/characters/gladi/feral.svg",
  39810. extra: 821/557,
  39811. bottom: 91/912
  39812. }
  39813. },
  39814. },
  39815. [
  39816. {
  39817. name: "Shortest",
  39818. height: math.unit(70, "cm")
  39819. },
  39820. {
  39821. name: "Normal",
  39822. height: math.unit(1.7, "m")
  39823. },
  39824. {
  39825. name: "Macro",
  39826. height: math.unit(10, "m"),
  39827. default: true
  39828. },
  39829. {
  39830. name: "Tallest",
  39831. height: math.unit(200, "m")
  39832. },
  39833. ]
  39834. ))
  39835. characterMakers.push(() => makeCharacter(
  39836. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  39837. {
  39838. front: {
  39839. height: math.unit(5 + 7/12, "feet"),
  39840. weight: math.unit(2, "tons"),
  39841. name: "Front",
  39842. image: {
  39843. source: "./media/characters/erdno/front.svg",
  39844. extra: 1234/1129,
  39845. bottom: 35/1269
  39846. }
  39847. },
  39848. angled: {
  39849. height: math.unit(5 + 7/12, "feet"),
  39850. weight: math.unit(2, "tons"),
  39851. name: "Angled",
  39852. image: {
  39853. source: "./media/characters/erdno/angled.svg",
  39854. extra: 1185/1139,
  39855. bottom: 36/1221
  39856. }
  39857. },
  39858. side: {
  39859. height: math.unit(5 + 7/12, "feet"),
  39860. weight: math.unit(2, "tons"),
  39861. name: "Side",
  39862. image: {
  39863. source: "./media/characters/erdno/side.svg",
  39864. extra: 1191/1144,
  39865. bottom: 40/1231
  39866. }
  39867. },
  39868. back: {
  39869. height: math.unit(5 + 7/12, "feet"),
  39870. weight: math.unit(2, "tons"),
  39871. name: "Back",
  39872. image: {
  39873. source: "./media/characters/erdno/back.svg",
  39874. extra: 1202/1146,
  39875. bottom: 17/1219
  39876. }
  39877. },
  39878. frontNsfw: {
  39879. height: math.unit(5 + 7/12, "feet"),
  39880. weight: math.unit(2, "tons"),
  39881. name: "Front (NSFW)",
  39882. image: {
  39883. source: "./media/characters/erdno/front-nsfw.svg",
  39884. extra: 1234/1129,
  39885. bottom: 35/1269
  39886. }
  39887. },
  39888. angledNsfw: {
  39889. height: math.unit(5 + 7/12, "feet"),
  39890. weight: math.unit(2, "tons"),
  39891. name: "Angled (NSFW)",
  39892. image: {
  39893. source: "./media/characters/erdno/angled-nsfw.svg",
  39894. extra: 1185/1139,
  39895. bottom: 36/1221
  39896. }
  39897. },
  39898. sideNsfw: {
  39899. height: math.unit(5 + 7/12, "feet"),
  39900. weight: math.unit(2, "tons"),
  39901. name: "Side (NSFW)",
  39902. image: {
  39903. source: "./media/characters/erdno/side-nsfw.svg",
  39904. extra: 1191/1144,
  39905. bottom: 40/1231
  39906. }
  39907. },
  39908. backNsfw: {
  39909. height: math.unit(5 + 7/12, "feet"),
  39910. weight: math.unit(2, "tons"),
  39911. name: "Back (NSFW)",
  39912. image: {
  39913. source: "./media/characters/erdno/back-nsfw.svg",
  39914. extra: 1202/1146,
  39915. bottom: 17/1219
  39916. }
  39917. },
  39918. frontHyper: {
  39919. height: math.unit(5 + 7/12, "feet"),
  39920. weight: math.unit(2, "tons"),
  39921. name: "Front (Hyper)",
  39922. image: {
  39923. source: "./media/characters/erdno/front-hyper.svg",
  39924. extra: 1298/1136,
  39925. bottom: 35/1333
  39926. }
  39927. },
  39928. },
  39929. [
  39930. {
  39931. name: "Normal",
  39932. height: math.unit(5 + 7/12, "feet"),
  39933. default: true
  39934. },
  39935. {
  39936. name: "Big",
  39937. height: math.unit(5.7, "meters")
  39938. },
  39939. {
  39940. name: "Macro",
  39941. height: math.unit(5.7, "kilometers")
  39942. },
  39943. {
  39944. name: "Megamacro",
  39945. height: math.unit(5.7, "earths")
  39946. },
  39947. ]
  39948. ))
  39949. characterMakers.push(() => makeCharacter(
  39950. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  39951. {
  39952. front: {
  39953. height: math.unit(5 + 10/12, "feet"),
  39954. weight: math.unit(150, "lb"),
  39955. name: "Front",
  39956. image: {
  39957. source: "./media/characters/jamie/front.svg",
  39958. extra: 1908/1768,
  39959. bottom: 19/1927
  39960. }
  39961. },
  39962. },
  39963. [
  39964. {
  39965. name: "Minimum",
  39966. height: math.unit(2, "cm")
  39967. },
  39968. {
  39969. name: "Micro",
  39970. height: math.unit(3, "inches")
  39971. },
  39972. {
  39973. name: "Normal",
  39974. height: math.unit(5 + 10/12, "feet"),
  39975. default: true
  39976. },
  39977. {
  39978. name: "Macro",
  39979. height: math.unit(150, "feet")
  39980. },
  39981. {
  39982. name: "Megamacro",
  39983. height: math.unit(10000, "m")
  39984. },
  39985. ]
  39986. ))
  39987. characterMakers.push(() => makeCharacter(
  39988. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  39989. {
  39990. front: {
  39991. height: math.unit(2, "meters"),
  39992. weight: math.unit(100, "kg"),
  39993. name: "Front",
  39994. image: {
  39995. source: "./media/characters/shiron/front.svg",
  39996. extra: 2103/1985,
  39997. bottom: 98/2201
  39998. }
  39999. },
  40000. back: {
  40001. height: math.unit(2, "meters"),
  40002. weight: math.unit(100, "kg"),
  40003. name: "Back",
  40004. image: {
  40005. source: "./media/characters/shiron/back.svg",
  40006. extra: 2110/2015,
  40007. bottom: 89/2199
  40008. }
  40009. },
  40010. hand: {
  40011. height: math.unit(0.96, "feet"),
  40012. name: "Hand",
  40013. image: {
  40014. source: "./media/characters/shiron/hand.svg"
  40015. }
  40016. },
  40017. foot: {
  40018. height: math.unit(1.464, "feet"),
  40019. name: "Foot",
  40020. image: {
  40021. source: "./media/characters/shiron/foot.svg"
  40022. }
  40023. },
  40024. },
  40025. [
  40026. {
  40027. name: "Normal",
  40028. height: math.unit(2, "meters")
  40029. },
  40030. {
  40031. name: "Macro",
  40032. height: math.unit(500, "meters"),
  40033. default: true
  40034. },
  40035. {
  40036. name: "Megamacro",
  40037. height: math.unit(20, "km")
  40038. },
  40039. ]
  40040. ))
  40041. characterMakers.push(() => makeCharacter(
  40042. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  40043. {
  40044. front: {
  40045. height: math.unit(6, "feet"),
  40046. name: "Front",
  40047. image: {
  40048. source: "./media/characters/sam/front.svg",
  40049. extra: 849/826,
  40050. bottom: 19/868
  40051. }
  40052. },
  40053. },
  40054. [
  40055. {
  40056. name: "Normal",
  40057. height: math.unit(6, "feet"),
  40058. default: true
  40059. },
  40060. ]
  40061. ))
  40062. characterMakers.push(() => makeCharacter(
  40063. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  40064. {
  40065. front: {
  40066. height: math.unit(8 + 4/12, "feet"),
  40067. weight: math.unit(122, "kg"),
  40068. name: "Front",
  40069. image: {
  40070. source: "./media/characters/namori-kurogawa/front.svg",
  40071. extra: 1894/1576,
  40072. bottom: 34/1928
  40073. }
  40074. },
  40075. },
  40076. [
  40077. {
  40078. name: "Normal",
  40079. height: math.unit(8 + 4/12, "feet"),
  40080. default: true
  40081. },
  40082. ]
  40083. ))
  40084. characterMakers.push(() => makeCharacter(
  40085. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  40086. {
  40087. front: {
  40088. height: math.unit(9, "feet"),
  40089. weight: math.unit(621, "lb"),
  40090. name: "Front",
  40091. image: {
  40092. source: "./media/characters/unmru/front.svg",
  40093. extra: 1853/1747,
  40094. bottom: 73/1926
  40095. }
  40096. },
  40097. side: {
  40098. height: math.unit(9, "feet"),
  40099. weight: math.unit(621, "lb"),
  40100. name: "Side",
  40101. image: {
  40102. source: "./media/characters/unmru/side.svg",
  40103. extra: 1781/1671,
  40104. bottom: 127/1908
  40105. }
  40106. },
  40107. back: {
  40108. height: math.unit(9, "feet"),
  40109. weight: math.unit(621, "lb"),
  40110. name: "Back",
  40111. image: {
  40112. source: "./media/characters/unmru/back.svg",
  40113. extra: 1894/1765,
  40114. bottom: 75/1969
  40115. }
  40116. },
  40117. dick: {
  40118. height: math.unit(3, "feet"),
  40119. weight: math.unit(35, "lb"),
  40120. name: "Dick",
  40121. image: {
  40122. source: "./media/characters/unmru/dick.svg"
  40123. }
  40124. },
  40125. },
  40126. [
  40127. {
  40128. name: "Normal",
  40129. height: math.unit(9, "feet")
  40130. },
  40131. {
  40132. name: "Natural",
  40133. height: math.unit(27, "feet"),
  40134. default: true
  40135. },
  40136. {
  40137. name: "Giant",
  40138. height: math.unit(90, "feet")
  40139. },
  40140. {
  40141. name: "Kaiju",
  40142. height: math.unit(270, "feet")
  40143. },
  40144. {
  40145. name: "Macro",
  40146. height: math.unit(900, "feet")
  40147. },
  40148. {
  40149. name: "Macro+",
  40150. height: math.unit(2700, "feet")
  40151. },
  40152. {
  40153. name: "Megamacro",
  40154. height: math.unit(9000, "feet")
  40155. },
  40156. {
  40157. name: "City-Crushing",
  40158. height: math.unit(27000, "feet")
  40159. },
  40160. {
  40161. name: "Mountain-Mashing",
  40162. height: math.unit(90000, "feet")
  40163. },
  40164. {
  40165. name: "Earth-Eclipsing",
  40166. height: math.unit(2.7e8, "feet")
  40167. },
  40168. {
  40169. name: "Sol-Swallowing",
  40170. height: math.unit(9e10, "feet")
  40171. },
  40172. {
  40173. name: "Majoris-Munching",
  40174. height: math.unit(2.7e13, "feet")
  40175. },
  40176. ]
  40177. ))
  40178. characterMakers.push(() => makeCharacter(
  40179. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  40180. {
  40181. front: {
  40182. height: math.unit(1, "inch"),
  40183. name: "Front",
  40184. image: {
  40185. source: "./media/characters/squeaks-mouse/front.svg",
  40186. extra: 352/308,
  40187. bottom: 25/377
  40188. }
  40189. },
  40190. },
  40191. [
  40192. {
  40193. name: "Micro",
  40194. height: math.unit(1, "inch"),
  40195. default: true
  40196. },
  40197. ]
  40198. ))
  40199. characterMakers.push(() => makeCharacter(
  40200. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  40201. {
  40202. side: {
  40203. height: math.unit(35, "feet"),
  40204. name: "Side",
  40205. image: {
  40206. source: "./media/characters/sayko/side.svg",
  40207. extra: 1697/1021,
  40208. bottom: 82/1779
  40209. }
  40210. },
  40211. head: {
  40212. height: math.unit(16, "feet"),
  40213. name: "Head",
  40214. image: {
  40215. source: "./media/characters/sayko/head.svg"
  40216. }
  40217. },
  40218. forepaw: {
  40219. height: math.unit(7.85, "feet"),
  40220. name: "Forepaw",
  40221. image: {
  40222. source: "./media/characters/sayko/forepaw.svg"
  40223. }
  40224. },
  40225. hindpaw: {
  40226. height: math.unit(8.8, "feet"),
  40227. name: "Hindpaw",
  40228. image: {
  40229. source: "./media/characters/sayko/hindpaw.svg"
  40230. }
  40231. },
  40232. },
  40233. [
  40234. {
  40235. name: "Normal",
  40236. height: math.unit(35, "feet"),
  40237. default: true
  40238. },
  40239. {
  40240. name: "Colossus",
  40241. height: math.unit(100, "meters")
  40242. },
  40243. {
  40244. name: "\"Small\" Deity",
  40245. height: math.unit(1, "km")
  40246. },
  40247. {
  40248. name: "\"Large\" Deity",
  40249. height: math.unit(15, "km")
  40250. },
  40251. ]
  40252. ))
  40253. characterMakers.push(() => makeCharacter(
  40254. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  40255. {
  40256. front: {
  40257. height: math.unit(6, "feet"),
  40258. weight: math.unit(250, "lb"),
  40259. name: "Front",
  40260. image: {
  40261. source: "./media/characters/mukiro/front.svg",
  40262. extra: 1368/1310,
  40263. bottom: 34/1402
  40264. }
  40265. },
  40266. },
  40267. [
  40268. {
  40269. name: "Normal",
  40270. height: math.unit(6, "feet"),
  40271. default: true
  40272. },
  40273. ]
  40274. ))
  40275. characterMakers.push(() => makeCharacter(
  40276. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  40277. {
  40278. front: {
  40279. height: math.unit(12 + 4/12, "feet"),
  40280. name: "Front",
  40281. image: {
  40282. source: "./media/characters/zeph-the-tiger-god/front.svg",
  40283. extra: 1346/1311,
  40284. bottom: 65/1411
  40285. }
  40286. },
  40287. },
  40288. [
  40289. {
  40290. name: "Base",
  40291. height: math.unit(12 + 4/12, "feet"),
  40292. default: true
  40293. },
  40294. {
  40295. name: "Macro",
  40296. height: math.unit(150, "feet")
  40297. },
  40298. {
  40299. name: "Mega",
  40300. height: math.unit(2, "miles")
  40301. },
  40302. {
  40303. name: "Demi God",
  40304. height: math.unit(4, "AU")
  40305. },
  40306. {
  40307. name: "God Size",
  40308. height: math.unit(1, "universe")
  40309. },
  40310. ]
  40311. ))
  40312. characterMakers.push(() => makeCharacter(
  40313. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  40314. {
  40315. front: {
  40316. height: math.unit(3 + 3/12, "feet"),
  40317. weight: math.unit(88, "lb"),
  40318. name: "Front",
  40319. image: {
  40320. source: "./media/characters/trey/front.svg",
  40321. extra: 1815/1509,
  40322. bottom: 60/1875
  40323. }
  40324. },
  40325. },
  40326. [
  40327. {
  40328. name: "Normal",
  40329. height: math.unit(3 + 3/12, "feet"),
  40330. default: true
  40331. },
  40332. ]
  40333. ))
  40334. characterMakers.push(() => makeCharacter(
  40335. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  40336. {
  40337. front: {
  40338. height: math.unit(4, "meters"),
  40339. name: "Front",
  40340. image: {
  40341. source: "./media/characters/adelonda/front.svg",
  40342. extra: 1077/982,
  40343. bottom: 39/1116
  40344. }
  40345. },
  40346. back: {
  40347. height: math.unit(4, "meters"),
  40348. name: "Back",
  40349. image: {
  40350. source: "./media/characters/adelonda/back.svg",
  40351. extra: 1105/1003,
  40352. bottom: 25/1130
  40353. }
  40354. },
  40355. feral: {
  40356. height: math.unit(40/1.5, "meters"),
  40357. name: "Feral",
  40358. image: {
  40359. source: "./media/characters/adelonda/feral.svg",
  40360. extra: 597/271,
  40361. bottom: 387/984
  40362. }
  40363. },
  40364. },
  40365. [
  40366. {
  40367. name: "Normal",
  40368. height: math.unit(4, "meters"),
  40369. default: true
  40370. },
  40371. ]
  40372. ))
  40373. characterMakers.push(() => makeCharacter(
  40374. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  40375. {
  40376. front: {
  40377. height: math.unit(8 + 4/12, "feet"),
  40378. weight: math.unit(670, "lb"),
  40379. name: "Front",
  40380. image: {
  40381. source: "./media/characters/acadiel/front.svg",
  40382. extra: 1901/1595,
  40383. bottom: 142/2043
  40384. }
  40385. },
  40386. },
  40387. [
  40388. {
  40389. name: "Normal",
  40390. height: math.unit(8 + 4/12, "feet"),
  40391. default: true
  40392. },
  40393. {
  40394. name: "Macro",
  40395. height: math.unit(200, "feet")
  40396. },
  40397. ]
  40398. ))
  40399. characterMakers.push(() => makeCharacter(
  40400. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  40401. {
  40402. front: {
  40403. height: math.unit(6 + 2/12, "feet"),
  40404. weight: math.unit(185, "lb"),
  40405. name: "Front",
  40406. image: {
  40407. source: "./media/characters/kayne-ein/front.svg",
  40408. extra: 1780/1560,
  40409. bottom: 81/1861
  40410. }
  40411. },
  40412. },
  40413. [
  40414. {
  40415. name: "Normal",
  40416. height: math.unit(6 + 2/12, "feet"),
  40417. default: true
  40418. },
  40419. {
  40420. name: "Transformation Stage",
  40421. height: math.unit(15, "feet")
  40422. },
  40423. {
  40424. name: "Macro",
  40425. height: math.unit(150, "feet")
  40426. },
  40427. {
  40428. name: "Earth's Shadow",
  40429. height: math.unit(6200, "miles")
  40430. },
  40431. {
  40432. name: "Universal Demon",
  40433. height: math.unit(28e9, "parsecs")
  40434. },
  40435. {
  40436. name: "Multiverse God",
  40437. height: math.unit(3, "multiverses")
  40438. },
  40439. ]
  40440. ))
  40441. characterMakers.push(() => makeCharacter(
  40442. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  40443. {
  40444. front: {
  40445. height: math.unit(5 + 5/12, "feet"),
  40446. name: "Front",
  40447. image: {
  40448. source: "./media/characters/fawn/front.svg",
  40449. extra: 1873/1731,
  40450. bottom: 95/1968
  40451. }
  40452. },
  40453. back: {
  40454. height: math.unit(5 + 5/12, "feet"),
  40455. name: "Back",
  40456. image: {
  40457. source: "./media/characters/fawn/back.svg",
  40458. extra: 1813/1700,
  40459. bottom: 14/1827
  40460. }
  40461. },
  40462. hoof: {
  40463. height: math.unit(1.45, "feet"),
  40464. name: "Hoof",
  40465. image: {
  40466. source: "./media/characters/fawn/hoof.svg"
  40467. }
  40468. },
  40469. },
  40470. [
  40471. {
  40472. name: "Normal",
  40473. height: math.unit(5 + 5/12, "feet"),
  40474. default: true
  40475. },
  40476. ]
  40477. ))
  40478. characterMakers.push(() => makeCharacter(
  40479. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  40480. {
  40481. front: {
  40482. height: math.unit(2 + 5/12, "feet"),
  40483. name: "Front",
  40484. image: {
  40485. source: "./media/characters/orion/front.svg",
  40486. extra: 1366/1304,
  40487. bottom: 43/1409
  40488. }
  40489. },
  40490. paw: {
  40491. height: math.unit(0.52, "feet"),
  40492. name: "Paw",
  40493. image: {
  40494. source: "./media/characters/orion/paw.svg"
  40495. }
  40496. },
  40497. },
  40498. [
  40499. {
  40500. name: "Normal",
  40501. height: math.unit(2 + 5/12, "feet"),
  40502. default: true
  40503. },
  40504. ]
  40505. ))
  40506. characterMakers.push(() => makeCharacter(
  40507. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  40508. {
  40509. front: {
  40510. height: math.unit(5 + 10/12, "feet"),
  40511. name: "Front",
  40512. image: {
  40513. source: "./media/characters/vera/front.svg",
  40514. extra: 1680/1575,
  40515. bottom: 49/1729
  40516. }
  40517. },
  40518. back: {
  40519. height: math.unit(5 + 10/12, "feet"),
  40520. name: "Back",
  40521. image: {
  40522. source: "./media/characters/vera/back.svg",
  40523. extra: 1700/1588,
  40524. bottom: 18/1718
  40525. }
  40526. },
  40527. arcanine: {
  40528. height: math.unit(6 + 8/12, "feet"),
  40529. name: "Arcanine",
  40530. image: {
  40531. source: "./media/characters/vera/arcanine.svg",
  40532. extra: 1590/1511,
  40533. bottom: 71/1661
  40534. }
  40535. },
  40536. maw: {
  40537. height: math.unit(0.82, "feet"),
  40538. name: "Maw",
  40539. image: {
  40540. source: "./media/characters/vera/maw.svg"
  40541. }
  40542. },
  40543. mawArcanine: {
  40544. height: math.unit(0.97, "feet"),
  40545. name: "Maw (Arcanine)",
  40546. image: {
  40547. source: "./media/characters/vera/maw-arcanine.svg"
  40548. }
  40549. },
  40550. paw: {
  40551. height: math.unit(0.75, "feet"),
  40552. name: "Paw",
  40553. image: {
  40554. source: "./media/characters/vera/paw.svg"
  40555. }
  40556. },
  40557. pawprint: {
  40558. height: math.unit(0.52, "feet"),
  40559. name: "Pawprint",
  40560. image: {
  40561. source: "./media/characters/vera/pawprint.svg"
  40562. }
  40563. },
  40564. },
  40565. [
  40566. {
  40567. name: "Normal",
  40568. height: math.unit(5 + 10/12, "feet"),
  40569. default: true
  40570. },
  40571. {
  40572. name: "Macro",
  40573. height: math.unit(75, "feet")
  40574. },
  40575. ]
  40576. ))
  40577. characterMakers.push(() => makeCharacter(
  40578. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  40579. {
  40580. front: {
  40581. height: math.unit(4, "feet"),
  40582. weight: math.unit(40, "lb"),
  40583. name: "Front",
  40584. image: {
  40585. source: "./media/characters/orvan-rabbit/front.svg",
  40586. extra: 1896/1642,
  40587. bottom: 29/1925
  40588. }
  40589. },
  40590. },
  40591. [
  40592. {
  40593. name: "Normal",
  40594. height: math.unit(4, "feet"),
  40595. default: true
  40596. },
  40597. ]
  40598. ))
  40599. characterMakers.push(() => makeCharacter(
  40600. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  40601. {
  40602. front: {
  40603. height: math.unit(6, "feet"),
  40604. weight: math.unit(168, "lb"),
  40605. name: "Front",
  40606. image: {
  40607. source: "./media/characters/lisa/front.svg",
  40608. extra: 2065/1867,
  40609. bottom: 46/2111
  40610. }
  40611. },
  40612. back: {
  40613. height: math.unit(6, "feet"),
  40614. weight: math.unit(168, "lb"),
  40615. name: "Back",
  40616. image: {
  40617. source: "./media/characters/lisa/back.svg",
  40618. extra: 1982/1838,
  40619. bottom: 29/2011
  40620. }
  40621. },
  40622. maw: {
  40623. height: math.unit(0.81, "feet"),
  40624. name: "Maw",
  40625. image: {
  40626. source: "./media/characters/lisa/maw.svg"
  40627. }
  40628. },
  40629. paw: {
  40630. height: math.unit(0.9, "feet"),
  40631. name: "Paw",
  40632. image: {
  40633. source: "./media/characters/lisa/paw.svg"
  40634. }
  40635. },
  40636. caribousune: {
  40637. height: math.unit(7 + 2/12, "feet"),
  40638. weight: math.unit(268, "lb"),
  40639. name: "Caribousune",
  40640. image: {
  40641. source: "./media/characters/lisa/caribousune.svg",
  40642. extra: 1843/1633,
  40643. bottom: 29/1872
  40644. }
  40645. },
  40646. frontCaribousune: {
  40647. height: math.unit(7 + 2/12, "feet"),
  40648. weight: math.unit(268, "lb"),
  40649. name: "Front (Caribousune)",
  40650. image: {
  40651. source: "./media/characters/lisa/front-caribousune.svg",
  40652. extra: 1818/1638,
  40653. bottom: 52/1870
  40654. }
  40655. },
  40656. sideCaribousune: {
  40657. height: math.unit(7 + 2/12, "feet"),
  40658. weight: math.unit(268, "lb"),
  40659. name: "Side (Caribousune)",
  40660. image: {
  40661. source: "./media/characters/lisa/side-caribousune.svg",
  40662. extra: 1851/1635,
  40663. bottom: 16/1867
  40664. }
  40665. },
  40666. backCaribousune: {
  40667. height: math.unit(7 + 2/12, "feet"),
  40668. weight: math.unit(268, "lb"),
  40669. name: "Back (Caribousune)",
  40670. image: {
  40671. source: "./media/characters/lisa/back-caribousune.svg",
  40672. extra: 1801/1604,
  40673. bottom: 44/1845
  40674. }
  40675. },
  40676. caribou: {
  40677. height: math.unit(7 + 2/12, "feet"),
  40678. weight: math.unit(268, "lb"),
  40679. name: "Caribou",
  40680. image: {
  40681. source: "./media/characters/lisa/caribou.svg",
  40682. extra: 1843/1633,
  40683. bottom: 29/1872
  40684. }
  40685. },
  40686. frontCaribou: {
  40687. height: math.unit(7 + 2/12, "feet"),
  40688. weight: math.unit(268, "lb"),
  40689. name: "Front (Caribou)",
  40690. image: {
  40691. source: "./media/characters/lisa/front-caribou.svg",
  40692. extra: 1818/1638,
  40693. bottom: 52/1870
  40694. }
  40695. },
  40696. sideCaribou: {
  40697. height: math.unit(7 + 2/12, "feet"),
  40698. weight: math.unit(268, "lb"),
  40699. name: "Side (Caribou)",
  40700. image: {
  40701. source: "./media/characters/lisa/side-caribou.svg",
  40702. extra: 1851/1635,
  40703. bottom: 16/1867
  40704. }
  40705. },
  40706. backCaribou: {
  40707. height: math.unit(7 + 2/12, "feet"),
  40708. weight: math.unit(268, "lb"),
  40709. name: "Back (Caribou)",
  40710. image: {
  40711. source: "./media/characters/lisa/back-caribou.svg",
  40712. extra: 1801/1604,
  40713. bottom: 44/1845
  40714. }
  40715. },
  40716. mawCaribou: {
  40717. height: math.unit(1.45, "feet"),
  40718. name: "Maw (Caribou)",
  40719. image: {
  40720. source: "./media/characters/lisa/maw-caribou.svg"
  40721. }
  40722. },
  40723. mawCaribousune: {
  40724. height: math.unit(1.45, "feet"),
  40725. name: "Maw (Caribousune)",
  40726. image: {
  40727. source: "./media/characters/lisa/maw-caribousune.svg"
  40728. }
  40729. },
  40730. pawCaribousune: {
  40731. height: math.unit(1.61, "feet"),
  40732. name: "Paw (Caribou)",
  40733. image: {
  40734. source: "./media/characters/lisa/paw-caribousune.svg"
  40735. }
  40736. },
  40737. },
  40738. [
  40739. {
  40740. name: "Normal",
  40741. height: math.unit(6, "feet")
  40742. },
  40743. {
  40744. name: "God Size",
  40745. height: math.unit(72, "feet"),
  40746. default: true
  40747. },
  40748. {
  40749. name: "Towering",
  40750. height: math.unit(288, "feet")
  40751. },
  40752. {
  40753. name: "City Size",
  40754. height: math.unit(48384, "feet")
  40755. },
  40756. {
  40757. name: "Continental",
  40758. height: math.unit(4200, "miles")
  40759. },
  40760. {
  40761. name: "Planet Eater",
  40762. height: math.unit(42, "earths")
  40763. },
  40764. {
  40765. name: "Star Swallower",
  40766. height: math.unit(42, "solarradii")
  40767. },
  40768. {
  40769. name: "System Swallower",
  40770. height: math.unit(84000, "AU")
  40771. },
  40772. {
  40773. name: "Galaxy Gobbler",
  40774. height: math.unit(42, "galaxies")
  40775. },
  40776. {
  40777. name: "Universe Devourer",
  40778. height: math.unit(42, "universes")
  40779. },
  40780. {
  40781. name: "Multiverse Muncher",
  40782. height: math.unit(42, "multiverses")
  40783. },
  40784. ]
  40785. ))
  40786. characterMakers.push(() => makeCharacter(
  40787. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  40788. {
  40789. front: {
  40790. height: math.unit(36, "feet"),
  40791. name: "Front",
  40792. image: {
  40793. source: "./media/characters/shadow-rat/front.svg",
  40794. extra: 1845/1758,
  40795. bottom: 83/1928
  40796. }
  40797. },
  40798. },
  40799. [
  40800. {
  40801. name: "Macro",
  40802. height: math.unit(36, "feet"),
  40803. default: true
  40804. },
  40805. ]
  40806. ))
  40807. characterMakers.push(() => makeCharacter(
  40808. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  40809. {
  40810. side: {
  40811. height: math.unit(8, "feet"),
  40812. weight: math.unit(2630, "lb"),
  40813. name: "Side",
  40814. image: {
  40815. source: "./media/characters/torallia/side.svg",
  40816. extra: 2164/2021,
  40817. bottom: 371/2535
  40818. }
  40819. },
  40820. },
  40821. [
  40822. {
  40823. name: "Mortal Interaction",
  40824. height: math.unit(8, "feet")
  40825. },
  40826. {
  40827. name: "Natural",
  40828. height: math.unit(24, "feet"),
  40829. default: true
  40830. },
  40831. {
  40832. name: "Giant",
  40833. height: math.unit(80, "feet")
  40834. },
  40835. {
  40836. name: "Kaiju",
  40837. height: math.unit(240, "feet")
  40838. },
  40839. {
  40840. name: "Macro",
  40841. height: math.unit(800, "feet")
  40842. },
  40843. {
  40844. name: "Macro+",
  40845. height: math.unit(2400, "feet")
  40846. },
  40847. {
  40848. name: "Macro++",
  40849. height: math.unit(8000, "feet")
  40850. },
  40851. {
  40852. name: "City-Crushing",
  40853. height: math.unit(24000, "feet")
  40854. },
  40855. {
  40856. name: "Mountain-Mashing",
  40857. height: math.unit(80000, "feet")
  40858. },
  40859. {
  40860. name: "District Demolisher",
  40861. height: math.unit(240000, "feet")
  40862. },
  40863. {
  40864. name: "Tri-County Terror",
  40865. height: math.unit(800000, "feet")
  40866. },
  40867. {
  40868. name: "State Smasher",
  40869. height: math.unit(2.4e6, "feet")
  40870. },
  40871. {
  40872. name: "Nation Nemesis",
  40873. height: math.unit(8e6, "feet")
  40874. },
  40875. {
  40876. name: "Continent Cracker",
  40877. height: math.unit(2.4e7, "feet")
  40878. },
  40879. {
  40880. name: "Planet-Pillaging",
  40881. height: math.unit(8e7, "feet")
  40882. },
  40883. {
  40884. name: "Earth-Eclipsing",
  40885. height: math.unit(2.4e8, "feet")
  40886. },
  40887. {
  40888. name: "Jovian-Jostling",
  40889. height: math.unit(8e8, "feet")
  40890. },
  40891. {
  40892. name: "Gas Giant Gulper",
  40893. height: math.unit(2.4e9, "feet")
  40894. },
  40895. {
  40896. name: "Astral Annihilator",
  40897. height: math.unit(8e9, "feet")
  40898. },
  40899. {
  40900. name: "Celestial Conqueror",
  40901. height: math.unit(2.4e10, "feet")
  40902. },
  40903. {
  40904. name: "Sol-Swallowing",
  40905. height: math.unit(8e10, "feet")
  40906. },
  40907. {
  40908. name: "Hunter of the Heavens",
  40909. height: math.unit(2.4e13, "feet")
  40910. },
  40911. ]
  40912. ))
  40913. characterMakers.push(() => makeCharacter(
  40914. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  40915. {
  40916. front: {
  40917. height: math.unit(6 + 8/12, "feet"),
  40918. weight: math.unit(250, "kilograms"),
  40919. volume: math.unit(28, "liters"),
  40920. name: "Front",
  40921. image: {
  40922. source: "./media/characters/rebecca-pawlson/front.svg",
  40923. extra: 1737/1596,
  40924. bottom: 107/1844
  40925. }
  40926. },
  40927. back: {
  40928. height: math.unit(6 + 8/12, "feet"),
  40929. weight: math.unit(250, "kilograms"),
  40930. volume: math.unit(28, "liters"),
  40931. name: "Back",
  40932. image: {
  40933. source: "./media/characters/rebecca-pawlson/back.svg",
  40934. extra: 1702/1523,
  40935. bottom: 86/1788
  40936. }
  40937. },
  40938. },
  40939. [
  40940. {
  40941. name: "Normal",
  40942. height: math.unit(6 + 8/12, "feet")
  40943. },
  40944. {
  40945. name: "Mini Macro",
  40946. height: math.unit(10, "feet"),
  40947. default: true
  40948. },
  40949. {
  40950. name: "Macro",
  40951. height: math.unit(100, "feet")
  40952. },
  40953. {
  40954. name: "Mega Macro",
  40955. height: math.unit(2500, "feet")
  40956. },
  40957. {
  40958. name: "Giga Macro",
  40959. height: math.unit(50, "miles")
  40960. },
  40961. ]
  40962. ))
  40963. characterMakers.push(() => makeCharacter(
  40964. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  40965. {
  40966. front: {
  40967. height: math.unit(7 + 6/12, "feet"),
  40968. weight: math.unit(600, "lb"),
  40969. name: "Front",
  40970. image: {
  40971. source: "./media/characters/moxie-nova/front.svg",
  40972. extra: 1734/1652,
  40973. bottom: 41/1775
  40974. }
  40975. },
  40976. },
  40977. [
  40978. {
  40979. name: "Normal",
  40980. height: math.unit(7 + 6/12, "feet"),
  40981. default: true
  40982. },
  40983. ]
  40984. ))
  40985. characterMakers.push(() => makeCharacter(
  40986. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  40987. {
  40988. goat: {
  40989. height: math.unit(4, "feet"),
  40990. weight: math.unit(180, "lb"),
  40991. name: "Goat",
  40992. image: {
  40993. source: "./media/characters/tiffany/goat.svg",
  40994. extra: 1845/1595,
  40995. bottom: 106/1951
  40996. }
  40997. },
  40998. front: {
  40999. height: math.unit(5, "feet"),
  41000. weight: math.unit(150, "lb"),
  41001. name: "Foxcoon",
  41002. image: {
  41003. source: "./media/characters/tiffany/foxcoon.svg",
  41004. extra: 1941/1845,
  41005. bottom: 58/1999
  41006. }
  41007. },
  41008. },
  41009. [
  41010. {
  41011. name: "Normal",
  41012. height: math.unit(5, "feet"),
  41013. default: true
  41014. },
  41015. ]
  41016. ))
  41017. characterMakers.push(() => makeCharacter(
  41018. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  41019. {
  41020. front: {
  41021. height: math.unit(8, "feet"),
  41022. weight: math.unit(300, "lb"),
  41023. name: "Front",
  41024. image: {
  41025. source: "./media/characters/raxinath/front.svg",
  41026. extra: 1407/1309,
  41027. bottom: 39/1446
  41028. }
  41029. },
  41030. back: {
  41031. height: math.unit(8, "feet"),
  41032. weight: math.unit(300, "lb"),
  41033. name: "Back",
  41034. image: {
  41035. source: "./media/characters/raxinath/back.svg",
  41036. extra: 1405/1315,
  41037. bottom: 9/1414
  41038. }
  41039. },
  41040. },
  41041. [
  41042. {
  41043. name: "Speck",
  41044. height: math.unit(0.5, "nm")
  41045. },
  41046. {
  41047. name: "Micro",
  41048. height: math.unit(3, "inches")
  41049. },
  41050. {
  41051. name: "Kobold",
  41052. height: math.unit(3, "feet")
  41053. },
  41054. {
  41055. name: "Normal",
  41056. height: math.unit(8, "feet"),
  41057. default: true
  41058. },
  41059. {
  41060. name: "Giant",
  41061. height: math.unit(50, "feet")
  41062. },
  41063. {
  41064. name: "Macro",
  41065. height: math.unit(1000, "feet")
  41066. },
  41067. {
  41068. name: "Megamacro",
  41069. height: math.unit(1, "mile")
  41070. },
  41071. ]
  41072. ))
  41073. characterMakers.push(() => makeCharacter(
  41074. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  41075. {
  41076. front: {
  41077. height: math.unit(10, "feet"),
  41078. weight: math.unit(1442, "lb"),
  41079. name: "Front",
  41080. image: {
  41081. source: "./media/characters/mal-dragon/front.svg",
  41082. extra: 1515/1444,
  41083. bottom: 113/1628
  41084. }
  41085. },
  41086. back: {
  41087. height: math.unit(10, "feet"),
  41088. weight: math.unit(1442, "lb"),
  41089. name: "Back",
  41090. image: {
  41091. source: "./media/characters/mal-dragon/back.svg",
  41092. extra: 1527/1434,
  41093. bottom: 25/1552
  41094. }
  41095. },
  41096. },
  41097. [
  41098. {
  41099. name: "Mortal Interaction",
  41100. height: math.unit(10, "feet"),
  41101. default: true
  41102. },
  41103. {
  41104. name: "Large",
  41105. height: math.unit(30, "feet")
  41106. },
  41107. {
  41108. name: "Kaiju",
  41109. height: math.unit(300, "feet")
  41110. },
  41111. {
  41112. name: "Megamacro",
  41113. height: math.unit(10000, "feet")
  41114. },
  41115. {
  41116. name: "Continent Cracker",
  41117. height: math.unit(30000000, "feet")
  41118. },
  41119. {
  41120. name: "Sol-Swallowing",
  41121. height: math.unit(1e11, "feet")
  41122. },
  41123. {
  41124. name: "Light Universal",
  41125. height: math.unit(5, "universes")
  41126. },
  41127. {
  41128. name: "Universe Atoms",
  41129. height: math.unit(1.829e9, "universes")
  41130. },
  41131. {
  41132. name: "Light Multiversal",
  41133. height: math.unit(5, "multiverses")
  41134. },
  41135. {
  41136. name: "Multiverse Atoms",
  41137. height: math.unit(1.829e9, "multiverses")
  41138. },
  41139. {
  41140. name: "Fabric of Time",
  41141. height: math.unit(1e262, "multiverses")
  41142. },
  41143. ]
  41144. ))
  41145. characterMakers.push(() => makeCharacter(
  41146. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  41147. {
  41148. front: {
  41149. height: math.unit(9, "feet"),
  41150. weight: math.unit(1050, "lb"),
  41151. name: "Front",
  41152. image: {
  41153. source: "./media/characters/tabitha/front.svg",
  41154. extra: 2083/1994,
  41155. bottom: 68/2151
  41156. }
  41157. },
  41158. },
  41159. [
  41160. {
  41161. name: "Baseline",
  41162. height: math.unit(9, "feet"),
  41163. default: true
  41164. },
  41165. {
  41166. name: "Giant",
  41167. height: math.unit(90, "feet")
  41168. },
  41169. {
  41170. name: "Macro",
  41171. height: math.unit(900, "feet")
  41172. },
  41173. {
  41174. name: "Megamacro",
  41175. height: math.unit(9000, "feet")
  41176. },
  41177. {
  41178. name: "City-Crushing",
  41179. height: math.unit(27000, "feet")
  41180. },
  41181. {
  41182. name: "Mountain-Mashing",
  41183. height: math.unit(90000, "feet")
  41184. },
  41185. {
  41186. name: "Nation Nemesis",
  41187. height: math.unit(9e6, "feet")
  41188. },
  41189. {
  41190. name: "Continent Cracker",
  41191. height: math.unit(27e6, "feet")
  41192. },
  41193. {
  41194. name: "Earth-Eclipsing",
  41195. height: math.unit(2.7e8, "feet")
  41196. },
  41197. {
  41198. name: "Gas Giant Gulper",
  41199. height: math.unit(2.7e9, "feet")
  41200. },
  41201. {
  41202. name: "Sol-Swallowing",
  41203. height: math.unit(9e10, "feet")
  41204. },
  41205. {
  41206. name: "Galaxy Gulper",
  41207. height: math.unit(9, "galaxies")
  41208. },
  41209. {
  41210. name: "Cosmos Churner",
  41211. height: math.unit(9, "universes")
  41212. },
  41213. ]
  41214. ))
  41215. characterMakers.push(() => makeCharacter(
  41216. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  41217. {
  41218. front: {
  41219. height: math.unit(160, "cm"),
  41220. weight: math.unit(55, "kg"),
  41221. name: "Front",
  41222. image: {
  41223. source: "./media/characters/tow/front.svg",
  41224. extra: 1751/1722,
  41225. bottom: 74/1825
  41226. }
  41227. },
  41228. },
  41229. [
  41230. {
  41231. name: "Norm",
  41232. height: math.unit(160, "cm")
  41233. },
  41234. {
  41235. name: "Casual",
  41236. height: math.unit(3200, "m"),
  41237. default: true
  41238. },
  41239. {
  41240. name: "Show-Off",
  41241. height: math.unit(160, "km")
  41242. },
  41243. ]
  41244. ))
  41245. characterMakers.push(() => makeCharacter(
  41246. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  41247. {
  41248. front: {
  41249. height: math.unit(7 + 11/12, "feet"),
  41250. weight: math.unit(342.8, "lb"),
  41251. name: "Front",
  41252. image: {
  41253. source: "./media/characters/vivian-orca-dragon/front.svg",
  41254. extra: 1890/1865,
  41255. bottom: 28/1918
  41256. }
  41257. },
  41258. },
  41259. [
  41260. {
  41261. name: "Micro",
  41262. height: math.unit(5, "inches")
  41263. },
  41264. {
  41265. name: "Normal",
  41266. height: math.unit(7 + 11/12, "feet"),
  41267. default: true
  41268. },
  41269. {
  41270. name: "Macro",
  41271. height: math.unit(395 + 7/12, "feet")
  41272. },
  41273. ]
  41274. ))
  41275. characterMakers.push(() => makeCharacter(
  41276. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  41277. {
  41278. side: {
  41279. height: math.unit(10, "feet"),
  41280. weight: math.unit(1442, "lb"),
  41281. name: "Side",
  41282. image: {
  41283. source: "./media/characters/lotherakon/side.svg",
  41284. extra: 1604/1497,
  41285. bottom: 89/1693
  41286. }
  41287. },
  41288. },
  41289. [
  41290. {
  41291. name: "Mortal Interaction",
  41292. height: math.unit(10, "feet")
  41293. },
  41294. {
  41295. name: "Large",
  41296. height: math.unit(30, "feet"),
  41297. default: true
  41298. },
  41299. {
  41300. name: "Giant",
  41301. height: math.unit(100, "feet")
  41302. },
  41303. {
  41304. name: "Kaiju",
  41305. height: math.unit(300, "feet")
  41306. },
  41307. {
  41308. name: "Macro",
  41309. height: math.unit(1000, "feet")
  41310. },
  41311. {
  41312. name: "Macro+",
  41313. height: math.unit(3000, "feet")
  41314. },
  41315. {
  41316. name: "Megamacro",
  41317. height: math.unit(10000, "feet")
  41318. },
  41319. {
  41320. name: "City-Crushing",
  41321. height: math.unit(30000, "feet")
  41322. },
  41323. {
  41324. name: "Continent Cracker",
  41325. height: math.unit(30e6, "feet")
  41326. },
  41327. {
  41328. name: "Earth Eclipsing",
  41329. height: math.unit(3e8, "feet")
  41330. },
  41331. {
  41332. name: "Gas Giant Gulper",
  41333. height: math.unit(3e9, "feet")
  41334. },
  41335. {
  41336. name: "Sol-Swallowing",
  41337. height: math.unit(1e11, "feet")
  41338. },
  41339. {
  41340. name: "System Swallower",
  41341. height: math.unit(3e14, "feet")
  41342. },
  41343. {
  41344. name: "Galaxy Gulper",
  41345. height: math.unit(10, "galaxies")
  41346. },
  41347. {
  41348. name: "Light Universal",
  41349. height: math.unit(5, "universes")
  41350. },
  41351. {
  41352. name: "Universe Palm",
  41353. height: math.unit(20, "universes")
  41354. },
  41355. {
  41356. name: "Light Multiversal",
  41357. height: math.unit(5, "multiverses")
  41358. },
  41359. {
  41360. name: "Multiverse Palm",
  41361. height: math.unit(20, "multiverses")
  41362. },
  41363. {
  41364. name: "Inferno Incarnate",
  41365. height: math.unit(1e7, "multiverses")
  41366. },
  41367. ]
  41368. ))
  41369. characterMakers.push(() => makeCharacter(
  41370. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  41371. {
  41372. front: {
  41373. height: math.unit(8, "feet"),
  41374. weight: math.unit(1200, "lb"),
  41375. name: "Front",
  41376. image: {
  41377. source: "./media/characters/malithee/front.svg",
  41378. extra: 1675/1640,
  41379. bottom: 162/1837
  41380. }
  41381. },
  41382. },
  41383. [
  41384. {
  41385. name: "Mortal Interaction",
  41386. height: math.unit(8, "feet"),
  41387. default: true
  41388. },
  41389. {
  41390. name: "Large",
  41391. height: math.unit(24, "feet")
  41392. },
  41393. {
  41394. name: "Kaiju",
  41395. height: math.unit(240, "feet")
  41396. },
  41397. {
  41398. name: "Megamacro",
  41399. height: math.unit(8000, "feet")
  41400. },
  41401. {
  41402. name: "Continent Cracker",
  41403. height: math.unit(24e6, "feet")
  41404. },
  41405. {
  41406. name: "Earth-Eclipsing",
  41407. height: math.unit(2.4e8, "feet")
  41408. },
  41409. {
  41410. name: "Sol-Swallowing",
  41411. height: math.unit(8e10, "feet")
  41412. },
  41413. {
  41414. name: "Galaxy Gulper",
  41415. height: math.unit(8, "galaxies")
  41416. },
  41417. {
  41418. name: "Light Universal",
  41419. height: math.unit(4, "universes")
  41420. },
  41421. {
  41422. name: "Universe Atoms",
  41423. height: math.unit(1.829e9, "universes")
  41424. },
  41425. {
  41426. name: "Light Multiversal",
  41427. height: math.unit(4, "multiverses")
  41428. },
  41429. {
  41430. name: "Multiverse Atoms",
  41431. height: math.unit(1.829e9, "multiverses")
  41432. },
  41433. {
  41434. name: "Nigh-Omnipresence",
  41435. height: math.unit(8e261, "multiverses")
  41436. },
  41437. ]
  41438. ))
  41439. characterMakers.push(() => makeCharacter(
  41440. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  41441. {
  41442. front: {
  41443. height: math.unit(10, "feet"),
  41444. weight: math.unit(1500, "lb"),
  41445. name: "Front",
  41446. image: {
  41447. source: "./media/characters/miles-thestia/front.svg",
  41448. extra: 1812/1727,
  41449. bottom: 86/1898
  41450. }
  41451. },
  41452. back: {
  41453. height: math.unit(10, "feet"),
  41454. weight: math.unit(1500, "lb"),
  41455. name: "Back",
  41456. image: {
  41457. source: "./media/characters/miles-thestia/back.svg",
  41458. extra: 1799/1690,
  41459. bottom: 47/1846
  41460. }
  41461. },
  41462. frontNsfw: {
  41463. height: math.unit(10, "feet"),
  41464. weight: math.unit(1500, "lb"),
  41465. name: "Front (NSFW)",
  41466. image: {
  41467. source: "./media/characters/miles-thestia/front-nsfw.svg",
  41468. extra: 1812/1727,
  41469. bottom: 86/1898
  41470. }
  41471. },
  41472. },
  41473. [
  41474. {
  41475. name: "Mini-Macro",
  41476. height: math.unit(10, "feet"),
  41477. default: true
  41478. },
  41479. ]
  41480. ))
  41481. characterMakers.push(() => makeCharacter(
  41482. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  41483. {
  41484. front: {
  41485. height: math.unit(25, "feet"),
  41486. name: "Front",
  41487. image: {
  41488. source: "./media/characters/titan-s-wulf/front.svg",
  41489. extra: 1560/1484,
  41490. bottom: 76/1636
  41491. }
  41492. },
  41493. },
  41494. [
  41495. {
  41496. name: "Smallest",
  41497. height: math.unit(25, "feet"),
  41498. default: true
  41499. },
  41500. {
  41501. name: "Normal",
  41502. height: math.unit(200, "feet")
  41503. },
  41504. {
  41505. name: "Macro",
  41506. height: math.unit(200000, "feet")
  41507. },
  41508. {
  41509. name: "Multiversal Original",
  41510. height: math.unit(10000, "multiverses")
  41511. },
  41512. ]
  41513. ))
  41514. characterMakers.push(() => makeCharacter(
  41515. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  41516. {
  41517. front: {
  41518. height: math.unit(8, "feet"),
  41519. weight: math.unit(553, "lb"),
  41520. name: "Front",
  41521. image: {
  41522. source: "./media/characters/tawendeh/front.svg",
  41523. extra: 2365/2268,
  41524. bottom: 83/2448
  41525. }
  41526. },
  41527. frontClothed: {
  41528. height: math.unit(8, "feet"),
  41529. weight: math.unit(553, "lb"),
  41530. name: "Front (Clothed)",
  41531. image: {
  41532. source: "./media/characters/tawendeh/front-clothed.svg",
  41533. extra: 2365/2268,
  41534. bottom: 83/2448
  41535. }
  41536. },
  41537. back: {
  41538. height: math.unit(8, "feet"),
  41539. weight: math.unit(553, "lb"),
  41540. name: "Back",
  41541. image: {
  41542. source: "./media/characters/tawendeh/back.svg",
  41543. extra: 2397/2294,
  41544. bottom: 42/2439
  41545. }
  41546. },
  41547. },
  41548. [
  41549. {
  41550. name: "Mortal Interaction",
  41551. height: math.unit(8, "feet"),
  41552. default: true
  41553. },
  41554. {
  41555. name: "Giant",
  41556. height: math.unit(80, "feet")
  41557. },
  41558. {
  41559. name: "Macro",
  41560. height: math.unit(800, "feet")
  41561. },
  41562. {
  41563. name: "Megamacro",
  41564. height: math.unit(8000, "feet")
  41565. },
  41566. {
  41567. name: "City-Crushing",
  41568. height: math.unit(24000, "feet")
  41569. },
  41570. {
  41571. name: "Mountain-Mashing",
  41572. height: math.unit(80000, "feet")
  41573. },
  41574. {
  41575. name: "Nation Nemesis",
  41576. height: math.unit(8e6, "feet")
  41577. },
  41578. {
  41579. name: "Continent Cracker",
  41580. height: math.unit(24e6, "feet")
  41581. },
  41582. {
  41583. name: "Earth-Eclipsing",
  41584. height: math.unit(2.4e8, "feet")
  41585. },
  41586. {
  41587. name: "Gas Giant Gulper",
  41588. height: math.unit(2.4e9, "feet")
  41589. },
  41590. {
  41591. name: "Sol-Swallowing",
  41592. height: math.unit(8e10, "feet")
  41593. },
  41594. {
  41595. name: "Galaxy Gulper",
  41596. height: math.unit(8, "galaxies")
  41597. },
  41598. {
  41599. name: "Cosmos Churner",
  41600. height: math.unit(8, "universes")
  41601. },
  41602. {
  41603. name: "Omnipotent Otter",
  41604. height: math.unit(80, "universes")
  41605. },
  41606. ]
  41607. ))
  41608. characterMakers.push(() => makeCharacter(
  41609. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  41610. {
  41611. front: {
  41612. height: math.unit(2.6, "meters"),
  41613. weight: math.unit(900, "kg"),
  41614. name: "Front",
  41615. image: {
  41616. source: "./media/characters/neesha/front.svg",
  41617. extra: 1803/1653,
  41618. bottom: 128/1931
  41619. }
  41620. },
  41621. },
  41622. [
  41623. {
  41624. name: "Normal",
  41625. height: math.unit(2.6, "meters"),
  41626. default: true
  41627. },
  41628. {
  41629. name: "Macro",
  41630. height: math.unit(50, "meters")
  41631. },
  41632. ]
  41633. ))
  41634. characterMakers.push(() => makeCharacter(
  41635. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  41636. {
  41637. front: {
  41638. height: math.unit(5, "feet"),
  41639. weight: math.unit(185, "lb"),
  41640. name: "Front",
  41641. image: {
  41642. source: "./media/characters/kyera/front.svg",
  41643. extra: 1875/1790,
  41644. bottom: 96/1971
  41645. }
  41646. },
  41647. },
  41648. [
  41649. {
  41650. name: "Normal",
  41651. height: math.unit(5, "feet"),
  41652. default: true
  41653. },
  41654. ]
  41655. ))
  41656. characterMakers.push(() => makeCharacter(
  41657. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  41658. {
  41659. front: {
  41660. height: math.unit(7 + 6/12, "feet"),
  41661. weight: math.unit(540, "lb"),
  41662. name: "Front",
  41663. image: {
  41664. source: "./media/characters/yuko/front.svg",
  41665. extra: 1282/1222,
  41666. bottom: 101/1383
  41667. }
  41668. },
  41669. frontClothed: {
  41670. height: math.unit(7 + 6/12, "feet"),
  41671. weight: math.unit(540, "lb"),
  41672. name: "Front (Clothed)",
  41673. image: {
  41674. source: "./media/characters/yuko/front-clothed.svg",
  41675. extra: 1282/1222,
  41676. bottom: 101/1383
  41677. }
  41678. },
  41679. },
  41680. [
  41681. {
  41682. name: "Normal",
  41683. height: math.unit(7 + 6/12, "feet"),
  41684. default: true
  41685. },
  41686. {
  41687. name: "Macro",
  41688. height: math.unit(26 + 9/12, "feet")
  41689. },
  41690. {
  41691. name: "Megamacro",
  41692. height: math.unit(300, "feet")
  41693. },
  41694. {
  41695. name: "Gigamacro",
  41696. height: math.unit(5000, "feet")
  41697. },
  41698. {
  41699. name: "Planetary",
  41700. height: math.unit(10000, "miles")
  41701. },
  41702. ]
  41703. ))
  41704. characterMakers.push(() => makeCharacter(
  41705. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  41706. {
  41707. front: {
  41708. height: math.unit(8 + 2/12, "feet"),
  41709. weight: math.unit(600, "lb"),
  41710. name: "Front",
  41711. image: {
  41712. source: "./media/characters/deam-nitrel/front.svg",
  41713. extra: 1308/1234,
  41714. bottom: 125/1433
  41715. }
  41716. },
  41717. },
  41718. [
  41719. {
  41720. name: "Normal",
  41721. height: math.unit(8 + 2/12, "feet"),
  41722. default: true
  41723. },
  41724. ]
  41725. ))
  41726. characterMakers.push(() => makeCharacter(
  41727. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  41728. {
  41729. front: {
  41730. height: math.unit(6.1, "feet"),
  41731. weight: math.unit(180, "lb"),
  41732. name: "Front",
  41733. image: {
  41734. source: "./media/characters/skyress/front.svg",
  41735. extra: 1045/915,
  41736. bottom: 28/1073
  41737. }
  41738. },
  41739. maw: {
  41740. height: math.unit(1, "feet"),
  41741. name: "Maw",
  41742. image: {
  41743. source: "./media/characters/skyress/maw.svg"
  41744. }
  41745. },
  41746. },
  41747. [
  41748. {
  41749. name: "Normal",
  41750. height: math.unit(6.1, "feet"),
  41751. default: true
  41752. },
  41753. {
  41754. name: "Macro",
  41755. height: math.unit(200, "feet")
  41756. },
  41757. ]
  41758. ))
  41759. characterMakers.push(() => makeCharacter(
  41760. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  41761. {
  41762. front: {
  41763. height: math.unit(4 + 2/12, "feet"),
  41764. weight: math.unit(40, "kg"),
  41765. name: "Front",
  41766. image: {
  41767. source: "./media/characters/amethyst-jones/front.svg",
  41768. extra: 1220/1150,
  41769. bottom: 101/1321
  41770. }
  41771. },
  41772. },
  41773. [
  41774. {
  41775. name: "Normal",
  41776. height: math.unit(4 + 2/12, "feet"),
  41777. default: true
  41778. },
  41779. ]
  41780. ))
  41781. characterMakers.push(() => makeCharacter(
  41782. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  41783. {
  41784. front: {
  41785. height: math.unit(1.7, "m"),
  41786. weight: math.unit(135, "lb"),
  41787. name: "Front",
  41788. image: {
  41789. source: "./media/characters/jade/front.svg",
  41790. extra: 1818/1767,
  41791. bottom: 32/1850
  41792. }
  41793. },
  41794. back: {
  41795. height: math.unit(1.7, "m"),
  41796. weight: math.unit(135, "lb"),
  41797. name: "Back",
  41798. image: {
  41799. source: "./media/characters/jade/back.svg",
  41800. extra: 1869/1809,
  41801. bottom: 35/1904
  41802. }
  41803. },
  41804. hand: {
  41805. height: math.unit(0.24, "m"),
  41806. name: "Hand",
  41807. image: {
  41808. source: "./media/characters/jade/hand.svg"
  41809. }
  41810. },
  41811. foot: {
  41812. height: math.unit(0.263, "m"),
  41813. name: "Foot",
  41814. image: {
  41815. source: "./media/characters/jade/foot.svg"
  41816. }
  41817. },
  41818. dick: {
  41819. height: math.unit(0.47, "m"),
  41820. name: "Dick",
  41821. image: {
  41822. source: "./media/characters/jade/dick.svg"
  41823. }
  41824. },
  41825. },
  41826. [
  41827. {
  41828. name: "Micro",
  41829. height: math.unit(22, "cm")
  41830. },
  41831. {
  41832. name: "Normal",
  41833. height: math.unit(1.7, "m"),
  41834. default: true
  41835. },
  41836. {
  41837. name: "Macro",
  41838. height: math.unit(152, "m")
  41839. },
  41840. ]
  41841. ))
  41842. characterMakers.push(() => makeCharacter(
  41843. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  41844. {
  41845. front: {
  41846. height: math.unit(100, "miles"),
  41847. weight: math.unit(20000, "tons"),
  41848. name: "Front",
  41849. image: {
  41850. source: "./media/characters/cookie/front.svg",
  41851. extra: 1125/1070,
  41852. bottom: 30/1155
  41853. }
  41854. },
  41855. },
  41856. [
  41857. {
  41858. name: "Big",
  41859. height: math.unit(50, "feet")
  41860. },
  41861. {
  41862. name: "Macro",
  41863. height: math.unit(100, "miles"),
  41864. default: true
  41865. },
  41866. {
  41867. name: "Megamacro",
  41868. height: math.unit(90000, "miles")
  41869. },
  41870. ]
  41871. ))
  41872. characterMakers.push(() => makeCharacter(
  41873. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  41874. {
  41875. front: {
  41876. height: math.unit(6, "feet"),
  41877. weight: math.unit(145, "lb"),
  41878. name: "Front",
  41879. image: {
  41880. source: "./media/characters/farzian/front.svg",
  41881. extra: 1902/1693,
  41882. bottom: 108/2010
  41883. }
  41884. },
  41885. },
  41886. [
  41887. {
  41888. name: "Macro",
  41889. height: math.unit(500, "feet"),
  41890. default: true
  41891. },
  41892. ]
  41893. ))
  41894. characterMakers.push(() => makeCharacter(
  41895. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  41896. {
  41897. front: {
  41898. height: math.unit(3 + 6/12, "feet"),
  41899. weight: math.unit(50, "lb"),
  41900. name: "Front",
  41901. image: {
  41902. source: "./media/characters/kimberly-tilson/front.svg",
  41903. extra: 1400/1322,
  41904. bottom: 36/1436
  41905. }
  41906. },
  41907. back: {
  41908. height: math.unit(3 + 6/12, "feet"),
  41909. weight: math.unit(50, "lb"),
  41910. name: "Back",
  41911. image: {
  41912. source: "./media/characters/kimberly-tilson/back.svg",
  41913. extra: 1370/1307,
  41914. bottom: 20/1390
  41915. }
  41916. },
  41917. },
  41918. [
  41919. {
  41920. name: "Normal",
  41921. height: math.unit(3 + 6/12, "feet"),
  41922. default: true
  41923. },
  41924. ]
  41925. ))
  41926. characterMakers.push(() => makeCharacter(
  41927. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  41928. {
  41929. front: {
  41930. height: math.unit(1148, "feet"),
  41931. weight: math.unit(34057, "lb"),
  41932. name: "Front",
  41933. image: {
  41934. source: "./media/characters/harthos/front.svg",
  41935. extra: 1391/1339,
  41936. bottom: 13/1404
  41937. }
  41938. },
  41939. },
  41940. [
  41941. {
  41942. name: "Macro",
  41943. height: math.unit(1148, "feet"),
  41944. default: true
  41945. },
  41946. ]
  41947. ))
  41948. characterMakers.push(() => makeCharacter(
  41949. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  41950. {
  41951. front: {
  41952. height: math.unit(15, "feet"),
  41953. name: "Front",
  41954. image: {
  41955. source: "./media/characters/hypatia/front.svg",
  41956. extra: 1653/1591,
  41957. bottom: 79/1732
  41958. }
  41959. },
  41960. },
  41961. [
  41962. {
  41963. name: "Normal",
  41964. height: math.unit(15, "feet")
  41965. },
  41966. {
  41967. name: "Small",
  41968. height: math.unit(300, "feet")
  41969. },
  41970. {
  41971. name: "Macro",
  41972. height: math.unit(2500, "feet"),
  41973. default: true
  41974. },
  41975. {
  41976. name: "Mega Macro",
  41977. height: math.unit(1500, "miles")
  41978. },
  41979. {
  41980. name: "Giga Macro",
  41981. height: math.unit(1.5e6, "miles")
  41982. },
  41983. ]
  41984. ))
  41985. characterMakers.push(() => makeCharacter(
  41986. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  41987. {
  41988. front: {
  41989. height: math.unit(6, "feet"),
  41990. weight: math.unit(200, "lb"),
  41991. name: "Front",
  41992. image: {
  41993. source: "./media/characters/wulver/front.svg",
  41994. extra: 1724/1632,
  41995. bottom: 130/1854
  41996. }
  41997. },
  41998. frontNsfw: {
  41999. height: math.unit(6, "feet"),
  42000. weight: math.unit(200, "lb"),
  42001. name: "Front (NSFW)",
  42002. image: {
  42003. source: "./media/characters/wulver/front-nsfw.svg",
  42004. extra: 1724/1632,
  42005. bottom: 130/1854
  42006. }
  42007. },
  42008. },
  42009. [
  42010. {
  42011. name: "Human-Sized",
  42012. height: math.unit(6, "feet")
  42013. },
  42014. {
  42015. name: "Normal",
  42016. height: math.unit(4, "meters"),
  42017. default: true
  42018. },
  42019. {
  42020. name: "Large",
  42021. height: math.unit(6, "m")
  42022. },
  42023. ]
  42024. ))
  42025. characterMakers.push(() => makeCharacter(
  42026. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  42027. {
  42028. front: {
  42029. height: math.unit(7, "feet"),
  42030. name: "Front",
  42031. image: {
  42032. source: "./media/characters/maru/front.svg",
  42033. extra: 1595/1570,
  42034. bottom: 0/1595
  42035. }
  42036. },
  42037. },
  42038. [
  42039. {
  42040. name: "Normal",
  42041. height: math.unit(7, "feet"),
  42042. default: true
  42043. },
  42044. {
  42045. name: "Macro",
  42046. height: math.unit(700, "feet")
  42047. },
  42048. {
  42049. name: "Mega Macro",
  42050. height: math.unit(25, "miles")
  42051. },
  42052. ]
  42053. ))
  42054. characterMakers.push(() => makeCharacter(
  42055. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  42056. {
  42057. front: {
  42058. height: math.unit(6, "feet"),
  42059. weight: math.unit(170, "lb"),
  42060. name: "Front",
  42061. image: {
  42062. source: "./media/characters/xenon/front.svg",
  42063. extra: 1376/1305,
  42064. bottom: 56/1432
  42065. }
  42066. },
  42067. back: {
  42068. height: math.unit(6, "feet"),
  42069. weight: math.unit(170, "lb"),
  42070. name: "Back",
  42071. image: {
  42072. source: "./media/characters/xenon/back.svg",
  42073. extra: 1328/1259,
  42074. bottom: 95/1423
  42075. }
  42076. },
  42077. maw: {
  42078. height: math.unit(0.52, "feet"),
  42079. name: "Maw",
  42080. image: {
  42081. source: "./media/characters/xenon/maw.svg"
  42082. }
  42083. },
  42084. handLeft: {
  42085. height: math.unit(0.82 * 169 / 153, "feet"),
  42086. name: "Hand (Left)",
  42087. image: {
  42088. source: "./media/characters/xenon/hand-left.svg"
  42089. }
  42090. },
  42091. handRight: {
  42092. height: math.unit(0.82, "feet"),
  42093. name: "Hand (Right)",
  42094. image: {
  42095. source: "./media/characters/xenon/hand-right.svg"
  42096. }
  42097. },
  42098. footLeft: {
  42099. height: math.unit(1.13, "feet"),
  42100. name: "Foot (Left)",
  42101. image: {
  42102. source: "./media/characters/xenon/foot-left.svg"
  42103. }
  42104. },
  42105. footRight: {
  42106. height: math.unit(1.13 * 194 / 196, "feet"),
  42107. name: "Foot (Right)",
  42108. image: {
  42109. source: "./media/characters/xenon/foot-right.svg"
  42110. }
  42111. },
  42112. },
  42113. [
  42114. {
  42115. name: "Micro",
  42116. height: math.unit(0.8, "inches")
  42117. },
  42118. {
  42119. name: "Normal",
  42120. height: math.unit(6, "feet")
  42121. },
  42122. {
  42123. name: "Macro",
  42124. height: math.unit(50, "feet"),
  42125. default: true
  42126. },
  42127. {
  42128. name: "Macro+",
  42129. height: math.unit(250, "feet")
  42130. },
  42131. {
  42132. name: "Megamacro",
  42133. height: math.unit(1500, "feet")
  42134. },
  42135. ]
  42136. ))
  42137. characterMakers.push(() => makeCharacter(
  42138. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  42139. {
  42140. front: {
  42141. height: math.unit(7 + 5/12, "feet"),
  42142. name: "Front",
  42143. image: {
  42144. source: "./media/characters/zane/front.svg",
  42145. extra: 1260/1203,
  42146. bottom: 94/1354
  42147. }
  42148. },
  42149. back: {
  42150. height: math.unit(5.05, "feet"),
  42151. name: "Back",
  42152. image: {
  42153. source: "./media/characters/zane/back.svg",
  42154. extra: 893/829,
  42155. bottom: 30/923
  42156. }
  42157. },
  42158. werewolf: {
  42159. height: math.unit(11, "feet"),
  42160. name: "Werewolf",
  42161. image: {
  42162. source: "./media/characters/zane/werewolf.svg",
  42163. extra: 1383/1323,
  42164. bottom: 89/1472
  42165. }
  42166. },
  42167. foot: {
  42168. height: math.unit(1.46, "feet"),
  42169. name: "Foot",
  42170. image: {
  42171. source: "./media/characters/zane/foot.svg"
  42172. }
  42173. },
  42174. footFront: {
  42175. height: math.unit(0.784, "feet"),
  42176. name: "Foot (Front)",
  42177. image: {
  42178. source: "./media/characters/zane/foot-front.svg"
  42179. }
  42180. },
  42181. dick: {
  42182. height: math.unit(1.95, "feet"),
  42183. name: "Dick",
  42184. image: {
  42185. source: "./media/characters/zane/dick.svg"
  42186. }
  42187. },
  42188. dickWerewolf: {
  42189. height: math.unit(3.77, "feet"),
  42190. name: "Dick (Werewolf)",
  42191. image: {
  42192. source: "./media/characters/zane/dick.svg"
  42193. }
  42194. },
  42195. },
  42196. [
  42197. {
  42198. name: "Normal",
  42199. height: math.unit(7 + 5/12, "feet"),
  42200. default: true
  42201. },
  42202. ]
  42203. ))
  42204. characterMakers.push(() => makeCharacter(
  42205. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  42206. {
  42207. front: {
  42208. height: math.unit(6 + 2/12, "feet"),
  42209. weight: math.unit(284, "lb"),
  42210. name: "Front",
  42211. image: {
  42212. source: "./media/characters/benni-desparque/front.svg",
  42213. extra: 1353/1126,
  42214. bottom: 69/1422
  42215. }
  42216. },
  42217. },
  42218. [
  42219. {
  42220. name: "Civilian",
  42221. height: math.unit(6 + 2/12, "feet")
  42222. },
  42223. {
  42224. name: "Normal",
  42225. height: math.unit(98, "feet"),
  42226. default: true
  42227. },
  42228. {
  42229. name: "Kaiju Fighter",
  42230. height: math.unit(268, "feet")
  42231. },
  42232. ]
  42233. ))
  42234. characterMakers.push(() => makeCharacter(
  42235. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  42236. {
  42237. front: {
  42238. height: math.unit(5, "feet"),
  42239. weight: math.unit(105, "lb"),
  42240. name: "Front",
  42241. image: {
  42242. source: "./media/characters/maxine/front.svg",
  42243. extra: 1386/1250,
  42244. bottom: 71/1457
  42245. }
  42246. },
  42247. },
  42248. [
  42249. {
  42250. name: "Normal",
  42251. height: math.unit(5, "feet"),
  42252. default: true
  42253. },
  42254. ]
  42255. ))
  42256. characterMakers.push(() => makeCharacter(
  42257. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  42258. {
  42259. front: {
  42260. height: math.unit(11 + 7/12, "feet"),
  42261. weight: math.unit(9576, "lb"),
  42262. name: "Front",
  42263. image: {
  42264. source: "./media/characters/scaly/front.svg",
  42265. extra: 888/867,
  42266. bottom: 36/924
  42267. }
  42268. },
  42269. },
  42270. [
  42271. {
  42272. name: "Normal",
  42273. height: math.unit(11 + 7/12, "feet"),
  42274. default: true
  42275. },
  42276. ]
  42277. ))
  42278. characterMakers.push(() => makeCharacter(
  42279. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  42280. {
  42281. front: {
  42282. height: math.unit(6 + 3/12, "feet"),
  42283. name: "Front",
  42284. image: {
  42285. source: "./media/characters/saelria/front.svg",
  42286. extra: 1243/1138,
  42287. bottom: 46/1289
  42288. }
  42289. },
  42290. },
  42291. [
  42292. {
  42293. name: "Micro",
  42294. height: math.unit(6, "inches"),
  42295. },
  42296. {
  42297. name: "Normal",
  42298. height: math.unit(6 + 3/12, "feet"),
  42299. default: true
  42300. },
  42301. {
  42302. name: "Macro",
  42303. height: math.unit(25, "feet")
  42304. },
  42305. ]
  42306. ))
  42307. characterMakers.push(() => makeCharacter(
  42308. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  42309. {
  42310. front: {
  42311. height: math.unit(80, "meters"),
  42312. weight: math.unit(7000, "tonnes"),
  42313. name: "Front",
  42314. image: {
  42315. source: "./media/characters/tef/front.svg",
  42316. extra: 2036/1991,
  42317. bottom: 54/2090
  42318. }
  42319. },
  42320. back: {
  42321. height: math.unit(80, "meters"),
  42322. weight: math.unit(7000, "tonnes"),
  42323. name: "Back",
  42324. image: {
  42325. source: "./media/characters/tef/back.svg",
  42326. extra: 2036/1991,
  42327. bottom: 54/2090
  42328. }
  42329. },
  42330. },
  42331. [
  42332. {
  42333. name: "Macro",
  42334. height: math.unit(80, "meters"),
  42335. default: true
  42336. },
  42337. ]
  42338. ))
  42339. characterMakers.push(() => makeCharacter(
  42340. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  42341. {
  42342. front: {
  42343. height: math.unit(13, "feet"),
  42344. weight: math.unit(6, "tons"),
  42345. name: "Front",
  42346. image: {
  42347. source: "./media/characters/rover/front.svg",
  42348. extra: 1233/1156,
  42349. bottom: 50/1283
  42350. }
  42351. },
  42352. back: {
  42353. height: math.unit(13, "feet"),
  42354. weight: math.unit(6, "tons"),
  42355. name: "Back",
  42356. image: {
  42357. source: "./media/characters/rover/back.svg",
  42358. extra: 1327/1258,
  42359. bottom: 39/1366
  42360. }
  42361. },
  42362. },
  42363. [
  42364. {
  42365. name: "Normal",
  42366. height: math.unit(13, "feet"),
  42367. default: true
  42368. },
  42369. {
  42370. name: "Macro",
  42371. height: math.unit(1300, "feet")
  42372. },
  42373. {
  42374. name: "Megamacro",
  42375. height: math.unit(1300, "miles")
  42376. },
  42377. {
  42378. name: "Gigamacro",
  42379. height: math.unit(1300000, "miles")
  42380. },
  42381. ]
  42382. ))
  42383. characterMakers.push(() => makeCharacter(
  42384. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  42385. {
  42386. front: {
  42387. height: math.unit(6, "feet"),
  42388. weight: math.unit(150, "lb"),
  42389. name: "Front",
  42390. image: {
  42391. source: "./media/characters/ariz/front.svg",
  42392. extra: 1401/1346,
  42393. bottom: 5/1406
  42394. }
  42395. },
  42396. },
  42397. [
  42398. {
  42399. name: "Normal",
  42400. height: math.unit(10, "feet"),
  42401. default: true
  42402. },
  42403. ]
  42404. ))
  42405. characterMakers.push(() => makeCharacter(
  42406. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  42407. {
  42408. front: {
  42409. height: math.unit(6, "feet"),
  42410. weight: math.unit(140, "lb"),
  42411. name: "Front",
  42412. image: {
  42413. source: "./media/characters/sigrun/front.svg",
  42414. extra: 1418/1359,
  42415. bottom: 27/1445
  42416. }
  42417. },
  42418. },
  42419. [
  42420. {
  42421. name: "Macro",
  42422. height: math.unit(35, "feet"),
  42423. default: true
  42424. },
  42425. ]
  42426. ))
  42427. characterMakers.push(() => makeCharacter(
  42428. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  42429. {
  42430. front: {
  42431. height: math.unit(6, "feet"),
  42432. weight: math.unit(150, "lb"),
  42433. name: "Front",
  42434. image: {
  42435. source: "./media/characters/numin/front.svg",
  42436. extra: 1433/1388,
  42437. bottom: 12/1445
  42438. }
  42439. },
  42440. },
  42441. [
  42442. {
  42443. name: "Macro",
  42444. height: math.unit(21.5, "km"),
  42445. default: true
  42446. },
  42447. ]
  42448. ))
  42449. characterMakers.push(() => makeCharacter(
  42450. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  42451. {
  42452. front: {
  42453. height: math.unit(6, "feet"),
  42454. weight: math.unit(463, "lb"),
  42455. name: "Front",
  42456. image: {
  42457. source: "./media/characters/melwa/front.svg",
  42458. extra: 1307/1248,
  42459. bottom: 93/1400
  42460. }
  42461. },
  42462. },
  42463. [
  42464. {
  42465. name: "Macro",
  42466. height: math.unit(50, "meters"),
  42467. default: true
  42468. },
  42469. ]
  42470. ))
  42471. characterMakers.push(() => makeCharacter(
  42472. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  42473. {
  42474. front: {
  42475. height: math.unit(325, "feet"),
  42476. name: "Front",
  42477. image: {
  42478. source: "./media/characters/zorkaiju/front.svg",
  42479. extra: 1955/1814,
  42480. bottom: 40/1995
  42481. }
  42482. },
  42483. frontExtended: {
  42484. height: math.unit(325, "feet"),
  42485. name: "Front (Extended)",
  42486. image: {
  42487. source: "./media/characters/zorkaiju/front-extended.svg",
  42488. extra: 1955/1814,
  42489. bottom: 40/1995
  42490. }
  42491. },
  42492. side: {
  42493. height: math.unit(325, "feet"),
  42494. name: "Side",
  42495. image: {
  42496. source: "./media/characters/zorkaiju/side.svg",
  42497. extra: 1495/1396,
  42498. bottom: 17/1512
  42499. }
  42500. },
  42501. sideExtended: {
  42502. height: math.unit(325, "feet"),
  42503. name: "Side (Extended)",
  42504. image: {
  42505. source: "./media/characters/zorkaiju/side-extended.svg",
  42506. extra: 1495/1396,
  42507. bottom: 17/1512
  42508. }
  42509. },
  42510. back: {
  42511. height: math.unit(325, "feet"),
  42512. name: "Back",
  42513. image: {
  42514. source: "./media/characters/zorkaiju/back.svg",
  42515. extra: 1959/1821,
  42516. bottom: 31/1990
  42517. }
  42518. },
  42519. backExtended: {
  42520. height: math.unit(325, "feet"),
  42521. name: "Back (Extended)",
  42522. image: {
  42523. source: "./media/characters/zorkaiju/back-extended.svg",
  42524. extra: 1959/1821,
  42525. bottom: 31/1990
  42526. }
  42527. },
  42528. hand: {
  42529. height: math.unit(58.4, "feet"),
  42530. name: "Hand",
  42531. image: {
  42532. source: "./media/characters/zorkaiju/hand.svg"
  42533. }
  42534. },
  42535. handExtended: {
  42536. height: math.unit(61.4, "feet"),
  42537. name: "Hand (Extended)",
  42538. image: {
  42539. source: "./media/characters/zorkaiju/hand-extended.svg"
  42540. }
  42541. },
  42542. foot: {
  42543. height: math.unit(95, "feet"),
  42544. name: "Foot",
  42545. image: {
  42546. source: "./media/characters/zorkaiju/foot.svg"
  42547. }
  42548. },
  42549. leftArm: {
  42550. height: math.unit(59, "feet"),
  42551. name: "Left Arm",
  42552. image: {
  42553. source: "./media/characters/zorkaiju/left-arm.svg"
  42554. }
  42555. },
  42556. rightArm: {
  42557. height: math.unit(59, "feet"),
  42558. name: "Right Arm",
  42559. image: {
  42560. source: "./media/characters/zorkaiju/right-arm.svg"
  42561. }
  42562. },
  42563. leftArmExtended: {
  42564. height: math.unit(59 * 1.033546, "feet"),
  42565. name: "Left Arm (Extended)",
  42566. image: {
  42567. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  42568. }
  42569. },
  42570. rightArmExtended: {
  42571. height: math.unit(59 * 1.0496, "feet"),
  42572. name: "Right Arm (Extended)",
  42573. image: {
  42574. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  42575. }
  42576. },
  42577. tail: {
  42578. height: math.unit(104, "feet"),
  42579. name: "Tail",
  42580. image: {
  42581. source: "./media/characters/zorkaiju/tail.svg"
  42582. }
  42583. },
  42584. tailExtended: {
  42585. height: math.unit(104, "feet"),
  42586. name: "Tail (Extended)",
  42587. image: {
  42588. source: "./media/characters/zorkaiju/tail-extended.svg"
  42589. }
  42590. },
  42591. tailBottom: {
  42592. height: math.unit(104, "feet"),
  42593. name: "Tail Bottom",
  42594. image: {
  42595. source: "./media/characters/zorkaiju/tail-bottom.svg"
  42596. }
  42597. },
  42598. crystal: {
  42599. height: math.unit(27.54, "feet"),
  42600. name: "Crystal",
  42601. image: {
  42602. source: "./media/characters/zorkaiju/crystal.svg"
  42603. }
  42604. },
  42605. },
  42606. [
  42607. {
  42608. name: "Kaiju",
  42609. height: math.unit(325, "feet"),
  42610. default: true
  42611. },
  42612. ]
  42613. ))
  42614. characterMakers.push(() => makeCharacter(
  42615. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  42616. {
  42617. front: {
  42618. height: math.unit(6 + 1/12, "feet"),
  42619. weight: math.unit(115, "lb"),
  42620. name: "Front",
  42621. image: {
  42622. source: "./media/characters/bailey-belfry/front.svg",
  42623. extra: 1240/1121,
  42624. bottom: 101/1341
  42625. }
  42626. },
  42627. },
  42628. [
  42629. {
  42630. name: "Normal",
  42631. height: math.unit(6 + 1/12, "feet"),
  42632. default: true
  42633. },
  42634. ]
  42635. ))
  42636. characterMakers.push(() => makeCharacter(
  42637. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  42638. {
  42639. side: {
  42640. height: math.unit(4, "meters"),
  42641. weight: math.unit(250, "kg"),
  42642. name: "Side",
  42643. image: {
  42644. source: "./media/characters/blacky/side.svg",
  42645. extra: 1027/919,
  42646. bottom: 43/1070
  42647. }
  42648. },
  42649. maw: {
  42650. height: math.unit(1, "meters"),
  42651. name: "Maw",
  42652. image: {
  42653. source: "./media/characters/blacky/maw.svg"
  42654. }
  42655. },
  42656. paw: {
  42657. height: math.unit(1, "meters"),
  42658. name: "Paw",
  42659. image: {
  42660. source: "./media/characters/blacky/paw.svg"
  42661. }
  42662. },
  42663. },
  42664. [
  42665. {
  42666. name: "Normal",
  42667. height: math.unit(4, "meters"),
  42668. default: true
  42669. },
  42670. ]
  42671. ))
  42672. characterMakers.push(() => makeCharacter(
  42673. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  42674. {
  42675. front: {
  42676. height: math.unit(170, "cm"),
  42677. weight: math.unit(66, "kg"),
  42678. name: "Front",
  42679. image: {
  42680. source: "./media/characters/thux-ei/front.svg",
  42681. extra: 1109/1011,
  42682. bottom: 8/1117
  42683. }
  42684. },
  42685. },
  42686. [
  42687. {
  42688. name: "Normal",
  42689. height: math.unit(170, "cm"),
  42690. default: true
  42691. },
  42692. ]
  42693. ))
  42694. characterMakers.push(() => makeCharacter(
  42695. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  42696. {
  42697. front: {
  42698. height: math.unit(5, "feet"),
  42699. weight: math.unit(120, "lb"),
  42700. name: "Front",
  42701. image: {
  42702. source: "./media/characters/roxanne-voltaire/front.svg",
  42703. extra: 1901/1779,
  42704. bottom: 53/1954
  42705. }
  42706. },
  42707. },
  42708. [
  42709. {
  42710. name: "Normal",
  42711. height: math.unit(5, "feet"),
  42712. default: true
  42713. },
  42714. {
  42715. name: "Giant",
  42716. height: math.unit(50, "feet")
  42717. },
  42718. {
  42719. name: "Titan",
  42720. height: math.unit(500, "feet")
  42721. },
  42722. {
  42723. name: "Macro",
  42724. height: math.unit(5000, "feet")
  42725. },
  42726. {
  42727. name: "Megamacro",
  42728. height: math.unit(50000, "feet")
  42729. },
  42730. {
  42731. name: "Gigamacro",
  42732. height: math.unit(500000, "feet")
  42733. },
  42734. {
  42735. name: "Teramacro",
  42736. height: math.unit(5e6, "feet")
  42737. },
  42738. ]
  42739. ))
  42740. characterMakers.push(() => makeCharacter(
  42741. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  42742. {
  42743. front: {
  42744. height: math.unit(6 + 2/12, "feet"),
  42745. name: "Front",
  42746. image: {
  42747. source: "./media/characters/squeaks/front.svg",
  42748. extra: 1823/1768,
  42749. bottom: 138/1961
  42750. }
  42751. },
  42752. },
  42753. [
  42754. {
  42755. name: "Micro",
  42756. height: math.unit(0.5, "inches")
  42757. },
  42758. {
  42759. name: "Normal",
  42760. height: math.unit(6 + 2/12, "feet"),
  42761. default: true
  42762. },
  42763. {
  42764. name: "Macro",
  42765. height: math.unit(600, "feet")
  42766. },
  42767. ]
  42768. ))
  42769. characterMakers.push(() => makeCharacter(
  42770. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  42771. {
  42772. front: {
  42773. height: math.unit(1.72, "meters"),
  42774. name: "Front",
  42775. image: {
  42776. source: "./media/characters/archinger/front.svg",
  42777. extra: 1861/1675,
  42778. bottom: 125/1986
  42779. }
  42780. },
  42781. back: {
  42782. height: math.unit(1.72, "meters"),
  42783. name: "Back",
  42784. image: {
  42785. source: "./media/characters/archinger/back.svg",
  42786. extra: 1844/1701,
  42787. bottom: 104/1948
  42788. }
  42789. },
  42790. cock: {
  42791. height: math.unit(0.59, "feet"),
  42792. name: "Cock",
  42793. image: {
  42794. source: "./media/characters/archinger/cock.svg"
  42795. }
  42796. },
  42797. },
  42798. [
  42799. {
  42800. name: "Normal",
  42801. height: math.unit(1.72, "meters"),
  42802. default: true
  42803. },
  42804. {
  42805. name: "Macro",
  42806. height: math.unit(84, "meters")
  42807. },
  42808. {
  42809. name: "Macro+",
  42810. height: math.unit(112, "meters")
  42811. },
  42812. {
  42813. name: "Macro++",
  42814. height: math.unit(960, "meters")
  42815. },
  42816. {
  42817. name: "Macro+++",
  42818. height: math.unit(4, "km")
  42819. },
  42820. {
  42821. name: "Macro++++",
  42822. height: math.unit(48, "km")
  42823. },
  42824. {
  42825. name: "Macro+++++",
  42826. height: math.unit(4500, "km")
  42827. },
  42828. ]
  42829. ))
  42830. characterMakers.push(() => makeCharacter(
  42831. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  42832. {
  42833. front: {
  42834. height: math.unit(5 + 5/12, "feet"),
  42835. name: "Front",
  42836. image: {
  42837. source: "./media/characters/alsnapz/front.svg",
  42838. extra: 1157/1065,
  42839. bottom: 42/1199
  42840. }
  42841. },
  42842. },
  42843. [
  42844. {
  42845. name: "Normal",
  42846. height: math.unit(5 + 5/12, "feet"),
  42847. default: true
  42848. },
  42849. ]
  42850. ))
  42851. characterMakers.push(() => makeCharacter(
  42852. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  42853. {
  42854. side: {
  42855. height: math.unit(3.2, "earths"),
  42856. name: "Side",
  42857. image: {
  42858. source: "./media/characters/mag/side.svg",
  42859. extra: 1331/1008,
  42860. bottom: 52/1383
  42861. }
  42862. },
  42863. wing: {
  42864. height: math.unit(1.94, "earths"),
  42865. name: "Wing",
  42866. image: {
  42867. source: "./media/characters/mag/wing.svg"
  42868. }
  42869. },
  42870. dick: {
  42871. height: math.unit(1.8, "earths"),
  42872. name: "Dick",
  42873. image: {
  42874. source: "./media/characters/mag/dick.svg"
  42875. }
  42876. },
  42877. ass: {
  42878. height: math.unit(1.33, "earths"),
  42879. name: "Ass",
  42880. image: {
  42881. source: "./media/characters/mag/ass.svg"
  42882. }
  42883. },
  42884. head: {
  42885. height: math.unit(1.1, "earths"),
  42886. name: "Head",
  42887. image: {
  42888. source: "./media/characters/mag/head.svg"
  42889. }
  42890. },
  42891. maw: {
  42892. height: math.unit(1.62, "earths"),
  42893. name: "Maw",
  42894. image: {
  42895. source: "./media/characters/mag/maw.svg"
  42896. }
  42897. },
  42898. },
  42899. [
  42900. {
  42901. name: "Small",
  42902. height: math.unit(162, "feet")
  42903. },
  42904. {
  42905. name: "Normal",
  42906. height: math.unit(3.2, "earths"),
  42907. default: true
  42908. },
  42909. ]
  42910. ))
  42911. characterMakers.push(() => makeCharacter(
  42912. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  42913. {
  42914. front: {
  42915. height: math.unit(512, "feet"),
  42916. weight: math.unit(63509, "tonnes"),
  42917. name: "Front",
  42918. image: {
  42919. source: "./media/characters/vorrel-harroc/front.svg",
  42920. extra: 1075/1063,
  42921. bottom: 62/1137
  42922. }
  42923. },
  42924. },
  42925. [
  42926. {
  42927. name: "Normal",
  42928. height: math.unit(10, "feet")
  42929. },
  42930. {
  42931. name: "Macro",
  42932. height: math.unit(512, "feet"),
  42933. default: true
  42934. },
  42935. {
  42936. name: "Megamacro",
  42937. height: math.unit(256, "miles")
  42938. },
  42939. {
  42940. name: "Gigamacro",
  42941. height: math.unit(4096, "miles")
  42942. },
  42943. ]
  42944. ))
  42945. characterMakers.push(() => makeCharacter(
  42946. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  42947. {
  42948. side: {
  42949. height: math.unit(50, "feet"),
  42950. name: "Side",
  42951. image: {
  42952. source: "./media/characters/froimar/side.svg",
  42953. extra: 855/638,
  42954. bottom: 99/954
  42955. }
  42956. },
  42957. },
  42958. [
  42959. {
  42960. name: "Macro",
  42961. height: math.unit(50, "feet"),
  42962. default: true
  42963. },
  42964. ]
  42965. ))
  42966. characterMakers.push(() => makeCharacter(
  42967. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  42968. {
  42969. front: {
  42970. height: math.unit(210, "miles"),
  42971. name: "Front",
  42972. image: {
  42973. source: "./media/characters/timothy/front.svg",
  42974. extra: 1007/943,
  42975. bottom: 62/1069
  42976. }
  42977. },
  42978. frontSkirt: {
  42979. height: math.unit(210, "miles"),
  42980. name: "Front (Skirt)",
  42981. image: {
  42982. source: "./media/characters/timothy/front-skirt.svg",
  42983. extra: 1007/943,
  42984. bottom: 62/1069
  42985. }
  42986. },
  42987. frontCoat: {
  42988. height: math.unit(210, "miles"),
  42989. name: "Front (Coat)",
  42990. image: {
  42991. source: "./media/characters/timothy/front-coat.svg",
  42992. extra: 1007/943,
  42993. bottom: 62/1069
  42994. }
  42995. },
  42996. },
  42997. [
  42998. {
  42999. name: "Macro",
  43000. height: math.unit(210, "miles"),
  43001. default: true
  43002. },
  43003. {
  43004. name: "Megamacro",
  43005. height: math.unit(210000, "miles")
  43006. },
  43007. ]
  43008. ))
  43009. characterMakers.push(() => makeCharacter(
  43010. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  43011. {
  43012. front: {
  43013. height: math.unit(188, "feet"),
  43014. name: "Front",
  43015. image: {
  43016. source: "./media/characters/pyotr/front.svg",
  43017. extra: 1912/1826,
  43018. bottom: 18/1930
  43019. }
  43020. },
  43021. },
  43022. [
  43023. {
  43024. name: "Macro",
  43025. height: math.unit(188, "feet"),
  43026. default: true
  43027. },
  43028. {
  43029. name: "Megamacro",
  43030. height: math.unit(8, "miles")
  43031. },
  43032. ]
  43033. ))
  43034. characterMakers.push(() => makeCharacter(
  43035. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  43036. {
  43037. side: {
  43038. height: math.unit(10, "feet"),
  43039. weight: math.unit(4500, "lb"),
  43040. name: "Side",
  43041. image: {
  43042. source: "./media/characters/ackart/side.svg",
  43043. extra: 1776/1668,
  43044. bottom: 116/1892
  43045. }
  43046. },
  43047. },
  43048. [
  43049. {
  43050. name: "Normal",
  43051. height: math.unit(10, "feet"),
  43052. default: true
  43053. },
  43054. ]
  43055. ))
  43056. characterMakers.push(() => makeCharacter(
  43057. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  43058. {
  43059. side: {
  43060. height: math.unit(21, "feet"),
  43061. name: "Side",
  43062. image: {
  43063. source: "./media/characters/nolow/side.svg",
  43064. extra: 1484/1434,
  43065. bottom: 85/1569
  43066. }
  43067. },
  43068. sideErect: {
  43069. height: math.unit(21, "feet"),
  43070. name: "Side-erect",
  43071. image: {
  43072. source: "./media/characters/nolow/side-erect.svg",
  43073. extra: 1484/1434,
  43074. bottom: 85/1569
  43075. }
  43076. },
  43077. },
  43078. [
  43079. {
  43080. name: "Regular",
  43081. height: math.unit(12, "feet")
  43082. },
  43083. {
  43084. name: "Big Chee",
  43085. height: math.unit(21, "feet"),
  43086. default: true
  43087. },
  43088. ]
  43089. ))
  43090. characterMakers.push(() => makeCharacter(
  43091. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  43092. {
  43093. front: {
  43094. height: math.unit(7, "feet"),
  43095. weight: math.unit(250, "lb"),
  43096. name: "Front",
  43097. image: {
  43098. source: "./media/characters/nines/front.svg",
  43099. extra: 1741/1607,
  43100. bottom: 41/1782
  43101. }
  43102. },
  43103. side: {
  43104. height: math.unit(7, "feet"),
  43105. weight: math.unit(250, "lb"),
  43106. name: "Side",
  43107. image: {
  43108. source: "./media/characters/nines/side.svg",
  43109. extra: 1854/1735,
  43110. bottom: 93/1947
  43111. }
  43112. },
  43113. back: {
  43114. height: math.unit(7, "feet"),
  43115. weight: math.unit(250, "lb"),
  43116. name: "Back",
  43117. image: {
  43118. source: "./media/characters/nines/back.svg",
  43119. extra: 1748/1615,
  43120. bottom: 20/1768
  43121. }
  43122. },
  43123. },
  43124. [
  43125. {
  43126. name: "Megamacro",
  43127. height: math.unit(99, "km"),
  43128. default: true
  43129. },
  43130. ]
  43131. ))
  43132. characterMakers.push(() => makeCharacter(
  43133. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  43134. {
  43135. front: {
  43136. height: math.unit(5 + 10/12, "feet"),
  43137. weight: math.unit(210, "lb"),
  43138. name: "Front",
  43139. image: {
  43140. source: "./media/characters/zenith/front.svg",
  43141. extra: 1531/1452,
  43142. bottom: 198/1729
  43143. }
  43144. },
  43145. back: {
  43146. height: math.unit(5 + 10/12, "feet"),
  43147. weight: math.unit(210, "lb"),
  43148. name: "Back",
  43149. image: {
  43150. source: "./media/characters/zenith/back.svg",
  43151. extra: 1571/1487,
  43152. bottom: 75/1646
  43153. }
  43154. },
  43155. },
  43156. [
  43157. {
  43158. name: "Normal",
  43159. height: math.unit(5 + 10/12, "feet"),
  43160. default: true
  43161. }
  43162. ]
  43163. ))
  43164. characterMakers.push(() => makeCharacter(
  43165. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  43166. {
  43167. front: {
  43168. height: math.unit(4, "feet"),
  43169. weight: math.unit(60, "lb"),
  43170. name: "Front",
  43171. image: {
  43172. source: "./media/characters/jasper/front.svg",
  43173. extra: 1450/1379,
  43174. bottom: 19/1469
  43175. }
  43176. },
  43177. },
  43178. [
  43179. {
  43180. name: "Normal",
  43181. height: math.unit(4, "feet"),
  43182. default: true
  43183. },
  43184. ]
  43185. ))
  43186. characterMakers.push(() => makeCharacter(
  43187. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  43188. {
  43189. front: {
  43190. height: math.unit(6 + 5/12, "feet"),
  43191. weight: math.unit(290, "lb"),
  43192. name: "Front",
  43193. image: {
  43194. source: "./media/characters/tiberius-thyben/front.svg",
  43195. extra: 757/739,
  43196. bottom: 39/796
  43197. }
  43198. },
  43199. },
  43200. [
  43201. {
  43202. name: "Micro",
  43203. height: math.unit(1.5, "inches")
  43204. },
  43205. {
  43206. name: "Normal",
  43207. height: math.unit(6 + 5/12, "feet"),
  43208. default: true
  43209. },
  43210. {
  43211. name: "Macro",
  43212. height: math.unit(300, "feet")
  43213. },
  43214. ]
  43215. ))
  43216. characterMakers.push(() => makeCharacter(
  43217. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  43218. {
  43219. front: {
  43220. height: math.unit(5 + 6/12, "feet"),
  43221. weight: math.unit(60, "kg"),
  43222. name: "Front",
  43223. image: {
  43224. source: "./media/characters/sabre/front.svg",
  43225. extra: 738/671,
  43226. bottom: 27/765
  43227. }
  43228. },
  43229. },
  43230. [
  43231. {
  43232. name: "Teeny",
  43233. height: math.unit(2, "inches")
  43234. },
  43235. {
  43236. name: "Smol",
  43237. height: math.unit(8, "inches")
  43238. },
  43239. {
  43240. name: "Normal",
  43241. height: math.unit(5 + 6/12, "feet"),
  43242. default: true
  43243. },
  43244. {
  43245. name: "Mini-Macro",
  43246. height: math.unit(15, "feet")
  43247. },
  43248. {
  43249. name: "Macro",
  43250. height: math.unit(50, "feet")
  43251. },
  43252. ]
  43253. ))
  43254. characterMakers.push(() => makeCharacter(
  43255. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  43256. {
  43257. front: {
  43258. height: math.unit(6 + 4/12, "feet"),
  43259. weight: math.unit(170, "lb"),
  43260. name: "Front",
  43261. image: {
  43262. source: "./media/characters/charlie/front.svg",
  43263. extra: 1348/1228,
  43264. bottom: 15/1363
  43265. }
  43266. },
  43267. },
  43268. [
  43269. {
  43270. name: "Macro",
  43271. height: math.unit(1700, "meters"),
  43272. default: true
  43273. },
  43274. {
  43275. name: "MegaMacro",
  43276. height: math.unit(20400, "meters")
  43277. },
  43278. ]
  43279. ))
  43280. characterMakers.push(() => makeCharacter(
  43281. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  43282. {
  43283. front: {
  43284. height: math.unit(6 + 3/12, "feet"),
  43285. weight: math.unit(185, "lb"),
  43286. name: "Front",
  43287. image: {
  43288. source: "./media/characters/susan-grant/front.svg",
  43289. extra: 1351/1327,
  43290. bottom: 26/1377
  43291. }
  43292. },
  43293. },
  43294. [
  43295. {
  43296. name: "Normal",
  43297. height: math.unit(6 + 3/12, "feet"),
  43298. default: true
  43299. },
  43300. {
  43301. name: "Macro",
  43302. height: math.unit(225, "feet")
  43303. },
  43304. {
  43305. name: "Macro+",
  43306. height: math.unit(900, "feet")
  43307. },
  43308. {
  43309. name: "MegaMacro",
  43310. height: math.unit(14400, "feet")
  43311. },
  43312. ]
  43313. ))
  43314. characterMakers.push(() => makeCharacter(
  43315. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  43316. {
  43317. front: {
  43318. height: math.unit(5 + 4/12, "feet"),
  43319. weight: math.unit(110, "lb"),
  43320. name: "Front",
  43321. image: {
  43322. source: "./media/characters/axel-isanov/front.svg",
  43323. extra: 1096/1065,
  43324. bottom: 13/1109
  43325. }
  43326. },
  43327. },
  43328. [
  43329. {
  43330. name: "Normal",
  43331. height: math.unit(5 + 4/12, "feet"),
  43332. default: true
  43333. },
  43334. ]
  43335. ))
  43336. characterMakers.push(() => makeCharacter(
  43337. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  43338. {
  43339. front: {
  43340. height: math.unit(9, "feet"),
  43341. weight: math.unit(467, "lb"),
  43342. name: "Front",
  43343. image: {
  43344. source: "./media/characters/necahual/front.svg",
  43345. extra: 920/873,
  43346. bottom: 26/946
  43347. }
  43348. },
  43349. back: {
  43350. height: math.unit(9, "feet"),
  43351. weight: math.unit(467, "lb"),
  43352. name: "Back",
  43353. image: {
  43354. source: "./media/characters/necahual/back.svg",
  43355. extra: 930/884,
  43356. bottom: 16/946
  43357. }
  43358. },
  43359. frontUnderwear: {
  43360. height: math.unit(9, "feet"),
  43361. weight: math.unit(467, "lb"),
  43362. name: "Front (Underwear)",
  43363. image: {
  43364. source: "./media/characters/necahual/front-underwear.svg",
  43365. extra: 920/873,
  43366. bottom: 26/946
  43367. }
  43368. },
  43369. frontDressed: {
  43370. height: math.unit(9, "feet"),
  43371. weight: math.unit(467, "lb"),
  43372. name: "Front (Dressed)",
  43373. image: {
  43374. source: "./media/characters/necahual/front-dressed.svg",
  43375. extra: 920/873,
  43376. bottom: 26/946
  43377. }
  43378. },
  43379. },
  43380. [
  43381. {
  43382. name: "Comprsesed",
  43383. height: math.unit(9, "feet")
  43384. },
  43385. {
  43386. name: "Natural",
  43387. height: math.unit(15, "feet"),
  43388. default: true
  43389. },
  43390. {
  43391. name: "Boosted",
  43392. height: math.unit(50, "feet")
  43393. },
  43394. {
  43395. name: "Boosted+",
  43396. height: math.unit(150, "feet")
  43397. },
  43398. {
  43399. name: "Max",
  43400. height: math.unit(500, "feet")
  43401. },
  43402. ]
  43403. ))
  43404. characterMakers.push(() => makeCharacter(
  43405. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  43406. {
  43407. front: {
  43408. height: math.unit(22 + 1/12, "feet"),
  43409. weight: math.unit(3200, "lb"),
  43410. name: "Front",
  43411. image: {
  43412. source: "./media/characters/theo-acacia/front.svg",
  43413. extra: 1796/1741,
  43414. bottom: 83/1879
  43415. }
  43416. },
  43417. frontUnderwear: {
  43418. height: math.unit(22 + 1/12, "feet"),
  43419. weight: math.unit(3200, "lb"),
  43420. name: "Front (Underwear)",
  43421. image: {
  43422. source: "./media/characters/theo-acacia/front-underwear.svg",
  43423. extra: 1796/1741,
  43424. bottom: 83/1879
  43425. }
  43426. },
  43427. frontNude: {
  43428. height: math.unit(22 + 1/12, "feet"),
  43429. weight: math.unit(3200, "lb"),
  43430. name: "Front (Nude)",
  43431. image: {
  43432. source: "./media/characters/theo-acacia/front-nude.svg",
  43433. extra: 1796/1741,
  43434. bottom: 83/1879
  43435. }
  43436. },
  43437. },
  43438. [
  43439. {
  43440. name: "Normal",
  43441. height: math.unit(22 + 1/12, "feet"),
  43442. default: true
  43443. },
  43444. ]
  43445. ))
  43446. characterMakers.push(() => makeCharacter(
  43447. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43448. {
  43449. front: {
  43450. height: math.unit(20, "feet"),
  43451. name: "Front",
  43452. image: {
  43453. source: "./media/characters/astra/front.svg",
  43454. extra: 1850/1714,
  43455. bottom: 106/1956
  43456. }
  43457. },
  43458. frontUndressed: {
  43459. height: math.unit(20, "feet"),
  43460. name: "Front (Undressed)",
  43461. image: {
  43462. source: "./media/characters/astra/front-undressed.svg",
  43463. extra: 1926/1749,
  43464. bottom: 0/1926
  43465. }
  43466. },
  43467. hand: {
  43468. height: math.unit(1.53, "feet"),
  43469. name: "Hand",
  43470. image: {
  43471. source: "./media/characters/astra/hand.svg"
  43472. }
  43473. },
  43474. paw: {
  43475. height: math.unit(1.53, "feet"),
  43476. name: "Paw",
  43477. image: {
  43478. source: "./media/characters/astra/paw.svg"
  43479. }
  43480. },
  43481. },
  43482. [
  43483. {
  43484. name: "Smallest",
  43485. height: math.unit(20, "feet")
  43486. },
  43487. {
  43488. name: "Normal",
  43489. height: math.unit(1e9, "miles"),
  43490. default: true
  43491. },
  43492. {
  43493. name: "Larger",
  43494. height: math.unit(5, "multiverses")
  43495. },
  43496. {
  43497. name: "Largest",
  43498. height: math.unit(1e9, "multiverses")
  43499. },
  43500. ]
  43501. ))
  43502. characterMakers.push(() => makeCharacter(
  43503. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43504. {
  43505. front: {
  43506. height: math.unit(8, "feet"),
  43507. name: "Front",
  43508. image: {
  43509. source: "./media/characters/breanna/front.svg",
  43510. extra: 1912/1632,
  43511. bottom: 33/1945
  43512. }
  43513. },
  43514. },
  43515. [
  43516. {
  43517. name: "Smallest",
  43518. height: math.unit(8, "feet")
  43519. },
  43520. {
  43521. name: "Normal",
  43522. height: math.unit(1, "mile"),
  43523. default: true
  43524. },
  43525. {
  43526. name: "Maximum",
  43527. height: math.unit(1500000000000, "lightyears")
  43528. },
  43529. ]
  43530. ))
  43531. characterMakers.push(() => makeCharacter(
  43532. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  43533. {
  43534. front: {
  43535. height: math.unit(5 + 11/12, "feet"),
  43536. weight: math.unit(155, "lb"),
  43537. name: "Front",
  43538. image: {
  43539. source: "./media/characters/cai/front.svg",
  43540. extra: 1823/1702,
  43541. bottom: 32/1855
  43542. }
  43543. },
  43544. back: {
  43545. height: math.unit(5 + 11/12, "feet"),
  43546. weight: math.unit(155, "lb"),
  43547. name: "Back",
  43548. image: {
  43549. source: "./media/characters/cai/back.svg",
  43550. extra: 1809/1708,
  43551. bottom: 31/1840
  43552. }
  43553. },
  43554. },
  43555. [
  43556. {
  43557. name: "Normal",
  43558. height: math.unit(5 + 11/12, "feet"),
  43559. default: true
  43560. },
  43561. {
  43562. name: "Big",
  43563. height: math.unit(15, "feet")
  43564. },
  43565. {
  43566. name: "Macro",
  43567. height: math.unit(200, "feet")
  43568. },
  43569. ]
  43570. ))
  43571. characterMakers.push(() => makeCharacter(
  43572. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  43573. {
  43574. front: {
  43575. height: math.unit(5 + 6/12, "feet"),
  43576. weight: math.unit(160, "lb"),
  43577. name: "Front",
  43578. image: {
  43579. source: "./media/characters/zanna-virtuedòttir/front.svg",
  43580. extra: 1227/1174,
  43581. bottom: 37/1264
  43582. }
  43583. },
  43584. },
  43585. [
  43586. {
  43587. name: "Macro",
  43588. height: math.unit(444, "meters"),
  43589. default: true
  43590. },
  43591. ]
  43592. ))
  43593. characterMakers.push(() => makeCharacter(
  43594. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  43595. {
  43596. front: {
  43597. height: math.unit(18 + 7/12, "feet"),
  43598. name: "Front",
  43599. image: {
  43600. source: "./media/characters/rex/front.svg",
  43601. extra: 1941/1807,
  43602. bottom: 66/2007
  43603. }
  43604. },
  43605. back: {
  43606. height: math.unit(18 + 7/12, "feet"),
  43607. name: "Back",
  43608. image: {
  43609. source: "./media/characters/rex/back.svg",
  43610. extra: 1937/1822,
  43611. bottom: 42/1979
  43612. }
  43613. },
  43614. boot: {
  43615. height: math.unit(3.45, "feet"),
  43616. name: "Boot",
  43617. image: {
  43618. source: "./media/characters/rex/boot.svg"
  43619. }
  43620. },
  43621. paw: {
  43622. height: math.unit(4.17, "feet"),
  43623. name: "Paw",
  43624. image: {
  43625. source: "./media/characters/rex/paw.svg"
  43626. }
  43627. },
  43628. head: {
  43629. height: math.unit(6.728, "feet"),
  43630. name: "Head",
  43631. image: {
  43632. source: "./media/characters/rex/head.svg"
  43633. }
  43634. },
  43635. },
  43636. [
  43637. {
  43638. name: "Nano",
  43639. height: math.unit(18 + 7/12, "feet")
  43640. },
  43641. {
  43642. name: "Micro",
  43643. height: math.unit(1.5, "megameters")
  43644. },
  43645. {
  43646. name: "Normal",
  43647. height: math.unit(440, "megameters"),
  43648. default: true
  43649. },
  43650. {
  43651. name: "Macro",
  43652. height: math.unit(2.5, "gigameters")
  43653. },
  43654. {
  43655. name: "Gigamacro",
  43656. height: math.unit(2, "galaxies")
  43657. },
  43658. ]
  43659. ))
  43660. characterMakers.push(() => makeCharacter(
  43661. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  43662. {
  43663. side: {
  43664. height: math.unit(32, "feet"),
  43665. weight: math.unit(250000, "lb"),
  43666. name: "Side",
  43667. image: {
  43668. source: "./media/characters/silverwing/side.svg",
  43669. extra: 1100/1019,
  43670. bottom: 204/1304
  43671. }
  43672. },
  43673. },
  43674. [
  43675. {
  43676. name: "Normal",
  43677. height: math.unit(32, "feet"),
  43678. default: true
  43679. },
  43680. ]
  43681. ))
  43682. characterMakers.push(() => makeCharacter(
  43683. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  43684. {
  43685. front: {
  43686. height: math.unit(6 + 6/12, "feet"),
  43687. weight: math.unit(350, "lb"),
  43688. name: "Front",
  43689. image: {
  43690. source: "./media/characters/tristan-hawthorne/front.svg",
  43691. extra: 1159/1124,
  43692. bottom: 37/1196
  43693. },
  43694. form: "labrador",
  43695. default: true
  43696. },
  43697. skunkFront: {
  43698. height: math.unit(4 + 6/12, "feet"),
  43699. weight: math.unit(120, "lb"),
  43700. name: "Front",
  43701. image: {
  43702. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  43703. extra: 1609/1551,
  43704. bottom: 169/1778
  43705. },
  43706. form: "skunk",
  43707. default: true
  43708. },
  43709. },
  43710. [
  43711. {
  43712. name: "Normal",
  43713. height: math.unit(6 + 6/12, "feet"),
  43714. form: "labrador",
  43715. default: true
  43716. },
  43717. {
  43718. name: "Normal",
  43719. height: math.unit(4 + 6/12, "feet"),
  43720. form: "skunk",
  43721. default: true
  43722. },
  43723. ],
  43724. {
  43725. "labrador": {
  43726. name: "Labrador",
  43727. default: true
  43728. },
  43729. "skunk": {
  43730. name: "Skunk"
  43731. }
  43732. }
  43733. ))
  43734. characterMakers.push(() => makeCharacter(
  43735. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  43736. {
  43737. front: {
  43738. height: math.unit(5 + 11/12, "feet"),
  43739. weight: math.unit(190, "lb"),
  43740. name: "Front",
  43741. image: {
  43742. source: "./media/characters/mizu/front.svg",
  43743. extra: 1988/1788,
  43744. bottom: 14/2002
  43745. }
  43746. },
  43747. },
  43748. [
  43749. {
  43750. name: "Normal",
  43751. height: math.unit(5 + 11/12, "feet"),
  43752. default: true
  43753. },
  43754. ]
  43755. ))
  43756. characterMakers.push(() => makeCharacter(
  43757. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  43758. {
  43759. front: {
  43760. height: math.unit(1.7, "feet"),
  43761. weight: math.unit(50, "lb"),
  43762. name: "Front",
  43763. image: {
  43764. source: "./media/characters/dechroma/front.svg",
  43765. extra: 1095/859,
  43766. bottom: 64/1159
  43767. }
  43768. },
  43769. },
  43770. [
  43771. {
  43772. name: "Normal",
  43773. height: math.unit(1.7, "feet"),
  43774. default: true
  43775. },
  43776. ]
  43777. ))
  43778. characterMakers.push(() => makeCharacter(
  43779. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  43780. {
  43781. side: {
  43782. height: math.unit(30, "feet"),
  43783. name: "Side",
  43784. image: {
  43785. source: "./media/characters/veluren-thanazel/side.svg",
  43786. extra: 1611/633,
  43787. bottom: 118/1729
  43788. }
  43789. },
  43790. front: {
  43791. height: math.unit(30, "feet"),
  43792. name: "Front",
  43793. image: {
  43794. source: "./media/characters/veluren-thanazel/front.svg",
  43795. extra: 1486/636,
  43796. bottom: 238/1724
  43797. }
  43798. },
  43799. head: {
  43800. height: math.unit(21.4, "feet"),
  43801. name: "Head",
  43802. image: {
  43803. source: "./media/characters/veluren-thanazel/head.svg"
  43804. }
  43805. },
  43806. genitals: {
  43807. height: math.unit(19.4, "feet"),
  43808. name: "Genitals",
  43809. image: {
  43810. source: "./media/characters/veluren-thanazel/genitals.svg"
  43811. }
  43812. },
  43813. },
  43814. [
  43815. {
  43816. name: "Social",
  43817. height: math.unit(6, "feet")
  43818. },
  43819. {
  43820. name: "Play",
  43821. height: math.unit(12, "feet")
  43822. },
  43823. {
  43824. name: "True",
  43825. height: math.unit(30, "feet"),
  43826. default: true
  43827. },
  43828. ]
  43829. ))
  43830. characterMakers.push(() => makeCharacter(
  43831. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  43832. {
  43833. front: {
  43834. height: math.unit(7 + 6/12, "feet"),
  43835. weight: math.unit(500, "kg"),
  43836. name: "Front",
  43837. image: {
  43838. source: "./media/characters/arcturas/front.svg",
  43839. extra: 1700/1500,
  43840. bottom: 145/1845
  43841. }
  43842. },
  43843. },
  43844. [
  43845. {
  43846. name: "Normal",
  43847. height: math.unit(7 + 6/12, "feet"),
  43848. default: true
  43849. },
  43850. ]
  43851. ))
  43852. characterMakers.push(() => makeCharacter(
  43853. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  43854. {
  43855. side: {
  43856. height: math.unit(6, "feet"),
  43857. weight: math.unit(2, "tons"),
  43858. name: "Side",
  43859. image: {
  43860. source: "./media/characters/vitaen/side.svg",
  43861. extra: 1157/617,
  43862. bottom: 122/1279
  43863. }
  43864. },
  43865. },
  43866. [
  43867. {
  43868. name: "Normal",
  43869. height: math.unit(6, "feet"),
  43870. default: true
  43871. },
  43872. ]
  43873. ))
  43874. characterMakers.push(() => makeCharacter(
  43875. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  43876. {
  43877. front: {
  43878. height: math.unit(19, "feet"),
  43879. name: "Front",
  43880. image: {
  43881. source: "./media/characters/fia-dreamweaver/front.svg",
  43882. extra: 1630/1504,
  43883. bottom: 25/1655
  43884. }
  43885. },
  43886. },
  43887. [
  43888. {
  43889. name: "Normal",
  43890. height: math.unit(19, "feet"),
  43891. default: true
  43892. },
  43893. ]
  43894. ))
  43895. characterMakers.push(() => makeCharacter(
  43896. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  43897. {
  43898. front: {
  43899. height: math.unit(5 + 4/12, "feet"),
  43900. name: "Front",
  43901. image: {
  43902. source: "./media/characters/artan/front.svg",
  43903. extra: 1618/1535,
  43904. bottom: 46/1664
  43905. }
  43906. },
  43907. back: {
  43908. height: math.unit(5 + 4/12, "feet"),
  43909. name: "Back",
  43910. image: {
  43911. source: "./media/characters/artan/back.svg",
  43912. extra: 1618/1543,
  43913. bottom: 31/1649
  43914. }
  43915. },
  43916. },
  43917. [
  43918. {
  43919. name: "Normal",
  43920. height: math.unit(5 + 4/12, "feet"),
  43921. default: true
  43922. },
  43923. ]
  43924. ))
  43925. characterMakers.push(() => makeCharacter(
  43926. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  43927. {
  43928. side: {
  43929. height: math.unit(182, "cm"),
  43930. weight: math.unit(1000, "lb"),
  43931. name: "Side",
  43932. image: {
  43933. source: "./media/characters/silver-dragon/side.svg",
  43934. extra: 710/287,
  43935. bottom: 88/798
  43936. }
  43937. },
  43938. },
  43939. [
  43940. {
  43941. name: "Normal",
  43942. height: math.unit(182, "cm"),
  43943. default: true
  43944. },
  43945. ]
  43946. ))
  43947. characterMakers.push(() => makeCharacter(
  43948. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  43949. {
  43950. side: {
  43951. height: math.unit(6 + 6/12, "feet"),
  43952. weight: math.unit(1.5, "tons"),
  43953. name: "Side",
  43954. image: {
  43955. source: "./media/characters/zephyr/side.svg",
  43956. extra: 1433/586,
  43957. bottom: 109/1542
  43958. }
  43959. },
  43960. },
  43961. [
  43962. {
  43963. name: "Normal",
  43964. height: math.unit(6 + 6/12, "feet"),
  43965. default: true
  43966. },
  43967. ]
  43968. ))
  43969. characterMakers.push(() => makeCharacter(
  43970. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  43971. {
  43972. side: {
  43973. height: math.unit(1, "feet"),
  43974. name: "Side",
  43975. image: {
  43976. source: "./media/characters/vixye/side.svg",
  43977. extra: 632/541,
  43978. bottom: 0/632
  43979. }
  43980. },
  43981. },
  43982. [
  43983. {
  43984. name: "Normal",
  43985. height: math.unit(1, "feet"),
  43986. default: true
  43987. },
  43988. {
  43989. name: "True",
  43990. height: math.unit(1e15, "multiverses")
  43991. },
  43992. ]
  43993. ))
  43994. characterMakers.push(() => makeCharacter(
  43995. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  43996. {
  43997. front: {
  43998. height: math.unit(8 + 2/12, "feet"),
  43999. weight: math.unit(650, "lb"),
  44000. name: "Front",
  44001. image: {
  44002. source: "./media/characters/darla-mac-lochlainn/front.svg",
  44003. extra: 1174/1137,
  44004. bottom: 82/1256
  44005. }
  44006. },
  44007. back: {
  44008. height: math.unit(8 + 2/12, "feet"),
  44009. weight: math.unit(650, "lb"),
  44010. name: "Back",
  44011. image: {
  44012. source: "./media/characters/darla-mac-lochlainn/back.svg",
  44013. extra: 1204/1157,
  44014. bottom: 46/1250
  44015. }
  44016. },
  44017. },
  44018. [
  44019. {
  44020. name: "Wildform",
  44021. height: math.unit(8 + 2/12, "feet"),
  44022. default: true
  44023. },
  44024. ]
  44025. ))
  44026. characterMakers.push(() => makeCharacter(
  44027. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  44028. {
  44029. front: {
  44030. height: math.unit(18, "feet"),
  44031. name: "Front",
  44032. image: {
  44033. source: "./media/characters/cyphin/front.svg",
  44034. extra: 970/886,
  44035. bottom: 42/1012
  44036. }
  44037. },
  44038. back: {
  44039. height: math.unit(18, "feet"),
  44040. name: "Back",
  44041. image: {
  44042. source: "./media/characters/cyphin/back.svg",
  44043. extra: 1009/894,
  44044. bottom: 24/1033
  44045. }
  44046. },
  44047. head: {
  44048. height: math.unit(5.05, "feet"),
  44049. name: "Head",
  44050. image: {
  44051. source: "./media/characters/cyphin/head.svg"
  44052. }
  44053. },
  44054. tailbud: {
  44055. height: math.unit(5, "feet"),
  44056. name: "Tailbud",
  44057. image: {
  44058. source: "./media/characters/cyphin/tailbud.svg"
  44059. }
  44060. },
  44061. },
  44062. [
  44063. ]
  44064. ))
  44065. characterMakers.push(() => makeCharacter(
  44066. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  44067. {
  44068. side: {
  44069. height: math.unit(10, "feet"),
  44070. weight: math.unit(6, "tons"),
  44071. name: "Side",
  44072. image: {
  44073. source: "./media/characters/raijin/side.svg",
  44074. extra: 1529/613,
  44075. bottom: 337/1866
  44076. }
  44077. },
  44078. },
  44079. [
  44080. {
  44081. name: "Normal",
  44082. height: math.unit(10, "feet"),
  44083. default: true
  44084. },
  44085. ]
  44086. ))
  44087. characterMakers.push(() => makeCharacter(
  44088. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  44089. {
  44090. side: {
  44091. height: math.unit(9, "feet"),
  44092. name: "Side",
  44093. image: {
  44094. source: "./media/characters/nilghais/side.svg",
  44095. extra: 1047/744,
  44096. bottom: 91/1138
  44097. }
  44098. },
  44099. head: {
  44100. height: math.unit(3.14, "feet"),
  44101. name: "Head",
  44102. image: {
  44103. source: "./media/characters/nilghais/head.svg"
  44104. }
  44105. },
  44106. mouth: {
  44107. height: math.unit(4.6, "feet"),
  44108. name: "Mouth",
  44109. image: {
  44110. source: "./media/characters/nilghais/mouth.svg"
  44111. }
  44112. },
  44113. wings: {
  44114. height: math.unit(24, "feet"),
  44115. name: "Wings",
  44116. image: {
  44117. source: "./media/characters/nilghais/wings.svg"
  44118. }
  44119. },
  44120. ass: {
  44121. height: math.unit(6.12, "feet"),
  44122. name: "Ass",
  44123. image: {
  44124. source: "./media/characters/nilghais/ass.svg"
  44125. }
  44126. },
  44127. },
  44128. [
  44129. {
  44130. name: "Normal",
  44131. height: math.unit(9, "feet"),
  44132. default: true
  44133. },
  44134. ]
  44135. ))
  44136. characterMakers.push(() => makeCharacter(
  44137. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  44138. {
  44139. regular: {
  44140. height: math.unit(16 + 2/12, "feet"),
  44141. weight: math.unit(2300, "lb"),
  44142. name: "Regular",
  44143. image: {
  44144. source: "./media/characters/zolgar/regular.svg",
  44145. extra: 1246/1004,
  44146. bottom: 124/1370
  44147. }
  44148. },
  44149. boxers: {
  44150. height: math.unit(16 + 2/12, "feet"),
  44151. weight: math.unit(2300, "lb"),
  44152. name: "Boxers",
  44153. image: {
  44154. source: "./media/characters/zolgar/boxers.svg",
  44155. extra: 1246/1004,
  44156. bottom: 124/1370
  44157. }
  44158. },
  44159. armored: {
  44160. height: math.unit(16 + 2/12, "feet"),
  44161. weight: math.unit(2300, "lb"),
  44162. name: "Armored",
  44163. image: {
  44164. source: "./media/characters/zolgar/armored.svg",
  44165. extra: 1246/1004,
  44166. bottom: 124/1370
  44167. }
  44168. },
  44169. goth: {
  44170. height: math.unit(16 + 2/12, "feet"),
  44171. weight: math.unit(2300, "lb"),
  44172. name: "Goth",
  44173. image: {
  44174. source: "./media/characters/zolgar/goth.svg",
  44175. extra: 1246/1004,
  44176. bottom: 124/1370
  44177. }
  44178. },
  44179. },
  44180. [
  44181. {
  44182. name: "Shrunken Down",
  44183. height: math.unit(9 + 2/12, "feet")
  44184. },
  44185. {
  44186. name: "Normal",
  44187. height: math.unit(16 + 2/12, "feet"),
  44188. default: true
  44189. },
  44190. ]
  44191. ))
  44192. characterMakers.push(() => makeCharacter(
  44193. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  44194. {
  44195. front: {
  44196. height: math.unit(6, "feet"),
  44197. weight: math.unit(168, "lb"),
  44198. name: "Front",
  44199. image: {
  44200. source: "./media/characters/luca/front.svg",
  44201. extra: 841/667,
  44202. bottom: 102/943
  44203. }
  44204. },
  44205. },
  44206. [
  44207. {
  44208. name: "Normal",
  44209. height: math.unit(6, "feet"),
  44210. default: true
  44211. },
  44212. ]
  44213. ))
  44214. characterMakers.push(() => makeCharacter(
  44215. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  44216. {
  44217. side: {
  44218. height: math.unit(7 + 3/12, "feet"),
  44219. weight: math.unit(312, "lb"),
  44220. name: "Side",
  44221. image: {
  44222. source: "./media/characters/zezo/side.svg",
  44223. extra: 1192/1067,
  44224. bottom: 63/1255
  44225. }
  44226. },
  44227. },
  44228. [
  44229. {
  44230. name: "Normal",
  44231. height: math.unit(7 + 3/12, "feet"),
  44232. default: true
  44233. },
  44234. ]
  44235. ))
  44236. characterMakers.push(() => makeCharacter(
  44237. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  44238. {
  44239. front: {
  44240. height: math.unit(5 + 5/12, "feet"),
  44241. weight: math.unit(170, "lb"),
  44242. name: "Front",
  44243. image: {
  44244. source: "./media/characters/mayso/front.svg",
  44245. extra: 1215/1108,
  44246. bottom: 16/1231
  44247. }
  44248. },
  44249. },
  44250. [
  44251. {
  44252. name: "Normal",
  44253. height: math.unit(5 + 5/12, "feet"),
  44254. default: true
  44255. },
  44256. ]
  44257. ))
  44258. characterMakers.push(() => makeCharacter(
  44259. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  44260. {
  44261. front: {
  44262. height: math.unit(4 + 3/12, "feet"),
  44263. weight: math.unit(80, "lb"),
  44264. name: "Front",
  44265. image: {
  44266. source: "./media/characters/hess/front.svg",
  44267. extra: 1200/1123,
  44268. bottom: 16/1216
  44269. }
  44270. },
  44271. },
  44272. [
  44273. {
  44274. name: "Normal",
  44275. height: math.unit(4 + 3/12, "feet"),
  44276. default: true
  44277. },
  44278. ]
  44279. ))
  44280. characterMakers.push(() => makeCharacter(
  44281. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  44282. {
  44283. front: {
  44284. height: math.unit(1.9, "meters"),
  44285. name: "Front",
  44286. image: {
  44287. source: "./media/characters/ashgar/front.svg",
  44288. extra: 1177/1146,
  44289. bottom: 99/1276
  44290. }
  44291. },
  44292. back: {
  44293. height: math.unit(1.9, "meters"),
  44294. name: "Back",
  44295. image: {
  44296. source: "./media/characters/ashgar/back.svg",
  44297. extra: 1201/1183,
  44298. bottom: 53/1254
  44299. }
  44300. },
  44301. feral: {
  44302. height: math.unit(1.4, "meters"),
  44303. name: "Feral",
  44304. image: {
  44305. source: "./media/characters/ashgar/feral.svg",
  44306. extra: 370/345,
  44307. bottom: 45/415
  44308. }
  44309. },
  44310. },
  44311. [
  44312. {
  44313. name: "Normal",
  44314. height: math.unit(1.9, "meters"),
  44315. default: true
  44316. },
  44317. ]
  44318. ))
  44319. characterMakers.push(() => makeCharacter(
  44320. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  44321. {
  44322. regular: {
  44323. height: math.unit(6, "feet"),
  44324. weight: math.unit(220, "lb"),
  44325. name: "Regular",
  44326. image: {
  44327. source: "./media/characters/phillip/regular.svg",
  44328. extra: 1373/1277,
  44329. bottom: 75/1448
  44330. }
  44331. },
  44332. dressed: {
  44333. height: math.unit(6, "feet"),
  44334. weight: math.unit(220, "lb"),
  44335. name: "Dressed",
  44336. image: {
  44337. source: "./media/characters/phillip/dressed.svg",
  44338. extra: 1373/1277,
  44339. bottom: 75/1448
  44340. }
  44341. },
  44342. paw: {
  44343. height: math.unit(1.44, "feet"),
  44344. name: "Paw",
  44345. image: {
  44346. source: "./media/characters/phillip/paw.svg"
  44347. }
  44348. },
  44349. },
  44350. [
  44351. {
  44352. name: "Normal",
  44353. height: math.unit(6, "feet"),
  44354. default: true
  44355. },
  44356. ]
  44357. ))
  44358. characterMakers.push(() => makeCharacter(
  44359. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  44360. {
  44361. side: {
  44362. height: math.unit(42, "feet"),
  44363. name: "Side",
  44364. image: {
  44365. source: "./media/characters/uvula/side.svg",
  44366. extra: 683/586,
  44367. bottom: 60/743
  44368. }
  44369. },
  44370. front: {
  44371. height: math.unit(42, "feet"),
  44372. name: "Front",
  44373. image: {
  44374. source: "./media/characters/uvula/front.svg",
  44375. extra: 705/613,
  44376. bottom: 54/759
  44377. }
  44378. },
  44379. maw: {
  44380. height: math.unit(23.5, "feet"),
  44381. name: "Maw",
  44382. image: {
  44383. source: "./media/characters/uvula/maw.svg"
  44384. }
  44385. },
  44386. },
  44387. [
  44388. {
  44389. name: "Original Size",
  44390. height: math.unit(14, "inches")
  44391. },
  44392. {
  44393. name: "Human Size",
  44394. height: math.unit(6, "feet")
  44395. },
  44396. {
  44397. name: "Big",
  44398. height: math.unit(42, "feet"),
  44399. default: true
  44400. },
  44401. {
  44402. name: "Bigger",
  44403. height: math.unit(100, "feet")
  44404. },
  44405. ]
  44406. ))
  44407. characterMakers.push(() => makeCharacter(
  44408. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  44409. {
  44410. front: {
  44411. height: math.unit(5 + 11/12, "feet"),
  44412. name: "Front",
  44413. image: {
  44414. source: "./media/characters/lannah/front.svg",
  44415. extra: 1208/1113,
  44416. bottom: 97/1305
  44417. }
  44418. },
  44419. },
  44420. [
  44421. {
  44422. name: "Normal",
  44423. height: math.unit(5 + 11/12, "feet"),
  44424. default: true
  44425. },
  44426. ]
  44427. ))
  44428. characterMakers.push(() => makeCharacter(
  44429. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  44430. {
  44431. front: {
  44432. height: math.unit(6 + 3/12, "feet"),
  44433. weight: math.unit(3.5, "tons"),
  44434. name: "Front",
  44435. image: {
  44436. source: "./media/characters/emberflame/front.svg",
  44437. extra: 1198/672,
  44438. bottom: 82/1280
  44439. }
  44440. },
  44441. side: {
  44442. height: math.unit(6 + 3/12, "feet"),
  44443. weight: math.unit(3.5, "tons"),
  44444. name: "Side",
  44445. image: {
  44446. source: "./media/characters/emberflame/side.svg",
  44447. extra: 938/527,
  44448. bottom: 56/994
  44449. }
  44450. },
  44451. },
  44452. [
  44453. {
  44454. name: "Normal",
  44455. height: math.unit(6 + 3/12, "feet"),
  44456. default: true
  44457. },
  44458. ]
  44459. ))
  44460. characterMakers.push(() => makeCharacter(
  44461. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  44462. {
  44463. side: {
  44464. height: math.unit(17.5, "feet"),
  44465. weight: math.unit(35, "tons"),
  44466. name: "Side",
  44467. image: {
  44468. source: "./media/characters/sophie-ambrose/side.svg",
  44469. extra: 1573/1242,
  44470. bottom: 71/1644
  44471. }
  44472. },
  44473. maw: {
  44474. height: math.unit(7.4, "feet"),
  44475. name: "Maw",
  44476. image: {
  44477. source: "./media/characters/sophie-ambrose/maw.svg"
  44478. }
  44479. },
  44480. },
  44481. [
  44482. {
  44483. name: "Normal",
  44484. height: math.unit(17.5, "feet"),
  44485. default: true
  44486. },
  44487. ]
  44488. ))
  44489. characterMakers.push(() => makeCharacter(
  44490. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  44491. {
  44492. front: {
  44493. height: math.unit(280, "feet"),
  44494. weight: math.unit(550, "tons"),
  44495. name: "Front",
  44496. image: {
  44497. source: "./media/characters/king-mugi/front.svg",
  44498. extra: 1102/947,
  44499. bottom: 104/1206
  44500. }
  44501. },
  44502. },
  44503. [
  44504. {
  44505. name: "King Mugi",
  44506. height: math.unit(280, "feet"),
  44507. default: true
  44508. },
  44509. ]
  44510. ))
  44511. characterMakers.push(() => makeCharacter(
  44512. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  44513. {
  44514. front: {
  44515. height: math.unit(64, "meters"),
  44516. name: "Front",
  44517. image: {
  44518. source: "./media/characters/nova-fox/front.svg",
  44519. extra: 1310/1246,
  44520. bottom: 65/1375
  44521. }
  44522. },
  44523. },
  44524. [
  44525. {
  44526. name: "Macro",
  44527. height: math.unit(64, "meters"),
  44528. default: true
  44529. },
  44530. ]
  44531. ))
  44532. characterMakers.push(() => makeCharacter(
  44533. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  44534. {
  44535. front: {
  44536. height: math.unit(6 + 3/12, "feet"),
  44537. weight: math.unit(170, "lb"),
  44538. name: "Front",
  44539. image: {
  44540. source: "./media/characters/sam-bat/front.svg",
  44541. extra: 1601/1411,
  44542. bottom: 125/1726
  44543. }
  44544. },
  44545. back: {
  44546. height: math.unit(6 + 3/12, "feet"),
  44547. weight: math.unit(170, "lb"),
  44548. name: "Back",
  44549. image: {
  44550. source: "./media/characters/sam-bat/back.svg",
  44551. extra: 1577/1405,
  44552. bottom: 58/1635
  44553. }
  44554. },
  44555. },
  44556. [
  44557. {
  44558. name: "Normal",
  44559. height: math.unit(6 + 3/12, "feet"),
  44560. default: true
  44561. },
  44562. ]
  44563. ))
  44564. characterMakers.push(() => makeCharacter(
  44565. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  44566. {
  44567. front: {
  44568. height: math.unit(59, "feet"),
  44569. weight: math.unit(40000, "lb"),
  44570. name: "Front",
  44571. image: {
  44572. source: "./media/characters/inari/front.svg",
  44573. extra: 1884/1350,
  44574. bottom: 95/1979
  44575. }
  44576. },
  44577. },
  44578. [
  44579. {
  44580. name: "Gigantamax",
  44581. height: math.unit(59, "feet"),
  44582. default: true
  44583. },
  44584. ]
  44585. ))
  44586. characterMakers.push(() => makeCharacter(
  44587. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  44588. {
  44589. front: {
  44590. height: math.unit(5 + 8/12, "feet"),
  44591. name: "Front",
  44592. image: {
  44593. source: "./media/characters/elizabeth/front.svg",
  44594. extra: 1395/1298,
  44595. bottom: 54/1449
  44596. }
  44597. },
  44598. mouth: {
  44599. height: math.unit(1.97, "feet"),
  44600. name: "Mouth",
  44601. image: {
  44602. source: "./media/characters/elizabeth/mouth.svg"
  44603. }
  44604. },
  44605. foot: {
  44606. height: math.unit(1.17, "feet"),
  44607. name: "Foot",
  44608. image: {
  44609. source: "./media/characters/elizabeth/foot.svg"
  44610. }
  44611. },
  44612. },
  44613. [
  44614. {
  44615. name: "Normal",
  44616. height: math.unit(5 + 8/12, "feet"),
  44617. default: true
  44618. },
  44619. {
  44620. name: "Minimacro",
  44621. height: math.unit(18, "feet")
  44622. },
  44623. {
  44624. name: "Macro",
  44625. height: math.unit(180, "feet")
  44626. },
  44627. ]
  44628. ))
  44629. characterMakers.push(() => makeCharacter(
  44630. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  44631. {
  44632. front: {
  44633. height: math.unit(5 + 2/12, "feet"),
  44634. name: "Front",
  44635. image: {
  44636. source: "./media/characters/october-gossamer/front.svg",
  44637. extra: 505/454,
  44638. bottom: 7/512
  44639. }
  44640. },
  44641. back: {
  44642. height: math.unit(5 + 2/12, "feet"),
  44643. name: "Back",
  44644. image: {
  44645. source: "./media/characters/october-gossamer/back.svg",
  44646. extra: 501/454,
  44647. bottom: 11/512
  44648. }
  44649. },
  44650. },
  44651. [
  44652. {
  44653. name: "Normal",
  44654. height: math.unit(5 + 2/12, "feet"),
  44655. default: true
  44656. },
  44657. ]
  44658. ))
  44659. characterMakers.push(() => makeCharacter(
  44660. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  44661. {
  44662. front: {
  44663. height: math.unit(5, "feet"),
  44664. name: "Front",
  44665. image: {
  44666. source: "./media/characters/epiglottis/front.svg",
  44667. extra: 923/849,
  44668. bottom: 17/940
  44669. }
  44670. },
  44671. },
  44672. [
  44673. {
  44674. name: "Original Size",
  44675. height: math.unit(10, "inches")
  44676. },
  44677. {
  44678. name: "Human Size",
  44679. height: math.unit(5, "feet"),
  44680. default: true
  44681. },
  44682. {
  44683. name: "Big",
  44684. height: math.unit(25, "feet")
  44685. },
  44686. {
  44687. name: "Bigger",
  44688. height: math.unit(50, "feet")
  44689. },
  44690. {
  44691. name: "oh lawd",
  44692. height: math.unit(75, "feet")
  44693. },
  44694. ]
  44695. ))
  44696. characterMakers.push(() => makeCharacter(
  44697. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  44698. {
  44699. front: {
  44700. height: math.unit(2 + 4/12, "feet"),
  44701. weight: math.unit(60, "lb"),
  44702. name: "Front",
  44703. image: {
  44704. source: "./media/characters/lerm/front.svg",
  44705. extra: 796/790,
  44706. bottom: 79/875
  44707. }
  44708. },
  44709. },
  44710. [
  44711. {
  44712. name: "Normal",
  44713. height: math.unit(2 + 4/12, "feet"),
  44714. default: true
  44715. },
  44716. ]
  44717. ))
  44718. characterMakers.push(() => makeCharacter(
  44719. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  44720. {
  44721. front: {
  44722. height: math.unit(5.5, "feet"),
  44723. weight: math.unit(130, "lb"),
  44724. name: "Front",
  44725. image: {
  44726. source: "./media/characters/xena-nebadon/front.svg",
  44727. extra: 1828/1730,
  44728. bottom: 79/1907
  44729. }
  44730. },
  44731. },
  44732. [
  44733. {
  44734. name: "Tiny Puppy",
  44735. height: math.unit(3, "inches")
  44736. },
  44737. {
  44738. name: "Normal",
  44739. height: math.unit(5.5, "feet"),
  44740. default: true
  44741. },
  44742. {
  44743. name: "Lotta Lady",
  44744. height: math.unit(12, "feet")
  44745. },
  44746. {
  44747. name: "Pretty Big",
  44748. height: math.unit(100, "feet")
  44749. },
  44750. {
  44751. name: "Big",
  44752. height: math.unit(500, "feet")
  44753. },
  44754. {
  44755. name: "Skyscraper Toys",
  44756. height: math.unit(2500, "feet")
  44757. },
  44758. {
  44759. name: "Plane Catcher",
  44760. height: math.unit(8, "miles")
  44761. },
  44762. {
  44763. name: "Planet Toys",
  44764. height: math.unit(15, "earths")
  44765. },
  44766. {
  44767. name: "Stardust",
  44768. height: math.unit(0.25, "galaxies")
  44769. },
  44770. {
  44771. name: "Snacks",
  44772. height: math.unit(70, "universes")
  44773. },
  44774. ]
  44775. ))
  44776. characterMakers.push(() => makeCharacter(
  44777. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  44778. {
  44779. front: {
  44780. height: math.unit(1.6, "meters"),
  44781. weight: math.unit(60, "kg"),
  44782. name: "Front",
  44783. image: {
  44784. source: "./media/characters/bounty/front.svg",
  44785. extra: 1426/1308,
  44786. bottom: 15/1441
  44787. }
  44788. },
  44789. back: {
  44790. height: math.unit(1.6, "meters"),
  44791. weight: math.unit(60, "kg"),
  44792. name: "Back",
  44793. image: {
  44794. source: "./media/characters/bounty/back.svg",
  44795. extra: 1417/1307,
  44796. bottom: 8/1425
  44797. }
  44798. },
  44799. },
  44800. [
  44801. {
  44802. name: "Normal",
  44803. height: math.unit(1.6, "meters"),
  44804. default: true
  44805. },
  44806. {
  44807. name: "Macro",
  44808. height: math.unit(300, "meters")
  44809. },
  44810. ]
  44811. ))
  44812. characterMakers.push(() => makeCharacter(
  44813. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  44814. {
  44815. front: {
  44816. height: math.unit(2 + 8/12, "feet"),
  44817. weight: math.unit(15, "lb"),
  44818. name: "Front",
  44819. image: {
  44820. source: "./media/characters/mochi/front.svg",
  44821. extra: 1022/852,
  44822. bottom: 435/1457
  44823. }
  44824. },
  44825. back: {
  44826. height: math.unit(2 + 8/12, "feet"),
  44827. weight: math.unit(15, "lb"),
  44828. name: "Back",
  44829. image: {
  44830. source: "./media/characters/mochi/back.svg",
  44831. extra: 1335/1119,
  44832. bottom: 39/1374
  44833. }
  44834. },
  44835. bird: {
  44836. height: math.unit(2 + 8/12, "feet"),
  44837. weight: math.unit(15, "lb"),
  44838. name: "Bird",
  44839. image: {
  44840. source: "./media/characters/mochi/bird.svg",
  44841. extra: 1251/1113,
  44842. bottom: 178/1429
  44843. }
  44844. },
  44845. kaiju: {
  44846. height: math.unit(154, "feet"),
  44847. weight: math.unit(1e7, "lb"),
  44848. name: "Kaiju",
  44849. image: {
  44850. source: "./media/characters/mochi/kaiju.svg",
  44851. extra: 460/324,
  44852. bottom: 40/500
  44853. }
  44854. },
  44855. head: {
  44856. height: math.unit(1.21, "feet"),
  44857. name: "Head",
  44858. image: {
  44859. source: "./media/characters/mochi/head.svg"
  44860. }
  44861. },
  44862. alternateTail: {
  44863. height: math.unit(2 + 8/12, "feet"),
  44864. weight: math.unit(45, "lb"),
  44865. name: "Alternate Tail",
  44866. image: {
  44867. source: "./media/characters/mochi/alternate-tail.svg",
  44868. extra: 139/76,
  44869. bottom: 45/184
  44870. }
  44871. },
  44872. },
  44873. [
  44874. {
  44875. name: "Micro",
  44876. height: math.unit(2, "inches")
  44877. },
  44878. {
  44879. name: "Normal",
  44880. height: math.unit(2 + 8/12, "feet"),
  44881. default: true
  44882. },
  44883. {
  44884. name: "Macro",
  44885. height: math.unit(106, "feet")
  44886. },
  44887. ]
  44888. ))
  44889. characterMakers.push(() => makeCharacter(
  44890. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  44891. {
  44892. front: {
  44893. height: math.unit(5.67, "feet"),
  44894. weight: math.unit(135, "lb"),
  44895. name: "Front",
  44896. image: {
  44897. source: "./media/characters/sarel/front.svg",
  44898. extra: 865/788,
  44899. bottom: 97/962
  44900. }
  44901. },
  44902. back: {
  44903. height: math.unit(5.67, "feet"),
  44904. weight: math.unit(135, "lb"),
  44905. name: "Back",
  44906. image: {
  44907. source: "./media/characters/sarel/back.svg",
  44908. extra: 857/777,
  44909. bottom: 32/889
  44910. }
  44911. },
  44912. chozoan: {
  44913. height: math.unit(5.67, "feet"),
  44914. weight: math.unit(135, "lb"),
  44915. name: "Chozoan",
  44916. image: {
  44917. source: "./media/characters/sarel/chozoan.svg",
  44918. extra: 865/788,
  44919. bottom: 97/962
  44920. }
  44921. },
  44922. current: {
  44923. height: math.unit(5.67, "feet"),
  44924. weight: math.unit(135, "lb"),
  44925. name: "Current",
  44926. image: {
  44927. source: "./media/characters/sarel/current.svg",
  44928. extra: 865/788,
  44929. bottom: 97/962
  44930. }
  44931. },
  44932. head: {
  44933. height: math.unit(1.77, "feet"),
  44934. name: "Head",
  44935. image: {
  44936. source: "./media/characters/sarel/head.svg"
  44937. }
  44938. },
  44939. claws: {
  44940. height: math.unit(1.8, "feet"),
  44941. name: "Claws",
  44942. image: {
  44943. source: "./media/characters/sarel/claws.svg"
  44944. }
  44945. },
  44946. clawsAlt: {
  44947. height: math.unit(1.8, "feet"),
  44948. name: "Claws-alt",
  44949. image: {
  44950. source: "./media/characters/sarel/claws-alt.svg"
  44951. }
  44952. },
  44953. },
  44954. [
  44955. {
  44956. name: "Normal",
  44957. height: math.unit(5.67, "feet"),
  44958. default: true
  44959. },
  44960. ]
  44961. ))
  44962. characterMakers.push(() => makeCharacter(
  44963. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  44964. {
  44965. front: {
  44966. height: math.unit(5500, "feet"),
  44967. name: "Front",
  44968. image: {
  44969. source: "./media/characters/alyonia/front.svg",
  44970. extra: 1200/1135,
  44971. bottom: 29/1229
  44972. }
  44973. },
  44974. back: {
  44975. height: math.unit(5500, "feet"),
  44976. name: "Back",
  44977. image: {
  44978. source: "./media/characters/alyonia/back.svg",
  44979. extra: 1205/1138,
  44980. bottom: 10/1215
  44981. }
  44982. },
  44983. },
  44984. [
  44985. {
  44986. name: "Small",
  44987. height: math.unit(10, "feet")
  44988. },
  44989. {
  44990. name: "Macro",
  44991. height: math.unit(500, "feet")
  44992. },
  44993. {
  44994. name: "Mega Macro",
  44995. height: math.unit(5500, "feet"),
  44996. default: true
  44997. },
  44998. {
  44999. name: "Mega Macro+",
  45000. height: math.unit(500000, "feet")
  45001. },
  45002. {
  45003. name: "Giga Macro",
  45004. height: math.unit(3000, "miles")
  45005. },
  45006. {
  45007. name: "Tera Macro",
  45008. height: math.unit(2.8e6, "miles")
  45009. },
  45010. {
  45011. name: "Galactic",
  45012. height: math.unit(120000, "lightyears")
  45013. },
  45014. ]
  45015. ))
  45016. characterMakers.push(() => makeCharacter(
  45017. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  45018. {
  45019. werewolf: {
  45020. height: math.unit(8, "feet"),
  45021. weight: math.unit(425, "lb"),
  45022. name: "Werewolf",
  45023. image: {
  45024. source: "./media/characters/autumn/werewolf.svg",
  45025. extra: 2154/2031,
  45026. bottom: 160/2314
  45027. }
  45028. },
  45029. human: {
  45030. height: math.unit(5 + 8/12, "feet"),
  45031. weight: math.unit(150, "lb"),
  45032. name: "Human",
  45033. image: {
  45034. source: "./media/characters/autumn/human.svg",
  45035. extra: 1200/1149,
  45036. bottom: 30/1230
  45037. }
  45038. },
  45039. },
  45040. [
  45041. {
  45042. name: "Normal",
  45043. height: math.unit(8, "feet"),
  45044. default: true
  45045. },
  45046. ]
  45047. ))
  45048. characterMakers.push(() => makeCharacter(
  45049. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  45050. {
  45051. front: {
  45052. height: math.unit(8 + 5/12, "feet"),
  45053. weight: math.unit(825, "lb"),
  45054. name: "Front",
  45055. image: {
  45056. source: "./media/characters/cobalt-charizard/front.svg",
  45057. extra: 1268/1155,
  45058. bottom: 122/1390
  45059. }
  45060. },
  45061. side: {
  45062. height: math.unit(8 + 5/12, "feet"),
  45063. weight: math.unit(825, "lb"),
  45064. name: "Side",
  45065. image: {
  45066. source: "./media/characters/cobalt-charizard/side.svg",
  45067. extra: 1348/1257,
  45068. bottom: 58/1406
  45069. }
  45070. },
  45071. gMax: {
  45072. height: math.unit(134 + 11/12, "feet"),
  45073. name: "G-Max",
  45074. image: {
  45075. source: "./media/characters/cobalt-charizard/g-max.svg",
  45076. extra: 1835/1541,
  45077. bottom: 151/1986
  45078. }
  45079. },
  45080. },
  45081. [
  45082. {
  45083. name: "Normal",
  45084. height: math.unit(8 + 5/12, "feet"),
  45085. default: true
  45086. },
  45087. ]
  45088. ))
  45089. characterMakers.push(() => makeCharacter(
  45090. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  45091. {
  45092. front: {
  45093. height: math.unit(6 + 3/12, "feet"),
  45094. weight: math.unit(210, "lb"),
  45095. name: "Front",
  45096. image: {
  45097. source: "./media/characters/stella/front.svg",
  45098. extra: 3549/3335,
  45099. bottom: 51/3600
  45100. }
  45101. },
  45102. },
  45103. [
  45104. {
  45105. name: "Normal",
  45106. height: math.unit(6 + 3/12, "feet"),
  45107. default: true
  45108. },
  45109. ]
  45110. ))
  45111. characterMakers.push(() => makeCharacter(
  45112. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  45113. {
  45114. front: {
  45115. height: math.unit(5, "feet"),
  45116. weight: math.unit(90, "lb"),
  45117. name: "Front",
  45118. image: {
  45119. source: "./media/characters/riley-bishop/front.svg",
  45120. extra: 1450/1428,
  45121. bottom: 152/1602
  45122. }
  45123. },
  45124. },
  45125. [
  45126. {
  45127. name: "Normal",
  45128. height: math.unit(5, "feet"),
  45129. default: true
  45130. },
  45131. ]
  45132. ))
  45133. characterMakers.push(() => makeCharacter(
  45134. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  45135. {
  45136. side: {
  45137. height: math.unit(8 + 2/12, "feet"),
  45138. weight: math.unit(500, "kg"),
  45139. name: "Side",
  45140. image: {
  45141. source: "./media/characters/theo-arcanine/side.svg",
  45142. extra: 1342/1074,
  45143. bottom: 111/1453
  45144. }
  45145. },
  45146. },
  45147. [
  45148. {
  45149. name: "Normal",
  45150. height: math.unit(8 + 2/12, "feet"),
  45151. default: true
  45152. },
  45153. ]
  45154. ))
  45155. characterMakers.push(() => makeCharacter(
  45156. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  45157. {
  45158. front: {
  45159. height: math.unit(4, "feet"),
  45160. name: "Front",
  45161. image: {
  45162. source: "./media/characters/kali/front.svg",
  45163. extra: 1921/1357,
  45164. bottom: 70/1991
  45165. }
  45166. },
  45167. },
  45168. [
  45169. {
  45170. name: "Normal",
  45171. height: math.unit(4, "feet"),
  45172. default: true
  45173. },
  45174. {
  45175. name: "Macro",
  45176. height: math.unit(32, "meters")
  45177. },
  45178. {
  45179. name: "Macro+",
  45180. height: math.unit(150, "meters")
  45181. },
  45182. {
  45183. name: "Megamacro",
  45184. height: math.unit(7500, "meters")
  45185. },
  45186. {
  45187. name: "Megamacro+",
  45188. height: math.unit(80, "kilometers")
  45189. },
  45190. ]
  45191. ))
  45192. characterMakers.push(() => makeCharacter(
  45193. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  45194. {
  45195. side: {
  45196. height: math.unit(5 + 11/12, "feet"),
  45197. weight: math.unit(236, "lb"),
  45198. name: "Side",
  45199. image: {
  45200. source: "./media/characters/gapp/side.svg",
  45201. extra: 775/340,
  45202. bottom: 58/833
  45203. }
  45204. },
  45205. mouth: {
  45206. height: math.unit(2.98, "feet"),
  45207. name: "Mouth",
  45208. image: {
  45209. source: "./media/characters/gapp/mouth.svg"
  45210. }
  45211. },
  45212. },
  45213. [
  45214. {
  45215. name: "Normal",
  45216. height: math.unit(5 + 1/12, "feet"),
  45217. default: true
  45218. },
  45219. ]
  45220. ))
  45221. characterMakers.push(() => makeCharacter(
  45222. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  45223. {
  45224. front: {
  45225. height: math.unit(6, "feet"),
  45226. name: "Front",
  45227. image: {
  45228. source: "./media/characters/persephone/front.svg",
  45229. extra: 1895/1717,
  45230. bottom: 96/1991
  45231. }
  45232. },
  45233. back: {
  45234. height: math.unit(6, "feet"),
  45235. name: "Back",
  45236. image: {
  45237. source: "./media/characters/persephone/back.svg",
  45238. extra: 1868/1679,
  45239. bottom: 26/1894
  45240. }
  45241. },
  45242. casual: {
  45243. height: math.unit(6, "feet"),
  45244. name: "Casual",
  45245. image: {
  45246. source: "./media/characters/persephone/casual.svg",
  45247. extra: 1713/1541,
  45248. bottom: 76/1789
  45249. }
  45250. },
  45251. },
  45252. [
  45253. {
  45254. name: "Human Size",
  45255. height: math.unit(6, "feet")
  45256. },
  45257. {
  45258. name: "Big Steppy",
  45259. height: math.unit(600, "meters"),
  45260. default: true
  45261. },
  45262. {
  45263. name: "Galaxy Brain",
  45264. height: math.unit(1, "zettameter")
  45265. },
  45266. ]
  45267. ))
  45268. characterMakers.push(() => makeCharacter(
  45269. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  45270. {
  45271. front: {
  45272. height: math.unit(1.85, "meters"),
  45273. name: "Front",
  45274. image: {
  45275. source: "./media/characters/riley-foxthing/front.svg",
  45276. extra: 1495/1354,
  45277. bottom: 122/1617
  45278. }
  45279. },
  45280. frontAlt: {
  45281. height: math.unit(1.85, "meters"),
  45282. name: "Front (Alt)",
  45283. image: {
  45284. source: "./media/characters/riley-foxthing/front-alt.svg",
  45285. extra: 1572/1389,
  45286. bottom: 116/1688
  45287. }
  45288. },
  45289. },
  45290. [
  45291. {
  45292. name: "Normal Sized",
  45293. height: math.unit(1.85, "meters"),
  45294. default: true
  45295. },
  45296. {
  45297. name: "Quite Sizable",
  45298. height: math.unit(5, "meters")
  45299. },
  45300. {
  45301. name: "Rather Large",
  45302. height: math.unit(20, "meters")
  45303. },
  45304. {
  45305. name: "Macro",
  45306. height: math.unit(450, "meters")
  45307. },
  45308. {
  45309. name: "Giga",
  45310. height: math.unit(5, "km")
  45311. },
  45312. ]
  45313. ))
  45314. characterMakers.push(() => makeCharacter(
  45315. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  45316. {
  45317. front: {
  45318. height: math.unit(6, "feet"),
  45319. weight: math.unit(200, "lb"),
  45320. name: "Front",
  45321. image: {
  45322. source: "./media/characters/blizzard/front.svg",
  45323. extra: 1136/990,
  45324. bottom: 136/1272
  45325. }
  45326. },
  45327. back: {
  45328. height: math.unit(6, "feet"),
  45329. weight: math.unit(200, "lb"),
  45330. name: "Back",
  45331. image: {
  45332. source: "./media/characters/blizzard/back.svg",
  45333. extra: 1175/1034,
  45334. bottom: 97/1272
  45335. }
  45336. },
  45337. sitting: {
  45338. height: math.unit(3.725, "feet"),
  45339. weight: math.unit(200, "lb"),
  45340. name: "Sitting",
  45341. image: {
  45342. source: "./media/characters/blizzard/sitting.svg",
  45343. extra: 581/485,
  45344. bottom: 90/671
  45345. }
  45346. },
  45347. frontWizard: {
  45348. height: math.unit(7.9, "feet"),
  45349. weight: math.unit(200, "lb"),
  45350. name: "Front (Wizard)",
  45351. image: {
  45352. source: "./media/characters/blizzard/front-wizard.svg"
  45353. }
  45354. },
  45355. backWizard: {
  45356. height: math.unit(7.9, "feet"),
  45357. weight: math.unit(200, "lb"),
  45358. name: "Back (Wizard)",
  45359. image: {
  45360. source: "./media/characters/blizzard/back-wizard.svg"
  45361. }
  45362. },
  45363. frontNsfw: {
  45364. height: math.unit(6, "feet"),
  45365. weight: math.unit(200, "lb"),
  45366. name: "Front (NSFW)",
  45367. image: {
  45368. source: "./media/characters/blizzard/front-nsfw.svg",
  45369. extra: 1136/990,
  45370. bottom: 136/1272
  45371. }
  45372. },
  45373. backNsfw: {
  45374. height: math.unit(6, "feet"),
  45375. weight: math.unit(200, "lb"),
  45376. name: "Back (NSFW)",
  45377. image: {
  45378. source: "./media/characters/blizzard/back-nsfw.svg",
  45379. extra: 1175/1034,
  45380. bottom: 97/1272
  45381. }
  45382. },
  45383. sittingNsfw: {
  45384. height: math.unit(3.725, "feet"),
  45385. weight: math.unit(200, "lb"),
  45386. name: "Sitting (NSFW)",
  45387. image: {
  45388. source: "./media/characters/blizzard/sitting-nsfw.svg",
  45389. extra: 581/485,
  45390. bottom: 90/671
  45391. }
  45392. },
  45393. wizardFrontNsfw: {
  45394. height: math.unit(7.9, "feet"),
  45395. weight: math.unit(200, "lb"),
  45396. name: "Wizard (Front, NSFW)",
  45397. image: {
  45398. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  45399. }
  45400. },
  45401. },
  45402. [
  45403. {
  45404. name: "Normal",
  45405. height: math.unit(6, "feet"),
  45406. default: true
  45407. },
  45408. ]
  45409. ))
  45410. characterMakers.push(() => makeCharacter(
  45411. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  45412. {
  45413. front: {
  45414. height: math.unit(5 + 2/12, "feet"),
  45415. name: "Front",
  45416. image: {
  45417. source: "./media/characters/lumi/front.svg",
  45418. extra: 1328/1268,
  45419. bottom: 103/1431
  45420. }
  45421. },
  45422. back: {
  45423. height: math.unit(5 + 2/12, "feet"),
  45424. name: "Back",
  45425. image: {
  45426. source: "./media/characters/lumi/back.svg",
  45427. extra: 1381/1327,
  45428. bottom: 43/1424
  45429. }
  45430. },
  45431. },
  45432. [
  45433. {
  45434. name: "Normal",
  45435. height: math.unit(5 + 2/12, "feet"),
  45436. default: true
  45437. },
  45438. ]
  45439. ))
  45440. characterMakers.push(() => makeCharacter(
  45441. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  45442. {
  45443. front: {
  45444. height: math.unit(5 + 9/12, "feet"),
  45445. name: "Front",
  45446. image: {
  45447. source: "./media/characters/aliya-cotton/front.svg",
  45448. extra: 577/564,
  45449. bottom: 29/606
  45450. }
  45451. },
  45452. },
  45453. [
  45454. {
  45455. name: "Normal",
  45456. height: math.unit(5 + 9/12, "feet"),
  45457. default: true
  45458. },
  45459. ]
  45460. ))
  45461. characterMakers.push(() => makeCharacter(
  45462. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  45463. {
  45464. front: {
  45465. height: math.unit(2.7, "meters"),
  45466. weight: math.unit(25000, "lb"),
  45467. name: "Front",
  45468. image: {
  45469. source: "./media/characters/noah-luxray/front.svg",
  45470. extra: 1644/825,
  45471. bottom: 339/1983
  45472. }
  45473. },
  45474. side: {
  45475. height: math.unit(2.97, "meters"),
  45476. weight: math.unit(25000, "lb"),
  45477. name: "Side",
  45478. image: {
  45479. source: "./media/characters/noah-luxray/side.svg",
  45480. extra: 1319/650,
  45481. bottom: 163/1482
  45482. }
  45483. },
  45484. dick: {
  45485. height: math.unit(7.4, "feet"),
  45486. weight: math.unit(2500, "lb"),
  45487. name: "Dick",
  45488. image: {
  45489. source: "./media/characters/noah-luxray/dick.svg"
  45490. }
  45491. },
  45492. dickAlt: {
  45493. height: math.unit(10.83, "feet"),
  45494. weight: math.unit(2500, "lb"),
  45495. name: "Dick-alt",
  45496. image: {
  45497. source: "./media/characters/noah-luxray/dick-alt.svg"
  45498. }
  45499. },
  45500. },
  45501. [
  45502. {
  45503. name: "BIG",
  45504. height: math.unit(2.7, "meters"),
  45505. default: true
  45506. },
  45507. ]
  45508. ))
  45509. characterMakers.push(() => makeCharacter(
  45510. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  45511. {
  45512. standing: {
  45513. height: math.unit(183, "cm"),
  45514. weight: math.unit(68, "kg"),
  45515. name: "Standing",
  45516. image: {
  45517. source: "./media/characters/arion/standing.svg",
  45518. extra: 1869/1807,
  45519. bottom: 93/1962
  45520. }
  45521. },
  45522. reclining: {
  45523. height: math.unit(70.5, "cm"),
  45524. weight: math.unit(68, "lb"),
  45525. name: "Reclining",
  45526. image: {
  45527. source: "./media/characters/arion/reclining.svg",
  45528. extra: 937/870,
  45529. bottom: 63/1000
  45530. }
  45531. },
  45532. },
  45533. [
  45534. {
  45535. name: "Colossus Size, Low",
  45536. height: math.unit(33, "meters"),
  45537. default: true
  45538. },
  45539. {
  45540. name: "Colossus Size, Mid",
  45541. height: math.unit(52, "meters")
  45542. },
  45543. {
  45544. name: "Colossus Size, High",
  45545. height: math.unit(60, "meters")
  45546. },
  45547. {
  45548. name: "Titan Size, Low",
  45549. height: math.unit(91, "meters"),
  45550. },
  45551. {
  45552. name: "Titan Size, Mid",
  45553. height: math.unit(122, "meters")
  45554. },
  45555. {
  45556. name: "Titan Size, High",
  45557. height: math.unit(162, "meters")
  45558. },
  45559. ]
  45560. ))
  45561. characterMakers.push(() => makeCharacter(
  45562. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  45563. {
  45564. front: {
  45565. height: math.unit(53, "meters"),
  45566. name: "Front",
  45567. image: {
  45568. source: "./media/characters/stellar-marbey/front.svg",
  45569. extra: 1913/1805,
  45570. bottom: 92/2005
  45571. }
  45572. },
  45573. back: {
  45574. height: math.unit(53, "meters"),
  45575. name: "Back",
  45576. image: {
  45577. source: "./media/characters/stellar-marbey/back.svg",
  45578. extra: 1960/1851,
  45579. bottom: 28/1988
  45580. }
  45581. },
  45582. mouth: {
  45583. height: math.unit(3.5, "meters"),
  45584. name: "Mouth",
  45585. image: {
  45586. source: "./media/characters/stellar-marbey/mouth.svg"
  45587. }
  45588. },
  45589. },
  45590. [
  45591. {
  45592. name: "Macro",
  45593. height: math.unit(53, "meters"),
  45594. default: true
  45595. },
  45596. ]
  45597. ))
  45598. characterMakers.push(() => makeCharacter(
  45599. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  45600. {
  45601. front: {
  45602. height: math.unit(8 + 1/12, "feet"),
  45603. weight: math.unit(233, "lb"),
  45604. name: "Front",
  45605. image: {
  45606. source: "./media/characters/matsu/front.svg",
  45607. extra: 832/772,
  45608. bottom: 40/872
  45609. }
  45610. },
  45611. back: {
  45612. height: math.unit(8 + 1/12, "feet"),
  45613. weight: math.unit(233, "lb"),
  45614. name: "Back",
  45615. image: {
  45616. source: "./media/characters/matsu/back.svg",
  45617. extra: 839/780,
  45618. bottom: 47/886
  45619. }
  45620. },
  45621. },
  45622. [
  45623. {
  45624. name: "Normal",
  45625. height: math.unit(8 + 1/12, "feet"),
  45626. default: true
  45627. },
  45628. ]
  45629. ))
  45630. characterMakers.push(() => makeCharacter(
  45631. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  45632. {
  45633. front: {
  45634. height: math.unit(4, "feet"),
  45635. weight: math.unit(148, "lb"),
  45636. name: "Front",
  45637. image: {
  45638. source: "./media/characters/thiz/front.svg",
  45639. extra: 1913/1748,
  45640. bottom: 62/1975
  45641. }
  45642. },
  45643. },
  45644. [
  45645. {
  45646. name: "Normal",
  45647. height: math.unit(4, "feet"),
  45648. default: true
  45649. },
  45650. ]
  45651. ))
  45652. characterMakers.push(() => makeCharacter(
  45653. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  45654. {
  45655. front: {
  45656. height: math.unit(7 + 6/12, "feet"),
  45657. weight: math.unit(267, "lb"),
  45658. name: "Front",
  45659. image: {
  45660. source: "./media/characters/marcel/front.svg",
  45661. extra: 1221/1096,
  45662. bottom: 76/1297
  45663. }
  45664. },
  45665. },
  45666. [
  45667. {
  45668. name: "Normal",
  45669. height: math.unit(7 + 6/12, "feet"),
  45670. default: true
  45671. },
  45672. ]
  45673. ))
  45674. characterMakers.push(() => makeCharacter(
  45675. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  45676. {
  45677. side: {
  45678. height: math.unit(42, "meters"),
  45679. name: "Side",
  45680. image: {
  45681. source: "./media/characters/flake/side.svg",
  45682. extra: 1525/1306,
  45683. bottom: 209/1734
  45684. }
  45685. },
  45686. },
  45687. [
  45688. {
  45689. name: "Normal",
  45690. height: math.unit(42, "meters"),
  45691. default: true
  45692. },
  45693. ]
  45694. ))
  45695. characterMakers.push(() => makeCharacter(
  45696. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  45697. {
  45698. dressed: {
  45699. height: math.unit(6 + 4/12, "feet"),
  45700. weight: math.unit(520, "lb"),
  45701. name: "Dressed",
  45702. image: {
  45703. source: "./media/characters/someonne/dressed.svg",
  45704. extra: 1020/1010,
  45705. bottom: 178/1198
  45706. }
  45707. },
  45708. undressed: {
  45709. height: math.unit(6 + 4/12, "feet"),
  45710. weight: math.unit(520, "lb"),
  45711. name: "Undressed",
  45712. image: {
  45713. source: "./media/characters/someonne/undressed.svg",
  45714. extra: 1019/1014,
  45715. bottom: 169/1188
  45716. }
  45717. },
  45718. },
  45719. [
  45720. {
  45721. name: "Normal",
  45722. height: math.unit(6 + 4/12, "feet"),
  45723. default: true
  45724. },
  45725. ]
  45726. ))
  45727. characterMakers.push(() => makeCharacter(
  45728. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  45729. {
  45730. front: {
  45731. height: math.unit(3, "feet"),
  45732. weight: math.unit(30, "lb"),
  45733. name: "Front",
  45734. image: {
  45735. source: "./media/characters/till/front.svg",
  45736. extra: 892/823,
  45737. bottom: 55/947
  45738. }
  45739. },
  45740. },
  45741. [
  45742. {
  45743. name: "Normal",
  45744. height: math.unit(3, "feet"),
  45745. default: true
  45746. },
  45747. ]
  45748. ))
  45749. characterMakers.push(() => makeCharacter(
  45750. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  45751. {
  45752. front: {
  45753. height: math.unit(9 + 8/12, "feet"),
  45754. weight: math.unit(800, "lb"),
  45755. name: "Front",
  45756. image: {
  45757. source: "./media/characters/sydney-heki/front.svg",
  45758. extra: 1360/1300,
  45759. bottom: 22/1382
  45760. }
  45761. },
  45762. back: {
  45763. height: math.unit(9 + 8/12, "feet"),
  45764. weight: math.unit(800, "lb"),
  45765. name: "Back",
  45766. image: {
  45767. source: "./media/characters/sydney-heki/back.svg",
  45768. extra: 1356/1293,
  45769. bottom: 12/1368
  45770. }
  45771. },
  45772. frontDressed: {
  45773. height: math.unit(9 + 8/12, "feet"),
  45774. weight: math.unit(800, "lb"),
  45775. name: "Front-dressed",
  45776. image: {
  45777. source: "./media/characters/sydney-heki/front-dressed.svg",
  45778. extra: 1360/1300,
  45779. bottom: 22/1382
  45780. }
  45781. },
  45782. },
  45783. [
  45784. {
  45785. name: "Normal",
  45786. height: math.unit(9 + 8/12, "feet"),
  45787. default: true
  45788. },
  45789. {
  45790. name: "Macro",
  45791. height: math.unit(500, "feet")
  45792. },
  45793. {
  45794. name: "Megamacro",
  45795. height: math.unit(3.6, "miles")
  45796. },
  45797. ]
  45798. ))
  45799. characterMakers.push(() => makeCharacter(
  45800. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  45801. {
  45802. front: {
  45803. height: math.unit(200, "cm"),
  45804. weight: math.unit(250, "lb"),
  45805. name: "Front",
  45806. image: {
  45807. source: "./media/characters/fowler-karlsson/front.svg",
  45808. extra: 897/845,
  45809. bottom: 123/1020
  45810. }
  45811. },
  45812. back: {
  45813. height: math.unit(200, "cm"),
  45814. weight: math.unit(250, "lb"),
  45815. name: "Back",
  45816. image: {
  45817. source: "./media/characters/fowler-karlsson/back.svg",
  45818. extra: 999/944,
  45819. bottom: 26/1025
  45820. }
  45821. },
  45822. dick: {
  45823. height: math.unit(1.92, "feet"),
  45824. weight: math.unit(150, "lb"),
  45825. name: "Dick",
  45826. image: {
  45827. source: "./media/characters/fowler-karlsson/dick.svg"
  45828. }
  45829. },
  45830. },
  45831. [
  45832. {
  45833. name: "Normal",
  45834. height: math.unit(200, "cm"),
  45835. default: true
  45836. },
  45837. {
  45838. name: "Smaller Macro",
  45839. height: math.unit(90, "m")
  45840. },
  45841. {
  45842. name: "Macro",
  45843. height: math.unit(150, "m")
  45844. },
  45845. {
  45846. name: "Bigger Macro",
  45847. height: math.unit(300, "m")
  45848. },
  45849. ]
  45850. ))
  45851. characterMakers.push(() => makeCharacter(
  45852. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  45853. {
  45854. side: {
  45855. height: math.unit(8 + 2/12, "feet"),
  45856. weight: math.unit(1, "tonne"),
  45857. name: "Side",
  45858. image: {
  45859. source: "./media/characters/rylide/side.svg",
  45860. extra: 1318/1034,
  45861. bottom: 106/1424
  45862. }
  45863. },
  45864. sitting: {
  45865. height: math.unit(303, "cm"),
  45866. weight: math.unit(1, "tonne"),
  45867. name: "Sitting",
  45868. image: {
  45869. source: "./media/characters/rylide/sitting.svg",
  45870. extra: 1303/1103,
  45871. bottom: 36/1339
  45872. }
  45873. },
  45874. },
  45875. [
  45876. {
  45877. name: "Normal",
  45878. height: math.unit(8 + 2/12, "feet"),
  45879. default: true
  45880. },
  45881. ]
  45882. ))
  45883. characterMakers.push(() => makeCharacter(
  45884. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  45885. {
  45886. front: {
  45887. height: math.unit(5 + 10/12, "feet"),
  45888. weight: math.unit(160, "lb"),
  45889. name: "Front",
  45890. image: {
  45891. source: "./media/characters/pudask/front.svg",
  45892. extra: 1616/1590,
  45893. bottom: 161/1777
  45894. }
  45895. },
  45896. },
  45897. [
  45898. {
  45899. name: "Ferret Height",
  45900. height: math.unit(2 + 5/12, "feet")
  45901. },
  45902. {
  45903. name: "Canon Height",
  45904. height: math.unit(5 + 10/12, "feet"),
  45905. default: true
  45906. },
  45907. ]
  45908. ))
  45909. characterMakers.push(() => makeCharacter(
  45910. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  45911. {
  45912. front: {
  45913. height: math.unit(3 + 6/12, "feet"),
  45914. weight: math.unit(60, "lb"),
  45915. name: "Front",
  45916. image: {
  45917. source: "./media/characters/ramita/front.svg",
  45918. extra: 1402/1232,
  45919. bottom: 62/1464
  45920. }
  45921. },
  45922. dressed: {
  45923. height: math.unit(3 + 6/12, "feet"),
  45924. weight: math.unit(60, "lb"),
  45925. name: "Dressed",
  45926. image: {
  45927. source: "./media/characters/ramita/dressed.svg",
  45928. extra: 1534/1249,
  45929. bottom: 50/1584
  45930. }
  45931. },
  45932. },
  45933. [
  45934. {
  45935. name: "Normal",
  45936. height: math.unit(3 + 6/12, "feet"),
  45937. default: true
  45938. },
  45939. ]
  45940. ))
  45941. characterMakers.push(() => makeCharacter(
  45942. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  45943. {
  45944. front: {
  45945. height: math.unit(8, "feet"),
  45946. name: "Front",
  45947. image: {
  45948. source: "./media/characters/ark/front.svg",
  45949. extra: 772/693,
  45950. bottom: 45/817
  45951. }
  45952. },
  45953. },
  45954. [
  45955. {
  45956. name: "Normal",
  45957. height: math.unit(8, "feet"),
  45958. default: true
  45959. },
  45960. ]
  45961. ))
  45962. characterMakers.push(() => makeCharacter(
  45963. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  45964. {
  45965. front: {
  45966. height: math.unit(6, "feet"),
  45967. weight: math.unit(250, "lb"),
  45968. volume: math.unit(5/8, "gallons"),
  45969. name: "Front",
  45970. image: {
  45971. source: "./media/characters/ludwig-horn/front.svg",
  45972. extra: 1782/1635,
  45973. bottom: 96/1878
  45974. }
  45975. },
  45976. back: {
  45977. height: math.unit(6, "feet"),
  45978. weight: math.unit(250, "lb"),
  45979. volume: math.unit(5/8, "gallons"),
  45980. name: "Back",
  45981. image: {
  45982. source: "./media/characters/ludwig-horn/back.svg",
  45983. extra: 1874/1729,
  45984. bottom: 27/1901
  45985. }
  45986. },
  45987. dick: {
  45988. height: math.unit(1.05, "feet"),
  45989. weight: math.unit(15, "lb"),
  45990. volume: math.unit(5/8, "gallons"),
  45991. name: "Dick",
  45992. image: {
  45993. source: "./media/characters/ludwig-horn/dick.svg"
  45994. }
  45995. },
  45996. },
  45997. [
  45998. {
  45999. name: "Small",
  46000. height: math.unit(6, "feet")
  46001. },
  46002. {
  46003. name: "Typical",
  46004. height: math.unit(12, "feet"),
  46005. default: true
  46006. },
  46007. {
  46008. name: "Building",
  46009. height: math.unit(80, "feet")
  46010. },
  46011. {
  46012. name: "Town",
  46013. height: math.unit(800, "feet")
  46014. },
  46015. {
  46016. name: "Kingdom",
  46017. height: math.unit(80000, "feet")
  46018. },
  46019. {
  46020. name: "Planet",
  46021. height: math.unit(8000000, "feet")
  46022. },
  46023. {
  46024. name: "Universe",
  46025. height: math.unit(8000000000, "feet")
  46026. },
  46027. {
  46028. name: "Transcended",
  46029. height: math.unit(8e27, "feet")
  46030. },
  46031. ]
  46032. ))
  46033. characterMakers.push(() => makeCharacter(
  46034. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  46035. {
  46036. front: {
  46037. height: math.unit(5, "feet"),
  46038. weight: math.unit(50, "kg"),
  46039. name: "Front",
  46040. image: {
  46041. source: "./media/characters/biot-avery/front.svg",
  46042. extra: 1295/1232,
  46043. bottom: 86/1381
  46044. }
  46045. },
  46046. },
  46047. [
  46048. {
  46049. name: "Normal",
  46050. height: math.unit(5, "feet"),
  46051. default: true
  46052. },
  46053. ]
  46054. ))
  46055. characterMakers.push(() => makeCharacter(
  46056. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  46057. {
  46058. front: {
  46059. height: math.unit(6, "feet"),
  46060. name: "Front",
  46061. image: {
  46062. source: "./media/characters/kitsune-kiro/front.svg",
  46063. extra: 1270/1158,
  46064. bottom: 42/1312
  46065. }
  46066. },
  46067. frontAlt: {
  46068. height: math.unit(6, "feet"),
  46069. name: "Front-alt",
  46070. image: {
  46071. source: "./media/characters/kitsune-kiro/front-alt.svg",
  46072. extra: 1130/1081,
  46073. bottom: 36/1166
  46074. }
  46075. },
  46076. },
  46077. [
  46078. {
  46079. name: "Smol",
  46080. height: math.unit(3, "feet")
  46081. },
  46082. {
  46083. name: "Normal",
  46084. height: math.unit(6, "feet"),
  46085. default: true
  46086. },
  46087. ]
  46088. ))
  46089. characterMakers.push(() => makeCharacter(
  46090. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  46091. {
  46092. front: {
  46093. height: math.unit(6, "feet"),
  46094. weight: math.unit(125, "lb"),
  46095. name: "Front",
  46096. image: {
  46097. source: "./media/characters/jack-thatcher/front.svg",
  46098. extra: 1474/1370,
  46099. bottom: 26/1500
  46100. }
  46101. },
  46102. back: {
  46103. height: math.unit(6, "feet"),
  46104. weight: math.unit(125, "lb"),
  46105. name: "Back",
  46106. image: {
  46107. source: "./media/characters/jack-thatcher/back.svg",
  46108. extra: 1489/1384,
  46109. bottom: 18/1507
  46110. }
  46111. },
  46112. },
  46113. [
  46114. {
  46115. name: "Normal",
  46116. height: math.unit(6, "feet"),
  46117. default: true
  46118. },
  46119. {
  46120. name: "Macro",
  46121. height: math.unit(75, "feet")
  46122. },
  46123. {
  46124. name: "Macro-er",
  46125. height: math.unit(250, "feet")
  46126. },
  46127. ]
  46128. ))
  46129. characterMakers.push(() => makeCharacter(
  46130. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  46131. {
  46132. front: {
  46133. height: math.unit(7, "feet"),
  46134. weight: math.unit(110, "kg"),
  46135. name: "Front",
  46136. image: {
  46137. source: "./media/characters/max-hyper/front.svg",
  46138. extra: 1969/1881,
  46139. bottom: 49/2018
  46140. }
  46141. },
  46142. },
  46143. [
  46144. {
  46145. name: "Normal",
  46146. height: math.unit(7, "feet"),
  46147. default: true
  46148. },
  46149. ]
  46150. ))
  46151. characterMakers.push(() => makeCharacter(
  46152. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  46153. {
  46154. front: {
  46155. height: math.unit(5 + 5/12, "feet"),
  46156. weight: math.unit(160, "lb"),
  46157. name: "Front",
  46158. image: {
  46159. source: "./media/characters/spook/front.svg",
  46160. extra: 794/791,
  46161. bottom: 54/848
  46162. }
  46163. },
  46164. back: {
  46165. height: math.unit(5 + 5/12, "feet"),
  46166. weight: math.unit(160, "lb"),
  46167. name: "Back",
  46168. image: {
  46169. source: "./media/characters/spook/back.svg",
  46170. extra: 812/798,
  46171. bottom: 32/844
  46172. }
  46173. },
  46174. },
  46175. [
  46176. {
  46177. name: "Normal",
  46178. height: math.unit(5 + 5/12, "feet"),
  46179. default: true
  46180. },
  46181. ]
  46182. ))
  46183. characterMakers.push(() => makeCharacter(
  46184. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  46185. {
  46186. front: {
  46187. height: math.unit(18, "feet"),
  46188. name: "Front",
  46189. image: {
  46190. source: "./media/characters/xeaduulix/front.svg",
  46191. extra: 1380/1166,
  46192. bottom: 110/1490
  46193. }
  46194. },
  46195. back: {
  46196. height: math.unit(18, "feet"),
  46197. name: "Back",
  46198. image: {
  46199. source: "./media/characters/xeaduulix/back.svg",
  46200. extra: 1592/1170,
  46201. bottom: 128/1720
  46202. }
  46203. },
  46204. frontNsfw: {
  46205. height: math.unit(18, "feet"),
  46206. name: "Front (NSFW)",
  46207. image: {
  46208. source: "./media/characters/xeaduulix/front-nsfw.svg",
  46209. extra: 1380/1166,
  46210. bottom: 110/1490
  46211. }
  46212. },
  46213. backNsfw: {
  46214. height: math.unit(18, "feet"),
  46215. name: "Back (NSFW)",
  46216. image: {
  46217. source: "./media/characters/xeaduulix/back-nsfw.svg",
  46218. extra: 1592/1170,
  46219. bottom: 128/1720
  46220. }
  46221. },
  46222. },
  46223. [
  46224. {
  46225. name: "Normal",
  46226. height: math.unit(18, "feet"),
  46227. default: true
  46228. },
  46229. ]
  46230. ))
  46231. characterMakers.push(() => makeCharacter(
  46232. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  46233. {
  46234. spreadWings: {
  46235. height: math.unit(20, "feet"),
  46236. name: "Spread Wings",
  46237. image: {
  46238. source: "./media/characters/fledge/spread-wings.svg",
  46239. extra: 693/635,
  46240. bottom: 26/719
  46241. }
  46242. },
  46243. front: {
  46244. height: math.unit(20, "feet"),
  46245. name: "Front",
  46246. image: {
  46247. source: "./media/characters/fledge/front.svg",
  46248. extra: 684/637,
  46249. bottom: 18/702
  46250. }
  46251. },
  46252. frontAlt: {
  46253. height: math.unit(20, "feet"),
  46254. name: "Front (Alt)",
  46255. image: {
  46256. source: "./media/characters/fledge/front-alt.svg",
  46257. extra: 708/664,
  46258. bottom: 13/721
  46259. }
  46260. },
  46261. back: {
  46262. height: math.unit(20, "feet"),
  46263. name: "Back",
  46264. image: {
  46265. source: "./media/characters/fledge/back.svg",
  46266. extra: 718/634,
  46267. bottom: 22/740
  46268. }
  46269. },
  46270. head: {
  46271. height: math.unit(5.55, "feet"),
  46272. name: "Head",
  46273. image: {
  46274. source: "./media/characters/fledge/head.svg"
  46275. }
  46276. },
  46277. headAlt: {
  46278. height: math.unit(5.1, "feet"),
  46279. name: "Head (Alt)",
  46280. image: {
  46281. source: "./media/characters/fledge/head-alt.svg"
  46282. }
  46283. },
  46284. },
  46285. [
  46286. {
  46287. name: "Small",
  46288. height: math.unit(6 + 2/12, "feet")
  46289. },
  46290. {
  46291. name: "Big",
  46292. height: math.unit(20, "feet"),
  46293. default: true
  46294. },
  46295. {
  46296. name: "Giant",
  46297. height: math.unit(100, "feet")
  46298. },
  46299. {
  46300. name: "Macro",
  46301. height: math.unit(200, "feet")
  46302. },
  46303. ]
  46304. ))
  46305. characterMakers.push(() => makeCharacter(
  46306. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  46307. {
  46308. front: {
  46309. height: math.unit(1, "meter"),
  46310. name: "Front",
  46311. image: {
  46312. source: "./media/characters/atlas-morenai/front.svg",
  46313. extra: 1275/1043,
  46314. bottom: 19/1294
  46315. }
  46316. },
  46317. back: {
  46318. height: math.unit(1, "meter"),
  46319. name: "Back",
  46320. image: {
  46321. source: "./media/characters/atlas-morenai/back.svg",
  46322. extra: 1141/1001,
  46323. bottom: 25/1166
  46324. }
  46325. },
  46326. },
  46327. [
  46328. {
  46329. name: "Normal",
  46330. height: math.unit(1, "meter"),
  46331. default: true
  46332. },
  46333. {
  46334. name: "Magic-Infused",
  46335. height: math.unit(5, "meters")
  46336. },
  46337. ]
  46338. ))
  46339. characterMakers.push(() => makeCharacter(
  46340. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  46341. {
  46342. front: {
  46343. height: math.unit(5, "meters"),
  46344. name: "Front",
  46345. image: {
  46346. source: "./media/characters/cintia/front.svg",
  46347. extra: 1312/1228,
  46348. bottom: 38/1350
  46349. }
  46350. },
  46351. back: {
  46352. height: math.unit(5, "meters"),
  46353. name: "Back",
  46354. image: {
  46355. source: "./media/characters/cintia/back.svg",
  46356. extra: 1260/1166,
  46357. bottom: 98/1358
  46358. }
  46359. },
  46360. frontDick: {
  46361. height: math.unit(5, "meters"),
  46362. name: "Front (Dick)",
  46363. image: {
  46364. source: "./media/characters/cintia/front-dick.svg",
  46365. extra: 1312/1228,
  46366. bottom: 38/1350
  46367. }
  46368. },
  46369. backDick: {
  46370. height: math.unit(5, "meters"),
  46371. name: "Back (Dick)",
  46372. image: {
  46373. source: "./media/characters/cintia/back-dick.svg",
  46374. extra: 1260/1166,
  46375. bottom: 98/1358
  46376. }
  46377. },
  46378. bust: {
  46379. height: math.unit(1.97, "meters"),
  46380. name: "Bust",
  46381. image: {
  46382. source: "./media/characters/cintia/bust.svg",
  46383. extra: 617/565,
  46384. bottom: 0/617
  46385. }
  46386. },
  46387. },
  46388. [
  46389. {
  46390. name: "Normal",
  46391. height: math.unit(5, "meters"),
  46392. default: true
  46393. },
  46394. ]
  46395. ))
  46396. characterMakers.push(() => makeCharacter(
  46397. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  46398. {
  46399. side: {
  46400. height: math.unit(100, "feet"),
  46401. name: "Side",
  46402. image: {
  46403. source: "./media/characters/denora/side.svg",
  46404. extra: 875/803,
  46405. bottom: 9/884
  46406. }
  46407. },
  46408. },
  46409. [
  46410. {
  46411. name: "Standard",
  46412. height: math.unit(100, "feet"),
  46413. default: true
  46414. },
  46415. {
  46416. name: "Grand",
  46417. height: math.unit(1000, "feet")
  46418. },
  46419. {
  46420. name: "Conquering",
  46421. height: math.unit(10000, "feet")
  46422. },
  46423. ]
  46424. ))
  46425. characterMakers.push(() => makeCharacter(
  46426. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  46427. {
  46428. dressed: {
  46429. height: math.unit(8 + 5/12, "feet"),
  46430. weight: math.unit(700, "lb"),
  46431. name: "Dressed",
  46432. image: {
  46433. source: "./media/characters/kiva/dressed.svg",
  46434. extra: 1102/1055,
  46435. bottom: 60/1162
  46436. }
  46437. },
  46438. nude: {
  46439. height: math.unit(8 + 5/12, "feet"),
  46440. weight: math.unit(700, "lb"),
  46441. name: "Nude",
  46442. image: {
  46443. source: "./media/characters/kiva/nude.svg",
  46444. extra: 1102/1055,
  46445. bottom: 60/1162
  46446. }
  46447. },
  46448. },
  46449. [
  46450. {
  46451. name: "Base Height",
  46452. height: math.unit(8 + 5/12, "feet"),
  46453. default: true
  46454. },
  46455. {
  46456. name: "Macro",
  46457. height: math.unit(100, "feet")
  46458. },
  46459. {
  46460. name: "Max",
  46461. height: math.unit(3280, "feet")
  46462. },
  46463. ]
  46464. ))
  46465. characterMakers.push(() => makeCharacter(
  46466. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  46467. {
  46468. front: {
  46469. height: math.unit(6 + 8/12, "feet"),
  46470. weight: math.unit(250, "lb"),
  46471. name: "Front",
  46472. image: {
  46473. source: "./media/characters/ztragon/front.svg",
  46474. extra: 1825/1684,
  46475. bottom: 98/1923
  46476. }
  46477. },
  46478. },
  46479. [
  46480. {
  46481. name: "Normal",
  46482. height: math.unit(6 + 8/12, "feet"),
  46483. default: true
  46484. },
  46485. {
  46486. name: "Macro",
  46487. height: math.unit(80, "feet")
  46488. },
  46489. ]
  46490. ))
  46491. characterMakers.push(() => makeCharacter(
  46492. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  46493. {
  46494. front: {
  46495. height: math.unit(10.4, "feet"),
  46496. weight: math.unit(2, "tons"),
  46497. name: "Front",
  46498. image: {
  46499. source: "./media/characters/yesenia/front.svg",
  46500. extra: 1479/1474,
  46501. bottom: 233/1712
  46502. }
  46503. },
  46504. },
  46505. [
  46506. {
  46507. name: "Normal",
  46508. height: math.unit(10.4, "feet"),
  46509. default: true
  46510. },
  46511. ]
  46512. ))
  46513. characterMakers.push(() => makeCharacter(
  46514. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  46515. {
  46516. normal: {
  46517. height: math.unit(6 + 1/12, "feet"),
  46518. weight: math.unit(180, "lb"),
  46519. name: "Normal",
  46520. image: {
  46521. source: "./media/characters/leanne-lycheborne/normal.svg",
  46522. extra: 1748/1660,
  46523. bottom: 98/1846
  46524. }
  46525. },
  46526. were: {
  46527. height: math.unit(12, "feet"),
  46528. weight: math.unit(1600, "lb"),
  46529. name: "Were",
  46530. image: {
  46531. source: "./media/characters/leanne-lycheborne/were.svg",
  46532. extra: 1485/1432,
  46533. bottom: 66/1551
  46534. }
  46535. },
  46536. },
  46537. [
  46538. {
  46539. name: "Normal",
  46540. height: math.unit(6 + 1/12, "feet"),
  46541. default: true
  46542. },
  46543. ]
  46544. ))
  46545. characterMakers.push(() => makeCharacter(
  46546. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  46547. {
  46548. side: {
  46549. height: math.unit(13, "feet"),
  46550. name: "Side",
  46551. image: {
  46552. source: "./media/characters/kira-tyler/side.svg",
  46553. extra: 693/393,
  46554. bottom: 58/751
  46555. }
  46556. },
  46557. },
  46558. [
  46559. {
  46560. name: "Normal",
  46561. height: math.unit(13, "feet"),
  46562. default: true
  46563. },
  46564. ]
  46565. ))
  46566. characterMakers.push(() => makeCharacter(
  46567. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  46568. {
  46569. front: {
  46570. height: math.unit(10.3, "feet"),
  46571. weight: math.unit(150, "lb"),
  46572. name: "Front",
  46573. image: {
  46574. source: "./media/characters/blaze/front.svg",
  46575. extra: 1378/1286,
  46576. bottom: 172/1550
  46577. }
  46578. },
  46579. },
  46580. [
  46581. {
  46582. name: "Normal",
  46583. height: math.unit(10.3, "feet"),
  46584. default: true
  46585. },
  46586. ]
  46587. ))
  46588. characterMakers.push(() => makeCharacter(
  46589. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  46590. {
  46591. side: {
  46592. height: math.unit(2, "meters"),
  46593. weight: math.unit(400, "kg"),
  46594. name: "Side",
  46595. image: {
  46596. source: "./media/characters/anu/side.svg",
  46597. extra: 506/394,
  46598. bottom: 18/524
  46599. }
  46600. },
  46601. },
  46602. [
  46603. {
  46604. name: "Humanoid",
  46605. height: math.unit(2, "meters")
  46606. },
  46607. {
  46608. name: "Normal",
  46609. height: math.unit(5, "meters"),
  46610. default: true
  46611. },
  46612. ]
  46613. ))
  46614. characterMakers.push(() => makeCharacter(
  46615. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  46616. {
  46617. front: {
  46618. height: math.unit(5 + 5/12, "feet"),
  46619. weight: math.unit(170, "lb"),
  46620. name: "Front",
  46621. image: {
  46622. source: "./media/characters/synx-the-lynx/front.svg",
  46623. extra: 1893/1745,
  46624. bottom: 17/1910
  46625. }
  46626. },
  46627. side: {
  46628. height: math.unit(5 + 5/12, "feet"),
  46629. weight: math.unit(170, "lb"),
  46630. name: "Side",
  46631. image: {
  46632. source: "./media/characters/synx-the-lynx/side.svg",
  46633. extra: 1884/1740,
  46634. bottom: 39/1923
  46635. }
  46636. },
  46637. back: {
  46638. height: math.unit(5 + 5/12, "feet"),
  46639. weight: math.unit(170, "lb"),
  46640. name: "Back",
  46641. image: {
  46642. source: "./media/characters/synx-the-lynx/back.svg",
  46643. extra: 1903/1755,
  46644. bottom: 14/1917
  46645. }
  46646. },
  46647. },
  46648. [
  46649. {
  46650. name: "Normal",
  46651. height: math.unit(5 + 5/12, "feet"),
  46652. default: true
  46653. },
  46654. ]
  46655. ))
  46656. characterMakers.push(() => makeCharacter(
  46657. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  46658. {
  46659. back: {
  46660. height: math.unit(15, "feet"),
  46661. name: "Back",
  46662. image: {
  46663. source: "./media/characters/nadezda-fex/back.svg",
  46664. extra: 1695/1481,
  46665. bottom: 25/1720
  46666. }
  46667. },
  46668. },
  46669. [
  46670. {
  46671. name: "Normal",
  46672. height: math.unit(15, "feet"),
  46673. default: true
  46674. },
  46675. {
  46676. name: "Macro",
  46677. height: math.unit(2.5, "miles")
  46678. },
  46679. {
  46680. name: "Goddess",
  46681. height: math.unit(2, "multiverses")
  46682. },
  46683. ]
  46684. ))
  46685. characterMakers.push(() => makeCharacter(
  46686. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  46687. {
  46688. front: {
  46689. height: math.unit(216, "cm"),
  46690. name: "Front",
  46691. image: {
  46692. source: "./media/characters/lev/front.svg",
  46693. extra: 1728/1670,
  46694. bottom: 82/1810
  46695. }
  46696. },
  46697. back: {
  46698. height: math.unit(216, "cm"),
  46699. name: "Back",
  46700. image: {
  46701. source: "./media/characters/lev/back.svg",
  46702. extra: 1738/1675,
  46703. bottom: 24/1762
  46704. }
  46705. },
  46706. dressed: {
  46707. height: math.unit(216, "cm"),
  46708. name: "Dressed",
  46709. image: {
  46710. source: "./media/characters/lev/dressed.svg",
  46711. extra: 1397/1351,
  46712. bottom: 73/1470
  46713. }
  46714. },
  46715. head: {
  46716. height: math.unit(0.51, "meter"),
  46717. name: "Head",
  46718. image: {
  46719. source: "./media/characters/lev/head.svg"
  46720. }
  46721. },
  46722. },
  46723. [
  46724. {
  46725. name: "Normal",
  46726. height: math.unit(216, "cm"),
  46727. default: true
  46728. },
  46729. {
  46730. name: "Relatively Macro",
  46731. height: math.unit(80, "meters")
  46732. },
  46733. {
  46734. name: "Megamacro",
  46735. height: math.unit(21600, "meters")
  46736. },
  46737. {
  46738. name: "Megamacro+",
  46739. height: math.unit(64800, "meters")
  46740. },
  46741. ]
  46742. ))
  46743. characterMakers.push(() => makeCharacter(
  46744. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  46745. {
  46746. front: {
  46747. height: math.unit(2, "meters"),
  46748. weight: math.unit(80, "kg"),
  46749. name: "Front",
  46750. image: {
  46751. source: "./media/characters/moka/front.svg",
  46752. extra: 1337/1255,
  46753. bottom: 58/1395
  46754. }
  46755. },
  46756. },
  46757. [
  46758. {
  46759. name: "Micro",
  46760. height: math.unit(15, "cm")
  46761. },
  46762. {
  46763. name: "Normal",
  46764. height: math.unit(2, "meters"),
  46765. default: true
  46766. },
  46767. {
  46768. name: "Macro",
  46769. height: math.unit(20, "meters"),
  46770. },
  46771. ]
  46772. ))
  46773. characterMakers.push(() => makeCharacter(
  46774. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  46775. {
  46776. front: {
  46777. height: math.unit(9, "feet"),
  46778. weight: math.unit(240, "lb"),
  46779. name: "Front",
  46780. image: {
  46781. source: "./media/characters/kuzco/front.svg",
  46782. extra: 1593/1487,
  46783. bottom: 32/1625
  46784. }
  46785. },
  46786. side: {
  46787. height: math.unit(9, "feet"),
  46788. weight: math.unit(240, "lb"),
  46789. name: "Side",
  46790. image: {
  46791. source: "./media/characters/kuzco/side.svg",
  46792. extra: 1575/1485,
  46793. bottom: 30/1605
  46794. }
  46795. },
  46796. back: {
  46797. height: math.unit(9, "feet"),
  46798. weight: math.unit(240, "lb"),
  46799. name: "Back",
  46800. image: {
  46801. source: "./media/characters/kuzco/back.svg",
  46802. extra: 1603/1514,
  46803. bottom: 14/1617
  46804. }
  46805. },
  46806. },
  46807. [
  46808. {
  46809. name: "Normal",
  46810. height: math.unit(9, "feet"),
  46811. default: true
  46812. },
  46813. ]
  46814. ))
  46815. characterMakers.push(() => makeCharacter(
  46816. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  46817. {
  46818. side: {
  46819. height: math.unit(2, "meters"),
  46820. weight: math.unit(300, "kg"),
  46821. name: "Side",
  46822. image: {
  46823. source: "./media/characters/ceruleus/side.svg",
  46824. extra: 1068/974,
  46825. bottom: 126/1194
  46826. }
  46827. },
  46828. maw: {
  46829. height: math.unit(0.8125, "meter"),
  46830. name: "Maw",
  46831. image: {
  46832. source: "./media/characters/ceruleus/maw.svg"
  46833. }
  46834. },
  46835. },
  46836. [
  46837. {
  46838. name: "Normal",
  46839. height: math.unit(16, "meters"),
  46840. default: true
  46841. },
  46842. ]
  46843. ))
  46844. characterMakers.push(() => makeCharacter(
  46845. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  46846. {
  46847. front: {
  46848. height: math.unit(9, "feet"),
  46849. weight: math.unit(500, "kg"),
  46850. name: "Front",
  46851. image: {
  46852. source: "./media/characters/acouya/front.svg",
  46853. extra: 1660/1473,
  46854. bottom: 28/1688
  46855. }
  46856. },
  46857. },
  46858. [
  46859. {
  46860. name: "Normal",
  46861. height: math.unit(9, "feet"),
  46862. default: true
  46863. },
  46864. ]
  46865. ))
  46866. characterMakers.push(() => makeCharacter(
  46867. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  46868. {
  46869. front: {
  46870. height: math.unit(5 + 6/12, "feet"),
  46871. weight: math.unit(195, "lb"),
  46872. name: "Front",
  46873. image: {
  46874. source: "./media/characters/vant/front.svg",
  46875. extra: 1396/1320,
  46876. bottom: 20/1416
  46877. }
  46878. },
  46879. back: {
  46880. height: math.unit(5 + 6/12, "feet"),
  46881. weight: math.unit(195, "lb"),
  46882. name: "Back",
  46883. image: {
  46884. source: "./media/characters/vant/back.svg",
  46885. extra: 1396/1320,
  46886. bottom: 20/1416
  46887. }
  46888. },
  46889. maw: {
  46890. height: math.unit(0.75, "feet"),
  46891. name: "Maw",
  46892. image: {
  46893. source: "./media/characters/vant/maw.svg"
  46894. }
  46895. },
  46896. paw: {
  46897. height: math.unit(1.07, "feet"),
  46898. name: "Paw",
  46899. image: {
  46900. source: "./media/characters/vant/paw.svg"
  46901. }
  46902. },
  46903. },
  46904. [
  46905. {
  46906. name: "Micro",
  46907. height: math.unit(0.25, "inches")
  46908. },
  46909. {
  46910. name: "Normal",
  46911. height: math.unit(5 + 6/12, "feet"),
  46912. default: true
  46913. },
  46914. {
  46915. name: "Macro",
  46916. height: math.unit(75, "feet")
  46917. },
  46918. ]
  46919. ))
  46920. characterMakers.push(() => makeCharacter(
  46921. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  46922. {
  46923. front: {
  46924. height: math.unit(30, "meters"),
  46925. weight: math.unit(363, "tons"),
  46926. name: "Front",
  46927. image: {
  46928. source: "./media/characters/ahra/front.svg",
  46929. extra: 1914/1814,
  46930. bottom: 46/1960
  46931. }
  46932. },
  46933. },
  46934. [
  46935. {
  46936. name: "Macro",
  46937. height: math.unit(30, "meters"),
  46938. default: true
  46939. },
  46940. ]
  46941. ))
  46942. characterMakers.push(() => makeCharacter(
  46943. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  46944. {
  46945. undressed: {
  46946. height: math.unit(2, "m"),
  46947. weight: math.unit(250, "kg"),
  46948. name: "Undressed",
  46949. image: {
  46950. source: "./media/characters/coriander/undressed.svg",
  46951. extra: 1757/1606,
  46952. bottom: 107/1864
  46953. }
  46954. },
  46955. dressed: {
  46956. height: math.unit(2, "m"),
  46957. weight: math.unit(250, "kg"),
  46958. name: "Dressed",
  46959. image: {
  46960. source: "./media/characters/coriander/dressed.svg",
  46961. extra: 1757/1606,
  46962. bottom: 107/1864
  46963. }
  46964. },
  46965. },
  46966. [
  46967. {
  46968. name: "Normal",
  46969. height: math.unit(4, "meters"),
  46970. default: true
  46971. },
  46972. {
  46973. name: "XL",
  46974. height: math.unit(6, "meters")
  46975. },
  46976. {
  46977. name: "XXL",
  46978. height: math.unit(8, "meters")
  46979. },
  46980. ]
  46981. ))
  46982. characterMakers.push(() => makeCharacter(
  46983. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  46984. {
  46985. front: {
  46986. height: math.unit(6, "feet"),
  46987. name: "Front",
  46988. image: {
  46989. source: "./media/characters/syrinx/front.svg",
  46990. extra: 1557/1259,
  46991. bottom: 171/1728
  46992. }
  46993. },
  46994. },
  46995. [
  46996. {
  46997. name: "Normal",
  46998. height: math.unit(6 + 3/12, "feet"),
  46999. default: true
  47000. },
  47001. ]
  47002. ))
  47003. characterMakers.push(() => makeCharacter(
  47004. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  47005. {
  47006. front: {
  47007. height: math.unit(11 + 6/12, "feet"),
  47008. weight: math.unit(1.5, "tons"),
  47009. name: "Front",
  47010. image: {
  47011. source: "./media/characters/bor/front.svg",
  47012. extra: 1189/1109,
  47013. bottom: 170/1359
  47014. }
  47015. },
  47016. },
  47017. [
  47018. {
  47019. name: "Normal",
  47020. height: math.unit(11 + 6/12, "feet"),
  47021. default: true
  47022. },
  47023. {
  47024. name: "Macro",
  47025. height: math.unit(32 + 9/12, "feet")
  47026. },
  47027. ]
  47028. ))
  47029. characterMakers.push(() => makeCharacter(
  47030. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  47031. {
  47032. anthro: {
  47033. height: math.unit(9, "feet"),
  47034. weight: math.unit(2076, "lb"),
  47035. name: "Anthro",
  47036. image: {
  47037. source: "./media/characters/abacus/anthro.svg",
  47038. extra: 1540/1494,
  47039. bottom: 233/1773
  47040. }
  47041. },
  47042. pigeon: {
  47043. height: math.unit(1, "feet"),
  47044. name: "Pigeon",
  47045. image: {
  47046. source: "./media/characters/abacus/pigeon.svg",
  47047. extra: 528/525,
  47048. bottom: 46/574
  47049. }
  47050. },
  47051. },
  47052. [
  47053. {
  47054. name: "Normal",
  47055. height: math.unit(9, "feet"),
  47056. default: true
  47057. },
  47058. ]
  47059. ))
  47060. characterMakers.push(() => makeCharacter(
  47061. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  47062. {
  47063. side: {
  47064. height: math.unit(6, "feet"),
  47065. name: "Side",
  47066. image: {
  47067. source: "./media/characters/delkhan/side.svg",
  47068. extra: 1884/1786,
  47069. bottom: 308/2192
  47070. }
  47071. },
  47072. head: {
  47073. height: math.unit(3.38, "feet"),
  47074. name: "Head",
  47075. image: {
  47076. source: "./media/characters/delkhan/head.svg"
  47077. }
  47078. },
  47079. },
  47080. [
  47081. {
  47082. name: "Normal",
  47083. height: math.unit(72, "feet"),
  47084. default: true
  47085. },
  47086. {
  47087. name: "Giant",
  47088. height: math.unit(172, "feet")
  47089. },
  47090. ]
  47091. ))
  47092. characterMakers.push(() => makeCharacter(
  47093. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  47094. {
  47095. standing: {
  47096. height: math.unit(6, "feet"),
  47097. name: "Standing",
  47098. image: {
  47099. source: "./media/characters/euchidat/standing.svg",
  47100. extra: 1612/1553,
  47101. bottom: 116/1728
  47102. }
  47103. },
  47104. leaning: {
  47105. height: math.unit(6, "feet"),
  47106. name: "Leaning",
  47107. image: {
  47108. source: "./media/characters/euchidat/leaning.svg",
  47109. extra: 1719/1674,
  47110. bottom: 27/1746
  47111. }
  47112. },
  47113. },
  47114. [
  47115. {
  47116. name: "Normal",
  47117. height: math.unit(175, "feet"),
  47118. default: true
  47119. },
  47120. {
  47121. name: "Megamacro",
  47122. height: math.unit(190, "miles")
  47123. },
  47124. {
  47125. name: "Gigamacro",
  47126. height: math.unit(190000, "miles")
  47127. },
  47128. ]
  47129. ))
  47130. characterMakers.push(() => makeCharacter(
  47131. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  47132. {
  47133. front: {
  47134. height: math.unit(6, "feet"),
  47135. weight: math.unit(150, "lb"),
  47136. name: "Front",
  47137. image: {
  47138. source: "./media/characters/rebecca-stack/front.svg",
  47139. extra: 1256/1201,
  47140. bottom: 18/1274
  47141. }
  47142. },
  47143. },
  47144. [
  47145. {
  47146. name: "Normal",
  47147. height: math.unit(5 + 8/12, "feet"),
  47148. default: true
  47149. },
  47150. {
  47151. name: "Demolitionist",
  47152. height: math.unit(200, "feet")
  47153. },
  47154. {
  47155. name: "Out of Control",
  47156. height: math.unit(2, "miles")
  47157. },
  47158. {
  47159. name: "Giga",
  47160. height: math.unit(7200, "miles")
  47161. },
  47162. ]
  47163. ))
  47164. characterMakers.push(() => makeCharacter(
  47165. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  47166. {
  47167. front: {
  47168. height: math.unit(6, "feet"),
  47169. weight: math.unit(150, "lb"),
  47170. name: "Front",
  47171. image: {
  47172. source: "./media/characters/jenny-cartwright/front.svg",
  47173. extra: 1384/1376,
  47174. bottom: 58/1442
  47175. }
  47176. },
  47177. },
  47178. [
  47179. {
  47180. name: "Normal",
  47181. height: math.unit(6 + 7/12, "feet"),
  47182. default: true
  47183. },
  47184. {
  47185. name: "Librarian",
  47186. height: math.unit(55, "feet")
  47187. },
  47188. {
  47189. name: "Sightseer",
  47190. height: math.unit(50, "miles")
  47191. },
  47192. {
  47193. name: "Giga",
  47194. height: math.unit(30000, "miles")
  47195. },
  47196. ]
  47197. ))
  47198. characterMakers.push(() => makeCharacter(
  47199. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  47200. {
  47201. nude: {
  47202. height: math.unit(8, "feet"),
  47203. weight: math.unit(225, "lb"),
  47204. name: "Nude",
  47205. image: {
  47206. source: "./media/characters/marvy/nude.svg",
  47207. extra: 1900/1683,
  47208. bottom: 89/1989
  47209. }
  47210. },
  47211. dressed: {
  47212. height: math.unit(8, "feet"),
  47213. weight: math.unit(225, "lb"),
  47214. name: "Dressed",
  47215. image: {
  47216. source: "./media/characters/marvy/dressed.svg",
  47217. extra: 1900/1683,
  47218. bottom: 89/1989
  47219. }
  47220. },
  47221. head: {
  47222. height: math.unit(2.85, "feet"),
  47223. name: "Head",
  47224. image: {
  47225. source: "./media/characters/marvy/head.svg"
  47226. }
  47227. },
  47228. },
  47229. [
  47230. {
  47231. name: "Normal",
  47232. height: math.unit(8, "feet"),
  47233. default: true
  47234. },
  47235. ]
  47236. ))
  47237. characterMakers.push(() => makeCharacter(
  47238. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  47239. {
  47240. front: {
  47241. height: math.unit(8, "feet"),
  47242. weight: math.unit(250, "lb"),
  47243. name: "Front",
  47244. image: {
  47245. source: "./media/characters/leah/front.svg",
  47246. extra: 1257/1149,
  47247. bottom: 109/1366
  47248. }
  47249. },
  47250. },
  47251. [
  47252. {
  47253. name: "Normal",
  47254. height: math.unit(8, "feet"),
  47255. default: true
  47256. },
  47257. {
  47258. name: "Minimacro",
  47259. height: math.unit(40, "feet")
  47260. },
  47261. {
  47262. name: "Macro",
  47263. height: math.unit(124, "feet")
  47264. },
  47265. {
  47266. name: "Megamacro",
  47267. height: math.unit(850, "feet")
  47268. },
  47269. ]
  47270. ))
  47271. characterMakers.push(() => makeCharacter(
  47272. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  47273. {
  47274. side: {
  47275. height: math.unit(13 + 6/12, "feet"),
  47276. weight: math.unit(3200, "lb"),
  47277. name: "Side",
  47278. image: {
  47279. source: "./media/characters/alvir/side.svg",
  47280. extra: 896/589,
  47281. bottom: 26/922
  47282. }
  47283. },
  47284. },
  47285. [
  47286. {
  47287. name: "Normal",
  47288. height: math.unit(13 + 6/12, "feet"),
  47289. default: true
  47290. },
  47291. ]
  47292. ))
  47293. characterMakers.push(() => makeCharacter(
  47294. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  47295. {
  47296. front: {
  47297. height: math.unit(5 + 4/12, "feet"),
  47298. weight: math.unit(236, "lb"),
  47299. name: "Front",
  47300. image: {
  47301. source: "./media/characters/zaina-khalil/front.svg",
  47302. extra: 1533/1485,
  47303. bottom: 94/1627
  47304. }
  47305. },
  47306. side: {
  47307. height: math.unit(5 + 4/12, "feet"),
  47308. weight: math.unit(236, "lb"),
  47309. name: "Side",
  47310. image: {
  47311. source: "./media/characters/zaina-khalil/side.svg",
  47312. extra: 1537/1498,
  47313. bottom: 66/1603
  47314. }
  47315. },
  47316. back: {
  47317. height: math.unit(5 + 4/12, "feet"),
  47318. weight: math.unit(236, "lb"),
  47319. name: "Back",
  47320. image: {
  47321. source: "./media/characters/zaina-khalil/back.svg",
  47322. extra: 1546/1494,
  47323. bottom: 89/1635
  47324. }
  47325. },
  47326. },
  47327. [
  47328. {
  47329. name: "Normal",
  47330. height: math.unit(5 + 4/12, "feet"),
  47331. default: true
  47332. },
  47333. ]
  47334. ))
  47335. characterMakers.push(() => makeCharacter(
  47336. { name: "Terry", species: ["husky"], tags: ["taur"] },
  47337. {
  47338. side: {
  47339. height: math.unit(12, "feet"),
  47340. weight: math.unit(4000, "lb"),
  47341. name: "Side",
  47342. image: {
  47343. source: "./media/characters/terry/side.svg",
  47344. extra: 1518/1439,
  47345. bottom: 149/1667
  47346. }
  47347. },
  47348. },
  47349. [
  47350. {
  47351. name: "Normal",
  47352. height: math.unit(12, "feet"),
  47353. default: true
  47354. },
  47355. ]
  47356. ))
  47357. characterMakers.push(() => makeCharacter(
  47358. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  47359. {
  47360. front: {
  47361. height: math.unit(12, "feet"),
  47362. weight: math.unit(1500, "lb"),
  47363. name: "Front",
  47364. image: {
  47365. source: "./media/characters/kahea/front.svg",
  47366. extra: 1722/1617,
  47367. bottom: 179/1901
  47368. }
  47369. },
  47370. },
  47371. [
  47372. {
  47373. name: "Normal",
  47374. height: math.unit(12, "feet"),
  47375. default: true
  47376. },
  47377. ]
  47378. ))
  47379. characterMakers.push(() => makeCharacter(
  47380. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  47381. {
  47382. demonFront: {
  47383. height: math.unit(36, "feet"),
  47384. name: "Front",
  47385. image: {
  47386. source: "./media/characters/alex-xuria/demon-front.svg",
  47387. extra: 1705/1673,
  47388. bottom: 198/1903
  47389. },
  47390. form: "demon",
  47391. default: true
  47392. },
  47393. demonBack: {
  47394. height: math.unit(36, "feet"),
  47395. name: "Back",
  47396. image: {
  47397. source: "./media/characters/alex-xuria/demon-back.svg",
  47398. extra: 1725/1693,
  47399. bottom: 70/1795
  47400. },
  47401. form: "demon"
  47402. },
  47403. demonHead: {
  47404. height: math.unit(2.14, "meters"),
  47405. name: "Head",
  47406. image: {
  47407. source: "./media/characters/alex-xuria/demon-head.svg"
  47408. },
  47409. form: "demon"
  47410. },
  47411. demonHand: {
  47412. height: math.unit(1.61, "meters"),
  47413. name: "Hand",
  47414. image: {
  47415. source: "./media/characters/alex-xuria/demon-hand.svg"
  47416. },
  47417. form: "demon"
  47418. },
  47419. demonPaw: {
  47420. height: math.unit(1.35, "meters"),
  47421. name: "Paw",
  47422. image: {
  47423. source: "./media/characters/alex-xuria/demon-paw.svg"
  47424. },
  47425. form: "demon"
  47426. },
  47427. demonFoot: {
  47428. height: math.unit(2.2, "meters"),
  47429. name: "Foot",
  47430. image: {
  47431. source: "./media/characters/alex-xuria/demon-foot.svg"
  47432. },
  47433. form: "demon"
  47434. },
  47435. demonCock: {
  47436. height: math.unit(1.74, "meters"),
  47437. name: "Cock",
  47438. image: {
  47439. source: "./media/characters/alex-xuria/demon-cock.svg"
  47440. },
  47441. form: "demon"
  47442. },
  47443. demonTailClosed: {
  47444. height: math.unit(1.47, "meters"),
  47445. name: "Tail (Closed)",
  47446. image: {
  47447. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  47448. },
  47449. form: "demon"
  47450. },
  47451. demonTailOpen: {
  47452. height: math.unit(2.85, "meters"),
  47453. name: "Tail (Open)",
  47454. image: {
  47455. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  47456. },
  47457. form: "demon"
  47458. },
  47459. incubusFront: {
  47460. height: math.unit(12, "feet"),
  47461. name: "Front",
  47462. image: {
  47463. source: "./media/characters/alex-xuria/incubus-front.svg",
  47464. extra: 1754/1677,
  47465. bottom: 125/1879
  47466. },
  47467. form: "incubus",
  47468. default: true
  47469. },
  47470. incubusBack: {
  47471. height: math.unit(12, "feet"),
  47472. name: "Back",
  47473. image: {
  47474. source: "./media/characters/alex-xuria/incubus-back.svg",
  47475. extra: 1702/1647,
  47476. bottom: 30/1732
  47477. },
  47478. form: "incubus"
  47479. },
  47480. incubusHead: {
  47481. height: math.unit(3.45, "feet"),
  47482. name: "Head",
  47483. image: {
  47484. source: "./media/characters/alex-xuria/incubus-head.svg"
  47485. },
  47486. form: "incubus"
  47487. },
  47488. rabbitFront: {
  47489. height: math.unit(6, "feet"),
  47490. name: "Front",
  47491. image: {
  47492. source: "./media/characters/alex-xuria/rabbit-front.svg",
  47493. extra: 1369/1349,
  47494. bottom: 45/1414
  47495. },
  47496. form: "rabbit",
  47497. default: true
  47498. },
  47499. rabbitSide: {
  47500. height: math.unit(6, "feet"),
  47501. name: "Side",
  47502. image: {
  47503. source: "./media/characters/alex-xuria/rabbit-side.svg",
  47504. extra: 1370/1356,
  47505. bottom: 37/1407
  47506. },
  47507. form: "rabbit"
  47508. },
  47509. rabbitBack: {
  47510. height: math.unit(6, "feet"),
  47511. name: "Back",
  47512. image: {
  47513. source: "./media/characters/alex-xuria/rabbit-back.svg",
  47514. extra: 1375/1358,
  47515. bottom: 43/1418
  47516. },
  47517. form: "rabbit"
  47518. },
  47519. },
  47520. [
  47521. {
  47522. name: "Normal",
  47523. height: math.unit(6, "feet"),
  47524. default: true,
  47525. form: "rabbit"
  47526. },
  47527. {
  47528. name: "Incubus",
  47529. height: math.unit(12, "feet"),
  47530. default: true,
  47531. form: "incubus"
  47532. },
  47533. {
  47534. name: "Demon",
  47535. height: math.unit(36, "feet"),
  47536. default: true,
  47537. form: "demon"
  47538. }
  47539. ],
  47540. {
  47541. "demon": {
  47542. name: "Demon",
  47543. default: true
  47544. },
  47545. "incubus": {
  47546. name: "Incubus",
  47547. },
  47548. "rabbit": {
  47549. name: "Rabbit"
  47550. }
  47551. }
  47552. ))
  47553. characterMakers.push(() => makeCharacter(
  47554. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  47555. {
  47556. front: {
  47557. height: math.unit(7 + 5/12, "feet"),
  47558. weight: math.unit(510, "lb"),
  47559. name: "Front",
  47560. image: {
  47561. source: "./media/characters/syrup/front.svg",
  47562. extra: 932/916,
  47563. bottom: 26/958
  47564. }
  47565. },
  47566. },
  47567. [
  47568. {
  47569. name: "Normal",
  47570. height: math.unit(7 + 5/12, "feet"),
  47571. default: true
  47572. },
  47573. {
  47574. name: "Big",
  47575. height: math.unit(50, "feet")
  47576. },
  47577. {
  47578. name: "Macro",
  47579. height: math.unit(300, "feet")
  47580. },
  47581. {
  47582. name: "Megamacro",
  47583. height: math.unit(1, "mile")
  47584. },
  47585. ]
  47586. ))
  47587. characterMakers.push(() => makeCharacter(
  47588. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  47589. {
  47590. front: {
  47591. height: math.unit(6 + 9/12, "feet"),
  47592. name: "Front",
  47593. image: {
  47594. source: "./media/characters/zeimne/front.svg",
  47595. extra: 1969/1806,
  47596. bottom: 53/2022
  47597. }
  47598. },
  47599. },
  47600. [
  47601. {
  47602. name: "Normal",
  47603. height: math.unit(6 + 9/12, "feet"),
  47604. default: true
  47605. },
  47606. {
  47607. name: "Giant",
  47608. height: math.unit(550, "feet")
  47609. },
  47610. {
  47611. name: "Mega",
  47612. height: math.unit(3, "miles")
  47613. },
  47614. {
  47615. name: "Giga",
  47616. height: math.unit(250, "miles")
  47617. },
  47618. {
  47619. name: "Tera",
  47620. height: math.unit(1, "AU")
  47621. },
  47622. ]
  47623. ))
  47624. characterMakers.push(() => makeCharacter(
  47625. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  47626. {
  47627. front: {
  47628. height: math.unit(5 + 2/12, "feet"),
  47629. name: "Front",
  47630. image: {
  47631. source: "./media/characters/grar/front.svg",
  47632. extra: 1331/1119,
  47633. bottom: 60/1391
  47634. }
  47635. },
  47636. back: {
  47637. height: math.unit(5 + 2/12, "feet"),
  47638. name: "Back",
  47639. image: {
  47640. source: "./media/characters/grar/back.svg",
  47641. extra: 1385/1169,
  47642. bottom: 23/1408
  47643. }
  47644. },
  47645. },
  47646. [
  47647. {
  47648. name: "Normal",
  47649. height: math.unit(5 + 2/12, "feet"),
  47650. default: true
  47651. },
  47652. ]
  47653. ))
  47654. characterMakers.push(() => makeCharacter(
  47655. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  47656. {
  47657. front: {
  47658. height: math.unit(13 + 7/12, "feet"),
  47659. weight: math.unit(2200, "lb"),
  47660. name: "Front",
  47661. image: {
  47662. source: "./media/characters/endraya/front.svg",
  47663. extra: 1289/1215,
  47664. bottom: 50/1339
  47665. }
  47666. },
  47667. nude: {
  47668. height: math.unit(13 + 7/12, "feet"),
  47669. weight: math.unit(2200, "lb"),
  47670. name: "Nude",
  47671. image: {
  47672. source: "./media/characters/endraya/nude.svg",
  47673. extra: 1247/1171,
  47674. bottom: 40/1287
  47675. }
  47676. },
  47677. head: {
  47678. height: math.unit(2.6, "feet"),
  47679. name: "Head",
  47680. image: {
  47681. source: "./media/characters/endraya/head.svg"
  47682. }
  47683. },
  47684. slit: {
  47685. height: math.unit(3.4, "feet"),
  47686. name: "Slit",
  47687. image: {
  47688. source: "./media/characters/endraya/slit.svg"
  47689. }
  47690. },
  47691. },
  47692. [
  47693. {
  47694. name: "Normal",
  47695. height: math.unit(13 + 7/12, "feet"),
  47696. default: true
  47697. },
  47698. {
  47699. name: "Macro",
  47700. height: math.unit(200, "feet")
  47701. },
  47702. ]
  47703. ))
  47704. characterMakers.push(() => makeCharacter(
  47705. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  47706. {
  47707. front: {
  47708. height: math.unit(1.81, "meters"),
  47709. weight: math.unit(69, "kg"),
  47710. name: "Front",
  47711. image: {
  47712. source: "./media/characters/rodryana/front.svg",
  47713. extra: 2002/1921,
  47714. bottom: 53/2055
  47715. }
  47716. },
  47717. back: {
  47718. height: math.unit(1.81, "meters"),
  47719. weight: math.unit(69, "kg"),
  47720. name: "Back",
  47721. image: {
  47722. source: "./media/characters/rodryana/back.svg",
  47723. extra: 1993/1926,
  47724. bottom: 48/2041
  47725. }
  47726. },
  47727. maw: {
  47728. height: math.unit(0.19769417475, "meters"),
  47729. name: "Maw",
  47730. image: {
  47731. source: "./media/characters/rodryana/maw.svg"
  47732. }
  47733. },
  47734. slit: {
  47735. height: math.unit(0.31631067961, "meters"),
  47736. name: "Slit",
  47737. image: {
  47738. source: "./media/characters/rodryana/slit.svg"
  47739. }
  47740. },
  47741. },
  47742. [
  47743. {
  47744. name: "Normal",
  47745. height: math.unit(1.81, "meters")
  47746. },
  47747. {
  47748. name: "Mini Macro",
  47749. height: math.unit(181, "meters")
  47750. },
  47751. {
  47752. name: "Macro",
  47753. height: math.unit(452, "meters"),
  47754. default: true
  47755. },
  47756. {
  47757. name: "Mega Macro",
  47758. height: math.unit(1.375, "km")
  47759. },
  47760. {
  47761. name: "Giga Macro",
  47762. height: math.unit(13.575, "km")
  47763. },
  47764. ]
  47765. ))
  47766. characterMakers.push(() => makeCharacter(
  47767. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  47768. {
  47769. front: {
  47770. height: math.unit(6, "feet"),
  47771. weight: math.unit(1000, "lb"),
  47772. name: "Front",
  47773. image: {
  47774. source: "./media/characters/asaya/front.svg",
  47775. extra: 1460/1200,
  47776. bottom: 71/1531
  47777. }
  47778. },
  47779. },
  47780. [
  47781. {
  47782. name: "Normal",
  47783. height: math.unit(8, "km"),
  47784. default: true
  47785. },
  47786. ]
  47787. ))
  47788. characterMakers.push(() => makeCharacter(
  47789. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  47790. {
  47791. front: {
  47792. height: math.unit(3.5, "meters"),
  47793. name: "Front",
  47794. image: {
  47795. source: "./media/characters/sarzu-and-israz/front.svg",
  47796. extra: 1570/1558,
  47797. bottom: 150/1720
  47798. },
  47799. },
  47800. back: {
  47801. height: math.unit(3.5, "meters"),
  47802. name: "Back",
  47803. image: {
  47804. source: "./media/characters/sarzu-and-israz/back.svg",
  47805. extra: 1523/1509,
  47806. bottom: 132/1655
  47807. },
  47808. },
  47809. frontFemale: {
  47810. height: math.unit(3.5, "meters"),
  47811. name: "Front (Female)",
  47812. image: {
  47813. source: "./media/characters/sarzu-and-israz/front-female.svg",
  47814. extra: 1570/1558,
  47815. bottom: 150/1720
  47816. },
  47817. },
  47818. frontHerm: {
  47819. height: math.unit(3.5, "meters"),
  47820. name: "Front (Herm)",
  47821. image: {
  47822. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  47823. extra: 1570/1558,
  47824. bottom: 150/1720
  47825. },
  47826. },
  47827. },
  47828. [
  47829. {
  47830. name: "Normal",
  47831. height: math.unit(3.5, "meters"),
  47832. default: true,
  47833. },
  47834. {
  47835. name: "Macro",
  47836. height: math.unit(65.5, "meters"),
  47837. },
  47838. ],
  47839. ))
  47840. characterMakers.push(() => makeCharacter(
  47841. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  47842. {
  47843. front: {
  47844. height: math.unit(6, "feet"),
  47845. weight: math.unit(250, "lb"),
  47846. name: "Front",
  47847. image: {
  47848. source: "./media/characters/zenimma/front.svg",
  47849. extra: 1346/1320,
  47850. bottom: 58/1404
  47851. }
  47852. },
  47853. back: {
  47854. height: math.unit(6, "feet"),
  47855. weight: math.unit(250, "lb"),
  47856. name: "Back",
  47857. image: {
  47858. source: "./media/characters/zenimma/back.svg",
  47859. extra: 1324/1308,
  47860. bottom: 44/1368
  47861. }
  47862. },
  47863. dick: {
  47864. height: math.unit(1.44, "feet"),
  47865. name: "Dick",
  47866. image: {
  47867. source: "./media/characters/zenimma/dick.svg"
  47868. }
  47869. },
  47870. },
  47871. [
  47872. {
  47873. name: "Canon Height",
  47874. height: math.unit(66, "miles"),
  47875. default: true
  47876. },
  47877. ]
  47878. ))
  47879. characterMakers.push(() => makeCharacter(
  47880. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  47881. {
  47882. nude: {
  47883. height: math.unit(6, "feet"),
  47884. weight: math.unit(150, "lb"),
  47885. name: "Nude",
  47886. image: {
  47887. source: "./media/characters/shavon/nude.svg",
  47888. extra: 1242/1096,
  47889. bottom: 98/1340
  47890. }
  47891. },
  47892. dressed: {
  47893. height: math.unit(6, "feet"),
  47894. weight: math.unit(150, "lb"),
  47895. name: "Dressed",
  47896. image: {
  47897. source: "./media/characters/shavon/dressed.svg",
  47898. extra: 1242/1096,
  47899. bottom: 98/1340
  47900. }
  47901. },
  47902. },
  47903. [
  47904. {
  47905. name: "Macro",
  47906. height: math.unit(255, "feet"),
  47907. default: true
  47908. },
  47909. ]
  47910. ))
  47911. characterMakers.push(() => makeCharacter(
  47912. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  47913. {
  47914. front: {
  47915. height: math.unit(6, "feet"),
  47916. name: "Front",
  47917. image: {
  47918. source: "./media/characters/steph/front.svg",
  47919. extra: 1430/1330,
  47920. bottom: 54/1484
  47921. }
  47922. },
  47923. },
  47924. [
  47925. {
  47926. name: "Normal",
  47927. height: math.unit(6, "feet"),
  47928. default: true
  47929. },
  47930. ]
  47931. ))
  47932. characterMakers.push(() => makeCharacter(
  47933. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  47934. {
  47935. front: {
  47936. height: math.unit(9, "feet"),
  47937. weight: math.unit(400, "lb"),
  47938. name: "Front",
  47939. image: {
  47940. source: "./media/characters/kil'aman/front.svg",
  47941. extra: 1210/1159,
  47942. bottom: 109/1319
  47943. }
  47944. },
  47945. head: {
  47946. height: math.unit(2.14, "feet"),
  47947. name: "Head",
  47948. image: {
  47949. source: "./media/characters/kil'aman/head.svg"
  47950. }
  47951. },
  47952. maw: {
  47953. height: math.unit(1.21, "feet"),
  47954. name: "Maw",
  47955. image: {
  47956. source: "./media/characters/kil'aman/maw.svg"
  47957. }
  47958. },
  47959. foot: {
  47960. height: math.unit(1.7, "feet"),
  47961. name: "Foot",
  47962. image: {
  47963. source: "./media/characters/kil'aman/foot.svg"
  47964. }
  47965. },
  47966. dick: {
  47967. height: math.unit(2.1, "feet"),
  47968. name: "Dick",
  47969. image: {
  47970. source: "./media/characters/kil'aman/dick.svg"
  47971. }
  47972. },
  47973. },
  47974. [
  47975. {
  47976. name: "Normal",
  47977. height: math.unit(9, "feet")
  47978. },
  47979. {
  47980. name: "Canon Height",
  47981. height: math.unit(10, "miles"),
  47982. default: true
  47983. },
  47984. {
  47985. name: "Maximum",
  47986. height: math.unit(6e9, "miles")
  47987. },
  47988. ]
  47989. ))
  47990. characterMakers.push(() => makeCharacter(
  47991. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  47992. {
  47993. front: {
  47994. height: math.unit(90, "feet"),
  47995. weight: math.unit(675000, "lb"),
  47996. name: "Front",
  47997. image: {
  47998. source: "./media/characters/qadan/front.svg",
  47999. extra: 1012/1004,
  48000. bottom: 78/1090
  48001. }
  48002. },
  48003. back: {
  48004. height: math.unit(90, "feet"),
  48005. weight: math.unit(675000, "lb"),
  48006. name: "Back",
  48007. image: {
  48008. source: "./media/characters/qadan/back.svg",
  48009. extra: 1042/1031,
  48010. bottom: 55/1097
  48011. }
  48012. },
  48013. armored: {
  48014. height: math.unit(90, "feet"),
  48015. weight: math.unit(675000, "lb"),
  48016. name: "Armored",
  48017. image: {
  48018. source: "./media/characters/qadan/armored.svg",
  48019. extra: 1047/1037,
  48020. bottom: 48/1095
  48021. }
  48022. },
  48023. },
  48024. [
  48025. {
  48026. name: "Normal",
  48027. height: math.unit(90, "feet"),
  48028. default: true
  48029. },
  48030. ]
  48031. ))
  48032. characterMakers.push(() => makeCharacter(
  48033. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  48034. {
  48035. front: {
  48036. height: math.unit(6, "feet"),
  48037. weight: math.unit(225, "lb"),
  48038. name: "Front",
  48039. image: {
  48040. source: "./media/characters/brooke/front.svg",
  48041. extra: 1050/1010,
  48042. bottom: 66/1116
  48043. }
  48044. },
  48045. back: {
  48046. height: math.unit(6, "feet"),
  48047. weight: math.unit(225, "lb"),
  48048. name: "Back",
  48049. image: {
  48050. source: "./media/characters/brooke/back.svg",
  48051. extra: 1053/1013,
  48052. bottom: 41/1094
  48053. }
  48054. },
  48055. dressed: {
  48056. height: math.unit(6, "feet"),
  48057. weight: math.unit(225, "lb"),
  48058. name: "Dressed",
  48059. image: {
  48060. source: "./media/characters/brooke/dressed.svg",
  48061. extra: 1050/1010,
  48062. bottom: 66/1116
  48063. }
  48064. },
  48065. },
  48066. [
  48067. {
  48068. name: "Canon Height",
  48069. height: math.unit(500, "miles"),
  48070. default: true
  48071. },
  48072. ]
  48073. ))
  48074. characterMakers.push(() => makeCharacter(
  48075. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  48076. {
  48077. front: {
  48078. height: math.unit(6 + 2/12, "feet"),
  48079. weight: math.unit(210, "lb"),
  48080. name: "Front",
  48081. image: {
  48082. source: "./media/characters/wubs/front.svg",
  48083. extra: 1345/1325,
  48084. bottom: 70/1415
  48085. }
  48086. },
  48087. back: {
  48088. height: math.unit(6 + 2/12, "feet"),
  48089. weight: math.unit(210, "lb"),
  48090. name: "Back",
  48091. image: {
  48092. source: "./media/characters/wubs/back.svg",
  48093. extra: 1296/1275,
  48094. bottom: 58/1354
  48095. }
  48096. },
  48097. },
  48098. [
  48099. {
  48100. name: "Normal",
  48101. height: math.unit(6 + 2/12, "feet"),
  48102. default: true
  48103. },
  48104. {
  48105. name: "Macro",
  48106. height: math.unit(1000, "feet")
  48107. },
  48108. {
  48109. name: "Megamacro",
  48110. height: math.unit(1, "mile")
  48111. },
  48112. ]
  48113. ))
  48114. characterMakers.push(() => makeCharacter(
  48115. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  48116. {
  48117. front: {
  48118. height: math.unit(4, "feet"),
  48119. weight: math.unit(120, "lb"),
  48120. name: "Front",
  48121. image: {
  48122. source: "./media/characters/blue/front.svg",
  48123. extra: 1636/1525,
  48124. bottom: 43/1679
  48125. }
  48126. },
  48127. back: {
  48128. height: math.unit(4, "feet"),
  48129. weight: math.unit(120, "lb"),
  48130. name: "Back",
  48131. image: {
  48132. source: "./media/characters/blue/back.svg",
  48133. extra: 1660/1560,
  48134. bottom: 57/1717
  48135. }
  48136. },
  48137. paws: {
  48138. height: math.unit(0.826, "feet"),
  48139. name: "Paws",
  48140. image: {
  48141. source: "./media/characters/blue/paws.svg"
  48142. }
  48143. },
  48144. },
  48145. [
  48146. {
  48147. name: "Micro",
  48148. height: math.unit(3, "inches")
  48149. },
  48150. {
  48151. name: "Normal",
  48152. height: math.unit(4, "feet"),
  48153. default: true
  48154. },
  48155. {
  48156. name: "Femenine Form",
  48157. height: math.unit(14, "feet")
  48158. },
  48159. {
  48160. name: "Werebat Form",
  48161. height: math.unit(18, "feet")
  48162. },
  48163. ]
  48164. ))
  48165. characterMakers.push(() => makeCharacter(
  48166. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  48167. {
  48168. female: {
  48169. height: math.unit(7 + 4/12, "feet"),
  48170. weight: math.unit(243, "lb"),
  48171. name: "Female",
  48172. image: {
  48173. source: "./media/characters/kaya/female.svg",
  48174. extra: 975/898,
  48175. bottom: 34/1009
  48176. }
  48177. },
  48178. herm: {
  48179. height: math.unit(7 + 4/12, "feet"),
  48180. weight: math.unit(243, "lb"),
  48181. name: "Herm",
  48182. image: {
  48183. source: "./media/characters/kaya/herm.svg",
  48184. extra: 975/898,
  48185. bottom: 34/1009
  48186. }
  48187. },
  48188. },
  48189. [
  48190. {
  48191. name: "Normal",
  48192. height: math.unit(7 + 4/12, "feet"),
  48193. default: true
  48194. },
  48195. ]
  48196. ))
  48197. characterMakers.push(() => makeCharacter(
  48198. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  48199. {
  48200. female: {
  48201. height: math.unit(9 + 4/12, "feet"),
  48202. weight: math.unit(398, "lb"),
  48203. name: "Female",
  48204. image: {
  48205. source: "./media/characters/kassandra/female.svg",
  48206. extra: 908/839,
  48207. bottom: 61/969
  48208. }
  48209. },
  48210. intersex: {
  48211. height: math.unit(9 + 4/12, "feet"),
  48212. weight: math.unit(398, "lb"),
  48213. name: "Intersex",
  48214. image: {
  48215. source: "./media/characters/kassandra/intersex.svg",
  48216. extra: 908/839,
  48217. bottom: 61/969
  48218. }
  48219. },
  48220. },
  48221. [
  48222. {
  48223. name: "Normal",
  48224. height: math.unit(9 + 4/12, "feet"),
  48225. default: true
  48226. },
  48227. ]
  48228. ))
  48229. characterMakers.push(() => makeCharacter(
  48230. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  48231. {
  48232. front: {
  48233. height: math.unit(3, "meters"),
  48234. name: "Front",
  48235. image: {
  48236. source: "./media/characters/amy/front.svg",
  48237. extra: 1380/1343,
  48238. bottom: 70/1450
  48239. }
  48240. },
  48241. back: {
  48242. height: math.unit(3, "meters"),
  48243. name: "Back",
  48244. image: {
  48245. source: "./media/characters/amy/back.svg",
  48246. extra: 1380/1347,
  48247. bottom: 66/1446
  48248. }
  48249. },
  48250. },
  48251. [
  48252. {
  48253. name: "Normal",
  48254. height: math.unit(3, "meters"),
  48255. default: true
  48256. },
  48257. ]
  48258. ))
  48259. characterMakers.push(() => makeCharacter(
  48260. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  48261. {
  48262. side: {
  48263. height: math.unit(47, "cm"),
  48264. weight: math.unit(10.8, "kg"),
  48265. name: "Side",
  48266. image: {
  48267. source: "./media/characters/alphaschakal/side.svg",
  48268. extra: 1058/568,
  48269. bottom: 62/1120
  48270. }
  48271. },
  48272. back: {
  48273. height: math.unit(78, "cm"),
  48274. weight: math.unit(10.8, "kg"),
  48275. name: "Back",
  48276. image: {
  48277. source: "./media/characters/alphaschakal/back.svg",
  48278. extra: 1102/942,
  48279. bottom: 185/1287
  48280. }
  48281. },
  48282. head: {
  48283. height: math.unit(28, "cm"),
  48284. name: "Head",
  48285. image: {
  48286. source: "./media/characters/alphaschakal/head.svg",
  48287. extra: 696/508,
  48288. bottom: 0/696
  48289. }
  48290. },
  48291. paw: {
  48292. height: math.unit(16, "cm"),
  48293. name: "Paw",
  48294. image: {
  48295. source: "./media/characters/alphaschakal/paw.svg"
  48296. }
  48297. },
  48298. },
  48299. [
  48300. {
  48301. name: "Normal",
  48302. height: math.unit(47, "cm"),
  48303. default: true
  48304. },
  48305. {
  48306. name: "Macro",
  48307. height: math.unit(340, "cm")
  48308. },
  48309. ]
  48310. ))
  48311. characterMakers.push(() => makeCharacter(
  48312. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  48313. {
  48314. front: {
  48315. height: math.unit(36, "earths"),
  48316. name: "Front",
  48317. image: {
  48318. source: "./media/characters/ecobyss/front.svg",
  48319. extra: 1282/1215,
  48320. bottom: 11/1293
  48321. }
  48322. },
  48323. back: {
  48324. height: math.unit(36, "earths"),
  48325. name: "Back",
  48326. image: {
  48327. source: "./media/characters/ecobyss/back.svg",
  48328. extra: 1291/1222,
  48329. bottom: 8/1299
  48330. }
  48331. },
  48332. },
  48333. [
  48334. {
  48335. name: "Normal",
  48336. height: math.unit(36, "earths"),
  48337. default: true
  48338. },
  48339. ]
  48340. ))
  48341. characterMakers.push(() => makeCharacter(
  48342. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  48343. {
  48344. front: {
  48345. height: math.unit(12, "feet"),
  48346. name: "Front",
  48347. image: {
  48348. source: "./media/characters/vasuk/front.svg",
  48349. extra: 1326/1207,
  48350. bottom: 64/1390
  48351. }
  48352. },
  48353. },
  48354. [
  48355. {
  48356. name: "Normal",
  48357. height: math.unit(12, "feet"),
  48358. default: true
  48359. },
  48360. ]
  48361. ))
  48362. characterMakers.push(() => makeCharacter(
  48363. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  48364. {
  48365. side: {
  48366. height: math.unit(100, "feet"),
  48367. name: "Side",
  48368. image: {
  48369. source: "./media/characters/linneaus/side.svg",
  48370. extra: 987/807,
  48371. bottom: 47/1034
  48372. }
  48373. },
  48374. },
  48375. [
  48376. {
  48377. name: "Macro",
  48378. height: math.unit(100, "feet"),
  48379. default: true
  48380. },
  48381. ]
  48382. ))
  48383. characterMakers.push(() => makeCharacter(
  48384. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  48385. {
  48386. front: {
  48387. height: math.unit(8, "feet"),
  48388. weight: math.unit(1200, "lb"),
  48389. name: "Front",
  48390. image: {
  48391. source: "./media/characters/nyterious-daligdig/front.svg",
  48392. extra: 1284/1094,
  48393. bottom: 84/1368
  48394. }
  48395. },
  48396. back: {
  48397. height: math.unit(8, "feet"),
  48398. weight: math.unit(1200, "lb"),
  48399. name: "Back",
  48400. image: {
  48401. source: "./media/characters/nyterious-daligdig/back.svg",
  48402. extra: 1301/1121,
  48403. bottom: 129/1430
  48404. }
  48405. },
  48406. mouth: {
  48407. height: math.unit(1.464, "feet"),
  48408. name: "Mouth",
  48409. image: {
  48410. source: "./media/characters/nyterious-daligdig/mouth.svg"
  48411. }
  48412. },
  48413. },
  48414. [
  48415. {
  48416. name: "Small",
  48417. height: math.unit(8, "feet"),
  48418. default: true
  48419. },
  48420. {
  48421. name: "Normal",
  48422. height: math.unit(15, "feet")
  48423. },
  48424. {
  48425. name: "Macro",
  48426. height: math.unit(90, "feet")
  48427. },
  48428. ]
  48429. ))
  48430. characterMakers.push(() => makeCharacter(
  48431. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  48432. {
  48433. front: {
  48434. height: math.unit(7 + 4/12, "feet"),
  48435. weight: math.unit(252, "lb"),
  48436. name: "Front",
  48437. image: {
  48438. source: "./media/characters/bandel/front.svg",
  48439. extra: 1946/1775,
  48440. bottom: 26/1972
  48441. }
  48442. },
  48443. back: {
  48444. height: math.unit(7 + 4/12, "feet"),
  48445. weight: math.unit(252, "lb"),
  48446. name: "Back",
  48447. image: {
  48448. source: "./media/characters/bandel/back.svg",
  48449. extra: 1940/1770,
  48450. bottom: 25/1965
  48451. }
  48452. },
  48453. maw: {
  48454. height: math.unit(2.15, "feet"),
  48455. name: "Maw",
  48456. image: {
  48457. source: "./media/characters/bandel/maw.svg"
  48458. }
  48459. },
  48460. stomach: {
  48461. height: math.unit(1.95, "feet"),
  48462. name: "Stomach",
  48463. image: {
  48464. source: "./media/characters/bandel/stomach.svg"
  48465. }
  48466. },
  48467. },
  48468. [
  48469. {
  48470. name: "Normal",
  48471. height: math.unit(7 + 4/12, "feet"),
  48472. default: true
  48473. },
  48474. ]
  48475. ))
  48476. characterMakers.push(() => makeCharacter(
  48477. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  48478. {
  48479. front: {
  48480. height: math.unit(10 + 5/12, "feet"),
  48481. weight: math.unit(773.5, "kg"),
  48482. name: "Front",
  48483. image: {
  48484. source: "./media/characters/zed/front.svg",
  48485. extra: 987/941,
  48486. bottom: 52/1039
  48487. }
  48488. },
  48489. },
  48490. [
  48491. {
  48492. name: "Short",
  48493. height: math.unit(5 + 4/12, "feet")
  48494. },
  48495. {
  48496. name: "Average",
  48497. height: math.unit(10 + 5/12, "feet"),
  48498. default: true
  48499. },
  48500. {
  48501. name: "Mini-Macro",
  48502. height: math.unit(24 + 9/12, "feet")
  48503. },
  48504. {
  48505. name: "Macro",
  48506. height: math.unit(249, "feet")
  48507. },
  48508. {
  48509. name: "Mega-Macro",
  48510. height: math.unit(12490, "feet")
  48511. },
  48512. {
  48513. name: "Giga-Macro",
  48514. height: math.unit(24.9, "miles")
  48515. },
  48516. {
  48517. name: "Tera-Macro",
  48518. height: math.unit(24900, "miles")
  48519. },
  48520. {
  48521. name: "Cosmic Scale",
  48522. height: math.unit(38.9, "lightyears")
  48523. },
  48524. {
  48525. name: "Universal Scale",
  48526. height: math.unit(138e12, "lightyears")
  48527. },
  48528. ]
  48529. ))
  48530. characterMakers.push(() => makeCharacter(
  48531. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  48532. {
  48533. front: {
  48534. height: math.unit(1561, "inches"),
  48535. name: "Front",
  48536. image: {
  48537. source: "./media/characters/ivan/front.svg",
  48538. extra: 1126/1071,
  48539. bottom: 26/1152
  48540. }
  48541. },
  48542. back: {
  48543. height: math.unit(1561, "inches"),
  48544. name: "Back",
  48545. image: {
  48546. source: "./media/characters/ivan/back.svg",
  48547. extra: 1134/1079,
  48548. bottom: 30/1164
  48549. }
  48550. },
  48551. },
  48552. [
  48553. {
  48554. name: "Normal",
  48555. height: math.unit(1561, "inches"),
  48556. default: true
  48557. },
  48558. ]
  48559. ))
  48560. characterMakers.push(() => makeCharacter(
  48561. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  48562. {
  48563. front: {
  48564. height: math.unit(5 + 7/12, "feet"),
  48565. weight: math.unit(150, "lb"),
  48566. name: "Front",
  48567. image: {
  48568. source: "./media/characters/robin-arctic-hare/front.svg",
  48569. extra: 1148/974,
  48570. bottom: 20/1168
  48571. }
  48572. },
  48573. },
  48574. [
  48575. {
  48576. name: "Normal",
  48577. height: math.unit(5 + 7/12, "feet"),
  48578. default: true
  48579. },
  48580. ]
  48581. ))
  48582. characterMakers.push(() => makeCharacter(
  48583. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  48584. {
  48585. side: {
  48586. height: math.unit(5, "feet"),
  48587. name: "Side",
  48588. image: {
  48589. source: "./media/characters/birch/side.svg",
  48590. extra: 985/796,
  48591. bottom: 111/1096
  48592. }
  48593. },
  48594. },
  48595. [
  48596. {
  48597. name: "Normal",
  48598. height: math.unit(5, "feet"),
  48599. default: true
  48600. },
  48601. ]
  48602. ))
  48603. characterMakers.push(() => makeCharacter(
  48604. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  48605. {
  48606. front: {
  48607. height: math.unit(4, "feet"),
  48608. name: "Front",
  48609. image: {
  48610. source: "./media/characters/rasp/front.svg",
  48611. extra: 561/478,
  48612. bottom: 74/635
  48613. }
  48614. },
  48615. },
  48616. [
  48617. {
  48618. name: "Normal",
  48619. height: math.unit(4, "feet"),
  48620. default: true
  48621. },
  48622. ]
  48623. ))
  48624. characterMakers.push(() => makeCharacter(
  48625. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  48626. {
  48627. front: {
  48628. height: math.unit(4 + 6/12, "feet"),
  48629. name: "Front",
  48630. image: {
  48631. source: "./media/characters/agatha/front.svg",
  48632. extra: 947/933,
  48633. bottom: 42/989
  48634. }
  48635. },
  48636. back: {
  48637. height: math.unit(4 + 6/12, "feet"),
  48638. name: "Back",
  48639. image: {
  48640. source: "./media/characters/agatha/back.svg",
  48641. extra: 935/922,
  48642. bottom: 48/983
  48643. }
  48644. },
  48645. },
  48646. [
  48647. {
  48648. name: "Normal",
  48649. height: math.unit(4 + 6 /12, "feet"),
  48650. default: true
  48651. },
  48652. {
  48653. name: "Max Size",
  48654. height: math.unit(500, "feet")
  48655. },
  48656. ]
  48657. ))
  48658. characterMakers.push(() => makeCharacter(
  48659. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  48660. {
  48661. side: {
  48662. height: math.unit(30, "feet"),
  48663. name: "Side",
  48664. image: {
  48665. source: "./media/characters/roggy/side.svg",
  48666. extra: 909/643,
  48667. bottom: 63/972
  48668. }
  48669. },
  48670. lounging: {
  48671. height: math.unit(20, "feet"),
  48672. name: "Lounging",
  48673. image: {
  48674. source: "./media/characters/roggy/lounging.svg",
  48675. extra: 643/479,
  48676. bottom: 145/788
  48677. }
  48678. },
  48679. handpaw: {
  48680. height: math.unit(13.1, "feet"),
  48681. name: "Handpaw",
  48682. image: {
  48683. source: "./media/characters/roggy/handpaw.svg"
  48684. }
  48685. },
  48686. footpaw: {
  48687. height: math.unit(15.8, "feet"),
  48688. name: "Footpaw",
  48689. image: {
  48690. source: "./media/characters/roggy/footpaw.svg"
  48691. }
  48692. },
  48693. },
  48694. [
  48695. {
  48696. name: "Menacing",
  48697. height: math.unit(30, "feet"),
  48698. default: true
  48699. },
  48700. ]
  48701. ))
  48702. characterMakers.push(() => makeCharacter(
  48703. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  48704. {
  48705. front: {
  48706. height: math.unit(5 + 7/12, "feet"),
  48707. weight: math.unit(135, "lb"),
  48708. name: "Front",
  48709. image: {
  48710. source: "./media/characters/naomi/front.svg",
  48711. extra: 1209/1154,
  48712. bottom: 129/1338
  48713. }
  48714. },
  48715. back: {
  48716. height: math.unit(5 + 7/12, "feet"),
  48717. weight: math.unit(135, "lb"),
  48718. name: "Back",
  48719. image: {
  48720. source: "./media/characters/naomi/back.svg",
  48721. extra: 1252/1190,
  48722. bottom: 23/1275
  48723. }
  48724. },
  48725. },
  48726. [
  48727. {
  48728. name: "Normal",
  48729. height: math.unit(5 + 7 /12, "feet"),
  48730. default: true
  48731. },
  48732. ]
  48733. ))
  48734. characterMakers.push(() => makeCharacter(
  48735. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  48736. {
  48737. side: {
  48738. height: math.unit(35, "meters"),
  48739. name: "Side",
  48740. image: {
  48741. source: "./media/characters/kimpi/side.svg",
  48742. extra: 419/382,
  48743. bottom: 63/482
  48744. }
  48745. },
  48746. hand: {
  48747. height: math.unit(8.96, "meters"),
  48748. name: "Hand",
  48749. image: {
  48750. source: "./media/characters/kimpi/hand.svg"
  48751. }
  48752. },
  48753. },
  48754. [
  48755. {
  48756. name: "Normal",
  48757. height: math.unit(35, "meters"),
  48758. default: true
  48759. },
  48760. ]
  48761. ))
  48762. characterMakers.push(() => makeCharacter(
  48763. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  48764. {
  48765. front: {
  48766. height: math.unit(4 + 4/12, "feet"),
  48767. name: "Front",
  48768. image: {
  48769. source: "./media/characters/pepper-purrloin/front.svg",
  48770. extra: 1141/1024,
  48771. bottom: 21/1162
  48772. }
  48773. },
  48774. },
  48775. [
  48776. {
  48777. name: "Normal",
  48778. height: math.unit(4 + 4/12, "feet"),
  48779. default: true
  48780. },
  48781. ]
  48782. ))
  48783. characterMakers.push(() => makeCharacter(
  48784. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  48785. {
  48786. front: {
  48787. height: math.unit(6 + 2/12, "feet"),
  48788. name: "Front",
  48789. image: {
  48790. source: "./media/characters/raphael/front.svg",
  48791. extra: 1101/962,
  48792. bottom: 59/1160
  48793. }
  48794. },
  48795. },
  48796. [
  48797. {
  48798. name: "Normal",
  48799. height: math.unit(6 + 2/12, "feet"),
  48800. default: true
  48801. },
  48802. ]
  48803. ))
  48804. characterMakers.push(() => makeCharacter(
  48805. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  48806. {
  48807. front: {
  48808. height: math.unit(6, "feet"),
  48809. weight: math.unit(150, "lb"),
  48810. name: "Front",
  48811. image: {
  48812. source: "./media/characters/victor-williams/front.svg",
  48813. extra: 1894/1825,
  48814. bottom: 67/1961
  48815. }
  48816. },
  48817. },
  48818. [
  48819. {
  48820. name: "Normal",
  48821. height: math.unit(6, "feet"),
  48822. default: true
  48823. },
  48824. ]
  48825. ))
  48826. characterMakers.push(() => makeCharacter(
  48827. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  48828. {
  48829. front: {
  48830. height: math.unit(5 + 8/12, "feet"),
  48831. weight: math.unit(150, "lb"),
  48832. name: "Front",
  48833. image: {
  48834. source: "./media/characters/rachel/front.svg",
  48835. extra: 1902/1787,
  48836. bottom: 46/1948
  48837. }
  48838. },
  48839. },
  48840. [
  48841. {
  48842. name: "Base Height",
  48843. height: math.unit(5 + 8/12, "feet"),
  48844. default: true
  48845. },
  48846. {
  48847. name: "Macro",
  48848. height: math.unit(200, "feet")
  48849. },
  48850. {
  48851. name: "Mega Macro",
  48852. height: math.unit(1, "mile")
  48853. },
  48854. {
  48855. name: "Giga Macro",
  48856. height: math.unit(1500, "miles")
  48857. },
  48858. {
  48859. name: "Tera Macro",
  48860. height: math.unit(8000, "miles")
  48861. },
  48862. {
  48863. name: "Tera Macro+",
  48864. height: math.unit(2e5, "miles")
  48865. },
  48866. ]
  48867. ))
  48868. characterMakers.push(() => makeCharacter(
  48869. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  48870. {
  48871. front: {
  48872. height: math.unit(6.5, "feet"),
  48873. name: "Front",
  48874. image: {
  48875. source: "./media/characters/svetlana-rozovskaya/front.svg",
  48876. extra: 860/819,
  48877. bottom: 307/1167
  48878. }
  48879. },
  48880. back: {
  48881. height: math.unit(6.5, "feet"),
  48882. name: "Back",
  48883. image: {
  48884. source: "./media/characters/svetlana-rozovskaya/back.svg",
  48885. extra: 880/837,
  48886. bottom: 395/1275
  48887. }
  48888. },
  48889. sleeping: {
  48890. height: math.unit(2.79, "feet"),
  48891. name: "Sleeping",
  48892. image: {
  48893. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  48894. extra: 465/383,
  48895. bottom: 263/728
  48896. }
  48897. },
  48898. maw: {
  48899. height: math.unit(2.52, "feet"),
  48900. name: "Maw",
  48901. image: {
  48902. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  48903. }
  48904. },
  48905. },
  48906. [
  48907. {
  48908. name: "Normal",
  48909. height: math.unit(6.5, "feet"),
  48910. default: true
  48911. },
  48912. ]
  48913. ))
  48914. characterMakers.push(() => makeCharacter(
  48915. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  48916. {
  48917. front: {
  48918. height: math.unit(5, "feet"),
  48919. name: "Front",
  48920. image: {
  48921. source: "./media/characters/nova-nerium/front.svg",
  48922. extra: 1548/1392,
  48923. bottom: 374/1922
  48924. }
  48925. },
  48926. back: {
  48927. height: math.unit(5, "feet"),
  48928. name: "Back",
  48929. image: {
  48930. source: "./media/characters/nova-nerium/back.svg",
  48931. extra: 1658/1468,
  48932. bottom: 257/1915
  48933. }
  48934. },
  48935. },
  48936. [
  48937. {
  48938. name: "Normal",
  48939. height: math.unit(5, "feet"),
  48940. default: true
  48941. },
  48942. ]
  48943. ))
  48944. characterMakers.push(() => makeCharacter(
  48945. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  48946. {
  48947. front: {
  48948. height: math.unit(5 + 4/12, "feet"),
  48949. name: "Front",
  48950. image: {
  48951. source: "./media/characters/ashe-pyriph/front.svg",
  48952. extra: 1935/1747,
  48953. bottom: 60/1995
  48954. }
  48955. },
  48956. },
  48957. [
  48958. {
  48959. name: "Normal",
  48960. height: math.unit(5 + 4/12, "feet"),
  48961. default: true
  48962. },
  48963. ]
  48964. ))
  48965. characterMakers.push(() => makeCharacter(
  48966. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  48967. {
  48968. front: {
  48969. height: math.unit(8.7, "feet"),
  48970. name: "Front",
  48971. image: {
  48972. source: "./media/characters/flicker-wisp/front.svg",
  48973. extra: 1835/1613,
  48974. bottom: 449/2284
  48975. }
  48976. },
  48977. side: {
  48978. height: math.unit(8.7, "feet"),
  48979. name: "Side",
  48980. image: {
  48981. source: "./media/characters/flicker-wisp/side.svg",
  48982. extra: 1841/1642,
  48983. bottom: 336/2177
  48984. },
  48985. default: true
  48986. },
  48987. maw: {
  48988. height: math.unit(3.35, "feet"),
  48989. name: "Maw",
  48990. image: {
  48991. source: "./media/characters/flicker-wisp/maw.svg",
  48992. extra: 2338/1506,
  48993. bottom: 0/2338
  48994. }
  48995. },
  48996. ovipositor: {
  48997. height: math.unit(4.95, "feet"),
  48998. name: "Ovipositor",
  48999. image: {
  49000. source: "./media/characters/flicker-wisp/ovipositor.svg"
  49001. }
  49002. },
  49003. egg: {
  49004. height: math.unit(0.385, "feet"),
  49005. weight: math.unit(2, "lb"),
  49006. name: "Egg",
  49007. image: {
  49008. source: "./media/characters/flicker-wisp/egg.svg"
  49009. }
  49010. },
  49011. },
  49012. [
  49013. {
  49014. name: "Normal",
  49015. height: math.unit(8.7, "feet"),
  49016. default: true
  49017. },
  49018. ]
  49019. ))
  49020. characterMakers.push(() => makeCharacter(
  49021. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  49022. {
  49023. side: {
  49024. height: math.unit(11, "feet"),
  49025. name: "Side",
  49026. image: {
  49027. source: "./media/characters/faefnul/side.svg",
  49028. extra: 1100/1007,
  49029. bottom: 0/1100
  49030. }
  49031. },
  49032. },
  49033. [
  49034. {
  49035. name: "Normal",
  49036. height: math.unit(11, "feet"),
  49037. default: true
  49038. },
  49039. ]
  49040. ))
  49041. characterMakers.push(() => makeCharacter(
  49042. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  49043. {
  49044. front: {
  49045. height: math.unit(6 + 2/12, "feet"),
  49046. name: "Front",
  49047. image: {
  49048. source: "./media/characters/shady/front.svg",
  49049. extra: 502/461,
  49050. bottom: 9/511
  49051. }
  49052. },
  49053. kneeling: {
  49054. height: math.unit(4.6, "feet"),
  49055. name: "Kneeling",
  49056. image: {
  49057. source: "./media/characters/shady/kneeling.svg",
  49058. extra: 1328/1219,
  49059. bottom: 117/1445
  49060. }
  49061. },
  49062. maw: {
  49063. height: math.unit(2, "feet"),
  49064. name: "Maw",
  49065. image: {
  49066. source: "./media/characters/shady/maw.svg"
  49067. }
  49068. },
  49069. },
  49070. [
  49071. {
  49072. name: "Nano",
  49073. height: math.unit(1, "mm")
  49074. },
  49075. {
  49076. name: "Micro",
  49077. height: math.unit(12, "mm")
  49078. },
  49079. {
  49080. name: "Tiny",
  49081. height: math.unit(3, "inches")
  49082. },
  49083. {
  49084. name: "Normal",
  49085. height: math.unit(6 + 2/12, "feet"),
  49086. default: true
  49087. },
  49088. {
  49089. name: "Big",
  49090. height: math.unit(15, "feet")
  49091. },
  49092. {
  49093. name: "Macro",
  49094. height: math.unit(150, "feet")
  49095. },
  49096. {
  49097. name: "Titanic",
  49098. height: math.unit(500, "feet")
  49099. },
  49100. ]
  49101. ))
  49102. characterMakers.push(() => makeCharacter(
  49103. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  49104. {
  49105. front: {
  49106. height: math.unit(12, "feet"),
  49107. name: "Front",
  49108. image: {
  49109. source: "./media/characters/fenrir/front.svg",
  49110. extra: 968/875,
  49111. bottom: 22/990
  49112. }
  49113. },
  49114. },
  49115. [
  49116. {
  49117. name: "Big",
  49118. height: math.unit(12, "feet"),
  49119. default: true
  49120. },
  49121. ]
  49122. ))
  49123. characterMakers.push(() => makeCharacter(
  49124. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  49125. {
  49126. front: {
  49127. height: math.unit(5 + 4/12, "feet"),
  49128. name: "Front",
  49129. image: {
  49130. source: "./media/characters/makar/front.svg",
  49131. extra: 1181/1112,
  49132. bottom: 78/1259
  49133. }
  49134. },
  49135. },
  49136. [
  49137. {
  49138. name: "Normal",
  49139. height: math.unit(5 + 4/12, "feet"),
  49140. default: true
  49141. },
  49142. ]
  49143. ))
  49144. characterMakers.push(() => makeCharacter(
  49145. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  49146. {
  49147. front: {
  49148. height: math.unit(5 + 7/12, "feet"),
  49149. name: "Front",
  49150. image: {
  49151. source: "./media/characters/callow/front.svg",
  49152. extra: 1482/1304,
  49153. bottom: 23/1505
  49154. }
  49155. },
  49156. back: {
  49157. height: math.unit(5 + 7/12, "feet"),
  49158. name: "Back",
  49159. image: {
  49160. source: "./media/characters/callow/back.svg",
  49161. extra: 1484/1296,
  49162. bottom: 25/1509
  49163. }
  49164. },
  49165. },
  49166. [
  49167. {
  49168. name: "Micro",
  49169. height: math.unit(3, "inches"),
  49170. default: true
  49171. },
  49172. {
  49173. name: "Normal",
  49174. height: math.unit(5 + 7/12, "feet")
  49175. },
  49176. ]
  49177. ))
  49178. characterMakers.push(() => makeCharacter(
  49179. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  49180. {
  49181. front: {
  49182. height: math.unit(6 + 2/12, "feet"),
  49183. name: "Front",
  49184. image: {
  49185. source: "./media/characters/natel/front.svg",
  49186. extra: 1833/1692,
  49187. bottom: 166/1999
  49188. }
  49189. },
  49190. },
  49191. [
  49192. {
  49193. name: "Normal",
  49194. height: math.unit(6 + 2/12, "feet"),
  49195. default: true
  49196. },
  49197. ]
  49198. ))
  49199. characterMakers.push(() => makeCharacter(
  49200. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  49201. {
  49202. front: {
  49203. height: math.unit(1.75, "meters"),
  49204. name: "Front",
  49205. image: {
  49206. source: "./media/characters/misu/front.svg",
  49207. extra: 1690/1558,
  49208. bottom: 234/1924
  49209. }
  49210. },
  49211. back: {
  49212. height: math.unit(1.75, "meters"),
  49213. name: "Back",
  49214. image: {
  49215. source: "./media/characters/misu/back.svg",
  49216. extra: 1762/1618,
  49217. bottom: 146/1908
  49218. }
  49219. },
  49220. frontNude: {
  49221. height: math.unit(1.75, "meters"),
  49222. name: "Front (Nude)",
  49223. image: {
  49224. source: "./media/characters/misu/front-nude.svg",
  49225. extra: 1690/1558,
  49226. bottom: 234/1924
  49227. }
  49228. },
  49229. backNude: {
  49230. height: math.unit(1.75, "meters"),
  49231. name: "Back (Nude)",
  49232. image: {
  49233. source: "./media/characters/misu/back-nude.svg",
  49234. extra: 1762/1618,
  49235. bottom: 146/1908
  49236. }
  49237. },
  49238. frontErect: {
  49239. height: math.unit(1.75, "meters"),
  49240. name: "Front (Erect)",
  49241. image: {
  49242. source: "./media/characters/misu/front-erect.svg",
  49243. extra: 1690/1558,
  49244. bottom: 234/1924
  49245. }
  49246. },
  49247. maw: {
  49248. height: math.unit(0.47, "meters"),
  49249. name: "Maw",
  49250. image: {
  49251. source: "./media/characters/misu/maw.svg"
  49252. }
  49253. },
  49254. head: {
  49255. height: math.unit(0.35, "meters"),
  49256. name: "Head",
  49257. image: {
  49258. source: "./media/characters/misu/head.svg"
  49259. }
  49260. },
  49261. rear: {
  49262. height: math.unit(0.47, "meters"),
  49263. name: "Rear",
  49264. image: {
  49265. source: "./media/characters/misu/rear.svg"
  49266. }
  49267. },
  49268. },
  49269. [
  49270. {
  49271. name: "Normal",
  49272. height: math.unit(1.75, "meters")
  49273. },
  49274. {
  49275. name: "Not good for the people",
  49276. height: math.unit(42, "meters")
  49277. },
  49278. {
  49279. name: "Not good for the neighborhood",
  49280. height: math.unit(135, "meters")
  49281. },
  49282. {
  49283. name: "Bit bigger problem",
  49284. height: math.unit(380, "meters"),
  49285. default: true
  49286. },
  49287. {
  49288. name: "Not good for the city",
  49289. height: math.unit(1.5, "km")
  49290. },
  49291. {
  49292. name: "Not good for the county",
  49293. height: math.unit(5.5, "km")
  49294. },
  49295. {
  49296. name: "Not good for the state",
  49297. height: math.unit(25, "km")
  49298. },
  49299. {
  49300. name: "Not good for the country",
  49301. height: math.unit(125, "km")
  49302. },
  49303. {
  49304. name: "Not good for the continent",
  49305. height: math.unit(2100, "km")
  49306. },
  49307. {
  49308. name: "Not good for the planet",
  49309. height: math.unit(35000, "km")
  49310. },
  49311. {
  49312. name: "Just no",
  49313. height: math.unit(8.5e18, "km")
  49314. },
  49315. ]
  49316. ))
  49317. characterMakers.push(() => makeCharacter(
  49318. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  49319. {
  49320. front: {
  49321. height: math.unit(6.5, "feet"),
  49322. name: "Front",
  49323. image: {
  49324. source: "./media/characters/poppy/front.svg",
  49325. extra: 1878/1812,
  49326. bottom: 43/1921
  49327. }
  49328. },
  49329. feet: {
  49330. height: math.unit(1.06, "feet"),
  49331. name: "Feet",
  49332. image: {
  49333. source: "./media/characters/poppy/feet.svg",
  49334. extra: 1083/1083,
  49335. bottom: 87/1170
  49336. }
  49337. },
  49338. },
  49339. [
  49340. {
  49341. name: "Human",
  49342. height: math.unit(6.5, "feet")
  49343. },
  49344. {
  49345. name: "Default",
  49346. height: math.unit(300, "feet"),
  49347. default: true
  49348. },
  49349. {
  49350. name: "Huge",
  49351. height: math.unit(850, "feet")
  49352. },
  49353. {
  49354. name: "Mega",
  49355. height: math.unit(8000, "feet")
  49356. },
  49357. {
  49358. name: "Giga",
  49359. height: math.unit(300, "miles")
  49360. },
  49361. ]
  49362. ))
  49363. characterMakers.push(() => makeCharacter(
  49364. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  49365. {
  49366. bipedal: {
  49367. height: math.unit(7, "feet"),
  49368. name: "Bipedal",
  49369. image: {
  49370. source: "./media/characters/zener/bipedal.svg",
  49371. extra: 874/805,
  49372. bottom: 109/983
  49373. }
  49374. },
  49375. quadrupedal: {
  49376. height: math.unit(4.64, "feet"),
  49377. name: "Quadrupedal",
  49378. image: {
  49379. source: "./media/characters/zener/quadrupedal.svg",
  49380. extra: 638/507,
  49381. bottom: 190/828
  49382. }
  49383. },
  49384. cock: {
  49385. height: math.unit(18, "inches"),
  49386. name: "Cock",
  49387. image: {
  49388. source: "./media/characters/zener/cock.svg"
  49389. }
  49390. },
  49391. },
  49392. [
  49393. {
  49394. name: "Normal",
  49395. height: math.unit(7, "feet"),
  49396. default: true
  49397. },
  49398. ]
  49399. ))
  49400. characterMakers.push(() => makeCharacter(
  49401. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  49402. {
  49403. nude: {
  49404. height: math.unit(5 + 6/12, "feet"),
  49405. name: "Nude",
  49406. image: {
  49407. source: "./media/characters/charlie-dog/nude.svg",
  49408. extra: 768/734,
  49409. bottom: 26/794
  49410. }
  49411. },
  49412. dressed: {
  49413. height: math.unit(5 + 6/12, "feet"),
  49414. name: "Dressed",
  49415. image: {
  49416. source: "./media/characters/charlie-dog/dressed.svg",
  49417. extra: 768/734,
  49418. bottom: 26/794
  49419. }
  49420. },
  49421. },
  49422. [
  49423. {
  49424. name: "Normal",
  49425. height: math.unit(5 + 6/12, "feet"),
  49426. default: true
  49427. },
  49428. ]
  49429. ))
  49430. characterMakers.push(() => makeCharacter(
  49431. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  49432. {
  49433. front: {
  49434. height: math.unit(6 + 4/12, "feet"),
  49435. name: "Front",
  49436. image: {
  49437. source: "./media/characters/ir'istrasz/front.svg",
  49438. extra: 1014/977,
  49439. bottom: 65/1079
  49440. }
  49441. },
  49442. back: {
  49443. height: math.unit(6 + 4/12, "feet"),
  49444. name: "Back",
  49445. image: {
  49446. source: "./media/characters/ir'istrasz/back.svg",
  49447. extra: 1024/992,
  49448. bottom: 34/1058
  49449. }
  49450. },
  49451. },
  49452. [
  49453. {
  49454. name: "Normal",
  49455. height: math.unit(6 + 4/12, "feet"),
  49456. default: true
  49457. },
  49458. ]
  49459. ))
  49460. characterMakers.push(() => makeCharacter(
  49461. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  49462. {
  49463. front: {
  49464. height: math.unit(5 + 8/12, "feet"),
  49465. name: "Front",
  49466. image: {
  49467. source: "./media/characters/dee-ditto/front.svg",
  49468. extra: 1874/1785,
  49469. bottom: 68/1942
  49470. }
  49471. },
  49472. back: {
  49473. height: math.unit(5 + 8/12, "feet"),
  49474. name: "Back",
  49475. image: {
  49476. source: "./media/characters/dee-ditto/back.svg",
  49477. extra: 1870/1783,
  49478. bottom: 77/1947
  49479. }
  49480. },
  49481. },
  49482. [
  49483. {
  49484. name: "Normal",
  49485. height: math.unit(5 + 8/12, "feet"),
  49486. default: true
  49487. },
  49488. ]
  49489. ))
  49490. characterMakers.push(() => makeCharacter(
  49491. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  49492. {
  49493. front: {
  49494. height: math.unit(7 + 6/12, "feet"),
  49495. name: "Front",
  49496. image: {
  49497. source: "./media/characters/fey/front.svg",
  49498. extra: 995/979,
  49499. bottom: 30/1025
  49500. }
  49501. },
  49502. back: {
  49503. height: math.unit(7 + 6/12, "feet"),
  49504. name: "Back",
  49505. image: {
  49506. source: "./media/characters/fey/back.svg",
  49507. extra: 1079/1008,
  49508. bottom: 5/1084
  49509. }
  49510. },
  49511. dressed: {
  49512. height: math.unit(7 + 6/12, "feet"),
  49513. name: "Dressed",
  49514. image: {
  49515. source: "./media/characters/fey/dressed.svg",
  49516. extra: 995/979,
  49517. bottom: 30/1025
  49518. }
  49519. },
  49520. },
  49521. [
  49522. {
  49523. name: "Normal",
  49524. height: math.unit(7 + 6/12, "feet"),
  49525. default: true
  49526. },
  49527. ]
  49528. ))
  49529. characterMakers.push(() => makeCharacter(
  49530. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  49531. {
  49532. standing: {
  49533. height: math.unit(17, "feet"),
  49534. name: "Standing",
  49535. image: {
  49536. source: "./media/characters/aster/standing.svg",
  49537. extra: 1798/1598,
  49538. bottom: 117/1915
  49539. }
  49540. },
  49541. },
  49542. [
  49543. {
  49544. name: "Normal",
  49545. height: math.unit(17, "feet"),
  49546. default: true
  49547. },
  49548. {
  49549. name: "Homewrecker",
  49550. height: math.unit(95, "feet")
  49551. },
  49552. {
  49553. name: "Planet Devourer",
  49554. height: math.unit(1008000, "miles")
  49555. },
  49556. ]
  49557. ))
  49558. characterMakers.push(() => makeCharacter(
  49559. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  49560. {
  49561. front: {
  49562. height: math.unit(6 + 5/12, "feet"),
  49563. weight: math.unit(265, "lb"),
  49564. name: "Front",
  49565. image: {
  49566. source: "./media/characters/devon-childs/front.svg",
  49567. extra: 1795/1721,
  49568. bottom: 41/1836
  49569. }
  49570. },
  49571. side: {
  49572. height: math.unit(6 + 5/12, "feet"),
  49573. weight: math.unit(265, "lb"),
  49574. name: "Side",
  49575. image: {
  49576. source: "./media/characters/devon-childs/side.svg",
  49577. extra: 1812/1738,
  49578. bottom: 30/1842
  49579. }
  49580. },
  49581. back: {
  49582. height: math.unit(6 + 5/12, "feet"),
  49583. weight: math.unit(265, "lb"),
  49584. name: "Back",
  49585. image: {
  49586. source: "./media/characters/devon-childs/back.svg",
  49587. extra: 1808/1735,
  49588. bottom: 23/1831
  49589. }
  49590. },
  49591. hand: {
  49592. height: math.unit(1.464, "feet"),
  49593. name: "Hand",
  49594. image: {
  49595. source: "./media/characters/devon-childs/hand.svg"
  49596. }
  49597. },
  49598. foot: {
  49599. height: math.unit(1.6, "feet"),
  49600. name: "Foot",
  49601. image: {
  49602. source: "./media/characters/devon-childs/foot.svg"
  49603. }
  49604. },
  49605. },
  49606. [
  49607. {
  49608. name: "Micro",
  49609. height: math.unit(7, "cm")
  49610. },
  49611. {
  49612. name: "Normal",
  49613. height: math.unit(6 + 5/12, "feet"),
  49614. default: true
  49615. },
  49616. {
  49617. name: "Macro",
  49618. height: math.unit(154, "feet")
  49619. },
  49620. ]
  49621. ))
  49622. characterMakers.push(() => makeCharacter(
  49623. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  49624. {
  49625. front: {
  49626. height: math.unit(6, "feet"),
  49627. weight: math.unit(180, "lb"),
  49628. name: "Front",
  49629. image: {
  49630. source: "./media/characters/lydemox-vir/front.svg",
  49631. extra: 1632/1435,
  49632. bottom: 58/1690
  49633. }
  49634. },
  49635. frontSFW: {
  49636. height: math.unit(6, "feet"),
  49637. weight: math.unit(180, "lb"),
  49638. name: "Front (SFW)",
  49639. image: {
  49640. source: "./media/characters/lydemox-vir/front-sfw.svg",
  49641. extra: 1632/1435,
  49642. bottom: 58/1690
  49643. }
  49644. },
  49645. back: {
  49646. height: math.unit(6, "feet"),
  49647. weight: math.unit(180, "lb"),
  49648. name: "Back",
  49649. image: {
  49650. source: "./media/characters/lydemox-vir/back.svg",
  49651. extra: 1593/1408,
  49652. bottom: 31/1624
  49653. }
  49654. },
  49655. paw: {
  49656. height: math.unit(1.85, "feet"),
  49657. name: "Paw",
  49658. image: {
  49659. source: "./media/characters/lydemox-vir/paw.svg"
  49660. }
  49661. },
  49662. dick: {
  49663. height: math.unit(1.8, "feet"),
  49664. name: "Dick",
  49665. image: {
  49666. source: "./media/characters/lydemox-vir/dick.svg"
  49667. }
  49668. },
  49669. },
  49670. [
  49671. {
  49672. name: "Macro",
  49673. height: math.unit(100, "feet"),
  49674. default: true
  49675. },
  49676. {
  49677. name: "Teramacro",
  49678. height: math.unit(1, "earth")
  49679. },
  49680. {
  49681. name: "Planetary",
  49682. height: math.unit(20, "earths")
  49683. },
  49684. ]
  49685. ))
  49686. characterMakers.push(() => makeCharacter(
  49687. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  49688. {
  49689. front: {
  49690. height: math.unit(15 + 8/12, "feet"),
  49691. weight: math.unit(1237, "kg"),
  49692. name: "Front",
  49693. image: {
  49694. source: "./media/characters/mia/front.svg",
  49695. extra: 1573/1446,
  49696. bottom: 58/1631
  49697. }
  49698. },
  49699. },
  49700. [
  49701. {
  49702. name: "Small",
  49703. height: math.unit(9 + 5/12, "feet")
  49704. },
  49705. {
  49706. name: "Normal",
  49707. height: math.unit(15 + 8/12, "feet"),
  49708. default: true
  49709. },
  49710. ]
  49711. ))
  49712. characterMakers.push(() => makeCharacter(
  49713. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  49714. {
  49715. front: {
  49716. height: math.unit(10 + 6/12, "feet"),
  49717. weight: math.unit(1.3, "tons"),
  49718. name: "Front",
  49719. image: {
  49720. source: "./media/characters/mr-graves/front.svg",
  49721. extra: 1779/1695,
  49722. bottom: 198/1977
  49723. }
  49724. },
  49725. },
  49726. [
  49727. {
  49728. name: "Normal",
  49729. height: math.unit(10 + 6 /12, "feet"),
  49730. default: true
  49731. },
  49732. ]
  49733. ))
  49734. characterMakers.push(() => makeCharacter(
  49735. { name: "Jess", species: ["human"], tags: ["anthro"] },
  49736. {
  49737. dressedFront: {
  49738. height: math.unit(5 + 8/12, "feet"),
  49739. weight: math.unit(125, "lb"),
  49740. name: "Dressed (Front)",
  49741. image: {
  49742. source: "./media/characters/jess/dressed-front.svg",
  49743. extra: 1176/1152,
  49744. bottom: 42/1218
  49745. }
  49746. },
  49747. dressedSide: {
  49748. height: math.unit(5 + 8/12, "feet"),
  49749. weight: math.unit(125, "lb"),
  49750. name: "Dressed (Side)",
  49751. image: {
  49752. source: "./media/characters/jess/dressed-side.svg",
  49753. extra: 1204/1190,
  49754. bottom: 6/1210
  49755. }
  49756. },
  49757. nudeFront: {
  49758. height: math.unit(5 + 8/12, "feet"),
  49759. weight: math.unit(125, "lb"),
  49760. name: "Nude (Front)",
  49761. image: {
  49762. source: "./media/characters/jess/nude-front.svg",
  49763. extra: 1176/1152,
  49764. bottom: 42/1218
  49765. }
  49766. },
  49767. nudeSide: {
  49768. height: math.unit(5 + 8/12, "feet"),
  49769. weight: math.unit(125, "lb"),
  49770. name: "Nude (Side)",
  49771. image: {
  49772. source: "./media/characters/jess/nude-side.svg",
  49773. extra: 1204/1190,
  49774. bottom: 6/1210
  49775. }
  49776. },
  49777. organsFront: {
  49778. height: math.unit(2.83799342105, "feet"),
  49779. name: "Organs (Front)",
  49780. image: {
  49781. source: "./media/characters/jess/organs-front.svg"
  49782. }
  49783. },
  49784. organsSide: {
  49785. height: math.unit(2.64225290474, "feet"),
  49786. name: "Organs (Side)",
  49787. image: {
  49788. source: "./media/characters/jess/organs-side.svg"
  49789. }
  49790. },
  49791. digestiveTractFront: {
  49792. height: math.unit(2.8106580871, "feet"),
  49793. name: "Digestive Tract (Front)",
  49794. image: {
  49795. source: "./media/characters/jess/digestive-tract-front.svg"
  49796. }
  49797. },
  49798. digestiveTractSide: {
  49799. height: math.unit(2.54365045014, "feet"),
  49800. name: "Digestive Tract (Side)",
  49801. image: {
  49802. source: "./media/characters/jess/digestive-tract-side.svg"
  49803. }
  49804. },
  49805. respiratorySystemFront: {
  49806. height: math.unit(1.11196233456, "feet"),
  49807. name: "Respiratory System (Front)",
  49808. image: {
  49809. source: "./media/characters/jess/respiratory-system-front.svg"
  49810. }
  49811. },
  49812. respiratorySystemSide: {
  49813. height: math.unit(0.89327966297, "feet"),
  49814. name: "Respiratory System (Side)",
  49815. image: {
  49816. source: "./media/characters/jess/respiratory-system-side.svg"
  49817. }
  49818. },
  49819. urinaryTractFront: {
  49820. height: math.unit(1.16126356186, "feet"),
  49821. name: "Urinary Tract (Front)",
  49822. image: {
  49823. source: "./media/characters/jess/urinary-tract-front.svg"
  49824. }
  49825. },
  49826. urinaryTractSide: {
  49827. height: math.unit(1.20910039627, "feet"),
  49828. name: "Urinary Tract (Side)",
  49829. image: {
  49830. source: "./media/characters/jess/urinary-tract-side.svg"
  49831. }
  49832. },
  49833. reproductiveOrgansFront: {
  49834. height: math.unit(0.48422591566, "feet"),
  49835. name: "Reproductive Organs (Front)",
  49836. image: {
  49837. source: "./media/characters/jess/reproductive-organs-front.svg"
  49838. }
  49839. },
  49840. reproductiveOrgansSide: {
  49841. height: math.unit(0.61553314481, "feet"),
  49842. name: "Reproductive Organs (Side)",
  49843. image: {
  49844. source: "./media/characters/jess/reproductive-organs-side.svg"
  49845. }
  49846. },
  49847. breastsFront: {
  49848. height: math.unit(0.47690395121, "feet"),
  49849. name: "Breasts (Front)",
  49850. image: {
  49851. source: "./media/characters/jess/breasts-front.svg"
  49852. }
  49853. },
  49854. breastsSide: {
  49855. height: math.unit(0.30556998307, "feet"),
  49856. name: "Breasts (Side)",
  49857. image: {
  49858. source: "./media/characters/jess/breasts-side.svg"
  49859. }
  49860. },
  49861. heartFront: {
  49862. height: math.unit(0.53011022622, "feet"),
  49863. name: "Heart (Front)",
  49864. image: {
  49865. source: "./media/characters/jess/heart-front.svg"
  49866. }
  49867. },
  49868. heartSide: {
  49869. height: math.unit(0.51790695213, "feet"),
  49870. name: "Heart (Side)",
  49871. image: {
  49872. source: "./media/characters/jess/heart-side.svg"
  49873. }
  49874. },
  49875. earsAndNoseFront: {
  49876. height: math.unit(0.29385483995, "feet"),
  49877. name: "Ears and Nose (Front)",
  49878. image: {
  49879. source: "./media/characters/jess/ears-and-nose-front.svg"
  49880. }
  49881. },
  49882. earsAndNoseSide: {
  49883. height: math.unit(0.18109658741, "feet"),
  49884. name: "Ears and Nose (Side)",
  49885. image: {
  49886. source: "./media/characters/jess/ears-and-nose-side.svg"
  49887. }
  49888. },
  49889. },
  49890. [
  49891. {
  49892. name: "Normal",
  49893. height: math.unit(5 + 8/12, "feet"),
  49894. default: true
  49895. },
  49896. ]
  49897. ))
  49898. characterMakers.push(() => makeCharacter(
  49899. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  49900. {
  49901. front: {
  49902. height: math.unit(6, "feet"),
  49903. weight: math.unit(6.64467e-7, "grams"),
  49904. name: "Front",
  49905. image: {
  49906. source: "./media/characters/wimpering/front.svg",
  49907. extra: 597/587,
  49908. bottom: 34/631
  49909. }
  49910. },
  49911. },
  49912. [
  49913. {
  49914. name: "Micro",
  49915. height: math.unit(0.4, "mm"),
  49916. default: true
  49917. },
  49918. ]
  49919. ))
  49920. characterMakers.push(() => makeCharacter(
  49921. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  49922. {
  49923. front: {
  49924. height: math.unit(5 + 2/12, "feet"),
  49925. weight: math.unit(110, "lb"),
  49926. name: "Front",
  49927. image: {
  49928. source: "./media/characters/keltre/front.svg",
  49929. extra: 1099/1057,
  49930. bottom: 22/1121
  49931. }
  49932. },
  49933. back: {
  49934. height: math.unit(5 + 2/12, "feet"),
  49935. weight: math.unit(110, "lb"),
  49936. name: "Back",
  49937. image: {
  49938. source: "./media/characters/keltre/back.svg",
  49939. extra: 1095/1053,
  49940. bottom: 17/1112
  49941. }
  49942. },
  49943. dressed: {
  49944. height: math.unit(5 + 2/12, "feet"),
  49945. weight: math.unit(110, "lb"),
  49946. name: "Dressed",
  49947. image: {
  49948. source: "./media/characters/keltre/dressed.svg",
  49949. extra: 1099/1057,
  49950. bottom: 22/1121
  49951. }
  49952. },
  49953. winter: {
  49954. height: math.unit(5 + 2/12, "feet"),
  49955. weight: math.unit(110, "lb"),
  49956. name: "Winter",
  49957. image: {
  49958. source: "./media/characters/keltre/winter.svg",
  49959. extra: 1099/1057,
  49960. bottom: 22/1121
  49961. }
  49962. },
  49963. head: {
  49964. height: math.unit(1.61 * 0.86, "feet"),
  49965. name: "Head",
  49966. image: {
  49967. source: "./media/characters/keltre/head.svg",
  49968. extra: 534/421,
  49969. bottom: 0/534
  49970. }
  49971. },
  49972. hand: {
  49973. height: math.unit(1.3 * 0.86, "feet"),
  49974. name: "Hand",
  49975. image: {
  49976. source: "./media/characters/keltre/hand.svg"
  49977. }
  49978. },
  49979. foot: {
  49980. height: math.unit(1.8 * 0.86, "feet"),
  49981. name: "Foot",
  49982. image: {
  49983. source: "./media/characters/keltre/foot.svg"
  49984. }
  49985. },
  49986. },
  49987. [
  49988. {
  49989. name: "Fine",
  49990. height: math.unit(1, "inch")
  49991. },
  49992. {
  49993. name: "Dimnutive",
  49994. height: math.unit(4, "inches")
  49995. },
  49996. {
  49997. name: "Tiny",
  49998. height: math.unit(1, "foot")
  49999. },
  50000. {
  50001. name: "Small",
  50002. height: math.unit(3, "feet")
  50003. },
  50004. {
  50005. name: "Normal",
  50006. height: math.unit(5 + 2/12, "feet"),
  50007. default: true
  50008. },
  50009. ]
  50010. ))
  50011. characterMakers.push(() => makeCharacter(
  50012. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  50013. {
  50014. front: {
  50015. height: math.unit(6 + 2/12, "feet"),
  50016. name: "Front",
  50017. image: {
  50018. source: "./media/characters/nox/front.svg",
  50019. extra: 1917/1830,
  50020. bottom: 74/1991
  50021. }
  50022. },
  50023. back: {
  50024. height: math.unit(6 + 2/12, "feet"),
  50025. name: "Back",
  50026. image: {
  50027. source: "./media/characters/nox/back.svg",
  50028. extra: 1896/1815,
  50029. bottom: 21/1917
  50030. }
  50031. },
  50032. head: {
  50033. height: math.unit(1.1, "feet"),
  50034. name: "Head",
  50035. image: {
  50036. source: "./media/characters/nox/head.svg",
  50037. extra: 874/704,
  50038. bottom: 0/874
  50039. }
  50040. },
  50041. tattoo: {
  50042. height: math.unit(0.729, "feet"),
  50043. name: "Tattoo",
  50044. image: {
  50045. source: "./media/characters/nox/tattoo.svg"
  50046. }
  50047. },
  50048. },
  50049. [
  50050. {
  50051. name: "Normal",
  50052. height: math.unit(6 + 2/12, "feet")
  50053. },
  50054. {
  50055. name: "Gigamacro",
  50056. height: math.unit(2, "earths"),
  50057. default: true
  50058. },
  50059. {
  50060. name: "Cosmic",
  50061. height: math.unit(867, "yottameters")
  50062. },
  50063. ]
  50064. ))
  50065. characterMakers.push(() => makeCharacter(
  50066. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  50067. {
  50068. front: {
  50069. height: math.unit(6, "feet"),
  50070. weight: math.unit(150, "lb"),
  50071. name: "Front",
  50072. image: {
  50073. source: "./media/characters/caspian/front.svg",
  50074. extra: 1443/1359,
  50075. bottom: 0/1443
  50076. }
  50077. },
  50078. back: {
  50079. height: math.unit(6, "feet"),
  50080. weight: math.unit(150, "lb"),
  50081. name: "Back",
  50082. image: {
  50083. source: "./media/characters/caspian/back.svg",
  50084. extra: 1379/1309,
  50085. bottom: 0/1379
  50086. }
  50087. },
  50088. head: {
  50089. height: math.unit(0.9, "feet"),
  50090. name: "Head",
  50091. image: {
  50092. source: "./media/characters/caspian/head.svg",
  50093. extra: 692/492,
  50094. bottom: 0/692
  50095. }
  50096. },
  50097. headAlt: {
  50098. height: math.unit(0.95, "feet"),
  50099. name: "Head (Alt)",
  50100. image: {
  50101. source: "./media/characters/caspian/head-alt.svg",
  50102. extra: 668/508,
  50103. bottom: 0/668
  50104. }
  50105. },
  50106. hand: {
  50107. height: math.unit(0.8, "feet"),
  50108. name: "Hand",
  50109. image: {
  50110. source: "./media/characters/caspian/hand.svg"
  50111. }
  50112. },
  50113. paw: {
  50114. height: math.unit(0.95, "feet"),
  50115. name: "Paw",
  50116. image: {
  50117. source: "./media/characters/caspian/paw.svg"
  50118. }
  50119. },
  50120. },
  50121. [
  50122. {
  50123. name: "Normal",
  50124. height: math.unit(162, "feet"),
  50125. default: true
  50126. },
  50127. ]
  50128. ))
  50129. characterMakers.push(() => makeCharacter(
  50130. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  50131. {
  50132. front: {
  50133. height: math.unit(6, "feet"),
  50134. name: "Front",
  50135. image: {
  50136. source: "./media/characters/myra-aisling/front.svg",
  50137. extra: 1268/1166,
  50138. bottom: 73/1341
  50139. }
  50140. },
  50141. back: {
  50142. height: math.unit(6, "feet"),
  50143. name: "Back",
  50144. image: {
  50145. source: "./media/characters/myra-aisling/back.svg",
  50146. extra: 1249/1149,
  50147. bottom: 79/1328
  50148. }
  50149. },
  50150. dressed: {
  50151. height: math.unit(6, "feet"),
  50152. name: "Dressed",
  50153. image: {
  50154. source: "./media/characters/myra-aisling/dressed.svg",
  50155. extra: 1290/1189,
  50156. bottom: 47/1337
  50157. }
  50158. },
  50159. hand: {
  50160. height: math.unit(1.1, "feet"),
  50161. name: "Hand",
  50162. image: {
  50163. source: "./media/characters/myra-aisling/hand.svg"
  50164. }
  50165. },
  50166. paw: {
  50167. height: math.unit(1.23, "feet"),
  50168. name: "Paw",
  50169. image: {
  50170. source: "./media/characters/myra-aisling/paw.svg"
  50171. }
  50172. },
  50173. },
  50174. [
  50175. {
  50176. name: "Normal",
  50177. height: math.unit(160, "feet"),
  50178. default: true
  50179. },
  50180. ]
  50181. ))
  50182. characterMakers.push(() => makeCharacter(
  50183. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  50184. {
  50185. front: {
  50186. height: math.unit(6, "feet"),
  50187. name: "Front",
  50188. image: {
  50189. source: "./media/characters/tenley-sidero/front.svg",
  50190. extra: 1365/1276,
  50191. bottom: 47/1412
  50192. }
  50193. },
  50194. back: {
  50195. height: math.unit(6, "feet"),
  50196. name: "Back",
  50197. image: {
  50198. source: "./media/characters/tenley-sidero/back.svg",
  50199. extra: 1383/1283,
  50200. bottom: 35/1418
  50201. }
  50202. },
  50203. dressed: {
  50204. height: math.unit(6, "feet"),
  50205. name: "Dressed",
  50206. image: {
  50207. source: "./media/characters/tenley-sidero/dressed.svg",
  50208. extra: 1364/1275,
  50209. bottom: 42/1406
  50210. }
  50211. },
  50212. head: {
  50213. height: math.unit(1.47, "feet"),
  50214. name: "Head",
  50215. image: {
  50216. source: "./media/characters/tenley-sidero/head.svg",
  50217. extra: 610/490,
  50218. bottom: 0/610
  50219. }
  50220. },
  50221. },
  50222. [
  50223. {
  50224. name: "Normal",
  50225. height: math.unit(154, "feet"),
  50226. default: true
  50227. },
  50228. ]
  50229. ))
  50230. characterMakers.push(() => makeCharacter(
  50231. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  50232. {
  50233. front: {
  50234. height: math.unit(5, "inches"),
  50235. name: "Front",
  50236. image: {
  50237. source: "./media/characters/mallory/front.svg",
  50238. extra: 1919/1678,
  50239. bottom: 29/1948
  50240. }
  50241. },
  50242. hand: {
  50243. height: math.unit(0.73, "inches"),
  50244. name: "Hand",
  50245. image: {
  50246. source: "./media/characters/mallory/hand.svg"
  50247. }
  50248. },
  50249. paw: {
  50250. height: math.unit(0.68, "inches"),
  50251. name: "Paw",
  50252. image: {
  50253. source: "./media/characters/mallory/paw.svg"
  50254. }
  50255. },
  50256. },
  50257. [
  50258. {
  50259. name: "Small",
  50260. height: math.unit(5, "inches"),
  50261. default: true
  50262. },
  50263. ]
  50264. ))
  50265. characterMakers.push(() => makeCharacter(
  50266. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  50267. {
  50268. naked: {
  50269. height: math.unit(6, "feet"),
  50270. name: "Naked",
  50271. image: {
  50272. source: "./media/characters/mab/naked.svg",
  50273. extra: 1855/1757,
  50274. bottom: 208/2063
  50275. }
  50276. },
  50277. outside: {
  50278. height: math.unit(6, "feet"),
  50279. name: "Outside",
  50280. image: {
  50281. source: "./media/characters/mab/outside.svg",
  50282. extra: 1855/1757,
  50283. bottom: 208/2063
  50284. }
  50285. },
  50286. party: {
  50287. height: math.unit(6, "feet"),
  50288. name: "Party",
  50289. image: {
  50290. source: "./media/characters/mab/party.svg",
  50291. extra: 1855/1757,
  50292. bottom: 208/2063
  50293. }
  50294. },
  50295. },
  50296. [
  50297. {
  50298. name: "Normal",
  50299. height: math.unit(165, "feet"),
  50300. default: true
  50301. },
  50302. ]
  50303. ))
  50304. characterMakers.push(() => makeCharacter(
  50305. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  50306. {
  50307. feral: {
  50308. height: math.unit(12, "feet"),
  50309. weight: math.unit(20000, "lb"),
  50310. name: "Side",
  50311. image: {
  50312. source: "./media/characters/winter/feral.svg",
  50313. extra: 1286/943,
  50314. bottom: 112/1398
  50315. },
  50316. form: "feral",
  50317. default: true
  50318. },
  50319. feralNsfw: {
  50320. height: math.unit(12, "feet"),
  50321. weight: math.unit(20000, "lb"),
  50322. name: "Side (NSFW)",
  50323. image: {
  50324. source: "./media/characters/winter/feral-nsfw.svg",
  50325. extra: 1286/943,
  50326. bottom: 112/1398
  50327. },
  50328. form: "feral"
  50329. },
  50330. dick: {
  50331. height: math.unit(3.79, "feet"),
  50332. name: "Dick",
  50333. image: {
  50334. source: "./media/characters/winter/dick.svg"
  50335. },
  50336. form: "feral"
  50337. },
  50338. anthro: {
  50339. height: math.unit(12, "feet"),
  50340. weight: math.unit(10, "tons"),
  50341. name: "Anthro",
  50342. image: {
  50343. source: "./media/characters/winter/anthro.svg",
  50344. extra: 1701/1553,
  50345. bottom: 64/1765
  50346. },
  50347. form: "anthro",
  50348. default: true
  50349. },
  50350. },
  50351. [
  50352. {
  50353. name: "Big",
  50354. height: math.unit(12, "feet"),
  50355. default: true,
  50356. form: "feral"
  50357. },
  50358. {
  50359. name: "Big",
  50360. height: math.unit(12, "feet"),
  50361. default: true,
  50362. form: "anthro"
  50363. },
  50364. ],
  50365. {
  50366. "feral": {
  50367. name: "Feral",
  50368. default: true
  50369. },
  50370. "anthro": {
  50371. name: "Anthro"
  50372. }
  50373. }
  50374. ))
  50375. characterMakers.push(() => makeCharacter(
  50376. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  50377. {
  50378. front: {
  50379. height: math.unit(4.1, "inches"),
  50380. name: "Front",
  50381. image: {
  50382. source: "./media/characters/alto/front.svg",
  50383. extra: 736/627,
  50384. bottom: 90/826
  50385. }
  50386. },
  50387. },
  50388. [
  50389. {
  50390. name: "Normal",
  50391. height: math.unit(4.1, "inches"),
  50392. default: true
  50393. },
  50394. ]
  50395. ))
  50396. characterMakers.push(() => makeCharacter(
  50397. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  50398. {
  50399. sitting: {
  50400. height: math.unit(3, "feet"),
  50401. name: "Sitting",
  50402. image: {
  50403. source: "./media/characters/ratstrid-v/sitting.svg",
  50404. extra: 355/310,
  50405. bottom: 136/491
  50406. }
  50407. },
  50408. },
  50409. [
  50410. {
  50411. name: "Normal",
  50412. height: math.unit(3, "feet"),
  50413. default: true
  50414. },
  50415. ]
  50416. ))
  50417. characterMakers.push(() => makeCharacter(
  50418. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  50419. {
  50420. back: {
  50421. height: math.unit(6, "feet"),
  50422. weight: math.unit(450, "lb"),
  50423. name: "Back",
  50424. image: {
  50425. source: "./media/characters/siz/back.svg",
  50426. extra: 1449/1274,
  50427. bottom: 13/1462
  50428. }
  50429. },
  50430. },
  50431. [
  50432. {
  50433. name: "Smallest",
  50434. height: math.unit(18 + 3/12, "feet")
  50435. },
  50436. {
  50437. name: "Modest",
  50438. height: math.unit(56 + 8/12, "feet"),
  50439. default: true
  50440. },
  50441. {
  50442. name: "Largest",
  50443. height: math.unit(3590, "feet")
  50444. },
  50445. ]
  50446. ))
  50447. characterMakers.push(() => makeCharacter(
  50448. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  50449. {
  50450. front: {
  50451. height: math.unit(5 + 9/12, "feet"),
  50452. weight: math.unit(150, "lb"),
  50453. name: "Front",
  50454. image: {
  50455. source: "./media/characters/ven/front.svg",
  50456. extra: 1372/1320,
  50457. bottom: 73/1445
  50458. }
  50459. },
  50460. side: {
  50461. height: math.unit(5 + 9/12, "feet"),
  50462. weight: math.unit(1150, "lb"),
  50463. name: "Side",
  50464. image: {
  50465. source: "./media/characters/ven/side.svg",
  50466. extra: 1119/1070,
  50467. bottom: 42/1161
  50468. },
  50469. default: true
  50470. },
  50471. },
  50472. [
  50473. {
  50474. name: "Normal",
  50475. height: math.unit(5 + 9/12, "feet"),
  50476. default: true
  50477. },
  50478. ]
  50479. ))
  50480. characterMakers.push(() => makeCharacter(
  50481. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  50482. {
  50483. front: {
  50484. height: math.unit(12, "feet"),
  50485. weight: math.unit(1000, "kg"),
  50486. name: "Front",
  50487. image: {
  50488. source: "./media/characters/maple/front.svg",
  50489. extra: 1193/1081,
  50490. bottom: 22/1215
  50491. }
  50492. },
  50493. },
  50494. [
  50495. {
  50496. name: "Compressed",
  50497. height: math.unit(7, "feet")
  50498. },
  50499. {
  50500. name: "Normal",
  50501. height: math.unit(12, "feet"),
  50502. default: true
  50503. },
  50504. ]
  50505. ))
  50506. characterMakers.push(() => makeCharacter(
  50507. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  50508. {
  50509. front: {
  50510. height: math.unit(9, "feet"),
  50511. weight: math.unit(1500, "lb"),
  50512. name: "Front",
  50513. image: {
  50514. source: "./media/characters/nora/front.svg",
  50515. extra: 1348/1286,
  50516. bottom: 218/1566
  50517. }
  50518. },
  50519. erect: {
  50520. height: math.unit(9, "feet"),
  50521. weight: math.unit(11500, "lb"),
  50522. name: "Erect",
  50523. image: {
  50524. source: "./media/characters/nora/erect.svg",
  50525. extra: 1488/1433,
  50526. bottom: 133/1621
  50527. }
  50528. },
  50529. },
  50530. [
  50531. {
  50532. name: "Normal",
  50533. height: math.unit(9, "feet"),
  50534. default: true
  50535. },
  50536. ]
  50537. ))
  50538. characterMakers.push(() => makeCharacter(
  50539. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  50540. {
  50541. front: {
  50542. height: math.unit(25, "feet"),
  50543. weight: math.unit(27500, "lb"),
  50544. name: "Front",
  50545. image: {
  50546. source: "./media/characters/north-caudin/front.svg",
  50547. extra: 1184/1082,
  50548. bottom: 23/1207
  50549. }
  50550. },
  50551. },
  50552. [
  50553. {
  50554. name: "Compressed",
  50555. height: math.unit(10, "feet")
  50556. },
  50557. {
  50558. name: "Normal",
  50559. height: math.unit(25, "feet"),
  50560. default: true
  50561. },
  50562. ]
  50563. ))
  50564. characterMakers.push(() => makeCharacter(
  50565. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  50566. {
  50567. front: {
  50568. height: math.unit(9, "feet"),
  50569. weight: math.unit(1250, "lb"),
  50570. name: "Front",
  50571. image: {
  50572. source: "./media/characters/merrian/front.svg",
  50573. extra: 2393/2304,
  50574. bottom: 40/2433
  50575. }
  50576. },
  50577. },
  50578. [
  50579. {
  50580. name: "Normal",
  50581. height: math.unit(9, "feet"),
  50582. default: true
  50583. },
  50584. ]
  50585. ))
  50586. characterMakers.push(() => makeCharacter(
  50587. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  50588. {
  50589. front: {
  50590. height: math.unit(9, "feet"),
  50591. weight: math.unit(1000, "lb"),
  50592. name: "Front",
  50593. image: {
  50594. source: "./media/characters/hazel/front.svg",
  50595. extra: 2351/2298,
  50596. bottom: 38/2389
  50597. }
  50598. },
  50599. },
  50600. [
  50601. {
  50602. name: "Normal",
  50603. height: math.unit(9, "feet"),
  50604. default: true
  50605. },
  50606. ]
  50607. ))
  50608. characterMakers.push(() => makeCharacter(
  50609. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  50610. {
  50611. front: {
  50612. height: math.unit(13, "feet"),
  50613. weight: math.unit(3200, "lb"),
  50614. name: "Front",
  50615. image: {
  50616. source: "./media/characters/emma/front.svg",
  50617. extra: 2263/2029,
  50618. bottom: 68/2331
  50619. }
  50620. },
  50621. },
  50622. [
  50623. {
  50624. name: "Normal",
  50625. height: math.unit(13, "feet"),
  50626. default: true
  50627. },
  50628. ]
  50629. ))
  50630. characterMakers.push(() => makeCharacter(
  50631. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  50632. {
  50633. front: {
  50634. height: math.unit(11 + 9/12, "feet"),
  50635. weight: math.unit(2500, "lb"),
  50636. name: "Front",
  50637. image: {
  50638. source: "./media/characters/ilumina/front.svg",
  50639. extra: 2248/2209,
  50640. bottom: 164/2412
  50641. }
  50642. },
  50643. },
  50644. [
  50645. {
  50646. name: "Normal",
  50647. height: math.unit(11 + 9/12, "feet"),
  50648. default: true
  50649. },
  50650. ]
  50651. ))
  50652. characterMakers.push(() => makeCharacter(
  50653. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  50654. {
  50655. front: {
  50656. height: math.unit(8 + 10/12, "feet"),
  50657. weight: math.unit(1350, "lb"),
  50658. name: "Front",
  50659. image: {
  50660. source: "./media/characters/moonshine/front.svg",
  50661. extra: 2395/2288,
  50662. bottom: 40/2435
  50663. }
  50664. },
  50665. },
  50666. [
  50667. {
  50668. name: "Normal",
  50669. height: math.unit(8 + 10/12, "feet"),
  50670. default: true
  50671. },
  50672. ]
  50673. ))
  50674. characterMakers.push(() => makeCharacter(
  50675. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  50676. {
  50677. front: {
  50678. height: math.unit(14, "feet"),
  50679. weight: math.unit(3400, "lb"),
  50680. name: "Front",
  50681. image: {
  50682. source: "./media/characters/aletia/front.svg",
  50683. extra: 1185/1052,
  50684. bottom: 21/1206
  50685. }
  50686. },
  50687. },
  50688. [
  50689. {
  50690. name: "Compressed",
  50691. height: math.unit(8, "feet")
  50692. },
  50693. {
  50694. name: "Normal",
  50695. height: math.unit(14, "feet"),
  50696. default: true
  50697. },
  50698. ]
  50699. ))
  50700. characterMakers.push(() => makeCharacter(
  50701. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  50702. {
  50703. front: {
  50704. height: math.unit(17, "feet"),
  50705. weight: math.unit(6500, "lb"),
  50706. name: "Front",
  50707. image: {
  50708. source: "./media/characters/deidra/front.svg",
  50709. extra: 1201/1081,
  50710. bottom: 16/1217
  50711. }
  50712. },
  50713. },
  50714. [
  50715. {
  50716. name: "Compressed",
  50717. height: math.unit(9 + 6/12, "feet")
  50718. },
  50719. {
  50720. name: "Normal",
  50721. height: math.unit(17, "feet"),
  50722. default: true
  50723. },
  50724. ]
  50725. ))
  50726. characterMakers.push(() => makeCharacter(
  50727. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  50728. {
  50729. front: {
  50730. height: math.unit(7 + 4/12, "feet"),
  50731. weight: math.unit(280, "lb"),
  50732. name: "Front",
  50733. image: {
  50734. source: "./media/characters/freki-yrmori/front.svg",
  50735. extra: 1286/1182,
  50736. bottom: 29/1315
  50737. }
  50738. },
  50739. maw: {
  50740. height: math.unit(0.9, "feet"),
  50741. name: "Maw",
  50742. image: {
  50743. source: "./media/characters/freki-yrmori/maw.svg"
  50744. }
  50745. },
  50746. },
  50747. [
  50748. {
  50749. name: "Normal",
  50750. height: math.unit(7 + 4/12, "feet"),
  50751. default: true
  50752. },
  50753. {
  50754. name: "Macro",
  50755. height: math.unit(38.5, "meters")
  50756. },
  50757. ]
  50758. ))
  50759. characterMakers.push(() => makeCharacter(
  50760. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  50761. {
  50762. side: {
  50763. height: math.unit(47.2, "meters"),
  50764. weight: math.unit(10000, "tons"),
  50765. name: "Side",
  50766. image: {
  50767. source: "./media/characters/aetherios/side.svg",
  50768. extra: 2363/642,
  50769. bottom: 221/2584
  50770. }
  50771. },
  50772. top: {
  50773. height: math.unit(240, "meters"),
  50774. weight: math.unit(10000, "tons"),
  50775. name: "Top",
  50776. image: {
  50777. source: "./media/characters/aetherios/top.svg"
  50778. }
  50779. },
  50780. bottom: {
  50781. height: math.unit(240, "meters"),
  50782. weight: math.unit(10000, "tons"),
  50783. name: "Bottom",
  50784. image: {
  50785. source: "./media/characters/aetherios/bottom.svg"
  50786. }
  50787. },
  50788. head: {
  50789. height: math.unit(38.6, "meters"),
  50790. name: "Head",
  50791. image: {
  50792. source: "./media/characters/aetherios/head.svg",
  50793. extra: 1335/1112,
  50794. bottom: 0/1335
  50795. }
  50796. },
  50797. front: {
  50798. height: math.unit(29, "meters"),
  50799. name: "Front",
  50800. image: {
  50801. source: "./media/characters/aetherios/front.svg",
  50802. extra: 1266/953,
  50803. bottom: 158/1424
  50804. }
  50805. },
  50806. maw: {
  50807. height: math.unit(16.37, "meters"),
  50808. name: "Maw",
  50809. image: {
  50810. source: "./media/characters/aetherios/maw.svg",
  50811. extra: 748/637,
  50812. bottom: 0/748
  50813. },
  50814. extraAttributes: {
  50815. preyCapacity: {
  50816. name: "Capacity",
  50817. power: 3,
  50818. type: "volume",
  50819. base: math.unit(1000, "people")
  50820. },
  50821. tongueSize: {
  50822. name: "Tongue Size",
  50823. power: 2,
  50824. type: "area",
  50825. base: math.unit(21, "m^2")
  50826. }
  50827. }
  50828. },
  50829. forepaw: {
  50830. height: math.unit(18, "meters"),
  50831. name: "Forepaw",
  50832. image: {
  50833. source: "./media/characters/aetherios/forepaw.svg"
  50834. }
  50835. },
  50836. hindpaw: {
  50837. height: math.unit(23, "meters"),
  50838. name: "Hindpaw",
  50839. image: {
  50840. source: "./media/characters/aetherios/hindpaw.svg"
  50841. }
  50842. },
  50843. genitals: {
  50844. height: math.unit(42, "meters"),
  50845. name: "Genitals",
  50846. image: {
  50847. source: "./media/characters/aetherios/genitals.svg"
  50848. }
  50849. },
  50850. },
  50851. [
  50852. {
  50853. name: "Normal",
  50854. height: math.unit(47.2, "meters"),
  50855. default: true
  50856. },
  50857. {
  50858. name: "Macro",
  50859. height: math.unit(160, "meters")
  50860. },
  50861. {
  50862. name: "Mega",
  50863. height: math.unit(1.87, "km")
  50864. },
  50865. {
  50866. name: "Giga",
  50867. height: math.unit(40000, "km")
  50868. },
  50869. {
  50870. name: "Stellar",
  50871. height: math.unit(158000000, "km")
  50872. },
  50873. {
  50874. name: "Cosmic",
  50875. height: math.unit(9.46e12, "km")
  50876. },
  50877. ]
  50878. ))
  50879. characterMakers.push(() => makeCharacter(
  50880. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  50881. {
  50882. front: {
  50883. height: math.unit(5 + 4/12, "feet"),
  50884. weight: math.unit(80, "lb"),
  50885. name: "Front",
  50886. image: {
  50887. source: "./media/characters/mizu-gieeg/front.svg",
  50888. extra: 850/709,
  50889. bottom: 52/902
  50890. }
  50891. },
  50892. back: {
  50893. height: math.unit(5 + 4/12, "feet"),
  50894. weight: math.unit(80, "lb"),
  50895. name: "Back",
  50896. image: {
  50897. source: "./media/characters/mizu-gieeg/back.svg",
  50898. extra: 882/745,
  50899. bottom: 25/907
  50900. }
  50901. },
  50902. },
  50903. [
  50904. {
  50905. name: "Normal",
  50906. height: math.unit(5 + 4/12, "feet"),
  50907. default: true
  50908. },
  50909. ]
  50910. ))
  50911. characterMakers.push(() => makeCharacter(
  50912. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  50913. {
  50914. front: {
  50915. height: math.unit(6, "feet"),
  50916. name: "Front",
  50917. image: {
  50918. source: "./media/characters/roselle-st-papier/front.svg",
  50919. extra: 1430/1280,
  50920. bottom: 37/1467
  50921. }
  50922. },
  50923. back: {
  50924. height: math.unit(6, "feet"),
  50925. name: "Back",
  50926. image: {
  50927. source: "./media/characters/roselle-st-papier/back.svg",
  50928. extra: 1491/1296,
  50929. bottom: 23/1514
  50930. }
  50931. },
  50932. ear: {
  50933. height: math.unit(1.26, "feet"),
  50934. name: "Ear",
  50935. image: {
  50936. source: "./media/characters/roselle-st-papier/ear.svg"
  50937. }
  50938. },
  50939. },
  50940. [
  50941. {
  50942. name: "Normal",
  50943. height: math.unit(150, "feet"),
  50944. default: true
  50945. },
  50946. ]
  50947. ))
  50948. characterMakers.push(() => makeCharacter(
  50949. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  50950. {
  50951. front: {
  50952. height: math.unit(1, "inches"),
  50953. name: "Front",
  50954. image: {
  50955. source: "./media/characters/valargent/front.svg",
  50956. extra: 1825/1694,
  50957. bottom: 62/1887
  50958. }
  50959. },
  50960. back: {
  50961. height: math.unit(1, "inches"),
  50962. name: "Back",
  50963. image: {
  50964. source: "./media/characters/valargent/back.svg",
  50965. extra: 1775/1682,
  50966. bottom: 88/1863
  50967. }
  50968. },
  50969. },
  50970. [
  50971. {
  50972. name: "Micro",
  50973. height: math.unit(1, "inch"),
  50974. default: true
  50975. },
  50976. ]
  50977. ))
  50978. characterMakers.push(() => makeCharacter(
  50979. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  50980. {
  50981. front: {
  50982. height: math.unit(3.4, "meters"),
  50983. name: "Front",
  50984. image: {
  50985. source: "./media/characters/zarina/front.svg",
  50986. extra: 1733/1425,
  50987. bottom: 93/1826
  50988. }
  50989. },
  50990. squatting: {
  50991. height: math.unit(2.14, "meters"),
  50992. name: "Squatting",
  50993. image: {
  50994. source: "./media/characters/zarina/squatting.svg",
  50995. extra: 1073/788,
  50996. bottom: 63/1136
  50997. }
  50998. },
  50999. back: {
  51000. height: math.unit(2.14, "meters"),
  51001. name: "Back",
  51002. image: {
  51003. source: "./media/characters/zarina/back.svg",
  51004. extra: 1128/885,
  51005. bottom: 0/1128
  51006. }
  51007. },
  51008. },
  51009. [
  51010. {
  51011. name: "Normal",
  51012. height: math.unit(3.4, "meters"),
  51013. default: true
  51014. },
  51015. {
  51016. name: "Big",
  51017. height: math.unit(5, "meters")
  51018. },
  51019. {
  51020. name: "Macro",
  51021. height: math.unit(110, "meters")
  51022. },
  51023. ]
  51024. ))
  51025. characterMakers.push(() => makeCharacter(
  51026. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  51027. {
  51028. front: {
  51029. height: math.unit(7, "feet"),
  51030. name: "Front",
  51031. image: {
  51032. source: "./media/characters/ventus-astro-fox/front.svg",
  51033. extra: 1792/1623,
  51034. bottom: 28/1820
  51035. }
  51036. },
  51037. back: {
  51038. height: math.unit(7, "feet"),
  51039. name: "Back",
  51040. image: {
  51041. source: "./media/characters/ventus-astro-fox/back.svg",
  51042. extra: 1789/1620,
  51043. bottom: 31/1820
  51044. }
  51045. },
  51046. outfit: {
  51047. height: math.unit(7, "feet"),
  51048. name: "Outfit",
  51049. image: {
  51050. source: "./media/characters/ventus-astro-fox/outfit.svg",
  51051. extra: 1054/925,
  51052. bottom: 15/1069
  51053. }
  51054. },
  51055. head: {
  51056. height: math.unit(1.12, "feet"),
  51057. name: "Head",
  51058. image: {
  51059. source: "./media/characters/ventus-astro-fox/head.svg",
  51060. extra: 866/504,
  51061. bottom: 0/866
  51062. }
  51063. },
  51064. hand: {
  51065. height: math.unit(1, "feet"),
  51066. name: "Hand",
  51067. image: {
  51068. source: "./media/characters/ventus-astro-fox/hand.svg"
  51069. }
  51070. },
  51071. paw: {
  51072. height: math.unit(1.5, "feet"),
  51073. name: "Paw",
  51074. image: {
  51075. source: "./media/characters/ventus-astro-fox/paw.svg"
  51076. }
  51077. },
  51078. },
  51079. [
  51080. {
  51081. name: "Normal",
  51082. height: math.unit(7, "feet"),
  51083. default: true
  51084. },
  51085. {
  51086. name: "Macro",
  51087. height: math.unit(200, "feet")
  51088. },
  51089. {
  51090. name: "Cosmic",
  51091. height: math.unit(3, "universes")
  51092. },
  51093. ]
  51094. ))
  51095. characterMakers.push(() => makeCharacter(
  51096. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  51097. {
  51098. front: {
  51099. height: math.unit(3, "meters"),
  51100. weight: math.unit(7000, "lb"),
  51101. name: "Front",
  51102. image: {
  51103. source: "./media/characters/core-t/front.svg",
  51104. extra: 5729/4941,
  51105. bottom: 1129/6858
  51106. }
  51107. },
  51108. },
  51109. [
  51110. {
  51111. name: "Big",
  51112. height: math.unit(3, "meters"),
  51113. default: true
  51114. },
  51115. ]
  51116. ))
  51117. characterMakers.push(() => makeCharacter(
  51118. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  51119. {
  51120. normal: {
  51121. height: math.unit(6 + 6/12, "feet"),
  51122. weight: math.unit(275, "lb"),
  51123. name: "Front",
  51124. image: {
  51125. source: "./media/characters/cadbunny/normal.svg",
  51126. extra: 1129/947,
  51127. bottom: 93/1222
  51128. },
  51129. default: true,
  51130. form: "normal"
  51131. },
  51132. gigantamax: {
  51133. height: math.unit(26, "feet"),
  51134. weight: math.unit(16000, "lb"),
  51135. name: "Front",
  51136. image: {
  51137. source: "./media/characters/cadbunny/gigantamax.svg",
  51138. extra: 1133/944,
  51139. bottom: 90/1223
  51140. },
  51141. default: true,
  51142. form: "gigantamax"
  51143. },
  51144. },
  51145. [
  51146. {
  51147. name: "Normal",
  51148. height: math.unit(6 + 6/12, "feet"),
  51149. default: true,
  51150. form: "normal"
  51151. },
  51152. {
  51153. name: "Small",
  51154. height: math.unit(26, "feet"),
  51155. default: true,
  51156. form: "gigantamax"
  51157. },
  51158. {
  51159. name: "Large",
  51160. height: math.unit(78, "feet"),
  51161. form: "gigantamax"
  51162. },
  51163. ],
  51164. {
  51165. "normal": {
  51166. name: "Normal",
  51167. default: true
  51168. },
  51169. "gigantamax": {
  51170. name: "Gigantamax"
  51171. }
  51172. }
  51173. ))
  51174. characterMakers.push(() => makeCharacter(
  51175. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  51176. {
  51177. anthroFront: {
  51178. height: math.unit(8, "feet"),
  51179. weight: math.unit(300, "lb"),
  51180. name: "Front",
  51181. image: {
  51182. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  51183. extra: 1272/1176,
  51184. bottom: 53/1325
  51185. },
  51186. form: "anthro",
  51187. default: true
  51188. },
  51189. feralSide: {
  51190. height: math.unit(4, "feet"),
  51191. weight: math.unit(250, "lb"),
  51192. name: "Side",
  51193. image: {
  51194. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  51195. extra: 731/621,
  51196. bottom: 0/731
  51197. },
  51198. form: "feral",
  51199. default: true
  51200. },
  51201. },
  51202. [
  51203. {
  51204. name: "Regular",
  51205. height: math.unit(8, "feet"),
  51206. form: "anthro"
  51207. },
  51208. {
  51209. name: "Macro",
  51210. height: math.unit(250, "feet"),
  51211. form: "anthro",
  51212. default: true
  51213. },
  51214. {
  51215. name: "Regular",
  51216. height: math.unit(4, "feet"),
  51217. form: "feral"
  51218. },
  51219. {
  51220. name: "Macro",
  51221. height: math.unit(125, "feet"),
  51222. form: "feral",
  51223. default: true
  51224. },
  51225. ],
  51226. {
  51227. "anthro": {
  51228. name: "Anthro",
  51229. default: true
  51230. },
  51231. "feral": {
  51232. name: "Feral",
  51233. },
  51234. }
  51235. ))
  51236. characterMakers.push(() => makeCharacter(
  51237. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  51238. {
  51239. front: {
  51240. height: math.unit(11 + 10/12, "feet"),
  51241. weight: math.unit(1587, "kg"),
  51242. name: "Front",
  51243. image: {
  51244. source: "./media/characters/maple-javira-dragon/front.svg",
  51245. extra: 1136/744,
  51246. bottom: 73/1209
  51247. }
  51248. },
  51249. side: {
  51250. height: math.unit(11 + 10/12, "feet"),
  51251. weight: math.unit(1587, "kg"),
  51252. name: "Side",
  51253. image: {
  51254. source: "./media/characters/maple-javira-dragon/side.svg",
  51255. extra: 712/505,
  51256. bottom: 17/729
  51257. }
  51258. },
  51259. head: {
  51260. height: math.unit(8.05, "feet"),
  51261. name: "Head",
  51262. image: {
  51263. source: "./media/characters/maple-javira-dragon/head.svg",
  51264. extra: 1420/1344,
  51265. bottom: 0/1420
  51266. }
  51267. },
  51268. },
  51269. [
  51270. {
  51271. name: "Normal",
  51272. height: math.unit(11 + 10/12, "feet"),
  51273. default: true
  51274. },
  51275. ]
  51276. ))
  51277. characterMakers.push(() => makeCharacter(
  51278. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  51279. {
  51280. front: {
  51281. height: math.unit(117, "cm"),
  51282. weight: math.unit(50, "kg"),
  51283. name: "Front",
  51284. image: {
  51285. source: "./media/characters/sonia-wyverntail/front.svg",
  51286. extra: 708/592,
  51287. bottom: 25/733
  51288. }
  51289. },
  51290. },
  51291. [
  51292. {
  51293. name: "Normal",
  51294. height: math.unit(117, "cm"),
  51295. default: true
  51296. },
  51297. ]
  51298. ))
  51299. characterMakers.push(() => makeCharacter(
  51300. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  51301. {
  51302. front: {
  51303. height: math.unit(6 + 5/12, "feet"),
  51304. name: "Front",
  51305. image: {
  51306. source: "./media/characters/micah/front.svg",
  51307. extra: 1758/1546,
  51308. bottom: 214/1972
  51309. }
  51310. },
  51311. },
  51312. [
  51313. {
  51314. name: "Normal",
  51315. height: math.unit(6 + 5/12, "feet"),
  51316. default: true
  51317. },
  51318. ]
  51319. ))
  51320. characterMakers.push(() => makeCharacter(
  51321. { name: "Zarya", species: ["skunk"], tags: ["anthro"] },
  51322. {
  51323. front: {
  51324. height: math.unit(1.75, "meters"),
  51325. weight: math.unit(100, "kg"),
  51326. name: "Front",
  51327. image: {
  51328. source: "./media/characters/zarya/front.svg",
  51329. extra: 741/735,
  51330. bottom: 44/785
  51331. },
  51332. extraAttributes: {
  51333. "tailLength": {
  51334. name: "Tail Length",
  51335. power: 1,
  51336. type: "length",
  51337. base: math.unit(180, "cm")
  51338. },
  51339. "pawLength": {
  51340. name: "Paw Length",
  51341. power: 1,
  51342. type: "length",
  51343. base: math.unit(31, "cm")
  51344. },
  51345. }
  51346. },
  51347. side: {
  51348. height: math.unit(1.75, "meters"),
  51349. weight: math.unit(100, "kg"),
  51350. name: "Side",
  51351. image: {
  51352. source: "./media/characters/zarya/side.svg",
  51353. extra: 776/770,
  51354. bottom: 17/793
  51355. },
  51356. extraAttributes: {
  51357. "tailLength": {
  51358. name: "Tail Length",
  51359. power: 1,
  51360. type: "length",
  51361. base: math.unit(180, "cm")
  51362. },
  51363. "pawLength": {
  51364. name: "Paw Length",
  51365. power: 1,
  51366. type: "length",
  51367. base: math.unit(31, "cm")
  51368. },
  51369. }
  51370. },
  51371. back: {
  51372. height: math.unit(1.75, "meters"),
  51373. weight: math.unit(100, "kg"),
  51374. name: "Back",
  51375. image: {
  51376. source: "./media/characters/zarya/back.svg",
  51377. extra: 741/735,
  51378. bottom: 44/785
  51379. },
  51380. extraAttributes: {
  51381. "tailLength": {
  51382. name: "Tail Length",
  51383. power: 1,
  51384. type: "length",
  51385. base: math.unit(180, "cm")
  51386. },
  51387. "pawLength": {
  51388. name: "Paw Length",
  51389. power: 1,
  51390. type: "length",
  51391. base: math.unit(31, "cm")
  51392. },
  51393. }
  51394. },
  51395. frontNoTail: {
  51396. height: math.unit(1.75, "meters"),
  51397. weight: math.unit(100, "kg"),
  51398. name: "Front (No Tail)",
  51399. image: {
  51400. source: "./media/characters/zarya/front-no-tail.svg",
  51401. extra: 741/735,
  51402. bottom: 44/785
  51403. },
  51404. extraAttributes: {
  51405. "tailLength": {
  51406. name: "Tail Length",
  51407. power: 1,
  51408. type: "length",
  51409. base: math.unit(180, "cm")
  51410. },
  51411. "pawLength": {
  51412. name: "Paw Length",
  51413. power: 1,
  51414. type: "length",
  51415. base: math.unit(31, "cm")
  51416. },
  51417. }
  51418. },
  51419. dressed: {
  51420. height: math.unit(1.75, "meters"),
  51421. weight: math.unit(100, "kg"),
  51422. name: "Dressed",
  51423. image: {
  51424. source: "./media/characters/zarya/dressed.svg",
  51425. extra: 683/672,
  51426. bottom: 79/762
  51427. },
  51428. extraAttributes: {
  51429. "tailLength": {
  51430. name: "Tail Length",
  51431. power: 1,
  51432. type: "length",
  51433. base: math.unit(180, "cm")
  51434. },
  51435. "pawLength": {
  51436. name: "Paw Length",
  51437. power: 1,
  51438. type: "length",
  51439. base: math.unit(31, "cm")
  51440. },
  51441. }
  51442. },
  51443. },
  51444. [
  51445. {
  51446. name: "Micro",
  51447. height: math.unit(5, "cm")
  51448. },
  51449. {
  51450. name: "Normal",
  51451. height: math.unit(1.75, "meters"),
  51452. default: true
  51453. },
  51454. {
  51455. name: "Macro",
  51456. height: math.unit(122, "meters")
  51457. },
  51458. ]
  51459. ))
  51460. characterMakers.push(() => makeCharacter(
  51461. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  51462. {
  51463. front: {
  51464. height: math.unit(7.5, "feet"),
  51465. name: "Front",
  51466. image: {
  51467. source: "./media/characters/sven-hatisson/front.svg",
  51468. extra: 917/857,
  51469. bottom: 42/959
  51470. }
  51471. },
  51472. back: {
  51473. height: math.unit(7.5, "feet"),
  51474. name: "Back",
  51475. image: {
  51476. source: "./media/characters/sven-hatisson/back.svg",
  51477. extra: 903/856,
  51478. bottom: 15/918
  51479. }
  51480. },
  51481. },
  51482. [
  51483. {
  51484. name: "Base Height",
  51485. height: math.unit(7.5, "feet")
  51486. },
  51487. {
  51488. name: "Usual Height",
  51489. height: math.unit(13.5, "feet"),
  51490. default: true
  51491. },
  51492. {
  51493. name: "Smaller Macro",
  51494. height: math.unit(85, "feet")
  51495. },
  51496. {
  51497. name: "Moderate Macro",
  51498. height: math.unit(320, "feet")
  51499. },
  51500. {
  51501. name: "Large Macro",
  51502. height: math.unit(1000, "feet")
  51503. },
  51504. {
  51505. name: "Largest Size",
  51506. height: math.unit(2, "miles")
  51507. },
  51508. ]
  51509. ))
  51510. characterMakers.push(() => makeCharacter(
  51511. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  51512. {
  51513. side: {
  51514. height: math.unit(1.8, "meters"),
  51515. weight: math.unit(275, "kg"),
  51516. name: "Side",
  51517. image: {
  51518. source: "./media/characters/terra/side.svg",
  51519. extra: 1273/1147,
  51520. bottom: 0/1273
  51521. }
  51522. },
  51523. },
  51524. [
  51525. {
  51526. name: "Normal",
  51527. height: math.unit(16.2, "meters"),
  51528. default: true
  51529. },
  51530. ]
  51531. ))
  51532. characterMakers.push(() => makeCharacter(
  51533. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  51534. {
  51535. borzoiFront: {
  51536. height: math.unit(6 + 9/12, "feet"),
  51537. name: "Front",
  51538. image: {
  51539. source: "./media/characters/rae/borzoi-front.svg",
  51540. extra: 1161/1098,
  51541. bottom: 31/1192
  51542. },
  51543. form: "borzoi",
  51544. default: true
  51545. },
  51546. werewolfFront: {
  51547. height: math.unit(8 + 7/12, "feet"),
  51548. name: "Front",
  51549. image: {
  51550. source: "./media/characters/rae/werewolf-front.svg",
  51551. extra: 1411/1334,
  51552. bottom: 127/1538
  51553. },
  51554. form: "werewolf",
  51555. default: true
  51556. },
  51557. },
  51558. [
  51559. {
  51560. name: "Normal",
  51561. height: math.unit(6 + 9/12, "feet"),
  51562. default: true,
  51563. form: "borzoi"
  51564. },
  51565. {
  51566. name: "Normal",
  51567. height: math.unit(8 + 7/12, "feet"),
  51568. default: true,
  51569. form: "werewolf"
  51570. },
  51571. ],
  51572. {
  51573. "borzoi": {
  51574. name: "Borzoi",
  51575. default: true
  51576. },
  51577. "werewolf": {
  51578. name: "Werewolf",
  51579. },
  51580. }
  51581. ))
  51582. characterMakers.push(() => makeCharacter(
  51583. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  51584. {
  51585. front: {
  51586. height: math.unit(8 + 7/12, "feet"),
  51587. weight: math.unit(482, "lb"),
  51588. name: "Front",
  51589. image: {
  51590. source: "./media/characters/kit/front.svg",
  51591. extra: 1247/1103,
  51592. bottom: 41/1288
  51593. }
  51594. },
  51595. back: {
  51596. height: math.unit(8 + 7/12, "feet"),
  51597. weight: math.unit(482, "lb"),
  51598. name: "Back",
  51599. image: {
  51600. source: "./media/characters/kit/back.svg",
  51601. extra: 1252/1123,
  51602. bottom: 21/1273
  51603. }
  51604. },
  51605. paw: {
  51606. height: math.unit(1.46, "feet"),
  51607. name: "Paw",
  51608. image: {
  51609. source: "./media/characters/kit/paw.svg"
  51610. }
  51611. },
  51612. },
  51613. [
  51614. {
  51615. name: "Normal",
  51616. height: math.unit(2.61, "meters"),
  51617. default: true
  51618. },
  51619. {
  51620. name: "\"Tall\"",
  51621. height: math.unit(8.21, "meters")
  51622. },
  51623. {
  51624. name: "Tall",
  51625. height: math.unit(19.6, "meters")
  51626. },
  51627. {
  51628. name: "Very Tall",
  51629. height: math.unit(57.91, "meters")
  51630. },
  51631. {
  51632. name: "Semi-Macro",
  51633. height: math.unit(138.64, "meters")
  51634. },
  51635. {
  51636. name: "Macro",
  51637. height: math.unit(831.99, "meters")
  51638. },
  51639. {
  51640. name: "EX-Macro",
  51641. height: math.unit(96451121, "meters")
  51642. },
  51643. {
  51644. name: "S1-Omnipotent",
  51645. height: math.unit(4.42074e+9, "meters")
  51646. },
  51647. {
  51648. name: "S2-Omnipotent",
  51649. height: math.unit(9.42074e+17, "meters")
  51650. },
  51651. {
  51652. name: "Omnipotent",
  51653. height: math.unit(4.23112e+24, "meters")
  51654. },
  51655. {
  51656. name: "Hypergod",
  51657. height: math.unit(5.05176e+27, "meters")
  51658. },
  51659. {
  51660. name: "Hypergod-EX",
  51661. height: math.unit(9.45532e+49, "meters")
  51662. },
  51663. {
  51664. name: "Hypergod-SP",
  51665. height: math.unit(9.45532e+195, "meters")
  51666. },
  51667. ]
  51668. ))
  51669. characterMakers.push(() => makeCharacter(
  51670. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  51671. {
  51672. side: {
  51673. height: math.unit(0.6, "meters"),
  51674. weight: math.unit(24, "kg"),
  51675. name: "Side",
  51676. image: {
  51677. source: "./media/characters/celeste/side.svg",
  51678. extra: 810/517,
  51679. bottom: 53/863
  51680. }
  51681. },
  51682. },
  51683. [
  51684. {
  51685. name: "Velociraptor",
  51686. height: math.unit(0.6, "meters"),
  51687. default: true
  51688. },
  51689. {
  51690. name: "Utahraptor",
  51691. height: math.unit(1.8, "meters")
  51692. },
  51693. {
  51694. name: "Gallimimus",
  51695. height: math.unit(4.0, "meters")
  51696. },
  51697. {
  51698. name: "Large",
  51699. height: math.unit(20, "meters")
  51700. },
  51701. {
  51702. name: "Planetary",
  51703. height: math.unit(50, "megameters")
  51704. },
  51705. {
  51706. name: "Stellar",
  51707. height: math.unit(1.5, "gigameters")
  51708. },
  51709. {
  51710. name: "Galactic",
  51711. height: math.unit(100, "exameters")
  51712. },
  51713. ]
  51714. ))
  51715. characterMakers.push(() => makeCharacter(
  51716. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  51717. {
  51718. front: {
  51719. height: math.unit(6, "feet"),
  51720. weight: math.unit(210, "lb"),
  51721. name: "Front",
  51722. image: {
  51723. source: "./media/characters/glacia/front.svg",
  51724. extra: 958/901,
  51725. bottom: 45/1003
  51726. }
  51727. },
  51728. },
  51729. [
  51730. {
  51731. name: "Macro",
  51732. height: math.unit(1000, "meters"),
  51733. default: true
  51734. },
  51735. ]
  51736. ))
  51737. characterMakers.push(() => makeCharacter(
  51738. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  51739. {
  51740. front: {
  51741. height: math.unit(4, "meters"),
  51742. name: "Front",
  51743. image: {
  51744. source: "./media/characters/giri/front.svg",
  51745. extra: 966/894,
  51746. bottom: 21/987
  51747. }
  51748. },
  51749. },
  51750. [
  51751. {
  51752. name: "Normal",
  51753. height: math.unit(4, "meters"),
  51754. default: true
  51755. },
  51756. ]
  51757. ))
  51758. characterMakers.push(() => makeCharacter(
  51759. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  51760. {
  51761. back: {
  51762. height: math.unit(4, "feet"),
  51763. weight: math.unit(37, "lb"),
  51764. name: "Back",
  51765. image: {
  51766. source: "./media/characters/tin/back.svg",
  51767. extra: 845/780,
  51768. bottom: 28/873
  51769. }
  51770. },
  51771. },
  51772. [
  51773. {
  51774. name: "Normal",
  51775. height: math.unit(4, "feet"),
  51776. default: true
  51777. },
  51778. ]
  51779. ))
  51780. characterMakers.push(() => makeCharacter(
  51781. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  51782. {
  51783. front: {
  51784. height: math.unit(25, "feet"),
  51785. name: "Front",
  51786. image: {
  51787. source: "./media/characters/cadenza-vivace/front.svg",
  51788. extra: 1842/1578,
  51789. bottom: 30/1872
  51790. }
  51791. },
  51792. },
  51793. [
  51794. {
  51795. name: "Macro",
  51796. height: math.unit(25, "feet"),
  51797. default: true
  51798. },
  51799. ]
  51800. ))
  51801. characterMakers.push(() => makeCharacter(
  51802. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  51803. {
  51804. front: {
  51805. height: math.unit(10, "feet"),
  51806. weight: math.unit(625, "kg"),
  51807. name: "Front",
  51808. image: {
  51809. source: "./media/characters/zain/front.svg",
  51810. extra: 1682/1498,
  51811. bottom: 223/1905
  51812. }
  51813. },
  51814. back: {
  51815. height: math.unit(10, "feet"),
  51816. weight: math.unit(625, "kg"),
  51817. name: "Back",
  51818. image: {
  51819. source: "./media/characters/zain/back.svg",
  51820. extra: 1814/1657,
  51821. bottom: 152/1966
  51822. }
  51823. },
  51824. head: {
  51825. height: math.unit(10, "feet"),
  51826. weight: math.unit(625, "kg"),
  51827. name: "Head",
  51828. image: {
  51829. source: "./media/characters/zain/head.svg",
  51830. extra: 1059/762,
  51831. bottom: 0/1059
  51832. }
  51833. },
  51834. },
  51835. [
  51836. {
  51837. name: "Normal",
  51838. height: math.unit(10, "feet"),
  51839. default: true
  51840. },
  51841. ]
  51842. ))
  51843. characterMakers.push(() => makeCharacter(
  51844. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  51845. {
  51846. front: {
  51847. height: math.unit(6 + 5/12, "feet"),
  51848. weight: math.unit(750, "lb"),
  51849. name: "Front",
  51850. image: {
  51851. source: "./media/characters/ruchex/front.svg",
  51852. extra: 877/820,
  51853. bottom: 17/894
  51854. },
  51855. extraAttributes: {
  51856. "width": {
  51857. name: "Width",
  51858. power: 1,
  51859. type: "length",
  51860. base: math.unit(4.757, "feet")
  51861. },
  51862. }
  51863. },
  51864. },
  51865. [
  51866. {
  51867. name: "Normal",
  51868. height: math.unit(6 + 5/12, "feet"),
  51869. default: true
  51870. },
  51871. ]
  51872. ))
  51873. characterMakers.push(() => makeCharacter(
  51874. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  51875. {
  51876. dressedFront: {
  51877. height: math.unit(191, "cm"),
  51878. weight: math.unit(80, "kg"),
  51879. name: "Front",
  51880. image: {
  51881. source: "./media/characters/buster/dressed-front.svg",
  51882. extra: 1022/973,
  51883. bottom: 69/1091
  51884. }
  51885. },
  51886. dressedBack: {
  51887. height: math.unit(191, "cm"),
  51888. weight: math.unit(80, "kg"),
  51889. name: "Back",
  51890. image: {
  51891. source: "./media/characters/buster/dressed-back.svg",
  51892. extra: 1018/970,
  51893. bottom: 55/1073
  51894. }
  51895. },
  51896. nudeFront: {
  51897. height: math.unit(191, "cm"),
  51898. weight: math.unit(80, "kg"),
  51899. name: "Front (Nude)",
  51900. image: {
  51901. source: "./media/characters/buster/nude-front.svg",
  51902. extra: 1022/973,
  51903. bottom: 69/1091
  51904. }
  51905. },
  51906. nudeBack: {
  51907. height: math.unit(191, "cm"),
  51908. weight: math.unit(80, "kg"),
  51909. name: "Back (Nude)",
  51910. image: {
  51911. source: "./media/characters/buster/nude-back.svg",
  51912. extra: 1018/970,
  51913. bottom: 55/1073
  51914. }
  51915. },
  51916. dick: {
  51917. height: math.unit(2.59, "feet"),
  51918. name: "Dick",
  51919. image: {
  51920. source: "./media/characters/buster/dick.svg"
  51921. }
  51922. },
  51923. ass: {
  51924. height: math.unit(1.2, "feet"),
  51925. name: "Ass",
  51926. image: {
  51927. source: "./media/characters/buster/ass.svg"
  51928. }
  51929. },
  51930. },
  51931. [
  51932. {
  51933. name: "Normal",
  51934. height: math.unit(191, "cm"),
  51935. default: true
  51936. },
  51937. ]
  51938. ))
  51939. characterMakers.push(() => makeCharacter(
  51940. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  51941. {
  51942. side: {
  51943. height: math.unit(8.1, "feet"),
  51944. weight: math.unit(3500, "lb"),
  51945. name: "Side",
  51946. image: {
  51947. source: "./media/characters/sonya/side.svg",
  51948. extra: 1730/1317,
  51949. bottom: 86/1816
  51950. }
  51951. },
  51952. },
  51953. [
  51954. {
  51955. name: "Normal",
  51956. height: math.unit(8.1, "feet"),
  51957. default: true
  51958. },
  51959. ]
  51960. ))
  51961. characterMakers.push(() => makeCharacter(
  51962. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  51963. {
  51964. front: {
  51965. height: math.unit(6, "feet"),
  51966. weight: math.unit(150, "lb"),
  51967. name: "Front",
  51968. image: {
  51969. source: "./media/characters/cadence-andrysiak/front.svg",
  51970. extra: 1164/1121,
  51971. bottom: 60/1224
  51972. }
  51973. },
  51974. back: {
  51975. height: math.unit(6, "feet"),
  51976. weight: math.unit(150, "lb"),
  51977. name: "Back",
  51978. image: {
  51979. source: "./media/characters/cadence-andrysiak/back.svg",
  51980. extra: 1200/1165,
  51981. bottom: 9/1209
  51982. }
  51983. },
  51984. dressed: {
  51985. height: math.unit(6, "feet"),
  51986. weight: math.unit(150, "lb"),
  51987. name: "Dressed",
  51988. image: {
  51989. source: "./media/characters/cadence-andrysiak/dressed.svg",
  51990. extra: 1164/1121,
  51991. bottom: 60/1224
  51992. }
  51993. },
  51994. },
  51995. [
  51996. {
  51997. name: "Micro",
  51998. height: math.unit(1, "mm")
  51999. },
  52000. {
  52001. name: "Normal",
  52002. height: math.unit(6, "feet"),
  52003. default: true
  52004. },
  52005. ]
  52006. ))
  52007. characterMakers.push(() => makeCharacter(
  52008. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  52009. {
  52010. front: {
  52011. height: math.unit(60, "inches"),
  52012. weight: math.unit(16, "lb"),
  52013. preyCapacity: math.unit(80, "liters"),
  52014. name: "Front",
  52015. image: {
  52016. source: "./media/characters/penny-lynx/front.svg",
  52017. extra: 1959/1769,
  52018. bottom: 49/2008
  52019. }
  52020. },
  52021. },
  52022. [
  52023. {
  52024. name: "Nokia",
  52025. height: math.unit(2, "inches")
  52026. },
  52027. {
  52028. name: "Desktop",
  52029. height: math.unit(24, "inches")
  52030. },
  52031. {
  52032. name: "TV",
  52033. height: math.unit(60, "inches")
  52034. },
  52035. {
  52036. name: "Jumbotron",
  52037. height: math.unit(12, "feet")
  52038. },
  52039. {
  52040. name: "Billboard",
  52041. height: math.unit(48, "feet"),
  52042. default: true
  52043. },
  52044. {
  52045. name: "IMAX",
  52046. height: math.unit(96, "feet")
  52047. },
  52048. {
  52049. name: "SINGULARITY",
  52050. height: math.unit(864938, "miles")
  52051. },
  52052. ]
  52053. ))
  52054. characterMakers.push(() => makeCharacter(
  52055. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  52056. {
  52057. front: {
  52058. height: math.unit(5 + 4/12, "feet"),
  52059. weight: math.unit(230, "lb"),
  52060. name: "Front",
  52061. image: {
  52062. source: "./media/characters/sukebe/front.svg",
  52063. extra: 2130/2038,
  52064. bottom: 90/2220
  52065. }
  52066. },
  52067. back: {
  52068. height: math.unit(3.48, "feet"),
  52069. weight: math.unit(230, "lb"),
  52070. name: "Back",
  52071. image: {
  52072. source: "./media/characters/sukebe/back.svg",
  52073. extra: 1670/1604,
  52074. bottom: 0/1670
  52075. }
  52076. },
  52077. },
  52078. [
  52079. {
  52080. name: "Normal",
  52081. height: math.unit(5 + 4/12, "feet"),
  52082. default: true
  52083. },
  52084. ]
  52085. ))
  52086. characterMakers.push(() => makeCharacter(
  52087. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  52088. {
  52089. front: {
  52090. height: math.unit(6, "feet"),
  52091. name: "Front",
  52092. image: {
  52093. source: "./media/characters/nylla/front.svg",
  52094. extra: 1868/1699,
  52095. bottom: 97/1965
  52096. }
  52097. },
  52098. back: {
  52099. height: math.unit(6, "feet"),
  52100. name: "Back",
  52101. image: {
  52102. source: "./media/characters/nylla/back.svg",
  52103. extra: 1889/1712,
  52104. bottom: 93/1982
  52105. }
  52106. },
  52107. frontNsfw: {
  52108. height: math.unit(6, "feet"),
  52109. name: "Front (NSFW)",
  52110. image: {
  52111. source: "./media/characters/nylla/front-nsfw.svg",
  52112. extra: 1868/1699,
  52113. bottom: 97/1965
  52114. },
  52115. extraAttributes: {
  52116. "dickLength": {
  52117. name: "Dick Length",
  52118. power: 1,
  52119. type: "length",
  52120. base: math.unit(1.4, "feet")
  52121. },
  52122. "cumVolume": {
  52123. name: "Cum Volume",
  52124. power: 3,
  52125. type: "volume",
  52126. base: math.unit(100, "mL")
  52127. },
  52128. }
  52129. },
  52130. backNsfw: {
  52131. height: math.unit(6, "feet"),
  52132. name: "Back (NSFW)",
  52133. image: {
  52134. source: "./media/characters/nylla/back-nsfw.svg",
  52135. extra: 1889/1712,
  52136. bottom: 93/1982
  52137. }
  52138. },
  52139. maw: {
  52140. height: math.unit(2.10, "feet"),
  52141. name: "Maw",
  52142. image: {
  52143. source: "./media/characters/nylla/maw.svg"
  52144. }
  52145. },
  52146. paws: {
  52147. height: math.unit(2.06, "feet"),
  52148. name: "Paws",
  52149. image: {
  52150. source: "./media/characters/nylla/paws.svg"
  52151. }
  52152. },
  52153. muzzle: {
  52154. height: math.unit(0.61, "feet"),
  52155. name: "Muzzle",
  52156. image: {
  52157. source: "./media/characters/nylla/muzzle.svg"
  52158. }
  52159. },
  52160. sheath: {
  52161. height: math.unit(1.305, "feet"),
  52162. name: "Sheath",
  52163. image: {
  52164. source: "./media/characters/nylla/sheath.svg"
  52165. }
  52166. },
  52167. },
  52168. [
  52169. {
  52170. name: "Micro",
  52171. height: math.unit(7.5, "inches")
  52172. },
  52173. {
  52174. name: "Normal",
  52175. height: math.unit(7, "feet"),
  52176. default: true
  52177. },
  52178. {
  52179. name: "Macro",
  52180. height: math.unit(60, "feet")
  52181. },
  52182. {
  52183. name: "Mega",
  52184. height: math.unit(200, "feet")
  52185. },
  52186. ]
  52187. ))
  52188. characterMakers.push(() => makeCharacter(
  52189. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  52190. {
  52191. front: {
  52192. height: math.unit(10, "feet"),
  52193. weight: math.unit(2300, "lb"),
  52194. name: "Front",
  52195. image: {
  52196. source: "./media/characters/hunt3r/front.svg",
  52197. extra: 1909/1742,
  52198. bottom: 46/1955
  52199. }
  52200. },
  52201. },
  52202. [
  52203. {
  52204. name: "Normal",
  52205. height: math.unit(10, "feet"),
  52206. default: true
  52207. },
  52208. ]
  52209. ))
  52210. characterMakers.push(() => makeCharacter(
  52211. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  52212. {
  52213. dressed: {
  52214. height: math.unit(11, "feet"),
  52215. weight: math.unit(18500, "lb"),
  52216. preyCapacity: math.unit(9, "people"),
  52217. name: "Dressed",
  52218. image: {
  52219. source: "./media/characters/cylphis/dressed.svg",
  52220. extra: 1028/1003,
  52221. bottom: 75/1103
  52222. },
  52223. },
  52224. undressed: {
  52225. height: math.unit(11, "feet"),
  52226. weight: math.unit(18500, "lb"),
  52227. preyCapacity: math.unit(9, "people"),
  52228. name: "Undressed",
  52229. image: {
  52230. source: "./media/characters/cylphis/undressed.svg",
  52231. extra: 1028/1003,
  52232. bottom: 75/1103
  52233. }
  52234. },
  52235. full: {
  52236. height: math.unit(11, "feet"),
  52237. weight: math.unit(18500 + 150*9, "lb"),
  52238. preyCapacity: math.unit(9, "people"),
  52239. name: "Full",
  52240. image: {
  52241. source: "./media/characters/cylphis/full.svg",
  52242. extra: 1028/1003,
  52243. bottom: 75/1103
  52244. }
  52245. },
  52246. },
  52247. [
  52248. {
  52249. name: "Small",
  52250. height: math.unit(8, "feet")
  52251. },
  52252. {
  52253. name: "Normal",
  52254. height: math.unit(11, "feet"),
  52255. default: true
  52256. },
  52257. ]
  52258. ))
  52259. characterMakers.push(() => makeCharacter(
  52260. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  52261. {
  52262. front: {
  52263. height: math.unit(2 + 7/12, "feet"),
  52264. name: "Front",
  52265. image: {
  52266. source: "./media/characters/orishan/front.svg",
  52267. extra: 1058/1023,
  52268. bottom: 23/1081
  52269. }
  52270. },
  52271. back: {
  52272. height: math.unit(2 + 7/12, "feet"),
  52273. name: "Back",
  52274. image: {
  52275. source: "./media/characters/orishan/back.svg",
  52276. extra: 1058/1023,
  52277. bottom: 23/1081
  52278. }
  52279. },
  52280. },
  52281. [
  52282. {
  52283. name: "Micro",
  52284. height: math.unit(2, "cm")
  52285. },
  52286. {
  52287. name: "Normal",
  52288. height: math.unit(2 + 7/12, "feet"),
  52289. default: true
  52290. },
  52291. ]
  52292. ))
  52293. characterMakers.push(() => makeCharacter(
  52294. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  52295. {
  52296. front: {
  52297. height: math.unit(3, "meters"),
  52298. weight: math.unit(508, "kg"),
  52299. name: "Front",
  52300. image: {
  52301. source: "./media/characters/seranis/front.svg",
  52302. extra: 1478/1454,
  52303. bottom: 41/1519
  52304. }
  52305. },
  52306. },
  52307. [
  52308. {
  52309. name: "Normal",
  52310. height: math.unit(3, "meters"),
  52311. default: true
  52312. },
  52313. {
  52314. name: "Macro",
  52315. height: math.unit(108, "meters")
  52316. },
  52317. {
  52318. name: "Megamacro",
  52319. height: math.unit(1250, "meters")
  52320. },
  52321. ]
  52322. ))
  52323. characterMakers.push(() => makeCharacter(
  52324. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  52325. {
  52326. undressed: {
  52327. height: math.unit(5 + 3/12, "feet"),
  52328. name: "Undressed",
  52329. image: {
  52330. source: "./media/characters/ankou/undressed.svg",
  52331. extra: 1301/1213,
  52332. bottom: 87/1388
  52333. }
  52334. },
  52335. dressed: {
  52336. height: math.unit(5 + 3/12, "feet"),
  52337. name: "Dressed",
  52338. image: {
  52339. source: "./media/characters/ankou/dressed.svg",
  52340. extra: 1301/1213,
  52341. bottom: 87/1388
  52342. }
  52343. },
  52344. head: {
  52345. height: math.unit(1.61, "feet"),
  52346. name: "Head",
  52347. image: {
  52348. source: "./media/characters/ankou/head.svg"
  52349. }
  52350. },
  52351. },
  52352. [
  52353. {
  52354. name: "Normal",
  52355. height: math.unit(5 + 3/12, "feet"),
  52356. default: true
  52357. },
  52358. ]
  52359. ))
  52360. characterMakers.push(() => makeCharacter(
  52361. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  52362. {
  52363. side: {
  52364. height: math.unit(6 + 3/12, "feet"),
  52365. weight: math.unit(200, "kg"),
  52366. name: "Side",
  52367. image: {
  52368. source: "./media/characters/juniper-skunktaur/side.svg",
  52369. extra: 1574/1229,
  52370. bottom: 38/1612
  52371. }
  52372. },
  52373. front: {
  52374. height: math.unit(6 + 3/12, "feet"),
  52375. weight: math.unit(200, "kg"),
  52376. name: "Front",
  52377. image: {
  52378. source: "./media/characters/juniper-skunktaur/front.svg",
  52379. extra: 1337/1278,
  52380. bottom: 22/1359
  52381. }
  52382. },
  52383. back: {
  52384. height: math.unit(6 + 3/12, "feet"),
  52385. weight: math.unit(200, "kg"),
  52386. name: "Back",
  52387. image: {
  52388. source: "./media/characters/juniper-skunktaur/back.svg",
  52389. extra: 1618/1273,
  52390. bottom: 13/1631
  52391. }
  52392. },
  52393. top: {
  52394. height: math.unit(2.62, "feet"),
  52395. weight: math.unit(200, "kg"),
  52396. name: "Top",
  52397. image: {
  52398. source: "./media/characters/juniper-skunktaur/top.svg"
  52399. }
  52400. },
  52401. },
  52402. [
  52403. {
  52404. name: "Normal",
  52405. height: math.unit(6 + 3/12, "feet"),
  52406. default: true
  52407. },
  52408. ]
  52409. ))
  52410. characterMakers.push(() => makeCharacter(
  52411. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  52412. {
  52413. front: {
  52414. height: math.unit(20.5, "feet"),
  52415. name: "Front",
  52416. image: {
  52417. source: "./media/characters/rei/front.svg",
  52418. extra: 1349/1195,
  52419. bottom: 31/1380
  52420. }
  52421. },
  52422. back: {
  52423. height: math.unit(20.5, "feet"),
  52424. name: "Back",
  52425. image: {
  52426. source: "./media/characters/rei/back.svg",
  52427. extra: 1358/1204,
  52428. bottom: 22/1380
  52429. }
  52430. },
  52431. pawsDigi: {
  52432. height: math.unit(3.45, "feet"),
  52433. name: "Paws (Digi)",
  52434. image: {
  52435. source: "./media/characters/rei/paws-digi.svg"
  52436. }
  52437. },
  52438. pawsPlanti: {
  52439. height: math.unit(3.45, "feet"),
  52440. name: "Paws (Planti)",
  52441. image: {
  52442. source: "./media/characters/rei/paws-planti.svg"
  52443. }
  52444. },
  52445. },
  52446. [
  52447. {
  52448. name: "Normal",
  52449. height: math.unit(20.5, "feet"),
  52450. default: true
  52451. },
  52452. ]
  52453. ))
  52454. characterMakers.push(() => makeCharacter(
  52455. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  52456. {
  52457. front: {
  52458. height: math.unit(5 + 11/12, "feet"),
  52459. name: "Front",
  52460. image: {
  52461. source: "./media/characters/carina/front.svg",
  52462. extra: 1720/1449,
  52463. bottom: 14/1734
  52464. }
  52465. },
  52466. back: {
  52467. height: math.unit(5 + 11/12, "feet"),
  52468. name: "Back",
  52469. image: {
  52470. source: "./media/characters/carina/back.svg",
  52471. extra: 1493/1445,
  52472. bottom: 17/1510
  52473. }
  52474. },
  52475. paw: {
  52476. height: math.unit(0.92, "feet"),
  52477. name: "Paw",
  52478. image: {
  52479. source: "./media/characters/carina/paw.svg"
  52480. }
  52481. },
  52482. },
  52483. [
  52484. {
  52485. name: "Normal",
  52486. height: math.unit(5 + 11/12, "feet"),
  52487. default: true
  52488. },
  52489. ]
  52490. ))
  52491. characterMakers.push(() => makeCharacter(
  52492. { name: "Maya", species: ["cat"], tags: ["anthro"] },
  52493. {
  52494. front: {
  52495. height: math.unit(4.88, "meters"),
  52496. name: "Front",
  52497. image: {
  52498. source: "./media/characters/maya/front.svg",
  52499. extra: 1222/1145,
  52500. bottom: 57/1279
  52501. }
  52502. },
  52503. },
  52504. [
  52505. {
  52506. name: "Normal",
  52507. height: math.unit(4.88, "meters"),
  52508. default: true
  52509. },
  52510. {
  52511. name: "Macro",
  52512. height: math.unit(38.1, "meters")
  52513. },
  52514. {
  52515. name: "Macro+",
  52516. height: math.unit(152.4, "meters")
  52517. },
  52518. {
  52519. name: "Macro++",
  52520. height: math.unit(16.09, "km")
  52521. },
  52522. {
  52523. name: "Mega-macro",
  52524. height: math.unit(700, "megameters")
  52525. },
  52526. ]
  52527. ))
  52528. characterMakers.push(() => makeCharacter(
  52529. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  52530. {
  52531. front: {
  52532. height: math.unit(6 + 2/12, "feet"),
  52533. weight: math.unit(500, "lb"),
  52534. preyCapacity: math.unit(4, "people"),
  52535. name: "Front",
  52536. image: {
  52537. source: "./media/characters/yepir/front.svg"
  52538. }
  52539. },
  52540. side: {
  52541. height: math.unit(6 + 2/12, "feet"),
  52542. weight: math.unit(500, "lb"),
  52543. preyCapacity: math.unit(4, "people"),
  52544. name: "Side",
  52545. image: {
  52546. source: "./media/characters/yepir/side.svg"
  52547. }
  52548. },
  52549. paw: {
  52550. height: math.unit(1.05, "feet"),
  52551. name: "Paw",
  52552. image: {
  52553. source: "./media/characters/yepir/paw.svg"
  52554. }
  52555. },
  52556. },
  52557. [
  52558. {
  52559. name: "Normal",
  52560. height: math.unit(6 + 2/12, "feet"),
  52561. default: true
  52562. },
  52563. ]
  52564. ))
  52565. characterMakers.push(() => makeCharacter(
  52566. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  52567. {
  52568. front: {
  52569. height: math.unit(5 + 4/12, "feet"),
  52570. name: "Front",
  52571. image: {
  52572. source: "./media/characters/russec/front.svg",
  52573. extra: 1926/1626,
  52574. bottom: 72/1998
  52575. }
  52576. },
  52577. back: {
  52578. height: math.unit(5 + 4/12, "feet"),
  52579. name: "Back",
  52580. image: {
  52581. source: "./media/characters/russec/back.svg",
  52582. extra: 1910/1591,
  52583. bottom: 48/1958
  52584. }
  52585. },
  52586. },
  52587. [
  52588. {
  52589. name: "Small",
  52590. height: math.unit(5 + 4/12, "feet")
  52591. },
  52592. {
  52593. name: "Normal",
  52594. height: math.unit(72, "feet"),
  52595. default: true
  52596. },
  52597. ]
  52598. ))
  52599. characterMakers.push(() => makeCharacter(
  52600. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  52601. {
  52602. side: {
  52603. height: math.unit(12, "feet"),
  52604. name: "Side",
  52605. image: {
  52606. source: "./media/characters/cianus/side.svg",
  52607. extra: 808/526,
  52608. bottom: 61/869
  52609. }
  52610. },
  52611. },
  52612. [
  52613. {
  52614. name: "Normal",
  52615. height: math.unit(12, "feet"),
  52616. default: true
  52617. },
  52618. ]
  52619. ))
  52620. characterMakers.push(() => makeCharacter(
  52621. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  52622. {
  52623. front: {
  52624. height: math.unit(9 + 6/12, "feet"),
  52625. weight: math.unit(300, "lb"),
  52626. name: "Front",
  52627. image: {
  52628. source: "./media/characters/ahab/front.svg",
  52629. extra: 1897/1868,
  52630. bottom: 121/2018
  52631. }
  52632. },
  52633. frontNsfw: {
  52634. height: math.unit(9 + 6/12, "feet"),
  52635. weight: math.unit(300, "lb"),
  52636. name: "Front-nsfw",
  52637. image: {
  52638. source: "./media/characters/ahab/front-nsfw.svg",
  52639. extra: 1897/1868,
  52640. bottom: 121/2018
  52641. }
  52642. },
  52643. },
  52644. [
  52645. {
  52646. name: "Normal",
  52647. height: math.unit(9 + 6/12, "feet")
  52648. },
  52649. {
  52650. name: "Macro",
  52651. height: math.unit(657, "feet"),
  52652. default: true
  52653. },
  52654. ]
  52655. ))
  52656. characterMakers.push(() => makeCharacter(
  52657. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  52658. {
  52659. front: {
  52660. height: math.unit(2.69, "meters"),
  52661. weight: math.unit(132, "kg"),
  52662. name: "Front",
  52663. image: {
  52664. source: "./media/characters/aarkus/front.svg",
  52665. extra: 1400/1231,
  52666. bottom: 34/1434
  52667. }
  52668. },
  52669. back: {
  52670. height: math.unit(2.69, "meters"),
  52671. weight: math.unit(132, "kg"),
  52672. name: "Back",
  52673. image: {
  52674. source: "./media/characters/aarkus/back.svg",
  52675. extra: 1381/1218,
  52676. bottom: 30/1411
  52677. }
  52678. },
  52679. frontNsfw: {
  52680. height: math.unit(2.69, "meters"),
  52681. weight: math.unit(132, "kg"),
  52682. name: "Front (NSFW)",
  52683. image: {
  52684. source: "./media/characters/aarkus/front-nsfw.svg",
  52685. extra: 1400/1231,
  52686. bottom: 34/1434
  52687. }
  52688. },
  52689. foot: {
  52690. height: math.unit(1.45, "feet"),
  52691. name: "Foot",
  52692. image: {
  52693. source: "./media/characters/aarkus/foot.svg"
  52694. }
  52695. },
  52696. head: {
  52697. height: math.unit(2.85, "feet"),
  52698. name: "Head",
  52699. image: {
  52700. source: "./media/characters/aarkus/head.svg"
  52701. }
  52702. },
  52703. headAlt: {
  52704. height: math.unit(3.07, "feet"),
  52705. name: "Head (Alt)",
  52706. image: {
  52707. source: "./media/characters/aarkus/head-alt.svg"
  52708. }
  52709. },
  52710. mouth: {
  52711. height: math.unit(1.25, "feet"),
  52712. name: "Mouth",
  52713. image: {
  52714. source: "./media/characters/aarkus/mouth.svg"
  52715. }
  52716. },
  52717. dick: {
  52718. height: math.unit(1.77, "feet"),
  52719. name: "Dick",
  52720. image: {
  52721. source: "./media/characters/aarkus/dick.svg"
  52722. }
  52723. },
  52724. },
  52725. [
  52726. {
  52727. name: "Normal",
  52728. height: math.unit(2.69, "meters"),
  52729. default: true
  52730. },
  52731. {
  52732. name: "Macro",
  52733. height: math.unit(269, "meters")
  52734. },
  52735. {
  52736. name: "Macro+",
  52737. height: math.unit(672.5, "meters")
  52738. },
  52739. {
  52740. name: "Megamacro",
  52741. height: math.unit(2.017, "km")
  52742. },
  52743. ]
  52744. ))
  52745. characterMakers.push(() => makeCharacter(
  52746. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  52747. {
  52748. front: {
  52749. height: math.unit(23.47, "cm"),
  52750. weight: math.unit(600, "grams"),
  52751. name: "Front",
  52752. image: {
  52753. source: "./media/characters/diode/front.svg",
  52754. extra: 1778/1396,
  52755. bottom: 95/1873
  52756. }
  52757. },
  52758. side: {
  52759. height: math.unit(23.47, "cm"),
  52760. weight: math.unit(600, "grams"),
  52761. name: "Side",
  52762. image: {
  52763. source: "./media/characters/diode/side.svg",
  52764. extra: 1831/1404,
  52765. bottom: 86/1917
  52766. }
  52767. },
  52768. wings: {
  52769. height: math.unit(0.683, "feet"),
  52770. name: "Wings",
  52771. image: {
  52772. source: "./media/characters/diode/wings.svg"
  52773. }
  52774. },
  52775. },
  52776. [
  52777. {
  52778. name: "Normal",
  52779. height: math.unit(23.47, "cm"),
  52780. default: true
  52781. },
  52782. ]
  52783. ))
  52784. characterMakers.push(() => makeCharacter(
  52785. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  52786. {
  52787. front: {
  52788. height: math.unit(6 + 3/12, "feet"),
  52789. weight: math.unit(250, "lb"),
  52790. name: "Front",
  52791. image: {
  52792. source: "./media/characters/reika/front.svg",
  52793. extra: 1120/1078,
  52794. bottom: 86/1206
  52795. }
  52796. },
  52797. },
  52798. [
  52799. {
  52800. name: "Normal",
  52801. height: math.unit(6 + 3/12, "feet"),
  52802. default: true
  52803. },
  52804. ]
  52805. ))
  52806. characterMakers.push(() => makeCharacter(
  52807. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  52808. {
  52809. front: {
  52810. height: math.unit(16 + 8/12, "feet"),
  52811. weight: math.unit(9000, "lb"),
  52812. name: "Front",
  52813. image: {
  52814. source: "./media/characters/lokuto-takama/front.svg",
  52815. extra: 1774/1632,
  52816. bottom: 147/1921
  52817. },
  52818. extraAttributes: {
  52819. "bustWidth": {
  52820. name: "Bust Width",
  52821. power: 1,
  52822. type: "length",
  52823. base: math.unit(2.4, "meters")
  52824. },
  52825. "breastWeight": {
  52826. name: "Breast Weight",
  52827. power: 3,
  52828. type: "mass",
  52829. base: math.unit(1000, "kg")
  52830. },
  52831. }
  52832. },
  52833. },
  52834. [
  52835. {
  52836. name: "Normal",
  52837. height: math.unit(16 + 8/12, "feet"),
  52838. default: true
  52839. },
  52840. ]
  52841. ))
  52842. characterMakers.push(() => makeCharacter(
  52843. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  52844. {
  52845. front: {
  52846. height: math.unit(10, "cm"),
  52847. weight: math.unit(850, "grams"),
  52848. name: "Front",
  52849. image: {
  52850. source: "./media/characters/owak-bone/front.svg",
  52851. extra: 1965/1801,
  52852. bottom: 31/1996
  52853. }
  52854. },
  52855. },
  52856. [
  52857. {
  52858. name: "Normal",
  52859. height: math.unit(10, "cm"),
  52860. default: true
  52861. },
  52862. ]
  52863. ))
  52864. characterMakers.push(() => makeCharacter(
  52865. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  52866. {
  52867. front: {
  52868. height: math.unit(2 + 6/12, "feet"),
  52869. weight: math.unit(9, "lb"),
  52870. name: "Front",
  52871. image: {
  52872. source: "./media/characters/muffin/front.svg",
  52873. extra: 1220/1195,
  52874. bottom: 84/1304
  52875. }
  52876. },
  52877. },
  52878. [
  52879. {
  52880. name: "Normal",
  52881. height: math.unit(2 + 6/12, "feet"),
  52882. default: true
  52883. },
  52884. ]
  52885. ))
  52886. characterMakers.push(() => makeCharacter(
  52887. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  52888. {
  52889. front: {
  52890. height: math.unit(7, "feet"),
  52891. name: "Front",
  52892. image: {
  52893. source: "./media/characters/chimera/front.svg",
  52894. extra: 1752/1614,
  52895. bottom: 68/1820
  52896. }
  52897. },
  52898. },
  52899. [
  52900. {
  52901. name: "Normal",
  52902. height: math.unit(7, "feet")
  52903. },
  52904. {
  52905. name: "Gigamacro",
  52906. height: math.unit(2.9, "gigameters"),
  52907. default: true
  52908. },
  52909. {
  52910. name: "Universal",
  52911. height: math.unit(1.56e26, "yottameters")
  52912. },
  52913. ]
  52914. ))
  52915. characterMakers.push(() => makeCharacter(
  52916. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  52917. {
  52918. front: {
  52919. height: math.unit(3, "feet"),
  52920. weight: math.unit(20, "lb"),
  52921. name: "Front",
  52922. image: {
  52923. source: "./media/characters/kit-fennec-fox/front.svg",
  52924. extra: 1027/932,
  52925. bottom: 16/1043
  52926. }
  52927. },
  52928. back: {
  52929. height: math.unit(3, "feet"),
  52930. weight: math.unit(20, "lb"),
  52931. name: "Back",
  52932. image: {
  52933. source: "./media/characters/kit-fennec-fox/back.svg",
  52934. extra: 1027/932,
  52935. bottom: 16/1043
  52936. }
  52937. },
  52938. },
  52939. [
  52940. {
  52941. name: "Normal",
  52942. height: math.unit(3, "feet"),
  52943. default: true
  52944. },
  52945. ]
  52946. ))
  52947. characterMakers.push(() => makeCharacter(
  52948. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  52949. {
  52950. front: {
  52951. height: math.unit(167, "cm"),
  52952. name: "Front",
  52953. image: {
  52954. source: "./media/characters/blue-otter/front.svg",
  52955. extra: 1951/1920,
  52956. bottom: 31/1982
  52957. }
  52958. },
  52959. },
  52960. [
  52961. {
  52962. name: "Otter-Sized",
  52963. height: math.unit(100, "cm")
  52964. },
  52965. {
  52966. name: "Normal",
  52967. height: math.unit(167, "cm"),
  52968. default: true
  52969. },
  52970. ]
  52971. ))
  52972. characterMakers.push(() => makeCharacter(
  52973. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  52974. {
  52975. front: {
  52976. height: math.unit(4 + 4/12, "feet"),
  52977. name: "Front",
  52978. image: {
  52979. source: "./media/characters/maverick-leopard-gecko/front.svg",
  52980. extra: 1072/1067,
  52981. bottom: 117/1189
  52982. }
  52983. },
  52984. back: {
  52985. height: math.unit(4 + 4/12, "feet"),
  52986. name: "Back",
  52987. image: {
  52988. source: "./media/characters/maverick-leopard-gecko/back.svg",
  52989. extra: 1135/1129,
  52990. bottom: 57/1192
  52991. }
  52992. },
  52993. head: {
  52994. height: math.unit(1.77, "feet"),
  52995. name: "Head",
  52996. image: {
  52997. source: "./media/characters/maverick-leopard-gecko/head.svg"
  52998. }
  52999. },
  53000. },
  53001. [
  53002. {
  53003. name: "Normal",
  53004. height: math.unit(4 + 4/12, "feet"),
  53005. default: true
  53006. },
  53007. ]
  53008. ))
  53009. characterMakers.push(() => makeCharacter(
  53010. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  53011. {
  53012. front: {
  53013. height: math.unit(2, "inches"),
  53014. name: "Front",
  53015. image: {
  53016. source: "./media/characters/carley-hartford/front.svg",
  53017. extra: 1035/988,
  53018. bottom: 23/1058
  53019. }
  53020. },
  53021. back: {
  53022. height: math.unit(2, "inches"),
  53023. name: "Back",
  53024. image: {
  53025. source: "./media/characters/carley-hartford/back.svg",
  53026. extra: 1035/988,
  53027. bottom: 23/1058
  53028. }
  53029. },
  53030. dressed: {
  53031. height: math.unit(2, "inches"),
  53032. name: "Dressed",
  53033. image: {
  53034. source: "./media/characters/carley-hartford/dressed.svg",
  53035. extra: 651/620,
  53036. bottom: 0/651
  53037. }
  53038. },
  53039. },
  53040. [
  53041. {
  53042. name: "Micro",
  53043. height: math.unit(2, "inches"),
  53044. default: true
  53045. },
  53046. {
  53047. name: "Macro",
  53048. height: math.unit(6 + 3/12, "feet")
  53049. },
  53050. ]
  53051. ))
  53052. characterMakers.push(() => makeCharacter(
  53053. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  53054. {
  53055. front: {
  53056. height: math.unit(2 + 3/12, "feet"),
  53057. weight: math.unit(15 + 7/16, "lb"),
  53058. name: "Front",
  53059. image: {
  53060. source: "./media/characters/duke/front.svg",
  53061. extra: 910/815,
  53062. bottom: 30/940
  53063. }
  53064. },
  53065. },
  53066. [
  53067. {
  53068. name: "Normal",
  53069. height: math.unit(2 + 3/12, "feet"),
  53070. default: true
  53071. },
  53072. ]
  53073. ))
  53074. characterMakers.push(() => makeCharacter(
  53075. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  53076. {
  53077. front: {
  53078. height: math.unit(5 + 4/12, "feet"),
  53079. weight: math.unit(156, "lb"),
  53080. name: "Front",
  53081. image: {
  53082. source: "./media/characters/dein/front.svg",
  53083. extra: 855/815,
  53084. bottom: 48/903
  53085. }
  53086. },
  53087. side: {
  53088. height: math.unit(5 + 4/12, "feet"),
  53089. weight: math.unit(156, "lb"),
  53090. name: "side",
  53091. image: {
  53092. source: "./media/characters/dein/side.svg",
  53093. extra: 846/803,
  53094. bottom: 25/871
  53095. }
  53096. },
  53097. maw: {
  53098. height: math.unit(1.45, "feet"),
  53099. name: "Maw",
  53100. image: {
  53101. source: "./media/characters/dein/maw.svg"
  53102. }
  53103. },
  53104. },
  53105. [
  53106. {
  53107. name: "Ferret Sized",
  53108. height: math.unit(2 + 5/12, "feet")
  53109. },
  53110. {
  53111. name: "Normal",
  53112. height: math.unit(5 + 4/12, "feet"),
  53113. default: true
  53114. },
  53115. ]
  53116. ))
  53117. characterMakers.push(() => makeCharacter(
  53118. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  53119. {
  53120. front: {
  53121. height: math.unit(84 + 8/12, "feet"),
  53122. weight: math.unit(942180, "lb"),
  53123. name: "Front",
  53124. image: {
  53125. source: "./media/characters/daurine-arima/front.svg",
  53126. extra: 1989/1782,
  53127. bottom: 37/2026
  53128. }
  53129. },
  53130. side: {
  53131. height: math.unit(84 + 8/12, "feet"),
  53132. weight: math.unit(942180, "lb"),
  53133. name: "Side",
  53134. image: {
  53135. source: "./media/characters/daurine-arima/side.svg",
  53136. extra: 1997/1790,
  53137. bottom: 21/2018
  53138. }
  53139. },
  53140. back: {
  53141. height: math.unit(84 + 8/12, "feet"),
  53142. weight: math.unit(942180, "lb"),
  53143. name: "Back",
  53144. image: {
  53145. source: "./media/characters/daurine-arima/back.svg",
  53146. extra: 1992/1800,
  53147. bottom: 12/2004
  53148. }
  53149. },
  53150. head: {
  53151. height: math.unit(15.5, "feet"),
  53152. name: "Head",
  53153. image: {
  53154. source: "./media/characters/daurine-arima/head.svg"
  53155. }
  53156. },
  53157. headAlt: {
  53158. height: math.unit(19.19, "feet"),
  53159. name: "Head (Alt)",
  53160. image: {
  53161. source: "./media/characters/daurine-arima/head-alt.svg"
  53162. }
  53163. },
  53164. },
  53165. [
  53166. {
  53167. name: "Minimum height",
  53168. height: math.unit(8 + 10/12, "feet")
  53169. },
  53170. {
  53171. name: "Comfort height",
  53172. height: math.unit(19 + 6 /12, "feet")
  53173. },
  53174. {
  53175. name: "\"Normal\" height",
  53176. height: math.unit(28 + 10/12, "feet")
  53177. },
  53178. {
  53179. name: "Base height",
  53180. height: math.unit(84 + 8/12, "feet"),
  53181. default: true
  53182. },
  53183. {
  53184. name: "Mini-macro",
  53185. height: math.unit(2360, "feet")
  53186. },
  53187. {
  53188. name: "Macro",
  53189. height: math.unit(10, "miles")
  53190. },
  53191. {
  53192. name: "Goddess",
  53193. height: math.unit(9.99e40, "yottameters")
  53194. },
  53195. ]
  53196. ))
  53197. characterMakers.push(() => makeCharacter(
  53198. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  53199. {
  53200. front: {
  53201. height: math.unit(2.3, "meters"),
  53202. name: "Front",
  53203. image: {
  53204. source: "./media/characters/cilenomon/front.svg",
  53205. extra: 1963/1778,
  53206. bottom: 54/2017
  53207. }
  53208. },
  53209. },
  53210. [
  53211. {
  53212. name: "Normal",
  53213. height: math.unit(2.3, "meters"),
  53214. default: true
  53215. },
  53216. {
  53217. name: "Big",
  53218. height: math.unit(5, "meters")
  53219. },
  53220. {
  53221. name: "Macro",
  53222. height: math.unit(30, "meters")
  53223. },
  53224. {
  53225. name: "True",
  53226. height: math.unit(1, "universe")
  53227. },
  53228. ]
  53229. ))
  53230. characterMakers.push(() => makeCharacter(
  53231. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  53232. {
  53233. front: {
  53234. height: math.unit(5, "feet"),
  53235. name: "Front",
  53236. image: {
  53237. source: "./media/characters/sen-mink/front.svg",
  53238. extra: 1727/1675,
  53239. bottom: 35/1762
  53240. }
  53241. },
  53242. },
  53243. [
  53244. {
  53245. name: "Normal",
  53246. height: math.unit(5, "feet"),
  53247. default: true
  53248. },
  53249. ]
  53250. ))
  53251. characterMakers.push(() => makeCharacter(
  53252. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  53253. {
  53254. front: {
  53255. height: math.unit(5.42999, "feet"),
  53256. weight: math.unit(100, "lb"),
  53257. name: "Front",
  53258. image: {
  53259. source: "./media/characters/ophois/front.svg",
  53260. extra: 1429/1286,
  53261. bottom: 60/1489
  53262. }
  53263. },
  53264. },
  53265. [
  53266. {
  53267. name: "Normal",
  53268. height: math.unit(5.42999, "feet"),
  53269. default: true
  53270. },
  53271. ]
  53272. ))
  53273. characterMakers.push(() => makeCharacter(
  53274. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  53275. {
  53276. front: {
  53277. height: math.unit(2, "meters"),
  53278. name: "Front",
  53279. image: {
  53280. source: "./media/characters/riley/front.svg",
  53281. extra: 1779/1754,
  53282. bottom: 139/1918
  53283. }
  53284. },
  53285. },
  53286. [
  53287. {
  53288. name: "Normal",
  53289. height: math.unit(2, "meters"),
  53290. default: true
  53291. },
  53292. ]
  53293. ))
  53294. characterMakers.push(() => makeCharacter(
  53295. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  53296. {
  53297. front: {
  53298. height: math.unit(6 + 2/12, "feet"),
  53299. weight: math.unit(195, "lb"),
  53300. preyCapacity: math.unit(6, "people"),
  53301. name: "Front",
  53302. image: {
  53303. source: "./media/characters/shuken-flash/front.svg",
  53304. extra: 1905/1739,
  53305. bottom: 65/1970
  53306. }
  53307. },
  53308. back: {
  53309. height: math.unit(6 + 2/12, "feet"),
  53310. weight: math.unit(195, "lb"),
  53311. preyCapacity: math.unit(6, "people"),
  53312. name: "Back",
  53313. image: {
  53314. source: "./media/characters/shuken-flash/back.svg",
  53315. extra: 1912/1751,
  53316. bottom: 13/1925
  53317. }
  53318. },
  53319. },
  53320. [
  53321. {
  53322. name: "Normal",
  53323. height: math.unit(6 + 2/12, "feet"),
  53324. default: true
  53325. },
  53326. ]
  53327. ))
  53328. characterMakers.push(() => makeCharacter(
  53329. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  53330. {
  53331. front: {
  53332. height: math.unit(5 + 9/12, "feet"),
  53333. weight: math.unit(150, "lb"),
  53334. name: "Front",
  53335. image: {
  53336. source: "./media/characters/plat/front.svg",
  53337. extra: 1816/1703,
  53338. bottom: 43/1859
  53339. }
  53340. },
  53341. side: {
  53342. height: math.unit(5 + 9/12, "feet"),
  53343. weight: math.unit(300, "lb"),
  53344. name: "Side",
  53345. image: {
  53346. source: "./media/characters/plat/side.svg",
  53347. extra: 1824/1699,
  53348. bottom: 18/1842
  53349. }
  53350. },
  53351. },
  53352. [
  53353. {
  53354. name: "Normal",
  53355. height: math.unit(5 + 9/12, "feet"),
  53356. default: true
  53357. },
  53358. ]
  53359. ))
  53360. characterMakers.push(() => makeCharacter(
  53361. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  53362. {
  53363. front: {
  53364. height: math.unit(9, "feet"),
  53365. weight: math.unit(1800, "lb"),
  53366. name: "Front",
  53367. image: {
  53368. source: "./media/characters/elaine/front.svg",
  53369. extra: 1833/1354,
  53370. bottom: 25/1858
  53371. }
  53372. },
  53373. back: {
  53374. height: math.unit(8.8, "feet"),
  53375. weight: math.unit(1800, "lb"),
  53376. name: "Back",
  53377. image: {
  53378. source: "./media/characters/elaine/back.svg",
  53379. extra: 1641/1233,
  53380. bottom: 53/1694
  53381. }
  53382. },
  53383. },
  53384. [
  53385. {
  53386. name: "Normal",
  53387. height: math.unit(9, "feet"),
  53388. default: true
  53389. },
  53390. ]
  53391. ))
  53392. characterMakers.push(() => makeCharacter(
  53393. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  53394. {
  53395. front: {
  53396. height: math.unit(17 + 9/12, "feet"),
  53397. weight: math.unit(8000, "lb"),
  53398. name: "Front",
  53399. image: {
  53400. source: "./media/characters/vera-raven/front.svg",
  53401. extra: 1457/1412,
  53402. bottom: 121/1578
  53403. }
  53404. },
  53405. side: {
  53406. height: math.unit(17 + 9/12, "feet"),
  53407. weight: math.unit(8000, "lb"),
  53408. name: "Side",
  53409. image: {
  53410. source: "./media/characters/vera-raven/side.svg",
  53411. extra: 1510/1464,
  53412. bottom: 54/1564
  53413. }
  53414. },
  53415. },
  53416. [
  53417. {
  53418. name: "Normal",
  53419. height: math.unit(17 + 9/12, "feet"),
  53420. default: true
  53421. },
  53422. ]
  53423. ))
  53424. characterMakers.push(() => makeCharacter(
  53425. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  53426. {
  53427. dressed: {
  53428. height: math.unit(6 + 9/12, "feet"),
  53429. name: "Dressed",
  53430. image: {
  53431. source: "./media/characters/nakisha/dressed.svg",
  53432. extra: 1909/1757,
  53433. bottom: 48/1957
  53434. }
  53435. },
  53436. nude: {
  53437. height: math.unit(6 + 9/12, "feet"),
  53438. name: "Nude",
  53439. image: {
  53440. source: "./media/characters/nakisha/nude.svg",
  53441. extra: 1917/1765,
  53442. bottom: 34/1951
  53443. }
  53444. },
  53445. },
  53446. [
  53447. {
  53448. name: "Normal",
  53449. height: math.unit(6 + 9/12, "feet"),
  53450. default: true
  53451. },
  53452. ]
  53453. ))
  53454. characterMakers.push(() => makeCharacter(
  53455. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  53456. {
  53457. front: {
  53458. height: math.unit(87, "meters"),
  53459. name: "Front",
  53460. image: {
  53461. source: "./media/characters/serafin/front.svg",
  53462. extra: 1919/1776,
  53463. bottom: 65/1984
  53464. }
  53465. },
  53466. },
  53467. [
  53468. {
  53469. name: "Normal",
  53470. height: math.unit(87, "meters"),
  53471. default: true
  53472. },
  53473. ]
  53474. ))
  53475. characterMakers.push(() => makeCharacter(
  53476. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  53477. {
  53478. front: {
  53479. height: math.unit(6, "feet"),
  53480. weight: math.unit(200, "lb"),
  53481. name: "Front",
  53482. image: {
  53483. source: "./media/characters/poptart/front.svg",
  53484. extra: 615/583,
  53485. bottom: 23/638
  53486. }
  53487. },
  53488. back: {
  53489. height: math.unit(6, "feet"),
  53490. weight: math.unit(200, "lb"),
  53491. name: "Back",
  53492. image: {
  53493. source: "./media/characters/poptart/back.svg",
  53494. extra: 617/584,
  53495. bottom: 22/639
  53496. }
  53497. },
  53498. frontNsfw: {
  53499. height: math.unit(6, "feet"),
  53500. weight: math.unit(200, "lb"),
  53501. name: "Front (NSFW)",
  53502. image: {
  53503. source: "./media/characters/poptart/front-nsfw.svg",
  53504. extra: 615/583,
  53505. bottom: 23/638
  53506. }
  53507. },
  53508. backNsfw: {
  53509. height: math.unit(6, "feet"),
  53510. weight: math.unit(200, "lb"),
  53511. name: "Back (NSFW)",
  53512. image: {
  53513. source: "./media/characters/poptart/back-nsfw.svg",
  53514. extra: 617/584,
  53515. bottom: 22/639
  53516. }
  53517. },
  53518. hand: {
  53519. height: math.unit(1.14, "feet"),
  53520. name: "Hand",
  53521. image: {
  53522. source: "./media/characters/poptart/hand.svg"
  53523. }
  53524. },
  53525. foot: {
  53526. height: math.unit(1.5, "feet"),
  53527. name: "Foot",
  53528. image: {
  53529. source: "./media/characters/poptart/foot.svg"
  53530. }
  53531. },
  53532. },
  53533. [
  53534. {
  53535. name: "Normal",
  53536. height: math.unit(6, "feet"),
  53537. default: true
  53538. },
  53539. {
  53540. name: "Grande",
  53541. height: math.unit(350, "feet")
  53542. },
  53543. {
  53544. name: "Massif",
  53545. height: math.unit(967, "feet")
  53546. },
  53547. ]
  53548. ))
  53549. characterMakers.push(() => makeCharacter(
  53550. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  53551. {
  53552. hyenaSide: {
  53553. height: math.unit(120, "cm"),
  53554. weight: math.unit(120, "lb"),
  53555. name: "Side",
  53556. image: {
  53557. source: "./media/characters/trance/hyena-side.svg",
  53558. extra: 998/904,
  53559. bottom: 76/1074
  53560. }
  53561. },
  53562. },
  53563. [
  53564. {
  53565. name: "Normal",
  53566. height: math.unit(120, "cm"),
  53567. default: true
  53568. },
  53569. {
  53570. name: "Dire",
  53571. height: math.unit(230, "cm")
  53572. },
  53573. {
  53574. name: "Macro",
  53575. height: math.unit(37, "feet")
  53576. },
  53577. ]
  53578. ))
  53579. characterMakers.push(() => makeCharacter(
  53580. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  53581. {
  53582. front: {
  53583. height: math.unit(6 + 3/12, "feet"),
  53584. name: "Front",
  53585. image: {
  53586. source: "./media/characters/michael-berretta/front.svg",
  53587. extra: 515/494,
  53588. bottom: 20/535
  53589. }
  53590. },
  53591. back: {
  53592. height: math.unit(6 + 3/12, "feet"),
  53593. name: "Back",
  53594. image: {
  53595. source: "./media/characters/michael-berretta/back.svg",
  53596. extra: 520/497,
  53597. bottom: 21/541
  53598. }
  53599. },
  53600. frontNsfw: {
  53601. height: math.unit(6 + 3/12, "feet"),
  53602. name: "Front (NSFW)",
  53603. image: {
  53604. source: "./media/characters/michael-berretta/front-nsfw.svg",
  53605. extra: 515/494,
  53606. bottom: 20/535
  53607. }
  53608. },
  53609. dick: {
  53610. height: math.unit(1, "feet"),
  53611. name: "Dick",
  53612. image: {
  53613. source: "./media/characters/michael-berretta/dick.svg"
  53614. }
  53615. },
  53616. },
  53617. [
  53618. {
  53619. name: "Normal",
  53620. height: math.unit(6 + 3/12, "feet"),
  53621. default: true
  53622. },
  53623. {
  53624. name: "Big",
  53625. height: math.unit(12, "feet")
  53626. },
  53627. {
  53628. name: "Macro",
  53629. height: math.unit(187.5, "feet")
  53630. },
  53631. ]
  53632. ))
  53633. characterMakers.push(() => makeCharacter(
  53634. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  53635. {
  53636. front: {
  53637. height: math.unit(9 + 9/12, "feet"),
  53638. weight: math.unit(1244, "lb"),
  53639. name: "Front",
  53640. image: {
  53641. source: "./media/characters/stella-edgecomb/front.svg",
  53642. extra: 1835/1706,
  53643. bottom: 49/1884
  53644. }
  53645. },
  53646. pen: {
  53647. height: math.unit(0.95, "feet"),
  53648. name: "Pen",
  53649. image: {
  53650. source: "./media/characters/stella-edgecomb/pen.svg"
  53651. }
  53652. },
  53653. },
  53654. [
  53655. {
  53656. name: "Cozy Bear",
  53657. height: math.unit(0.5, "inches")
  53658. },
  53659. {
  53660. name: "Normal",
  53661. height: math.unit(9 + 9/12, "feet"),
  53662. default: true
  53663. },
  53664. {
  53665. name: "Giga Bear",
  53666. height: math.unit(1, "mile")
  53667. },
  53668. {
  53669. name: "Great Bear",
  53670. height: math.unit(53, "miles")
  53671. },
  53672. {
  53673. name: "Goddess Bear",
  53674. height: math.unit(40000, "miles")
  53675. },
  53676. {
  53677. name: "Sun Bear",
  53678. height: math.unit(900000, "miles")
  53679. },
  53680. ]
  53681. ))
  53682. characterMakers.push(() => makeCharacter(
  53683. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  53684. {
  53685. anthroFront: {
  53686. height: math.unit(556, "cm"),
  53687. weight: math.unit(2650, "kg"),
  53688. preyCapacity: math.unit(3, "people"),
  53689. name: "Front",
  53690. image: {
  53691. source: "./media/characters/ash´iika/front.svg",
  53692. extra: 710/673,
  53693. bottom: 15/725
  53694. },
  53695. form: "anthro",
  53696. default: true
  53697. },
  53698. anthroSide: {
  53699. height: math.unit(556, "cm"),
  53700. weight: math.unit(2650, "kg"),
  53701. preyCapacity: math.unit(3, "people"),
  53702. name: "Side",
  53703. image: {
  53704. source: "./media/characters/ash´iika/side.svg",
  53705. extra: 696/676,
  53706. bottom: 13/709
  53707. },
  53708. form: "anthro"
  53709. },
  53710. anthroDressed: {
  53711. height: math.unit(556, "cm"),
  53712. weight: math.unit(2650, "kg"),
  53713. preyCapacity: math.unit(3, "people"),
  53714. name: "Dressed",
  53715. image: {
  53716. source: "./media/characters/ash´iika/dressed.svg",
  53717. extra: 710/673,
  53718. bottom: 15/725
  53719. },
  53720. form: "anthro"
  53721. },
  53722. anthroHead: {
  53723. height: math.unit(3.5, "feet"),
  53724. name: "Head",
  53725. image: {
  53726. source: "./media/characters/ash´iika/head.svg",
  53727. extra: 348/291,
  53728. bottom: 45/393
  53729. },
  53730. form: "anthro"
  53731. },
  53732. feralSide: {
  53733. height: math.unit(870, "cm"),
  53734. weight: math.unit(17500, "kg"),
  53735. preyCapacity: math.unit(15, "people"),
  53736. name: "Side",
  53737. image: {
  53738. source: "./media/characters/ash´iika/feral.svg",
  53739. extra: 595/199,
  53740. bottom: 7/602
  53741. },
  53742. form: "feral",
  53743. default: true,
  53744. },
  53745. },
  53746. [
  53747. {
  53748. name: "Normal",
  53749. height: math.unit(556, "cm"),
  53750. default: true,
  53751. form: "anthro"
  53752. },
  53753. {
  53754. name: "Macro",
  53755. height: math.unit(88, "meters"),
  53756. form: "anthro"
  53757. },
  53758. {
  53759. name: "Normal",
  53760. height: math.unit(870, "cm"),
  53761. default: true,
  53762. form: "feral"
  53763. },
  53764. {
  53765. name: "Large",
  53766. height: math.unit(25, "meters"),
  53767. form: "feral"
  53768. },
  53769. ],
  53770. {
  53771. "anthro": {
  53772. name: "Anthro",
  53773. default: true
  53774. },
  53775. "feral": {
  53776. name: "Feral",
  53777. },
  53778. }
  53779. ))
  53780. characterMakers.push(() => makeCharacter(
  53781. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  53782. {
  53783. front: {
  53784. height: math.unit(10, "feet"),
  53785. weight: math.unit(800, "lb"),
  53786. name: "Front",
  53787. image: {
  53788. source: "./media/characters/yen/front.svg",
  53789. extra: 443/411,
  53790. bottom: 6/449
  53791. }
  53792. },
  53793. sleeping: {
  53794. height: math.unit(10, "feet"),
  53795. weight: math.unit(800, "lb"),
  53796. name: "Sleeping",
  53797. image: {
  53798. source: "./media/characters/yen/sleeping.svg",
  53799. extra: 470/422,
  53800. bottom: 0/470
  53801. }
  53802. },
  53803. head: {
  53804. height: math.unit(2.2, "feet"),
  53805. name: "Head",
  53806. image: {
  53807. source: "./media/characters/yen/head.svg"
  53808. }
  53809. },
  53810. headAlt: {
  53811. height: math.unit(2.1, "feet"),
  53812. name: "Head (Alt)",
  53813. image: {
  53814. source: "./media/characters/yen/head-alt.svg"
  53815. }
  53816. },
  53817. },
  53818. [
  53819. {
  53820. name: "Normal",
  53821. height: math.unit(10, "feet"),
  53822. default: true
  53823. },
  53824. ]
  53825. ))
  53826. characterMakers.push(() => makeCharacter(
  53827. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  53828. {
  53829. front: {
  53830. height: math.unit(12, "feet"),
  53831. name: "Front",
  53832. image: {
  53833. source: "./media/characters/citra/front.svg",
  53834. extra: 1950/1710,
  53835. bottom: 47/1997
  53836. }
  53837. },
  53838. },
  53839. [
  53840. {
  53841. name: "Normal",
  53842. height: math.unit(12, "feet"),
  53843. default: true
  53844. },
  53845. ]
  53846. ))
  53847. characterMakers.push(() => makeCharacter(
  53848. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  53849. {
  53850. side: {
  53851. height: math.unit(7 + 10/12, "feet"),
  53852. name: "Side",
  53853. image: {
  53854. source: "./media/characters/sholstim/side.svg",
  53855. extra: 786/682,
  53856. bottom: 40/826
  53857. }
  53858. },
  53859. },
  53860. [
  53861. {
  53862. name: "Normal",
  53863. height: math.unit(7 + 10/12, "feet"),
  53864. default: true
  53865. },
  53866. ]
  53867. ))
  53868. characterMakers.push(() => makeCharacter(
  53869. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  53870. {
  53871. front: {
  53872. height: math.unit(3.10, "meters"),
  53873. name: "Front",
  53874. image: {
  53875. source: "./media/characters/aggyn/front.svg",
  53876. extra: 1188/963,
  53877. bottom: 24/1212
  53878. }
  53879. },
  53880. },
  53881. [
  53882. {
  53883. name: "Normal",
  53884. height: math.unit(3.10, "meters"),
  53885. default: true
  53886. },
  53887. ]
  53888. ))
  53889. characterMakers.push(() => makeCharacter(
  53890. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  53891. {
  53892. front: {
  53893. height: math.unit(7 + 5/12, "feet"),
  53894. weight: math.unit(687, "lb"),
  53895. name: "Front",
  53896. image: {
  53897. source: "./media/characters/alsandair-hergenroether/front.svg",
  53898. extra: 1251/1186,
  53899. bottom: 75/1326
  53900. }
  53901. },
  53902. back: {
  53903. height: math.unit(7 + 5/12, "feet"),
  53904. weight: math.unit(687, "lb"),
  53905. name: "Back",
  53906. image: {
  53907. source: "./media/characters/alsandair-hergenroether/back.svg",
  53908. extra: 1290/1229,
  53909. bottom: 17/1307
  53910. }
  53911. },
  53912. },
  53913. [
  53914. {
  53915. name: "Max Compression",
  53916. height: math.unit(7 + 5/12, "feet"),
  53917. default: true
  53918. },
  53919. {
  53920. name: "\"Normal\"",
  53921. height: math.unit(2, "universes")
  53922. },
  53923. ]
  53924. ))
  53925. characterMakers.push(() => makeCharacter(
  53926. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  53927. {
  53928. front: {
  53929. height: math.unit(4 + 1/12, "feet"),
  53930. weight: math.unit(92, "lb"),
  53931. name: "Front",
  53932. image: {
  53933. source: "./media/characters/ie/front.svg",
  53934. extra: 1585/1352,
  53935. bottom: 91/1676
  53936. }
  53937. },
  53938. },
  53939. [
  53940. {
  53941. name: "Normal",
  53942. height: math.unit(4 + 1/12, "feet"),
  53943. default: true
  53944. },
  53945. ]
  53946. ))
  53947. characterMakers.push(() => makeCharacter(
  53948. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  53949. {
  53950. anthro: {
  53951. height: math.unit(6, "feet"),
  53952. weight: math.unit(150, "lb"),
  53953. name: "Front",
  53954. image: {
  53955. source: "./media/characters/willow/anthro.svg",
  53956. extra: 1073/986,
  53957. bottom: 34/1107
  53958. },
  53959. form: "anthro",
  53960. default: true
  53961. },
  53962. taur: {
  53963. height: math.unit(6, "feet"),
  53964. weight: math.unit(150, "lb"),
  53965. name: "Side",
  53966. image: {
  53967. source: "./media/characters/willow/taur.svg",
  53968. extra: 647/512,
  53969. bottom: 136/783
  53970. },
  53971. form: "taur",
  53972. default: true
  53973. },
  53974. },
  53975. [
  53976. {
  53977. name: "Humanoid",
  53978. height: math.unit(2.7, "meters"),
  53979. form: "anthro"
  53980. },
  53981. {
  53982. name: "Normal",
  53983. height: math.unit(9, "meters"),
  53984. form: "anthro",
  53985. default: true
  53986. },
  53987. {
  53988. name: "Humanoid",
  53989. height: math.unit(2.1, "meters"),
  53990. form: "taur"
  53991. },
  53992. {
  53993. name: "Normal",
  53994. height: math.unit(7, "meters"),
  53995. form: "taur",
  53996. default: true
  53997. },
  53998. ],
  53999. {
  54000. "anthro": {
  54001. name: "Anthro",
  54002. default: true
  54003. },
  54004. "taur": {
  54005. name: "Taur",
  54006. },
  54007. }
  54008. ))
  54009. characterMakers.push(() => makeCharacter(
  54010. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  54011. {
  54012. front: {
  54013. height: math.unit(2 + 5/12, "feet"),
  54014. name: "Front",
  54015. image: {
  54016. source: "./media/characters/kyan/front.svg",
  54017. extra: 460/334,
  54018. bottom: 23/483
  54019. },
  54020. extraAttributes: {
  54021. "toeLength": {
  54022. name: "Toe Length",
  54023. power: 1,
  54024. type: "length",
  54025. base: math.unit(7, "cm")
  54026. },
  54027. "toeclawLength": {
  54028. name: "Toeclaw Length",
  54029. power: 1,
  54030. type: "length",
  54031. base: math.unit(4.7, "cm")
  54032. },
  54033. "earHeight": {
  54034. name: "Ear Height",
  54035. power: 1,
  54036. type: "length",
  54037. base: math.unit(14.1, "cm")
  54038. },
  54039. }
  54040. },
  54041. paws: {
  54042. height: math.unit(0.45, "feet"),
  54043. name: "Paws",
  54044. image: {
  54045. source: "./media/characters/kyan/paws.svg",
  54046. extra: 581/581,
  54047. bottom: 114/695
  54048. }
  54049. },
  54050. },
  54051. [
  54052. {
  54053. name: "Normal",
  54054. height: math.unit(2 + 5/12, "feet"),
  54055. default: true
  54056. },
  54057. ]
  54058. ))
  54059. characterMakers.push(() => makeCharacter(
  54060. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  54061. {
  54062. front: {
  54063. height: math.unit(2 + 2/3, "feet"),
  54064. name: "Front",
  54065. image: {
  54066. source: "./media/characters/xazzon/front.svg",
  54067. extra: 1109/984,
  54068. bottom: 42/1151
  54069. }
  54070. },
  54071. back: {
  54072. height: math.unit(2 + 2/3, "feet"),
  54073. name: "Back",
  54074. image: {
  54075. source: "./media/characters/xazzon/back.svg",
  54076. extra: 1095/971,
  54077. bottom: 23/1118
  54078. }
  54079. },
  54080. },
  54081. [
  54082. {
  54083. name: "Normal",
  54084. height: math.unit(2 + 2/3, "feet"),
  54085. default: true
  54086. },
  54087. ]
  54088. ))
  54089. characterMakers.push(() => makeCharacter(
  54090. { name: "Aurora Beagsidhe", species: ["catgirl"], tags: ["anthro"] },
  54091. {
  54092. dressed: {
  54093. height: math.unit(5 + 7/12, "feet"),
  54094. weight: math.unit(173, "lb"),
  54095. name: "Dressed",
  54096. image: {
  54097. source: "./media/characters/aurora-beagsidhe/dressed.svg",
  54098. extra: 3262/2862,
  54099. bottom: 188/3450
  54100. }
  54101. },
  54102. undressed: {
  54103. height: math.unit(5 + 7/12, "feet"),
  54104. weight: math.unit(173, "lb"),
  54105. name: "Undressed",
  54106. image: {
  54107. source: "./media/characters/aurora-beagsidhe/undressed.svg",
  54108. extra: 3262/2862,
  54109. bottom: 188/3450
  54110. }
  54111. },
  54112. },
  54113. [
  54114. {
  54115. name: "The void",
  54116. height: math.unit(7.29193e-34, "angstroms")
  54117. },
  54118. {
  54119. name: "Uh-Oh.",
  54120. height: math.unit(5.734e-7, "angstroms")
  54121. },
  54122. {
  54123. name: "Pico",
  54124. height: math.unit(0.876, "angstroms")
  54125. },
  54126. {
  54127. name: "Nano",
  54128. height: math.unit(0.000134200, "mm")
  54129. },
  54130. {
  54131. name: "Micro",
  54132. height: math.unit(0.0673020, "mm")
  54133. },
  54134. {
  54135. name: "Tiny",
  54136. height: math.unit(2.4, "mm")
  54137. },
  54138. {
  54139. name: "Actual Normal",
  54140. height: math.unit(3, "inches"),
  54141. default: true
  54142. },
  54143. {
  54144. name: "Normal",
  54145. height: math.unit(5 + 8/12, "feet")
  54146. },
  54147. {
  54148. name: "Giant",
  54149. height: math.unit(12, "feet")
  54150. },
  54151. {
  54152. name: "City Ruler",
  54153. height: math.unit(270, "meters")
  54154. },
  54155. {
  54156. name: "Giga",
  54157. height: math.unit(1117.6, "km")
  54158. },
  54159. {
  54160. name: "All-Powerful Queen",
  54161. height: math.unit(70.8, "gigameters")
  54162. },
  54163. {
  54164. name: "'Goddess'",
  54165. height: math.unit(600, "yottameters")
  54166. },
  54167. {
  54168. name: "Biggest!",
  54169. height: math.unit(4.23e5, "yottameters")
  54170. },
  54171. ]
  54172. ))
  54173. characterMakers.push(() => makeCharacter(
  54174. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  54175. {
  54176. front: {
  54177. height: math.unit(8, "feet"),
  54178. weight: math.unit(300, "lb"),
  54179. name: "Front",
  54180. image: {
  54181. source: "./media/characters/khyla-shadowsong/front.svg",
  54182. extra: 861/798,
  54183. bottom: 32/893
  54184. }
  54185. },
  54186. side: {
  54187. height: math.unit(8, "feet"),
  54188. weight: math.unit(300, "lb"),
  54189. name: "Side",
  54190. image: {
  54191. source: "./media/characters/khyla-shadowsong/side.svg",
  54192. extra: 790/750,
  54193. bottom: 87/877
  54194. }
  54195. },
  54196. back: {
  54197. height: math.unit(8, "feet"),
  54198. weight: math.unit(300, "lb"),
  54199. name: "Back",
  54200. image: {
  54201. source: "./media/characters/khyla-shadowsong/back.svg",
  54202. extra: 855/808,
  54203. bottom: 14/869
  54204. }
  54205. },
  54206. head: {
  54207. height: math.unit(2.7, "feet"),
  54208. name: "Head",
  54209. image: {
  54210. source: "./media/characters/khyla-shadowsong/head.svg"
  54211. }
  54212. },
  54213. },
  54214. [
  54215. {
  54216. name: "Micro",
  54217. height: math.unit(6, "inches")
  54218. },
  54219. {
  54220. name: "Normal",
  54221. height: math.unit(8, "feet"),
  54222. default: true
  54223. },
  54224. ]
  54225. ))
  54226. characterMakers.push(() => makeCharacter(
  54227. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  54228. {
  54229. hyperFront: {
  54230. height: math.unit(9 + 4/12, "feet"),
  54231. weight: math.unit(2000, "lb"),
  54232. name: "Front",
  54233. image: {
  54234. source: "./media/characters/tiden/hyper-front.svg",
  54235. extra: 400/382,
  54236. bottom: 6/406
  54237. },
  54238. form: "hyper",
  54239. },
  54240. regularFront: {
  54241. height: math.unit(7 + 10/12, "feet"),
  54242. weight: math.unit(470, "lb"),
  54243. name: "Front",
  54244. image: {
  54245. source: "./media/characters/tiden/regular-front.svg",
  54246. extra: 468/442,
  54247. bottom: 6/474
  54248. },
  54249. form: "regular",
  54250. },
  54251. },
  54252. [
  54253. {
  54254. name: "Normal",
  54255. height: math.unit(9 + 4/12, "feet"),
  54256. default: true,
  54257. form: "hyper"
  54258. },
  54259. {
  54260. name: "Normal",
  54261. height: math.unit(7 + 10/12, "feet"),
  54262. default: true,
  54263. form: "regular"
  54264. },
  54265. ],
  54266. {
  54267. "hyper": {
  54268. name: "Hyper",
  54269. default: true
  54270. },
  54271. "regular": {
  54272. name: "Regular",
  54273. },
  54274. }
  54275. ))
  54276. characterMakers.push(() => makeCharacter(
  54277. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  54278. {
  54279. side: {
  54280. height: math.unit(6, "feet"),
  54281. weight: math.unit(150, "lb"),
  54282. name: "Side",
  54283. image: {
  54284. source: "./media/characters/jason-crowe/side.svg",
  54285. extra: 1771/766,
  54286. bottom: 219/1990
  54287. }
  54288. },
  54289. },
  54290. [
  54291. {
  54292. name: "Pocket Gryphon",
  54293. height: math.unit(6, "cm")
  54294. },
  54295. {
  54296. name: "Raven",
  54297. height: math.unit(60, "cm")
  54298. },
  54299. {
  54300. name: "Normal",
  54301. height: math.unit(1, "meter"),
  54302. default: true
  54303. },
  54304. ]
  54305. ))
  54306. characterMakers.push(() => makeCharacter(
  54307. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  54308. {
  54309. front: {
  54310. height: math.unit(9 + 6/12, "feet"),
  54311. weight: math.unit(1100, "lb"),
  54312. name: "Front",
  54313. image: {
  54314. source: "./media/characters/django/front.svg",
  54315. extra: 1231/1136,
  54316. bottom: 34/1265
  54317. }
  54318. },
  54319. side: {
  54320. height: math.unit(9 + 6/12, "feet"),
  54321. weight: math.unit(1100, "lb"),
  54322. name: "Side",
  54323. image: {
  54324. source: "./media/characters/django/side.svg",
  54325. extra: 1267/1174,
  54326. bottom: 9/1276
  54327. }
  54328. },
  54329. },
  54330. [
  54331. {
  54332. name: "Normal",
  54333. height: math.unit(9 + 6/12, "feet"),
  54334. default: true
  54335. },
  54336. {
  54337. name: "Macro 1",
  54338. height: math.unit(50, "feet")
  54339. },
  54340. {
  54341. name: "Macro 2",
  54342. height: math.unit(500, "feet")
  54343. },
  54344. {
  54345. name: "Mega Macro",
  54346. height: math.unit(5300, "feet")
  54347. },
  54348. ]
  54349. ))
  54350. characterMakers.push(() => makeCharacter(
  54351. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  54352. {
  54353. frontSfw: {
  54354. height: math.unit(120, "cm"),
  54355. weight: math.unit(15, "kg"),
  54356. name: "Front (SFW)",
  54357. image: {
  54358. source: "./media/characters/eri/front-sfw.svg",
  54359. extra: 1014/939,
  54360. bottom: 37/1051
  54361. },
  54362. form: "moth",
  54363. },
  54364. frontNsfw: {
  54365. height: math.unit(120, "cm"),
  54366. weight: math.unit(15, "kg"),
  54367. name: "Front (NSFW)",
  54368. image: {
  54369. source: "./media/characters/eri/front-nsfw.svg",
  54370. extra: 1014/939,
  54371. bottom: 37/1051
  54372. },
  54373. form: "moth",
  54374. default: true
  54375. },
  54376. egg: {
  54377. height: math.unit(10, "cm"),
  54378. name: "Egg",
  54379. image: {
  54380. source: "./media/characters/eri/egg.svg"
  54381. },
  54382. form: "egg",
  54383. default: true
  54384. },
  54385. },
  54386. [
  54387. {
  54388. name: "Normal",
  54389. height: math.unit(120, "cm"),
  54390. default: true,
  54391. form: "moth"
  54392. },
  54393. {
  54394. name: "Normal",
  54395. height: math.unit(10, "cm"),
  54396. default: true,
  54397. form: "egg"
  54398. },
  54399. ],
  54400. {
  54401. "moth": {
  54402. name: "Moth",
  54403. default: true
  54404. },
  54405. "egg": {
  54406. name: "Egg",
  54407. },
  54408. }
  54409. ))
  54410. characterMakers.push(() => makeCharacter(
  54411. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  54412. {
  54413. front: {
  54414. height: math.unit(200, "feet"),
  54415. name: "Front",
  54416. image: {
  54417. source: "./media/characters/bishop-dowser/front.svg",
  54418. extra: 933/868,
  54419. bottom: 106/1039
  54420. }
  54421. },
  54422. },
  54423. [
  54424. {
  54425. name: "Giant",
  54426. height: math.unit(200, "feet"),
  54427. default: true
  54428. },
  54429. ]
  54430. ))
  54431. characterMakers.push(() => makeCharacter(
  54432. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  54433. {
  54434. front: {
  54435. height: math.unit(2, "meters"),
  54436. preyCapacity: math.unit(3, "people"),
  54437. name: "Front",
  54438. image: {
  54439. source: "./media/characters/fryra/front.svg",
  54440. extra: 1025/948,
  54441. bottom: 30/1055
  54442. },
  54443. extraAttributes: {
  54444. "breastVolume": {
  54445. name: "Breast Volume",
  54446. power: 3,
  54447. type: "volume",
  54448. base: math.unit(8, "liters")
  54449. },
  54450. }
  54451. },
  54452. back: {
  54453. height: math.unit(2, "meters"),
  54454. preyCapacity: math.unit(3, "people"),
  54455. name: "Back",
  54456. image: {
  54457. source: "./media/characters/fryra/back.svg",
  54458. extra: 993/938,
  54459. bottom: 38/1031
  54460. },
  54461. extraAttributes: {
  54462. "breastVolume": {
  54463. name: "Breast Volume",
  54464. power: 3,
  54465. type: "volume",
  54466. base: math.unit(8, "liters")
  54467. },
  54468. }
  54469. },
  54470. head: {
  54471. height: math.unit(1.33, "feet"),
  54472. name: "Head",
  54473. image: {
  54474. source: "./media/characters/fryra/head.svg"
  54475. }
  54476. },
  54477. maw: {
  54478. height: math.unit(0.56, "feet"),
  54479. name: "Maw",
  54480. image: {
  54481. source: "./media/characters/fryra/maw.svg"
  54482. }
  54483. },
  54484. },
  54485. [
  54486. {
  54487. name: "Micro",
  54488. height: math.unit(5, "cm")
  54489. },
  54490. {
  54491. name: "Normal",
  54492. height: math.unit(2, "meters"),
  54493. default: true
  54494. },
  54495. {
  54496. name: "Small Macro",
  54497. height: math.unit(8, "meters")
  54498. },
  54499. {
  54500. name: "Macro",
  54501. height: math.unit(50, "meters")
  54502. },
  54503. {
  54504. name: "Megamacro",
  54505. height: math.unit(1, "km")
  54506. },
  54507. {
  54508. name: "Planetary",
  54509. height: math.unit(300000, "km")
  54510. },
  54511. {
  54512. name: "Universal",
  54513. height: math.unit(250, "lightyears")
  54514. },
  54515. {
  54516. name: "Fabric of Reality",
  54517. height: math.unit(1000, "multiverses")
  54518. },
  54519. ]
  54520. ))
  54521. characterMakers.push(() => makeCharacter(
  54522. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  54523. {
  54524. frontDressed: {
  54525. height: math.unit(6 + 2/12, "feet"),
  54526. name: "Front (Dressed)",
  54527. image: {
  54528. source: "./media/characters/fiera/front-dressed.svg",
  54529. extra: 1883/1793,
  54530. bottom: 70/1953
  54531. }
  54532. },
  54533. backDressed: {
  54534. height: math.unit(6 + 2/12, "feet"),
  54535. name: "Back (Dressed)",
  54536. image: {
  54537. source: "./media/characters/fiera/back-dressed.svg",
  54538. extra: 1847/1780,
  54539. bottom: 70/1917
  54540. }
  54541. },
  54542. frontNude: {
  54543. height: math.unit(6 + 2/12, "feet"),
  54544. name: "Front (Nude)",
  54545. image: {
  54546. source: "./media/characters/fiera/front-nude.svg",
  54547. extra: 1875/1785,
  54548. bottom: 66/1941
  54549. }
  54550. },
  54551. backNude: {
  54552. height: math.unit(6 + 2/12, "feet"),
  54553. name: "Back (Nude)",
  54554. image: {
  54555. source: "./media/characters/fiera/back-nude.svg",
  54556. extra: 1855/1788,
  54557. bottom: 44/1899
  54558. }
  54559. },
  54560. maw: {
  54561. height: math.unit(1.3, "feet"),
  54562. name: "Maw",
  54563. image: {
  54564. source: "./media/characters/fiera/maw.svg"
  54565. }
  54566. },
  54567. paw: {
  54568. height: math.unit(1, "feet"),
  54569. name: "Paw",
  54570. image: {
  54571. source: "./media/characters/fiera/paw.svg"
  54572. }
  54573. },
  54574. shoe: {
  54575. height: math.unit(1.05, "feet"),
  54576. name: "Shoe",
  54577. image: {
  54578. source: "./media/characters/fiera/shoe.svg"
  54579. }
  54580. },
  54581. },
  54582. [
  54583. {
  54584. name: "Normal",
  54585. height: math.unit(6 + 2/12, "feet"),
  54586. default: true
  54587. },
  54588. {
  54589. name: "Size Difference",
  54590. height: math.unit(13, "feet")
  54591. },
  54592. {
  54593. name: "Macro",
  54594. height: math.unit(60, "feet")
  54595. },
  54596. {
  54597. name: "Mega Macro",
  54598. height: math.unit(200, "feet")
  54599. },
  54600. ]
  54601. ))
  54602. characterMakers.push(() => makeCharacter(
  54603. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  54604. {
  54605. back: {
  54606. height: math.unit(6, "feet"),
  54607. name: "Back",
  54608. image: {
  54609. source: "./media/characters/flare/back.svg",
  54610. extra: 1883/1765,
  54611. bottom: 32/1915
  54612. }
  54613. },
  54614. },
  54615. [
  54616. {
  54617. name: "Normal",
  54618. height: math.unit(6 + 2/12, "feet"),
  54619. default: true
  54620. },
  54621. {
  54622. name: "Size Difference",
  54623. height: math.unit(13, "feet")
  54624. },
  54625. {
  54626. name: "Macro",
  54627. height: math.unit(60, "feet")
  54628. },
  54629. {
  54630. name: "Macro 2",
  54631. height: math.unit(100, "feet")
  54632. },
  54633. {
  54634. name: "Mega Macro",
  54635. height: math.unit(200, "feet")
  54636. },
  54637. ]
  54638. ))
  54639. characterMakers.push(() => makeCharacter(
  54640. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  54641. {
  54642. front: {
  54643. height: math.unit(2.2, "m"),
  54644. weight: math.unit(300, "kg"),
  54645. name: "Front",
  54646. image: {
  54647. source: "./media/characters/hanna/front.svg",
  54648. extra: 1696/1502,
  54649. bottom: 206/1902
  54650. }
  54651. },
  54652. },
  54653. [
  54654. {
  54655. name: "Humanoid",
  54656. height: math.unit(2.2, "meters")
  54657. },
  54658. {
  54659. name: "Normal",
  54660. height: math.unit(4.8, "meters"),
  54661. default: true
  54662. },
  54663. ]
  54664. ))
  54665. characterMakers.push(() => makeCharacter(
  54666. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  54667. {
  54668. front: {
  54669. height: math.unit(2.8, "meters"),
  54670. name: "Front",
  54671. image: {
  54672. source: "./media/characters/argo/front.svg",
  54673. extra: 731/518,
  54674. bottom: 84/815
  54675. }
  54676. },
  54677. },
  54678. [
  54679. {
  54680. name: "Normal",
  54681. height: math.unit(3, "meters"),
  54682. default: true
  54683. },
  54684. ]
  54685. ))
  54686. characterMakers.push(() => makeCharacter(
  54687. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  54688. {
  54689. side: {
  54690. height: math.unit(3.8, "meters"),
  54691. name: "Side",
  54692. image: {
  54693. source: "./media/characters/sybil/side.svg",
  54694. extra: 382/361,
  54695. bottom: 25/407
  54696. }
  54697. },
  54698. },
  54699. [
  54700. {
  54701. name: "Normal",
  54702. height: math.unit(3.8, "meters"),
  54703. default: true
  54704. },
  54705. ]
  54706. ))
  54707. characterMakers.push(() => makeCharacter(
  54708. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  54709. {
  54710. side: {
  54711. height: math.unit(6, "meters"),
  54712. name: "Side",
  54713. image: {
  54714. source: "./media/characters/plum/side.svg",
  54715. extra: 858/755,
  54716. bottom: 45/903
  54717. },
  54718. form: "taur",
  54719. default: true
  54720. },
  54721. back: {
  54722. height: math.unit(6.3, "meters"),
  54723. name: "Back",
  54724. image: {
  54725. source: "./media/characters/plum/back.svg",
  54726. extra: 887/813,
  54727. bottom: 32/919
  54728. },
  54729. form: "taur",
  54730. },
  54731. feral: {
  54732. height: math.unit(5.5, "meter"),
  54733. name: "Front",
  54734. image: {
  54735. source: "./media/characters/plum/feral.svg",
  54736. extra: 568/403,
  54737. bottom: 51/619
  54738. },
  54739. form: "feral",
  54740. default: true
  54741. },
  54742. head: {
  54743. height: math.unit(1.46, "meter"),
  54744. name: "Head",
  54745. image: {
  54746. source: "./media/characters/plum/head.svg"
  54747. },
  54748. form: "taur"
  54749. },
  54750. tailTop: {
  54751. height: math.unit(5.6, "meter"),
  54752. name: "Tail (Top)",
  54753. image: {
  54754. source: "./media/characters/plum/tail-top.svg"
  54755. },
  54756. form: "taur",
  54757. },
  54758. tailBottom: {
  54759. height: math.unit(5.6, "meter"),
  54760. name: "Tail (Bottom)",
  54761. image: {
  54762. source: "./media/characters/plum/tail-bottom.svg"
  54763. },
  54764. form: "taur",
  54765. },
  54766. feralHead: {
  54767. height: math.unit(2.56549521, "meter"),
  54768. name: "Head",
  54769. image: {
  54770. source: "./media/characters/plum/head.svg"
  54771. },
  54772. form: "feral"
  54773. },
  54774. feralTailTop: {
  54775. height: math.unit(5.44728435, "meter"),
  54776. name: "Tail (Top)",
  54777. image: {
  54778. source: "./media/characters/plum/tail-top.svg"
  54779. },
  54780. form: "feral",
  54781. },
  54782. feralTailBottom: {
  54783. height: math.unit(5.44728435, "meter"),
  54784. name: "Tail (Bottom)",
  54785. image: {
  54786. source: "./media/characters/plum/tail-bottom.svg"
  54787. },
  54788. form: "feral",
  54789. },
  54790. },
  54791. [
  54792. {
  54793. name: "Normal",
  54794. height: math.unit(6, "meters"),
  54795. default: true,
  54796. form: "taur"
  54797. },
  54798. {
  54799. name: "Normal",
  54800. height: math.unit(5.5, "meters"),
  54801. default: true,
  54802. form: "feral"
  54803. },
  54804. ],
  54805. {
  54806. "taur": {
  54807. name: "Taur",
  54808. default: true
  54809. },
  54810. "feral": {
  54811. name: "Feral",
  54812. },
  54813. }
  54814. ))
  54815. characterMakers.push(() => makeCharacter(
  54816. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  54817. {
  54818. front: {
  54819. height: math.unit(6, "feet"),
  54820. weight: math.unit(115, "lb"),
  54821. name: "Front",
  54822. image: {
  54823. source: "./media/characters/celeste-kitsune/front.svg",
  54824. extra: 393/366,
  54825. bottom: 7/400
  54826. }
  54827. },
  54828. side: {
  54829. height: math.unit(6, "feet"),
  54830. weight: math.unit(115, "lb"),
  54831. name: "Side",
  54832. image: {
  54833. source: "./media/characters/celeste-kitsune/side.svg",
  54834. extra: 818/765,
  54835. bottom: 40/858
  54836. }
  54837. },
  54838. },
  54839. [
  54840. {
  54841. name: "Megamacro",
  54842. height: math.unit(1500, "miles"),
  54843. default: true
  54844. },
  54845. ]
  54846. ))
  54847. characterMakers.push(() => makeCharacter(
  54848. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  54849. {
  54850. front: {
  54851. height: math.unit(8, "meters"),
  54852. name: "Front",
  54853. image: {
  54854. source: "./media/characters/io/front.svg",
  54855. extra: 865/722,
  54856. bottom: 58/923
  54857. }
  54858. },
  54859. back: {
  54860. height: math.unit(8, "meters"),
  54861. name: "Back",
  54862. image: {
  54863. source: "./media/characters/io/back.svg",
  54864. extra: 920/776,
  54865. bottom: 42/962
  54866. }
  54867. },
  54868. head: {
  54869. height: math.unit(5.09, "meters"),
  54870. name: "Head",
  54871. image: {
  54872. source: "./media/characters/io/head.svg"
  54873. }
  54874. },
  54875. hand: {
  54876. height: math.unit(1.6, "meters"),
  54877. name: "Hand",
  54878. image: {
  54879. source: "./media/characters/io/hand.svg"
  54880. }
  54881. },
  54882. foot: {
  54883. height: math.unit(2.4, "meters"),
  54884. name: "Foot",
  54885. image: {
  54886. source: "./media/characters/io/foot.svg"
  54887. }
  54888. },
  54889. },
  54890. [
  54891. {
  54892. name: "Normal",
  54893. height: math.unit(8, "meters"),
  54894. default: true
  54895. },
  54896. ]
  54897. ))
  54898. characterMakers.push(() => makeCharacter(
  54899. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  54900. {
  54901. side: {
  54902. height: math.unit(6 + 3/12, "feet"),
  54903. weight: math.unit(225, "lb"),
  54904. name: "Side",
  54905. image: {
  54906. source: "./media/characters/silas/side.svg",
  54907. extra: 703/653,
  54908. bottom: 23/726
  54909. },
  54910. extraAttributes: {
  54911. "pawLength": {
  54912. name: "Paw Length",
  54913. power: 1,
  54914. type: "length",
  54915. base: math.unit(12, "inches")
  54916. },
  54917. "pawWidth": {
  54918. name: "Paw Width",
  54919. power: 1,
  54920. type: "length",
  54921. base: math.unit(4.5, "inches")
  54922. },
  54923. "pawArea": {
  54924. name: "Paw Area",
  54925. power: 2,
  54926. type: "area",
  54927. base: math.unit(12 * 4.5, "inches^2")
  54928. },
  54929. }
  54930. },
  54931. },
  54932. [
  54933. {
  54934. name: "Normal",
  54935. height: math.unit(6 + 3/12, "feet"),
  54936. default: true
  54937. },
  54938. ]
  54939. ))
  54940. characterMakers.push(() => makeCharacter(
  54941. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  54942. {
  54943. back: {
  54944. height: math.unit(1.6, "meters"),
  54945. weight: math.unit(150, "lb"),
  54946. name: "Back",
  54947. image: {
  54948. source: "./media/characters/zari/back.svg",
  54949. extra: 424/411,
  54950. bottom: 32/456
  54951. },
  54952. extraAttributes: {
  54953. "bladderCapacity": {
  54954. name: "Bladder Size",
  54955. power: 3,
  54956. type: "volume",
  54957. base: math.unit(500, "mL")
  54958. },
  54959. "bladderFlow": {
  54960. name: "Flow Rate",
  54961. power: 3,
  54962. type: "volume",
  54963. base: math.unit(25, "mL")
  54964. },
  54965. }
  54966. },
  54967. },
  54968. [
  54969. {
  54970. name: "Normal",
  54971. height: math.unit(1.6, "meters"),
  54972. default: true
  54973. },
  54974. ]
  54975. ))
  54976. characterMakers.push(() => makeCharacter(
  54977. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  54978. {
  54979. front: {
  54980. height: math.unit(25, "feet"),
  54981. weight: math.unit(5, "tons"),
  54982. name: "Front",
  54983. image: {
  54984. source: "./media/characters/charlie-human/front.svg",
  54985. extra: 1870/1740,
  54986. bottom: 102/1972
  54987. },
  54988. extraAttributes: {
  54989. "dickLength": {
  54990. name: "Dick Length",
  54991. power: 1,
  54992. type: "length",
  54993. base: math.unit(9, "feet")
  54994. },
  54995. }
  54996. },
  54997. back: {
  54998. height: math.unit(25, "feet"),
  54999. weight: math.unit(5, "tons"),
  55000. name: "Back",
  55001. image: {
  55002. source: "./media/characters/charlie-human/back.svg",
  55003. extra: 1858/1733,
  55004. bottom: 105/1963
  55005. },
  55006. extraAttributes: {
  55007. "dickLength": {
  55008. name: "Dick Length",
  55009. power: 1,
  55010. type: "length",
  55011. base: math.unit(9, "feet")
  55012. },
  55013. }
  55014. },
  55015. },
  55016. [
  55017. {
  55018. name: "\"Normal\"",
  55019. height: math.unit(6 + 4/12, "feet")
  55020. },
  55021. {
  55022. name: "Big",
  55023. height: math.unit(25, "feet"),
  55024. default: true
  55025. },
  55026. ]
  55027. ))
  55028. characterMakers.push(() => makeCharacter(
  55029. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  55030. {
  55031. front: {
  55032. height: math.unit(6 + 4/12, "feet"),
  55033. weight: math.unit(320, "lb"),
  55034. name: "Front",
  55035. image: {
  55036. source: "./media/characters/ookitsu/front.svg",
  55037. extra: 1160/976,
  55038. bottom: 38/1198
  55039. }
  55040. },
  55041. frontNsfw: {
  55042. height: math.unit(6 + 4/12, "feet"),
  55043. weight: math.unit(320, "lb"),
  55044. name: "Front (NSFW)",
  55045. image: {
  55046. source: "./media/characters/ookitsu/front-nsfw.svg",
  55047. extra: 1160/976,
  55048. bottom: 38/1198
  55049. }
  55050. },
  55051. back: {
  55052. height: math.unit(6 + 4/12, "feet"),
  55053. weight: math.unit(320, "lb"),
  55054. name: "Back",
  55055. image: {
  55056. source: "./media/characters/ookitsu/back.svg",
  55057. extra: 1030/975,
  55058. bottom: 70/1100
  55059. }
  55060. },
  55061. head: {
  55062. height: math.unit(1.79, "feet"),
  55063. name: "Head",
  55064. image: {
  55065. source: "./media/characters/ookitsu/head.svg"
  55066. }
  55067. },
  55068. hand: {
  55069. height: math.unit(0.92, "feet"),
  55070. name: "Hand",
  55071. image: {
  55072. source: "./media/characters/ookitsu/hand.svg"
  55073. }
  55074. },
  55075. tails: {
  55076. height: math.unit(3.3, "feet"),
  55077. name: "Tails",
  55078. image: {
  55079. source: "./media/characters/ookitsu/tails.svg"
  55080. }
  55081. },
  55082. dick: {
  55083. height: math.unit(1.10833, "feet"),
  55084. name: "Dick",
  55085. image: {
  55086. source: "./media/characters/ookitsu/dick.svg"
  55087. }
  55088. },
  55089. },
  55090. [
  55091. {
  55092. name: "Normal",
  55093. height: math.unit(6 + 4/12, "feet"),
  55094. default: true
  55095. },
  55096. {
  55097. name: "Macro",
  55098. height: math.unit(30, "feet")
  55099. },
  55100. ]
  55101. ))
  55102. characterMakers.push(() => makeCharacter(
  55103. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  55104. {
  55105. anthroFront: {
  55106. height: math.unit(6, "feet"),
  55107. weight: math.unit(250, "lb"),
  55108. name: "Front",
  55109. image: {
  55110. source: "./media/characters/jhusky/anthro-front.svg",
  55111. extra: 474/439,
  55112. bottom: 7/481
  55113. },
  55114. form: "anthro",
  55115. default: true
  55116. },
  55117. taurSideSfw: {
  55118. height: math.unit(6 + 4/12, "feet"),
  55119. weight: math.unit(500, "lb"),
  55120. name: "Side (SFW)",
  55121. image: {
  55122. source: "./media/characters/jhusky/taur-side-sfw.svg",
  55123. extra: 1741/1629,
  55124. bottom: 196/1937
  55125. },
  55126. form: "taur",
  55127. default: true
  55128. },
  55129. taurSideNsfw: {
  55130. height: math.unit(6 + 4/12, "feet"),
  55131. weight: math.unit(500, "lb"),
  55132. name: "Taur (NSFW)",
  55133. image: {
  55134. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  55135. extra: 1741/1629,
  55136. bottom: 196/1937
  55137. },
  55138. form: "taur",
  55139. },
  55140. },
  55141. [
  55142. {
  55143. name: "Huge",
  55144. height: math.unit(500, "feet"),
  55145. form: "anthro"
  55146. },
  55147. {
  55148. name: "Macro",
  55149. height: math.unit(1000, "feet"),
  55150. default: true,
  55151. form: "anthro"
  55152. },
  55153. {
  55154. name: "Megamacro",
  55155. height: math.unit(10000, "feet"),
  55156. form: "anthro"
  55157. },
  55158. {
  55159. name: "Huge",
  55160. height: math.unit(528, "feet"),
  55161. form: "taur"
  55162. },
  55163. {
  55164. name: "Macro",
  55165. height: math.unit(1056, "feet"),
  55166. default: true,
  55167. form: "taur"
  55168. },
  55169. {
  55170. name: "Megamacro",
  55171. height: math.unit(10556, "feet"),
  55172. form: "taur"
  55173. },
  55174. ],
  55175. {
  55176. "anthro": {
  55177. name: "Anthro",
  55178. default: true
  55179. },
  55180. "taur": {
  55181. name: "Taur",
  55182. },
  55183. }
  55184. ))
  55185. characterMakers.push(() => makeCharacter(
  55186. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  55187. {
  55188. front: {
  55189. height: math.unit(8, "feet"),
  55190. weight: math.unit(500, "lb"),
  55191. name: "Front",
  55192. image: {
  55193. source: "./media/characters/armail/front.svg",
  55194. extra: 1753/1669,
  55195. bottom: 155/1908
  55196. }
  55197. },
  55198. back: {
  55199. height: math.unit(8, "feet"),
  55200. weight: math.unit(500, "lb"),
  55201. name: "Back",
  55202. image: {
  55203. source: "./media/characters/armail/back.svg",
  55204. extra: 1872/1803,
  55205. bottom: 63/1935
  55206. }
  55207. },
  55208. },
  55209. [
  55210. {
  55211. name: "Micro",
  55212. height: math.unit(0.25, "feet")
  55213. },
  55214. {
  55215. name: "Normal",
  55216. height: math.unit(8, "feet"),
  55217. default: true
  55218. },
  55219. {
  55220. name: "Mini-macro",
  55221. height: math.unit(30, "feet")
  55222. },
  55223. {
  55224. name: "Macro",
  55225. height: math.unit(400, "feet")
  55226. },
  55227. {
  55228. name: "Mega-macro",
  55229. height: math.unit(6000, "feet")
  55230. },
  55231. ]
  55232. ))
  55233. characterMakers.push(() => makeCharacter(
  55234. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  55235. {
  55236. front: {
  55237. height: math.unit(6 + 7/12, "feet"),
  55238. weight: math.unit(210, "lb"),
  55239. name: "Front",
  55240. image: {
  55241. source: "./media/characters/wilfred-t-buxton/front.svg",
  55242. extra: 1068/882,
  55243. bottom: 28/1096
  55244. }
  55245. },
  55246. },
  55247. [
  55248. {
  55249. name: "Normal",
  55250. height: math.unit(6 + 7/12, "feet"),
  55251. default: true
  55252. },
  55253. ]
  55254. ))
  55255. characterMakers.push(() => makeCharacter(
  55256. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  55257. {
  55258. front: {
  55259. height: math.unit(5 + 2/12, "feet"),
  55260. weight: math.unit(120, "lb"),
  55261. name: "Front",
  55262. image: {
  55263. source: "./media/characters/leighton-marrow/front.svg",
  55264. extra: 441/409,
  55265. bottom: 37/478
  55266. }
  55267. },
  55268. },
  55269. [
  55270. {
  55271. name: "Normal",
  55272. height: math.unit(5 + 2/12, "feet"),
  55273. default: true
  55274. },
  55275. ]
  55276. ))
  55277. characterMakers.push(() => makeCharacter(
  55278. { name: "Licos", species: ["werewolf"], tags: ["anthro", "taur"] },
  55279. {
  55280. front: {
  55281. height: math.unit(4, "meters"),
  55282. weight: math.unit(1200, "kg"),
  55283. name: "Front",
  55284. image: {
  55285. source: "./media/characters/licos/front.svg",
  55286. extra: 1727/1604,
  55287. bottom: 101/1828
  55288. },
  55289. form: "anthro",
  55290. default: true
  55291. },
  55292. taur_side: {
  55293. height: math.unit(20, "meters"),
  55294. weight: math.unit(1100000, "kg"),
  55295. name: "Side",
  55296. image: {
  55297. source: "./media/characters/licos/taur.svg",
  55298. extra: 1158/1091,
  55299. bottom: 80/1238
  55300. },
  55301. form: "taur",
  55302. default: true
  55303. },
  55304. },
  55305. [
  55306. {
  55307. name: "Normal",
  55308. height: math.unit(4, "meters"),
  55309. default: true,
  55310. form: "anthro"
  55311. },
  55312. {
  55313. name: "Normal",
  55314. height: math.unit(20, "meters"),
  55315. default: true,
  55316. form: "taur"
  55317. },
  55318. ],
  55319. {
  55320. "anthro": {
  55321. name: "Anthro",
  55322. default: true
  55323. },
  55324. "taur": {
  55325. name: "Taur",
  55326. },
  55327. }
  55328. ))
  55329. characterMakers.push(() => makeCharacter(
  55330. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  55331. {
  55332. front: {
  55333. height: math.unit(10 + 3/12, "feet"),
  55334. name: "Front",
  55335. image: {
  55336. source: "./media/characters/theo-monkey/front.svg",
  55337. extra: 1735/1658,
  55338. bottom: 73/1808
  55339. }
  55340. },
  55341. back: {
  55342. height: math.unit(10 + 3/12, "feet"),
  55343. name: "Back",
  55344. image: {
  55345. source: "./media/characters/theo-monkey/back.svg",
  55346. extra: 1742/1664,
  55347. bottom: 33/1775
  55348. }
  55349. },
  55350. head: {
  55351. height: math.unit(2.29, "feet"),
  55352. name: "Head",
  55353. image: {
  55354. source: "./media/characters/theo-monkey/head.svg"
  55355. }
  55356. },
  55357. handPalm: {
  55358. height: math.unit(1.73, "feet"),
  55359. name: "Hand (Palm)",
  55360. image: {
  55361. source: "./media/characters/theo-monkey/hand-palm.svg"
  55362. }
  55363. },
  55364. handBack: {
  55365. height: math.unit(1.63, "feet"),
  55366. name: "Hand (Back)",
  55367. image: {
  55368. source: "./media/characters/theo-monkey/hand-back.svg"
  55369. }
  55370. },
  55371. footSole: {
  55372. height: math.unit(2.15, "feet"),
  55373. name: "Foot (Sole)",
  55374. image: {
  55375. source: "./media/characters/theo-monkey/foot-sole.svg"
  55376. }
  55377. },
  55378. footSide: {
  55379. height: math.unit(1.6, "feet"),
  55380. name: "Foot (Side)",
  55381. image: {
  55382. source: "./media/characters/theo-monkey/foot-side.svg"
  55383. }
  55384. },
  55385. },
  55386. [
  55387. {
  55388. name: "Normal",
  55389. height: math.unit(10 + 3/12, "feet"),
  55390. default: true
  55391. },
  55392. ]
  55393. ))
  55394. characterMakers.push(() => makeCharacter(
  55395. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  55396. {
  55397. front: {
  55398. height: math.unit(11, "feet"),
  55399. weight: math.unit(3000, "lb"),
  55400. preyCapacity: math.unit(10, "people"),
  55401. name: "Front",
  55402. image: {
  55403. source: "./media/characters/brook/front.svg",
  55404. extra: 909/835,
  55405. bottom: 108/1017
  55406. }
  55407. },
  55408. back: {
  55409. height: math.unit(11, "feet"),
  55410. weight: math.unit(3000, "lb"),
  55411. preyCapacity: math.unit(10, "people"),
  55412. name: "Back",
  55413. image: {
  55414. source: "./media/characters/brook/back.svg",
  55415. extra: 976/916,
  55416. bottom: 34/1010
  55417. }
  55418. },
  55419. backAlt: {
  55420. height: math.unit(11, "feet"),
  55421. weight: math.unit(3000, "lb"),
  55422. preyCapacity: math.unit(10, "people"),
  55423. name: "Back (Alt)",
  55424. image: {
  55425. source: "./media/characters/brook/back-alt.svg",
  55426. extra: 1283/1213,
  55427. bottom: 35/1318
  55428. }
  55429. },
  55430. bust: {
  55431. height: math.unit(9.0859030837, "feet"),
  55432. weight: math.unit(3000, "lb"),
  55433. preyCapacity: math.unit(10, "people"),
  55434. name: "Bust",
  55435. image: {
  55436. source: "./media/characters/brook/bust.svg",
  55437. extra: 2043/1923,
  55438. bottom: 0/2043
  55439. }
  55440. },
  55441. },
  55442. [
  55443. {
  55444. name: "Small",
  55445. height: math.unit(11, "feet"),
  55446. default: true
  55447. },
  55448. {
  55449. name: "Towering",
  55450. height: math.unit(5, "km")
  55451. },
  55452. {
  55453. name: "Enormous",
  55454. height: math.unit(25, "earths")
  55455. },
  55456. ]
  55457. ))
  55458. characterMakers.push(() => makeCharacter(
  55459. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  55460. {
  55461. front: {
  55462. height: math.unit(4, "feet"),
  55463. weight: math.unit(150, "lb"),
  55464. name: "Front",
  55465. image: {
  55466. source: "./media/characters/squishi/front.svg",
  55467. extra: 1428/1271,
  55468. bottom: 30/1458
  55469. },
  55470. extraAttributes: {
  55471. "pawSize": {
  55472. name: "Paw Size",
  55473. power: 1,
  55474. type: "length",
  55475. base: math.unit(14, "ShoeSizeMensUS"),
  55476. defaultUnit: "ShoeSizeMensUS"
  55477. },
  55478. }
  55479. },
  55480. side: {
  55481. height: math.unit(4, "feet"),
  55482. weight: math.unit(150, "lb"),
  55483. name: "Side",
  55484. image: {
  55485. source: "./media/characters/squishi/side.svg",
  55486. extra: 1428/1271,
  55487. bottom: 30/1458
  55488. },
  55489. extraAttributes: {
  55490. "pawSize": {
  55491. name: "Paw Size",
  55492. power: 1,
  55493. type: "length",
  55494. base: math.unit(14, "ShoeSizeMensUS"),
  55495. defaultUnit: "ShoeSizeMensUS"
  55496. },
  55497. }
  55498. },
  55499. back: {
  55500. height: math.unit(4, "feet"),
  55501. weight: math.unit(150, "lb"),
  55502. name: "Back",
  55503. image: {
  55504. source: "./media/characters/squishi/back.svg",
  55505. extra: 1428/1271,
  55506. bottom: 30/1458
  55507. },
  55508. extraAttributes: {
  55509. "pawSize": {
  55510. name: "Paw Size",
  55511. power: 1,
  55512. type: "length",
  55513. base: math.unit(14, "ShoeSizeMensUS"),
  55514. defaultUnit: "ShoeSizeMensUS"
  55515. },
  55516. }
  55517. },
  55518. },
  55519. [
  55520. {
  55521. name: "Normal",
  55522. height: math.unit(4, "feet"),
  55523. default: true
  55524. },
  55525. ]
  55526. ))
  55527. characterMakers.push(() => makeCharacter(
  55528. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  55529. {
  55530. front: {
  55531. height: math.unit(7 + 8/12, "feet"),
  55532. weight: math.unit(333, "lb"),
  55533. name: "Front",
  55534. image: {
  55535. source: "./media/characters/vincent-vasroc/front.svg",
  55536. extra: 1962/1860,
  55537. bottom: 41/2003
  55538. }
  55539. },
  55540. back: {
  55541. height: math.unit(7 + 8/12, "feet"),
  55542. weight: math.unit(333, "lb"),
  55543. name: "Back",
  55544. image: {
  55545. source: "./media/characters/vincent-vasroc/back.svg",
  55546. extra: 1952/1815,
  55547. bottom: 33/1985
  55548. }
  55549. },
  55550. paw: {
  55551. height: math.unit(1.24, "feet"),
  55552. name: "Paw",
  55553. image: {
  55554. source: "./media/characters/vincent-vasroc/paw.svg"
  55555. }
  55556. },
  55557. ear: {
  55558. height: math.unit(0.75, "feet"),
  55559. name: "Ear",
  55560. image: {
  55561. source: "./media/characters/vincent-vasroc/ear.svg"
  55562. }
  55563. },
  55564. },
  55565. [
  55566. {
  55567. name: "Nano",
  55568. height: math.unit(92, "micrometers")
  55569. },
  55570. {
  55571. name: "Normal",
  55572. height: math.unit(7 + 8/12, "feet"),
  55573. default: true
  55574. },
  55575. ]
  55576. ))
  55577. characterMakers.push(() => makeCharacter(
  55578. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  55579. {
  55580. frontNsfw: {
  55581. height: math.unit(40, "feet"),
  55582. weight: math.unit(58, "tons"),
  55583. name: "Front (NSFW)",
  55584. image: {
  55585. source: "./media/characters/ru-kahn/front-nsfw.svg",
  55586. extra: 1265/965,
  55587. bottom: 155/1420
  55588. }
  55589. },
  55590. frontSfw: {
  55591. height: math.unit(40, "feet"),
  55592. weight: math.unit(58, "tons"),
  55593. name: "Front (SFW)",
  55594. image: {
  55595. source: "./media/characters/ru-kahn/front-sfw.svg",
  55596. extra: 1265/965,
  55597. bottom: 80/1345
  55598. }
  55599. },
  55600. },
  55601. [
  55602. {
  55603. name: "Small",
  55604. height: math.unit(4, "feet")
  55605. },
  55606. {
  55607. name: "Normal",
  55608. height: math.unit(40, "feet"),
  55609. default: true
  55610. },
  55611. {
  55612. name: "Macro",
  55613. height: math.unit(400, "feet")
  55614. },
  55615. ]
  55616. ))
  55617. characterMakers.push(() => makeCharacter(
  55618. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  55619. {
  55620. frontNude: {
  55621. height: math.unit(6 + 5/12, "feet"),
  55622. name: "Front (Nude)",
  55623. image: {
  55624. source: "./media/characters/sylvie-laforge/front-nude.svg",
  55625. extra: 1369/1366,
  55626. bottom: 68/1437
  55627. }
  55628. },
  55629. frontDressed: {
  55630. height: math.unit(6 + 5/12, "feet"),
  55631. name: "Front (Dressed)",
  55632. image: {
  55633. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  55634. extra: 1369/1366,
  55635. bottom: 68/1437
  55636. }
  55637. },
  55638. },
  55639. [
  55640. {
  55641. name: "Normal",
  55642. height: math.unit(6 + 5/12, "feet"),
  55643. default: true
  55644. },
  55645. {
  55646. name: "Maximum",
  55647. height: math.unit(1930, "feet")
  55648. },
  55649. ]
  55650. ))
  55651. characterMakers.push(() => makeCharacter(
  55652. { name: "Kaja", species: ["zoroark"], tags: ["anthro"] },
  55653. {
  55654. front: {
  55655. height: math.unit(5 + 6/12, "feet"),
  55656. name: "Front",
  55657. image: {
  55658. source: "./media/characters/kaja/front.svg",
  55659. extra: 1874/1514,
  55660. bottom: 117/1991
  55661. }
  55662. },
  55663. },
  55664. [
  55665. {
  55666. name: "Normal",
  55667. height: math.unit(5 + 6/12, "feet"),
  55668. default: true
  55669. },
  55670. ]
  55671. ))
  55672. characterMakers.push(() => makeCharacter(
  55673. { name: "Mark Smith", species: ["husky"], tags: ["anthro"] },
  55674. {
  55675. front: {
  55676. height: math.unit(5 + 9/12, "feet"),
  55677. weight: math.unit(200, "lb"),
  55678. name: "Front",
  55679. image: {
  55680. source: "./media/characters/mark-smith/front.svg",
  55681. extra: 1004/943,
  55682. bottom: 58/1062
  55683. }
  55684. },
  55685. back: {
  55686. height: math.unit(5 + 9/12, "feet"),
  55687. weight: math.unit(200, "lb"),
  55688. name: "Back",
  55689. image: {
  55690. source: "./media/characters/mark-smith/back.svg",
  55691. extra: 1023/953,
  55692. bottom: 24/1047
  55693. }
  55694. },
  55695. head: {
  55696. height: math.unit(1.82, "feet"),
  55697. name: "Head",
  55698. image: {
  55699. source: "./media/characters/mark-smith/head.svg"
  55700. }
  55701. },
  55702. hand: {
  55703. height: math.unit(1.4, "feet"),
  55704. name: "Hand",
  55705. image: {
  55706. source: "./media/characters/mark-smith/hand.svg"
  55707. }
  55708. },
  55709. paw: {
  55710. height: math.unit(1.69, "feet"),
  55711. name: "Paw",
  55712. image: {
  55713. source: "./media/characters/mark-smith/paw.svg"
  55714. }
  55715. },
  55716. },
  55717. [
  55718. {
  55719. name: "Micro",
  55720. height: math.unit(0.25, "inches")
  55721. },
  55722. {
  55723. name: "Normal",
  55724. height: math.unit(5 + 9/12, "feet"),
  55725. default: true
  55726. },
  55727. {
  55728. name: "Macro",
  55729. height: math.unit(500, "feet")
  55730. },
  55731. ]
  55732. ))
  55733. characterMakers.push(() => makeCharacter(
  55734. { name: "Rebecca 'Becky' Houston", species: ["gryphon"], tags: ["anthro"] },
  55735. {
  55736. frontNude: {
  55737. height: math.unit(6, "feet"),
  55738. name: "Front (Nude)",
  55739. image: {
  55740. source: "./media/characters/rebecca-becky-houston/front-nude.svg",
  55741. extra: 1384/1321,
  55742. bottom: 57/1441
  55743. }
  55744. },
  55745. frontDressed: {
  55746. height: math.unit(6, "feet"),
  55747. name: "Front (Dressed)",
  55748. image: {
  55749. source: "./media/characters/rebecca-becky-houston/front-dressed.svg",
  55750. extra: 1384/1321,
  55751. bottom: 57/1441
  55752. }
  55753. },
  55754. },
  55755. [
  55756. {
  55757. name: "Normal",
  55758. height: math.unit(6, "feet"),
  55759. default: true
  55760. },
  55761. {
  55762. name: "Maximum",
  55763. height: math.unit(1776, "feet")
  55764. },
  55765. ]
  55766. ))
  55767. characterMakers.push(() => makeCharacter(
  55768. { name: "Devos", species: ["dragon"], tags: ["feral"] },
  55769. {
  55770. front: {
  55771. height: math.unit(2 + 4/12, "feet"),
  55772. weight: math.unit(350, "lb"),
  55773. name: "Front",
  55774. image: {
  55775. source: "./media/characters/devos/front.svg",
  55776. extra: 958/852,
  55777. bottom: 143/1101
  55778. }
  55779. },
  55780. },
  55781. [
  55782. {
  55783. name: "Base",
  55784. height: math.unit(2 + 4/12, "feet"),
  55785. default: true
  55786. },
  55787. ]
  55788. ))
  55789. characterMakers.push(() => makeCharacter(
  55790. { name: "Hiveheart", species: ["sliver"], tags: ["anthro"] },
  55791. {
  55792. front: {
  55793. height: math.unit(9 + 2/12, "feet"),
  55794. name: "Front",
  55795. image: {
  55796. source: "./media/characters/hiveheart/front.svg",
  55797. extra: 394/364,
  55798. bottom: 65/459
  55799. }
  55800. },
  55801. back: {
  55802. height: math.unit(9 + 2/12, "feet"),
  55803. name: "Back",
  55804. image: {
  55805. source: "./media/characters/hiveheart/back.svg",
  55806. extra: 374/357,
  55807. bottom: 63/437
  55808. }
  55809. },
  55810. },
  55811. [
  55812. {
  55813. name: "Base",
  55814. height: math.unit(9 + 2/12, "feet"),
  55815. default: true
  55816. },
  55817. ]
  55818. ))
  55819. characterMakers.push(() => makeCharacter(
  55820. { name: "Bryn", species: ["moth"], tags: ["anthro"] },
  55821. {
  55822. front: {
  55823. height: math.unit(2.5, "inches"),
  55824. weight: math.unit(0.6, "oz"),
  55825. name: "Front",
  55826. image: {
  55827. source: "./media/characters/bryn/front.svg",
  55828. extra: 1480/1205,
  55829. bottom: 27/1507
  55830. }
  55831. },
  55832. back: {
  55833. height: math.unit(2.5, "inches"),
  55834. weight: math.unit(0.6, "oz"),
  55835. name: "Back",
  55836. image: {
  55837. source: "./media/characters/bryn/back.svg",
  55838. extra: 1475/1201,
  55839. bottom: 39/1514
  55840. }
  55841. },
  55842. foot: {
  55843. height: math.unit(0.4, "inches"),
  55844. name: "Foot",
  55845. image: {
  55846. source: "./media/characters/bryn/foot.svg"
  55847. }
  55848. },
  55849. },
  55850. [
  55851. {
  55852. name: "Normal",
  55853. height: math.unit(2.5, "inches"),
  55854. default: true
  55855. },
  55856. ]
  55857. ))
  55858. characterMakers.push(() => makeCharacter(
  55859. { name: "Delta", species: ["dragon"], tags: ["feral"] },
  55860. {
  55861. side: {
  55862. height: math.unit(7, "feet"),
  55863. weight: math.unit(657, "kg"),
  55864. name: "Side",
  55865. image: {
  55866. source: "./media/characters/delta/side.svg",
  55867. extra: 781/212,
  55868. bottom: 7/788
  55869. },
  55870. extraAttributes: {
  55871. "wingspan": {
  55872. name: "Wingspan",
  55873. power: 1,
  55874. type: "length",
  55875. base: math.unit(48, "feet")
  55876. },
  55877. "length": {
  55878. name: "Length",
  55879. power: 1,
  55880. type: "length",
  55881. base: math.unit(21, "feet")
  55882. },
  55883. "pawSize": {
  55884. name: "Paw Size",
  55885. power: 2,
  55886. type: "area",
  55887. base: math.unit(1.5*1.4, "feet^2")
  55888. },
  55889. }
  55890. },
  55891. },
  55892. [
  55893. {
  55894. name: "Normal",
  55895. height: math.unit(6, "feet"),
  55896. default: true
  55897. },
  55898. ]
  55899. ))
  55900. characterMakers.push(() => makeCharacter(
  55901. { name: "Pyrow", species: ["sergix"], tags: ["anthro"] },
  55902. {
  55903. front: {
  55904. height: math.unit(6, "feet"),
  55905. name: "Front",
  55906. image: {
  55907. source: "./media/characters/pyrow/front.svg",
  55908. extra: 513/486,
  55909. bottom: 14/527
  55910. }
  55911. },
  55912. frontWing: {
  55913. height: math.unit(6, "feet"),
  55914. name: "Front (Wing)",
  55915. image: {
  55916. source: "./media/characters/pyrow/front-wing.svg",
  55917. extra: 539/383,
  55918. bottom: 20/559
  55919. }
  55920. },
  55921. back: {
  55922. height: math.unit(6, "feet"),
  55923. name: "Back",
  55924. image: {
  55925. source: "./media/characters/pyrow/back.svg",
  55926. extra: 500/473,
  55927. bottom: 9/509
  55928. }
  55929. },
  55930. },
  55931. [
  55932. {
  55933. name: "Normal",
  55934. height: math.unit(6, "feet"),
  55935. default: true
  55936. },
  55937. ]
  55938. ))
  55939. characterMakers.push(() => makeCharacter(
  55940. { name: "Velikan", species: ["behemoth"], tags: ["anthro"] },
  55941. {
  55942. front: {
  55943. height: math.unit(5, "meters"),
  55944. weight: math.unit(3, "tonnes"),
  55945. name: "Front",
  55946. image: {
  55947. source: "./media/characters/velikan/front.svg",
  55948. extra: 867/744,
  55949. bottom: 71/938
  55950. },
  55951. extraAttributes: {
  55952. "shoeSize": {
  55953. name: "Shoe Size",
  55954. power: 1,
  55955. type: "length",
  55956. base: math.unit(135, "ShoeSizeUK"),
  55957. defaultUnit: "ShoeSizeUK"
  55958. },
  55959. }
  55960. },
  55961. },
  55962. [
  55963. {
  55964. name: "Normal",
  55965. height: math.unit(5, "meters"),
  55966. default: true
  55967. },
  55968. {
  55969. name: "Macro",
  55970. height: math.unit(1, "km")
  55971. },
  55972. {
  55973. name: "Mega Macro",
  55974. height: math.unit(100, "km")
  55975. },
  55976. {
  55977. name: "Giga Macro",
  55978. height: math.unit(2, "megameters")
  55979. },
  55980. {
  55981. name: "Planetary",
  55982. height: math.unit(22, "megameters")
  55983. },
  55984. {
  55985. name: "Solar",
  55986. height: math.unit(8, "gigameters")
  55987. },
  55988. {
  55989. name: "Cosmic",
  55990. height: math.unit(10, "zettameters")
  55991. },
  55992. {
  55993. name: "Omni",
  55994. height: math.unit(9e260, "multiverses")
  55995. },
  55996. ]
  55997. ))
  55998. characterMakers.push(() => makeCharacter(
  55999. { name: "Sabiki", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  56000. {
  56001. front: {
  56002. height: math.unit(4 + 3/12, "feet"),
  56003. weight: math.unit(90, "lb"),
  56004. name: "Front",
  56005. image: {
  56006. source: "./media/characters/sabiki/front.svg",
  56007. extra: 1662/1423,
  56008. bottom: 65/1727
  56009. }
  56010. },
  56011. },
  56012. [
  56013. {
  56014. name: "Normal",
  56015. height: math.unit(4 + 3/12, "feet"),
  56016. default: true
  56017. },
  56018. ]
  56019. ))
  56020. characterMakers.push(() => makeCharacter(
  56021. { name: "Carmel", species: ["ant"], tags: ["anthro"] },
  56022. {
  56023. frontSfw: {
  56024. height: math.unit(2, "mm"),
  56025. name: "Front (SFW)",
  56026. image: {
  56027. source: "./media/characters/carmel/front-sfw.svg",
  56028. extra: 1131/1006,
  56029. bottom: 66/1197
  56030. }
  56031. },
  56032. frontNsfw: {
  56033. height: math.unit(2, "mm"),
  56034. name: "Front (NSFW)",
  56035. image: {
  56036. source: "./media/characters/carmel/front-nsfw.svg",
  56037. extra: 1131/1006,
  56038. bottom: 66/1197
  56039. }
  56040. },
  56041. foot: {
  56042. height: math.unit(0.3, "mm"),
  56043. name: "Foot",
  56044. image: {
  56045. source: "./media/characters/carmel/foot.svg"
  56046. }
  56047. },
  56048. tongue: {
  56049. height: math.unit(0.71, "mm"),
  56050. name: "Tongue",
  56051. image: {
  56052. source: "./media/characters/carmel/tongue.svg"
  56053. }
  56054. },
  56055. dick: {
  56056. height: math.unit(0.085, "mm"),
  56057. name: "Dick",
  56058. image: {
  56059. source: "./media/characters/carmel/dick.svg"
  56060. }
  56061. },
  56062. },
  56063. [
  56064. {
  56065. name: "Micro",
  56066. height: math.unit(2, "mm"),
  56067. default: true
  56068. },
  56069. {
  56070. name: "Normal",
  56071. height: math.unit(4 + 8/12, "feet")
  56072. },
  56073. {
  56074. name: "Mega Macro",
  56075. height: math.unit(250, "feet")
  56076. },
  56077. {
  56078. name: "BIGGER",
  56079. height: math.unit(1000, "feet")
  56080. },
  56081. {
  56082. name: "BIGGEST",
  56083. height: math.unit(2, "miles")
  56084. },
  56085. ]
  56086. ))
  56087. characterMakers.push(() => makeCharacter(
  56088. { name: "Tamani", species: ["lion"], tags: ["anthro", "feral"] },
  56089. {
  56090. front: {
  56091. height: math.unit(6.5, "feet"),
  56092. weight: math.unit(198, "lb"),
  56093. name: "Front",
  56094. image: {
  56095. source: "./media/characters/tamani/anthro.svg",
  56096. extra: 930/890,
  56097. bottom: 34/964
  56098. },
  56099. form: "anthro",
  56100. default: true
  56101. },
  56102. side: {
  56103. height: math.unit(6, "feet"),
  56104. weight: math.unit(198*2, "lb"),
  56105. name: "Side",
  56106. image: {
  56107. source: "./media/characters/tamani/feral.svg",
  56108. extra: 559/519,
  56109. bottom: 43/602
  56110. },
  56111. form: "feral"
  56112. },
  56113. },
  56114. [
  56115. {
  56116. name: "Normal",
  56117. height: math.unit(6.5, "feet"),
  56118. default: true,
  56119. form: "anthro"
  56120. },
  56121. {
  56122. name: "Normal",
  56123. height: math.unit(6, "feet"),
  56124. default: true,
  56125. form: "feral"
  56126. },
  56127. ],
  56128. {
  56129. "anthro": {
  56130. name: "Anthro",
  56131. default: true
  56132. },
  56133. "feral": {
  56134. name: "Feral",
  56135. },
  56136. }
  56137. ))
  56138. characterMakers.push(() => makeCharacter(
  56139. { name: "Dex", species: ["eastern-cottontail-rabbit"], tags: ["anthro"] },
  56140. {
  56141. front: {
  56142. height: math.unit(4 + 1/12, "feet"),
  56143. weight: math.unit(114, "lb"),
  56144. name: "Front",
  56145. image: {
  56146. source: "./media/characters/dex/front.svg",
  56147. extra: 787/680,
  56148. bottom: 18/805
  56149. }
  56150. },
  56151. side: {
  56152. height: math.unit(4 + 1/12, "feet"),
  56153. weight: math.unit(114, "lb"),
  56154. name: "Side",
  56155. image: {
  56156. source: "./media/characters/dex/side.svg",
  56157. extra: 785/680,
  56158. bottom: 12/797
  56159. }
  56160. },
  56161. back: {
  56162. height: math.unit(4 + 1/12, "feet"),
  56163. weight: math.unit(114, "lb"),
  56164. name: "Back",
  56165. image: {
  56166. source: "./media/characters/dex/back.svg",
  56167. extra: 785/681,
  56168. bottom: 17/802
  56169. }
  56170. },
  56171. loungewear: {
  56172. height: math.unit(4 + 1/12, "feet"),
  56173. weight: math.unit(114, "lb"),
  56174. name: "Loungewear",
  56175. image: {
  56176. source: "./media/characters/dex/loungewear.svg",
  56177. extra: 787/680,
  56178. bottom: 18/805
  56179. }
  56180. },
  56181. workout: {
  56182. height: math.unit(4 + 1/12, "feet"),
  56183. weight: math.unit(114, "lb"),
  56184. name: "Workout",
  56185. image: {
  56186. source: "./media/characters/dex/workout.svg",
  56187. extra: 787/680,
  56188. bottom: 18/805
  56189. }
  56190. },
  56191. schoolUniform: {
  56192. height: math.unit(4 + 1/12, "feet"),
  56193. weight: math.unit(114, "lb"),
  56194. name: "School-uniform",
  56195. image: {
  56196. source: "./media/characters/dex/school-uniform.svg",
  56197. extra: 787/680,
  56198. bottom: 18/805
  56199. }
  56200. },
  56201. maw: {
  56202. height: math.unit(0.55, "feet"),
  56203. name: "Maw",
  56204. image: {
  56205. source: "./media/characters/dex/maw.svg"
  56206. }
  56207. },
  56208. paw: {
  56209. height: math.unit(0.87, "feet"),
  56210. name: "Paw",
  56211. image: {
  56212. source: "./media/characters/dex/paw.svg"
  56213. }
  56214. },
  56215. bust: {
  56216. height: math.unit(1.67, "feet"),
  56217. name: "Bust",
  56218. image: {
  56219. source: "./media/characters/dex/bust.svg"
  56220. }
  56221. },
  56222. },
  56223. [
  56224. {
  56225. name: "Normal",
  56226. height: math.unit(4 + 1/12, "feet"),
  56227. default: true
  56228. },
  56229. ]
  56230. ))
  56231. characterMakers.push(() => makeCharacter(
  56232. { name: "Silke", species: ["sylveon"], tags: ["anthro"] },
  56233. {
  56234. front: {
  56235. height: math.unit(4 + 3/12, "feet"),
  56236. weight: math.unit(60, "lb"),
  56237. name: "Front",
  56238. image: {
  56239. source: "./media/characters/silke/front.svg",
  56240. extra: 1334/1122,
  56241. bottom: 21/1355
  56242. }
  56243. },
  56244. back: {
  56245. height: math.unit(4 + 3/12, "feet"),
  56246. weight: math.unit(60, "lb"),
  56247. name: "Back",
  56248. image: {
  56249. source: "./media/characters/silke/back.svg",
  56250. extra: 1328/1092,
  56251. bottom: 16/1344
  56252. }
  56253. },
  56254. dressed: {
  56255. height: math.unit(4 + 3/12, "feet"),
  56256. weight: math.unit(60, "lb"),
  56257. name: "Dressed",
  56258. image: {
  56259. source: "./media/characters/silke/dressed.svg",
  56260. extra: 1334/1122,
  56261. bottom: 43/1377
  56262. }
  56263. },
  56264. },
  56265. [
  56266. {
  56267. name: "Normal",
  56268. height: math.unit(4 + 3/12, "feet"),
  56269. default: true
  56270. },
  56271. ]
  56272. ))
  56273. characterMakers.push(() => makeCharacter(
  56274. { name: "Wireshark", species: ["thresher-shark"], tags: ["anthro"] },
  56275. {
  56276. front: {
  56277. height: math.unit(1.58, "meters"),
  56278. weight: math.unit(47, "kg"),
  56279. name: "Front",
  56280. image: {
  56281. source: "./media/characters/wireshark/front.svg",
  56282. extra: 883/838,
  56283. bottom: 66/949
  56284. }
  56285. },
  56286. },
  56287. [
  56288. {
  56289. name: "Normal",
  56290. height: math.unit(1.58, "meters"),
  56291. default: true
  56292. },
  56293. ]
  56294. ))
  56295. characterMakers.push(() => makeCharacter(
  56296. { name: "Gallagher", species: ["shark", "cyborg", "ai"], tags: ["anthro"] },
  56297. {
  56298. front: {
  56299. height: math.unit(6, "meters"),
  56300. weight: math.unit(15000, "kg"),
  56301. name: "Front",
  56302. image: {
  56303. source: "./media/characters/gallagher/front.svg",
  56304. extra: 532/493,
  56305. bottom: 0/532
  56306. }
  56307. },
  56308. },
  56309. [
  56310. {
  56311. name: "Normal",
  56312. height: math.unit(6, "meters"),
  56313. default: true
  56314. },
  56315. ]
  56316. ))
  56317. characterMakers.push(() => makeCharacter(
  56318. { name: "Alice", species: ["black-tip-reef-shark"], tags: ["anthro"] },
  56319. {
  56320. front: {
  56321. height: math.unit(2.4, "meters"),
  56322. weight: math.unit(270, "kg"),
  56323. name: "Front",
  56324. image: {
  56325. source: "./media/characters/alice/front.svg",
  56326. extra: 950/900,
  56327. bottom: 36/986
  56328. }
  56329. },
  56330. side: {
  56331. height: math.unit(2.4, "meters"),
  56332. weight: math.unit(270, "kg"),
  56333. name: "Side",
  56334. image: {
  56335. source: "./media/characters/alice/side.svg",
  56336. extra: 921/876,
  56337. bottom: 19/940
  56338. }
  56339. },
  56340. dressed: {
  56341. height: math.unit(2.4, "meters"),
  56342. weight: math.unit(270, "kg"),
  56343. name: "Dressed",
  56344. image: {
  56345. source: "./media/characters/alice/dressed.svg",
  56346. extra: 905/850,
  56347. bottom: 81/986
  56348. }
  56349. },
  56350. fishnet: {
  56351. height: math.unit(2.4, "meters"),
  56352. weight: math.unit(270, "kg"),
  56353. name: "Fishnet",
  56354. image: {
  56355. source: "./media/characters/alice/fishnet.svg",
  56356. extra: 905/850,
  56357. bottom: 81/986
  56358. }
  56359. },
  56360. },
  56361. [
  56362. {
  56363. name: "Normal",
  56364. height: math.unit(2.4, "meters"),
  56365. default: true
  56366. },
  56367. ]
  56368. ))
  56369. characterMakers.push(() => makeCharacter(
  56370. { name: "Fio", species: ["deer"], tags: ["anthro"] },
  56371. {
  56372. front: {
  56373. height: math.unit(175.25, "feet"),
  56374. name: "Front",
  56375. image: {
  56376. source: "./media/characters/fio/front.svg",
  56377. extra: 1883/1591,
  56378. bottom: 34/1917
  56379. }
  56380. },
  56381. },
  56382. [
  56383. {
  56384. name: "Normal",
  56385. height: math.unit(175.25, "cm"),
  56386. default: true
  56387. },
  56388. ]
  56389. ))
  56390. characterMakers.push(() => makeCharacter(
  56391. { name: "Hass", species: ["quetzalcoatlus-northropi"], tags: ["feral"] },
  56392. {
  56393. side: {
  56394. height: math.unit(6, "meters"),
  56395. weight: math.unit(3400, "kg"),
  56396. preyCapacity: math.unit(1700, "liters"),
  56397. name: "Side",
  56398. image: {
  56399. source: "./media/characters/hass/side.svg",
  56400. extra: 1058/997,
  56401. bottom: 177/1235
  56402. }
  56403. },
  56404. feeding: {
  56405. height: math.unit(6*0.63, "meters"),
  56406. weight: math.unit(3400, "kg"),
  56407. preyCapacity: math.unit(1700, "liters"),
  56408. name: "Feeding",
  56409. image: {
  56410. source: "./media/characters/hass/feeding.svg",
  56411. extra: 689/579,
  56412. bottom: 146/835
  56413. }
  56414. },
  56415. guts: {
  56416. height: math.unit(6, "meters"),
  56417. weight: math.unit(3400, "kg"),
  56418. name: "Guts",
  56419. image: {
  56420. source: "./media/characters/hass/guts.svg",
  56421. extra: 1223/1198,
  56422. bottom: 182/1405
  56423. }
  56424. },
  56425. dickFront: {
  56426. height: math.unit(1.4, "meters"),
  56427. name: "Dick (Front)",
  56428. image: {
  56429. source: "./media/characters/hass/dick-front.svg"
  56430. }
  56431. },
  56432. dickSide: {
  56433. height: math.unit(1.3, "meters"),
  56434. name: "Dick (Side)",
  56435. image: {
  56436. source: "./media/characters/hass/dick-side.svg"
  56437. }
  56438. },
  56439. dickBack: {
  56440. height: math.unit(1.4, "meters"),
  56441. name: "Dick (Back)",
  56442. image: {
  56443. source: "./media/characters/hass/dick-back.svg"
  56444. }
  56445. },
  56446. },
  56447. [
  56448. {
  56449. name: "Normal",
  56450. height: math.unit(6, "meters"),
  56451. default: true
  56452. },
  56453. ]
  56454. ))
  56455. characterMakers.push(() => makeCharacter(
  56456. { name: "Hickory Finnegan", species: ["fennec-fox"], tags: ["anthro"] },
  56457. {
  56458. front: {
  56459. height: math.unit(4, "feet"),
  56460. weight: math.unit(60, "lb"),
  56461. name: "Front",
  56462. image: {
  56463. source: "./media/characters/hickory-finnegan/front.svg",
  56464. extra: 444/411,
  56465. bottom: 10/454
  56466. }
  56467. },
  56468. side: {
  56469. height: math.unit(4, "feet"),
  56470. weight: math.unit(60, "lb"),
  56471. name: "Side",
  56472. image: {
  56473. source: "./media/characters/hickory-finnegan/side.svg",
  56474. extra: 444/411,
  56475. bottom: 10/454
  56476. }
  56477. },
  56478. back: {
  56479. height: math.unit(4, "feet"),
  56480. weight: math.unit(60, "lb"),
  56481. name: "Back",
  56482. image: {
  56483. source: "./media/characters/hickory-finnegan/back.svg",
  56484. extra: 444/411,
  56485. bottom: 10/454
  56486. }
  56487. },
  56488. },
  56489. [
  56490. {
  56491. name: "Normal",
  56492. height: math.unit(4, "feet"),
  56493. default: true
  56494. },
  56495. ]
  56496. ))
  56497. characterMakers.push(() => makeCharacter(
  56498. { name: "Robin Phox", species: ["snivy", "yoshi", "delphox", "mienshao", "inteleon", "reshiram", "samurott"], tags: ["anthro"] },
  56499. {
  56500. snivy_front: {
  56501. height: math.unit(2, "feet"),
  56502. weight: math.unit(17.9, "lb"),
  56503. name: "Front",
  56504. image: {
  56505. source: "./media/characters/robin-phox/snivy-front.svg",
  56506. extra: 569/504,
  56507. bottom: 33/602
  56508. },
  56509. form: "snivy",
  56510. default: true
  56511. },
  56512. snivy_frontNsfw: {
  56513. height: math.unit(2, "feet"),
  56514. weight: math.unit(17.9, "lb"),
  56515. name: "Front (NSFW)",
  56516. image: {
  56517. source: "./media/characters/robin-phox/snivy-front-nsfw.svg",
  56518. extra: 569/504,
  56519. bottom: 33/602
  56520. },
  56521. form: "snivy",
  56522. },
  56523. snivy_back: {
  56524. height: math.unit(2, "feet"),
  56525. weight: math.unit(17.9, "lb"),
  56526. name: "Back",
  56527. image: {
  56528. source: "./media/characters/robin-phox/snivy-back.svg",
  56529. extra: 577/508,
  56530. bottom: 21/598
  56531. },
  56532. form: "snivy",
  56533. },
  56534. snivy_foot: {
  56535. height: math.unit(0.68, "feet"),
  56536. name: "Foot",
  56537. image: {
  56538. source: "./media/characters/robin-phox/snivy-foot.svg"
  56539. },
  56540. form: "snivy",
  56541. },
  56542. snivy_sole: {
  56543. height: math.unit(0.68, "feet"),
  56544. name: "Sole",
  56545. image: {
  56546. source: "./media/characters/robin-phox/snivy-sole.svg"
  56547. },
  56548. form: "snivy",
  56549. },
  56550. yoshi_front: {
  56551. height: math.unit(6, "feet"),
  56552. weight: math.unit(150, "lb"),
  56553. name: "Front",
  56554. image: {
  56555. source: "./media/characters/robin-phox/yoshi-front.svg",
  56556. extra: 890/792,
  56557. bottom: 29/919
  56558. },
  56559. form: "yoshi",
  56560. default: true
  56561. },
  56562. yoshi_frontNsfw: {
  56563. height: math.unit(6, "feet"),
  56564. weight: math.unit(150, "lb"),
  56565. name: "Front (NSFW)",
  56566. image: {
  56567. source: "./media/characters/robin-phox/yoshi-front-nsfw.svg",
  56568. extra: 890/792,
  56569. bottom: 29/919
  56570. },
  56571. form: "yoshi",
  56572. },
  56573. yoshi_back: {
  56574. height: math.unit(6, "feet"),
  56575. weight: math.unit(150, "lb"),
  56576. name: "Back",
  56577. image: {
  56578. source: "./media/characters/robin-phox/yoshi-back.svg",
  56579. extra: 890/792,
  56580. bottom: 29/919
  56581. },
  56582. form: "yoshi",
  56583. },
  56584. yoshi_foot: {
  56585. height: math.unit(1.5, "feet"),
  56586. name: "Foot",
  56587. image: {
  56588. source: "./media/characters/robin-phox/yoshi-foot.svg"
  56589. },
  56590. form: "yoshi",
  56591. },
  56592. delphox_front: {
  56593. height: math.unit(4 + 11/12, "feet"),
  56594. weight: math.unit(86, "lb"),
  56595. name: "Front",
  56596. image: {
  56597. source: "./media/characters/robin-phox/delphox-front.svg",
  56598. extra: 1266/1069,
  56599. bottom: 32/1298
  56600. },
  56601. form: "delphox",
  56602. default: true
  56603. },
  56604. delphox_frontNsfw: {
  56605. height: math.unit(4 + 11/12, "feet"),
  56606. weight: math.unit(86, "lb"),
  56607. name: "Front (NSFW)",
  56608. image: {
  56609. source: "./media/characters/robin-phox/delphox-front-nsfw.svg",
  56610. extra: 1266/1069,
  56611. bottom: 32/1298
  56612. },
  56613. form: "delphox",
  56614. },
  56615. delphox_back: {
  56616. height: math.unit(4 + 11/12, "feet"),
  56617. weight: math.unit(86, "lb"),
  56618. name: "Back",
  56619. image: {
  56620. source: "./media/characters/robin-phox/delphox-back.svg",
  56621. extra: 1269/1083,
  56622. bottom: 15/1284
  56623. },
  56624. form: "delphox",
  56625. },
  56626. mienshao_front: {
  56627. height: math.unit(4 + 7/12, "feet"),
  56628. weight: math.unit(78.3, "lb"),
  56629. name: "Front",
  56630. image: {
  56631. source: "./media/characters/robin-phox/mienshao-front.svg",
  56632. extra: 1052/970,
  56633. bottom: 108/1160
  56634. },
  56635. form: "mienshao",
  56636. default: true
  56637. },
  56638. mienshao_frontNsfw: {
  56639. height: math.unit(4 + 7/12, "feet"),
  56640. weight: math.unit(78.3, "lb"),
  56641. name: "Front (NSFW)",
  56642. image: {
  56643. source: "./media/characters/robin-phox/mienshao-front-nsfw.svg",
  56644. extra: 1052/970,
  56645. bottom: 108/1160
  56646. },
  56647. form: "mienshao",
  56648. },
  56649. mienshao_back: {
  56650. height: math.unit(4 + 7/12, "feet"),
  56651. weight: math.unit(78.3, "lb"),
  56652. name: "Back",
  56653. image: {
  56654. source: "./media/characters/robin-phox/mienshao-back.svg",
  56655. extra: 1102/982,
  56656. bottom: 32/1134
  56657. },
  56658. form: "mienshao",
  56659. },
  56660. inteleon_front: {
  56661. height: math.unit(6 + 3/12, "feet"),
  56662. weight: math.unit(99.6, "lb"),
  56663. name: "Front",
  56664. image: {
  56665. source: "./media/characters/robin-phox/inteleon-front.svg",
  56666. extra: 910/799,
  56667. bottom: 76/986
  56668. },
  56669. form: "inteleon",
  56670. default: true
  56671. },
  56672. inteleon_frontNsfw: {
  56673. height: math.unit(6 + 3/12, "feet"),
  56674. weight: math.unit(99.6, "lb"),
  56675. name: "Front (NSFW)",
  56676. image: {
  56677. source: "./media/characters/robin-phox/inteleon-front-nsfw.svg",
  56678. extra: 910/799,
  56679. bottom: 76/986
  56680. },
  56681. form: "inteleon",
  56682. },
  56683. inteleon_back: {
  56684. height: math.unit(6 + 3/12, "feet"),
  56685. weight: math.unit(99.6, "lb"),
  56686. name: "Back",
  56687. image: {
  56688. source: "./media/characters/robin-phox/inteleon-back.svg",
  56689. extra: 907/796,
  56690. bottom: 25/932
  56691. },
  56692. form: "inteleon",
  56693. },
  56694. reshiram_front: {
  56695. height: math.unit(10 + 6/12, "feet"),
  56696. weight: math.unit(727.5, "lb"),
  56697. name: "Front",
  56698. image: {
  56699. source: "./media/characters/robin-phox/reshiram-front.svg",
  56700. extra: 1198/940,
  56701. bottom: 123/1321
  56702. },
  56703. form: "reshiram",
  56704. },
  56705. reshiram_frontNsfw: {
  56706. height: math.unit(10 + 6/12, "feet"),
  56707. weight: math.unit(727.5, "lb"),
  56708. name: "Front-nsfw",
  56709. image: {
  56710. source: "./media/characters/robin-phox/reshiram-front-nsfw.svg",
  56711. extra: 1198/940,
  56712. bottom: 123/1321
  56713. },
  56714. form: "reshiram",
  56715. },
  56716. reshiram_back: {
  56717. height: math.unit(10 + 6/12, "feet"),
  56718. weight: math.unit(727.5, "lb"),
  56719. name: "Back",
  56720. image: {
  56721. source: "./media/characters/robin-phox/reshiram-back.svg",
  56722. extra: 1024/904,
  56723. bottom: 85/1109
  56724. },
  56725. form: "reshiram",
  56726. },
  56727. samurott_front: {
  56728. height: math.unit(8, "feet"),
  56729. weight: math.unit(208.6, "lb"),
  56730. name: "Front",
  56731. image: {
  56732. source: "./media/characters/robin-phox/samurott-front.svg",
  56733. extra: 1048/984,
  56734. bottom: 100/1148
  56735. },
  56736. form: "samurott",
  56737. },
  56738. samurott_frontNsfw: {
  56739. height: math.unit(8, "feet"),
  56740. weight: math.unit(208.6, "lb"),
  56741. name: "Front-nsfw",
  56742. image: {
  56743. source: "./media/characters/robin-phox/samurott-front-nsfw.svg",
  56744. extra: 1048/984,
  56745. bottom: 100/1148
  56746. },
  56747. form: "samurott",
  56748. },
  56749. samurott_back: {
  56750. height: math.unit(8, "feet"),
  56751. weight: math.unit(208.6, "lb"),
  56752. name: "Back",
  56753. image: {
  56754. source: "./media/characters/robin-phox/samurott-back.svg",
  56755. extra: 1110/1042,
  56756. bottom: 12/1122
  56757. },
  56758. form: "samurott",
  56759. },
  56760. samurott_feral: {
  56761. height: math.unit(4 + 11/12, "feet"),
  56762. weight: math.unit(208.6, "lb"),
  56763. name: "Feral",
  56764. image: {
  56765. source: "./media/characters/robin-phox/samurott-feral.svg",
  56766. extra: 766/681,
  56767. bottom: 108/874
  56768. },
  56769. form: "samurott",
  56770. },
  56771. },
  56772. [
  56773. {
  56774. name: "Normal",
  56775. height: math.unit(2, "feet"),
  56776. default: true,
  56777. form: "snivy"
  56778. },
  56779. {
  56780. name: "Normal",
  56781. height: math.unit(6, "feet"),
  56782. default: true,
  56783. form: "yoshi"
  56784. },
  56785. {
  56786. name: "Normal",
  56787. height: math.unit(4 + 11/12, "feet"),
  56788. default: true,
  56789. form: "delphox"
  56790. },
  56791. {
  56792. name: "Normal",
  56793. height: math.unit(4 + 7/12, "feet"),
  56794. default: true,
  56795. form: "mienshao"
  56796. },
  56797. {
  56798. name: "Normal",
  56799. height: math.unit(6 + 3/12, "feet"),
  56800. default: true,
  56801. form: "inteleon"
  56802. },
  56803. {
  56804. name: "Normal",
  56805. height: math.unit(10 + 6/12, "feet"),
  56806. default: true,
  56807. form: "reshiram"
  56808. },
  56809. {
  56810. name: "Normal",
  56811. height: math.unit(8, "feet"),
  56812. default: true,
  56813. form: "samurott"
  56814. },
  56815. {
  56816. name: "Macro",
  56817. height: math.unit(500, "feet"),
  56818. allForms: true
  56819. },
  56820. {
  56821. name: "Mega Macro",
  56822. height: math.unit(10, "earths"),
  56823. allForms: true
  56824. },
  56825. {
  56826. name: "Giga Macro",
  56827. height: math.unit(1, "galaxy"),
  56828. allForms: true
  56829. },
  56830. {
  56831. name: "Godly Macro",
  56832. height: math.unit(1e10, "multiverses"),
  56833. allForms: true
  56834. },
  56835. ],
  56836. {
  56837. "snivy": {
  56838. name: "Snivy",
  56839. default: true
  56840. },
  56841. "yoshi": {
  56842. name: "Yoshi",
  56843. },
  56844. "delphox": {
  56845. name: "Delphox",
  56846. },
  56847. "mienshao": {
  56848. name: "Mienshao",
  56849. },
  56850. "inteleon": {
  56851. name: "Inteleon",
  56852. },
  56853. "reshiram": {
  56854. name: "Reshiram",
  56855. },
  56856. "samurott": {
  56857. name: "Samurott",
  56858. },
  56859. }
  56860. ))
  56861. characterMakers.push(() => makeCharacter(
  56862. { name: "Ash Leung", species: ["red-panda"], tags: ["anthro"] },
  56863. {
  56864. front: {
  56865. height: math.unit(4, "feet"),
  56866. name: "Front",
  56867. image: {
  56868. source: "./media/characters/ash-leung/front.svg",
  56869. extra: 1916/1792,
  56870. bottom: 50/1966
  56871. }
  56872. },
  56873. },
  56874. [
  56875. {
  56876. name: "Atomic",
  56877. height: math.unit(1, "angstrom")
  56878. },
  56879. {
  56880. name: "Microscopic",
  56881. height: math.unit(4000, "angstroms")
  56882. },
  56883. {
  56884. name: "Speck",
  56885. height: math.unit(1, "mm")
  56886. },
  56887. {
  56888. name: "Small",
  56889. height: math.unit(1, "inch")
  56890. },
  56891. {
  56892. name: "Normal",
  56893. height: math.unit(4, "feet"),
  56894. default: true
  56895. },
  56896. ]
  56897. ))
  56898. characterMakers.push(() => makeCharacter(
  56899. { name: "Carie", species: ["lucario"], tags: ["anthro"] },
  56900. {
  56901. frontDressed: {
  56902. height: math.unit(2.08, "meters"),
  56903. weight: math.unit(175, "lb"),
  56904. name: "Front (Dressed)",
  56905. image: {
  56906. source: "./media/characters/carie/front-dressed.svg",
  56907. extra: 456/417,
  56908. bottom: 7/463
  56909. }
  56910. },
  56911. backDressed: {
  56912. height: math.unit(2.08, "meters"),
  56913. weight: math.unit(175, "lb"),
  56914. name: "Back (Dressed)",
  56915. image: {
  56916. source: "./media/characters/carie/back-dressed.svg",
  56917. extra: 455/414,
  56918. bottom: 11/466
  56919. }
  56920. },
  56921. front: {
  56922. height: math.unit(2, "meters"),
  56923. weight: math.unit(175, "lb"),
  56924. name: "Front",
  56925. image: {
  56926. source: "./media/characters/carie/front.svg",
  56927. extra: 438/399,
  56928. bottom: 12/450
  56929. }
  56930. },
  56931. back: {
  56932. height: math.unit(2, "meters"),
  56933. weight: math.unit(175, "lb"),
  56934. name: "Back",
  56935. image: {
  56936. source: "./media/characters/carie/back.svg",
  56937. extra: 438/397,
  56938. bottom: 7/445
  56939. }
  56940. },
  56941. },
  56942. [
  56943. {
  56944. name: "Normal",
  56945. height: math.unit(2.08, "meters"),
  56946. default: true
  56947. },
  56948. {
  56949. name: "Macro",
  56950. height: math.unit(2.08e3, "meters")
  56951. },
  56952. {
  56953. name: "Mega Macro",
  56954. height: math.unit(2.08e6, "meters")
  56955. },
  56956. {
  56957. name: "Giga Macro",
  56958. height: math.unit(2.08e9, "meters")
  56959. },
  56960. {
  56961. name: "Tera Macro",
  56962. height: math.unit(2.08e12, "meters")
  56963. },
  56964. {
  56965. name: "Peta Macro",
  56966. height: math.unit(2.08e15, "meters")
  56967. },
  56968. {
  56969. name: "Exa Macro",
  56970. height: math.unit(2.08e18, "meters")
  56971. },
  56972. {
  56973. name: "Zetta Macro",
  56974. height: math.unit(2.08e21, "meters")
  56975. },
  56976. {
  56977. name: "Yotta Macro",
  56978. height: math.unit(2.08e24, "meters")
  56979. },
  56980. ]
  56981. ))
  56982. characterMakers.push(() => makeCharacter(
  56983. { name: "Sai Bree", species: ["sabertooth-tiger"], tags: ["anthro"] },
  56984. {
  56985. front: {
  56986. height: math.unit(5 + 2/12, "feet"),
  56987. weight: math.unit(120, "lb"),
  56988. name: "Front",
  56989. image: {
  56990. source: "./media/characters/sai-bree/front.svg",
  56991. extra: 1843/1702,
  56992. bottom: 91/1934
  56993. }
  56994. },
  56995. back: {
  56996. height: math.unit(5 + 2/12, "feet"),
  56997. weight: math.unit(120, "lb"),
  56998. name: "Back",
  56999. image: {
  57000. source: "./media/characters/sai-bree/back.svg",
  57001. extra: 1809/1637,
  57002. bottom: 56/1865
  57003. }
  57004. },
  57005. },
  57006. [
  57007. {
  57008. name: "Normal",
  57009. height: math.unit(5 + 2/12, "feet"),
  57010. default: true
  57011. },
  57012. {
  57013. name: "Macro",
  57014. height: math.unit(500, "feet")
  57015. },
  57016. ]
  57017. ))
  57018. characterMakers.push(() => makeCharacter(
  57019. { name: "Davwyn", species: ["dragon"], tags: ["feral"] },
  57020. {
  57021. side: {
  57022. height: math.unit(0.77, "meters"),
  57023. weight: math.unit(120, "lb"),
  57024. name: "Side",
  57025. image: {
  57026. source: "./media/characters/davwyn/side.svg",
  57027. extra: 1557/1225,
  57028. bottom: 131/1688
  57029. }
  57030. },
  57031. front: {
  57032. height: math.unit(0.835410, "meters"),
  57033. weight: math.unit(120, "lb"),
  57034. name: "Front",
  57035. image: {
  57036. source: "./media/characters/davwyn/front.svg",
  57037. extra: 870/843,
  57038. bottom: 175/1045
  57039. }
  57040. },
  57041. },
  57042. [
  57043. {
  57044. name: "Minidrake",
  57045. height: math.unit(0.77/4, "meters")
  57046. },
  57047. {
  57048. name: "Normal",
  57049. height: math.unit(0.77, "meters"),
  57050. default: true
  57051. },
  57052. ]
  57053. ))
  57054. characterMakers.push(() => makeCharacter(
  57055. { name: "Balans", species: ["dragon", "kangaroo"], tags: ["anthro"] },
  57056. {
  57057. front: {
  57058. height: math.unit(10 + 3/12, "feet"),
  57059. weight: math.unit(2857, "lb"),
  57060. name: "Front",
  57061. image: {
  57062. source: "./media/characters/balans/front.svg",
  57063. extra: 427/402,
  57064. bottom: 26/453
  57065. }
  57066. },
  57067. side: {
  57068. height: math.unit(10 + 3/12, "feet"),
  57069. weight: math.unit(2857, "lb"),
  57070. name: "Side",
  57071. image: {
  57072. source: "./media/characters/balans/side.svg",
  57073. extra: 397/371,
  57074. bottom: 17/414
  57075. }
  57076. },
  57077. back: {
  57078. height: math.unit(10 + 3/12, "feet"),
  57079. weight: math.unit(2857, "lb"),
  57080. name: "Back",
  57081. image: {
  57082. source: "./media/characters/balans/back.svg",
  57083. extra: 408/381,
  57084. bottom: 14/422
  57085. }
  57086. },
  57087. hand: {
  57088. height: math.unit(1.15, "feet"),
  57089. name: "Hand",
  57090. image: {
  57091. source: "./media/characters/balans/hand.svg"
  57092. }
  57093. },
  57094. footRest: {
  57095. height: math.unit(3.1, "feet"),
  57096. name: "Foot (Rest)",
  57097. image: {
  57098. source: "./media/characters/balans/foot-rest.svg"
  57099. }
  57100. },
  57101. footActive: {
  57102. height: math.unit(3.5, "feet"),
  57103. name: "Foot (Active)",
  57104. image: {
  57105. source: "./media/characters/balans/foot-active.svg"
  57106. }
  57107. },
  57108. },
  57109. [
  57110. {
  57111. name: "Normal",
  57112. height: math.unit(10 + 3/12, "feet"),
  57113. default: true
  57114. },
  57115. ]
  57116. ))
  57117. characterMakers.push(() => makeCharacter(
  57118. { name: "Eldkveikir", species: ["dragon"], tags: ["feral"] },
  57119. {
  57120. side: {
  57121. height: math.unit(9, "meters"),
  57122. weight: math.unit(114, "tonnes"),
  57123. name: "Side",
  57124. image: {
  57125. source: "./media/characters/eldkveikir/side.svg",
  57126. extra: 1927/338,
  57127. bottom: 42/1969
  57128. }
  57129. },
  57130. sitting: {
  57131. height: math.unit(13.4, "meters"),
  57132. weight: math.unit(114, "tonnes"),
  57133. name: "Sitting",
  57134. image: {
  57135. source: "./media/characters/eldkveikir/sitting.svg",
  57136. extra: 1108/963,
  57137. bottom: 610/1718
  57138. }
  57139. },
  57140. maw: {
  57141. height: math.unit(8.36, "meters"),
  57142. name: "Maw",
  57143. image: {
  57144. source: "./media/characters/eldkveikir/maw.svg"
  57145. }
  57146. },
  57147. hand: {
  57148. height: math.unit(4.84, "meters"),
  57149. name: "Hand",
  57150. image: {
  57151. source: "./media/characters/eldkveikir/hand.svg"
  57152. }
  57153. },
  57154. foot: {
  57155. height: math.unit(6.9, "meters"),
  57156. name: "Foot",
  57157. image: {
  57158. source: "./media/characters/eldkveikir/foot.svg"
  57159. }
  57160. },
  57161. genitals: {
  57162. height: math.unit(9.6, "meters"),
  57163. name: "Genitals",
  57164. image: {
  57165. source: "./media/characters/eldkveikir/genitals.svg"
  57166. }
  57167. },
  57168. },
  57169. [
  57170. {
  57171. name: "Normal",
  57172. height: math.unit(9, "meters"),
  57173. default: true
  57174. },
  57175. ]
  57176. ))
  57177. characterMakers.push(() => makeCharacter(
  57178. { name: "Arrow", species: ["wolf"], tags: ["anthro"] },
  57179. {
  57180. front: {
  57181. height: math.unit(14, "feet"),
  57182. weight: math.unit(4100, "lb"),
  57183. name: "Front",
  57184. image: {
  57185. source: "./media/characters/arrow/front.svg",
  57186. extra: 330/318,
  57187. bottom: 56/386
  57188. }
  57189. },
  57190. },
  57191. [
  57192. {
  57193. name: "Normal",
  57194. height: math.unit(14, "feet"),
  57195. default: true
  57196. },
  57197. {
  57198. name: "Minimacro",
  57199. height: math.unit(63, "feet")
  57200. },
  57201. {
  57202. name: "Macro",
  57203. height: math.unit(630, "feet")
  57204. },
  57205. {
  57206. name: "Megamacro",
  57207. height: math.unit(12600, "feet")
  57208. },
  57209. {
  57210. name: "Gigamacro",
  57211. height: math.unit(18000, "miles")
  57212. },
  57213. ]
  57214. ))
  57215. characterMakers.push(() => makeCharacter(
  57216. { name: "3YK-K0 Unit", species: ["synth"], tags: ["anthro"] },
  57217. {
  57218. front: {
  57219. height: math.unit(10, "feet"),
  57220. weight: math.unit(2.4, "tons"),
  57221. name: "Front",
  57222. image: {
  57223. source: "./media/characters/3yk-k0-unit/front.svg",
  57224. extra: 573/561,
  57225. bottom: 33/606
  57226. }
  57227. },
  57228. back: {
  57229. height: math.unit(10, "feet"),
  57230. weight: math.unit(2.4, "tons"),
  57231. name: "Back",
  57232. image: {
  57233. source: "./media/characters/3yk-k0-unit/back.svg",
  57234. extra: 614/573,
  57235. bottom: 32/646
  57236. }
  57237. },
  57238. maw: {
  57239. height: math.unit(2.15, "feet"),
  57240. name: "Maw",
  57241. image: {
  57242. source: "./media/characters/3yk-k0-unit/maw.svg"
  57243. }
  57244. },
  57245. },
  57246. [
  57247. {
  57248. name: "Normal",
  57249. height: math.unit(10, "feet"),
  57250. default: true
  57251. },
  57252. ]
  57253. ))
  57254. characterMakers.push(() => makeCharacter(
  57255. { name: "Nemo", species: ["dragon"], tags: ["anthro"] },
  57256. {
  57257. front: {
  57258. height: math.unit(8 + 8/12, "feet"),
  57259. name: "Front",
  57260. image: {
  57261. source: "./media/characters/nemo/front.svg",
  57262. extra: 1308/1217,
  57263. bottom: 57/1365
  57264. }
  57265. },
  57266. },
  57267. [
  57268. {
  57269. name: "Normal",
  57270. height: math.unit(8 + 8/12, "feet"),
  57271. default: true
  57272. },
  57273. ]
  57274. ))
  57275. characterMakers.push(() => makeCharacter(
  57276. { name: "Rexx", species: ["wolf"], tags: ["anthro"] },
  57277. {
  57278. front: {
  57279. height: math.unit(8, "feet"),
  57280. weight: math.unit(760, "lb"),
  57281. name: "Front",
  57282. image: {
  57283. source: "./media/characters/rexx/front.svg",
  57284. extra: 786/750,
  57285. bottom: 17/803
  57286. },
  57287. extraAttributes: {
  57288. "pawLength": {
  57289. name: "Paw Length",
  57290. power: 1,
  57291. type: "length",
  57292. base: math.unit(27, "inches")
  57293. },
  57294. }
  57295. },
  57296. },
  57297. [
  57298. {
  57299. name: "Micro",
  57300. height: math.unit(2, "inches")
  57301. },
  57302. {
  57303. name: "Normal",
  57304. height: math.unit(8, "feet"),
  57305. default: true
  57306. },
  57307. {
  57308. name: "Macro",
  57309. height: math.unit(150, "feet")
  57310. },
  57311. ]
  57312. ))
  57313. characterMakers.push(() => makeCharacter(
  57314. { name: "Draco", species: ["dragon"], tags: ["anthro"] },
  57315. {
  57316. front: {
  57317. height: math.unit(18, "feet"),
  57318. weight: math.unit(1975, "lb"),
  57319. name: "Front",
  57320. image: {
  57321. source: "./media/characters/draco/front.svg",
  57322. extra: 1325/1241,
  57323. bottom: 83/1408
  57324. }
  57325. },
  57326. back: {
  57327. height: math.unit(18, "feet"),
  57328. weight: math.unit(1975, "lb"),
  57329. name: "Back",
  57330. image: {
  57331. source: "./media/characters/draco/back.svg",
  57332. extra: 1332/1250,
  57333. bottom: 43/1375
  57334. }
  57335. },
  57336. dick: {
  57337. height: math.unit(7.5, "feet"),
  57338. name: "Dick",
  57339. image: {
  57340. source: "./media/characters/draco/dick.svg"
  57341. }
  57342. },
  57343. },
  57344. [
  57345. {
  57346. name: "Normal",
  57347. height: math.unit(18, "feet"),
  57348. default: true
  57349. },
  57350. ]
  57351. ))
  57352. characterMakers.push(() => makeCharacter(
  57353. { name: "Harriett", species: ["nedynvor"], tags: ["anthro"] },
  57354. {
  57355. front: {
  57356. height: math.unit(3.2, "meters"),
  57357. name: "Front",
  57358. image: {
  57359. source: "./media/characters/harriett/front.svg",
  57360. extra: 1966/1915,
  57361. bottom: 9/1975
  57362. }
  57363. },
  57364. },
  57365. [
  57366. {
  57367. name: "Normal",
  57368. height: math.unit(3.2, "meters"),
  57369. default: true
  57370. },
  57371. ]
  57372. ))
  57373. characterMakers.push(() => makeCharacter(
  57374. { name: "Serpentus", species: ["snake"], tags: ["anthro"] },
  57375. {
  57376. sitting: {
  57377. height: math.unit(0.8, "meter"),
  57378. name: "Sitting",
  57379. image: {
  57380. source: "./media/characters/serpentus/sitting.svg",
  57381. extra: 293/290,
  57382. bottom: 140/433
  57383. }
  57384. },
  57385. },
  57386. [
  57387. {
  57388. name: "Normal",
  57389. height: math.unit(0.8, "meter"),
  57390. default: true
  57391. },
  57392. ]
  57393. ))
  57394. characterMakers.push(() => makeCharacter(
  57395. { name: "Nova (Polecat)", species: ["marbled-polecat"], tags: ["anthro"] },
  57396. {
  57397. front: {
  57398. height: math.unit(5.7174385736, "feet"),
  57399. name: "Front",
  57400. image: {
  57401. source: "./media/characters/nova-polecat/front.svg",
  57402. extra: 1317/1216,
  57403. bottom: 92/1409
  57404. }
  57405. },
  57406. },
  57407. [
  57408. {
  57409. name: "Normal",
  57410. height: math.unit(5.7174385736, "feet"),
  57411. default: true
  57412. },
  57413. ]
  57414. ))
  57415. characterMakers.push(() => makeCharacter(
  57416. { name: "Mook", species: ["monkey", "ape"], tags: ["anthro"] },
  57417. {
  57418. front: {
  57419. height: math.unit(5 + 4/12, "feet"),
  57420. weight: math.unit(250, "lb"),
  57421. name: "Front",
  57422. image: {
  57423. source: "./media/characters/mook/front.svg",
  57424. extra: 1088/1037,
  57425. bottom: 132/1220
  57426. }
  57427. },
  57428. back: {
  57429. height: math.unit(5 + 1/12, "feet"),
  57430. weight: math.unit(250, "lb"),
  57431. name: "Back",
  57432. image: {
  57433. source: "./media/characters/mook/back.svg",
  57434. extra: 1184/905,
  57435. bottom: 96/1280
  57436. }
  57437. },
  57438. head: {
  57439. height: math.unit(1.85, "feet"),
  57440. name: "Head",
  57441. image: {
  57442. source: "./media/characters/mook/head.svg"
  57443. }
  57444. },
  57445. hand: {
  57446. height: math.unit(1.9, "feet"),
  57447. name: "Hand",
  57448. image: {
  57449. source: "./media/characters/mook/hand.svg"
  57450. }
  57451. },
  57452. palm: {
  57453. height: math.unit(1.84, "feet"),
  57454. name: "Palm",
  57455. image: {
  57456. source: "./media/characters/mook/palm.svg"
  57457. }
  57458. },
  57459. foot: {
  57460. height: math.unit(1.44, "feet"),
  57461. name: "Foot",
  57462. image: {
  57463. source: "./media/characters/mook/foot.svg"
  57464. }
  57465. },
  57466. sole: {
  57467. height: math.unit(1.44, "feet"),
  57468. name: "Sole",
  57469. image: {
  57470. source: "./media/characters/mook/sole.svg"
  57471. }
  57472. },
  57473. },
  57474. [
  57475. {
  57476. name: "Normal",
  57477. height: math.unit(5 + 4/12, "feet"),
  57478. default: true
  57479. },
  57480. {
  57481. name: "Big",
  57482. height: math.unit(12, "feet")
  57483. },
  57484. ]
  57485. ))
  57486. characterMakers.push(() => makeCharacter(
  57487. { name: "Kayla", species: ["human"], tags: ["anthro"] },
  57488. {
  57489. front: {
  57490. height: math.unit(6 + 10/12, "feet"),
  57491. weight: math.unit(233, "lb"),
  57492. name: "Front",
  57493. image: {
  57494. source: "./media/characters/kayla/front.svg",
  57495. extra: 1850/1775,
  57496. bottom: 65/1915
  57497. }
  57498. },
  57499. },
  57500. [
  57501. {
  57502. name: "Normal",
  57503. height: math.unit(6 + 10/12, "feet"),
  57504. default: true
  57505. },
  57506. {
  57507. name: "Amazonian",
  57508. height: math.unit(12 + 5/12, "feet")
  57509. },
  57510. {
  57511. name: "Mini Giantess",
  57512. height: math.unit(26, "feet")
  57513. },
  57514. {
  57515. name: "Giantess",
  57516. height: math.unit(200, "feet")
  57517. },
  57518. {
  57519. name: "Mega Giantess",
  57520. height: math.unit(2500, "feet")
  57521. },
  57522. {
  57523. name: "City Sized",
  57524. height: math.unit(50, "miles")
  57525. },
  57526. {
  57527. name: "Country Sized",
  57528. height: math.unit(500, "miles")
  57529. },
  57530. {
  57531. name: "Continent Sized",
  57532. height: math.unit(2500, "miles")
  57533. },
  57534. {
  57535. name: "Planet Sized",
  57536. height: math.unit(10000, "miles")
  57537. },
  57538. {
  57539. name: "Star Sized",
  57540. height: math.unit(5e6, "miles")
  57541. },
  57542. {
  57543. name: "Solar System Sized",
  57544. height: math.unit(125, "AU")
  57545. },
  57546. {
  57547. name: "Galaxy Sized",
  57548. height: math.unit(300e3, "lightyears")
  57549. },
  57550. {
  57551. name: "Universe Sized",
  57552. height: math.unit(200e9, "lightyears")
  57553. },
  57554. {
  57555. name: "Multiverse Sized",
  57556. height: math.unit(20, "exauniverses")
  57557. },
  57558. {
  57559. name: "Mother of Existence",
  57560. height: math.unit(1e6, "yottauniverses")
  57561. },
  57562. ]
  57563. ))
  57564. characterMakers.push(() => makeCharacter(
  57565. { name: "Kulve Ragnarok", species: ["kulve-taroth"], tags: ["taur"] },
  57566. {
  57567. side: {
  57568. height: math.unit(9.5, "meters"),
  57569. name: "Side",
  57570. image: {
  57571. source: "./media/characters/kulve-ragnarok/side.svg",
  57572. extra: 364/326,
  57573. bottom: 50/414
  57574. }
  57575. },
  57576. },
  57577. [
  57578. {
  57579. name: "Normal",
  57580. height: math.unit(9.5, "meters"),
  57581. default: true
  57582. },
  57583. ]
  57584. ))
  57585. characterMakers.push(() => makeCharacter(
  57586. { name: "Atlas (Goat)", species: ["goat"], tags: ["anthro"] },
  57587. {
  57588. front: {
  57589. height: math.unit(8 + 9/12, "feet"),
  57590. name: "Front",
  57591. image: {
  57592. source: "./media/characters/atlas-goat/front.svg",
  57593. extra: 1462/1323,
  57594. bottom: 12/1474
  57595. }
  57596. },
  57597. },
  57598. [
  57599. {
  57600. name: "Normal",
  57601. height: math.unit(8 + 9/12, "feet"),
  57602. default: true
  57603. },
  57604. {
  57605. name: "Skyline",
  57606. height: math.unit(845, "feet")
  57607. },
  57608. {
  57609. name: "Orbital",
  57610. height: math.unit(93000, "miles")
  57611. },
  57612. {
  57613. name: "Constellation",
  57614. height: math.unit(27000, "lightyears")
  57615. },
  57616. ]
  57617. ))
  57618. characterMakers.push(() => makeCharacter(
  57619. { name: "Xie Ling", species: ["irthos"], tags: ["anthro"] },
  57620. {
  57621. side: {
  57622. height: math.unit(1.8, "meters"),
  57623. weight: math.unit(120, "kg"),
  57624. name: "Side",
  57625. image: {
  57626. source: "./media/characters/xie-ling/side.svg",
  57627. extra: 646/574,
  57628. bottom: 44/690
  57629. }
  57630. },
  57631. },
  57632. [
  57633. {
  57634. name: "Tiny",
  57635. height: math.unit(1.80, "meters")
  57636. },
  57637. {
  57638. name: "Small",
  57639. height: math.unit(6, "meters")
  57640. },
  57641. {
  57642. name: "Medium",
  57643. height: math.unit(15, "meters")
  57644. },
  57645. {
  57646. name: "Normal",
  57647. height: math.unit(30, "meters"),
  57648. default: true
  57649. },
  57650. {
  57651. name: "Above Normal",
  57652. height: math.unit(60, "meters")
  57653. },
  57654. {
  57655. name: "Big",
  57656. height: math.unit(220, "meters")
  57657. },
  57658. {
  57659. name: "Giant",
  57660. height: math.unit(2.2, "km")
  57661. },
  57662. {
  57663. name: "Macro",
  57664. height: math.unit(25, "km")
  57665. },
  57666. {
  57667. name: "Mega Macro",
  57668. height: math.unit(350, "km")
  57669. },
  57670. {
  57671. name: "Mega Macro+",
  57672. height: math.unit(5000, "km")
  57673. },
  57674. {
  57675. name: "Goddess",
  57676. height: math.unit(3, "multiverses")
  57677. },
  57678. ]
  57679. ))
  57680. //characters
  57681. function makeCharacters() {
  57682. const results = [];
  57683. characterMakers.forEach(character => {
  57684. results.push(character());
  57685. });
  57686. return results;
  57687. }