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.
 
 
 

57314 lines
1.4 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.preyCapacity) {
  46. views[key].attributes.preyCapacity = {
  47. name: "Prey Capacity",
  48. power: 3,
  49. type: "volume",
  50. base: value.preyCapacity,
  51. defaultUnit: "people"
  52. }
  53. }
  54. if (value.energyNeed) {
  55. views[key].attributes.capacity = {
  56. name: "Food Intake",
  57. power: 3 * 3 / 4,
  58. type: "energy",
  59. base: value.energyNeed
  60. }
  61. }
  62. if (value.extraAttributes) {
  63. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  64. views[key].attributes[attrKey] = attrValue
  65. })
  66. }
  67. });
  68. return createEntityMaker(info, views, defaultSizes, forms);
  69. }
  70. const speciesData = {
  71. animal: {
  72. name: "Animal"
  73. },
  74. dog: {
  75. name: "Dog",
  76. parents: [
  77. "canine"
  78. ]
  79. },
  80. canine: {
  81. name: "Canine",
  82. parents: [
  83. "mammal"
  84. ]
  85. },
  86. crux: {
  87. name: "Crux",
  88. parents: [
  89. "mammal"
  90. ]
  91. },
  92. mammal: {
  93. name: "Mammal",
  94. parents: [
  95. "animal"
  96. ]
  97. },
  98. "rough-collie": {
  99. name: "Rough Collie",
  100. parents: [
  101. "dog"
  102. ]
  103. },
  104. dragon: {
  105. name: "Dragon",
  106. parents: [
  107. "reptile"
  108. ]
  109. },
  110. reptile: {
  111. name: "Reptile",
  112. parents: [
  113. "animal"
  114. ]
  115. },
  116. woodpecker: {
  117. name: "Woodpecker",
  118. parents: [
  119. "avian"
  120. ]
  121. },
  122. avian: {
  123. name: "Avian",
  124. parents: [
  125. "animal"
  126. ]
  127. },
  128. kitsune: {
  129. name: "Kitsune",
  130. parents: [
  131. "fox"
  132. ]
  133. },
  134. fox: {
  135. name: "Fox",
  136. parents: [
  137. "mammal"
  138. ]
  139. },
  140. pokemon: {
  141. name: "Pokemon",
  142. parents: [
  143. "video-games"
  144. ]
  145. },
  146. tiger: {
  147. name: "Tiger",
  148. parents: [
  149. "cat"
  150. ]
  151. },
  152. cat: {
  153. name: "Cat",
  154. parents: [
  155. "feliform"
  156. ]
  157. },
  158. "blue-jay": {
  159. name: "Blue Jay",
  160. parents: [
  161. "corvid"
  162. ]
  163. },
  164. wolf: {
  165. name: "Wolf",
  166. parents: [
  167. "mammal"
  168. ]
  169. },
  170. coyote: {
  171. name: "Coyote",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. raccoon: {
  177. name: "Raccoon",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. weasel: {
  183. name: "Weasel",
  184. parents: [
  185. "mustelid"
  186. ]
  187. },
  188. "red-panda": {
  189. name: "Red Panda",
  190. parents: [
  191. "mammal"
  192. ]
  193. },
  194. dolphin: {
  195. name: "Dolphin",
  196. parents: [
  197. "mammal"
  198. ]
  199. },
  200. "african-wild-dog": {
  201. name: "African Wild Dog",
  202. parents: [
  203. "canine"
  204. ]
  205. },
  206. "hyena": {
  207. name: "Hyena",
  208. parents: [
  209. "feliform"
  210. ]
  211. },
  212. "carbuncle": {
  213. name: "Carbuncle",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. bat: {
  219. name: "Bat",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "leaf-nosed-bat": {
  225. name: "Leaf-Nosed Bat",
  226. parents: [
  227. "bat"
  228. ]
  229. },
  230. "fish": {
  231. name: "Fish",
  232. parents: [
  233. "animal"
  234. ]
  235. },
  236. "ram": {
  237. name: "Ram",
  238. parents: [
  239. "mammal"
  240. ]
  241. },
  242. "demon": {
  243. name: "Demon",
  244. parents: [
  245. "supernatural"
  246. ]
  247. },
  248. "cougar": {
  249. name: "Cougar",
  250. parents: [
  251. "cat"
  252. ]
  253. },
  254. "goat": {
  255. name: "Goat",
  256. parents: [
  257. "mammal"
  258. ]
  259. },
  260. "lion": {
  261. name: "Lion",
  262. parents: [
  263. "cat"
  264. ]
  265. },
  266. "harpy-eager": {
  267. name: "Harpy Eagle",
  268. parents: [
  269. "avian"
  270. ]
  271. },
  272. "deer": {
  273. name: "Deer",
  274. parents: [
  275. "mammal"
  276. ]
  277. },
  278. "phoenix": {
  279. name: "Phoenix",
  280. parents: [
  281. "avian"
  282. ]
  283. },
  284. "aeromorph": {
  285. name: "Aeromorph",
  286. parents: [
  287. "machine"
  288. ]
  289. },
  290. "machine": {
  291. name: "Machine",
  292. },
  293. "android": {
  294. name: "Android",
  295. parents: [
  296. "machine"
  297. ]
  298. },
  299. "jackal": {
  300. name: "Jackal",
  301. parents: [
  302. "canine"
  303. ]
  304. },
  305. "corvid": {
  306. name: "Corvid",
  307. parents: [
  308. "passerine"
  309. ]
  310. },
  311. "pharaoh-hound": {
  312. name: "Pharaoh Hound",
  313. parents: [
  314. "dog"
  315. ]
  316. },
  317. "skunk": {
  318. name: "Skunk",
  319. parents: [
  320. "mammal"
  321. ]
  322. },
  323. "shark": {
  324. name: "Shark",
  325. parents: [
  326. "fish"
  327. ]
  328. },
  329. "black-panther": {
  330. name: "Black Panther",
  331. parents: [
  332. "cat"
  333. ]
  334. },
  335. "umbra": {
  336. name: "Umbra",
  337. parents: [
  338. "animal"
  339. ]
  340. },
  341. "raven": {
  342. name: "Raven",
  343. parents: [
  344. "corvid"
  345. ]
  346. },
  347. "snow-leopard": {
  348. name: "Snow Leopard",
  349. parents: [
  350. "cat"
  351. ]
  352. },
  353. "barbary-lion": {
  354. name: "Barbary Lion",
  355. parents: [
  356. "lion"
  357. ]
  358. },
  359. "dra'gal": {
  360. name: "Dra'Gal",
  361. parents: [
  362. "mammal"
  363. ]
  364. },
  365. "german-shepherd": {
  366. name: "German Shepherd",
  367. parents: [
  368. "dog"
  369. ]
  370. },
  371. "bayleef": {
  372. name: "Bayleef",
  373. parents: [
  374. "pokemon",
  375. "plant",
  376. "animal"
  377. ]
  378. },
  379. "mouse": {
  380. name: "Mouse",
  381. parents: [
  382. "rodent"
  383. ]
  384. },
  385. "rat": {
  386. name: "Rat",
  387. parents: [
  388. "mammal"
  389. ]
  390. },
  391. "hoshiko-beast": {
  392. name: "Hoshiko Beast",
  393. parents: ["animal"]
  394. },
  395. "snow-jugani": {
  396. name: "Snow Jugani",
  397. parents: ["cat"]
  398. },
  399. "patamon": {
  400. name: "Patamon",
  401. parents: ["digimon", "guinea-pig"]
  402. },
  403. "digimon": {
  404. name: "Digimon",
  405. parents: [
  406. "video-games"
  407. ]
  408. },
  409. "jugani": {
  410. name: "Jugani",
  411. parents: ["cat"]
  412. },
  413. "luxray": {
  414. name: "Luxray",
  415. parents: ["pokemon", "lion"]
  416. },
  417. "mech": {
  418. name: "Mech",
  419. parents: ["machine"]
  420. },
  421. "zoid": {
  422. name: "Zoid",
  423. parents: ["mech"]
  424. },
  425. "monster": {
  426. name: "Monster",
  427. parents: ["animal"]
  428. },
  429. "foo-dog": {
  430. name: "Foo Dog",
  431. parents: ["mammal"]
  432. },
  433. "elephant": {
  434. name: "Elephant",
  435. parents: ["mammal"]
  436. },
  437. "eagle": {
  438. name: "Eagle",
  439. parents: ["bird-of-prey"]
  440. },
  441. "cow": {
  442. name: "Cow",
  443. parents: ["mammal"]
  444. },
  445. "crocodile": {
  446. name: "Crocodile",
  447. parents: ["reptile"]
  448. },
  449. "borzoi": {
  450. name: "Borzoi",
  451. parents: ["dog"]
  452. },
  453. "snake": {
  454. name: "Snake",
  455. parents: ["reptile"]
  456. },
  457. "horned-bush-viper": {
  458. name: "Horned Bush Viper",
  459. parents: ["viper"]
  460. },
  461. "cobra": {
  462. name: "Cobra",
  463. parents: ["snake"]
  464. },
  465. "harpy-eagle": {
  466. name: "Harpy Eagle",
  467. parents: ["eagle"]
  468. },
  469. "raptor": {
  470. name: "Raptor",
  471. parents: ["dinosaur"]
  472. },
  473. "dinosaur": {
  474. name: "Dinosaur",
  475. parents: ["reptile"]
  476. },
  477. "veilhound": {
  478. name: "Veilhound",
  479. parents: ["hellhound"]
  480. },
  481. "hellhound": {
  482. name: "Hellhound",
  483. parents: ["canine", "demon"]
  484. },
  485. "insect": {
  486. name: "Insect",
  487. parents: ["animal"]
  488. },
  489. "beetle": {
  490. name: "Beetle",
  491. parents: ["insect"]
  492. },
  493. "moth": {
  494. name: "Moth",
  495. parents: ["insect"]
  496. },
  497. "eastern-dragon": {
  498. name: "Eastern Dragon",
  499. parents: ["dragon"]
  500. },
  501. "jaguar": {
  502. name: "Jaguar",
  503. parents: ["cat"]
  504. },
  505. "horse": {
  506. name: "Horse",
  507. parents: ["mammal"]
  508. },
  509. "sergal": {
  510. name: "Sergal",
  511. parents: ["mammal", "avian", "vilous"]
  512. },
  513. "gryphon": {
  514. name: "Gryphon",
  515. parents: ["lion", "eagle"]
  516. },
  517. "robot": {
  518. name: "Robot",
  519. parents: ["machine"]
  520. },
  521. "medihound": {
  522. name: "Medihound",
  523. parents: ["robot", "dog"]
  524. },
  525. "sylveon": {
  526. name: "Sylveon",
  527. parents: ["pokemon"]
  528. },
  529. "catgirl": {
  530. name: "Catgirl",
  531. parents: ["mammal"]
  532. },
  533. "cowgirl": {
  534. name: "Cowgirl",
  535. parents: ["mammal"]
  536. },
  537. "pony": {
  538. name: "Pony",
  539. parents: ["horse"]
  540. },
  541. "rabbit": {
  542. name: "Rabbit",
  543. parents: ["leporidae"]
  544. },
  545. "fennec-fox": {
  546. name: "Fennec Fox",
  547. parents: ["fox"]
  548. },
  549. "azodian": {
  550. name: "Azodian",
  551. parents: ["mouse"]
  552. },
  553. "shiba-inu": {
  554. name: "Shiba Inu",
  555. parents: ["dog"]
  556. },
  557. "changeling": {
  558. name: "Changeling",
  559. parents: ["insect"]
  560. },
  561. "cheetah": {
  562. name: "Cheetah",
  563. parents: ["cat"]
  564. },
  565. "golden-jackal": {
  566. name: "Golden Jackal",
  567. parents: ["jackal"]
  568. },
  569. "manectric": {
  570. name: "Manectric",
  571. parents: ["pokemon", "wolf"]
  572. },
  573. "rat": {
  574. name: "Rat",
  575. parents: ["rodent"]
  576. },
  577. "rodent": {
  578. name: "Rodent",
  579. parents: ["mammal"]
  580. },
  581. "octocoon": {
  582. name: "Octocoon",
  583. parents: ["raccoon", "octopus"]
  584. },
  585. "octopus": {
  586. name: "Octopus",
  587. parents: ["fish"]
  588. },
  589. "werewolf": {
  590. name: "Werewolf",
  591. parents: ["wolf", "werebeast"]
  592. },
  593. "werebeast": {
  594. name: "Werebeast",
  595. parents: ["monster"]
  596. },
  597. "meerkat": {
  598. name: "Meerkat",
  599. parents: ["mammal"]
  600. },
  601. "human": {
  602. name: "Human",
  603. parents: ["mammal"]
  604. },
  605. "geth": {
  606. name: "Geth",
  607. parents: ["android"]
  608. },
  609. "husky": {
  610. name: "Husky",
  611. parents: ["dog"]
  612. },
  613. "long-eared-bat": {
  614. name: "Long Eared Bat",
  615. parents: ["bat"]
  616. },
  617. "lizard": {
  618. name: "Lizard",
  619. parents: ["reptile"]
  620. },
  621. "salamander": {
  622. name: "Salamander",
  623. parents: ["lizard"]
  624. },
  625. "chameleon": {
  626. name: "Chameleon",
  627. parents: ["lizard"]
  628. },
  629. "gecko": {
  630. name: "Gecko",
  631. parents: ["lizard"]
  632. },
  633. "kobold": {
  634. name: "Kobold",
  635. parents: ["reptile"]
  636. },
  637. "charizard": {
  638. name: "Charizard",
  639. parents: ["pokemon", "dragon"]
  640. },
  641. "lugia": {
  642. name: "Lugia",
  643. parents: ["pokemon", "avian"]
  644. },
  645. "cerberus": {
  646. name: "Cerberus",
  647. parents: ["dog"]
  648. },
  649. "tyrantrum": {
  650. name: "Tyrantrum",
  651. parents: ["pokemon"]
  652. },
  653. "lemur": {
  654. name: "Lemur",
  655. parents: ["mammal"]
  656. },
  657. "kelpie": {
  658. name: "Kelpie",
  659. parents: ["horse", "monster"]
  660. },
  661. "labrador": {
  662. name: "Labrador",
  663. parents: ["dog"]
  664. },
  665. "sylveon": {
  666. name: "Sylveon",
  667. parents: ["eeveelution"]
  668. },
  669. "eeveelution": {
  670. name: "Eeveelution",
  671. parents: ["pokemon", "cat"]
  672. },
  673. "polar-bear": {
  674. name: "Polar Bear",
  675. parents: ["bear"]
  676. },
  677. "bear": {
  678. name: "Bear",
  679. parents: ["mammal"]
  680. },
  681. "absol": {
  682. name: "Absol",
  683. parents: ["pokemon", "cat"]
  684. },
  685. "wolver": {
  686. name: "Wolver",
  687. parents: ["mammal"]
  688. },
  689. "rottweiler": {
  690. name: "Rottweiler",
  691. parents: ["dog"]
  692. },
  693. "zebra": {
  694. name: "Zebra",
  695. parents: ["horse"]
  696. },
  697. "yoshi": {
  698. name: "Yoshi",
  699. parents: ["lizard"]
  700. },
  701. "lynx": {
  702. name: "Lynx",
  703. parents: ["cat"]
  704. },
  705. "unknown": {
  706. name: "Unknown",
  707. parents: []
  708. },
  709. "thylacine": {
  710. name: "Thylacine",
  711. parents: ["mammal"]
  712. },
  713. "gabumon": {
  714. name: "Gabumon",
  715. parents: ["digimon"]
  716. },
  717. "border-collie": {
  718. name: "Border Collie",
  719. parents: ["dog"]
  720. },
  721. "imp": {
  722. name: "Imp",
  723. parents: ["demon"]
  724. },
  725. "kangaroo": {
  726. name: "Kangaroo",
  727. parents: ["marsupial"]
  728. },
  729. "renamon": {
  730. name: "Renamon",
  731. parents: ["digimon", "fox"]
  732. },
  733. "candy-orca-dragon": {
  734. name: "Candy Orca Dragon",
  735. parents: ["fish", "dragon", "candy"]
  736. },
  737. "sabertooth-tiger": {
  738. name: "Sabertooth Tiger",
  739. parents: ["cat"]
  740. },
  741. "espurr": {
  742. name: "Espurr",
  743. parents: ["pokemon", "cat"]
  744. },
  745. "otter": {
  746. name: "Otter",
  747. parents: ["mustelid"]
  748. },
  749. "elemental": {
  750. name: "Elemental",
  751. parents: ["mammal"]
  752. },
  753. "mew": {
  754. name: "Mew",
  755. parents: ["pokemon"]
  756. },
  757. "goodra": {
  758. name: "Goodra",
  759. parents: ["pokemon"]
  760. },
  761. "fairy": {
  762. name: "Fairy",
  763. parents: ["magical"]
  764. },
  765. "typhlosion": {
  766. name: "Typhlosion",
  767. parents: ["pokemon"]
  768. },
  769. "magical": {
  770. name: "Magical",
  771. parents: []
  772. },
  773. "xenomorph": {
  774. name: "Xenomorph",
  775. parents: ["monster", "alien"]
  776. },
  777. "charr": {
  778. name: "Charr",
  779. parents: ["cat"]
  780. },
  781. "siberian-husky": {
  782. name: "Siberian Husky",
  783. parents: ["husky"]
  784. },
  785. "alligator": {
  786. name: "Alligator",
  787. parents: ["reptile"]
  788. },
  789. "bernese-mountain-dog": {
  790. name: "Bernese Mountain Dog",
  791. parents: ["dog"]
  792. },
  793. "reshiram": {
  794. name: "Reshiram",
  795. parents: ["pokemon", "dragon"]
  796. },
  797. "grizzly-bear": {
  798. name: "Grizzly Bear",
  799. parents: ["bear"]
  800. },
  801. "water-monitor": {
  802. name: "Water Monitor",
  803. parents: ["lizard"]
  804. },
  805. "banchofossa": {
  806. name: "Banchofossa",
  807. parents: ["mammal"]
  808. },
  809. "kirin": {
  810. name: "Kirin",
  811. parents: ["monster"]
  812. },
  813. "quilava": {
  814. name: "Quilava",
  815. parents: ["pokemon"]
  816. },
  817. "seviper": {
  818. name: "Seviper",
  819. parents: ["pokemon", "viper"]
  820. },
  821. "flying-fox": {
  822. name: "Flying Fox",
  823. parents: ["bat"]
  824. },
  825. "keynain": {
  826. name: "Keynain",
  827. parents: ["avian"]
  828. },
  829. "lucario": {
  830. name: "Lucario",
  831. parents: ["pokemon", "jackal"]
  832. },
  833. "siamese-cat": {
  834. name: "Siamese Cat",
  835. parents: ["cat"]
  836. },
  837. "spider": {
  838. name: "Spider",
  839. parents: ["insect"]
  840. },
  841. "samurott": {
  842. name: "Samurott",
  843. parents: ["pokemon", "otter"]
  844. },
  845. "megalodon": {
  846. name: "Megalodon",
  847. parents: ["shark"]
  848. },
  849. "unicorn": {
  850. name: "Unicorn",
  851. parents: ["horse"]
  852. },
  853. "greninja": {
  854. name: "Greninja",
  855. parents: ["pokemon", "frog"]
  856. },
  857. "water-dragon": {
  858. name: "Water Dragon",
  859. parents: ["dragon"]
  860. },
  861. "cross-fox": {
  862. name: "Cross Fox",
  863. parents: ["fox"]
  864. },
  865. "synth": {
  866. name: "Synth",
  867. parents: ["machine"]
  868. },
  869. "construct": {
  870. name: "Construct",
  871. parents: []
  872. },
  873. "mexican-wolf": {
  874. name: "Mexican Wolf",
  875. parents: ["wolf"]
  876. },
  877. "leopard": {
  878. name: "Leopard",
  879. parents: ["cat"]
  880. },
  881. "pig": {
  882. name: "Pig",
  883. parents: ["mammal"]
  884. },
  885. "ampharos": {
  886. name: "Ampharos",
  887. parents: ["pokemon", "sheep"]
  888. },
  889. "orca": {
  890. name: "Orca",
  891. parents: ["fish"]
  892. },
  893. "lycanroc": {
  894. name: "Lycanroc",
  895. parents: ["pokemon", "wolf"]
  896. },
  897. "surkanu": {
  898. name: "Surkanu",
  899. parents: ["monster"]
  900. },
  901. "seal": {
  902. name: "Seal",
  903. parents: ["mammal"]
  904. },
  905. "keldeo": {
  906. name: "Keldeo",
  907. parents: ["pokemon"]
  908. },
  909. "great-dane": {
  910. name: "Great Dane",
  911. parents: ["dog"]
  912. },
  913. "black-backed-jackal": {
  914. name: "Black Backed Jackal",
  915. parents: ["jackal"]
  916. },
  917. "sheep": {
  918. name: "Sheep",
  919. parents: ["mammal"]
  920. },
  921. "leopard-seal": {
  922. name: "Leopard Seal",
  923. parents: ["seal"]
  924. },
  925. "zoroark": {
  926. name: "Zoroark",
  927. parents: ["pokemon", "fox"]
  928. },
  929. "maned-wolf": {
  930. name: "Maned Wolf",
  931. parents: ["canine"]
  932. },
  933. "dracha": {
  934. name: "Dracha",
  935. parents: ["dragon"]
  936. },
  937. "wolxi": {
  938. name: "Wolxi",
  939. parents: ["mammal", "alien"]
  940. },
  941. "dratini": {
  942. name: "Dratini",
  943. parents: ["pokemon", "dragon"]
  944. },
  945. "skaven": {
  946. name: "Skaven",
  947. parents: ["rat"]
  948. },
  949. "mongoose": {
  950. name: "Mongoose",
  951. parents: ["mammal"]
  952. },
  953. "lopunny": {
  954. name: "Lopunny",
  955. parents: ["pokemon", "rabbit"]
  956. },
  957. "feraligatr": {
  958. name: "Feraligatr",
  959. parents: ["pokemon", "alligator"]
  960. },
  961. "houndoom": {
  962. name: "Houndoom",
  963. parents: ["pokemon", "dog"]
  964. },
  965. "protogen": {
  966. name: "Protogen",
  967. parents: ["machine"]
  968. },
  969. "saint-bernard": {
  970. name: "Saint Bernard",
  971. parents: ["dog"]
  972. },
  973. "crow": {
  974. name: "Crow",
  975. parents: ["corvid"]
  976. },
  977. "delphox": {
  978. name: "Delphox",
  979. parents: ["pokemon", "fox"]
  980. },
  981. "moose": {
  982. name: "Moose",
  983. parents: ["mammal"]
  984. },
  985. "joraxian": {
  986. name: "Joraxian",
  987. parents: ["monster", "canine", "demon"]
  988. },
  989. "nimbat": {
  990. name: "Nimbat",
  991. parents: ["mammal"]
  992. },
  993. "aardwolf": {
  994. name: "Aardwolf",
  995. parents: ["canine"]
  996. },
  997. "fluudrani": {
  998. name: "Fluudrani",
  999. parents: ["animal"]
  1000. },
  1001. "arcanine": {
  1002. name: "Arcanine",
  1003. parents: ["pokemon", "dog"]
  1004. },
  1005. "inteleon": {
  1006. name: "Inteleon",
  1007. parents: ["pokemon", "fish"]
  1008. },
  1009. "ninetales": {
  1010. name: "Ninetales",
  1011. parents: ["pokemon", "kitsune"]
  1012. },
  1013. "tigrex": {
  1014. name: "Tigrex",
  1015. parents: ["tiger"]
  1016. },
  1017. "zorua": {
  1018. name: "Zorua",
  1019. parents: ["pokemon", "fox"]
  1020. },
  1021. "vulpix": {
  1022. name: "Vulpix",
  1023. parents: ["pokemon", "fox"]
  1024. },
  1025. "barghest": {
  1026. name: "Barghest",
  1027. parents: ["monster"]
  1028. },
  1029. "gray-wolf": {
  1030. name: "Gray Wolf",
  1031. parents: ["wolf"]
  1032. },
  1033. "ruppells-fox": {
  1034. name: "Rüppell's Fox",
  1035. parents: ["fox"]
  1036. },
  1037. "bull-terrier": {
  1038. name: "Bull Terrier",
  1039. parents: ["dog"]
  1040. },
  1041. "european-honey-buzzard": {
  1042. name: "European Honey Buzzard",
  1043. parents: ["avian"]
  1044. },
  1045. "t-rex": {
  1046. name: "Tyrannosaurus Rex",
  1047. parents: ["dinosaur"]
  1048. },
  1049. "mactarian": {
  1050. name: "Mactarian",
  1051. parents: ["shark", "monster"]
  1052. },
  1053. "mewtwo-y": {
  1054. name: "Mewtwo Y",
  1055. parents: ["mewtwo"]
  1056. },
  1057. "mewtwo": {
  1058. name: "Mewtwo",
  1059. parents: ["pokemon"]
  1060. },
  1061. "eevee": {
  1062. name: "Eevee",
  1063. parents: ["eeveelution"]
  1064. },
  1065. "mienshao": {
  1066. name: "Mienshao",
  1067. parents: ["pokemon"]
  1068. },
  1069. "sugar-glider": {
  1070. name: "Sugar Glider",
  1071. parents: ["opossum"]
  1072. },
  1073. "spectral-bat": {
  1074. name: "Spectral Bat",
  1075. parents: ["bat"]
  1076. },
  1077. "scolipede": {
  1078. name: "Scolipede",
  1079. parents: ["pokemon", "insect"]
  1080. },
  1081. "jackalope": {
  1082. name: "Jackalope",
  1083. parents: ["rabbit", "antelope"]
  1084. },
  1085. "caracal": {
  1086. name: "Caracal",
  1087. parents: ["cat"]
  1088. },
  1089. "stoat": {
  1090. name: "Stoat",
  1091. parents: ["mammal"]
  1092. },
  1093. "african-golden-cat": {
  1094. name: "African Golden Cat",
  1095. parents: ["cat"]
  1096. },
  1097. "gigantosaurus": {
  1098. name: "Gigantosaurus",
  1099. parents: ["dinosaur"]
  1100. },
  1101. "zorgoia": {
  1102. name: "Zorgoia",
  1103. parents: ["mammal"]
  1104. },
  1105. "monitor-lizard": {
  1106. name: "Monitor Lizard",
  1107. parents: ["lizard"]
  1108. },
  1109. "ziralkia": {
  1110. name: "Ziralkia",
  1111. parents: ["mammal"]
  1112. },
  1113. "kiiasi": {
  1114. name: "Kiiasi",
  1115. parents: ["animal"]
  1116. },
  1117. "synx": {
  1118. name: "Synx",
  1119. parents: ["monster"]
  1120. },
  1121. "panther": {
  1122. name: "Panther",
  1123. parents: ["cat"]
  1124. },
  1125. "azumarill": {
  1126. name: "Azumarill",
  1127. parents: ["pokemon"]
  1128. },
  1129. "river-snaptail": {
  1130. name: "River Snaptail",
  1131. parents: ["otter", "crocodile"]
  1132. },
  1133. "great-blue-heron": {
  1134. name: "Great Blue Heron",
  1135. parents: ["avian"]
  1136. },
  1137. "smeargle": {
  1138. name: "Smeargle",
  1139. parents: ["pokemon"]
  1140. },
  1141. "vendeilen": {
  1142. name: "Vendeilen",
  1143. parents: ["monster"]
  1144. },
  1145. "ventura": {
  1146. name: "Ventura",
  1147. parents: ["canine"]
  1148. },
  1149. "clouded-leopard": {
  1150. name: "Clouded Leopard",
  1151. parents: ["leopard"]
  1152. },
  1153. "argonian": {
  1154. name: "Argonian",
  1155. parents: ["lizard"]
  1156. },
  1157. "salazzle": {
  1158. name: "Salazzle",
  1159. parents: ["pokemon", "lizard"]
  1160. },
  1161. "je-stoff-drachen": {
  1162. name: "Je-Stoff Drachen",
  1163. parents: ["dragon"]
  1164. },
  1165. "finnish-spitz-dog": {
  1166. name: "Finnish Spitz Dog",
  1167. parents: ["dog"]
  1168. },
  1169. "gray-fox": {
  1170. name: "Gray Fox",
  1171. parents: ["fox"]
  1172. },
  1173. "opossum": {
  1174. name: "Opossum",
  1175. parents: ["mammal"]
  1176. },
  1177. "antelope": {
  1178. name: "Antelope",
  1179. parents: ["mammal"]
  1180. },
  1181. "weavile": {
  1182. name: "Weavile",
  1183. parents: ["pokemon"]
  1184. },
  1185. "pikachu": {
  1186. name: "Pikachu",
  1187. parents: ["pokemon", "mouse"]
  1188. },
  1189. "grovyle": {
  1190. name: "Grovyle",
  1191. parents: ["pokemon", "plant"]
  1192. },
  1193. "sthara": {
  1194. name: "Sthara",
  1195. parents: ["snow-leopard", "reptile"]
  1196. },
  1197. "star-warrior": {
  1198. name: "Star Warrior",
  1199. parents: ["magical"]
  1200. },
  1201. "dragonoid": {
  1202. name: "Dragonoid",
  1203. parents: ["dragon"]
  1204. },
  1205. "suicune": {
  1206. name: "Suicune",
  1207. parents: ["pokemon"]
  1208. },
  1209. "vole": {
  1210. name: "Vole",
  1211. parents: ["mammal"]
  1212. },
  1213. "blaziken": {
  1214. name: "Blaziken",
  1215. parents: ["pokemon", "avian"]
  1216. },
  1217. "buizel": {
  1218. name: "Buizel",
  1219. parents: ["pokemon", "fish"]
  1220. },
  1221. "floatzel": {
  1222. name: "Floatzel",
  1223. parents: ["pokemon", "fish"]
  1224. },
  1225. "umok": {
  1226. name: "Umok",
  1227. parents: ["avian"]
  1228. },
  1229. "sea-monster": {
  1230. name: "Sea Monster",
  1231. parents: ["monster", "fish"]
  1232. },
  1233. "egyptian-vulture": {
  1234. name: "Egyptian Vulture",
  1235. parents: ["avian"]
  1236. },
  1237. "doberman": {
  1238. name: "Doberman",
  1239. parents: ["dog"]
  1240. },
  1241. "zangoose": {
  1242. name: "Zangoose",
  1243. parents: ["pokemon", "mongoose"]
  1244. },
  1245. "mongoose": {
  1246. name: "Mongoose",
  1247. parents: ["mammal"]
  1248. },
  1249. "wickerbeast": {
  1250. name: "Wickerbeast",
  1251. parents: ["monster"]
  1252. },
  1253. "zenari": {
  1254. name: "Zenari",
  1255. parents: ["lizard"]
  1256. },
  1257. "plant": {
  1258. name: "Plant",
  1259. parents: []
  1260. },
  1261. "raskatox": {
  1262. name: "Raskatox",
  1263. parents: ["raccoon", "skunk", "cat", "fox"]
  1264. },
  1265. "mikromare": {
  1266. name: "mikromare",
  1267. parents: ["alien"]
  1268. },
  1269. "alien": {
  1270. name: "Alien",
  1271. parents: ["animal"]
  1272. },
  1273. "deity": {
  1274. name: "Deity",
  1275. parents: []
  1276. },
  1277. "skarlan": {
  1278. name: "Skarlan",
  1279. parents: ["slug", "dragon"]
  1280. },
  1281. "slug": {
  1282. name: "Slug",
  1283. parents: ["mollusk"]
  1284. },
  1285. "mollusk": {
  1286. name: "Mollusk",
  1287. parents: ["animal"]
  1288. },
  1289. "chimera": {
  1290. name: "Chimera",
  1291. parents: ["monster"]
  1292. },
  1293. "gestalt": {
  1294. name: "Gestalt",
  1295. parents: ["construct"]
  1296. },
  1297. "mimic": {
  1298. name: "Mimic",
  1299. parents: ["monster"]
  1300. },
  1301. "calico-rat": {
  1302. name: "Calico Rat",
  1303. parents: ["rat"]
  1304. },
  1305. "panda": {
  1306. name: "Panda",
  1307. parents: ["mammal"]
  1308. },
  1309. "oni": {
  1310. name: "Oni",
  1311. parents: ["monster"]
  1312. },
  1313. "pegasus": {
  1314. name: "Pegasus",
  1315. parents: ["horse"]
  1316. },
  1317. "vulpera": {
  1318. name: "Vulpera",
  1319. parents: ["fennec-fox"]
  1320. },
  1321. "ceratosaurus": {
  1322. name: "Ceratosaurus",
  1323. parents: ["dinosaur"]
  1324. },
  1325. "nykur": {
  1326. name: "Nykur",
  1327. parents: ["horse", "monster"]
  1328. },
  1329. "giraffe": {
  1330. name: "Giraffe",
  1331. parents: ["mammal"]
  1332. },
  1333. "tauren": {
  1334. name: "Tauren",
  1335. parents: ["cow"]
  1336. },
  1337. "draconi": {
  1338. name: "Draconi",
  1339. parents: ["alien", "cat", "cyborg"]
  1340. },
  1341. "dire-wolf": {
  1342. name: "Dire Wolf",
  1343. parents: ["wolf"]
  1344. },
  1345. "ferromorph": {
  1346. name: "Ferromorph",
  1347. parents: ["construct"]
  1348. },
  1349. "meowth": {
  1350. name: "Meowth",
  1351. parents: ["cat", "pokemon"]
  1352. },
  1353. "pavodragon": {
  1354. name: "Pavodragon",
  1355. parents: ["dragon"]
  1356. },
  1357. "aaltranae": {
  1358. name: "Aaltranae",
  1359. parents: ["dragon"]
  1360. },
  1361. "cyborg": {
  1362. name: "Cyborg",
  1363. parents: ["machine"]
  1364. },
  1365. "draptor": {
  1366. name: "Draptor",
  1367. parents: ["dragon"]
  1368. },
  1369. "candy": {
  1370. name: "Candy",
  1371. parents: []
  1372. },
  1373. "drenath": {
  1374. name: "Drenath",
  1375. parents: ["dragon", "snake", "rabbit"]
  1376. },
  1377. "coyju": {
  1378. name: "Coyju",
  1379. parents: ["coyote", "kaiju"]
  1380. },
  1381. "kaiju": {
  1382. name: "Kaiju",
  1383. parents: ["monster"]
  1384. },
  1385. "nickit": {
  1386. name: "Nickit",
  1387. parents: ["pokemon", "cat"]
  1388. },
  1389. "lopunny": {
  1390. name: "Lopunny",
  1391. parents: ["pokemon", "rabbit"]
  1392. },
  1393. "korean-jindo-dog": {
  1394. name: "Korean Jindo Dog",
  1395. parents: ["dog"]
  1396. },
  1397. "naga": {
  1398. name: "Naga",
  1399. parents: ["snake", "monster"]
  1400. },
  1401. "undead": {
  1402. name: "Undead",
  1403. parents: ["monster"]
  1404. },
  1405. "whale": {
  1406. name: "Whale",
  1407. parents: ["fish"]
  1408. },
  1409. "gelato-bee": {
  1410. name: "Gelato Bee",
  1411. parents: ["bee"]
  1412. },
  1413. "bee": {
  1414. name: "Bee",
  1415. parents: ["insect"]
  1416. },
  1417. "gardevoir": {
  1418. name: "Gardevoir",
  1419. parents: ["pokemon"]
  1420. },
  1421. "ant": {
  1422. name: "Ant",
  1423. parents: ["insect"]
  1424. },
  1425. "frog": {
  1426. name: "Frog",
  1427. parents: ["amphibian"]
  1428. },
  1429. "amphibian": {
  1430. name: "Amphibian",
  1431. parents: ["animal"]
  1432. },
  1433. "pangolin": {
  1434. name: "Pangolin",
  1435. parents: ["mammal"]
  1436. },
  1437. "uragi'viidorn": {
  1438. name: "Uragi'viidorn",
  1439. parents: ["avian", "bear"]
  1440. },
  1441. "gryphdelphais": {
  1442. name: "Gryphdelphais",
  1443. parents: ["dolphin", "gryphon"]
  1444. },
  1445. "plush": {
  1446. name: "Plush",
  1447. parents: ["construct"]
  1448. },
  1449. "draiger": {
  1450. name: "Draiger",
  1451. parents: ["dragon","tiger"]
  1452. },
  1453. "foxsky": {
  1454. name: "Foxsky",
  1455. parents: ["fox", "husky"]
  1456. },
  1457. "umbreon": {
  1458. name: "Umbreon",
  1459. parents: ["eeveelution"]
  1460. },
  1461. "slime-dragon": {
  1462. name: "Slime Dragon",
  1463. parents: ["dragon", "goo"]
  1464. },
  1465. "enderman": {
  1466. name: "Enderman",
  1467. parents: ["monster"]
  1468. },
  1469. "gremlin": {
  1470. name: "Gremlin",
  1471. parents: ["monster"]
  1472. },
  1473. "dragonsune": {
  1474. name: "Dragonsune",
  1475. parents: ["dragon", "kitsune"]
  1476. },
  1477. "ghost": {
  1478. name: "Ghost",
  1479. parents: ["supernatural"]
  1480. },
  1481. "false-vampire-bat": {
  1482. name: "False Vampire Bat",
  1483. parents: ["bat"]
  1484. },
  1485. "succubus": {
  1486. name: "Succubus",
  1487. parents: ["demon"]
  1488. },
  1489. "mia": {
  1490. name: "Mia",
  1491. parents: ["canine"]
  1492. },
  1493. "rainbow": {
  1494. name: "Rainbow",
  1495. parents: ["monster"]
  1496. },
  1497. "solgaleo": {
  1498. name: "Solgaleo",
  1499. parents: ["pokemon"]
  1500. },
  1501. "lucent-nargacuga": {
  1502. name: "Lucent Nargacuga",
  1503. parents: ["nargacuga"]
  1504. },
  1505. "monster-hunter": {
  1506. name: "Monster Hunter",
  1507. parents: ["monster", "video-games"]
  1508. },
  1509. "leviathan": {
  1510. "name": "Leviathan",
  1511. "url": "sea-monster"
  1512. },
  1513. "bull": {
  1514. name: "Bull",
  1515. parents: ["mammal"]
  1516. },
  1517. "tanuki": {
  1518. name: "Tanuki",
  1519. parents: ["monster"]
  1520. },
  1521. "chakat": {
  1522. name: "Chakat",
  1523. parents: ["cat"]
  1524. },
  1525. "hydra": {
  1526. name: "Hydra",
  1527. parents: ["monster"]
  1528. },
  1529. "zigzagoon": {
  1530. name: "Zigzagoon",
  1531. parents: ["raccoon", "pokemon"]
  1532. },
  1533. "vulture": {
  1534. name: "Vulture",
  1535. parents: ["avian"]
  1536. },
  1537. "eastern-dragon": {
  1538. name: "Eastern Dragon",
  1539. parents: ["dragon"]
  1540. },
  1541. "gryffon": {
  1542. name: "Gryffon",
  1543. parents: ["phoenix", "red-panda"]
  1544. },
  1545. "amtsvane": {
  1546. name: "Amtsvane",
  1547. parents: ["reptile"]
  1548. },
  1549. "kigavi": {
  1550. name: "Kigavi",
  1551. parents: ["avian"]
  1552. },
  1553. "turian": {
  1554. name: "Turian",
  1555. parents: ["avian"]
  1556. },
  1557. "zeraora": {
  1558. name: "Zeraora",
  1559. parents: ["pokemon", "cat"]
  1560. },
  1561. "sandshrew": {
  1562. name: "Sandshrew",
  1563. parents: ["pokemon", "pangolin"]
  1564. },
  1565. "valais-blacknose-sheep": {
  1566. name: "Valais Blacknose Sheep",
  1567. parents: ["sheep"]
  1568. },
  1569. "novaleit": {
  1570. name: "Novaleit",
  1571. parents: ["mammal"]
  1572. },
  1573. "dunnoh": {
  1574. name: "Dunnoh",
  1575. parents: ["mammal"]
  1576. },
  1577. "lunaral-dragon": {
  1578. name: "Lunaral Dragon",
  1579. parents: ["dragon"]
  1580. },
  1581. "arctic-wolf": {
  1582. name: "Arctic Wolf",
  1583. parents: ["wolf"]
  1584. },
  1585. "donkey": {
  1586. name: "Donkey",
  1587. parents: ["horse"]
  1588. },
  1589. "chinchilla": {
  1590. name: "Chinchilla",
  1591. parents: ["rodent"]
  1592. },
  1593. "felkin": {
  1594. name: "Felkin",
  1595. parents: ["dragon"]
  1596. },
  1597. "tykeriel": {
  1598. name: "Tykeriel",
  1599. parents: ["avian"]
  1600. },
  1601. "folf": {
  1602. name: "Folf",
  1603. parents: ["fox", "wolf"]
  1604. },
  1605. "pooltoy": {
  1606. name: "Pooltoy",
  1607. parents: ["construct"]
  1608. },
  1609. "demi": {
  1610. name: "Demi",
  1611. parents: ["human"]
  1612. },
  1613. "stegosaurus": {
  1614. name: "Stegosaurus",
  1615. parents: ["dinosaur"]
  1616. },
  1617. "computer-virus": {
  1618. name: "Computer Virus",
  1619. parents: ["program"]
  1620. },
  1621. "program": {
  1622. name: "Program",
  1623. parents: ["construct"]
  1624. },
  1625. "space-springhare": {
  1626. name: "Space Springhare",
  1627. parents: ["hare"]
  1628. },
  1629. "river-drake": {
  1630. name: "River Drake",
  1631. parents: ["dragon"]
  1632. },
  1633. "djinn": {
  1634. "name": "Djinn",
  1635. "url": "supernatural"
  1636. },
  1637. "supernatural": {
  1638. name: "Supernatural",
  1639. parents: ["monster"]
  1640. },
  1641. "grasshopper-mouse": {
  1642. name: "Grasshopper Mouse",
  1643. parents: ["mouse"]
  1644. },
  1645. "somali-cat": {
  1646. name: "Somali Cat",
  1647. parents: ["cat"]
  1648. },
  1649. "minccino": {
  1650. name: "Minccino",
  1651. parents: ["pokemon", "chinchilla"]
  1652. },
  1653. "pine-marten": {
  1654. name: "Pine Marten",
  1655. parents: ["marten"]
  1656. },
  1657. "marten": {
  1658. name: "Marten",
  1659. parents: ["mustelid"]
  1660. },
  1661. "mustelid": {
  1662. name: "Mustelid",
  1663. parents: ["mammal"]
  1664. },
  1665. "caribou": {
  1666. name: "Caribou",
  1667. parents: ["deer"]
  1668. },
  1669. "gnoll": {
  1670. name: "Gnoll",
  1671. parents: ["hyena", "monster"]
  1672. },
  1673. "peacekeeper": {
  1674. name: "Peacekeeper",
  1675. parents: ["human"]
  1676. },
  1677. "river-otter": {
  1678. name: "River Otter",
  1679. parents: ["otter"]
  1680. },
  1681. "dhole": {
  1682. name: "Dhole",
  1683. parents: ["canine"]
  1684. },
  1685. "springbok": {
  1686. name: "Springbok",
  1687. parents: ["antelope"]
  1688. },
  1689. "marsupial": {
  1690. name: "Marsupial",
  1691. parents: ["mammal"]
  1692. },
  1693. "townsend-big-eared-bat": {
  1694. name: "Townsend Big-eared Bat",
  1695. parents: ["bat"]
  1696. },
  1697. "squirrel": {
  1698. name: "Squirrel",
  1699. parents: ["rodent"]
  1700. },
  1701. "magpie": {
  1702. name: "Magpie",
  1703. parents: ["corvid"]
  1704. },
  1705. "civet": {
  1706. name: "Civet",
  1707. parents: ["feliform"]
  1708. },
  1709. "feliform": {
  1710. name: "Feliform",
  1711. parents: ["mammal"]
  1712. },
  1713. "tiefling": {
  1714. name: "Tiefling",
  1715. parents: ["devil"]
  1716. },
  1717. "devil": {
  1718. name: "Devil",
  1719. parents: ["supernatural"]
  1720. },
  1721. "sika-deer": {
  1722. name: "Sika Deer",
  1723. parents: ["deer"]
  1724. },
  1725. "vaporeon": {
  1726. name: "Vaporeon",
  1727. parents: ["eeveelution"]
  1728. },
  1729. "leafeon": {
  1730. name: "Leafeon",
  1731. parents: ["eeveelution"]
  1732. },
  1733. "jolteon": {
  1734. name: "Jolteon",
  1735. parents: ["eeveelution"]
  1736. },
  1737. "spireborn": {
  1738. name: "Spireborn",
  1739. parents: ["zorgoia"]
  1740. },
  1741. "vampire": {
  1742. name: "Vampire",
  1743. parents: ["monster"]
  1744. },
  1745. "extraplanar": {
  1746. name: "Extraplanar",
  1747. parents: []
  1748. },
  1749. "goo": {
  1750. name: "Goo",
  1751. parents: []
  1752. },
  1753. "skink": {
  1754. name: "Skink",
  1755. parents: ["lizard"]
  1756. },
  1757. "bat-eared-fox": {
  1758. name: "Bat-eared Fox",
  1759. parents: ["fox"]
  1760. },
  1761. "belted-kingfisher": {
  1762. name: "Belted Kingfisher",
  1763. parents: ["avian"]
  1764. },
  1765. "omnifalcon": {
  1766. name: "Omnifalcon",
  1767. parents: ["gryphon", "falcon", "harpy-eagle"]
  1768. },
  1769. "falcon": {
  1770. name: "Falcon",
  1771. parents: ["bird-of-prey"]
  1772. },
  1773. "avali": {
  1774. name: "Avali",
  1775. parents: ["avian", "alien"]
  1776. },
  1777. "arctic-fox": {
  1778. name: "Arctic Fox",
  1779. parents: ["fox"]
  1780. },
  1781. "snow-tiger": {
  1782. name: "Snow Tiger",
  1783. parents: ["tiger"]
  1784. },
  1785. "marble-fox": {
  1786. name: "Marble Fox",
  1787. parents: ["fox"]
  1788. },
  1789. "king-wickerbeast": {
  1790. name: "King Wickerbeast",
  1791. parents: ["wickerbeast"]
  1792. },
  1793. "wickerbeast": {
  1794. name: "Wickerbeast",
  1795. parents: ["mammal"]
  1796. },
  1797. "european-polecat": {
  1798. name: "European Polecat",
  1799. parents: ["mustelid"]
  1800. },
  1801. "teshari": {
  1802. name: "Teshari",
  1803. parents: ["avian", "raptor"]
  1804. },
  1805. "alicorn": {
  1806. name: "Alicorn",
  1807. parents: ["horse"]
  1808. },
  1809. "atlas-moth": {
  1810. name: "Atlas Moth",
  1811. parents: ["moth"]
  1812. },
  1813. "owlbear": {
  1814. name: "Owlbear",
  1815. parents: ["owl", "bear", "monster"]
  1816. },
  1817. "owl": {
  1818. name: "Owl",
  1819. parents: ["avian"]
  1820. },
  1821. "silvertongue": {
  1822. name: "Silvertongue",
  1823. parents: ["reptile"]
  1824. },
  1825. "ahuizotl": {
  1826. name: "Ahuizotl",
  1827. parents: ["monster"]
  1828. },
  1829. "ender-dragon": {
  1830. name: "Ender Dragon",
  1831. parents: ["dragon"]
  1832. },
  1833. "bruhathkayosaurus": {
  1834. name: "Bruhathkayosaurus",
  1835. parents: ["sauropod"]
  1836. },
  1837. "sauropod": {
  1838. name: "Sauropod",
  1839. parents: ["dinosaur"]
  1840. },
  1841. "black-sable-antelope": {
  1842. name: "Black Sable Antelope",
  1843. parents: ["antelope"]
  1844. },
  1845. "slime": {
  1846. name: "Slime",
  1847. parents: ["goo"]
  1848. },
  1849. "utahraptor": {
  1850. name: "Utahraptor",
  1851. parents: ["raptor"]
  1852. },
  1853. "indian-giant-squirrel": {
  1854. name: "Indian Giant Squirrel",
  1855. parents: ["squirrel"]
  1856. },
  1857. "golden-retriever": {
  1858. name: "Golden Retriever",
  1859. parents: ["dog"]
  1860. },
  1861. "triceratops": {
  1862. name: "Triceratops",
  1863. parents: ["dinosaur"]
  1864. },
  1865. "drake": {
  1866. name: "Drake",
  1867. parents: ["dragon"]
  1868. },
  1869. "okapi": {
  1870. name: "Okapi",
  1871. parents: ["giraffe"]
  1872. },
  1873. "arctic-hare": {
  1874. name: "Arctic Hare",
  1875. parents: ["hare"]
  1876. },
  1877. "hare": {
  1878. name: "Hare",
  1879. parents: ["leporidae"]
  1880. },
  1881. "leporidae": {
  1882. name: "Leporidae",
  1883. parents: ["mammal"]
  1884. },
  1885. "leopard-gecko": {
  1886. name: "Leopard Gecko",
  1887. parents: ["gecko"]
  1888. },
  1889. "dreamspawn": {
  1890. name: "Dreamspawn",
  1891. parents: ["illusion"]
  1892. },
  1893. "illusion": {
  1894. name: "Illusion",
  1895. parents: []
  1896. },
  1897. "purrloin": {
  1898. name: "Purrloin",
  1899. parents: ["cat", "pokemon"]
  1900. },
  1901. "noivern": {
  1902. name: "Noivern",
  1903. parents: ["bat", "dragon", "pokemon"]
  1904. },
  1905. "hedgehog": {
  1906. name: "Hedgehog",
  1907. parents: ["mammal"]
  1908. },
  1909. "liger": {
  1910. name: "Liger",
  1911. parents: ["lion", "tiger", "hybrid"]
  1912. },
  1913. "hybrid": {
  1914. name: "Hybrid",
  1915. parents: []
  1916. },
  1917. "drider": {
  1918. name: "Drider",
  1919. parents: ["spider"]
  1920. },
  1921. "sabresune": {
  1922. name: "Sabresune",
  1923. parents: ["kitsune", "sabertooth-tiger"]
  1924. },
  1925. "ditto": {
  1926. name: "Ditto",
  1927. parents: ["pokemon", "goo"]
  1928. },
  1929. "amogus": {
  1930. name: "Amogus",
  1931. parents: ["deity"]
  1932. },
  1933. "ferret": {
  1934. name: "Ferret",
  1935. parents: ["mustelid"]
  1936. },
  1937. "guinea-pig": {
  1938. name: "Guinea Pig",
  1939. parents: ["rodent"]
  1940. },
  1941. "viper": {
  1942. name: "Viper",
  1943. parents: ["snake"]
  1944. },
  1945. "cinderace": {
  1946. name: "Cinderace",
  1947. parents: ["pokemon", "rabbit"]
  1948. },
  1949. "caudin": {
  1950. name: "Caudin",
  1951. parents: ["dragon"]
  1952. },
  1953. "red-winged-blackbird": {
  1954. name: "Red-Winged Blackbird",
  1955. parents: ["avian"]
  1956. },
  1957. "hooded-wheater": {
  1958. name: "Hooded Wheater",
  1959. parents: ["passerine"]
  1960. },
  1961. "passerine": {
  1962. name: "Passerine",
  1963. parents: ["avian"]
  1964. },
  1965. "gieeg": {
  1966. name: "Gieeg",
  1967. parents: ["alien"]
  1968. },
  1969. "ringtail": {
  1970. name: "Ringtail",
  1971. parents: ["raccoon"]
  1972. },
  1973. "hisuian-zoroark": {
  1974. name: "Hisuian Zoroark",
  1975. parents: ["zoroark", "hisuian"]
  1976. },
  1977. "hisuian": {
  1978. name: "Hisuian",
  1979. parents: ["regional-pokemon"]
  1980. },
  1981. "regional-pokemon": {
  1982. name: "Regional Pokemon",
  1983. parents: ["pokemon"]
  1984. },
  1985. "cybeast": {
  1986. name: "Cybeast",
  1987. parents: ["computer-virus"]
  1988. },
  1989. "javira-dragon": {
  1990. name: "Javira Dragon",
  1991. parents: ["dragon"]
  1992. },
  1993. "koopew": {
  1994. name: "Koopew",
  1995. parents: ["dragon", "alien"]
  1996. },
  1997. "nevrean": {
  1998. name: "Nevrean",
  1999. parents: ["avian", "vilous"]
  2000. },
  2001. "vilous": {
  2002. name: "Vilous Species",
  2003. parents: []
  2004. },
  2005. "titanoboa": {
  2006. name: "Titanoboa",
  2007. parents: ["snake"]
  2008. },
  2009. "raichu": {
  2010. name: "Raichu",
  2011. parents: ["pikachu"]
  2012. },
  2013. "taur": {
  2014. name: "Taur",
  2015. parents: []
  2016. },
  2017. "continental-giant-rabbit": {
  2018. name: "Continental Giant Rabbit",
  2019. parents: ["rabbit"]
  2020. },
  2021. "demigryph": {
  2022. name: "Demigryph",
  2023. parents: ["lion", "eagle"]
  2024. },
  2025. "bald-eagle": {
  2026. name: "Bald Eagle",
  2027. parents: ["eagle"]
  2028. },
  2029. "kestrel": {
  2030. name: "Kestrel",
  2031. parents: ["falcon"]
  2032. },
  2033. "mockingbird": {
  2034. name: "Mockingbird",
  2035. parents: ["songbird"]
  2036. },
  2037. "songbird": {
  2038. name: "Songbird",
  2039. parents: ["avian"]
  2040. },
  2041. "bird-of-prey": {
  2042. name: "Bird of Prey",
  2043. parents: ["avian"]
  2044. },
  2045. "marowak": {
  2046. name: "Marowak",
  2047. parents: ["pokemon", "reptile"]
  2048. },
  2049. "joltik": {
  2050. name: "Joltik",
  2051. parents: ["pokemon", "insect"]
  2052. },
  2053. "mink": {
  2054. name: "Mink",
  2055. parents: ["mustelid"]
  2056. },
  2057. "sandcat": {
  2058. name: "Sandcat",
  2059. parents: ["cat"]
  2060. },
  2061. "hrothgar": {
  2062. name: "Hrothgar",
  2063. parents: ["cat"]
  2064. },
  2065. "garchomp": {
  2066. name: "Garchomp",
  2067. parents: ["dragon", "pokemon"]
  2068. },
  2069. "nargacuga": {
  2070. name: "Nargacuga",
  2071. parents: ["monster-hunter"]
  2072. },
  2073. "sable": {
  2074. name: "Sable",
  2075. parents: ["marten"]
  2076. },
  2077. "deino": {
  2078. name: "Deino",
  2079. parents: ["pokemon", "dinosaur"]
  2080. },
  2081. "housecat": {
  2082. name: "Housecat",
  2083. parents: ["cat"]
  2084. },
  2085. "bombay-cat": {
  2086. name: "Bombay Cat",
  2087. parents: ["housecat"]
  2088. },
  2089. "maine-coon": {
  2090. name: "Maine Coon",
  2091. parents: ["housecat"]
  2092. },
  2093. "coelacanth": {
  2094. name: "Coelacanth",
  2095. parents: ["fish"]
  2096. },
  2097. "silvally": {
  2098. name: "Silvally",
  2099. parents: ["legendary-pokemon"]
  2100. },
  2101. "legendary-pokemon": {
  2102. name: "Legendary Pokemon",
  2103. parents: ["pokemon"]
  2104. },
  2105. "great-maccao": {
  2106. name: "Great Maccao",
  2107. parents: ["monster-hunter", "raptor"]
  2108. },
  2109. "shapeshifter": {
  2110. name: "shapeshifter",
  2111. parents: []
  2112. },
  2113. "obstagoon": {
  2114. name: "Obstagoon",
  2115. parents: ["zigzagoon"]
  2116. },
  2117. "thomsons-gazelle": {
  2118. name: "Thomsons Gazelle",
  2119. parents: ["gazelle"]
  2120. },
  2121. "gazelle": {
  2122. name: "Gazelle",
  2123. parents: ["antelope"]
  2124. },
  2125. "monkey": {
  2126. name: "Monkey",
  2127. parents: ["mammal"]
  2128. },
  2129. "serval": {
  2130. name: "Serval",
  2131. parents: ["cat"]
  2132. },
  2133. "swampert": {
  2134. name: "Swampert",
  2135. parents: ["pokemon"]
  2136. },
  2137. "red-fox": {
  2138. name: "Red Fox",
  2139. parents: ["fox"]
  2140. },
  2141. "sliver": {
  2142. name: "Sliver",
  2143. parents: ["alien"]
  2144. },
  2145. "sergix": {
  2146. name: "Sergix",
  2147. parents: ["demon", "sergal", "phoenix"]
  2148. },
  2149. "behemoth": {
  2150. name: "Behemoth",
  2151. parents: ["monster", "dragon", "final-fantasy"]
  2152. },
  2153. "final-fantasy": {
  2154. name: "Final Fantasy",
  2155. parents: ["video-games"]
  2156. },
  2157. "video-games": {
  2158. name: "Video Games",
  2159. parents: []
  2160. },
  2161. "eastern-cottontail-rabbit": {
  2162. name: "Eastern Cottontail Rabbit",
  2163. parents: ["rabbit"]
  2164. },
  2165. }
  2166. //species
  2167. function getSpeciesInfo(speciesList) {
  2168. let result = new Set();
  2169. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2170. result.add(entry)
  2171. });
  2172. return Array.from(result);
  2173. };
  2174. function getSpeciesInfoHelper(species) {
  2175. if (!speciesData[species]) {
  2176. console.warn(species + " doesn't exist");
  2177. return [];
  2178. }
  2179. if (speciesData[species].parents) {
  2180. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2181. } else {
  2182. return [species];
  2183. }
  2184. }
  2185. characterMakers.push(() => makeCharacter(
  2186. {
  2187. name: "Fen",
  2188. species: ["crux"],
  2189. description: {
  2190. title: "Bio",
  2191. text: "Very furry. Sheds on everything."
  2192. },
  2193. tags: [
  2194. "anthro",
  2195. "goo"
  2196. ]
  2197. },
  2198. {
  2199. front: {
  2200. height: math.unit(12, "feet"),
  2201. weight: math.unit(2400, "lb"),
  2202. preyCapacity: math.unit(1, "people"),
  2203. name: "Front",
  2204. image: {
  2205. source: "./media/characters/fen/front.svg",
  2206. extra: 1804/1562,
  2207. bottom: 205/2009
  2208. },
  2209. extraAttributes: {
  2210. pawSize: {
  2211. name: "Paw Size",
  2212. power: 2,
  2213. type: "area",
  2214. base: math.unit(0.35, "m^2")
  2215. }
  2216. }
  2217. },
  2218. diving: {
  2219. height: math.unit(4.9, "meters"),
  2220. weight: math.unit(2400, "lb"),
  2221. name: "Diving",
  2222. image: {
  2223. source: "./media/characters/fen/diving.svg"
  2224. }
  2225. },
  2226. sleeby: {
  2227. height: math.unit(3.45, "meters"),
  2228. weight: math.unit(2400, "lb"),
  2229. name: "Sleeby",
  2230. image: {
  2231. source: "./media/characters/fen/sleeby.svg"
  2232. }
  2233. },
  2234. goo: {
  2235. height: math.unit(12, "feet"),
  2236. weight: math.unit(3600, "lb"),
  2237. volume: math.unit(1000, "liters"),
  2238. preyCapacity: math.unit(6, "people"),
  2239. name: "Goo",
  2240. image: {
  2241. source: "./media/characters/fen/goo.svg",
  2242. extra: 1307/1071,
  2243. bottom: 134/1441
  2244. }
  2245. },
  2246. gooNsfw: {
  2247. height: math.unit(12, "feet"),
  2248. weight: math.unit(3750, "lb"),
  2249. volume: math.unit(1000, "liters"),
  2250. preyCapacity: math.unit(6, "people"),
  2251. name: "Goo (NSFW)",
  2252. image: {
  2253. source: "./media/characters/fen/goo-nsfw.svg",
  2254. extra: 1875/1734,
  2255. bottom: 122/1997
  2256. }
  2257. },
  2258. maw: {
  2259. height: math.unit(5.03, "feet"),
  2260. name: "Maw",
  2261. image: {
  2262. source: "./media/characters/fen/maw.svg"
  2263. }
  2264. },
  2265. gooCeiling: {
  2266. height: math.unit(6.6, "feet"),
  2267. weight: math.unit(3000, "lb"),
  2268. volume: math.unit(1000, "liters"),
  2269. preyCapacity: math.unit(6, "people"),
  2270. name: "Goo (Ceiling)",
  2271. image: {
  2272. source: "./media/characters/fen/goo-ceiling.svg"
  2273. }
  2274. },
  2275. paw: {
  2276. height: math.unit(3.77, "feet"),
  2277. name: "Paw",
  2278. image: {
  2279. source: "./media/characters/fen/paw.svg"
  2280. },
  2281. extraAttributes: {
  2282. "toeSize": {
  2283. name: "Toe Size",
  2284. power: 2,
  2285. type: "area",
  2286. base: math.unit(0.02875, "m^2")
  2287. },
  2288. "pawSize": {
  2289. name: "Paw Size",
  2290. power: 2,
  2291. type: "area",
  2292. base: math.unit(0.378, "m^2")
  2293. },
  2294. }
  2295. },
  2296. tail: {
  2297. height: math.unit(12.1, "feet"),
  2298. name: "Tail",
  2299. image: {
  2300. source: "./media/characters/fen/tail.svg"
  2301. }
  2302. },
  2303. tailFull: {
  2304. height: math.unit(12.1, "feet"),
  2305. name: "Full Tail",
  2306. image: {
  2307. source: "./media/characters/fen/tail-full.svg"
  2308. }
  2309. },
  2310. back: {
  2311. height: math.unit(12, "feet"),
  2312. weight: math.unit(2400, "lb"),
  2313. name: "Back",
  2314. image: {
  2315. source: "./media/characters/fen/back.svg",
  2316. },
  2317. info: {
  2318. description: {
  2319. mode: "append",
  2320. text: "\n\nHe is not currently looking at you."
  2321. }
  2322. }
  2323. },
  2324. full: {
  2325. height: math.unit(1.85, "meter"),
  2326. weight: math.unit(3200, "lb"),
  2327. name: "Full",
  2328. image: {
  2329. source: "./media/characters/fen/full.svg",
  2330. extra: 1133/859,
  2331. bottom: 145/1278
  2332. },
  2333. info: {
  2334. description: {
  2335. mode: "append",
  2336. text: "\n\nMunch."
  2337. }
  2338. }
  2339. },
  2340. gooLounging: {
  2341. height: math.unit(4.53, "feet"),
  2342. weight: math.unit(3000, "lb"),
  2343. preyCapacity: math.unit(6, "people"),
  2344. name: "Goo (Lounging)",
  2345. image: {
  2346. source: "./media/characters/fen/goo-lounging.svg",
  2347. bottom: 116 / 613
  2348. }
  2349. },
  2350. lounging: {
  2351. height: math.unit(10.52, "feet"),
  2352. weight: math.unit(2400, "lb"),
  2353. name: "Lounging",
  2354. image: {
  2355. source: "./media/characters/fen/lounging.svg"
  2356. }
  2357. },
  2358. },
  2359. [
  2360. {
  2361. name: "Small",
  2362. height: math.unit(2.2428, "meter")
  2363. },
  2364. {
  2365. name: "Normal",
  2366. height: math.unit(12, "feet"),
  2367. default: true,
  2368. },
  2369. {
  2370. name: "Big",
  2371. height: math.unit(20, "feet")
  2372. },
  2373. {
  2374. name: "Minimacro",
  2375. height: math.unit(40, "feet"),
  2376. info: {
  2377. description: {
  2378. mode: "append",
  2379. text: "\n\nTOO DAMN BIG"
  2380. }
  2381. }
  2382. },
  2383. {
  2384. name: "Macro",
  2385. height: math.unit(100, "feet"),
  2386. info: {
  2387. description: {
  2388. mode: "append",
  2389. text: "\n\nTOO DAMN BIG"
  2390. }
  2391. }
  2392. },
  2393. {
  2394. name: "Megamacro",
  2395. height: math.unit(2, "miles")
  2396. },
  2397. {
  2398. name: "Gigamacro",
  2399. height: math.unit(10, "earths")
  2400. },
  2401. ]
  2402. ))
  2403. characterMakers.push(() => makeCharacter(
  2404. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2405. {
  2406. front: {
  2407. height: math.unit(183, "cm"),
  2408. weight: math.unit(80, "kg"),
  2409. name: "Front",
  2410. image: {
  2411. source: "./media/characters/sofia-fluttertail/front.svg",
  2412. bottom: 0.01,
  2413. extra: 2154 / 2081
  2414. }
  2415. },
  2416. frontAlt: {
  2417. height: math.unit(183, "cm"),
  2418. weight: math.unit(80, "kg"),
  2419. name: "Front (alt)",
  2420. image: {
  2421. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2422. }
  2423. },
  2424. back: {
  2425. height: math.unit(183, "cm"),
  2426. weight: math.unit(80, "kg"),
  2427. name: "Back",
  2428. image: {
  2429. source: "./media/characters/sofia-fluttertail/back.svg"
  2430. }
  2431. },
  2432. kneeling: {
  2433. height: math.unit(125, "cm"),
  2434. weight: math.unit(80, "kg"),
  2435. name: "Kneeling",
  2436. image: {
  2437. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2438. extra: 1033 / 977,
  2439. bottom: 23.7 / 1057
  2440. }
  2441. },
  2442. maw: {
  2443. height: math.unit(183 / 5, "cm"),
  2444. name: "Maw",
  2445. image: {
  2446. source: "./media/characters/sofia-fluttertail/maw.svg"
  2447. }
  2448. },
  2449. mawcloseup: {
  2450. height: math.unit(183 / 5 * 0.41, "cm"),
  2451. name: "Maw (Closeup)",
  2452. image: {
  2453. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2454. }
  2455. },
  2456. paws: {
  2457. height: math.unit(1.17, "feet"),
  2458. name: "Paws",
  2459. image: {
  2460. source: "./media/characters/sofia-fluttertail/paws.svg",
  2461. extra: 851 / 851,
  2462. bottom: 17 / 868
  2463. }
  2464. },
  2465. },
  2466. [
  2467. {
  2468. name: "Normal",
  2469. height: math.unit(1.83, "meter")
  2470. },
  2471. {
  2472. name: "Size Thief",
  2473. height: math.unit(18, "feet")
  2474. },
  2475. {
  2476. name: "50 Foot Collie",
  2477. height: math.unit(50, "feet")
  2478. },
  2479. {
  2480. name: "Macro",
  2481. height: math.unit(96, "feet"),
  2482. default: true
  2483. },
  2484. {
  2485. name: "Megamerger",
  2486. height: math.unit(650, "feet")
  2487. },
  2488. ]
  2489. ))
  2490. characterMakers.push(() => makeCharacter(
  2491. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2492. {
  2493. front: {
  2494. height: math.unit(7, "feet"),
  2495. weight: math.unit(100, "kg"),
  2496. name: "Front",
  2497. image: {
  2498. source: "./media/characters/march/front.svg",
  2499. extra: 1992/1851,
  2500. bottom: 39/2031
  2501. }
  2502. },
  2503. foot: {
  2504. height: math.unit(0.9, "feet"),
  2505. name: "Foot",
  2506. image: {
  2507. source: "./media/characters/march/foot.svg"
  2508. }
  2509. },
  2510. },
  2511. [
  2512. {
  2513. name: "Normal",
  2514. height: math.unit(7.9, "feet")
  2515. },
  2516. {
  2517. name: "Macro",
  2518. height: math.unit(220, "meters")
  2519. },
  2520. {
  2521. name: "Megamacro",
  2522. height: math.unit(2.98, "km"),
  2523. default: true
  2524. },
  2525. {
  2526. name: "Gigamacro",
  2527. height: math.unit(15963, "km")
  2528. },
  2529. {
  2530. name: "Teramacro",
  2531. height: math.unit(2980000000, "km")
  2532. },
  2533. {
  2534. name: "Examacro",
  2535. height: math.unit(250, "parsecs")
  2536. },
  2537. ]
  2538. ))
  2539. characterMakers.push(() => makeCharacter(
  2540. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2541. {
  2542. front: {
  2543. height: math.unit(6, "feet"),
  2544. weight: math.unit(60, "kg"),
  2545. name: "Front",
  2546. image: {
  2547. source: "./media/characters/noir/front.svg",
  2548. extra: 1,
  2549. bottom: 0.032
  2550. }
  2551. },
  2552. },
  2553. [
  2554. {
  2555. name: "Normal",
  2556. height: math.unit(6.6, "feet")
  2557. },
  2558. {
  2559. name: "Macro",
  2560. height: math.unit(500, "feet")
  2561. },
  2562. {
  2563. name: "Megamacro",
  2564. height: math.unit(2.5, "km"),
  2565. default: true
  2566. },
  2567. {
  2568. name: "Gigamacro",
  2569. height: math.unit(22500, "km")
  2570. },
  2571. {
  2572. name: "Teramacro",
  2573. height: math.unit(2500000000, "km")
  2574. },
  2575. {
  2576. name: "Examacro",
  2577. height: math.unit(200, "parsecs")
  2578. },
  2579. ]
  2580. ))
  2581. characterMakers.push(() => makeCharacter(
  2582. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2583. {
  2584. front: {
  2585. height: math.unit(7, "feet"),
  2586. weight: math.unit(100, "kg"),
  2587. name: "Front",
  2588. image: {
  2589. source: "./media/characters/okuri/front.svg",
  2590. extra: 739/665,
  2591. bottom: 39/778
  2592. }
  2593. },
  2594. back: {
  2595. height: math.unit(7, "feet"),
  2596. weight: math.unit(100, "kg"),
  2597. name: "Back",
  2598. image: {
  2599. source: "./media/characters/okuri/back.svg",
  2600. extra: 734/653,
  2601. bottom: 13/747
  2602. }
  2603. },
  2604. sitting: {
  2605. height: math.unit(2.95, "feet"),
  2606. weight: math.unit(100, "kg"),
  2607. name: "Sitting",
  2608. image: {
  2609. source: "./media/characters/okuri/sitting.svg",
  2610. extra: 370/318,
  2611. bottom: 99/469
  2612. }
  2613. },
  2614. },
  2615. [
  2616. {
  2617. name: "Smallest",
  2618. height: math.unit(5 + 2/12, "feet")
  2619. },
  2620. {
  2621. name: "Smaller",
  2622. height: math.unit(300, "feet")
  2623. },
  2624. {
  2625. name: "Small",
  2626. height: math.unit(1000, "feet")
  2627. },
  2628. {
  2629. name: "Macro",
  2630. height: math.unit(1, "mile")
  2631. },
  2632. {
  2633. name: "Mega Macro (Small)",
  2634. height: math.unit(20, "km")
  2635. },
  2636. {
  2637. name: "Mega Macro (Large)",
  2638. height: math.unit(600, "km")
  2639. },
  2640. {
  2641. name: "Giga Macro",
  2642. height: math.unit(10000, "km")
  2643. },
  2644. {
  2645. name: "Normal",
  2646. height: math.unit(577560, "km"),
  2647. default: true
  2648. },
  2649. {
  2650. name: "Large",
  2651. height: math.unit(4, "galaxies")
  2652. },
  2653. {
  2654. name: "Largest",
  2655. height: math.unit(15, "multiverses")
  2656. },
  2657. ]
  2658. ))
  2659. characterMakers.push(() => makeCharacter(
  2660. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2661. {
  2662. front: {
  2663. height: math.unit(7, "feet"),
  2664. weight: math.unit(100, "kg"),
  2665. name: "Front",
  2666. image: {
  2667. source: "./media/characters/manny/front.svg",
  2668. extra: 1,
  2669. bottom: 0.06
  2670. }
  2671. },
  2672. back: {
  2673. height: math.unit(7, "feet"),
  2674. weight: math.unit(100, "kg"),
  2675. name: "Back",
  2676. image: {
  2677. source: "./media/characters/manny/back.svg",
  2678. extra: 1,
  2679. bottom: 0.014
  2680. }
  2681. },
  2682. },
  2683. [
  2684. {
  2685. name: "Normal",
  2686. height: math.unit(7, "feet"),
  2687. },
  2688. {
  2689. name: "Macro",
  2690. height: math.unit(78, "feet"),
  2691. default: true
  2692. },
  2693. {
  2694. name: "Macro+",
  2695. height: math.unit(300, "meters")
  2696. },
  2697. {
  2698. name: "Macro++",
  2699. height: math.unit(2400, "meters")
  2700. },
  2701. {
  2702. name: "Megamacro",
  2703. height: math.unit(5167, "meters")
  2704. },
  2705. {
  2706. name: "Gigamacro",
  2707. height: math.unit(41769, "miles")
  2708. },
  2709. ]
  2710. ))
  2711. characterMakers.push(() => makeCharacter(
  2712. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2713. {
  2714. front: {
  2715. height: math.unit(7, "feet"),
  2716. weight: math.unit(100, "kg"),
  2717. name: "Front",
  2718. image: {
  2719. source: "./media/characters/adake/front-1.svg"
  2720. }
  2721. },
  2722. frontAlt: {
  2723. height: math.unit(7, "feet"),
  2724. weight: math.unit(100, "kg"),
  2725. name: "Front (Alt)",
  2726. image: {
  2727. source: "./media/characters/adake/front-2.svg",
  2728. extra: 1,
  2729. bottom: 0.01
  2730. }
  2731. },
  2732. back: {
  2733. height: math.unit(7, "feet"),
  2734. weight: math.unit(100, "kg"),
  2735. name: "Back",
  2736. image: {
  2737. source: "./media/characters/adake/back.svg",
  2738. }
  2739. },
  2740. kneel: {
  2741. height: math.unit(5.385, "feet"),
  2742. weight: math.unit(100, "kg"),
  2743. name: "Kneeling",
  2744. image: {
  2745. source: "./media/characters/adake/kneel.svg",
  2746. bottom: 0.052
  2747. }
  2748. },
  2749. },
  2750. [
  2751. {
  2752. name: "Normal",
  2753. height: math.unit(7, "feet"),
  2754. },
  2755. {
  2756. name: "Macro",
  2757. height: math.unit(78, "feet"),
  2758. default: true
  2759. },
  2760. {
  2761. name: "Macro+",
  2762. height: math.unit(300, "meters")
  2763. },
  2764. {
  2765. name: "Macro++",
  2766. height: math.unit(2400, "meters")
  2767. },
  2768. {
  2769. name: "Megamacro",
  2770. height: math.unit(5167, "meters")
  2771. },
  2772. {
  2773. name: "Gigamacro",
  2774. height: math.unit(41769, "miles")
  2775. },
  2776. ]
  2777. ))
  2778. characterMakers.push(() => makeCharacter(
  2779. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2780. {
  2781. front: {
  2782. height: math.unit(1.65, "meters"),
  2783. weight: math.unit(50, "kg"),
  2784. name: "Front",
  2785. image: {
  2786. source: "./media/characters/elijah/front.svg",
  2787. extra: 858 / 830,
  2788. bottom: 95.5 / 953.8559
  2789. }
  2790. },
  2791. back: {
  2792. height: math.unit(1.65, "meters"),
  2793. weight: math.unit(50, "kg"),
  2794. name: "Back",
  2795. image: {
  2796. source: "./media/characters/elijah/back.svg",
  2797. extra: 895 / 850,
  2798. bottom: 5.3 / 897.956
  2799. }
  2800. },
  2801. frontNsfw: {
  2802. height: math.unit(1.65, "meters"),
  2803. weight: math.unit(50, "kg"),
  2804. name: "Front (NSFW)",
  2805. image: {
  2806. source: "./media/characters/elijah/front-nsfw.svg",
  2807. extra: 858 / 830,
  2808. bottom: 95.5 / 953.8559
  2809. }
  2810. },
  2811. backNsfw: {
  2812. height: math.unit(1.65, "meters"),
  2813. weight: math.unit(50, "kg"),
  2814. name: "Back (NSFW)",
  2815. image: {
  2816. source: "./media/characters/elijah/back-nsfw.svg",
  2817. extra: 895 / 850,
  2818. bottom: 5.3 / 897.956
  2819. }
  2820. },
  2821. dick: {
  2822. height: math.unit(1, "feet"),
  2823. name: "Dick",
  2824. image: {
  2825. source: "./media/characters/elijah/dick.svg"
  2826. }
  2827. },
  2828. beakOpen: {
  2829. height: math.unit(1.25, "feet"),
  2830. name: "Beak (Open)",
  2831. image: {
  2832. source: "./media/characters/elijah/beak-open.svg"
  2833. }
  2834. },
  2835. beakShut: {
  2836. height: math.unit(1.25, "feet"),
  2837. name: "Beak (Shut)",
  2838. image: {
  2839. source: "./media/characters/elijah/beak-shut.svg"
  2840. }
  2841. },
  2842. footFlexing: {
  2843. height: math.unit(1.61, "feet"),
  2844. name: "Foot (Flexing)",
  2845. image: {
  2846. source: "./media/characters/elijah/foot-flexing.svg"
  2847. }
  2848. },
  2849. footStepping: {
  2850. height: math.unit(1.44, "feet"),
  2851. name: "Foot (Stepping)",
  2852. image: {
  2853. source: "./media/characters/elijah/foot-stepping.svg"
  2854. }
  2855. },
  2856. plantigradeLeg: {
  2857. height: math.unit(2.34, "feet"),
  2858. name: "Plantigrade Leg",
  2859. image: {
  2860. source: "./media/characters/elijah/plantigrade-leg.svg"
  2861. }
  2862. },
  2863. plantigradeFootLeft: {
  2864. height: math.unit(0.9, "feet"),
  2865. name: "Plantigrade Foot (Left)",
  2866. image: {
  2867. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2868. }
  2869. },
  2870. plantigradeFootRight: {
  2871. height: math.unit(0.9, "feet"),
  2872. name: "Plantigrade Foot (Right)",
  2873. image: {
  2874. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2875. }
  2876. },
  2877. },
  2878. [
  2879. {
  2880. name: "Normal",
  2881. height: math.unit(1.65, "meters")
  2882. },
  2883. {
  2884. name: "Macro",
  2885. height: math.unit(55, "meters"),
  2886. default: true
  2887. },
  2888. {
  2889. name: "Macro+",
  2890. height: math.unit(105, "meters")
  2891. },
  2892. ]
  2893. ))
  2894. characterMakers.push(() => makeCharacter(
  2895. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2896. {
  2897. front: {
  2898. height: math.unit(7 + 2/12, "feet"),
  2899. weight: math.unit(320, "kg"),
  2900. preyCapacity: math.unit(0.276549935, "people"),
  2901. name: "Front",
  2902. image: {
  2903. source: "./media/characters/rai/front.svg",
  2904. extra: 1802/1696,
  2905. bottom: 68/1870
  2906. },
  2907. form: "anthro",
  2908. default: true
  2909. },
  2910. frontDressed: {
  2911. height: math.unit(7 + 2/12, "feet"),
  2912. weight: math.unit(320, "kg"),
  2913. preyCapacity: math.unit(0.276549935, "people"),
  2914. name: "Front (Dressed)",
  2915. image: {
  2916. source: "./media/characters/rai/front-dressed.svg",
  2917. extra: 1802/1696,
  2918. bottom: 68/1870
  2919. },
  2920. form: "anthro"
  2921. },
  2922. side: {
  2923. height: math.unit(7 + 2/12, "feet"),
  2924. weight: math.unit(320, "kg"),
  2925. preyCapacity: math.unit(0.276549935, "people"),
  2926. name: "Side",
  2927. image: {
  2928. source: "./media/characters/rai/side.svg",
  2929. extra: 1789/1710,
  2930. bottom: 115/1904
  2931. },
  2932. form: "anthro"
  2933. },
  2934. back: {
  2935. height: math.unit(7 + 2/12, "feet"),
  2936. weight: math.unit(320, "kg"),
  2937. preyCapacity: math.unit(0.276549935, "people"),
  2938. name: "Back",
  2939. image: {
  2940. source: "./media/characters/rai/back.svg",
  2941. extra: 1770/1707,
  2942. bottom: 28/1798
  2943. },
  2944. form: "anthro"
  2945. },
  2946. feral: {
  2947. height: math.unit(9.5, "feet"),
  2948. weight: math.unit(640, "kg"),
  2949. preyCapacity: math.unit(4, "people"),
  2950. name: "Feral",
  2951. image: {
  2952. source: "./media/characters/rai/feral.svg",
  2953. extra: 945/553,
  2954. bottom: 176/1121
  2955. },
  2956. form: "feral",
  2957. default: true
  2958. },
  2959. dragon: {
  2960. height: math.unit(23, "feet"),
  2961. weight: math.unit(50000, "lb"),
  2962. name: "Dragon",
  2963. image: {
  2964. source: "./media/characters/rai/dragon.svg",
  2965. extra: 2498 / 2030,
  2966. bottom: 85.2 / 2584
  2967. },
  2968. form: "dragon",
  2969. default: true
  2970. },
  2971. maw: {
  2972. height: math.unit(1.69, "feet"),
  2973. name: "Maw",
  2974. image: {
  2975. source: "./media/characters/rai/maw.svg"
  2976. },
  2977. form: "anthro"
  2978. },
  2979. },
  2980. [
  2981. {
  2982. name: "Normal",
  2983. height: math.unit(7 + 2/12, "feet"),
  2984. form: "anthro"
  2985. },
  2986. {
  2987. name: "Big",
  2988. height: math.unit(11, "feet"),
  2989. form: "anthro"
  2990. },
  2991. {
  2992. name: "Minimacro",
  2993. height: math.unit(77, "feet"),
  2994. form: "anthro"
  2995. },
  2996. {
  2997. name: "Macro",
  2998. height: math.unit(302, "feet"),
  2999. default: true,
  3000. form: "anthro"
  3001. },
  3002. {
  3003. name: "Normal",
  3004. height: math.unit(9.5, "feet"),
  3005. form: "feral",
  3006. default: true
  3007. },
  3008. {
  3009. name: "Normal",
  3010. height: math.unit(23, "feet"),
  3011. form: "dragon",
  3012. default: true
  3013. }
  3014. ],
  3015. {
  3016. "anthro": {
  3017. name: "Anthro",
  3018. default: true
  3019. },
  3020. "feral": {
  3021. name: "Feral",
  3022. },
  3023. "dragon": {
  3024. name: "Dragon",
  3025. },
  3026. }
  3027. ))
  3028. characterMakers.push(() => makeCharacter(
  3029. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  3030. {
  3031. frontDressed: {
  3032. height: math.unit(216, "feet"),
  3033. weight: math.unit(7000000, "lb"),
  3034. preyCapacity: math.unit(1321, "people"),
  3035. name: "Front (Dressed)",
  3036. image: {
  3037. source: "./media/characters/jazzy/front-dressed.svg",
  3038. extra: 2738 / 2651,
  3039. bottom: 41.8 / 2786
  3040. }
  3041. },
  3042. backDressed: {
  3043. height: math.unit(216, "feet"),
  3044. weight: math.unit(7000000, "lb"),
  3045. preyCapacity: math.unit(1321, "people"),
  3046. name: "Back (Dressed)",
  3047. image: {
  3048. source: "./media/characters/jazzy/back-dressed.svg",
  3049. extra: 2775 / 2673,
  3050. bottom: 36.8 / 2817
  3051. }
  3052. },
  3053. front: {
  3054. height: math.unit(216, "feet"),
  3055. weight: math.unit(7000000, "lb"),
  3056. preyCapacity: math.unit(1321, "people"),
  3057. name: "Front",
  3058. image: {
  3059. source: "./media/characters/jazzy/front.svg",
  3060. extra: 2738 / 2651,
  3061. bottom: 41.8 / 2786
  3062. }
  3063. },
  3064. back: {
  3065. height: math.unit(216, "feet"),
  3066. weight: math.unit(7000000, "lb"),
  3067. preyCapacity: math.unit(1321, "people"),
  3068. name: "Back",
  3069. image: {
  3070. source: "./media/characters/jazzy/back.svg",
  3071. extra: 2775 / 2673,
  3072. bottom: 36.8 / 2817
  3073. }
  3074. },
  3075. maw: {
  3076. height: math.unit(20, "feet"),
  3077. name: "Maw",
  3078. image: {
  3079. source: "./media/characters/jazzy/maw.svg"
  3080. }
  3081. },
  3082. paws: {
  3083. height: math.unit(27.5, "feet"),
  3084. name: "Paws",
  3085. image: {
  3086. source: "./media/characters/jazzy/paws.svg"
  3087. }
  3088. },
  3089. eye: {
  3090. height: math.unit(4.4, "feet"),
  3091. name: "Eye",
  3092. image: {
  3093. source: "./media/characters/jazzy/eye.svg"
  3094. }
  3095. },
  3096. droneOffense: {
  3097. height: math.unit(9.5, "inches"),
  3098. name: "Drone (Offense)",
  3099. image: {
  3100. source: "./media/characters/jazzy/drone-offense.svg"
  3101. }
  3102. },
  3103. droneRecon: {
  3104. height: math.unit(9.5, "inches"),
  3105. name: "Drone (Recon)",
  3106. image: {
  3107. source: "./media/characters/jazzy/drone-recon.svg"
  3108. }
  3109. },
  3110. droneDefense: {
  3111. height: math.unit(9.5, "inches"),
  3112. name: "Drone (Defense)",
  3113. image: {
  3114. source: "./media/characters/jazzy/drone-defense.svg"
  3115. }
  3116. },
  3117. },
  3118. [
  3119. {
  3120. name: "Macro",
  3121. height: math.unit(216, "feet"),
  3122. default: true
  3123. },
  3124. ]
  3125. ))
  3126. characterMakers.push(() => makeCharacter(
  3127. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3128. {
  3129. front: {
  3130. height: math.unit(9 + 6/12, "feet"),
  3131. weight: math.unit(700, "lb"),
  3132. name: "Front",
  3133. image: {
  3134. source: "./media/characters/flamm/front.svg",
  3135. extra: 1736/1596,
  3136. bottom: 93/1829
  3137. }
  3138. },
  3139. buff: {
  3140. height: math.unit(9 + 6/12, "feet"),
  3141. weight: math.unit(950, "lb"),
  3142. name: "Buff",
  3143. image: {
  3144. source: "./media/characters/flamm/buff.svg",
  3145. extra: 3018/2874,
  3146. bottom: 221/3239
  3147. }
  3148. },
  3149. },
  3150. [
  3151. {
  3152. name: "Normal",
  3153. height: math.unit(9.5, "feet")
  3154. },
  3155. {
  3156. name: "Macro",
  3157. height: math.unit(200, "feet"),
  3158. default: true
  3159. },
  3160. ]
  3161. ))
  3162. characterMakers.push(() => makeCharacter(
  3163. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3164. {
  3165. front: {
  3166. height: math.unit(5 + 3/12, "feet"),
  3167. weight: math.unit(60, "kg"),
  3168. name: "Front",
  3169. image: {
  3170. source: "./media/characters/zephiro/front.svg",
  3171. extra: 1873/1761,
  3172. bottom: 147/2020
  3173. }
  3174. },
  3175. side: {
  3176. height: math.unit(5 + 3/12, "feet"),
  3177. weight: math.unit(60, "kg"),
  3178. name: "Side",
  3179. image: {
  3180. source: "./media/characters/zephiro/side.svg",
  3181. extra: 1929/1827,
  3182. bottom: 65/1994
  3183. }
  3184. },
  3185. back: {
  3186. height: math.unit(5 + 3/12, "feet"),
  3187. weight: math.unit(60, "kg"),
  3188. name: "Back",
  3189. image: {
  3190. source: "./media/characters/zephiro/back.svg",
  3191. extra: 1926/1816,
  3192. bottom: 41/1967
  3193. }
  3194. },
  3195. hand: {
  3196. height: math.unit(0.68, "feet"),
  3197. name: "Hand",
  3198. image: {
  3199. source: "./media/characters/zephiro/hand.svg"
  3200. }
  3201. },
  3202. paw: {
  3203. height: math.unit(1, "feet"),
  3204. name: "Paw",
  3205. image: {
  3206. source: "./media/characters/zephiro/paw.svg"
  3207. }
  3208. },
  3209. beans: {
  3210. height: math.unit(0.93, "feet"),
  3211. name: "Beans",
  3212. image: {
  3213. source: "./media/characters/zephiro/beans.svg"
  3214. }
  3215. },
  3216. },
  3217. [
  3218. {
  3219. name: "Micro",
  3220. height: math.unit(3, "inches")
  3221. },
  3222. {
  3223. name: "Normal",
  3224. height: math.unit(5 + 3 / 12, "feet"),
  3225. default: true
  3226. },
  3227. {
  3228. name: "Macro",
  3229. height: math.unit(118, "feet")
  3230. },
  3231. ]
  3232. ))
  3233. characterMakers.push(() => makeCharacter(
  3234. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3235. {
  3236. front: {
  3237. height: math.unit(5, "feet"),
  3238. weight: math.unit(90, "kg"),
  3239. preyCapacity: math.unit(14, "people"),
  3240. name: "Front",
  3241. image: {
  3242. source: "./media/characters/fory/front.svg",
  3243. extra: 2862 / 2674,
  3244. bottom: 180 / 3043.8
  3245. },
  3246. form: "weaselbun",
  3247. default: true,
  3248. extraAttributes: {
  3249. "pawSize": {
  3250. name: "Paw Size",
  3251. power: 2,
  3252. type: "area",
  3253. base: math.unit(0.1596, "m^2")
  3254. },
  3255. "pawLength": {
  3256. name: "Paw Length",
  3257. power: 1,
  3258. type: "length",
  3259. base: math.unit(0.7, "m")
  3260. }
  3261. }
  3262. },
  3263. back: {
  3264. height: math.unit(5, "feet"),
  3265. weight: math.unit(90, "kg"),
  3266. preyCapacity: math.unit(14, "people"),
  3267. name: "Back",
  3268. image: {
  3269. source: "./media/characters/fory/back.svg",
  3270. extra: 1790/1672,
  3271. bottom: 84/1874
  3272. },
  3273. form: "weaselbun",
  3274. extraAttributes: {
  3275. "pawSize": {
  3276. name: "Paw Size",
  3277. power: 2,
  3278. type: "area",
  3279. base: math.unit(0.1596, "m^2")
  3280. },
  3281. "pawLength": {
  3282. name: "Paw Length",
  3283. power: 1,
  3284. type: "length",
  3285. base: math.unit(0.7, "m")
  3286. }
  3287. }
  3288. },
  3289. paw: {
  3290. height: math.unit(2.14, "feet"),
  3291. name: "Paw",
  3292. image: {
  3293. source: "./media/characters/fory/paw.svg"
  3294. },
  3295. form: "weaselbun",
  3296. extraAttributes: {
  3297. "pawSize": {
  3298. name: "Paw Size",
  3299. power: 2,
  3300. type: "area",
  3301. base: math.unit(0.1596, "m^2")
  3302. },
  3303. "pawLength": {
  3304. name: "Paw Length",
  3305. power: 1,
  3306. type: "length",
  3307. base: math.unit(0.48, "m")
  3308. }
  3309. }
  3310. },
  3311. bunBack: {
  3312. height: math.unit(3, "feet"),
  3313. weight: math.unit(20, "kg"),
  3314. preyCapacity: math.unit(3, "people"),
  3315. name: "Back",
  3316. image: {
  3317. source: "./media/characters/fory/bun-back.svg",
  3318. extra: 1749/1564,
  3319. bottom: 246/1995
  3320. },
  3321. form: "bun",
  3322. default: true,
  3323. extraAttributes: {
  3324. "pawSize": {
  3325. name: "Paw Size",
  3326. power: 2,
  3327. type: "area",
  3328. base: math.unit(0.072, "m^2")
  3329. },
  3330. "pawLength": {
  3331. name: "Paw Length",
  3332. power: 1,
  3333. type: "length",
  3334. base: math.unit(0.45, "m")
  3335. }
  3336. }
  3337. },
  3338. },
  3339. [
  3340. {
  3341. name: "Normal",
  3342. height: math.unit(5, "feet"),
  3343. form: "weaselbun"
  3344. },
  3345. {
  3346. name: "Macro",
  3347. height: math.unit(50, "feet"),
  3348. default: true,
  3349. form: "weaselbun"
  3350. },
  3351. {
  3352. name: "Megamacro",
  3353. height: math.unit(10, "miles"),
  3354. form: "weaselbun"
  3355. },
  3356. {
  3357. name: "Gigamacro",
  3358. height: math.unit(5, "earths"),
  3359. form: "weaselbun"
  3360. },
  3361. {
  3362. name: "Normal",
  3363. height: math.unit(3, "feet"),
  3364. default: true,
  3365. form: "bun"
  3366. },
  3367. {
  3368. name: "Fun-Size",
  3369. height: math.unit(12, "feet"),
  3370. form: "bun"
  3371. },
  3372. {
  3373. name: "Macro",
  3374. height: math.unit(100, "feet"),
  3375. form: "bun"
  3376. },
  3377. {
  3378. name: "Planetary",
  3379. height: math.unit(3, "earths"),
  3380. form: "bun"
  3381. },
  3382. ],
  3383. {
  3384. "weaselbun": {
  3385. name: "Weaselbun",
  3386. default: true
  3387. },
  3388. "bun": {
  3389. name: "Bun",
  3390. },
  3391. }
  3392. ))
  3393. characterMakers.push(() => makeCharacter(
  3394. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3395. {
  3396. front: {
  3397. height: math.unit(7, "feet"),
  3398. weight: math.unit(90, "kg"),
  3399. name: "Front",
  3400. image: {
  3401. source: "./media/characters/kurrikage/front.svg",
  3402. extra: 1845/1733,
  3403. bottom: 119/1964
  3404. }
  3405. },
  3406. back: {
  3407. height: math.unit(7, "feet"),
  3408. weight: math.unit(90, "kg"),
  3409. name: "Back",
  3410. image: {
  3411. source: "./media/characters/kurrikage/back.svg",
  3412. extra: 1790/1677,
  3413. bottom: 61/1851
  3414. }
  3415. },
  3416. dressed: {
  3417. height: math.unit(7, "feet"),
  3418. weight: math.unit(90, "kg"),
  3419. name: "Dressed",
  3420. image: {
  3421. source: "./media/characters/kurrikage/dressed.svg",
  3422. extra: 1845/1733,
  3423. bottom: 119/1964
  3424. }
  3425. },
  3426. foot: {
  3427. height: math.unit(1.5, "feet"),
  3428. name: "Foot",
  3429. image: {
  3430. source: "./media/characters/kurrikage/foot.svg"
  3431. }
  3432. },
  3433. staff: {
  3434. height: math.unit(6.7, "feet"),
  3435. name: "Staff",
  3436. image: {
  3437. source: "./media/characters/kurrikage/staff.svg"
  3438. }
  3439. },
  3440. peek: {
  3441. height: math.unit(1.05, "feet"),
  3442. name: "Peeking",
  3443. image: {
  3444. source: "./media/characters/kurrikage/peek.svg",
  3445. bottom: 0.08
  3446. }
  3447. },
  3448. },
  3449. [
  3450. {
  3451. name: "Normal",
  3452. height: math.unit(12, "feet"),
  3453. default: true
  3454. },
  3455. {
  3456. name: "Big",
  3457. height: math.unit(20, "feet")
  3458. },
  3459. {
  3460. name: "Macro",
  3461. height: math.unit(500, "feet")
  3462. },
  3463. {
  3464. name: "Megamacro",
  3465. height: math.unit(20, "miles")
  3466. },
  3467. ]
  3468. ))
  3469. characterMakers.push(() => makeCharacter(
  3470. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3471. {
  3472. front: {
  3473. height: math.unit(6, "feet"),
  3474. weight: math.unit(75, "kg"),
  3475. name: "Front",
  3476. image: {
  3477. source: "./media/characters/shingo/front.svg",
  3478. extra: 1900/1825,
  3479. bottom: 82/1982
  3480. }
  3481. },
  3482. side: {
  3483. height: math.unit(6, "feet"),
  3484. weight: math.unit(75, "kg"),
  3485. name: "Side",
  3486. image: {
  3487. source: "./media/characters/shingo/side.svg",
  3488. extra: 1930/1865,
  3489. bottom: 16/1946
  3490. }
  3491. },
  3492. back: {
  3493. height: math.unit(6, "feet"),
  3494. weight: math.unit(75, "kg"),
  3495. name: "Back",
  3496. image: {
  3497. source: "./media/characters/shingo/back.svg",
  3498. extra: 1922/1852,
  3499. bottom: 16/1938
  3500. }
  3501. },
  3502. frontDressed: {
  3503. height: math.unit(6, "feet"),
  3504. weight: math.unit(150, "lb"),
  3505. name: "Front-dressed",
  3506. image: {
  3507. source: "./media/characters/shingo/front-dressed.svg",
  3508. extra: 1900/1825,
  3509. bottom: 82/1982
  3510. }
  3511. },
  3512. paw: {
  3513. height: math.unit(1.29, "feet"),
  3514. name: "Paw",
  3515. image: {
  3516. source: "./media/characters/shingo/paw.svg"
  3517. }
  3518. },
  3519. hand: {
  3520. height: math.unit(1.07, "feet"),
  3521. name: "Hand",
  3522. image: {
  3523. source: "./media/characters/shingo/hand.svg"
  3524. }
  3525. },
  3526. frontAlt: {
  3527. height: math.unit(6, "feet"),
  3528. weight: math.unit(75, "kg"),
  3529. name: "Front (Alt)",
  3530. image: {
  3531. source: "./media/characters/shingo/front-alt.svg",
  3532. extra: 3511 / 3338,
  3533. bottom: 0.005
  3534. }
  3535. },
  3536. frontAlt2: {
  3537. height: math.unit(6, "feet"),
  3538. weight: math.unit(75, "kg"),
  3539. name: "Front (Alt 2)",
  3540. image: {
  3541. source: "./media/characters/shingo/front-alt-2.svg",
  3542. extra: 706/681,
  3543. bottom: 11/717
  3544. }
  3545. },
  3546. pawAlt: {
  3547. height: math.unit(1, "feet"),
  3548. name: "Paw (Alt)",
  3549. image: {
  3550. source: "./media/characters/shingo/paw-alt.svg"
  3551. }
  3552. },
  3553. },
  3554. [
  3555. {
  3556. name: "Micro",
  3557. height: math.unit(4, "inches")
  3558. },
  3559. {
  3560. name: "Normal",
  3561. height: math.unit(6, "feet"),
  3562. default: true
  3563. },
  3564. {
  3565. name: "Macro",
  3566. height: math.unit(108, "feet")
  3567. },
  3568. {
  3569. name: "Macro+",
  3570. height: math.unit(1500, "feet")
  3571. },
  3572. ]
  3573. ))
  3574. characterMakers.push(() => makeCharacter(
  3575. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3576. {
  3577. side: {
  3578. height: math.unit(6, "feet"),
  3579. weight: math.unit(75, "kg"),
  3580. name: "Side",
  3581. image: {
  3582. source: "./media/characters/aigey/side.svg"
  3583. }
  3584. },
  3585. },
  3586. [
  3587. {
  3588. name: "Macro",
  3589. height: math.unit(200, "feet"),
  3590. default: true
  3591. },
  3592. {
  3593. name: "Megamacro",
  3594. height: math.unit(100, "miles")
  3595. },
  3596. ]
  3597. )
  3598. )
  3599. characterMakers.push(() => makeCharacter(
  3600. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3601. {
  3602. front: {
  3603. height: math.unit(5 + 5 / 12, "feet"),
  3604. weight: math.unit(75, "kg"),
  3605. name: "Front",
  3606. image: {
  3607. source: "./media/characters/natasha/front.svg",
  3608. extra: 859 / 824,
  3609. bottom: 23 / 879.6
  3610. }
  3611. },
  3612. frontNsfw: {
  3613. height: math.unit(5 + 5 / 12, "feet"),
  3614. weight: math.unit(75, "kg"),
  3615. name: "Front (NSFW)",
  3616. image: {
  3617. source: "./media/characters/natasha/front-nsfw.svg",
  3618. extra: 859 / 824,
  3619. bottom: 23 / 879.6
  3620. }
  3621. },
  3622. frontErect: {
  3623. height: math.unit(5 + 5 / 12, "feet"),
  3624. weight: math.unit(75, "kg"),
  3625. name: "Front (Erect)",
  3626. image: {
  3627. source: "./media/characters/natasha/front-erect.svg",
  3628. extra: 859 / 824,
  3629. bottom: 23 / 879.6
  3630. }
  3631. },
  3632. back: {
  3633. height: math.unit(5 + 5 / 12, "feet"),
  3634. weight: math.unit(75, "kg"),
  3635. name: "Back",
  3636. image: {
  3637. source: "./media/characters/natasha/back.svg",
  3638. extra: 887.9 / 852.6,
  3639. bottom: 9.7 / 896.4
  3640. }
  3641. },
  3642. backAlt: {
  3643. height: math.unit(5 + 5 / 12, "feet"),
  3644. weight: math.unit(75, "kg"),
  3645. name: "Back (Alt)",
  3646. image: {
  3647. source: "./media/characters/natasha/back-alt.svg",
  3648. extra: 1236.7 / 1192,
  3649. bottom: 22.3 / 1258.2
  3650. }
  3651. },
  3652. dick: {
  3653. height: math.unit(1.772, "feet"),
  3654. name: "Dick",
  3655. image: {
  3656. source: "./media/characters/natasha/dick.svg"
  3657. }
  3658. },
  3659. paw: {
  3660. height: math.unit(0.250, "meters"),
  3661. name: "Paw",
  3662. image: {
  3663. source: "./media/characters/natasha/paw.svg"
  3664. },
  3665. extraAttributes: {
  3666. "toeSize": {
  3667. name: "Toe Size",
  3668. power: 2,
  3669. type: "area",
  3670. base: math.unit(0.0024, "m^2")
  3671. },
  3672. "padSize": {
  3673. name: "Pad Size",
  3674. power: 2,
  3675. type: "area",
  3676. base: math.unit(0.00889, "m^2")
  3677. },
  3678. "pawSize": {
  3679. name: "Paw Size",
  3680. power: 2,
  3681. type: "area",
  3682. base: math.unit(0.023667, "m^2")
  3683. },
  3684. }
  3685. },
  3686. },
  3687. [
  3688. {
  3689. name: "Shortstack",
  3690. height: math.unit(3, "feet"),
  3691. default: true
  3692. },
  3693. {
  3694. name: "Normal",
  3695. height: math.unit(5 + 5 / 12, "feet")
  3696. },
  3697. {
  3698. name: "Large",
  3699. height: math.unit(12, "feet")
  3700. },
  3701. {
  3702. name: "Macro",
  3703. height: math.unit(100, "feet")
  3704. },
  3705. {
  3706. name: "Macro+",
  3707. height: math.unit(260, "feet")
  3708. },
  3709. {
  3710. name: "Macro++",
  3711. height: math.unit(1, "mile")
  3712. },
  3713. ]
  3714. ))
  3715. characterMakers.push(() => makeCharacter(
  3716. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3717. {
  3718. front: {
  3719. height: math.unit(6, "feet"),
  3720. weight: math.unit(75, "kg"),
  3721. name: "Front",
  3722. image: {
  3723. source: "./media/characters/malik/front.svg",
  3724. extra: 1750/1561,
  3725. bottom: 80/1830
  3726. },
  3727. extraAttributes: {
  3728. "toeSize": {
  3729. name: "Toe Size",
  3730. power: 2,
  3731. type: "area",
  3732. base: math.unit(0.0159, "m^2")
  3733. },
  3734. "pawSize": {
  3735. name: "Paw Size",
  3736. power: 2,
  3737. type: "area",
  3738. base: math.unit(0.09834, "m^2")
  3739. },
  3740. }
  3741. },
  3742. side: {
  3743. height: math.unit(6, "feet"),
  3744. weight: math.unit(75, "kg"),
  3745. name: "Side",
  3746. image: {
  3747. source: "./media/characters/malik/side.svg",
  3748. extra: 1802/1685,
  3749. bottom: 42/1844
  3750. },
  3751. extraAttributes: {
  3752. "toeSize": {
  3753. name: "Toe Size",
  3754. power: 2,
  3755. type: "area",
  3756. base: math.unit(0.0159, "m^2")
  3757. },
  3758. "pawSize": {
  3759. name: "Paw Size",
  3760. power: 2,
  3761. type: "area",
  3762. base: math.unit(0.09834, "m^2")
  3763. },
  3764. }
  3765. },
  3766. back: {
  3767. height: math.unit(6, "feet"),
  3768. weight: math.unit(75, "kg"),
  3769. name: "Back",
  3770. image: {
  3771. source: "./media/characters/malik/back.svg",
  3772. extra: 1803/1607,
  3773. bottom: 33/1836
  3774. },
  3775. extraAttributes: {
  3776. "toeSize": {
  3777. name: "Toe Size",
  3778. power: 2,
  3779. type: "area",
  3780. base: math.unit(0.0159, "m^2")
  3781. },
  3782. "pawSize": {
  3783. name: "Paw Size",
  3784. power: 2,
  3785. type: "area",
  3786. base: math.unit(0.09834, "m^2")
  3787. },
  3788. }
  3789. },
  3790. },
  3791. [
  3792. {
  3793. name: "Macro",
  3794. height: math.unit(156, "feet"),
  3795. default: true
  3796. },
  3797. {
  3798. name: "Macro+",
  3799. height: math.unit(1188, "feet")
  3800. },
  3801. ]
  3802. ))
  3803. characterMakers.push(() => makeCharacter(
  3804. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3805. {
  3806. front: {
  3807. height: math.unit(6, "feet"),
  3808. weight: math.unit(75, "kg"),
  3809. name: "Front",
  3810. image: {
  3811. source: "./media/characters/sefer/front.svg",
  3812. extra: 848 / 659,
  3813. bottom: 28.3 / 876.442
  3814. }
  3815. },
  3816. back: {
  3817. height: math.unit(6, "feet"),
  3818. weight: math.unit(75, "kg"),
  3819. name: "Back",
  3820. image: {
  3821. source: "./media/characters/sefer/back.svg",
  3822. extra: 864 / 695,
  3823. bottom: 10 / 871
  3824. }
  3825. },
  3826. frontDressed: {
  3827. height: math.unit(6, "feet"),
  3828. weight: math.unit(75, "kg"),
  3829. name: "Dressed",
  3830. image: {
  3831. source: "./media/characters/sefer/dressed.svg",
  3832. extra: 839 / 653,
  3833. bottom: 37.6 / 878
  3834. }
  3835. },
  3836. },
  3837. [
  3838. {
  3839. name: "Normal",
  3840. height: math.unit(6, "feet"),
  3841. default: true
  3842. },
  3843. {
  3844. name: "Big",
  3845. height: math.unit(8, "meters")
  3846. },
  3847. ]
  3848. ))
  3849. characterMakers.push(() => makeCharacter(
  3850. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3851. {
  3852. body: {
  3853. height: math.unit(2.2428, "meter"),
  3854. weight: math.unit(124.738, "kg"),
  3855. name: "Body",
  3856. image: {
  3857. extra: 1225 / 1050,
  3858. source: "./media/characters/north/front.svg"
  3859. }
  3860. }
  3861. },
  3862. [
  3863. {
  3864. name: "Micro",
  3865. height: math.unit(4, "inches")
  3866. },
  3867. {
  3868. name: "Macro",
  3869. height: math.unit(63, "meters")
  3870. },
  3871. {
  3872. name: "Megamacro",
  3873. height: math.unit(101, "miles"),
  3874. default: true
  3875. }
  3876. ]
  3877. ))
  3878. characterMakers.push(() => makeCharacter(
  3879. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3880. {
  3881. angled: {
  3882. height: math.unit(4, "meter"),
  3883. weight: math.unit(150, "kg"),
  3884. name: "Angled",
  3885. image: {
  3886. source: "./media/characters/talan/angled-sfw.svg",
  3887. bottom: 29 / 3734
  3888. }
  3889. },
  3890. angledNsfw: {
  3891. height: math.unit(4, "meter"),
  3892. weight: math.unit(150, "kg"),
  3893. name: "Angled (NSFW)",
  3894. image: {
  3895. source: "./media/characters/talan/angled-nsfw.svg",
  3896. bottom: 29 / 3734
  3897. }
  3898. },
  3899. frontNsfw: {
  3900. height: math.unit(4, "meter"),
  3901. weight: math.unit(150, "kg"),
  3902. name: "Front (NSFW)",
  3903. image: {
  3904. source: "./media/characters/talan/front-nsfw.svg",
  3905. bottom: 29 / 3734
  3906. }
  3907. },
  3908. sideNsfw: {
  3909. height: math.unit(4, "meter"),
  3910. weight: math.unit(150, "kg"),
  3911. name: "Side (NSFW)",
  3912. image: {
  3913. source: "./media/characters/talan/side-nsfw.svg",
  3914. bottom: 29 / 3734
  3915. }
  3916. },
  3917. back: {
  3918. height: math.unit(4, "meter"),
  3919. weight: math.unit(150, "kg"),
  3920. name: "Back",
  3921. image: {
  3922. source: "./media/characters/talan/back.svg"
  3923. }
  3924. },
  3925. dickBottom: {
  3926. height: math.unit(0.621, "meter"),
  3927. name: "Dick (Bottom)",
  3928. image: {
  3929. source: "./media/characters/talan/dick-bottom.svg"
  3930. }
  3931. },
  3932. dickTop: {
  3933. height: math.unit(0.621, "meter"),
  3934. name: "Dick (Top)",
  3935. image: {
  3936. source: "./media/characters/talan/dick-top.svg"
  3937. }
  3938. },
  3939. dickSide: {
  3940. height: math.unit(0.305, "meter"),
  3941. name: "Dick (Side)",
  3942. image: {
  3943. source: "./media/characters/talan/dick-side.svg"
  3944. }
  3945. },
  3946. dickFront: {
  3947. height: math.unit(0.305, "meter"),
  3948. name: "Dick (Front)",
  3949. image: {
  3950. source: "./media/characters/talan/dick-front.svg"
  3951. }
  3952. },
  3953. },
  3954. [
  3955. {
  3956. name: "Normal",
  3957. height: math.unit(4, "meters")
  3958. },
  3959. {
  3960. name: "Macro",
  3961. height: math.unit(100, "meters")
  3962. },
  3963. {
  3964. name: "Megamacro",
  3965. height: math.unit(2, "miles"),
  3966. default: true
  3967. },
  3968. {
  3969. name: "Gigamacro",
  3970. height: math.unit(5000, "miles")
  3971. },
  3972. {
  3973. name: "Teramacro",
  3974. height: math.unit(100, "parsecs")
  3975. }
  3976. ]
  3977. ))
  3978. characterMakers.push(() => makeCharacter(
  3979. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3980. {
  3981. front: {
  3982. height: math.unit(2, "meter"),
  3983. weight: math.unit(90, "kg"),
  3984. name: "Front",
  3985. image: {
  3986. source: "./media/characters/gael'rathus/front.svg"
  3987. }
  3988. },
  3989. frontAlt: {
  3990. height: math.unit(2, "meter"),
  3991. weight: math.unit(90, "kg"),
  3992. name: "Front (alt)",
  3993. image: {
  3994. source: "./media/characters/gael'rathus/front-alt.svg"
  3995. }
  3996. },
  3997. frontAlt2: {
  3998. height: math.unit(2, "meter"),
  3999. weight: math.unit(90, "kg"),
  4000. name: "Front (alt 2)",
  4001. image: {
  4002. source: "./media/characters/gael'rathus/front-alt-2.svg"
  4003. }
  4004. }
  4005. },
  4006. [
  4007. {
  4008. name: "Normal",
  4009. height: math.unit(9, "feet"),
  4010. default: true
  4011. },
  4012. {
  4013. name: "Large",
  4014. height: math.unit(25, "feet")
  4015. },
  4016. {
  4017. name: "Macro",
  4018. height: math.unit(0.25, "miles")
  4019. },
  4020. {
  4021. name: "Megamacro",
  4022. height: math.unit(10, "miles")
  4023. }
  4024. ]
  4025. ))
  4026. characterMakers.push(() => makeCharacter(
  4027. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  4028. {
  4029. side: {
  4030. height: math.unit(2, "meter"),
  4031. weight: math.unit(140, "kg"),
  4032. name: "Side",
  4033. image: {
  4034. source: "./media/characters/sosha/side.svg",
  4035. extra: 1170/1006,
  4036. bottom: 94/1264
  4037. }
  4038. },
  4039. maw: {
  4040. height: math.unit(2.87, "feet"),
  4041. name: "Maw",
  4042. image: {
  4043. source: "./media/characters/sosha/maw.svg",
  4044. extra: 966/865,
  4045. bottom: 0/966
  4046. }
  4047. },
  4048. cooch: {
  4049. height: math.unit(5.6, "feet"),
  4050. name: "Cooch",
  4051. image: {
  4052. source: "./media/characters/sosha/cooch.svg"
  4053. }
  4054. },
  4055. },
  4056. [
  4057. {
  4058. name: "Normal",
  4059. height: math.unit(12, "feet"),
  4060. default: true
  4061. }
  4062. ]
  4063. ))
  4064. characterMakers.push(() => makeCharacter(
  4065. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4066. {
  4067. side: {
  4068. height: math.unit(5 + 5 / 12, "feet"),
  4069. weight: math.unit(170, "kg"),
  4070. name: "Side",
  4071. image: {
  4072. source: "./media/characters/runnola/side.svg",
  4073. extra: 741 / 448,
  4074. bottom: 0.05
  4075. }
  4076. },
  4077. },
  4078. [
  4079. {
  4080. name: "Small",
  4081. height: math.unit(3, "feet")
  4082. },
  4083. {
  4084. name: "Normal",
  4085. height: math.unit(5 + 5 / 12, "feet"),
  4086. default: true
  4087. },
  4088. {
  4089. name: "Big",
  4090. height: math.unit(10, "feet")
  4091. },
  4092. ]
  4093. ))
  4094. characterMakers.push(() => makeCharacter(
  4095. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4096. {
  4097. front: {
  4098. height: math.unit(2, "meter"),
  4099. weight: math.unit(50, "kg"),
  4100. name: "Front",
  4101. image: {
  4102. source: "./media/characters/kurribird/front.svg",
  4103. bottom: 0.015
  4104. }
  4105. },
  4106. frontAlt: {
  4107. height: math.unit(1.5, "meter"),
  4108. weight: math.unit(50, "kg"),
  4109. name: "Front (Alt)",
  4110. image: {
  4111. source: "./media/characters/kurribird/front-alt.svg",
  4112. extra: 1.45
  4113. }
  4114. },
  4115. },
  4116. [
  4117. {
  4118. name: "Normal",
  4119. height: math.unit(7, "feet")
  4120. },
  4121. {
  4122. name: "Big",
  4123. height: math.unit(12, "feet"),
  4124. default: true
  4125. },
  4126. {
  4127. name: "Macro",
  4128. height: math.unit(1500, "feet")
  4129. },
  4130. {
  4131. name: "Megamacro",
  4132. height: math.unit(2, "miles")
  4133. }
  4134. ]
  4135. ))
  4136. characterMakers.push(() => makeCharacter(
  4137. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4138. {
  4139. front: {
  4140. height: math.unit(2, "meter"),
  4141. weight: math.unit(80, "kg"),
  4142. name: "Front",
  4143. image: {
  4144. source: "./media/characters/elbial/front.svg",
  4145. extra: 1643 / 1556,
  4146. bottom: 60.2 / 1696
  4147. }
  4148. },
  4149. side: {
  4150. height: math.unit(2, "meter"),
  4151. weight: math.unit(80, "kg"),
  4152. name: "Side",
  4153. image: {
  4154. source: "./media/characters/elbial/side.svg",
  4155. extra: 1601/1528,
  4156. bottom: 97/1698
  4157. }
  4158. },
  4159. back: {
  4160. height: math.unit(2, "meter"),
  4161. weight: math.unit(80, "kg"),
  4162. name: "Back",
  4163. image: {
  4164. source: "./media/characters/elbial/back.svg",
  4165. extra: 1653/1569,
  4166. bottom: 20/1673
  4167. }
  4168. },
  4169. frontDressed: {
  4170. height: math.unit(2, "meter"),
  4171. weight: math.unit(80, "kg"),
  4172. name: "Front (Dressed)",
  4173. image: {
  4174. source: "./media/characters/elbial/front-dressed.svg",
  4175. extra: 1638/1569,
  4176. bottom: 70/1708
  4177. }
  4178. },
  4179. genitals: {
  4180. height: math.unit(2 / 3.367, "meter"),
  4181. name: "Genitals",
  4182. image: {
  4183. source: "./media/characters/elbial/genitals.svg"
  4184. }
  4185. },
  4186. },
  4187. [
  4188. {
  4189. name: "Large",
  4190. height: math.unit(100, "feet")
  4191. },
  4192. {
  4193. name: "Macro",
  4194. height: math.unit(500, "feet"),
  4195. default: true
  4196. },
  4197. {
  4198. name: "Megamacro",
  4199. height: math.unit(10, "miles")
  4200. },
  4201. {
  4202. name: "Gigamacro",
  4203. height: math.unit(25000, "miles")
  4204. },
  4205. {
  4206. name: "Full-Size",
  4207. height: math.unit(8000000, "gigaparsecs")
  4208. }
  4209. ]
  4210. ))
  4211. characterMakers.push(() => makeCharacter(
  4212. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4213. {
  4214. front: {
  4215. height: math.unit(2, "meter"),
  4216. weight: math.unit(60, "kg"),
  4217. name: "Front",
  4218. image: {
  4219. source: "./media/characters/noah/front.svg"
  4220. }
  4221. },
  4222. talons: {
  4223. height: math.unit(0.315, "meter"),
  4224. name: "Talons",
  4225. image: {
  4226. source: "./media/characters/noah/talons.svg"
  4227. }
  4228. }
  4229. },
  4230. [
  4231. {
  4232. name: "Large",
  4233. height: math.unit(50, "feet")
  4234. },
  4235. {
  4236. name: "Macro",
  4237. height: math.unit(750, "feet"),
  4238. default: true
  4239. },
  4240. {
  4241. name: "Megamacro",
  4242. height: math.unit(50, "miles")
  4243. },
  4244. {
  4245. name: "Gigamacro",
  4246. height: math.unit(100000, "miles")
  4247. },
  4248. {
  4249. name: "Full-Size",
  4250. height: math.unit(3000000000, "miles")
  4251. }
  4252. ]
  4253. ))
  4254. characterMakers.push(() => makeCharacter(
  4255. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4256. {
  4257. front: {
  4258. height: math.unit(2, "meter"),
  4259. weight: math.unit(80, "kg"),
  4260. name: "Front",
  4261. image: {
  4262. source: "./media/characters/natalya/front.svg"
  4263. }
  4264. },
  4265. back: {
  4266. height: math.unit(2, "meter"),
  4267. weight: math.unit(80, "kg"),
  4268. name: "Back",
  4269. image: {
  4270. source: "./media/characters/natalya/back.svg"
  4271. }
  4272. }
  4273. },
  4274. [
  4275. {
  4276. name: "Normal",
  4277. height: math.unit(150, "feet"),
  4278. default: true
  4279. },
  4280. {
  4281. name: "Megamacro",
  4282. height: math.unit(5, "miles")
  4283. },
  4284. {
  4285. name: "Full-Size",
  4286. height: math.unit(600, "kiloparsecs")
  4287. }
  4288. ]
  4289. ))
  4290. characterMakers.push(() => makeCharacter(
  4291. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4292. {
  4293. front: {
  4294. height: math.unit(2, "meter"),
  4295. weight: math.unit(50, "kg"),
  4296. name: "Front",
  4297. image: {
  4298. source: "./media/characters/erestrebah/front.svg",
  4299. extra: 1262/1162,
  4300. bottom: 96/1358
  4301. }
  4302. },
  4303. back: {
  4304. height: math.unit(2, "meter"),
  4305. weight: math.unit(50, "kg"),
  4306. name: "Back",
  4307. image: {
  4308. source: "./media/characters/erestrebah/back.svg",
  4309. extra: 1257/1139,
  4310. bottom: 13/1270
  4311. }
  4312. },
  4313. wing: {
  4314. height: math.unit(2, "meter"),
  4315. weight: math.unit(50, "kg"),
  4316. name: "Wing",
  4317. image: {
  4318. source: "./media/characters/erestrebah/wing.svg",
  4319. extra: 1262/1162,
  4320. bottom: 96/1358
  4321. }
  4322. },
  4323. mouth: {
  4324. height: math.unit(0.39, "feet"),
  4325. name: "Mouth",
  4326. image: {
  4327. source: "./media/characters/erestrebah/mouth.svg"
  4328. }
  4329. }
  4330. },
  4331. [
  4332. {
  4333. name: "Normal",
  4334. height: math.unit(10, "feet")
  4335. },
  4336. {
  4337. name: "Large",
  4338. height: math.unit(50, "feet"),
  4339. default: true
  4340. },
  4341. {
  4342. name: "Macro",
  4343. height: math.unit(300, "feet")
  4344. },
  4345. {
  4346. name: "Macro+",
  4347. height: math.unit(750, "feet")
  4348. },
  4349. {
  4350. name: "Megamacro",
  4351. height: math.unit(3, "miles")
  4352. }
  4353. ]
  4354. ))
  4355. characterMakers.push(() => makeCharacter(
  4356. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4357. {
  4358. front: {
  4359. height: math.unit(2, "meter"),
  4360. weight: math.unit(80, "kg"),
  4361. name: "Front",
  4362. image: {
  4363. source: "./media/characters/jennifer/front.svg",
  4364. bottom: 0.11,
  4365. extra: 1.16
  4366. }
  4367. },
  4368. frontAlt: {
  4369. height: math.unit(2, "meter"),
  4370. weight: math.unit(80, "kg"),
  4371. name: "Front (Alt)",
  4372. image: {
  4373. source: "./media/characters/jennifer/front-alt.svg"
  4374. }
  4375. }
  4376. },
  4377. [
  4378. {
  4379. name: "Canon Height",
  4380. height: math.unit(120, "feet"),
  4381. default: true
  4382. },
  4383. {
  4384. name: "Macro+",
  4385. height: math.unit(300, "feet")
  4386. },
  4387. {
  4388. name: "Megamacro",
  4389. height: math.unit(20000, "feet")
  4390. }
  4391. ]
  4392. ))
  4393. characterMakers.push(() => makeCharacter(
  4394. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4395. {
  4396. front: {
  4397. height: math.unit(2, "meter"),
  4398. weight: math.unit(50, "kg"),
  4399. name: "Front",
  4400. image: {
  4401. source: "./media/characters/kalista/front.svg",
  4402. extra: 1314/1145,
  4403. bottom: 101/1415
  4404. }
  4405. },
  4406. back: {
  4407. height: math.unit(2, "meter"),
  4408. weight: math.unit(50, "kg"),
  4409. name: "Back",
  4410. image: {
  4411. source: "./media/characters/kalista/back.svg",
  4412. extra: 1366 / 1156,
  4413. bottom: 33.9 / 1362.78
  4414. }
  4415. }
  4416. },
  4417. [
  4418. {
  4419. name: "Uncomfortably Small",
  4420. height: math.unit(10, "feet")
  4421. },
  4422. {
  4423. name: "Small",
  4424. height: math.unit(30, "feet")
  4425. },
  4426. {
  4427. name: "Macro",
  4428. height: math.unit(100, "feet"),
  4429. default: true
  4430. },
  4431. {
  4432. name: "Macro+",
  4433. height: math.unit(2000, "feet")
  4434. },
  4435. {
  4436. name: "True Form",
  4437. height: math.unit(8924, "miles")
  4438. }
  4439. ]
  4440. ))
  4441. characterMakers.push(() => makeCharacter(
  4442. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4443. {
  4444. front: {
  4445. height: math.unit(2, "meter"),
  4446. weight: math.unit(120, "kg"),
  4447. name: "Front",
  4448. image: {
  4449. source: "./media/characters/ggv/front.svg"
  4450. }
  4451. },
  4452. side: {
  4453. height: math.unit(2, "meter"),
  4454. weight: math.unit(120, "kg"),
  4455. name: "Side",
  4456. image: {
  4457. source: "./media/characters/ggv/side.svg"
  4458. }
  4459. }
  4460. },
  4461. [
  4462. {
  4463. name: "Extremely Puny",
  4464. height: math.unit(9 + 5 / 12, "feet")
  4465. },
  4466. {
  4467. name: "Horribly Small",
  4468. height: math.unit(47.7, "miles"),
  4469. default: true
  4470. },
  4471. {
  4472. name: "Reasonably Sized",
  4473. height: math.unit(25000, "parsecs")
  4474. },
  4475. {
  4476. name: "Slightly Uncompressed",
  4477. height: math.unit(7.77e31, "parsecs")
  4478. },
  4479. {
  4480. name: "Omniversal",
  4481. height: math.unit(1e300, "meters")
  4482. },
  4483. ]
  4484. ))
  4485. characterMakers.push(() => makeCharacter(
  4486. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4487. {
  4488. front: {
  4489. height: math.unit(2, "meter"),
  4490. weight: math.unit(75, "lb"),
  4491. name: "Front",
  4492. image: {
  4493. source: "./media/characters/napalm/front.svg"
  4494. }
  4495. },
  4496. back: {
  4497. height: math.unit(2, "meter"),
  4498. weight: math.unit(75, "lb"),
  4499. name: "Back",
  4500. image: {
  4501. source: "./media/characters/napalm/back.svg"
  4502. }
  4503. }
  4504. },
  4505. [
  4506. {
  4507. name: "Standard",
  4508. height: math.unit(55, "feet"),
  4509. default: true
  4510. }
  4511. ]
  4512. ))
  4513. characterMakers.push(() => makeCharacter(
  4514. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4515. {
  4516. front: {
  4517. height: math.unit(7 + 5 / 6, "feet"),
  4518. weight: math.unit(325, "lb"),
  4519. name: "Front",
  4520. image: {
  4521. source: "./media/characters/asana/front.svg",
  4522. extra: 1133 / 1060,
  4523. bottom: 15.2 / 1148.6
  4524. }
  4525. },
  4526. back: {
  4527. height: math.unit(7 + 5 / 6, "feet"),
  4528. weight: math.unit(325, "lb"),
  4529. name: "Back",
  4530. image: {
  4531. source: "./media/characters/asana/back.svg",
  4532. extra: 1114 / 1043,
  4533. bottom: 5 / 1120
  4534. }
  4535. },
  4536. dressedDark: {
  4537. height: math.unit(7 + 5 / 6, "feet"),
  4538. weight: math.unit(325, "lb"),
  4539. name: "Dressed (Dark)",
  4540. image: {
  4541. source: "./media/characters/asana/dressed-dark.svg",
  4542. extra: 1133 / 1060,
  4543. bottom: 15.2 / 1148.6
  4544. }
  4545. },
  4546. dressedLight: {
  4547. height: math.unit(7 + 5 / 6, "feet"),
  4548. weight: math.unit(325, "lb"),
  4549. name: "Dressed (Light)",
  4550. image: {
  4551. source: "./media/characters/asana/dressed-light.svg",
  4552. extra: 1133 / 1060,
  4553. bottom: 15.2 / 1148.6
  4554. }
  4555. },
  4556. },
  4557. [
  4558. {
  4559. name: "Standard",
  4560. height: math.unit(7 + 5 / 6, "feet"),
  4561. default: true
  4562. },
  4563. {
  4564. name: "Large",
  4565. height: math.unit(10, "meters")
  4566. },
  4567. {
  4568. name: "Macro",
  4569. height: math.unit(2500, "meters")
  4570. },
  4571. {
  4572. name: "Megamacro",
  4573. height: math.unit(5e6, "meters")
  4574. },
  4575. {
  4576. name: "Examacro",
  4577. height: math.unit(5e12, "lightyears")
  4578. },
  4579. {
  4580. name: "Max Size",
  4581. height: math.unit(1e31, "lightyears")
  4582. }
  4583. ]
  4584. ))
  4585. characterMakers.push(() => makeCharacter(
  4586. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4587. {
  4588. front: {
  4589. height: math.unit(2, "meter"),
  4590. weight: math.unit(60, "kg"),
  4591. name: "Front",
  4592. image: {
  4593. source: "./media/characters/ebony/front.svg",
  4594. bottom: 0.03,
  4595. extra: 1045 / 810 + 0.03
  4596. }
  4597. },
  4598. side: {
  4599. height: math.unit(2, "meter"),
  4600. weight: math.unit(60, "kg"),
  4601. name: "Side",
  4602. image: {
  4603. source: "./media/characters/ebony/side.svg",
  4604. bottom: 0.03,
  4605. extra: 1045 / 810 + 0.03
  4606. }
  4607. },
  4608. back: {
  4609. height: math.unit(2, "meter"),
  4610. weight: math.unit(60, "kg"),
  4611. name: "Back",
  4612. image: {
  4613. source: "./media/characters/ebony/back.svg",
  4614. bottom: 0.01,
  4615. extra: 1045 / 810 + 0.01
  4616. }
  4617. },
  4618. },
  4619. [
  4620. // TODO check why I did this lol
  4621. {
  4622. name: "Standard",
  4623. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4624. default: true
  4625. },
  4626. {
  4627. name: "Macro",
  4628. height: math.unit(200, "feet")
  4629. },
  4630. {
  4631. name: "Gigamacro",
  4632. height: math.unit(13000, "km")
  4633. }
  4634. ]
  4635. ))
  4636. characterMakers.push(() => makeCharacter(
  4637. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4638. {
  4639. front: {
  4640. height: math.unit(6, "feet"),
  4641. weight: math.unit(175, "lb"),
  4642. name: "Front",
  4643. image: {
  4644. source: "./media/characters/mountain/front.svg",
  4645. extra: 972 / 955,
  4646. bottom: 64 / 1036.6
  4647. }
  4648. },
  4649. back: {
  4650. height: math.unit(6, "feet"),
  4651. weight: math.unit(175, "lb"),
  4652. name: "Back",
  4653. image: {
  4654. source: "./media/characters/mountain/back.svg",
  4655. extra: 970 / 950,
  4656. bottom: 28.25 / 999
  4657. }
  4658. },
  4659. },
  4660. [
  4661. {
  4662. name: "Large",
  4663. height: math.unit(20, "meters")
  4664. },
  4665. {
  4666. name: "Macro",
  4667. height: math.unit(300, "meters")
  4668. },
  4669. {
  4670. name: "Gigamacro",
  4671. height: math.unit(10000, "km"),
  4672. default: true
  4673. },
  4674. {
  4675. name: "Examacro",
  4676. height: math.unit(10e9, "lightyears")
  4677. }
  4678. ]
  4679. ))
  4680. characterMakers.push(() => makeCharacter(
  4681. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4682. {
  4683. front: {
  4684. height: math.unit(8, "feet"),
  4685. weight: math.unit(500, "lb"),
  4686. name: "Front",
  4687. image: {
  4688. source: "./media/characters/rick/front.svg"
  4689. }
  4690. }
  4691. },
  4692. [
  4693. {
  4694. name: "Normal",
  4695. height: math.unit(8, "feet"),
  4696. default: true
  4697. },
  4698. {
  4699. name: "Macro",
  4700. height: math.unit(5, "km")
  4701. }
  4702. ]
  4703. ))
  4704. characterMakers.push(() => makeCharacter(
  4705. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4706. {
  4707. front: {
  4708. height: math.unit(8, "feet"),
  4709. weight: math.unit(120, "lb"),
  4710. name: "Front",
  4711. image: {
  4712. source: "./media/characters/ona/front.svg"
  4713. }
  4714. },
  4715. frontAlt: {
  4716. height: math.unit(8, "feet"),
  4717. weight: math.unit(120, "lb"),
  4718. name: "Front (Alt)",
  4719. image: {
  4720. source: "./media/characters/ona/front-alt.svg"
  4721. }
  4722. },
  4723. back: {
  4724. height: math.unit(8, "feet"),
  4725. weight: math.unit(120, "lb"),
  4726. name: "Back",
  4727. image: {
  4728. source: "./media/characters/ona/back.svg"
  4729. }
  4730. },
  4731. foot: {
  4732. height: math.unit(1.1, "feet"),
  4733. name: "Foot",
  4734. image: {
  4735. source: "./media/characters/ona/foot.svg"
  4736. }
  4737. }
  4738. },
  4739. [
  4740. {
  4741. name: "Megamacro",
  4742. height: math.unit(70, "km"),
  4743. default: true
  4744. },
  4745. {
  4746. name: "Gigamacro",
  4747. height: math.unit(681818, "miles")
  4748. },
  4749. {
  4750. name: "Examacro",
  4751. height: math.unit(3800000, "lightyears")
  4752. },
  4753. ]
  4754. ))
  4755. characterMakers.push(() => makeCharacter(
  4756. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4757. {
  4758. front: {
  4759. height: math.unit(12, "feet"),
  4760. weight: math.unit(3000, "lb"),
  4761. name: "Front",
  4762. image: {
  4763. source: "./media/characters/mech/front.svg",
  4764. extra: 2900 / 2770,
  4765. bottom: 110 / 3010
  4766. }
  4767. },
  4768. back: {
  4769. height: math.unit(12, "feet"),
  4770. weight: math.unit(3000, "lb"),
  4771. name: "Back",
  4772. image: {
  4773. source: "./media/characters/mech/back.svg",
  4774. extra: 3011 / 2890,
  4775. bottom: 94 / 3105
  4776. }
  4777. },
  4778. maw: {
  4779. height: math.unit(3.07, "feet"),
  4780. name: "Maw",
  4781. image: {
  4782. source: "./media/characters/mech/maw.svg"
  4783. }
  4784. },
  4785. head: {
  4786. height: math.unit(3.07, "feet"),
  4787. name: "Head",
  4788. image: {
  4789. source: "./media/characters/mech/head.svg"
  4790. }
  4791. },
  4792. dick: {
  4793. height: math.unit(1.43, "feet"),
  4794. name: "Dick",
  4795. image: {
  4796. source: "./media/characters/mech/dick.svg"
  4797. }
  4798. },
  4799. },
  4800. [
  4801. {
  4802. name: "Normal",
  4803. height: math.unit(12, "feet")
  4804. },
  4805. {
  4806. name: "Macro",
  4807. height: math.unit(300, "feet"),
  4808. default: true
  4809. },
  4810. {
  4811. name: "Macro+",
  4812. height: math.unit(1500, "feet")
  4813. },
  4814. ]
  4815. ))
  4816. characterMakers.push(() => makeCharacter(
  4817. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4818. {
  4819. front: {
  4820. height: math.unit(1.3, "meter"),
  4821. weight: math.unit(30, "kg"),
  4822. name: "Front",
  4823. image: {
  4824. source: "./media/characters/gregory/front.svg",
  4825. }
  4826. }
  4827. },
  4828. [
  4829. {
  4830. name: "Normal",
  4831. height: math.unit(1.3, "meter"),
  4832. default: true
  4833. },
  4834. {
  4835. name: "Macro",
  4836. height: math.unit(20, "meter")
  4837. }
  4838. ]
  4839. ))
  4840. characterMakers.push(() => makeCharacter(
  4841. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4842. {
  4843. front: {
  4844. height: math.unit(2.8, "meter"),
  4845. weight: math.unit(200, "kg"),
  4846. name: "Front",
  4847. image: {
  4848. source: "./media/characters/elory/front.svg",
  4849. }
  4850. }
  4851. },
  4852. [
  4853. {
  4854. name: "Normal",
  4855. height: math.unit(2.8, "meter"),
  4856. default: true
  4857. },
  4858. {
  4859. name: "Macro",
  4860. height: math.unit(38, "meter")
  4861. }
  4862. ]
  4863. ))
  4864. characterMakers.push(() => makeCharacter(
  4865. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4866. {
  4867. front: {
  4868. height: math.unit(470, "feet"),
  4869. weight: math.unit(924, "tons"),
  4870. name: "Front",
  4871. image: {
  4872. source: "./media/characters/angelpatamon/front.svg",
  4873. }
  4874. }
  4875. },
  4876. [
  4877. {
  4878. name: "Normal",
  4879. height: math.unit(470, "feet"),
  4880. default: true
  4881. },
  4882. {
  4883. name: "Deity Size I",
  4884. height: math.unit(28651.2, "km")
  4885. },
  4886. {
  4887. name: "Deity Size II",
  4888. height: math.unit(171907.2, "km")
  4889. }
  4890. ]
  4891. ))
  4892. characterMakers.push(() => makeCharacter(
  4893. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4894. {
  4895. side: {
  4896. height: math.unit(7.2, "meter"),
  4897. weight: math.unit(8.2, "tons"),
  4898. name: "Side",
  4899. image: {
  4900. source: "./media/characters/cryae/side.svg",
  4901. extra: 3500 / 1500
  4902. }
  4903. }
  4904. },
  4905. [
  4906. {
  4907. name: "Normal",
  4908. height: math.unit(7.2, "meter"),
  4909. default: true
  4910. }
  4911. ]
  4912. ))
  4913. characterMakers.push(() => makeCharacter(
  4914. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4915. {
  4916. front: {
  4917. height: math.unit(6, "feet"),
  4918. weight: math.unit(175, "lb"),
  4919. name: "Front",
  4920. image: {
  4921. source: "./media/characters/xera/front.svg",
  4922. extra: 2377 / 1972,
  4923. bottom: 75.5 / 2452
  4924. }
  4925. },
  4926. side: {
  4927. height: math.unit(6, "feet"),
  4928. weight: math.unit(175, "lb"),
  4929. name: "Side",
  4930. image: {
  4931. source: "./media/characters/xera/side.svg",
  4932. extra: 2345 / 2019,
  4933. bottom: 39.7 / 2384
  4934. }
  4935. },
  4936. back: {
  4937. height: math.unit(6, "feet"),
  4938. weight: math.unit(175, "lb"),
  4939. name: "Back",
  4940. image: {
  4941. source: "./media/characters/xera/back.svg",
  4942. extra: 2095 / 1984,
  4943. bottom: 67 / 2166
  4944. }
  4945. },
  4946. },
  4947. [
  4948. {
  4949. name: "Small",
  4950. height: math.unit(10, "feet")
  4951. },
  4952. {
  4953. name: "Macro",
  4954. height: math.unit(500, "meters"),
  4955. default: true
  4956. },
  4957. {
  4958. name: "Macro+",
  4959. height: math.unit(10, "km")
  4960. },
  4961. {
  4962. name: "Gigamacro",
  4963. height: math.unit(25000, "km")
  4964. },
  4965. {
  4966. name: "Teramacro",
  4967. height: math.unit(3e6, "km")
  4968. }
  4969. ]
  4970. ))
  4971. characterMakers.push(() => makeCharacter(
  4972. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4973. {
  4974. front: {
  4975. height: math.unit(6, "feet"),
  4976. weight: math.unit(175, "lb"),
  4977. name: "Front",
  4978. image: {
  4979. source: "./media/characters/nebula/front.svg",
  4980. extra: 2566 / 2362,
  4981. bottom: 81 / 2644
  4982. }
  4983. }
  4984. },
  4985. [
  4986. {
  4987. name: "Small",
  4988. height: math.unit(4.5, "meters")
  4989. },
  4990. {
  4991. name: "Macro",
  4992. height: math.unit(1500, "meters"),
  4993. default: true
  4994. },
  4995. {
  4996. name: "Megamacro",
  4997. height: math.unit(150, "km")
  4998. },
  4999. {
  5000. name: "Gigamacro",
  5001. height: math.unit(27000, "km")
  5002. }
  5003. ]
  5004. ))
  5005. characterMakers.push(() => makeCharacter(
  5006. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  5007. {
  5008. front: {
  5009. height: math.unit(6, "feet"),
  5010. weight: math.unit(225, "lb"),
  5011. name: "Front",
  5012. image: {
  5013. source: "./media/characters/abysgar/front.svg",
  5014. extra: 1739/1614,
  5015. bottom: 71/1810
  5016. }
  5017. },
  5018. frontNsfw: {
  5019. height: math.unit(6, "feet"),
  5020. weight: math.unit(225, "lb"),
  5021. name: "Front (NSFW)",
  5022. image: {
  5023. source: "./media/characters/abysgar/front-nsfw.svg",
  5024. extra: 1739/1614,
  5025. bottom: 71/1810
  5026. }
  5027. },
  5028. back: {
  5029. height: math.unit(4.6, "feet"),
  5030. weight: math.unit(225, "lb"),
  5031. name: "Back",
  5032. image: {
  5033. source: "./media/characters/abysgar/back.svg",
  5034. extra: 1384/1327,
  5035. bottom: 0/1384
  5036. }
  5037. },
  5038. head: {
  5039. height: math.unit(1.25, "feet"),
  5040. name: "Head",
  5041. image: {
  5042. source: "./media/characters/abysgar/head.svg",
  5043. extra: 669/569,
  5044. bottom: 0/669
  5045. }
  5046. },
  5047. },
  5048. [
  5049. {
  5050. name: "Small",
  5051. height: math.unit(4.5, "meters")
  5052. },
  5053. {
  5054. name: "Macro",
  5055. height: math.unit(1250, "meters"),
  5056. default: true
  5057. },
  5058. {
  5059. name: "Megamacro",
  5060. height: math.unit(125, "km")
  5061. },
  5062. {
  5063. name: "Gigamacro",
  5064. height: math.unit(26000, "km")
  5065. }
  5066. ]
  5067. ))
  5068. characterMakers.push(() => makeCharacter(
  5069. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5070. {
  5071. front: {
  5072. height: math.unit(6, "feet"),
  5073. weight: math.unit(180, "lb"),
  5074. name: "Front",
  5075. image: {
  5076. source: "./media/characters/yakuz/front.svg"
  5077. }
  5078. }
  5079. },
  5080. [
  5081. {
  5082. name: "Small",
  5083. height: math.unit(5, "meters")
  5084. },
  5085. {
  5086. name: "Macro",
  5087. height: math.unit(1500, "meters"),
  5088. default: true
  5089. },
  5090. {
  5091. name: "Megamacro",
  5092. height: math.unit(200, "km")
  5093. },
  5094. {
  5095. name: "Gigamacro",
  5096. height: math.unit(100000, "km")
  5097. }
  5098. ]
  5099. ))
  5100. characterMakers.push(() => makeCharacter(
  5101. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5102. {
  5103. front: {
  5104. height: math.unit(6, "feet"),
  5105. weight: math.unit(175, "lb"),
  5106. name: "Front",
  5107. image: {
  5108. source: "./media/characters/mirova/front.svg",
  5109. extra: 3334 / 3071,
  5110. bottom: 42 / 3375.6
  5111. }
  5112. }
  5113. },
  5114. [
  5115. {
  5116. name: "Small",
  5117. height: math.unit(5, "meters")
  5118. },
  5119. {
  5120. name: "Macro",
  5121. height: math.unit(900, "meters"),
  5122. default: true
  5123. },
  5124. {
  5125. name: "Megamacro",
  5126. height: math.unit(135, "km")
  5127. },
  5128. {
  5129. name: "Gigamacro",
  5130. height: math.unit(20000, "km")
  5131. }
  5132. ]
  5133. ))
  5134. characterMakers.push(() => makeCharacter(
  5135. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5136. {
  5137. side: {
  5138. height: math.unit(28.35, "feet"),
  5139. weight: math.unit(99.75, "tons"),
  5140. name: "Side",
  5141. image: {
  5142. source: "./media/characters/asana-mech/side.svg",
  5143. extra: 923 / 699,
  5144. bottom: 50 / 975
  5145. }
  5146. },
  5147. chaingun: {
  5148. height: math.unit(7, "feet"),
  5149. weight: math.unit(2400, "lb"),
  5150. name: "Chaingun",
  5151. image: {
  5152. source: "./media/characters/asana-mech/chaingun.svg"
  5153. }
  5154. },
  5155. laser: {
  5156. height: math.unit(7.12, "feet"),
  5157. weight: math.unit(2000, "lb"),
  5158. name: "Laser",
  5159. image: {
  5160. source: "./media/characters/asana-mech/laser.svg"
  5161. }
  5162. },
  5163. },
  5164. [
  5165. {
  5166. name: "Normal",
  5167. height: math.unit(28.35, "feet"),
  5168. default: true
  5169. },
  5170. {
  5171. name: "Macro",
  5172. height: math.unit(2500, "feet")
  5173. },
  5174. {
  5175. name: "Megamacro",
  5176. height: math.unit(25, "miles")
  5177. },
  5178. {
  5179. name: "Examacro",
  5180. height: math.unit(6e8, "lightyears")
  5181. },
  5182. ]
  5183. ))
  5184. characterMakers.push(() => makeCharacter(
  5185. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5186. {
  5187. front: {
  5188. height: math.unit(5, "meters"),
  5189. weight: math.unit(1000, "kg"),
  5190. name: "Front",
  5191. image: {
  5192. source: "./media/characters/asche/front.svg",
  5193. extra: 1258 / 1190,
  5194. bottom: 47 / 1305
  5195. }
  5196. },
  5197. frontUnderwear: {
  5198. height: math.unit(5, "meters"),
  5199. weight: math.unit(1000, "kg"),
  5200. name: "Front (Underwear)",
  5201. image: {
  5202. source: "./media/characters/asche/front-underwear.svg",
  5203. extra: 1258 / 1190,
  5204. bottom: 47 / 1305
  5205. }
  5206. },
  5207. frontDressed: {
  5208. height: math.unit(5, "meters"),
  5209. weight: math.unit(1000, "kg"),
  5210. name: "Front (Dressed)",
  5211. image: {
  5212. source: "./media/characters/asche/front-dressed.svg",
  5213. extra: 1258 / 1190,
  5214. bottom: 47 / 1305
  5215. }
  5216. },
  5217. frontArmor: {
  5218. height: math.unit(5, "meters"),
  5219. weight: math.unit(1000, "kg"),
  5220. name: "Front (Armored)",
  5221. image: {
  5222. source: "./media/characters/asche/front-armored.svg",
  5223. extra: 1374 / 1308,
  5224. bottom: 23 / 1397
  5225. }
  5226. },
  5227. mp724: {
  5228. height: math.unit(0.96, "meters"),
  5229. weight: math.unit(38, "kg"),
  5230. name: "H&K MP724",
  5231. image: {
  5232. source: "./media/characters/asche/h&k-mp724.svg"
  5233. }
  5234. },
  5235. side: {
  5236. height: math.unit(5, "meters"),
  5237. weight: math.unit(1000, "kg"),
  5238. name: "Side",
  5239. image: {
  5240. source: "./media/characters/asche/side.svg",
  5241. extra: 1717 / 1609,
  5242. bottom: 0.005
  5243. }
  5244. },
  5245. back: {
  5246. height: math.unit(5, "meters"),
  5247. weight: math.unit(1000, "kg"),
  5248. name: "Back",
  5249. image: {
  5250. source: "./media/characters/asche/back.svg",
  5251. extra: 1570 / 1501
  5252. }
  5253. },
  5254. },
  5255. [
  5256. {
  5257. name: "DEFCON 5",
  5258. height: math.unit(5, "meters")
  5259. },
  5260. {
  5261. name: "DEFCON 4",
  5262. height: math.unit(500, "meters"),
  5263. default: true
  5264. },
  5265. {
  5266. name: "DEFCON 3",
  5267. height: math.unit(5, "km")
  5268. },
  5269. {
  5270. name: "DEFCON 2",
  5271. height: math.unit(500, "km")
  5272. },
  5273. {
  5274. name: "DEFCON 1",
  5275. height: math.unit(500000, "km")
  5276. },
  5277. {
  5278. name: "DEFCON 0",
  5279. height: math.unit(3, "gigaparsecs")
  5280. },
  5281. ]
  5282. ))
  5283. characterMakers.push(() => makeCharacter(
  5284. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5285. {
  5286. front: {
  5287. height: math.unit(2, "meters"),
  5288. weight: math.unit(76, "kg"),
  5289. name: "Front",
  5290. image: {
  5291. source: "./media/characters/gale/front.svg"
  5292. }
  5293. },
  5294. frontAlt1: {
  5295. height: math.unit(2, "meters"),
  5296. weight: math.unit(76, "kg"),
  5297. name: "Front (Alt 1)",
  5298. image: {
  5299. source: "./media/characters/gale/front-alt-1.svg"
  5300. }
  5301. },
  5302. frontAlt2: {
  5303. height: math.unit(2, "meters"),
  5304. weight: math.unit(76, "kg"),
  5305. name: "Front (Alt 2)",
  5306. image: {
  5307. source: "./media/characters/gale/front-alt-2.svg"
  5308. }
  5309. },
  5310. },
  5311. [
  5312. {
  5313. name: "Normal",
  5314. height: math.unit(7, "feet")
  5315. },
  5316. {
  5317. name: "Macro",
  5318. height: math.unit(150, "feet"),
  5319. default: true
  5320. },
  5321. {
  5322. name: "Macro+",
  5323. height: math.unit(300, "feet")
  5324. },
  5325. ]
  5326. ))
  5327. characterMakers.push(() => makeCharacter(
  5328. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5329. {
  5330. front: {
  5331. height: math.unit(5 + 10/12, "feet"),
  5332. weight: math.unit(67, "kg"),
  5333. name: "Front",
  5334. image: {
  5335. source: "./media/characters/draylen/front.svg",
  5336. extra: 832/777,
  5337. bottom: 85/917
  5338. }
  5339. }
  5340. },
  5341. [
  5342. {
  5343. name: "Normal",
  5344. height: math.unit(5 + 10/12, "feet")
  5345. },
  5346. {
  5347. name: "Macro",
  5348. height: math.unit(150, "feet"),
  5349. default: true
  5350. }
  5351. ]
  5352. ))
  5353. characterMakers.push(() => makeCharacter(
  5354. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5355. {
  5356. front: {
  5357. height: math.unit(7 + 9 / 12, "feet"),
  5358. weight: math.unit(379, "lbs"),
  5359. name: "Front",
  5360. image: {
  5361. source: "./media/characters/chez/front.svg"
  5362. }
  5363. },
  5364. side: {
  5365. height: math.unit(7 + 9 / 12, "feet"),
  5366. weight: math.unit(379, "lbs"),
  5367. name: "Side",
  5368. image: {
  5369. source: "./media/characters/chez/side.svg"
  5370. }
  5371. }
  5372. },
  5373. [
  5374. {
  5375. name: "Normal",
  5376. height: math.unit(7 + 9 / 12, "feet"),
  5377. default: true
  5378. },
  5379. {
  5380. name: "God King",
  5381. height: math.unit(9750000, "meters")
  5382. }
  5383. ]
  5384. ))
  5385. characterMakers.push(() => makeCharacter(
  5386. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5387. {
  5388. front: {
  5389. height: math.unit(6, "feet"),
  5390. weight: math.unit(275, "lbs"),
  5391. name: "Front",
  5392. image: {
  5393. source: "./media/characters/kaylum/front.svg",
  5394. bottom: 0.01,
  5395. extra: 1166 / 1031
  5396. }
  5397. },
  5398. frontWingless: {
  5399. height: math.unit(6, "feet"),
  5400. weight: math.unit(275, "lbs"),
  5401. name: "Front (Wingless)",
  5402. image: {
  5403. source: "./media/characters/kaylum/front-wingless.svg",
  5404. bottom: 0.01,
  5405. extra: 1117 / 1031
  5406. }
  5407. }
  5408. },
  5409. [
  5410. {
  5411. name: "Normal",
  5412. height: math.unit(3.05, "meters")
  5413. },
  5414. {
  5415. name: "Master",
  5416. height: math.unit(5.5, "meters")
  5417. },
  5418. {
  5419. name: "Rampage",
  5420. height: math.unit(19, "meters")
  5421. },
  5422. {
  5423. name: "Macro Lite",
  5424. height: math.unit(37, "meters")
  5425. },
  5426. {
  5427. name: "Hyper Predator",
  5428. height: math.unit(61, "meters")
  5429. },
  5430. {
  5431. name: "Macro",
  5432. height: math.unit(138, "meters"),
  5433. default: true
  5434. }
  5435. ]
  5436. ))
  5437. characterMakers.push(() => makeCharacter(
  5438. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5439. {
  5440. front: {
  5441. height: math.unit(5 + 5 / 12, "feet"),
  5442. weight: math.unit(120, "lbs"),
  5443. name: "Front",
  5444. image: {
  5445. source: "./media/characters/geta/front.svg",
  5446. extra: 1003/933,
  5447. bottom: 21/1024
  5448. }
  5449. },
  5450. paw: {
  5451. height: math.unit(0.35, "feet"),
  5452. name: "Paw",
  5453. image: {
  5454. source: "./media/characters/geta/paw.svg"
  5455. }
  5456. },
  5457. },
  5458. [
  5459. {
  5460. name: "Micro",
  5461. height: math.unit(3, "inches"),
  5462. default: true
  5463. },
  5464. {
  5465. name: "Normal",
  5466. height: math.unit(5 + 5 / 12, "feet")
  5467. }
  5468. ]
  5469. ))
  5470. characterMakers.push(() => makeCharacter(
  5471. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5472. {
  5473. front: {
  5474. height: math.unit(6, "feet"),
  5475. weight: math.unit(300, "lbs"),
  5476. name: "Front",
  5477. image: {
  5478. source: "./media/characters/tyrnn/front.svg"
  5479. }
  5480. }
  5481. },
  5482. [
  5483. {
  5484. name: "Main Height",
  5485. height: math.unit(355, "feet"),
  5486. default: true
  5487. },
  5488. {
  5489. name: "Fave. Height",
  5490. height: math.unit(2400, "feet")
  5491. }
  5492. ]
  5493. ))
  5494. characterMakers.push(() => makeCharacter(
  5495. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5496. {
  5497. front: {
  5498. height: math.unit(6, "feet"),
  5499. weight: math.unit(300, "lbs"),
  5500. name: "Front",
  5501. image: {
  5502. source: "./media/characters/appledectomy/front.svg"
  5503. }
  5504. }
  5505. },
  5506. [
  5507. {
  5508. name: "Macro",
  5509. height: math.unit(2500, "feet")
  5510. },
  5511. {
  5512. name: "Megamacro",
  5513. height: math.unit(50, "miles"),
  5514. default: true
  5515. },
  5516. {
  5517. name: "Gigamacro",
  5518. height: math.unit(5000, "miles")
  5519. },
  5520. {
  5521. name: "Teramacro",
  5522. height: math.unit(250000, "miles")
  5523. },
  5524. ]
  5525. ))
  5526. characterMakers.push(() => makeCharacter(
  5527. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5528. {
  5529. front: {
  5530. height: math.unit(6, "feet"),
  5531. weight: math.unit(200, "lbs"),
  5532. name: "Front",
  5533. image: {
  5534. source: "./media/characters/vulpes/front.svg",
  5535. extra: 573 / 543,
  5536. bottom: 0.033
  5537. }
  5538. },
  5539. side: {
  5540. height: math.unit(6, "feet"),
  5541. weight: math.unit(200, "lbs"),
  5542. name: "Side",
  5543. image: {
  5544. source: "./media/characters/vulpes/side.svg",
  5545. extra: 577 / 549,
  5546. bottom: 11 / 588
  5547. }
  5548. },
  5549. back: {
  5550. height: math.unit(6, "feet"),
  5551. weight: math.unit(200, "lbs"),
  5552. name: "Back",
  5553. image: {
  5554. source: "./media/characters/vulpes/back.svg",
  5555. extra: 573 / 549,
  5556. bottom: 20 / 593
  5557. }
  5558. },
  5559. feet: {
  5560. height: math.unit(1.276, "feet"),
  5561. name: "Feet",
  5562. image: {
  5563. source: "./media/characters/vulpes/feet.svg"
  5564. }
  5565. },
  5566. maw: {
  5567. height: math.unit(1.18, "feet"),
  5568. name: "Maw",
  5569. image: {
  5570. source: "./media/characters/vulpes/maw.svg"
  5571. }
  5572. },
  5573. },
  5574. [
  5575. {
  5576. name: "Micro",
  5577. height: math.unit(2, "inches")
  5578. },
  5579. {
  5580. name: "Normal",
  5581. height: math.unit(6.3, "feet")
  5582. },
  5583. {
  5584. name: "Macro",
  5585. height: math.unit(850, "feet")
  5586. },
  5587. {
  5588. name: "Megamacro",
  5589. height: math.unit(7500, "feet"),
  5590. default: true
  5591. },
  5592. {
  5593. name: "Gigamacro",
  5594. height: math.unit(570000, "miles")
  5595. }
  5596. ]
  5597. ))
  5598. characterMakers.push(() => makeCharacter(
  5599. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5600. {
  5601. front: {
  5602. height: math.unit(6, "feet"),
  5603. weight: math.unit(210, "lbs"),
  5604. name: "Front",
  5605. image: {
  5606. source: "./media/characters/rain-fallen/front.svg"
  5607. }
  5608. },
  5609. side: {
  5610. height: math.unit(6, "feet"),
  5611. weight: math.unit(210, "lbs"),
  5612. name: "Side",
  5613. image: {
  5614. source: "./media/characters/rain-fallen/side.svg"
  5615. }
  5616. },
  5617. back: {
  5618. height: math.unit(6, "feet"),
  5619. weight: math.unit(210, "lbs"),
  5620. name: "Back",
  5621. image: {
  5622. source: "./media/characters/rain-fallen/back.svg"
  5623. }
  5624. },
  5625. feral: {
  5626. height: math.unit(9, "feet"),
  5627. weight: math.unit(700, "lbs"),
  5628. name: "Feral",
  5629. image: {
  5630. source: "./media/characters/rain-fallen/feral.svg"
  5631. }
  5632. },
  5633. },
  5634. [
  5635. {
  5636. name: "Meddling with Mortals",
  5637. height: math.unit(8 + 8/12, "feet")
  5638. },
  5639. {
  5640. name: "Normal",
  5641. height: math.unit(5, "meter")
  5642. },
  5643. {
  5644. name: "Macro",
  5645. height: math.unit(150, "meter"),
  5646. default: true
  5647. },
  5648. {
  5649. name: "Megamacro",
  5650. height: math.unit(278e6, "meter")
  5651. },
  5652. {
  5653. name: "Gigamacro",
  5654. height: math.unit(2e9, "meter")
  5655. },
  5656. {
  5657. name: "Teramacro",
  5658. height: math.unit(8e12, "meter")
  5659. },
  5660. {
  5661. name: "Devourer",
  5662. height: math.unit(14, "zettameters")
  5663. },
  5664. {
  5665. name: "Scarlet King",
  5666. height: math.unit(18, "yottameters")
  5667. },
  5668. {
  5669. name: "Void",
  5670. height: math.unit(1e88, "yottameters")
  5671. }
  5672. ]
  5673. ))
  5674. characterMakers.push(() => makeCharacter(
  5675. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5676. {
  5677. standing: {
  5678. height: math.unit(6, "feet"),
  5679. weight: math.unit(180, "lbs"),
  5680. name: "Standing",
  5681. image: {
  5682. source: "./media/characters/zaakira/standing.svg",
  5683. extra: 1599/1504,
  5684. bottom: 39/1638
  5685. }
  5686. },
  5687. laying: {
  5688. height: math.unit(3.3, "feet"),
  5689. weight: math.unit(180, "lbs"),
  5690. name: "Laying",
  5691. image: {
  5692. source: "./media/characters/zaakira/laying.svg"
  5693. }
  5694. },
  5695. },
  5696. [
  5697. {
  5698. name: "Normal",
  5699. height: math.unit(12, "feet")
  5700. },
  5701. {
  5702. name: "Macro",
  5703. height: math.unit(279, "feet"),
  5704. default: true
  5705. }
  5706. ]
  5707. ))
  5708. characterMakers.push(() => makeCharacter(
  5709. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5710. {
  5711. femSfw: {
  5712. height: math.unit(8, "feet"),
  5713. weight: math.unit(350, "lb"),
  5714. name: "Fem",
  5715. image: {
  5716. source: "./media/characters/sigvald/fem-sfw.svg",
  5717. extra: 182 / 164,
  5718. bottom: 8.7 / 190.5
  5719. }
  5720. },
  5721. femNsfw: {
  5722. height: math.unit(8, "feet"),
  5723. weight: math.unit(350, "lb"),
  5724. name: "Fem (NSFW)",
  5725. image: {
  5726. source: "./media/characters/sigvald/fem-nsfw.svg",
  5727. extra: 182 / 164,
  5728. bottom: 8.7 / 190.5
  5729. }
  5730. },
  5731. maleNsfw: {
  5732. height: math.unit(8, "feet"),
  5733. weight: math.unit(350, "lb"),
  5734. name: "Male (NSFW)",
  5735. image: {
  5736. source: "./media/characters/sigvald/male-nsfw.svg",
  5737. extra: 182 / 164,
  5738. bottom: 8.7 / 190.5
  5739. }
  5740. },
  5741. hermNsfw: {
  5742. height: math.unit(8, "feet"),
  5743. weight: math.unit(350, "lb"),
  5744. name: "Herm (NSFW)",
  5745. image: {
  5746. source: "./media/characters/sigvald/herm-nsfw.svg",
  5747. extra: 182 / 164,
  5748. bottom: 8.7 / 190.5
  5749. }
  5750. },
  5751. dick: {
  5752. height: math.unit(2.36, "feet"),
  5753. name: "Dick",
  5754. image: {
  5755. source: "./media/characters/sigvald/dick.svg"
  5756. }
  5757. },
  5758. eye: {
  5759. height: math.unit(0.31, "feet"),
  5760. name: "Eye",
  5761. image: {
  5762. source: "./media/characters/sigvald/eye.svg"
  5763. }
  5764. },
  5765. mouth: {
  5766. height: math.unit(0.92, "feet"),
  5767. name: "Mouth",
  5768. image: {
  5769. source: "./media/characters/sigvald/mouth.svg"
  5770. }
  5771. },
  5772. paws: {
  5773. height: math.unit(2.2, "feet"),
  5774. name: "Paws",
  5775. image: {
  5776. source: "./media/characters/sigvald/paws.svg"
  5777. }
  5778. }
  5779. },
  5780. [
  5781. {
  5782. name: "Normal",
  5783. height: math.unit(8, "feet")
  5784. },
  5785. {
  5786. name: "Large",
  5787. height: math.unit(12, "feet")
  5788. },
  5789. {
  5790. name: "Larger",
  5791. height: math.unit(20, "feet")
  5792. },
  5793. {
  5794. name: "Macro",
  5795. height: math.unit(150, "feet")
  5796. },
  5797. {
  5798. name: "Macro+",
  5799. height: math.unit(200, "feet"),
  5800. default: true
  5801. },
  5802. ]
  5803. ))
  5804. characterMakers.push(() => makeCharacter(
  5805. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5806. {
  5807. side: {
  5808. height: math.unit(12, "feet"),
  5809. weight: math.unit(2000, "kg"),
  5810. name: "Side",
  5811. image: {
  5812. source: "./media/characters/scott/side.svg",
  5813. extra: 754 / 724,
  5814. bottom: 0.069
  5815. }
  5816. },
  5817. upright: {
  5818. height: math.unit(12, "feet"),
  5819. weight: math.unit(2000, "kg"),
  5820. name: "Upright",
  5821. image: {
  5822. source: "./media/characters/scott/upright.svg",
  5823. extra: 3881 / 3722,
  5824. bottom: 0.05
  5825. }
  5826. },
  5827. },
  5828. [
  5829. {
  5830. name: "Normal",
  5831. height: math.unit(12, "feet"),
  5832. default: true
  5833. },
  5834. ]
  5835. ))
  5836. characterMakers.push(() => makeCharacter(
  5837. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5838. {
  5839. side: {
  5840. height: math.unit(8, "meters"),
  5841. weight: math.unit(84755, "lbs"),
  5842. name: "Side",
  5843. image: {
  5844. source: "./media/characters/tobias/side.svg",
  5845. extra: 1474 / 1096,
  5846. bottom: 38.9 / 1513.1235
  5847. }
  5848. },
  5849. },
  5850. [
  5851. {
  5852. name: "Normal",
  5853. height: math.unit(8, "meters"),
  5854. default: true
  5855. },
  5856. ]
  5857. ))
  5858. characterMakers.push(() => makeCharacter(
  5859. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5860. {
  5861. front: {
  5862. height: math.unit(5.5, "feet"),
  5863. weight: math.unit(400, "lbs"),
  5864. name: "Front",
  5865. image: {
  5866. source: "./media/characters/kieran/front.svg",
  5867. extra: 2694 / 2364,
  5868. bottom: 217 / 2908
  5869. }
  5870. },
  5871. side: {
  5872. height: math.unit(5.5, "feet"),
  5873. weight: math.unit(400, "lbs"),
  5874. name: "Side",
  5875. image: {
  5876. source: "./media/characters/kieran/side.svg",
  5877. extra: 875 / 777,
  5878. bottom: 84.6 / 959
  5879. }
  5880. },
  5881. },
  5882. [
  5883. {
  5884. name: "Normal",
  5885. height: math.unit(5.5, "feet"),
  5886. default: true
  5887. },
  5888. ]
  5889. ))
  5890. characterMakers.push(() => makeCharacter(
  5891. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5892. {
  5893. side: {
  5894. height: math.unit(2, "meters"),
  5895. weight: math.unit(70, "kg"),
  5896. name: "Side",
  5897. image: {
  5898. source: "./media/characters/sanya/side.svg",
  5899. bottom: 0.02,
  5900. extra: 1.02
  5901. }
  5902. },
  5903. },
  5904. [
  5905. {
  5906. name: "Small",
  5907. height: math.unit(2, "meters")
  5908. },
  5909. {
  5910. name: "Normal",
  5911. height: math.unit(3, "meters")
  5912. },
  5913. {
  5914. name: "Macro",
  5915. height: math.unit(16, "meters"),
  5916. default: true
  5917. },
  5918. ]
  5919. ))
  5920. characterMakers.push(() => makeCharacter(
  5921. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5922. {
  5923. front: {
  5924. height: math.unit(2, "meters"),
  5925. weight: math.unit(120, "kg"),
  5926. name: "Front",
  5927. image: {
  5928. source: "./media/characters/miranda/front.svg",
  5929. extra: 195 / 185,
  5930. bottom: 10.9 / 206.5
  5931. }
  5932. },
  5933. back: {
  5934. height: math.unit(2, "meters"),
  5935. weight: math.unit(120, "kg"),
  5936. name: "Back",
  5937. image: {
  5938. source: "./media/characters/miranda/back.svg",
  5939. extra: 201 / 193,
  5940. bottom: 2.3 / 203.7
  5941. }
  5942. },
  5943. },
  5944. [
  5945. {
  5946. name: "Normal",
  5947. height: math.unit(10, "feet"),
  5948. default: true
  5949. }
  5950. ]
  5951. ))
  5952. characterMakers.push(() => makeCharacter(
  5953. { name: "James", species: ["deer"], tags: ["anthro"] },
  5954. {
  5955. side: {
  5956. height: math.unit(2, "meters"),
  5957. weight: math.unit(100, "kg"),
  5958. name: "Front",
  5959. image: {
  5960. source: "./media/characters/james/front.svg",
  5961. extra: 10 / 8.5
  5962. }
  5963. },
  5964. },
  5965. [
  5966. {
  5967. name: "Normal",
  5968. height: math.unit(8.5, "feet"),
  5969. default: true
  5970. }
  5971. ]
  5972. ))
  5973. characterMakers.push(() => makeCharacter(
  5974. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5975. {
  5976. side: {
  5977. height: math.unit(9.5, "feet"),
  5978. weight: math.unit(2500, "lbs"),
  5979. name: "Side",
  5980. image: {
  5981. source: "./media/characters/heather/side.svg"
  5982. }
  5983. },
  5984. },
  5985. [
  5986. {
  5987. name: "Normal",
  5988. height: math.unit(9.5, "feet"),
  5989. default: true
  5990. }
  5991. ]
  5992. ))
  5993. characterMakers.push(() => makeCharacter(
  5994. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5995. {
  5996. side: {
  5997. height: math.unit(6.5, "feet"),
  5998. weight: math.unit(400, "lbs"),
  5999. name: "Side",
  6000. image: {
  6001. source: "./media/characters/lukas/side.svg",
  6002. extra: 7.25 / 6.5
  6003. }
  6004. },
  6005. },
  6006. [
  6007. {
  6008. name: "Normal",
  6009. height: math.unit(6.5, "feet"),
  6010. default: true
  6011. }
  6012. ]
  6013. ))
  6014. characterMakers.push(() => makeCharacter(
  6015. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  6016. {
  6017. side: {
  6018. height: math.unit(5, "feet"),
  6019. weight: math.unit(3000, "lbs"),
  6020. name: "Side",
  6021. image: {
  6022. source: "./media/characters/louise/side.svg"
  6023. }
  6024. },
  6025. },
  6026. [
  6027. {
  6028. name: "Normal",
  6029. height: math.unit(5, "feet"),
  6030. default: true
  6031. }
  6032. ]
  6033. ))
  6034. characterMakers.push(() => makeCharacter(
  6035. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6036. {
  6037. side: {
  6038. height: math.unit(6, "feet"),
  6039. weight: math.unit(150, "lbs"),
  6040. name: "Side",
  6041. image: {
  6042. source: "./media/characters/ramona/side.svg",
  6043. extra: 871/854,
  6044. bottom: 41/912
  6045. }
  6046. },
  6047. },
  6048. [
  6049. {
  6050. name: "Normal",
  6051. height: math.unit(6 + 4/12, "feet")
  6052. },
  6053. {
  6054. name: "Minimacro",
  6055. height: math.unit(5.3, "meters"),
  6056. default: true
  6057. },
  6058. {
  6059. name: "Macro",
  6060. height: math.unit(20, "stories")
  6061. },
  6062. {
  6063. name: "Macro+",
  6064. height: math.unit(50, "stories")
  6065. },
  6066. ]
  6067. ))
  6068. characterMakers.push(() => makeCharacter(
  6069. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6070. {
  6071. standing: {
  6072. height: math.unit(5.75, "feet"),
  6073. weight: math.unit(160, "lbs"),
  6074. name: "Standing",
  6075. image: {
  6076. source: "./media/characters/deerpuff/standing.svg",
  6077. extra: 682 / 624
  6078. }
  6079. },
  6080. sitting: {
  6081. height: math.unit(5.75 / 1.79, "feet"),
  6082. weight: math.unit(160, "lbs"),
  6083. name: "Sitting",
  6084. image: {
  6085. source: "./media/characters/deerpuff/sitting.svg",
  6086. bottom: 44 / 400,
  6087. extra: 1
  6088. }
  6089. },
  6090. taurLaying: {
  6091. height: math.unit(6, "feet"),
  6092. weight: math.unit(400, "lbs"),
  6093. name: "Taur (Laying)",
  6094. image: {
  6095. source: "./media/characters/deerpuff/taur-laying.svg"
  6096. }
  6097. },
  6098. },
  6099. [
  6100. {
  6101. name: "Puffball",
  6102. height: math.unit(6, "inches")
  6103. },
  6104. {
  6105. name: "Normalpuff",
  6106. height: math.unit(5.75, "feet")
  6107. },
  6108. {
  6109. name: "Macropuff",
  6110. height: math.unit(1500, "feet"),
  6111. default: true
  6112. },
  6113. {
  6114. name: "Megapuff",
  6115. height: math.unit(500, "miles")
  6116. },
  6117. {
  6118. name: "Gigapuff",
  6119. height: math.unit(250000, "miles")
  6120. },
  6121. {
  6122. name: "Omegapuff",
  6123. height: math.unit(1000, "lightyears")
  6124. },
  6125. ]
  6126. ))
  6127. characterMakers.push(() => makeCharacter(
  6128. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6129. {
  6130. stomping: {
  6131. height: math.unit(6, "feet"),
  6132. weight: math.unit(170, "lbs"),
  6133. name: "Stomping",
  6134. image: {
  6135. source: "./media/characters/vivian/stomping.svg"
  6136. }
  6137. },
  6138. sitting: {
  6139. height: math.unit(6 / 1.75, "feet"),
  6140. weight: math.unit(170, "lbs"),
  6141. name: "Sitting",
  6142. image: {
  6143. source: "./media/characters/vivian/sitting.svg",
  6144. bottom: 1 / 6.4,
  6145. extra: 1,
  6146. }
  6147. },
  6148. },
  6149. [
  6150. {
  6151. name: "Normal",
  6152. height: math.unit(7, "feet"),
  6153. default: true
  6154. },
  6155. {
  6156. name: "Macro",
  6157. height: math.unit(10, "stories")
  6158. },
  6159. {
  6160. name: "Macro+",
  6161. height: math.unit(30, "stories")
  6162. },
  6163. {
  6164. name: "Megamacro",
  6165. height: math.unit(10, "miles")
  6166. },
  6167. {
  6168. name: "Megamacro+",
  6169. height: math.unit(2750000, "meters")
  6170. },
  6171. ]
  6172. ))
  6173. characterMakers.push(() => makeCharacter(
  6174. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6175. {
  6176. front: {
  6177. height: math.unit(6, "feet"),
  6178. weight: math.unit(160, "lbs"),
  6179. name: "Front",
  6180. image: {
  6181. source: "./media/characters/prince/front.svg",
  6182. extra: 1938/1682,
  6183. bottom: 45/1983
  6184. }
  6185. },
  6186. back: {
  6187. height: math.unit(6, "feet"),
  6188. weight: math.unit(160, "lbs"),
  6189. name: "Back",
  6190. image: {
  6191. source: "./media/characters/prince/back.svg",
  6192. extra: 1955/1726,
  6193. bottom: 6/1961
  6194. }
  6195. },
  6196. },
  6197. [
  6198. {
  6199. name: "Normal",
  6200. height: math.unit(7.75, "feet"),
  6201. default: true
  6202. },
  6203. {
  6204. name: "Not cute",
  6205. height: math.unit(17, "feet")
  6206. },
  6207. {
  6208. name: "I said NOT",
  6209. height: math.unit(91, "feet")
  6210. },
  6211. {
  6212. name: "Please stop",
  6213. height: math.unit(560, "feet")
  6214. },
  6215. {
  6216. name: "What have you done",
  6217. height: math.unit(2200, "feet")
  6218. },
  6219. {
  6220. name: "Deer God",
  6221. height: math.unit(3.6, "miles")
  6222. },
  6223. ]
  6224. ))
  6225. characterMakers.push(() => makeCharacter(
  6226. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6227. {
  6228. standing: {
  6229. height: math.unit(6, "feet"),
  6230. weight: math.unit(300, "lbs"),
  6231. name: "Standing",
  6232. image: {
  6233. source: "./media/characters/psymon/standing.svg",
  6234. extra: 1888 / 1810,
  6235. bottom: 0.05
  6236. }
  6237. },
  6238. slithering: {
  6239. height: math.unit(6, "feet"),
  6240. weight: math.unit(300, "lbs"),
  6241. name: "Slithering",
  6242. image: {
  6243. source: "./media/characters/psymon/slithering.svg",
  6244. extra: 1330 / 1224
  6245. }
  6246. },
  6247. slitheringAlt: {
  6248. height: math.unit(6, "feet"),
  6249. weight: math.unit(300, "lbs"),
  6250. name: "Slithering (Alt)",
  6251. image: {
  6252. source: "./media/characters/psymon/slithering-alt.svg",
  6253. extra: 1330 / 1224
  6254. }
  6255. },
  6256. },
  6257. [
  6258. {
  6259. name: "Normal",
  6260. height: math.unit(11.25, "feet"),
  6261. default: true
  6262. },
  6263. {
  6264. name: "Large",
  6265. height: math.unit(27, "feet")
  6266. },
  6267. {
  6268. name: "Giant",
  6269. height: math.unit(87, "feet")
  6270. },
  6271. {
  6272. name: "Macro",
  6273. height: math.unit(365, "feet")
  6274. },
  6275. {
  6276. name: "Megamacro",
  6277. height: math.unit(3, "miles")
  6278. },
  6279. {
  6280. name: "World Serpent",
  6281. height: math.unit(8000, "miles")
  6282. },
  6283. ]
  6284. ))
  6285. characterMakers.push(() => makeCharacter(
  6286. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6287. {
  6288. front: {
  6289. height: math.unit(6, "feet"),
  6290. weight: math.unit(180, "lbs"),
  6291. name: "Front",
  6292. image: {
  6293. source: "./media/characters/daimos/front.svg",
  6294. extra: 4160 / 3897,
  6295. bottom: 0.021
  6296. }
  6297. }
  6298. },
  6299. [
  6300. {
  6301. name: "Normal",
  6302. height: math.unit(8, "feet"),
  6303. default: true
  6304. },
  6305. {
  6306. name: "Big Dog",
  6307. height: math.unit(22, "feet")
  6308. },
  6309. {
  6310. name: "Macro",
  6311. height: math.unit(127, "feet")
  6312. },
  6313. {
  6314. name: "Megamacro",
  6315. height: math.unit(3600, "feet")
  6316. },
  6317. ]
  6318. ))
  6319. characterMakers.push(() => makeCharacter(
  6320. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6321. {
  6322. side: {
  6323. height: math.unit(6, "feet"),
  6324. weight: math.unit(180, "lbs"),
  6325. name: "Side",
  6326. image: {
  6327. source: "./media/characters/blake/side.svg",
  6328. extra: 1212 / 1120,
  6329. bottom: 0.05
  6330. }
  6331. },
  6332. crouched: {
  6333. height: math.unit(6 * 0.57, "feet"),
  6334. weight: math.unit(180, "lbs"),
  6335. name: "Crouched",
  6336. image: {
  6337. source: "./media/characters/blake/crouched.svg",
  6338. extra: 840 / 587,
  6339. bottom: 0.04
  6340. }
  6341. },
  6342. bent: {
  6343. height: math.unit(6 * 0.75, "feet"),
  6344. weight: math.unit(180, "lbs"),
  6345. name: "Bent",
  6346. image: {
  6347. source: "./media/characters/blake/bent.svg",
  6348. extra: 592 / 544,
  6349. bottom: 0.035
  6350. }
  6351. },
  6352. },
  6353. [
  6354. {
  6355. name: "Normal",
  6356. height: math.unit(8 + 1 / 6, "feet"),
  6357. default: true
  6358. },
  6359. {
  6360. name: "Big Backside",
  6361. height: math.unit(37, "feet")
  6362. },
  6363. {
  6364. name: "Subway Shredder",
  6365. height: math.unit(72, "feet")
  6366. },
  6367. {
  6368. name: "City Carver",
  6369. height: math.unit(1675, "feet")
  6370. },
  6371. {
  6372. name: "Tectonic Tweaker",
  6373. height: math.unit(2300, "miles")
  6374. },
  6375. ]
  6376. ))
  6377. characterMakers.push(() => makeCharacter(
  6378. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6379. {
  6380. front: {
  6381. height: math.unit(6, "feet"),
  6382. weight: math.unit(180, "lbs"),
  6383. name: "Front",
  6384. image: {
  6385. source: "./media/characters/guisetto/front.svg",
  6386. extra: 856 / 817,
  6387. bottom: 0.06
  6388. }
  6389. },
  6390. airborne: {
  6391. height: math.unit(6, "feet"),
  6392. weight: math.unit(180, "lbs"),
  6393. name: "Airborne",
  6394. image: {
  6395. source: "./media/characters/guisetto/airborne.svg",
  6396. extra: 584 / 525
  6397. }
  6398. },
  6399. },
  6400. [
  6401. {
  6402. name: "Normal",
  6403. height: math.unit(10 + 11 / 12, "feet"),
  6404. default: true
  6405. },
  6406. {
  6407. name: "Large",
  6408. height: math.unit(35, "feet")
  6409. },
  6410. {
  6411. name: "Macro",
  6412. height: math.unit(475, "feet")
  6413. },
  6414. ]
  6415. ))
  6416. characterMakers.push(() => makeCharacter(
  6417. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6418. {
  6419. front: {
  6420. height: math.unit(6, "feet"),
  6421. weight: math.unit(180, "lbs"),
  6422. name: "Front",
  6423. image: {
  6424. source: "./media/characters/luxor/front.svg",
  6425. extra: 2940 / 2152
  6426. }
  6427. },
  6428. back: {
  6429. height: math.unit(6, "feet"),
  6430. weight: math.unit(180, "lbs"),
  6431. name: "Back",
  6432. image: {
  6433. source: "./media/characters/luxor/back.svg",
  6434. extra: 1083 / 960
  6435. }
  6436. },
  6437. },
  6438. [
  6439. {
  6440. name: "Normal",
  6441. height: math.unit(5 + 5 / 6, "feet"),
  6442. default: true
  6443. },
  6444. {
  6445. name: "Lamp",
  6446. height: math.unit(50, "feet")
  6447. },
  6448. {
  6449. name: "Lämp",
  6450. height: math.unit(300, "feet")
  6451. },
  6452. {
  6453. name: "The sun is a lamp",
  6454. height: math.unit(250000, "miles")
  6455. },
  6456. ]
  6457. ))
  6458. characterMakers.push(() => makeCharacter(
  6459. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6460. {
  6461. front: {
  6462. height: math.unit(6, "feet"),
  6463. weight: math.unit(50, "lbs"),
  6464. name: "Front",
  6465. image: {
  6466. source: "./media/characters/huoyan/front.svg"
  6467. }
  6468. },
  6469. side: {
  6470. height: math.unit(6, "feet"),
  6471. weight: math.unit(180, "lbs"),
  6472. name: "Side",
  6473. image: {
  6474. source: "./media/characters/huoyan/side.svg"
  6475. }
  6476. },
  6477. },
  6478. [
  6479. {
  6480. name: "Chef",
  6481. height: math.unit(9, "feet")
  6482. },
  6483. {
  6484. name: "Normal",
  6485. height: math.unit(65, "feet"),
  6486. default: true
  6487. },
  6488. {
  6489. name: "Macro",
  6490. height: math.unit(780, "feet")
  6491. },
  6492. {
  6493. name: "Flaming Mountain",
  6494. height: math.unit(4.8, "miles")
  6495. },
  6496. {
  6497. name: "Celestial",
  6498. height: math.unit(765000, "miles")
  6499. },
  6500. ]
  6501. ))
  6502. characterMakers.push(() => makeCharacter(
  6503. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6504. {
  6505. front: {
  6506. height: math.unit(5 + 3 / 4, "feet"),
  6507. weight: math.unit(120, "lbs"),
  6508. name: "Front",
  6509. image: {
  6510. source: "./media/characters/tails/front.svg"
  6511. }
  6512. }
  6513. },
  6514. [
  6515. {
  6516. name: "Normal",
  6517. height: math.unit(5 + 3 / 4, "feet"),
  6518. default: true
  6519. }
  6520. ]
  6521. ))
  6522. characterMakers.push(() => makeCharacter(
  6523. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6524. {
  6525. front: {
  6526. height: math.unit(4, "feet"),
  6527. weight: math.unit(50, "lbs"),
  6528. name: "Front",
  6529. image: {
  6530. source: "./media/characters/rainy/front.svg"
  6531. }
  6532. }
  6533. },
  6534. [
  6535. {
  6536. name: "Macro",
  6537. height: math.unit(800, "feet"),
  6538. default: true
  6539. }
  6540. ]
  6541. ))
  6542. characterMakers.push(() => makeCharacter(
  6543. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6544. {
  6545. front: {
  6546. height: math.unit(6, "feet"),
  6547. weight: math.unit(150, "lbs"),
  6548. name: "Front",
  6549. image: {
  6550. source: "./media/characters/rainier/front.svg"
  6551. }
  6552. }
  6553. },
  6554. [
  6555. {
  6556. name: "Micro",
  6557. height: math.unit(2, "mm"),
  6558. default: true
  6559. }
  6560. ]
  6561. ))
  6562. characterMakers.push(() => makeCharacter(
  6563. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6564. {
  6565. front: {
  6566. height: math.unit(8 + 4/12, "feet"),
  6567. weight: math.unit(450, "kilograms"),
  6568. volume: math.unit(5, "cups"),
  6569. name: "Front",
  6570. image: {
  6571. source: "./media/characters/andy-renard/front.svg",
  6572. extra: 1839/1726,
  6573. bottom: 134/1973
  6574. }
  6575. },
  6576. back: {
  6577. height: math.unit(8 + 4/12, "feet"),
  6578. weight: math.unit(450, "kilograms"),
  6579. volume: math.unit(5, "cups"),
  6580. name: "Back",
  6581. image: {
  6582. source: "./media/characters/andy-renard/back.svg",
  6583. extra: 1838/1710,
  6584. bottom: 105/1943
  6585. }
  6586. },
  6587. },
  6588. [
  6589. {
  6590. name: "Tall",
  6591. height: math.unit(8 + 4/12, "feet")
  6592. },
  6593. {
  6594. name: "Mini Macro",
  6595. height: math.unit(15, "feet"),
  6596. default: true
  6597. },
  6598. {
  6599. name: "Macro",
  6600. height: math.unit(100, "feet")
  6601. },
  6602. {
  6603. name: "Mega Macro",
  6604. height: math.unit(1000, "feet")
  6605. },
  6606. {
  6607. name: "Giga Macro",
  6608. height: math.unit(10, "miles")
  6609. },
  6610. {
  6611. name: "God Macro",
  6612. height: math.unit(1, "multiverse")
  6613. },
  6614. ]
  6615. ))
  6616. characterMakers.push(() => makeCharacter(
  6617. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6618. {
  6619. front: {
  6620. height: math.unit(6, "feet"),
  6621. weight: math.unit(210, "lbs"),
  6622. name: "Front",
  6623. image: {
  6624. source: "./media/characters/cimmaron/front-sfw.svg",
  6625. extra: 701 / 676,
  6626. bottom: 0.046
  6627. }
  6628. },
  6629. back: {
  6630. height: math.unit(6, "feet"),
  6631. weight: math.unit(210, "lbs"),
  6632. name: "Back",
  6633. image: {
  6634. source: "./media/characters/cimmaron/back-sfw.svg",
  6635. extra: 701 / 676,
  6636. bottom: 0.046
  6637. }
  6638. },
  6639. frontNsfw: {
  6640. height: math.unit(6, "feet"),
  6641. weight: math.unit(210, "lbs"),
  6642. name: "Front (NSFW)",
  6643. image: {
  6644. source: "./media/characters/cimmaron/front-nsfw.svg",
  6645. extra: 701 / 676,
  6646. bottom: 0.046
  6647. }
  6648. },
  6649. backNsfw: {
  6650. height: math.unit(6, "feet"),
  6651. weight: math.unit(210, "lbs"),
  6652. name: "Back (NSFW)",
  6653. image: {
  6654. source: "./media/characters/cimmaron/back-nsfw.svg",
  6655. extra: 701 / 676,
  6656. bottom: 0.046
  6657. }
  6658. },
  6659. dick: {
  6660. height: math.unit(1.714, "feet"),
  6661. name: "Dick",
  6662. image: {
  6663. source: "./media/characters/cimmaron/dick.svg"
  6664. }
  6665. },
  6666. },
  6667. [
  6668. {
  6669. name: "Normal",
  6670. height: math.unit(6, "feet"),
  6671. default: true
  6672. },
  6673. {
  6674. name: "Macro Mayor",
  6675. height: math.unit(350, "meters")
  6676. },
  6677. ]
  6678. ))
  6679. characterMakers.push(() => makeCharacter(
  6680. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6681. {
  6682. front: {
  6683. height: math.unit(6, "feet"),
  6684. weight: math.unit(200, "lbs"),
  6685. name: "Front",
  6686. image: {
  6687. source: "./media/characters/akari/front.svg",
  6688. extra: 962 / 901,
  6689. bottom: 0.04
  6690. }
  6691. }
  6692. },
  6693. [
  6694. {
  6695. name: "Micro",
  6696. height: math.unit(5, "inches"),
  6697. default: true
  6698. },
  6699. {
  6700. name: "Normal",
  6701. height: math.unit(7, "feet")
  6702. },
  6703. ]
  6704. ))
  6705. characterMakers.push(() => makeCharacter(
  6706. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6707. {
  6708. front: {
  6709. height: math.unit(6, "feet"),
  6710. weight: math.unit(140, "lbs"),
  6711. name: "Front",
  6712. image: {
  6713. source: "./media/characters/cynosura/front.svg",
  6714. extra: 437/410,
  6715. bottom: 9/446
  6716. }
  6717. },
  6718. back: {
  6719. height: math.unit(6, "feet"),
  6720. weight: math.unit(140, "lbs"),
  6721. name: "Back",
  6722. image: {
  6723. source: "./media/characters/cynosura/back.svg",
  6724. extra: 1304/1160,
  6725. bottom: 71/1375
  6726. }
  6727. },
  6728. },
  6729. [
  6730. {
  6731. name: "Micro",
  6732. height: math.unit(4, "inches")
  6733. },
  6734. {
  6735. name: "Normal",
  6736. height: math.unit(5.75, "feet"),
  6737. default: true
  6738. },
  6739. {
  6740. name: "Tall",
  6741. height: math.unit(10, "feet")
  6742. },
  6743. {
  6744. name: "Big",
  6745. height: math.unit(20, "feet")
  6746. },
  6747. {
  6748. name: "Macro",
  6749. height: math.unit(50, "feet")
  6750. },
  6751. ]
  6752. ))
  6753. characterMakers.push(() => makeCharacter(
  6754. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6755. {
  6756. front: {
  6757. height: math.unit(13 + 2/12, "feet"),
  6758. weight: math.unit(800, "kg"),
  6759. name: "Front",
  6760. image: {
  6761. source: "./media/characters/gin/front.svg",
  6762. extra: 1312/1191,
  6763. bottom: 45/1357
  6764. }
  6765. },
  6766. mouth: {
  6767. height: math.unit(2.39 * 1.8, "feet"),
  6768. name: "Mouth",
  6769. image: {
  6770. source: "./media/characters/gin/mouth.svg"
  6771. }
  6772. },
  6773. hand: {
  6774. height: math.unit(1.57 * 2.19, "feet"),
  6775. name: "Hand",
  6776. image: {
  6777. source: "./media/characters/gin/hand.svg"
  6778. }
  6779. },
  6780. foot: {
  6781. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6782. name: "Foot",
  6783. image: {
  6784. source: "./media/characters/gin/foot.svg"
  6785. }
  6786. },
  6787. sole: {
  6788. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6789. name: "Sole",
  6790. image: {
  6791. source: "./media/characters/gin/sole.svg"
  6792. }
  6793. },
  6794. },
  6795. [
  6796. {
  6797. name: "Very Small",
  6798. height: math.unit(13 + 2 / 12, "feet")
  6799. },
  6800. {
  6801. name: "Micro",
  6802. height: math.unit(600, "miles")
  6803. },
  6804. {
  6805. name: "Regular",
  6806. height: math.unit(20, "earths"),
  6807. default: true
  6808. },
  6809. {
  6810. name: "Macro",
  6811. height: math.unit(2.2, "solarradii")
  6812. },
  6813. {
  6814. name: "Teramacro",
  6815. height: math.unit(1.2, "galaxies")
  6816. },
  6817. {
  6818. name: "Omegamacro",
  6819. height: math.unit(200, "universes")
  6820. },
  6821. ]
  6822. ))
  6823. characterMakers.push(() => makeCharacter(
  6824. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6825. {
  6826. front: {
  6827. height: math.unit(6 + 1 / 6, "feet"),
  6828. weight: math.unit(178, "lbs"),
  6829. name: "Front",
  6830. image: {
  6831. source: "./media/characters/guy/front.svg"
  6832. }
  6833. }
  6834. },
  6835. [
  6836. {
  6837. name: "Normal",
  6838. height: math.unit(6 + 1 / 6, "feet"),
  6839. default: true
  6840. },
  6841. {
  6842. name: "Large",
  6843. height: math.unit(25 + 7 / 12, "feet")
  6844. },
  6845. {
  6846. name: "Macro",
  6847. height: math.unit(60 + 9 / 12, "feet")
  6848. },
  6849. {
  6850. name: "Macro+",
  6851. height: math.unit(246, "feet")
  6852. },
  6853. {
  6854. name: "Macro++",
  6855. height: math.unit(878, "feet")
  6856. }
  6857. ]
  6858. ))
  6859. characterMakers.push(() => makeCharacter(
  6860. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6861. {
  6862. front: {
  6863. height: math.unit(9, "feet"),
  6864. weight: math.unit(800, "lbs"),
  6865. name: "Front",
  6866. image: {
  6867. source: "./media/characters/tiberius/front.svg",
  6868. extra: 2295 / 2071
  6869. }
  6870. },
  6871. back: {
  6872. height: math.unit(9, "feet"),
  6873. weight: math.unit(800, "lbs"),
  6874. name: "Back",
  6875. image: {
  6876. source: "./media/characters/tiberius/back.svg",
  6877. extra: 2373 / 2160
  6878. }
  6879. },
  6880. },
  6881. [
  6882. {
  6883. name: "Normal",
  6884. height: math.unit(9, "feet"),
  6885. default: true
  6886. }
  6887. ]
  6888. ))
  6889. characterMakers.push(() => makeCharacter(
  6890. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6891. {
  6892. front: {
  6893. height: math.unit(6, "feet"),
  6894. weight: math.unit(600, "lbs"),
  6895. name: "Front",
  6896. image: {
  6897. source: "./media/characters/surgo/front.svg",
  6898. extra: 3591 / 2227
  6899. }
  6900. },
  6901. back: {
  6902. height: math.unit(6, "feet"),
  6903. weight: math.unit(600, "lbs"),
  6904. name: "Back",
  6905. image: {
  6906. source: "./media/characters/surgo/back.svg",
  6907. extra: 3557 / 2228
  6908. }
  6909. },
  6910. laying: {
  6911. height: math.unit(6 * 0.85, "feet"),
  6912. weight: math.unit(600, "lbs"),
  6913. name: "Laying",
  6914. image: {
  6915. source: "./media/characters/surgo/laying.svg"
  6916. }
  6917. },
  6918. },
  6919. [
  6920. {
  6921. name: "Normal",
  6922. height: math.unit(6, "feet"),
  6923. default: true
  6924. }
  6925. ]
  6926. ))
  6927. characterMakers.push(() => makeCharacter(
  6928. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6929. {
  6930. side: {
  6931. height: math.unit(6, "feet"),
  6932. weight: math.unit(150, "lbs"),
  6933. name: "Side",
  6934. image: {
  6935. source: "./media/characters/cibus/side.svg",
  6936. extra: 800 / 400
  6937. }
  6938. },
  6939. },
  6940. [
  6941. {
  6942. name: "Normal",
  6943. height: math.unit(6, "feet"),
  6944. default: true
  6945. }
  6946. ]
  6947. ))
  6948. characterMakers.push(() => makeCharacter(
  6949. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6950. {
  6951. front: {
  6952. height: math.unit(6, "feet"),
  6953. weight: math.unit(240, "lbs"),
  6954. name: "Front",
  6955. image: {
  6956. source: "./media/characters/nibbles/front.svg"
  6957. }
  6958. },
  6959. side: {
  6960. height: math.unit(6, "feet"),
  6961. weight: math.unit(240, "lbs"),
  6962. name: "Side",
  6963. image: {
  6964. source: "./media/characters/nibbles/side.svg"
  6965. }
  6966. },
  6967. },
  6968. [
  6969. {
  6970. name: "Normal",
  6971. height: math.unit(9, "feet"),
  6972. default: true
  6973. }
  6974. ]
  6975. ))
  6976. characterMakers.push(() => makeCharacter(
  6977. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6978. {
  6979. side: {
  6980. height: math.unit(5 + 1 / 6, "feet"),
  6981. weight: math.unit(130, "lbs"),
  6982. name: "Side",
  6983. image: {
  6984. source: "./media/characters/rikky/side.svg",
  6985. extra: 851 / 801
  6986. }
  6987. },
  6988. },
  6989. [
  6990. {
  6991. name: "Normal",
  6992. height: math.unit(5 + 1 / 6, "feet")
  6993. },
  6994. {
  6995. name: "Macro",
  6996. height: math.unit(152, "feet"),
  6997. default: true
  6998. },
  6999. {
  7000. name: "Megamacro",
  7001. height: math.unit(7, "miles")
  7002. }
  7003. ]
  7004. ))
  7005. characterMakers.push(() => makeCharacter(
  7006. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  7007. {
  7008. side: {
  7009. height: math.unit(370, "cm"),
  7010. weight: math.unit(350, "lbs"),
  7011. name: "Side",
  7012. image: {
  7013. source: "./media/characters/malfressa/side.svg"
  7014. }
  7015. },
  7016. walking: {
  7017. height: math.unit(370, "cm"),
  7018. weight: math.unit(350, "lbs"),
  7019. name: "Walking",
  7020. image: {
  7021. source: "./media/characters/malfressa/walking.svg"
  7022. }
  7023. },
  7024. feral: {
  7025. height: math.unit(2500, "cm"),
  7026. weight: math.unit(100000, "lbs"),
  7027. name: "Feral",
  7028. image: {
  7029. source: "./media/characters/malfressa/feral.svg",
  7030. extra: 2108 / 837,
  7031. bottom: 0.02
  7032. }
  7033. },
  7034. },
  7035. [
  7036. {
  7037. name: "Normal",
  7038. height: math.unit(370, "cm")
  7039. },
  7040. {
  7041. name: "Macro",
  7042. height: math.unit(300, "meters"),
  7043. default: true
  7044. }
  7045. ]
  7046. ))
  7047. characterMakers.push(() => makeCharacter(
  7048. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7049. {
  7050. front: {
  7051. height: math.unit(6, "feet"),
  7052. weight: math.unit(60, "kg"),
  7053. name: "Front",
  7054. image: {
  7055. source: "./media/characters/jaro/front.svg",
  7056. extra: 845/817,
  7057. bottom: 45/890
  7058. }
  7059. },
  7060. back: {
  7061. height: math.unit(6, "feet"),
  7062. weight: math.unit(60, "kg"),
  7063. name: "Back",
  7064. image: {
  7065. source: "./media/characters/jaro/back.svg",
  7066. extra: 847/817,
  7067. bottom: 34/881
  7068. }
  7069. },
  7070. },
  7071. [
  7072. {
  7073. name: "Micro",
  7074. height: math.unit(7, "inches")
  7075. },
  7076. {
  7077. name: "Normal",
  7078. height: math.unit(5.5, "feet"),
  7079. default: true
  7080. },
  7081. {
  7082. name: "Minimacro",
  7083. height: math.unit(20, "feet")
  7084. },
  7085. {
  7086. name: "Macro",
  7087. height: math.unit(200, "meters")
  7088. }
  7089. ]
  7090. ))
  7091. characterMakers.push(() => makeCharacter(
  7092. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7093. {
  7094. front: {
  7095. height: math.unit(6, "feet"),
  7096. weight: math.unit(195, "lb"),
  7097. name: "Front",
  7098. image: {
  7099. source: "./media/characters/rogue/front.svg"
  7100. }
  7101. },
  7102. },
  7103. [
  7104. {
  7105. name: "Macro",
  7106. height: math.unit(90, "feet"),
  7107. default: true
  7108. },
  7109. ]
  7110. ))
  7111. characterMakers.push(() => makeCharacter(
  7112. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7113. {
  7114. standing: {
  7115. height: math.unit(5 + 8 / 12, "feet"),
  7116. weight: math.unit(140, "lb"),
  7117. name: "Standing",
  7118. image: {
  7119. source: "./media/characters/piper/standing.svg",
  7120. extra: 1440/1284,
  7121. bottom: 66/1506
  7122. }
  7123. },
  7124. running: {
  7125. height: math.unit(5 + 8 / 12, "feet"),
  7126. weight: math.unit(140, "lb"),
  7127. name: "Running",
  7128. image: {
  7129. source: "./media/characters/piper/running.svg",
  7130. extra: 3948/3655,
  7131. bottom: 0/3948
  7132. }
  7133. },
  7134. sole: {
  7135. height: math.unit(0.81, "feet"),
  7136. weight: math.unit(2, "kg"),
  7137. name: "Sole",
  7138. image: {
  7139. source: "./media/characters/piper/sole.svg"
  7140. }
  7141. },
  7142. nipple: {
  7143. height: math.unit(0.25, "feet"),
  7144. weight: math.unit(1.5, "lb"),
  7145. name: "Nipple",
  7146. image: {
  7147. source: "./media/characters/piper/nipple.svg"
  7148. }
  7149. },
  7150. head: {
  7151. height: math.unit(1.1, "feet"),
  7152. name: "Head",
  7153. image: {
  7154. source: "./media/characters/piper/head.svg"
  7155. }
  7156. },
  7157. },
  7158. [
  7159. {
  7160. name: "Micro",
  7161. height: math.unit(2, "inches")
  7162. },
  7163. {
  7164. name: "Normal",
  7165. height: math.unit(5 + 8 / 12, "feet")
  7166. },
  7167. {
  7168. name: "Macro",
  7169. height: math.unit(250, "feet"),
  7170. default: true
  7171. },
  7172. {
  7173. name: "Megamacro",
  7174. height: math.unit(7, "miles")
  7175. },
  7176. ]
  7177. ))
  7178. characterMakers.push(() => makeCharacter(
  7179. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7180. {
  7181. front: {
  7182. height: math.unit(6, "feet"),
  7183. weight: math.unit(220, "lb"),
  7184. name: "Front",
  7185. image: {
  7186. source: "./media/characters/gemini/front.svg"
  7187. }
  7188. },
  7189. back: {
  7190. height: math.unit(6, "feet"),
  7191. weight: math.unit(220, "lb"),
  7192. name: "Back",
  7193. image: {
  7194. source: "./media/characters/gemini/back.svg"
  7195. }
  7196. },
  7197. kneeling: {
  7198. height: math.unit(6 / 1.5, "feet"),
  7199. weight: math.unit(220, "lb"),
  7200. name: "Kneeling",
  7201. image: {
  7202. source: "./media/characters/gemini/kneeling.svg",
  7203. bottom: 0.02
  7204. }
  7205. },
  7206. },
  7207. [
  7208. {
  7209. name: "Macro",
  7210. height: math.unit(300, "meters"),
  7211. default: true
  7212. },
  7213. {
  7214. name: "Megamacro",
  7215. height: math.unit(6900, "meters")
  7216. },
  7217. ]
  7218. ))
  7219. characterMakers.push(() => makeCharacter(
  7220. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7221. {
  7222. anthro: {
  7223. height: math.unit(2.35, "meters"),
  7224. weight: math.unit(73, "kg"),
  7225. name: "Anthro",
  7226. image: {
  7227. source: "./media/characters/alicia/anthro.svg",
  7228. extra: 2571 / 2385,
  7229. bottom: 75 / 2648
  7230. }
  7231. },
  7232. paw: {
  7233. height: math.unit(1.32, "feet"),
  7234. name: "Paw",
  7235. image: {
  7236. source: "./media/characters/alicia/paw.svg"
  7237. }
  7238. },
  7239. feral: {
  7240. height: math.unit(1.69, "meters"),
  7241. weight: math.unit(73, "kg"),
  7242. name: "Feral",
  7243. image: {
  7244. source: "./media/characters/alicia/feral.svg",
  7245. extra: 2123 / 1715,
  7246. bottom: 222 / 2349
  7247. }
  7248. },
  7249. },
  7250. [
  7251. {
  7252. name: "Normal",
  7253. height: math.unit(2.35, "meters")
  7254. },
  7255. {
  7256. name: "Macro",
  7257. height: math.unit(60, "meters"),
  7258. default: true
  7259. },
  7260. {
  7261. name: "Megamacro",
  7262. height: math.unit(10000, "kilometers")
  7263. },
  7264. ]
  7265. ))
  7266. characterMakers.push(() => makeCharacter(
  7267. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7268. {
  7269. front: {
  7270. height: math.unit(7, "feet"),
  7271. weight: math.unit(250, "lbs"),
  7272. name: "Front",
  7273. image: {
  7274. source: "./media/characters/archy/front.svg"
  7275. }
  7276. }
  7277. },
  7278. [
  7279. {
  7280. name: "Micro",
  7281. height: math.unit(1, "inch")
  7282. },
  7283. {
  7284. name: "Shorty",
  7285. height: math.unit(5, "feet")
  7286. },
  7287. {
  7288. name: "Normal",
  7289. height: math.unit(7, "feet")
  7290. },
  7291. {
  7292. name: "Macro",
  7293. height: math.unit(600, "meters"),
  7294. default: true
  7295. },
  7296. {
  7297. name: "Megamacro",
  7298. height: math.unit(1, "mile")
  7299. },
  7300. ]
  7301. ))
  7302. characterMakers.push(() => makeCharacter(
  7303. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7304. {
  7305. front: {
  7306. height: math.unit(1.65, "meters"),
  7307. weight: math.unit(74, "kg"),
  7308. name: "Front",
  7309. image: {
  7310. source: "./media/characters/berri/front.svg",
  7311. extra: 857 / 837,
  7312. bottom: 18 / 877
  7313. }
  7314. },
  7315. bum: {
  7316. height: math.unit(1.46, "feet"),
  7317. name: "Bum",
  7318. image: {
  7319. source: "./media/characters/berri/bum.svg"
  7320. }
  7321. },
  7322. mouth: {
  7323. height: math.unit(0.44, "feet"),
  7324. name: "Mouth",
  7325. image: {
  7326. source: "./media/characters/berri/mouth.svg"
  7327. }
  7328. },
  7329. paw: {
  7330. height: math.unit(0.826, "feet"),
  7331. name: "Paw",
  7332. image: {
  7333. source: "./media/characters/berri/paw.svg"
  7334. }
  7335. },
  7336. },
  7337. [
  7338. {
  7339. name: "Normal",
  7340. height: math.unit(1.65, "meters")
  7341. },
  7342. {
  7343. name: "Macro",
  7344. height: math.unit(60, "m"),
  7345. default: true
  7346. },
  7347. {
  7348. name: "Megamacro",
  7349. height: math.unit(9.213, "km")
  7350. },
  7351. {
  7352. name: "Planet Eater",
  7353. height: math.unit(489, "megameters")
  7354. },
  7355. {
  7356. name: "Teramacro",
  7357. height: math.unit(2471635000000, "meters")
  7358. },
  7359. {
  7360. name: "Examacro",
  7361. height: math.unit(8.0624e+26, "meters")
  7362. }
  7363. ]
  7364. ))
  7365. characterMakers.push(() => makeCharacter(
  7366. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7367. {
  7368. front: {
  7369. height: math.unit(1.72, "meters"),
  7370. weight: math.unit(68, "kg"),
  7371. name: "Front",
  7372. image: {
  7373. source: "./media/characters/lexi/front.svg"
  7374. }
  7375. }
  7376. },
  7377. [
  7378. {
  7379. name: "Very Smol",
  7380. height: math.unit(10, "mm")
  7381. },
  7382. {
  7383. name: "Micro",
  7384. height: math.unit(6.8, "cm"),
  7385. default: true
  7386. },
  7387. {
  7388. name: "Normal",
  7389. height: math.unit(1.72, "m")
  7390. }
  7391. ]
  7392. ))
  7393. characterMakers.push(() => makeCharacter(
  7394. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7395. {
  7396. front: {
  7397. height: math.unit(1.69, "meters"),
  7398. weight: math.unit(68, "kg"),
  7399. name: "Front",
  7400. image: {
  7401. source: "./media/characters/martin/front.svg",
  7402. extra: 596 / 581
  7403. }
  7404. }
  7405. },
  7406. [
  7407. {
  7408. name: "Micro",
  7409. height: math.unit(6.85, "cm"),
  7410. default: true
  7411. },
  7412. {
  7413. name: "Normal",
  7414. height: math.unit(1.69, "m")
  7415. }
  7416. ]
  7417. ))
  7418. characterMakers.push(() => makeCharacter(
  7419. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7420. {
  7421. front: {
  7422. height: math.unit(1.69, "meters"),
  7423. weight: math.unit(68, "kg"),
  7424. name: "Front",
  7425. image: {
  7426. source: "./media/characters/juno/front.svg"
  7427. }
  7428. }
  7429. },
  7430. [
  7431. {
  7432. name: "Micro",
  7433. height: math.unit(7, "cm")
  7434. },
  7435. {
  7436. name: "Normal",
  7437. height: math.unit(1.89, "m")
  7438. },
  7439. {
  7440. name: "Macro",
  7441. height: math.unit(353, "meters"),
  7442. default: true
  7443. }
  7444. ]
  7445. ))
  7446. characterMakers.push(() => makeCharacter(
  7447. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7448. {
  7449. front: {
  7450. height: math.unit(1.93, "meters"),
  7451. weight: math.unit(83, "kg"),
  7452. name: "Front",
  7453. image: {
  7454. source: "./media/characters/samantha/front.svg"
  7455. }
  7456. },
  7457. frontClothed: {
  7458. height: math.unit(1.93, "meters"),
  7459. weight: math.unit(83, "kg"),
  7460. name: "Front (Clothed)",
  7461. image: {
  7462. source: "./media/characters/samantha/front-clothed.svg"
  7463. }
  7464. },
  7465. back: {
  7466. height: math.unit(1.93, "meters"),
  7467. weight: math.unit(83, "kg"),
  7468. name: "Back",
  7469. image: {
  7470. source: "./media/characters/samantha/back.svg"
  7471. }
  7472. },
  7473. },
  7474. [
  7475. {
  7476. name: "Normal",
  7477. height: math.unit(1.93, "m")
  7478. },
  7479. {
  7480. name: "Macro",
  7481. height: math.unit(74, "meters"),
  7482. default: true
  7483. },
  7484. {
  7485. name: "Macro+",
  7486. height: math.unit(223, "meters"),
  7487. },
  7488. {
  7489. name: "Megamacro",
  7490. height: math.unit(8381, "meters"),
  7491. },
  7492. {
  7493. name: "Megamacro+",
  7494. height: math.unit(12000, "kilometers")
  7495. },
  7496. ]
  7497. ))
  7498. characterMakers.push(() => makeCharacter(
  7499. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7500. {
  7501. front: {
  7502. height: math.unit(1.92, "meters"),
  7503. weight: math.unit(80, "kg"),
  7504. name: "Front",
  7505. image: {
  7506. source: "./media/characters/dr-clay/front.svg"
  7507. }
  7508. },
  7509. frontClothed: {
  7510. height: math.unit(1.92, "meters"),
  7511. weight: math.unit(80, "kg"),
  7512. name: "Front (Clothed)",
  7513. image: {
  7514. source: "./media/characters/dr-clay/front-clothed.svg"
  7515. }
  7516. }
  7517. },
  7518. [
  7519. {
  7520. name: "Normal",
  7521. height: math.unit(1.92, "m")
  7522. },
  7523. {
  7524. name: "Macro",
  7525. height: math.unit(214, "meters"),
  7526. default: true
  7527. },
  7528. {
  7529. name: "Macro+",
  7530. height: math.unit(12.237, "meters"),
  7531. },
  7532. {
  7533. name: "Megamacro",
  7534. height: math.unit(557, "megameters"),
  7535. },
  7536. {
  7537. name: "Unimaginable",
  7538. height: math.unit(120e9, "lightyears")
  7539. },
  7540. ]
  7541. ))
  7542. characterMakers.push(() => makeCharacter(
  7543. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7544. {
  7545. front: {
  7546. height: math.unit(2, "meters"),
  7547. weight: math.unit(80, "kg"),
  7548. name: "Front",
  7549. image: {
  7550. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7551. }
  7552. }
  7553. },
  7554. [
  7555. {
  7556. name: "Teramacro",
  7557. height: math.unit(500000, "lightyears"),
  7558. default: true
  7559. },
  7560. ]
  7561. ))
  7562. characterMakers.push(() => makeCharacter(
  7563. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7564. {
  7565. crux: {
  7566. height: math.unit(2, "meters"),
  7567. weight: math.unit(150, "kg"),
  7568. name: "Crux",
  7569. image: {
  7570. source: "./media/characters/vemus/crux.svg",
  7571. extra: 1074/936,
  7572. bottom: 23/1097
  7573. }
  7574. },
  7575. skunkTanuki: {
  7576. height: math.unit(2, "meters"),
  7577. weight: math.unit(150, "kg"),
  7578. name: "Skunk-Tanuki",
  7579. image: {
  7580. source: "./media/characters/vemus/skunk-tanuki.svg",
  7581. extra: 926/893,
  7582. bottom: 20/946
  7583. }
  7584. },
  7585. },
  7586. [
  7587. {
  7588. name: "Normal",
  7589. height: math.unit(4, "meters"),
  7590. default: true
  7591. },
  7592. {
  7593. name: "Big",
  7594. height: math.unit(8, "meters")
  7595. },
  7596. {
  7597. name: "Macro",
  7598. height: math.unit(100, "meters")
  7599. },
  7600. {
  7601. name: "Macro+",
  7602. height: math.unit(1500, "meters")
  7603. },
  7604. {
  7605. name: "Stellar",
  7606. height: math.unit(14e8, "meters")
  7607. },
  7608. ]
  7609. ))
  7610. characterMakers.push(() => makeCharacter(
  7611. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7612. {
  7613. front: {
  7614. height: math.unit(2, "meters"),
  7615. weight: math.unit(70, "kg"),
  7616. name: "Front",
  7617. image: {
  7618. source: "./media/characters/beherit/front.svg",
  7619. extra: 1234/1109,
  7620. bottom: 55/1289
  7621. }
  7622. }
  7623. },
  7624. [
  7625. {
  7626. name: "Normal",
  7627. height: math.unit(6, "feet")
  7628. },
  7629. {
  7630. name: "Lorg",
  7631. height: math.unit(25, "feet"),
  7632. default: true
  7633. },
  7634. {
  7635. name: "Lorger",
  7636. height: math.unit(75, "feet")
  7637. },
  7638. {
  7639. name: "Macro",
  7640. height: math.unit(200, "meters")
  7641. },
  7642. ]
  7643. ))
  7644. characterMakers.push(() => makeCharacter(
  7645. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7646. {
  7647. front: {
  7648. height: math.unit(2, "meters"),
  7649. weight: math.unit(150, "kg"),
  7650. name: "Front",
  7651. image: {
  7652. source: "./media/characters/everett/front.svg",
  7653. extra: 1017/866,
  7654. bottom: 86/1103
  7655. }
  7656. },
  7657. paw: {
  7658. height: math.unit(2 / 3.6, "meters"),
  7659. name: "Paw",
  7660. image: {
  7661. source: "./media/characters/everett/paw.svg"
  7662. }
  7663. },
  7664. },
  7665. [
  7666. {
  7667. name: "Normal",
  7668. height: math.unit(15, "feet"),
  7669. default: true
  7670. },
  7671. {
  7672. name: "Lorg",
  7673. height: math.unit(70, "feet"),
  7674. default: true
  7675. },
  7676. {
  7677. name: "Lorger",
  7678. height: math.unit(250, "feet")
  7679. },
  7680. {
  7681. name: "Macro",
  7682. height: math.unit(500, "meters")
  7683. },
  7684. ]
  7685. ))
  7686. characterMakers.push(() => makeCharacter(
  7687. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7688. {
  7689. front: {
  7690. height: math.unit(2, "meters"),
  7691. weight: math.unit(86, "kg"),
  7692. name: "Front",
  7693. image: {
  7694. source: "./media/characters/rose/front.svg",
  7695. extra: 1785/1636,
  7696. bottom: 30/1815
  7697. },
  7698. form: "liom",
  7699. default: true
  7700. },
  7701. frontSporty: {
  7702. height: math.unit(2, "meters"),
  7703. weight: math.unit(86, "kg"),
  7704. name: "Front (Sporty)",
  7705. image: {
  7706. source: "./media/characters/rose/front-sporty.svg",
  7707. extra: 350/335,
  7708. bottom: 10/360
  7709. },
  7710. form: "liom"
  7711. },
  7712. frontAlt: {
  7713. height: math.unit(1.6, "meters"),
  7714. weight: math.unit(86, "kg"),
  7715. name: "Front (Alt)",
  7716. image: {
  7717. source: "./media/characters/rose/front-alt.svg",
  7718. extra: 299/283,
  7719. bottom: 3/302
  7720. },
  7721. form: "liom"
  7722. },
  7723. plush: {
  7724. height: math.unit(2, "meters"),
  7725. weight: math.unit(86/3, "kg"),
  7726. name: "Plush",
  7727. image: {
  7728. source: "./media/characters/rose/plush.svg",
  7729. extra: 361/337,
  7730. bottom: 11/372
  7731. },
  7732. form: "plush",
  7733. default: true
  7734. },
  7735. faeStanding: {
  7736. height: math.unit(10, "cm"),
  7737. weight: math.unit(10, "grams"),
  7738. name: "Standing",
  7739. image: {
  7740. source: "./media/characters/rose/fae-standing.svg",
  7741. extra: 1189/1060,
  7742. bottom: 27/1216
  7743. },
  7744. form: "fae",
  7745. default: true
  7746. },
  7747. faeSitting: {
  7748. height: math.unit(5, "cm"),
  7749. weight: math.unit(10, "grams"),
  7750. name: "Sitting",
  7751. image: {
  7752. source: "./media/characters/rose/fae-sitting.svg",
  7753. extra: 737/577,
  7754. bottom: 356/1093
  7755. },
  7756. form: "fae"
  7757. },
  7758. faePaw: {
  7759. height: math.unit(1.35, "cm"),
  7760. name: "Paw",
  7761. image: {
  7762. source: "./media/characters/rose/fae-paw.svg"
  7763. },
  7764. form: "fae"
  7765. },
  7766. },
  7767. [
  7768. {
  7769. name: "True Micro",
  7770. height: math.unit(9, "cm"),
  7771. form: "liom"
  7772. },
  7773. {
  7774. name: "Micro",
  7775. height: math.unit(16, "cm"),
  7776. form: "liom"
  7777. },
  7778. {
  7779. name: "Normal",
  7780. height: math.unit(1.85, "meters"),
  7781. default: true,
  7782. form: "liom"
  7783. },
  7784. {
  7785. name: "Mini-Macro",
  7786. height: math.unit(5, "meters"),
  7787. form: "liom"
  7788. },
  7789. {
  7790. name: "Macro",
  7791. height: math.unit(15, "meters"),
  7792. form: "liom"
  7793. },
  7794. {
  7795. name: "True Macro",
  7796. height: math.unit(40, "meters"),
  7797. form: "liom"
  7798. },
  7799. {
  7800. name: "City Scale",
  7801. height: math.unit(1, "km"),
  7802. form: "liom"
  7803. },
  7804. {
  7805. name: "Plushie",
  7806. height: math.unit(9, "cm"),
  7807. form: "plush",
  7808. default: true
  7809. },
  7810. {
  7811. name: "Fae",
  7812. height: math.unit(10, "cm"),
  7813. form: "fae",
  7814. default: true
  7815. },
  7816. ],
  7817. {
  7818. "liom": {
  7819. name: "Liom"
  7820. },
  7821. "plush": {
  7822. name: "Plush"
  7823. },
  7824. "fae": {
  7825. name: "Fae Fox",
  7826. default: true
  7827. }
  7828. }
  7829. ))
  7830. characterMakers.push(() => makeCharacter(
  7831. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7832. {
  7833. front: {
  7834. height: math.unit(2, "meters"),
  7835. weight: math.unit(350, "lbs"),
  7836. name: "Front",
  7837. image: {
  7838. source: "./media/characters/regal/front.svg"
  7839. }
  7840. },
  7841. back: {
  7842. height: math.unit(2, "meters"),
  7843. weight: math.unit(350, "lbs"),
  7844. name: "Back",
  7845. image: {
  7846. source: "./media/characters/regal/back.svg"
  7847. }
  7848. },
  7849. },
  7850. [
  7851. {
  7852. name: "Macro",
  7853. height: math.unit(350, "feet"),
  7854. default: true
  7855. }
  7856. ]
  7857. ))
  7858. characterMakers.push(() => makeCharacter(
  7859. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7860. {
  7861. front: {
  7862. height: math.unit(4 + 11 / 12, "feet"),
  7863. weight: math.unit(100, "lbs"),
  7864. name: "Front",
  7865. image: {
  7866. source: "./media/characters/opal/front.svg"
  7867. }
  7868. },
  7869. frontAlt: {
  7870. height: math.unit(4 + 11 / 12, "feet"),
  7871. weight: math.unit(100, "lbs"),
  7872. name: "Front (Alt)",
  7873. image: {
  7874. source: "./media/characters/opal/front-alt.svg"
  7875. }
  7876. },
  7877. },
  7878. [
  7879. {
  7880. name: "Small",
  7881. height: math.unit(4 + 11 / 12, "feet")
  7882. },
  7883. {
  7884. name: "Normal",
  7885. height: math.unit(20, "feet"),
  7886. default: true
  7887. },
  7888. {
  7889. name: "Macro",
  7890. height: math.unit(120, "feet")
  7891. },
  7892. {
  7893. name: "Megamacro",
  7894. height: math.unit(80, "miles")
  7895. },
  7896. {
  7897. name: "True Size",
  7898. height: math.unit(100000, "lightyears")
  7899. },
  7900. ]
  7901. ))
  7902. characterMakers.push(() => makeCharacter(
  7903. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7904. {
  7905. front: {
  7906. height: math.unit(6, "feet"),
  7907. weight: math.unit(200, "lbs"),
  7908. name: "Front",
  7909. image: {
  7910. source: "./media/characters/vector-wuff/front.svg"
  7911. }
  7912. }
  7913. },
  7914. [
  7915. {
  7916. name: "Normal",
  7917. height: math.unit(2.8, "meters")
  7918. },
  7919. {
  7920. name: "Macro",
  7921. height: math.unit(450, "meters"),
  7922. default: true
  7923. },
  7924. {
  7925. name: "Megamacro",
  7926. height: math.unit(15, "kilometers")
  7927. }
  7928. ]
  7929. ))
  7930. characterMakers.push(() => makeCharacter(
  7931. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7932. {
  7933. front: {
  7934. height: math.unit(6, "feet"),
  7935. weight: math.unit(256, "lbs"),
  7936. name: "Front",
  7937. image: {
  7938. source: "./media/characters/dannik/front.svg"
  7939. }
  7940. }
  7941. },
  7942. [
  7943. {
  7944. name: "Macro",
  7945. height: math.unit(69.57, "meters"),
  7946. default: true
  7947. },
  7948. ]
  7949. ))
  7950. characterMakers.push(() => makeCharacter(
  7951. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7952. {
  7953. front: {
  7954. height: math.unit(6, "feet"),
  7955. weight: math.unit(120, "lbs"),
  7956. name: "Front",
  7957. image: {
  7958. source: "./media/characters/azura-saharah/front.svg"
  7959. }
  7960. },
  7961. back: {
  7962. height: math.unit(6, "feet"),
  7963. weight: math.unit(120, "lbs"),
  7964. name: "Back",
  7965. image: {
  7966. source: "./media/characters/azura-saharah/back.svg"
  7967. }
  7968. },
  7969. },
  7970. [
  7971. {
  7972. name: "Macro",
  7973. height: math.unit(100, "feet"),
  7974. default: true
  7975. },
  7976. ]
  7977. ))
  7978. characterMakers.push(() => makeCharacter(
  7979. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7980. {
  7981. side: {
  7982. height: math.unit(5 + 4 / 12, "feet"),
  7983. weight: math.unit(163, "lbs"),
  7984. name: "Side",
  7985. image: {
  7986. source: "./media/characters/kennedy/side.svg"
  7987. }
  7988. }
  7989. },
  7990. [
  7991. {
  7992. name: "Standard Doggo",
  7993. height: math.unit(5 + 4 / 12, "feet")
  7994. },
  7995. {
  7996. name: "Big Doggo",
  7997. height: math.unit(25 + 3 / 12, "feet"),
  7998. default: true
  7999. },
  8000. ]
  8001. ))
  8002. characterMakers.push(() => makeCharacter(
  8003. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  8004. {
  8005. front: {
  8006. height: math.unit(5 + 5/12, "feet"),
  8007. weight: math.unit(100, "lbs"),
  8008. name: "Front",
  8009. image: {
  8010. source: "./media/characters/odios-de-lunar/front.svg",
  8011. extra: 1468/1323,
  8012. bottom: 22/1490
  8013. }
  8014. }
  8015. },
  8016. [
  8017. {
  8018. name: "Micro",
  8019. height: math.unit(3, "inches")
  8020. },
  8021. {
  8022. name: "Normal",
  8023. height: math.unit(5.5, "feet"),
  8024. default: true
  8025. },
  8026. {
  8027. name: "Macro",
  8028. height: math.unit(100, "feet")
  8029. },
  8030. ]
  8031. ))
  8032. characterMakers.push(() => makeCharacter(
  8033. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8034. {
  8035. back: {
  8036. height: math.unit(6, "feet"),
  8037. weight: math.unit(220, "lbs"),
  8038. name: "Back",
  8039. image: {
  8040. source: "./media/characters/mandake/back.svg"
  8041. }
  8042. }
  8043. },
  8044. [
  8045. {
  8046. name: "Normal",
  8047. height: math.unit(7, "feet"),
  8048. default: true
  8049. },
  8050. {
  8051. name: "Macro",
  8052. height: math.unit(78, "feet")
  8053. },
  8054. {
  8055. name: "Macro+",
  8056. height: math.unit(300, "meters")
  8057. },
  8058. {
  8059. name: "Macro++",
  8060. height: math.unit(2400, "feet")
  8061. },
  8062. {
  8063. name: "Megamacro",
  8064. height: math.unit(5167, "meters")
  8065. },
  8066. {
  8067. name: "Gigamacro",
  8068. height: math.unit(41769, "miles")
  8069. },
  8070. ]
  8071. ))
  8072. characterMakers.push(() => makeCharacter(
  8073. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8074. {
  8075. front: {
  8076. height: math.unit(6, "feet"),
  8077. weight: math.unit(120, "lbs"),
  8078. name: "Front",
  8079. image: {
  8080. source: "./media/characters/yozey/front.svg"
  8081. }
  8082. },
  8083. frontAlt: {
  8084. height: math.unit(6, "feet"),
  8085. weight: math.unit(120, "lbs"),
  8086. name: "Front (Alt)",
  8087. image: {
  8088. source: "./media/characters/yozey/front-alt.svg"
  8089. }
  8090. },
  8091. side: {
  8092. height: math.unit(6, "feet"),
  8093. weight: math.unit(120, "lbs"),
  8094. name: "Side",
  8095. image: {
  8096. source: "./media/characters/yozey/side.svg"
  8097. }
  8098. },
  8099. },
  8100. [
  8101. {
  8102. name: "Micro",
  8103. height: math.unit(3, "inches"),
  8104. default: true
  8105. },
  8106. {
  8107. name: "Normal",
  8108. height: math.unit(6, "feet")
  8109. }
  8110. ]
  8111. ))
  8112. characterMakers.push(() => makeCharacter(
  8113. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8114. {
  8115. front: {
  8116. height: math.unit(6, "feet"),
  8117. weight: math.unit(103, "lbs"),
  8118. name: "Front",
  8119. image: {
  8120. source: "./media/characters/valeska-voss/front.svg"
  8121. }
  8122. }
  8123. },
  8124. [
  8125. {
  8126. name: "Mini-Sized Sub",
  8127. height: math.unit(3.1, "inches")
  8128. },
  8129. {
  8130. name: "Mid-Sized Sub",
  8131. height: math.unit(6.2, "inches")
  8132. },
  8133. {
  8134. name: "Full-Sized Sub",
  8135. height: math.unit(9.3, "inches")
  8136. },
  8137. {
  8138. name: "Normal",
  8139. height: math.unit(5 + 2 / 12, "foot"),
  8140. default: true
  8141. },
  8142. ]
  8143. ))
  8144. characterMakers.push(() => makeCharacter(
  8145. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8146. {
  8147. front: {
  8148. height: math.unit(6, "feet"),
  8149. weight: math.unit(160, "lbs"),
  8150. name: "Front",
  8151. image: {
  8152. source: "./media/characters/gene-zeta/front.svg",
  8153. extra: 3006 / 2826,
  8154. bottom: 182 / 3188
  8155. }
  8156. }
  8157. },
  8158. [
  8159. {
  8160. name: "Micro",
  8161. height: math.unit(6, "inches")
  8162. },
  8163. {
  8164. name: "Normal",
  8165. height: math.unit(5 + 11 / 12, "foot"),
  8166. default: true
  8167. },
  8168. {
  8169. name: "Macro",
  8170. height: math.unit(140, "feet")
  8171. },
  8172. {
  8173. name: "Supercharged",
  8174. height: math.unit(2500, "feet")
  8175. },
  8176. ]
  8177. ))
  8178. characterMakers.push(() => makeCharacter(
  8179. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8180. {
  8181. front: {
  8182. height: math.unit(6, "feet"),
  8183. weight: math.unit(350, "lbs"),
  8184. name: "Front",
  8185. image: {
  8186. source: "./media/characters/razinox/front.svg",
  8187. extra: 1686 / 1548,
  8188. bottom: 28.2 / 1868
  8189. }
  8190. },
  8191. back: {
  8192. height: math.unit(6, "feet"),
  8193. weight: math.unit(350, "lbs"),
  8194. name: "Back",
  8195. image: {
  8196. source: "./media/characters/razinox/back.svg",
  8197. extra: 1660 / 1590,
  8198. bottom: 15 / 1665
  8199. }
  8200. },
  8201. },
  8202. [
  8203. {
  8204. name: "Normal",
  8205. height: math.unit(10 + 8 / 12, "foot")
  8206. },
  8207. {
  8208. name: "Minimacro",
  8209. height: math.unit(15, "foot")
  8210. },
  8211. {
  8212. name: "Macro",
  8213. height: math.unit(60, "foot"),
  8214. default: true
  8215. },
  8216. {
  8217. name: "Megamacro",
  8218. height: math.unit(5, "miles")
  8219. },
  8220. {
  8221. name: "Gigamacro",
  8222. height: math.unit(6000, "miles")
  8223. },
  8224. ]
  8225. ))
  8226. characterMakers.push(() => makeCharacter(
  8227. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8228. {
  8229. front: {
  8230. height: math.unit(6, "feet"),
  8231. weight: math.unit(150, "lbs"),
  8232. name: "Front",
  8233. image: {
  8234. source: "./media/characters/cobalt/front.svg"
  8235. }
  8236. }
  8237. },
  8238. [
  8239. {
  8240. name: "Normal",
  8241. height: math.unit(8 + 1 / 12, "foot")
  8242. },
  8243. {
  8244. name: "Macro",
  8245. height: math.unit(111, "foot"),
  8246. default: true
  8247. },
  8248. {
  8249. name: "Supracosmic",
  8250. height: math.unit(1e42, "feet")
  8251. },
  8252. ]
  8253. ))
  8254. characterMakers.push(() => makeCharacter(
  8255. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8256. {
  8257. front: {
  8258. height: math.unit(5, "inches"),
  8259. name: "Front",
  8260. image: {
  8261. source: "./media/characters/amanda/front.svg",
  8262. extra: 926/791,
  8263. bottom: 38/964
  8264. }
  8265. },
  8266. back: {
  8267. height: math.unit(5, "inches"),
  8268. name: "Back",
  8269. image: {
  8270. source: "./media/characters/amanda/back.svg",
  8271. extra: 909/805,
  8272. bottom: 43/952
  8273. }
  8274. },
  8275. },
  8276. [
  8277. {
  8278. name: "Micro",
  8279. height: math.unit(5, "inches"),
  8280. default: true
  8281. },
  8282. ]
  8283. ))
  8284. characterMakers.push(() => makeCharacter(
  8285. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8286. {
  8287. front: {
  8288. height: math.unit(2.75, "meters"),
  8289. weight: math.unit(1200, "lb"),
  8290. name: "Front",
  8291. image: {
  8292. source: "./media/characters/teal/front.svg",
  8293. extra: 2463 / 2320,
  8294. bottom: 166 / 2629
  8295. }
  8296. },
  8297. back: {
  8298. height: math.unit(2.75, "meters"),
  8299. weight: math.unit(1200, "lb"),
  8300. name: "Back",
  8301. image: {
  8302. source: "./media/characters/teal/back.svg",
  8303. extra: 2580 / 2489,
  8304. bottom: 151 / 2731
  8305. }
  8306. },
  8307. sitting: {
  8308. height: math.unit(1.9, "meters"),
  8309. weight: math.unit(1200, "lb"),
  8310. name: "Sitting",
  8311. image: {
  8312. source: "./media/characters/teal/sitting.svg",
  8313. extra: 623 / 590,
  8314. bottom: 121 / 744
  8315. }
  8316. },
  8317. standing: {
  8318. height: math.unit(2.75, "meters"),
  8319. weight: math.unit(1200, "lb"),
  8320. name: "Standing",
  8321. image: {
  8322. source: "./media/characters/teal/standing.svg",
  8323. extra: 923 / 893,
  8324. bottom: 60 / 983
  8325. }
  8326. },
  8327. stretching: {
  8328. height: math.unit(3.65, "meters"),
  8329. weight: math.unit(1200, "lb"),
  8330. name: "Stretching",
  8331. image: {
  8332. source: "./media/characters/teal/stretching.svg",
  8333. extra: 1276 / 1244,
  8334. bottom: 0 / 1276
  8335. }
  8336. },
  8337. legged: {
  8338. height: math.unit(1.3, "meters"),
  8339. weight: math.unit(100, "lb"),
  8340. name: "Legged",
  8341. image: {
  8342. source: "./media/characters/teal/legged.svg",
  8343. extra: 462 / 437,
  8344. bottom: 24 / 486
  8345. }
  8346. },
  8347. naga: {
  8348. height: math.unit(5.4, "meters"),
  8349. weight: math.unit(4000, "lb"),
  8350. name: "Naga",
  8351. image: {
  8352. source: "./media/characters/teal/naga.svg",
  8353. extra: 1902 / 1858,
  8354. bottom: 0 / 1902
  8355. }
  8356. },
  8357. hand: {
  8358. height: math.unit(0.52, "meters"),
  8359. name: "Hand",
  8360. image: {
  8361. source: "./media/characters/teal/hand.svg"
  8362. }
  8363. },
  8364. maw: {
  8365. height: math.unit(0.43, "meters"),
  8366. name: "Maw",
  8367. image: {
  8368. source: "./media/characters/teal/maw.svg"
  8369. }
  8370. },
  8371. slit: {
  8372. height: math.unit(0.25, "meters"),
  8373. name: "Slit",
  8374. image: {
  8375. source: "./media/characters/teal/slit.svg"
  8376. }
  8377. },
  8378. },
  8379. [
  8380. {
  8381. name: "Normal",
  8382. height: math.unit(2.75, "meters"),
  8383. default: true
  8384. },
  8385. {
  8386. name: "Macro",
  8387. height: math.unit(300, "feet")
  8388. },
  8389. {
  8390. name: "Macro+",
  8391. height: math.unit(2000, "feet")
  8392. },
  8393. ]
  8394. ))
  8395. characterMakers.push(() => makeCharacter(
  8396. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8397. {
  8398. frontCat: {
  8399. height: math.unit(6, "feet"),
  8400. weight: math.unit(180, "lbs"),
  8401. name: "Front (Cat)",
  8402. image: {
  8403. source: "./media/characters/ravin-amulet/front-cat.svg"
  8404. }
  8405. },
  8406. frontCatAlt: {
  8407. height: math.unit(6, "feet"),
  8408. weight: math.unit(180, "lbs"),
  8409. name: "Front (Alt, Cat)",
  8410. image: {
  8411. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8412. }
  8413. },
  8414. frontWerewolf: {
  8415. height: math.unit(6 * 1.2, "feet"),
  8416. weight: math.unit(225, "lbs"),
  8417. name: "Front (Werewolf)",
  8418. image: {
  8419. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8420. }
  8421. },
  8422. backWerewolf: {
  8423. height: math.unit(6 * 1.2, "feet"),
  8424. weight: math.unit(225, "lbs"),
  8425. name: "Back (Werewolf)",
  8426. image: {
  8427. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8428. }
  8429. },
  8430. },
  8431. [
  8432. {
  8433. name: "Nano",
  8434. height: math.unit(1, "micrometer")
  8435. },
  8436. {
  8437. name: "Micro",
  8438. height: math.unit(1, "inch")
  8439. },
  8440. {
  8441. name: "Normal",
  8442. height: math.unit(6, "feet"),
  8443. default: true
  8444. },
  8445. {
  8446. name: "Macro",
  8447. height: math.unit(60, "feet")
  8448. }
  8449. ]
  8450. ))
  8451. characterMakers.push(() => makeCharacter(
  8452. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8453. {
  8454. front: {
  8455. height: math.unit(6, "feet"),
  8456. weight: math.unit(165, "lbs"),
  8457. name: "Front",
  8458. image: {
  8459. source: "./media/characters/fluoresce/front.svg"
  8460. }
  8461. }
  8462. },
  8463. [
  8464. {
  8465. name: "Micro",
  8466. height: math.unit(6, "cm")
  8467. },
  8468. {
  8469. name: "Normal",
  8470. height: math.unit(5 + 7 / 12, "feet"),
  8471. default: true
  8472. },
  8473. {
  8474. name: "Macro",
  8475. height: math.unit(56, "feet")
  8476. },
  8477. {
  8478. name: "Megamacro",
  8479. height: math.unit(1.9, "miles")
  8480. },
  8481. ]
  8482. ))
  8483. characterMakers.push(() => makeCharacter(
  8484. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8485. {
  8486. front: {
  8487. height: math.unit(9 + 6 / 12, "feet"),
  8488. weight: math.unit(523, "lbs"),
  8489. name: "Side",
  8490. image: {
  8491. source: "./media/characters/aurora/side.svg",
  8492. extra: 474/393,
  8493. bottom: 5/479
  8494. }
  8495. }
  8496. },
  8497. [
  8498. {
  8499. name: "Normal",
  8500. height: math.unit(9 + 6 / 12, "feet")
  8501. },
  8502. {
  8503. name: "Macro",
  8504. height: math.unit(96, "feet"),
  8505. default: true
  8506. },
  8507. {
  8508. name: "Macro+",
  8509. height: math.unit(243, "feet")
  8510. },
  8511. ]
  8512. ))
  8513. characterMakers.push(() => makeCharacter(
  8514. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8515. {
  8516. front: {
  8517. height: math.unit(194, "cm"),
  8518. weight: math.unit(90, "kg"),
  8519. name: "Front",
  8520. image: {
  8521. source: "./media/characters/ranek/front.svg",
  8522. extra: 1862/1791,
  8523. bottom: 80/1942
  8524. }
  8525. },
  8526. back: {
  8527. height: math.unit(194, "cm"),
  8528. weight: math.unit(90, "kg"),
  8529. name: "Back",
  8530. image: {
  8531. source: "./media/characters/ranek/back.svg",
  8532. extra: 1853/1787,
  8533. bottom: 74/1927
  8534. }
  8535. },
  8536. feral: {
  8537. height: math.unit(30, "cm"),
  8538. weight: math.unit(1.6, "lbs"),
  8539. name: "Feral",
  8540. image: {
  8541. source: "./media/characters/ranek/feral.svg",
  8542. extra: 990/631,
  8543. bottom: 29/1019
  8544. }
  8545. },
  8546. },
  8547. [
  8548. {
  8549. name: "Normal",
  8550. height: math.unit(194, "cm"),
  8551. default: true
  8552. },
  8553. {
  8554. name: "Macro",
  8555. height: math.unit(100, "meters")
  8556. },
  8557. ]
  8558. ))
  8559. characterMakers.push(() => makeCharacter(
  8560. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8561. {
  8562. front: {
  8563. height: math.unit(5 + 6 / 12, "feet"),
  8564. weight: math.unit(153, "lbs"),
  8565. name: "Front",
  8566. image: {
  8567. source: "./media/characters/andrew-cooper/front.svg"
  8568. }
  8569. },
  8570. },
  8571. [
  8572. {
  8573. name: "Nano",
  8574. height: math.unit(1, "mm")
  8575. },
  8576. {
  8577. name: "Micro",
  8578. height: math.unit(2, "inches")
  8579. },
  8580. {
  8581. name: "Normal",
  8582. height: math.unit(5 + 6 / 12, "feet"),
  8583. default: true
  8584. }
  8585. ]
  8586. ))
  8587. characterMakers.push(() => makeCharacter(
  8588. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8589. {
  8590. front: {
  8591. height: math.unit(6, "feet"),
  8592. weight: math.unit(180, "lbs"),
  8593. name: "Front",
  8594. image: {
  8595. source: "./media/characters/akane-sato/front.svg",
  8596. extra: 1219 / 1140
  8597. }
  8598. },
  8599. back: {
  8600. height: math.unit(6, "feet"),
  8601. weight: math.unit(180, "lbs"),
  8602. name: "Back",
  8603. image: {
  8604. source: "./media/characters/akane-sato/back.svg",
  8605. extra: 1219 / 1170
  8606. }
  8607. },
  8608. },
  8609. [
  8610. {
  8611. name: "Normal",
  8612. height: math.unit(2.5, "meters")
  8613. },
  8614. {
  8615. name: "Macro",
  8616. height: math.unit(250, "meters"),
  8617. default: true
  8618. },
  8619. {
  8620. name: "Megamacro",
  8621. height: math.unit(25, "km")
  8622. },
  8623. ]
  8624. ))
  8625. characterMakers.push(() => makeCharacter(
  8626. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8627. {
  8628. front: {
  8629. height: math.unit(6, "feet"),
  8630. weight: math.unit(65, "kg"),
  8631. name: "Front",
  8632. image: {
  8633. source: "./media/characters/rook/front.svg",
  8634. extra: 960 / 950
  8635. }
  8636. }
  8637. },
  8638. [
  8639. {
  8640. name: "Normal",
  8641. height: math.unit(8.8, "feet")
  8642. },
  8643. {
  8644. name: "Macro",
  8645. height: math.unit(88, "feet"),
  8646. default: true
  8647. },
  8648. {
  8649. name: "Megamacro",
  8650. height: math.unit(8, "miles")
  8651. },
  8652. ]
  8653. ))
  8654. characterMakers.push(() => makeCharacter(
  8655. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8656. {
  8657. front: {
  8658. height: math.unit(12 + 2 / 12, "feet"),
  8659. weight: math.unit(808, "lbs"),
  8660. name: "Front",
  8661. image: {
  8662. source: "./media/characters/prodigy/front.svg"
  8663. }
  8664. }
  8665. },
  8666. [
  8667. {
  8668. name: "Normal",
  8669. height: math.unit(12 + 2 / 12, "feet"),
  8670. default: true
  8671. },
  8672. {
  8673. name: "Macro",
  8674. height: math.unit(143, "feet")
  8675. },
  8676. {
  8677. name: "Macro+",
  8678. height: math.unit(400, "feet")
  8679. },
  8680. ]
  8681. ))
  8682. characterMakers.push(() => makeCharacter(
  8683. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8684. {
  8685. front: {
  8686. height: math.unit(6, "feet"),
  8687. weight: math.unit(225, "lbs"),
  8688. name: "Front",
  8689. image: {
  8690. source: "./media/characters/daniel/front.svg"
  8691. }
  8692. },
  8693. leaning: {
  8694. height: math.unit(6, "feet"),
  8695. weight: math.unit(225, "lbs"),
  8696. name: "Leaning",
  8697. image: {
  8698. source: "./media/characters/daniel/leaning.svg"
  8699. }
  8700. },
  8701. },
  8702. [
  8703. {
  8704. name: "Macro",
  8705. height: math.unit(1000, "feet"),
  8706. default: true
  8707. },
  8708. ]
  8709. ))
  8710. characterMakers.push(() => makeCharacter(
  8711. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8712. {
  8713. front: {
  8714. height: math.unit(6, "feet"),
  8715. weight: math.unit(88, "lbs"),
  8716. name: "Front",
  8717. image: {
  8718. source: "./media/characters/chiros/front.svg",
  8719. extra: 306 / 226
  8720. }
  8721. },
  8722. side: {
  8723. height: math.unit(6, "feet"),
  8724. weight: math.unit(88, "lbs"),
  8725. name: "Side",
  8726. image: {
  8727. source: "./media/characters/chiros/side.svg",
  8728. extra: 306 / 226
  8729. }
  8730. },
  8731. },
  8732. [
  8733. {
  8734. name: "Normal",
  8735. height: math.unit(6, "cm"),
  8736. default: true
  8737. },
  8738. ]
  8739. ))
  8740. characterMakers.push(() => makeCharacter(
  8741. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8742. {
  8743. front: {
  8744. height: math.unit(6, "feet"),
  8745. weight: math.unit(100, "lbs"),
  8746. name: "Front",
  8747. image: {
  8748. source: "./media/characters/selka/front.svg",
  8749. extra: 947 / 887
  8750. }
  8751. }
  8752. },
  8753. [
  8754. {
  8755. name: "Normal",
  8756. height: math.unit(5, "cm"),
  8757. default: true
  8758. },
  8759. ]
  8760. ))
  8761. characterMakers.push(() => makeCharacter(
  8762. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8763. {
  8764. front: {
  8765. height: math.unit(8 + 3 / 12, "feet"),
  8766. weight: math.unit(424, "lbs"),
  8767. name: "Front",
  8768. image: {
  8769. source: "./media/characters/verin/front.svg",
  8770. extra: 1845 / 1550
  8771. }
  8772. },
  8773. frontArmored: {
  8774. height: math.unit(8 + 3 / 12, "feet"),
  8775. weight: math.unit(424, "lbs"),
  8776. name: "Front (Armored)",
  8777. image: {
  8778. source: "./media/characters/verin/front-armor.svg",
  8779. extra: 1845 / 1550,
  8780. bottom: 0.01
  8781. }
  8782. },
  8783. back: {
  8784. height: math.unit(8 + 3 / 12, "feet"),
  8785. weight: math.unit(424, "lbs"),
  8786. name: "Back",
  8787. image: {
  8788. source: "./media/characters/verin/back.svg",
  8789. bottom: 0.1,
  8790. extra: 1
  8791. }
  8792. },
  8793. foot: {
  8794. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8795. name: "Foot",
  8796. image: {
  8797. source: "./media/characters/verin/foot.svg"
  8798. }
  8799. },
  8800. },
  8801. [
  8802. {
  8803. name: "Normal",
  8804. height: math.unit(8 + 3 / 12, "feet")
  8805. },
  8806. {
  8807. name: "Minimacro",
  8808. height: math.unit(21, "feet"),
  8809. default: true
  8810. },
  8811. {
  8812. name: "Macro",
  8813. height: math.unit(626, "feet")
  8814. },
  8815. ]
  8816. ))
  8817. characterMakers.push(() => makeCharacter(
  8818. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8819. {
  8820. front: {
  8821. height: math.unit(2.718, "meters"),
  8822. weight: math.unit(150, "lbs"),
  8823. name: "Front",
  8824. image: {
  8825. source: "./media/characters/sovrim-terraquian/front.svg",
  8826. extra: 1752/1689,
  8827. bottom: 36/1788
  8828. }
  8829. },
  8830. back: {
  8831. height: math.unit(2.718, "meters"),
  8832. weight: math.unit(150, "lbs"),
  8833. name: "Back",
  8834. image: {
  8835. source: "./media/characters/sovrim-terraquian/back.svg",
  8836. extra: 1698/1657,
  8837. bottom: 58/1756
  8838. }
  8839. },
  8840. tongue: {
  8841. height: math.unit(2.865, "feet"),
  8842. name: "Tongue",
  8843. image: {
  8844. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8845. }
  8846. },
  8847. hand: {
  8848. height: math.unit(1.61, "feet"),
  8849. name: "Hand",
  8850. image: {
  8851. source: "./media/characters/sovrim-terraquian/hand.svg"
  8852. }
  8853. },
  8854. foot: {
  8855. height: math.unit(1.05, "feet"),
  8856. name: "Foot",
  8857. image: {
  8858. source: "./media/characters/sovrim-terraquian/foot.svg"
  8859. }
  8860. },
  8861. footAlt: {
  8862. height: math.unit(0.88, "feet"),
  8863. name: "Foot (Alt)",
  8864. image: {
  8865. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8866. }
  8867. },
  8868. },
  8869. [
  8870. {
  8871. name: "Micro",
  8872. height: math.unit(2, "inches")
  8873. },
  8874. {
  8875. name: "Small",
  8876. height: math.unit(1, "meter")
  8877. },
  8878. {
  8879. name: "Normal",
  8880. height: math.unit(Math.E, "meters"),
  8881. default: true
  8882. },
  8883. {
  8884. name: "Macro",
  8885. height: math.unit(20, "meters")
  8886. },
  8887. {
  8888. name: "Macro+",
  8889. height: math.unit(400, "meters")
  8890. },
  8891. ]
  8892. ))
  8893. characterMakers.push(() => makeCharacter(
  8894. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8895. {
  8896. front: {
  8897. height: math.unit(7, "feet"),
  8898. weight: math.unit(489, "lbs"),
  8899. name: "Front",
  8900. image: {
  8901. source: "./media/characters/reece-silvermane/front.svg",
  8902. bottom: 0.02,
  8903. extra: 1
  8904. }
  8905. },
  8906. },
  8907. [
  8908. {
  8909. name: "Macro",
  8910. height: math.unit(1.5, "miles"),
  8911. default: true
  8912. },
  8913. ]
  8914. ))
  8915. characterMakers.push(() => makeCharacter(
  8916. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8917. {
  8918. front: {
  8919. height: math.unit(6, "feet"),
  8920. weight: math.unit(78, "kg"),
  8921. name: "Front",
  8922. image: {
  8923. source: "./media/characters/kane/front.svg",
  8924. extra: 978 / 899
  8925. }
  8926. },
  8927. },
  8928. [
  8929. {
  8930. name: "Normal",
  8931. height: math.unit(2.1, "m"),
  8932. },
  8933. {
  8934. name: "Macro",
  8935. height: math.unit(1, "km"),
  8936. default: true
  8937. },
  8938. ]
  8939. ))
  8940. characterMakers.push(() => makeCharacter(
  8941. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8942. {
  8943. front: {
  8944. height: math.unit(6, "feet"),
  8945. weight: math.unit(200, "kg"),
  8946. name: "Front",
  8947. image: {
  8948. source: "./media/characters/tegon/front.svg",
  8949. bottom: 0.01,
  8950. extra: 1
  8951. }
  8952. },
  8953. },
  8954. [
  8955. {
  8956. name: "Micro",
  8957. height: math.unit(1, "inch")
  8958. },
  8959. {
  8960. name: "Normal",
  8961. height: math.unit(6 + 3 / 12, "feet"),
  8962. default: true
  8963. },
  8964. {
  8965. name: "Macro",
  8966. height: math.unit(300, "feet")
  8967. },
  8968. {
  8969. name: "Megamacro",
  8970. height: math.unit(69, "miles")
  8971. },
  8972. ]
  8973. ))
  8974. characterMakers.push(() => makeCharacter(
  8975. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8976. {
  8977. side: {
  8978. height: math.unit(6, "feet"),
  8979. weight: math.unit(2304, "lbs"),
  8980. name: "Side",
  8981. image: {
  8982. source: "./media/characters/arcturax/side.svg",
  8983. extra: 790 / 376,
  8984. bottom: 0.01
  8985. }
  8986. },
  8987. },
  8988. [
  8989. {
  8990. name: "Micro",
  8991. height: math.unit(2, "inch")
  8992. },
  8993. {
  8994. name: "Normal",
  8995. height: math.unit(6, "feet")
  8996. },
  8997. {
  8998. name: "Macro",
  8999. height: math.unit(39, "feet"),
  9000. default: true
  9001. },
  9002. {
  9003. name: "Megamacro",
  9004. height: math.unit(7, "miles")
  9005. },
  9006. ]
  9007. ))
  9008. characterMakers.push(() => makeCharacter(
  9009. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  9010. {
  9011. front: {
  9012. height: math.unit(6, "feet"),
  9013. weight: math.unit(50, "lbs"),
  9014. name: "Front",
  9015. image: {
  9016. source: "./media/characters/sentri/front.svg",
  9017. extra: 1750 / 1570,
  9018. bottom: 0.025
  9019. }
  9020. },
  9021. frontAlt: {
  9022. height: math.unit(6, "feet"),
  9023. weight: math.unit(50, "lbs"),
  9024. name: "Front (Alt)",
  9025. image: {
  9026. source: "./media/characters/sentri/front-alt.svg",
  9027. extra: 1750 / 1570,
  9028. bottom: 0.025
  9029. }
  9030. },
  9031. },
  9032. [
  9033. {
  9034. name: "Normal",
  9035. height: math.unit(15, "feet"),
  9036. default: true
  9037. },
  9038. {
  9039. name: "Macro",
  9040. height: math.unit(2500, "feet")
  9041. }
  9042. ]
  9043. ))
  9044. characterMakers.push(() => makeCharacter(
  9045. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9046. {
  9047. front: {
  9048. height: math.unit(5 + 8 / 12, "feet"),
  9049. weight: math.unit(130, "lbs"),
  9050. name: "Front",
  9051. image: {
  9052. source: "./media/characters/corvin/front.svg",
  9053. extra: 1803 / 1629
  9054. }
  9055. },
  9056. frontShirt: {
  9057. height: math.unit(5 + 8 / 12, "feet"),
  9058. weight: math.unit(130, "lbs"),
  9059. name: "Front (Shirt)",
  9060. image: {
  9061. source: "./media/characters/corvin/front-shirt.svg",
  9062. extra: 1803 / 1629
  9063. }
  9064. },
  9065. frontPoncho: {
  9066. height: math.unit(5 + 8 / 12, "feet"),
  9067. weight: math.unit(130, "lbs"),
  9068. name: "Front (Poncho)",
  9069. image: {
  9070. source: "./media/characters/corvin/front-poncho.svg",
  9071. extra: 1803 / 1629
  9072. }
  9073. },
  9074. side: {
  9075. height: math.unit(5 + 8 / 12, "feet"),
  9076. weight: math.unit(130, "lbs"),
  9077. name: "Side",
  9078. image: {
  9079. source: "./media/characters/corvin/side.svg",
  9080. extra: 1012 / 945
  9081. }
  9082. },
  9083. back: {
  9084. height: math.unit(5 + 8 / 12, "feet"),
  9085. weight: math.unit(130, "lbs"),
  9086. name: "Back",
  9087. image: {
  9088. source: "./media/characters/corvin/back.svg",
  9089. extra: 1803 / 1629
  9090. }
  9091. },
  9092. },
  9093. [
  9094. {
  9095. name: "Micro",
  9096. height: math.unit(3, "inches")
  9097. },
  9098. {
  9099. name: "Normal",
  9100. height: math.unit(5 + 8 / 12, "feet")
  9101. },
  9102. {
  9103. name: "Macro",
  9104. height: math.unit(300, "feet"),
  9105. default: true
  9106. },
  9107. {
  9108. name: "Megamacro",
  9109. height: math.unit(500, "miles")
  9110. }
  9111. ]
  9112. ))
  9113. characterMakers.push(() => makeCharacter(
  9114. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9115. {
  9116. front: {
  9117. height: math.unit(6, "feet"),
  9118. weight: math.unit(135, "lbs"),
  9119. name: "Front",
  9120. image: {
  9121. source: "./media/characters/q/front.svg",
  9122. extra: 854 / 752,
  9123. bottom: 0.005
  9124. }
  9125. },
  9126. back: {
  9127. height: math.unit(6, "feet"),
  9128. weight: math.unit(130, "lbs"),
  9129. name: "Back",
  9130. image: {
  9131. source: "./media/characters/q/back.svg",
  9132. extra: 854 / 752
  9133. }
  9134. },
  9135. },
  9136. [
  9137. {
  9138. name: "Macro",
  9139. height: math.unit(90, "feet"),
  9140. default: true
  9141. },
  9142. {
  9143. name: "Extra Macro",
  9144. height: math.unit(300, "feet"),
  9145. },
  9146. {
  9147. name: "BIG WALF",
  9148. height: math.unit(750, "feet"),
  9149. },
  9150. ]
  9151. ))
  9152. characterMakers.push(() => makeCharacter(
  9153. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9154. {
  9155. front: {
  9156. height: math.unit(3, "feet"),
  9157. weight: math.unit(28, "lbs"),
  9158. name: "Front",
  9159. image: {
  9160. source: "./media/characters/citrine/front.svg"
  9161. }
  9162. }
  9163. },
  9164. [
  9165. {
  9166. name: "Normal",
  9167. height: math.unit(3, "feet"),
  9168. default: true
  9169. }
  9170. ]
  9171. ))
  9172. characterMakers.push(() => makeCharacter(
  9173. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9174. {
  9175. front: {
  9176. height: math.unit(14, "feet"),
  9177. weight: math.unit(1450, "kg"),
  9178. preyCapacity: math.unit(15, "people"),
  9179. name: "Front",
  9180. image: {
  9181. source: "./media/characters/aura-starwind/front.svg",
  9182. extra: 1440/1327,
  9183. bottom: 11/1451
  9184. }
  9185. },
  9186. side: {
  9187. height: math.unit(14, "feet"),
  9188. weight: math.unit(1450, "kg"),
  9189. preyCapacity: math.unit(15, "people"),
  9190. name: "Side",
  9191. image: {
  9192. source: "./media/characters/aura-starwind/side.svg",
  9193. extra: 1654 / 1497
  9194. }
  9195. },
  9196. taur: {
  9197. height: math.unit(18, "feet"),
  9198. weight: math.unit(5500, "kg"),
  9199. preyCapacity: math.unit(50, "people"),
  9200. name: "Taur",
  9201. image: {
  9202. source: "./media/characters/aura-starwind/taur.svg",
  9203. extra: 1760 / 1650
  9204. }
  9205. },
  9206. feral: {
  9207. height: math.unit(46, "feet"),
  9208. weight: math.unit(25000, "kg"),
  9209. preyCapacity: math.unit(120, "people"),
  9210. name: "Feral",
  9211. image: {
  9212. source: "./media/characters/aura-starwind/feral.svg"
  9213. }
  9214. },
  9215. },
  9216. [
  9217. {
  9218. name: "Normal",
  9219. height: math.unit(14, "feet"),
  9220. default: true
  9221. },
  9222. {
  9223. name: "Macro",
  9224. height: math.unit(50, "meters")
  9225. },
  9226. {
  9227. name: "Megamacro",
  9228. height: math.unit(5000, "meters")
  9229. },
  9230. {
  9231. name: "Gigamacro",
  9232. height: math.unit(100000, "kilometers")
  9233. },
  9234. ]
  9235. ))
  9236. characterMakers.push(() => makeCharacter(
  9237. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9238. {
  9239. front: {
  9240. height: math.unit(2 + 7 / 12, "feet"),
  9241. weight: math.unit(32, "lbs"),
  9242. name: "Front",
  9243. image: {
  9244. source: "./media/characters/rivet/front.svg",
  9245. extra: 1716 / 1658,
  9246. bottom: 0.03
  9247. }
  9248. },
  9249. foot: {
  9250. height: math.unit(0.551, "feet"),
  9251. name: "Rivet's Foot",
  9252. image: {
  9253. source: "./media/characters/rivet/foot.svg"
  9254. },
  9255. rename: true
  9256. }
  9257. },
  9258. [
  9259. {
  9260. name: "Micro",
  9261. height: math.unit(1.5, "inches"),
  9262. },
  9263. {
  9264. name: "Normal",
  9265. height: math.unit(2 + 7 / 12, "feet"),
  9266. default: true
  9267. },
  9268. {
  9269. name: "Macro",
  9270. height: math.unit(85, "feet")
  9271. },
  9272. {
  9273. name: "Megamacro",
  9274. height: math.unit(2.2, "km")
  9275. }
  9276. ]
  9277. ))
  9278. characterMakers.push(() => makeCharacter(
  9279. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9280. {
  9281. front: {
  9282. height: math.unit(5 + 9 / 12, "feet"),
  9283. weight: math.unit(150, "lbs"),
  9284. name: "Front",
  9285. image: {
  9286. source: "./media/characters/coffee/front.svg",
  9287. extra: 946/880,
  9288. bottom: 66/1012
  9289. }
  9290. },
  9291. foot: {
  9292. height: math.unit(1.29, "feet"),
  9293. name: "Foot",
  9294. image: {
  9295. source: "./media/characters/coffee/foot.svg"
  9296. }
  9297. },
  9298. },
  9299. [
  9300. {
  9301. name: "Micro",
  9302. height: math.unit(2, "inches"),
  9303. },
  9304. {
  9305. name: "Normal",
  9306. height: math.unit(5 + 9 / 12, "feet"),
  9307. default: true
  9308. },
  9309. {
  9310. name: "Macro",
  9311. height: math.unit(800, "feet")
  9312. },
  9313. {
  9314. name: "Megamacro",
  9315. height: math.unit(25, "miles")
  9316. }
  9317. ]
  9318. ))
  9319. characterMakers.push(() => makeCharacter(
  9320. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9321. {
  9322. front: {
  9323. height: math.unit(6, "feet"),
  9324. weight: math.unit(200, "lbs"),
  9325. name: "Front",
  9326. image: {
  9327. source: "./media/characters/chari-gal/front.svg",
  9328. extra: 1568 / 1385,
  9329. bottom: 0.047
  9330. }
  9331. },
  9332. gigantamax: {
  9333. height: math.unit(6 * 16, "feet"),
  9334. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9335. name: "Gigantamax",
  9336. image: {
  9337. source: "./media/characters/chari-gal/gigantamax.svg",
  9338. extra: 1124 / 888,
  9339. bottom: 0.03
  9340. }
  9341. },
  9342. },
  9343. [
  9344. {
  9345. name: "Normal",
  9346. height: math.unit(5 + 7 / 12, "feet")
  9347. },
  9348. {
  9349. name: "Macro",
  9350. height: math.unit(200, "feet"),
  9351. default: true
  9352. }
  9353. ]
  9354. ))
  9355. characterMakers.push(() => makeCharacter(
  9356. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9357. {
  9358. front: {
  9359. height: math.unit(6, "feet"),
  9360. weight: math.unit(150, "lbs"),
  9361. name: "Front",
  9362. image: {
  9363. source: "./media/characters/nova/front.svg",
  9364. extra: 5000 / 4722,
  9365. bottom: 0.02
  9366. }
  9367. }
  9368. },
  9369. [
  9370. {
  9371. name: "Micro-",
  9372. height: math.unit(0.8, "inches")
  9373. },
  9374. {
  9375. name: "Micro",
  9376. height: math.unit(2, "inches"),
  9377. default: true
  9378. },
  9379. ]
  9380. ))
  9381. characterMakers.push(() => makeCharacter(
  9382. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9383. {
  9384. koboldFront: {
  9385. height: math.unit(3 + 1 / 12, "feet"),
  9386. weight: math.unit(21.7, "lbs"),
  9387. name: "Front",
  9388. image: {
  9389. source: "./media/characters/argent/kobold-front.svg",
  9390. extra: 1471 / 1331,
  9391. bottom: 100.8 / 1575.5
  9392. },
  9393. form: "kobold",
  9394. default: true
  9395. },
  9396. dragonFront: {
  9397. height: math.unit(75, "inches"),
  9398. name: "Front",
  9399. image: {
  9400. source: "./media/characters/argent/dragon-front.svg",
  9401. extra: 1389/1248,
  9402. bottom: 54/1443
  9403. },
  9404. form: "dragon",
  9405. },
  9406. dragonBack: {
  9407. height: math.unit(75, "inches"),
  9408. name: "Back",
  9409. image: {
  9410. source: "./media/characters/argent/dragon-back.svg",
  9411. extra: 1399/1271,
  9412. bottom: 23/1422
  9413. },
  9414. form: "dragon",
  9415. },
  9416. dragonDressed: {
  9417. height: math.unit(75, "inches"),
  9418. name: "Dressed",
  9419. image: {
  9420. source: "./media/characters/argent/dragon-dressed.svg",
  9421. extra: 1350/1215,
  9422. bottom: 26/1376
  9423. },
  9424. form: "dragon"
  9425. },
  9426. dragonHead: {
  9427. height: math.unit(23.5, "inches"),
  9428. name: "Head",
  9429. image: {
  9430. source: "./media/characters/argent/dragon-head.svg"
  9431. },
  9432. form: "dragon",
  9433. },
  9434. },
  9435. [
  9436. {
  9437. name: "Micro",
  9438. height: math.unit(2, "inches"),
  9439. form: "kobold",
  9440. },
  9441. {
  9442. name: "Normal",
  9443. height: math.unit(3 + 1 / 12, "feet"),
  9444. form: "kobold",
  9445. default: true
  9446. },
  9447. {
  9448. name: "Macro",
  9449. height: math.unit(120, "feet"),
  9450. form: "kobold",
  9451. },
  9452. {
  9453. name: "Speck",
  9454. height: math.unit(1, "mm"),
  9455. form: "dragon",
  9456. },
  9457. {
  9458. name: "Tiny",
  9459. height: math.unit(1, "cm"),
  9460. form: "dragon",
  9461. },
  9462. {
  9463. name: "Micro",
  9464. height: math.unit(5, "cm"),
  9465. form: "dragon",
  9466. },
  9467. {
  9468. name: "Normal",
  9469. height: math.unit(75, "inches"),
  9470. form: "dragon",
  9471. default: true
  9472. },
  9473. {
  9474. name: "Extra Tall",
  9475. height: math.unit(9, "feet"),
  9476. form: "dragon",
  9477. },
  9478. {
  9479. name: "Inconvenient",
  9480. height: math.unit(5, "meters"),
  9481. form: "dragon",
  9482. },
  9483. {
  9484. name: "Macro",
  9485. height: math.unit(70, "meters"),
  9486. form: "dragon",
  9487. },
  9488. {
  9489. name: "Macro+",
  9490. height: math.unit(250, "meters"),
  9491. form: "dragon",
  9492. },
  9493. {
  9494. name: "Megamacro",
  9495. height: math.unit(20, "km"),
  9496. form: "dragon",
  9497. },
  9498. {
  9499. name: "Mountainous",
  9500. height: math.unit(100, "km"),
  9501. form: "dragon",
  9502. },
  9503. {
  9504. name: "Continental",
  9505. height: math.unit(2, "megameters"),
  9506. form: "dragon",
  9507. },
  9508. {
  9509. name: "Too Big",
  9510. height: math.unit(900, "megameters"),
  9511. form: "dragon",
  9512. },
  9513. ],
  9514. {
  9515. "kobold": {
  9516. name: "Kobold",
  9517. default: true
  9518. },
  9519. "dragon": {
  9520. name: "Dragon",
  9521. },
  9522. }
  9523. ))
  9524. characterMakers.push(() => makeCharacter(
  9525. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9526. {
  9527. lamp: {
  9528. height: math.unit(7 * 1559 / 989, "feet"),
  9529. name: "Magic Lamp",
  9530. image: {
  9531. source: "./media/characters/mira-al-cul/lamp.svg",
  9532. extra: 1617 / 1559
  9533. }
  9534. },
  9535. front: {
  9536. height: math.unit(7, "feet"),
  9537. name: "Front",
  9538. image: {
  9539. source: "./media/characters/mira-al-cul/front.svg",
  9540. extra: 1044 / 990
  9541. }
  9542. },
  9543. },
  9544. [
  9545. {
  9546. name: "Heavily Restricted",
  9547. height: math.unit(7 * 1559 / 989, "feet")
  9548. },
  9549. {
  9550. name: "Freshly Freed",
  9551. height: math.unit(50 * 1559 / 989, "feet")
  9552. },
  9553. {
  9554. name: "World Encompassing",
  9555. height: math.unit(10000 * 1559 / 989, "miles")
  9556. },
  9557. {
  9558. name: "Galactic",
  9559. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9560. },
  9561. {
  9562. name: "Palmed Universe",
  9563. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9564. default: true
  9565. },
  9566. {
  9567. name: "Multiversal Matriarch",
  9568. height: math.unit(8.87e10, "yottameters")
  9569. },
  9570. {
  9571. name: "Void Mother",
  9572. height: math.unit(3.14e110, "yottaparsecs")
  9573. },
  9574. {
  9575. name: "Toying with Transcendence",
  9576. height: math.unit(1e307, "meters")
  9577. },
  9578. ]
  9579. ))
  9580. characterMakers.push(() => makeCharacter(
  9581. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9582. {
  9583. front: {
  9584. height: math.unit(17 + 1 / 12, "feet"),
  9585. weight: math.unit(476.2 * 5, "lbs"),
  9586. name: "Front",
  9587. image: {
  9588. source: "./media/characters/kuro-shi-uchū/front.svg",
  9589. extra: 2329 / 1835,
  9590. bottom: 0.02
  9591. }
  9592. },
  9593. },
  9594. [
  9595. {
  9596. name: "Micro",
  9597. height: math.unit(2, "inches")
  9598. },
  9599. {
  9600. name: "Normal",
  9601. height: math.unit(12, "meters")
  9602. },
  9603. {
  9604. name: "Planetary",
  9605. height: math.unit(0.00929, "AU"),
  9606. default: true
  9607. },
  9608. {
  9609. name: "Universal",
  9610. height: math.unit(20, "gigaparsecs")
  9611. },
  9612. ]
  9613. ))
  9614. characterMakers.push(() => makeCharacter(
  9615. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9616. {
  9617. front: {
  9618. height: math.unit(5 + 2 / 12, "feet"),
  9619. weight: math.unit(120, "lbs"),
  9620. name: "Front",
  9621. image: {
  9622. source: "./media/characters/katherine/front.svg",
  9623. extra: 2075 / 1969
  9624. }
  9625. },
  9626. dress: {
  9627. height: math.unit(5 + 2 / 12, "feet"),
  9628. weight: math.unit(120, "lbs"),
  9629. name: "Dress",
  9630. image: {
  9631. source: "./media/characters/katherine/dress.svg",
  9632. extra: 2258 / 2064
  9633. }
  9634. },
  9635. },
  9636. [
  9637. {
  9638. name: "Micro",
  9639. height: math.unit(1, "inches"),
  9640. default: true
  9641. },
  9642. {
  9643. name: "Normal",
  9644. height: math.unit(5 + 2 / 12, "feet")
  9645. },
  9646. {
  9647. name: "Macro",
  9648. height: math.unit(100, "meters")
  9649. },
  9650. {
  9651. name: "Megamacro",
  9652. height: math.unit(80, "miles")
  9653. },
  9654. ]
  9655. ))
  9656. characterMakers.push(() => makeCharacter(
  9657. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9658. {
  9659. front: {
  9660. height: math.unit(7 + 8 / 12, "feet"),
  9661. weight: math.unit(250, "lbs"),
  9662. name: "Front",
  9663. image: {
  9664. source: "./media/characters/yevis/front.svg",
  9665. extra: 1938 / 1755
  9666. }
  9667. }
  9668. },
  9669. [
  9670. {
  9671. name: "Mortal",
  9672. height: math.unit(7 + 8 / 12, "feet")
  9673. },
  9674. {
  9675. name: "Battle",
  9676. height: math.unit(25 + 11 / 12, "feet")
  9677. },
  9678. {
  9679. name: "Wrath",
  9680. height: math.unit(1654 + 11 / 12, "feet")
  9681. },
  9682. {
  9683. name: "Planet Destroyer",
  9684. height: math.unit(12000, "miles")
  9685. },
  9686. {
  9687. name: "Galaxy Conqueror",
  9688. height: math.unit(1.45, "zettameters"),
  9689. default: true
  9690. },
  9691. {
  9692. name: "Universal War",
  9693. height: math.unit(184, "gigaparsecs")
  9694. },
  9695. {
  9696. name: "Eternity War",
  9697. height: math.unit(1.98e55, "yottaparsecs")
  9698. },
  9699. ]
  9700. ))
  9701. characterMakers.push(() => makeCharacter(
  9702. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9703. {
  9704. front: {
  9705. height: math.unit(5 + 8 / 12, "feet"),
  9706. weight: math.unit(63, "kg"),
  9707. name: "Front",
  9708. image: {
  9709. source: "./media/characters/xavier/front.svg",
  9710. extra: 944 / 883
  9711. }
  9712. },
  9713. frontStretch: {
  9714. height: math.unit(5 + 8 / 12, "feet"),
  9715. weight: math.unit(63, "kg"),
  9716. name: "Stretching",
  9717. image: {
  9718. source: "./media/characters/xavier/front-stretch.svg",
  9719. extra: 962 / 820
  9720. }
  9721. },
  9722. },
  9723. [
  9724. {
  9725. name: "Normal",
  9726. height: math.unit(5 + 8 / 12, "feet")
  9727. },
  9728. {
  9729. name: "Macro",
  9730. height: math.unit(100, "meters"),
  9731. default: true
  9732. },
  9733. {
  9734. name: "McLargeHuge",
  9735. height: math.unit(10, "miles")
  9736. },
  9737. ]
  9738. ))
  9739. characterMakers.push(() => makeCharacter(
  9740. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9741. {
  9742. front: {
  9743. height: math.unit(5 + 5 / 12, "feet"),
  9744. weight: math.unit(150, "lb"),
  9745. name: "Front",
  9746. image: {
  9747. source: "./media/characters/joshii/front.svg",
  9748. extra: 765 / 653,
  9749. bottom: 51 / 816
  9750. }
  9751. },
  9752. foot: {
  9753. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9754. name: "Foot",
  9755. image: {
  9756. source: "./media/characters/joshii/foot.svg"
  9757. }
  9758. },
  9759. },
  9760. [
  9761. {
  9762. name: "Micro",
  9763. height: math.unit(2, "inches")
  9764. },
  9765. {
  9766. name: "Normal",
  9767. height: math.unit(5 + 5 / 12, "feet")
  9768. },
  9769. {
  9770. name: "Macro",
  9771. height: math.unit(785, "feet"),
  9772. default: true
  9773. },
  9774. {
  9775. name: "Megamacro",
  9776. height: math.unit(24.5, "miles")
  9777. },
  9778. ]
  9779. ))
  9780. characterMakers.push(() => makeCharacter(
  9781. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9782. {
  9783. front: {
  9784. height: math.unit(6, "feet"),
  9785. weight: math.unit(150, "lb"),
  9786. name: "Front",
  9787. image: {
  9788. source: "./media/characters/goddess-elizabeth/front.svg",
  9789. extra: 1800 / 1525,
  9790. bottom: 0.005
  9791. }
  9792. },
  9793. foot: {
  9794. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9795. name: "Foot",
  9796. image: {
  9797. source: "./media/characters/goddess-elizabeth/foot.svg"
  9798. }
  9799. },
  9800. mouth: {
  9801. height: math.unit(6, "feet"),
  9802. name: "Mouth",
  9803. image: {
  9804. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9805. }
  9806. },
  9807. },
  9808. [
  9809. {
  9810. name: "Micro",
  9811. height: math.unit(12, "feet")
  9812. },
  9813. {
  9814. name: "Normal",
  9815. height: math.unit(80, "miles"),
  9816. default: true
  9817. },
  9818. {
  9819. name: "Macro",
  9820. height: math.unit(15000, "parsecs")
  9821. },
  9822. ]
  9823. ))
  9824. characterMakers.push(() => makeCharacter(
  9825. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9826. {
  9827. front: {
  9828. height: math.unit(5 + 9 / 12, "feet"),
  9829. weight: math.unit(144, "lb"),
  9830. name: "Front",
  9831. image: {
  9832. source: "./media/characters/kara/front.svg"
  9833. }
  9834. },
  9835. feet: {
  9836. height: math.unit(6 / 6.765, "feet"),
  9837. name: "Kara's Feet",
  9838. rename: true,
  9839. image: {
  9840. source: "./media/characters/kara/feet.svg"
  9841. }
  9842. },
  9843. },
  9844. [
  9845. {
  9846. name: "Normal",
  9847. height: math.unit(5 + 9 / 12, "feet")
  9848. },
  9849. {
  9850. name: "Macro",
  9851. height: math.unit(174, "feet"),
  9852. default: true
  9853. },
  9854. ]
  9855. ))
  9856. characterMakers.push(() => makeCharacter(
  9857. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9858. {
  9859. front: {
  9860. height: math.unit(18, "feet"),
  9861. weight: math.unit(4050, "lb"),
  9862. name: "Front",
  9863. image: {
  9864. source: "./media/characters/tyrone/front.svg",
  9865. extra: 2405 / 2270,
  9866. bottom: 182 / 2587
  9867. }
  9868. },
  9869. },
  9870. [
  9871. {
  9872. name: "Normal",
  9873. height: math.unit(18, "feet"),
  9874. default: true
  9875. },
  9876. {
  9877. name: "Macro",
  9878. height: math.unit(300, "feet")
  9879. },
  9880. {
  9881. name: "Megamacro",
  9882. height: math.unit(15, "km")
  9883. },
  9884. {
  9885. name: "Gigamacro",
  9886. height: math.unit(500, "km")
  9887. },
  9888. {
  9889. name: "Teramacro",
  9890. height: math.unit(0.5, "gigameters")
  9891. },
  9892. {
  9893. name: "Omnimacro",
  9894. height: math.unit(1e252, "yottauniverse")
  9895. },
  9896. ]
  9897. ))
  9898. characterMakers.push(() => makeCharacter(
  9899. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9900. {
  9901. front: {
  9902. height: math.unit(7 + 8 / 12, "feet"),
  9903. weight: math.unit(120, "lb"),
  9904. name: "Front",
  9905. image: {
  9906. source: "./media/characters/danny/front.svg",
  9907. extra: 1490 / 1350
  9908. }
  9909. },
  9910. back: {
  9911. height: math.unit(7 + 8 / 12, "feet"),
  9912. weight: math.unit(120, "lb"),
  9913. name: "Back",
  9914. image: {
  9915. source: "./media/characters/danny/back.svg",
  9916. extra: 1490 / 1350
  9917. }
  9918. },
  9919. },
  9920. [
  9921. {
  9922. name: "Normal",
  9923. height: math.unit(7 + 8 / 12, "feet"),
  9924. default: true
  9925. },
  9926. ]
  9927. ))
  9928. characterMakers.push(() => makeCharacter(
  9929. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9930. {
  9931. front: {
  9932. height: math.unit(3.5, "inches"),
  9933. weight: math.unit(19, "grams"),
  9934. name: "Front",
  9935. image: {
  9936. source: "./media/characters/mallow/front.svg",
  9937. extra: 471 / 431
  9938. }
  9939. },
  9940. back: {
  9941. height: math.unit(3.5, "inches"),
  9942. weight: math.unit(19, "grams"),
  9943. name: "Back",
  9944. image: {
  9945. source: "./media/characters/mallow/back.svg",
  9946. extra: 471 / 431
  9947. }
  9948. },
  9949. },
  9950. [
  9951. {
  9952. name: "Normal",
  9953. height: math.unit(3.5, "inches"),
  9954. default: true
  9955. },
  9956. ]
  9957. ))
  9958. characterMakers.push(() => makeCharacter(
  9959. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9960. {
  9961. front: {
  9962. height: math.unit(9, "feet"),
  9963. weight: math.unit(230, "kg"),
  9964. name: "Front",
  9965. image: {
  9966. source: "./media/characters/starry-aqua/front.svg"
  9967. }
  9968. },
  9969. back: {
  9970. height: math.unit(9, "feet"),
  9971. weight: math.unit(230, "kg"),
  9972. name: "Back",
  9973. image: {
  9974. source: "./media/characters/starry-aqua/back.svg"
  9975. }
  9976. },
  9977. hand: {
  9978. height: math.unit(9 * 0.1168, "feet"),
  9979. name: "Hand",
  9980. image: {
  9981. source: "./media/characters/starry-aqua/hand.svg"
  9982. }
  9983. },
  9984. foot: {
  9985. height: math.unit(9 * 0.18, "feet"),
  9986. name: "Foot",
  9987. image: {
  9988. source: "./media/characters/starry-aqua/foot.svg"
  9989. }
  9990. }
  9991. },
  9992. [
  9993. {
  9994. name: "Micro",
  9995. height: math.unit(3, "inches")
  9996. },
  9997. {
  9998. name: "Normal",
  9999. height: math.unit(9, "feet")
  10000. },
  10001. {
  10002. name: "Macro",
  10003. height: math.unit(300, "feet"),
  10004. default: true
  10005. },
  10006. {
  10007. name: "Megamacro",
  10008. height: math.unit(3200, "feet")
  10009. }
  10010. ]
  10011. ))
  10012. characterMakers.push(() => makeCharacter(
  10013. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  10014. {
  10015. front: {
  10016. height: math.unit(15, "feet"),
  10017. weight: math.unit(5026, "lb"),
  10018. name: "Front",
  10019. image: {
  10020. source: "./media/characters/luka-towers/front.svg",
  10021. extra: 1269/1133,
  10022. bottom: 51/1320
  10023. }
  10024. },
  10025. },
  10026. [
  10027. {
  10028. name: "Normal",
  10029. height: math.unit(15, "feet"),
  10030. default: true
  10031. },
  10032. {
  10033. name: "Minimacro",
  10034. height: math.unit(25, "feet")
  10035. },
  10036. {
  10037. name: "Macro",
  10038. height: math.unit(320, "feet")
  10039. },
  10040. {
  10041. name: "Megamacro",
  10042. height: math.unit(35000, "feet")
  10043. },
  10044. {
  10045. name: "Gigamacro",
  10046. height: math.unit(4000, "miles")
  10047. },
  10048. {
  10049. name: "Teramacro",
  10050. height: math.unit(15000, "miles")
  10051. },
  10052. ]
  10053. ))
  10054. characterMakers.push(() => makeCharacter(
  10055. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10056. {
  10057. front: {
  10058. height: math.unit(6, "feet"),
  10059. weight: math.unit(150, "lb"),
  10060. name: "Front",
  10061. image: {
  10062. source: "./media/characters/natalie-nightring/front.svg",
  10063. extra: 1,
  10064. bottom: 0.06
  10065. }
  10066. },
  10067. },
  10068. [
  10069. {
  10070. name: "Uh Oh",
  10071. height: math.unit(0.1, "mm")
  10072. },
  10073. {
  10074. name: "Small",
  10075. height: math.unit(3, "inches")
  10076. },
  10077. {
  10078. name: "Human Scale",
  10079. height: math.unit(6, "feet")
  10080. },
  10081. {
  10082. name: "Librarian",
  10083. height: math.unit(50, "feet"),
  10084. default: true
  10085. },
  10086. {
  10087. name: "Immense",
  10088. height: math.unit(200, "miles")
  10089. },
  10090. ]
  10091. ))
  10092. characterMakers.push(() => makeCharacter(
  10093. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10094. {
  10095. front: {
  10096. height: math.unit(6, "feet"),
  10097. weight: math.unit(180, "lbs"),
  10098. name: "Front",
  10099. image: {
  10100. source: "./media/characters/danni-rosie/front.svg",
  10101. extra: 1260 / 1128,
  10102. bottom: 0.022
  10103. }
  10104. },
  10105. },
  10106. [
  10107. {
  10108. name: "Micro",
  10109. height: math.unit(2, "inches"),
  10110. default: true
  10111. },
  10112. ]
  10113. ))
  10114. characterMakers.push(() => makeCharacter(
  10115. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10116. {
  10117. front: {
  10118. height: math.unit(5 + 9 / 12, "feet"),
  10119. weight: math.unit(220, "lb"),
  10120. name: "Front",
  10121. image: {
  10122. source: "./media/characters/samantha-kruse/front.svg",
  10123. extra: (985 / 935),
  10124. bottom: 0.03
  10125. }
  10126. },
  10127. frontUndressed: {
  10128. height: math.unit(5 + 9 / 12, "feet"),
  10129. weight: math.unit(220, "lb"),
  10130. name: "Front (Undressed)",
  10131. image: {
  10132. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10133. extra: (973 / 923),
  10134. bottom: 0.025
  10135. }
  10136. },
  10137. fat: {
  10138. height: math.unit(5 + 9 / 12, "feet"),
  10139. weight: math.unit(900, "lb"),
  10140. name: "Front (Fat)",
  10141. image: {
  10142. source: "./media/characters/samantha-kruse/fat.svg",
  10143. extra: 2688 / 2561
  10144. }
  10145. },
  10146. },
  10147. [
  10148. {
  10149. name: "Normal",
  10150. height: math.unit(5 + 9 / 12, "feet"),
  10151. default: true
  10152. }
  10153. ]
  10154. ))
  10155. characterMakers.push(() => makeCharacter(
  10156. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10157. {
  10158. back: {
  10159. height: math.unit(5 + 4 / 12, "feet"),
  10160. weight: math.unit(4963, "lb"),
  10161. name: "Back",
  10162. image: {
  10163. source: "./media/characters/amelia-rosie/back.svg",
  10164. extra: 1113 / 963,
  10165. bottom: 0.01
  10166. }
  10167. },
  10168. },
  10169. [
  10170. {
  10171. name: "Level 0",
  10172. height: math.unit(5 + 4 / 12, "feet")
  10173. },
  10174. {
  10175. name: "Level 1",
  10176. height: math.unit(164597, "feet"),
  10177. default: true
  10178. },
  10179. {
  10180. name: "Level 2",
  10181. height: math.unit(956243, "miles")
  10182. },
  10183. {
  10184. name: "Level 3",
  10185. height: math.unit(29421709423, "miles")
  10186. },
  10187. {
  10188. name: "Level 4",
  10189. height: math.unit(154, "lightyears")
  10190. },
  10191. {
  10192. name: "Level 5",
  10193. height: math.unit(4738272, "lightyears")
  10194. },
  10195. {
  10196. name: "Level 6",
  10197. height: math.unit(145787152896, "lightyears")
  10198. },
  10199. ]
  10200. ))
  10201. characterMakers.push(() => makeCharacter(
  10202. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10203. {
  10204. front: {
  10205. height: math.unit(5 + 11 / 12, "feet"),
  10206. weight: math.unit(65, "kg"),
  10207. name: "Front",
  10208. image: {
  10209. source: "./media/characters/rook-kitara/front.svg",
  10210. extra: 1347 / 1274,
  10211. bottom: 0.005
  10212. }
  10213. },
  10214. },
  10215. [
  10216. {
  10217. name: "Totally Unfair",
  10218. height: math.unit(1.8, "mm")
  10219. },
  10220. {
  10221. name: "Lap Rookie",
  10222. height: math.unit(1.4, "feet")
  10223. },
  10224. {
  10225. name: "Normal",
  10226. height: math.unit(5 + 11 / 12, "feet"),
  10227. default: true
  10228. },
  10229. {
  10230. name: "How Did This Happen",
  10231. height: math.unit(80, "miles")
  10232. }
  10233. ]
  10234. ))
  10235. characterMakers.push(() => makeCharacter(
  10236. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10237. {
  10238. front: {
  10239. height: math.unit(7, "feet"),
  10240. weight: math.unit(300, "lb"),
  10241. name: "Front",
  10242. image: {
  10243. source: "./media/characters/pisces/front.svg",
  10244. extra: 2255 / 2115,
  10245. bottom: 0.03
  10246. }
  10247. },
  10248. back: {
  10249. height: math.unit(7, "feet"),
  10250. weight: math.unit(300, "lb"),
  10251. name: "Back",
  10252. image: {
  10253. source: "./media/characters/pisces/back.svg",
  10254. extra: 2146 / 2055,
  10255. bottom: 0.04
  10256. }
  10257. },
  10258. },
  10259. [
  10260. {
  10261. name: "Normal",
  10262. height: math.unit(7, "feet"),
  10263. default: true
  10264. },
  10265. {
  10266. name: "Swimming Pool",
  10267. height: math.unit(12.2, "meters")
  10268. },
  10269. {
  10270. name: "Olympic Swimming Pool",
  10271. height: math.unit(56.3, "meters")
  10272. },
  10273. {
  10274. name: "Lake Superior",
  10275. height: math.unit(93900, "meters")
  10276. },
  10277. {
  10278. name: "Mediterranean Sea",
  10279. height: math.unit(644457, "meters")
  10280. },
  10281. {
  10282. name: "World's Oceans",
  10283. height: math.unit(4567491, "meters")
  10284. },
  10285. ]
  10286. ))
  10287. characterMakers.push(() => makeCharacter(
  10288. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10289. {
  10290. front: {
  10291. height: math.unit(2.3, "meters"),
  10292. weight: math.unit(120, "kg"),
  10293. name: "Front",
  10294. image: {
  10295. source: "./media/characters/zelas/front.svg"
  10296. }
  10297. },
  10298. side: {
  10299. height: math.unit(2.3, "meters"),
  10300. weight: math.unit(120, "kg"),
  10301. name: "Side",
  10302. image: {
  10303. source: "./media/characters/zelas/side.svg"
  10304. }
  10305. },
  10306. back: {
  10307. height: math.unit(2.3, "meters"),
  10308. weight: math.unit(120, "kg"),
  10309. name: "Back",
  10310. image: {
  10311. source: "./media/characters/zelas/back.svg"
  10312. }
  10313. },
  10314. foot: {
  10315. height: math.unit(1.116, "feet"),
  10316. name: "Foot",
  10317. image: {
  10318. source: "./media/characters/zelas/foot.svg"
  10319. }
  10320. },
  10321. },
  10322. [
  10323. {
  10324. name: "Normal",
  10325. height: math.unit(2.3, "meters")
  10326. },
  10327. {
  10328. name: "Macro",
  10329. height: math.unit(30, "meters"),
  10330. default: true
  10331. },
  10332. ]
  10333. ))
  10334. characterMakers.push(() => makeCharacter(
  10335. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10336. {
  10337. front: {
  10338. height: math.unit(1, "inch"),
  10339. weight: math.unit(0.21, "grams"),
  10340. name: "Front",
  10341. image: {
  10342. source: "./media/characters/talbot/front.svg",
  10343. extra: 594 / 544
  10344. }
  10345. },
  10346. },
  10347. [
  10348. {
  10349. name: "Micro",
  10350. height: math.unit(1, "inch"),
  10351. default: true
  10352. },
  10353. ]
  10354. ))
  10355. characterMakers.push(() => makeCharacter(
  10356. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10357. {
  10358. front: {
  10359. height: math.unit(3 + 3 / 12, "feet"),
  10360. weight: math.unit(51.8, "lb"),
  10361. name: "Front",
  10362. image: {
  10363. source: "./media/characters/fliss/front.svg",
  10364. extra: 840 / 640
  10365. }
  10366. },
  10367. },
  10368. [
  10369. {
  10370. name: "Teeny Tiny",
  10371. height: math.unit(1, "mm")
  10372. },
  10373. {
  10374. name: "Small",
  10375. height: math.unit(1, "inch"),
  10376. default: true
  10377. },
  10378. {
  10379. name: "Standard Sylveon",
  10380. height: math.unit(3 + 3 / 12, "feet")
  10381. },
  10382. {
  10383. name: "Large Nuisance",
  10384. height: math.unit(33, "feet")
  10385. },
  10386. {
  10387. name: "City Filler",
  10388. height: math.unit(3000, "feet")
  10389. },
  10390. {
  10391. name: "New Horizon",
  10392. height: math.unit(6000, "miles")
  10393. },
  10394. ]
  10395. ))
  10396. characterMakers.push(() => makeCharacter(
  10397. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10398. {
  10399. front: {
  10400. height: math.unit(5, "cm"),
  10401. weight: math.unit(1.94, "g"),
  10402. name: "Front",
  10403. image: {
  10404. source: "./media/characters/fleta/front.svg",
  10405. extra: 835 / 803
  10406. }
  10407. },
  10408. back: {
  10409. height: math.unit(5, "cm"),
  10410. weight: math.unit(1.94, "g"),
  10411. name: "Back",
  10412. image: {
  10413. source: "./media/characters/fleta/back.svg",
  10414. extra: 835 / 803
  10415. }
  10416. },
  10417. },
  10418. [
  10419. {
  10420. name: "Micro",
  10421. height: math.unit(5, "cm"),
  10422. default: true
  10423. },
  10424. ]
  10425. ))
  10426. characterMakers.push(() => makeCharacter(
  10427. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10428. {
  10429. front: {
  10430. height: math.unit(6, "feet"),
  10431. weight: math.unit(225, "lb"),
  10432. name: "Front",
  10433. image: {
  10434. source: "./media/characters/dominic/front.svg",
  10435. extra: 1770 / 1620,
  10436. bottom: 0.025
  10437. }
  10438. },
  10439. back: {
  10440. height: math.unit(6, "feet"),
  10441. weight: math.unit(225, "lb"),
  10442. name: "Back",
  10443. image: {
  10444. source: "./media/characters/dominic/back.svg",
  10445. extra: 1745 / 1620,
  10446. bottom: 0.065
  10447. }
  10448. },
  10449. },
  10450. [
  10451. {
  10452. name: "Nano",
  10453. height: math.unit(0.1, "mm")
  10454. },
  10455. {
  10456. name: "Micro-",
  10457. height: math.unit(1, "mm")
  10458. },
  10459. {
  10460. name: "Micro",
  10461. height: math.unit(4, "inches")
  10462. },
  10463. {
  10464. name: "Normal",
  10465. height: math.unit(6 + 4 / 12, "feet"),
  10466. default: true
  10467. },
  10468. {
  10469. name: "Macro",
  10470. height: math.unit(115, "feet")
  10471. },
  10472. {
  10473. name: "Macro+",
  10474. height: math.unit(955, "feet")
  10475. },
  10476. {
  10477. name: "Megamacro",
  10478. height: math.unit(8990, "feet")
  10479. },
  10480. {
  10481. name: "Gigmacro",
  10482. height: math.unit(9310, "miles")
  10483. },
  10484. {
  10485. name: "Teramacro",
  10486. height: math.unit(1567005010, "miles")
  10487. },
  10488. {
  10489. name: "Examacro",
  10490. height: math.unit(1425, "parsecs")
  10491. },
  10492. ]
  10493. ))
  10494. characterMakers.push(() => makeCharacter(
  10495. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10496. {
  10497. front: {
  10498. height: math.unit(400, "feet"),
  10499. weight: math.unit(44444444, "lb"),
  10500. name: "Front",
  10501. image: {
  10502. source: "./media/characters/major-colonel/front.svg"
  10503. }
  10504. },
  10505. back: {
  10506. height: math.unit(400, "feet"),
  10507. weight: math.unit(44444444, "lb"),
  10508. name: "Back",
  10509. image: {
  10510. source: "./media/characters/major-colonel/back.svg"
  10511. }
  10512. },
  10513. },
  10514. [
  10515. {
  10516. name: "Macro",
  10517. height: math.unit(400, "feet"),
  10518. default: true
  10519. },
  10520. ]
  10521. ))
  10522. characterMakers.push(() => makeCharacter(
  10523. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10524. {
  10525. catFront: {
  10526. height: math.unit(6, "feet"),
  10527. weight: math.unit(120, "lb"),
  10528. name: "Front (Cat Side)",
  10529. image: {
  10530. source: "./media/characters/axel-lycan/cat-front.svg",
  10531. extra: 430 / 402,
  10532. bottom: 43 / 472.35
  10533. }
  10534. },
  10535. catBack: {
  10536. height: math.unit(6, "feet"),
  10537. weight: math.unit(120, "lb"),
  10538. name: "Back (Cat Side)",
  10539. image: {
  10540. source: "./media/characters/axel-lycan/cat-back.svg",
  10541. extra: 447 / 419,
  10542. bottom: 23.3 / 469
  10543. }
  10544. },
  10545. wolfFront: {
  10546. height: math.unit(6, "feet"),
  10547. weight: math.unit(120, "lb"),
  10548. name: "Front (Wolf Side)",
  10549. image: {
  10550. source: "./media/characters/axel-lycan/wolf-front.svg",
  10551. extra: 485 / 456,
  10552. bottom: 19 / 504
  10553. }
  10554. },
  10555. wolfBack: {
  10556. height: math.unit(6, "feet"),
  10557. weight: math.unit(120, "lb"),
  10558. name: "Back (Wolf Side)",
  10559. image: {
  10560. source: "./media/characters/axel-lycan/wolf-back.svg",
  10561. extra: 475 / 438,
  10562. bottom: 39.2 / 514
  10563. }
  10564. },
  10565. },
  10566. [
  10567. {
  10568. name: "Macro",
  10569. height: math.unit(1, "km"),
  10570. default: true
  10571. },
  10572. ]
  10573. ))
  10574. characterMakers.push(() => makeCharacter(
  10575. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10576. {
  10577. front: {
  10578. height: math.unit(5 + 9 / 12, "feet"),
  10579. weight: math.unit(175, "lb"),
  10580. name: "Front",
  10581. image: {
  10582. source: "./media/characters/vanrel-hyena/front.svg",
  10583. extra: 1086 / 1010,
  10584. bottom: 0.04
  10585. }
  10586. },
  10587. },
  10588. [
  10589. {
  10590. name: "Normal",
  10591. height: math.unit(5 + 9 / 12, "feet"),
  10592. default: true
  10593. },
  10594. ]
  10595. ))
  10596. characterMakers.push(() => makeCharacter(
  10597. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10598. {
  10599. front: {
  10600. height: math.unit(6, "feet"),
  10601. weight: math.unit(103, "lb"),
  10602. name: "Front",
  10603. image: {
  10604. source: "./media/characters/abbott-absol/front.svg",
  10605. extra: 2010 / 1842
  10606. }
  10607. },
  10608. },
  10609. [
  10610. {
  10611. name: "Megamicro",
  10612. height: math.unit(0.1, "mm")
  10613. },
  10614. {
  10615. name: "Micro",
  10616. height: math.unit(1, "inch")
  10617. },
  10618. {
  10619. name: "Normal",
  10620. height: math.unit(6, "feet"),
  10621. default: true
  10622. },
  10623. ]
  10624. ))
  10625. characterMakers.push(() => makeCharacter(
  10626. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10627. {
  10628. front: {
  10629. height: math.unit(6, "feet"),
  10630. weight: math.unit(264, "lb"),
  10631. name: "Front",
  10632. image: {
  10633. source: "./media/characters/hector/front.svg",
  10634. extra: 2280 / 2130,
  10635. bottom: 0.07
  10636. }
  10637. },
  10638. },
  10639. [
  10640. {
  10641. name: "Normal",
  10642. height: math.unit(12.25, "foot"),
  10643. default: true
  10644. },
  10645. {
  10646. name: "Macro",
  10647. height: math.unit(160, "feet")
  10648. },
  10649. ]
  10650. ))
  10651. characterMakers.push(() => makeCharacter(
  10652. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10653. {
  10654. front: {
  10655. height: math.unit(6, "feet"),
  10656. weight: math.unit(150, "lb"),
  10657. name: "Front",
  10658. image: {
  10659. source: "./media/characters/sal/front.svg",
  10660. extra: 1846 / 1699,
  10661. bottom: 0.04
  10662. }
  10663. },
  10664. },
  10665. [
  10666. {
  10667. name: "Megamacro",
  10668. height: math.unit(10, "miles"),
  10669. default: true
  10670. },
  10671. ]
  10672. ))
  10673. characterMakers.push(() => makeCharacter(
  10674. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10675. {
  10676. front: {
  10677. height: math.unit(3, "meters"),
  10678. weight: math.unit(450, "kg"),
  10679. name: "front",
  10680. image: {
  10681. source: "./media/characters/ranger/front.svg",
  10682. extra: 2401 / 2243,
  10683. bottom: 0.05
  10684. }
  10685. },
  10686. },
  10687. [
  10688. {
  10689. name: "Normal",
  10690. height: math.unit(3, "meters"),
  10691. default: true
  10692. },
  10693. ]
  10694. ))
  10695. characterMakers.push(() => makeCharacter(
  10696. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10697. {
  10698. front: {
  10699. height: math.unit(14, "feet"),
  10700. weight: math.unit(800, "kg"),
  10701. name: "Front",
  10702. image: {
  10703. source: "./media/characters/theresa/front.svg",
  10704. extra: 3575 / 3346,
  10705. bottom: 0.03
  10706. }
  10707. },
  10708. },
  10709. [
  10710. {
  10711. name: "Normal",
  10712. height: math.unit(14, "feet"),
  10713. default: true
  10714. },
  10715. ]
  10716. ))
  10717. characterMakers.push(() => makeCharacter(
  10718. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10719. {
  10720. front: {
  10721. height: math.unit(6, "feet"),
  10722. weight: math.unit(3, "kg"),
  10723. name: "Front",
  10724. image: {
  10725. source: "./media/characters/ine/front.svg",
  10726. extra: 678 / 539,
  10727. bottom: 0.023
  10728. }
  10729. },
  10730. },
  10731. [
  10732. {
  10733. name: "Normal",
  10734. height: math.unit(2.265, "feet"),
  10735. default: true
  10736. },
  10737. ]
  10738. ))
  10739. characterMakers.push(() => makeCharacter(
  10740. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10741. {
  10742. front: {
  10743. height: math.unit(5, "feet"),
  10744. weight: math.unit(30, "kg"),
  10745. name: "Front",
  10746. image: {
  10747. source: "./media/characters/vial/front.svg",
  10748. extra: 1365 / 1277,
  10749. bottom: 0.04
  10750. }
  10751. },
  10752. },
  10753. [
  10754. {
  10755. name: "Normal",
  10756. height: math.unit(5, "feet"),
  10757. default: true
  10758. },
  10759. ]
  10760. ))
  10761. characterMakers.push(() => makeCharacter(
  10762. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10763. {
  10764. side: {
  10765. height: math.unit(3.4, "meters"),
  10766. weight: math.unit(1000, "lb"),
  10767. name: "Side",
  10768. image: {
  10769. source: "./media/characters/rovoska/side.svg",
  10770. extra: 4403 / 1515
  10771. }
  10772. },
  10773. },
  10774. [
  10775. {
  10776. name: "Normal",
  10777. height: math.unit(3.4, "meters"),
  10778. default: true
  10779. },
  10780. ]
  10781. ))
  10782. characterMakers.push(() => makeCharacter(
  10783. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10784. {
  10785. front: {
  10786. height: math.unit(8, "feet"),
  10787. weight: math.unit(315, "lb"),
  10788. name: "Front",
  10789. image: {
  10790. source: "./media/characters/gunner-rotthbauer/front.svg"
  10791. }
  10792. },
  10793. back: {
  10794. height: math.unit(8, "feet"),
  10795. weight: math.unit(315, "lb"),
  10796. name: "Back",
  10797. image: {
  10798. source: "./media/characters/gunner-rotthbauer/back.svg"
  10799. }
  10800. },
  10801. },
  10802. [
  10803. {
  10804. name: "Micro",
  10805. height: math.unit(3.5, "inches")
  10806. },
  10807. {
  10808. name: "Normal",
  10809. height: math.unit(8, "feet"),
  10810. default: true
  10811. },
  10812. {
  10813. name: "Macro",
  10814. height: math.unit(250, "feet")
  10815. },
  10816. {
  10817. name: "Megamacro",
  10818. height: math.unit(1, "AU")
  10819. },
  10820. ]
  10821. ))
  10822. characterMakers.push(() => makeCharacter(
  10823. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10824. {
  10825. front: {
  10826. height: math.unit(5 + 5 / 12, "feet"),
  10827. weight: math.unit(140, "lb"),
  10828. name: "Front",
  10829. image: {
  10830. source: "./media/characters/allatia/front.svg",
  10831. extra: 1227 / 1180,
  10832. bottom: 0.027
  10833. }
  10834. },
  10835. },
  10836. [
  10837. {
  10838. name: "Normal",
  10839. height: math.unit(5 + 5 / 12, "feet")
  10840. },
  10841. {
  10842. name: "Macro",
  10843. height: math.unit(250, "feet"),
  10844. default: true
  10845. },
  10846. {
  10847. name: "Megamacro",
  10848. height: math.unit(8, "miles")
  10849. }
  10850. ]
  10851. ))
  10852. characterMakers.push(() => makeCharacter(
  10853. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10854. {
  10855. front: {
  10856. height: math.unit(6, "feet"),
  10857. weight: math.unit(120, "lb"),
  10858. name: "Front",
  10859. image: {
  10860. source: "./media/characters/tene/front.svg",
  10861. extra: 814/750,
  10862. bottom: 36/850
  10863. }
  10864. },
  10865. stomping: {
  10866. height: math.unit(2.025, "meters"),
  10867. weight: math.unit(120, "lb"),
  10868. name: "Stomping",
  10869. image: {
  10870. source: "./media/characters/tene/stomping.svg",
  10871. extra: 885/821,
  10872. bottom: 15/900
  10873. }
  10874. },
  10875. sitting: {
  10876. height: math.unit(1, "meter"),
  10877. weight: math.unit(120, "lb"),
  10878. name: "Sitting",
  10879. image: {
  10880. source: "./media/characters/tene/sitting.svg",
  10881. extra: 396/366,
  10882. bottom: 79/475
  10883. }
  10884. },
  10885. smiling: {
  10886. height: math.unit(1.2, "feet"),
  10887. name: "Smiling",
  10888. image: {
  10889. source: "./media/characters/tene/smiling.svg",
  10890. extra: 1364/1071,
  10891. bottom: 0/1364
  10892. }
  10893. },
  10894. smug: {
  10895. height: math.unit(1.3, "feet"),
  10896. name: "Smug",
  10897. image: {
  10898. source: "./media/characters/tene/smug.svg",
  10899. extra: 1323/1082,
  10900. bottom: 0/1323
  10901. }
  10902. },
  10903. feral: {
  10904. height: math.unit(3.9, "feet"),
  10905. weight: math.unit(250, "lb"),
  10906. name: "Feral",
  10907. image: {
  10908. source: "./media/characters/tene/feral.svg",
  10909. extra: 717 / 458,
  10910. bottom: 0.179
  10911. }
  10912. },
  10913. },
  10914. [
  10915. {
  10916. name: "Normal",
  10917. height: math.unit(6, "feet")
  10918. },
  10919. {
  10920. name: "Macro",
  10921. height: math.unit(300, "feet"),
  10922. default: true
  10923. },
  10924. {
  10925. name: "Megamacro",
  10926. height: math.unit(5, "miles")
  10927. },
  10928. ]
  10929. ))
  10930. characterMakers.push(() => makeCharacter(
  10931. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10932. {
  10933. side: {
  10934. height: math.unit(6, "feet"),
  10935. name: "Side",
  10936. image: {
  10937. source: "./media/characters/evander/side.svg",
  10938. extra: 877 / 477
  10939. }
  10940. },
  10941. },
  10942. [
  10943. {
  10944. name: "Normal",
  10945. height: math.unit(0.83, "meters"),
  10946. default: true
  10947. },
  10948. ]
  10949. ))
  10950. characterMakers.push(() => makeCharacter(
  10951. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10952. {
  10953. front: {
  10954. height: math.unit(12, "feet"),
  10955. weight: math.unit(1000, "lb"),
  10956. name: "Front",
  10957. image: {
  10958. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10959. extra: 1762 / 1611
  10960. }
  10961. },
  10962. back: {
  10963. height: math.unit(12, "feet"),
  10964. weight: math.unit(1000, "lb"),
  10965. name: "Back",
  10966. image: {
  10967. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10968. extra: 1762 / 1611
  10969. }
  10970. },
  10971. },
  10972. [
  10973. {
  10974. name: "Normal",
  10975. height: math.unit(12, "feet"),
  10976. default: true
  10977. },
  10978. {
  10979. name: "Kaiju",
  10980. height: math.unit(150, "feet")
  10981. },
  10982. ]
  10983. ))
  10984. characterMakers.push(() => makeCharacter(
  10985. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10986. {
  10987. front: {
  10988. height: math.unit(6, "feet"),
  10989. weight: math.unit(150, "lb"),
  10990. name: "Front",
  10991. image: {
  10992. source: "./media/characters/zero-alurus/front.svg"
  10993. }
  10994. },
  10995. back: {
  10996. height: math.unit(6, "feet"),
  10997. weight: math.unit(150, "lb"),
  10998. name: "Back",
  10999. image: {
  11000. source: "./media/characters/zero-alurus/back.svg"
  11001. }
  11002. },
  11003. },
  11004. [
  11005. {
  11006. name: "Normal",
  11007. height: math.unit(5 + 10 / 12, "feet")
  11008. },
  11009. {
  11010. name: "Macro",
  11011. height: math.unit(60, "feet"),
  11012. default: true
  11013. },
  11014. {
  11015. name: "Macro+",
  11016. height: math.unit(450, "feet")
  11017. },
  11018. ]
  11019. ))
  11020. characterMakers.push(() => makeCharacter(
  11021. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  11022. {
  11023. front: {
  11024. height: math.unit(6, "feet"),
  11025. weight: math.unit(200, "lb"),
  11026. name: "Front",
  11027. image: {
  11028. source: "./media/characters/mega-shi/front.svg",
  11029. extra: 1279 / 1250,
  11030. bottom: 0.02
  11031. }
  11032. },
  11033. back: {
  11034. height: math.unit(6, "feet"),
  11035. weight: math.unit(200, "lb"),
  11036. name: "Back",
  11037. image: {
  11038. source: "./media/characters/mega-shi/back.svg",
  11039. extra: 1279 / 1250,
  11040. bottom: 0.02
  11041. }
  11042. },
  11043. },
  11044. [
  11045. {
  11046. name: "Micro",
  11047. height: math.unit(16 + 6 / 12, "feet")
  11048. },
  11049. {
  11050. name: "Third Dimension",
  11051. height: math.unit(40, "meters")
  11052. },
  11053. {
  11054. name: "Normal",
  11055. height: math.unit(660, "feet"),
  11056. default: true
  11057. },
  11058. {
  11059. name: "Megamacro",
  11060. height: math.unit(10, "miles")
  11061. },
  11062. {
  11063. name: "Planetary Launch",
  11064. height: math.unit(500, "miles")
  11065. },
  11066. {
  11067. name: "Interstellar",
  11068. height: math.unit(1e9, "miles")
  11069. },
  11070. {
  11071. name: "Leaving the Universe",
  11072. height: math.unit(1, "gigaparsec")
  11073. },
  11074. {
  11075. name: "Travelling Universes",
  11076. height: math.unit(30e15, "parsecs")
  11077. },
  11078. ]
  11079. ))
  11080. characterMakers.push(() => makeCharacter(
  11081. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11082. {
  11083. front: {
  11084. height: math.unit(5 + 4/12, "feet"),
  11085. weight: math.unit(120, "lb"),
  11086. name: "Front",
  11087. image: {
  11088. source: "./media/characters/odyssey/front.svg",
  11089. extra: 1747/1571,
  11090. bottom: 47/1794
  11091. }
  11092. },
  11093. side: {
  11094. height: math.unit(5.1, "feet"),
  11095. weight: math.unit(120, "lb"),
  11096. name: "Side",
  11097. image: {
  11098. source: "./media/characters/odyssey/side.svg",
  11099. extra: 1847/1619,
  11100. bottom: 47/1894
  11101. }
  11102. },
  11103. lounging: {
  11104. height: math.unit(1.464, "feet"),
  11105. weight: math.unit(120, "lb"),
  11106. name: "Lounging",
  11107. image: {
  11108. source: "./media/characters/odyssey/lounging.svg",
  11109. extra: 1235/837,
  11110. bottom: 551/1786
  11111. }
  11112. },
  11113. },
  11114. [
  11115. {
  11116. name: "Normal",
  11117. height: math.unit(5 + 4 / 12, "feet")
  11118. },
  11119. {
  11120. name: "Macro",
  11121. height: math.unit(1, "km")
  11122. },
  11123. {
  11124. name: "Megamacro",
  11125. height: math.unit(3000, "km")
  11126. },
  11127. {
  11128. name: "Gigamacro",
  11129. height: math.unit(1, "AU"),
  11130. default: true
  11131. },
  11132. {
  11133. name: "Omniversal",
  11134. height: math.unit(100e14, "lightyears")
  11135. },
  11136. ]
  11137. ))
  11138. characterMakers.push(() => makeCharacter(
  11139. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11140. {
  11141. front: {
  11142. height: math.unit(6, "feet"),
  11143. weight: math.unit(300, "lb"),
  11144. name: "Front",
  11145. image: {
  11146. source: "./media/characters/mekuto/front.svg",
  11147. extra: 921 / 832,
  11148. bottom: 0.03
  11149. }
  11150. },
  11151. hand: {
  11152. height: math.unit(6 / 10.24, "feet"),
  11153. name: "Hand",
  11154. image: {
  11155. source: "./media/characters/mekuto/hand.svg"
  11156. }
  11157. },
  11158. foot: {
  11159. height: math.unit(6 / 5.05, "feet"),
  11160. name: "Foot",
  11161. image: {
  11162. source: "./media/characters/mekuto/foot.svg"
  11163. }
  11164. },
  11165. },
  11166. [
  11167. {
  11168. name: "Minimicro",
  11169. height: math.unit(0.2, "inches")
  11170. },
  11171. {
  11172. name: "Micro",
  11173. height: math.unit(1.5, "inches")
  11174. },
  11175. {
  11176. name: "Normal",
  11177. height: math.unit(5 + 11 / 12, "feet"),
  11178. default: true
  11179. },
  11180. {
  11181. name: "Minimacro",
  11182. height: math.unit(17 + 9 / 12, "feet")
  11183. },
  11184. {
  11185. name: "Macro",
  11186. height: math.unit(177.5, "feet")
  11187. },
  11188. {
  11189. name: "Megamacro",
  11190. height: math.unit(152, "miles")
  11191. },
  11192. ]
  11193. ))
  11194. characterMakers.push(() => makeCharacter(
  11195. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11196. {
  11197. front: {
  11198. height: math.unit(6.5, "inches"),
  11199. weight: math.unit(13, "oz"),
  11200. name: "Front",
  11201. image: {
  11202. source: "./media/characters/dafydd-tomos/front.svg",
  11203. extra: 2990 / 2603,
  11204. bottom: 0.03
  11205. }
  11206. },
  11207. },
  11208. [
  11209. {
  11210. name: "Micro",
  11211. height: math.unit(6.5, "inches"),
  11212. default: true
  11213. },
  11214. ]
  11215. ))
  11216. characterMakers.push(() => makeCharacter(
  11217. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11218. {
  11219. front: {
  11220. height: math.unit(6, "feet"),
  11221. weight: math.unit(150, "lb"),
  11222. name: "Front",
  11223. image: {
  11224. source: "./media/characters/splinter/front.svg",
  11225. extra: 2990 / 2882,
  11226. bottom: 0.04
  11227. }
  11228. },
  11229. back: {
  11230. height: math.unit(6, "feet"),
  11231. weight: math.unit(150, "lb"),
  11232. name: "Back",
  11233. image: {
  11234. source: "./media/characters/splinter/back.svg",
  11235. extra: 2990 / 2882,
  11236. bottom: 0.04
  11237. }
  11238. },
  11239. },
  11240. [
  11241. {
  11242. name: "Normal",
  11243. height: math.unit(6, "feet")
  11244. },
  11245. {
  11246. name: "Macro",
  11247. height: math.unit(230, "meters"),
  11248. default: true
  11249. },
  11250. ]
  11251. ))
  11252. characterMakers.push(() => makeCharacter(
  11253. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11254. {
  11255. front: {
  11256. height: math.unit(4 + 10 / 12, "feet"),
  11257. weight: math.unit(480, "lb"),
  11258. name: "Front",
  11259. image: {
  11260. source: "./media/characters/snow-gabumon/front.svg",
  11261. extra: 1140 / 963,
  11262. bottom: 0.058
  11263. }
  11264. },
  11265. back: {
  11266. height: math.unit(4 + 10 / 12, "feet"),
  11267. weight: math.unit(480, "lb"),
  11268. name: "Back",
  11269. image: {
  11270. source: "./media/characters/snow-gabumon/back.svg",
  11271. extra: 1115 / 962,
  11272. bottom: 0.041
  11273. }
  11274. },
  11275. frontUndresed: {
  11276. height: math.unit(4 + 10 / 12, "feet"),
  11277. weight: math.unit(480, "lb"),
  11278. name: "Front (Undressed)",
  11279. image: {
  11280. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11281. extra: 1061 / 960,
  11282. bottom: 0.045
  11283. }
  11284. },
  11285. },
  11286. [
  11287. {
  11288. name: "Micro",
  11289. height: math.unit(1, "inch")
  11290. },
  11291. {
  11292. name: "Normal",
  11293. height: math.unit(4 + 10 / 12, "feet"),
  11294. default: true
  11295. },
  11296. {
  11297. name: "Macro",
  11298. height: math.unit(200, "feet")
  11299. },
  11300. {
  11301. name: "Megamacro",
  11302. height: math.unit(120, "miles")
  11303. },
  11304. {
  11305. name: "Gigamacro",
  11306. height: math.unit(9800, "miles")
  11307. },
  11308. ]
  11309. ))
  11310. characterMakers.push(() => makeCharacter(
  11311. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11312. {
  11313. front: {
  11314. height: math.unit(1.7, "meters"),
  11315. weight: math.unit(140, "lb"),
  11316. name: "Front",
  11317. image: {
  11318. source: "./media/characters/moody/front.svg",
  11319. extra: 3226 / 3007,
  11320. bottom: 0.087
  11321. }
  11322. },
  11323. },
  11324. [
  11325. {
  11326. name: "Micro",
  11327. height: math.unit(1, "mm")
  11328. },
  11329. {
  11330. name: "Normal",
  11331. height: math.unit(1.7, "meters"),
  11332. default: true
  11333. },
  11334. {
  11335. name: "Macro",
  11336. height: math.unit(80, "meters")
  11337. },
  11338. {
  11339. name: "Macro+",
  11340. height: math.unit(500, "meters")
  11341. },
  11342. ]
  11343. ))
  11344. characterMakers.push(() => makeCharacter(
  11345. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11346. {
  11347. front: {
  11348. height: math.unit(6, "feet"),
  11349. weight: math.unit(150, "lb"),
  11350. name: "Front",
  11351. image: {
  11352. source: "./media/characters/zyas/front.svg",
  11353. extra: 1180 / 1120,
  11354. bottom: 0.045
  11355. }
  11356. },
  11357. },
  11358. [
  11359. {
  11360. name: "Normal",
  11361. height: math.unit(10, "feet"),
  11362. default: true
  11363. },
  11364. {
  11365. name: "Macro",
  11366. height: math.unit(500, "feet")
  11367. },
  11368. {
  11369. name: "Megamacro",
  11370. height: math.unit(5, "miles")
  11371. },
  11372. {
  11373. name: "Teramacro",
  11374. height: math.unit(150000, "miles")
  11375. },
  11376. ]
  11377. ))
  11378. characterMakers.push(() => makeCharacter(
  11379. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11380. {
  11381. front: {
  11382. height: math.unit(6, "feet"),
  11383. weight: math.unit(150, "lb"),
  11384. name: "Front",
  11385. image: {
  11386. source: "./media/characters/cuon/front.svg",
  11387. extra: 1390 / 1320,
  11388. bottom: 0.008
  11389. }
  11390. },
  11391. },
  11392. [
  11393. {
  11394. name: "Micro",
  11395. height: math.unit(3, "inches")
  11396. },
  11397. {
  11398. name: "Normal",
  11399. height: math.unit(18 + 9 / 12, "feet"),
  11400. default: true
  11401. },
  11402. {
  11403. name: "Macro",
  11404. height: math.unit(360, "feet")
  11405. },
  11406. {
  11407. name: "Megamacro",
  11408. height: math.unit(360, "miles")
  11409. },
  11410. ]
  11411. ))
  11412. characterMakers.push(() => makeCharacter(
  11413. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11414. {
  11415. front: {
  11416. height: math.unit(2.4, "meters"),
  11417. weight: math.unit(70, "kg"),
  11418. name: "Front",
  11419. image: {
  11420. source: "./media/characters/nyanuxk/front.svg",
  11421. extra: 1172 / 1084,
  11422. bottom: 0.065
  11423. }
  11424. },
  11425. side: {
  11426. height: math.unit(2.4, "meters"),
  11427. weight: math.unit(70, "kg"),
  11428. name: "Side",
  11429. image: {
  11430. source: "./media/characters/nyanuxk/side.svg",
  11431. extra: 1190 / 1132,
  11432. bottom: 0.007
  11433. }
  11434. },
  11435. back: {
  11436. height: math.unit(2.4, "meters"),
  11437. weight: math.unit(70, "kg"),
  11438. name: "Back",
  11439. image: {
  11440. source: "./media/characters/nyanuxk/back.svg",
  11441. extra: 1200 / 1141,
  11442. bottom: 0.015
  11443. }
  11444. },
  11445. foot: {
  11446. height: math.unit(0.52, "meters"),
  11447. name: "Foot",
  11448. image: {
  11449. source: "./media/characters/nyanuxk/foot.svg"
  11450. }
  11451. },
  11452. },
  11453. [
  11454. {
  11455. name: "Micro",
  11456. height: math.unit(2, "cm")
  11457. },
  11458. {
  11459. name: "Normal",
  11460. height: math.unit(2.4, "meters"),
  11461. default: true
  11462. },
  11463. {
  11464. name: "Smaller Macro",
  11465. height: math.unit(120, "meters")
  11466. },
  11467. {
  11468. name: "Bigger Macro",
  11469. height: math.unit(1.2, "km")
  11470. },
  11471. {
  11472. name: "Megamacro",
  11473. height: math.unit(15, "kilometers")
  11474. },
  11475. {
  11476. name: "Gigamacro",
  11477. height: math.unit(2000, "km")
  11478. },
  11479. {
  11480. name: "Teramacro",
  11481. height: math.unit(500000, "km")
  11482. },
  11483. ]
  11484. ))
  11485. characterMakers.push(() => makeCharacter(
  11486. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11487. {
  11488. side: {
  11489. height: math.unit(6, "feet"),
  11490. name: "Side",
  11491. image: {
  11492. source: "./media/characters/ailbhe/side.svg",
  11493. extra: 757 / 464,
  11494. bottom: 0.041
  11495. }
  11496. },
  11497. },
  11498. [
  11499. {
  11500. name: "Normal",
  11501. height: math.unit(1.07, "meters"),
  11502. default: true
  11503. },
  11504. ]
  11505. ))
  11506. characterMakers.push(() => makeCharacter(
  11507. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11508. {
  11509. front: {
  11510. height: math.unit(6, "feet"),
  11511. weight: math.unit(120, "kg"),
  11512. name: "Front",
  11513. image: {
  11514. source: "./media/characters/zevulfius/front.svg",
  11515. extra: 965 / 903
  11516. }
  11517. },
  11518. side: {
  11519. height: math.unit(6, "feet"),
  11520. weight: math.unit(120, "kg"),
  11521. name: "Side",
  11522. image: {
  11523. source: "./media/characters/zevulfius/side.svg",
  11524. extra: 939 / 900
  11525. }
  11526. },
  11527. back: {
  11528. height: math.unit(6, "feet"),
  11529. weight: math.unit(120, "kg"),
  11530. name: "Back",
  11531. image: {
  11532. source: "./media/characters/zevulfius/back.svg",
  11533. extra: 918 / 854,
  11534. bottom: 0.005
  11535. }
  11536. },
  11537. foot: {
  11538. height: math.unit(6 / 3.72, "feet"),
  11539. name: "Foot",
  11540. image: {
  11541. source: "./media/characters/zevulfius/foot.svg"
  11542. }
  11543. },
  11544. },
  11545. [
  11546. {
  11547. name: "Macro",
  11548. height: math.unit(750, "meters")
  11549. },
  11550. {
  11551. name: "Megamacro",
  11552. height: math.unit(20, "km"),
  11553. default: true
  11554. },
  11555. {
  11556. name: "Gigamacro",
  11557. height: math.unit(2000, "km")
  11558. },
  11559. {
  11560. name: "Teramacro",
  11561. height: math.unit(250000, "km")
  11562. },
  11563. ]
  11564. ))
  11565. characterMakers.push(() => makeCharacter(
  11566. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11567. {
  11568. front: {
  11569. height: math.unit(100, "feet"),
  11570. weight: math.unit(350, "kg"),
  11571. name: "Front",
  11572. image: {
  11573. source: "./media/characters/rikes/front.svg",
  11574. extra: 1565 / 1483,
  11575. bottom: 0.017
  11576. }
  11577. },
  11578. },
  11579. [
  11580. {
  11581. name: "Macro",
  11582. height: math.unit(100, "feet"),
  11583. default: true
  11584. },
  11585. ]
  11586. ))
  11587. characterMakers.push(() => makeCharacter(
  11588. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11589. {
  11590. front: {
  11591. height: math.unit(8, "feet"),
  11592. weight: math.unit(356, "lb"),
  11593. name: "Front",
  11594. image: {
  11595. source: "./media/characters/adam-silver-mane/front.svg",
  11596. extra: 1036/937,
  11597. bottom: 63/1099
  11598. }
  11599. },
  11600. side: {
  11601. height: math.unit(8, "feet"),
  11602. weight: math.unit(356, "lb"),
  11603. name: "Side",
  11604. image: {
  11605. source: "./media/characters/adam-silver-mane/side.svg",
  11606. extra: 997/901,
  11607. bottom: 59/1056
  11608. }
  11609. },
  11610. frontNsfw: {
  11611. height: math.unit(8, "feet"),
  11612. weight: math.unit(356, "lb"),
  11613. name: "Front (NSFW)",
  11614. image: {
  11615. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11616. extra: 1036/937,
  11617. bottom: 63/1099
  11618. }
  11619. },
  11620. sideNsfw: {
  11621. height: math.unit(8, "feet"),
  11622. weight: math.unit(356, "lb"),
  11623. name: "Side (NSFW)",
  11624. image: {
  11625. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11626. extra: 997/901,
  11627. bottom: 59/1056
  11628. }
  11629. },
  11630. dick: {
  11631. height: math.unit(2.1, "feet"),
  11632. name: "Dick",
  11633. image: {
  11634. source: "./media/characters/adam-silver-mane/dick.svg"
  11635. }
  11636. },
  11637. taur: {
  11638. height: math.unit(16, "feet"),
  11639. weight: math.unit(1500, "kg"),
  11640. name: "Taur",
  11641. image: {
  11642. source: "./media/characters/adam-silver-mane/taur.svg",
  11643. extra: 1713 / 1571,
  11644. bottom: 0.01
  11645. }
  11646. },
  11647. },
  11648. [
  11649. {
  11650. name: "Normal",
  11651. height: math.unit(8, "feet")
  11652. },
  11653. {
  11654. name: "Minimacro",
  11655. height: math.unit(80, "feet")
  11656. },
  11657. {
  11658. name: "MDA",
  11659. height: math.unit(80, "meters")
  11660. },
  11661. {
  11662. name: "Macro",
  11663. height: math.unit(800, "feet"),
  11664. default: true
  11665. },
  11666. {
  11667. name: "Megamacro",
  11668. height: math.unit(8000, "feet")
  11669. },
  11670. {
  11671. name: "Gigamacro",
  11672. height: math.unit(800, "miles")
  11673. },
  11674. {
  11675. name: "Teramacro",
  11676. height: math.unit(80000, "miles")
  11677. },
  11678. {
  11679. name: "Celestial",
  11680. height: math.unit(8e6, "miles")
  11681. },
  11682. {
  11683. name: "Star Dragon",
  11684. height: math.unit(800000, "parsecs")
  11685. },
  11686. {
  11687. name: "Godly",
  11688. height: math.unit(800, "teraparsecs")
  11689. },
  11690. ]
  11691. ))
  11692. characterMakers.push(() => makeCharacter(
  11693. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11694. {
  11695. front: {
  11696. height: math.unit(6, "feet"),
  11697. weight: math.unit(150, "lb"),
  11698. name: "Front",
  11699. image: {
  11700. source: "./media/characters/ky'owin/front.svg",
  11701. extra: 3862/3053,
  11702. bottom: 74/3936
  11703. }
  11704. },
  11705. },
  11706. [
  11707. {
  11708. name: "Normal",
  11709. height: math.unit(6 + 8 / 12, "feet")
  11710. },
  11711. {
  11712. name: "Large",
  11713. height: math.unit(68, "feet")
  11714. },
  11715. {
  11716. name: "Macro",
  11717. height: math.unit(132, "feet")
  11718. },
  11719. {
  11720. name: "Macro+",
  11721. height: math.unit(340, "feet")
  11722. },
  11723. {
  11724. name: "Macro++",
  11725. height: math.unit(680, "feet"),
  11726. default: true
  11727. },
  11728. {
  11729. name: "Megamacro",
  11730. height: math.unit(1, "mile")
  11731. },
  11732. {
  11733. name: "Megamacro+",
  11734. height: math.unit(10, "miles")
  11735. },
  11736. ]
  11737. ))
  11738. characterMakers.push(() => makeCharacter(
  11739. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11740. {
  11741. front: {
  11742. height: math.unit(4, "feet"),
  11743. weight: math.unit(50, "lb"),
  11744. name: "Front",
  11745. image: {
  11746. source: "./media/characters/mal/front.svg",
  11747. extra: 785 / 724,
  11748. bottom: 0.07
  11749. }
  11750. },
  11751. },
  11752. [
  11753. {
  11754. name: "Micro",
  11755. height: math.unit(4, "inches")
  11756. },
  11757. {
  11758. name: "Normal",
  11759. height: math.unit(4, "feet"),
  11760. default: true
  11761. },
  11762. {
  11763. name: "Macro",
  11764. height: math.unit(200, "feet")
  11765. },
  11766. ]
  11767. ))
  11768. characterMakers.push(() => makeCharacter(
  11769. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11770. {
  11771. front: {
  11772. height: math.unit(6, "feet"),
  11773. weight: math.unit(150, "lb"),
  11774. name: "Front",
  11775. image: {
  11776. source: "./media/characters/jordan-deware/front.svg",
  11777. extra: 1191 / 1012
  11778. }
  11779. },
  11780. },
  11781. [
  11782. {
  11783. name: "Nano",
  11784. height: math.unit(0.01, "mm")
  11785. },
  11786. {
  11787. name: "Minimicro",
  11788. height: math.unit(1, "mm")
  11789. },
  11790. {
  11791. name: "Micro",
  11792. height: math.unit(0.5, "inches")
  11793. },
  11794. {
  11795. name: "Normal",
  11796. height: math.unit(4, "feet"),
  11797. default: true
  11798. },
  11799. {
  11800. name: "Minimacro",
  11801. height: math.unit(40, "meters")
  11802. },
  11803. {
  11804. name: "Small Macro",
  11805. height: math.unit(400, "meters")
  11806. },
  11807. {
  11808. name: "Macro",
  11809. height: math.unit(4, "miles")
  11810. },
  11811. {
  11812. name: "Megamacro",
  11813. height: math.unit(40, "miles")
  11814. },
  11815. {
  11816. name: "Megamacro+",
  11817. height: math.unit(400, "miles")
  11818. },
  11819. {
  11820. name: "Gigamacro",
  11821. height: math.unit(400000, "miles")
  11822. },
  11823. ]
  11824. ))
  11825. characterMakers.push(() => makeCharacter(
  11826. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11827. {
  11828. side: {
  11829. height: math.unit(6, "feet"),
  11830. weight: math.unit(150, "lb"),
  11831. name: "Side",
  11832. image: {
  11833. source: "./media/characters/kimiko/side.svg",
  11834. extra: 600 / 358
  11835. }
  11836. },
  11837. },
  11838. [
  11839. {
  11840. name: "Normal",
  11841. height: math.unit(15, "feet"),
  11842. default: true
  11843. },
  11844. {
  11845. name: "Macro",
  11846. height: math.unit(220, "feet")
  11847. },
  11848. {
  11849. name: "Macro+",
  11850. height: math.unit(1450, "feet")
  11851. },
  11852. {
  11853. name: "Megamacro",
  11854. height: math.unit(11500, "feet")
  11855. },
  11856. {
  11857. name: "Gigamacro",
  11858. height: math.unit(9500, "miles")
  11859. },
  11860. {
  11861. name: "Teramacro",
  11862. height: math.unit(2208005005, "miles")
  11863. },
  11864. {
  11865. name: "Examacro",
  11866. height: math.unit(2750, "parsecs")
  11867. },
  11868. {
  11869. name: "Zettamacro",
  11870. height: math.unit(101500, "parsecs")
  11871. },
  11872. ]
  11873. ))
  11874. characterMakers.push(() => makeCharacter(
  11875. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11876. {
  11877. front: {
  11878. height: math.unit(6, "feet"),
  11879. weight: math.unit(70, "kg"),
  11880. name: "Front",
  11881. image: {
  11882. source: "./media/characters/andrew-sleepy/front.svg"
  11883. }
  11884. },
  11885. side: {
  11886. height: math.unit(6, "feet"),
  11887. weight: math.unit(70, "kg"),
  11888. name: "Side",
  11889. image: {
  11890. source: "./media/characters/andrew-sleepy/side.svg"
  11891. }
  11892. },
  11893. },
  11894. [
  11895. {
  11896. name: "Micro",
  11897. height: math.unit(1, "mm"),
  11898. default: true
  11899. },
  11900. ]
  11901. ))
  11902. characterMakers.push(() => makeCharacter(
  11903. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11904. {
  11905. front: {
  11906. height: math.unit(6, "feet"),
  11907. weight: math.unit(150, "lb"),
  11908. name: "Front",
  11909. image: {
  11910. source: "./media/characters/judio/front.svg",
  11911. extra: 1258 / 1110
  11912. }
  11913. },
  11914. },
  11915. [
  11916. {
  11917. name: "Normal",
  11918. height: math.unit(5 + 6 / 12, "feet")
  11919. },
  11920. {
  11921. name: "Macro",
  11922. height: math.unit(1000, "feet"),
  11923. default: true
  11924. },
  11925. {
  11926. name: "Megamacro",
  11927. height: math.unit(10, "miles")
  11928. },
  11929. ]
  11930. ))
  11931. characterMakers.push(() => makeCharacter(
  11932. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11933. {
  11934. frontDressed: {
  11935. height: math.unit(6, "feet"),
  11936. weight: math.unit(68, "kg"),
  11937. name: "Front (Dressed)",
  11938. image: {
  11939. source: "./media/characters/nomaxice/front-dressed.svg",
  11940. extra: 1137/824,
  11941. bottom: 74/1211
  11942. }
  11943. },
  11944. frontShorts: {
  11945. height: math.unit(6, "feet"),
  11946. weight: math.unit(68, "kg"),
  11947. name: "Front (Shorts)",
  11948. image: {
  11949. source: "./media/characters/nomaxice/front-shorts.svg",
  11950. extra: 1137/824,
  11951. bottom: 74/1211
  11952. }
  11953. },
  11954. back: {
  11955. height: math.unit(6, "feet"),
  11956. weight: math.unit(68, "kg"),
  11957. name: "Back",
  11958. image: {
  11959. source: "./media/characters/nomaxice/back.svg",
  11960. extra: 822/786,
  11961. bottom: 39/861
  11962. }
  11963. },
  11964. hand: {
  11965. height: math.unit(0.565, "feet"),
  11966. name: "Hand",
  11967. image: {
  11968. source: "./media/characters/nomaxice/hand.svg"
  11969. }
  11970. },
  11971. foot: {
  11972. height: math.unit(1, "feet"),
  11973. name: "Foot",
  11974. image: {
  11975. source: "./media/characters/nomaxice/foot.svg"
  11976. }
  11977. },
  11978. },
  11979. [
  11980. {
  11981. name: "Micro",
  11982. height: math.unit(8, "cm")
  11983. },
  11984. {
  11985. name: "Norm",
  11986. height: math.unit(1.82, "m")
  11987. },
  11988. {
  11989. name: "Norm+",
  11990. height: math.unit(8.8, "feet"),
  11991. default: true
  11992. },
  11993. {
  11994. name: "Big",
  11995. height: math.unit(8, "meters")
  11996. },
  11997. {
  11998. name: "Macro",
  11999. height: math.unit(18, "meters")
  12000. },
  12001. {
  12002. name: "Macro+",
  12003. height: math.unit(88, "meters")
  12004. },
  12005. ]
  12006. ))
  12007. characterMakers.push(() => makeCharacter(
  12008. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  12009. {
  12010. front: {
  12011. height: math.unit(12, "feet"),
  12012. weight: math.unit(1.5, "tons"),
  12013. name: "Front",
  12014. image: {
  12015. source: "./media/characters/dydros/front.svg",
  12016. extra: 863 / 800,
  12017. bottom: 0.015
  12018. }
  12019. },
  12020. back: {
  12021. height: math.unit(12, "feet"),
  12022. weight: math.unit(1.5, "tons"),
  12023. name: "Back",
  12024. image: {
  12025. source: "./media/characters/dydros/back.svg",
  12026. extra: 900 / 843,
  12027. bottom: 0.005
  12028. }
  12029. },
  12030. },
  12031. [
  12032. {
  12033. name: "Normal",
  12034. height: math.unit(12, "feet"),
  12035. default: true
  12036. },
  12037. ]
  12038. ))
  12039. characterMakers.push(() => makeCharacter(
  12040. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12041. {
  12042. front: {
  12043. height: math.unit(6, "feet"),
  12044. weight: math.unit(100, "kg"),
  12045. name: "Front",
  12046. image: {
  12047. source: "./media/characters/riggi/front.svg",
  12048. extra: 5787 / 5303
  12049. }
  12050. },
  12051. hyper: {
  12052. height: math.unit(6 * 5 / 3, "feet"),
  12053. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12054. name: "Hyper",
  12055. image: {
  12056. source: "./media/characters/riggi/hyper.svg",
  12057. extra: 3595 / 3485
  12058. }
  12059. },
  12060. },
  12061. [
  12062. {
  12063. name: "Small Macro",
  12064. height: math.unit(50, "feet")
  12065. },
  12066. {
  12067. name: "Default",
  12068. height: math.unit(200, "feet"),
  12069. default: true
  12070. },
  12071. {
  12072. name: "Loom",
  12073. height: math.unit(10000, "feet")
  12074. },
  12075. {
  12076. name: "Cruising Altitude",
  12077. height: math.unit(30000, "feet")
  12078. },
  12079. {
  12080. name: "Megamacro",
  12081. height: math.unit(100, "miles")
  12082. },
  12083. {
  12084. name: "Continent Sized",
  12085. height: math.unit(2800, "miles")
  12086. },
  12087. {
  12088. name: "Earth Sized",
  12089. height: math.unit(8000, "miles")
  12090. },
  12091. ]
  12092. ))
  12093. characterMakers.push(() => makeCharacter(
  12094. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12095. {
  12096. front: {
  12097. height: math.unit(6, "feet"),
  12098. weight: math.unit(250, "lb"),
  12099. name: "Front",
  12100. image: {
  12101. source: "./media/characters/alexi/front.svg",
  12102. extra: 3483 / 3291,
  12103. bottom: 0.04
  12104. }
  12105. },
  12106. back: {
  12107. height: math.unit(6, "feet"),
  12108. weight: math.unit(250, "lb"),
  12109. name: "Back",
  12110. image: {
  12111. source: "./media/characters/alexi/back.svg",
  12112. extra: 3533 / 3356,
  12113. bottom: 0.021
  12114. }
  12115. },
  12116. frontTransforming: {
  12117. height: math.unit(8.58, "feet"),
  12118. weight: math.unit(1300, "lb"),
  12119. name: "Transforming",
  12120. image: {
  12121. source: "./media/characters/alexi/front-transforming.svg",
  12122. extra: 437 / 409,
  12123. bottom: 19 / 458.66
  12124. }
  12125. },
  12126. frontTransformed: {
  12127. height: math.unit(12.5, "feet"),
  12128. weight: math.unit(4000, "lb"),
  12129. name: "Transformed",
  12130. image: {
  12131. source: "./media/characters/alexi/front-transformed.svg",
  12132. extra: 639 / 614,
  12133. bottom: 30.55 / 671
  12134. }
  12135. },
  12136. },
  12137. [
  12138. {
  12139. name: "Normal",
  12140. height: math.unit(14, "feet"),
  12141. default: true
  12142. },
  12143. {
  12144. name: "Minimacro",
  12145. height: math.unit(30, "meters")
  12146. },
  12147. {
  12148. name: "Macro",
  12149. height: math.unit(500, "meters")
  12150. },
  12151. {
  12152. name: "Megamacro",
  12153. height: math.unit(9000, "km")
  12154. },
  12155. {
  12156. name: "Teramacro",
  12157. height: math.unit(384000, "km")
  12158. },
  12159. ]
  12160. ))
  12161. characterMakers.push(() => makeCharacter(
  12162. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12163. {
  12164. front: {
  12165. height: math.unit(6, "feet"),
  12166. weight: math.unit(150, "lb"),
  12167. name: "Front",
  12168. image: {
  12169. source: "./media/characters/kayroo/front.svg",
  12170. extra: 1153 / 1038,
  12171. bottom: 0.06
  12172. }
  12173. },
  12174. foot: {
  12175. height: math.unit(6, "feet"),
  12176. weight: math.unit(150, "lb"),
  12177. name: "Foot",
  12178. image: {
  12179. source: "./media/characters/kayroo/foot.svg"
  12180. }
  12181. },
  12182. },
  12183. [
  12184. {
  12185. name: "Normal",
  12186. height: math.unit(8, "feet"),
  12187. default: true
  12188. },
  12189. {
  12190. name: "Minimacro",
  12191. height: math.unit(250, "feet")
  12192. },
  12193. {
  12194. name: "Macro",
  12195. height: math.unit(2800, "feet")
  12196. },
  12197. {
  12198. name: "Megamacro",
  12199. height: math.unit(5200, "feet")
  12200. },
  12201. {
  12202. name: "Gigamacro",
  12203. height: math.unit(27000, "feet")
  12204. },
  12205. {
  12206. name: "Omega",
  12207. height: math.unit(45000, "feet")
  12208. },
  12209. ]
  12210. ))
  12211. characterMakers.push(() => makeCharacter(
  12212. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12213. {
  12214. front: {
  12215. height: math.unit(18, "feet"),
  12216. weight: math.unit(5800, "lb"),
  12217. name: "Front",
  12218. image: {
  12219. source: "./media/characters/rhys/front.svg",
  12220. extra: 3386 / 3090,
  12221. bottom: 0.07
  12222. }
  12223. },
  12224. },
  12225. [
  12226. {
  12227. name: "Normal",
  12228. height: math.unit(18, "feet"),
  12229. default: true
  12230. },
  12231. {
  12232. name: "Working Size",
  12233. height: math.unit(200, "feet")
  12234. },
  12235. {
  12236. name: "Demolition Size",
  12237. height: math.unit(2000, "feet")
  12238. },
  12239. {
  12240. name: "Maximum Licensed Size",
  12241. height: math.unit(5, "miles")
  12242. },
  12243. {
  12244. name: "Maximum Observed Size",
  12245. height: math.unit(10, "yottameters")
  12246. },
  12247. ]
  12248. ))
  12249. characterMakers.push(() => makeCharacter(
  12250. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12251. {
  12252. front: {
  12253. height: math.unit(6, "feet"),
  12254. weight: math.unit(250, "lb"),
  12255. name: "Front",
  12256. image: {
  12257. source: "./media/characters/toto/front.svg",
  12258. extra: 527 / 479,
  12259. bottom: 0.05
  12260. }
  12261. },
  12262. },
  12263. [
  12264. {
  12265. name: "Micro",
  12266. height: math.unit(3, "feet")
  12267. },
  12268. {
  12269. name: "Normal",
  12270. height: math.unit(10, "feet")
  12271. },
  12272. {
  12273. name: "Macro",
  12274. height: math.unit(150, "feet"),
  12275. default: true
  12276. },
  12277. {
  12278. name: "Megamacro",
  12279. height: math.unit(1200, "feet")
  12280. },
  12281. ]
  12282. ))
  12283. characterMakers.push(() => makeCharacter(
  12284. { name: "King", species: ["lion"], tags: ["anthro"] },
  12285. {
  12286. back: {
  12287. height: math.unit(6, "feet"),
  12288. weight: math.unit(150, "lb"),
  12289. name: "Back",
  12290. image: {
  12291. source: "./media/characters/king/back.svg"
  12292. }
  12293. },
  12294. },
  12295. [
  12296. {
  12297. name: "Micro",
  12298. height: math.unit(2, "inches")
  12299. },
  12300. {
  12301. name: "Normal",
  12302. height: math.unit(8, "feet")
  12303. },
  12304. {
  12305. name: "Macro",
  12306. height: math.unit(200, "feet"),
  12307. default: true
  12308. },
  12309. {
  12310. name: "Megamacro",
  12311. height: math.unit(50, "miles")
  12312. },
  12313. ]
  12314. ))
  12315. characterMakers.push(() => makeCharacter(
  12316. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12317. {
  12318. front: {
  12319. height: math.unit(11, "feet"),
  12320. weight: math.unit(1400, "lb"),
  12321. name: "Front",
  12322. image: {
  12323. source: "./media/characters/cordite/front.svg",
  12324. extra: 1919/1827,
  12325. bottom: 40/1959
  12326. }
  12327. },
  12328. side: {
  12329. height: math.unit(11, "feet"),
  12330. weight: math.unit(1400, "lb"),
  12331. name: "Side",
  12332. image: {
  12333. source: "./media/characters/cordite/side.svg",
  12334. extra: 1908/1793,
  12335. bottom: 38/1946
  12336. }
  12337. },
  12338. back: {
  12339. height: math.unit(11, "feet"),
  12340. weight: math.unit(1400, "lb"),
  12341. name: "Back",
  12342. image: {
  12343. source: "./media/characters/cordite/back.svg",
  12344. extra: 1938/1837,
  12345. bottom: 10/1948
  12346. }
  12347. },
  12348. feral: {
  12349. height: math.unit(2, "feet"),
  12350. weight: math.unit(90, "lb"),
  12351. name: "Feral",
  12352. image: {
  12353. source: "./media/characters/cordite/feral.svg",
  12354. extra: 1260 / 755,
  12355. bottom: 0.05
  12356. }
  12357. },
  12358. },
  12359. [
  12360. {
  12361. name: "Normal",
  12362. height: math.unit(11, "feet"),
  12363. default: true
  12364. },
  12365. ]
  12366. ))
  12367. characterMakers.push(() => makeCharacter(
  12368. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12369. {
  12370. front: {
  12371. height: math.unit(6, "feet"),
  12372. weight: math.unit(150, "lb"),
  12373. name: "Front",
  12374. image: {
  12375. source: "./media/characters/pianostrong/front.svg",
  12376. extra: 6577 / 6254,
  12377. bottom: 0.02
  12378. }
  12379. },
  12380. side: {
  12381. height: math.unit(6, "feet"),
  12382. weight: math.unit(150, "lb"),
  12383. name: "Side",
  12384. image: {
  12385. source: "./media/characters/pianostrong/side.svg",
  12386. extra: 6106 / 5730
  12387. }
  12388. },
  12389. back: {
  12390. height: math.unit(6, "feet"),
  12391. weight: math.unit(150, "lb"),
  12392. name: "Back",
  12393. image: {
  12394. source: "./media/characters/pianostrong/back.svg",
  12395. extra: 6085 / 5733,
  12396. bottom: 0.01
  12397. }
  12398. },
  12399. },
  12400. [
  12401. {
  12402. name: "Macro",
  12403. height: math.unit(100, "feet")
  12404. },
  12405. {
  12406. name: "Macro+",
  12407. height: math.unit(300, "feet"),
  12408. default: true
  12409. },
  12410. {
  12411. name: "Macro++",
  12412. height: math.unit(1000, "feet")
  12413. },
  12414. ]
  12415. ))
  12416. characterMakers.push(() => makeCharacter(
  12417. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12418. {
  12419. front: {
  12420. height: math.unit(6, "feet"),
  12421. weight: math.unit(150, "lb"),
  12422. name: "Front",
  12423. image: {
  12424. source: "./media/characters/kona/front.svg",
  12425. extra: 2960 / 2629,
  12426. bottom: 0.005
  12427. }
  12428. },
  12429. },
  12430. [
  12431. {
  12432. name: "Normal",
  12433. height: math.unit(11 + 8 / 12, "feet")
  12434. },
  12435. {
  12436. name: "Macro",
  12437. height: math.unit(850, "feet"),
  12438. default: true
  12439. },
  12440. {
  12441. name: "Macro+",
  12442. height: math.unit(1.5, "km"),
  12443. default: true
  12444. },
  12445. {
  12446. name: "Megamacro",
  12447. height: math.unit(80, "miles")
  12448. },
  12449. {
  12450. name: "Gigamacro",
  12451. height: math.unit(3500, "miles")
  12452. },
  12453. ]
  12454. ))
  12455. characterMakers.push(() => makeCharacter(
  12456. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12457. {
  12458. side: {
  12459. height: math.unit(1.9, "meters"),
  12460. weight: math.unit(326, "kg"),
  12461. name: "Side",
  12462. image: {
  12463. source: "./media/characters/levi/side.svg",
  12464. extra: 1704 / 1334,
  12465. bottom: 0.02
  12466. }
  12467. },
  12468. },
  12469. [
  12470. {
  12471. name: "Normal",
  12472. height: math.unit(1.9, "meters"),
  12473. default: true
  12474. },
  12475. {
  12476. name: "Macro",
  12477. height: math.unit(20, "meters")
  12478. },
  12479. {
  12480. name: "Macro+",
  12481. height: math.unit(200, "meters")
  12482. },
  12483. {
  12484. name: "Megamacro",
  12485. height: math.unit(2, "km")
  12486. },
  12487. {
  12488. name: "Megamacro+",
  12489. height: math.unit(20, "km")
  12490. },
  12491. {
  12492. name: "Gigamacro",
  12493. height: math.unit(2500, "km")
  12494. },
  12495. {
  12496. name: "Gigamacro+",
  12497. height: math.unit(120000, "km")
  12498. },
  12499. {
  12500. name: "Teramacro",
  12501. height: math.unit(7.77e6, "km")
  12502. },
  12503. ]
  12504. ))
  12505. characterMakers.push(() => makeCharacter(
  12506. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12507. {
  12508. front: {
  12509. height: math.unit(6 + 4/12, "feet"),
  12510. weight: math.unit(190, "lb"),
  12511. name: "Front",
  12512. image: {
  12513. source: "./media/characters/bmc/front.svg",
  12514. extra: 1626/1472,
  12515. bottom: 79/1705
  12516. }
  12517. },
  12518. back: {
  12519. height: math.unit(6 + 4/12, "feet"),
  12520. weight: math.unit(190, "lb"),
  12521. name: "Back",
  12522. image: {
  12523. source: "./media/characters/bmc/back.svg",
  12524. extra: 1640/1479,
  12525. bottom: 45/1685
  12526. }
  12527. },
  12528. frontArmor: {
  12529. height: math.unit(6 + 4/12, "feet"),
  12530. weight: math.unit(190, "lb"),
  12531. name: "Front-armor",
  12532. image: {
  12533. source: "./media/characters/bmc/front-armor.svg",
  12534. extra: 1538/1468,
  12535. bottom: 79/1617
  12536. }
  12537. },
  12538. },
  12539. [
  12540. {
  12541. name: "Human-sized",
  12542. height: math.unit(6 + 4 / 12, "feet")
  12543. },
  12544. {
  12545. name: "Interactive Size",
  12546. height: math.unit(25, "feet")
  12547. },
  12548. {
  12549. name: "Small",
  12550. height: math.unit(250, "feet")
  12551. },
  12552. {
  12553. name: "Normal",
  12554. height: math.unit(1250, "feet"),
  12555. default: true
  12556. },
  12557. {
  12558. name: "Good Day",
  12559. height: math.unit(88, "miles")
  12560. },
  12561. {
  12562. name: "Largest Measured Size",
  12563. height: math.unit(105.960, "galaxies")
  12564. },
  12565. ]
  12566. ))
  12567. characterMakers.push(() => makeCharacter(
  12568. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12569. {
  12570. front: {
  12571. height: math.unit(20, "feet"),
  12572. weight: math.unit(2016, "kg"),
  12573. name: "Front",
  12574. image: {
  12575. source: "./media/characters/sven-the-kaiju/front.svg",
  12576. extra: 1277/1250,
  12577. bottom: 35/1312
  12578. }
  12579. },
  12580. mouth: {
  12581. height: math.unit(1.85, "feet"),
  12582. name: "Mouth",
  12583. image: {
  12584. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12585. }
  12586. },
  12587. },
  12588. [
  12589. {
  12590. name: "Fairy",
  12591. height: math.unit(6, "inches")
  12592. },
  12593. {
  12594. name: "Normal",
  12595. height: math.unit(20, "feet"),
  12596. default: true
  12597. },
  12598. {
  12599. name: "Rampage",
  12600. height: math.unit(200, "feet")
  12601. },
  12602. {
  12603. name: "Archfey Forest Guardian",
  12604. height: math.unit(1, "mile")
  12605. },
  12606. ]
  12607. ))
  12608. characterMakers.push(() => makeCharacter(
  12609. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12610. {
  12611. front: {
  12612. height: math.unit(4, "meters"),
  12613. weight: math.unit(2, "tons"),
  12614. name: "Front",
  12615. image: {
  12616. source: "./media/characters/marik/front.svg",
  12617. extra: 1057 / 1003,
  12618. bottom: 0.08
  12619. }
  12620. },
  12621. },
  12622. [
  12623. {
  12624. name: "Normal",
  12625. height: math.unit(4, "meters"),
  12626. default: true
  12627. },
  12628. {
  12629. name: "Macro",
  12630. height: math.unit(20, "meters")
  12631. },
  12632. {
  12633. name: "Megamacro",
  12634. height: math.unit(50, "km")
  12635. },
  12636. {
  12637. name: "Gigamacro",
  12638. height: math.unit(100, "km")
  12639. },
  12640. {
  12641. name: "Alpha Macro",
  12642. height: math.unit(7.88e7, "yottameters")
  12643. },
  12644. ]
  12645. ))
  12646. characterMakers.push(() => makeCharacter(
  12647. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12648. {
  12649. front: {
  12650. height: math.unit(6, "feet"),
  12651. weight: math.unit(110, "lb"),
  12652. name: "Front",
  12653. image: {
  12654. source: "./media/characters/mel/front.svg",
  12655. extra: 736 / 617,
  12656. bottom: 0.017
  12657. }
  12658. },
  12659. },
  12660. [
  12661. {
  12662. name: "Pico",
  12663. height: math.unit(3, "pm")
  12664. },
  12665. {
  12666. name: "Nano",
  12667. height: math.unit(3, "nm")
  12668. },
  12669. {
  12670. name: "Micro",
  12671. height: math.unit(0.3, "mm"),
  12672. default: true
  12673. },
  12674. {
  12675. name: "Micro+",
  12676. height: math.unit(3, "mm")
  12677. },
  12678. {
  12679. name: "Normal",
  12680. height: math.unit(5 + 10.5 / 12, "feet")
  12681. },
  12682. ]
  12683. ))
  12684. characterMakers.push(() => makeCharacter(
  12685. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12686. {
  12687. kaiju: {
  12688. height: math.unit(1.75, "meters"),
  12689. weight: math.unit(55, "kg"),
  12690. name: "Kaiju",
  12691. image: {
  12692. source: "./media/characters/lykonous/kaiju.svg",
  12693. extra: 1055 / 946,
  12694. bottom: 0.135
  12695. }
  12696. },
  12697. },
  12698. [
  12699. {
  12700. name: "Normal",
  12701. height: math.unit(2.5, "meters"),
  12702. default: true
  12703. },
  12704. {
  12705. name: "Kaiju Dragon",
  12706. height: math.unit(60, "meters")
  12707. },
  12708. {
  12709. name: "Mega Kaiju",
  12710. height: math.unit(120, "km")
  12711. },
  12712. {
  12713. name: "Giga Kaiju",
  12714. height: math.unit(200, "megameters")
  12715. },
  12716. {
  12717. name: "Terra Kaiju",
  12718. height: math.unit(400, "gigameters")
  12719. },
  12720. {
  12721. name: "Kaiju Dragon God",
  12722. height: math.unit(13000, "exaparsecs")
  12723. },
  12724. ]
  12725. ))
  12726. characterMakers.push(() => makeCharacter(
  12727. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12728. {
  12729. front: {
  12730. height: math.unit(6, "feet"),
  12731. weight: math.unit(150, "lb"),
  12732. name: "Front",
  12733. image: {
  12734. source: "./media/characters/blü/front.svg",
  12735. extra: 1883 / 1564,
  12736. bottom: 0.031
  12737. }
  12738. },
  12739. },
  12740. [
  12741. {
  12742. name: "Normal",
  12743. height: math.unit(13, "feet"),
  12744. default: true
  12745. },
  12746. {
  12747. name: "Big Boi",
  12748. height: math.unit(150, "meters")
  12749. },
  12750. {
  12751. name: "Mini Stomper",
  12752. height: math.unit(300, "meters")
  12753. },
  12754. {
  12755. name: "Macro",
  12756. height: math.unit(1000, "meters")
  12757. },
  12758. {
  12759. name: "Megamacro",
  12760. height: math.unit(11000, "meters")
  12761. },
  12762. {
  12763. name: "Gigamacro",
  12764. height: math.unit(11000, "km")
  12765. },
  12766. {
  12767. name: "Teramacro",
  12768. height: math.unit(420000, "km")
  12769. },
  12770. {
  12771. name: "Examacro",
  12772. height: math.unit(120, "parsecs")
  12773. },
  12774. {
  12775. name: "God Tho",
  12776. height: math.unit(98000000000, "parsecs")
  12777. },
  12778. ]
  12779. ))
  12780. characterMakers.push(() => makeCharacter(
  12781. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12782. {
  12783. taurFront: {
  12784. height: math.unit(6, "feet"),
  12785. weight: math.unit(200, "lb"),
  12786. name: "Taur (Front)",
  12787. image: {
  12788. source: "./media/characters/scales/taur-front.svg",
  12789. extra: 1,
  12790. bottom: 0.05
  12791. }
  12792. },
  12793. taurBack: {
  12794. height: math.unit(6, "feet"),
  12795. weight: math.unit(200, "lb"),
  12796. name: "Taur (Back)",
  12797. image: {
  12798. source: "./media/characters/scales/taur-back.svg",
  12799. extra: 1,
  12800. bottom: 0.08
  12801. }
  12802. },
  12803. anthro: {
  12804. height: math.unit(6 * 7 / 12, "feet"),
  12805. weight: math.unit(100, "lb"),
  12806. name: "Anthro",
  12807. image: {
  12808. source: "./media/characters/scales/anthro.svg",
  12809. extra: 1,
  12810. bottom: 0.06
  12811. }
  12812. },
  12813. },
  12814. [
  12815. {
  12816. name: "Normal",
  12817. height: math.unit(12, "feet"),
  12818. default: true
  12819. },
  12820. ]
  12821. ))
  12822. characterMakers.push(() => makeCharacter(
  12823. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12824. {
  12825. front: {
  12826. height: math.unit(6, "feet"),
  12827. weight: math.unit(150, "lb"),
  12828. name: "Front",
  12829. image: {
  12830. source: "./media/characters/koragos/front.svg",
  12831. extra: 841 / 794,
  12832. bottom: 0.035
  12833. }
  12834. },
  12835. back: {
  12836. height: math.unit(6, "feet"),
  12837. weight: math.unit(150, "lb"),
  12838. name: "Back",
  12839. image: {
  12840. source: "./media/characters/koragos/back.svg",
  12841. extra: 841 / 810,
  12842. bottom: 0.022
  12843. }
  12844. },
  12845. },
  12846. [
  12847. {
  12848. name: "Normal",
  12849. height: math.unit(6 + 11 / 12, "feet"),
  12850. default: true
  12851. },
  12852. {
  12853. name: "Macro",
  12854. height: math.unit(490, "feet")
  12855. },
  12856. {
  12857. name: "Megamacro",
  12858. height: math.unit(10, "miles")
  12859. },
  12860. {
  12861. name: "Gigamacro",
  12862. height: math.unit(50, "miles")
  12863. },
  12864. ]
  12865. ))
  12866. characterMakers.push(() => makeCharacter(
  12867. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12868. {
  12869. front: {
  12870. height: math.unit(6, "feet"),
  12871. weight: math.unit(250, "lb"),
  12872. name: "Front",
  12873. image: {
  12874. source: "./media/characters/xylrem/front.svg",
  12875. extra: 3323 / 3050,
  12876. bottom: 0.065
  12877. }
  12878. },
  12879. },
  12880. [
  12881. {
  12882. name: "Micro",
  12883. height: math.unit(4, "feet")
  12884. },
  12885. {
  12886. name: "Normal",
  12887. height: math.unit(16, "feet"),
  12888. default: true
  12889. },
  12890. {
  12891. name: "Macro",
  12892. height: math.unit(2720, "feet")
  12893. },
  12894. {
  12895. name: "Megamacro",
  12896. height: math.unit(25000, "miles")
  12897. },
  12898. ]
  12899. ))
  12900. characterMakers.push(() => makeCharacter(
  12901. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12902. {
  12903. front: {
  12904. height: math.unit(8, "feet"),
  12905. weight: math.unit(250, "kg"),
  12906. name: "Front",
  12907. image: {
  12908. source: "./media/characters/ikideru/front.svg",
  12909. extra: 930 / 870,
  12910. bottom: 0.087
  12911. }
  12912. },
  12913. back: {
  12914. height: math.unit(8, "feet"),
  12915. weight: math.unit(250, "kg"),
  12916. name: "Back",
  12917. image: {
  12918. source: "./media/characters/ikideru/back.svg",
  12919. extra: 919 / 852,
  12920. bottom: 0.055
  12921. }
  12922. },
  12923. },
  12924. [
  12925. {
  12926. name: "Rare",
  12927. height: math.unit(8, "feet"),
  12928. default: true
  12929. },
  12930. {
  12931. name: "Playful Loom",
  12932. height: math.unit(80, "feet")
  12933. },
  12934. {
  12935. name: "City Leaner",
  12936. height: math.unit(230, "feet")
  12937. },
  12938. {
  12939. name: "Megamacro",
  12940. height: math.unit(2500, "feet")
  12941. },
  12942. {
  12943. name: "Gigamacro",
  12944. height: math.unit(26400, "feet")
  12945. },
  12946. {
  12947. name: "Tectonic Shifter",
  12948. height: math.unit(1.7, "megameters")
  12949. },
  12950. {
  12951. name: "Planet Carer",
  12952. height: math.unit(21, "megameters")
  12953. },
  12954. {
  12955. name: "God",
  12956. height: math.unit(11157.22, "parsecs")
  12957. },
  12958. ]
  12959. ))
  12960. characterMakers.push(() => makeCharacter(
  12961. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12962. {
  12963. front: {
  12964. height: math.unit(6, "feet"),
  12965. weight: math.unit(120, "lb"),
  12966. name: "Front",
  12967. image: {
  12968. source: "./media/characters/neo/front.svg"
  12969. }
  12970. },
  12971. },
  12972. [
  12973. {
  12974. name: "Micro",
  12975. height: math.unit(2, "inches"),
  12976. default: true
  12977. },
  12978. {
  12979. name: "Human Size",
  12980. height: math.unit(5 + 8 / 12, "feet")
  12981. },
  12982. ]
  12983. ))
  12984. characterMakers.push(() => makeCharacter(
  12985. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12986. {
  12987. front: {
  12988. height: math.unit(13 + 10 / 12, "feet"),
  12989. weight: math.unit(5320, "lb"),
  12990. name: "Front",
  12991. image: {
  12992. source: "./media/characters/chauncey-chantz/front.svg",
  12993. extra: 1587 / 1435,
  12994. bottom: 0.02
  12995. }
  12996. },
  12997. },
  12998. [
  12999. {
  13000. name: "Normal",
  13001. height: math.unit(13 + 10 / 12, "feet"),
  13002. default: true
  13003. },
  13004. {
  13005. name: "Macro",
  13006. height: math.unit(45, "feet")
  13007. },
  13008. {
  13009. name: "Megamacro",
  13010. height: math.unit(250, "miles")
  13011. },
  13012. {
  13013. name: "Planetary",
  13014. height: math.unit(10000, "miles")
  13015. },
  13016. {
  13017. name: "Galactic",
  13018. height: math.unit(40000, "parsecs")
  13019. },
  13020. {
  13021. name: "Universal",
  13022. height: math.unit(1, "yottameter")
  13023. },
  13024. ]
  13025. ))
  13026. characterMakers.push(() => makeCharacter(
  13027. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  13028. {
  13029. front: {
  13030. height: math.unit(6, "feet"),
  13031. weight: math.unit(150, "lb"),
  13032. name: "Front",
  13033. image: {
  13034. source: "./media/characters/epifox/front.svg",
  13035. extra: 1,
  13036. bottom: 0.075
  13037. }
  13038. },
  13039. },
  13040. [
  13041. {
  13042. name: "Micro",
  13043. height: math.unit(6, "inches")
  13044. },
  13045. {
  13046. name: "Normal",
  13047. height: math.unit(12, "feet"),
  13048. default: true
  13049. },
  13050. {
  13051. name: "Macro",
  13052. height: math.unit(3810, "feet")
  13053. },
  13054. {
  13055. name: "Megamacro",
  13056. height: math.unit(500, "miles")
  13057. },
  13058. ]
  13059. ))
  13060. characterMakers.push(() => makeCharacter(
  13061. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13062. {
  13063. front: {
  13064. height: math.unit(1.8796, "m"),
  13065. weight: math.unit(230, "lb"),
  13066. name: "Front",
  13067. image: {
  13068. source: "./media/characters/colin-t/front.svg",
  13069. extra: 1272 / 1193,
  13070. bottom: 0.07
  13071. }
  13072. },
  13073. },
  13074. [
  13075. {
  13076. name: "Micro",
  13077. height: math.unit(0.571, "meters")
  13078. },
  13079. {
  13080. name: "Normal",
  13081. height: math.unit(1.8796, "meters"),
  13082. default: true
  13083. },
  13084. {
  13085. name: "Tall",
  13086. height: math.unit(4, "meters")
  13087. },
  13088. {
  13089. name: "Macro",
  13090. height: math.unit(67.241, "meters")
  13091. },
  13092. {
  13093. name: "Megamacro",
  13094. height: math.unit(371.856, "meters")
  13095. },
  13096. {
  13097. name: "Planetary",
  13098. height: math.unit(12631.5689, "km")
  13099. },
  13100. ]
  13101. ))
  13102. characterMakers.push(() => makeCharacter(
  13103. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13104. {
  13105. front: {
  13106. height: math.unit(1.85, "meters"),
  13107. weight: math.unit(80, "kg"),
  13108. name: "Front",
  13109. image: {
  13110. source: "./media/characters/matvei/front.svg",
  13111. extra: 456/447,
  13112. bottom: 8/464
  13113. }
  13114. },
  13115. back: {
  13116. height: math.unit(1.85, "meters"),
  13117. weight: math.unit(80, "kg"),
  13118. name: "Back",
  13119. image: {
  13120. source: "./media/characters/matvei/back.svg",
  13121. extra: 434/427,
  13122. bottom: 11/445
  13123. }
  13124. },
  13125. },
  13126. [
  13127. {
  13128. name: "Normal",
  13129. height: math.unit(1.85, "meters"),
  13130. default: true
  13131. },
  13132. ]
  13133. ))
  13134. characterMakers.push(() => makeCharacter(
  13135. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13136. {
  13137. front: {
  13138. height: math.unit(5 + 9 / 12, "feet"),
  13139. weight: math.unit(70, "lb"),
  13140. name: "Front",
  13141. image: {
  13142. source: "./media/characters/quincy/front.svg",
  13143. extra: 3041 / 2751
  13144. }
  13145. },
  13146. back: {
  13147. height: math.unit(5 + 9 / 12, "feet"),
  13148. weight: math.unit(70, "lb"),
  13149. name: "Back",
  13150. image: {
  13151. source: "./media/characters/quincy/back.svg",
  13152. extra: 3041 / 2751
  13153. }
  13154. },
  13155. flying: {
  13156. height: math.unit(5 + 4 / 12, "feet"),
  13157. weight: math.unit(70, "lb"),
  13158. name: "Flying",
  13159. image: {
  13160. source: "./media/characters/quincy/flying.svg",
  13161. extra: 1044 / 930
  13162. }
  13163. },
  13164. },
  13165. [
  13166. {
  13167. name: "Micro",
  13168. height: math.unit(3, "cm")
  13169. },
  13170. {
  13171. name: "Normal",
  13172. height: math.unit(5 + 9 / 12, "feet")
  13173. },
  13174. {
  13175. name: "Macro",
  13176. height: math.unit(200, "meters"),
  13177. default: true
  13178. },
  13179. {
  13180. name: "Megamacro",
  13181. height: math.unit(1000, "meters")
  13182. },
  13183. ]
  13184. ))
  13185. characterMakers.push(() => makeCharacter(
  13186. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13187. {
  13188. front: {
  13189. height: math.unit(3 + 11/12, "feet"),
  13190. weight: math.unit(50, "lb"),
  13191. name: "Front",
  13192. image: {
  13193. source: "./media/characters/vanrel/front.svg",
  13194. extra: 1104/949,
  13195. bottom: 52/1156
  13196. }
  13197. },
  13198. back: {
  13199. height: math.unit(3 + 11/12, "feet"),
  13200. weight: math.unit(50, "lb"),
  13201. name: "Back",
  13202. image: {
  13203. source: "./media/characters/vanrel/back.svg",
  13204. extra: 1119/976,
  13205. bottom: 37/1156
  13206. }
  13207. },
  13208. tome: {
  13209. height: math.unit(1.35, "feet"),
  13210. weight: math.unit(10, "lb"),
  13211. name: "Vanrel's Tome",
  13212. rename: true,
  13213. image: {
  13214. source: "./media/characters/vanrel/tome.svg"
  13215. }
  13216. },
  13217. beans: {
  13218. height: math.unit(0.89, "feet"),
  13219. name: "Beans",
  13220. image: {
  13221. source: "./media/characters/vanrel/beans.svg"
  13222. }
  13223. },
  13224. },
  13225. [
  13226. {
  13227. name: "Normal",
  13228. height: math.unit(3 + 11/12, "feet"),
  13229. default: true
  13230. },
  13231. ]
  13232. ))
  13233. characterMakers.push(() => makeCharacter(
  13234. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13235. {
  13236. front: {
  13237. height: math.unit(7 + 5 / 12, "feet"),
  13238. name: "Front",
  13239. image: {
  13240. source: "./media/characters/kuiper-vanrel/front.svg",
  13241. extra: 1219/1169,
  13242. bottom: 69/1288
  13243. }
  13244. },
  13245. back: {
  13246. height: math.unit(7 + 5 / 12, "feet"),
  13247. name: "Back",
  13248. image: {
  13249. source: "./media/characters/kuiper-vanrel/back.svg",
  13250. extra: 1236/1193,
  13251. bottom: 27/1263
  13252. }
  13253. },
  13254. foot: {
  13255. height: math.unit(0.55, "meters"),
  13256. name: "Foot",
  13257. image: {
  13258. source: "./media/characters/kuiper-vanrel/foot.svg",
  13259. }
  13260. },
  13261. battle: {
  13262. height: math.unit(6.824, "feet"),
  13263. name: "Battle",
  13264. image: {
  13265. source: "./media/characters/kuiper-vanrel/battle.svg",
  13266. extra: 1466 / 1327,
  13267. bottom: 29 / 1492.5
  13268. }
  13269. },
  13270. meerkui: {
  13271. height: math.unit(18, "inches"),
  13272. name: "Meerkui",
  13273. image: {
  13274. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13275. extra: 1354/1289,
  13276. bottom: 69/1423
  13277. }
  13278. },
  13279. },
  13280. [
  13281. {
  13282. name: "Normal",
  13283. height: math.unit(7 + 5 / 12, "feet"),
  13284. default: true
  13285. },
  13286. ]
  13287. ))
  13288. characterMakers.push(() => makeCharacter(
  13289. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13290. {
  13291. front: {
  13292. height: math.unit(8 + 5 / 12, "feet"),
  13293. name: "Front",
  13294. image: {
  13295. source: "./media/characters/keset-vanrel/front.svg",
  13296. extra: 1231/1148,
  13297. bottom: 82/1313
  13298. }
  13299. },
  13300. back: {
  13301. height: math.unit(8 + 5 / 12, "feet"),
  13302. name: "Back",
  13303. image: {
  13304. source: "./media/characters/keset-vanrel/back.svg",
  13305. extra: 1240/1174,
  13306. bottom: 33/1273
  13307. }
  13308. },
  13309. hand: {
  13310. height: math.unit(0.6, "meters"),
  13311. name: "Hand",
  13312. image: {
  13313. source: "./media/characters/keset-vanrel/hand.svg"
  13314. }
  13315. },
  13316. foot: {
  13317. height: math.unit(0.94978, "meters"),
  13318. name: "Foot",
  13319. image: {
  13320. source: "./media/characters/keset-vanrel/foot.svg"
  13321. }
  13322. },
  13323. battle: {
  13324. height: math.unit(7.408, "feet"),
  13325. name: "Battle",
  13326. image: {
  13327. source: "./media/characters/keset-vanrel/battle.svg",
  13328. extra: 1890 / 1386,
  13329. bottom: 73.28 / 1970
  13330. }
  13331. },
  13332. },
  13333. [
  13334. {
  13335. name: "Normal",
  13336. height: math.unit(8 + 5 / 12, "feet"),
  13337. default: true
  13338. },
  13339. ]
  13340. ))
  13341. characterMakers.push(() => makeCharacter(
  13342. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13343. {
  13344. front: {
  13345. height: math.unit(6, "feet"),
  13346. weight: math.unit(150, "lb"),
  13347. name: "Front",
  13348. image: {
  13349. source: "./media/characters/neos/front.svg",
  13350. extra: 1696 / 992,
  13351. bottom: 0.14
  13352. }
  13353. },
  13354. },
  13355. [
  13356. {
  13357. name: "Normal",
  13358. height: math.unit(54, "cm"),
  13359. default: true
  13360. },
  13361. {
  13362. name: "Macro",
  13363. height: math.unit(100, "m")
  13364. },
  13365. {
  13366. name: "Megamacro",
  13367. height: math.unit(10, "km")
  13368. },
  13369. {
  13370. name: "Megamacro+",
  13371. height: math.unit(100, "km")
  13372. },
  13373. {
  13374. name: "Gigamacro",
  13375. height: math.unit(100, "Mm")
  13376. },
  13377. {
  13378. name: "Teramacro",
  13379. height: math.unit(100, "Gm")
  13380. },
  13381. {
  13382. name: "Examacro",
  13383. height: math.unit(100, "Em")
  13384. },
  13385. {
  13386. name: "Godly",
  13387. height: math.unit(10000, "Ym")
  13388. },
  13389. {
  13390. name: "Beyond Godly",
  13391. height: math.unit(25, "multiverses")
  13392. },
  13393. ]
  13394. ))
  13395. characterMakers.push(() => makeCharacter(
  13396. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13397. {
  13398. feminine: {
  13399. height: math.unit(5, "feet"),
  13400. weight: math.unit(100, "lb"),
  13401. name: "Feminine",
  13402. image: {
  13403. source: "./media/characters/sammy-mouse/feminine.svg",
  13404. extra: 2526 / 2425,
  13405. bottom: 0.123
  13406. }
  13407. },
  13408. masculine: {
  13409. height: math.unit(5, "feet"),
  13410. weight: math.unit(100, "lb"),
  13411. name: "Masculine",
  13412. image: {
  13413. source: "./media/characters/sammy-mouse/masculine.svg",
  13414. extra: 2526 / 2425,
  13415. bottom: 0.123
  13416. }
  13417. },
  13418. },
  13419. [
  13420. {
  13421. name: "Micro",
  13422. height: math.unit(5, "inches")
  13423. },
  13424. {
  13425. name: "Normal",
  13426. height: math.unit(5, "feet"),
  13427. default: true
  13428. },
  13429. {
  13430. name: "Macro",
  13431. height: math.unit(60, "feet")
  13432. },
  13433. ]
  13434. ))
  13435. characterMakers.push(() => makeCharacter(
  13436. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13437. {
  13438. front: {
  13439. height: math.unit(4, "feet"),
  13440. weight: math.unit(50, "lb"),
  13441. name: "Front",
  13442. image: {
  13443. source: "./media/characters/kole/front.svg",
  13444. extra: 1423 / 1303,
  13445. bottom: 0.025
  13446. }
  13447. },
  13448. back: {
  13449. height: math.unit(4, "feet"),
  13450. weight: math.unit(50, "lb"),
  13451. name: "Back",
  13452. image: {
  13453. source: "./media/characters/kole/back.svg",
  13454. extra: 1426 / 1280,
  13455. bottom: 0.02
  13456. }
  13457. },
  13458. },
  13459. [
  13460. {
  13461. name: "Normal",
  13462. height: math.unit(4, "feet"),
  13463. default: true
  13464. },
  13465. ]
  13466. ))
  13467. characterMakers.push(() => makeCharacter(
  13468. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13469. {
  13470. front: {
  13471. height: math.unit(2.5, "feet"),
  13472. weight: math.unit(32, "lb"),
  13473. name: "Front",
  13474. image: {
  13475. source: "./media/characters/rufran/front.svg",
  13476. extra: 1313/885,
  13477. bottom: 94/1407
  13478. }
  13479. },
  13480. side: {
  13481. height: math.unit(2.5, "feet"),
  13482. weight: math.unit(32, "lb"),
  13483. name: "Side",
  13484. image: {
  13485. source: "./media/characters/rufran/side.svg",
  13486. extra: 1109/852,
  13487. bottom: 118/1227
  13488. }
  13489. },
  13490. back: {
  13491. height: math.unit(2.5, "feet"),
  13492. weight: math.unit(32, "lb"),
  13493. name: "Back",
  13494. image: {
  13495. source: "./media/characters/rufran/back.svg",
  13496. extra: 1280/878,
  13497. bottom: 131/1411
  13498. }
  13499. },
  13500. mouth: {
  13501. height: math.unit(1.13, "feet"),
  13502. name: "Mouth",
  13503. image: {
  13504. source: "./media/characters/rufran/mouth.svg"
  13505. }
  13506. },
  13507. foot: {
  13508. height: math.unit(1.33, "feet"),
  13509. name: "Foot",
  13510. image: {
  13511. source: "./media/characters/rufran/foot.svg"
  13512. }
  13513. },
  13514. koboldFront: {
  13515. height: math.unit(2 + 6 / 12, "feet"),
  13516. weight: math.unit(20, "lb"),
  13517. name: "Front (Kobold)",
  13518. image: {
  13519. source: "./media/characters/rufran/kobold-front.svg",
  13520. extra: 2041 / 1839,
  13521. bottom: 0.055
  13522. }
  13523. },
  13524. koboldBack: {
  13525. height: math.unit(2 + 6 / 12, "feet"),
  13526. weight: math.unit(20, "lb"),
  13527. name: "Back (Kobold)",
  13528. image: {
  13529. source: "./media/characters/rufran/kobold-back.svg",
  13530. extra: 2054 / 1839,
  13531. bottom: 0.01
  13532. }
  13533. },
  13534. koboldHand: {
  13535. height: math.unit(0.2166, "meters"),
  13536. name: "Hand (Kobold)",
  13537. image: {
  13538. source: "./media/characters/rufran/kobold-hand.svg"
  13539. }
  13540. },
  13541. koboldFoot: {
  13542. height: math.unit(0.185, "meters"),
  13543. name: "Foot (Kobold)",
  13544. image: {
  13545. source: "./media/characters/rufran/kobold-foot.svg"
  13546. }
  13547. },
  13548. },
  13549. [
  13550. {
  13551. name: "Micro",
  13552. height: math.unit(1, "inch")
  13553. },
  13554. {
  13555. name: "Normal",
  13556. height: math.unit(2 + 6 / 12, "feet"),
  13557. default: true
  13558. },
  13559. {
  13560. name: "Big",
  13561. height: math.unit(60, "feet")
  13562. },
  13563. {
  13564. name: "Macro",
  13565. height: math.unit(325, "feet")
  13566. },
  13567. ]
  13568. ))
  13569. characterMakers.push(() => makeCharacter(
  13570. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13571. {
  13572. front: {
  13573. height: math.unit(0.3, "meters"),
  13574. weight: math.unit(3.5, "kg"),
  13575. name: "Front",
  13576. image: {
  13577. source: "./media/characters/chip/front.svg",
  13578. extra: 748 / 674
  13579. }
  13580. },
  13581. },
  13582. [
  13583. {
  13584. name: "Micro",
  13585. height: math.unit(1, "inch"),
  13586. default: true
  13587. },
  13588. ]
  13589. ))
  13590. characterMakers.push(() => makeCharacter(
  13591. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13592. {
  13593. side: {
  13594. height: math.unit(2.3, "meters"),
  13595. weight: math.unit(3500, "lb"),
  13596. name: "Side",
  13597. image: {
  13598. source: "./media/characters/torvid/side.svg",
  13599. extra: 1972 / 722,
  13600. bottom: 0.035
  13601. }
  13602. },
  13603. },
  13604. [
  13605. {
  13606. name: "Normal",
  13607. height: math.unit(2.3, "meters"),
  13608. default: true
  13609. },
  13610. ]
  13611. ))
  13612. characterMakers.push(() => makeCharacter(
  13613. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13614. {
  13615. front: {
  13616. height: math.unit(2, "meters"),
  13617. weight: math.unit(150.5, "kg"),
  13618. name: "Front",
  13619. image: {
  13620. source: "./media/characters/susan/front.svg",
  13621. extra: 693 / 635,
  13622. bottom: 0.05
  13623. }
  13624. },
  13625. },
  13626. [
  13627. {
  13628. name: "Megamacro",
  13629. height: math.unit(505, "miles"),
  13630. default: true
  13631. },
  13632. ]
  13633. ))
  13634. characterMakers.push(() => makeCharacter(
  13635. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13636. {
  13637. front: {
  13638. height: math.unit(6, "feet"),
  13639. weight: math.unit(150, "lb"),
  13640. name: "Front",
  13641. image: {
  13642. source: "./media/characters/raindrops/front.svg",
  13643. extra: 2655 / 2461,
  13644. bottom: 49 / 2705
  13645. }
  13646. },
  13647. back: {
  13648. height: math.unit(6, "feet"),
  13649. weight: math.unit(150, "lb"),
  13650. name: "Back",
  13651. image: {
  13652. source: "./media/characters/raindrops/back.svg",
  13653. extra: 2574 / 2400,
  13654. bottom: 65 / 2634
  13655. }
  13656. },
  13657. },
  13658. [
  13659. {
  13660. name: "Micro",
  13661. height: math.unit(6, "inches")
  13662. },
  13663. {
  13664. name: "Normal",
  13665. height: math.unit(6 + 2 / 12, "feet")
  13666. },
  13667. {
  13668. name: "Macro",
  13669. height: math.unit(131, "feet"),
  13670. default: true
  13671. },
  13672. {
  13673. name: "Megamacro",
  13674. height: math.unit(15, "miles")
  13675. },
  13676. {
  13677. name: "Gigamacro",
  13678. height: math.unit(4000, "miles")
  13679. },
  13680. {
  13681. name: "Teramacro",
  13682. height: math.unit(315000, "miles")
  13683. },
  13684. ]
  13685. ))
  13686. characterMakers.push(() => makeCharacter(
  13687. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13688. {
  13689. front: {
  13690. height: math.unit(2.794, "meters"),
  13691. weight: math.unit(325, "kg"),
  13692. name: "Front",
  13693. image: {
  13694. source: "./media/characters/tezwa/front.svg",
  13695. extra: 2083 / 1906,
  13696. bottom: 0.031
  13697. }
  13698. },
  13699. foot: {
  13700. height: math.unit(0.687, "meters"),
  13701. name: "Foot",
  13702. image: {
  13703. source: "./media/characters/tezwa/foot.svg"
  13704. }
  13705. },
  13706. },
  13707. [
  13708. {
  13709. name: "Normal",
  13710. height: math.unit(9 + 2 / 12, "feet"),
  13711. default: true
  13712. },
  13713. ]
  13714. ))
  13715. characterMakers.push(() => makeCharacter(
  13716. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13717. {
  13718. front: {
  13719. height: math.unit(58, "feet"),
  13720. weight: math.unit(89000, "lb"),
  13721. name: "Front",
  13722. image: {
  13723. source: "./media/characters/typhus/front.svg",
  13724. extra: 816 / 800,
  13725. bottom: 0.065
  13726. }
  13727. },
  13728. },
  13729. [
  13730. {
  13731. name: "Macro",
  13732. height: math.unit(58, "feet"),
  13733. default: true
  13734. },
  13735. ]
  13736. ))
  13737. characterMakers.push(() => makeCharacter(
  13738. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13739. {
  13740. front: {
  13741. height: math.unit(12, "feet"),
  13742. weight: math.unit(6, "tonnes"),
  13743. name: "Front",
  13744. image: {
  13745. source: "./media/characters/lyra-von-wulf/front.svg",
  13746. extra: 1,
  13747. bottom: 0.10
  13748. }
  13749. },
  13750. frontMecha: {
  13751. height: math.unit(12, "feet"),
  13752. weight: math.unit(12, "tonnes"),
  13753. name: "Front (Mecha)",
  13754. image: {
  13755. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13756. extra: 1,
  13757. bottom: 0.042
  13758. }
  13759. },
  13760. maw: {
  13761. height: math.unit(2.2, "feet"),
  13762. name: "Maw",
  13763. image: {
  13764. source: "./media/characters/lyra-von-wulf/maw.svg"
  13765. }
  13766. },
  13767. },
  13768. [
  13769. {
  13770. name: "Normal",
  13771. height: math.unit(12, "feet"),
  13772. default: true
  13773. },
  13774. {
  13775. name: "Classic",
  13776. height: math.unit(50, "feet")
  13777. },
  13778. {
  13779. name: "Macro",
  13780. height: math.unit(500, "feet")
  13781. },
  13782. {
  13783. name: "Megamacro",
  13784. height: math.unit(1, "mile")
  13785. },
  13786. {
  13787. name: "Gigamacro",
  13788. height: math.unit(400, "miles")
  13789. },
  13790. {
  13791. name: "Teramacro",
  13792. height: math.unit(22000, "miles")
  13793. },
  13794. {
  13795. name: "Solarmacro",
  13796. height: math.unit(8600000, "miles")
  13797. },
  13798. {
  13799. name: "Galactic",
  13800. height: math.unit(1057000, "lightyears")
  13801. },
  13802. ]
  13803. ))
  13804. characterMakers.push(() => makeCharacter(
  13805. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13806. {
  13807. front: {
  13808. height: math.unit(6 + 10 / 12, "feet"),
  13809. weight: math.unit(150, "lb"),
  13810. name: "Front",
  13811. image: {
  13812. source: "./media/characters/dixon/front.svg",
  13813. extra: 3361 / 3209,
  13814. bottom: 0.01
  13815. }
  13816. },
  13817. },
  13818. [
  13819. {
  13820. name: "Normal",
  13821. height: math.unit(6 + 10 / 12, "feet"),
  13822. default: true
  13823. },
  13824. {
  13825. name: "Big",
  13826. height: math.unit(12, "meters")
  13827. },
  13828. {
  13829. name: "Macro",
  13830. height: math.unit(500, "meters")
  13831. },
  13832. {
  13833. name: "Megamacro",
  13834. height: math.unit(2, "km")
  13835. },
  13836. ]
  13837. ))
  13838. characterMakers.push(() => makeCharacter(
  13839. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13840. {
  13841. front: {
  13842. height: math.unit(185, "cm"),
  13843. weight: math.unit(68, "kg"),
  13844. name: "Front",
  13845. image: {
  13846. source: "./media/characters/kauko/front.svg",
  13847. extra: 1455 / 1421,
  13848. bottom: 0.03
  13849. }
  13850. },
  13851. back: {
  13852. height: math.unit(185, "cm"),
  13853. weight: math.unit(68, "kg"),
  13854. name: "Back",
  13855. image: {
  13856. source: "./media/characters/kauko/back.svg",
  13857. extra: 1455 / 1421,
  13858. bottom: 0.004
  13859. }
  13860. },
  13861. },
  13862. [
  13863. {
  13864. name: "Normal",
  13865. height: math.unit(185, "cm"),
  13866. default: true
  13867. },
  13868. ]
  13869. ))
  13870. characterMakers.push(() => makeCharacter(
  13871. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13872. {
  13873. frontSfw: {
  13874. height: math.unit(5, "meters"),
  13875. weight: math.unit(4250, "lb"),
  13876. name: "Front",
  13877. image: {
  13878. source: "./media/characters/varg/front-sfw.svg",
  13879. extra: 1103/1010,
  13880. bottom: 50/1153
  13881. },
  13882. form: "anthro",
  13883. default: true
  13884. },
  13885. backSfw: {
  13886. height: math.unit(5, "meters"),
  13887. weight: math.unit(4250, "lb"),
  13888. name: "Back",
  13889. image: {
  13890. source: "./media/characters/varg/back-sfw.svg",
  13891. extra: 1038/1022,
  13892. bottom: 36/1074
  13893. },
  13894. form: "anthro"
  13895. },
  13896. frontNsfw: {
  13897. height: math.unit(5, "meters"),
  13898. weight: math.unit(4250, "lb"),
  13899. name: "Front (NSFW)",
  13900. image: {
  13901. source: "./media/characters/varg/front-nsfw.svg",
  13902. extra: 1103/1010,
  13903. bottom: 50/1153
  13904. },
  13905. form: "anthro"
  13906. },
  13907. sheath: {
  13908. height: math.unit(3.8, "feet"),
  13909. weight: math.unit(90, "kilograms"),
  13910. name: "Sheath",
  13911. image: {
  13912. source: "./media/characters/varg/sheath.svg"
  13913. },
  13914. form: "anthro"
  13915. },
  13916. dick: {
  13917. height: math.unit(4.6, "feet"),
  13918. weight: math.unit(451, "kilograms"),
  13919. name: "Dick",
  13920. image: {
  13921. source: "./media/characters/varg/dick.svg"
  13922. },
  13923. form: "anthro"
  13924. },
  13925. feralSfw: {
  13926. height: math.unit(5, "meters"),
  13927. weight: math.unit(100000, "lb"),
  13928. name: "Side",
  13929. image: {
  13930. source: "./media/characters/varg/feral-sfw.svg",
  13931. extra: 1065/511,
  13932. bottom: 211/1276
  13933. },
  13934. form: "feral",
  13935. default: true
  13936. },
  13937. feralNsfw: {
  13938. height: math.unit(5, "meters"),
  13939. weight: math.unit(100000, "lb"),
  13940. name: "Side (NSFW)",
  13941. image: {
  13942. source: "./media/characters/varg/feral-nsfw.svg",
  13943. extra: 1065/511,
  13944. bottom: 211/1276
  13945. },
  13946. form: "feral",
  13947. },
  13948. feralSheath: {
  13949. height: math.unit(9.8, "feet"),
  13950. weight: math.unit(2000, "kilograms"),
  13951. name: "Sheath",
  13952. image: {
  13953. source: "./media/characters/varg/sheath.svg"
  13954. },
  13955. form: "feral"
  13956. },
  13957. feralDick: {
  13958. height: math.unit(13.11, "feet"),
  13959. weight: math.unit(10440, "kilograms"),
  13960. name: "Dick",
  13961. image: {
  13962. source: "./media/characters/varg/dick.svg"
  13963. },
  13964. form: "feral"
  13965. },
  13966. },
  13967. [
  13968. {
  13969. name: "Normal",
  13970. height: math.unit(5, "meters"),
  13971. form: "anthro"
  13972. },
  13973. {
  13974. name: "Macro",
  13975. height: math.unit(200, "meters"),
  13976. form: "anthro"
  13977. },
  13978. {
  13979. name: "Megamacro",
  13980. height: math.unit(20, "kilometers"),
  13981. form: "anthro"
  13982. },
  13983. {
  13984. name: "True Size",
  13985. height: math.unit(211, "km"),
  13986. form: "anthro",
  13987. default: true
  13988. },
  13989. {
  13990. name: "Gigamacro",
  13991. height: math.unit(1000, "km"),
  13992. form: "anthro"
  13993. },
  13994. {
  13995. name: "Gigamacro+",
  13996. height: math.unit(8000, "km"),
  13997. form: "anthro"
  13998. },
  13999. {
  14000. name: "Teramacro",
  14001. height: math.unit(1000000, "km"),
  14002. form: "anthro"
  14003. },
  14004. {
  14005. name: "Normal",
  14006. height: math.unit(5, "meters"),
  14007. form: "feral"
  14008. },
  14009. {
  14010. name: "Macro",
  14011. height: math.unit(200, "meters"),
  14012. form: "feral"
  14013. },
  14014. {
  14015. name: "Megamacro",
  14016. height: math.unit(20, "kilometers"),
  14017. form: "feral"
  14018. },
  14019. {
  14020. name: "True Size",
  14021. height: math.unit(211, "km"),
  14022. form: "feral",
  14023. default: true
  14024. },
  14025. {
  14026. name: "Gigamacro",
  14027. height: math.unit(1000, "km"),
  14028. form: "feral"
  14029. },
  14030. {
  14031. name: "Gigamacro+",
  14032. height: math.unit(8000, "km"),
  14033. form: "feral"
  14034. },
  14035. {
  14036. name: "Teramacro",
  14037. height: math.unit(1000000, "km"),
  14038. form: "feral"
  14039. },
  14040. ],
  14041. {
  14042. "anthro": {
  14043. name: "Anthro",
  14044. default: true
  14045. },
  14046. "feral": {
  14047. name: "Feral",
  14048. },
  14049. }
  14050. ))
  14051. characterMakers.push(() => makeCharacter(
  14052. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  14053. {
  14054. front: {
  14055. height: math.unit(7 + 7 / 12, "feet"),
  14056. weight: math.unit(267, "lb"),
  14057. name: "Front",
  14058. image: {
  14059. source: "./media/characters/dayza/front.svg",
  14060. extra: 1262 / 1200,
  14061. bottom: 0.035
  14062. }
  14063. },
  14064. side: {
  14065. height: math.unit(7 + 7 / 12, "feet"),
  14066. weight: math.unit(267, "lb"),
  14067. name: "Side",
  14068. image: {
  14069. source: "./media/characters/dayza/side.svg",
  14070. extra: 1295 / 1245,
  14071. bottom: 0.05
  14072. }
  14073. },
  14074. back: {
  14075. height: math.unit(7 + 7 / 12, "feet"),
  14076. weight: math.unit(267, "lb"),
  14077. name: "Back",
  14078. image: {
  14079. source: "./media/characters/dayza/back.svg",
  14080. extra: 1241 / 1170
  14081. }
  14082. },
  14083. },
  14084. [
  14085. {
  14086. name: "Normal",
  14087. height: math.unit(7 + 7 / 12, "feet"),
  14088. default: true
  14089. },
  14090. {
  14091. name: "Macro",
  14092. height: math.unit(155, "feet")
  14093. },
  14094. ]
  14095. ))
  14096. characterMakers.push(() => makeCharacter(
  14097. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14098. {
  14099. front: {
  14100. height: math.unit(6 + 5 / 12, "feet"),
  14101. weight: math.unit(160, "lb"),
  14102. name: "Front",
  14103. image: {
  14104. source: "./media/characters/xanthos/front.svg",
  14105. extra: 1,
  14106. bottom: 0.04
  14107. }
  14108. },
  14109. back: {
  14110. height: math.unit(6 + 5 / 12, "feet"),
  14111. weight: math.unit(160, "lb"),
  14112. name: "Back",
  14113. image: {
  14114. source: "./media/characters/xanthos/back.svg",
  14115. extra: 1,
  14116. bottom: 0.03
  14117. }
  14118. },
  14119. hand: {
  14120. height: math.unit(0.928, "feet"),
  14121. name: "Hand",
  14122. image: {
  14123. source: "./media/characters/xanthos/hand.svg"
  14124. }
  14125. },
  14126. foot: {
  14127. height: math.unit(1.286, "feet"),
  14128. name: "Foot",
  14129. image: {
  14130. source: "./media/characters/xanthos/foot.svg"
  14131. }
  14132. },
  14133. },
  14134. [
  14135. {
  14136. name: "Normal",
  14137. height: math.unit(6 + 5 / 12, "feet"),
  14138. default: true
  14139. },
  14140. {
  14141. name: "Normal+",
  14142. height: math.unit(6, "meters")
  14143. },
  14144. {
  14145. name: "Macro",
  14146. height: math.unit(40, "feet")
  14147. },
  14148. {
  14149. name: "Macro+",
  14150. height: math.unit(200, "meters")
  14151. },
  14152. {
  14153. name: "Megamacro",
  14154. height: math.unit(20, "km")
  14155. },
  14156. {
  14157. name: "Megamacro+",
  14158. height: math.unit(100, "km")
  14159. },
  14160. {
  14161. name: "Gigamacro",
  14162. height: math.unit(200, "megameters")
  14163. },
  14164. {
  14165. name: "Gigamacro+",
  14166. height: math.unit(1.5, "gigameters")
  14167. },
  14168. ]
  14169. ))
  14170. characterMakers.push(() => makeCharacter(
  14171. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  14172. {
  14173. front: {
  14174. height: math.unit(6 + 3 / 12, "feet"),
  14175. weight: math.unit(215, "lb"),
  14176. name: "Front",
  14177. image: {
  14178. source: "./media/characters/grynn/front.svg",
  14179. extra: 4627 / 4209,
  14180. bottom: 0.047
  14181. }
  14182. },
  14183. },
  14184. [
  14185. {
  14186. name: "Micro",
  14187. height: math.unit(6, "inches")
  14188. },
  14189. {
  14190. name: "Normal",
  14191. height: math.unit(6 + 3 / 12, "feet"),
  14192. default: true
  14193. },
  14194. {
  14195. name: "Big",
  14196. height: math.unit(104, "feet")
  14197. },
  14198. {
  14199. name: "Macro",
  14200. height: math.unit(944, "feet")
  14201. },
  14202. {
  14203. name: "Macro+",
  14204. height: math.unit(9480, "feet")
  14205. },
  14206. {
  14207. name: "Megamacro",
  14208. height: math.unit(78752, "feet")
  14209. },
  14210. {
  14211. name: "Megamacro+",
  14212. height: math.unit(630128, "feet")
  14213. },
  14214. {
  14215. name: "Megamacro++",
  14216. height: math.unit(3150695, "feet")
  14217. },
  14218. ]
  14219. ))
  14220. characterMakers.push(() => makeCharacter(
  14221. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  14222. {
  14223. front: {
  14224. height: math.unit(7 + 5 / 12, "feet"),
  14225. weight: math.unit(450, "lb"),
  14226. name: "Front",
  14227. image: {
  14228. source: "./media/characters/mocha-aura/front.svg",
  14229. extra: 1907 / 1817,
  14230. bottom: 0.04
  14231. }
  14232. },
  14233. back: {
  14234. height: math.unit(7 + 5 / 12, "feet"),
  14235. weight: math.unit(450, "lb"),
  14236. name: "Back",
  14237. image: {
  14238. source: "./media/characters/mocha-aura/back.svg",
  14239. extra: 1900 / 1825,
  14240. bottom: 0.045
  14241. }
  14242. },
  14243. },
  14244. [
  14245. {
  14246. name: "Nano",
  14247. height: math.unit(1, "nm")
  14248. },
  14249. {
  14250. name: "Megamicro",
  14251. height: math.unit(1, "mm")
  14252. },
  14253. {
  14254. name: "Micro",
  14255. height: math.unit(3, "inches")
  14256. },
  14257. {
  14258. name: "Normal",
  14259. height: math.unit(7 + 5 / 12, "feet"),
  14260. default: true
  14261. },
  14262. {
  14263. name: "Macro",
  14264. height: math.unit(30, "feet")
  14265. },
  14266. {
  14267. name: "Megamacro",
  14268. height: math.unit(3500, "feet")
  14269. },
  14270. {
  14271. name: "Teramacro",
  14272. height: math.unit(500000, "miles")
  14273. },
  14274. {
  14275. name: "Petamacro",
  14276. height: math.unit(50000000000000000, "parsecs")
  14277. },
  14278. ]
  14279. ))
  14280. characterMakers.push(() => makeCharacter(
  14281. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  14282. {
  14283. front: {
  14284. height: math.unit(6, "feet"),
  14285. weight: math.unit(150, "lb"),
  14286. name: "Front",
  14287. image: {
  14288. source: "./media/characters/ilisha-devya/front.svg",
  14289. extra: 1053/1049,
  14290. bottom: 270/1323
  14291. }
  14292. },
  14293. back: {
  14294. height: math.unit(6, "feet"),
  14295. weight: math.unit(150, "lb"),
  14296. name: "Back",
  14297. image: {
  14298. source: "./media/characters/ilisha-devya/back.svg",
  14299. extra: 1131/1128,
  14300. bottom: 39/1170
  14301. }
  14302. },
  14303. },
  14304. [
  14305. {
  14306. name: "Macro",
  14307. height: math.unit(500, "feet"),
  14308. default: true
  14309. },
  14310. {
  14311. name: "Megamacro",
  14312. height: math.unit(10, "miles")
  14313. },
  14314. {
  14315. name: "Gigamacro",
  14316. height: math.unit(100000, "miles")
  14317. },
  14318. {
  14319. name: "Examacro",
  14320. height: math.unit(1e9, "lightyears")
  14321. },
  14322. {
  14323. name: "Omniversal",
  14324. height: math.unit(1e33, "lightyears")
  14325. },
  14326. {
  14327. name: "Beyond Infinite",
  14328. height: math.unit(1e100, "lightyears")
  14329. },
  14330. ]
  14331. ))
  14332. characterMakers.push(() => makeCharacter(
  14333. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  14334. {
  14335. Side: {
  14336. height: math.unit(6, "feet"),
  14337. weight: math.unit(150, "lb"),
  14338. name: "Side",
  14339. image: {
  14340. source: "./media/characters/mira/side.svg",
  14341. extra: 900 / 799,
  14342. bottom: 0.02
  14343. }
  14344. },
  14345. },
  14346. [
  14347. {
  14348. name: "Human Size",
  14349. height: math.unit(6, "feet")
  14350. },
  14351. {
  14352. name: "Macro",
  14353. height: math.unit(100, "feet"),
  14354. default: true
  14355. },
  14356. {
  14357. name: "Megamacro",
  14358. height: math.unit(10, "miles")
  14359. },
  14360. {
  14361. name: "Gigamacro",
  14362. height: math.unit(25000, "miles")
  14363. },
  14364. {
  14365. name: "Teramacro",
  14366. height: math.unit(300, "AU")
  14367. },
  14368. {
  14369. name: "Full Size",
  14370. height: math.unit(4.5e10, "lightyears")
  14371. },
  14372. ]
  14373. ))
  14374. characterMakers.push(() => makeCharacter(
  14375. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  14376. {
  14377. front: {
  14378. height: math.unit(6, "feet"),
  14379. weight: math.unit(150, "lb"),
  14380. name: "Front",
  14381. image: {
  14382. source: "./media/characters/holly/front.svg",
  14383. extra: 639 / 606
  14384. }
  14385. },
  14386. back: {
  14387. height: math.unit(6, "feet"),
  14388. weight: math.unit(150, "lb"),
  14389. name: "Back",
  14390. image: {
  14391. source: "./media/characters/holly/back.svg",
  14392. extra: 623 / 598
  14393. }
  14394. },
  14395. frontWorking: {
  14396. height: math.unit(6, "feet"),
  14397. weight: math.unit(150, "lb"),
  14398. name: "Front (Working)",
  14399. image: {
  14400. source: "./media/characters/holly/front-working.svg",
  14401. extra: 607 / 577,
  14402. bottom: 0.048
  14403. }
  14404. },
  14405. },
  14406. [
  14407. {
  14408. name: "Normal",
  14409. height: math.unit(12 + 3 / 12, "feet"),
  14410. default: true
  14411. },
  14412. ]
  14413. ))
  14414. characterMakers.push(() => makeCharacter(
  14415. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  14416. {
  14417. front: {
  14418. height: math.unit(6, "feet"),
  14419. weight: math.unit(150, "lb"),
  14420. name: "Front",
  14421. image: {
  14422. source: "./media/characters/porter/front.svg",
  14423. extra: 1,
  14424. bottom: 0.01
  14425. }
  14426. },
  14427. frontRobes: {
  14428. height: math.unit(6, "feet"),
  14429. weight: math.unit(150, "lb"),
  14430. name: "Front (Robes)",
  14431. image: {
  14432. source: "./media/characters/porter/front-robes.svg",
  14433. extra: 1.01,
  14434. bottom: 0.01
  14435. }
  14436. },
  14437. },
  14438. [
  14439. {
  14440. name: "Normal",
  14441. height: math.unit(11 + 9 / 12, "feet"),
  14442. default: true
  14443. },
  14444. ]
  14445. ))
  14446. characterMakers.push(() => makeCharacter(
  14447. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  14448. {
  14449. legendary: {
  14450. height: math.unit(6, "feet"),
  14451. weight: math.unit(150, "lb"),
  14452. name: "Legendary",
  14453. image: {
  14454. source: "./media/characters/lucy/legendary.svg",
  14455. extra: 1355 / 1100,
  14456. bottom: 0.045
  14457. }
  14458. },
  14459. },
  14460. [
  14461. {
  14462. name: "Legendary",
  14463. height: math.unit(86882 * 2, "miles"),
  14464. default: true
  14465. },
  14466. ]
  14467. ))
  14468. characterMakers.push(() => makeCharacter(
  14469. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  14470. {
  14471. front: {
  14472. height: math.unit(6, "feet"),
  14473. weight: math.unit(150, "lb"),
  14474. name: "Front",
  14475. image: {
  14476. source: "./media/characters/drusilla/front.svg",
  14477. extra: 678 / 635,
  14478. bottom: 0.03
  14479. }
  14480. },
  14481. back: {
  14482. height: math.unit(6, "feet"),
  14483. weight: math.unit(150, "lb"),
  14484. name: "Back",
  14485. image: {
  14486. source: "./media/characters/drusilla/back.svg",
  14487. extra: 678 / 635,
  14488. bottom: 0.005
  14489. }
  14490. },
  14491. },
  14492. [
  14493. {
  14494. name: "Macro",
  14495. height: math.unit(100, "feet")
  14496. },
  14497. {
  14498. name: "Canon Height",
  14499. height: math.unit(2000, "feet"),
  14500. default: true
  14501. },
  14502. ]
  14503. ))
  14504. characterMakers.push(() => makeCharacter(
  14505. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  14506. {
  14507. front: {
  14508. height: math.unit(6, "feet"),
  14509. weight: math.unit(180, "lb"),
  14510. name: "Front",
  14511. image: {
  14512. source: "./media/characters/renard-thatch/front.svg",
  14513. extra: 2411 / 2275,
  14514. bottom: 0.01
  14515. }
  14516. },
  14517. frontPosing: {
  14518. height: math.unit(6, "feet"),
  14519. weight: math.unit(180, "lb"),
  14520. name: "Front (Posing)",
  14521. image: {
  14522. source: "./media/characters/renard-thatch/front-posing.svg",
  14523. extra: 2381 / 2261,
  14524. bottom: 0.01
  14525. }
  14526. },
  14527. back: {
  14528. height: math.unit(6, "feet"),
  14529. weight: math.unit(180, "lb"),
  14530. name: "Back",
  14531. image: {
  14532. source: "./media/characters/renard-thatch/back.svg",
  14533. extra: 2428 / 2288
  14534. }
  14535. },
  14536. },
  14537. [
  14538. {
  14539. name: "Micro",
  14540. height: math.unit(3, "inches")
  14541. },
  14542. {
  14543. name: "Default",
  14544. height: math.unit(6, "feet"),
  14545. default: true
  14546. },
  14547. {
  14548. name: "Macro",
  14549. height: math.unit(75, "feet")
  14550. },
  14551. ]
  14552. ))
  14553. characterMakers.push(() => makeCharacter(
  14554. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  14555. {
  14556. front: {
  14557. height: math.unit(1450, "feet"),
  14558. weight: math.unit(1.21e6, "tons"),
  14559. name: "Front",
  14560. image: {
  14561. source: "./media/characters/sekvra/front.svg",
  14562. extra: 1193/1190,
  14563. bottom: 78/1271
  14564. }
  14565. },
  14566. side: {
  14567. height: math.unit(1450, "feet"),
  14568. weight: math.unit(1.21e6, "tons"),
  14569. name: "Side",
  14570. image: {
  14571. source: "./media/characters/sekvra/side.svg",
  14572. extra: 1193/1190,
  14573. bottom: 52/1245
  14574. }
  14575. },
  14576. back: {
  14577. height: math.unit(1450, "feet"),
  14578. weight: math.unit(1.21e6, "tons"),
  14579. name: "Back",
  14580. image: {
  14581. source: "./media/characters/sekvra/back.svg",
  14582. extra: 1219/1216,
  14583. bottom: 21/1240
  14584. }
  14585. },
  14586. frontClothed: {
  14587. height: math.unit(1450, "feet"),
  14588. weight: math.unit(1.21e6, "tons"),
  14589. name: "Front (Clothed)",
  14590. image: {
  14591. source: "./media/characters/sekvra/front-clothed.svg",
  14592. extra: 1192/1189,
  14593. bottom: 79/1271
  14594. }
  14595. },
  14596. },
  14597. [
  14598. {
  14599. name: "Macro",
  14600. height: math.unit(1450, "feet"),
  14601. default: true
  14602. },
  14603. {
  14604. name: "Megamacro",
  14605. height: math.unit(15000, "feet")
  14606. },
  14607. ]
  14608. ))
  14609. characterMakers.push(() => makeCharacter(
  14610. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14611. {
  14612. front: {
  14613. height: math.unit(6, "feet"),
  14614. weight: math.unit(150, "lb"),
  14615. name: "Front",
  14616. image: {
  14617. source: "./media/characters/carmine/front.svg",
  14618. extra: 1,
  14619. bottom: 0.035
  14620. }
  14621. },
  14622. frontArmor: {
  14623. height: math.unit(6, "feet"),
  14624. weight: math.unit(150, "lb"),
  14625. name: "Front (Armor)",
  14626. image: {
  14627. source: "./media/characters/carmine/front-armor.svg",
  14628. extra: 1,
  14629. bottom: 0.035
  14630. }
  14631. },
  14632. },
  14633. [
  14634. {
  14635. name: "Large",
  14636. height: math.unit(1, "mile")
  14637. },
  14638. {
  14639. name: "Huge",
  14640. height: math.unit(40, "miles"),
  14641. default: true
  14642. },
  14643. {
  14644. name: "Colossal",
  14645. height: math.unit(2500, "miles")
  14646. },
  14647. ]
  14648. ))
  14649. characterMakers.push(() => makeCharacter(
  14650. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  14651. {
  14652. front: {
  14653. height: math.unit(6, "feet"),
  14654. weight: math.unit(150, "lb"),
  14655. name: "Front",
  14656. image: {
  14657. source: "./media/characters/elyssia/front.svg",
  14658. extra: 2201 / 2035,
  14659. bottom: 0.05
  14660. }
  14661. },
  14662. frontClothed: {
  14663. height: math.unit(6, "feet"),
  14664. weight: math.unit(150, "lb"),
  14665. name: "Front (Clothed)",
  14666. image: {
  14667. source: "./media/characters/elyssia/front-clothed.svg",
  14668. extra: 2201 / 2035,
  14669. bottom: 0.05
  14670. }
  14671. },
  14672. back: {
  14673. height: math.unit(6, "feet"),
  14674. weight: math.unit(150, "lb"),
  14675. name: "Back",
  14676. image: {
  14677. source: "./media/characters/elyssia/back.svg",
  14678. extra: 2201 / 2035,
  14679. bottom: 0.013
  14680. }
  14681. },
  14682. },
  14683. [
  14684. {
  14685. name: "Smaller",
  14686. height: math.unit(150, "feet")
  14687. },
  14688. {
  14689. name: "Standard",
  14690. height: math.unit(1400, "feet"),
  14691. default: true
  14692. },
  14693. {
  14694. name: "Distracted",
  14695. height: math.unit(15000, "feet")
  14696. },
  14697. ]
  14698. ))
  14699. characterMakers.push(() => makeCharacter(
  14700. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  14701. {
  14702. front: {
  14703. height: math.unit(7 + 4/12, "feet"),
  14704. weight: math.unit(690, "lb"),
  14705. name: "Front",
  14706. image: {
  14707. source: "./media/characters/geno-maxwell/front.svg",
  14708. extra: 984/856,
  14709. bottom: 87/1071
  14710. }
  14711. },
  14712. back: {
  14713. height: math.unit(7 + 4/12, "feet"),
  14714. weight: math.unit(690, "lb"),
  14715. name: "Back",
  14716. image: {
  14717. source: "./media/characters/geno-maxwell/back.svg",
  14718. extra: 981/854,
  14719. bottom: 57/1038
  14720. }
  14721. },
  14722. frontCostume: {
  14723. height: math.unit(7 + 4/12, "feet"),
  14724. weight: math.unit(690, "lb"),
  14725. name: "Front (Costume)",
  14726. image: {
  14727. source: "./media/characters/geno-maxwell/front-costume.svg",
  14728. extra: 984/856,
  14729. bottom: 87/1071
  14730. }
  14731. },
  14732. backcostume: {
  14733. height: math.unit(7 + 4/12, "feet"),
  14734. weight: math.unit(690, "lb"),
  14735. name: "Back (Costume)",
  14736. image: {
  14737. source: "./media/characters/geno-maxwell/back-costume.svg",
  14738. extra: 981/854,
  14739. bottom: 57/1038
  14740. }
  14741. },
  14742. },
  14743. [
  14744. {
  14745. name: "Micro",
  14746. height: math.unit(3, "inches")
  14747. },
  14748. {
  14749. name: "Normal",
  14750. height: math.unit(7 + 4 / 12, "feet"),
  14751. default: true
  14752. },
  14753. {
  14754. name: "Macro",
  14755. height: math.unit(220, "feet")
  14756. },
  14757. {
  14758. name: "Megamacro",
  14759. height: math.unit(11, "miles")
  14760. },
  14761. ]
  14762. ))
  14763. characterMakers.push(() => makeCharacter(
  14764. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  14765. {
  14766. front: {
  14767. height: math.unit(7 + 4/12, "feet"),
  14768. weight: math.unit(750, "lb"),
  14769. name: "Front",
  14770. image: {
  14771. source: "./media/characters/regena-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(750, "lb"),
  14779. name: "Back",
  14780. image: {
  14781. source: "./media/characters/regena-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(750, "lb"),
  14789. name: "Front (Costume)",
  14790. image: {
  14791. source: "./media/characters/regena-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(750, "lb"),
  14799. name: "Back (Costume)",
  14800. image: {
  14801. source: "./media/characters/regena-maxwell/back-costume.svg",
  14802. extra: 981/854,
  14803. bottom: 57/1038
  14804. }
  14805. },
  14806. },
  14807. [
  14808. {
  14809. name: "Normal",
  14810. height: math.unit(7 + 4 / 12, "feet"),
  14811. default: true
  14812. },
  14813. {
  14814. name: "Macro",
  14815. height: math.unit(220, "feet")
  14816. },
  14817. {
  14818. name: "Megamacro",
  14819. height: math.unit(11, "miles")
  14820. },
  14821. ]
  14822. ))
  14823. characterMakers.push(() => makeCharacter(
  14824. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14825. {
  14826. front: {
  14827. height: math.unit(6, "feet"),
  14828. weight: math.unit(150, "lb"),
  14829. name: "Front",
  14830. image: {
  14831. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14832. extra: 860 / 690,
  14833. bottom: 0.03
  14834. }
  14835. },
  14836. },
  14837. [
  14838. {
  14839. name: "Normal",
  14840. height: math.unit(1.7, "meters"),
  14841. default: true
  14842. },
  14843. ]
  14844. ))
  14845. characterMakers.push(() => makeCharacter(
  14846. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14847. {
  14848. front: {
  14849. height: math.unit(6, "feet"),
  14850. weight: math.unit(150, "lb"),
  14851. name: "Front",
  14852. image: {
  14853. source: "./media/characters/quilly/front.svg",
  14854. extra: 890 / 776
  14855. }
  14856. },
  14857. },
  14858. [
  14859. {
  14860. name: "Gigamacro",
  14861. height: math.unit(404090, "miles"),
  14862. default: true
  14863. },
  14864. ]
  14865. ))
  14866. characterMakers.push(() => makeCharacter(
  14867. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14868. {
  14869. front: {
  14870. height: math.unit(7 + 8 / 12, "feet"),
  14871. weight: math.unit(350, "lb"),
  14872. name: "Front",
  14873. image: {
  14874. source: "./media/characters/tempest/front.svg",
  14875. extra: 1175 / 1086,
  14876. bottom: 0.02
  14877. }
  14878. },
  14879. },
  14880. [
  14881. {
  14882. name: "Normal",
  14883. height: math.unit(7 + 8 / 12, "feet"),
  14884. default: true
  14885. },
  14886. ]
  14887. ))
  14888. characterMakers.push(() => makeCharacter(
  14889. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14890. {
  14891. side: {
  14892. height: math.unit(4 + 5 / 12, "feet"),
  14893. weight: math.unit(80, "lb"),
  14894. name: "Side",
  14895. image: {
  14896. source: "./media/characters/rodger/side.svg",
  14897. extra: 1235 / 1118
  14898. }
  14899. },
  14900. },
  14901. [
  14902. {
  14903. name: "Micro",
  14904. height: math.unit(1, "inch")
  14905. },
  14906. {
  14907. name: "Normal",
  14908. height: math.unit(4 + 5 / 12, "feet"),
  14909. default: true
  14910. },
  14911. {
  14912. name: "Macro",
  14913. height: math.unit(120, "feet")
  14914. },
  14915. ]
  14916. ))
  14917. characterMakers.push(() => makeCharacter(
  14918. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14919. {
  14920. front: {
  14921. height: math.unit(6, "feet"),
  14922. weight: math.unit(150, "lb"),
  14923. name: "Front",
  14924. image: {
  14925. source: "./media/characters/danyel/front.svg",
  14926. extra: 1185 / 1123,
  14927. bottom: 0.05
  14928. }
  14929. },
  14930. },
  14931. [
  14932. {
  14933. name: "Shrunken",
  14934. height: math.unit(0.5, "mm")
  14935. },
  14936. {
  14937. name: "Micro",
  14938. height: math.unit(1, "mm"),
  14939. default: true
  14940. },
  14941. {
  14942. name: "Upsized",
  14943. height: math.unit(5 + 5 / 12, "feet")
  14944. },
  14945. ]
  14946. ))
  14947. characterMakers.push(() => makeCharacter(
  14948. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  14949. {
  14950. front: {
  14951. height: math.unit(5 + 6 / 12, "feet"),
  14952. weight: math.unit(200, "lb"),
  14953. name: "Front",
  14954. image: {
  14955. source: "./media/characters/vivian-bijoux/front.svg",
  14956. extra: 1217/1209,
  14957. bottom: 76/1293
  14958. }
  14959. },
  14960. back: {
  14961. height: math.unit(5 + 6 / 12, "feet"),
  14962. weight: math.unit(200, "lb"),
  14963. name: "Back",
  14964. image: {
  14965. source: "./media/characters/vivian-bijoux/back.svg",
  14966. extra: 1214/1208,
  14967. bottom: 51/1265
  14968. }
  14969. },
  14970. dressed: {
  14971. height: math.unit(5 + 6 / 12, "feet"),
  14972. weight: math.unit(200, "lb"),
  14973. name: "Dressed",
  14974. image: {
  14975. source: "./media/characters/vivian-bijoux/dressed.svg",
  14976. extra: 1217/1209,
  14977. bottom: 76/1293
  14978. }
  14979. },
  14980. },
  14981. [
  14982. {
  14983. name: "Normal",
  14984. height: math.unit(5 + 6 / 12, "feet"),
  14985. default: true
  14986. },
  14987. {
  14988. name: "Bad Dream",
  14989. height: math.unit(500, "feet")
  14990. },
  14991. {
  14992. name: "Nightmare",
  14993. height: math.unit(500, "miles")
  14994. },
  14995. ]
  14996. ))
  14997. characterMakers.push(() => makeCharacter(
  14998. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  14999. {
  15000. front: {
  15001. height: math.unit(6 + 1 / 12, "feet"),
  15002. weight: math.unit(260, "lb"),
  15003. name: "Front",
  15004. image: {
  15005. source: "./media/characters/zeta/front.svg",
  15006. extra: 1968 / 1889,
  15007. bottom: 0.06
  15008. }
  15009. },
  15010. back: {
  15011. height: math.unit(6 + 1 / 12, "feet"),
  15012. weight: math.unit(260, "lb"),
  15013. name: "Back",
  15014. image: {
  15015. source: "./media/characters/zeta/back.svg",
  15016. extra: 1944 / 1858,
  15017. bottom: 0.03
  15018. }
  15019. },
  15020. hand: {
  15021. height: math.unit(1.112, "feet"),
  15022. name: "Hand",
  15023. image: {
  15024. source: "./media/characters/zeta/hand.svg"
  15025. }
  15026. },
  15027. foot: {
  15028. height: math.unit(1.48, "feet"),
  15029. name: "Foot",
  15030. image: {
  15031. source: "./media/characters/zeta/foot.svg"
  15032. }
  15033. },
  15034. },
  15035. [
  15036. {
  15037. name: "Micro",
  15038. height: math.unit(6, "inches")
  15039. },
  15040. {
  15041. name: "Normal",
  15042. height: math.unit(6 + 1 / 12, "feet"),
  15043. default: true
  15044. },
  15045. {
  15046. name: "Macro",
  15047. height: math.unit(20, "feet")
  15048. },
  15049. ]
  15050. ))
  15051. characterMakers.push(() => makeCharacter(
  15052. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  15053. {
  15054. front: {
  15055. height: math.unit(6, "feet"),
  15056. weight: math.unit(150, "lb"),
  15057. name: "Front",
  15058. image: {
  15059. source: "./media/characters/jamie-larsen/front.svg",
  15060. extra: 962 / 933,
  15061. bottom: 0.02
  15062. }
  15063. },
  15064. back: {
  15065. height: math.unit(6, "feet"),
  15066. weight: math.unit(150, "lb"),
  15067. name: "Back",
  15068. image: {
  15069. source: "./media/characters/jamie-larsen/back.svg",
  15070. extra: 997 / 946
  15071. }
  15072. },
  15073. },
  15074. [
  15075. {
  15076. name: "Macro",
  15077. height: math.unit(28 + 7 / 12, "feet"),
  15078. default: true
  15079. },
  15080. {
  15081. name: "Macro+",
  15082. height: math.unit(180, "feet")
  15083. },
  15084. {
  15085. name: "Megamacro",
  15086. height: math.unit(10, "miles")
  15087. },
  15088. {
  15089. name: "Gigamacro",
  15090. height: math.unit(200000, "miles")
  15091. },
  15092. ]
  15093. ))
  15094. characterMakers.push(() => makeCharacter(
  15095. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15096. {
  15097. front: {
  15098. height: math.unit(6, "feet"),
  15099. weight: math.unit(120, "lb"),
  15100. name: "Front",
  15101. image: {
  15102. source: "./media/characters/vance/front.svg",
  15103. extra: 1980 / 1890,
  15104. bottom: 0.09
  15105. }
  15106. },
  15107. back: {
  15108. height: math.unit(6, "feet"),
  15109. weight: math.unit(120, "lb"),
  15110. name: "Back",
  15111. image: {
  15112. source: "./media/characters/vance/back.svg",
  15113. extra: 2081 / 1994,
  15114. bottom: 0.014
  15115. }
  15116. },
  15117. hand: {
  15118. height: math.unit(0.88, "feet"),
  15119. name: "Hand",
  15120. image: {
  15121. source: "./media/characters/vance/hand.svg"
  15122. }
  15123. },
  15124. foot: {
  15125. height: math.unit(0.64, "feet"),
  15126. name: "Foot",
  15127. image: {
  15128. source: "./media/characters/vance/foot.svg"
  15129. }
  15130. },
  15131. },
  15132. [
  15133. {
  15134. name: "Small",
  15135. height: math.unit(90, "feet"),
  15136. default: true
  15137. },
  15138. {
  15139. name: "Macro",
  15140. height: math.unit(100, "meters")
  15141. },
  15142. {
  15143. name: "Megamacro",
  15144. height: math.unit(15, "miles")
  15145. },
  15146. ]
  15147. ))
  15148. characterMakers.push(() => makeCharacter(
  15149. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  15150. {
  15151. front: {
  15152. height: math.unit(6, "feet"),
  15153. weight: math.unit(180, "lb"),
  15154. name: "Front",
  15155. image: {
  15156. source: "./media/characters/xochitl/front.svg",
  15157. extra: 2297 / 2261,
  15158. bottom: 0.065
  15159. }
  15160. },
  15161. back: {
  15162. height: math.unit(6, "feet"),
  15163. weight: math.unit(180, "lb"),
  15164. name: "Back",
  15165. image: {
  15166. source: "./media/characters/xochitl/back.svg",
  15167. extra: 2386 / 2354,
  15168. bottom: 0.01
  15169. }
  15170. },
  15171. foot: {
  15172. height: math.unit(6 / 5 * 1.15, "feet"),
  15173. weight: math.unit(150, "lb"),
  15174. name: "Foot",
  15175. image: {
  15176. source: "./media/characters/xochitl/foot.svg"
  15177. }
  15178. },
  15179. },
  15180. [
  15181. {
  15182. name: "Macro",
  15183. height: math.unit(80, "feet")
  15184. },
  15185. {
  15186. name: "Macro+",
  15187. height: math.unit(400, "feet"),
  15188. default: true
  15189. },
  15190. {
  15191. name: "Gigamacro",
  15192. height: math.unit(80000, "miles")
  15193. },
  15194. {
  15195. name: "Gigamacro+",
  15196. height: math.unit(400000, "miles")
  15197. },
  15198. {
  15199. name: "Teramacro",
  15200. height: math.unit(300, "AU")
  15201. },
  15202. ]
  15203. ))
  15204. characterMakers.push(() => makeCharacter(
  15205. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  15206. {
  15207. front: {
  15208. height: math.unit(6, "feet"),
  15209. weight: math.unit(150, "lb"),
  15210. name: "Front",
  15211. image: {
  15212. source: "./media/characters/vincent/front.svg",
  15213. extra: 1130 / 1080,
  15214. bottom: 0.055
  15215. }
  15216. },
  15217. beak: {
  15218. height: math.unit(6 * 0.1, "feet"),
  15219. name: "Beak",
  15220. image: {
  15221. source: "./media/characters/vincent/beak.svg"
  15222. }
  15223. },
  15224. hand: {
  15225. height: math.unit(6 * 0.85, "feet"),
  15226. weight: math.unit(150, "lb"),
  15227. name: "Hand",
  15228. image: {
  15229. source: "./media/characters/vincent/hand.svg"
  15230. }
  15231. },
  15232. foot: {
  15233. height: math.unit(6 * 0.19, "feet"),
  15234. weight: math.unit(150, "lb"),
  15235. name: "Foot",
  15236. image: {
  15237. source: "./media/characters/vincent/foot.svg"
  15238. }
  15239. },
  15240. },
  15241. [
  15242. {
  15243. name: "Base",
  15244. height: math.unit(6 + 5 / 12, "feet"),
  15245. default: true
  15246. },
  15247. {
  15248. name: "Macro",
  15249. height: math.unit(300, "feet")
  15250. },
  15251. {
  15252. name: "Megamacro",
  15253. height: math.unit(2, "miles")
  15254. },
  15255. {
  15256. name: "Gigamacro",
  15257. height: math.unit(1000, "miles")
  15258. },
  15259. ]
  15260. ))
  15261. characterMakers.push(() => makeCharacter(
  15262. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  15263. {
  15264. front: {
  15265. height: math.unit(2, "meters"),
  15266. weight: math.unit(500, "kg"),
  15267. name: "Front",
  15268. image: {
  15269. source: "./media/characters/coatl/front.svg",
  15270. extra: 3948 / 3500,
  15271. bottom: 0.082
  15272. }
  15273. },
  15274. },
  15275. [
  15276. {
  15277. name: "Normal",
  15278. height: math.unit(4, "meters")
  15279. },
  15280. {
  15281. name: "Macro",
  15282. height: math.unit(100, "meters"),
  15283. default: true
  15284. },
  15285. {
  15286. name: "Macro+",
  15287. height: math.unit(300, "meters")
  15288. },
  15289. {
  15290. name: "Megamacro",
  15291. height: math.unit(3, "gigameters")
  15292. },
  15293. {
  15294. name: "Megamacro+",
  15295. height: math.unit(300, "terameters")
  15296. },
  15297. {
  15298. name: "Megamacro++",
  15299. height: math.unit(3, "lightyears")
  15300. },
  15301. ]
  15302. ))
  15303. characterMakers.push(() => makeCharacter(
  15304. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  15305. {
  15306. front: {
  15307. height: math.unit(6, "feet"),
  15308. weight: math.unit(50, "kg"),
  15309. name: "front",
  15310. image: {
  15311. source: "./media/characters/shiroryu/front.svg",
  15312. extra: 1990 / 1935
  15313. }
  15314. },
  15315. },
  15316. [
  15317. {
  15318. name: "Mortal Mingling",
  15319. height: math.unit(3, "meters")
  15320. },
  15321. {
  15322. name: "Kaiju-ish",
  15323. height: math.unit(250, "meters")
  15324. },
  15325. {
  15326. name: "Somewhat Godly",
  15327. height: math.unit(400, "km"),
  15328. default: true
  15329. },
  15330. {
  15331. name: "Planetary",
  15332. height: math.unit(300, "megameters")
  15333. },
  15334. {
  15335. name: "Galaxy-dwarfing",
  15336. height: math.unit(450, "kiloparsecs")
  15337. },
  15338. {
  15339. name: "Universe Eater",
  15340. height: math.unit(150, "gigaparsecs")
  15341. },
  15342. {
  15343. name: "Almost Immeasurable",
  15344. height: math.unit(1.3e266, "yottaparsecs")
  15345. },
  15346. ]
  15347. ))
  15348. characterMakers.push(() => makeCharacter(
  15349. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  15350. {
  15351. front: {
  15352. height: math.unit(6, "feet"),
  15353. weight: math.unit(150, "lb"),
  15354. name: "Front",
  15355. image: {
  15356. source: "./media/characters/umeko/front.svg",
  15357. extra: 1,
  15358. bottom: 0.019
  15359. }
  15360. },
  15361. frontArmored: {
  15362. height: math.unit(6, "feet"),
  15363. weight: math.unit(150, "lb"),
  15364. name: "Front (Armored)",
  15365. image: {
  15366. source: "./media/characters/umeko/front-armored.svg",
  15367. extra: 1,
  15368. bottom: 0.021
  15369. }
  15370. },
  15371. },
  15372. [
  15373. {
  15374. name: "Macro",
  15375. height: math.unit(220, "feet"),
  15376. default: true
  15377. },
  15378. {
  15379. name: "Guardian Dragon",
  15380. height: math.unit(50, "miles")
  15381. },
  15382. {
  15383. name: "Cosmic",
  15384. height: math.unit(800000, "miles")
  15385. },
  15386. ]
  15387. ))
  15388. characterMakers.push(() => makeCharacter(
  15389. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  15390. {
  15391. front: {
  15392. height: math.unit(6, "feet"),
  15393. weight: math.unit(150, "lb"),
  15394. name: "Front",
  15395. image: {
  15396. source: "./media/characters/cassidy/front.svg",
  15397. extra: 810/808,
  15398. bottom: 41/851
  15399. }
  15400. },
  15401. },
  15402. [
  15403. {
  15404. name: "Canon Height",
  15405. height: math.unit(120, "feet"),
  15406. default: true
  15407. },
  15408. {
  15409. name: "Macro+",
  15410. height: math.unit(400, "feet")
  15411. },
  15412. {
  15413. name: "Macro++",
  15414. height: math.unit(4000, "feet")
  15415. },
  15416. {
  15417. name: "Megamacro",
  15418. height: math.unit(3, "miles")
  15419. },
  15420. ]
  15421. ))
  15422. characterMakers.push(() => makeCharacter(
  15423. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  15424. {
  15425. front: {
  15426. height: math.unit(6, "feet"),
  15427. weight: math.unit(150, "lb"),
  15428. name: "Front",
  15429. image: {
  15430. source: "./media/characters/isaac/front.svg",
  15431. extra: 896 / 815,
  15432. bottom: 0.11
  15433. }
  15434. },
  15435. },
  15436. [
  15437. {
  15438. name: "Human Size",
  15439. height: math.unit(8, "feet"),
  15440. default: true
  15441. },
  15442. {
  15443. name: "Macro",
  15444. height: math.unit(400, "feet")
  15445. },
  15446. {
  15447. name: "Megamacro",
  15448. height: math.unit(50, "miles")
  15449. },
  15450. {
  15451. name: "Canon Height",
  15452. height: math.unit(200, "AU")
  15453. },
  15454. ]
  15455. ))
  15456. characterMakers.push(() => makeCharacter(
  15457. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  15458. {
  15459. front: {
  15460. height: math.unit(6, "feet"),
  15461. weight: math.unit(72, "kg"),
  15462. name: "Front",
  15463. image: {
  15464. source: "./media/characters/sleekit/front.svg",
  15465. extra: 4693 / 4487,
  15466. bottom: 0.012
  15467. }
  15468. },
  15469. },
  15470. [
  15471. {
  15472. name: "Minimum Height",
  15473. height: math.unit(10, "meters")
  15474. },
  15475. {
  15476. name: "Smaller",
  15477. height: math.unit(25, "meters")
  15478. },
  15479. {
  15480. name: "Larger",
  15481. height: math.unit(38, "meters"),
  15482. default: true
  15483. },
  15484. {
  15485. name: "Maximum height",
  15486. height: math.unit(100, "meters")
  15487. },
  15488. ]
  15489. ))
  15490. characterMakers.push(() => makeCharacter(
  15491. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  15492. {
  15493. front: {
  15494. height: math.unit(6, "feet"),
  15495. weight: math.unit(150, "lb"),
  15496. name: "Front",
  15497. image: {
  15498. source: "./media/characters/nillia/front.svg",
  15499. extra: 2195 / 2037,
  15500. bottom: 0.005
  15501. }
  15502. },
  15503. back: {
  15504. height: math.unit(6, "feet"),
  15505. weight: math.unit(150, "lb"),
  15506. name: "Back",
  15507. image: {
  15508. source: "./media/characters/nillia/back.svg",
  15509. extra: 2195 / 2037,
  15510. bottom: 0.005
  15511. }
  15512. },
  15513. },
  15514. [
  15515. {
  15516. name: "Canon Height",
  15517. height: math.unit(489, "feet"),
  15518. default: true
  15519. }
  15520. ]
  15521. ))
  15522. characterMakers.push(() => makeCharacter(
  15523. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  15524. {
  15525. front: {
  15526. height: math.unit(6, "feet"),
  15527. weight: math.unit(150, "lb"),
  15528. name: "Front",
  15529. image: {
  15530. source: "./media/characters/mesmyriza/front.svg",
  15531. extra: 2067 / 1784,
  15532. bottom: 0.035
  15533. }
  15534. },
  15535. foot: {
  15536. height: math.unit(6 / (250 / 35), "feet"),
  15537. name: "Foot",
  15538. image: {
  15539. source: "./media/characters/mesmyriza/foot.svg"
  15540. }
  15541. },
  15542. },
  15543. [
  15544. {
  15545. name: "Macro",
  15546. height: math.unit(457, "meters"),
  15547. default: true
  15548. },
  15549. {
  15550. name: "Megamacro",
  15551. height: math.unit(8, "megameters")
  15552. },
  15553. ]
  15554. ))
  15555. characterMakers.push(() => makeCharacter(
  15556. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  15557. {
  15558. front: {
  15559. height: math.unit(6, "feet"),
  15560. weight: math.unit(250, "lb"),
  15561. name: "Front",
  15562. image: {
  15563. source: "./media/characters/saudade/front.svg",
  15564. extra: 1172 / 1139,
  15565. bottom: 0.035
  15566. }
  15567. },
  15568. },
  15569. [
  15570. {
  15571. name: "Micro",
  15572. height: math.unit(3, "inches")
  15573. },
  15574. {
  15575. name: "Normal",
  15576. height: math.unit(6, "feet"),
  15577. default: true
  15578. },
  15579. {
  15580. name: "Macro",
  15581. height: math.unit(50, "feet")
  15582. },
  15583. {
  15584. name: "Megamacro",
  15585. height: math.unit(2800, "feet")
  15586. },
  15587. ]
  15588. ))
  15589. characterMakers.push(() => makeCharacter(
  15590. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15591. {
  15592. front: {
  15593. height: math.unit(5 + 4 / 12, "feet"),
  15594. weight: math.unit(100, "lb"),
  15595. name: "Front",
  15596. image: {
  15597. source: "./media/characters/keireer/front.svg",
  15598. extra: 716 / 666,
  15599. bottom: 0.05
  15600. }
  15601. },
  15602. },
  15603. [
  15604. {
  15605. name: "Normal",
  15606. height: math.unit(5 + 4 / 12, "feet"),
  15607. default: true
  15608. },
  15609. ]
  15610. ))
  15611. characterMakers.push(() => makeCharacter(
  15612. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15613. {
  15614. front: {
  15615. height: math.unit(5.5, "feet"),
  15616. weight: math.unit(90, "kg"),
  15617. name: "Front",
  15618. image: {
  15619. source: "./media/characters/mirja/front.svg",
  15620. extra: 1452/1262,
  15621. bottom: 67/1519
  15622. }
  15623. },
  15624. frontDressed: {
  15625. height: math.unit(5.5, "feet"),
  15626. weight: math.unit(90, "lb"),
  15627. name: "Front (Dressed)",
  15628. image: {
  15629. source: "./media/characters/mirja/dressed.svg",
  15630. extra: 1452/1262,
  15631. bottom: 67/1519
  15632. }
  15633. },
  15634. back: {
  15635. height: math.unit(6, "feet"),
  15636. weight: math.unit(90, "lb"),
  15637. name: "Back",
  15638. image: {
  15639. source: "./media/characters/mirja/back.svg",
  15640. extra: 1892/1795,
  15641. bottom: 48/1940
  15642. }
  15643. },
  15644. maw: {
  15645. height: math.unit(1.312, "feet"),
  15646. name: "Maw",
  15647. image: {
  15648. source: "./media/characters/mirja/maw.svg"
  15649. }
  15650. },
  15651. paw: {
  15652. height: math.unit(1.15, "feet"),
  15653. name: "Paw",
  15654. image: {
  15655. source: "./media/characters/mirja/paw.svg"
  15656. }
  15657. },
  15658. },
  15659. [
  15660. {
  15661. name: "\"Incognito\"",
  15662. height: math.unit(3, "meters")
  15663. },
  15664. {
  15665. name: "Strolling Size",
  15666. height: math.unit(15, "km")
  15667. },
  15668. {
  15669. name: "Larger Strolling Size",
  15670. height: math.unit(400, "km")
  15671. },
  15672. {
  15673. name: "Preferred Size",
  15674. height: math.unit(5000, "km"),
  15675. default: true
  15676. },
  15677. {
  15678. name: "True Size",
  15679. height: math.unit(30657809462086840000000000000000, "parsecs"),
  15680. },
  15681. ]
  15682. ))
  15683. characterMakers.push(() => makeCharacter(
  15684. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  15685. {
  15686. front: {
  15687. height: math.unit(15, "feet"),
  15688. weight: math.unit(880, "kg"),
  15689. name: "Front",
  15690. image: {
  15691. source: "./media/characters/nightraver/front.svg",
  15692. extra: 2444 / 2160,
  15693. bottom: 0.027
  15694. }
  15695. },
  15696. back: {
  15697. height: math.unit(15, "feet"),
  15698. weight: math.unit(880, "kg"),
  15699. name: "Back",
  15700. image: {
  15701. source: "./media/characters/nightraver/back.svg",
  15702. extra: 2309 / 2180,
  15703. bottom: 0.005
  15704. }
  15705. },
  15706. sole: {
  15707. height: math.unit(2.878, "feet"),
  15708. name: "Sole",
  15709. image: {
  15710. source: "./media/characters/nightraver/sole.svg"
  15711. }
  15712. },
  15713. foot: {
  15714. height: math.unit(2.285, "feet"),
  15715. name: "Foot",
  15716. image: {
  15717. source: "./media/characters/nightraver/foot.svg"
  15718. }
  15719. },
  15720. maw: {
  15721. height: math.unit(2.67, "feet"),
  15722. name: "Maw",
  15723. image: {
  15724. source: "./media/characters/nightraver/maw.svg"
  15725. }
  15726. },
  15727. },
  15728. [
  15729. {
  15730. name: "Micro",
  15731. height: math.unit(1, "cm")
  15732. },
  15733. {
  15734. name: "Normal",
  15735. height: math.unit(15, "feet"),
  15736. default: true
  15737. },
  15738. {
  15739. name: "Macro",
  15740. height: math.unit(300, "feet")
  15741. },
  15742. {
  15743. name: "Megamacro",
  15744. height: math.unit(300, "miles")
  15745. },
  15746. {
  15747. name: "Gigamacro",
  15748. height: math.unit(10000, "miles")
  15749. },
  15750. ]
  15751. ))
  15752. characterMakers.push(() => makeCharacter(
  15753. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  15754. {
  15755. side: {
  15756. height: math.unit(2, "inches"),
  15757. weight: math.unit(5, "grams"),
  15758. name: "Side",
  15759. image: {
  15760. source: "./media/characters/arc/side.svg"
  15761. }
  15762. },
  15763. },
  15764. [
  15765. {
  15766. name: "Micro",
  15767. height: math.unit(2, "inches"),
  15768. default: true
  15769. },
  15770. ]
  15771. ))
  15772. characterMakers.push(() => makeCharacter(
  15773. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  15774. {
  15775. front: {
  15776. height: math.unit(1.1938, "meters"),
  15777. weight: math.unit(54, "kg"),
  15778. name: "Front",
  15779. image: {
  15780. source: "./media/characters/nebula-shahar/front.svg",
  15781. extra: 1642 / 1436,
  15782. bottom: 0.06
  15783. }
  15784. },
  15785. },
  15786. [
  15787. {
  15788. name: "Megamicro",
  15789. height: math.unit(0.3, "mm")
  15790. },
  15791. {
  15792. name: "Micro",
  15793. height: math.unit(3, "cm")
  15794. },
  15795. {
  15796. name: "Normal",
  15797. height: math.unit(138, "cm"),
  15798. default: true
  15799. },
  15800. {
  15801. name: "Macro",
  15802. height: math.unit(30, "m")
  15803. },
  15804. ]
  15805. ))
  15806. characterMakers.push(() => makeCharacter(
  15807. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  15808. {
  15809. front: {
  15810. height: math.unit(5.24, "feet"),
  15811. weight: math.unit(150, "lb"),
  15812. name: "Front",
  15813. image: {
  15814. source: "./media/characters/shayla/front.svg",
  15815. extra: 1512 / 1414,
  15816. bottom: 0.01
  15817. }
  15818. },
  15819. back: {
  15820. height: math.unit(5.24, "feet"),
  15821. weight: math.unit(150, "lb"),
  15822. name: "Back",
  15823. image: {
  15824. source: "./media/characters/shayla/back.svg",
  15825. extra: 1512 / 1414
  15826. }
  15827. },
  15828. hand: {
  15829. height: math.unit(0.7781496062992126, "feet"),
  15830. name: "Hand",
  15831. image: {
  15832. source: "./media/characters/shayla/hand.svg"
  15833. }
  15834. },
  15835. foot: {
  15836. height: math.unit(1.4206036745406823, "feet"),
  15837. name: "Foot",
  15838. image: {
  15839. source: "./media/characters/shayla/foot.svg"
  15840. }
  15841. },
  15842. },
  15843. [
  15844. {
  15845. name: "Micro",
  15846. height: math.unit(0.32, "feet")
  15847. },
  15848. {
  15849. name: "Normal",
  15850. height: math.unit(5.24, "feet"),
  15851. default: true
  15852. },
  15853. {
  15854. name: "Macro",
  15855. height: math.unit(492.12, "feet")
  15856. },
  15857. {
  15858. name: "Megamacro",
  15859. height: math.unit(186.41, "miles")
  15860. },
  15861. ]
  15862. ))
  15863. characterMakers.push(() => makeCharacter(
  15864. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  15865. {
  15866. front: {
  15867. height: math.unit(2.2, "m"),
  15868. weight: math.unit(120, "kg"),
  15869. name: "Front",
  15870. image: {
  15871. source: "./media/characters/pia-jr/front.svg",
  15872. extra: 1000 / 970,
  15873. bottom: 0.035
  15874. }
  15875. },
  15876. hand: {
  15877. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15878. name: "Hand",
  15879. image: {
  15880. source: "./media/characters/pia-jr/hand.svg"
  15881. }
  15882. },
  15883. paw: {
  15884. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15885. name: "Paw",
  15886. image: {
  15887. source: "./media/characters/pia-jr/paw.svg"
  15888. }
  15889. },
  15890. },
  15891. [
  15892. {
  15893. name: "Micro",
  15894. height: math.unit(1.2, "cm")
  15895. },
  15896. {
  15897. name: "Normal",
  15898. height: math.unit(2.2, "m"),
  15899. default: true
  15900. },
  15901. {
  15902. name: "Macro",
  15903. height: math.unit(180, "m")
  15904. },
  15905. {
  15906. name: "Megamacro",
  15907. height: math.unit(420, "km")
  15908. },
  15909. ]
  15910. ))
  15911. characterMakers.push(() => makeCharacter(
  15912. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15913. {
  15914. front: {
  15915. height: math.unit(2, "m"),
  15916. weight: math.unit(115, "kg"),
  15917. name: "Front",
  15918. image: {
  15919. source: "./media/characters/pia-sr/front.svg",
  15920. extra: 760 / 730,
  15921. bottom: 0.015
  15922. }
  15923. },
  15924. back: {
  15925. height: math.unit(2, "m"),
  15926. weight: math.unit(115, "kg"),
  15927. name: "Back",
  15928. image: {
  15929. source: "./media/characters/pia-sr/back.svg",
  15930. extra: 760 / 730,
  15931. bottom: 0.01
  15932. }
  15933. },
  15934. hand: {
  15935. height: math.unit(0.89 * 6.56 / 6, "feet"),
  15936. name: "Hand",
  15937. image: {
  15938. source: "./media/characters/pia-sr/hand.svg"
  15939. }
  15940. },
  15941. foot: {
  15942. height: math.unit(1.83, "feet"),
  15943. name: "Foot",
  15944. image: {
  15945. source: "./media/characters/pia-sr/foot.svg"
  15946. }
  15947. },
  15948. },
  15949. [
  15950. {
  15951. name: "Micro",
  15952. height: math.unit(88, "mm")
  15953. },
  15954. {
  15955. name: "Normal",
  15956. height: math.unit(2, "m"),
  15957. default: true
  15958. },
  15959. {
  15960. name: "Macro",
  15961. height: math.unit(200, "m")
  15962. },
  15963. {
  15964. name: "Megamacro",
  15965. height: math.unit(420, "km")
  15966. },
  15967. ]
  15968. ))
  15969. characterMakers.push(() => makeCharacter(
  15970. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  15971. {
  15972. front: {
  15973. height: math.unit(8 + 2 / 12, "feet"),
  15974. weight: math.unit(300, "lb"),
  15975. name: "Front",
  15976. image: {
  15977. source: "./media/characters/kibibyte/front.svg",
  15978. extra: 2221 / 2098,
  15979. bottom: 0.04
  15980. }
  15981. },
  15982. },
  15983. [
  15984. {
  15985. name: "Normal",
  15986. height: math.unit(8 + 2 / 12, "feet"),
  15987. default: true
  15988. },
  15989. {
  15990. name: "Socialable Macro",
  15991. height: math.unit(50, "feet")
  15992. },
  15993. {
  15994. name: "Macro",
  15995. height: math.unit(300, "feet")
  15996. },
  15997. {
  15998. name: "Megamacro",
  15999. height: math.unit(500, "miles")
  16000. },
  16001. ]
  16002. ))
  16003. characterMakers.push(() => makeCharacter(
  16004. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  16005. {
  16006. front: {
  16007. height: math.unit(6, "feet"),
  16008. weight: math.unit(150, "lb"),
  16009. name: "Front",
  16010. image: {
  16011. source: "./media/characters/felix/front.svg",
  16012. extra: 762 / 722,
  16013. bottom: 0.02
  16014. }
  16015. },
  16016. frontClothed: {
  16017. height: math.unit(6, "feet"),
  16018. weight: math.unit(150, "lb"),
  16019. name: "Front (Clothed)",
  16020. image: {
  16021. source: "./media/characters/felix/front-clothed.svg",
  16022. extra: 762 / 722,
  16023. bottom: 0.02
  16024. }
  16025. },
  16026. },
  16027. [
  16028. {
  16029. name: "Normal",
  16030. height: math.unit(6 + 8 / 12, "feet"),
  16031. default: true
  16032. },
  16033. {
  16034. name: "Macro",
  16035. height: math.unit(2600, "feet")
  16036. },
  16037. {
  16038. name: "Megamacro",
  16039. height: math.unit(450, "miles")
  16040. },
  16041. ]
  16042. ))
  16043. characterMakers.push(() => makeCharacter(
  16044. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  16045. {
  16046. front: {
  16047. height: math.unit(6 + 1 / 12, "feet"),
  16048. weight: math.unit(250, "lb"),
  16049. name: "Front",
  16050. image: {
  16051. source: "./media/characters/tobo/front.svg",
  16052. extra: 608 / 586,
  16053. bottom: 0.023
  16054. }
  16055. },
  16056. back: {
  16057. height: math.unit(6 + 1 / 12, "feet"),
  16058. weight: math.unit(250, "lb"),
  16059. name: "Back",
  16060. image: {
  16061. source: "./media/characters/tobo/back.svg",
  16062. extra: 608 / 586
  16063. }
  16064. },
  16065. },
  16066. [
  16067. {
  16068. name: "Nano",
  16069. height: math.unit(2, "nm")
  16070. },
  16071. {
  16072. name: "Megamicro",
  16073. height: math.unit(0.1, "mm")
  16074. },
  16075. {
  16076. name: "Micro",
  16077. height: math.unit(1, "inch"),
  16078. default: true
  16079. },
  16080. {
  16081. name: "Human-sized",
  16082. height: math.unit(6 + 1 / 12, "feet")
  16083. },
  16084. {
  16085. name: "Macro",
  16086. height: math.unit(250, "feet")
  16087. },
  16088. {
  16089. name: "Megamacro",
  16090. height: math.unit(75, "miles")
  16091. },
  16092. {
  16093. name: "Texas-sized",
  16094. height: math.unit(750, "miles")
  16095. },
  16096. {
  16097. name: "Teramacro",
  16098. height: math.unit(50000, "miles")
  16099. },
  16100. ]
  16101. ))
  16102. characterMakers.push(() => makeCharacter(
  16103. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  16104. {
  16105. front: {
  16106. height: math.unit(6, "feet"),
  16107. weight: math.unit(269, "lb"),
  16108. name: "Front",
  16109. image: {
  16110. source: "./media/characters/danny-kapowsky/front.svg",
  16111. extra: 766 / 736,
  16112. bottom: 0.044
  16113. }
  16114. },
  16115. back: {
  16116. height: math.unit(6, "feet"),
  16117. weight: math.unit(269, "lb"),
  16118. name: "Back",
  16119. image: {
  16120. source: "./media/characters/danny-kapowsky/back.svg",
  16121. extra: 797 / 760,
  16122. bottom: 0.025
  16123. }
  16124. },
  16125. },
  16126. [
  16127. {
  16128. name: "Macro",
  16129. height: math.unit(150, "feet"),
  16130. default: true
  16131. },
  16132. {
  16133. name: "Macro+",
  16134. height: math.unit(200, "feet")
  16135. },
  16136. {
  16137. name: "Macro++",
  16138. height: math.unit(300, "feet")
  16139. },
  16140. {
  16141. name: "Macro+++",
  16142. height: math.unit(400, "feet")
  16143. },
  16144. ]
  16145. ))
  16146. characterMakers.push(() => makeCharacter(
  16147. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  16148. {
  16149. side: {
  16150. height: math.unit(6, "feet"),
  16151. weight: math.unit(170, "lb"),
  16152. name: "Side",
  16153. image: {
  16154. source: "./media/characters/finn/side.svg",
  16155. extra: 1953 / 1807,
  16156. bottom: 0.057
  16157. }
  16158. },
  16159. },
  16160. [
  16161. {
  16162. name: "Megamacro",
  16163. height: math.unit(14445, "feet"),
  16164. default: true
  16165. },
  16166. ]
  16167. ))
  16168. characterMakers.push(() => makeCharacter(
  16169. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  16170. {
  16171. front: {
  16172. height: math.unit(5 + 6 / 12, "feet"),
  16173. weight: math.unit(125, "lb"),
  16174. name: "Front",
  16175. image: {
  16176. source: "./media/characters/roy/front.svg",
  16177. extra: 1,
  16178. bottom: 0.11
  16179. }
  16180. },
  16181. },
  16182. [
  16183. {
  16184. name: "Micro",
  16185. height: math.unit(3, "inches"),
  16186. default: true
  16187. },
  16188. {
  16189. name: "Normal",
  16190. height: math.unit(5 + 6 / 12, "feet")
  16191. },
  16192. {
  16193. name: "Lesser Macro",
  16194. height: math.unit(60, "feet")
  16195. },
  16196. {
  16197. name: "Greater Macro",
  16198. height: math.unit(120, "feet")
  16199. },
  16200. ]
  16201. ))
  16202. characterMakers.push(() => makeCharacter(
  16203. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  16204. {
  16205. front: {
  16206. height: math.unit(6, "feet"),
  16207. weight: math.unit(100, "lb"),
  16208. name: "Front",
  16209. image: {
  16210. source: "./media/characters/aevsivs/front.svg",
  16211. extra: 1,
  16212. bottom: 0.03
  16213. }
  16214. },
  16215. back: {
  16216. height: math.unit(6, "feet"),
  16217. weight: math.unit(100, "lb"),
  16218. name: "Back",
  16219. image: {
  16220. source: "./media/characters/aevsivs/back.svg"
  16221. }
  16222. },
  16223. },
  16224. [
  16225. {
  16226. name: "Micro",
  16227. height: math.unit(2, "inches"),
  16228. default: true
  16229. },
  16230. {
  16231. name: "Normal",
  16232. height: math.unit(5, "feet")
  16233. },
  16234. ]
  16235. ))
  16236. characterMakers.push(() => makeCharacter(
  16237. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  16238. {
  16239. front: {
  16240. height: math.unit(5 + 7 / 12, "feet"),
  16241. weight: math.unit(159, "lb"),
  16242. name: "Front",
  16243. image: {
  16244. source: "./media/characters/hildegard/front.svg",
  16245. extra: 289 / 269,
  16246. bottom: 7.63 / 297.8
  16247. }
  16248. },
  16249. back: {
  16250. height: math.unit(5 + 7 / 12, "feet"),
  16251. weight: math.unit(159, "lb"),
  16252. name: "Back",
  16253. image: {
  16254. source: "./media/characters/hildegard/back.svg",
  16255. extra: 280 / 260,
  16256. bottom: 2.3 / 282
  16257. }
  16258. },
  16259. },
  16260. [
  16261. {
  16262. name: "Normal",
  16263. height: math.unit(5 + 7 / 12, "feet"),
  16264. default: true
  16265. },
  16266. ]
  16267. ))
  16268. characterMakers.push(() => makeCharacter(
  16269. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  16270. {
  16271. bernard: {
  16272. height: math.unit(2 + 7 / 12, "feet"),
  16273. weight: math.unit(66, "lb"),
  16274. name: "Bernard",
  16275. rename: true,
  16276. image: {
  16277. source: "./media/characters/bernard-wilder/bernard.svg",
  16278. extra: 192 / 128,
  16279. bottom: 0.05
  16280. }
  16281. },
  16282. wilder: {
  16283. height: math.unit(5 + 8 / 12, "feet"),
  16284. weight: math.unit(143, "lb"),
  16285. name: "Wilder",
  16286. rename: true,
  16287. image: {
  16288. source: "./media/characters/bernard-wilder/wilder.svg",
  16289. extra: 361 / 312,
  16290. bottom: 0.02
  16291. }
  16292. },
  16293. },
  16294. [
  16295. {
  16296. name: "Normal",
  16297. height: math.unit(2 + 7 / 12, "feet"),
  16298. default: true
  16299. },
  16300. ]
  16301. ))
  16302. characterMakers.push(() => makeCharacter(
  16303. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  16304. {
  16305. anthro: {
  16306. height: math.unit(6 + 1 / 12, "feet"),
  16307. weight: math.unit(155, "lb"),
  16308. name: "Anthro",
  16309. image: {
  16310. source: "./media/characters/hearth/anthro.svg",
  16311. extra: 1178/1136,
  16312. bottom: 28/1206
  16313. }
  16314. },
  16315. feral: {
  16316. height: math.unit(3.78, "feet"),
  16317. weight: math.unit(35, "kg"),
  16318. name: "Feral",
  16319. image: {
  16320. source: "./media/characters/hearth/feral.svg",
  16321. extra: 153 / 135,
  16322. bottom: 0.03
  16323. }
  16324. },
  16325. },
  16326. [
  16327. {
  16328. name: "Normal",
  16329. height: math.unit(6 + 1 / 12, "feet"),
  16330. default: true
  16331. },
  16332. ]
  16333. ))
  16334. characterMakers.push(() => makeCharacter(
  16335. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  16336. {
  16337. front: {
  16338. height: math.unit(6, "feet"),
  16339. weight: math.unit(182, "lb"),
  16340. name: "Front",
  16341. image: {
  16342. source: "./media/characters/ingrid/front.svg",
  16343. extra: 294 / 268,
  16344. bottom: 0.027
  16345. }
  16346. },
  16347. },
  16348. [
  16349. {
  16350. name: "Normal",
  16351. height: math.unit(6, "feet"),
  16352. default: true
  16353. },
  16354. ]
  16355. ))
  16356. characterMakers.push(() => makeCharacter(
  16357. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  16358. {
  16359. eevee: {
  16360. height: math.unit(2 + 10 / 12, "feet"),
  16361. weight: math.unit(86, "lb"),
  16362. name: "Malgam",
  16363. image: {
  16364. source: "./media/characters/malgam/eevee.svg",
  16365. extra: 952/784,
  16366. bottom: 38/990
  16367. }
  16368. },
  16369. sylveon: {
  16370. height: math.unit(4, "feet"),
  16371. weight: math.unit(101, "lb"),
  16372. name: "Future Malgam",
  16373. rename: true,
  16374. image: {
  16375. source: "./media/characters/malgam/sylveon.svg",
  16376. extra: 371 / 325,
  16377. bottom: 0.015
  16378. }
  16379. },
  16380. gigantamax: {
  16381. height: math.unit(50, "feet"),
  16382. name: "Gigantamax Malgam",
  16383. rename: true,
  16384. image: {
  16385. source: "./media/characters/malgam/gigantamax.svg"
  16386. }
  16387. },
  16388. },
  16389. [
  16390. {
  16391. name: "Normal",
  16392. height: math.unit(2 + 10 / 12, "feet"),
  16393. default: true
  16394. },
  16395. ]
  16396. ))
  16397. characterMakers.push(() => makeCharacter(
  16398. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  16399. {
  16400. front: {
  16401. height: math.unit(5 + 11 / 12, "feet"),
  16402. weight: math.unit(188, "lb"),
  16403. name: "Front",
  16404. image: {
  16405. source: "./media/characters/fleur/front.svg",
  16406. extra: 309 / 283,
  16407. bottom: 0.007
  16408. }
  16409. },
  16410. },
  16411. [
  16412. {
  16413. name: "Normal",
  16414. height: math.unit(5 + 11 / 12, "feet"),
  16415. default: true
  16416. },
  16417. ]
  16418. ))
  16419. characterMakers.push(() => makeCharacter(
  16420. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  16421. {
  16422. front: {
  16423. height: math.unit(5 + 4 / 12, "feet"),
  16424. weight: math.unit(122, "lb"),
  16425. name: "Front",
  16426. image: {
  16427. source: "./media/characters/jude/front.svg",
  16428. extra: 288 / 273,
  16429. bottom: 0.03
  16430. }
  16431. },
  16432. },
  16433. [
  16434. {
  16435. name: "Normal",
  16436. height: math.unit(5 + 4 / 12, "feet"),
  16437. default: true
  16438. },
  16439. ]
  16440. ))
  16441. characterMakers.push(() => makeCharacter(
  16442. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  16443. {
  16444. front: {
  16445. height: math.unit(5 + 11 / 12, "feet"),
  16446. weight: math.unit(190, "lb"),
  16447. name: "Front",
  16448. image: {
  16449. source: "./media/characters/seara/front.svg",
  16450. extra: 1,
  16451. bottom: 0.05
  16452. }
  16453. },
  16454. },
  16455. [
  16456. {
  16457. name: "Normal",
  16458. height: math.unit(5 + 11 / 12, "feet"),
  16459. default: true
  16460. },
  16461. ]
  16462. ))
  16463. characterMakers.push(() => makeCharacter(
  16464. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  16465. {
  16466. front: {
  16467. height: math.unit(16 + 5 / 12, "feet"),
  16468. weight: math.unit(524, "lb"),
  16469. name: "Front",
  16470. image: {
  16471. source: "./media/characters/caspian-lugia/front.svg",
  16472. extra: 1,
  16473. bottom: 0.04
  16474. }
  16475. },
  16476. },
  16477. [
  16478. {
  16479. name: "Normal",
  16480. height: math.unit(16 + 5 / 12, "feet"),
  16481. default: true
  16482. },
  16483. ]
  16484. ))
  16485. characterMakers.push(() => makeCharacter(
  16486. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  16487. {
  16488. front: {
  16489. height: math.unit(5 + 7 / 12, "feet"),
  16490. weight: math.unit(170, "lb"),
  16491. name: "Front",
  16492. image: {
  16493. source: "./media/characters/mika/front.svg",
  16494. extra: 1,
  16495. bottom: 0.016
  16496. }
  16497. },
  16498. },
  16499. [
  16500. {
  16501. name: "Normal",
  16502. height: math.unit(5 + 7 / 12, "feet"),
  16503. default: true
  16504. },
  16505. ]
  16506. ))
  16507. characterMakers.push(() => makeCharacter(
  16508. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  16509. {
  16510. front: {
  16511. height: math.unit(6 + 2 / 12, "feet"),
  16512. weight: math.unit(268, "lb"),
  16513. name: "Front",
  16514. image: {
  16515. source: "./media/characters/sol/front.svg",
  16516. extra: 247 / 231,
  16517. bottom: 0.05
  16518. }
  16519. },
  16520. },
  16521. [
  16522. {
  16523. name: "Normal",
  16524. height: math.unit(6 + 2 / 12, "feet"),
  16525. default: true
  16526. },
  16527. ]
  16528. ))
  16529. characterMakers.push(() => makeCharacter(
  16530. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  16531. {
  16532. buizel: {
  16533. height: math.unit(2 + 5 / 12, "feet"),
  16534. weight: math.unit(87, "lb"),
  16535. name: "Front",
  16536. image: {
  16537. source: "./media/characters/umiko/buizel.svg",
  16538. extra: 172 / 157,
  16539. bottom: 0.01
  16540. },
  16541. form: "buizel",
  16542. default: true
  16543. },
  16544. floatzel: {
  16545. height: math.unit(5 + 9 / 12, "feet"),
  16546. weight: math.unit(250, "lb"),
  16547. name: "Front",
  16548. image: {
  16549. source: "./media/characters/umiko/floatzel.svg",
  16550. extra: 1076/1006,
  16551. bottom: 15/1091
  16552. },
  16553. form: "floatzel",
  16554. default: true
  16555. },
  16556. },
  16557. [
  16558. {
  16559. name: "Normal",
  16560. height: math.unit(2 + 5 / 12, "feet"),
  16561. form: "buizel",
  16562. default: true
  16563. },
  16564. {
  16565. name: "Normal",
  16566. height: math.unit(5 + 9 / 12, "feet"),
  16567. form: "floatzel",
  16568. default: true
  16569. },
  16570. ],
  16571. {
  16572. "buizel": {
  16573. name: "Buizel"
  16574. },
  16575. "floatzel": {
  16576. name: "Floatzel",
  16577. default: true
  16578. }
  16579. }
  16580. ))
  16581. characterMakers.push(() => makeCharacter(
  16582. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  16583. {
  16584. front: {
  16585. height: math.unit(6 + 2 / 12, "feet"),
  16586. weight: math.unit(146, "lb"),
  16587. name: "Front",
  16588. image: {
  16589. source: "./media/characters/iliac/front.svg",
  16590. extra: 389 / 365,
  16591. bottom: 0.035
  16592. }
  16593. },
  16594. },
  16595. [
  16596. {
  16597. name: "Normal",
  16598. height: math.unit(6 + 2 / 12, "feet"),
  16599. default: true
  16600. },
  16601. ]
  16602. ))
  16603. characterMakers.push(() => makeCharacter(
  16604. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16605. {
  16606. front: {
  16607. height: math.unit(6, "feet"),
  16608. weight: math.unit(170, "lb"),
  16609. name: "Front",
  16610. image: {
  16611. source: "./media/characters/topaz/front.svg",
  16612. extra: 317 / 303,
  16613. bottom: 0.055
  16614. }
  16615. },
  16616. },
  16617. [
  16618. {
  16619. name: "Normal",
  16620. height: math.unit(6, "feet"),
  16621. default: true
  16622. },
  16623. ]
  16624. ))
  16625. characterMakers.push(() => makeCharacter(
  16626. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  16627. {
  16628. front: {
  16629. height: math.unit(5 + 11 / 12, "feet"),
  16630. weight: math.unit(144, "lb"),
  16631. name: "Front",
  16632. image: {
  16633. source: "./media/characters/gabriel/front.svg",
  16634. extra: 285 / 262,
  16635. bottom: 0.004
  16636. }
  16637. },
  16638. },
  16639. [
  16640. {
  16641. name: "Normal",
  16642. height: math.unit(5 + 11 / 12, "feet"),
  16643. default: true
  16644. },
  16645. ]
  16646. ))
  16647. characterMakers.push(() => makeCharacter(
  16648. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  16649. {
  16650. side: {
  16651. height: math.unit(6 + 5 / 12, "feet"),
  16652. weight: math.unit(300, "lb"),
  16653. name: "Side",
  16654. image: {
  16655. source: "./media/characters/tempest-suicune/side.svg",
  16656. extra: 195 / 154,
  16657. bottom: 0.04
  16658. }
  16659. },
  16660. },
  16661. [
  16662. {
  16663. name: "Normal",
  16664. height: math.unit(6 + 5 / 12, "feet"),
  16665. default: true
  16666. },
  16667. ]
  16668. ))
  16669. characterMakers.push(() => makeCharacter(
  16670. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  16671. {
  16672. front: {
  16673. height: math.unit(7 + 2 / 12, "feet"),
  16674. weight: math.unit(322, "lb"),
  16675. name: "Front",
  16676. image: {
  16677. source: "./media/characters/vulcan/front.svg",
  16678. extra: 154 / 147,
  16679. bottom: 0.04
  16680. }
  16681. },
  16682. },
  16683. [
  16684. {
  16685. name: "Normal",
  16686. height: math.unit(7 + 2 / 12, "feet"),
  16687. default: true
  16688. },
  16689. ]
  16690. ))
  16691. characterMakers.push(() => makeCharacter(
  16692. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  16693. {
  16694. front: {
  16695. height: math.unit(5 + 10 / 12, "feet"),
  16696. weight: math.unit(264, "lb"),
  16697. name: "Front",
  16698. image: {
  16699. source: "./media/characters/gault/front.svg",
  16700. extra: 161 / 140,
  16701. bottom: 0.028
  16702. }
  16703. },
  16704. },
  16705. [
  16706. {
  16707. name: "Normal",
  16708. height: math.unit(5 + 10 / 12, "feet"),
  16709. default: true
  16710. },
  16711. ]
  16712. ))
  16713. characterMakers.push(() => makeCharacter(
  16714. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  16715. {
  16716. front: {
  16717. height: math.unit(6, "feet"),
  16718. weight: math.unit(150, "lb"),
  16719. name: "Front",
  16720. image: {
  16721. source: "./media/characters/shard/front.svg",
  16722. extra: 273 / 238,
  16723. bottom: 0.02
  16724. }
  16725. },
  16726. },
  16727. [
  16728. {
  16729. name: "Normal",
  16730. height: math.unit(3 + 6 / 12, "feet"),
  16731. default: true
  16732. },
  16733. ]
  16734. ))
  16735. characterMakers.push(() => makeCharacter(
  16736. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  16737. {
  16738. front: {
  16739. height: math.unit(5 + 11 / 12, "feet"),
  16740. weight: math.unit(146, "lb"),
  16741. name: "Front",
  16742. image: {
  16743. source: "./media/characters/ashe/front.svg",
  16744. extra: 400 / 373,
  16745. bottom: 0.01
  16746. }
  16747. },
  16748. },
  16749. [
  16750. {
  16751. name: "Normal",
  16752. height: math.unit(5 + 11 / 12, "feet"),
  16753. default: true
  16754. },
  16755. ]
  16756. ))
  16757. characterMakers.push(() => makeCharacter(
  16758. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  16759. {
  16760. front: {
  16761. height: math.unit(5 + 5 / 12, "feet"),
  16762. weight: math.unit(135, "lb"),
  16763. name: "Front",
  16764. image: {
  16765. source: "./media/characters/beatrix/front.svg",
  16766. extra: 392 / 379,
  16767. bottom: 0.01
  16768. }
  16769. },
  16770. },
  16771. [
  16772. {
  16773. name: "Normal",
  16774. height: math.unit(6, "feet"),
  16775. default: true
  16776. },
  16777. ]
  16778. ))
  16779. characterMakers.push(() => makeCharacter(
  16780. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  16781. {
  16782. front: {
  16783. height: math.unit(6 + 2/12, "feet"),
  16784. weight: math.unit(135, "lb"),
  16785. name: "Front",
  16786. image: {
  16787. source: "./media/characters/ignatius/front.svg",
  16788. extra: 1380/1259,
  16789. bottom: 27/1407
  16790. }
  16791. },
  16792. },
  16793. [
  16794. {
  16795. name: "Normal",
  16796. height: math.unit(6 + 2/12, "feet"),
  16797. default: true
  16798. },
  16799. ]
  16800. ))
  16801. characterMakers.push(() => makeCharacter(
  16802. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  16803. {
  16804. front: {
  16805. height: math.unit(6 + 2 / 12, "feet"),
  16806. weight: math.unit(138, "lb"),
  16807. name: "Front",
  16808. image: {
  16809. source: "./media/characters/mei-li/front.svg",
  16810. extra: 237 / 229,
  16811. bottom: 0.03
  16812. }
  16813. },
  16814. },
  16815. [
  16816. {
  16817. name: "Normal",
  16818. height: math.unit(6 + 2 / 12, "feet"),
  16819. default: true
  16820. },
  16821. ]
  16822. ))
  16823. characterMakers.push(() => makeCharacter(
  16824. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  16825. {
  16826. front: {
  16827. height: math.unit(2 + 4 / 12, "feet"),
  16828. weight: math.unit(62, "lb"),
  16829. name: "Front",
  16830. image: {
  16831. source: "./media/characters/puru/front.svg",
  16832. extra: 206 / 149,
  16833. bottom: 0.06
  16834. }
  16835. },
  16836. },
  16837. [
  16838. {
  16839. name: "Normal",
  16840. height: math.unit(2 + 4 / 12, "feet"),
  16841. default: true
  16842. },
  16843. ]
  16844. ))
  16845. characterMakers.push(() => makeCharacter(
  16846. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16847. {
  16848. anthro: {
  16849. height: math.unit(5 + 8/12, "feet"),
  16850. weight: math.unit(200, "lb"),
  16851. energyNeed: math.unit(2000, "kcal"),
  16852. name: "Anthro",
  16853. image: {
  16854. source: "./media/characters/kee/anthro.svg",
  16855. extra: 3251/3184,
  16856. bottom: 250/3501
  16857. }
  16858. },
  16859. taur: {
  16860. height: math.unit(11, "feet"),
  16861. weight: math.unit(500, "lb"),
  16862. energyNeed: math.unit(5000, "kcal"),
  16863. name: "Taur",
  16864. image: {
  16865. source: "./media/characters/kee/taur.svg",
  16866. extra: 1362/1320,
  16867. bottom: 83/1445
  16868. }
  16869. },
  16870. },
  16871. [
  16872. {
  16873. name: "Normal",
  16874. height: math.unit(5 + 8/12, "feet"),
  16875. default: true
  16876. },
  16877. {
  16878. name: "Macro",
  16879. height: math.unit(35, "feet")
  16880. },
  16881. ]
  16882. ))
  16883. characterMakers.push(() => makeCharacter(
  16884. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16885. {
  16886. anthro: {
  16887. height: math.unit(7, "feet"),
  16888. weight: math.unit(190, "lb"),
  16889. name: "Anthro",
  16890. image: {
  16891. source: "./media/characters/cobalt-dracha/anthro.svg",
  16892. extra: 231 / 225,
  16893. bottom: 0.04
  16894. }
  16895. },
  16896. feral: {
  16897. height: math.unit(9 + 7 / 12, "feet"),
  16898. weight: math.unit(294, "lb"),
  16899. name: "Feral",
  16900. image: {
  16901. source: "./media/characters/cobalt-dracha/feral.svg",
  16902. extra: 692 / 633,
  16903. bottom: 0.05
  16904. }
  16905. },
  16906. },
  16907. [
  16908. {
  16909. name: "Normal",
  16910. height: math.unit(7, "feet"),
  16911. default: true
  16912. },
  16913. ]
  16914. ))
  16915. characterMakers.push(() => makeCharacter(
  16916. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16917. {
  16918. fallen: {
  16919. height: math.unit(11 + 8 / 12, "feet"),
  16920. weight: math.unit(485, "lb"),
  16921. name: "Java (Fallen)",
  16922. rename: true,
  16923. image: {
  16924. source: "./media/characters/java/fallen.svg",
  16925. extra: 226 / 208,
  16926. bottom: 0.005
  16927. }
  16928. },
  16929. godkin: {
  16930. height: math.unit(10 + 6 / 12, "feet"),
  16931. weight: math.unit(328, "lb"),
  16932. name: "Java (Godkin)",
  16933. rename: true,
  16934. image: {
  16935. source: "./media/characters/java/godkin.svg",
  16936. extra: 1104/1068,
  16937. bottom: 36/1140
  16938. }
  16939. },
  16940. },
  16941. [
  16942. {
  16943. name: "Normal",
  16944. height: math.unit(11 + 8 / 12, "feet"),
  16945. default: true
  16946. },
  16947. ]
  16948. ))
  16949. characterMakers.push(() => makeCharacter(
  16950. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  16951. {
  16952. front: {
  16953. height: math.unit(5 + 9 / 12, "feet"),
  16954. weight: math.unit(170, "lb"),
  16955. name: "Front",
  16956. image: {
  16957. source: "./media/characters/purna/front.svg",
  16958. extra: 239 / 229,
  16959. bottom: 0.01
  16960. }
  16961. },
  16962. },
  16963. [
  16964. {
  16965. name: "Normal",
  16966. height: math.unit(5 + 9 / 12, "feet"),
  16967. default: true
  16968. },
  16969. ]
  16970. ))
  16971. characterMakers.push(() => makeCharacter(
  16972. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  16973. {
  16974. front: {
  16975. height: math.unit(5 + 9 / 12, "feet"),
  16976. weight: math.unit(142, "lb"),
  16977. name: "Front",
  16978. image: {
  16979. source: "./media/characters/kuva/front.svg",
  16980. extra: 281 / 271,
  16981. bottom: 0.006
  16982. }
  16983. },
  16984. },
  16985. [
  16986. {
  16987. name: "Normal",
  16988. height: math.unit(5 + 9 / 12, "feet"),
  16989. default: true
  16990. },
  16991. ]
  16992. ))
  16993. characterMakers.push(() => makeCharacter(
  16994. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  16995. {
  16996. anthro: {
  16997. height: math.unit(9 + 2 / 12, "feet"),
  16998. weight: math.unit(270, "lb"),
  16999. name: "Anthro",
  17000. image: {
  17001. source: "./media/characters/embra/anthro.svg",
  17002. extra: 200 / 187,
  17003. bottom: 0.02
  17004. }
  17005. },
  17006. feral: {
  17007. height: math.unit(18 + 8 / 12, "feet"),
  17008. weight: math.unit(576, "lb"),
  17009. name: "Feral",
  17010. image: {
  17011. source: "./media/characters/embra/feral.svg",
  17012. extra: 152 / 137,
  17013. bottom: 0.037
  17014. }
  17015. },
  17016. },
  17017. [
  17018. {
  17019. name: "Normal",
  17020. height: math.unit(9 + 2 / 12, "feet"),
  17021. default: true
  17022. },
  17023. ]
  17024. ))
  17025. characterMakers.push(() => makeCharacter(
  17026. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  17027. {
  17028. anthro: {
  17029. height: math.unit(10 + 9 / 12, "feet"),
  17030. weight: math.unit(224, "lb"),
  17031. name: "Anthro",
  17032. image: {
  17033. source: "./media/characters/grottos/anthro.svg",
  17034. extra: 350 / 332,
  17035. bottom: 0.045
  17036. }
  17037. },
  17038. feral: {
  17039. height: math.unit(20 + 7 / 12, "feet"),
  17040. weight: math.unit(629, "lb"),
  17041. name: "Feral",
  17042. image: {
  17043. source: "./media/characters/grottos/feral.svg",
  17044. extra: 207 / 190,
  17045. bottom: 0.05
  17046. }
  17047. },
  17048. },
  17049. [
  17050. {
  17051. name: "Normal",
  17052. height: math.unit(10 + 9 / 12, "feet"),
  17053. default: true
  17054. },
  17055. ]
  17056. ))
  17057. characterMakers.push(() => makeCharacter(
  17058. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17059. {
  17060. anthro: {
  17061. height: math.unit(9 + 6 / 12, "feet"),
  17062. weight: math.unit(298, "lb"),
  17063. name: "Anthro",
  17064. image: {
  17065. source: "./media/characters/frifna/anthro.svg",
  17066. extra: 282 / 269,
  17067. bottom: 0.015
  17068. }
  17069. },
  17070. feral: {
  17071. height: math.unit(16 + 2 / 12, "feet"),
  17072. weight: math.unit(624, "lb"),
  17073. name: "Feral",
  17074. image: {
  17075. source: "./media/characters/frifna/feral.svg"
  17076. }
  17077. },
  17078. },
  17079. [
  17080. {
  17081. name: "Normal",
  17082. height: math.unit(9 + 6 / 12, "feet"),
  17083. default: true
  17084. },
  17085. ]
  17086. ))
  17087. characterMakers.push(() => makeCharacter(
  17088. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17089. {
  17090. front: {
  17091. height: math.unit(6 + 2 / 12, "feet"),
  17092. weight: math.unit(168, "lb"),
  17093. name: "Front",
  17094. image: {
  17095. source: "./media/characters/elise/front.svg",
  17096. extra: 276 / 271
  17097. }
  17098. },
  17099. },
  17100. [
  17101. {
  17102. name: "Normal",
  17103. height: math.unit(6 + 2 / 12, "feet"),
  17104. default: true
  17105. },
  17106. ]
  17107. ))
  17108. characterMakers.push(() => makeCharacter(
  17109. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  17110. {
  17111. front: {
  17112. height: math.unit(5 + 10 / 12, "feet"),
  17113. weight: math.unit(210, "lb"),
  17114. name: "Front",
  17115. image: {
  17116. source: "./media/characters/glade/front.svg",
  17117. extra: 258 / 247,
  17118. bottom: 0.008
  17119. }
  17120. },
  17121. },
  17122. [
  17123. {
  17124. name: "Normal",
  17125. height: math.unit(5 + 10 / 12, "feet"),
  17126. default: true
  17127. },
  17128. ]
  17129. ))
  17130. characterMakers.push(() => makeCharacter(
  17131. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  17132. {
  17133. front: {
  17134. height: math.unit(5 + 10 / 12, "feet"),
  17135. weight: math.unit(129, "lb"),
  17136. name: "Front",
  17137. image: {
  17138. source: "./media/characters/rina/front.svg",
  17139. extra: 266 / 255,
  17140. bottom: 0.005
  17141. }
  17142. },
  17143. },
  17144. [
  17145. {
  17146. name: "Normal",
  17147. height: math.unit(5 + 10 / 12, "feet"),
  17148. default: true
  17149. },
  17150. ]
  17151. ))
  17152. characterMakers.push(() => makeCharacter(
  17153. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  17154. {
  17155. front: {
  17156. height: math.unit(6 + 1 / 12, "feet"),
  17157. weight: math.unit(192, "lb"),
  17158. name: "Front",
  17159. image: {
  17160. source: "./media/characters/veronica/front.svg",
  17161. extra: 319 / 309,
  17162. bottom: 0.005
  17163. }
  17164. },
  17165. },
  17166. [
  17167. {
  17168. name: "Normal",
  17169. height: math.unit(6 + 1 / 12, "feet"),
  17170. default: true
  17171. },
  17172. ]
  17173. ))
  17174. characterMakers.push(() => makeCharacter(
  17175. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  17176. {
  17177. front: {
  17178. height: math.unit(9 + 3 / 12, "feet"),
  17179. weight: math.unit(1100, "lb"),
  17180. name: "Front",
  17181. image: {
  17182. source: "./media/characters/braxton/front.svg",
  17183. extra: 1057 / 984,
  17184. bottom: 0.05
  17185. }
  17186. },
  17187. },
  17188. [
  17189. {
  17190. name: "Normal",
  17191. height: math.unit(9 + 3 / 12, "feet")
  17192. },
  17193. {
  17194. name: "Giant",
  17195. height: math.unit(300, "feet"),
  17196. default: true
  17197. },
  17198. {
  17199. name: "Macro",
  17200. height: math.unit(700, "feet")
  17201. },
  17202. {
  17203. name: "Megamacro",
  17204. height: math.unit(6000, "feet")
  17205. },
  17206. ]
  17207. ))
  17208. characterMakers.push(() => makeCharacter(
  17209. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  17210. {
  17211. front: {
  17212. height: math.unit(6 + 7 / 12, "feet"),
  17213. weight: math.unit(150, "lb"),
  17214. name: "Front",
  17215. image: {
  17216. source: "./media/characters/blue-feyonics/front.svg",
  17217. extra: 1403 / 1306,
  17218. bottom: 0.047
  17219. }
  17220. },
  17221. },
  17222. [
  17223. {
  17224. name: "Normal",
  17225. height: math.unit(6 + 7 / 12, "feet"),
  17226. default: true
  17227. },
  17228. ]
  17229. ))
  17230. characterMakers.push(() => makeCharacter(
  17231. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  17232. {
  17233. front: {
  17234. height: math.unit(1.8, "meters"),
  17235. weight: math.unit(60, "kg"),
  17236. name: "Front",
  17237. image: {
  17238. source: "./media/characters/maxwell/front.svg",
  17239. extra: 2060 / 1873
  17240. }
  17241. },
  17242. },
  17243. [
  17244. {
  17245. name: "Micro",
  17246. height: math.unit(1, "mm")
  17247. },
  17248. {
  17249. name: "Normal",
  17250. height: math.unit(1.8, "meter"),
  17251. default: true
  17252. },
  17253. {
  17254. name: "Macro",
  17255. height: math.unit(30, "meters")
  17256. },
  17257. {
  17258. name: "Megamacro",
  17259. height: math.unit(10, "km")
  17260. },
  17261. ]
  17262. ))
  17263. characterMakers.push(() => makeCharacter(
  17264. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  17265. {
  17266. front: {
  17267. height: math.unit(6, "feet"),
  17268. weight: math.unit(150, "lb"),
  17269. name: "Front",
  17270. image: {
  17271. source: "./media/characters/jack/front.svg",
  17272. extra: 1754 / 1640,
  17273. bottom: 0.01
  17274. }
  17275. },
  17276. },
  17277. [
  17278. {
  17279. name: "Normal",
  17280. height: math.unit(80000, "feet"),
  17281. default: true
  17282. },
  17283. {
  17284. name: "Max size",
  17285. height: math.unit(10, "lightyears")
  17286. },
  17287. ]
  17288. ))
  17289. characterMakers.push(() => makeCharacter(
  17290. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  17291. {
  17292. urban: {
  17293. height: math.unit(5, "feet"),
  17294. weight: math.unit(240, "lb"),
  17295. name: "Urban",
  17296. image: {
  17297. source: "./media/characters/cafat/urban.svg",
  17298. extra: 1223/1126,
  17299. bottom: 205/1428
  17300. }
  17301. },
  17302. summer: {
  17303. height: math.unit(5, "feet"),
  17304. weight: math.unit(240, "lb"),
  17305. name: "Summer",
  17306. image: {
  17307. source: "./media/characters/cafat/summer.svg",
  17308. extra: 1223/1126,
  17309. bottom: 205/1428
  17310. }
  17311. },
  17312. winter: {
  17313. height: math.unit(5, "feet"),
  17314. weight: math.unit(240, "lb"),
  17315. name: "Winter",
  17316. image: {
  17317. source: "./media/characters/cafat/winter.svg",
  17318. extra: 1223/1126,
  17319. bottom: 205/1428
  17320. }
  17321. },
  17322. lingerie: {
  17323. height: math.unit(5, "feet"),
  17324. weight: math.unit(240, "lb"),
  17325. name: "Lingerie",
  17326. image: {
  17327. source: "./media/characters/cafat/lingerie.svg",
  17328. extra: 1223/1126,
  17329. bottom: 205/1428
  17330. }
  17331. },
  17332. upright: {
  17333. height: math.unit(6.3, "feet"),
  17334. weight: math.unit(240, "lb"),
  17335. name: "Upright",
  17336. image: {
  17337. source: "./media/characters/cafat/upright.svg",
  17338. bottom: 0.01
  17339. }
  17340. },
  17341. uprightFull: {
  17342. height: math.unit(6.3, "feet"),
  17343. weight: math.unit(240, "lb"),
  17344. name: "Upright (Full)",
  17345. image: {
  17346. source: "./media/characters/cafat/upright-full.svg",
  17347. bottom: 0.01
  17348. }
  17349. },
  17350. },
  17351. [
  17352. {
  17353. name: "Small",
  17354. height: math.unit(5, "feet"),
  17355. default: true
  17356. },
  17357. {
  17358. name: "Large",
  17359. height: math.unit(13, "feet")
  17360. },
  17361. ]
  17362. ))
  17363. characterMakers.push(() => makeCharacter(
  17364. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  17365. {
  17366. front: {
  17367. height: math.unit(6, "feet"),
  17368. weight: math.unit(150, "lb"),
  17369. name: "Front",
  17370. image: {
  17371. source: "./media/characters/verin-raharra/front.svg",
  17372. extra: 5019 / 4835,
  17373. bottom: 0.023
  17374. }
  17375. },
  17376. },
  17377. [
  17378. {
  17379. name: "Normal",
  17380. height: math.unit(7 + 5 / 12, "feet"),
  17381. default: true
  17382. },
  17383. {
  17384. name: "Upsized",
  17385. height: math.unit(20, "feet")
  17386. },
  17387. ]
  17388. ))
  17389. characterMakers.push(() => makeCharacter(
  17390. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  17391. {
  17392. front: {
  17393. height: math.unit(7, "feet"),
  17394. weight: math.unit(230, "lb"),
  17395. name: "Front",
  17396. image: {
  17397. source: "./media/characters/nakata/front.svg",
  17398. extra: 1.005,
  17399. bottom: 0.01
  17400. }
  17401. },
  17402. },
  17403. [
  17404. {
  17405. name: "Normal",
  17406. height: math.unit(7, "feet"),
  17407. default: true
  17408. },
  17409. {
  17410. name: "Big",
  17411. height: math.unit(14, "feet")
  17412. },
  17413. {
  17414. name: "Macro",
  17415. height: math.unit(400, "feet")
  17416. },
  17417. ]
  17418. ))
  17419. characterMakers.push(() => makeCharacter(
  17420. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  17421. {
  17422. front: {
  17423. height: math.unit(4.91, "feet"),
  17424. weight: math.unit(100, "lb"),
  17425. name: "Front",
  17426. image: {
  17427. source: "./media/characters/lily/front.svg",
  17428. extra: 1585 / 1415,
  17429. bottom: 0.02
  17430. }
  17431. },
  17432. },
  17433. [
  17434. {
  17435. name: "Normal",
  17436. height: math.unit(4.91, "feet"),
  17437. default: true
  17438. },
  17439. ]
  17440. ))
  17441. characterMakers.push(() => makeCharacter(
  17442. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  17443. {
  17444. laying: {
  17445. height: math.unit(4 + 4 / 12, "feet"),
  17446. weight: math.unit(600, "lb"),
  17447. name: "Laying",
  17448. image: {
  17449. source: "./media/characters/sheila/laying.svg",
  17450. extra: 1333 / 1265,
  17451. bottom: 0.16
  17452. }
  17453. },
  17454. },
  17455. [
  17456. {
  17457. name: "Normal",
  17458. height: math.unit(4 + 4 / 12, "feet"),
  17459. default: true
  17460. },
  17461. ]
  17462. ))
  17463. characterMakers.push(() => makeCharacter(
  17464. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  17465. {
  17466. front: {
  17467. height: math.unit(6, "feet"),
  17468. weight: math.unit(190, "lb"),
  17469. name: "Front",
  17470. image: {
  17471. source: "./media/characters/sax/front.svg",
  17472. extra: 1187 / 973,
  17473. bottom: 0.042
  17474. }
  17475. },
  17476. },
  17477. [
  17478. {
  17479. name: "Micro",
  17480. height: math.unit(4, "inches"),
  17481. default: true
  17482. },
  17483. ]
  17484. ))
  17485. characterMakers.push(() => makeCharacter(
  17486. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  17487. {
  17488. front: {
  17489. height: math.unit(6, "feet"),
  17490. weight: math.unit(150, "lb"),
  17491. name: "Front",
  17492. image: {
  17493. source: "./media/characters/pandora/front.svg",
  17494. extra: 2720 / 2556,
  17495. bottom: 0.015
  17496. }
  17497. },
  17498. back: {
  17499. height: math.unit(6, "feet"),
  17500. weight: math.unit(150, "lb"),
  17501. name: "Back",
  17502. image: {
  17503. source: "./media/characters/pandora/back.svg",
  17504. extra: 2720 / 2556,
  17505. bottom: 0.01
  17506. }
  17507. },
  17508. beans: {
  17509. height: math.unit(6 / 8, "feet"),
  17510. name: "Beans",
  17511. image: {
  17512. source: "./media/characters/pandora/beans.svg"
  17513. }
  17514. },
  17515. collar: {
  17516. height: math.unit(0.31, "feet"),
  17517. name: "Collar",
  17518. image: {
  17519. source: "./media/characters/pandora/collar.svg"
  17520. }
  17521. },
  17522. skirt: {
  17523. height: math.unit(6, "feet"),
  17524. weight: math.unit(150, "lb"),
  17525. name: "Skirt",
  17526. image: {
  17527. source: "./media/characters/pandora/skirt.svg",
  17528. extra: 1622 / 1525,
  17529. bottom: 0.015
  17530. }
  17531. },
  17532. hoodie: {
  17533. height: math.unit(6, "feet"),
  17534. weight: math.unit(150, "lb"),
  17535. name: "Hoodie",
  17536. image: {
  17537. source: "./media/characters/pandora/hoodie.svg",
  17538. extra: 1622 / 1525,
  17539. bottom: 0.015
  17540. }
  17541. },
  17542. casual: {
  17543. height: math.unit(6, "feet"),
  17544. weight: math.unit(150, "lb"),
  17545. name: "Casual",
  17546. image: {
  17547. source: "./media/characters/pandora/casual.svg",
  17548. extra: 1622 / 1525,
  17549. bottom: 0.015
  17550. }
  17551. },
  17552. },
  17553. [
  17554. {
  17555. name: "Normal",
  17556. height: math.unit(6, "feet")
  17557. },
  17558. {
  17559. name: "Big Steppy",
  17560. height: math.unit(1, "km"),
  17561. default: true
  17562. },
  17563. {
  17564. name: "Galactic Steppy",
  17565. height: math.unit(2, "gigameters")
  17566. },
  17567. ]
  17568. ))
  17569. characterMakers.push(() => makeCharacter(
  17570. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  17571. {
  17572. side: {
  17573. height: math.unit(10, "feet"),
  17574. weight: math.unit(800, "kg"),
  17575. name: "Side",
  17576. image: {
  17577. source: "./media/characters/venio-darcony/side.svg",
  17578. extra: 1373 / 1003,
  17579. bottom: 0.037
  17580. }
  17581. },
  17582. front: {
  17583. height: math.unit(19, "feet"),
  17584. weight: math.unit(800, "kg"),
  17585. name: "Front",
  17586. image: {
  17587. source: "./media/characters/venio-darcony/front.svg"
  17588. }
  17589. },
  17590. back: {
  17591. height: math.unit(19, "feet"),
  17592. weight: math.unit(800, "kg"),
  17593. name: "Back",
  17594. image: {
  17595. source: "./media/characters/venio-darcony/back.svg"
  17596. }
  17597. },
  17598. sideNsfw: {
  17599. height: math.unit(10, "feet"),
  17600. weight: math.unit(800, "kg"),
  17601. name: "Side (NSFW)",
  17602. image: {
  17603. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17604. extra: 1373 / 1003,
  17605. bottom: 0.037
  17606. }
  17607. },
  17608. frontNsfw: {
  17609. height: math.unit(19, "feet"),
  17610. weight: math.unit(800, "kg"),
  17611. name: "Front (NSFW)",
  17612. image: {
  17613. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17614. }
  17615. },
  17616. backNsfw: {
  17617. height: math.unit(19, "feet"),
  17618. weight: math.unit(800, "kg"),
  17619. name: "Back (NSFW)",
  17620. image: {
  17621. source: "./media/characters/venio-darcony/back-nsfw.svg"
  17622. }
  17623. },
  17624. sideArmored: {
  17625. height: math.unit(10, "feet"),
  17626. weight: math.unit(800, "kg"),
  17627. name: "Side (Armored)",
  17628. image: {
  17629. source: "./media/characters/venio-darcony/side-armored.svg",
  17630. extra: 1373 / 1003,
  17631. bottom: 0.037
  17632. }
  17633. },
  17634. frontArmored: {
  17635. height: math.unit(19, "feet"),
  17636. weight: math.unit(900, "kg"),
  17637. name: "Front (Armored)",
  17638. image: {
  17639. source: "./media/characters/venio-darcony/front-armored.svg"
  17640. }
  17641. },
  17642. backArmored: {
  17643. height: math.unit(19, "feet"),
  17644. weight: math.unit(900, "kg"),
  17645. name: "Back (Armored)",
  17646. image: {
  17647. source: "./media/characters/venio-darcony/back-armored.svg"
  17648. }
  17649. },
  17650. sword: {
  17651. height: math.unit(10, "feet"),
  17652. weight: math.unit(50, "lb"),
  17653. name: "Sword",
  17654. image: {
  17655. source: "./media/characters/venio-darcony/sword.svg"
  17656. }
  17657. },
  17658. },
  17659. [
  17660. {
  17661. name: "Normal",
  17662. height: math.unit(10, "feet")
  17663. },
  17664. {
  17665. name: "Macro",
  17666. height: math.unit(130, "feet"),
  17667. default: true
  17668. },
  17669. {
  17670. name: "Macro+",
  17671. height: math.unit(240, "feet")
  17672. },
  17673. ]
  17674. ))
  17675. characterMakers.push(() => makeCharacter(
  17676. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  17677. {
  17678. front: {
  17679. height: math.unit(6, "feet"),
  17680. weight: math.unit(150, "lb"),
  17681. name: "Front",
  17682. image: {
  17683. source: "./media/characters/veski/front.svg",
  17684. extra: 1299 / 1225,
  17685. bottom: 0.04
  17686. }
  17687. },
  17688. back: {
  17689. height: math.unit(6, "feet"),
  17690. weight: math.unit(150, "lb"),
  17691. name: "Back",
  17692. image: {
  17693. source: "./media/characters/veski/back.svg",
  17694. extra: 1299 / 1225,
  17695. bottom: 0.008
  17696. }
  17697. },
  17698. maw: {
  17699. height: math.unit(1.5 * 1.21, "feet"),
  17700. name: "Maw",
  17701. image: {
  17702. source: "./media/characters/veski/maw.svg"
  17703. }
  17704. },
  17705. },
  17706. [
  17707. {
  17708. name: "Macro",
  17709. height: math.unit(2, "km"),
  17710. default: true
  17711. },
  17712. ]
  17713. ))
  17714. characterMakers.push(() => makeCharacter(
  17715. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  17716. {
  17717. front: {
  17718. height: math.unit(5 + 7 / 12, "feet"),
  17719. name: "Front",
  17720. image: {
  17721. source: "./media/characters/isabelle/front.svg",
  17722. extra: 2130 / 1976,
  17723. bottom: 0.05
  17724. }
  17725. },
  17726. },
  17727. [
  17728. {
  17729. name: "Supermicro",
  17730. height: math.unit(10, "micrometers")
  17731. },
  17732. {
  17733. name: "Micro",
  17734. height: math.unit(1, "inch")
  17735. },
  17736. {
  17737. name: "Tiny",
  17738. height: math.unit(5, "inches")
  17739. },
  17740. {
  17741. name: "Standard",
  17742. height: math.unit(5 + 7 / 12, "inches")
  17743. },
  17744. {
  17745. name: "Macro",
  17746. height: math.unit(80, "meters"),
  17747. default: true
  17748. },
  17749. {
  17750. name: "Megamacro",
  17751. height: math.unit(250, "meters")
  17752. },
  17753. {
  17754. name: "Gigamacro",
  17755. height: math.unit(5, "km")
  17756. },
  17757. {
  17758. name: "Cosmic",
  17759. height: math.unit(2.5e6, "miles")
  17760. },
  17761. ]
  17762. ))
  17763. characterMakers.push(() => makeCharacter(
  17764. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  17765. {
  17766. front: {
  17767. height: math.unit(6, "feet"),
  17768. weight: math.unit(150, "lb"),
  17769. name: "Front",
  17770. image: {
  17771. source: "./media/characters/hanzo/front.svg",
  17772. extra: 374 / 344,
  17773. bottom: 0.02
  17774. }
  17775. },
  17776. },
  17777. [
  17778. {
  17779. name: "Normal",
  17780. height: math.unit(8, "feet"),
  17781. default: true
  17782. },
  17783. ]
  17784. ))
  17785. characterMakers.push(() => makeCharacter(
  17786. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  17787. {
  17788. front: {
  17789. height: math.unit(7, "feet"),
  17790. weight: math.unit(130, "lb"),
  17791. name: "Front",
  17792. image: {
  17793. source: "./media/characters/anna/front.svg",
  17794. extra: 169 / 145,
  17795. bottom: 0.06
  17796. }
  17797. },
  17798. full: {
  17799. height: math.unit(4.96, "feet"),
  17800. weight: math.unit(220, "lb"),
  17801. name: "Full",
  17802. image: {
  17803. source: "./media/characters/anna/full.svg",
  17804. extra: 138 / 114,
  17805. bottom: 0.15
  17806. }
  17807. },
  17808. tongue: {
  17809. height: math.unit(2.53, "feet"),
  17810. name: "Tongue",
  17811. image: {
  17812. source: "./media/characters/anna/tongue.svg"
  17813. }
  17814. },
  17815. },
  17816. [
  17817. {
  17818. name: "Normal",
  17819. height: math.unit(7, "feet"),
  17820. default: true
  17821. },
  17822. ]
  17823. ))
  17824. characterMakers.push(() => makeCharacter(
  17825. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  17826. {
  17827. front: {
  17828. height: math.unit(7, "feet"),
  17829. weight: math.unit(150, "lb"),
  17830. name: "Front",
  17831. image: {
  17832. source: "./media/characters/ian-corvid/front.svg",
  17833. extra: 150 / 142,
  17834. bottom: 0.02
  17835. }
  17836. },
  17837. back: {
  17838. height: math.unit(7, "feet"),
  17839. weight: math.unit(150, "lb"),
  17840. name: "Back",
  17841. image: {
  17842. source: "./media/characters/ian-corvid/back.svg",
  17843. extra: 150 / 143,
  17844. bottom: 0.01
  17845. }
  17846. },
  17847. stomping: {
  17848. height: math.unit(7, "feet"),
  17849. weight: math.unit(150, "lb"),
  17850. name: "Stomping",
  17851. image: {
  17852. source: "./media/characters/ian-corvid/stomping.svg",
  17853. extra: 76 / 72
  17854. }
  17855. },
  17856. sitting: {
  17857. height: math.unit(7 / 1.8, "feet"),
  17858. weight: math.unit(150, "lb"),
  17859. name: "Sitting",
  17860. image: {
  17861. source: "./media/characters/ian-corvid/sitting.svg",
  17862. extra: 1400 / 1269,
  17863. bottom: 0.15
  17864. }
  17865. },
  17866. },
  17867. [
  17868. {
  17869. name: "Tiny Microw",
  17870. height: math.unit(1, "inch")
  17871. },
  17872. {
  17873. name: "Microw",
  17874. height: math.unit(6, "inches")
  17875. },
  17876. {
  17877. name: "Crow",
  17878. height: math.unit(7 + 1 / 12, "feet"),
  17879. default: true
  17880. },
  17881. {
  17882. name: "Macrow",
  17883. height: math.unit(176, "feet")
  17884. },
  17885. ]
  17886. ))
  17887. characterMakers.push(() => makeCharacter(
  17888. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17889. {
  17890. front: {
  17891. height: math.unit(5 + 7 / 12, "feet"),
  17892. weight: math.unit(147, "lb"),
  17893. name: "Front",
  17894. image: {
  17895. source: "./media/characters/natalie-kellon/front.svg",
  17896. extra: 1214 / 1141,
  17897. bottom: 0.02
  17898. }
  17899. },
  17900. },
  17901. [
  17902. {
  17903. name: "Micro",
  17904. height: math.unit(1 / 16, "inch")
  17905. },
  17906. {
  17907. name: "Tiny",
  17908. height: math.unit(4, "inches")
  17909. },
  17910. {
  17911. name: "Normal",
  17912. height: math.unit(5 + 7 / 12, "feet"),
  17913. default: true
  17914. },
  17915. {
  17916. name: "Amazon",
  17917. height: math.unit(12, "feet")
  17918. },
  17919. {
  17920. name: "Giantess",
  17921. height: math.unit(160, "meters")
  17922. },
  17923. {
  17924. name: "Titaness",
  17925. height: math.unit(800, "meters")
  17926. },
  17927. ]
  17928. ))
  17929. characterMakers.push(() => makeCharacter(
  17930. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17931. {
  17932. front: {
  17933. height: math.unit(6, "feet"),
  17934. weight: math.unit(150, "lb"),
  17935. name: "Front",
  17936. image: {
  17937. source: "./media/characters/alluria/front.svg",
  17938. extra: 806 / 738,
  17939. bottom: 0.01
  17940. }
  17941. },
  17942. side: {
  17943. height: math.unit(6, "feet"),
  17944. weight: math.unit(150, "lb"),
  17945. name: "Side",
  17946. image: {
  17947. source: "./media/characters/alluria/side.svg",
  17948. extra: 800 / 750,
  17949. }
  17950. },
  17951. back: {
  17952. height: math.unit(6, "feet"),
  17953. weight: math.unit(150, "lb"),
  17954. name: "Back",
  17955. image: {
  17956. source: "./media/characters/alluria/back.svg",
  17957. extra: 806 / 738,
  17958. }
  17959. },
  17960. frontMaid: {
  17961. height: math.unit(6, "feet"),
  17962. weight: math.unit(150, "lb"),
  17963. name: "Front (Maid)",
  17964. image: {
  17965. source: "./media/characters/alluria/front-maid.svg",
  17966. extra: 806 / 738,
  17967. bottom: 0.01
  17968. }
  17969. },
  17970. sideMaid: {
  17971. height: math.unit(6, "feet"),
  17972. weight: math.unit(150, "lb"),
  17973. name: "Side (Maid)",
  17974. image: {
  17975. source: "./media/characters/alluria/side-maid.svg",
  17976. extra: 800 / 750,
  17977. bottom: 0.005
  17978. }
  17979. },
  17980. backMaid: {
  17981. height: math.unit(6, "feet"),
  17982. weight: math.unit(150, "lb"),
  17983. name: "Back (Maid)",
  17984. image: {
  17985. source: "./media/characters/alluria/back-maid.svg",
  17986. extra: 806 / 738,
  17987. }
  17988. },
  17989. },
  17990. [
  17991. {
  17992. name: "Micro",
  17993. height: math.unit(6, "inches"),
  17994. default: true
  17995. },
  17996. ]
  17997. ))
  17998. characterMakers.push(() => makeCharacter(
  17999. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  18000. {
  18001. front: {
  18002. height: math.unit(6, "feet"),
  18003. weight: math.unit(150, "lb"),
  18004. name: "Front",
  18005. image: {
  18006. source: "./media/characters/kyle/front.svg",
  18007. extra: 1069 / 962,
  18008. bottom: 77.228 / 1727.45
  18009. }
  18010. },
  18011. },
  18012. [
  18013. {
  18014. name: "Macro",
  18015. height: math.unit(150, "feet"),
  18016. default: true
  18017. },
  18018. ]
  18019. ))
  18020. characterMakers.push(() => makeCharacter(
  18021. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  18022. {
  18023. front: {
  18024. height: math.unit(6, "feet"),
  18025. weight: math.unit(300, "lb"),
  18026. name: "Front",
  18027. image: {
  18028. source: "./media/characters/duncan/front.svg",
  18029. extra: 1650 / 1482,
  18030. bottom: 0.05
  18031. }
  18032. },
  18033. },
  18034. [
  18035. {
  18036. name: "Macro",
  18037. height: math.unit(100, "feet"),
  18038. default: true
  18039. },
  18040. ]
  18041. ))
  18042. characterMakers.push(() => makeCharacter(
  18043. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  18044. {
  18045. front: {
  18046. height: math.unit(5 + 4 / 12, "feet"),
  18047. weight: math.unit(220, "lb"),
  18048. name: "Front",
  18049. image: {
  18050. source: "./media/characters/memory/front.svg",
  18051. extra: 3641 / 3545,
  18052. bottom: 0.03
  18053. }
  18054. },
  18055. back: {
  18056. height: math.unit(5 + 4 / 12, "feet"),
  18057. weight: math.unit(220, "lb"),
  18058. name: "Back",
  18059. image: {
  18060. source: "./media/characters/memory/back.svg",
  18061. extra: 3641 / 3545,
  18062. bottom: 0.025
  18063. }
  18064. },
  18065. frontSkirt: {
  18066. height: math.unit(5 + 4 / 12, "feet"),
  18067. weight: math.unit(220, "lb"),
  18068. name: "Front (Skirt)",
  18069. image: {
  18070. source: "./media/characters/memory/front-skirt.svg",
  18071. extra: 3641 / 3545,
  18072. bottom: 0.03
  18073. }
  18074. },
  18075. frontDress: {
  18076. height: math.unit(5 + 4 / 12, "feet"),
  18077. weight: math.unit(220, "lb"),
  18078. name: "Front (Dress)",
  18079. image: {
  18080. source: "./media/characters/memory/front-dress.svg",
  18081. extra: 3641 / 3545,
  18082. bottom: 0.03
  18083. }
  18084. },
  18085. },
  18086. [
  18087. {
  18088. name: "Micro",
  18089. height: math.unit(6, "inches"),
  18090. default: true
  18091. },
  18092. {
  18093. name: "Normal",
  18094. height: math.unit(5 + 4 / 12, "feet")
  18095. },
  18096. ]
  18097. ))
  18098. characterMakers.push(() => makeCharacter(
  18099. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  18100. {
  18101. front: {
  18102. height: math.unit(4 + 11 / 12, "feet"),
  18103. weight: math.unit(100, "lb"),
  18104. name: "Front",
  18105. image: {
  18106. source: "./media/characters/luno/front.svg",
  18107. extra: 1535 / 1487,
  18108. bottom: 0.03
  18109. }
  18110. },
  18111. },
  18112. [
  18113. {
  18114. name: "Micro",
  18115. height: math.unit(3, "inches")
  18116. },
  18117. {
  18118. name: "Normal",
  18119. height: math.unit(4 + 11 / 12, "feet"),
  18120. default: true
  18121. },
  18122. {
  18123. name: "Macro",
  18124. height: math.unit(300, "feet")
  18125. },
  18126. {
  18127. name: "Megamacro",
  18128. height: math.unit(700, "miles")
  18129. },
  18130. ]
  18131. ))
  18132. characterMakers.push(() => makeCharacter(
  18133. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  18134. {
  18135. front: {
  18136. height: math.unit(6 + 2 / 12, "feet"),
  18137. weight: math.unit(170, "lb"),
  18138. name: "Front",
  18139. image: {
  18140. source: "./media/characters/jamesy/front.svg",
  18141. extra: 440 / 382,
  18142. bottom: 0.005
  18143. }
  18144. },
  18145. },
  18146. [
  18147. {
  18148. name: "Micro",
  18149. height: math.unit(3, "inches")
  18150. },
  18151. {
  18152. name: "Normal",
  18153. height: math.unit(6 + 2 / 12, "feet"),
  18154. default: true
  18155. },
  18156. {
  18157. name: "Macro",
  18158. height: math.unit(300, "feet")
  18159. },
  18160. {
  18161. name: "Megamacro",
  18162. height: math.unit(700, "miles")
  18163. },
  18164. ]
  18165. ))
  18166. characterMakers.push(() => makeCharacter(
  18167. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  18168. {
  18169. front: {
  18170. height: math.unit(6, "feet"),
  18171. weight: math.unit(160, "lb"),
  18172. name: "Front",
  18173. image: {
  18174. source: "./media/characters/mark/front.svg",
  18175. extra: 3300 / 3100,
  18176. bottom: 136.42 / 3440.47
  18177. }
  18178. },
  18179. },
  18180. [
  18181. {
  18182. name: "Macro",
  18183. height: math.unit(120, "meters")
  18184. },
  18185. {
  18186. name: "Bigger Macro",
  18187. height: math.unit(350, "meters")
  18188. },
  18189. {
  18190. name: "Megamacro",
  18191. height: math.unit(8, "km"),
  18192. default: true
  18193. },
  18194. {
  18195. name: "Continental",
  18196. height: math.unit(4550, "km")
  18197. },
  18198. {
  18199. name: "Planetary",
  18200. height: math.unit(65000, "km")
  18201. },
  18202. ]
  18203. ))
  18204. characterMakers.push(() => makeCharacter(
  18205. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  18206. {
  18207. front: {
  18208. height: math.unit(6, "feet"),
  18209. weight: math.unit(400, "lb"),
  18210. name: "Front",
  18211. image: {
  18212. source: "./media/characters/mac/front.svg",
  18213. extra: 1048 / 987.7,
  18214. bottom: 60 / 1107.6,
  18215. }
  18216. },
  18217. },
  18218. [
  18219. {
  18220. name: "Macro",
  18221. height: math.unit(500, "feet"),
  18222. default: true
  18223. },
  18224. ]
  18225. ))
  18226. characterMakers.push(() => makeCharacter(
  18227. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  18228. {
  18229. front: {
  18230. height: math.unit(5 + 2 / 12, "feet"),
  18231. weight: math.unit(190, "lb"),
  18232. name: "Front",
  18233. image: {
  18234. source: "./media/characters/bari/front.svg",
  18235. extra: 3156 / 2880,
  18236. bottom: 0.03
  18237. }
  18238. },
  18239. back: {
  18240. height: math.unit(5 + 2 / 12, "feet"),
  18241. weight: math.unit(190, "lb"),
  18242. name: "Back",
  18243. image: {
  18244. source: "./media/characters/bari/back.svg",
  18245. extra: 3260 / 2834,
  18246. bottom: 0.025
  18247. }
  18248. },
  18249. frontPlush: {
  18250. height: math.unit(5 + 2 / 12, "feet"),
  18251. weight: math.unit(190, "lb"),
  18252. name: "Front (Plush)",
  18253. image: {
  18254. source: "./media/characters/bari/front-plush.svg",
  18255. extra: 1112 / 1061,
  18256. bottom: 0.002
  18257. }
  18258. },
  18259. },
  18260. [
  18261. {
  18262. name: "Micro",
  18263. height: math.unit(3, "inches")
  18264. },
  18265. {
  18266. name: "Normal",
  18267. height: math.unit(5 + 2 / 12, "feet"),
  18268. default: true
  18269. },
  18270. {
  18271. name: "Macro",
  18272. height: math.unit(20, "feet")
  18273. },
  18274. ]
  18275. ))
  18276. characterMakers.push(() => makeCharacter(
  18277. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  18278. {
  18279. front: {
  18280. height: math.unit(6 + 1 / 12, "feet"),
  18281. weight: math.unit(275, "lb"),
  18282. name: "Front",
  18283. image: {
  18284. source: "./media/characters/hunter-misha-raven/front.svg"
  18285. }
  18286. },
  18287. },
  18288. [
  18289. {
  18290. name: "Mortal",
  18291. height: math.unit(6 + 1 / 12, "feet")
  18292. },
  18293. {
  18294. name: "Divine",
  18295. height: math.unit(1.12134e34, "parsecs"),
  18296. default: true
  18297. },
  18298. ]
  18299. ))
  18300. characterMakers.push(() => makeCharacter(
  18301. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  18302. {
  18303. front: {
  18304. height: math.unit(6 + 3 / 12, "feet"),
  18305. weight: math.unit(220, "lb"),
  18306. name: "Front",
  18307. image: {
  18308. source: "./media/characters/max-calore/front.svg",
  18309. extra: 1700 / 1648,
  18310. bottom: 0.01
  18311. }
  18312. },
  18313. back: {
  18314. height: math.unit(6 + 3 / 12, "feet"),
  18315. weight: math.unit(220, "lb"),
  18316. name: "Back",
  18317. image: {
  18318. source: "./media/characters/max-calore/back.svg",
  18319. extra: 1700 / 1648,
  18320. bottom: 0.01
  18321. }
  18322. },
  18323. },
  18324. [
  18325. {
  18326. name: "Normal",
  18327. height: math.unit(6 + 3 / 12, "feet"),
  18328. default: true
  18329. },
  18330. ]
  18331. ))
  18332. characterMakers.push(() => makeCharacter(
  18333. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  18334. {
  18335. side: {
  18336. height: math.unit(2 + 8 / 12, "feet"),
  18337. weight: math.unit(99, "lb"),
  18338. name: "Side",
  18339. image: {
  18340. source: "./media/characters/aspen/side.svg",
  18341. extra: 152 / 138,
  18342. bottom: 0.032
  18343. }
  18344. },
  18345. },
  18346. [
  18347. {
  18348. name: "Normal",
  18349. height: math.unit(2 + 8 / 12, "feet"),
  18350. default: true
  18351. },
  18352. ]
  18353. ))
  18354. characterMakers.push(() => makeCharacter(
  18355. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  18356. {
  18357. side: {
  18358. height: math.unit(3 + 2 / 12, "feet"),
  18359. weight: math.unit(224, "lb"),
  18360. name: "Side",
  18361. image: {
  18362. source: "./media/characters/sheila-feral-wolf/side.svg",
  18363. extra: 179 / 166,
  18364. bottom: 0.03
  18365. }
  18366. },
  18367. },
  18368. [
  18369. {
  18370. name: "Normal",
  18371. height: math.unit(3 + 2 / 12, "feet"),
  18372. default: true
  18373. },
  18374. ]
  18375. ))
  18376. characterMakers.push(() => makeCharacter(
  18377. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  18378. {
  18379. side: {
  18380. height: math.unit(1 + 9 / 12, "feet"),
  18381. weight: math.unit(38, "lb"),
  18382. name: "Side",
  18383. image: {
  18384. source: "./media/characters/michelle/side.svg",
  18385. extra: 147 / 136.7,
  18386. bottom: 0.03
  18387. }
  18388. },
  18389. },
  18390. [
  18391. {
  18392. name: "Normal",
  18393. height: math.unit(1 + 9 / 12, "feet"),
  18394. default: true
  18395. },
  18396. ]
  18397. ))
  18398. characterMakers.push(() => makeCharacter(
  18399. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  18400. {
  18401. front: {
  18402. height: math.unit(1.54, "feet"),
  18403. weight: math.unit(50, "lb"),
  18404. name: "Front",
  18405. image: {
  18406. source: "./media/characters/nino/front.svg"
  18407. }
  18408. },
  18409. },
  18410. [
  18411. {
  18412. name: "Normal",
  18413. height: math.unit(1.54, "feet"),
  18414. default: true
  18415. },
  18416. ]
  18417. ))
  18418. characterMakers.push(() => makeCharacter(
  18419. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  18420. {
  18421. front: {
  18422. height: math.unit(1.49, "feet"),
  18423. weight: math.unit(45, "lb"),
  18424. name: "Front",
  18425. image: {
  18426. source: "./media/characters/viola/front.svg"
  18427. }
  18428. },
  18429. },
  18430. [
  18431. {
  18432. name: "Normal",
  18433. height: math.unit(1.49, "feet"),
  18434. default: true
  18435. },
  18436. ]
  18437. ))
  18438. characterMakers.push(() => makeCharacter(
  18439. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  18440. {
  18441. front: {
  18442. height: math.unit(6 + 5 / 12, "feet"),
  18443. weight: math.unit(580, "lb"),
  18444. name: "Front",
  18445. image: {
  18446. source: "./media/characters/atlas/front.svg",
  18447. extra: 298.5 / 290,
  18448. bottom: 0.015
  18449. }
  18450. },
  18451. },
  18452. [
  18453. {
  18454. name: "Normal",
  18455. height: math.unit(6 + 5 / 12, "feet"),
  18456. default: true
  18457. },
  18458. ]
  18459. ))
  18460. characterMakers.push(() => makeCharacter(
  18461. { name: "Davy", species: ["cat"], tags: ["feral"] },
  18462. {
  18463. side: {
  18464. height: math.unit(15.6, "inches"),
  18465. weight: math.unit(10, "lb"),
  18466. name: "Side",
  18467. image: {
  18468. source: "./media/characters/davy/side.svg",
  18469. extra: 200 / 170,
  18470. bottom: 0.01
  18471. }
  18472. },
  18473. },
  18474. [
  18475. {
  18476. name: "Normal",
  18477. height: math.unit(15.6, "inches"),
  18478. default: true
  18479. },
  18480. ]
  18481. ))
  18482. characterMakers.push(() => makeCharacter(
  18483. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  18484. {
  18485. side: {
  18486. height: math.unit(4 + 8 / 12, "feet"),
  18487. weight: math.unit(166, "lb"),
  18488. name: "Side",
  18489. image: {
  18490. source: "./media/characters/fiona/side.svg",
  18491. extra: 232 / 220,
  18492. bottom: 0.03
  18493. }
  18494. },
  18495. },
  18496. [
  18497. {
  18498. name: "Normal",
  18499. height: math.unit(4 + 8 / 12, "feet"),
  18500. default: true
  18501. },
  18502. ]
  18503. ))
  18504. characterMakers.push(() => makeCharacter(
  18505. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  18506. {
  18507. front: {
  18508. height: math.unit(26, "inches"),
  18509. weight: math.unit(35, "lb"),
  18510. name: "Front",
  18511. image: {
  18512. source: "./media/characters/lyla/front.svg",
  18513. bottom: 0.1
  18514. }
  18515. },
  18516. },
  18517. [
  18518. {
  18519. name: "Normal",
  18520. height: math.unit(3, "feet"),
  18521. default: true
  18522. },
  18523. ]
  18524. ))
  18525. characterMakers.push(() => makeCharacter(
  18526. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  18527. {
  18528. side: {
  18529. height: math.unit(1.8, "feet"),
  18530. weight: math.unit(44, "lb"),
  18531. name: "Side",
  18532. image: {
  18533. source: "./media/characters/perseus/side.svg",
  18534. bottom: 0.21
  18535. }
  18536. },
  18537. },
  18538. [
  18539. {
  18540. name: "Normal",
  18541. height: math.unit(1.8, "feet"),
  18542. default: true
  18543. },
  18544. ]
  18545. ))
  18546. characterMakers.push(() => makeCharacter(
  18547. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  18548. {
  18549. side: {
  18550. height: math.unit(4 + 2 / 12, "feet"),
  18551. weight: math.unit(20, "lb"),
  18552. name: "Side",
  18553. image: {
  18554. source: "./media/characters/remus/side.svg"
  18555. }
  18556. },
  18557. },
  18558. [
  18559. {
  18560. name: "Normal",
  18561. height: math.unit(4 + 2 / 12, "feet"),
  18562. default: true
  18563. },
  18564. ]
  18565. ))
  18566. characterMakers.push(() => makeCharacter(
  18567. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  18568. {
  18569. front: {
  18570. height: math.unit(4 + 11 / 12, "feet"),
  18571. weight: math.unit(114, "lb"),
  18572. name: "Front",
  18573. image: {
  18574. source: "./media/characters/raf/front.svg",
  18575. extra: 1504/1339,
  18576. bottom: 26/1530
  18577. }
  18578. },
  18579. side: {
  18580. height: math.unit(4 + 11 / 12, "feet"),
  18581. weight: math.unit(114, "lb"),
  18582. name: "Side",
  18583. image: {
  18584. source: "./media/characters/raf/side.svg",
  18585. extra: 1466/1316,
  18586. bottom: 29/1495
  18587. }
  18588. },
  18589. paw: {
  18590. height: math.unit(1.45, "feet"),
  18591. name: "Paw",
  18592. image: {
  18593. source: "./media/characters/raf/paw.svg"
  18594. },
  18595. extraAttributes: {
  18596. "toeSize": {
  18597. name: "Toe Size",
  18598. power: 2,
  18599. type: "area",
  18600. base: math.unit(0.004, "m^2")
  18601. },
  18602. "padSize": {
  18603. name: "Pad Size",
  18604. power: 2,
  18605. type: "area",
  18606. base: math.unit(0.04, "m^2")
  18607. },
  18608. "footSize": {
  18609. name: "Foot Size",
  18610. power: 2,
  18611. type: "area",
  18612. base: math.unit(0.08, "m^2")
  18613. },
  18614. }
  18615. },
  18616. },
  18617. [
  18618. {
  18619. name: "Micro",
  18620. height: math.unit(2, "inches")
  18621. },
  18622. {
  18623. name: "Normal",
  18624. height: math.unit(4 + 11 / 12, "feet"),
  18625. default: true
  18626. },
  18627. {
  18628. name: "Macro",
  18629. height: math.unit(70, "feet")
  18630. },
  18631. ]
  18632. ))
  18633. characterMakers.push(() => makeCharacter(
  18634. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  18635. {
  18636. front: {
  18637. height: math.unit(1.5, "meters"),
  18638. weight: math.unit(68, "kg"),
  18639. name: "Front",
  18640. image: {
  18641. source: "./media/characters/liam-einarr/front.svg",
  18642. extra: 2822 / 2666
  18643. }
  18644. },
  18645. back: {
  18646. height: math.unit(1.5, "meters"),
  18647. weight: math.unit(68, "kg"),
  18648. name: "Back",
  18649. image: {
  18650. source: "./media/characters/liam-einarr/back.svg",
  18651. extra: 2822 / 2666,
  18652. bottom: 0.015
  18653. }
  18654. },
  18655. },
  18656. [
  18657. {
  18658. name: "Normal",
  18659. height: math.unit(1.5, "meters"),
  18660. default: true
  18661. },
  18662. {
  18663. name: "Macro",
  18664. height: math.unit(150, "meters")
  18665. },
  18666. {
  18667. name: "Megamacro",
  18668. height: math.unit(35, "km")
  18669. },
  18670. ]
  18671. ))
  18672. characterMakers.push(() => makeCharacter(
  18673. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  18674. {
  18675. front: {
  18676. height: math.unit(6, "feet"),
  18677. weight: math.unit(75, "kg"),
  18678. name: "Front",
  18679. image: {
  18680. source: "./media/characters/linda/front.svg",
  18681. extra: 930 / 874,
  18682. bottom: 0.004
  18683. }
  18684. },
  18685. },
  18686. [
  18687. {
  18688. name: "Normal",
  18689. height: math.unit(6, "feet"),
  18690. default: true
  18691. },
  18692. ]
  18693. ))
  18694. characterMakers.push(() => makeCharacter(
  18695. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  18696. {
  18697. front: {
  18698. height: math.unit(6 + 8 / 12, "feet"),
  18699. weight: math.unit(220, "lb"),
  18700. name: "Front",
  18701. image: {
  18702. source: "./media/characters/caylex/front.svg",
  18703. extra: 821 / 772,
  18704. bottom: 0.07
  18705. }
  18706. },
  18707. back: {
  18708. height: math.unit(6 + 8 / 12, "feet"),
  18709. weight: math.unit(220, "lb"),
  18710. name: "Back",
  18711. image: {
  18712. source: "./media/characters/caylex/back.svg",
  18713. extra: 821 / 772,
  18714. bottom: 0.022
  18715. }
  18716. },
  18717. hand: {
  18718. height: math.unit(1.25, "feet"),
  18719. name: "Hand",
  18720. image: {
  18721. source: "./media/characters/caylex/hand.svg"
  18722. }
  18723. },
  18724. foot: {
  18725. height: math.unit(1.6, "feet"),
  18726. name: "Foot",
  18727. image: {
  18728. source: "./media/characters/caylex/foot.svg"
  18729. }
  18730. },
  18731. armored: {
  18732. height: math.unit(6 + 8 / 12, "feet"),
  18733. weight: math.unit(250, "lb"),
  18734. name: "Armored",
  18735. image: {
  18736. source: "./media/characters/caylex/armored.svg",
  18737. extra: 1420 / 1310,
  18738. bottom: 0.045
  18739. }
  18740. },
  18741. },
  18742. [
  18743. {
  18744. name: "Normal",
  18745. height: math.unit(6 + 8 / 12, "feet"),
  18746. default: true
  18747. },
  18748. {
  18749. name: "Normal+",
  18750. height: math.unit(12, "feet")
  18751. },
  18752. ]
  18753. ))
  18754. characterMakers.push(() => makeCharacter(
  18755. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  18756. {
  18757. front: {
  18758. height: math.unit(7 + 6 / 12, "feet"),
  18759. weight: math.unit(288, "lb"),
  18760. name: "Front",
  18761. image: {
  18762. source: "./media/characters/alana/front.svg",
  18763. extra: 679 / 653,
  18764. bottom: 22.5 / 701
  18765. }
  18766. },
  18767. },
  18768. [
  18769. {
  18770. name: "Normal",
  18771. height: math.unit(7 + 6 / 12, "feet")
  18772. },
  18773. {
  18774. name: "Large",
  18775. height: math.unit(50, "feet")
  18776. },
  18777. {
  18778. name: "Macro",
  18779. height: math.unit(100, "feet"),
  18780. default: true
  18781. },
  18782. {
  18783. name: "Macro+",
  18784. height: math.unit(200, "feet")
  18785. },
  18786. ]
  18787. ))
  18788. characterMakers.push(() => makeCharacter(
  18789. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  18790. {
  18791. front: {
  18792. height: math.unit(6 + 1 / 12, "feet"),
  18793. weight: math.unit(210, "lb"),
  18794. name: "Front",
  18795. image: {
  18796. source: "./media/characters/hasani/front.svg",
  18797. extra: 244 / 232,
  18798. bottom: 0.01
  18799. }
  18800. },
  18801. back: {
  18802. height: math.unit(6 + 1 / 12, "feet"),
  18803. weight: math.unit(210, "lb"),
  18804. name: "Back",
  18805. image: {
  18806. source: "./media/characters/hasani/back.svg",
  18807. extra: 244 / 232,
  18808. bottom: 0.01
  18809. }
  18810. },
  18811. },
  18812. [
  18813. {
  18814. name: "Normal",
  18815. height: math.unit(6 + 1 / 12, "feet")
  18816. },
  18817. {
  18818. name: "Macro",
  18819. height: math.unit(175, "feet"),
  18820. default: true
  18821. },
  18822. ]
  18823. ))
  18824. characterMakers.push(() => makeCharacter(
  18825. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  18826. {
  18827. front: {
  18828. height: math.unit(1.82, "meters"),
  18829. weight: math.unit(140, "lb"),
  18830. name: "Front",
  18831. image: {
  18832. source: "./media/characters/nita/front.svg",
  18833. extra: 2473 / 2363,
  18834. bottom: 0.01
  18835. }
  18836. },
  18837. },
  18838. [
  18839. {
  18840. name: "Normal",
  18841. height: math.unit(1.82, "m")
  18842. },
  18843. {
  18844. name: "Macro",
  18845. height: math.unit(300, "m")
  18846. },
  18847. {
  18848. name: "Mistake Canon",
  18849. height: math.unit(0.5, "miles"),
  18850. default: true
  18851. },
  18852. {
  18853. name: "Big Mistake",
  18854. height: math.unit(13, "miles")
  18855. },
  18856. {
  18857. name: "Playing God",
  18858. height: math.unit(2450, "miles")
  18859. },
  18860. ]
  18861. ))
  18862. characterMakers.push(() => makeCharacter(
  18863. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  18864. {
  18865. front: {
  18866. height: math.unit(4, "feet"),
  18867. weight: math.unit(120, "lb"),
  18868. name: "Front",
  18869. image: {
  18870. source: "./media/characters/shiriko/front.svg",
  18871. extra: 970/934,
  18872. bottom: 5/975
  18873. }
  18874. },
  18875. },
  18876. [
  18877. {
  18878. name: "Normal",
  18879. height: math.unit(4, "feet"),
  18880. default: true
  18881. },
  18882. ]
  18883. ))
  18884. characterMakers.push(() => makeCharacter(
  18885. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  18886. {
  18887. front: {
  18888. height: math.unit(6, "feet"),
  18889. name: "front",
  18890. image: {
  18891. source: "./media/characters/deja/front.svg",
  18892. extra: 926 / 840,
  18893. bottom: 0.07
  18894. }
  18895. },
  18896. },
  18897. [
  18898. {
  18899. name: "Planck Length",
  18900. height: math.unit(1.6e-35, "meters")
  18901. },
  18902. {
  18903. name: "Normal",
  18904. height: math.unit(30.48, "meters"),
  18905. default: true
  18906. },
  18907. {
  18908. name: "Universal",
  18909. height: math.unit(8.8e26, "meters")
  18910. },
  18911. ]
  18912. ))
  18913. characterMakers.push(() => makeCharacter(
  18914. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  18915. {
  18916. side: {
  18917. height: math.unit(8, "feet"),
  18918. weight: math.unit(6300, "lb"),
  18919. name: "Side",
  18920. image: {
  18921. source: "./media/characters/anima/side.svg",
  18922. bottom: 0.035
  18923. }
  18924. },
  18925. },
  18926. [
  18927. {
  18928. name: "Normal",
  18929. height: math.unit(8, "feet"),
  18930. default: true
  18931. },
  18932. ]
  18933. ))
  18934. characterMakers.push(() => makeCharacter(
  18935. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  18936. {
  18937. front: {
  18938. height: math.unit(8, "feet"),
  18939. weight: math.unit(350, "lb"),
  18940. name: "Front",
  18941. image: {
  18942. source: "./media/characters/bianca/front.svg",
  18943. extra: 234 / 225,
  18944. bottom: 0.03
  18945. }
  18946. },
  18947. },
  18948. [
  18949. {
  18950. name: "Normal",
  18951. height: math.unit(8, "feet"),
  18952. default: true
  18953. },
  18954. ]
  18955. ))
  18956. characterMakers.push(() => makeCharacter(
  18957. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  18958. {
  18959. front: {
  18960. height: math.unit(11 + 5/12, "feet"),
  18961. weight: math.unit(1200, "lb"),
  18962. name: "Front",
  18963. image: {
  18964. source: "./media/characters/adinia/front.svg",
  18965. extra: 1767/1641,
  18966. bottom: 44/1811
  18967. },
  18968. extraAttributes: {
  18969. "energyIntake": {
  18970. name: "Energy Intake",
  18971. power: 3,
  18972. type: "energy",
  18973. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18974. },
  18975. }
  18976. },
  18977. back: {
  18978. height: math.unit(11 + 5/12, "feet"),
  18979. weight: math.unit(1200, "lb"),
  18980. name: "Back",
  18981. image: {
  18982. source: "./media/characters/adinia/back.svg",
  18983. extra: 1834/1684,
  18984. bottom: 14/1848
  18985. },
  18986. extraAttributes: {
  18987. "energyIntake": {
  18988. name: "Energy Intake",
  18989. power: 3,
  18990. type: "energy",
  18991. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18992. },
  18993. }
  18994. },
  18995. maw: {
  18996. height: math.unit(3.79, "feet"),
  18997. name: "Maw",
  18998. image: {
  18999. source: "./media/characters/adinia/maw.svg"
  19000. }
  19001. },
  19002. rump: {
  19003. height: math.unit(4.6, "feet"),
  19004. name: "Rump",
  19005. image: {
  19006. source: "./media/characters/adinia/rump.svg"
  19007. }
  19008. },
  19009. },
  19010. [
  19011. {
  19012. name: "Normal",
  19013. height: math.unit(11 + 5 / 12, "feet"),
  19014. default: true
  19015. },
  19016. ]
  19017. ))
  19018. characterMakers.push(() => makeCharacter(
  19019. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  19020. {
  19021. front: {
  19022. height: math.unit(3, "meters"),
  19023. weight: math.unit(200, "kg"),
  19024. name: "Front",
  19025. image: {
  19026. source: "./media/characters/lykasa/front.svg",
  19027. extra: 1076 / 976,
  19028. bottom: 0.06
  19029. }
  19030. },
  19031. },
  19032. [
  19033. {
  19034. name: "Normal",
  19035. height: math.unit(3, "meters")
  19036. },
  19037. {
  19038. name: "Kaiju",
  19039. height: math.unit(120, "meters"),
  19040. default: true
  19041. },
  19042. {
  19043. name: "Mega Kaiju",
  19044. height: math.unit(240, "km")
  19045. },
  19046. {
  19047. name: "Giga Kaiju",
  19048. height: math.unit(400, "megameters")
  19049. },
  19050. {
  19051. name: "Tera Kaiju",
  19052. height: math.unit(800, "gigameters")
  19053. },
  19054. {
  19055. name: "Kaiju Dragon Goddess",
  19056. height: math.unit(26, "zettaparsecs")
  19057. },
  19058. ]
  19059. ))
  19060. characterMakers.push(() => makeCharacter(
  19061. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  19062. {
  19063. side: {
  19064. height: math.unit(283 / 124 * 6, "feet"),
  19065. weight: math.unit(35000, "lb"),
  19066. name: "Side",
  19067. image: {
  19068. source: "./media/characters/malfaren/side.svg",
  19069. extra: 1310/529,
  19070. bottom: 24/1334
  19071. }
  19072. },
  19073. front: {
  19074. height: math.unit(22.36, "feet"),
  19075. weight: math.unit(35000, "lb"),
  19076. name: "Front",
  19077. image: {
  19078. source: "./media/characters/malfaren/front.svg",
  19079. extra: 1237/1115,
  19080. bottom: 32/1269
  19081. }
  19082. },
  19083. maw: {
  19084. height: math.unit(6.9, "feet"),
  19085. name: "Maw",
  19086. image: {
  19087. source: "./media/characters/malfaren/maw.svg"
  19088. }
  19089. },
  19090. dick: {
  19091. height: math.unit(6.19, "feet"),
  19092. name: "Dick",
  19093. image: {
  19094. source: "./media/characters/malfaren/dick.svg"
  19095. }
  19096. },
  19097. eye: {
  19098. height: math.unit(0.69, "feet"),
  19099. name: "Eye",
  19100. image: {
  19101. source: "./media/characters/malfaren/eye.svg"
  19102. }
  19103. },
  19104. },
  19105. [
  19106. {
  19107. name: "Big",
  19108. height: math.unit(283 / 162 * 6, "feet"),
  19109. },
  19110. {
  19111. name: "Bigger",
  19112. height: math.unit(283 / 124 * 6, "feet")
  19113. },
  19114. {
  19115. name: "Massive",
  19116. height: math.unit(283 / 92 * 6, "feet"),
  19117. default: true
  19118. },
  19119. {
  19120. name: "👀💦",
  19121. height: math.unit(283 / 73 * 6, "feet"),
  19122. },
  19123. ]
  19124. ))
  19125. characterMakers.push(() => makeCharacter(
  19126. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  19127. {
  19128. front: {
  19129. height: math.unit(1.7, "m"),
  19130. weight: math.unit(70, "kg"),
  19131. name: "Front",
  19132. image: {
  19133. source: "./media/characters/kernel/front.svg",
  19134. extra: 222 / 210,
  19135. bottom: 0.007
  19136. }
  19137. },
  19138. },
  19139. [
  19140. {
  19141. name: "Nano",
  19142. height: math.unit(17, "micrometers")
  19143. },
  19144. {
  19145. name: "Micro",
  19146. height: math.unit(1.7, "mm")
  19147. },
  19148. {
  19149. name: "Small",
  19150. height: math.unit(1.7, "cm")
  19151. },
  19152. {
  19153. name: "Normal",
  19154. height: math.unit(1.7, "m"),
  19155. default: true
  19156. },
  19157. ]
  19158. ))
  19159. characterMakers.push(() => makeCharacter(
  19160. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  19161. {
  19162. front: {
  19163. height: math.unit(1.75, "meters"),
  19164. weight: math.unit(65, "kg"),
  19165. name: "Front",
  19166. image: {
  19167. source: "./media/characters/jayne-folest/front.svg",
  19168. extra: 2115 / 2007,
  19169. bottom: 0.02
  19170. }
  19171. },
  19172. back: {
  19173. height: math.unit(1.75, "meters"),
  19174. weight: math.unit(65, "kg"),
  19175. name: "Back",
  19176. image: {
  19177. source: "./media/characters/jayne-folest/back.svg",
  19178. extra: 2115 / 2007,
  19179. bottom: 0.005
  19180. }
  19181. },
  19182. frontClothed: {
  19183. height: math.unit(1.75, "meters"),
  19184. weight: math.unit(65, "kg"),
  19185. name: "Front (Clothed)",
  19186. image: {
  19187. source: "./media/characters/jayne-folest/front-clothed.svg",
  19188. extra: 2115 / 2007,
  19189. bottom: 0.035
  19190. }
  19191. },
  19192. hand: {
  19193. height: math.unit(1 / 1.260, "feet"),
  19194. name: "Hand",
  19195. image: {
  19196. source: "./media/characters/jayne-folest/hand.svg"
  19197. }
  19198. },
  19199. foot: {
  19200. height: math.unit(1 / 0.918, "feet"),
  19201. name: "Foot",
  19202. image: {
  19203. source: "./media/characters/jayne-folest/foot.svg"
  19204. }
  19205. },
  19206. },
  19207. [
  19208. {
  19209. name: "Micro",
  19210. height: math.unit(4, "cm")
  19211. },
  19212. {
  19213. name: "Normal",
  19214. height: math.unit(1.75, "meters")
  19215. },
  19216. {
  19217. name: "Macro",
  19218. height: math.unit(47.5, "meters"),
  19219. default: true
  19220. },
  19221. ]
  19222. ))
  19223. characterMakers.push(() => makeCharacter(
  19224. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  19225. {
  19226. front: {
  19227. height: math.unit(180, "cm"),
  19228. weight: math.unit(70, "kg"),
  19229. name: "Front",
  19230. image: {
  19231. source: "./media/characters/algier/front.svg",
  19232. extra: 596 / 572,
  19233. bottom: 0.04
  19234. }
  19235. },
  19236. back: {
  19237. height: math.unit(180, "cm"),
  19238. weight: math.unit(70, "kg"),
  19239. name: "Back",
  19240. image: {
  19241. source: "./media/characters/algier/back.svg",
  19242. extra: 596 / 572,
  19243. bottom: 0.025
  19244. }
  19245. },
  19246. frontdressed: {
  19247. height: math.unit(180, "cm"),
  19248. weight: math.unit(150, "kg"),
  19249. name: "Front-dressed",
  19250. image: {
  19251. source: "./media/characters/algier/front-dressed.svg",
  19252. extra: 596 / 572,
  19253. bottom: 0.038
  19254. }
  19255. },
  19256. },
  19257. [
  19258. {
  19259. name: "Micro",
  19260. height: math.unit(5, "cm")
  19261. },
  19262. {
  19263. name: "Normal",
  19264. height: math.unit(180, "cm"),
  19265. default: true
  19266. },
  19267. {
  19268. name: "Macro",
  19269. height: math.unit(64, "m")
  19270. },
  19271. ]
  19272. ))
  19273. characterMakers.push(() => makeCharacter(
  19274. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  19275. {
  19276. upright: {
  19277. height: math.unit(7, "feet"),
  19278. weight: math.unit(300, "lb"),
  19279. name: "Upright",
  19280. image: {
  19281. source: "./media/characters/pretzel/upright.svg",
  19282. extra: 534 / 522,
  19283. bottom: 0.065
  19284. }
  19285. },
  19286. sprawling: {
  19287. height: math.unit(3.75, "feet"),
  19288. weight: math.unit(300, "lb"),
  19289. name: "Sprawling",
  19290. image: {
  19291. source: "./media/characters/pretzel/sprawling.svg",
  19292. extra: 314 / 281,
  19293. bottom: 0.1
  19294. }
  19295. },
  19296. tongue: {
  19297. height: math.unit(2, "feet"),
  19298. name: "Tongue",
  19299. image: {
  19300. source: "./media/characters/pretzel/tongue.svg"
  19301. }
  19302. },
  19303. },
  19304. [
  19305. {
  19306. name: "Normal",
  19307. height: math.unit(7, "feet"),
  19308. default: true
  19309. },
  19310. {
  19311. name: "Oversized",
  19312. height: math.unit(15, "feet")
  19313. },
  19314. {
  19315. name: "Huge",
  19316. height: math.unit(30, "feet")
  19317. },
  19318. {
  19319. name: "Macro",
  19320. height: math.unit(250, "feet")
  19321. },
  19322. ]
  19323. ))
  19324. characterMakers.push(() => makeCharacter(
  19325. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  19326. {
  19327. sideFront: {
  19328. height: math.unit(5 + 2 / 12, "feet"),
  19329. weight: math.unit(120, "lb"),
  19330. name: "Front Side",
  19331. image: {
  19332. source: "./media/characters/roxi/side-front.svg",
  19333. extra: 2924 / 2717,
  19334. bottom: 0.08
  19335. }
  19336. },
  19337. sideBack: {
  19338. height: math.unit(5 + 2 / 12, "feet"),
  19339. weight: math.unit(120, "lb"),
  19340. name: "Back Side",
  19341. image: {
  19342. source: "./media/characters/roxi/side-back.svg",
  19343. extra: 2904 / 2693,
  19344. bottom: 0.06
  19345. }
  19346. },
  19347. front: {
  19348. height: math.unit(5 + 2 / 12, "feet"),
  19349. weight: math.unit(120, "lb"),
  19350. name: "Front",
  19351. image: {
  19352. source: "./media/characters/roxi/front.svg",
  19353. extra: 2028 / 1907,
  19354. bottom: 0.01
  19355. }
  19356. },
  19357. frontAlt: {
  19358. height: math.unit(5 + 2 / 12, "feet"),
  19359. weight: math.unit(120, "lb"),
  19360. name: "Front (Alt)",
  19361. image: {
  19362. source: "./media/characters/roxi/front-alt.svg",
  19363. extra: 1828 / 1798,
  19364. bottom: 0.01
  19365. }
  19366. },
  19367. sitting: {
  19368. height: math.unit(2.8, "feet"),
  19369. weight: math.unit(120, "lb"),
  19370. name: "Sitting",
  19371. image: {
  19372. source: "./media/characters/roxi/sitting.svg",
  19373. extra: 2660 / 2462,
  19374. bottom: 0.1
  19375. }
  19376. },
  19377. },
  19378. [
  19379. {
  19380. name: "Normal",
  19381. height: math.unit(5 + 2 / 12, "feet"),
  19382. default: true
  19383. },
  19384. ]
  19385. ))
  19386. characterMakers.push(() => makeCharacter(
  19387. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  19388. {
  19389. side: {
  19390. height: math.unit(55, "feet"),
  19391. weight: math.unit(153, "tons"),
  19392. name: "Side",
  19393. image: {
  19394. source: "./media/characters/shadow/side.svg",
  19395. extra: 701 / 628,
  19396. bottom: 0.02
  19397. }
  19398. },
  19399. flying: {
  19400. height: math.unit(145, "feet"),
  19401. weight: math.unit(153, "tons"),
  19402. name: "Flying",
  19403. image: {
  19404. source: "./media/characters/shadow/flying.svg"
  19405. }
  19406. },
  19407. },
  19408. [
  19409. {
  19410. name: "Normal",
  19411. height: math.unit(55, "feet"),
  19412. default: true
  19413. },
  19414. ]
  19415. ))
  19416. characterMakers.push(() => makeCharacter(
  19417. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  19418. {
  19419. front: {
  19420. height: math.unit(6, "feet"),
  19421. weight: math.unit(200, "lb"),
  19422. name: "Front",
  19423. image: {
  19424. source: "./media/characters/marcie/front.svg",
  19425. extra: 960 / 876,
  19426. bottom: 58 / 1017.87
  19427. }
  19428. },
  19429. },
  19430. [
  19431. {
  19432. name: "Macro",
  19433. height: math.unit(1, "mile"),
  19434. default: true
  19435. },
  19436. ]
  19437. ))
  19438. characterMakers.push(() => makeCharacter(
  19439. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  19440. {
  19441. front: {
  19442. height: math.unit(7, "feet"),
  19443. weight: math.unit(200, "lb"),
  19444. name: "Front",
  19445. image: {
  19446. source: "./media/characters/kachina/front.svg",
  19447. extra: 1290.68 / 1119,
  19448. bottom: 36.5 / 1327.18
  19449. }
  19450. },
  19451. },
  19452. [
  19453. {
  19454. name: "Normal",
  19455. height: math.unit(7, "feet"),
  19456. default: true
  19457. },
  19458. ]
  19459. ))
  19460. characterMakers.push(() => makeCharacter(
  19461. { name: "Kash", species: ["canine"], tags: ["feral"] },
  19462. {
  19463. looking: {
  19464. height: math.unit(2, "meters"),
  19465. weight: math.unit(300, "kg"),
  19466. name: "Looking",
  19467. image: {
  19468. source: "./media/characters/kash/looking.svg",
  19469. extra: 474 / 344,
  19470. bottom: 0.03
  19471. }
  19472. },
  19473. side: {
  19474. height: math.unit(2, "meters"),
  19475. weight: math.unit(300, "kg"),
  19476. name: "Side",
  19477. image: {
  19478. source: "./media/characters/kash/side.svg",
  19479. extra: 302 / 251,
  19480. bottom: 0.03
  19481. }
  19482. },
  19483. front: {
  19484. height: math.unit(2, "meters"),
  19485. weight: math.unit(300, "kg"),
  19486. name: "Front",
  19487. image: {
  19488. source: "./media/characters/kash/front.svg",
  19489. extra: 495 / 360,
  19490. bottom: 0.015
  19491. }
  19492. },
  19493. },
  19494. [
  19495. {
  19496. name: "Normal",
  19497. height: math.unit(2, "meters"),
  19498. default: true
  19499. },
  19500. {
  19501. name: "Big",
  19502. height: math.unit(3, "meters")
  19503. },
  19504. {
  19505. name: "Large",
  19506. height: math.unit(5, "meters")
  19507. },
  19508. ]
  19509. ))
  19510. characterMakers.push(() => makeCharacter(
  19511. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  19512. {
  19513. feeding: {
  19514. height: math.unit(6.7, "feet"),
  19515. weight: math.unit(350, "lb"),
  19516. name: "Feeding",
  19517. image: {
  19518. source: "./media/characters/lalim/feeding.svg",
  19519. }
  19520. },
  19521. },
  19522. [
  19523. {
  19524. name: "Normal",
  19525. height: math.unit(6.7, "feet"),
  19526. default: true
  19527. },
  19528. ]
  19529. ))
  19530. characterMakers.push(() => makeCharacter(
  19531. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  19532. {
  19533. front: {
  19534. height: math.unit(9.5, "feet"),
  19535. weight: math.unit(600, "lb"),
  19536. name: "Front",
  19537. image: {
  19538. source: "./media/characters/de'vout/front.svg",
  19539. extra: 1443 / 1328,
  19540. bottom: 0.025
  19541. }
  19542. },
  19543. back: {
  19544. height: math.unit(9.5, "feet"),
  19545. weight: math.unit(600, "lb"),
  19546. name: "Back",
  19547. image: {
  19548. source: "./media/characters/de'vout/back.svg",
  19549. extra: 1443 / 1328
  19550. }
  19551. },
  19552. frontDressed: {
  19553. height: math.unit(9.5, "feet"),
  19554. weight: math.unit(600, "lb"),
  19555. name: "Front (Dressed",
  19556. image: {
  19557. source: "./media/characters/de'vout/front-dressed.svg",
  19558. extra: 1443 / 1328,
  19559. bottom: 0.025
  19560. }
  19561. },
  19562. backDressed: {
  19563. height: math.unit(9.5, "feet"),
  19564. weight: math.unit(600, "lb"),
  19565. name: "Back (Dressed",
  19566. image: {
  19567. source: "./media/characters/de'vout/back-dressed.svg",
  19568. extra: 1443 / 1328
  19569. }
  19570. },
  19571. },
  19572. [
  19573. {
  19574. name: "Normal",
  19575. height: math.unit(9.5, "feet"),
  19576. default: true
  19577. },
  19578. ]
  19579. ))
  19580. characterMakers.push(() => makeCharacter(
  19581. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  19582. {
  19583. front: {
  19584. height: math.unit(8, "feet"),
  19585. weight: math.unit(225, "lb"),
  19586. name: "Front",
  19587. image: {
  19588. source: "./media/characters/talana/front.svg",
  19589. extra: 1410 / 1300,
  19590. bottom: 0.015
  19591. }
  19592. },
  19593. frontDressed: {
  19594. height: math.unit(8, "feet"),
  19595. weight: math.unit(225, "lb"),
  19596. name: "Front (Dressed",
  19597. image: {
  19598. source: "./media/characters/talana/front-dressed.svg",
  19599. extra: 1410 / 1300,
  19600. bottom: 0.015
  19601. }
  19602. },
  19603. },
  19604. [
  19605. {
  19606. name: "Normal",
  19607. height: math.unit(8, "feet"),
  19608. default: true
  19609. },
  19610. ]
  19611. ))
  19612. characterMakers.push(() => makeCharacter(
  19613. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19614. {
  19615. side: {
  19616. height: math.unit(7.2, "feet"),
  19617. weight: math.unit(150, "lb"),
  19618. name: "Side",
  19619. image: {
  19620. source: "./media/characters/xeauvok/side.svg",
  19621. extra: 1975 / 1523,
  19622. bottom: 0.07
  19623. }
  19624. },
  19625. },
  19626. [
  19627. {
  19628. name: "Normal",
  19629. height: math.unit(7.2, "feet"),
  19630. default: true
  19631. },
  19632. ]
  19633. ))
  19634. characterMakers.push(() => makeCharacter(
  19635. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  19636. {
  19637. side: {
  19638. height: math.unit(4, "meters"),
  19639. weight: math.unit(2200, "kg"),
  19640. name: "Side",
  19641. image: {
  19642. source: "./media/characters/zara/side.svg",
  19643. extra: 765/744,
  19644. bottom: 156/921
  19645. }
  19646. },
  19647. },
  19648. [
  19649. {
  19650. name: "Normal",
  19651. height: math.unit(4, "meters"),
  19652. default: true
  19653. },
  19654. ]
  19655. ))
  19656. characterMakers.push(() => makeCharacter(
  19657. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  19658. {
  19659. side: {
  19660. height: math.unit(6, "feet"),
  19661. weight: math.unit(150, "lb"),
  19662. name: "Side",
  19663. image: {
  19664. source: "./media/characters/richard-dragon/side.svg",
  19665. extra: 845 / 340,
  19666. bottom: 0.017
  19667. }
  19668. },
  19669. maw: {
  19670. height: math.unit(2.97, "feet"),
  19671. name: "Maw",
  19672. image: {
  19673. source: "./media/characters/richard-dragon/maw.svg"
  19674. }
  19675. },
  19676. },
  19677. [
  19678. ]
  19679. ))
  19680. characterMakers.push(() => makeCharacter(
  19681. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  19682. {
  19683. front: {
  19684. height: math.unit(4, "feet"),
  19685. weight: math.unit(100, "lb"),
  19686. name: "Front",
  19687. image: {
  19688. source: "./media/characters/richard-smeargle/front.svg",
  19689. extra: 2952 / 2820,
  19690. bottom: 0.028
  19691. }
  19692. },
  19693. },
  19694. [
  19695. {
  19696. name: "Normal",
  19697. height: math.unit(4, "feet"),
  19698. default: true
  19699. },
  19700. {
  19701. name: "Dynamax",
  19702. height: math.unit(20, "meters")
  19703. },
  19704. ]
  19705. ))
  19706. characterMakers.push(() => makeCharacter(
  19707. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  19708. {
  19709. front: {
  19710. height: math.unit(6, "feet"),
  19711. weight: math.unit(110, "lb"),
  19712. name: "Front",
  19713. image: {
  19714. source: "./media/characters/klay/front.svg",
  19715. extra: 962 / 883,
  19716. bottom: 0.04
  19717. }
  19718. },
  19719. back: {
  19720. height: math.unit(6, "feet"),
  19721. weight: math.unit(110, "lb"),
  19722. name: "Back",
  19723. image: {
  19724. source: "./media/characters/klay/back.svg",
  19725. extra: 962 / 883
  19726. }
  19727. },
  19728. beans: {
  19729. height: math.unit(1.15, "feet"),
  19730. name: "Beans",
  19731. image: {
  19732. source: "./media/characters/klay/beans.svg"
  19733. }
  19734. },
  19735. },
  19736. [
  19737. {
  19738. name: "Micro",
  19739. height: math.unit(6, "inches")
  19740. },
  19741. {
  19742. name: "Mini",
  19743. height: math.unit(3, "feet")
  19744. },
  19745. {
  19746. name: "Normal",
  19747. height: math.unit(6, "feet"),
  19748. default: true
  19749. },
  19750. {
  19751. name: "Big",
  19752. height: math.unit(25, "feet")
  19753. },
  19754. {
  19755. name: "Macro",
  19756. height: math.unit(100, "feet")
  19757. },
  19758. {
  19759. name: "Megamacro",
  19760. height: math.unit(400, "feet")
  19761. },
  19762. ]
  19763. ))
  19764. characterMakers.push(() => makeCharacter(
  19765. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  19766. {
  19767. front: {
  19768. height: math.unit(6, "feet"),
  19769. weight: math.unit(160, "lb"),
  19770. name: "Front",
  19771. image: {
  19772. source: "./media/characters/marcus/front.svg",
  19773. extra: 734 / 676,
  19774. bottom: 0.03
  19775. }
  19776. },
  19777. },
  19778. [
  19779. {
  19780. name: "Little",
  19781. height: math.unit(6, "feet")
  19782. },
  19783. {
  19784. name: "Normal",
  19785. height: math.unit(110, "feet"),
  19786. default: true
  19787. },
  19788. {
  19789. name: "Macro",
  19790. height: math.unit(250, "feet")
  19791. },
  19792. {
  19793. name: "Megamacro",
  19794. height: math.unit(1000, "feet")
  19795. },
  19796. ]
  19797. ))
  19798. characterMakers.push(() => makeCharacter(
  19799. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  19800. {
  19801. front: {
  19802. height: math.unit(7, "feet"),
  19803. weight: math.unit(275, "lb"),
  19804. name: "Front",
  19805. image: {
  19806. source: "./media/characters/claude-delroute/front.svg",
  19807. extra: 902/827,
  19808. bottom: 26/928
  19809. }
  19810. },
  19811. side: {
  19812. height: math.unit(7, "feet"),
  19813. weight: math.unit(275, "lb"),
  19814. name: "Side",
  19815. image: {
  19816. source: "./media/characters/claude-delroute/side.svg",
  19817. extra: 908/853,
  19818. bottom: 16/924
  19819. }
  19820. },
  19821. back: {
  19822. height: math.unit(7, "feet"),
  19823. weight: math.unit(275, "lb"),
  19824. name: "Back",
  19825. image: {
  19826. source: "./media/characters/claude-delroute/back.svg",
  19827. extra: 911/829,
  19828. bottom: 18/929
  19829. }
  19830. },
  19831. maw: {
  19832. height: math.unit(0.6407, "meters"),
  19833. name: "Maw",
  19834. image: {
  19835. source: "./media/characters/claude-delroute/maw.svg"
  19836. }
  19837. },
  19838. },
  19839. [
  19840. {
  19841. name: "Normal",
  19842. height: math.unit(7, "feet"),
  19843. default: true
  19844. },
  19845. {
  19846. name: "Lorge",
  19847. height: math.unit(20, "feet")
  19848. },
  19849. ]
  19850. ))
  19851. characterMakers.push(() => makeCharacter(
  19852. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  19853. {
  19854. front: {
  19855. height: math.unit(8 + 4 / 12, "feet"),
  19856. weight: math.unit(600, "lb"),
  19857. name: "Front",
  19858. image: {
  19859. source: "./media/characters/dragonien/front.svg",
  19860. extra: 100 / 94,
  19861. bottom: 3.3 / 103.3445
  19862. }
  19863. },
  19864. back: {
  19865. height: math.unit(8 + 4 / 12, "feet"),
  19866. weight: math.unit(600, "lb"),
  19867. name: "Back",
  19868. image: {
  19869. source: "./media/characters/dragonien/back.svg",
  19870. extra: 776 / 746,
  19871. bottom: 6.4 / 782.0616
  19872. }
  19873. },
  19874. foot: {
  19875. height: math.unit(1.54, "feet"),
  19876. name: "Foot",
  19877. image: {
  19878. source: "./media/characters/dragonien/foot.svg",
  19879. }
  19880. },
  19881. },
  19882. [
  19883. {
  19884. name: "Normal",
  19885. height: math.unit(8 + 4 / 12, "feet"),
  19886. default: true
  19887. },
  19888. {
  19889. name: "Macro",
  19890. height: math.unit(200, "feet")
  19891. },
  19892. {
  19893. name: "Megamacro",
  19894. height: math.unit(1, "mile")
  19895. },
  19896. {
  19897. name: "Gigamacro",
  19898. height: math.unit(1000, "miles")
  19899. },
  19900. ]
  19901. ))
  19902. characterMakers.push(() => makeCharacter(
  19903. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  19904. {
  19905. front: {
  19906. height: math.unit(5 + 2 / 12, "feet"),
  19907. weight: math.unit(110, "lb"),
  19908. name: "Front",
  19909. image: {
  19910. source: "./media/characters/desta/front.svg",
  19911. extra: 767 / 726,
  19912. bottom: 11.7 / 779
  19913. }
  19914. },
  19915. back: {
  19916. height: math.unit(5 + 2 / 12, "feet"),
  19917. weight: math.unit(110, "lb"),
  19918. name: "Back",
  19919. image: {
  19920. source: "./media/characters/desta/back.svg",
  19921. extra: 777 / 728,
  19922. bottom: 6 / 784
  19923. }
  19924. },
  19925. frontAlt: {
  19926. height: math.unit(5 + 2 / 12, "feet"),
  19927. weight: math.unit(110, "lb"),
  19928. name: "Front",
  19929. image: {
  19930. source: "./media/characters/desta/front-alt.svg",
  19931. extra: 1482 / 1417
  19932. }
  19933. },
  19934. side: {
  19935. height: math.unit(5 + 2 / 12, "feet"),
  19936. weight: math.unit(110, "lb"),
  19937. name: "Side",
  19938. image: {
  19939. source: "./media/characters/desta/side.svg",
  19940. extra: 2579 / 2491,
  19941. bottom: 0.053
  19942. }
  19943. },
  19944. },
  19945. [
  19946. {
  19947. name: "Micro",
  19948. height: math.unit(6, "inches")
  19949. },
  19950. {
  19951. name: "Normal",
  19952. height: math.unit(5 + 2 / 12, "feet"),
  19953. default: true
  19954. },
  19955. {
  19956. name: "Macro",
  19957. height: math.unit(62, "feet")
  19958. },
  19959. {
  19960. name: "Megamacro",
  19961. height: math.unit(1800, "feet")
  19962. },
  19963. ]
  19964. ))
  19965. characterMakers.push(() => makeCharacter(
  19966. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  19967. {
  19968. front: {
  19969. height: math.unit(10, "feet"),
  19970. weight: math.unit(700, "lb"),
  19971. name: "Front",
  19972. image: {
  19973. source: "./media/characters/storm-alystar/front.svg",
  19974. extra: 2112 / 1898,
  19975. bottom: 0.034
  19976. }
  19977. },
  19978. },
  19979. [
  19980. {
  19981. name: "Micro",
  19982. height: math.unit(3.5, "inches")
  19983. },
  19984. {
  19985. name: "Normal",
  19986. height: math.unit(10, "feet"),
  19987. default: true
  19988. },
  19989. {
  19990. name: "Macro",
  19991. height: math.unit(400, "feet")
  19992. },
  19993. {
  19994. name: "Deific",
  19995. height: math.unit(60, "miles")
  19996. },
  19997. ]
  19998. ))
  19999. characterMakers.push(() => makeCharacter(
  20000. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  20001. {
  20002. front: {
  20003. height: math.unit(2.35, "meters"),
  20004. weight: math.unit(119, "kg"),
  20005. name: "Front",
  20006. image: {
  20007. source: "./media/characters/ilia/front.svg",
  20008. extra: 1285 / 1255,
  20009. bottom: 0.06
  20010. }
  20011. },
  20012. },
  20013. [
  20014. {
  20015. name: "Normal",
  20016. height: math.unit(2.35, "meters")
  20017. },
  20018. {
  20019. name: "Macro",
  20020. height: math.unit(140, "meters"),
  20021. default: true
  20022. },
  20023. {
  20024. name: "Megamacro",
  20025. height: math.unit(100, "miles")
  20026. },
  20027. ]
  20028. ))
  20029. characterMakers.push(() => makeCharacter(
  20030. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  20031. {
  20032. front: {
  20033. height: math.unit(6 + 5 / 12, "feet"),
  20034. weight: math.unit(190, "lb"),
  20035. name: "Front",
  20036. image: {
  20037. source: "./media/characters/kingdead/front.svg",
  20038. extra: 1228 / 1177
  20039. }
  20040. },
  20041. },
  20042. [
  20043. {
  20044. name: "Micro",
  20045. height: math.unit(7, "inches")
  20046. },
  20047. {
  20048. name: "Normal",
  20049. height: math.unit(6 + 5 / 12, "feet")
  20050. },
  20051. {
  20052. name: "Macro",
  20053. height: math.unit(150, "feet"),
  20054. default: true
  20055. },
  20056. {
  20057. name: "Megamacro",
  20058. height: math.unit(200, "miles")
  20059. },
  20060. ]
  20061. ))
  20062. characterMakers.push(() => makeCharacter(
  20063. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  20064. {
  20065. front: {
  20066. height: math.unit(8, "feet"),
  20067. weight: math.unit(600, "lb"),
  20068. name: "Front",
  20069. image: {
  20070. source: "./media/characters/kyrehx/front.svg",
  20071. extra: 1195 / 1095,
  20072. bottom: 0.034
  20073. }
  20074. },
  20075. },
  20076. [
  20077. {
  20078. name: "Micro",
  20079. height: math.unit(2, "inches")
  20080. },
  20081. {
  20082. name: "Normal",
  20083. height: math.unit(8, "feet"),
  20084. default: true
  20085. },
  20086. {
  20087. name: "Macro",
  20088. height: math.unit(255, "feet")
  20089. },
  20090. ]
  20091. ))
  20092. characterMakers.push(() => makeCharacter(
  20093. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  20094. {
  20095. front: {
  20096. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20097. weight: math.unit(184, "lb"),
  20098. name: "Front",
  20099. image: {
  20100. source: "./media/characters/xang/front.svg",
  20101. extra: 845 / 755
  20102. }
  20103. },
  20104. },
  20105. [
  20106. {
  20107. name: "Normal",
  20108. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20109. default: true
  20110. },
  20111. {
  20112. name: "Macro",
  20113. height: math.unit(0.935 * 146, "feet")
  20114. },
  20115. {
  20116. name: "Megamacro",
  20117. height: math.unit(0.935 * 3, "miles")
  20118. },
  20119. ]
  20120. ))
  20121. characterMakers.push(() => makeCharacter(
  20122. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  20123. {
  20124. frontDressed: {
  20125. height: math.unit(5 + 7 / 12, "feet"),
  20126. weight: math.unit(140, "lb"),
  20127. name: "Front (Dressed)",
  20128. image: {
  20129. source: "./media/characters/doc-weardno/front-dressed.svg",
  20130. extra: 263 / 234
  20131. }
  20132. },
  20133. backDressed: {
  20134. height: math.unit(5 + 7 / 12, "feet"),
  20135. weight: math.unit(140, "lb"),
  20136. name: "Back (Dressed)",
  20137. image: {
  20138. source: "./media/characters/doc-weardno/back-dressed.svg",
  20139. extra: 266 / 238
  20140. }
  20141. },
  20142. front: {
  20143. height: math.unit(5 + 7 / 12, "feet"),
  20144. weight: math.unit(140, "lb"),
  20145. name: "Front",
  20146. image: {
  20147. source: "./media/characters/doc-weardno/front.svg",
  20148. extra: 254 / 233
  20149. }
  20150. },
  20151. },
  20152. [
  20153. {
  20154. name: "Micro",
  20155. height: math.unit(3, "inches")
  20156. },
  20157. {
  20158. name: "Normal",
  20159. height: math.unit(5 + 7 / 12, "feet"),
  20160. default: true
  20161. },
  20162. {
  20163. name: "Macro",
  20164. height: math.unit(25, "feet")
  20165. },
  20166. {
  20167. name: "Megamacro",
  20168. height: math.unit(2, "miles")
  20169. },
  20170. ]
  20171. ))
  20172. characterMakers.push(() => makeCharacter(
  20173. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  20174. {
  20175. front: {
  20176. height: math.unit(6 + 2 / 12, "feet"),
  20177. weight: math.unit(153, "lb"),
  20178. name: "Front",
  20179. image: {
  20180. source: "./media/characters/seth-whilst/front.svg",
  20181. bottom: 0.07
  20182. }
  20183. },
  20184. },
  20185. [
  20186. {
  20187. name: "Micro",
  20188. height: math.unit(5, "inches")
  20189. },
  20190. {
  20191. name: "Normal",
  20192. height: math.unit(6 + 2 / 12, "feet"),
  20193. default: true
  20194. },
  20195. ]
  20196. ))
  20197. characterMakers.push(() => makeCharacter(
  20198. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  20199. {
  20200. front: {
  20201. height: math.unit(3, "inches"),
  20202. weight: math.unit(8, "grams"),
  20203. name: "Front",
  20204. image: {
  20205. source: "./media/characters/pocket-jabari/front.svg",
  20206. extra: 1024 / 974,
  20207. bottom: 0.039
  20208. }
  20209. },
  20210. },
  20211. [
  20212. {
  20213. name: "Minimicro",
  20214. height: math.unit(8, "mm")
  20215. },
  20216. {
  20217. name: "Micro",
  20218. height: math.unit(3, "inches"),
  20219. default: true
  20220. },
  20221. {
  20222. name: "Normal",
  20223. height: math.unit(3, "feet")
  20224. },
  20225. ]
  20226. ))
  20227. characterMakers.push(() => makeCharacter(
  20228. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  20229. {
  20230. frontDressed: {
  20231. height: math.unit(15, "feet"),
  20232. weight: math.unit(3280, "lb"),
  20233. name: "Front (Dressed)",
  20234. image: {
  20235. source: "./media/characters/sapphy/front-dressed.svg",
  20236. extra: 1951/1654,
  20237. bottom: 194/2145
  20238. },
  20239. form: "anthro",
  20240. default: true
  20241. },
  20242. backDressed: {
  20243. height: math.unit(15, "feet"),
  20244. weight: math.unit(3280, "lb"),
  20245. name: "Back (Dressed)",
  20246. image: {
  20247. source: "./media/characters/sapphy/back-dressed.svg",
  20248. extra: 2058/1918,
  20249. bottom: 125/2183
  20250. },
  20251. form: "anthro"
  20252. },
  20253. frontNude: {
  20254. height: math.unit(15, "feet"),
  20255. weight: math.unit(3280, "lb"),
  20256. name: "Front (Nude)",
  20257. image: {
  20258. source: "./media/characters/sapphy/front-nude.svg",
  20259. extra: 1951/1654,
  20260. bottom: 194/2145
  20261. },
  20262. form: "anthro"
  20263. },
  20264. backNude: {
  20265. height: math.unit(15, "feet"),
  20266. weight: math.unit(3280, "lb"),
  20267. name: "Back (Nude)",
  20268. image: {
  20269. source: "./media/characters/sapphy/back-nude.svg",
  20270. extra: 2058/1918,
  20271. bottom: 125/2183
  20272. },
  20273. form: "anthro"
  20274. },
  20275. full: {
  20276. height: math.unit(15, "feet"),
  20277. weight: math.unit(3280, "lb"),
  20278. name: "Full",
  20279. image: {
  20280. source: "./media/characters/sapphy/full.svg",
  20281. extra: 1396/1317,
  20282. bottom: 44/1440
  20283. },
  20284. form: "anthro"
  20285. },
  20286. dick: {
  20287. height: math.unit(3.8, "feet"),
  20288. name: "Dick",
  20289. image: {
  20290. source: "./media/characters/sapphy/dick.svg"
  20291. },
  20292. form: "anthro"
  20293. },
  20294. feral: {
  20295. height: math.unit(35, "feet"),
  20296. weight: math.unit(160, "tons"),
  20297. name: "Feral",
  20298. image: {
  20299. source: "./media/characters/sapphy/feral.svg",
  20300. extra: 1050/573,
  20301. bottom: 60/1110
  20302. },
  20303. form: "feral",
  20304. default: true
  20305. },
  20306. },
  20307. [
  20308. {
  20309. name: "Normal",
  20310. height: math.unit(15, "feet"),
  20311. form: "anthro"
  20312. },
  20313. {
  20314. name: "Casual Macro",
  20315. height: math.unit(120, "feet"),
  20316. form: "anthro"
  20317. },
  20318. {
  20319. name: "Macro",
  20320. height: math.unit(2150, "feet"),
  20321. default: true,
  20322. form: "anthro"
  20323. },
  20324. {
  20325. name: "Megamacro",
  20326. height: math.unit(8, "miles"),
  20327. form: "anthro"
  20328. },
  20329. {
  20330. name: "Galaxy Mom",
  20331. height: math.unit(6, "megalightyears"),
  20332. form: "anthro"
  20333. },
  20334. {
  20335. name: "Normal",
  20336. height: math.unit(35, "feet"),
  20337. form: "feral",
  20338. default: true
  20339. },
  20340. {
  20341. name: "Macro",
  20342. height: math.unit(300, "feet"),
  20343. form: "feral"
  20344. },
  20345. {
  20346. name: "Galaxy Mom",
  20347. height: math.unit(10, "megalightyears"),
  20348. form: "feral"
  20349. },
  20350. ],
  20351. {
  20352. "anthro": {
  20353. name: "Anthro",
  20354. default: true
  20355. },
  20356. "feral": {
  20357. name: "Feral"
  20358. }
  20359. }
  20360. ))
  20361. characterMakers.push(() => makeCharacter(
  20362. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  20363. {
  20364. hyenaFront: {
  20365. height: math.unit(6, "feet"),
  20366. weight: math.unit(190, "lb"),
  20367. name: "Front",
  20368. image: {
  20369. source: "./media/characters/kiro/hyena-front.svg",
  20370. extra: 927/839,
  20371. bottom: 91/1018
  20372. },
  20373. form: "hyena",
  20374. default: true
  20375. },
  20376. front: {
  20377. height: math.unit(6, "feet"),
  20378. weight: math.unit(170, "lb"),
  20379. name: "Front",
  20380. image: {
  20381. source: "./media/characters/kiro/front.svg",
  20382. extra: 1064 / 1012,
  20383. bottom: 0.052
  20384. },
  20385. form: "folf",
  20386. default: true
  20387. },
  20388. },
  20389. [
  20390. {
  20391. name: "Micro",
  20392. height: math.unit(6, "inches"),
  20393. form: "folf"
  20394. },
  20395. {
  20396. name: "Normal",
  20397. height: math.unit(6, "feet"),
  20398. form: "folf",
  20399. default: true
  20400. },
  20401. {
  20402. name: "Macro",
  20403. height: math.unit(72, "feet"),
  20404. form: "folf"
  20405. },
  20406. {
  20407. name: "Micro",
  20408. height: math.unit(6, "inches"),
  20409. form: "hyena"
  20410. },
  20411. {
  20412. name: "Normal",
  20413. height: math.unit(6, "feet"),
  20414. form: "hyena",
  20415. default: true
  20416. },
  20417. {
  20418. name: "Macro",
  20419. height: math.unit(72, "feet"),
  20420. form: "hyena"
  20421. },
  20422. ],
  20423. {
  20424. "hyena": {
  20425. name: "Hyena",
  20426. default: true
  20427. },
  20428. "folf": {
  20429. name: "Folf",
  20430. },
  20431. }
  20432. ))
  20433. characterMakers.push(() => makeCharacter(
  20434. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  20435. {
  20436. front: {
  20437. height: math.unit(5 + 9 / 12, "feet"),
  20438. weight: math.unit(175, "lb"),
  20439. name: "Front",
  20440. image: {
  20441. source: "./media/characters/irishfox/front.svg",
  20442. extra: 1912 / 1680,
  20443. bottom: 0.02
  20444. }
  20445. },
  20446. },
  20447. [
  20448. {
  20449. name: "Nano",
  20450. height: math.unit(1, "mm")
  20451. },
  20452. {
  20453. name: "Micro",
  20454. height: math.unit(2, "inches")
  20455. },
  20456. {
  20457. name: "Normal",
  20458. height: math.unit(5 + 9 / 12, "feet"),
  20459. default: true
  20460. },
  20461. {
  20462. name: "Macro",
  20463. height: math.unit(45, "feet")
  20464. },
  20465. ]
  20466. ))
  20467. characterMakers.push(() => makeCharacter(
  20468. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  20469. {
  20470. front: {
  20471. height: math.unit(6 + 1 / 12, "feet"),
  20472. weight: math.unit(75, "lb"),
  20473. name: "Front",
  20474. image: {
  20475. source: "./media/characters/aronai-sieyes/front.svg",
  20476. extra: 1532/1450,
  20477. bottom: 42/1574
  20478. }
  20479. },
  20480. side: {
  20481. height: math.unit(6 + 1 / 12, "feet"),
  20482. weight: math.unit(75, "lb"),
  20483. name: "Side",
  20484. image: {
  20485. source: "./media/characters/aronai-sieyes/side.svg",
  20486. extra: 1422/1365,
  20487. bottom: 148/1570
  20488. }
  20489. },
  20490. back: {
  20491. height: math.unit(6 + 1 / 12, "feet"),
  20492. weight: math.unit(75, "lb"),
  20493. name: "Back",
  20494. image: {
  20495. source: "./media/characters/aronai-sieyes/back.svg",
  20496. extra: 1526/1464,
  20497. bottom: 51/1577
  20498. }
  20499. },
  20500. dressed: {
  20501. height: math.unit(6 + 1 / 12, "feet"),
  20502. weight: math.unit(75, "lb"),
  20503. name: "Dressed",
  20504. image: {
  20505. source: "./media/characters/aronai-sieyes/dressed.svg",
  20506. extra: 1559/1483,
  20507. bottom: 39/1598
  20508. }
  20509. },
  20510. slit: {
  20511. height: math.unit(1.3, "feet"),
  20512. name: "Slit",
  20513. image: {
  20514. source: "./media/characters/aronai-sieyes/slit.svg"
  20515. }
  20516. },
  20517. slitSpread: {
  20518. height: math.unit(0.9, "feet"),
  20519. name: "Slit (Spread)",
  20520. image: {
  20521. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  20522. }
  20523. },
  20524. rump: {
  20525. height: math.unit(1.3, "feet"),
  20526. name: "Rump",
  20527. image: {
  20528. source: "./media/characters/aronai-sieyes/rump.svg"
  20529. }
  20530. },
  20531. maw: {
  20532. height: math.unit(1.25, "feet"),
  20533. name: "Maw",
  20534. image: {
  20535. source: "./media/characters/aronai-sieyes/maw.svg"
  20536. }
  20537. },
  20538. feral: {
  20539. height: math.unit(18, "feet"),
  20540. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  20541. name: "Feral",
  20542. image: {
  20543. source: "./media/characters/aronai-sieyes/feral.svg",
  20544. extra: 1530 / 1240,
  20545. bottom: 0.035
  20546. }
  20547. },
  20548. },
  20549. [
  20550. {
  20551. name: "Micro",
  20552. height: math.unit(2, "inches")
  20553. },
  20554. {
  20555. name: "Normal",
  20556. height: math.unit(6 + 1 / 12, "feet"),
  20557. default: true
  20558. }
  20559. ]
  20560. ))
  20561. characterMakers.push(() => makeCharacter(
  20562. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  20563. {
  20564. front: {
  20565. height: math.unit(12, "feet"),
  20566. weight: math.unit(410, "kg"),
  20567. name: "Front",
  20568. image: {
  20569. source: "./media/characters/xuna/front.svg",
  20570. extra: 2184 / 1980
  20571. }
  20572. },
  20573. side: {
  20574. height: math.unit(12, "feet"),
  20575. weight: math.unit(410, "kg"),
  20576. name: "Side",
  20577. image: {
  20578. source: "./media/characters/xuna/side.svg",
  20579. extra: 2184 / 1980
  20580. }
  20581. },
  20582. back: {
  20583. height: math.unit(12, "feet"),
  20584. weight: math.unit(410, "kg"),
  20585. name: "Back",
  20586. image: {
  20587. source: "./media/characters/xuna/back.svg",
  20588. extra: 2184 / 1980
  20589. }
  20590. },
  20591. },
  20592. [
  20593. {
  20594. name: "Nano glow",
  20595. height: math.unit(10, "nm")
  20596. },
  20597. {
  20598. name: "Micro floof",
  20599. height: math.unit(0.3, "m")
  20600. },
  20601. {
  20602. name: "Huggable softy boi",
  20603. height: math.unit(3.6576, "m"),
  20604. default: true
  20605. },
  20606. {
  20607. name: "Admirable floof",
  20608. height: math.unit(80, "meters")
  20609. },
  20610. {
  20611. name: "Gentle macro",
  20612. height: math.unit(300, "meters")
  20613. },
  20614. {
  20615. name: "Very careful floof",
  20616. height: math.unit(3200, "meters")
  20617. },
  20618. {
  20619. name: "The mega floof",
  20620. height: math.unit(36000, "meters")
  20621. },
  20622. {
  20623. name: "Giga-fur-Wicker",
  20624. height: math.unit(4800000, "meters")
  20625. },
  20626. {
  20627. name: "Licky world",
  20628. height: math.unit(20000000, "meters")
  20629. },
  20630. {
  20631. name: "Floofy cyan sun",
  20632. height: math.unit(1500000000, "meters")
  20633. },
  20634. {
  20635. name: "Milky Wicker",
  20636. height: math.unit(1000000000000000000000, "meters")
  20637. },
  20638. {
  20639. name: "The observing Wicker",
  20640. height: math.unit(999999999999999999999999999, "meters")
  20641. },
  20642. ]
  20643. ))
  20644. characterMakers.push(() => makeCharacter(
  20645. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20646. {
  20647. front: {
  20648. height: math.unit(5 + 9 / 12, "feet"),
  20649. weight: math.unit(150, "lb"),
  20650. name: "Front",
  20651. image: {
  20652. source: "./media/characters/arokha-sieyes/front.svg",
  20653. extra: 1425 / 1284,
  20654. bottom: 0.05
  20655. }
  20656. },
  20657. },
  20658. [
  20659. {
  20660. name: "Normal",
  20661. height: math.unit(5 + 9 / 12, "feet")
  20662. },
  20663. {
  20664. name: "Macro",
  20665. height: math.unit(30, "meters"),
  20666. default: true
  20667. },
  20668. ]
  20669. ))
  20670. characterMakers.push(() => makeCharacter(
  20671. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20672. {
  20673. front: {
  20674. height: math.unit(6, "feet"),
  20675. weight: math.unit(180, "lb"),
  20676. name: "Front",
  20677. image: {
  20678. source: "./media/characters/arokh-sieyes/front.svg",
  20679. extra: 1830 / 1769,
  20680. bottom: 0.01
  20681. }
  20682. },
  20683. },
  20684. [
  20685. {
  20686. name: "Normal",
  20687. height: math.unit(6, "feet")
  20688. },
  20689. {
  20690. name: "Macro",
  20691. height: math.unit(30, "meters"),
  20692. default: true
  20693. },
  20694. ]
  20695. ))
  20696. characterMakers.push(() => makeCharacter(
  20697. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  20698. {
  20699. side: {
  20700. height: math.unit(13 + 1 / 12, "feet"),
  20701. weight: math.unit(8.5, "tonnes"),
  20702. preyCapacity: math.unit(36, "people"),
  20703. name: "Side",
  20704. image: {
  20705. source: "./media/characters/goldeneye/side.svg",
  20706. extra: 1139/741,
  20707. bottom: 98/1237
  20708. }
  20709. },
  20710. front: {
  20711. height: math.unit(5.1, "feet"),
  20712. weight: math.unit(8.5, "tonnes"),
  20713. preyCapacity: math.unit(36, "people"),
  20714. name: "Front",
  20715. image: {
  20716. source: "./media/characters/goldeneye/front.svg",
  20717. extra: 635/365,
  20718. bottom: 598/1233
  20719. }
  20720. },
  20721. maw: {
  20722. height: math.unit(6.6, "feet"),
  20723. name: "Maw",
  20724. image: {
  20725. source: "./media/characters/goldeneye/maw.svg"
  20726. }
  20727. },
  20728. headFront: {
  20729. height: math.unit(8, "feet"),
  20730. name: "Head (Front)",
  20731. image: {
  20732. source: "./media/characters/goldeneye/head-front.svg"
  20733. }
  20734. },
  20735. headSide: {
  20736. height: math.unit(6, "feet"),
  20737. name: "Head (Side)",
  20738. image: {
  20739. source: "./media/characters/goldeneye/head-side.svg"
  20740. }
  20741. },
  20742. headBack: {
  20743. height: math.unit(8, "feet"),
  20744. name: "Head (Back)",
  20745. image: {
  20746. source: "./media/characters/goldeneye/head-back.svg"
  20747. }
  20748. },
  20749. paw: {
  20750. height: math.unit(3.4, "feet"),
  20751. name: "Paw",
  20752. image: {
  20753. source: "./media/characters/goldeneye/paw.svg"
  20754. }
  20755. },
  20756. toering: {
  20757. height: math.unit(0.45, "feet"),
  20758. name: "Toering",
  20759. image: {
  20760. source: "./media/characters/goldeneye/toering.svg"
  20761. }
  20762. },
  20763. eyes: {
  20764. height: math.unit(0.5, "feet"),
  20765. name: "Eyes",
  20766. image: {
  20767. source: "./media/characters/goldeneye/eyes.svg"
  20768. }
  20769. },
  20770. },
  20771. [
  20772. {
  20773. name: "Normal",
  20774. height: math.unit(13 + 1 / 12, "feet"),
  20775. default: true
  20776. },
  20777. ]
  20778. ))
  20779. characterMakers.push(() => makeCharacter(
  20780. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  20781. {
  20782. front: {
  20783. height: math.unit(6 + 1 / 12, "feet"),
  20784. weight: math.unit(210, "lb"),
  20785. name: "Front",
  20786. image: {
  20787. source: "./media/characters/leonardo-lycheborne/front.svg",
  20788. extra: 776/723,
  20789. bottom: 34/810
  20790. }
  20791. },
  20792. side: {
  20793. height: math.unit(6 + 1 / 12, "feet"),
  20794. weight: math.unit(210, "lb"),
  20795. name: "Side",
  20796. image: {
  20797. source: "./media/characters/leonardo-lycheborne/side.svg",
  20798. extra: 780/728,
  20799. bottom: 12/792
  20800. }
  20801. },
  20802. back: {
  20803. height: math.unit(6 + 1 / 12, "feet"),
  20804. weight: math.unit(210, "lb"),
  20805. name: "Back",
  20806. image: {
  20807. source: "./media/characters/leonardo-lycheborne/back.svg",
  20808. extra: 775/721,
  20809. bottom: 17/792
  20810. }
  20811. },
  20812. hand: {
  20813. height: math.unit(1.08, "feet"),
  20814. name: "Hand",
  20815. image: {
  20816. source: "./media/characters/leonardo-lycheborne/hand.svg"
  20817. }
  20818. },
  20819. foot: {
  20820. height: math.unit(1.32, "feet"),
  20821. name: "Foot",
  20822. image: {
  20823. source: "./media/characters/leonardo-lycheborne/foot.svg"
  20824. }
  20825. },
  20826. maw: {
  20827. height: math.unit(1, "feet"),
  20828. name: "Maw",
  20829. image: {
  20830. source: "./media/characters/leonardo-lycheborne/maw.svg"
  20831. }
  20832. },
  20833. were: {
  20834. height: math.unit(20, "feet"),
  20835. weight: math.unit(7800, "lb"),
  20836. name: "Were",
  20837. image: {
  20838. source: "./media/characters/leonardo-lycheborne/were.svg",
  20839. extra: 1224/1165,
  20840. bottom: 72/1296
  20841. }
  20842. },
  20843. feral: {
  20844. height: math.unit(7.5, "feet"),
  20845. weight: math.unit(600, "lb"),
  20846. name: "Feral",
  20847. image: {
  20848. source: "./media/characters/leonardo-lycheborne/feral.svg",
  20849. extra: 797/702,
  20850. bottom: 139/936
  20851. }
  20852. },
  20853. taur: {
  20854. height: math.unit(11, "feet"),
  20855. weight: math.unit(3300, "lb"),
  20856. name: "Taur",
  20857. image: {
  20858. source: "./media/characters/leonardo-lycheborne/taur.svg",
  20859. extra: 1271/1197,
  20860. bottom: 47/1318
  20861. }
  20862. },
  20863. barghest: {
  20864. height: math.unit(11, "feet"),
  20865. weight: math.unit(1300, "lb"),
  20866. name: "Barghest",
  20867. image: {
  20868. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  20869. extra: 1291/1204,
  20870. bottom: 37/1328
  20871. }
  20872. },
  20873. dick: {
  20874. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  20875. name: "Dick",
  20876. image: {
  20877. source: "./media/characters/leonardo-lycheborne/dick.svg"
  20878. }
  20879. },
  20880. dickWere: {
  20881. height: math.unit((20) / 3.8, "feet"),
  20882. name: "Dick (Were)",
  20883. image: {
  20884. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  20885. }
  20886. },
  20887. },
  20888. [
  20889. {
  20890. name: "Normal",
  20891. height: math.unit(6 + 1 / 12, "feet"),
  20892. default: true
  20893. },
  20894. ]
  20895. ))
  20896. characterMakers.push(() => makeCharacter(
  20897. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  20898. {
  20899. front: {
  20900. height: math.unit(10, "feet"),
  20901. weight: math.unit(350, "lb"),
  20902. name: "Front",
  20903. image: {
  20904. source: "./media/characters/jet/front.svg",
  20905. extra: 2050 / 1980,
  20906. bottom: 0.013
  20907. }
  20908. },
  20909. back: {
  20910. height: math.unit(10, "feet"),
  20911. weight: math.unit(350, "lb"),
  20912. name: "Back",
  20913. image: {
  20914. source: "./media/characters/jet/back.svg",
  20915. extra: 2050 / 1980,
  20916. bottom: 0.013
  20917. }
  20918. },
  20919. },
  20920. [
  20921. {
  20922. name: "Micro",
  20923. height: math.unit(6, "inches")
  20924. },
  20925. {
  20926. name: "Normal",
  20927. height: math.unit(10, "feet"),
  20928. default: true
  20929. },
  20930. {
  20931. name: "Macro",
  20932. height: math.unit(100, "feet")
  20933. },
  20934. ]
  20935. ))
  20936. characterMakers.push(() => makeCharacter(
  20937. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  20938. {
  20939. front: {
  20940. height: math.unit(15, "feet"),
  20941. weight: math.unit(2800, "lb"),
  20942. name: "Front",
  20943. image: {
  20944. source: "./media/characters/tanarath/front.svg",
  20945. extra: 2392 / 2220,
  20946. bottom: 0.03
  20947. }
  20948. },
  20949. back: {
  20950. height: math.unit(15, "feet"),
  20951. weight: math.unit(2800, "lb"),
  20952. name: "Back",
  20953. image: {
  20954. source: "./media/characters/tanarath/back.svg",
  20955. extra: 2392 / 2220,
  20956. bottom: 0.03
  20957. }
  20958. },
  20959. },
  20960. [
  20961. {
  20962. name: "Normal",
  20963. height: math.unit(15, "feet"),
  20964. default: true
  20965. },
  20966. ]
  20967. ))
  20968. characterMakers.push(() => makeCharacter(
  20969. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  20970. {
  20971. front: {
  20972. height: math.unit(7 + 1 / 12, "feet"),
  20973. weight: math.unit(175, "lb"),
  20974. name: "Front",
  20975. image: {
  20976. source: "./media/characters/patty-cattybatty/front.svg",
  20977. extra: 908 / 874,
  20978. bottom: 0.025
  20979. }
  20980. },
  20981. },
  20982. [
  20983. {
  20984. name: "Micro",
  20985. height: math.unit(1, "inch")
  20986. },
  20987. {
  20988. name: "Normal",
  20989. height: math.unit(7 + 1 / 12, "feet")
  20990. },
  20991. {
  20992. name: "Mini Macro",
  20993. height: math.unit(155, "feet")
  20994. },
  20995. {
  20996. name: "Macro",
  20997. height: math.unit(1077, "feet")
  20998. },
  20999. {
  21000. name: "Mega Macro",
  21001. height: math.unit(47650, "feet"),
  21002. default: true
  21003. },
  21004. {
  21005. name: "Giga Macro",
  21006. height: math.unit(440, "miles")
  21007. },
  21008. {
  21009. name: "Tera Macro",
  21010. height: math.unit(8700, "miles")
  21011. },
  21012. {
  21013. name: "Planetary Macro",
  21014. height: math.unit(32700, "miles")
  21015. },
  21016. {
  21017. name: "Solar Macro",
  21018. height: math.unit(550000, "miles")
  21019. },
  21020. {
  21021. name: "Celestial Macro",
  21022. height: math.unit(2.5, "AU")
  21023. },
  21024. ]
  21025. ))
  21026. characterMakers.push(() => makeCharacter(
  21027. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  21028. {
  21029. front: {
  21030. height: math.unit(4 + 5 / 12, "feet"),
  21031. weight: math.unit(90, "lb"),
  21032. name: "Front",
  21033. image: {
  21034. source: "./media/characters/cappu/front.svg",
  21035. extra: 1247 / 1152,
  21036. bottom: 0.012
  21037. }
  21038. },
  21039. },
  21040. [
  21041. {
  21042. name: "Normal",
  21043. height: math.unit(4 + 5 / 12, "feet"),
  21044. default: true
  21045. },
  21046. ]
  21047. ))
  21048. characterMakers.push(() => makeCharacter(
  21049. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  21050. {
  21051. frontDressed: {
  21052. height: math.unit(70, "cm"),
  21053. weight: math.unit(6, "kg"),
  21054. name: "Front (Dressed)",
  21055. image: {
  21056. source: "./media/characters/sebi/front-dressed.svg",
  21057. extra: 713.5 / 686.5,
  21058. bottom: 0.003
  21059. }
  21060. },
  21061. front: {
  21062. height: math.unit(70, "cm"),
  21063. weight: math.unit(5, "kg"),
  21064. name: "Front",
  21065. image: {
  21066. source: "./media/characters/sebi/front.svg",
  21067. extra: 713.5 / 686.5,
  21068. bottom: 0.003
  21069. }
  21070. }
  21071. },
  21072. [
  21073. {
  21074. name: "Normal",
  21075. height: math.unit(70, "cm"),
  21076. default: true
  21077. },
  21078. {
  21079. name: "Macro",
  21080. height: math.unit(8, "meters")
  21081. },
  21082. ]
  21083. ))
  21084. characterMakers.push(() => makeCharacter(
  21085. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21086. {
  21087. front: {
  21088. height: math.unit(6, "feet"),
  21089. weight: math.unit(150, "lb"),
  21090. name: "Front",
  21091. image: {
  21092. source: "./media/characters/typhek/front.svg",
  21093. extra: 1948 / 1929,
  21094. bottom: 0.025
  21095. }
  21096. },
  21097. side: {
  21098. height: math.unit(6, "feet"),
  21099. weight: math.unit(150, "lb"),
  21100. name: "Side",
  21101. image: {
  21102. source: "./media/characters/typhek/side.svg",
  21103. extra: 2034 / 2010,
  21104. bottom: 0.003
  21105. }
  21106. },
  21107. back: {
  21108. height: math.unit(6, "feet"),
  21109. weight: math.unit(150, "lb"),
  21110. name: "Back",
  21111. image: {
  21112. source: "./media/characters/typhek/back.svg",
  21113. extra: 2005 / 1978,
  21114. bottom: 0.004
  21115. }
  21116. },
  21117. palm: {
  21118. height: math.unit(1.2, "feet"),
  21119. name: "Palm",
  21120. image: {
  21121. source: "./media/characters/typhek/palm.svg"
  21122. }
  21123. },
  21124. fist: {
  21125. height: math.unit(1.1, "feet"),
  21126. name: "Fist",
  21127. image: {
  21128. source: "./media/characters/typhek/fist.svg"
  21129. }
  21130. },
  21131. foot: {
  21132. height: math.unit(1.57, "feet"),
  21133. name: "Foot",
  21134. image: {
  21135. source: "./media/characters/typhek/foot.svg"
  21136. }
  21137. },
  21138. sole: {
  21139. height: math.unit(2.05, "feet"),
  21140. name: "Sole",
  21141. image: {
  21142. source: "./media/characters/typhek/sole.svg"
  21143. }
  21144. },
  21145. },
  21146. [
  21147. {
  21148. name: "Macro",
  21149. height: math.unit(40, "stories"),
  21150. default: true
  21151. },
  21152. {
  21153. name: "Megamacro",
  21154. height: math.unit(1, "mile")
  21155. },
  21156. {
  21157. name: "Gigamacro",
  21158. height: math.unit(4000, "solarradii")
  21159. },
  21160. {
  21161. name: "Universal",
  21162. height: math.unit(1.1, "universes")
  21163. }
  21164. ]
  21165. ))
  21166. characterMakers.push(() => makeCharacter(
  21167. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  21168. {
  21169. side: {
  21170. height: math.unit(5 + 7 / 12, "feet"),
  21171. weight: math.unit(150, "lb"),
  21172. name: "Side",
  21173. image: {
  21174. source: "./media/characters/kassy/side.svg",
  21175. extra: 1280 / 1225,
  21176. bottom: 0.002
  21177. }
  21178. },
  21179. front: {
  21180. height: math.unit(5 + 7 / 12, "feet"),
  21181. weight: math.unit(150, "lb"),
  21182. name: "Front",
  21183. image: {
  21184. source: "./media/characters/kassy/front.svg",
  21185. extra: 1280 / 1225,
  21186. bottom: 0.025
  21187. }
  21188. },
  21189. back: {
  21190. height: math.unit(5 + 7 / 12, "feet"),
  21191. weight: math.unit(150, "lb"),
  21192. name: "Back",
  21193. image: {
  21194. source: "./media/characters/kassy/back.svg",
  21195. extra: 1280 / 1225,
  21196. bottom: 0.002
  21197. }
  21198. },
  21199. foot: {
  21200. height: math.unit(1.266, "feet"),
  21201. name: "Foot",
  21202. image: {
  21203. source: "./media/characters/kassy/foot.svg"
  21204. }
  21205. },
  21206. },
  21207. [
  21208. {
  21209. name: "Normal",
  21210. height: math.unit(5 + 7 / 12, "feet")
  21211. },
  21212. {
  21213. name: "Macro",
  21214. height: math.unit(137, "feet"),
  21215. default: true
  21216. },
  21217. {
  21218. name: "Megamacro",
  21219. height: math.unit(1, "mile")
  21220. },
  21221. ]
  21222. ))
  21223. characterMakers.push(() => makeCharacter(
  21224. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  21225. {
  21226. front: {
  21227. height: math.unit(6 + 1 / 12, "feet"),
  21228. weight: math.unit(200, "lb"),
  21229. name: "Front",
  21230. image: {
  21231. source: "./media/characters/neil/front.svg",
  21232. extra: 1326 / 1250,
  21233. bottom: 0.023
  21234. }
  21235. },
  21236. },
  21237. [
  21238. {
  21239. name: "Normal",
  21240. height: math.unit(6 + 1 / 12, "feet"),
  21241. default: true
  21242. },
  21243. {
  21244. name: "Macro",
  21245. height: math.unit(200, "feet")
  21246. },
  21247. ]
  21248. ))
  21249. characterMakers.push(() => makeCharacter(
  21250. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  21251. {
  21252. front: {
  21253. height: math.unit(5 + 9 / 12, "feet"),
  21254. weight: math.unit(190, "lb"),
  21255. name: "Front",
  21256. image: {
  21257. source: "./media/characters/atticus/front.svg",
  21258. extra: 2934 / 2785,
  21259. bottom: 0.025
  21260. }
  21261. },
  21262. },
  21263. [
  21264. {
  21265. name: "Normal",
  21266. height: math.unit(5 + 9 / 12, "feet"),
  21267. default: true
  21268. },
  21269. {
  21270. name: "Macro",
  21271. height: math.unit(180, "feet")
  21272. },
  21273. ]
  21274. ))
  21275. characterMakers.push(() => makeCharacter(
  21276. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  21277. {
  21278. side: {
  21279. height: math.unit(9, "feet"),
  21280. weight: math.unit(650, "lb"),
  21281. name: "Side",
  21282. image: {
  21283. source: "./media/characters/milo/side.svg",
  21284. extra: 2644 / 2310,
  21285. bottom: 0.032
  21286. }
  21287. },
  21288. },
  21289. [
  21290. {
  21291. name: "Normal",
  21292. height: math.unit(9, "feet"),
  21293. default: true
  21294. },
  21295. {
  21296. name: "Macro",
  21297. height: math.unit(300, "feet")
  21298. },
  21299. ]
  21300. ))
  21301. characterMakers.push(() => makeCharacter(
  21302. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  21303. {
  21304. side: {
  21305. height: math.unit(8, "meters"),
  21306. weight: math.unit(90000, "kg"),
  21307. name: "Side",
  21308. image: {
  21309. source: "./media/characters/ijzer/side.svg",
  21310. extra: 2756 / 1600,
  21311. bottom: 0.01
  21312. }
  21313. },
  21314. },
  21315. [
  21316. {
  21317. name: "Small",
  21318. height: math.unit(3, "meters")
  21319. },
  21320. {
  21321. name: "Normal",
  21322. height: math.unit(8, "meters"),
  21323. default: true
  21324. },
  21325. {
  21326. name: "Normal+",
  21327. height: math.unit(10, "meters")
  21328. },
  21329. {
  21330. name: "Bigger",
  21331. height: math.unit(24, "meters")
  21332. },
  21333. {
  21334. name: "Huge",
  21335. height: math.unit(80, "meters")
  21336. },
  21337. ]
  21338. ))
  21339. characterMakers.push(() => makeCharacter(
  21340. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  21341. {
  21342. front: {
  21343. height: math.unit(6 + 2 / 12, "feet"),
  21344. weight: math.unit(153, "lb"),
  21345. name: "Front",
  21346. image: {
  21347. source: "./media/characters/luca-cervicum/front.svg",
  21348. extra: 370 / 327,
  21349. bottom: 0.015
  21350. }
  21351. },
  21352. back: {
  21353. height: math.unit(6 + 2 / 12, "feet"),
  21354. weight: math.unit(153, "lb"),
  21355. name: "Back",
  21356. image: {
  21357. source: "./media/characters/luca-cervicum/back.svg",
  21358. extra: 367 / 333,
  21359. bottom: 0.005
  21360. }
  21361. },
  21362. frontGear: {
  21363. height: math.unit(6 + 2 / 12, "feet"),
  21364. weight: math.unit(173, "lb"),
  21365. name: "Front (Gear)",
  21366. image: {
  21367. source: "./media/characters/luca-cervicum/front-gear.svg",
  21368. extra: 377 / 333,
  21369. bottom: 0.006
  21370. }
  21371. },
  21372. },
  21373. [
  21374. {
  21375. name: "Normal",
  21376. height: math.unit(6 + 2 / 12, "feet"),
  21377. default: true
  21378. },
  21379. ]
  21380. ))
  21381. characterMakers.push(() => makeCharacter(
  21382. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  21383. {
  21384. front: {
  21385. height: math.unit(6 + 1 / 12, "feet"),
  21386. weight: math.unit(304, "lb"),
  21387. name: "Front",
  21388. image: {
  21389. source: "./media/characters/oliver/front.svg",
  21390. extra: 157 / 143,
  21391. bottom: 0.08
  21392. }
  21393. },
  21394. },
  21395. [
  21396. {
  21397. name: "Normal",
  21398. height: math.unit(6 + 1 / 12, "feet"),
  21399. default: true
  21400. },
  21401. ]
  21402. ))
  21403. characterMakers.push(() => makeCharacter(
  21404. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  21405. {
  21406. front: {
  21407. height: math.unit(5 + 7 / 12, "feet"),
  21408. weight: math.unit(140, "lb"),
  21409. name: "Front",
  21410. image: {
  21411. source: "./media/characters/shane/front.svg",
  21412. extra: 304 / 289,
  21413. bottom: 0.005
  21414. }
  21415. },
  21416. },
  21417. [
  21418. {
  21419. name: "Normal",
  21420. height: math.unit(5 + 7 / 12, "feet"),
  21421. default: true
  21422. },
  21423. ]
  21424. ))
  21425. characterMakers.push(() => makeCharacter(
  21426. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  21427. {
  21428. front: {
  21429. height: math.unit(5 + 9 / 12, "feet"),
  21430. weight: math.unit(178, "lb"),
  21431. name: "Front",
  21432. image: {
  21433. source: "./media/characters/shin/front.svg",
  21434. extra: 159 / 151,
  21435. bottom: 0.015
  21436. }
  21437. },
  21438. },
  21439. [
  21440. {
  21441. name: "Normal",
  21442. height: math.unit(5 + 9 / 12, "feet"),
  21443. default: true
  21444. },
  21445. ]
  21446. ))
  21447. characterMakers.push(() => makeCharacter(
  21448. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  21449. {
  21450. front: {
  21451. height: math.unit(5 + 10 / 12, "feet"),
  21452. weight: math.unit(168, "lb"),
  21453. name: "Front",
  21454. image: {
  21455. source: "./media/characters/xerxes/front.svg",
  21456. extra: 282 / 260,
  21457. bottom: 0.045
  21458. }
  21459. },
  21460. },
  21461. [
  21462. {
  21463. name: "Normal",
  21464. height: math.unit(5 + 10 / 12, "feet"),
  21465. default: true
  21466. },
  21467. ]
  21468. ))
  21469. characterMakers.push(() => makeCharacter(
  21470. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  21471. {
  21472. front: {
  21473. height: math.unit(6 + 7 / 12, "feet"),
  21474. weight: math.unit(208, "lb"),
  21475. name: "Front",
  21476. image: {
  21477. source: "./media/characters/chaska/front.svg",
  21478. extra: 332 / 319,
  21479. bottom: 0.015
  21480. }
  21481. },
  21482. },
  21483. [
  21484. {
  21485. name: "Normal",
  21486. height: math.unit(6 + 7 / 12, "feet"),
  21487. default: true
  21488. },
  21489. ]
  21490. ))
  21491. characterMakers.push(() => makeCharacter(
  21492. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  21493. {
  21494. front: {
  21495. height: math.unit(5 + 8 / 12, "feet"),
  21496. weight: math.unit(208, "lb"),
  21497. name: "Front",
  21498. image: {
  21499. source: "./media/characters/enuk/front.svg",
  21500. extra: 437 / 406,
  21501. bottom: 0.02
  21502. }
  21503. },
  21504. },
  21505. [
  21506. {
  21507. name: "Normal",
  21508. height: math.unit(5 + 8 / 12, "feet"),
  21509. default: true
  21510. },
  21511. ]
  21512. ))
  21513. characterMakers.push(() => makeCharacter(
  21514. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  21515. {
  21516. front: {
  21517. height: math.unit(5 + 10 / 12, "feet"),
  21518. weight: math.unit(252, "lb"),
  21519. name: "Front",
  21520. image: {
  21521. source: "./media/characters/bruun/front.svg",
  21522. extra: 197 / 187,
  21523. bottom: 0.012
  21524. }
  21525. },
  21526. },
  21527. [
  21528. {
  21529. name: "Normal",
  21530. height: math.unit(5 + 10 / 12, "feet"),
  21531. default: true
  21532. },
  21533. ]
  21534. ))
  21535. characterMakers.push(() => makeCharacter(
  21536. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  21537. {
  21538. front: {
  21539. height: math.unit(6 + 10 / 12, "feet"),
  21540. weight: math.unit(255, "lb"),
  21541. name: "Front",
  21542. image: {
  21543. source: "./media/characters/alexeev/front.svg",
  21544. extra: 213 / 200,
  21545. bottom: 0.05
  21546. }
  21547. },
  21548. },
  21549. [
  21550. {
  21551. name: "Normal",
  21552. height: math.unit(6 + 10 / 12, "feet"),
  21553. default: true
  21554. },
  21555. ]
  21556. ))
  21557. characterMakers.push(() => makeCharacter(
  21558. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  21559. {
  21560. front: {
  21561. height: math.unit(2 + 8 / 12, "feet"),
  21562. weight: math.unit(22, "lb"),
  21563. name: "Front",
  21564. image: {
  21565. source: "./media/characters/evelyn/front.svg",
  21566. extra: 208 / 180
  21567. }
  21568. },
  21569. },
  21570. [
  21571. {
  21572. name: "Normal",
  21573. height: math.unit(2 + 8 / 12, "feet"),
  21574. default: true
  21575. },
  21576. ]
  21577. ))
  21578. characterMakers.push(() => makeCharacter(
  21579. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  21580. {
  21581. front: {
  21582. height: math.unit(5 + 9 / 12, "feet"),
  21583. weight: math.unit(139, "lb"),
  21584. name: "Front",
  21585. image: {
  21586. source: "./media/characters/inca/front.svg",
  21587. extra: 294 / 291,
  21588. bottom: 0.03
  21589. }
  21590. },
  21591. },
  21592. [
  21593. {
  21594. name: "Normal",
  21595. height: math.unit(5 + 9 / 12, "feet"),
  21596. default: true
  21597. },
  21598. ]
  21599. ))
  21600. characterMakers.push(() => makeCharacter(
  21601. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  21602. {
  21603. front: {
  21604. height: math.unit(6 + 3 / 12, "feet"),
  21605. weight: math.unit(185, "lb"),
  21606. name: "Front",
  21607. image: {
  21608. source: "./media/characters/mera/front.svg",
  21609. extra: 291 / 277,
  21610. bottom: 0.03
  21611. }
  21612. },
  21613. },
  21614. [
  21615. {
  21616. name: "Normal",
  21617. height: math.unit(6 + 3 / 12, "feet"),
  21618. default: true
  21619. },
  21620. ]
  21621. ))
  21622. characterMakers.push(() => makeCharacter(
  21623. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  21624. {
  21625. front: {
  21626. height: math.unit(6 + 7 / 12, "feet"),
  21627. weight: math.unit(160, "lb"),
  21628. name: "Front",
  21629. image: {
  21630. source: "./media/characters/ceres/front.svg",
  21631. extra: 1023 / 950,
  21632. bottom: 0.027
  21633. }
  21634. },
  21635. back: {
  21636. height: math.unit(6 + 7 / 12, "feet"),
  21637. weight: math.unit(160, "lb"),
  21638. name: "Back",
  21639. image: {
  21640. source: "./media/characters/ceres/back.svg",
  21641. extra: 1023 / 950
  21642. }
  21643. },
  21644. },
  21645. [
  21646. {
  21647. name: "Normal",
  21648. height: math.unit(6 + 7 / 12, "feet"),
  21649. default: true
  21650. },
  21651. ]
  21652. ))
  21653. characterMakers.push(() => makeCharacter(
  21654. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  21655. {
  21656. front: {
  21657. height: math.unit(5 + 10 / 12, "feet"),
  21658. weight: math.unit(150, "lb"),
  21659. name: "Front",
  21660. image: {
  21661. source: "./media/characters/kris/front.svg",
  21662. extra: 885 / 803,
  21663. bottom: 0.03
  21664. }
  21665. },
  21666. },
  21667. [
  21668. {
  21669. name: "Normal",
  21670. height: math.unit(5 + 10 / 12, "feet"),
  21671. default: true
  21672. },
  21673. ]
  21674. ))
  21675. characterMakers.push(() => makeCharacter(
  21676. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  21677. {
  21678. front: {
  21679. height: math.unit(7, "feet"),
  21680. weight: math.unit(120, "kg"),
  21681. name: "Front",
  21682. image: {
  21683. source: "./media/characters/taluthus/front.svg",
  21684. extra: 903 / 833,
  21685. bottom: 0.015
  21686. }
  21687. },
  21688. },
  21689. [
  21690. {
  21691. name: "Normal",
  21692. height: math.unit(7, "feet"),
  21693. default: true
  21694. },
  21695. {
  21696. name: "Macro",
  21697. height: math.unit(300, "feet")
  21698. },
  21699. ]
  21700. ))
  21701. characterMakers.push(() => makeCharacter(
  21702. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  21703. {
  21704. front: {
  21705. height: math.unit(5 + 9 / 12, "feet"),
  21706. weight: math.unit(145, "lb"),
  21707. name: "Front",
  21708. image: {
  21709. source: "./media/characters/dawn/front.svg",
  21710. extra: 2094 / 2016,
  21711. bottom: 0.025
  21712. }
  21713. },
  21714. back: {
  21715. height: math.unit(5 + 9 / 12, "feet"),
  21716. weight: math.unit(160, "lb"),
  21717. name: "Back",
  21718. image: {
  21719. source: "./media/characters/dawn/back.svg",
  21720. extra: 2112 / 2080,
  21721. bottom: 0.005
  21722. }
  21723. },
  21724. },
  21725. [
  21726. {
  21727. name: "Normal",
  21728. height: math.unit(6 + 7 / 12, "feet"),
  21729. default: true
  21730. },
  21731. ]
  21732. ))
  21733. characterMakers.push(() => makeCharacter(
  21734. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  21735. {
  21736. anthro: {
  21737. height: math.unit(8 + 3 / 12, "feet"),
  21738. weight: math.unit(450, "lb"),
  21739. name: "Anthro",
  21740. image: {
  21741. source: "./media/characters/arador/anthro.svg",
  21742. extra: 1835 / 1718,
  21743. bottom: 0.025
  21744. }
  21745. },
  21746. feral: {
  21747. height: math.unit(4, "feet"),
  21748. weight: math.unit(200, "lb"),
  21749. name: "Feral",
  21750. image: {
  21751. source: "./media/characters/arador/feral.svg",
  21752. extra: 1683 / 1514,
  21753. bottom: 0.07
  21754. }
  21755. },
  21756. },
  21757. [
  21758. {
  21759. name: "Normal",
  21760. height: math.unit(8 + 3 / 12, "feet")
  21761. },
  21762. {
  21763. name: "Macro",
  21764. height: math.unit(82.5, "feet"),
  21765. default: true
  21766. },
  21767. ]
  21768. ))
  21769. characterMakers.push(() => makeCharacter(
  21770. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  21771. {
  21772. front: {
  21773. height: math.unit(5 + 10 / 12, "feet"),
  21774. weight: math.unit(125, "lb"),
  21775. name: "Front",
  21776. image: {
  21777. source: "./media/characters/dharsi/front.svg",
  21778. extra: 716 / 630,
  21779. bottom: 0.035
  21780. }
  21781. },
  21782. },
  21783. [
  21784. {
  21785. name: "Nano",
  21786. height: math.unit(100, "nm")
  21787. },
  21788. {
  21789. name: "Micro",
  21790. height: math.unit(2, "inches")
  21791. },
  21792. {
  21793. name: "Normal",
  21794. height: math.unit(5 + 10 / 12, "feet"),
  21795. default: true
  21796. },
  21797. {
  21798. name: "Macro",
  21799. height: math.unit(1000, "feet")
  21800. },
  21801. {
  21802. name: "Megamacro",
  21803. height: math.unit(10, "miles")
  21804. },
  21805. {
  21806. name: "Gigamacro",
  21807. height: math.unit(3000, "miles")
  21808. },
  21809. {
  21810. name: "Teramacro",
  21811. height: math.unit(500000, "miles")
  21812. },
  21813. {
  21814. name: "Teramacro+",
  21815. height: math.unit(30, "galaxies")
  21816. },
  21817. ]
  21818. ))
  21819. characterMakers.push(() => makeCharacter(
  21820. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  21821. {
  21822. front: {
  21823. height: math.unit(6, "feet"),
  21824. weight: math.unit(150, "lb"),
  21825. name: "Front",
  21826. image: {
  21827. source: "./media/characters/deathy/front.svg",
  21828. extra: 1552 / 1463,
  21829. bottom: 0.025
  21830. }
  21831. },
  21832. side: {
  21833. height: math.unit(6, "feet"),
  21834. weight: math.unit(150, "lb"),
  21835. name: "Side",
  21836. image: {
  21837. source: "./media/characters/deathy/side.svg",
  21838. extra: 1604 / 1455,
  21839. bottom: 0.025
  21840. }
  21841. },
  21842. back: {
  21843. height: math.unit(6, "feet"),
  21844. weight: math.unit(150, "lb"),
  21845. name: "Back",
  21846. image: {
  21847. source: "./media/characters/deathy/back.svg",
  21848. extra: 1580 / 1463,
  21849. bottom: 0.005
  21850. }
  21851. },
  21852. },
  21853. [
  21854. {
  21855. name: "Micro",
  21856. height: math.unit(5, "millimeters")
  21857. },
  21858. {
  21859. name: "Normal",
  21860. height: math.unit(6 + 5 / 12, "feet"),
  21861. default: true
  21862. },
  21863. ]
  21864. ))
  21865. characterMakers.push(() => makeCharacter(
  21866. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  21867. {
  21868. front: {
  21869. height: math.unit(16, "feet"),
  21870. weight: math.unit(4000, "lb"),
  21871. name: "Front",
  21872. image: {
  21873. source: "./media/characters/juniper/front.svg",
  21874. bottom: 0.04
  21875. }
  21876. },
  21877. },
  21878. [
  21879. {
  21880. name: "Normal",
  21881. height: math.unit(16, "feet"),
  21882. default: true
  21883. },
  21884. ]
  21885. ))
  21886. characterMakers.push(() => makeCharacter(
  21887. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  21888. {
  21889. front: {
  21890. height: math.unit(6, "feet"),
  21891. weight: math.unit(150, "lb"),
  21892. name: "Front",
  21893. image: {
  21894. source: "./media/characters/hipster/front.svg",
  21895. extra: 1312 / 1209,
  21896. bottom: 0.025
  21897. }
  21898. },
  21899. back: {
  21900. height: math.unit(6, "feet"),
  21901. weight: math.unit(150, "lb"),
  21902. name: "Back",
  21903. image: {
  21904. source: "./media/characters/hipster/back.svg",
  21905. extra: 1281 / 1196,
  21906. bottom: 0.01
  21907. }
  21908. },
  21909. },
  21910. [
  21911. {
  21912. name: "Micro",
  21913. height: math.unit(1, "mm")
  21914. },
  21915. {
  21916. name: "Normal",
  21917. height: math.unit(4, "inches"),
  21918. default: true
  21919. },
  21920. {
  21921. name: "Macro",
  21922. height: math.unit(500, "feet")
  21923. },
  21924. {
  21925. name: "Megamacro",
  21926. height: math.unit(1000, "miles")
  21927. },
  21928. ]
  21929. ))
  21930. characterMakers.push(() => makeCharacter(
  21931. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  21932. {
  21933. front: {
  21934. height: math.unit(6, "feet"),
  21935. weight: math.unit(150, "lb"),
  21936. name: "Front",
  21937. image: {
  21938. source: "./media/characters/tendirmuldr/front.svg",
  21939. extra: 1878 / 1772,
  21940. bottom: 0.015
  21941. }
  21942. },
  21943. },
  21944. [
  21945. {
  21946. name: "Megamacro",
  21947. height: math.unit(1500, "miles"),
  21948. default: true
  21949. },
  21950. ]
  21951. ))
  21952. characterMakers.push(() => makeCharacter(
  21953. { name: "Mort", species: ["demon"], tags: ["feral"] },
  21954. {
  21955. front: {
  21956. height: math.unit(14, "feet"),
  21957. weight: math.unit(12000, "lb"),
  21958. name: "Front",
  21959. image: {
  21960. source: "./media/characters/mort/front.svg",
  21961. extra: 365 / 318,
  21962. bottom: 0.01
  21963. }
  21964. },
  21965. side: {
  21966. height: math.unit(14, "feet"),
  21967. weight: math.unit(12000, "lb"),
  21968. name: "Side",
  21969. image: {
  21970. source: "./media/characters/mort/side.svg",
  21971. extra: 365 / 318,
  21972. bottom: 0.052
  21973. },
  21974. default: true
  21975. },
  21976. back: {
  21977. height: math.unit(14, "feet"),
  21978. weight: math.unit(12000, "lb"),
  21979. name: "Back",
  21980. image: {
  21981. source: "./media/characters/mort/back.svg",
  21982. extra: 371 / 332,
  21983. bottom: 0.18
  21984. }
  21985. },
  21986. },
  21987. [
  21988. {
  21989. name: "Normal",
  21990. height: math.unit(14, "feet"),
  21991. default: true
  21992. },
  21993. ]
  21994. ))
  21995. characterMakers.push(() => makeCharacter(
  21996. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  21997. {
  21998. front: {
  21999. height: math.unit(8, "feet"),
  22000. weight: math.unit(1, "ton"),
  22001. name: "Front",
  22002. image: {
  22003. source: "./media/characters/lycoa/front.svg",
  22004. extra: 1836/1728,
  22005. bottom: 81/1917
  22006. }
  22007. },
  22008. back: {
  22009. height: math.unit(8, "feet"),
  22010. weight: math.unit(1, "ton"),
  22011. name: "Back",
  22012. image: {
  22013. source: "./media/characters/lycoa/back.svg",
  22014. extra: 1785/1720,
  22015. bottom: 91/1876
  22016. }
  22017. },
  22018. head: {
  22019. height: math.unit(1.6243, "feet"),
  22020. name: "Head",
  22021. image: {
  22022. source: "./media/characters/lycoa/head.svg",
  22023. extra: 1011/782,
  22024. bottom: 0/1011
  22025. }
  22026. },
  22027. tailmaw: {
  22028. height: math.unit(1.9, "feet"),
  22029. name: "Tailmaw",
  22030. image: {
  22031. source: "./media/characters/lycoa/tailmaw.svg"
  22032. }
  22033. },
  22034. tentacles: {
  22035. height: math.unit(2.1, "feet"),
  22036. name: "Tentacles",
  22037. image: {
  22038. source: "./media/characters/lycoa/tentacles.svg"
  22039. }
  22040. },
  22041. dick: {
  22042. height: math.unit(1.73, "feet"),
  22043. name: "Dick",
  22044. image: {
  22045. source: "./media/characters/lycoa/dick.svg"
  22046. }
  22047. },
  22048. },
  22049. [
  22050. {
  22051. name: "Normal",
  22052. height: math.unit(8, "feet"),
  22053. default: true
  22054. },
  22055. {
  22056. name: "Macro",
  22057. height: math.unit(30, "feet")
  22058. },
  22059. ]
  22060. ))
  22061. characterMakers.push(() => makeCharacter(
  22062. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  22063. {
  22064. front: {
  22065. height: math.unit(4 + 2 / 12, "feet"),
  22066. weight: math.unit(70, "lb"),
  22067. name: "Front",
  22068. image: {
  22069. source: "./media/characters/naldara/front.svg",
  22070. extra: 1664/1387,
  22071. bottom: 81/1745
  22072. },
  22073. form: "anthro",
  22074. default: true
  22075. },
  22076. naga: {
  22077. height: math.unit(20, "feet"),
  22078. weight: math.unit(15000, "kg"),
  22079. name: "Front",
  22080. image: {
  22081. source: "./media/characters/naldara/naga.svg",
  22082. extra: 1590/1396,
  22083. bottom: 285/1875
  22084. },
  22085. form: "naga",
  22086. default: true
  22087. },
  22088. },
  22089. [
  22090. {
  22091. name: "Normal",
  22092. height: math.unit(4 + 2 / 12, "feet"),
  22093. form: "anthro",
  22094. default: true
  22095. },
  22096. {
  22097. name: "Normal",
  22098. height: math.unit(20, "feet"),
  22099. form: "naga",
  22100. default: true
  22101. },
  22102. ],
  22103. {
  22104. "anthro": {
  22105. name: "Anthro",
  22106. default: true
  22107. },
  22108. "naga": {
  22109. name: "Naga"
  22110. }
  22111. }
  22112. ))
  22113. characterMakers.push(() => makeCharacter(
  22114. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  22115. {
  22116. front: {
  22117. height: math.unit(13 + 7 / 12, "feet"),
  22118. weight: math.unit(1500, "lb"),
  22119. name: "Front",
  22120. image: {
  22121. source: "./media/characters/briar/front.svg",
  22122. extra: 1223/1157,
  22123. bottom: 123/1346
  22124. }
  22125. },
  22126. },
  22127. [
  22128. {
  22129. name: "Normal",
  22130. height: math.unit(13 + 7 / 12, "feet"),
  22131. default: true
  22132. },
  22133. ]
  22134. ))
  22135. characterMakers.push(() => makeCharacter(
  22136. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  22137. {
  22138. side: {
  22139. height: math.unit(16, "feet"),
  22140. weight: math.unit(500, "lb"),
  22141. name: "Side",
  22142. image: {
  22143. source: "./media/characters/vanguard/side.svg",
  22144. extra: 1022/914,
  22145. bottom: 30/1052
  22146. }
  22147. },
  22148. sideAlt: {
  22149. height: math.unit(10, "feet"),
  22150. weight: math.unit(500, "lb"),
  22151. name: "Side (Alt)",
  22152. image: {
  22153. source: "./media/characters/vanguard/side-alt.svg",
  22154. extra: 502 / 425,
  22155. bottom: 0.087
  22156. }
  22157. },
  22158. },
  22159. [
  22160. {
  22161. name: "Normal",
  22162. height: math.unit(17.71, "feet"),
  22163. default: true
  22164. },
  22165. ]
  22166. ))
  22167. characterMakers.push(() => makeCharacter(
  22168. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  22169. {
  22170. front: {
  22171. height: math.unit(7.5, "feet"),
  22172. weight: math.unit(2, "lb"),
  22173. name: "Front",
  22174. image: {
  22175. source: "./media/characters/artemis/work-safe-front.svg",
  22176. extra: 1192 / 1075,
  22177. bottom: 0.07
  22178. },
  22179. form: "work-safe",
  22180. default: true
  22181. },
  22182. frontNsfw: {
  22183. height: math.unit(7.5, "feet"),
  22184. weight: math.unit(2, "lb"),
  22185. name: "Front",
  22186. image: {
  22187. source: "./media/characters/artemis/calibrating-front.svg",
  22188. extra: 1192 / 1075,
  22189. bottom: 0.07
  22190. },
  22191. form: "calibrating",
  22192. default: true
  22193. },
  22194. frontNsfwer: {
  22195. height: math.unit(7.5, "feet"),
  22196. weight: math.unit(2, "lb"),
  22197. name: "Front",
  22198. image: {
  22199. source: "./media/characters/artemis/oversize-load-front.svg",
  22200. extra: 1192 / 1075,
  22201. bottom: 0.07
  22202. },
  22203. form: "oversize-load",
  22204. default: true
  22205. },
  22206. side: {
  22207. height: math.unit(7.5, "feet"),
  22208. weight: math.unit(2, "lb"),
  22209. name: "Side",
  22210. image: {
  22211. source: "./media/characters/artemis/work-safe-side.svg",
  22212. extra: 1192 / 1075,
  22213. bottom: 0.07
  22214. },
  22215. form: "work-safe"
  22216. },
  22217. sideNsfw: {
  22218. height: math.unit(7.5, "feet"),
  22219. weight: math.unit(2, "lb"),
  22220. name: "Side",
  22221. image: {
  22222. source: "./media/characters/artemis/calibrating-side.svg",
  22223. extra: 1192 / 1075,
  22224. bottom: 0.07
  22225. },
  22226. form: "calibrating"
  22227. },
  22228. sideNsfwer: {
  22229. height: math.unit(7.5, "feet"),
  22230. weight: math.unit(2, "lb"),
  22231. name: "Side",
  22232. image: {
  22233. source: "./media/characters/artemis/oversize-load-side.svg",
  22234. extra: 1192 / 1075,
  22235. bottom: 0.07
  22236. },
  22237. form: "oversize-load"
  22238. },
  22239. maw: {
  22240. height: math.unit(1.1, "feet"),
  22241. name: "Maw",
  22242. image: {
  22243. source: "./media/characters/artemis/maw.svg"
  22244. },
  22245. form: "work-safe"
  22246. },
  22247. stomach: {
  22248. height: math.unit(0.95, "feet"),
  22249. name: "Stomach",
  22250. image: {
  22251. source: "./media/characters/artemis/stomach.svg"
  22252. },
  22253. form: "work-safe"
  22254. },
  22255. dickCanine: {
  22256. height: math.unit(1, "feet"),
  22257. name: "Dick (Canine)",
  22258. image: {
  22259. source: "./media/characters/artemis/dick-canine.svg"
  22260. },
  22261. form: "calibrating"
  22262. },
  22263. dickEquine: {
  22264. height: math.unit(0.85, "feet"),
  22265. name: "Dick (Equine)",
  22266. image: {
  22267. source: "./media/characters/artemis/dick-equine.svg"
  22268. },
  22269. form: "calibrating"
  22270. },
  22271. dickExotic: {
  22272. height: math.unit(0.85, "feet"),
  22273. name: "Dick (Exotic)",
  22274. image: {
  22275. source: "./media/characters/artemis/dick-exotic.svg"
  22276. },
  22277. form: "calibrating"
  22278. },
  22279. dickCanineBigger: {
  22280. height: math.unit(1 * 1.33, "feet"),
  22281. name: "Dick (Canine)",
  22282. image: {
  22283. source: "./media/characters/artemis/dick-canine.svg"
  22284. },
  22285. form: "oversize-load"
  22286. },
  22287. dickEquineBigger: {
  22288. height: math.unit(0.85 * 1.33, "feet"),
  22289. name: "Dick (Equine)",
  22290. image: {
  22291. source: "./media/characters/artemis/dick-equine.svg"
  22292. },
  22293. form: "oversize-load"
  22294. },
  22295. dickExoticBigger: {
  22296. height: math.unit(0.85 * 1.33, "feet"),
  22297. name: "Dick (Exotic)",
  22298. image: {
  22299. source: "./media/characters/artemis/dick-exotic.svg"
  22300. },
  22301. form: "oversize-load"
  22302. },
  22303. },
  22304. [
  22305. {
  22306. name: "Normal",
  22307. height: math.unit(7.5, "feet"),
  22308. form: "work-safe",
  22309. default: true
  22310. },
  22311. {
  22312. name: "Normal",
  22313. height: math.unit(7.5, "feet"),
  22314. form: "calibrating",
  22315. default: true
  22316. },
  22317. {
  22318. name: "Normal",
  22319. height: math.unit(7.5, "feet"),
  22320. form: "oversize-load",
  22321. default: true
  22322. },
  22323. {
  22324. name: "Enlarged",
  22325. height: math.unit(12, "feet"),
  22326. form: "work-safe",
  22327. },
  22328. {
  22329. name: "Enlarged",
  22330. height: math.unit(12, "feet"),
  22331. form: "calibrating",
  22332. },
  22333. {
  22334. name: "Enlarged",
  22335. height: math.unit(12, "feet"),
  22336. form: "oversize-load",
  22337. },
  22338. ],
  22339. {
  22340. "work-safe": {
  22341. name: "Work-Safe",
  22342. default: true
  22343. },
  22344. "calibrating": {
  22345. name: "Calibrating"
  22346. },
  22347. "oversize-load": {
  22348. name: "Oversize Load"
  22349. }
  22350. }
  22351. ))
  22352. characterMakers.push(() => makeCharacter(
  22353. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  22354. {
  22355. front: {
  22356. height: math.unit(5 + 3 / 12, "feet"),
  22357. weight: math.unit(160, "lb"),
  22358. name: "Front",
  22359. image: {
  22360. source: "./media/characters/kira/front.svg",
  22361. extra: 906 / 786,
  22362. bottom: 0.01
  22363. }
  22364. },
  22365. back: {
  22366. height: math.unit(5 + 3 / 12, "feet"),
  22367. weight: math.unit(160, "lb"),
  22368. name: "Back",
  22369. image: {
  22370. source: "./media/characters/kira/back.svg",
  22371. extra: 882 / 757,
  22372. bottom: 0.005
  22373. }
  22374. },
  22375. frontDressed: {
  22376. height: math.unit(5 + 3 / 12, "feet"),
  22377. weight: math.unit(160, "lb"),
  22378. name: "Front (Dressed)",
  22379. image: {
  22380. source: "./media/characters/kira/front-dressed.svg",
  22381. extra: 906 / 786,
  22382. bottom: 0.01
  22383. }
  22384. },
  22385. beans: {
  22386. height: math.unit(0.92, "feet"),
  22387. name: "Beans",
  22388. image: {
  22389. source: "./media/characters/kira/beans.svg"
  22390. }
  22391. },
  22392. },
  22393. [
  22394. {
  22395. name: "Normal",
  22396. height: math.unit(5 + 3 / 12, "feet"),
  22397. default: true
  22398. },
  22399. ]
  22400. ))
  22401. characterMakers.push(() => makeCharacter(
  22402. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  22403. {
  22404. front: {
  22405. height: math.unit(5 + 4 / 12, "feet"),
  22406. weight: math.unit(145, "lb"),
  22407. name: "Front",
  22408. image: {
  22409. source: "./media/characters/scramble/front.svg",
  22410. extra: 763 / 727,
  22411. bottom: 0.05
  22412. }
  22413. },
  22414. back: {
  22415. height: math.unit(5 + 4 / 12, "feet"),
  22416. weight: math.unit(145, "lb"),
  22417. name: "Back",
  22418. image: {
  22419. source: "./media/characters/scramble/back.svg",
  22420. extra: 826 / 737,
  22421. bottom: 0.002
  22422. }
  22423. },
  22424. },
  22425. [
  22426. {
  22427. name: "Normal",
  22428. height: math.unit(5 + 4 / 12, "feet"),
  22429. default: true
  22430. },
  22431. ]
  22432. ))
  22433. characterMakers.push(() => makeCharacter(
  22434. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  22435. {
  22436. side: {
  22437. height: math.unit(6 + 2 / 12, "feet"),
  22438. weight: math.unit(190, "lb"),
  22439. name: "Side",
  22440. image: {
  22441. source: "./media/characters/biscuit/side.svg",
  22442. extra: 858 / 791,
  22443. bottom: 0.044
  22444. }
  22445. },
  22446. },
  22447. [
  22448. {
  22449. name: "Normal",
  22450. height: math.unit(6 + 2 / 12, "feet"),
  22451. default: true
  22452. },
  22453. ]
  22454. ))
  22455. characterMakers.push(() => makeCharacter(
  22456. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  22457. {
  22458. front: {
  22459. height: math.unit(5 + 2 / 12, "feet"),
  22460. weight: math.unit(120, "lb"),
  22461. name: "Front",
  22462. image: {
  22463. source: "./media/characters/poffin/front.svg",
  22464. extra: 786 / 680,
  22465. bottom: 0.005
  22466. }
  22467. },
  22468. },
  22469. [
  22470. {
  22471. name: "Normal",
  22472. height: math.unit(5 + 2 / 12, "feet"),
  22473. default: true
  22474. },
  22475. ]
  22476. ))
  22477. characterMakers.push(() => makeCharacter(
  22478. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  22479. {
  22480. front: {
  22481. height: math.unit(6 + 3 / 12, "feet"),
  22482. weight: math.unit(519, "lb"),
  22483. name: "Front",
  22484. image: {
  22485. source: "./media/characters/dhari/front.svg",
  22486. extra: 1048 / 946,
  22487. bottom: 0.015
  22488. }
  22489. },
  22490. back: {
  22491. height: math.unit(6 + 3 / 12, "feet"),
  22492. weight: math.unit(519, "lb"),
  22493. name: "Back",
  22494. image: {
  22495. source: "./media/characters/dhari/back.svg",
  22496. extra: 1048 / 931,
  22497. bottom: 0.005
  22498. }
  22499. },
  22500. frontDressed: {
  22501. height: math.unit(6 + 3 / 12, "feet"),
  22502. weight: math.unit(519, "lb"),
  22503. name: "Front (Dressed)",
  22504. image: {
  22505. source: "./media/characters/dhari/front-dressed.svg",
  22506. extra: 1713 / 1546,
  22507. bottom: 0.02
  22508. }
  22509. },
  22510. backDressed: {
  22511. height: math.unit(6 + 3 / 12, "feet"),
  22512. weight: math.unit(519, "lb"),
  22513. name: "Back (Dressed)",
  22514. image: {
  22515. source: "./media/characters/dhari/back-dressed.svg",
  22516. extra: 1699 / 1537,
  22517. bottom: 0.01
  22518. }
  22519. },
  22520. maw: {
  22521. height: math.unit(0.95, "feet"),
  22522. name: "Maw",
  22523. image: {
  22524. source: "./media/characters/dhari/maw.svg"
  22525. }
  22526. },
  22527. wereFront: {
  22528. height: math.unit(12 + 8 / 12, "feet"),
  22529. weight: math.unit(4000, "lb"),
  22530. name: "Front (Were)",
  22531. image: {
  22532. source: "./media/characters/dhari/were-front.svg",
  22533. extra: 1065 / 969,
  22534. bottom: 0.015
  22535. }
  22536. },
  22537. wereBack: {
  22538. height: math.unit(12 + 8 / 12, "feet"),
  22539. weight: math.unit(4000, "lb"),
  22540. name: "Back (Were)",
  22541. image: {
  22542. source: "./media/characters/dhari/were-back.svg",
  22543. extra: 1065 / 969,
  22544. bottom: 0.012
  22545. }
  22546. },
  22547. wereMaw: {
  22548. height: math.unit(0.625, "meters"),
  22549. name: "Maw (Were)",
  22550. image: {
  22551. source: "./media/characters/dhari/were-maw.svg"
  22552. }
  22553. },
  22554. },
  22555. [
  22556. {
  22557. name: "Normal",
  22558. height: math.unit(6 + 3 / 12, "feet"),
  22559. default: true
  22560. },
  22561. ]
  22562. ))
  22563. characterMakers.push(() => makeCharacter(
  22564. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  22565. {
  22566. anthro: {
  22567. height: math.unit(5 + 7 / 12, "feet"),
  22568. weight: math.unit(175, "lb"),
  22569. name: "Anthro",
  22570. image: {
  22571. source: "./media/characters/rena-dyne/anthro.svg",
  22572. extra: 1849 / 1785,
  22573. bottom: 0.005
  22574. }
  22575. },
  22576. taur: {
  22577. height: math.unit(15 + 6 / 12, "feet"),
  22578. weight: math.unit(8000, "lb"),
  22579. name: "Taur",
  22580. image: {
  22581. source: "./media/characters/rena-dyne/taur.svg",
  22582. extra: 2315 / 2234,
  22583. bottom: 0.033
  22584. }
  22585. },
  22586. },
  22587. [
  22588. {
  22589. name: "Normal",
  22590. height: math.unit(5 + 7 / 12, "feet"),
  22591. default: true
  22592. },
  22593. ]
  22594. ))
  22595. characterMakers.push(() => makeCharacter(
  22596. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  22597. {
  22598. front: {
  22599. height: math.unit(8, "feet"),
  22600. weight: math.unit(600, "lb"),
  22601. name: "Front",
  22602. image: {
  22603. source: "./media/characters/weremeep/front.svg",
  22604. extra: 970/849,
  22605. bottom: 7/977
  22606. }
  22607. },
  22608. },
  22609. [
  22610. {
  22611. name: "Normal",
  22612. height: math.unit(8, "feet"),
  22613. default: true
  22614. },
  22615. {
  22616. name: "Lorg",
  22617. height: math.unit(12, "feet")
  22618. },
  22619. {
  22620. name: "Oh Lawd She Comin'",
  22621. height: math.unit(20, "feet")
  22622. },
  22623. ]
  22624. ))
  22625. characterMakers.push(() => makeCharacter(
  22626. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  22627. {
  22628. front: {
  22629. height: math.unit(4, "feet"),
  22630. weight: math.unit(90, "lb"),
  22631. name: "Front",
  22632. image: {
  22633. source: "./media/characters/reza/front.svg",
  22634. extra: 1183 / 1111,
  22635. bottom: 0.017
  22636. }
  22637. },
  22638. back: {
  22639. height: math.unit(4, "feet"),
  22640. weight: math.unit(90, "lb"),
  22641. name: "Back",
  22642. image: {
  22643. source: "./media/characters/reza/back.svg",
  22644. extra: 1183 / 1111,
  22645. bottom: 0.01
  22646. }
  22647. },
  22648. drake: {
  22649. height: math.unit(30, "feet"),
  22650. weight: math.unit(246960, "lb"),
  22651. name: "Drake",
  22652. image: {
  22653. source: "./media/characters/reza/drake.svg",
  22654. extra: 2350 / 2024,
  22655. bottom: 60.7 / 2403
  22656. }
  22657. },
  22658. },
  22659. [
  22660. {
  22661. name: "Normal",
  22662. height: math.unit(4, "feet"),
  22663. default: true
  22664. },
  22665. ]
  22666. ))
  22667. characterMakers.push(() => makeCharacter(
  22668. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  22669. {
  22670. side: {
  22671. height: math.unit(15, "feet"),
  22672. weight: math.unit(14, "tons"),
  22673. name: "Side",
  22674. image: {
  22675. source: "./media/characters/athea/side.svg",
  22676. extra: 960 / 540,
  22677. bottom: 0.003
  22678. }
  22679. },
  22680. sitting: {
  22681. height: math.unit(6 * 2.85, "feet"),
  22682. weight: math.unit(14, "tons"),
  22683. name: "Sitting",
  22684. image: {
  22685. source: "./media/characters/athea/sitting.svg",
  22686. extra: 621 / 581,
  22687. bottom: 0.075
  22688. }
  22689. },
  22690. maw: {
  22691. height: math.unit(7.59498031496063, "feet"),
  22692. name: "Maw",
  22693. image: {
  22694. source: "./media/characters/athea/maw.svg"
  22695. }
  22696. },
  22697. },
  22698. [
  22699. {
  22700. name: "Lap Cat",
  22701. height: math.unit(2.5, "feet")
  22702. },
  22703. {
  22704. name: "Minimacro",
  22705. height: math.unit(15, "feet"),
  22706. default: true
  22707. },
  22708. {
  22709. name: "Macro",
  22710. height: math.unit(120, "feet")
  22711. },
  22712. {
  22713. name: "Macro+",
  22714. height: math.unit(640, "feet")
  22715. },
  22716. {
  22717. name: "Colossus",
  22718. height: math.unit(2.2, "miles")
  22719. },
  22720. ]
  22721. ))
  22722. characterMakers.push(() => makeCharacter(
  22723. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  22724. {
  22725. front: {
  22726. height: math.unit(8 + 8 / 12, "feet"),
  22727. weight: math.unit(130, "kg"),
  22728. name: "Front",
  22729. image: {
  22730. source: "./media/characters/seroko/front.svg",
  22731. extra: 1385 / 1280,
  22732. bottom: 0.025
  22733. }
  22734. },
  22735. back: {
  22736. height: math.unit(8 + 8 / 12, "feet"),
  22737. weight: math.unit(130, "kg"),
  22738. name: "Back",
  22739. image: {
  22740. source: "./media/characters/seroko/back.svg",
  22741. extra: 1369 / 1238,
  22742. bottom: 0.018
  22743. }
  22744. },
  22745. frontDressed: {
  22746. height: math.unit(8 + 8 / 12, "feet"),
  22747. weight: math.unit(130, "kg"),
  22748. name: "Front (Dressed)",
  22749. image: {
  22750. source: "./media/characters/seroko/front-dressed.svg",
  22751. extra: 1366 / 1275,
  22752. bottom: 0.03
  22753. }
  22754. },
  22755. },
  22756. [
  22757. {
  22758. name: "Normal",
  22759. height: math.unit(8 + 8 / 12, "feet"),
  22760. default: true
  22761. },
  22762. ]
  22763. ))
  22764. characterMakers.push(() => makeCharacter(
  22765. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  22766. {
  22767. front: {
  22768. height: math.unit(5.5, "feet"),
  22769. weight: math.unit(160, "lb"),
  22770. name: "Front",
  22771. image: {
  22772. source: "./media/characters/quatzi/front.svg",
  22773. extra: 2346 / 2242,
  22774. bottom: 0.015
  22775. }
  22776. },
  22777. },
  22778. [
  22779. {
  22780. name: "Normal",
  22781. height: math.unit(5.5, "feet"),
  22782. default: true
  22783. },
  22784. {
  22785. name: "Big",
  22786. height: math.unit(7.7, "feet")
  22787. },
  22788. ]
  22789. ))
  22790. characterMakers.push(() => makeCharacter(
  22791. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  22792. {
  22793. front: {
  22794. height: math.unit(5 + 11 / 12, "feet"),
  22795. weight: math.unit(180, "lb"),
  22796. name: "Front",
  22797. image: {
  22798. source: "./media/characters/sen/front.svg",
  22799. extra: 1321 / 1254,
  22800. bottom: 0.015
  22801. }
  22802. },
  22803. side: {
  22804. height: math.unit(5 + 11 / 12, "feet"),
  22805. weight: math.unit(180, "lb"),
  22806. name: "Side",
  22807. image: {
  22808. source: "./media/characters/sen/side.svg",
  22809. extra: 1321 / 1254,
  22810. bottom: 0.007
  22811. }
  22812. },
  22813. back: {
  22814. height: math.unit(5 + 11 / 12, "feet"),
  22815. weight: math.unit(180, "lb"),
  22816. name: "Back",
  22817. image: {
  22818. source: "./media/characters/sen/back.svg",
  22819. extra: 1321 / 1254
  22820. }
  22821. },
  22822. },
  22823. [
  22824. {
  22825. name: "Normal",
  22826. height: math.unit(5 + 11 / 12, "feet"),
  22827. default: true
  22828. },
  22829. ]
  22830. ))
  22831. characterMakers.push(() => makeCharacter(
  22832. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  22833. {
  22834. front: {
  22835. height: math.unit(166.6, "cm"),
  22836. weight: math.unit(66.6, "kg"),
  22837. name: "Front",
  22838. image: {
  22839. source: "./media/characters/fruity/front.svg",
  22840. extra: 1510 / 1386,
  22841. bottom: 0.04
  22842. }
  22843. },
  22844. back: {
  22845. height: math.unit(166.6, "cm"),
  22846. weight: math.unit(66.6, "lb"),
  22847. name: "Back",
  22848. image: {
  22849. source: "./media/characters/fruity/back.svg",
  22850. extra: 1563 / 1435,
  22851. bottom: 0.005
  22852. }
  22853. },
  22854. },
  22855. [
  22856. {
  22857. name: "Normal",
  22858. height: math.unit(166.6, "cm"),
  22859. default: true
  22860. },
  22861. {
  22862. name: "Demonic",
  22863. height: math.unit(166.6, "feet")
  22864. },
  22865. ]
  22866. ))
  22867. characterMakers.push(() => makeCharacter(
  22868. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  22869. {
  22870. side: {
  22871. height: math.unit(10, "feet"),
  22872. weight: math.unit(500, "lb"),
  22873. name: "Side",
  22874. image: {
  22875. source: "./media/characters/zost/side.svg",
  22876. extra: 2870/2533,
  22877. bottom: 252/3122
  22878. }
  22879. },
  22880. mawFront: {
  22881. height: math.unit(1.08, "meters"),
  22882. name: "Maw (Front)",
  22883. image: {
  22884. source: "./media/characters/zost/maw-front.svg"
  22885. }
  22886. },
  22887. mawSide: {
  22888. height: math.unit(2.66, "feet"),
  22889. name: "Maw (Side)",
  22890. image: {
  22891. source: "./media/characters/zost/maw-side.svg"
  22892. }
  22893. },
  22894. wingspan: {
  22895. height: math.unit(7.4, "feet"),
  22896. name: "Wingspan",
  22897. image: {
  22898. source: "./media/characters/zost/wingspan.svg"
  22899. }
  22900. },
  22901. },
  22902. [
  22903. {
  22904. name: "Normal",
  22905. height: math.unit(10, "feet"),
  22906. default: true
  22907. },
  22908. ]
  22909. ))
  22910. characterMakers.push(() => makeCharacter(
  22911. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  22912. {
  22913. front: {
  22914. height: math.unit(5 + 4 / 12, "feet"),
  22915. weight: math.unit(120, "lb"),
  22916. name: "Front",
  22917. image: {
  22918. source: "./media/characters/luci/front.svg",
  22919. extra: 1985 / 1884,
  22920. bottom: 0.04
  22921. }
  22922. },
  22923. back: {
  22924. height: math.unit(5 + 4 / 12, "feet"),
  22925. weight: math.unit(120, "lb"),
  22926. name: "Back",
  22927. image: {
  22928. source: "./media/characters/luci/back.svg",
  22929. extra: 1892 / 1791,
  22930. bottom: 0.002
  22931. }
  22932. },
  22933. },
  22934. [
  22935. {
  22936. name: "Normal",
  22937. height: math.unit(5 + 4 / 12, "feet"),
  22938. default: true
  22939. },
  22940. ]
  22941. ))
  22942. characterMakers.push(() => makeCharacter(
  22943. { name: "2th", species: ["monster"], tags: ["anthro"] },
  22944. {
  22945. front: {
  22946. height: math.unit(1500, "feet"),
  22947. weight: math.unit(3.8e6, "tons"),
  22948. name: "Front",
  22949. image: {
  22950. source: "./media/characters/2th/front.svg",
  22951. extra: 3489 / 3350,
  22952. bottom: 0.1
  22953. }
  22954. },
  22955. foot: {
  22956. height: math.unit(461, "feet"),
  22957. name: "Foot",
  22958. image: {
  22959. source: "./media/characters/2th/foot.svg"
  22960. }
  22961. },
  22962. },
  22963. [
  22964. {
  22965. name: "\"Micro\"",
  22966. height: math.unit(15 + 7 / 12, "feet")
  22967. },
  22968. {
  22969. name: "Normal",
  22970. height: math.unit(1500, "feet"),
  22971. default: true
  22972. },
  22973. {
  22974. name: "Macro",
  22975. height: math.unit(5000, "feet")
  22976. },
  22977. {
  22978. name: "Megamacro",
  22979. height: math.unit(15, "miles")
  22980. },
  22981. {
  22982. name: "Gigamacro",
  22983. height: math.unit(4000, "miles")
  22984. },
  22985. {
  22986. name: "Galactic",
  22987. height: math.unit(50, "AU")
  22988. },
  22989. ]
  22990. ))
  22991. characterMakers.push(() => makeCharacter(
  22992. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  22993. {
  22994. front: {
  22995. height: math.unit(5 + 6 / 12, "feet"),
  22996. weight: math.unit(220, "lb"),
  22997. name: "Front",
  22998. image: {
  22999. source: "./media/characters/amethyst/front.svg",
  23000. extra: 2078 / 2040,
  23001. bottom: 0.045
  23002. }
  23003. },
  23004. back: {
  23005. height: math.unit(5 + 6 / 12, "feet"),
  23006. weight: math.unit(220, "lb"),
  23007. name: "Back",
  23008. image: {
  23009. source: "./media/characters/amethyst/back.svg",
  23010. extra: 2021 / 1989,
  23011. bottom: 0.02
  23012. }
  23013. },
  23014. },
  23015. [
  23016. {
  23017. name: "Normal",
  23018. height: math.unit(5 + 6 / 12, "feet"),
  23019. default: true
  23020. },
  23021. ]
  23022. ))
  23023. characterMakers.push(() => makeCharacter(
  23024. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  23025. {
  23026. front: {
  23027. height: math.unit(4 + 11 / 12, "feet"),
  23028. weight: math.unit(120, "lb"),
  23029. name: "Front",
  23030. image: {
  23031. source: "./media/characters/yumi-akiyama/front.svg",
  23032. extra: 1327 / 1235,
  23033. bottom: 0.02
  23034. }
  23035. },
  23036. back: {
  23037. height: math.unit(4 + 11 / 12, "feet"),
  23038. weight: math.unit(120, "lb"),
  23039. name: "Back",
  23040. image: {
  23041. source: "./media/characters/yumi-akiyama/back.svg",
  23042. extra: 1287 / 1245,
  23043. bottom: 0.002
  23044. }
  23045. },
  23046. },
  23047. [
  23048. {
  23049. name: "Galactic",
  23050. height: math.unit(50, "galaxies"),
  23051. default: true
  23052. },
  23053. {
  23054. name: "Universal",
  23055. height: math.unit(100, "universes")
  23056. },
  23057. ]
  23058. ))
  23059. characterMakers.push(() => makeCharacter(
  23060. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  23061. {
  23062. front: {
  23063. height: math.unit(8, "feet"),
  23064. weight: math.unit(500, "lb"),
  23065. name: "Front",
  23066. image: {
  23067. source: "./media/characters/rifter-yrmori/front.svg",
  23068. extra: 1180 / 1125,
  23069. bottom: 0.02
  23070. }
  23071. },
  23072. back: {
  23073. height: math.unit(8, "feet"),
  23074. weight: math.unit(500, "lb"),
  23075. name: "Back",
  23076. image: {
  23077. source: "./media/characters/rifter-yrmori/back.svg",
  23078. extra: 1190 / 1145,
  23079. bottom: 0.001
  23080. }
  23081. },
  23082. wings: {
  23083. height: math.unit(7.75, "feet"),
  23084. weight: math.unit(500, "lb"),
  23085. name: "Wings",
  23086. image: {
  23087. source: "./media/characters/rifter-yrmori/wings.svg",
  23088. extra: 1357 / 1285
  23089. }
  23090. },
  23091. maw: {
  23092. height: math.unit(0.8, "feet"),
  23093. name: "Maw",
  23094. image: {
  23095. source: "./media/characters/rifter-yrmori/maw.svg"
  23096. }
  23097. },
  23098. mawfront: {
  23099. height: math.unit(1.45, "feet"),
  23100. name: "Maw (Front)",
  23101. image: {
  23102. source: "./media/characters/rifter-yrmori/maw-front.svg"
  23103. }
  23104. },
  23105. },
  23106. [
  23107. {
  23108. name: "Normal",
  23109. height: math.unit(8, "feet"),
  23110. default: true
  23111. },
  23112. {
  23113. name: "Macro",
  23114. height: math.unit(42, "meters")
  23115. },
  23116. ]
  23117. ))
  23118. characterMakers.push(() => makeCharacter(
  23119. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  23120. {
  23121. were: {
  23122. height: math.unit(25 + 6 / 12, "feet"),
  23123. weight: math.unit(10000, "lb"),
  23124. name: "Were",
  23125. image: {
  23126. source: "./media/characters/tahajin/were.svg",
  23127. extra: 801 / 770,
  23128. bottom: 0.042
  23129. }
  23130. },
  23131. aquatic: {
  23132. height: math.unit(6 + 4 / 12, "feet"),
  23133. weight: math.unit(160, "lb"),
  23134. name: "Aquatic",
  23135. image: {
  23136. source: "./media/characters/tahajin/aquatic.svg",
  23137. extra: 572 / 542,
  23138. bottom: 0.04
  23139. }
  23140. },
  23141. chow: {
  23142. height: math.unit(8 + 11 / 12, "feet"),
  23143. weight: math.unit(450, "lb"),
  23144. name: "Chow",
  23145. image: {
  23146. source: "./media/characters/tahajin/chow.svg",
  23147. extra: 660 / 640,
  23148. bottom: 0.015
  23149. }
  23150. },
  23151. demiNaga: {
  23152. height: math.unit(6 + 8 / 12, "feet"),
  23153. weight: math.unit(300, "lb"),
  23154. name: "Demi Naga",
  23155. image: {
  23156. source: "./media/characters/tahajin/demi-naga.svg",
  23157. extra: 643 / 615,
  23158. bottom: 0.1
  23159. }
  23160. },
  23161. data: {
  23162. height: math.unit(5, "inches"),
  23163. weight: math.unit(0.1, "lb"),
  23164. name: "Data",
  23165. image: {
  23166. source: "./media/characters/tahajin/data.svg"
  23167. }
  23168. },
  23169. fluu: {
  23170. height: math.unit(5 + 7 / 12, "feet"),
  23171. weight: math.unit(140, "lb"),
  23172. name: "Fluu",
  23173. image: {
  23174. source: "./media/characters/tahajin/fluu.svg",
  23175. extra: 628 / 592,
  23176. bottom: 0.02
  23177. }
  23178. },
  23179. starWarrior: {
  23180. height: math.unit(4 + 5 / 12, "feet"),
  23181. weight: math.unit(50, "lb"),
  23182. name: "Star Warrior",
  23183. image: {
  23184. source: "./media/characters/tahajin/star-warrior.svg"
  23185. }
  23186. },
  23187. },
  23188. [
  23189. {
  23190. name: "Normal",
  23191. height: math.unit(25 + 6 / 12, "feet"),
  23192. default: true
  23193. },
  23194. ]
  23195. ))
  23196. characterMakers.push(() => makeCharacter(
  23197. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  23198. {
  23199. front: {
  23200. height: math.unit(8, "feet"),
  23201. weight: math.unit(350, "lb"),
  23202. name: "Front",
  23203. image: {
  23204. source: "./media/characters/gabira/front.svg",
  23205. extra: 1261/1154,
  23206. bottom: 51/1312
  23207. }
  23208. },
  23209. back: {
  23210. height: math.unit(8, "feet"),
  23211. weight: math.unit(350, "lb"),
  23212. name: "Back",
  23213. image: {
  23214. source: "./media/characters/gabira/back.svg",
  23215. extra: 1265/1163,
  23216. bottom: 46/1311
  23217. }
  23218. },
  23219. head: {
  23220. height: math.unit(2.85, "feet"),
  23221. name: "Head",
  23222. image: {
  23223. source: "./media/characters/gabira/head.svg"
  23224. }
  23225. },
  23226. },
  23227. [
  23228. {
  23229. name: "Normal",
  23230. height: math.unit(8, "feet"),
  23231. default: true
  23232. },
  23233. ]
  23234. ))
  23235. characterMakers.push(() => makeCharacter(
  23236. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  23237. {
  23238. front: {
  23239. height: math.unit(5 + 3 / 12, "feet"),
  23240. weight: math.unit(137, "lb"),
  23241. name: "Front",
  23242. image: {
  23243. source: "./media/characters/sasha-katraine/front.svg",
  23244. extra: 1745/1694,
  23245. bottom: 37/1782
  23246. }
  23247. },
  23248. back: {
  23249. height: math.unit(5 + 3 / 12, "feet"),
  23250. weight: math.unit(137, "lb"),
  23251. name: "Back",
  23252. image: {
  23253. source: "./media/characters/sasha-katraine/back.svg",
  23254. extra: 1776/1699,
  23255. bottom: 26/1802
  23256. }
  23257. },
  23258. },
  23259. [
  23260. {
  23261. name: "Micro",
  23262. height: math.unit(5, "inches")
  23263. },
  23264. {
  23265. name: "Normal",
  23266. height: math.unit(5 + 3 / 12, "feet"),
  23267. default: true
  23268. },
  23269. ]
  23270. ))
  23271. characterMakers.push(() => makeCharacter(
  23272. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  23273. {
  23274. side: {
  23275. height: math.unit(4, "inches"),
  23276. weight: math.unit(200, "grams"),
  23277. name: "Side",
  23278. image: {
  23279. source: "./media/characters/der/side.svg",
  23280. extra: 719 / 400,
  23281. bottom: 30.6 / 749.9187
  23282. }
  23283. },
  23284. },
  23285. [
  23286. {
  23287. name: "Micro",
  23288. height: math.unit(4, "inches"),
  23289. default: true
  23290. },
  23291. ]
  23292. ))
  23293. characterMakers.push(() => makeCharacter(
  23294. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  23295. {
  23296. side: {
  23297. height: math.unit(30, "meters"),
  23298. weight: math.unit(700, "tonnes"),
  23299. name: "Side",
  23300. image: {
  23301. source: "./media/characters/fixerdragon/side.svg",
  23302. extra: (1293.0514 - 116.03) / 1106.86,
  23303. bottom: 116.03 / 1293.0514
  23304. }
  23305. },
  23306. },
  23307. [
  23308. {
  23309. name: "Planck",
  23310. height: math.unit(1.6e-35, "meters")
  23311. },
  23312. {
  23313. name: "Micro",
  23314. height: math.unit(0.4, "meters")
  23315. },
  23316. {
  23317. name: "Normal",
  23318. height: math.unit(30, "meters"),
  23319. default: true
  23320. },
  23321. {
  23322. name: "Megamacro",
  23323. height: math.unit(1.2, "megameters")
  23324. },
  23325. {
  23326. name: "Teramacro",
  23327. height: math.unit(130, "terameters")
  23328. },
  23329. {
  23330. name: "Yottamacro",
  23331. height: math.unit(6200, "yottameters")
  23332. },
  23333. ]
  23334. ));
  23335. characterMakers.push(() => makeCharacter(
  23336. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  23337. {
  23338. front: {
  23339. height: math.unit(8, "feet"),
  23340. weight: math.unit(250, "lb"),
  23341. name: "Front",
  23342. image: {
  23343. source: "./media/characters/kite/front.svg",
  23344. extra: 2796 / 2659,
  23345. bottom: 0.002
  23346. }
  23347. },
  23348. },
  23349. [
  23350. {
  23351. name: "Normal",
  23352. height: math.unit(8, "feet"),
  23353. default: true
  23354. },
  23355. {
  23356. name: "Macro",
  23357. height: math.unit(360, "feet")
  23358. },
  23359. {
  23360. name: "Megamacro",
  23361. height: math.unit(1500, "feet")
  23362. },
  23363. ]
  23364. ))
  23365. characterMakers.push(() => makeCharacter(
  23366. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  23367. {
  23368. front: {
  23369. height: math.unit(5 + 11/12, "feet"),
  23370. weight: math.unit(170, "lb"),
  23371. name: "Front",
  23372. image: {
  23373. source: "./media/characters/poojawa-vynar/front.svg",
  23374. extra: 1735/1585,
  23375. bottom: 96/1831
  23376. }
  23377. },
  23378. back: {
  23379. height: math.unit(5 + 11/12, "feet"),
  23380. weight: math.unit(170, "lb"),
  23381. name: "Back",
  23382. image: {
  23383. source: "./media/characters/poojawa-vynar/back.svg",
  23384. extra: 1749/1607,
  23385. bottom: 28/1777
  23386. }
  23387. },
  23388. male: {
  23389. height: math.unit(5 + 11/12, "feet"),
  23390. weight: math.unit(170, "lb"),
  23391. name: "Male",
  23392. image: {
  23393. source: "./media/characters/poojawa-vynar/male.svg",
  23394. extra: 1855/1713,
  23395. bottom: 63/1918
  23396. }
  23397. },
  23398. taur: {
  23399. height: math.unit(5 + 11/12, "feet"),
  23400. weight: math.unit(170, "lb"),
  23401. name: "Taur",
  23402. image: {
  23403. source: "./media/characters/poojawa-vynar/taur.svg",
  23404. extra: 1151/1059,
  23405. bottom: 356/1507
  23406. }
  23407. },
  23408. frontDressed: {
  23409. height: math.unit(5 + 11/12, "feet"),
  23410. weight: math.unit(170, "lb"),
  23411. name: "Front (Dressed)",
  23412. image: {
  23413. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  23414. extra: 1735/1585,
  23415. bottom: 96/1831
  23416. }
  23417. },
  23418. backDressed: {
  23419. height: math.unit(5 + 11/12, "feet"),
  23420. weight: math.unit(170, "lb"),
  23421. name: "Back (Dressed)",
  23422. image: {
  23423. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  23424. extra: 1749/1607,
  23425. bottom: 28/1777
  23426. }
  23427. },
  23428. maleDressed: {
  23429. height: math.unit(5 + 11/12, "feet"),
  23430. weight: math.unit(170, "lb"),
  23431. name: "Male (Dressed)",
  23432. image: {
  23433. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  23434. extra: 1855/1713,
  23435. bottom: 63/1918
  23436. }
  23437. },
  23438. taurDressed: {
  23439. height: math.unit(5 + 11/12, "feet"),
  23440. weight: math.unit(170, "lb"),
  23441. name: "Taur (Dressed)",
  23442. image: {
  23443. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  23444. extra: 1151/1059,
  23445. bottom: 356/1507
  23446. }
  23447. },
  23448. maw: {
  23449. height: math.unit(1.46, "feet"),
  23450. name: "Maw",
  23451. image: {
  23452. source: "./media/characters/poojawa-vynar/maw.svg"
  23453. }
  23454. },
  23455. head: {
  23456. height: math.unit(2.34, "feet"),
  23457. name: "Head",
  23458. image: {
  23459. source: "./media/characters/poojawa-vynar/head.svg"
  23460. }
  23461. },
  23462. paw: {
  23463. height: math.unit(1.61, "feet"),
  23464. name: "Paw",
  23465. image: {
  23466. source: "./media/characters/poojawa-vynar/paw.svg"
  23467. }
  23468. },
  23469. pawToering: {
  23470. height: math.unit(1.72, "feet"),
  23471. name: "Paw (Toering)",
  23472. image: {
  23473. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  23474. }
  23475. },
  23476. toering: {
  23477. height: math.unit(2.9, "inches"),
  23478. name: "Toering",
  23479. image: {
  23480. source: "./media/characters/poojawa-vynar/toering.svg"
  23481. }
  23482. },
  23483. shaft: {
  23484. height: math.unit(0.625, "feet"),
  23485. name: "Shaft",
  23486. image: {
  23487. source: "./media/characters/poojawa-vynar/shaft.svg"
  23488. }
  23489. },
  23490. spade: {
  23491. height: math.unit(0.42, "feet"),
  23492. name: "Spade",
  23493. image: {
  23494. source: "./media/characters/poojawa-vynar/spade.svg"
  23495. }
  23496. },
  23497. },
  23498. [
  23499. {
  23500. name: "Shortstack",
  23501. height: math.unit(4, "feet")
  23502. },
  23503. {
  23504. name: "Normal",
  23505. height: math.unit(5 + 11 / 12, "feet"),
  23506. default: true
  23507. },
  23508. {
  23509. name: "Tauric",
  23510. height: math.unit(4, "meters")
  23511. },
  23512. ]
  23513. ))
  23514. characterMakers.push(() => makeCharacter(
  23515. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  23516. {
  23517. front: {
  23518. height: math.unit(293, "meters"),
  23519. weight: math.unit(70400, "tons"),
  23520. name: "Front",
  23521. image: {
  23522. source: "./media/characters/violette/front.svg",
  23523. extra: 1227 / 1180,
  23524. bottom: 0.005
  23525. }
  23526. },
  23527. back: {
  23528. height: math.unit(293, "meters"),
  23529. weight: math.unit(70400, "tons"),
  23530. name: "Back",
  23531. image: {
  23532. source: "./media/characters/violette/back.svg",
  23533. extra: 1227 / 1180,
  23534. bottom: 0.005
  23535. }
  23536. },
  23537. },
  23538. [
  23539. {
  23540. name: "Macro",
  23541. height: math.unit(293, "meters"),
  23542. default: true
  23543. },
  23544. ]
  23545. ))
  23546. characterMakers.push(() => makeCharacter(
  23547. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  23548. {
  23549. front: {
  23550. height: math.unit(1050, "feet"),
  23551. weight: math.unit(200000, "tons"),
  23552. name: "Front",
  23553. image: {
  23554. source: "./media/characters/alessandra/front.svg",
  23555. extra: 960 / 912,
  23556. bottom: 0.06
  23557. }
  23558. },
  23559. },
  23560. [
  23561. {
  23562. name: "Macro",
  23563. height: math.unit(1050, "feet")
  23564. },
  23565. {
  23566. name: "Macro+",
  23567. height: math.unit(900, "meters"),
  23568. default: true
  23569. },
  23570. ]
  23571. ))
  23572. characterMakers.push(() => makeCharacter(
  23573. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  23574. {
  23575. front: {
  23576. height: math.unit(5, "feet"),
  23577. weight: math.unit(187, "lb"),
  23578. name: "Front",
  23579. image: {
  23580. source: "./media/characters/person/front.svg",
  23581. extra: 3087 / 2945,
  23582. bottom: 91 / 3181
  23583. }
  23584. },
  23585. },
  23586. [
  23587. {
  23588. name: "Micro",
  23589. height: math.unit(3, "inches")
  23590. },
  23591. {
  23592. name: "Normal",
  23593. height: math.unit(5, "feet"),
  23594. default: true
  23595. },
  23596. {
  23597. name: "Macro",
  23598. height: math.unit(90, "feet")
  23599. },
  23600. {
  23601. name: "Max Size",
  23602. height: math.unit(280, "feet")
  23603. },
  23604. ]
  23605. ))
  23606. characterMakers.push(() => makeCharacter(
  23607. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  23608. {
  23609. front: {
  23610. height: math.unit(4.5, "meters"),
  23611. weight: math.unit(3200, "lb"),
  23612. name: "Front",
  23613. image: {
  23614. source: "./media/characters/ty/front.svg",
  23615. extra: 1038 / 960,
  23616. bottom: 31.156 / 1068
  23617. }
  23618. },
  23619. back: {
  23620. height: math.unit(4.5, "meters"),
  23621. weight: math.unit(3200, "lb"),
  23622. name: "Back",
  23623. image: {
  23624. source: "./media/characters/ty/back.svg",
  23625. extra: 1044 / 966,
  23626. bottom: 7.48 / 1049
  23627. }
  23628. },
  23629. },
  23630. [
  23631. {
  23632. name: "Normal",
  23633. height: math.unit(4.5, "meters"),
  23634. default: true
  23635. },
  23636. ]
  23637. ))
  23638. characterMakers.push(() => makeCharacter(
  23639. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  23640. {
  23641. front: {
  23642. height: math.unit(5 + 4 / 12, "feet"),
  23643. weight: math.unit(115, "lb"),
  23644. name: "Front",
  23645. image: {
  23646. source: "./media/characters/rocky/front.svg",
  23647. extra: 1012 / 975,
  23648. bottom: 54 / 1066
  23649. }
  23650. },
  23651. },
  23652. [
  23653. {
  23654. name: "Normal",
  23655. height: math.unit(5 + 4 / 12, "feet"),
  23656. default: true
  23657. },
  23658. ]
  23659. ))
  23660. characterMakers.push(() => makeCharacter(
  23661. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  23662. {
  23663. upright: {
  23664. height: math.unit(6, "meters"),
  23665. weight: math.unit(4000, "kg"),
  23666. name: "Upright",
  23667. image: {
  23668. source: "./media/characters/ruin/upright.svg",
  23669. extra: 668 / 661,
  23670. bottom: 42 / 799.8396
  23671. }
  23672. },
  23673. },
  23674. [
  23675. {
  23676. name: "Normal",
  23677. height: math.unit(6, "meters"),
  23678. default: true
  23679. },
  23680. ]
  23681. ))
  23682. characterMakers.push(() => makeCharacter(
  23683. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  23684. {
  23685. front: {
  23686. height: math.unit(5, "feet"),
  23687. weight: math.unit(106, "lb"),
  23688. name: "Front",
  23689. image: {
  23690. source: "./media/characters/robin/front.svg",
  23691. extra: 862 / 799,
  23692. bottom: 42.4 / 914.8856
  23693. }
  23694. },
  23695. },
  23696. [
  23697. {
  23698. name: "Normal",
  23699. height: math.unit(5, "feet"),
  23700. default: true
  23701. },
  23702. ]
  23703. ))
  23704. characterMakers.push(() => makeCharacter(
  23705. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  23706. {
  23707. side: {
  23708. height: math.unit(3, "feet"),
  23709. weight: math.unit(225, "lb"),
  23710. name: "Side",
  23711. image: {
  23712. source: "./media/characters/saian/side.svg",
  23713. extra: 566 / 356,
  23714. bottom: 79.7 / 643
  23715. }
  23716. },
  23717. maw: {
  23718. height: math.unit(2.85, "feet"),
  23719. name: "Maw",
  23720. image: {
  23721. source: "./media/characters/saian/maw.svg"
  23722. }
  23723. },
  23724. },
  23725. [
  23726. {
  23727. name: "Normal",
  23728. height: math.unit(3, "feet"),
  23729. default: true
  23730. },
  23731. ]
  23732. ))
  23733. characterMakers.push(() => makeCharacter(
  23734. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  23735. {
  23736. side: {
  23737. height: math.unit(8, "feet"),
  23738. weight: math.unit(300, "lb"),
  23739. name: "Side",
  23740. image: {
  23741. source: "./media/characters/equus-silvermane/side.svg",
  23742. extra: 2176 / 2050,
  23743. bottom: 65.7 / 2245
  23744. }
  23745. },
  23746. front: {
  23747. height: math.unit(8, "feet"),
  23748. weight: math.unit(300, "lb"),
  23749. name: "Front",
  23750. image: {
  23751. source: "./media/characters/equus-silvermane/front.svg",
  23752. extra: 4633 / 4400,
  23753. bottom: 71.3 / 4706.915
  23754. }
  23755. },
  23756. sideStepping: {
  23757. height: math.unit(8, "feet"),
  23758. weight: math.unit(300, "lb"),
  23759. name: "Side (Stepping)",
  23760. image: {
  23761. source: "./media/characters/equus-silvermane/side-stepping.svg",
  23762. extra: 1968 / 1860,
  23763. bottom: 16.4 / 1989
  23764. }
  23765. },
  23766. },
  23767. [
  23768. {
  23769. name: "Normal",
  23770. height: math.unit(8, "feet")
  23771. },
  23772. {
  23773. name: "Minimacro",
  23774. height: math.unit(75, "feet"),
  23775. default: true
  23776. },
  23777. {
  23778. name: "Macro",
  23779. height: math.unit(150, "feet")
  23780. },
  23781. {
  23782. name: "Macro+",
  23783. height: math.unit(1000, "feet")
  23784. },
  23785. {
  23786. name: "Megamacro",
  23787. height: math.unit(1, "mile")
  23788. },
  23789. ]
  23790. ))
  23791. characterMakers.push(() => makeCharacter(
  23792. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  23793. {
  23794. side: {
  23795. height: math.unit(20, "feet"),
  23796. weight: math.unit(30000, "kg"),
  23797. name: "Side",
  23798. image: {
  23799. source: "./media/characters/windar/side.svg",
  23800. extra: 1491 / 1248,
  23801. bottom: 82.56 / 1568
  23802. }
  23803. },
  23804. },
  23805. [
  23806. {
  23807. name: "Normal",
  23808. height: math.unit(20, "feet"),
  23809. default: true
  23810. },
  23811. ]
  23812. ))
  23813. characterMakers.push(() => makeCharacter(
  23814. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  23815. {
  23816. side: {
  23817. height: math.unit(15.66, "feet"),
  23818. weight: math.unit(150, "lb"),
  23819. name: "Side",
  23820. image: {
  23821. source: "./media/characters/melody/side.svg",
  23822. extra: 1097 / 944,
  23823. bottom: 11.8 / 1109
  23824. }
  23825. },
  23826. sideOutfit: {
  23827. height: math.unit(15.66, "feet"),
  23828. weight: math.unit(150, "lb"),
  23829. name: "Side (Outfit)",
  23830. image: {
  23831. source: "./media/characters/melody/side-outfit.svg",
  23832. extra: 1097 / 944,
  23833. bottom: 11.8 / 1109
  23834. }
  23835. },
  23836. },
  23837. [
  23838. {
  23839. name: "Normal",
  23840. height: math.unit(15.66, "feet"),
  23841. default: true
  23842. },
  23843. ]
  23844. ))
  23845. characterMakers.push(() => makeCharacter(
  23846. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  23847. {
  23848. armoredFront: {
  23849. height: math.unit(8, "feet"),
  23850. weight: math.unit(325, "lb"),
  23851. name: "Front",
  23852. image: {
  23853. source: "./media/characters/windera/armored-front.svg",
  23854. extra: 1830/1598,
  23855. bottom: 151/1981
  23856. },
  23857. form: "armored",
  23858. default: true
  23859. },
  23860. macroFront: {
  23861. height: math.unit(70, "feet"),
  23862. weight: math.unit(315453, "lb"),
  23863. name: "Front",
  23864. image: {
  23865. source: "./media/characters/windera/macro-front.svg",
  23866. extra: 963/883,
  23867. bottom: 23/986
  23868. },
  23869. form: "macro",
  23870. default: true
  23871. },
  23872. },
  23873. [
  23874. {
  23875. name: "Normal",
  23876. height: math.unit(8, "feet"),
  23877. default: true,
  23878. form: "armored"
  23879. },
  23880. {
  23881. name: "Normal",
  23882. height: math.unit(70, "feet"),
  23883. default: true,
  23884. form: "macro"
  23885. },
  23886. ],
  23887. {
  23888. "armored": {
  23889. name: "Armored",
  23890. default: true
  23891. },
  23892. "macro": {
  23893. name: "Macro",
  23894. },
  23895. }
  23896. ))
  23897. characterMakers.push(() => makeCharacter(
  23898. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  23899. {
  23900. front: {
  23901. height: math.unit(28.75, "feet"),
  23902. weight: math.unit(2000, "kg"),
  23903. name: "Front",
  23904. image: {
  23905. source: "./media/characters/sonear/front.svg",
  23906. extra: 1041.1 / 964.9,
  23907. bottom: 53.7 / 1096.6
  23908. }
  23909. },
  23910. },
  23911. [
  23912. {
  23913. name: "Normal",
  23914. height: math.unit(28.75, "feet"),
  23915. default: true
  23916. },
  23917. ]
  23918. ))
  23919. characterMakers.push(() => makeCharacter(
  23920. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  23921. {
  23922. side: {
  23923. height: math.unit(25.5, "feet"),
  23924. weight: math.unit(23000, "kg"),
  23925. name: "Side",
  23926. image: {
  23927. source: "./media/characters/kanara/side.svg"
  23928. }
  23929. },
  23930. },
  23931. [
  23932. {
  23933. name: "Normal",
  23934. height: math.unit(25.5, "feet"),
  23935. default: true
  23936. },
  23937. ]
  23938. ))
  23939. characterMakers.push(() => makeCharacter(
  23940. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  23941. {
  23942. side: {
  23943. height: math.unit(10, "feet"),
  23944. weight: math.unit(1000, "kg"),
  23945. name: "Side",
  23946. image: {
  23947. source: "./media/characters/ereus/side.svg",
  23948. extra: 1157 / 959,
  23949. bottom: 153 / 1312.5
  23950. }
  23951. },
  23952. },
  23953. [
  23954. {
  23955. name: "Normal",
  23956. height: math.unit(10, "feet"),
  23957. default: true
  23958. },
  23959. ]
  23960. ))
  23961. characterMakers.push(() => makeCharacter(
  23962. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  23963. {
  23964. side: {
  23965. height: math.unit(4.5, "feet"),
  23966. weight: math.unit(500, "lb"),
  23967. name: "Side",
  23968. image: {
  23969. source: "./media/characters/e-ter/side.svg",
  23970. extra: 1550 / 1248,
  23971. bottom: 146 / 1694
  23972. }
  23973. },
  23974. },
  23975. [
  23976. {
  23977. name: "Normal",
  23978. height: math.unit(4.5, "feet"),
  23979. default: true
  23980. },
  23981. ]
  23982. ))
  23983. characterMakers.push(() => makeCharacter(
  23984. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  23985. {
  23986. side: {
  23987. height: math.unit(9.7, "feet"),
  23988. weight: math.unit(4000, "kg"),
  23989. name: "Side",
  23990. image: {
  23991. source: "./media/characters/yamie/side.svg"
  23992. }
  23993. },
  23994. },
  23995. [
  23996. {
  23997. name: "Normal",
  23998. height: math.unit(9.7, "feet"),
  23999. default: true
  24000. },
  24001. ]
  24002. ))
  24003. characterMakers.push(() => makeCharacter(
  24004. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  24005. {
  24006. front: {
  24007. height: math.unit(50, "feet"),
  24008. weight: math.unit(50000, "kg"),
  24009. name: "Front",
  24010. image: {
  24011. source: "./media/characters/anders/front.svg",
  24012. extra: 570 / 539,
  24013. bottom: 14.7 / 586.7
  24014. }
  24015. },
  24016. },
  24017. [
  24018. {
  24019. name: "Large",
  24020. height: math.unit(50, "feet")
  24021. },
  24022. {
  24023. name: "Macro",
  24024. height: math.unit(2000, "feet"),
  24025. default: true
  24026. },
  24027. {
  24028. name: "Megamacro",
  24029. height: math.unit(12, "miles")
  24030. },
  24031. ]
  24032. ))
  24033. characterMakers.push(() => makeCharacter(
  24034. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  24035. {
  24036. front: {
  24037. height: math.unit(7 + 2 / 12, "feet"),
  24038. weight: math.unit(300, "lb"),
  24039. name: "Front",
  24040. image: {
  24041. source: "./media/characters/reban/front.svg",
  24042. extra: 1287/1212,
  24043. bottom: 148/1435
  24044. }
  24045. },
  24046. head: {
  24047. height: math.unit(1.95, "feet"),
  24048. name: "Head",
  24049. image: {
  24050. source: "./media/characters/reban/head.svg"
  24051. }
  24052. },
  24053. maw: {
  24054. height: math.unit(0.95, "feet"),
  24055. name: "Maw",
  24056. image: {
  24057. source: "./media/characters/reban/maw.svg"
  24058. }
  24059. },
  24060. foot: {
  24061. height: math.unit(1.65, "feet"),
  24062. name: "Foot",
  24063. image: {
  24064. source: "./media/characters/reban/foot.svg"
  24065. }
  24066. },
  24067. dick: {
  24068. height: math.unit(7 / 5, "feet"),
  24069. name: "Dick",
  24070. image: {
  24071. source: "./media/characters/reban/dick.svg"
  24072. }
  24073. },
  24074. },
  24075. [
  24076. {
  24077. name: "Natural Height",
  24078. height: math.unit(7 + 2 / 12, "feet")
  24079. },
  24080. {
  24081. name: "Macro",
  24082. height: math.unit(500, "feet"),
  24083. default: true
  24084. },
  24085. {
  24086. name: "Canon Height",
  24087. height: math.unit(50, "AU")
  24088. },
  24089. ]
  24090. ))
  24091. characterMakers.push(() => makeCharacter(
  24092. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  24093. {
  24094. front: {
  24095. height: math.unit(6, "feet"),
  24096. weight: math.unit(150, "lb"),
  24097. name: "Front",
  24098. image: {
  24099. source: "./media/characters/terrance-keayes/front.svg",
  24100. extra: 1.005,
  24101. bottom: 151 / 1615
  24102. }
  24103. },
  24104. side: {
  24105. height: math.unit(6, "feet"),
  24106. weight: math.unit(150, "lb"),
  24107. name: "Side",
  24108. image: {
  24109. source: "./media/characters/terrance-keayes/side.svg",
  24110. extra: 1.005,
  24111. bottom: 129.4 / 1544
  24112. }
  24113. },
  24114. back: {
  24115. height: math.unit(6, "feet"),
  24116. weight: math.unit(150, "lb"),
  24117. name: "Back",
  24118. image: {
  24119. source: "./media/characters/terrance-keayes/back.svg",
  24120. extra: 1.005,
  24121. bottom: 58.4 / 1557.3
  24122. }
  24123. },
  24124. dick: {
  24125. height: math.unit(6 * 0.208, "feet"),
  24126. name: "Dick",
  24127. image: {
  24128. source: "./media/characters/terrance-keayes/dick.svg"
  24129. }
  24130. },
  24131. },
  24132. [
  24133. {
  24134. name: "Canon Height",
  24135. height: math.unit(35, "miles"),
  24136. default: true
  24137. },
  24138. ]
  24139. ))
  24140. characterMakers.push(() => makeCharacter(
  24141. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  24142. {
  24143. front: {
  24144. height: math.unit(6, "feet"),
  24145. weight: math.unit(150, "lb"),
  24146. name: "Front",
  24147. image: {
  24148. source: "./media/characters/ofelia/front.svg",
  24149. extra: 1130/1117,
  24150. bottom: 91/1221
  24151. }
  24152. },
  24153. back: {
  24154. height: math.unit(6, "feet"),
  24155. weight: math.unit(150, "lb"),
  24156. name: "Back",
  24157. image: {
  24158. source: "./media/characters/ofelia/back.svg",
  24159. extra: 1172/1159,
  24160. bottom: 28/1200
  24161. }
  24162. },
  24163. maw: {
  24164. height: math.unit(1, "feet"),
  24165. name: "Maw",
  24166. image: {
  24167. source: "./media/characters/ofelia/maw.svg"
  24168. }
  24169. },
  24170. foot: {
  24171. height: math.unit(1.949, "feet"),
  24172. name: "Foot",
  24173. image: {
  24174. source: "./media/characters/ofelia/foot.svg"
  24175. }
  24176. },
  24177. },
  24178. [
  24179. {
  24180. name: "Canon Height",
  24181. height: math.unit(2000, "miles"),
  24182. default: true
  24183. },
  24184. ]
  24185. ))
  24186. characterMakers.push(() => makeCharacter(
  24187. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  24188. {
  24189. front: {
  24190. height: math.unit(6, "feet"),
  24191. weight: math.unit(150, "lb"),
  24192. name: "Front",
  24193. image: {
  24194. source: "./media/characters/samuel/front.svg",
  24195. extra: 265 / 258,
  24196. bottom: 2 / 266.1566
  24197. }
  24198. },
  24199. },
  24200. [
  24201. {
  24202. name: "Macro",
  24203. height: math.unit(100, "feet"),
  24204. default: true
  24205. },
  24206. {
  24207. name: "Full Size",
  24208. height: math.unit(1000, "miles")
  24209. },
  24210. ]
  24211. ))
  24212. characterMakers.push(() => makeCharacter(
  24213. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  24214. {
  24215. front: {
  24216. height: math.unit(6, "feet"),
  24217. weight: math.unit(300, "lb"),
  24218. name: "Front",
  24219. image: {
  24220. source: "./media/characters/beishir-kiel/front.svg",
  24221. extra: 569 / 547,
  24222. bottom: 41.9 / 609
  24223. }
  24224. },
  24225. maw: {
  24226. height: math.unit(6 * 0.202, "feet"),
  24227. name: "Maw",
  24228. image: {
  24229. source: "./media/characters/beishir-kiel/maw.svg"
  24230. }
  24231. },
  24232. },
  24233. [
  24234. {
  24235. name: "Macro",
  24236. height: math.unit(300, "feet"),
  24237. default: true
  24238. },
  24239. ]
  24240. ))
  24241. characterMakers.push(() => makeCharacter(
  24242. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  24243. {
  24244. front: {
  24245. height: math.unit(5 + 7/12, "feet"),
  24246. weight: math.unit(120, "lb"),
  24247. name: "Front",
  24248. image: {
  24249. source: "./media/characters/logan-grey/front.svg",
  24250. extra: 1836/1738,
  24251. bottom: 108/1944
  24252. }
  24253. },
  24254. back: {
  24255. height: math.unit(5 + 7/12, "feet"),
  24256. weight: math.unit(120, "lb"),
  24257. name: "Back",
  24258. image: {
  24259. source: "./media/characters/logan-grey/back.svg",
  24260. extra: 1880/1794,
  24261. bottom: 24/1904
  24262. }
  24263. },
  24264. frontSfw: {
  24265. height: math.unit(5 + 7/12, "feet"),
  24266. weight: math.unit(120, "lb"),
  24267. name: "Front (SFW)",
  24268. image: {
  24269. source: "./media/characters/logan-grey/front-sfw.svg",
  24270. extra: 1836/1738,
  24271. bottom: 108/1944
  24272. }
  24273. },
  24274. backSfw: {
  24275. height: math.unit(5 + 7/12, "feet"),
  24276. weight: math.unit(120, "lb"),
  24277. name: "Back (SFW)",
  24278. image: {
  24279. source: "./media/characters/logan-grey/back-sfw.svg",
  24280. extra: 1880/1794,
  24281. bottom: 24/1904
  24282. }
  24283. },
  24284. hands: {
  24285. height: math.unit(0.84, "feet"),
  24286. name: "Hands",
  24287. image: {
  24288. source: "./media/characters/logan-grey/hands.svg"
  24289. }
  24290. },
  24291. paws: {
  24292. height: math.unit(0.72, "feet"),
  24293. name: "Paws",
  24294. image: {
  24295. source: "./media/characters/logan-grey/paws.svg"
  24296. }
  24297. },
  24298. cock: {
  24299. height: math.unit(1.45, "feet"),
  24300. name: "Cock",
  24301. image: {
  24302. source: "./media/characters/logan-grey/cock.svg"
  24303. }
  24304. },
  24305. cockAlt: {
  24306. height: math.unit(1.437, "feet"),
  24307. name: "Cock (alt)",
  24308. image: {
  24309. source: "./media/characters/logan-grey/cock-alt.svg"
  24310. }
  24311. },
  24312. },
  24313. [
  24314. {
  24315. name: "Normal",
  24316. height: math.unit(5 + 8 / 12, "feet")
  24317. },
  24318. {
  24319. name: "The 500 Foot Femboy",
  24320. height: math.unit(500, "feet"),
  24321. default: true
  24322. },
  24323. {
  24324. name: "Megmacro",
  24325. height: math.unit(20, "miles")
  24326. },
  24327. ]
  24328. ))
  24329. characterMakers.push(() => makeCharacter(
  24330. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  24331. {
  24332. front: {
  24333. height: math.unit(8 + 2 / 12, "feet"),
  24334. weight: math.unit(275, "lb"),
  24335. name: "Front",
  24336. image: {
  24337. source: "./media/characters/draganta/front.svg",
  24338. extra: 1177 / 1135,
  24339. bottom: 33.46 / 1212.1
  24340. }
  24341. },
  24342. },
  24343. [
  24344. {
  24345. name: "Normal",
  24346. height: math.unit(8 + 6 / 12, "feet"),
  24347. default: true
  24348. },
  24349. {
  24350. name: "Macro",
  24351. height: math.unit(150, "feet")
  24352. },
  24353. {
  24354. name: "Megamacro",
  24355. height: math.unit(1000, "miles")
  24356. },
  24357. ]
  24358. ))
  24359. characterMakers.push(() => makeCharacter(
  24360. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  24361. {
  24362. front: {
  24363. height: math.unit(1.72, "m"),
  24364. weight: math.unit(80, "lb"),
  24365. name: "Front",
  24366. image: {
  24367. source: "./media/characters/voski/front.svg",
  24368. extra: 2076.22 / 2022.4,
  24369. bottom: 102.7 / 2177.3866
  24370. }
  24371. },
  24372. frontFlaccid: {
  24373. height: math.unit(1.72, "m"),
  24374. weight: math.unit(80, "lb"),
  24375. name: "Front (Flaccid)",
  24376. image: {
  24377. source: "./media/characters/voski/front-flaccid.svg",
  24378. extra: 2076.22 / 2022.4,
  24379. bottom: 102.7 / 2177.3866
  24380. }
  24381. },
  24382. frontErect: {
  24383. height: math.unit(1.72, "m"),
  24384. weight: math.unit(80, "lb"),
  24385. name: "Front (Erect)",
  24386. image: {
  24387. source: "./media/characters/voski/front-erect.svg",
  24388. extra: 2076.22 / 2022.4,
  24389. bottom: 102.7 / 2177.3866
  24390. }
  24391. },
  24392. back: {
  24393. height: math.unit(1.72, "m"),
  24394. weight: math.unit(80, "lb"),
  24395. name: "Back",
  24396. image: {
  24397. source: "./media/characters/voski/back.svg",
  24398. extra: 2104 / 2051,
  24399. bottom: 10.45 / 2113.63
  24400. }
  24401. },
  24402. },
  24403. [
  24404. {
  24405. name: "Normal",
  24406. height: math.unit(1.72, "m")
  24407. },
  24408. {
  24409. name: "Macro",
  24410. height: math.unit(55, "m"),
  24411. default: true
  24412. },
  24413. {
  24414. name: "Macro+",
  24415. height: math.unit(300, "m")
  24416. },
  24417. {
  24418. name: "Macro++",
  24419. height: math.unit(700, "m")
  24420. },
  24421. {
  24422. name: "Macro+++",
  24423. height: math.unit(4500, "m")
  24424. },
  24425. {
  24426. name: "Macro++++",
  24427. height: math.unit(45, "km")
  24428. },
  24429. {
  24430. name: "Macro+++++",
  24431. height: math.unit(1220, "km")
  24432. },
  24433. ]
  24434. ))
  24435. characterMakers.push(() => makeCharacter(
  24436. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  24437. {
  24438. front: {
  24439. height: math.unit(2.3, "m"),
  24440. weight: math.unit(304, "kg"),
  24441. name: "Front",
  24442. image: {
  24443. source: "./media/characters/icowom-lee/front.svg",
  24444. extra: 985 / 955,
  24445. bottom: 25.4 / 1012
  24446. }
  24447. },
  24448. fronttentacles: {
  24449. height: math.unit(2.3, "m"),
  24450. weight: math.unit(304, "kg"),
  24451. name: "Front-tentacles",
  24452. image: {
  24453. source: "./media/characters/icowom-lee/front-tentacles.svg",
  24454. extra: 985 / 955,
  24455. bottom: 25.4 / 1012
  24456. }
  24457. },
  24458. back: {
  24459. height: math.unit(2.3, "m"),
  24460. weight: math.unit(304, "kg"),
  24461. name: "Back",
  24462. image: {
  24463. source: "./media/characters/icowom-lee/back.svg",
  24464. extra: 975 / 954,
  24465. bottom: 9.5 / 985
  24466. }
  24467. },
  24468. backtentacles: {
  24469. height: math.unit(2.3, "m"),
  24470. weight: math.unit(304, "kg"),
  24471. name: "Back-tentacles",
  24472. image: {
  24473. source: "./media/characters/icowom-lee/back-tentacles.svg",
  24474. extra: 975 / 954,
  24475. bottom: 9.5 / 985
  24476. }
  24477. },
  24478. frontDressed: {
  24479. height: math.unit(2.3, "m"),
  24480. weight: math.unit(304, "kg"),
  24481. name: "Front (Dressed)",
  24482. image: {
  24483. source: "./media/characters/icowom-lee/front-dressed.svg",
  24484. extra: 3076 / 2933,
  24485. bottom: 51.4 / 3125.1889
  24486. }
  24487. },
  24488. rump: {
  24489. height: math.unit(0.776, "meters"),
  24490. name: "Rump",
  24491. image: {
  24492. source: "./media/characters/icowom-lee/rump.svg"
  24493. }
  24494. },
  24495. genitals: {
  24496. height: math.unit(0.78, "meters"),
  24497. name: "Genitals",
  24498. image: {
  24499. source: "./media/characters/icowom-lee/genitals.svg"
  24500. }
  24501. },
  24502. },
  24503. [
  24504. {
  24505. name: "Normal",
  24506. height: math.unit(2.3, "meters"),
  24507. default: true
  24508. },
  24509. {
  24510. name: "Macro",
  24511. height: math.unit(94, "meters"),
  24512. default: true
  24513. },
  24514. ]
  24515. ))
  24516. characterMakers.push(() => makeCharacter(
  24517. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  24518. {
  24519. front: {
  24520. height: math.unit(22, "meters"),
  24521. weight: math.unit(21000, "kg"),
  24522. name: "Front",
  24523. image: {
  24524. source: "./media/characters/shock-diamond/front.svg",
  24525. extra: 2204 / 2053,
  24526. bottom: 65 / 2239.47
  24527. }
  24528. },
  24529. frontNude: {
  24530. height: math.unit(22, "meters"),
  24531. weight: math.unit(21000, "kg"),
  24532. name: "Front (Nude)",
  24533. image: {
  24534. source: "./media/characters/shock-diamond/front-nude.svg",
  24535. extra: 2514 / 2285,
  24536. bottom: 13 / 2527.56
  24537. }
  24538. },
  24539. },
  24540. [
  24541. {
  24542. name: "Normal",
  24543. height: math.unit(3, "meters")
  24544. },
  24545. {
  24546. name: "Macro",
  24547. height: math.unit(22, "meters"),
  24548. default: true
  24549. },
  24550. ]
  24551. ))
  24552. characterMakers.push(() => makeCharacter(
  24553. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  24554. {
  24555. frontNsfw: {
  24556. height: math.unit(5 + 4/12, "feet"),
  24557. weight: math.unit(195, "lb"),
  24558. name: "Front",
  24559. image: {
  24560. source: "./media/characters/rory/front.svg",
  24561. extra: 1220/1100,
  24562. bottom: 103/1323
  24563. }
  24564. },
  24565. back: {
  24566. height: math.unit(5 + 4/12, "feet"),
  24567. weight: math.unit(195, "lb"),
  24568. name: "Back",
  24569. image: {
  24570. source: "./media/characters/rory/back.svg",
  24571. extra: 1166/1086,
  24572. bottom: 35/1201
  24573. }
  24574. },
  24575. },
  24576. [
  24577. {
  24578. name: "Micro",
  24579. height: math.unit(3, "inches")
  24580. },
  24581. {
  24582. name: "Normal",
  24583. height: math.unit(5 + 4/12, "feet"),
  24584. default: true
  24585. },
  24586. {
  24587. name: "Macro",
  24588. height: math.unit(90, "feet")
  24589. },
  24590. {
  24591. name: "Supercharged",
  24592. height: math.unit(270, "feet")
  24593. },
  24594. ]
  24595. ))
  24596. characterMakers.push(() => makeCharacter(
  24597. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  24598. {
  24599. front: {
  24600. height: math.unit(5 + 9 / 12, "feet"),
  24601. weight: math.unit(190, "lb"),
  24602. name: "Front",
  24603. image: {
  24604. source: "./media/characters/sprisk/front.svg",
  24605. extra: 1225 / 1180,
  24606. bottom: 42.7 / 1266.4
  24607. }
  24608. },
  24609. frontNsfw: {
  24610. height: math.unit(5 + 9 / 12, "feet"),
  24611. weight: math.unit(190, "lb"),
  24612. name: "Front (NSFW)",
  24613. image: {
  24614. source: "./media/characters/sprisk/front-nsfw.svg",
  24615. extra: 1225 / 1180,
  24616. bottom: 42.7 / 1266.4
  24617. }
  24618. },
  24619. back: {
  24620. height: math.unit(5 + 9 / 12, "feet"),
  24621. weight: math.unit(190, "lb"),
  24622. name: "Back",
  24623. image: {
  24624. source: "./media/characters/sprisk/back.svg",
  24625. extra: 1247 / 1200,
  24626. bottom: 5.6 / 1253.04
  24627. }
  24628. },
  24629. },
  24630. [
  24631. {
  24632. name: "Tiny",
  24633. height: math.unit(2, "inches")
  24634. },
  24635. {
  24636. name: "Normal",
  24637. height: math.unit(5 + 9 / 12, "feet"),
  24638. default: true
  24639. },
  24640. {
  24641. name: "Mini Macro",
  24642. height: math.unit(18, "feet")
  24643. },
  24644. {
  24645. name: "Macro",
  24646. height: math.unit(100, "feet")
  24647. },
  24648. {
  24649. name: "MACRO",
  24650. height: math.unit(50, "miles")
  24651. },
  24652. {
  24653. name: "M A C R O",
  24654. height: math.unit(300, "miles")
  24655. },
  24656. ]
  24657. ))
  24658. characterMakers.push(() => makeCharacter(
  24659. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  24660. {
  24661. side: {
  24662. height: math.unit(15.6, "meters"),
  24663. weight: math.unit(700000, "kg"),
  24664. name: "Side",
  24665. image: {
  24666. source: "./media/characters/bunsen/side.svg",
  24667. extra: 1644 / 358
  24668. }
  24669. },
  24670. foot: {
  24671. height: math.unit(1.611 * 1644 / 358, "meter"),
  24672. name: "Foot",
  24673. image: {
  24674. source: "./media/characters/bunsen/foot.svg"
  24675. }
  24676. },
  24677. },
  24678. [
  24679. {
  24680. name: "Small",
  24681. height: math.unit(10, "feet")
  24682. },
  24683. {
  24684. name: "Normal",
  24685. height: math.unit(15.6, "meters"),
  24686. default: true
  24687. },
  24688. ]
  24689. ))
  24690. characterMakers.push(() => makeCharacter(
  24691. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  24692. {
  24693. front: {
  24694. height: math.unit(4 + 11 / 12, "feet"),
  24695. weight: math.unit(140, "lb"),
  24696. name: "Front",
  24697. image: {
  24698. source: "./media/characters/sesh/front.svg",
  24699. extra: 3420 / 3231,
  24700. bottom: 72 / 3949.5
  24701. }
  24702. },
  24703. },
  24704. [
  24705. {
  24706. name: "Normal",
  24707. height: math.unit(4 + 11 / 12, "feet")
  24708. },
  24709. {
  24710. name: "Grown",
  24711. height: math.unit(15, "feet"),
  24712. default: true
  24713. },
  24714. {
  24715. name: "Macro",
  24716. height: math.unit(1500, "feet")
  24717. },
  24718. {
  24719. name: "Megamacro",
  24720. height: math.unit(30, "miles")
  24721. },
  24722. {
  24723. name: "Continental",
  24724. height: math.unit(3000, "miles")
  24725. },
  24726. {
  24727. name: "Gravity Mass",
  24728. height: math.unit(300000, "miles")
  24729. },
  24730. {
  24731. name: "Planet Buster",
  24732. height: math.unit(30000000, "miles")
  24733. },
  24734. {
  24735. name: "Big",
  24736. height: math.unit(3000000000, "miles")
  24737. },
  24738. ]
  24739. ))
  24740. characterMakers.push(() => makeCharacter(
  24741. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  24742. {
  24743. front: {
  24744. height: math.unit(9, "feet"),
  24745. weight: math.unit(350, "lb"),
  24746. name: "Front",
  24747. image: {
  24748. source: "./media/characters/pepper/front.svg",
  24749. extra: 1448 / 1312,
  24750. bottom: 9.4 / 1457.88
  24751. }
  24752. },
  24753. back: {
  24754. height: math.unit(9, "feet"),
  24755. weight: math.unit(350, "lb"),
  24756. name: "Back",
  24757. image: {
  24758. source: "./media/characters/pepper/back.svg",
  24759. extra: 1423 / 1300,
  24760. bottom: 4.6 / 1429
  24761. }
  24762. },
  24763. maw: {
  24764. height: math.unit(0.932, "feet"),
  24765. name: "Maw",
  24766. image: {
  24767. source: "./media/characters/pepper/maw.svg"
  24768. }
  24769. },
  24770. },
  24771. [
  24772. {
  24773. name: "Normal",
  24774. height: math.unit(9, "feet"),
  24775. default: true
  24776. },
  24777. ]
  24778. ))
  24779. characterMakers.push(() => makeCharacter(
  24780. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  24781. {
  24782. front: {
  24783. height: math.unit(6, "feet"),
  24784. weight: math.unit(150, "lb"),
  24785. name: "Front",
  24786. image: {
  24787. source: "./media/characters/maelstrom/front.svg",
  24788. extra: 2100 / 1883,
  24789. bottom: 94 / 2196.7
  24790. }
  24791. },
  24792. },
  24793. [
  24794. {
  24795. name: "Less Kaiju",
  24796. height: math.unit(200, "feet")
  24797. },
  24798. {
  24799. name: "Kaiju",
  24800. height: math.unit(400, "feet"),
  24801. default: true
  24802. },
  24803. {
  24804. name: "Kaiju-er",
  24805. height: math.unit(600, "feet")
  24806. },
  24807. ]
  24808. ))
  24809. characterMakers.push(() => makeCharacter(
  24810. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  24811. {
  24812. front: {
  24813. height: math.unit(6 + 5 / 12, "feet"),
  24814. weight: math.unit(180, "lb"),
  24815. name: "Front",
  24816. image: {
  24817. source: "./media/characters/lexir/front.svg",
  24818. extra: 180 / 172,
  24819. bottom: 12 / 192
  24820. }
  24821. },
  24822. back: {
  24823. height: math.unit(6 + 5 / 12, "feet"),
  24824. weight: math.unit(180, "lb"),
  24825. name: "Back",
  24826. image: {
  24827. source: "./media/characters/lexir/back.svg",
  24828. extra: 1273/1201,
  24829. bottom: 39/1312
  24830. }
  24831. },
  24832. },
  24833. [
  24834. {
  24835. name: "Very Smal",
  24836. height: math.unit(1, "nm")
  24837. },
  24838. {
  24839. name: "Normal",
  24840. height: math.unit(6 + 5 / 12, "feet"),
  24841. default: true
  24842. },
  24843. {
  24844. name: "Macro",
  24845. height: math.unit(1, "mile")
  24846. },
  24847. {
  24848. name: "Megamacro",
  24849. height: math.unit(50, "miles")
  24850. },
  24851. ]
  24852. ))
  24853. characterMakers.push(() => makeCharacter(
  24854. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  24855. {
  24856. front: {
  24857. height: math.unit(1.5, "meters"),
  24858. weight: math.unit(100, "lb"),
  24859. name: "Front",
  24860. image: {
  24861. source: "./media/characters/maksio/front.svg",
  24862. extra: 1549 / 1531,
  24863. bottom: 123.7 / 1674.5429
  24864. }
  24865. },
  24866. back: {
  24867. height: math.unit(1.5, "meters"),
  24868. weight: math.unit(100, "lb"),
  24869. name: "Back",
  24870. image: {
  24871. source: "./media/characters/maksio/back.svg",
  24872. extra: 1541 / 1509,
  24873. bottom: 97 / 1639
  24874. }
  24875. },
  24876. hand: {
  24877. height: math.unit(0.621, "feet"),
  24878. name: "Hand",
  24879. image: {
  24880. source: "./media/characters/maksio/hand.svg"
  24881. }
  24882. },
  24883. foot: {
  24884. height: math.unit(1.611, "feet"),
  24885. name: "Foot",
  24886. image: {
  24887. source: "./media/characters/maksio/foot.svg"
  24888. }
  24889. },
  24890. },
  24891. [
  24892. {
  24893. name: "Shrunken",
  24894. height: math.unit(10, "cm")
  24895. },
  24896. {
  24897. name: "Normal",
  24898. height: math.unit(150, "cm"),
  24899. default: true
  24900. },
  24901. ]
  24902. ))
  24903. characterMakers.push(() => makeCharacter(
  24904. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  24905. {
  24906. front: {
  24907. height: math.unit(100, "feet"),
  24908. name: "Front",
  24909. image: {
  24910. source: "./media/characters/erza-bear/front.svg",
  24911. extra: 2449 / 2390,
  24912. bottom: 46 / 2494
  24913. }
  24914. },
  24915. back: {
  24916. height: math.unit(100, "feet"),
  24917. name: "Back",
  24918. image: {
  24919. source: "./media/characters/erza-bear/back.svg",
  24920. extra: 2489 / 2430,
  24921. bottom: 85.4 / 2480
  24922. }
  24923. },
  24924. tail: {
  24925. height: math.unit(42, "feet"),
  24926. name: "Tail",
  24927. image: {
  24928. source: "./media/characters/erza-bear/tail.svg"
  24929. }
  24930. },
  24931. tongue: {
  24932. height: math.unit(8, "feet"),
  24933. name: "Tongue",
  24934. image: {
  24935. source: "./media/characters/erza-bear/tongue.svg"
  24936. }
  24937. },
  24938. dick: {
  24939. height: math.unit(10.5, "feet"),
  24940. name: "Dick",
  24941. image: {
  24942. source: "./media/characters/erza-bear/dick.svg"
  24943. }
  24944. },
  24945. dickVertical: {
  24946. height: math.unit(16.9, "feet"),
  24947. name: "Dick (Vertical)",
  24948. image: {
  24949. source: "./media/characters/erza-bear/dick-vertical.svg"
  24950. }
  24951. },
  24952. },
  24953. [
  24954. {
  24955. name: "Macro",
  24956. height: math.unit(100, "feet"),
  24957. default: true
  24958. },
  24959. ]
  24960. ))
  24961. characterMakers.push(() => makeCharacter(
  24962. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  24963. {
  24964. front: {
  24965. height: math.unit(172, "cm"),
  24966. weight: math.unit(73, "kg"),
  24967. name: "Front",
  24968. image: {
  24969. source: "./media/characters/violet-flor/front.svg",
  24970. extra: 1530 / 1442,
  24971. bottom: 61.9 / 1588.8
  24972. }
  24973. },
  24974. back: {
  24975. height: math.unit(180, "cm"),
  24976. weight: math.unit(73, "kg"),
  24977. name: "Back",
  24978. image: {
  24979. source: "./media/characters/violet-flor/back.svg",
  24980. extra: 1692 / 1630,
  24981. bottom: 20 / 1712
  24982. }
  24983. },
  24984. },
  24985. [
  24986. {
  24987. name: "Normal",
  24988. height: math.unit(172, "cm"),
  24989. default: true
  24990. },
  24991. ]
  24992. ))
  24993. characterMakers.push(() => makeCharacter(
  24994. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  24995. {
  24996. front: {
  24997. height: math.unit(6, "feet"),
  24998. weight: math.unit(220, "lb"),
  24999. name: "Front",
  25000. image: {
  25001. source: "./media/characters/lynn-rhea/front.svg",
  25002. extra: 310 / 273
  25003. }
  25004. },
  25005. back: {
  25006. height: math.unit(6, "feet"),
  25007. weight: math.unit(220, "lb"),
  25008. name: "Back",
  25009. image: {
  25010. source: "./media/characters/lynn-rhea/back.svg",
  25011. extra: 310 / 273
  25012. }
  25013. },
  25014. dicks: {
  25015. height: math.unit(0.9, "feet"),
  25016. name: "Dicks",
  25017. image: {
  25018. source: "./media/characters/lynn-rhea/dicks.svg"
  25019. }
  25020. },
  25021. slit: {
  25022. height: math.unit(0.4, "feet"),
  25023. name: "Slit",
  25024. image: {
  25025. source: "./media/characters/lynn-rhea/slit.svg"
  25026. }
  25027. },
  25028. },
  25029. [
  25030. {
  25031. name: "Micro",
  25032. height: math.unit(1, "inch")
  25033. },
  25034. {
  25035. name: "Macro",
  25036. height: math.unit(60, "feet"),
  25037. default: true
  25038. },
  25039. {
  25040. name: "Megamacro",
  25041. height: math.unit(2, "miles")
  25042. },
  25043. {
  25044. name: "Gigamacro",
  25045. height: math.unit(3, "earths")
  25046. },
  25047. {
  25048. name: "Galactic",
  25049. height: math.unit(0.8, "galaxies")
  25050. },
  25051. ]
  25052. ))
  25053. characterMakers.push(() => makeCharacter(
  25054. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  25055. {
  25056. front: {
  25057. height: math.unit(1600, "feet"),
  25058. weight: math.unit(85758785169, "kg"),
  25059. name: "Front",
  25060. image: {
  25061. source: "./media/characters/valathos/front.svg",
  25062. extra: 1451 / 1339
  25063. }
  25064. },
  25065. },
  25066. [
  25067. {
  25068. name: "Macro",
  25069. height: math.unit(1600, "feet"),
  25070. default: true
  25071. },
  25072. ]
  25073. ))
  25074. characterMakers.push(() => makeCharacter(
  25075. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  25076. {
  25077. front: {
  25078. height: math.unit(7 + 5 / 12, "feet"),
  25079. weight: math.unit(300, "lb"),
  25080. name: "Front",
  25081. image: {
  25082. source: "./media/characters/azula/front.svg",
  25083. extra: 3208 / 2880,
  25084. bottom: 80.2 / 3277
  25085. }
  25086. },
  25087. back: {
  25088. height: math.unit(7 + 5 / 12, "feet"),
  25089. weight: math.unit(300, "lb"),
  25090. name: "Back",
  25091. image: {
  25092. source: "./media/characters/azula/back.svg",
  25093. extra: 3169 / 2822,
  25094. bottom: 150.6 / 3321
  25095. }
  25096. },
  25097. },
  25098. [
  25099. {
  25100. name: "Normal",
  25101. height: math.unit(7 + 5 / 12, "feet"),
  25102. default: true
  25103. },
  25104. {
  25105. name: "Big",
  25106. height: math.unit(20, "feet")
  25107. },
  25108. ]
  25109. ))
  25110. characterMakers.push(() => makeCharacter(
  25111. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  25112. {
  25113. front: {
  25114. height: math.unit(5 + 1 / 12, "feet"),
  25115. weight: math.unit(110, "lb"),
  25116. name: "Front",
  25117. image: {
  25118. source: "./media/characters/rupert/front.svg",
  25119. extra: 1549 / 1495,
  25120. bottom: 54.2 / 1604.4
  25121. }
  25122. },
  25123. },
  25124. [
  25125. {
  25126. name: "Normal",
  25127. height: math.unit(5 + 1 / 12, "feet"),
  25128. default: true
  25129. },
  25130. ]
  25131. ))
  25132. characterMakers.push(() => makeCharacter(
  25133. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  25134. {
  25135. front: {
  25136. height: math.unit(8 + 4 / 12, "feet"),
  25137. weight: math.unit(350, "lb"),
  25138. name: "Front",
  25139. image: {
  25140. source: "./media/characters/sheera-castellar/front.svg",
  25141. extra: 1957 / 1894,
  25142. bottom: 26.97 / 1975.017
  25143. }
  25144. },
  25145. side: {
  25146. height: math.unit(8 + 4 / 12, "feet"),
  25147. weight: math.unit(350, "lb"),
  25148. name: "Side",
  25149. image: {
  25150. source: "./media/characters/sheera-castellar/side.svg",
  25151. extra: 1957 / 1894
  25152. }
  25153. },
  25154. back: {
  25155. height: math.unit(8 + 4 / 12, "feet"),
  25156. weight: math.unit(350, "lb"),
  25157. name: "Back",
  25158. image: {
  25159. source: "./media/characters/sheera-castellar/back.svg",
  25160. extra: 1957 / 1894
  25161. }
  25162. },
  25163. angled: {
  25164. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  25165. weight: math.unit(350, "lb"),
  25166. name: "Angled",
  25167. image: {
  25168. source: "./media/characters/sheera-castellar/angled.svg",
  25169. extra: 1807 / 1707,
  25170. bottom: 68 / 1875
  25171. }
  25172. },
  25173. genitals: {
  25174. height: math.unit(2.2, "feet"),
  25175. name: "Genitals",
  25176. image: {
  25177. source: "./media/characters/sheera-castellar/genitals.svg"
  25178. }
  25179. },
  25180. taur: {
  25181. height: math.unit(10 + 6/12, "feet"),
  25182. name: "Taur",
  25183. image: {
  25184. source: "./media/characters/sheera-castellar/taur.svg",
  25185. extra: 2017/1909,
  25186. bottom: 185/2202
  25187. }
  25188. },
  25189. },
  25190. [
  25191. {
  25192. name: "Normal",
  25193. height: math.unit(8 + 4 / 12, "feet")
  25194. },
  25195. {
  25196. name: "Macro",
  25197. height: math.unit(150, "feet"),
  25198. default: true
  25199. },
  25200. {
  25201. name: "Macro+",
  25202. height: math.unit(800, "feet")
  25203. },
  25204. ]
  25205. ))
  25206. characterMakers.push(() => makeCharacter(
  25207. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  25208. {
  25209. front: {
  25210. height: math.unit(6, "feet"),
  25211. weight: math.unit(150, "lb"),
  25212. name: "Front",
  25213. image: {
  25214. source: "./media/characters/jaipur/front.svg",
  25215. extra: 3860 / 3731,
  25216. bottom: 287 / 4140
  25217. }
  25218. },
  25219. back: {
  25220. height: math.unit(6, "feet"),
  25221. weight: math.unit(150, "lb"),
  25222. name: "Back",
  25223. image: {
  25224. source: "./media/characters/jaipur/back.svg",
  25225. extra: 1637/1561,
  25226. bottom: 154/1791
  25227. }
  25228. },
  25229. },
  25230. [
  25231. {
  25232. name: "Normal",
  25233. height: math.unit(1.85, "meters"),
  25234. default: true
  25235. },
  25236. {
  25237. name: "Macro",
  25238. height: math.unit(150, "meters")
  25239. },
  25240. {
  25241. name: "Macro+",
  25242. height: math.unit(0.5, "miles")
  25243. },
  25244. {
  25245. name: "Macro++",
  25246. height: math.unit(2.5, "miles")
  25247. },
  25248. {
  25249. name: "Macro+++",
  25250. height: math.unit(12, "miles")
  25251. },
  25252. {
  25253. name: "Macro++++",
  25254. height: math.unit(120, "miles")
  25255. },
  25256. {
  25257. name: "Macro+++++",
  25258. height: math.unit(1200, "miles")
  25259. },
  25260. ]
  25261. ))
  25262. characterMakers.push(() => makeCharacter(
  25263. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  25264. {
  25265. front: {
  25266. height: math.unit(6, "feet"),
  25267. weight: math.unit(150, "lb"),
  25268. name: "Front",
  25269. image: {
  25270. source: "./media/characters/sheila-wolf/front.svg",
  25271. extra: 1931 / 1808,
  25272. bottom: 29.5 / 1960
  25273. }
  25274. },
  25275. dick: {
  25276. height: math.unit(1.464, "feet"),
  25277. name: "Dick",
  25278. image: {
  25279. source: "./media/characters/sheila-wolf/dick.svg"
  25280. }
  25281. },
  25282. muzzle: {
  25283. height: math.unit(0.513, "feet"),
  25284. name: "Muzzle",
  25285. image: {
  25286. source: "./media/characters/sheila-wolf/muzzle.svg"
  25287. }
  25288. },
  25289. },
  25290. [
  25291. {
  25292. name: "Macro",
  25293. height: math.unit(70, "feet"),
  25294. default: true
  25295. },
  25296. ]
  25297. ))
  25298. characterMakers.push(() => makeCharacter(
  25299. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  25300. {
  25301. front: {
  25302. height: math.unit(32, "meters"),
  25303. weight: math.unit(300000, "kg"),
  25304. name: "Front",
  25305. image: {
  25306. source: "./media/characters/almor/front.svg",
  25307. extra: 1408 / 1322,
  25308. bottom: 94.6 / 1506.5
  25309. }
  25310. },
  25311. },
  25312. [
  25313. {
  25314. name: "Macro",
  25315. height: math.unit(32, "meters"),
  25316. default: true
  25317. },
  25318. ]
  25319. ))
  25320. characterMakers.push(() => makeCharacter(
  25321. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  25322. {
  25323. front: {
  25324. height: math.unit(7, "feet"),
  25325. weight: math.unit(200, "lb"),
  25326. name: "Front",
  25327. image: {
  25328. source: "./media/characters/silver/front.svg",
  25329. extra: 472.1 / 450.5,
  25330. bottom: 26.5 / 499.424
  25331. }
  25332. },
  25333. },
  25334. [
  25335. {
  25336. name: "Normal",
  25337. height: math.unit(7, "feet"),
  25338. default: true
  25339. },
  25340. {
  25341. name: "Macro",
  25342. height: math.unit(800, "feet")
  25343. },
  25344. {
  25345. name: "Megamacro",
  25346. height: math.unit(250, "miles")
  25347. },
  25348. ]
  25349. ))
  25350. characterMakers.push(() => makeCharacter(
  25351. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  25352. {
  25353. front: {
  25354. height: math.unit(6, "feet"),
  25355. weight: math.unit(150, "lb"),
  25356. name: "Front",
  25357. image: {
  25358. source: "./media/characters/pliskin/front.svg",
  25359. extra: 1469 / 1359,
  25360. bottom: 70 / 1540
  25361. }
  25362. },
  25363. },
  25364. [
  25365. {
  25366. name: "Micro",
  25367. height: math.unit(3, "inches")
  25368. },
  25369. {
  25370. name: "Normal",
  25371. height: math.unit(5 + 11 / 12, "feet"),
  25372. default: true
  25373. },
  25374. {
  25375. name: "Macro",
  25376. height: math.unit(120, "feet")
  25377. },
  25378. ]
  25379. ))
  25380. characterMakers.push(() => makeCharacter(
  25381. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  25382. {
  25383. front: {
  25384. height: math.unit(6, "feet"),
  25385. weight: math.unit(150, "lb"),
  25386. name: "Front",
  25387. image: {
  25388. source: "./media/characters/sammy/front.svg",
  25389. extra: 1193 / 1089,
  25390. bottom: 30.5 / 1226
  25391. }
  25392. },
  25393. },
  25394. [
  25395. {
  25396. name: "Macro",
  25397. height: math.unit(1700, "feet"),
  25398. default: true
  25399. },
  25400. {
  25401. name: "Examacro",
  25402. height: math.unit(2.5e9, "lightyears")
  25403. },
  25404. ]
  25405. ))
  25406. characterMakers.push(() => makeCharacter(
  25407. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  25408. {
  25409. front: {
  25410. height: math.unit(21, "meters"),
  25411. weight: math.unit(12, "tonnes"),
  25412. name: "Front",
  25413. image: {
  25414. source: "./media/characters/kuru/front.svg",
  25415. extra: 4301 / 3785,
  25416. bottom: 371.3 / 4691
  25417. }
  25418. },
  25419. },
  25420. [
  25421. {
  25422. name: "Macro",
  25423. height: math.unit(21, "meters"),
  25424. default: true
  25425. },
  25426. ]
  25427. ))
  25428. characterMakers.push(() => makeCharacter(
  25429. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  25430. {
  25431. front: {
  25432. height: math.unit(23, "meters"),
  25433. weight: math.unit(12.2, "tonnes"),
  25434. name: "Front",
  25435. image: {
  25436. source: "./media/characters/rakka/front.svg",
  25437. extra: 4670 / 4169,
  25438. bottom: 301 / 4968.7
  25439. }
  25440. },
  25441. },
  25442. [
  25443. {
  25444. name: "Macro",
  25445. height: math.unit(23, "meters"),
  25446. default: true
  25447. },
  25448. ]
  25449. ))
  25450. characterMakers.push(() => makeCharacter(
  25451. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  25452. {
  25453. front: {
  25454. height: math.unit(6, "feet"),
  25455. weight: math.unit(150, "lb"),
  25456. name: "Front",
  25457. image: {
  25458. source: "./media/characters/rhys-feline/front.svg",
  25459. extra: 2488 / 2308,
  25460. bottom: 35.67 / 2519.19
  25461. }
  25462. },
  25463. },
  25464. [
  25465. {
  25466. name: "Really Small",
  25467. height: math.unit(1, "nm")
  25468. },
  25469. {
  25470. name: "Micro",
  25471. height: math.unit(4, "inches")
  25472. },
  25473. {
  25474. name: "Normal",
  25475. height: math.unit(4 + 10 / 12, "feet"),
  25476. default: true
  25477. },
  25478. {
  25479. name: "Macro",
  25480. height: math.unit(100, "feet")
  25481. },
  25482. {
  25483. name: "Megamacto",
  25484. height: math.unit(50, "miles")
  25485. },
  25486. ]
  25487. ))
  25488. characterMakers.push(() => makeCharacter(
  25489. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  25490. {
  25491. side: {
  25492. height: math.unit(30, "feet"),
  25493. weight: math.unit(35000, "kg"),
  25494. name: "Side",
  25495. image: {
  25496. source: "./media/characters/alydar/side.svg",
  25497. extra: 234 / 222,
  25498. bottom: 6.5 / 241
  25499. }
  25500. },
  25501. front: {
  25502. height: math.unit(30, "feet"),
  25503. weight: math.unit(35000, "kg"),
  25504. name: "Front",
  25505. image: {
  25506. source: "./media/characters/alydar/front.svg",
  25507. extra: 223.37 / 210.2,
  25508. bottom: 22.3 / 246.76
  25509. }
  25510. },
  25511. top: {
  25512. height: math.unit(64.54, "feet"),
  25513. weight: math.unit(35000, "kg"),
  25514. name: "Top",
  25515. image: {
  25516. source: "./media/characters/alydar/top.svg"
  25517. }
  25518. },
  25519. anthro: {
  25520. height: math.unit(30, "feet"),
  25521. weight: math.unit(9000, "kg"),
  25522. name: "Anthro",
  25523. image: {
  25524. source: "./media/characters/alydar/anthro.svg",
  25525. extra: 432 / 421,
  25526. bottom: 7.18 / 440
  25527. }
  25528. },
  25529. maw: {
  25530. height: math.unit(11.693, "feet"),
  25531. name: "Maw",
  25532. image: {
  25533. source: "./media/characters/alydar/maw.svg"
  25534. }
  25535. },
  25536. head: {
  25537. height: math.unit(11.693, "feet"),
  25538. name: "Head",
  25539. image: {
  25540. source: "./media/characters/alydar/head.svg"
  25541. }
  25542. },
  25543. headAlt: {
  25544. height: math.unit(12.861, "feet"),
  25545. name: "Head (Alt)",
  25546. image: {
  25547. source: "./media/characters/alydar/head-alt.svg"
  25548. }
  25549. },
  25550. wing: {
  25551. height: math.unit(20.712, "feet"),
  25552. name: "Wing",
  25553. image: {
  25554. source: "./media/characters/alydar/wing.svg"
  25555. }
  25556. },
  25557. wingFeather: {
  25558. height: math.unit(9.662, "feet"),
  25559. name: "Wing Feather",
  25560. image: {
  25561. source: "./media/characters/alydar/wing-feather.svg"
  25562. }
  25563. },
  25564. countourFeather: {
  25565. height: math.unit(4.154, "feet"),
  25566. name: "Contour Feather",
  25567. image: {
  25568. source: "./media/characters/alydar/contour-feather.svg"
  25569. }
  25570. },
  25571. },
  25572. [
  25573. {
  25574. name: "Diplomatic",
  25575. height: math.unit(13, "feet"),
  25576. default: true
  25577. },
  25578. {
  25579. name: "Small",
  25580. height: math.unit(30, "feet")
  25581. },
  25582. {
  25583. name: "Normal",
  25584. height: math.unit(95, "feet"),
  25585. default: true
  25586. },
  25587. {
  25588. name: "Large",
  25589. height: math.unit(285, "feet")
  25590. },
  25591. {
  25592. name: "Incomprehensible",
  25593. height: math.unit(450, "megameters")
  25594. },
  25595. ]
  25596. ))
  25597. characterMakers.push(() => makeCharacter(
  25598. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  25599. {
  25600. side: {
  25601. height: math.unit(11, "feet"),
  25602. weight: math.unit(1750, "kg"),
  25603. name: "Side",
  25604. image: {
  25605. source: "./media/characters/selicia/side.svg",
  25606. extra: 440 / 396,
  25607. bottom: 24.8 / 465.979
  25608. }
  25609. },
  25610. maw: {
  25611. height: math.unit(4.665, "feet"),
  25612. name: "Maw",
  25613. image: {
  25614. source: "./media/characters/selicia/maw.svg"
  25615. }
  25616. },
  25617. },
  25618. [
  25619. {
  25620. name: "Normal",
  25621. height: math.unit(11, "feet"),
  25622. default: true
  25623. },
  25624. ]
  25625. ))
  25626. characterMakers.push(() => makeCharacter(
  25627. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  25628. {
  25629. side: {
  25630. height: math.unit(2 + 6 / 12, "feet"),
  25631. weight: math.unit(30, "lb"),
  25632. name: "Side",
  25633. image: {
  25634. source: "./media/characters/layla/side.svg",
  25635. extra: 244 / 188,
  25636. bottom: 18.2 / 262.1
  25637. }
  25638. },
  25639. back: {
  25640. height: math.unit(2 + 6 / 12, "feet"),
  25641. weight: math.unit(30, "lb"),
  25642. name: "Back",
  25643. image: {
  25644. source: "./media/characters/layla/back.svg",
  25645. extra: 308 / 241.5,
  25646. bottom: 8.9 / 316.8
  25647. }
  25648. },
  25649. cumming: {
  25650. height: math.unit(2 + 6 / 12, "feet"),
  25651. weight: math.unit(30, "lb"),
  25652. name: "Cumming",
  25653. image: {
  25654. source: "./media/characters/layla/cumming.svg",
  25655. extra: 342 / 279,
  25656. bottom: 595 / 938
  25657. }
  25658. },
  25659. dickFlaccid: {
  25660. height: math.unit(2.595, "feet"),
  25661. name: "Flaccid Genitals",
  25662. image: {
  25663. source: "./media/characters/layla/dick-flaccid.svg"
  25664. }
  25665. },
  25666. dickErect: {
  25667. height: math.unit(2.359, "feet"),
  25668. name: "Erect Genitals",
  25669. image: {
  25670. source: "./media/characters/layla/dick-erect.svg"
  25671. }
  25672. },
  25673. dragon: {
  25674. height: math.unit(40, "feet"),
  25675. name: "Dragon",
  25676. image: {
  25677. source: "./media/characters/layla/dragon.svg",
  25678. extra: 610/535,
  25679. bottom: 367/977
  25680. }
  25681. },
  25682. taur: {
  25683. height: math.unit(30, "feet"),
  25684. name: "Taur",
  25685. image: {
  25686. source: "./media/characters/layla/taur.svg",
  25687. extra: 1268/1199,
  25688. bottom: 112/1380
  25689. }
  25690. },
  25691. },
  25692. [
  25693. {
  25694. name: "Micro",
  25695. height: math.unit(1, "inch")
  25696. },
  25697. {
  25698. name: "Small",
  25699. height: math.unit(1, "foot")
  25700. },
  25701. {
  25702. name: "Normal",
  25703. height: math.unit(2 + 6 / 12, "feet"),
  25704. default: true
  25705. },
  25706. {
  25707. name: "Macro",
  25708. height: math.unit(200, "feet")
  25709. },
  25710. {
  25711. name: "Megamacro",
  25712. height: math.unit(1000, "miles")
  25713. },
  25714. {
  25715. name: "Planetary",
  25716. height: math.unit(8000, "miles")
  25717. },
  25718. {
  25719. name: "True Layla",
  25720. height: math.unit(200000 * 7, "multiverses")
  25721. },
  25722. ]
  25723. ))
  25724. characterMakers.push(() => makeCharacter(
  25725. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  25726. {
  25727. back: {
  25728. height: math.unit(10.5, "feet"),
  25729. weight: math.unit(800, "lb"),
  25730. name: "Back",
  25731. image: {
  25732. source: "./media/characters/knox/back.svg",
  25733. extra: 1486 / 1089,
  25734. bottom: 107 / 1601.4
  25735. }
  25736. },
  25737. side: {
  25738. height: math.unit(10.5, "feet"),
  25739. weight: math.unit(800, "lb"),
  25740. name: "Side",
  25741. image: {
  25742. source: "./media/characters/knox/side.svg",
  25743. extra: 244 / 218,
  25744. bottom: 14 / 260
  25745. }
  25746. },
  25747. },
  25748. [
  25749. {
  25750. name: "Compact",
  25751. height: math.unit(10.5, "feet"),
  25752. default: true
  25753. },
  25754. {
  25755. name: "Dynamax",
  25756. height: math.unit(210, "feet")
  25757. },
  25758. {
  25759. name: "Full Macro",
  25760. height: math.unit(850, "feet")
  25761. },
  25762. ]
  25763. ))
  25764. characterMakers.push(() => makeCharacter(
  25765. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  25766. {
  25767. front: {
  25768. height: math.unit(28, "feet"),
  25769. weight: math.unit(10500, "lb"),
  25770. name: "Front",
  25771. image: {
  25772. source: "./media/characters/kayda/front.svg",
  25773. extra: 1536 / 1428,
  25774. bottom: 68.7 / 1603
  25775. }
  25776. },
  25777. back: {
  25778. height: math.unit(28, "feet"),
  25779. weight: math.unit(10500, "lb"),
  25780. name: "Back",
  25781. image: {
  25782. source: "./media/characters/kayda/back.svg",
  25783. extra: 1557 / 1464,
  25784. bottom: 39.5 / 1597.49
  25785. }
  25786. },
  25787. dick: {
  25788. height: math.unit(3.858, "feet"),
  25789. name: "Dick",
  25790. image: {
  25791. source: "./media/characters/kayda/dick.svg"
  25792. }
  25793. },
  25794. },
  25795. [
  25796. {
  25797. name: "Macro",
  25798. height: math.unit(28, "feet"),
  25799. default: true
  25800. },
  25801. ]
  25802. ))
  25803. characterMakers.push(() => makeCharacter(
  25804. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  25805. {
  25806. front: {
  25807. height: math.unit(10 + 11 / 12, "feet"),
  25808. weight: math.unit(1400, "lb"),
  25809. name: "Front",
  25810. image: {
  25811. source: "./media/characters/brian/front.svg",
  25812. extra: 737 / 692,
  25813. bottom: 55.4 / 785
  25814. }
  25815. },
  25816. },
  25817. [
  25818. {
  25819. name: "Normal",
  25820. height: math.unit(10 + 11 / 12, "feet"),
  25821. default: true
  25822. },
  25823. ]
  25824. ))
  25825. characterMakers.push(() => makeCharacter(
  25826. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  25827. {
  25828. front: {
  25829. height: math.unit(5 + 8 / 12, "feet"),
  25830. weight: math.unit(140, "lb"),
  25831. name: "Front",
  25832. image: {
  25833. source: "./media/characters/khemri/front.svg",
  25834. extra: 4780 / 4059,
  25835. bottom: 80.1 / 4859.25
  25836. }
  25837. },
  25838. },
  25839. [
  25840. {
  25841. name: "Micro",
  25842. height: math.unit(6, "inches")
  25843. },
  25844. {
  25845. name: "Normal",
  25846. height: math.unit(5 + 8 / 12, "feet"),
  25847. default: true
  25848. },
  25849. ]
  25850. ))
  25851. characterMakers.push(() => makeCharacter(
  25852. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  25853. {
  25854. front: {
  25855. height: math.unit(13, "feet"),
  25856. weight: math.unit(1700, "lb"),
  25857. name: "Front",
  25858. image: {
  25859. source: "./media/characters/felix-braveheart/front.svg",
  25860. extra: 1222 / 1157,
  25861. bottom: 53.2 / 1280
  25862. }
  25863. },
  25864. back: {
  25865. height: math.unit(13, "feet"),
  25866. weight: math.unit(1700, "lb"),
  25867. name: "Back",
  25868. image: {
  25869. source: "./media/characters/felix-braveheart/back.svg",
  25870. extra: 1277 / 1203,
  25871. bottom: 50.2 / 1327
  25872. }
  25873. },
  25874. feral: {
  25875. height: math.unit(6, "feet"),
  25876. weight: math.unit(400, "lb"),
  25877. name: "Feral",
  25878. image: {
  25879. source: "./media/characters/felix-braveheart/feral.svg",
  25880. extra: 682 / 625,
  25881. bottom: 6.9 / 688
  25882. }
  25883. },
  25884. },
  25885. [
  25886. {
  25887. name: "Normal",
  25888. height: math.unit(13, "feet"),
  25889. default: true
  25890. },
  25891. ]
  25892. ))
  25893. characterMakers.push(() => makeCharacter(
  25894. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  25895. {
  25896. side: {
  25897. height: math.unit(5 + 11 / 12, "feet"),
  25898. weight: math.unit(1400, "lb"),
  25899. name: "Side",
  25900. image: {
  25901. source: "./media/characters/shadow-blade/side.svg",
  25902. extra: 1726 / 1267,
  25903. bottom: 58.4 / 1785
  25904. }
  25905. },
  25906. },
  25907. [
  25908. {
  25909. name: "Normal",
  25910. height: math.unit(5 + 11 / 12, "feet"),
  25911. default: true
  25912. },
  25913. ]
  25914. ))
  25915. characterMakers.push(() => makeCharacter(
  25916. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  25917. {
  25918. front: {
  25919. height: math.unit(1 + 6 / 12, "feet"),
  25920. weight: math.unit(25, "lb"),
  25921. name: "Front",
  25922. image: {
  25923. source: "./media/characters/karla-halldor/front.svg",
  25924. extra: 1459 / 1383,
  25925. bottom: 12 / 1472
  25926. }
  25927. },
  25928. },
  25929. [
  25930. {
  25931. name: "Normal",
  25932. height: math.unit(1 + 6 / 12, "feet"),
  25933. default: true
  25934. },
  25935. ]
  25936. ))
  25937. characterMakers.push(() => makeCharacter(
  25938. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  25939. {
  25940. front: {
  25941. height: math.unit(6 + 2 / 12, "feet"),
  25942. weight: math.unit(160, "lb"),
  25943. name: "Front",
  25944. image: {
  25945. source: "./media/characters/ariam/front.svg",
  25946. extra: 1073/976,
  25947. bottom: 52/1125
  25948. }
  25949. },
  25950. back: {
  25951. height: math.unit(6 + 2/12, "feet"),
  25952. weight: math.unit(160, "lb"),
  25953. name: "Back",
  25954. image: {
  25955. source: "./media/characters/ariam/back.svg",
  25956. extra: 1103/1023,
  25957. bottom: 9/1112
  25958. }
  25959. },
  25960. dressed: {
  25961. height: math.unit(6 + 2/12, "feet"),
  25962. weight: math.unit(160, "lb"),
  25963. name: "Dressed",
  25964. image: {
  25965. source: "./media/characters/ariam/dressed.svg",
  25966. extra: 1099/1009,
  25967. bottom: 25/1124
  25968. }
  25969. },
  25970. squatting: {
  25971. height: math.unit(4.1, "feet"),
  25972. weight: math.unit(160, "lb"),
  25973. name: "Squatting",
  25974. image: {
  25975. source: "./media/characters/ariam/squatting.svg",
  25976. extra: 2617 / 2112,
  25977. bottom: 61.2 / 2681,
  25978. }
  25979. },
  25980. },
  25981. [
  25982. {
  25983. name: "Normal",
  25984. height: math.unit(6 + 2 / 12, "feet"),
  25985. default: true
  25986. },
  25987. {
  25988. name: "Normal+",
  25989. height: math.unit(4, "meters")
  25990. },
  25991. {
  25992. name: "Macro",
  25993. height: math.unit(50, "meters")
  25994. },
  25995. {
  25996. name: "Macro+",
  25997. height: math.unit(100, "meters")
  25998. },
  25999. {
  26000. name: "Megamacro",
  26001. height: math.unit(20, "km")
  26002. },
  26003. {
  26004. name: "Caretaker",
  26005. height: math.unit(444, "megameters")
  26006. },
  26007. ]
  26008. ))
  26009. characterMakers.push(() => makeCharacter(
  26010. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  26011. {
  26012. front: {
  26013. height: math.unit(1.67, "meters"),
  26014. weight: math.unit(140, "lb"),
  26015. name: "Front",
  26016. image: {
  26017. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  26018. extra: 438 / 410,
  26019. bottom: 0.75 / 439
  26020. }
  26021. },
  26022. },
  26023. [
  26024. {
  26025. name: "Shrunken",
  26026. height: math.unit(7.6, "cm")
  26027. },
  26028. {
  26029. name: "Human Scale",
  26030. height: math.unit(1.67, "meters")
  26031. },
  26032. {
  26033. name: "Wolxi Scale",
  26034. height: math.unit(36.7, "meters"),
  26035. default: true
  26036. },
  26037. ]
  26038. ))
  26039. characterMakers.push(() => makeCharacter(
  26040. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  26041. {
  26042. front: {
  26043. height: math.unit(1.73, "meters"),
  26044. weight: math.unit(240, "lb"),
  26045. name: "Front",
  26046. image: {
  26047. source: "./media/characters/izue-two-mothers/front.svg",
  26048. extra: 469 / 437,
  26049. bottom: 1.24 / 470.6
  26050. }
  26051. },
  26052. },
  26053. [
  26054. {
  26055. name: "Shrunken",
  26056. height: math.unit(7.86, "cm")
  26057. },
  26058. {
  26059. name: "Human Scale",
  26060. height: math.unit(1.73, "meters")
  26061. },
  26062. {
  26063. name: "Wolxi Scale",
  26064. height: math.unit(38, "meters"),
  26065. default: true
  26066. },
  26067. ]
  26068. ))
  26069. characterMakers.push(() => makeCharacter(
  26070. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  26071. {
  26072. front: {
  26073. height: math.unit(1.55, "meters"),
  26074. weight: math.unit(120, "lb"),
  26075. name: "Front",
  26076. image: {
  26077. source: "./media/characters/teeku-love-shack/front.svg",
  26078. extra: 387 / 362,
  26079. bottom: 1.51 / 388
  26080. }
  26081. },
  26082. },
  26083. [
  26084. {
  26085. name: "Shrunken",
  26086. height: math.unit(7, "cm")
  26087. },
  26088. {
  26089. name: "Human Scale",
  26090. height: math.unit(1.55, "meters")
  26091. },
  26092. {
  26093. name: "Wolxi Scale",
  26094. height: math.unit(34.1, "meters"),
  26095. default: true
  26096. },
  26097. ]
  26098. ))
  26099. characterMakers.push(() => makeCharacter(
  26100. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  26101. {
  26102. front: {
  26103. height: math.unit(1.83, "meters"),
  26104. weight: math.unit(135, "lb"),
  26105. name: "Front",
  26106. image: {
  26107. source: "./media/characters/dejma-the-red/front.svg",
  26108. extra: 480 / 458,
  26109. bottom: 1.8 / 482
  26110. }
  26111. },
  26112. },
  26113. [
  26114. {
  26115. name: "Shrunken",
  26116. height: math.unit(8.3, "cm")
  26117. },
  26118. {
  26119. name: "Human Scale",
  26120. height: math.unit(1.83, "meters")
  26121. },
  26122. {
  26123. name: "Wolxi Scale",
  26124. height: math.unit(40, "meters"),
  26125. default: true
  26126. },
  26127. ]
  26128. ))
  26129. characterMakers.push(() => makeCharacter(
  26130. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  26131. {
  26132. front: {
  26133. height: math.unit(1.78, "meters"),
  26134. weight: math.unit(65, "kg"),
  26135. name: "Front",
  26136. image: {
  26137. source: "./media/characters/aki/front.svg",
  26138. extra: 452 / 415
  26139. }
  26140. },
  26141. frontNsfw: {
  26142. height: math.unit(1.78, "meters"),
  26143. weight: math.unit(65, "kg"),
  26144. name: "Front (NSFW)",
  26145. image: {
  26146. source: "./media/characters/aki/front-nsfw.svg",
  26147. extra: 452 / 415
  26148. }
  26149. },
  26150. back: {
  26151. height: math.unit(1.78, "meters"),
  26152. weight: math.unit(65, "kg"),
  26153. name: "Back",
  26154. image: {
  26155. source: "./media/characters/aki/back.svg",
  26156. extra: 452 / 415
  26157. }
  26158. },
  26159. rump: {
  26160. height: math.unit(2.05, "feet"),
  26161. name: "Rump",
  26162. image: {
  26163. source: "./media/characters/aki/rump.svg"
  26164. }
  26165. },
  26166. dick: {
  26167. height: math.unit(0.95, "feet"),
  26168. name: "Dick",
  26169. image: {
  26170. source: "./media/characters/aki/dick.svg"
  26171. }
  26172. },
  26173. },
  26174. [
  26175. {
  26176. name: "Micro",
  26177. height: math.unit(15, "cm")
  26178. },
  26179. {
  26180. name: "Normal",
  26181. height: math.unit(178, "cm"),
  26182. default: true
  26183. },
  26184. {
  26185. name: "Macro",
  26186. height: math.unit(214, "m")
  26187. },
  26188. {
  26189. name: "Macro+",
  26190. height: math.unit(534, "m")
  26191. },
  26192. ]
  26193. ))
  26194. characterMakers.push(() => makeCharacter(
  26195. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  26196. {
  26197. front: {
  26198. height: math.unit(5 + 5 / 12, "feet"),
  26199. weight: math.unit(120, "lb"),
  26200. name: "Front",
  26201. image: {
  26202. source: "./media/characters/ari/front.svg",
  26203. extra: 1550/1471,
  26204. bottom: 39/1589
  26205. }
  26206. },
  26207. },
  26208. [
  26209. {
  26210. name: "Normal",
  26211. height: math.unit(5 + 5 / 12, "feet")
  26212. },
  26213. {
  26214. name: "Macro",
  26215. height: math.unit(100, "feet"),
  26216. default: true
  26217. },
  26218. {
  26219. name: "Megamacro",
  26220. height: math.unit(100, "miles")
  26221. },
  26222. {
  26223. name: "Gigamacro",
  26224. height: math.unit(80000, "miles")
  26225. },
  26226. ]
  26227. ))
  26228. characterMakers.push(() => makeCharacter(
  26229. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  26230. {
  26231. side: {
  26232. height: math.unit(9, "feet"),
  26233. weight: math.unit(400, "kg"),
  26234. name: "Side",
  26235. image: {
  26236. source: "./media/characters/bolt/side.svg",
  26237. extra: 1126 / 896,
  26238. bottom: 60 / 1187.3,
  26239. }
  26240. },
  26241. },
  26242. [
  26243. {
  26244. name: "Micro",
  26245. height: math.unit(5, "inches")
  26246. },
  26247. {
  26248. name: "Normal",
  26249. height: math.unit(9, "feet"),
  26250. default: true
  26251. },
  26252. {
  26253. name: "Macro",
  26254. height: math.unit(700, "feet")
  26255. },
  26256. {
  26257. name: "Max Size",
  26258. height: math.unit(1.52e22, "yottameters")
  26259. },
  26260. ]
  26261. ))
  26262. characterMakers.push(() => makeCharacter(
  26263. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  26264. {
  26265. front: {
  26266. height: math.unit(4.3, "meters"),
  26267. weight: math.unit(3, "tons"),
  26268. name: "Front",
  26269. image: {
  26270. source: "./media/characters/draekon-sylviar/front.svg",
  26271. extra: 2072/1512,
  26272. bottom: 74/2146
  26273. }
  26274. },
  26275. back: {
  26276. height: math.unit(4.3, "meters"),
  26277. weight: math.unit(3, "tons"),
  26278. name: "Back",
  26279. image: {
  26280. source: "./media/characters/draekon-sylviar/back.svg",
  26281. extra: 1639/1483,
  26282. bottom: 41/1680
  26283. }
  26284. },
  26285. feral: {
  26286. height: math.unit(1.15, "meters"),
  26287. weight: math.unit(3, "tons"),
  26288. name: "Feral",
  26289. image: {
  26290. source: "./media/characters/draekon-sylviar/feral.svg",
  26291. extra: 1033/395,
  26292. bottom: 130/1163
  26293. }
  26294. },
  26295. maw: {
  26296. height: math.unit(1.3, "meters"),
  26297. name: "Maw",
  26298. image: {
  26299. source: "./media/characters/draekon-sylviar/maw.svg"
  26300. }
  26301. },
  26302. mawSeparated: {
  26303. height: math.unit(1.53, "meters"),
  26304. name: "Separated Maw",
  26305. image: {
  26306. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  26307. }
  26308. },
  26309. tail: {
  26310. height: math.unit(1.15, "meters"),
  26311. name: "Tail",
  26312. image: {
  26313. source: "./media/characters/draekon-sylviar/tail.svg"
  26314. }
  26315. },
  26316. tailDick: {
  26317. height: math.unit(1.15, "meters"),
  26318. name: "Tail (Dick)",
  26319. image: {
  26320. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  26321. }
  26322. },
  26323. tailDickSeparated: {
  26324. height: math.unit(1.19, "meters"),
  26325. name: "Tail (Separated Dick)",
  26326. image: {
  26327. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  26328. }
  26329. },
  26330. slit: {
  26331. height: math.unit(1, "meters"),
  26332. name: "Slit",
  26333. image: {
  26334. source: "./media/characters/draekon-sylviar/slit.svg"
  26335. }
  26336. },
  26337. dick: {
  26338. height: math.unit(1.15, "meters"),
  26339. name: "Dick",
  26340. image: {
  26341. source: "./media/characters/draekon-sylviar/dick.svg"
  26342. }
  26343. },
  26344. dickSeparated: {
  26345. height: math.unit(1.1, "meters"),
  26346. name: "Separated Dick",
  26347. image: {
  26348. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  26349. }
  26350. },
  26351. sheath: {
  26352. height: math.unit(1.15, "meters"),
  26353. name: "Sheath",
  26354. image: {
  26355. source: "./media/characters/draekon-sylviar/sheath.svg"
  26356. }
  26357. },
  26358. },
  26359. [
  26360. {
  26361. name: "Small",
  26362. height: math.unit(4.53 / 2, "meters"),
  26363. default: true
  26364. },
  26365. {
  26366. name: "Normal",
  26367. height: math.unit(4.53, "meters"),
  26368. default: true
  26369. },
  26370. {
  26371. name: "Large",
  26372. height: math.unit(4.53 * 2, "meters"),
  26373. },
  26374. ]
  26375. ))
  26376. characterMakers.push(() => makeCharacter(
  26377. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  26378. {
  26379. front: {
  26380. height: math.unit(6 + 2 / 12, "feet"),
  26381. weight: math.unit(180, "lb"),
  26382. name: "Front",
  26383. image: {
  26384. source: "./media/characters/brawler/front.svg",
  26385. extra: 3301 / 3027,
  26386. bottom: 138 / 3439
  26387. }
  26388. },
  26389. },
  26390. [
  26391. {
  26392. name: "Normal",
  26393. height: math.unit(6 + 2 / 12, "feet"),
  26394. default: true
  26395. },
  26396. ]
  26397. ))
  26398. characterMakers.push(() => makeCharacter(
  26399. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  26400. {
  26401. front: {
  26402. height: math.unit(11, "feet"),
  26403. weight: math.unit(1000, "lb"),
  26404. name: "Front",
  26405. image: {
  26406. source: "./media/characters/alex/front.svg",
  26407. bottom: 44.5 / 620
  26408. }
  26409. },
  26410. },
  26411. [
  26412. {
  26413. name: "Micro",
  26414. height: math.unit(5, "inches")
  26415. },
  26416. {
  26417. name: "Normal",
  26418. height: math.unit(11, "feet"),
  26419. default: true
  26420. },
  26421. {
  26422. name: "Macro",
  26423. height: math.unit(9.5e9, "feet")
  26424. },
  26425. {
  26426. name: "Max Size",
  26427. height: math.unit(1.4e283, "yottameters")
  26428. },
  26429. ]
  26430. ))
  26431. characterMakers.push(() => makeCharacter(
  26432. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  26433. {
  26434. female: {
  26435. height: math.unit(29.9, "m"),
  26436. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  26437. name: "Female",
  26438. image: {
  26439. source: "./media/characters/zenari/female.svg",
  26440. extra: 3281.6 / 3217,
  26441. bottom: 72.2 / 3353
  26442. }
  26443. },
  26444. male: {
  26445. height: math.unit(27.7, "m"),
  26446. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  26447. name: "Male",
  26448. image: {
  26449. source: "./media/characters/zenari/male.svg",
  26450. extra: 3008 / 2991,
  26451. bottom: 54.6 / 3069
  26452. }
  26453. },
  26454. },
  26455. [
  26456. {
  26457. name: "Macro",
  26458. height: math.unit(29.7, "meters"),
  26459. default: true
  26460. },
  26461. ]
  26462. ))
  26463. characterMakers.push(() => makeCharacter(
  26464. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  26465. {
  26466. female: {
  26467. height: math.unit(23.8, "m"),
  26468. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26469. name: "Female",
  26470. image: {
  26471. source: "./media/characters/mactarian/female.svg",
  26472. extra: 2662 / 2569,
  26473. bottom: 73 / 2736
  26474. }
  26475. },
  26476. male: {
  26477. height: math.unit(23.8, "m"),
  26478. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26479. name: "Male",
  26480. image: {
  26481. source: "./media/characters/mactarian/male.svg",
  26482. extra: 2673 / 2600,
  26483. bottom: 76 / 2750
  26484. }
  26485. },
  26486. },
  26487. [
  26488. {
  26489. name: "Macro",
  26490. height: math.unit(23.8, "meters"),
  26491. default: true
  26492. },
  26493. ]
  26494. ))
  26495. characterMakers.push(() => makeCharacter(
  26496. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  26497. {
  26498. female: {
  26499. height: math.unit(19.3, "m"),
  26500. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  26501. name: "Female",
  26502. image: {
  26503. source: "./media/characters/umok/female.svg",
  26504. extra: 2186 / 2078,
  26505. bottom: 87 / 2277
  26506. }
  26507. },
  26508. male: {
  26509. height: math.unit(19.5, "m"),
  26510. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  26511. name: "Male",
  26512. image: {
  26513. source: "./media/characters/umok/male.svg",
  26514. extra: 2233 / 2140,
  26515. bottom: 24.4 / 2258
  26516. }
  26517. },
  26518. },
  26519. [
  26520. {
  26521. name: "Macro",
  26522. height: math.unit(19.3, "meters"),
  26523. default: true
  26524. },
  26525. ]
  26526. ))
  26527. characterMakers.push(() => makeCharacter(
  26528. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  26529. {
  26530. female: {
  26531. height: math.unit(26.15, "m"),
  26532. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  26533. name: "Female",
  26534. image: {
  26535. source: "./media/characters/joraxian/female.svg",
  26536. extra: 2912 / 2824,
  26537. bottom: 36 / 2956
  26538. }
  26539. },
  26540. male: {
  26541. height: math.unit(25.4, "m"),
  26542. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  26543. name: "Male",
  26544. image: {
  26545. source: "./media/characters/joraxian/male.svg",
  26546. extra: 2877 / 2721,
  26547. bottom: 82 / 2967
  26548. }
  26549. },
  26550. },
  26551. [
  26552. {
  26553. name: "Macro",
  26554. height: math.unit(26.15, "meters"),
  26555. default: true
  26556. },
  26557. ]
  26558. ))
  26559. characterMakers.push(() => makeCharacter(
  26560. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  26561. {
  26562. female: {
  26563. height: math.unit(21.6, "m"),
  26564. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  26565. name: "Female",
  26566. image: {
  26567. source: "./media/characters/sthara/female.svg",
  26568. extra: 2516 / 2347,
  26569. bottom: 21.5 / 2537
  26570. }
  26571. },
  26572. male: {
  26573. height: math.unit(24, "m"),
  26574. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  26575. name: "Male",
  26576. image: {
  26577. source: "./media/characters/sthara/male.svg",
  26578. extra: 2732 / 2607,
  26579. bottom: 23 / 2732
  26580. }
  26581. },
  26582. },
  26583. [
  26584. {
  26585. name: "Macro",
  26586. height: math.unit(21.6, "meters"),
  26587. default: true
  26588. },
  26589. ]
  26590. ))
  26591. characterMakers.push(() => makeCharacter(
  26592. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  26593. {
  26594. front: {
  26595. height: math.unit(6 + 4 / 12, "feet"),
  26596. weight: math.unit(175, "lb"),
  26597. name: "Front",
  26598. image: {
  26599. source: "./media/characters/luka-bryzant/front.svg",
  26600. extra: 311 / 289,
  26601. bottom: 4 / 315
  26602. }
  26603. },
  26604. back: {
  26605. height: math.unit(6 + 4 / 12, "feet"),
  26606. weight: math.unit(175, "lb"),
  26607. name: "Back",
  26608. image: {
  26609. source: "./media/characters/luka-bryzant/back.svg",
  26610. extra: 311 / 289,
  26611. bottom: 3.8 / 313.7
  26612. }
  26613. },
  26614. },
  26615. [
  26616. {
  26617. name: "Micro",
  26618. height: math.unit(10, "inches")
  26619. },
  26620. {
  26621. name: "Normal",
  26622. height: math.unit(6 + 4 / 12, "feet"),
  26623. default: true
  26624. },
  26625. {
  26626. name: "Large",
  26627. height: math.unit(12, "feet")
  26628. },
  26629. ]
  26630. ))
  26631. characterMakers.push(() => makeCharacter(
  26632. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  26633. {
  26634. front: {
  26635. height: math.unit(5 + 7 / 12, "feet"),
  26636. weight: math.unit(185, "lb"),
  26637. name: "Front",
  26638. image: {
  26639. source: "./media/characters/aman-aquila/front.svg",
  26640. extra: 1013 / 976,
  26641. bottom: 45.6 / 1057
  26642. }
  26643. },
  26644. side: {
  26645. height: math.unit(5 + 7 / 12, "feet"),
  26646. weight: math.unit(185, "lb"),
  26647. name: "Side",
  26648. image: {
  26649. source: "./media/characters/aman-aquila/side.svg",
  26650. extra: 1054 / 1011,
  26651. bottom: 15 / 1070
  26652. }
  26653. },
  26654. back: {
  26655. height: math.unit(5 + 7 / 12, "feet"),
  26656. weight: math.unit(185, "lb"),
  26657. name: "Back",
  26658. image: {
  26659. source: "./media/characters/aman-aquila/back.svg",
  26660. extra: 1026 / 970,
  26661. bottom: 12 / 1039
  26662. }
  26663. },
  26664. head: {
  26665. height: math.unit(1.211, "feet"),
  26666. name: "Head",
  26667. image: {
  26668. source: "./media/characters/aman-aquila/head.svg",
  26669. }
  26670. },
  26671. },
  26672. [
  26673. {
  26674. name: "Minimicro",
  26675. height: math.unit(0.057, "inches")
  26676. },
  26677. {
  26678. name: "Micro",
  26679. height: math.unit(7, "inches")
  26680. },
  26681. {
  26682. name: "Mini",
  26683. height: math.unit(3 + 7 / 12, "feet")
  26684. },
  26685. {
  26686. name: "Normal",
  26687. height: math.unit(5 + 7 / 12, "feet"),
  26688. default: true
  26689. },
  26690. {
  26691. name: "Macro",
  26692. height: math.unit(157 + 7 / 12, "feet")
  26693. },
  26694. {
  26695. name: "Megamacro",
  26696. height: math.unit(1557 + 7 / 12, "feet")
  26697. },
  26698. {
  26699. name: "Gigamacro",
  26700. height: math.unit(15557 + 7 / 12, "feet")
  26701. },
  26702. ]
  26703. ))
  26704. characterMakers.push(() => makeCharacter(
  26705. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  26706. {
  26707. front: {
  26708. height: math.unit(3 + 2 / 12, "inches"),
  26709. weight: math.unit(0.3, "ounces"),
  26710. name: "Front",
  26711. image: {
  26712. source: "./media/characters/hiphae/front.svg",
  26713. extra: 1931 / 1683,
  26714. bottom: 24 / 1955
  26715. }
  26716. },
  26717. },
  26718. [
  26719. {
  26720. name: "Normal",
  26721. height: math.unit(3 + 1 / 2, "inches"),
  26722. default: true
  26723. },
  26724. ]
  26725. ))
  26726. characterMakers.push(() => makeCharacter(
  26727. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  26728. {
  26729. front: {
  26730. height: math.unit(5 + 10 / 12, "feet"),
  26731. weight: math.unit(165, "lb"),
  26732. name: "Front",
  26733. image: {
  26734. source: "./media/characters/nicky/front.svg",
  26735. extra: 3144 / 2886,
  26736. bottom: 45.6 / 3192
  26737. }
  26738. },
  26739. back: {
  26740. height: math.unit(5 + 10 / 12, "feet"),
  26741. weight: math.unit(165, "lb"),
  26742. name: "Back",
  26743. image: {
  26744. source: "./media/characters/nicky/back.svg",
  26745. extra: 3055 / 2804,
  26746. bottom: 28.4 / 3087
  26747. }
  26748. },
  26749. frontclothed: {
  26750. height: math.unit(5 + 10 / 12, "feet"),
  26751. weight: math.unit(165, "lb"),
  26752. name: "Front-clothed",
  26753. image: {
  26754. source: "./media/characters/nicky/front-clothed.svg",
  26755. extra: 3184.9 / 2926.9,
  26756. bottom: 86.5 / 3239.9
  26757. }
  26758. },
  26759. foot: {
  26760. height: math.unit(1.16, "feet"),
  26761. name: "Foot",
  26762. image: {
  26763. source: "./media/characters/nicky/foot.svg"
  26764. }
  26765. },
  26766. feet: {
  26767. height: math.unit(1.34, "feet"),
  26768. name: "Feet",
  26769. image: {
  26770. source: "./media/characters/nicky/feet.svg"
  26771. }
  26772. },
  26773. maw: {
  26774. height: math.unit(0.9, "feet"),
  26775. name: "Maw",
  26776. image: {
  26777. source: "./media/characters/nicky/maw.svg"
  26778. }
  26779. },
  26780. },
  26781. [
  26782. {
  26783. name: "Normal",
  26784. height: math.unit(5 + 10 / 12, "feet"),
  26785. default: true
  26786. },
  26787. {
  26788. name: "Macro",
  26789. height: math.unit(60, "feet")
  26790. },
  26791. {
  26792. name: "Megamacro",
  26793. height: math.unit(1, "mile")
  26794. },
  26795. ]
  26796. ))
  26797. characterMakers.push(() => makeCharacter(
  26798. { name: "Blair", species: ["seal"], tags: ["taur"] },
  26799. {
  26800. side: {
  26801. height: math.unit(10, "feet"),
  26802. weight: math.unit(600, "lb"),
  26803. name: "Side",
  26804. image: {
  26805. source: "./media/characters/blair/side.svg",
  26806. bottom: 16.6 / 475,
  26807. extra: 458 / 431
  26808. }
  26809. },
  26810. },
  26811. [
  26812. {
  26813. name: "Micro",
  26814. height: math.unit(8, "inches")
  26815. },
  26816. {
  26817. name: "Normal",
  26818. height: math.unit(10, "feet"),
  26819. default: true
  26820. },
  26821. {
  26822. name: "Macro",
  26823. height: math.unit(180, "feet")
  26824. },
  26825. ]
  26826. ))
  26827. characterMakers.push(() => makeCharacter(
  26828. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  26829. {
  26830. front: {
  26831. height: math.unit(5 + 4 / 12, "feet"),
  26832. weight: math.unit(125, "lb"),
  26833. name: "Front",
  26834. image: {
  26835. source: "./media/characters/fisher/front.svg",
  26836. extra: 444 / 390,
  26837. bottom: 2 / 444.8
  26838. }
  26839. },
  26840. },
  26841. [
  26842. {
  26843. name: "Micro",
  26844. height: math.unit(4, "inches")
  26845. },
  26846. {
  26847. name: "Normal",
  26848. height: math.unit(5 + 4 / 12, "feet"),
  26849. default: true
  26850. },
  26851. {
  26852. name: "Macro",
  26853. height: math.unit(100, "feet")
  26854. },
  26855. ]
  26856. ))
  26857. characterMakers.push(() => makeCharacter(
  26858. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  26859. {
  26860. front: {
  26861. height: math.unit(6.71, "feet"),
  26862. weight: math.unit(200, "lb"),
  26863. preyCapacity: math.unit(1000000, "people"),
  26864. name: "Front",
  26865. image: {
  26866. source: "./media/characters/gliss/front.svg",
  26867. extra: 2347 / 2231,
  26868. bottom: 113 / 2462
  26869. }
  26870. },
  26871. hammerspaceSize: {
  26872. height: math.unit(6.71 * 717, "feet"),
  26873. weight: math.unit(200, "lb"),
  26874. preyCapacity: math.unit(1000000, "people"),
  26875. name: "Hammerspace Size",
  26876. image: {
  26877. source: "./media/characters/gliss/front.svg",
  26878. extra: 2347 / 2231,
  26879. bottom: 113 / 2462
  26880. }
  26881. },
  26882. },
  26883. [
  26884. {
  26885. name: "Normal",
  26886. height: math.unit(6.71, "feet"),
  26887. default: true
  26888. },
  26889. ]
  26890. ))
  26891. characterMakers.push(() => makeCharacter(
  26892. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  26893. {
  26894. side: {
  26895. height: math.unit(1.44, "m"),
  26896. weight: math.unit(80, "kg"),
  26897. name: "Side",
  26898. image: {
  26899. source: "./media/characters/dune-anderson/side.svg",
  26900. bottom: 49 / 1426
  26901. }
  26902. },
  26903. },
  26904. [
  26905. {
  26906. name: "Wolf-sized",
  26907. height: math.unit(1.44, "meters")
  26908. },
  26909. {
  26910. name: "Normal",
  26911. height: math.unit(5.05, "meters"),
  26912. default: true
  26913. },
  26914. {
  26915. name: "Big",
  26916. height: math.unit(14.4, "meters")
  26917. },
  26918. {
  26919. name: "Huge",
  26920. height: math.unit(144, "meters")
  26921. },
  26922. ]
  26923. ))
  26924. characterMakers.push(() => makeCharacter(
  26925. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  26926. {
  26927. front: {
  26928. height: math.unit(7, "feet"),
  26929. weight: math.unit(425, "lb"),
  26930. name: "Front",
  26931. image: {
  26932. source: "./media/characters/hind/front.svg",
  26933. extra: 2091 / 1860,
  26934. bottom: 129 / 2220
  26935. }
  26936. },
  26937. back: {
  26938. height: math.unit(7, "feet"),
  26939. weight: math.unit(425, "lb"),
  26940. name: "Back",
  26941. image: {
  26942. source: "./media/characters/hind/back.svg",
  26943. extra: 2091 / 1860,
  26944. bottom: 24.6 / 2309
  26945. }
  26946. },
  26947. tail: {
  26948. height: math.unit(2.8, "feet"),
  26949. name: "Tail",
  26950. image: {
  26951. source: "./media/characters/hind/tail.svg"
  26952. }
  26953. },
  26954. head: {
  26955. height: math.unit(2.55, "feet"),
  26956. name: "Head",
  26957. image: {
  26958. source: "./media/characters/hind/head.svg"
  26959. }
  26960. },
  26961. },
  26962. [
  26963. {
  26964. name: "XS",
  26965. height: math.unit(0.7, "feet")
  26966. },
  26967. {
  26968. name: "Normal",
  26969. height: math.unit(7, "feet"),
  26970. default: true
  26971. },
  26972. {
  26973. name: "XL",
  26974. height: math.unit(70, "feet")
  26975. },
  26976. ]
  26977. ))
  26978. characterMakers.push(() => makeCharacter(
  26979. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  26980. {
  26981. front: {
  26982. height: math.unit(2.1, "meters"),
  26983. weight: math.unit(150, "lb"),
  26984. name: "Front",
  26985. image: {
  26986. source: "./media/characters/tharquench-sizestealer/front.svg",
  26987. extra: 1605/1470,
  26988. bottom: 36/1641
  26989. }
  26990. },
  26991. frontAlt: {
  26992. height: math.unit(2.1, "meters"),
  26993. weight: math.unit(150, "lb"),
  26994. name: "Front (Alt)",
  26995. image: {
  26996. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  26997. extra: 2318 / 2063,
  26998. bottom: 93.4 / 2410
  26999. }
  27000. },
  27001. },
  27002. [
  27003. {
  27004. name: "Nano",
  27005. height: math.unit(1, "mm")
  27006. },
  27007. {
  27008. name: "Micro",
  27009. height: math.unit(1, "cm")
  27010. },
  27011. {
  27012. name: "Normal",
  27013. height: math.unit(2.1, "meters"),
  27014. default: true
  27015. },
  27016. ]
  27017. ))
  27018. characterMakers.push(() => makeCharacter(
  27019. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  27020. {
  27021. front: {
  27022. height: math.unit(7 + 5 / 12, "feet"),
  27023. weight: math.unit(357, "lb"),
  27024. name: "Front",
  27025. image: {
  27026. source: "./media/characters/solex-draconov/front.svg",
  27027. extra: 1993 / 1865,
  27028. bottom: 117 / 2111
  27029. }
  27030. },
  27031. },
  27032. [
  27033. {
  27034. name: "Natural Height",
  27035. height: math.unit(7 + 5 / 12, "feet"),
  27036. default: true
  27037. },
  27038. {
  27039. name: "Macro",
  27040. height: math.unit(350, "feet")
  27041. },
  27042. {
  27043. name: "Macro+",
  27044. height: math.unit(1000, "feet")
  27045. },
  27046. {
  27047. name: "Megamacro",
  27048. height: math.unit(20, "km")
  27049. },
  27050. {
  27051. name: "Megamacro+",
  27052. height: math.unit(1000, "km")
  27053. },
  27054. {
  27055. name: "Gigamacro",
  27056. height: math.unit(2.5, "Gm")
  27057. },
  27058. {
  27059. name: "Teramacro",
  27060. height: math.unit(15, "Tm")
  27061. },
  27062. {
  27063. name: "Galactic",
  27064. height: math.unit(30, "Zm")
  27065. },
  27066. {
  27067. name: "Universal",
  27068. height: math.unit(21000, "Ym")
  27069. },
  27070. {
  27071. name: "Omniversal",
  27072. height: math.unit(9.861e50, "Ym")
  27073. },
  27074. {
  27075. name: "Existential",
  27076. height: math.unit(1e300, "meters")
  27077. },
  27078. ]
  27079. ))
  27080. characterMakers.push(() => makeCharacter(
  27081. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  27082. {
  27083. side: {
  27084. height: math.unit(25, "feet"),
  27085. weight: math.unit(90000, "lb"),
  27086. name: "Side",
  27087. image: {
  27088. source: "./media/characters/mandarax/side.svg",
  27089. extra: 614 / 332,
  27090. bottom: 55 / 630
  27091. }
  27092. },
  27093. lounging: {
  27094. height: math.unit(15.4, "feet"),
  27095. weight: math.unit(90000, "lb"),
  27096. name: "Lounging",
  27097. image: {
  27098. source: "./media/characters/mandarax/lounging.svg",
  27099. extra: 817/609,
  27100. bottom: 685/1502
  27101. }
  27102. },
  27103. head: {
  27104. height: math.unit(11.4, "feet"),
  27105. name: "Head",
  27106. image: {
  27107. source: "./media/characters/mandarax/head.svg"
  27108. }
  27109. },
  27110. belly: {
  27111. height: math.unit(33, "feet"),
  27112. name: "Belly",
  27113. preyCapacity: math.unit(500, "people"),
  27114. image: {
  27115. source: "./media/characters/mandarax/belly.svg"
  27116. }
  27117. },
  27118. dick: {
  27119. height: math.unit(8.46, "feet"),
  27120. name: "Dick",
  27121. image: {
  27122. source: "./media/characters/mandarax/dick.svg"
  27123. }
  27124. },
  27125. top: {
  27126. height: math.unit(28, "meters"),
  27127. name: "Top",
  27128. image: {
  27129. source: "./media/characters/mandarax/top.svg"
  27130. }
  27131. },
  27132. },
  27133. [
  27134. {
  27135. name: "Normal",
  27136. height: math.unit(25, "feet"),
  27137. default: true
  27138. },
  27139. ]
  27140. ))
  27141. characterMakers.push(() => makeCharacter(
  27142. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  27143. {
  27144. front: {
  27145. height: math.unit(5, "feet"),
  27146. weight: math.unit(90, "lb"),
  27147. name: "Front",
  27148. image: {
  27149. source: "./media/characters/pixil/front.svg",
  27150. extra: 2000 / 1618,
  27151. bottom: 12.3 / 2011
  27152. }
  27153. },
  27154. },
  27155. [
  27156. {
  27157. name: "Normal",
  27158. height: math.unit(5, "feet"),
  27159. default: true
  27160. },
  27161. {
  27162. name: "Megamacro",
  27163. height: math.unit(10, "miles"),
  27164. },
  27165. ]
  27166. ))
  27167. characterMakers.push(() => makeCharacter(
  27168. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  27169. {
  27170. front: {
  27171. height: math.unit(7 + 2 / 12, "feet"),
  27172. weight: math.unit(200, "lb"),
  27173. name: "Front",
  27174. image: {
  27175. source: "./media/characters/angel/front.svg",
  27176. extra: 1830 / 1737,
  27177. bottom: 22.6 / 1854,
  27178. }
  27179. },
  27180. },
  27181. [
  27182. {
  27183. name: "Normal",
  27184. height: math.unit(7 + 2 / 12, "feet"),
  27185. default: true
  27186. },
  27187. {
  27188. name: "Macro",
  27189. height: math.unit(1000, "feet")
  27190. },
  27191. {
  27192. name: "Megamacro",
  27193. height: math.unit(2, "miles")
  27194. },
  27195. {
  27196. name: "Gigamacro",
  27197. height: math.unit(20, "earths")
  27198. },
  27199. ]
  27200. ))
  27201. characterMakers.push(() => makeCharacter(
  27202. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  27203. {
  27204. front: {
  27205. height: math.unit(5, "feet"),
  27206. weight: math.unit(180, "lb"),
  27207. name: "Front",
  27208. image: {
  27209. source: "./media/characters/mekana/front.svg",
  27210. extra: 1671 / 1605,
  27211. bottom: 3.5 / 1691
  27212. }
  27213. },
  27214. side: {
  27215. height: math.unit(5, "feet"),
  27216. weight: math.unit(180, "lb"),
  27217. name: "Side",
  27218. image: {
  27219. source: "./media/characters/mekana/side.svg",
  27220. extra: 1671 / 1605,
  27221. bottom: 3.5 / 1691
  27222. }
  27223. },
  27224. back: {
  27225. height: math.unit(5, "feet"),
  27226. weight: math.unit(180, "lb"),
  27227. name: "Back",
  27228. image: {
  27229. source: "./media/characters/mekana/back.svg",
  27230. extra: 1671 / 1605,
  27231. bottom: 3.5 / 1691
  27232. }
  27233. },
  27234. },
  27235. [
  27236. {
  27237. name: "Normal",
  27238. height: math.unit(5, "feet"),
  27239. default: true
  27240. },
  27241. ]
  27242. ))
  27243. characterMakers.push(() => makeCharacter(
  27244. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  27245. {
  27246. front: {
  27247. height: math.unit(4 + 6 / 12, "feet"),
  27248. weight: math.unit(80, "lb"),
  27249. name: "Front",
  27250. image: {
  27251. source: "./media/characters/pixie/front.svg",
  27252. extra: 1924 / 1825,
  27253. bottom: 22.4 / 1946
  27254. }
  27255. },
  27256. },
  27257. [
  27258. {
  27259. name: "Normal",
  27260. height: math.unit(4 + 6 / 12, "feet"),
  27261. default: true
  27262. },
  27263. {
  27264. name: "Macro",
  27265. height: math.unit(40, "feet")
  27266. },
  27267. ]
  27268. ))
  27269. characterMakers.push(() => makeCharacter(
  27270. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  27271. {
  27272. front: {
  27273. height: math.unit(2.1, "meters"),
  27274. weight: math.unit(200, "lb"),
  27275. name: "Front",
  27276. image: {
  27277. source: "./media/characters/the-lascivious/front.svg",
  27278. extra: 1 / 0.893,
  27279. bottom: 3.5 / 573.7
  27280. }
  27281. },
  27282. },
  27283. [
  27284. {
  27285. name: "Human Scale",
  27286. height: math.unit(2.1, "meters")
  27287. },
  27288. {
  27289. name: "Wolxi Scale",
  27290. height: math.unit(46.2, "m"),
  27291. default: true
  27292. },
  27293. {
  27294. name: "Boinker of Buildings",
  27295. height: math.unit(10, "km")
  27296. },
  27297. {
  27298. name: "Shagger of Skyscrapers",
  27299. height: math.unit(40, "km")
  27300. },
  27301. {
  27302. name: "Banger of Boroughs",
  27303. height: math.unit(4000, "km")
  27304. },
  27305. {
  27306. name: "Screwer of States",
  27307. height: math.unit(100000, "km")
  27308. },
  27309. {
  27310. name: "Pounder of Planets",
  27311. height: math.unit(2000000, "km")
  27312. },
  27313. ]
  27314. ))
  27315. characterMakers.push(() => makeCharacter(
  27316. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  27317. {
  27318. front: {
  27319. height: math.unit(6, "feet"),
  27320. weight: math.unit(150, "lb"),
  27321. name: "Front",
  27322. image: {
  27323. source: "./media/characters/aj/front.svg",
  27324. extra: 2039 / 1562,
  27325. bottom: 40 / 2079
  27326. }
  27327. },
  27328. },
  27329. [
  27330. {
  27331. name: "Normal",
  27332. height: math.unit(11 + 6 / 12, "feet"),
  27333. default: true
  27334. },
  27335. {
  27336. name: "Megamacro",
  27337. height: math.unit(60, "megameters")
  27338. },
  27339. ]
  27340. ))
  27341. characterMakers.push(() => makeCharacter(
  27342. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  27343. {
  27344. side: {
  27345. height: math.unit(31 + 8 / 12, "feet"),
  27346. weight: math.unit(75000, "kg"),
  27347. name: "Side",
  27348. image: {
  27349. source: "./media/characters/koros/side.svg",
  27350. extra: 1442 / 1297,
  27351. bottom: 122.7 / 1562
  27352. }
  27353. },
  27354. dicksKingsCrown: {
  27355. height: math.unit(6, "feet"),
  27356. name: "Dicks (King's Crown)",
  27357. image: {
  27358. source: "./media/characters/koros/dicks-kings-crown.svg"
  27359. }
  27360. },
  27361. dicksTailSet: {
  27362. height: math.unit(3, "feet"),
  27363. name: "Dicks (Tail Set)",
  27364. image: {
  27365. source: "./media/characters/koros/dicks-tail-set.svg"
  27366. }
  27367. },
  27368. dickCumming: {
  27369. height: math.unit(7.98, "feet"),
  27370. name: "Dick (Cumming)",
  27371. image: {
  27372. source: "./media/characters/koros/dick-cumming.svg"
  27373. }
  27374. },
  27375. dicksBack: {
  27376. height: math.unit(5.9, "feet"),
  27377. name: "Dicks (Back)",
  27378. image: {
  27379. source: "./media/characters/koros/dicks-back.svg"
  27380. }
  27381. },
  27382. dicksFront: {
  27383. height: math.unit(3.72, "feet"),
  27384. name: "Dicks (Front)",
  27385. image: {
  27386. source: "./media/characters/koros/dicks-front.svg"
  27387. }
  27388. },
  27389. dicksPeeking: {
  27390. height: math.unit(3.0, "feet"),
  27391. name: "Dicks (Peeking)",
  27392. image: {
  27393. source: "./media/characters/koros/dicks-peeking.svg"
  27394. }
  27395. },
  27396. eye: {
  27397. height: math.unit(1.7, "feet"),
  27398. name: "Eye",
  27399. image: {
  27400. source: "./media/characters/koros/eye.svg"
  27401. }
  27402. },
  27403. headFront: {
  27404. height: math.unit(11.69, "feet"),
  27405. name: "Head (Front)",
  27406. image: {
  27407. source: "./media/characters/koros/head-front.svg"
  27408. }
  27409. },
  27410. headSide: {
  27411. height: math.unit(14, "feet"),
  27412. name: "Head (Side)",
  27413. image: {
  27414. source: "./media/characters/koros/head-side.svg"
  27415. }
  27416. },
  27417. leg: {
  27418. height: math.unit(17, "feet"),
  27419. name: "Leg",
  27420. image: {
  27421. source: "./media/characters/koros/leg.svg"
  27422. }
  27423. },
  27424. mawSide: {
  27425. height: math.unit(12.8, "feet"),
  27426. name: "Maw (Side)",
  27427. image: {
  27428. source: "./media/characters/koros/maw-side.svg"
  27429. }
  27430. },
  27431. mawSpitting: {
  27432. height: math.unit(17, "feet"),
  27433. name: "Maw (Spitting)",
  27434. image: {
  27435. source: "./media/characters/koros/maw-spitting.svg"
  27436. }
  27437. },
  27438. slit: {
  27439. height: math.unit(2.8, "feet"),
  27440. name: "Slit",
  27441. image: {
  27442. source: "./media/characters/koros/slit.svg"
  27443. }
  27444. },
  27445. stomach: {
  27446. height: math.unit(6.8, "feet"),
  27447. preyCapacity: math.unit(20, "people"),
  27448. name: "Stomach",
  27449. image: {
  27450. source: "./media/characters/koros/stomach.svg"
  27451. }
  27452. },
  27453. wingspanBottom: {
  27454. height: math.unit(114, "feet"),
  27455. name: "Wingspan (Bottom)",
  27456. image: {
  27457. source: "./media/characters/koros/wingspan-bottom.svg"
  27458. }
  27459. },
  27460. wingspanTop: {
  27461. height: math.unit(104, "feet"),
  27462. name: "Wingspan (Top)",
  27463. image: {
  27464. source: "./media/characters/koros/wingspan-top.svg"
  27465. }
  27466. },
  27467. },
  27468. [
  27469. {
  27470. name: "Normal",
  27471. height: math.unit(31 + 8 / 12, "feet"),
  27472. default: true
  27473. },
  27474. ]
  27475. ))
  27476. characterMakers.push(() => makeCharacter(
  27477. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  27478. {
  27479. front: {
  27480. height: math.unit(18 + 5 / 12, "feet"),
  27481. weight: math.unit(3750, "kg"),
  27482. name: "Front",
  27483. image: {
  27484. source: "./media/characters/vexx/front.svg",
  27485. extra: 426 / 396,
  27486. bottom: 31.5 / 458
  27487. }
  27488. },
  27489. maw: {
  27490. height: math.unit(6, "feet"),
  27491. name: "Maw",
  27492. image: {
  27493. source: "./media/characters/vexx/maw.svg"
  27494. }
  27495. },
  27496. },
  27497. [
  27498. {
  27499. name: "Normal",
  27500. height: math.unit(18 + 5 / 12, "feet"),
  27501. default: true
  27502. },
  27503. ]
  27504. ))
  27505. characterMakers.push(() => makeCharacter(
  27506. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  27507. {
  27508. front: {
  27509. height: math.unit(17 + 6 / 12, "feet"),
  27510. weight: math.unit(150, "lb"),
  27511. name: "Front",
  27512. image: {
  27513. source: "./media/characters/baadra/front.svg",
  27514. extra: 1694/1553,
  27515. bottom: 179/1873
  27516. }
  27517. },
  27518. frontAlt: {
  27519. height: math.unit(17 + 6 / 12, "feet"),
  27520. weight: math.unit(150, "lb"),
  27521. name: "Front (Alt)",
  27522. image: {
  27523. source: "./media/characters/baadra/front-alt.svg",
  27524. extra: 3137 / 2890,
  27525. bottom: 168.4 / 3305
  27526. }
  27527. },
  27528. back: {
  27529. height: math.unit(17 + 6 / 12, "feet"),
  27530. weight: math.unit(150, "lb"),
  27531. name: "Back",
  27532. image: {
  27533. source: "./media/characters/baadra/back.svg",
  27534. extra: 3142 / 2890,
  27535. bottom: 220 / 3371
  27536. }
  27537. },
  27538. head: {
  27539. height: math.unit(5.45, "feet"),
  27540. name: "Head",
  27541. image: {
  27542. source: "./media/characters/baadra/head.svg"
  27543. }
  27544. },
  27545. headAngry: {
  27546. height: math.unit(4.95, "feet"),
  27547. name: "Head (Angry)",
  27548. image: {
  27549. source: "./media/characters/baadra/head-angry.svg"
  27550. }
  27551. },
  27552. headOpen: {
  27553. height: math.unit(6, "feet"),
  27554. name: "Head (Open)",
  27555. image: {
  27556. source: "./media/characters/baadra/head-open.svg"
  27557. }
  27558. },
  27559. },
  27560. [
  27561. {
  27562. name: "Normal",
  27563. height: math.unit(17 + 6 / 12, "feet"),
  27564. default: true
  27565. },
  27566. ]
  27567. ))
  27568. characterMakers.push(() => makeCharacter(
  27569. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  27570. {
  27571. front: {
  27572. height: math.unit(7 + 3 / 12, "feet"),
  27573. weight: math.unit(180, "lb"),
  27574. name: "Front",
  27575. image: {
  27576. source: "./media/characters/juri/front.svg",
  27577. extra: 1401 / 1237,
  27578. bottom: 18.5 / 1418
  27579. }
  27580. },
  27581. side: {
  27582. height: math.unit(7 + 3 / 12, "feet"),
  27583. weight: math.unit(180, "lb"),
  27584. name: "Side",
  27585. image: {
  27586. source: "./media/characters/juri/side.svg",
  27587. extra: 1424 / 1242,
  27588. bottom: 18.5 / 1447
  27589. }
  27590. },
  27591. sitting: {
  27592. height: math.unit(6, "feet"),
  27593. weight: math.unit(180, "lb"),
  27594. name: "Sitting",
  27595. image: {
  27596. source: "./media/characters/juri/sitting.svg",
  27597. extra: 1270 / 1143,
  27598. bottom: 100 / 1343
  27599. }
  27600. },
  27601. back: {
  27602. height: math.unit(7 + 3 / 12, "feet"),
  27603. weight: math.unit(180, "lb"),
  27604. name: "Back",
  27605. image: {
  27606. source: "./media/characters/juri/back.svg",
  27607. extra: 1377 / 1240,
  27608. bottom: 23.7 / 1405
  27609. }
  27610. },
  27611. maw: {
  27612. height: math.unit(2.8, "feet"),
  27613. name: "Maw",
  27614. image: {
  27615. source: "./media/characters/juri/maw.svg"
  27616. }
  27617. },
  27618. stomach: {
  27619. height: math.unit(0.89, "feet"),
  27620. preyCapacity: math.unit(4, "liters"),
  27621. name: "Stomach",
  27622. image: {
  27623. source: "./media/characters/juri/stomach.svg"
  27624. }
  27625. },
  27626. },
  27627. [
  27628. {
  27629. name: "Normal",
  27630. height: math.unit(7 + 3 / 12, "feet"),
  27631. default: true
  27632. },
  27633. ]
  27634. ))
  27635. characterMakers.push(() => makeCharacter(
  27636. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  27637. {
  27638. fox: {
  27639. height: math.unit(5 + 6 / 12, "feet"),
  27640. weight: math.unit(140, "lb"),
  27641. name: "Fox",
  27642. image: {
  27643. source: "./media/characters/maxene-sita/fox.svg",
  27644. extra: 146 / 138,
  27645. bottom: 2.1 / 148.19
  27646. }
  27647. },
  27648. foxLaying: {
  27649. height: math.unit(1.70, "feet"),
  27650. weight: math.unit(140, "lb"),
  27651. name: "Fox (Laying)",
  27652. image: {
  27653. source: "./media/characters/maxene-sita/fox-laying.svg",
  27654. extra: 910 / 572,
  27655. bottom: 71 / 981
  27656. }
  27657. },
  27658. kitsune: {
  27659. height: math.unit(10, "feet"),
  27660. weight: math.unit(800, "lb"),
  27661. name: "Kitsune",
  27662. image: {
  27663. source: "./media/characters/maxene-sita/kitsune.svg",
  27664. extra: 185 / 176,
  27665. bottom: 4.7 / 189.9
  27666. }
  27667. },
  27668. hellhound: {
  27669. height: math.unit(10, "feet"),
  27670. weight: math.unit(700, "lb"),
  27671. name: "Hellhound",
  27672. image: {
  27673. source: "./media/characters/maxene-sita/hellhound.svg",
  27674. extra: 1600 / 1545,
  27675. bottom: 81 / 1681
  27676. }
  27677. },
  27678. },
  27679. [
  27680. {
  27681. name: "Normal",
  27682. height: math.unit(5 + 6 / 12, "feet"),
  27683. default: true
  27684. },
  27685. ]
  27686. ))
  27687. characterMakers.push(() => makeCharacter(
  27688. { name: "Maia", species: ["mew"], tags: ["feral"] },
  27689. {
  27690. front: {
  27691. height: math.unit(3 + 4 / 12, "feet"),
  27692. weight: math.unit(70, "lb"),
  27693. name: "Front",
  27694. image: {
  27695. source: "./media/characters/maia/front.svg",
  27696. extra: 227 / 219.5,
  27697. bottom: 40 / 267
  27698. }
  27699. },
  27700. back: {
  27701. height: math.unit(3 + 4 / 12, "feet"),
  27702. weight: math.unit(70, "lb"),
  27703. name: "Back",
  27704. image: {
  27705. source: "./media/characters/maia/back.svg",
  27706. extra: 237 / 225
  27707. }
  27708. },
  27709. },
  27710. [
  27711. {
  27712. name: "Normal",
  27713. height: math.unit(3 + 4 / 12, "feet"),
  27714. default: true
  27715. },
  27716. ]
  27717. ))
  27718. characterMakers.push(() => makeCharacter(
  27719. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  27720. {
  27721. front: {
  27722. height: math.unit(5 + 10 / 12, "feet"),
  27723. weight: math.unit(197, "lb"),
  27724. name: "Front",
  27725. image: {
  27726. source: "./media/characters/jabaro/front.svg",
  27727. extra: 225 / 216,
  27728. bottom: 5.06 / 230
  27729. }
  27730. },
  27731. back: {
  27732. height: math.unit(5 + 10 / 12, "feet"),
  27733. weight: math.unit(197, "lb"),
  27734. name: "Back",
  27735. image: {
  27736. source: "./media/characters/jabaro/back.svg",
  27737. extra: 225 / 219,
  27738. bottom: 1.9 / 227
  27739. }
  27740. },
  27741. },
  27742. [
  27743. {
  27744. name: "Normal",
  27745. height: math.unit(5 + 10 / 12, "feet"),
  27746. default: true
  27747. },
  27748. ]
  27749. ))
  27750. characterMakers.push(() => makeCharacter(
  27751. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  27752. {
  27753. front: {
  27754. height: math.unit(5 + 8 / 12, "feet"),
  27755. weight: math.unit(139, "lb"),
  27756. name: "Front",
  27757. image: {
  27758. source: "./media/characters/risa/front.svg",
  27759. extra: 270 / 260,
  27760. bottom: 11.2 / 282
  27761. }
  27762. },
  27763. back: {
  27764. height: math.unit(5 + 8 / 12, "feet"),
  27765. weight: math.unit(139, "lb"),
  27766. name: "Back",
  27767. image: {
  27768. source: "./media/characters/risa/back.svg",
  27769. extra: 264 / 255,
  27770. bottom: 4 / 268
  27771. }
  27772. },
  27773. },
  27774. [
  27775. {
  27776. name: "Normal",
  27777. height: math.unit(5 + 8 / 12, "feet"),
  27778. default: true
  27779. },
  27780. ]
  27781. ))
  27782. characterMakers.push(() => makeCharacter(
  27783. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  27784. {
  27785. front: {
  27786. height: math.unit(2 + 11 / 12, "feet"),
  27787. weight: math.unit(30, "lb"),
  27788. name: "Front",
  27789. image: {
  27790. source: "./media/characters/weatley/front.svg",
  27791. bottom: 10.7 / 414,
  27792. extra: 403.5 / 362
  27793. }
  27794. },
  27795. back: {
  27796. height: math.unit(2 + 11 / 12, "feet"),
  27797. weight: math.unit(30, "lb"),
  27798. name: "Back",
  27799. image: {
  27800. source: "./media/characters/weatley/back.svg",
  27801. bottom: 10.7 / 414,
  27802. extra: 403.5 / 362
  27803. }
  27804. },
  27805. },
  27806. [
  27807. {
  27808. name: "Normal",
  27809. height: math.unit(2 + 11 / 12, "feet"),
  27810. default: true
  27811. },
  27812. ]
  27813. ))
  27814. characterMakers.push(() => makeCharacter(
  27815. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  27816. {
  27817. front: {
  27818. height: math.unit(5 + 2 / 12, "feet"),
  27819. weight: math.unit(50, "kg"),
  27820. name: "Front",
  27821. image: {
  27822. source: "./media/characters/mercury-crescent/front.svg",
  27823. extra: 1088 / 1033,
  27824. bottom: 18.9 / 1109
  27825. }
  27826. },
  27827. },
  27828. [
  27829. {
  27830. name: "Normal",
  27831. height: math.unit(5 + 2 / 12, "feet"),
  27832. default: true
  27833. },
  27834. ]
  27835. ))
  27836. characterMakers.push(() => makeCharacter(
  27837. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  27838. {
  27839. front: {
  27840. height: math.unit(2, "feet"),
  27841. weight: math.unit(15, "kg"),
  27842. name: "Front",
  27843. image: {
  27844. source: "./media/characters/diamond-jones/front.svg",
  27845. extra: 727/723,
  27846. bottom: 46/773
  27847. }
  27848. },
  27849. },
  27850. [
  27851. {
  27852. name: "Normal",
  27853. height: math.unit(2, "feet"),
  27854. default: true
  27855. },
  27856. ]
  27857. ))
  27858. characterMakers.push(() => makeCharacter(
  27859. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  27860. {
  27861. front: {
  27862. height: math.unit(3, "feet"),
  27863. weight: math.unit(30, "kg"),
  27864. name: "Front",
  27865. image: {
  27866. source: "./media/characters/sweet-bit/front.svg",
  27867. extra: 675 / 567,
  27868. bottom: 27.7 / 703
  27869. }
  27870. },
  27871. },
  27872. [
  27873. {
  27874. name: "Normal",
  27875. height: math.unit(3, "feet"),
  27876. default: true
  27877. },
  27878. ]
  27879. ))
  27880. characterMakers.push(() => makeCharacter(
  27881. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  27882. {
  27883. side: {
  27884. height: math.unit(9.178, "feet"),
  27885. weight: math.unit(500, "lb"),
  27886. name: "Side",
  27887. image: {
  27888. source: "./media/characters/umbrazen/side.svg",
  27889. extra: 1730 / 1473,
  27890. bottom: 34.6 / 1765
  27891. }
  27892. },
  27893. },
  27894. [
  27895. {
  27896. name: "Normal",
  27897. height: math.unit(9.178, "feet"),
  27898. default: true
  27899. },
  27900. ]
  27901. ))
  27902. characterMakers.push(() => makeCharacter(
  27903. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  27904. {
  27905. front: {
  27906. height: math.unit(10, "feet"),
  27907. weight: math.unit(750, "lb"),
  27908. name: "Front",
  27909. image: {
  27910. source: "./media/characters/arlist/front.svg",
  27911. extra: 961 / 778,
  27912. bottom: 6.2 / 986
  27913. }
  27914. },
  27915. },
  27916. [
  27917. {
  27918. name: "Normal",
  27919. height: math.unit(10, "feet"),
  27920. default: true
  27921. },
  27922. ]
  27923. ))
  27924. characterMakers.push(() => makeCharacter(
  27925. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  27926. {
  27927. front: {
  27928. height: math.unit(5 + 1 / 12, "feet"),
  27929. weight: math.unit(110, "lb"),
  27930. name: "Front",
  27931. image: {
  27932. source: "./media/characters/aradel/front.svg",
  27933. extra: 324 / 303,
  27934. bottom: 3.6 / 329.4
  27935. }
  27936. },
  27937. },
  27938. [
  27939. {
  27940. name: "Normal",
  27941. height: math.unit(5 + 1 / 12, "feet"),
  27942. default: true
  27943. },
  27944. ]
  27945. ))
  27946. characterMakers.push(() => makeCharacter(
  27947. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  27948. {
  27949. dressed: {
  27950. height: math.unit(3 + 8 / 12, "feet"),
  27951. weight: math.unit(50, "lb"),
  27952. name: "Dressed",
  27953. image: {
  27954. source: "./media/characters/serryn/dressed.svg",
  27955. extra: 1792 / 1656,
  27956. bottom: 43.5 / 1840
  27957. }
  27958. },
  27959. nude: {
  27960. height: math.unit(3 + 8 / 12, "feet"),
  27961. weight: math.unit(50, "lb"),
  27962. name: "Nude",
  27963. image: {
  27964. source: "./media/characters/serryn/nude.svg",
  27965. extra: 1792 / 1656,
  27966. bottom: 43.5 / 1840
  27967. }
  27968. },
  27969. },
  27970. [
  27971. {
  27972. name: "Normal",
  27973. height: math.unit(3 + 8 / 12, "feet"),
  27974. default: true
  27975. },
  27976. ]
  27977. ))
  27978. characterMakers.push(() => makeCharacter(
  27979. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  27980. {
  27981. front: {
  27982. height: math.unit(7 + 10 / 12, "feet"),
  27983. weight: math.unit(255, "lb"),
  27984. name: "Front",
  27985. image: {
  27986. source: "./media/characters/xavier-thyme/front.svg",
  27987. extra: 3733 / 3642,
  27988. bottom: 131 / 3869
  27989. }
  27990. },
  27991. frontRaven: {
  27992. height: math.unit(7 + 10 / 12, "feet"),
  27993. weight: math.unit(255, "lb"),
  27994. name: "Front (Raven)",
  27995. image: {
  27996. source: "./media/characters/xavier-thyme/front-raven.svg",
  27997. extra: 4385 / 3642,
  27998. bottom: 131 / 4517
  27999. }
  28000. },
  28001. },
  28002. [
  28003. {
  28004. name: "Normal",
  28005. height: math.unit(7 + 10 / 12, "feet"),
  28006. default: true
  28007. },
  28008. ]
  28009. ))
  28010. characterMakers.push(() => makeCharacter(
  28011. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  28012. {
  28013. front: {
  28014. height: math.unit(1.6, "m"),
  28015. weight: math.unit(50, "kg"),
  28016. name: "Front",
  28017. image: {
  28018. source: "./media/characters/kiki/front.svg",
  28019. extra: 4682 / 3610,
  28020. bottom: 115 / 4777
  28021. }
  28022. },
  28023. },
  28024. [
  28025. {
  28026. name: "Normal",
  28027. height: math.unit(1.6, "meters"),
  28028. default: true
  28029. },
  28030. ]
  28031. ))
  28032. characterMakers.push(() => makeCharacter(
  28033. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  28034. {
  28035. front: {
  28036. height: math.unit(50, "m"),
  28037. weight: math.unit(500, "tonnes"),
  28038. name: "Front",
  28039. image: {
  28040. source: "./media/characters/ryoko/front.svg",
  28041. extra: 4632 / 3926,
  28042. bottom: 193 / 4823
  28043. }
  28044. },
  28045. },
  28046. [
  28047. {
  28048. name: "Normal",
  28049. height: math.unit(50, "meters"),
  28050. default: true
  28051. },
  28052. ]
  28053. ))
  28054. characterMakers.push(() => makeCharacter(
  28055. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  28056. {
  28057. front: {
  28058. height: math.unit(30, "m"),
  28059. weight: math.unit(22, "tonnes"),
  28060. name: "Front",
  28061. image: {
  28062. source: "./media/characters/elio/front.svg",
  28063. extra: 4582 / 3720,
  28064. bottom: 236 / 4828
  28065. }
  28066. },
  28067. },
  28068. [
  28069. {
  28070. name: "Normal",
  28071. height: math.unit(30, "meters"),
  28072. default: true
  28073. },
  28074. ]
  28075. ))
  28076. characterMakers.push(() => makeCharacter(
  28077. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  28078. {
  28079. front: {
  28080. height: math.unit(6 + 3 / 12, "feet"),
  28081. weight: math.unit(120, "lb"),
  28082. name: "Front",
  28083. image: {
  28084. source: "./media/characters/azura/front.svg",
  28085. extra: 1149 / 1135,
  28086. bottom: 45 / 1194
  28087. }
  28088. },
  28089. frontClothed: {
  28090. height: math.unit(6 + 3 / 12, "feet"),
  28091. weight: math.unit(120, "lb"),
  28092. name: "Front (Clothed)",
  28093. image: {
  28094. source: "./media/characters/azura/front-clothed.svg",
  28095. extra: 1149 / 1135,
  28096. bottom: 45 / 1194
  28097. }
  28098. },
  28099. },
  28100. [
  28101. {
  28102. name: "Normal",
  28103. height: math.unit(6 + 3 / 12, "feet"),
  28104. default: true
  28105. },
  28106. {
  28107. name: "Macro",
  28108. height: math.unit(20 + 6 / 12, "feet")
  28109. },
  28110. {
  28111. name: "Megamacro",
  28112. height: math.unit(12, "miles")
  28113. },
  28114. {
  28115. name: "Gigamacro",
  28116. height: math.unit(10000, "miles")
  28117. },
  28118. {
  28119. name: "Teramacro",
  28120. height: math.unit(900000, "miles")
  28121. },
  28122. ]
  28123. ))
  28124. characterMakers.push(() => makeCharacter(
  28125. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  28126. {
  28127. front: {
  28128. height: math.unit(12, "feet"),
  28129. weight: math.unit(1, "ton"),
  28130. capacity: math.unit(660000, "gallons"),
  28131. name: "Front",
  28132. image: {
  28133. source: "./media/characters/zeus/front.svg",
  28134. extra: 5005 / 4717,
  28135. bottom: 363 / 5388
  28136. }
  28137. },
  28138. },
  28139. [
  28140. {
  28141. name: "Normal",
  28142. height: math.unit(12, "feet")
  28143. },
  28144. {
  28145. name: "Preferred Size",
  28146. height: math.unit(0.5, "miles"),
  28147. default: true
  28148. },
  28149. {
  28150. name: "Giga Horse",
  28151. height: math.unit(300, "miles")
  28152. },
  28153. {
  28154. name: "Riding Planets",
  28155. height: math.unit(30, "megameters")
  28156. },
  28157. {
  28158. name: "Cosmic Giant",
  28159. height: math.unit(3, "zettameters")
  28160. },
  28161. {
  28162. name: "Breeding God",
  28163. height: math.unit(9.92e22, "yottameters")
  28164. },
  28165. ]
  28166. ))
  28167. characterMakers.push(() => makeCharacter(
  28168. { name: "Fang", species: ["monster"], tags: ["feral"] },
  28169. {
  28170. side: {
  28171. height: math.unit(9, "feet"),
  28172. weight: math.unit(1500, "kg"),
  28173. name: "Side",
  28174. image: {
  28175. source: "./media/characters/fang/side.svg",
  28176. extra: 924 / 866,
  28177. bottom: 47.5 / 972.3
  28178. }
  28179. },
  28180. },
  28181. [
  28182. {
  28183. name: "Normal",
  28184. height: math.unit(9, "feet"),
  28185. default: true
  28186. },
  28187. {
  28188. name: "Macro",
  28189. height: math.unit(75 + 6 / 12, "feet")
  28190. },
  28191. {
  28192. name: "Teramacro",
  28193. height: math.unit(50000, "miles")
  28194. },
  28195. ]
  28196. ))
  28197. characterMakers.push(() => makeCharacter(
  28198. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  28199. {
  28200. front: {
  28201. height: math.unit(10, "feet"),
  28202. weight: math.unit(2, "tons"),
  28203. name: "Front",
  28204. image: {
  28205. source: "./media/characters/rekhit/front.svg",
  28206. extra: 2796 / 2590,
  28207. bottom: 225 / 3022
  28208. }
  28209. },
  28210. },
  28211. [
  28212. {
  28213. name: "Normal",
  28214. height: math.unit(10, "feet"),
  28215. default: true
  28216. },
  28217. {
  28218. name: "Macro",
  28219. height: math.unit(500, "feet")
  28220. },
  28221. ]
  28222. ))
  28223. characterMakers.push(() => makeCharacter(
  28224. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  28225. {
  28226. front: {
  28227. height: math.unit(7 + 6.451 / 12, "feet"),
  28228. weight: math.unit(310, "lb"),
  28229. name: "Front",
  28230. image: {
  28231. source: "./media/characters/dahlia-verrick/front.svg",
  28232. extra: 1488 / 1365,
  28233. bottom: 6.2 / 1495
  28234. }
  28235. },
  28236. back: {
  28237. height: math.unit(7 + 6.451 / 12, "feet"),
  28238. weight: math.unit(310, "lb"),
  28239. name: "Back",
  28240. image: {
  28241. source: "./media/characters/dahlia-verrick/back.svg",
  28242. extra: 1472 / 1351,
  28243. bottom: 5.28 / 1477
  28244. }
  28245. },
  28246. frontBusiness: {
  28247. height: math.unit(7 + 6.451 / 12, "feet"),
  28248. weight: math.unit(200, "lb"),
  28249. name: "Front (Business)",
  28250. image: {
  28251. source: "./media/characters/dahlia-verrick/front-business.svg",
  28252. extra: 1478 / 1381,
  28253. bottom: 5.5 / 1484
  28254. }
  28255. },
  28256. frontCasual: {
  28257. height: math.unit(7 + 6.451 / 12, "feet"),
  28258. weight: math.unit(200, "lb"),
  28259. name: "Front (Casual)",
  28260. image: {
  28261. source: "./media/characters/dahlia-verrick/front-casual.svg",
  28262. extra: 1478 / 1381,
  28263. bottom: 5.5 / 1484
  28264. }
  28265. },
  28266. },
  28267. [
  28268. {
  28269. name: "Travel-Sized",
  28270. height: math.unit(7.45, "inches")
  28271. },
  28272. {
  28273. name: "Normal",
  28274. height: math.unit(7 + 6.451 / 12, "feet"),
  28275. default: true
  28276. },
  28277. {
  28278. name: "Hitting the Town",
  28279. height: math.unit(37 + 8 / 12, "feet")
  28280. },
  28281. {
  28282. name: "Stomp in the Suburbs",
  28283. height: math.unit(964 + 9.728 / 12, "feet")
  28284. },
  28285. {
  28286. name: "Sit on the City",
  28287. height: math.unit(61747 + 10.592 / 12, "feet")
  28288. },
  28289. {
  28290. name: "Glomp the Globe",
  28291. height: math.unit(252919327 + 4.832 / 12, "feet")
  28292. },
  28293. ]
  28294. ))
  28295. characterMakers.push(() => makeCharacter(
  28296. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  28297. {
  28298. front: {
  28299. height: math.unit(6 + 4 / 12, "feet"),
  28300. weight: math.unit(320, "lb"),
  28301. name: "Front",
  28302. image: {
  28303. source: "./media/characters/balina-mahigan/front.svg",
  28304. extra: 447 / 428,
  28305. bottom: 18 / 466
  28306. }
  28307. },
  28308. back: {
  28309. height: math.unit(6 + 4 / 12, "feet"),
  28310. weight: math.unit(320, "lb"),
  28311. name: "Back",
  28312. image: {
  28313. source: "./media/characters/balina-mahigan/back.svg",
  28314. extra: 445 / 428,
  28315. bottom: 4.07 / 448
  28316. }
  28317. },
  28318. arm: {
  28319. height: math.unit(1.88, "feet"),
  28320. name: "Arm",
  28321. image: {
  28322. source: "./media/characters/balina-mahigan/arm.svg"
  28323. }
  28324. },
  28325. backPort: {
  28326. height: math.unit(0.685, "feet"),
  28327. name: "Back Port",
  28328. image: {
  28329. source: "./media/characters/balina-mahigan/back-port.svg"
  28330. }
  28331. },
  28332. hoofpaw: {
  28333. height: math.unit(1.41, "feet"),
  28334. name: "Hoofpaw",
  28335. image: {
  28336. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  28337. }
  28338. },
  28339. leftHandBack: {
  28340. height: math.unit(0.938, "feet"),
  28341. name: "Left Hand (Back)",
  28342. image: {
  28343. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  28344. }
  28345. },
  28346. leftHandFront: {
  28347. height: math.unit(0.938, "feet"),
  28348. name: "Left Hand (Front)",
  28349. image: {
  28350. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  28351. }
  28352. },
  28353. rightHandBack: {
  28354. height: math.unit(0.95, "feet"),
  28355. name: "Right Hand (Back)",
  28356. image: {
  28357. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  28358. }
  28359. },
  28360. rightHandFront: {
  28361. height: math.unit(0.95, "feet"),
  28362. name: "Right Hand (Front)",
  28363. image: {
  28364. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  28365. }
  28366. },
  28367. },
  28368. [
  28369. {
  28370. name: "Normal",
  28371. height: math.unit(6 + 4 / 12, "feet"),
  28372. default: true
  28373. },
  28374. ]
  28375. ))
  28376. characterMakers.push(() => makeCharacter(
  28377. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  28378. {
  28379. front: {
  28380. height: math.unit(6, "feet"),
  28381. weight: math.unit(320, "lb"),
  28382. name: "Front",
  28383. image: {
  28384. source: "./media/characters/balina-mejeri/front.svg",
  28385. extra: 517 / 488,
  28386. bottom: 44.2 / 561
  28387. }
  28388. },
  28389. },
  28390. [
  28391. {
  28392. name: "Normal",
  28393. height: math.unit(6 + 4 / 12, "feet")
  28394. },
  28395. {
  28396. name: "Business",
  28397. height: math.unit(155, "feet"),
  28398. default: true
  28399. },
  28400. ]
  28401. ))
  28402. characterMakers.push(() => makeCharacter(
  28403. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  28404. {
  28405. kneeling: {
  28406. height: math.unit(6 + 4 / 12, "feet"),
  28407. weight: math.unit(300 * 20, "lb"),
  28408. name: "Kneeling",
  28409. image: {
  28410. source: "./media/characters/balbarian/kneeling.svg",
  28411. extra: 922 / 862,
  28412. bottom: 42.4 / 965
  28413. }
  28414. },
  28415. },
  28416. [
  28417. {
  28418. name: "Normal",
  28419. height: math.unit(6 + 4 / 12, "feet")
  28420. },
  28421. {
  28422. name: "Treasured",
  28423. height: math.unit(18 + 9 / 12, "feet"),
  28424. default: true
  28425. },
  28426. {
  28427. name: "Macro",
  28428. height: math.unit(900, "feet")
  28429. },
  28430. ]
  28431. ))
  28432. characterMakers.push(() => makeCharacter(
  28433. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  28434. {
  28435. front: {
  28436. height: math.unit(6 + 4 / 12, "feet"),
  28437. weight: math.unit(325, "lb"),
  28438. name: "Front",
  28439. image: {
  28440. source: "./media/characters/balina-amarini/front.svg",
  28441. extra: 415 / 403,
  28442. bottom: 19 / 433.4
  28443. }
  28444. },
  28445. back: {
  28446. height: math.unit(6 + 4 / 12, "feet"),
  28447. weight: math.unit(325, "lb"),
  28448. name: "Back",
  28449. image: {
  28450. source: "./media/characters/balina-amarini/back.svg",
  28451. extra: 415 / 403,
  28452. bottom: 13.5 / 432
  28453. }
  28454. },
  28455. overdrive: {
  28456. height: math.unit(6 + 4 / 12, "feet"),
  28457. weight: math.unit(400, "lb"),
  28458. name: "Overdrive",
  28459. image: {
  28460. source: "./media/characters/balina-amarini/overdrive.svg",
  28461. extra: 269 / 259,
  28462. bottom: 12 / 282
  28463. }
  28464. },
  28465. },
  28466. [
  28467. {
  28468. name: "Boom",
  28469. height: math.unit(9 + 10 / 12, "feet"),
  28470. default: true
  28471. },
  28472. {
  28473. name: "Macro",
  28474. height: math.unit(280, "feet")
  28475. },
  28476. ]
  28477. ))
  28478. characterMakers.push(() => makeCharacter(
  28479. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  28480. {
  28481. goddess: {
  28482. height: math.unit(600, "feet"),
  28483. weight: math.unit(2000000, "tons"),
  28484. name: "Goddess",
  28485. image: {
  28486. source: "./media/characters/lady-kubwa/goddess.svg",
  28487. extra: 1240.5 / 1223,
  28488. bottom: 22 / 1263
  28489. }
  28490. },
  28491. goddesser: {
  28492. height: math.unit(900, "feet"),
  28493. weight: math.unit(20000000, "lb"),
  28494. name: "Goddess-er",
  28495. image: {
  28496. source: "./media/characters/lady-kubwa/goddess-er.svg",
  28497. extra: 899 / 888,
  28498. bottom: 12.6 / 912
  28499. }
  28500. },
  28501. },
  28502. [
  28503. {
  28504. name: "Macro",
  28505. height: math.unit(600, "feet"),
  28506. default: true
  28507. },
  28508. {
  28509. name: "Megamacro",
  28510. height: math.unit(250, "miles")
  28511. },
  28512. ]
  28513. ))
  28514. characterMakers.push(() => makeCharacter(
  28515. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  28516. {
  28517. front: {
  28518. height: math.unit(7 + 7 / 12, "feet"),
  28519. weight: math.unit(250, "lb"),
  28520. name: "Front",
  28521. image: {
  28522. source: "./media/characters/tala-grovehorn/front.svg",
  28523. extra: 2636 / 2525,
  28524. bottom: 147 / 2781
  28525. }
  28526. },
  28527. back: {
  28528. height: math.unit(7 + 7 / 12, "feet"),
  28529. weight: math.unit(250, "lb"),
  28530. name: "Back",
  28531. image: {
  28532. source: "./media/characters/tala-grovehorn/back.svg",
  28533. extra: 2635 / 2539,
  28534. bottom: 100 / 2732.8
  28535. }
  28536. },
  28537. mouth: {
  28538. height: math.unit(1.15, "feet"),
  28539. name: "Mouth",
  28540. image: {
  28541. source: "./media/characters/tala-grovehorn/mouth.svg"
  28542. }
  28543. },
  28544. dick: {
  28545. height: math.unit(2.36, "feet"),
  28546. name: "Dick",
  28547. image: {
  28548. source: "./media/characters/tala-grovehorn/dick.svg"
  28549. }
  28550. },
  28551. slit: {
  28552. height: math.unit(0.61, "feet"),
  28553. name: "Slit",
  28554. image: {
  28555. source: "./media/characters/tala-grovehorn/slit.svg"
  28556. }
  28557. },
  28558. },
  28559. [
  28560. ]
  28561. ))
  28562. characterMakers.push(() => makeCharacter(
  28563. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  28564. {
  28565. front: {
  28566. height: math.unit(7 + 7 / 12, "feet"),
  28567. weight: math.unit(225, "lb"),
  28568. name: "Front",
  28569. image: {
  28570. source: "./media/characters/epona/front.svg",
  28571. extra: 2445 / 2290,
  28572. bottom: 251 / 2696
  28573. }
  28574. },
  28575. back: {
  28576. height: math.unit(7 + 7 / 12, "feet"),
  28577. weight: math.unit(225, "lb"),
  28578. name: "Back",
  28579. image: {
  28580. source: "./media/characters/epona/back.svg",
  28581. extra: 2546 / 2408,
  28582. bottom: 44 / 2589
  28583. }
  28584. },
  28585. genitals: {
  28586. height: math.unit(1.5, "feet"),
  28587. name: "Genitals",
  28588. image: {
  28589. source: "./media/characters/epona/genitals.svg"
  28590. }
  28591. },
  28592. },
  28593. [
  28594. {
  28595. name: "Normal",
  28596. height: math.unit(7 + 7 / 12, "feet"),
  28597. default: true
  28598. },
  28599. ]
  28600. ))
  28601. characterMakers.push(() => makeCharacter(
  28602. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  28603. {
  28604. front: {
  28605. height: math.unit(7, "feet"),
  28606. weight: math.unit(518, "lb"),
  28607. name: "Front",
  28608. image: {
  28609. source: "./media/characters/avia-bloodbourn/front.svg",
  28610. extra: 1466 / 1350,
  28611. bottom: 65 / 1527
  28612. }
  28613. },
  28614. },
  28615. [
  28616. ]
  28617. ))
  28618. characterMakers.push(() => makeCharacter(
  28619. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  28620. {
  28621. front: {
  28622. height: math.unit(9.35, "feet"),
  28623. weight: math.unit(600, "lb"),
  28624. name: "Front",
  28625. image: {
  28626. source: "./media/characters/amera/front.svg",
  28627. extra: 891 / 818,
  28628. bottom: 30 / 922.7
  28629. }
  28630. },
  28631. back: {
  28632. height: math.unit(9.35, "feet"),
  28633. weight: math.unit(600, "lb"),
  28634. name: "Back",
  28635. image: {
  28636. source: "./media/characters/amera/back.svg",
  28637. extra: 876 / 824,
  28638. bottom: 6.8 / 884
  28639. }
  28640. },
  28641. dick: {
  28642. height: math.unit(2.14, "feet"),
  28643. name: "Dick",
  28644. image: {
  28645. source: "./media/characters/amera/dick.svg"
  28646. }
  28647. },
  28648. },
  28649. [
  28650. {
  28651. name: "Normal",
  28652. height: math.unit(9.35, "feet"),
  28653. default: true
  28654. },
  28655. ]
  28656. ))
  28657. characterMakers.push(() => makeCharacter(
  28658. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  28659. {
  28660. kneeling: {
  28661. height: math.unit(3 + 4 / 12, "feet"),
  28662. weight: math.unit(90, "lb"),
  28663. name: "Kneeling",
  28664. image: {
  28665. source: "./media/characters/rosewen/kneeling.svg",
  28666. extra: 1835 / 1571,
  28667. bottom: 27.7 / 1862
  28668. }
  28669. },
  28670. },
  28671. [
  28672. {
  28673. name: "Normal",
  28674. height: math.unit(3 + 4 / 12, "feet"),
  28675. default: true
  28676. },
  28677. ]
  28678. ))
  28679. characterMakers.push(() => makeCharacter(
  28680. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  28681. {
  28682. front: {
  28683. height: math.unit(5 + 10 / 12, "feet"),
  28684. weight: math.unit(200, "lb"),
  28685. name: "Front",
  28686. image: {
  28687. source: "./media/characters/sabah/front.svg",
  28688. extra: 849 / 763,
  28689. bottom: 33.9 / 881
  28690. }
  28691. },
  28692. },
  28693. [
  28694. {
  28695. name: "Normal",
  28696. height: math.unit(5 + 10 / 12, "feet"),
  28697. default: true
  28698. },
  28699. ]
  28700. ))
  28701. characterMakers.push(() => makeCharacter(
  28702. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  28703. {
  28704. front: {
  28705. height: math.unit(3 + 5 / 12, "feet"),
  28706. weight: math.unit(40, "kg"),
  28707. name: "Front",
  28708. image: {
  28709. source: "./media/characters/purple-flame/front.svg",
  28710. extra: 1577 / 1412,
  28711. bottom: 97 / 1694
  28712. }
  28713. },
  28714. frontDressed: {
  28715. height: math.unit(3 + 5 / 12, "feet"),
  28716. weight: math.unit(40, "kg"),
  28717. name: "Front (Dressed)",
  28718. image: {
  28719. source: "./media/characters/purple-flame/front-dressed.svg",
  28720. extra: 1577 / 1412,
  28721. bottom: 97 / 1694
  28722. }
  28723. },
  28724. headphones: {
  28725. height: math.unit(0.85, "feet"),
  28726. name: "Headphones",
  28727. image: {
  28728. source: "./media/characters/purple-flame/headphones.svg"
  28729. }
  28730. },
  28731. },
  28732. [
  28733. {
  28734. name: "Really Small",
  28735. height: math.unit(5, "cm")
  28736. },
  28737. {
  28738. name: "Micro",
  28739. height: math.unit(1 + 5 / 12, "feet")
  28740. },
  28741. {
  28742. name: "Normal",
  28743. height: math.unit(3 + 5 / 12, "feet"),
  28744. default: true
  28745. },
  28746. {
  28747. name: "Minimacro",
  28748. height: math.unit(125, "feet")
  28749. },
  28750. {
  28751. name: "Macro",
  28752. height: math.unit(0.5, "miles")
  28753. },
  28754. {
  28755. name: "Megamacro",
  28756. height: math.unit(50, "miles")
  28757. },
  28758. {
  28759. name: "Gigantic",
  28760. height: math.unit(750, "miles")
  28761. },
  28762. {
  28763. name: "Planetary",
  28764. height: math.unit(15000, "miles")
  28765. },
  28766. ]
  28767. ))
  28768. characterMakers.push(() => makeCharacter(
  28769. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  28770. {
  28771. front: {
  28772. height: math.unit(14, "feet"),
  28773. weight: math.unit(959, "lb"),
  28774. name: "Front",
  28775. image: {
  28776. source: "./media/characters/arsenal/front.svg",
  28777. extra: 2357 / 2157,
  28778. bottom: 93 / 2458
  28779. }
  28780. },
  28781. },
  28782. [
  28783. {
  28784. name: "Normal",
  28785. height: math.unit(14, "feet"),
  28786. default: true
  28787. },
  28788. ]
  28789. ))
  28790. characterMakers.push(() => makeCharacter(
  28791. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  28792. {
  28793. front: {
  28794. height: math.unit(6, "feet"),
  28795. weight: math.unit(150, "lb"),
  28796. name: "Front",
  28797. image: {
  28798. source: "./media/characters/adira/front.svg",
  28799. extra: 1078 / 1029,
  28800. bottom: 87 / 1166
  28801. }
  28802. },
  28803. },
  28804. [
  28805. {
  28806. name: "Micro",
  28807. height: math.unit(4, "inches"),
  28808. default: true
  28809. },
  28810. {
  28811. name: "Macro",
  28812. height: math.unit(50, "feet")
  28813. },
  28814. ]
  28815. ))
  28816. characterMakers.push(() => makeCharacter(
  28817. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  28818. {
  28819. front: {
  28820. height: math.unit(16, "feet"),
  28821. weight: math.unit(1000, "lb"),
  28822. name: "Front",
  28823. image: {
  28824. source: "./media/characters/grim/front.svg",
  28825. extra: 622 / 614,
  28826. bottom: 18.1 / 642
  28827. }
  28828. },
  28829. back: {
  28830. height: math.unit(16, "feet"),
  28831. weight: math.unit(1000, "lb"),
  28832. name: "Back",
  28833. image: {
  28834. source: "./media/characters/grim/back.svg",
  28835. extra: 610.6 / 602,
  28836. bottom: 40.8 / 652
  28837. }
  28838. },
  28839. hunched: {
  28840. height: math.unit(9.75, "feet"),
  28841. weight: math.unit(1000, "lb"),
  28842. name: "Hunched",
  28843. image: {
  28844. source: "./media/characters/grim/hunched.svg",
  28845. extra: 304 / 297,
  28846. bottom: 35.4 / 394
  28847. }
  28848. },
  28849. },
  28850. [
  28851. {
  28852. name: "Normal",
  28853. height: math.unit(16, "feet"),
  28854. default: true
  28855. },
  28856. ]
  28857. ))
  28858. characterMakers.push(() => makeCharacter(
  28859. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  28860. {
  28861. front: {
  28862. height: math.unit(2.3, "meters"),
  28863. weight: math.unit(300, "lb"),
  28864. name: "Front",
  28865. image: {
  28866. source: "./media/characters/sinja/front-sfw.svg",
  28867. extra: 1393 / 1294,
  28868. bottom: 70 / 1463
  28869. }
  28870. },
  28871. frontNsfw: {
  28872. height: math.unit(2.3, "meters"),
  28873. weight: math.unit(300, "lb"),
  28874. name: "Front (NSFW)",
  28875. image: {
  28876. source: "./media/characters/sinja/front-nsfw.svg",
  28877. extra: 1393 / 1294,
  28878. bottom: 70 / 1463
  28879. }
  28880. },
  28881. back: {
  28882. height: math.unit(2.3, "meters"),
  28883. weight: math.unit(300, "lb"),
  28884. name: "Back",
  28885. image: {
  28886. source: "./media/characters/sinja/back.svg",
  28887. extra: 1393 / 1294,
  28888. bottom: 70 / 1463
  28889. }
  28890. },
  28891. head: {
  28892. height: math.unit(1.771, "feet"),
  28893. name: "Head",
  28894. image: {
  28895. source: "./media/characters/sinja/head.svg"
  28896. }
  28897. },
  28898. slit: {
  28899. height: math.unit(0.8, "feet"),
  28900. name: "Slit",
  28901. image: {
  28902. source: "./media/characters/sinja/slit.svg"
  28903. }
  28904. },
  28905. },
  28906. [
  28907. {
  28908. name: "Normal",
  28909. height: math.unit(2.3, "meters")
  28910. },
  28911. {
  28912. name: "Macro",
  28913. height: math.unit(91, "meters"),
  28914. default: true
  28915. },
  28916. {
  28917. name: "Megamacro",
  28918. height: math.unit(91440, "meters")
  28919. },
  28920. {
  28921. name: "Gigamacro",
  28922. height: math.unit(60960000, "meters")
  28923. },
  28924. {
  28925. name: "Teramacro",
  28926. height: math.unit(9144000000, "meters")
  28927. },
  28928. ]
  28929. ))
  28930. characterMakers.push(() => makeCharacter(
  28931. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  28932. {
  28933. front: {
  28934. height: math.unit(1.7, "meters"),
  28935. weight: math.unit(130, "lb"),
  28936. name: "Front",
  28937. image: {
  28938. source: "./media/characters/kyu/front.svg",
  28939. extra: 415 / 395,
  28940. bottom: 5 / 420
  28941. }
  28942. },
  28943. head: {
  28944. height: math.unit(1.75, "feet"),
  28945. name: "Head",
  28946. image: {
  28947. source: "./media/characters/kyu/head.svg"
  28948. }
  28949. },
  28950. foot: {
  28951. height: math.unit(0.81, "feet"),
  28952. name: "Foot",
  28953. image: {
  28954. source: "./media/characters/kyu/foot.svg"
  28955. }
  28956. },
  28957. },
  28958. [
  28959. {
  28960. name: "Normal",
  28961. height: math.unit(1.7, "meters")
  28962. },
  28963. {
  28964. name: "Macro",
  28965. height: math.unit(131, "feet"),
  28966. default: true
  28967. },
  28968. {
  28969. name: "Megamacro",
  28970. height: math.unit(91440, "meters")
  28971. },
  28972. {
  28973. name: "Gigamacro",
  28974. height: math.unit(60960000, "meters")
  28975. },
  28976. {
  28977. name: "Teramacro",
  28978. height: math.unit(9144000000, "meters")
  28979. },
  28980. ]
  28981. ))
  28982. characterMakers.push(() => makeCharacter(
  28983. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  28984. {
  28985. front: {
  28986. height: math.unit(7 + 1 / 12, "feet"),
  28987. weight: math.unit(250, "lb"),
  28988. name: "Front",
  28989. image: {
  28990. source: "./media/characters/joey/front.svg",
  28991. extra: 1791 / 1537,
  28992. bottom: 28 / 1816
  28993. }
  28994. },
  28995. },
  28996. [
  28997. {
  28998. name: "Micro",
  28999. height: math.unit(3, "inches")
  29000. },
  29001. {
  29002. name: "Normal",
  29003. height: math.unit(7 + 1 / 12, "feet"),
  29004. default: true
  29005. },
  29006. ]
  29007. ))
  29008. characterMakers.push(() => makeCharacter(
  29009. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  29010. {
  29011. front: {
  29012. height: math.unit(165, "cm"),
  29013. weight: math.unit(140, "lb"),
  29014. name: "Front",
  29015. image: {
  29016. source: "./media/characters/sam-evans/front.svg",
  29017. extra: 3417 / 3230,
  29018. bottom: 41.3 / 3417
  29019. }
  29020. },
  29021. frontSixTails: {
  29022. height: math.unit(165, "cm"),
  29023. weight: math.unit(140, "lb"),
  29024. name: "Front-six-tails",
  29025. image: {
  29026. source: "./media/characters/sam-evans/front-six-tails.svg",
  29027. extra: 3417 / 3230,
  29028. bottom: 41.3 / 3417
  29029. }
  29030. },
  29031. back: {
  29032. height: math.unit(165, "cm"),
  29033. weight: math.unit(140, "lb"),
  29034. name: "Back",
  29035. image: {
  29036. source: "./media/characters/sam-evans/back.svg",
  29037. extra: 3227 / 3032,
  29038. bottom: 6.8 / 3234
  29039. }
  29040. },
  29041. face: {
  29042. height: math.unit(0.68, "feet"),
  29043. name: "Face",
  29044. image: {
  29045. source: "./media/characters/sam-evans/face.svg"
  29046. }
  29047. },
  29048. },
  29049. [
  29050. {
  29051. name: "Normal",
  29052. height: math.unit(165, "cm"),
  29053. default: true
  29054. },
  29055. {
  29056. name: "Macro",
  29057. height: math.unit(100, "meters")
  29058. },
  29059. {
  29060. name: "Macro+",
  29061. height: math.unit(800, "meters")
  29062. },
  29063. {
  29064. name: "Macro++",
  29065. height: math.unit(3, "km")
  29066. },
  29067. {
  29068. name: "Macro+++",
  29069. height: math.unit(30, "km")
  29070. },
  29071. ]
  29072. ))
  29073. characterMakers.push(() => makeCharacter(
  29074. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  29075. {
  29076. front: {
  29077. height: math.unit(10, "feet"),
  29078. weight: math.unit(750, "lb"),
  29079. name: "Front",
  29080. image: {
  29081. source: "./media/characters/juliet-a/front.svg",
  29082. extra: 1766 / 1720,
  29083. bottom: 43 / 1809
  29084. }
  29085. },
  29086. back: {
  29087. height: math.unit(10, "feet"),
  29088. weight: math.unit(750, "lb"),
  29089. name: "Back",
  29090. image: {
  29091. source: "./media/characters/juliet-a/back.svg",
  29092. extra: 1781 / 1734,
  29093. bottom: 35 / 1810,
  29094. }
  29095. },
  29096. },
  29097. [
  29098. {
  29099. name: "Normal",
  29100. height: math.unit(10, "feet"),
  29101. default: true
  29102. },
  29103. {
  29104. name: "Dragon Form",
  29105. height: math.unit(250, "feet")
  29106. },
  29107. {
  29108. name: "Macro",
  29109. height: math.unit(1000, "feet")
  29110. },
  29111. {
  29112. name: "Megamacro",
  29113. height: math.unit(10000, "feet")
  29114. }
  29115. ]
  29116. ))
  29117. characterMakers.push(() => makeCharacter(
  29118. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  29119. {
  29120. regular: {
  29121. height: math.unit(7 + 3 / 12, "feet"),
  29122. weight: math.unit(260, "lb"),
  29123. name: "Regular",
  29124. image: {
  29125. source: "./media/characters/wild/regular.svg",
  29126. extra: 97.45 / 92,
  29127. bottom: 6.8 / 104.3
  29128. }
  29129. },
  29130. biggums: {
  29131. height: math.unit(8 + 6 / 12, "feet"),
  29132. weight: math.unit(425, "lb"),
  29133. name: "Biggums",
  29134. image: {
  29135. source: "./media/characters/wild/biggums.svg",
  29136. extra: 97.45 / 92,
  29137. bottom: 7.5 / 132.34
  29138. }
  29139. },
  29140. mawRegular: {
  29141. height: math.unit(1.24, "feet"),
  29142. name: "Maw (Regular)",
  29143. image: {
  29144. source: "./media/characters/wild/maw.svg"
  29145. }
  29146. },
  29147. mawBiggums: {
  29148. height: math.unit(1.47, "feet"),
  29149. name: "Maw (Biggums)",
  29150. image: {
  29151. source: "./media/characters/wild/maw.svg"
  29152. }
  29153. },
  29154. },
  29155. [
  29156. {
  29157. name: "Normal",
  29158. height: math.unit(7 + 3 / 12, "feet"),
  29159. default: true
  29160. },
  29161. ]
  29162. ))
  29163. characterMakers.push(() => makeCharacter(
  29164. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  29165. {
  29166. front: {
  29167. height: math.unit(2.5, "meters"),
  29168. weight: math.unit(200, "kg"),
  29169. name: "Front",
  29170. image: {
  29171. source: "./media/characters/vidar/front.svg",
  29172. extra: 2994 / 2795,
  29173. bottom: 56 / 3061
  29174. }
  29175. },
  29176. back: {
  29177. height: math.unit(2.5, "meters"),
  29178. weight: math.unit(200, "kg"),
  29179. name: "Back",
  29180. image: {
  29181. source: "./media/characters/vidar/back.svg",
  29182. extra: 3131 / 2928,
  29183. bottom: 13.5 / 3141.5
  29184. }
  29185. },
  29186. feral: {
  29187. height: math.unit(2.5, "meters"),
  29188. weight: math.unit(2000, "kg"),
  29189. name: "Feral",
  29190. image: {
  29191. source: "./media/characters/vidar/feral.svg",
  29192. extra: 2790 / 1765,
  29193. bottom: 6 / 2796
  29194. }
  29195. },
  29196. },
  29197. [
  29198. {
  29199. name: "Normal",
  29200. height: math.unit(2.5, "meters"),
  29201. default: true
  29202. },
  29203. {
  29204. name: "Macro",
  29205. height: math.unit(100, "meters")
  29206. },
  29207. ]
  29208. ))
  29209. characterMakers.push(() => makeCharacter(
  29210. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  29211. {
  29212. front: {
  29213. height: math.unit(5 + 9 / 12, "feet"),
  29214. weight: math.unit(120, "lb"),
  29215. name: "Front",
  29216. image: {
  29217. source: "./media/characters/ash/front.svg",
  29218. extra: 2189 / 1961,
  29219. bottom: 5.2 / 2194
  29220. }
  29221. },
  29222. },
  29223. [
  29224. {
  29225. name: "Normal",
  29226. height: math.unit(5 + 9 / 12, "feet"),
  29227. default: true
  29228. },
  29229. ]
  29230. ))
  29231. characterMakers.push(() => makeCharacter(
  29232. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  29233. {
  29234. front: {
  29235. height: math.unit(9, "feet"),
  29236. weight: math.unit(10000, "lb"),
  29237. name: "Front",
  29238. image: {
  29239. source: "./media/characters/gygabite/front.svg",
  29240. bottom: 31.7 / 537.8,
  29241. extra: 505 / 370
  29242. }
  29243. },
  29244. },
  29245. [
  29246. {
  29247. name: "Normal",
  29248. height: math.unit(9, "feet"),
  29249. default: true
  29250. },
  29251. ]
  29252. ))
  29253. characterMakers.push(() => makeCharacter(
  29254. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  29255. {
  29256. front: {
  29257. height: math.unit(12, "feet"),
  29258. weight: math.unit(4000, "lb"),
  29259. name: "Front",
  29260. image: {
  29261. source: "./media/characters/p0tat0/front.svg",
  29262. extra: 1065 / 921,
  29263. bottom: 55.7 / 1121.25
  29264. }
  29265. },
  29266. },
  29267. [
  29268. {
  29269. name: "Normal",
  29270. height: math.unit(12, "feet"),
  29271. default: true
  29272. },
  29273. ]
  29274. ))
  29275. characterMakers.push(() => makeCharacter(
  29276. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  29277. {
  29278. side: {
  29279. height: math.unit(6.5, "feet"),
  29280. weight: math.unit(800, "lb"),
  29281. name: "Side",
  29282. image: {
  29283. source: "./media/characters/dusk/side.svg",
  29284. extra: 615 / 373,
  29285. bottom: 53 / 664
  29286. }
  29287. },
  29288. sitting: {
  29289. height: math.unit(7, "feet"),
  29290. weight: math.unit(800, "lb"),
  29291. name: "Sitting",
  29292. image: {
  29293. source: "./media/characters/dusk/sitting.svg",
  29294. extra: 753 / 425,
  29295. bottom: 33 / 774
  29296. }
  29297. },
  29298. head: {
  29299. height: math.unit(6.1, "feet"),
  29300. name: "Head",
  29301. image: {
  29302. source: "./media/characters/dusk/head.svg"
  29303. }
  29304. },
  29305. },
  29306. [
  29307. {
  29308. name: "Normal",
  29309. height: math.unit(7, "feet"),
  29310. default: true
  29311. },
  29312. ]
  29313. ))
  29314. characterMakers.push(() => makeCharacter(
  29315. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  29316. {
  29317. front: {
  29318. height: math.unit(15, "feet"),
  29319. weight: math.unit(7000, "lb"),
  29320. name: "Front",
  29321. image: {
  29322. source: "./media/characters/jay-direwolf/front.svg",
  29323. extra: 1810 / 1732,
  29324. bottom: 66 / 1892
  29325. }
  29326. },
  29327. },
  29328. [
  29329. {
  29330. name: "Normal",
  29331. height: math.unit(15, "feet"),
  29332. default: true
  29333. },
  29334. ]
  29335. ))
  29336. characterMakers.push(() => makeCharacter(
  29337. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  29338. {
  29339. front: {
  29340. height: math.unit(4 + 9 / 12, "feet"),
  29341. weight: math.unit(130, "lb"),
  29342. name: "Front",
  29343. image: {
  29344. source: "./media/characters/anchovie/front.svg",
  29345. extra: 382 / 350,
  29346. bottom: 25 / 409
  29347. }
  29348. },
  29349. back: {
  29350. height: math.unit(4 + 9 / 12, "feet"),
  29351. weight: math.unit(130, "lb"),
  29352. name: "Back",
  29353. image: {
  29354. source: "./media/characters/anchovie/back.svg",
  29355. extra: 385 / 352,
  29356. bottom: 16.6 / 402
  29357. }
  29358. },
  29359. frontDressed: {
  29360. height: math.unit(4 + 9 / 12, "feet"),
  29361. weight: math.unit(130, "lb"),
  29362. name: "Front (Dressed)",
  29363. image: {
  29364. source: "./media/characters/anchovie/front-dressed.svg",
  29365. extra: 382 / 350,
  29366. bottom: 25 / 409
  29367. }
  29368. },
  29369. backDressed: {
  29370. height: math.unit(4 + 9 / 12, "feet"),
  29371. weight: math.unit(130, "lb"),
  29372. name: "Back (Dressed)",
  29373. image: {
  29374. source: "./media/characters/anchovie/back-dressed.svg",
  29375. extra: 385 / 352,
  29376. bottom: 16.6 / 402
  29377. }
  29378. },
  29379. },
  29380. [
  29381. {
  29382. name: "Micro",
  29383. height: math.unit(6.4, "inches")
  29384. },
  29385. {
  29386. name: "Normal",
  29387. height: math.unit(4 + 9 / 12, "feet"),
  29388. default: true
  29389. },
  29390. ]
  29391. ))
  29392. characterMakers.push(() => makeCharacter(
  29393. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  29394. {
  29395. front: {
  29396. height: math.unit(2, "meters"),
  29397. weight: math.unit(180, "lb"),
  29398. name: "Front",
  29399. image: {
  29400. source: "./media/characters/acidrenamon/front.svg",
  29401. extra: 987 / 890,
  29402. bottom: 22.8 / 1009
  29403. }
  29404. },
  29405. back: {
  29406. height: math.unit(2, "meters"),
  29407. weight: math.unit(180, "lb"),
  29408. name: "Back",
  29409. image: {
  29410. source: "./media/characters/acidrenamon/back.svg",
  29411. extra: 983 / 891,
  29412. bottom: 8.4 / 992
  29413. }
  29414. },
  29415. head: {
  29416. height: math.unit(1.92, "feet"),
  29417. name: "Head",
  29418. image: {
  29419. source: "./media/characters/acidrenamon/head.svg"
  29420. }
  29421. },
  29422. rump: {
  29423. height: math.unit(1.72, "feet"),
  29424. name: "Rump",
  29425. image: {
  29426. source: "./media/characters/acidrenamon/rump.svg"
  29427. }
  29428. },
  29429. tail: {
  29430. height: math.unit(4.2, "feet"),
  29431. name: "Tail",
  29432. image: {
  29433. source: "./media/characters/acidrenamon/tail.svg"
  29434. }
  29435. },
  29436. },
  29437. [
  29438. {
  29439. name: "Normal",
  29440. height: math.unit(2, "meters"),
  29441. default: true
  29442. },
  29443. {
  29444. name: "Minimacro",
  29445. height: math.unit(7, "meters")
  29446. },
  29447. {
  29448. name: "Macro",
  29449. height: math.unit(200, "meters")
  29450. },
  29451. {
  29452. name: "Gigamacro",
  29453. height: math.unit(0.2, "earths")
  29454. },
  29455. ]
  29456. ))
  29457. characterMakers.push(() => makeCharacter(
  29458. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  29459. {
  29460. front: {
  29461. height: math.unit(152, "feet"),
  29462. name: "Front",
  29463. image: {
  29464. source: "./media/characters/kenzie-lee/front.svg",
  29465. extra: 1869/1774,
  29466. bottom: 128/1997
  29467. }
  29468. },
  29469. side: {
  29470. height: math.unit(86, "feet"),
  29471. name: "Side",
  29472. image: {
  29473. source: "./media/characters/kenzie-lee/side.svg",
  29474. extra: 930/815,
  29475. bottom: 177/1107
  29476. }
  29477. },
  29478. paw: {
  29479. height: math.unit(15, "feet"),
  29480. name: "Paw",
  29481. image: {
  29482. source: "./media/characters/kenzie-lee/paw.svg"
  29483. }
  29484. },
  29485. },
  29486. [
  29487. {
  29488. name: "Kenzie Flea",
  29489. height: math.unit(2, "mm"),
  29490. default: true
  29491. },
  29492. {
  29493. name: "Micro",
  29494. height: math.unit(2, "inches")
  29495. },
  29496. {
  29497. name: "Normal",
  29498. height: math.unit(152, "feet")
  29499. },
  29500. {
  29501. name: "Megamacro",
  29502. height: math.unit(7, "miles")
  29503. },
  29504. {
  29505. name: "Gigamacro",
  29506. height: math.unit(8000, "miles")
  29507. },
  29508. ]
  29509. ))
  29510. characterMakers.push(() => makeCharacter(
  29511. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  29512. {
  29513. front: {
  29514. height: math.unit(6, "feet"),
  29515. name: "Front",
  29516. image: {
  29517. source: "./media/characters/withers/front.svg",
  29518. extra: 1935/1760,
  29519. bottom: 72/2007
  29520. }
  29521. },
  29522. back: {
  29523. height: math.unit(6, "feet"),
  29524. name: "Back",
  29525. image: {
  29526. source: "./media/characters/withers/back.svg",
  29527. extra: 1944/1792,
  29528. bottom: 12/1956
  29529. }
  29530. },
  29531. dressed: {
  29532. height: math.unit(6, "feet"),
  29533. name: "Dressed",
  29534. image: {
  29535. source: "./media/characters/withers/dressed.svg",
  29536. extra: 1937/1765,
  29537. bottom: 73/2010
  29538. }
  29539. },
  29540. phase1: {
  29541. height: math.unit(1.1, "feet"),
  29542. name: "Phase 1",
  29543. image: {
  29544. source: "./media/characters/withers/phase-1.svg",
  29545. extra: 1885/1232,
  29546. bottom: 0/1885
  29547. }
  29548. },
  29549. phase2: {
  29550. height: math.unit(1.05, "feet"),
  29551. name: "Phase 2",
  29552. image: {
  29553. source: "./media/characters/withers/phase-2.svg",
  29554. extra: 1792/1090,
  29555. bottom: 0/1792
  29556. }
  29557. },
  29558. partyWipe: {
  29559. height: math.unit(1.1, "feet"),
  29560. name: "Party Wipe",
  29561. image: {
  29562. source: "./media/characters/withers/party-wipe.svg",
  29563. extra: 1864/1207,
  29564. bottom: 0/1864
  29565. }
  29566. },
  29567. },
  29568. [
  29569. {
  29570. name: "Macro",
  29571. height: math.unit(167, "feet"),
  29572. default: true
  29573. },
  29574. {
  29575. name: "Megamacro",
  29576. height: math.unit(15, "miles")
  29577. }
  29578. ]
  29579. ))
  29580. characterMakers.push(() => makeCharacter(
  29581. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  29582. {
  29583. front: {
  29584. height: math.unit(6 + 7 / 12, "feet"),
  29585. weight: math.unit(250, "lb"),
  29586. name: "Front",
  29587. image: {
  29588. source: "./media/characters/nemoskii/front.svg",
  29589. extra: 2270 / 1734,
  29590. bottom: 86 / 2354
  29591. }
  29592. },
  29593. back: {
  29594. height: math.unit(6 + 7 / 12, "feet"),
  29595. weight: math.unit(250, "lb"),
  29596. name: "Back",
  29597. image: {
  29598. source: "./media/characters/nemoskii/back.svg",
  29599. extra: 1845 / 1788,
  29600. bottom: 10.5 / 1852
  29601. }
  29602. },
  29603. head: {
  29604. height: math.unit(1.31, "feet"),
  29605. name: "Head",
  29606. image: {
  29607. source: "./media/characters/nemoskii/head.svg"
  29608. }
  29609. },
  29610. },
  29611. [
  29612. {
  29613. name: "Micro",
  29614. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  29615. },
  29616. {
  29617. name: "Normal",
  29618. height: math.unit(6 + 7 / 12, "feet"),
  29619. default: true
  29620. },
  29621. {
  29622. name: "Macro",
  29623. height: math.unit((6 + 7 / 12) * 150, "feet")
  29624. },
  29625. {
  29626. name: "Macro+",
  29627. height: math.unit((6 + 7 / 12) * 500, "feet")
  29628. },
  29629. {
  29630. name: "Megamacro",
  29631. height: math.unit((6 + 7 / 12) * 100000, "feet")
  29632. },
  29633. ]
  29634. ))
  29635. characterMakers.push(() => makeCharacter(
  29636. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  29637. {
  29638. front: {
  29639. height: math.unit(1, "mile"),
  29640. weight: math.unit(265261.9, "lb"),
  29641. name: "Front",
  29642. image: {
  29643. source: "./media/characters/shui/front.svg",
  29644. extra: 1633 / 1564,
  29645. bottom: 91.5 / 1726
  29646. }
  29647. },
  29648. },
  29649. [
  29650. {
  29651. name: "Macro",
  29652. height: math.unit(1, "mile"),
  29653. default: true
  29654. },
  29655. ]
  29656. ))
  29657. characterMakers.push(() => makeCharacter(
  29658. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  29659. {
  29660. front: {
  29661. height: math.unit(12 + 6 / 12, "feet"),
  29662. weight: math.unit(1342, "lb"),
  29663. name: "Front",
  29664. image: {
  29665. source: "./media/characters/arokh-takakura/front.svg",
  29666. extra: 1089 / 1043,
  29667. bottom: 77.4 / 1176.7
  29668. }
  29669. },
  29670. back: {
  29671. height: math.unit(12 + 6 / 12, "feet"),
  29672. weight: math.unit(1342, "lb"),
  29673. name: "Back",
  29674. image: {
  29675. source: "./media/characters/arokh-takakura/back.svg",
  29676. extra: 1046 / 1019,
  29677. bottom: 102 / 1150
  29678. }
  29679. },
  29680. },
  29681. [
  29682. {
  29683. name: "Big",
  29684. height: math.unit(12 + 6 / 12, "feet"),
  29685. default: true
  29686. },
  29687. ]
  29688. ))
  29689. characterMakers.push(() => makeCharacter(
  29690. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  29691. {
  29692. front: {
  29693. height: math.unit(5 + 6 / 12, "feet"),
  29694. weight: math.unit(150, "lb"),
  29695. name: "Front",
  29696. image: {
  29697. source: "./media/characters/theo/front.svg",
  29698. extra: 1184 / 1131,
  29699. bottom: 7.4 / 1191
  29700. }
  29701. },
  29702. },
  29703. [
  29704. {
  29705. name: "Micro",
  29706. height: math.unit(5, "inches")
  29707. },
  29708. {
  29709. name: "Normal",
  29710. height: math.unit(5 + 6 / 12, "feet"),
  29711. default: true
  29712. },
  29713. ]
  29714. ))
  29715. characterMakers.push(() => makeCharacter(
  29716. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  29717. {
  29718. front: {
  29719. height: math.unit(5 + 9 / 12, "feet"),
  29720. weight: math.unit(130, "lb"),
  29721. name: "Front",
  29722. image: {
  29723. source: "./media/characters/cecelia-swift/front.svg",
  29724. extra: 502 / 484,
  29725. bottom: 23 / 523
  29726. }
  29727. },
  29728. back: {
  29729. height: math.unit(5 + 9 / 12, "feet"),
  29730. weight: math.unit(130, "lb"),
  29731. name: "Back",
  29732. image: {
  29733. source: "./media/characters/cecelia-swift/back.svg",
  29734. extra: 499 / 485,
  29735. bottom: 12 / 511
  29736. }
  29737. },
  29738. head: {
  29739. height: math.unit(0.90, "feet"),
  29740. name: "Head",
  29741. image: {
  29742. source: "./media/characters/cecelia-swift/head.svg"
  29743. }
  29744. },
  29745. rump: {
  29746. height: math.unit(1.75, "feet"),
  29747. name: "Rump",
  29748. image: {
  29749. source: "./media/characters/cecelia-swift/rump.svg"
  29750. }
  29751. },
  29752. },
  29753. [
  29754. {
  29755. name: "Normal",
  29756. height: math.unit(5 + 9 / 12, "feet"),
  29757. default: true
  29758. },
  29759. {
  29760. name: "Big",
  29761. height: math.unit(50, "feet")
  29762. },
  29763. {
  29764. name: "Macro",
  29765. height: math.unit(100, "feet")
  29766. },
  29767. {
  29768. name: "Macro+",
  29769. height: math.unit(500, "feet")
  29770. },
  29771. {
  29772. name: "Macro++",
  29773. height: math.unit(1000, "feet")
  29774. },
  29775. ]
  29776. ))
  29777. characterMakers.push(() => makeCharacter(
  29778. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  29779. {
  29780. front: {
  29781. height: math.unit(6, "feet"),
  29782. weight: math.unit(150, "lb"),
  29783. name: "Front",
  29784. image: {
  29785. source: "./media/characters/kaunan/front.svg",
  29786. extra: 2890 / 2523,
  29787. bottom: 49 / 2939
  29788. }
  29789. },
  29790. },
  29791. [
  29792. {
  29793. name: "Macro",
  29794. height: math.unit(150, "feet"),
  29795. default: true
  29796. },
  29797. ]
  29798. ))
  29799. characterMakers.push(() => makeCharacter(
  29800. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  29801. {
  29802. dressed: {
  29803. height: math.unit(175, "cm"),
  29804. weight: math.unit(60, "kg"),
  29805. name: "Dressed",
  29806. image: {
  29807. source: "./media/characters/fei/dressed.svg",
  29808. extra: 1402/1278,
  29809. bottom: 27/1429
  29810. }
  29811. },
  29812. nude: {
  29813. height: math.unit(175, "cm"),
  29814. weight: math.unit(60, "kg"),
  29815. name: "Nude",
  29816. image: {
  29817. source: "./media/characters/fei/nude.svg",
  29818. extra: 1402/1278,
  29819. bottom: 27/1429
  29820. }
  29821. },
  29822. heels: {
  29823. height: math.unit(0.466, "feet"),
  29824. name: "Heels",
  29825. image: {
  29826. source: "./media/characters/fei/heels.svg",
  29827. extra: 156/152,
  29828. bottom: 28/184
  29829. }
  29830. },
  29831. },
  29832. [
  29833. {
  29834. name: "Mortal",
  29835. height: math.unit(175, "cm")
  29836. },
  29837. {
  29838. name: "Normal",
  29839. height: math.unit(3500, "m")
  29840. },
  29841. {
  29842. name: "Stroll",
  29843. height: math.unit(18.4, "km"),
  29844. default: true
  29845. },
  29846. {
  29847. name: "Showoff",
  29848. height: math.unit(175, "km")
  29849. },
  29850. ]
  29851. ))
  29852. characterMakers.push(() => makeCharacter(
  29853. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  29854. {
  29855. front: {
  29856. height: math.unit(7, "feet"),
  29857. weight: math.unit(1000, "kg"),
  29858. name: "Front",
  29859. image: {
  29860. source: "./media/characters/edrax/front.svg",
  29861. extra: 2838 / 2550,
  29862. bottom: 130 / 2968
  29863. }
  29864. },
  29865. },
  29866. [
  29867. {
  29868. name: "Small",
  29869. height: math.unit(7, "feet")
  29870. },
  29871. {
  29872. name: "Normal",
  29873. height: math.unit(1500, "meters")
  29874. },
  29875. {
  29876. name: "Mega",
  29877. height: math.unit(12000000, "km"),
  29878. default: true
  29879. },
  29880. {
  29881. name: "Megamacro",
  29882. height: math.unit(10600000, "lightyears")
  29883. },
  29884. {
  29885. name: "Hypermacro",
  29886. height: math.unit(256, "yottameters")
  29887. },
  29888. ]
  29889. ))
  29890. characterMakers.push(() => makeCharacter(
  29891. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  29892. {
  29893. front: {
  29894. height: math.unit(10, "feet"),
  29895. weight: math.unit(750, "lb"),
  29896. name: "Front",
  29897. image: {
  29898. source: "./media/characters/clove/front.svg",
  29899. extra: 1918/1751,
  29900. bottom: 52/1970
  29901. }
  29902. },
  29903. back: {
  29904. height: math.unit(10, "feet"),
  29905. weight: math.unit(750, "lb"),
  29906. name: "Back",
  29907. image: {
  29908. source: "./media/characters/clove/back.svg",
  29909. extra: 1912/1747,
  29910. bottom: 50/1962
  29911. }
  29912. },
  29913. },
  29914. [
  29915. {
  29916. name: "Normal",
  29917. height: math.unit(10, "feet"),
  29918. default: true
  29919. },
  29920. ]
  29921. ))
  29922. characterMakers.push(() => makeCharacter(
  29923. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29924. {
  29925. front: {
  29926. height: math.unit(4, "feet"),
  29927. weight: math.unit(50, "lb"),
  29928. name: "Front",
  29929. image: {
  29930. source: "./media/characters/alex-rabbit/front.svg",
  29931. extra: 507 / 458,
  29932. bottom: 18.5 / 527
  29933. }
  29934. },
  29935. back: {
  29936. height: math.unit(4, "feet"),
  29937. weight: math.unit(50, "lb"),
  29938. name: "Back",
  29939. image: {
  29940. source: "./media/characters/alex-rabbit/back.svg",
  29941. extra: 502 / 460,
  29942. bottom: 18.9 / 521
  29943. }
  29944. },
  29945. },
  29946. [
  29947. {
  29948. name: "Normal",
  29949. height: math.unit(4, "feet"),
  29950. default: true
  29951. },
  29952. ]
  29953. ))
  29954. characterMakers.push(() => makeCharacter(
  29955. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  29956. {
  29957. front: {
  29958. height: math.unit(1 + 3 / 12, "feet"),
  29959. weight: math.unit(80, "lb"),
  29960. name: "Front",
  29961. image: {
  29962. source: "./media/characters/zander-rose/front.svg",
  29963. extra: 916 / 797,
  29964. bottom: 17 / 933
  29965. }
  29966. },
  29967. back: {
  29968. height: math.unit(1 + 3 / 12, "feet"),
  29969. weight: math.unit(80, "lb"),
  29970. name: "Back",
  29971. image: {
  29972. source: "./media/characters/zander-rose/back.svg",
  29973. extra: 903 / 779,
  29974. bottom: 31 / 934
  29975. }
  29976. },
  29977. },
  29978. [
  29979. {
  29980. name: "Normal",
  29981. height: math.unit(1 + 3 / 12, "feet"),
  29982. default: true
  29983. },
  29984. ]
  29985. ))
  29986. characterMakers.push(() => makeCharacter(
  29987. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  29988. {
  29989. anthro: {
  29990. height: math.unit(6, "feet"),
  29991. weight: math.unit(150, "lb"),
  29992. name: "Anthro",
  29993. image: {
  29994. source: "./media/characters/razz/anthro.svg",
  29995. extra: 1437 / 1343,
  29996. bottom: 48 / 1485
  29997. }
  29998. },
  29999. feral: {
  30000. height: math.unit(6, "feet"),
  30001. weight: math.unit(150, "lb"),
  30002. name: "Feral",
  30003. image: {
  30004. source: "./media/characters/razz/feral.svg",
  30005. extra: 2569 / 1385,
  30006. bottom: 95 / 2664
  30007. }
  30008. },
  30009. },
  30010. [
  30011. {
  30012. name: "Normal",
  30013. height: math.unit(6, "feet"),
  30014. default: true
  30015. },
  30016. ]
  30017. ))
  30018. characterMakers.push(() => makeCharacter(
  30019. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  30020. {
  30021. front: {
  30022. height: math.unit(9 + 4 / 12, "feet"),
  30023. weight: math.unit(500, "lb"),
  30024. name: "Front",
  30025. image: {
  30026. source: "./media/characters/morrigan/front.svg",
  30027. extra: 2707 / 2579,
  30028. bottom: 156 / 2863
  30029. }
  30030. },
  30031. },
  30032. [
  30033. {
  30034. name: "Normal",
  30035. height: math.unit(9 + 4 / 12, "feet"),
  30036. default: true
  30037. },
  30038. ]
  30039. ))
  30040. characterMakers.push(() => makeCharacter(
  30041. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  30042. {
  30043. front: {
  30044. height: math.unit(5, "stories"),
  30045. weight: math.unit(4000, "lb"),
  30046. name: "Front",
  30047. image: {
  30048. source: "./media/characters/jenene/front.svg",
  30049. extra: 1780 / 1710,
  30050. bottom: 57 / 1837
  30051. }
  30052. },
  30053. },
  30054. [
  30055. {
  30056. name: "Normal",
  30057. height: math.unit(5, "stories"),
  30058. default: true
  30059. },
  30060. ]
  30061. ))
  30062. characterMakers.push(() => makeCharacter(
  30063. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  30064. {
  30065. taurSfw: {
  30066. height: math.unit(10, "meters"),
  30067. weight: math.unit(17500, "kg"),
  30068. name: "Taur",
  30069. image: {
  30070. source: "./media/characters/faey/taur-sfw.svg",
  30071. extra: 1200 / 968,
  30072. bottom: 41 / 1241
  30073. }
  30074. },
  30075. chestmaw: {
  30076. height: math.unit(2.01, "meters"),
  30077. name: "Chestmaw",
  30078. image: {
  30079. source: "./media/characters/faey/chestmaw.svg"
  30080. }
  30081. },
  30082. foot: {
  30083. height: math.unit(2.43, "meters"),
  30084. name: "Foot",
  30085. image: {
  30086. source: "./media/characters/faey/foot.svg"
  30087. }
  30088. },
  30089. jaws: {
  30090. height: math.unit(1.66, "meters"),
  30091. name: "Jaws",
  30092. image: {
  30093. source: "./media/characters/faey/jaws.svg"
  30094. }
  30095. },
  30096. tongues: {
  30097. height: math.unit(2.01, "meters"),
  30098. name: "Tongues",
  30099. image: {
  30100. source: "./media/characters/faey/tongues.svg"
  30101. }
  30102. },
  30103. },
  30104. [
  30105. {
  30106. name: "Small",
  30107. height: math.unit(10, "meters"),
  30108. default: true
  30109. },
  30110. {
  30111. name: "Big",
  30112. height: math.unit(500000, "km")
  30113. },
  30114. ]
  30115. ))
  30116. characterMakers.push(() => makeCharacter(
  30117. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  30118. {
  30119. front: {
  30120. height: math.unit(7, "feet"),
  30121. weight: math.unit(275, "lb"),
  30122. name: "Front",
  30123. image: {
  30124. source: "./media/characters/roku/front.svg",
  30125. extra: 903 / 878,
  30126. bottom: 37 / 940
  30127. }
  30128. },
  30129. },
  30130. [
  30131. {
  30132. name: "Normal",
  30133. height: math.unit(7, "feet"),
  30134. default: true
  30135. },
  30136. {
  30137. name: "Macro",
  30138. height: math.unit(500, "feet")
  30139. },
  30140. {
  30141. name: "Megamacro",
  30142. height: math.unit(200, "miles")
  30143. },
  30144. ]
  30145. ))
  30146. characterMakers.push(() => makeCharacter(
  30147. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  30148. {
  30149. front: {
  30150. height: math.unit(6 + 2 / 12, "feet"),
  30151. weight: math.unit(150, "lb"),
  30152. name: "Front",
  30153. image: {
  30154. source: "./media/characters/lira/front.svg",
  30155. extra: 1727 / 1605,
  30156. bottom: 26 / 1753
  30157. }
  30158. },
  30159. back: {
  30160. height: math.unit(6 + 2 / 12, "feet"),
  30161. weight: math.unit(150, "lb"),
  30162. name: "Back",
  30163. image: {
  30164. source: "./media/characters/lira/back.svg",
  30165. extra: 1713/1621,
  30166. bottom: 20/1733
  30167. }
  30168. },
  30169. hand: {
  30170. height: math.unit(0.75, "feet"),
  30171. name: "Hand",
  30172. image: {
  30173. source: "./media/characters/lira/hand.svg"
  30174. }
  30175. },
  30176. maw: {
  30177. height: math.unit(0.65, "feet"),
  30178. name: "Maw",
  30179. image: {
  30180. source: "./media/characters/lira/maw.svg"
  30181. }
  30182. },
  30183. pawDigi: {
  30184. height: math.unit(1.6, "feet"),
  30185. name: "Paw Digi",
  30186. image: {
  30187. source: "./media/characters/lira/paw-digi.svg"
  30188. }
  30189. },
  30190. pawPlanti: {
  30191. height: math.unit(1.4, "feet"),
  30192. name: "Paw Planti",
  30193. image: {
  30194. source: "./media/characters/lira/paw-planti.svg"
  30195. }
  30196. },
  30197. },
  30198. [
  30199. {
  30200. name: "Normal",
  30201. height: math.unit(6 + 2 / 12, "feet"),
  30202. default: true
  30203. },
  30204. {
  30205. name: "Macro",
  30206. height: math.unit(100, "feet")
  30207. },
  30208. {
  30209. name: "Macro²",
  30210. height: math.unit(1600, "feet")
  30211. },
  30212. {
  30213. name: "Planetary",
  30214. height: math.unit(20, "earths")
  30215. },
  30216. ]
  30217. ))
  30218. characterMakers.push(() => makeCharacter(
  30219. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  30220. {
  30221. front: {
  30222. height: math.unit(6, "feet"),
  30223. weight: math.unit(150, "lb"),
  30224. name: "Front",
  30225. image: {
  30226. source: "./media/characters/hadjet/front.svg",
  30227. extra: 1480 / 1346,
  30228. bottom: 26 / 1506
  30229. }
  30230. },
  30231. frontNsfw: {
  30232. height: math.unit(6, "feet"),
  30233. weight: math.unit(150, "lb"),
  30234. name: "Front (NSFW)",
  30235. image: {
  30236. source: "./media/characters/hadjet/front-nsfw.svg",
  30237. extra: 1440 / 1358,
  30238. bottom: 52 / 1492
  30239. }
  30240. },
  30241. },
  30242. [
  30243. {
  30244. name: "Macro",
  30245. height: math.unit(10, "stories"),
  30246. default: true
  30247. },
  30248. {
  30249. name: "Megamacro",
  30250. height: math.unit(1.5, "miles")
  30251. },
  30252. {
  30253. name: "Megamacro+",
  30254. height: math.unit(5, "miles")
  30255. },
  30256. ]
  30257. ))
  30258. characterMakers.push(() => makeCharacter(
  30259. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  30260. {
  30261. side: {
  30262. height: math.unit(106, "feet"),
  30263. weight: math.unit(500, "tonnes"),
  30264. name: "Side",
  30265. image: {
  30266. source: "./media/characters/kodran/side.svg",
  30267. extra: 553 / 480,
  30268. bottom: 33 / 586
  30269. }
  30270. },
  30271. front: {
  30272. height: math.unit(132, "feet"),
  30273. weight: math.unit(500, "tonnes"),
  30274. name: "Front",
  30275. image: {
  30276. source: "./media/characters/kodran/front.svg",
  30277. extra: 667 / 643,
  30278. bottom: 42 / 709
  30279. }
  30280. },
  30281. flying: {
  30282. height: math.unit(350, "feet"),
  30283. weight: math.unit(500, "tonnes"),
  30284. name: "Flying",
  30285. image: {
  30286. source: "./media/characters/kodran/flying.svg"
  30287. }
  30288. },
  30289. foot: {
  30290. height: math.unit(33, "feet"),
  30291. name: "Foot",
  30292. image: {
  30293. source: "./media/characters/kodran/foot.svg"
  30294. }
  30295. },
  30296. footFront: {
  30297. height: math.unit(19, "feet"),
  30298. name: "Foot (Front)",
  30299. image: {
  30300. source: "./media/characters/kodran/foot-front.svg",
  30301. extra: 261 / 261,
  30302. bottom: 91 / 352
  30303. }
  30304. },
  30305. headFront: {
  30306. height: math.unit(53, "feet"),
  30307. name: "Head (Front)",
  30308. image: {
  30309. source: "./media/characters/kodran/head-front.svg"
  30310. }
  30311. },
  30312. headSide: {
  30313. height: math.unit(65, "feet"),
  30314. name: "Head (Side)",
  30315. image: {
  30316. source: "./media/characters/kodran/head-side.svg"
  30317. }
  30318. },
  30319. throat: {
  30320. height: math.unit(79, "feet"),
  30321. name: "Throat",
  30322. image: {
  30323. source: "./media/characters/kodran/throat.svg"
  30324. }
  30325. },
  30326. },
  30327. [
  30328. {
  30329. name: "Large",
  30330. height: math.unit(106, "feet"),
  30331. default: true
  30332. },
  30333. ]
  30334. ))
  30335. characterMakers.push(() => makeCharacter(
  30336. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  30337. {
  30338. side: {
  30339. height: math.unit(11, "feet"),
  30340. weight: math.unit(150, "lb"),
  30341. name: "Side",
  30342. image: {
  30343. source: "./media/characters/pyxaron/side.svg",
  30344. extra: 305 / 195,
  30345. bottom: 17 / 322
  30346. }
  30347. },
  30348. },
  30349. [
  30350. {
  30351. name: "Normal",
  30352. height: math.unit(11, "feet"),
  30353. default: true
  30354. },
  30355. ]
  30356. ))
  30357. characterMakers.push(() => makeCharacter(
  30358. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  30359. {
  30360. front: {
  30361. height: math.unit(6, "feet"),
  30362. weight: math.unit(150, "lb"),
  30363. name: "Front",
  30364. image: {
  30365. source: "./media/characters/meep/front.svg",
  30366. extra: 88 / 80,
  30367. bottom: 6 / 94
  30368. }
  30369. },
  30370. },
  30371. [
  30372. {
  30373. name: "Fun Sized",
  30374. height: math.unit(2, "inches"),
  30375. default: true
  30376. },
  30377. {
  30378. name: "Friend Sized",
  30379. height: math.unit(8, "inches")
  30380. },
  30381. ]
  30382. ))
  30383. characterMakers.push(() => makeCharacter(
  30384. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30385. {
  30386. front: {
  30387. height: math.unit(15, "feet"),
  30388. weight: math.unit(2500, "lb"),
  30389. name: "Front",
  30390. image: {
  30391. source: "./media/characters/holly-rabbit/front.svg",
  30392. extra: 1433 / 1233,
  30393. bottom: 125 / 1558
  30394. }
  30395. },
  30396. dick: {
  30397. height: math.unit(4.6, "feet"),
  30398. name: "Dick",
  30399. image: {
  30400. source: "./media/characters/holly-rabbit/dick.svg"
  30401. }
  30402. },
  30403. },
  30404. [
  30405. {
  30406. name: "Normal",
  30407. height: math.unit(15, "feet"),
  30408. default: true
  30409. },
  30410. {
  30411. name: "Macro",
  30412. height: math.unit(250, "feet")
  30413. },
  30414. {
  30415. name: "Macro+",
  30416. height: math.unit(2500, "feet")
  30417. },
  30418. ]
  30419. ))
  30420. characterMakers.push(() => makeCharacter(
  30421. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  30422. {
  30423. front: {
  30424. height: math.unit(3.02, "meters"),
  30425. weight: math.unit(500, "kg"),
  30426. name: "Front",
  30427. image: {
  30428. source: "./media/characters/drena/front.svg",
  30429. extra: 282 / 243,
  30430. bottom: 8 / 290
  30431. }
  30432. },
  30433. side: {
  30434. height: math.unit(3.02, "meters"),
  30435. weight: math.unit(500, "kg"),
  30436. name: "Side",
  30437. image: {
  30438. source: "./media/characters/drena/side.svg",
  30439. extra: 280 / 245,
  30440. bottom: 10 / 290
  30441. }
  30442. },
  30443. back: {
  30444. height: math.unit(3.02, "meters"),
  30445. weight: math.unit(500, "kg"),
  30446. name: "Back",
  30447. image: {
  30448. source: "./media/characters/drena/back.svg",
  30449. extra: 278 / 243,
  30450. bottom: 2 / 280
  30451. }
  30452. },
  30453. foot: {
  30454. height: math.unit(0.75, "meters"),
  30455. name: "Foot",
  30456. image: {
  30457. source: "./media/characters/drena/foot.svg"
  30458. }
  30459. },
  30460. maw: {
  30461. height: math.unit(0.82, "meters"),
  30462. name: "Maw",
  30463. image: {
  30464. source: "./media/characters/drena/maw.svg"
  30465. }
  30466. },
  30467. eating: {
  30468. height: math.unit(0.75, "meters"),
  30469. name: "Eating",
  30470. image: {
  30471. source: "./media/characters/drena/eating.svg"
  30472. }
  30473. },
  30474. rump: {
  30475. height: math.unit(0.93, "meters"),
  30476. name: "Rump",
  30477. image: {
  30478. source: "./media/characters/drena/rump.svg"
  30479. }
  30480. },
  30481. },
  30482. [
  30483. {
  30484. name: "Normal",
  30485. height: math.unit(3.02, "meters"),
  30486. default: true
  30487. },
  30488. ]
  30489. ))
  30490. characterMakers.push(() => makeCharacter(
  30491. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  30492. {
  30493. front: {
  30494. height: math.unit(6 + 4 / 12, "feet"),
  30495. weight: math.unit(250, "lb"),
  30496. name: "Front",
  30497. image: {
  30498. source: "./media/characters/remmyzilla/front.svg",
  30499. extra: 4033 / 3588,
  30500. bottom: 123 / 4156
  30501. }
  30502. },
  30503. back: {
  30504. height: math.unit(6 + 4 / 12, "feet"),
  30505. weight: math.unit(250, "lb"),
  30506. name: "Back",
  30507. image: {
  30508. source: "./media/characters/remmyzilla/back.svg",
  30509. extra: 2687 / 2555,
  30510. bottom: 48 / 2735
  30511. }
  30512. },
  30513. paw: {
  30514. height: math.unit(1.73, "feet"),
  30515. name: "Paw",
  30516. image: {
  30517. source: "./media/characters/remmyzilla/paw.svg"
  30518. },
  30519. extraAttributes: {
  30520. "toeSize": {
  30521. name: "Toe Size",
  30522. power: 2,
  30523. type: "area",
  30524. base: math.unit(0.0035, "m^2")
  30525. },
  30526. "padSize": {
  30527. name: "Pad Size",
  30528. power: 2,
  30529. type: "area",
  30530. base: math.unit(0.015, "m^2")
  30531. },
  30532. "pawsize": {
  30533. name: "Paw Size",
  30534. power: 2,
  30535. type: "area",
  30536. base: math.unit(0.072, "m^2")
  30537. },
  30538. }
  30539. },
  30540. maw: {
  30541. height: math.unit(1.73, "feet"),
  30542. name: "Maw",
  30543. image: {
  30544. source: "./media/characters/remmyzilla/maw.svg"
  30545. }
  30546. },
  30547. },
  30548. [
  30549. {
  30550. name: "Normal",
  30551. height: math.unit(6 + 4 / 12, "feet")
  30552. },
  30553. {
  30554. name: "Minimacro",
  30555. height: math.unit(12 + 8 / 12, "feet")
  30556. },
  30557. {
  30558. name: "Normal",
  30559. height: math.unit(640, "feet"),
  30560. default: true
  30561. },
  30562. {
  30563. name: "Megamacro",
  30564. height: math.unit(6400, "feet")
  30565. },
  30566. {
  30567. name: "Gigamacro",
  30568. height: math.unit(64000, "miles")
  30569. },
  30570. ]
  30571. ))
  30572. characterMakers.push(() => makeCharacter(
  30573. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  30574. {
  30575. front: {
  30576. height: math.unit(2.5, "meters"),
  30577. weight: math.unit(300, "lb"),
  30578. name: "Front",
  30579. image: {
  30580. source: "./media/characters/lawrence/front.svg",
  30581. extra: 357 / 335,
  30582. bottom: 30 / 387
  30583. }
  30584. },
  30585. back: {
  30586. height: math.unit(2.5, "meters"),
  30587. weight: math.unit(300, "lb"),
  30588. name: "Back",
  30589. image: {
  30590. source: "./media/characters/lawrence/back.svg",
  30591. extra: 357 / 338,
  30592. bottom: 16 / 373
  30593. }
  30594. },
  30595. head: {
  30596. height: math.unit(0.9, "meter"),
  30597. name: "Head",
  30598. image: {
  30599. source: "./media/characters/lawrence/head.svg"
  30600. }
  30601. },
  30602. maw: {
  30603. height: math.unit(0.7, "meter"),
  30604. name: "Maw",
  30605. image: {
  30606. source: "./media/characters/lawrence/maw.svg"
  30607. }
  30608. },
  30609. footBottom: {
  30610. height: math.unit(0.5, "meter"),
  30611. name: "Foot (Bottom)",
  30612. image: {
  30613. source: "./media/characters/lawrence/foot-bottom.svg"
  30614. }
  30615. },
  30616. footTop: {
  30617. height: math.unit(0.5, "meter"),
  30618. name: "Foot (Top)",
  30619. image: {
  30620. source: "./media/characters/lawrence/foot-top.svg"
  30621. }
  30622. },
  30623. },
  30624. [
  30625. {
  30626. name: "Normal",
  30627. height: math.unit(2.5, "meters"),
  30628. default: true
  30629. },
  30630. {
  30631. name: "Macro",
  30632. height: math.unit(95, "meters")
  30633. },
  30634. {
  30635. name: "Megamacro",
  30636. height: math.unit(150, "km")
  30637. },
  30638. ]
  30639. ))
  30640. characterMakers.push(() => makeCharacter(
  30641. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  30642. {
  30643. front: {
  30644. height: math.unit(4.2, "meters"),
  30645. name: "Front",
  30646. image: {
  30647. source: "./media/characters/sydney/front.svg",
  30648. extra: 1323 / 1277,
  30649. bottom: 111 / 1434
  30650. }
  30651. },
  30652. },
  30653. [
  30654. {
  30655. name: "Normal",
  30656. height: math.unit(4.2, "meters"),
  30657. default: true
  30658. },
  30659. ]
  30660. ))
  30661. characterMakers.push(() => makeCharacter(
  30662. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  30663. {
  30664. back: {
  30665. height: math.unit(201, "feet"),
  30666. name: "Back",
  30667. image: {
  30668. source: "./media/characters/jessica/back.svg",
  30669. extra: 273 / 259,
  30670. bottom: 7 / 280
  30671. }
  30672. },
  30673. },
  30674. [
  30675. {
  30676. name: "Normal",
  30677. height: math.unit(201, "feet"),
  30678. default: true
  30679. },
  30680. {
  30681. name: "Megamacro",
  30682. height: math.unit(8, "miles")
  30683. },
  30684. ]
  30685. ))
  30686. characterMakers.push(() => makeCharacter(
  30687. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  30688. {
  30689. side: {
  30690. height: math.unit(5.6, "m"),
  30691. weight: math.unit(8000, "kg"),
  30692. name: "Side",
  30693. image: {
  30694. source: "./media/characters/victoria/side.svg",
  30695. extra: 1542/1229,
  30696. bottom: 124/1666
  30697. }
  30698. },
  30699. maw: {
  30700. height: math.unit(7.14, "feet"),
  30701. name: "Maw",
  30702. image: {
  30703. source: "./media/characters/victoria/maw.svg"
  30704. }
  30705. },
  30706. },
  30707. [
  30708. {
  30709. name: "Normal",
  30710. height: math.unit(5.6, "m"),
  30711. default: true
  30712. },
  30713. ]
  30714. ))
  30715. characterMakers.push(() => makeCharacter(
  30716. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  30717. {
  30718. front: {
  30719. height: math.unit(5 + 6 / 12, "feet"),
  30720. name: "Front",
  30721. image: {
  30722. source: "./media/characters/cat/front.svg",
  30723. extra: 1449/1295,
  30724. bottom: 34/1483
  30725. },
  30726. form: "cat",
  30727. default: true
  30728. },
  30729. back: {
  30730. height: math.unit(5 + 6 / 12, "feet"),
  30731. name: "Back",
  30732. image: {
  30733. source: "./media/characters/cat/back.svg",
  30734. extra: 1466/1301,
  30735. bottom: 19/1485
  30736. },
  30737. form: "cat"
  30738. },
  30739. taur: {
  30740. height: math.unit(7, "feet"),
  30741. name: "Taur",
  30742. image: {
  30743. source: "./media/characters/cat/taur.svg",
  30744. extra: 1389/1233,
  30745. bottom: 83/1472
  30746. },
  30747. form: "taur",
  30748. default: true
  30749. },
  30750. lucarioFront: {
  30751. height: math.unit(4, "feet"),
  30752. name: "Lucario (Front)",
  30753. image: {
  30754. source: "./media/characters/cat/lucario-front.svg",
  30755. extra: 1149/1019,
  30756. bottom: 84/1233
  30757. },
  30758. form: "lucario",
  30759. default: true
  30760. },
  30761. lucarioBack: {
  30762. height: math.unit(4, "feet"),
  30763. name: "Lucario (Back)",
  30764. image: {
  30765. source: "./media/characters/cat/lucario-back.svg",
  30766. extra: 1190/1059,
  30767. bottom: 33/1223
  30768. },
  30769. form: "lucario"
  30770. },
  30771. megaLucario: {
  30772. height: math.unit(4, "feet"),
  30773. name: "Mega Lucario",
  30774. image: {
  30775. source: "./media/characters/cat/mega-lucario.svg",
  30776. extra: 1515 / 1319,
  30777. bottom: 63 / 1578
  30778. },
  30779. form: "lucario"
  30780. },
  30781. nickit: {
  30782. height: math.unit(2, "feet"),
  30783. name: "Nickit",
  30784. image: {
  30785. source: "./media/characters/cat/nickit.svg",
  30786. extra: 1980 / 1585,
  30787. bottom: 102 / 2082
  30788. },
  30789. form: "nickit",
  30790. default: true
  30791. },
  30792. lopunnyFront: {
  30793. height: math.unit(5, "feet"),
  30794. name: "Lopunny (Front)",
  30795. image: {
  30796. source: "./media/characters/cat/lopunny-front.svg",
  30797. extra: 1782 / 1469,
  30798. bottom: 38 / 1820
  30799. },
  30800. form: "lopunny",
  30801. default: true
  30802. },
  30803. lopunnyBack: {
  30804. height: math.unit(5, "feet"),
  30805. name: "Lopunny (Back)",
  30806. image: {
  30807. source: "./media/characters/cat/lopunny-back.svg",
  30808. extra: 1660 / 1490,
  30809. bottom: 25 / 1685
  30810. },
  30811. form: "lopunny"
  30812. },
  30813. },
  30814. [
  30815. {
  30816. name: "Really small",
  30817. height: math.unit(1, "nm")
  30818. },
  30819. {
  30820. name: "Micro",
  30821. height: math.unit(5, "inches")
  30822. },
  30823. {
  30824. name: "Normal",
  30825. height: math.unit(5 + 6 / 12, "feet"),
  30826. default: true
  30827. },
  30828. {
  30829. name: "Macro",
  30830. height: math.unit(50, "feet")
  30831. },
  30832. {
  30833. name: "Macro+",
  30834. height: math.unit(150, "feet")
  30835. },
  30836. {
  30837. name: "Megamacro",
  30838. height: math.unit(100, "miles")
  30839. },
  30840. ]
  30841. ))
  30842. characterMakers.push(() => makeCharacter(
  30843. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  30844. {
  30845. front: {
  30846. height: math.unit(63.4, "meters"),
  30847. weight: math.unit(3.28349e+6, "kilograms"),
  30848. name: "Front",
  30849. image: {
  30850. source: "./media/characters/kirina-violet/front.svg",
  30851. extra: 2812 / 2725,
  30852. bottom: 0 / 2812
  30853. }
  30854. },
  30855. back: {
  30856. height: math.unit(63.4, "meters"),
  30857. weight: math.unit(3.28349e+6, "kilograms"),
  30858. name: "Back",
  30859. image: {
  30860. source: "./media/characters/kirina-violet/back.svg",
  30861. extra: 2812 / 2725,
  30862. bottom: 0 / 2812
  30863. }
  30864. },
  30865. mouth: {
  30866. height: math.unit(4.35, "meters"),
  30867. name: "Mouth",
  30868. image: {
  30869. source: "./media/characters/kirina-violet/mouth.svg"
  30870. }
  30871. },
  30872. paw: {
  30873. height: math.unit(5.6, "meters"),
  30874. name: "Paw",
  30875. image: {
  30876. source: "./media/characters/kirina-violet/paw.svg"
  30877. }
  30878. },
  30879. tail: {
  30880. height: math.unit(18, "meters"),
  30881. name: "Tail",
  30882. image: {
  30883. source: "./media/characters/kirina-violet/tail.svg"
  30884. }
  30885. },
  30886. },
  30887. [
  30888. {
  30889. name: "Macro",
  30890. height: math.unit(63.4, "meters"),
  30891. default: true
  30892. },
  30893. ]
  30894. ))
  30895. characterMakers.push(() => makeCharacter(
  30896. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  30897. {
  30898. front: {
  30899. height: math.unit(75, "feet"),
  30900. name: "Front",
  30901. image: {
  30902. source: "./media/characters/cat-gigachu/front.svg",
  30903. extra: 1239/1027,
  30904. bottom: 32/1271
  30905. }
  30906. },
  30907. back: {
  30908. height: math.unit(75, "feet"),
  30909. name: "Back",
  30910. image: {
  30911. source: "./media/characters/cat-gigachu/back.svg",
  30912. extra: 1229/1030,
  30913. bottom: 9/1238
  30914. }
  30915. },
  30916. },
  30917. [
  30918. {
  30919. name: "Dynamax",
  30920. height: math.unit(75, "feet"),
  30921. default: true
  30922. },
  30923. ]
  30924. ))
  30925. characterMakers.push(() => makeCharacter(
  30926. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  30927. {
  30928. front: {
  30929. height: math.unit(6, "feet"),
  30930. weight: math.unit(150, "lb"),
  30931. name: "Front",
  30932. image: {
  30933. source: "./media/characters/sfaiyan/front.svg",
  30934. extra: 999 / 978,
  30935. bottom: 5 / 1004
  30936. }
  30937. },
  30938. },
  30939. [
  30940. {
  30941. name: "Normal",
  30942. height: math.unit(1.82, "meters")
  30943. },
  30944. {
  30945. name: "Giant",
  30946. height: math.unit(2.27, "km"),
  30947. default: true
  30948. },
  30949. ]
  30950. ))
  30951. characterMakers.push(() => makeCharacter(
  30952. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  30953. {
  30954. front: {
  30955. height: math.unit(179, "cm"),
  30956. weight: math.unit(100, "kg"),
  30957. name: "Front",
  30958. image: {
  30959. source: "./media/characters/raunehkeli/front.svg",
  30960. extra: 1934 / 1926,
  30961. bottom: 0 / 1934
  30962. }
  30963. },
  30964. },
  30965. [
  30966. {
  30967. name: "Normal",
  30968. height: math.unit(179, "cm")
  30969. },
  30970. {
  30971. name: "Maximum",
  30972. height: math.unit(575, "meters"),
  30973. default: true
  30974. },
  30975. ]
  30976. ))
  30977. characterMakers.push(() => makeCharacter(
  30978. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  30979. {
  30980. front: {
  30981. height: math.unit(6, "feet"),
  30982. weight: math.unit(150, "lb"),
  30983. name: "Front",
  30984. image: {
  30985. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  30986. extra: 2625 / 2518,
  30987. bottom: 60 / 2685
  30988. }
  30989. },
  30990. },
  30991. [
  30992. {
  30993. name: "Normal",
  30994. height: math.unit(6 + 2 / 12, "feet")
  30995. },
  30996. {
  30997. name: "Macro",
  30998. height: math.unit(1180, "feet"),
  30999. default: true
  31000. },
  31001. ]
  31002. ))
  31003. characterMakers.push(() => makeCharacter(
  31004. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  31005. {
  31006. front: {
  31007. height: math.unit(5 + 6 / 12, "feet"),
  31008. weight: math.unit(108, "lb"),
  31009. name: "Front",
  31010. image: {
  31011. source: "./media/characters/lilith-zott/front.svg",
  31012. extra: 2510 / 2238,
  31013. bottom: 100 / 2610
  31014. }
  31015. },
  31016. frontDressed: {
  31017. height: math.unit(5 + 6 / 12, "feet"),
  31018. weight: math.unit(108, "lb"),
  31019. name: "Front (Dressed)",
  31020. image: {
  31021. source: "./media/characters/lilith-zott/front-dressed.svg",
  31022. extra: 2510 / 2238,
  31023. bottom: 100 / 2610
  31024. }
  31025. },
  31026. },
  31027. [
  31028. {
  31029. name: "Normal",
  31030. height: math.unit(5 + 6 / 12, "feet")
  31031. },
  31032. {
  31033. name: "Macro",
  31034. height: math.unit(1030, "feet"),
  31035. default: true
  31036. },
  31037. ]
  31038. ))
  31039. characterMakers.push(() => makeCharacter(
  31040. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  31041. {
  31042. front: {
  31043. height: math.unit(6, "feet"),
  31044. weight: math.unit(150, "lb"),
  31045. name: "Front",
  31046. image: {
  31047. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  31048. extra: 2567 / 2435,
  31049. bottom: 39 / 2606
  31050. }
  31051. },
  31052. frontSuper: {
  31053. height: math.unit(6, "feet"),
  31054. name: "Front (Super)",
  31055. image: {
  31056. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  31057. extra: 2567 / 2435,
  31058. bottom: 39 / 2606
  31059. }
  31060. },
  31061. },
  31062. [
  31063. {
  31064. name: "Normal",
  31065. height: math.unit(5 + 10 / 12, "feet")
  31066. },
  31067. {
  31068. name: "Macro",
  31069. height: math.unit(1100, "feet"),
  31070. default: true
  31071. },
  31072. ]
  31073. ))
  31074. characterMakers.push(() => makeCharacter(
  31075. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  31076. {
  31077. front: {
  31078. height: math.unit(100, "miles"),
  31079. name: "Front",
  31080. image: {
  31081. source: "./media/characters/sona/front.svg",
  31082. extra: 2433 / 2201,
  31083. bottom: 53 / 2486
  31084. }
  31085. },
  31086. foot: {
  31087. height: math.unit(16.1, "miles"),
  31088. name: "Foot",
  31089. image: {
  31090. source: "./media/characters/sona/foot.svg"
  31091. }
  31092. },
  31093. },
  31094. [
  31095. {
  31096. name: "Macro",
  31097. height: math.unit(100, "miles"),
  31098. default: true
  31099. },
  31100. ]
  31101. ))
  31102. characterMakers.push(() => makeCharacter(
  31103. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  31104. {
  31105. front: {
  31106. height: math.unit(6, "feet"),
  31107. weight: math.unit(150, "lb"),
  31108. name: "Front",
  31109. image: {
  31110. source: "./media/characters/bailey/front.svg",
  31111. extra: 1778 / 1724,
  31112. bottom: 30 / 1808
  31113. }
  31114. },
  31115. },
  31116. [
  31117. {
  31118. name: "Micro",
  31119. height: math.unit(4, "inches")
  31120. },
  31121. {
  31122. name: "Normal",
  31123. height: math.unit(5 + 5 / 12, "feet"),
  31124. default: true
  31125. },
  31126. {
  31127. name: "Macro",
  31128. height: math.unit(250, "feet")
  31129. },
  31130. {
  31131. name: "Megamacro",
  31132. height: math.unit(100, "miles")
  31133. },
  31134. ]
  31135. ))
  31136. characterMakers.push(() => makeCharacter(
  31137. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  31138. {
  31139. front: {
  31140. height: math.unit(5 + 2 / 12, "feet"),
  31141. weight: math.unit(120, "lb"),
  31142. name: "Front",
  31143. image: {
  31144. source: "./media/characters/snaps/front.svg",
  31145. extra: 2370 / 2177,
  31146. bottom: 48 / 2418
  31147. }
  31148. },
  31149. back: {
  31150. height: math.unit(5 + 2 / 12, "feet"),
  31151. weight: math.unit(120, "lb"),
  31152. name: "Back",
  31153. image: {
  31154. source: "./media/characters/snaps/back.svg",
  31155. extra: 2408 / 2258,
  31156. bottom: 15 / 2423
  31157. }
  31158. },
  31159. },
  31160. [
  31161. {
  31162. name: "Micro",
  31163. height: math.unit(9, "inches")
  31164. },
  31165. {
  31166. name: "Normal",
  31167. height: math.unit(5 + 2 / 12, "feet"),
  31168. default: true
  31169. },
  31170. {
  31171. name: "Mini Macro",
  31172. height: math.unit(10, "feet")
  31173. },
  31174. ]
  31175. ))
  31176. characterMakers.push(() => makeCharacter(
  31177. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  31178. {
  31179. front: {
  31180. height: math.unit(1.8, "meters"),
  31181. weight: math.unit(85, "kg"),
  31182. name: "Front",
  31183. image: {
  31184. source: "./media/characters/azteck/front.svg",
  31185. extra: 2815 / 2625,
  31186. bottom: 89 / 2904
  31187. }
  31188. },
  31189. back: {
  31190. height: math.unit(1.8, "meters"),
  31191. weight: math.unit(85, "kg"),
  31192. name: "Back",
  31193. image: {
  31194. source: "./media/characters/azteck/back.svg",
  31195. extra: 2856 / 2648,
  31196. bottom: 85 / 2941
  31197. }
  31198. },
  31199. frontDressed: {
  31200. height: math.unit(1.8, "meters"),
  31201. weight: math.unit(85, "kg"),
  31202. name: "Front (Dressed)",
  31203. image: {
  31204. source: "./media/characters/azteck/front-dressed.svg",
  31205. extra: 2147 / 2003,
  31206. bottom: 68 / 2215
  31207. }
  31208. },
  31209. head: {
  31210. height: math.unit(0.47, "meters"),
  31211. weight: math.unit(85, "kg"),
  31212. name: "Head",
  31213. image: {
  31214. source: "./media/characters/azteck/head.svg"
  31215. }
  31216. },
  31217. },
  31218. [
  31219. {
  31220. name: "Bite sized",
  31221. height: math.unit(16, "cm")
  31222. },
  31223. {
  31224. name: "Normal",
  31225. height: math.unit(1.8, "meters"),
  31226. default: true
  31227. },
  31228. ]
  31229. ))
  31230. characterMakers.push(() => makeCharacter(
  31231. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  31232. {
  31233. front: {
  31234. height: math.unit(6, "feet"),
  31235. weight: math.unit(150, "lb"),
  31236. name: "Front",
  31237. image: {
  31238. source: "./media/characters/pidge/front.svg",
  31239. extra: 1936/1820,
  31240. bottom: 0/1936
  31241. }
  31242. },
  31243. back: {
  31244. height: math.unit(6, "feet"),
  31245. weight: math.unit(150, "lb"),
  31246. name: "Back",
  31247. image: {
  31248. source: "./media/characters/pidge/back.svg",
  31249. extra: 1938/1843,
  31250. bottom: 0/1938
  31251. }
  31252. },
  31253. casual: {
  31254. height: math.unit(6, "feet"),
  31255. weight: math.unit(150, "lb"),
  31256. name: "Casual",
  31257. image: {
  31258. source: "./media/characters/pidge/casual.svg",
  31259. extra: 1936/1820,
  31260. bottom: 0/1936
  31261. }
  31262. },
  31263. tech: {
  31264. height: math.unit(6, "feet"),
  31265. weight: math.unit(150, "lb"),
  31266. name: "Tech",
  31267. image: {
  31268. source: "./media/characters/pidge/tech.svg",
  31269. extra: 1802/1682,
  31270. bottom: 0/1802
  31271. }
  31272. },
  31273. head: {
  31274. height: math.unit(1.61, "feet"),
  31275. name: "Head",
  31276. image: {
  31277. source: "./media/characters/pidge/head.svg"
  31278. }
  31279. },
  31280. collar: {
  31281. height: math.unit(0.82, "feet"),
  31282. name: "Collar",
  31283. image: {
  31284. source: "./media/characters/pidge/collar.svg"
  31285. }
  31286. },
  31287. },
  31288. [
  31289. {
  31290. name: "Macro",
  31291. height: math.unit(2, "mile"),
  31292. default: true
  31293. },
  31294. {
  31295. name: "PUPPY",
  31296. height: math.unit(20, "miles")
  31297. },
  31298. ]
  31299. ))
  31300. characterMakers.push(() => makeCharacter(
  31301. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  31302. {
  31303. front: {
  31304. height: math.unit(6, "feet"),
  31305. weight: math.unit(150, "lb"),
  31306. name: "Front",
  31307. image: {
  31308. source: "./media/characters/en/front.svg",
  31309. extra: 1697 / 1563,
  31310. bottom: 103 / 1800
  31311. }
  31312. },
  31313. back: {
  31314. height: math.unit(6, "feet"),
  31315. weight: math.unit(150, "lb"),
  31316. name: "Back",
  31317. image: {
  31318. source: "./media/characters/en/back.svg",
  31319. extra: 1700 / 1570,
  31320. bottom: 51 / 1751
  31321. }
  31322. },
  31323. frontDressed: {
  31324. height: math.unit(6, "feet"),
  31325. weight: math.unit(150, "lb"),
  31326. name: "Front (Dressed)",
  31327. image: {
  31328. source: "./media/characters/en/front-dressed.svg",
  31329. extra: 1697 / 1563,
  31330. bottom: 103 / 1800
  31331. }
  31332. },
  31333. backDressed: {
  31334. height: math.unit(6, "feet"),
  31335. weight: math.unit(150, "lb"),
  31336. name: "Back (Dressed)",
  31337. image: {
  31338. source: "./media/characters/en/back-dressed.svg",
  31339. extra: 1700 / 1570,
  31340. bottom: 51 / 1751
  31341. }
  31342. },
  31343. },
  31344. [
  31345. {
  31346. name: "Macro",
  31347. height: math.unit(210, "feet"),
  31348. default: true
  31349. },
  31350. ]
  31351. ))
  31352. characterMakers.push(() => makeCharacter(
  31353. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  31354. {
  31355. front: {
  31356. height: math.unit(6, "feet"),
  31357. weight: math.unit(150, "lb"),
  31358. name: "Front",
  31359. image: {
  31360. source: "./media/characters/haze-orris/front.svg",
  31361. extra: 3975 / 3525,
  31362. bottom: 137 / 4112
  31363. }
  31364. },
  31365. },
  31366. [
  31367. {
  31368. name: "Micro",
  31369. height: math.unit(150, "mm"),
  31370. default: true
  31371. },
  31372. ]
  31373. ))
  31374. characterMakers.push(() => makeCharacter(
  31375. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  31376. {
  31377. front: {
  31378. height: math.unit(6, "feet"),
  31379. weight: math.unit(150, "lb"),
  31380. name: "Front",
  31381. image: {
  31382. source: "./media/characters/casselene-yaro/front.svg",
  31383. extra: 4721 / 4541,
  31384. bottom: 82 / 4803
  31385. }
  31386. },
  31387. back: {
  31388. height: math.unit(6, "feet"),
  31389. weight: math.unit(150, "lb"),
  31390. name: "Back",
  31391. image: {
  31392. source: "./media/characters/casselene-yaro/back.svg",
  31393. extra: 4569 / 4377,
  31394. bottom: 69 / 4638
  31395. }
  31396. },
  31397. dressed: {
  31398. height: math.unit(6, "feet"),
  31399. weight: math.unit(150, "lb"),
  31400. name: "Dressed",
  31401. image: {
  31402. source: "./media/characters/casselene-yaro/dressed.svg",
  31403. extra: 4721 / 4541,
  31404. bottom: 82 / 4803
  31405. }
  31406. },
  31407. maw: {
  31408. height: math.unit(1, "feet"),
  31409. name: "Maw",
  31410. image: {
  31411. source: "./media/characters/casselene-yaro/maw.svg"
  31412. }
  31413. },
  31414. },
  31415. [
  31416. {
  31417. name: "Macro",
  31418. height: math.unit(190, "feet"),
  31419. default: true
  31420. },
  31421. ]
  31422. ))
  31423. characterMakers.push(() => makeCharacter(
  31424. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  31425. {
  31426. front: {
  31427. height: math.unit(10, "feet"),
  31428. weight: math.unit(15015, "lb"),
  31429. name: "Front",
  31430. image: {
  31431. source: "./media/characters/platine/front.svg",
  31432. extra: 1741/1650,
  31433. bottom: 84/1825
  31434. }
  31435. },
  31436. side: {
  31437. height: math.unit(10, "feet"),
  31438. weight: math.unit(15015, "lb"),
  31439. name: "Side",
  31440. image: {
  31441. source: "./media/characters/platine/side.svg",
  31442. extra: 1790/1705,
  31443. bottom: 29/1819
  31444. }
  31445. },
  31446. },
  31447. [
  31448. {
  31449. name: "Normal",
  31450. height: math.unit(10, "feet"),
  31451. default: true
  31452. },
  31453. {
  31454. name: "Macro",
  31455. height: math.unit(100, "feet")
  31456. },
  31457. {
  31458. name: "Megamacro",
  31459. height: math.unit(1000, "feet")
  31460. },
  31461. ]
  31462. ))
  31463. characterMakers.push(() => makeCharacter(
  31464. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  31465. {
  31466. front: {
  31467. height: math.unit(15 + 5 / 12, "feet"),
  31468. weight: math.unit(4600, "lb"),
  31469. name: "Front",
  31470. image: {
  31471. source: "./media/characters/neapolitan-ananassa/front.svg",
  31472. extra: 2903 / 2736,
  31473. bottom: 0 / 2903
  31474. }
  31475. },
  31476. side: {
  31477. height: math.unit(15 + 5 / 12, "feet"),
  31478. weight: math.unit(4600, "lb"),
  31479. name: "Side",
  31480. image: {
  31481. source: "./media/characters/neapolitan-ananassa/side.svg",
  31482. extra: 2925 / 2719,
  31483. bottom: 0 / 2925
  31484. }
  31485. },
  31486. back: {
  31487. height: math.unit(15 + 5 / 12, "feet"),
  31488. weight: math.unit(4600, "lb"),
  31489. name: "Back",
  31490. image: {
  31491. source: "./media/characters/neapolitan-ananassa/back.svg",
  31492. extra: 2903 / 2736,
  31493. bottom: 0 / 2903
  31494. }
  31495. },
  31496. },
  31497. [
  31498. {
  31499. name: "Normal",
  31500. height: math.unit(15 + 5 / 12, "feet"),
  31501. default: true
  31502. },
  31503. {
  31504. name: "Post-Millenium",
  31505. height: math.unit(35 + 5 / 12, "feet")
  31506. },
  31507. {
  31508. name: "Post-Era",
  31509. height: math.unit(450 + 5 / 12, "feet")
  31510. },
  31511. ]
  31512. ))
  31513. characterMakers.push(() => makeCharacter(
  31514. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  31515. {
  31516. front: {
  31517. height: math.unit(300, "meters"),
  31518. weight: math.unit(125000, "tonnes"),
  31519. name: "Front",
  31520. image: {
  31521. source: "./media/characters/pazuzu/front.svg",
  31522. extra: 877 / 794,
  31523. bottom: 47 / 924
  31524. }
  31525. },
  31526. },
  31527. [
  31528. {
  31529. name: "Macro",
  31530. height: math.unit(300, "meters"),
  31531. default: true
  31532. },
  31533. ]
  31534. ))
  31535. characterMakers.push(() => makeCharacter(
  31536. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  31537. {
  31538. side: {
  31539. height: math.unit(10 + 7 / 12, "feet"),
  31540. weight: math.unit(2.5, "tons"),
  31541. name: "Side",
  31542. image: {
  31543. source: "./media/characters/aasha/side.svg",
  31544. extra: 1345 / 1245,
  31545. bottom: 111 / 1456
  31546. }
  31547. },
  31548. back: {
  31549. height: math.unit(10 + 7 / 12, "feet"),
  31550. weight: math.unit(2.5, "tons"),
  31551. name: "Back",
  31552. image: {
  31553. source: "./media/characters/aasha/back.svg",
  31554. extra: 1133 / 1057,
  31555. bottom: 257 / 1390
  31556. }
  31557. },
  31558. },
  31559. [
  31560. {
  31561. name: "Normal",
  31562. height: math.unit(10 + 7 / 12, "feet"),
  31563. default: true
  31564. },
  31565. ]
  31566. ))
  31567. characterMakers.push(() => makeCharacter(
  31568. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  31569. {
  31570. front: {
  31571. height: math.unit(6 + 3 / 12, "feet"),
  31572. name: "Front",
  31573. image: {
  31574. source: "./media/characters/nevan/front.svg",
  31575. extra: 704 / 704,
  31576. bottom: 28 / 732
  31577. }
  31578. },
  31579. back: {
  31580. height: math.unit(6 + 3 / 12, "feet"),
  31581. name: "Back",
  31582. image: {
  31583. source: "./media/characters/nevan/back.svg",
  31584. extra: 714 / 714,
  31585. bottom: 21 / 735
  31586. }
  31587. },
  31588. frontFlaccid: {
  31589. height: math.unit(6 + 3 / 12, "feet"),
  31590. name: "Front (Flaccid)",
  31591. image: {
  31592. source: "./media/characters/nevan/front-flaccid.svg",
  31593. extra: 704 / 704,
  31594. bottom: 28 / 732
  31595. }
  31596. },
  31597. frontErect: {
  31598. height: math.unit(6 + 3 / 12, "feet"),
  31599. name: "Front (Erect)",
  31600. image: {
  31601. source: "./media/characters/nevan/front-erect.svg",
  31602. extra: 704 / 704,
  31603. bottom: 28 / 732
  31604. }
  31605. },
  31606. backFlaccid: {
  31607. height: math.unit(6 + 3 / 12, "feet"),
  31608. name: "Back (Flaccid)",
  31609. image: {
  31610. source: "./media/characters/nevan/back-flaccid.svg",
  31611. extra: 714 / 714,
  31612. bottom: 21 / 735
  31613. }
  31614. },
  31615. },
  31616. [
  31617. {
  31618. name: "Normal",
  31619. height: math.unit(6 + 3 / 12, "feet"),
  31620. default: true
  31621. },
  31622. ]
  31623. ))
  31624. characterMakers.push(() => makeCharacter(
  31625. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  31626. {
  31627. front: {
  31628. height: math.unit(4, "feet"),
  31629. name: "Front",
  31630. image: {
  31631. source: "./media/characters/arhan/front.svg",
  31632. extra: 3368 / 3133,
  31633. bottom: 0 / 3368
  31634. }
  31635. },
  31636. side: {
  31637. height: math.unit(4, "feet"),
  31638. name: "Side",
  31639. image: {
  31640. source: "./media/characters/arhan/side.svg",
  31641. extra: 3347 / 3105,
  31642. bottom: 0 / 3347
  31643. }
  31644. },
  31645. tongue: {
  31646. height: math.unit(1.42, "feet"),
  31647. name: "Tongue",
  31648. image: {
  31649. source: "./media/characters/arhan/tongue.svg"
  31650. }
  31651. },
  31652. head: {
  31653. height: math.unit(0.85, "feet"),
  31654. name: "Head",
  31655. image: {
  31656. source: "./media/characters/arhan/head.svg"
  31657. }
  31658. },
  31659. },
  31660. [
  31661. {
  31662. name: "Normal",
  31663. height: math.unit(4, "feet"),
  31664. default: true
  31665. },
  31666. ]
  31667. ))
  31668. characterMakers.push(() => makeCharacter(
  31669. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  31670. {
  31671. front: {
  31672. height: math.unit(5 + 7.5 / 12, "feet"),
  31673. weight: math.unit(120, "lb"),
  31674. name: "Front",
  31675. image: {
  31676. source: "./media/characters/digi-duncan/front.svg",
  31677. extra: 330 / 326,
  31678. bottom: 16 / 346
  31679. }
  31680. },
  31681. side: {
  31682. height: math.unit(5 + 7.5 / 12, "feet"),
  31683. weight: math.unit(120, "lb"),
  31684. name: "Side",
  31685. image: {
  31686. source: "./media/characters/digi-duncan/side.svg",
  31687. extra: 341 / 337,
  31688. bottom: 1 / 342
  31689. }
  31690. },
  31691. back: {
  31692. height: math.unit(5 + 7.5 / 12, "feet"),
  31693. weight: math.unit(120, "lb"),
  31694. name: "Back",
  31695. image: {
  31696. source: "./media/characters/digi-duncan/back.svg",
  31697. extra: 330 / 326,
  31698. bottom: 12 / 342
  31699. }
  31700. },
  31701. },
  31702. [
  31703. {
  31704. name: "Speck",
  31705. height: math.unit(0.25, "mm")
  31706. },
  31707. {
  31708. name: "Micro",
  31709. height: math.unit(5, "mm")
  31710. },
  31711. {
  31712. name: "Tiny",
  31713. height: math.unit(0.5, "inches"),
  31714. default: true
  31715. },
  31716. {
  31717. name: "Human",
  31718. height: math.unit(5 + 7.5 / 12, "feet")
  31719. },
  31720. {
  31721. name: "Minigiant",
  31722. height: math.unit(8 + 5.25, "feet")
  31723. },
  31724. {
  31725. name: "Giant",
  31726. height: math.unit(2000, "feet")
  31727. },
  31728. {
  31729. name: "Mega",
  31730. height: math.unit(371.1, "miles")
  31731. },
  31732. ]
  31733. ))
  31734. characterMakers.push(() => makeCharacter(
  31735. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  31736. {
  31737. front: {
  31738. height: math.unit(2, "meters"),
  31739. weight: math.unit(350, "kg"),
  31740. name: "Front",
  31741. image: {
  31742. source: "./media/characters/jagaz-soulbreaker/front.svg",
  31743. extra: 898 / 838,
  31744. bottom: 9 / 907
  31745. }
  31746. },
  31747. },
  31748. [
  31749. {
  31750. name: "Micro",
  31751. height: math.unit(8, "meters")
  31752. },
  31753. {
  31754. name: "Normal",
  31755. height: math.unit(50, "meters"),
  31756. default: true
  31757. },
  31758. {
  31759. name: "Macro",
  31760. height: math.unit(500, "meters")
  31761. },
  31762. ]
  31763. ))
  31764. characterMakers.push(() => makeCharacter(
  31765. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  31766. {
  31767. front: {
  31768. height: math.unit(6 + 6 / 12, "feet"),
  31769. name: "Front",
  31770. image: {
  31771. source: "./media/characters/khardesh/front.svg",
  31772. extra: 1788/1596,
  31773. bottom: 66/1854
  31774. }
  31775. },
  31776. back: {
  31777. height: math.unit(6 + 6 / 12, "feet"),
  31778. name: "Back",
  31779. image: {
  31780. source: "./media/characters/khardesh/back.svg",
  31781. extra: 1781/1584,
  31782. bottom: 68/1849
  31783. }
  31784. },
  31785. },
  31786. [
  31787. {
  31788. name: "Normal",
  31789. height: math.unit(6 + 6 / 12, "feet"),
  31790. default: true
  31791. },
  31792. {
  31793. name: "Normal+",
  31794. height: math.unit(4, "meters")
  31795. },
  31796. {
  31797. name: "Macro",
  31798. height: math.unit(50, "meters")
  31799. },
  31800. {
  31801. name: "Macro+",
  31802. height: math.unit(100, "meters")
  31803. },
  31804. {
  31805. name: "Megamacro",
  31806. height: math.unit(20, "km")
  31807. },
  31808. ]
  31809. ))
  31810. characterMakers.push(() => makeCharacter(
  31811. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  31812. {
  31813. front: {
  31814. height: math.unit(6, "feet"),
  31815. weight: math.unit(150, "lb"),
  31816. name: "Front",
  31817. image: {
  31818. source: "./media/characters/kosho/front.svg",
  31819. extra: 1847 / 1847,
  31820. bottom: 86 / 1933
  31821. }
  31822. },
  31823. },
  31824. [
  31825. {
  31826. name: "Second-stage micro",
  31827. height: math.unit(0.5, "inches")
  31828. },
  31829. {
  31830. name: "First-stage micro",
  31831. height: math.unit(6, "inches")
  31832. },
  31833. {
  31834. name: "Normal",
  31835. height: math.unit(6, "feet"),
  31836. default: true
  31837. },
  31838. {
  31839. name: "First-stage macro",
  31840. height: math.unit(72, "feet")
  31841. },
  31842. {
  31843. name: "Second-stage macro",
  31844. height: math.unit(864, "feet")
  31845. },
  31846. ]
  31847. ))
  31848. characterMakers.push(() => makeCharacter(
  31849. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  31850. {
  31851. normal: {
  31852. height: math.unit(4 + 6 / 12, "feet"),
  31853. name: "Normal",
  31854. image: {
  31855. source: "./media/characters/hydra/normal.svg",
  31856. extra: 2833 / 2634,
  31857. bottom: 68 / 2901
  31858. }
  31859. },
  31860. smol: {
  31861. height: math.unit(0.705, "inches"),
  31862. name: "Smol",
  31863. image: {
  31864. source: "./media/characters/hydra/smol.svg",
  31865. extra: 2715 / 2540,
  31866. bottom: 0 / 2715
  31867. }
  31868. },
  31869. },
  31870. [
  31871. {
  31872. name: "Normal",
  31873. height: math.unit(4 + 6 / 12, "feet"),
  31874. default: true
  31875. }
  31876. ]
  31877. ))
  31878. characterMakers.push(() => makeCharacter(
  31879. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  31880. {
  31881. front: {
  31882. height: math.unit(0.6, "cm"),
  31883. name: "Front",
  31884. image: {
  31885. source: "./media/characters/daz/front.svg",
  31886. extra: 1682 / 1164,
  31887. bottom: 42 / 1724
  31888. }
  31889. },
  31890. },
  31891. [
  31892. {
  31893. name: "Normal",
  31894. height: math.unit(0.6, "cm"),
  31895. default: true
  31896. },
  31897. ]
  31898. ))
  31899. characterMakers.push(() => makeCharacter(
  31900. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  31901. {
  31902. front: {
  31903. height: math.unit(6, "feet"),
  31904. weight: math.unit(235, "lb"),
  31905. name: "Front",
  31906. image: {
  31907. source: "./media/characters/theo-pangolin/front.svg",
  31908. extra: 1996 / 1969,
  31909. bottom: 115 / 2111
  31910. }
  31911. },
  31912. back: {
  31913. height: math.unit(6, "feet"),
  31914. weight: math.unit(235, "lb"),
  31915. name: "Back",
  31916. image: {
  31917. source: "./media/characters/theo-pangolin/back.svg",
  31918. extra: 1979 / 1979,
  31919. bottom: 40 / 2019
  31920. }
  31921. },
  31922. feral: {
  31923. height: math.unit(2, "feet"),
  31924. weight: math.unit(30, "lb"),
  31925. name: "Feral",
  31926. image: {
  31927. source: "./media/characters/theo-pangolin/feral.svg",
  31928. extra: 803 / 791,
  31929. bottom: 181 / 984
  31930. }
  31931. },
  31932. footFive: {
  31933. height: math.unit(1.43, "feet"),
  31934. name: "Foot (Five Toes)",
  31935. image: {
  31936. source: "./media/characters/theo-pangolin/foot-five.svg"
  31937. }
  31938. },
  31939. footFour: {
  31940. height: math.unit(1.43, "feet"),
  31941. name: "Foot (Four Toes)",
  31942. image: {
  31943. source: "./media/characters/theo-pangolin/foot-four.svg"
  31944. }
  31945. },
  31946. handFour: {
  31947. height: math.unit(0.81, "feet"),
  31948. name: "Hand (Four Fingers)",
  31949. image: {
  31950. source: "./media/characters/theo-pangolin/hand-four.svg"
  31951. }
  31952. },
  31953. handThree: {
  31954. height: math.unit(0.81, "feet"),
  31955. name: "Hand (Three Fingers)",
  31956. image: {
  31957. source: "./media/characters/theo-pangolin/hand-three.svg"
  31958. }
  31959. },
  31960. headFront: {
  31961. height: math.unit(1.37, "feet"),
  31962. name: "Head (Front)",
  31963. image: {
  31964. source: "./media/characters/theo-pangolin/head-front.svg"
  31965. }
  31966. },
  31967. headSide: {
  31968. height: math.unit(1.43, "feet"),
  31969. name: "Head (Side)",
  31970. image: {
  31971. source: "./media/characters/theo-pangolin/head-side.svg"
  31972. }
  31973. },
  31974. tongue: {
  31975. height: math.unit(2.29, "feet"),
  31976. name: "Tongue",
  31977. image: {
  31978. source: "./media/characters/theo-pangolin/tongue.svg"
  31979. }
  31980. },
  31981. },
  31982. [
  31983. {
  31984. name: "Normal",
  31985. height: math.unit(6, "feet")
  31986. },
  31987. {
  31988. name: "Macro",
  31989. height: math.unit(400, "feet"),
  31990. default: true
  31991. },
  31992. ]
  31993. ))
  31994. characterMakers.push(() => makeCharacter(
  31995. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  31996. {
  31997. front: {
  31998. height: math.unit(6, "inches"),
  31999. weight: math.unit(0.036, "kg"),
  32000. name: "Front",
  32001. image: {
  32002. source: "./media/characters/renée/front.svg",
  32003. extra: 900 / 886,
  32004. bottom: 8 / 908
  32005. }
  32006. },
  32007. },
  32008. [
  32009. {
  32010. name: "Nano",
  32011. height: math.unit(1, "nm")
  32012. },
  32013. {
  32014. name: "Micro",
  32015. height: math.unit(1, "mm")
  32016. },
  32017. {
  32018. name: "Normal",
  32019. height: math.unit(6, "inches")
  32020. },
  32021. {
  32022. name: "Macro",
  32023. height: math.unit(2000, "feet"),
  32024. default: true
  32025. },
  32026. {
  32027. name: "Megamacro",
  32028. height: math.unit(2, "km")
  32029. },
  32030. {
  32031. name: "Gigamacro",
  32032. height: math.unit(2000, "km")
  32033. },
  32034. {
  32035. name: "Teramacro",
  32036. height: math.unit(250000, "km")
  32037. },
  32038. ]
  32039. ))
  32040. characterMakers.push(() => makeCharacter(
  32041. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  32042. {
  32043. front: {
  32044. height: math.unit(4, "meters"),
  32045. weight: math.unit(150, "kg"),
  32046. name: "Front",
  32047. image: {
  32048. source: "./media/characters/caledvwlch/front.svg",
  32049. extra: 1757/1537,
  32050. bottom: 31/1788
  32051. }
  32052. },
  32053. side: {
  32054. height: math.unit(4, "meters"),
  32055. weight: math.unit(150, "kg"),
  32056. name: "Side",
  32057. image: {
  32058. source: "./media/characters/caledvwlch/side.svg",
  32059. extra: 1605 / 1536,
  32060. bottom: 31 / 1636
  32061. }
  32062. },
  32063. back: {
  32064. height: math.unit(4, "meters"),
  32065. weight: math.unit(150, "kg"),
  32066. name: "Back",
  32067. image: {
  32068. source: "./media/characters/caledvwlch/back.svg",
  32069. extra: 1635 / 1565,
  32070. bottom: 27 / 1662
  32071. }
  32072. },
  32073. },
  32074. [
  32075. {
  32076. name: "\"Incognito\"",
  32077. height: math.unit(4, "meters")
  32078. },
  32079. {
  32080. name: "Small rampage",
  32081. height: math.unit(600, "meters")
  32082. },
  32083. {
  32084. name: "Mega",
  32085. height: math.unit(30, "km")
  32086. },
  32087. {
  32088. name: "Home-size",
  32089. height: math.unit(50, "km"),
  32090. default: true
  32091. },
  32092. {
  32093. name: "Giga",
  32094. height: math.unit(300, "km")
  32095. },
  32096. {
  32097. name: "Lounging",
  32098. height: math.unit(11000, "km")
  32099. },
  32100. {
  32101. name: "Planet snacking",
  32102. height: math.unit(2000000, "km")
  32103. },
  32104. ]
  32105. ))
  32106. characterMakers.push(() => makeCharacter(
  32107. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  32108. {
  32109. front: {
  32110. height: math.unit(6, "feet"),
  32111. weight: math.unit(215, "lb"),
  32112. name: "Front",
  32113. image: {
  32114. source: "./media/characters/sapphire-svell/front.svg",
  32115. extra: 495 / 455,
  32116. bottom: 20 / 515
  32117. }
  32118. },
  32119. back: {
  32120. height: math.unit(6, "feet"),
  32121. weight: math.unit(216, "lb"),
  32122. name: "Back",
  32123. image: {
  32124. source: "./media/characters/sapphire-svell/back.svg",
  32125. extra: 497 / 477,
  32126. bottom: 7 / 504
  32127. }
  32128. },
  32129. maw: {
  32130. height: math.unit(1.57, "feet"),
  32131. name: "Maw",
  32132. image: {
  32133. source: "./media/characters/sapphire-svell/maw.svg"
  32134. }
  32135. },
  32136. foot: {
  32137. height: math.unit(1.07, "feet"),
  32138. name: "Foot",
  32139. image: {
  32140. source: "./media/characters/sapphire-svell/foot.svg"
  32141. }
  32142. },
  32143. toering: {
  32144. height: math.unit(1.7, "inch"),
  32145. name: "Toering",
  32146. image: {
  32147. source: "./media/characters/sapphire-svell/toering.svg"
  32148. }
  32149. },
  32150. },
  32151. [
  32152. {
  32153. name: "Normal",
  32154. height: math.unit(300, "feet"),
  32155. default: true
  32156. },
  32157. {
  32158. name: "Augmented",
  32159. height: math.unit(1250, "feet")
  32160. },
  32161. {
  32162. name: "Unleashed",
  32163. height: math.unit(3000, "feet")
  32164. },
  32165. ]
  32166. ))
  32167. characterMakers.push(() => makeCharacter(
  32168. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  32169. {
  32170. side: {
  32171. height: math.unit(2 + 3 / 12, "feet"),
  32172. weight: math.unit(110, "lb"),
  32173. name: "Side",
  32174. image: {
  32175. source: "./media/characters/glitch-flux/side.svg",
  32176. extra: 997 / 805,
  32177. bottom: 20 / 1017
  32178. }
  32179. },
  32180. },
  32181. [
  32182. {
  32183. name: "Normal",
  32184. height: math.unit(2 + 3 / 12, "feet"),
  32185. default: true
  32186. },
  32187. ]
  32188. ))
  32189. characterMakers.push(() => makeCharacter(
  32190. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  32191. {
  32192. front: {
  32193. height: math.unit(4, "meters"),
  32194. name: "Front",
  32195. image: {
  32196. source: "./media/characters/mid/front.svg",
  32197. extra: 507 / 476,
  32198. bottom: 17 / 524
  32199. }
  32200. },
  32201. back: {
  32202. height: math.unit(4, "meters"),
  32203. name: "Back",
  32204. image: {
  32205. source: "./media/characters/mid/back.svg",
  32206. extra: 519 / 487,
  32207. bottom: 7 / 526
  32208. }
  32209. },
  32210. stuck: {
  32211. height: math.unit(2.2, "meters"),
  32212. name: "Stuck",
  32213. image: {
  32214. source: "./media/characters/mid/stuck.svg",
  32215. extra: 1951 / 1869,
  32216. bottom: 88 / 2039
  32217. }
  32218. }
  32219. },
  32220. [
  32221. {
  32222. name: "Normal",
  32223. height: math.unit(4, "meters"),
  32224. default: true
  32225. },
  32226. {
  32227. name: "Big",
  32228. height: math.unit(10, "meters")
  32229. },
  32230. {
  32231. name: "Macro",
  32232. height: math.unit(800, "meters")
  32233. },
  32234. {
  32235. name: "Megamacro",
  32236. height: math.unit(100, "km")
  32237. },
  32238. {
  32239. name: "Overgrown",
  32240. height: math.unit(1, "parsec")
  32241. },
  32242. ]
  32243. ))
  32244. characterMakers.push(() => makeCharacter(
  32245. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  32246. {
  32247. front: {
  32248. height: math.unit(2.5, "meters"),
  32249. weight: math.unit(225, "kg"),
  32250. name: "Front",
  32251. image: {
  32252. source: "./media/characters/iris/front.svg",
  32253. extra: 3348 / 3251,
  32254. bottom: 205 / 3553
  32255. }
  32256. },
  32257. maw: {
  32258. height: math.unit(0.56, "meter"),
  32259. name: "Maw",
  32260. image: {
  32261. source: "./media/characters/iris/maw.svg"
  32262. }
  32263. },
  32264. },
  32265. [
  32266. {
  32267. name: "Mewter cat",
  32268. height: math.unit(1.2, "meters")
  32269. },
  32270. {
  32271. name: "Normal",
  32272. height: math.unit(2.5, "meters"),
  32273. default: true
  32274. },
  32275. {
  32276. name: "Minimacro",
  32277. height: math.unit(18, "feet")
  32278. },
  32279. {
  32280. name: "Macro",
  32281. height: math.unit(140, "feet")
  32282. },
  32283. {
  32284. name: "Macro+",
  32285. height: math.unit(180, "meters")
  32286. },
  32287. {
  32288. name: "Megamacro",
  32289. height: math.unit(2746, "meters")
  32290. },
  32291. ]
  32292. ))
  32293. characterMakers.push(() => makeCharacter(
  32294. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  32295. {
  32296. front: {
  32297. height: math.unit(6, "feet"),
  32298. weight: math.unit(135, "lb"),
  32299. name: "Front",
  32300. image: {
  32301. source: "./media/characters/axel/front.svg",
  32302. extra: 908 / 908,
  32303. bottom: 58 / 966
  32304. }
  32305. },
  32306. side: {
  32307. height: math.unit(6, "feet"),
  32308. weight: math.unit(135, "lb"),
  32309. name: "Side",
  32310. image: {
  32311. source: "./media/characters/axel/side.svg",
  32312. extra: 958 / 958,
  32313. bottom: 11 / 969
  32314. }
  32315. },
  32316. back: {
  32317. height: math.unit(6, "feet"),
  32318. weight: math.unit(135, "lb"),
  32319. name: "Back",
  32320. image: {
  32321. source: "./media/characters/axel/back.svg",
  32322. extra: 887 / 887,
  32323. bottom: 34 / 921
  32324. }
  32325. },
  32326. head: {
  32327. height: math.unit(1.07, "feet"),
  32328. name: "Head",
  32329. image: {
  32330. source: "./media/characters/axel/head.svg"
  32331. }
  32332. },
  32333. beak: {
  32334. height: math.unit(1.4, "feet"),
  32335. name: "Beak",
  32336. image: {
  32337. source: "./media/characters/axel/beak.svg"
  32338. }
  32339. },
  32340. beakSide: {
  32341. height: math.unit(1.4, "feet"),
  32342. name: "Beak Side",
  32343. image: {
  32344. source: "./media/characters/axel/beak-side.svg"
  32345. }
  32346. },
  32347. sheath: {
  32348. height: math.unit(0.5, "feet"),
  32349. name: "Sheath",
  32350. image: {
  32351. source: "./media/characters/axel/sheath.svg"
  32352. }
  32353. },
  32354. dick: {
  32355. height: math.unit(0.98, "feet"),
  32356. name: "Dick",
  32357. image: {
  32358. source: "./media/characters/axel/dick.svg"
  32359. }
  32360. },
  32361. },
  32362. [
  32363. {
  32364. name: "Macro",
  32365. height: math.unit(68, "meters"),
  32366. default: true
  32367. },
  32368. ]
  32369. ))
  32370. characterMakers.push(() => makeCharacter(
  32371. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  32372. {
  32373. front: {
  32374. height: math.unit(3.5, "meters"),
  32375. weight: math.unit(1200, "kg"),
  32376. name: "Front",
  32377. image: {
  32378. source: "./media/characters/joanna/front.svg",
  32379. extra: 1596 / 1488,
  32380. bottom: 29 / 1625
  32381. }
  32382. },
  32383. back: {
  32384. height: math.unit(3.5, "meters"),
  32385. weight: math.unit(1200, "kg"),
  32386. name: "Back",
  32387. image: {
  32388. source: "./media/characters/joanna/back.svg",
  32389. extra: 1594 / 1495,
  32390. bottom: 26 / 1620
  32391. }
  32392. },
  32393. frontShorts: {
  32394. height: math.unit(3.5, "meters"),
  32395. weight: math.unit(1200, "kg"),
  32396. name: "Front (Shorts)",
  32397. image: {
  32398. source: "./media/characters/joanna/front-shorts.svg",
  32399. extra: 1596 / 1488,
  32400. bottom: 29 / 1625
  32401. }
  32402. },
  32403. frontBiker: {
  32404. height: math.unit(3.5, "meters"),
  32405. weight: math.unit(1200, "kg"),
  32406. name: "Front (Biker)",
  32407. image: {
  32408. source: "./media/characters/joanna/front-biker.svg",
  32409. extra: 1596 / 1488,
  32410. bottom: 29 / 1625
  32411. }
  32412. },
  32413. backBiker: {
  32414. height: math.unit(3.5, "meters"),
  32415. weight: math.unit(1200, "kg"),
  32416. name: "Back (Biker)",
  32417. image: {
  32418. source: "./media/characters/joanna/back-biker.svg",
  32419. extra: 1594 / 1495,
  32420. bottom: 88 / 1682
  32421. }
  32422. },
  32423. bikeLeft: {
  32424. height: math.unit(2.4, "meters"),
  32425. weight: math.unit(1600, "kg"),
  32426. name: "Bike (Left)",
  32427. image: {
  32428. source: "./media/characters/joanna/bike-left.svg",
  32429. extra: 720 / 720,
  32430. bottom: 8 / 728
  32431. }
  32432. },
  32433. bikeRight: {
  32434. height: math.unit(2.4, "meters"),
  32435. weight: math.unit(1600, "kg"),
  32436. name: "Bike (Right)",
  32437. image: {
  32438. source: "./media/characters/joanna/bike-right.svg",
  32439. extra: 720 / 720,
  32440. bottom: 8 / 728
  32441. }
  32442. },
  32443. },
  32444. [
  32445. {
  32446. name: "Incognito",
  32447. height: math.unit(3.5, "meters")
  32448. },
  32449. {
  32450. name: "Casual Big",
  32451. height: math.unit(200, "meters")
  32452. },
  32453. {
  32454. name: "Macro",
  32455. height: math.unit(600, "meters")
  32456. },
  32457. {
  32458. name: "Original",
  32459. height: math.unit(20, "km"),
  32460. default: true
  32461. },
  32462. {
  32463. name: "Giga",
  32464. height: math.unit(400, "km")
  32465. },
  32466. {
  32467. name: "Lounging",
  32468. height: math.unit(1500, "km")
  32469. },
  32470. {
  32471. name: "Planetary",
  32472. height: math.unit(200000, "km")
  32473. },
  32474. ]
  32475. ))
  32476. characterMakers.push(() => makeCharacter(
  32477. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  32478. {
  32479. front: {
  32480. height: math.unit(6, "feet"),
  32481. weight: math.unit(150, "lb"),
  32482. name: "Front",
  32483. image: {
  32484. source: "./media/characters/hugo-sigil/front.svg",
  32485. extra: 522 / 500,
  32486. bottom: 2 / 524
  32487. }
  32488. },
  32489. back: {
  32490. height: math.unit(6, "feet"),
  32491. weight: math.unit(150, "lb"),
  32492. name: "Back",
  32493. image: {
  32494. source: "./media/characters/hugo-sigil/back.svg",
  32495. extra: 519 / 495,
  32496. bottom: 5 / 524
  32497. }
  32498. },
  32499. maw: {
  32500. height: math.unit(1.4, "feet"),
  32501. weight: math.unit(150, "lb"),
  32502. name: "Maw",
  32503. image: {
  32504. source: "./media/characters/hugo-sigil/maw.svg"
  32505. }
  32506. },
  32507. feet: {
  32508. height: math.unit(1.56, "feet"),
  32509. weight: math.unit(150, "lb"),
  32510. name: "Feet",
  32511. image: {
  32512. source: "./media/characters/hugo-sigil/feet.svg",
  32513. extra: 177 / 177,
  32514. bottom: 12 / 189
  32515. }
  32516. },
  32517. },
  32518. [
  32519. {
  32520. name: "Normal",
  32521. height: math.unit(6, "feet")
  32522. },
  32523. {
  32524. name: "Macro",
  32525. height: math.unit(200, "feet"),
  32526. default: true
  32527. },
  32528. ]
  32529. ))
  32530. characterMakers.push(() => makeCharacter(
  32531. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  32532. {
  32533. front: {
  32534. height: math.unit(6, "feet"),
  32535. weight: math.unit(150, "lb"),
  32536. name: "Front",
  32537. image: {
  32538. source: "./media/characters/peri/front.svg",
  32539. extra: 2354 / 2233,
  32540. bottom: 49 / 2403
  32541. }
  32542. },
  32543. },
  32544. [
  32545. {
  32546. name: "Really Small",
  32547. height: math.unit(1, "nm")
  32548. },
  32549. {
  32550. name: "Micro",
  32551. height: math.unit(4, "inches")
  32552. },
  32553. {
  32554. name: "Normal",
  32555. height: math.unit(7, "inches"),
  32556. default: true
  32557. },
  32558. {
  32559. name: "Macro",
  32560. height: math.unit(400, "feet")
  32561. },
  32562. {
  32563. name: "Megamacro",
  32564. height: math.unit(100, "miles")
  32565. },
  32566. ]
  32567. ))
  32568. characterMakers.push(() => makeCharacter(
  32569. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  32570. {
  32571. frontSlim: {
  32572. height: math.unit(7, "feet"),
  32573. name: "Front (Slim)",
  32574. image: {
  32575. source: "./media/characters/issilora/front-slim.svg",
  32576. extra: 529 / 449,
  32577. bottom: 53 / 582
  32578. }
  32579. },
  32580. sideSlim: {
  32581. height: math.unit(7, "feet"),
  32582. name: "Side (Slim)",
  32583. image: {
  32584. source: "./media/characters/issilora/side-slim.svg",
  32585. extra: 570 / 480,
  32586. bottom: 30 / 600
  32587. }
  32588. },
  32589. backSlim: {
  32590. height: math.unit(7, "feet"),
  32591. name: "Back (Slim)",
  32592. image: {
  32593. source: "./media/characters/issilora/back-slim.svg",
  32594. extra: 537 / 455,
  32595. bottom: 46 / 583
  32596. }
  32597. },
  32598. frontBuff: {
  32599. height: math.unit(7, "feet"),
  32600. name: "Front (Buff)",
  32601. image: {
  32602. source: "./media/characters/issilora/front-buff.svg",
  32603. extra: 2310 / 2035,
  32604. bottom: 335 / 2645
  32605. }
  32606. },
  32607. head: {
  32608. height: math.unit(1.94, "feet"),
  32609. name: "Head",
  32610. image: {
  32611. source: "./media/characters/issilora/head.svg"
  32612. }
  32613. },
  32614. },
  32615. [
  32616. {
  32617. name: "Minimum",
  32618. height: math.unit(7, "feet")
  32619. },
  32620. {
  32621. name: "Comfortable",
  32622. height: math.unit(17, "feet")
  32623. },
  32624. {
  32625. name: "Fun Size",
  32626. height: math.unit(47, "feet")
  32627. },
  32628. {
  32629. name: "Natural Macro",
  32630. height: math.unit(137, "feet"),
  32631. default: true
  32632. },
  32633. {
  32634. name: "Maximum Kaiju",
  32635. height: math.unit(397, "feet")
  32636. },
  32637. ]
  32638. ))
  32639. characterMakers.push(() => makeCharacter(
  32640. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  32641. {
  32642. front: {
  32643. height: math.unit(50 + 9/12, "feet"),
  32644. weight: math.unit(32.8, "tons"),
  32645. name: "Front",
  32646. image: {
  32647. source: "./media/characters/irb'iiritaahn/front.svg",
  32648. extra: 1878/1826,
  32649. bottom: 326/2204
  32650. }
  32651. },
  32652. back: {
  32653. height: math.unit(50 + 9/12, "feet"),
  32654. weight: math.unit(32.8, "tons"),
  32655. name: "Back",
  32656. image: {
  32657. source: "./media/characters/irb'iiritaahn/back.svg",
  32658. extra: 2052/2018,
  32659. bottom: 152/2204
  32660. }
  32661. },
  32662. head: {
  32663. height: math.unit(12.86, "feet"),
  32664. name: "Head",
  32665. image: {
  32666. source: "./media/characters/irb'iiritaahn/head.svg"
  32667. }
  32668. },
  32669. maw: {
  32670. height: math.unit(9.66, "feet"),
  32671. name: "Maw",
  32672. image: {
  32673. source: "./media/characters/irb'iiritaahn/maw.svg"
  32674. }
  32675. },
  32676. frontDick: {
  32677. height: math.unit(8.78461, "feet"),
  32678. name: "Front Dick",
  32679. image: {
  32680. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  32681. }
  32682. },
  32683. rearDick: {
  32684. height: math.unit(8.78461, "feet"),
  32685. name: "Rear Dick",
  32686. image: {
  32687. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  32688. }
  32689. },
  32690. rearDickUnfolded: {
  32691. height: math.unit(8.78, "feet"),
  32692. name: "Rear Dick (Unfolded)",
  32693. image: {
  32694. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  32695. }
  32696. },
  32697. wings: {
  32698. height: math.unit(43, "feet"),
  32699. name: "Wings",
  32700. image: {
  32701. source: "./media/characters/irb'iiritaahn/wings.svg"
  32702. }
  32703. },
  32704. },
  32705. [
  32706. {
  32707. name: "Macro",
  32708. height: math.unit(50 + 9/12, "feet"),
  32709. default: true
  32710. },
  32711. ]
  32712. ))
  32713. characterMakers.push(() => makeCharacter(
  32714. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  32715. {
  32716. front: {
  32717. height: math.unit(205, "cm"),
  32718. weight: math.unit(102, "kg"),
  32719. name: "Front",
  32720. image: {
  32721. source: "./media/characters/irbisgreif/front.svg",
  32722. extra: 785/706,
  32723. bottom: 13/798
  32724. }
  32725. },
  32726. back: {
  32727. height: math.unit(205, "cm"),
  32728. weight: math.unit(102, "kg"),
  32729. name: "Back",
  32730. image: {
  32731. source: "./media/characters/irbisgreif/back.svg",
  32732. extra: 713/701,
  32733. bottom: 26/739
  32734. }
  32735. },
  32736. frontDressed: {
  32737. height: math.unit(216, "cm"),
  32738. weight: math.unit(102, "kg"),
  32739. name: "Front-dressed",
  32740. image: {
  32741. source: "./media/characters/irbisgreif/front-dressed.svg",
  32742. extra: 902/776,
  32743. bottom: 14/916
  32744. }
  32745. },
  32746. sideDressed: {
  32747. height: math.unit(195, "cm"),
  32748. weight: math.unit(102, "kg"),
  32749. name: "Side-dressed",
  32750. image: {
  32751. source: "./media/characters/irbisgreif/side-dressed.svg",
  32752. extra: 788/688,
  32753. bottom: 21/809
  32754. }
  32755. },
  32756. backDressed: {
  32757. height: math.unit(216, "cm"),
  32758. weight: math.unit(102, "kg"),
  32759. name: "Back-dressed",
  32760. image: {
  32761. source: "./media/characters/irbisgreif/back-dressed.svg",
  32762. extra: 901/783,
  32763. bottom: 10/911
  32764. }
  32765. },
  32766. dick: {
  32767. height: math.unit(0.49, "feet"),
  32768. name: "Dick",
  32769. image: {
  32770. source: "./media/characters/irbisgreif/dick.svg"
  32771. }
  32772. },
  32773. wingTop: {
  32774. height: math.unit(1.93 , "feet"),
  32775. name: "Wing-top",
  32776. image: {
  32777. source: "./media/characters/irbisgreif/wing-top.svg"
  32778. }
  32779. },
  32780. wingBottom: {
  32781. height: math.unit(1.93 , "feet"),
  32782. name: "Wing-bottom",
  32783. image: {
  32784. source: "./media/characters/irbisgreif/wing-bottom.svg"
  32785. }
  32786. },
  32787. },
  32788. [
  32789. {
  32790. name: "Normal",
  32791. height: math.unit(216, "cm"),
  32792. default: true
  32793. },
  32794. ]
  32795. ))
  32796. characterMakers.push(() => makeCharacter(
  32797. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  32798. {
  32799. front: {
  32800. height: math.unit(6, "feet"),
  32801. weight: math.unit(150, "lb"),
  32802. name: "Front",
  32803. image: {
  32804. source: "./media/characters/pride/front.svg",
  32805. extra: 1299/1230,
  32806. bottom: 18/1317
  32807. }
  32808. },
  32809. },
  32810. [
  32811. {
  32812. name: "Normal",
  32813. height: math.unit(7, "feet")
  32814. },
  32815. {
  32816. name: "Mini-macro",
  32817. height: math.unit(11, "feet")
  32818. },
  32819. {
  32820. name: "Macro",
  32821. height: math.unit(15, "meters"),
  32822. default: true
  32823. },
  32824. {
  32825. name: "Macro+",
  32826. height: math.unit(40, "meters")
  32827. },
  32828. ]
  32829. ))
  32830. characterMakers.push(() => makeCharacter(
  32831. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  32832. {
  32833. front: {
  32834. height: math.unit(4 + 2 / 12, "feet"),
  32835. weight: math.unit(95, "lb"),
  32836. name: "Front",
  32837. image: {
  32838. source: "./media/characters/vaelophis-nyx/front.svg",
  32839. extra: 2532/2330,
  32840. bottom: 0/2532
  32841. }
  32842. },
  32843. back: {
  32844. height: math.unit(4 + 2 / 12, "feet"),
  32845. weight: math.unit(95, "lb"),
  32846. name: "Back",
  32847. image: {
  32848. source: "./media/characters/vaelophis-nyx/back.svg",
  32849. extra: 2484/2361,
  32850. bottom: 0/2484
  32851. }
  32852. },
  32853. feralSide: {
  32854. height: math.unit(2 + 1/12, "feet"),
  32855. weight: math.unit(20, "lb"),
  32856. name: "Feral (Side)",
  32857. image: {
  32858. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  32859. extra: 1721/1581,
  32860. bottom: 70/1791
  32861. }
  32862. },
  32863. feralLazing: {
  32864. height: math.unit(1.08, "feet"),
  32865. weight: math.unit(20, "lb"),
  32866. name: "Feral (Lazing)",
  32867. image: {
  32868. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  32869. extra: 822/822,
  32870. bottom: 248/1070
  32871. }
  32872. },
  32873. ear: {
  32874. height: math.unit(0.416, "feet"),
  32875. name: "Ear",
  32876. image: {
  32877. source: "./media/characters/vaelophis-nyx/ear.svg"
  32878. }
  32879. },
  32880. eye: {
  32881. height: math.unit(0.0748, "feet"),
  32882. name: "Eye",
  32883. image: {
  32884. source: "./media/characters/vaelophis-nyx/eye.svg"
  32885. }
  32886. },
  32887. mouth: {
  32888. height: math.unit(0.378, "feet"),
  32889. name: "Mouth",
  32890. image: {
  32891. source: "./media/characters/vaelophis-nyx/mouth.svg"
  32892. }
  32893. },
  32894. spade: {
  32895. height: math.unit(0.55, "feet"),
  32896. name: "Spade",
  32897. image: {
  32898. source: "./media/characters/vaelophis-nyx/spade.svg"
  32899. }
  32900. },
  32901. },
  32902. [
  32903. {
  32904. name: "Normal",
  32905. height: math.unit(4 + 2/12, "feet"),
  32906. default: true
  32907. },
  32908. ]
  32909. ))
  32910. characterMakers.push(() => makeCharacter(
  32911. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  32912. {
  32913. front: {
  32914. height: math.unit(7, "feet"),
  32915. weight: math.unit(231, "lb"),
  32916. name: "Front",
  32917. image: {
  32918. source: "./media/characters/flux/front.svg",
  32919. extra: 919/871,
  32920. bottom: 0/919
  32921. }
  32922. },
  32923. back: {
  32924. height: math.unit(7, "feet"),
  32925. weight: math.unit(231, "lb"),
  32926. name: "Back",
  32927. image: {
  32928. source: "./media/characters/flux/back.svg",
  32929. extra: 1040/992,
  32930. bottom: 0/1040
  32931. }
  32932. },
  32933. frontDressed: {
  32934. height: math.unit(7, "feet"),
  32935. weight: math.unit(231, "lb"),
  32936. name: "Front (Dressed)",
  32937. image: {
  32938. source: "./media/characters/flux/front-dressed.svg",
  32939. extra: 919/871,
  32940. bottom: 0/919
  32941. }
  32942. },
  32943. feralSide: {
  32944. height: math.unit(5, "feet"),
  32945. weight: math.unit(150, "lb"),
  32946. name: "Feral (Side)",
  32947. image: {
  32948. source: "./media/characters/flux/feral-side.svg",
  32949. extra: 598/528,
  32950. bottom: 28/626
  32951. }
  32952. },
  32953. head: {
  32954. height: math.unit(1.585, "feet"),
  32955. name: "Head",
  32956. image: {
  32957. source: "./media/characters/flux/head.svg"
  32958. }
  32959. },
  32960. headSide: {
  32961. height: math.unit(1.74, "feet"),
  32962. name: "Head (Side)",
  32963. image: {
  32964. source: "./media/characters/flux/head-side.svg"
  32965. }
  32966. },
  32967. headSideFire: {
  32968. height: math.unit(1.76, "feet"),
  32969. name: "Head (Side, Fire)",
  32970. image: {
  32971. source: "./media/characters/flux/head-side-fire.svg"
  32972. }
  32973. },
  32974. },
  32975. [
  32976. {
  32977. name: "Normal",
  32978. height: math.unit(7, "feet"),
  32979. default: true
  32980. },
  32981. ]
  32982. ))
  32983. characterMakers.push(() => makeCharacter(
  32984. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  32985. {
  32986. front: {
  32987. height: math.unit(9, "feet"),
  32988. weight: math.unit(1012, "lb"),
  32989. name: "Front",
  32990. image: {
  32991. source: "./media/characters/ulfra-lupae/front.svg",
  32992. extra: 1083/1011,
  32993. bottom: 67/1150
  32994. }
  32995. },
  32996. },
  32997. [
  32998. {
  32999. name: "Micro",
  33000. height: math.unit(6, "inches")
  33001. },
  33002. {
  33003. name: "Socializing",
  33004. height: math.unit(6 + 5/12, "feet")
  33005. },
  33006. {
  33007. name: "Normal",
  33008. height: math.unit(9, "feet"),
  33009. default: true
  33010. },
  33011. {
  33012. name: "Macro",
  33013. height: math.unit(150, "feet")
  33014. },
  33015. ]
  33016. ))
  33017. characterMakers.push(() => makeCharacter(
  33018. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  33019. {
  33020. front: {
  33021. height: math.unit(5 + 2/12, "feet"),
  33022. weight: math.unit(120, "lb"),
  33023. name: "Front",
  33024. image: {
  33025. source: "./media/characters/timber/front.svg",
  33026. extra: 2814/2705,
  33027. bottom: 181/2995
  33028. }
  33029. },
  33030. },
  33031. [
  33032. {
  33033. name: "Normal",
  33034. height: math.unit(5 + 2/12, "feet"),
  33035. default: true
  33036. },
  33037. ]
  33038. ))
  33039. characterMakers.push(() => makeCharacter(
  33040. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  33041. {
  33042. front: {
  33043. height: math.unit(9, "feet"),
  33044. name: "Front",
  33045. image: {
  33046. source: "./media/characters/nicki/front.svg",
  33047. extra: 1240/990,
  33048. bottom: 45/1285
  33049. },
  33050. form: "anthro",
  33051. default: true
  33052. },
  33053. side: {
  33054. height: math.unit(9, "feet"),
  33055. name: "Side",
  33056. image: {
  33057. source: "./media/characters/nicki/side.svg",
  33058. extra: 1047/973,
  33059. bottom: 61/1108
  33060. },
  33061. form: "anthro"
  33062. },
  33063. back: {
  33064. height: math.unit(9, "feet"),
  33065. name: "Back",
  33066. image: {
  33067. source: "./media/characters/nicki/back.svg",
  33068. extra: 1006/965,
  33069. bottom: 39/1045
  33070. },
  33071. form: "anthro"
  33072. },
  33073. taur: {
  33074. height: math.unit(15, "feet"),
  33075. name: "Taur",
  33076. image: {
  33077. source: "./media/characters/nicki/taur.svg",
  33078. extra: 1592/1347,
  33079. bottom: 0/1592
  33080. },
  33081. form: "taur",
  33082. default: true
  33083. },
  33084. },
  33085. [
  33086. {
  33087. name: "Normal",
  33088. height: math.unit(9, "feet"),
  33089. form: "anthro",
  33090. default: true
  33091. },
  33092. {
  33093. name: "Normal",
  33094. height: math.unit(15, "feet"),
  33095. form: "taur",
  33096. default: true
  33097. }
  33098. ],
  33099. {
  33100. "anthro": {
  33101. name: "Anthro",
  33102. default: true
  33103. },
  33104. "taur": {
  33105. name: "Taur"
  33106. }
  33107. }
  33108. ))
  33109. characterMakers.push(() => makeCharacter(
  33110. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  33111. {
  33112. front: {
  33113. height: math.unit(7 + 10/12, "feet"),
  33114. weight: math.unit(3.5, "tons"),
  33115. name: "Front",
  33116. image: {
  33117. source: "./media/characters/lee/front.svg",
  33118. extra: 1773/1615,
  33119. bottom: 86/1859
  33120. }
  33121. },
  33122. hand: {
  33123. height: math.unit(1.78, "feet"),
  33124. name: "Hand",
  33125. image: {
  33126. source: "./media/characters/lee/hand.svg"
  33127. }
  33128. },
  33129. maw: {
  33130. height: math.unit(1.18, "feet"),
  33131. name: "Maw",
  33132. image: {
  33133. source: "./media/characters/lee/maw.svg"
  33134. }
  33135. },
  33136. },
  33137. [
  33138. {
  33139. name: "Normal",
  33140. height: math.unit(7 + 10/12, "feet"),
  33141. default: true
  33142. },
  33143. ]
  33144. ))
  33145. characterMakers.push(() => makeCharacter(
  33146. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  33147. {
  33148. front: {
  33149. height: math.unit(9, "feet"),
  33150. name: "Front",
  33151. image: {
  33152. source: "./media/characters/guti/front.svg",
  33153. extra: 4551/4355,
  33154. bottom: 123/4674
  33155. }
  33156. },
  33157. tongue: {
  33158. height: math.unit(1, "feet"),
  33159. name: "Tongue",
  33160. image: {
  33161. source: "./media/characters/guti/tongue.svg"
  33162. }
  33163. },
  33164. paw: {
  33165. height: math.unit(1.18, "feet"),
  33166. name: "Paw",
  33167. image: {
  33168. source: "./media/characters/guti/paw.svg"
  33169. }
  33170. },
  33171. },
  33172. [
  33173. {
  33174. name: "Normal",
  33175. height: math.unit(9, "feet"),
  33176. default: true
  33177. },
  33178. ]
  33179. ))
  33180. characterMakers.push(() => makeCharacter(
  33181. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  33182. {
  33183. side: {
  33184. height: math.unit(5, "meters"),
  33185. name: "Side",
  33186. image: {
  33187. source: "./media/characters/vesper/side.svg",
  33188. extra: 1605/1518,
  33189. bottom: 0/1605
  33190. }
  33191. },
  33192. },
  33193. [
  33194. {
  33195. name: "Small",
  33196. height: math.unit(5, "meters")
  33197. },
  33198. {
  33199. name: "Sage",
  33200. height: math.unit(100, "meters"),
  33201. default: true
  33202. },
  33203. {
  33204. name: "Fun Size",
  33205. height: math.unit(600, "meters")
  33206. },
  33207. {
  33208. name: "Goddess",
  33209. height: math.unit(20000, "km")
  33210. },
  33211. {
  33212. name: "Maximum",
  33213. height: math.unit(5, "galaxies")
  33214. },
  33215. ]
  33216. ))
  33217. characterMakers.push(() => makeCharacter(
  33218. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  33219. {
  33220. front: {
  33221. height: math.unit(6 + 3/12, "feet"),
  33222. weight: math.unit(190, "lb"),
  33223. name: "Front",
  33224. image: {
  33225. source: "./media/characters/gawain/front.svg",
  33226. extra: 2222/2139,
  33227. bottom: 90/2312
  33228. }
  33229. },
  33230. back: {
  33231. height: math.unit(6 + 3/12, "feet"),
  33232. weight: math.unit(190, "lb"),
  33233. name: "Back",
  33234. image: {
  33235. source: "./media/characters/gawain/back.svg",
  33236. extra: 2199/2111,
  33237. bottom: 73/2272
  33238. }
  33239. },
  33240. },
  33241. [
  33242. {
  33243. name: "Normal",
  33244. height: math.unit(6 + 3/12, "feet"),
  33245. default: true
  33246. },
  33247. ]
  33248. ))
  33249. characterMakers.push(() => makeCharacter(
  33250. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  33251. {
  33252. side: {
  33253. height: math.unit(3.5, "meters"),
  33254. weight: math.unit(16000, "lb"),
  33255. name: "Side",
  33256. image: {
  33257. source: "./media/characters/dascalti/side.svg",
  33258. extra: 392/273,
  33259. bottom: 47/439
  33260. }
  33261. },
  33262. breath: {
  33263. height: math.unit(7.4, "feet"),
  33264. name: "Breath",
  33265. image: {
  33266. source: "./media/characters/dascalti/breath.svg"
  33267. }
  33268. },
  33269. fed: {
  33270. height: math.unit(3.6, "meters"),
  33271. weight: math.unit(16000, "lb"),
  33272. name: "Fed",
  33273. image: {
  33274. source: "./media/characters/dascalti/fed.svg",
  33275. extra: 1419/820,
  33276. bottom: 95/1514
  33277. }
  33278. },
  33279. },
  33280. [
  33281. {
  33282. name: "Normal",
  33283. height: math.unit(3.5, "meters"),
  33284. default: true
  33285. },
  33286. ]
  33287. ))
  33288. characterMakers.push(() => makeCharacter(
  33289. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  33290. {
  33291. front: {
  33292. height: math.unit(3 + 5/12, "feet"),
  33293. name: "Front",
  33294. image: {
  33295. source: "./media/characters/mauve/front.svg",
  33296. extra: 1126/1033,
  33297. bottom: 65/1191
  33298. }
  33299. },
  33300. side: {
  33301. height: math.unit(3 + 5/12, "feet"),
  33302. name: "Side",
  33303. image: {
  33304. source: "./media/characters/mauve/side.svg",
  33305. extra: 1089/1001,
  33306. bottom: 29/1118
  33307. }
  33308. },
  33309. back: {
  33310. height: math.unit(3 + 5/12, "feet"),
  33311. name: "Back",
  33312. image: {
  33313. source: "./media/characters/mauve/back.svg",
  33314. extra: 1173/1053,
  33315. bottom: 109/1282
  33316. }
  33317. },
  33318. },
  33319. [
  33320. {
  33321. name: "Normal",
  33322. height: math.unit(3 + 5/12, "feet"),
  33323. default: true
  33324. },
  33325. ]
  33326. ))
  33327. characterMakers.push(() => makeCharacter(
  33328. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  33329. {
  33330. front: {
  33331. height: math.unit(6 + 3/12, "feet"),
  33332. weight: math.unit(430, "lb"),
  33333. name: "Front",
  33334. image: {
  33335. source: "./media/characters/carlos/front.svg",
  33336. extra: 1964/1913,
  33337. bottom: 70/2034
  33338. }
  33339. },
  33340. },
  33341. [
  33342. {
  33343. name: "Normal",
  33344. height: math.unit(6 + 3/12, "feet"),
  33345. default: true
  33346. },
  33347. ]
  33348. ))
  33349. characterMakers.push(() => makeCharacter(
  33350. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  33351. {
  33352. back: {
  33353. height: math.unit(5 + 10/12, "feet"),
  33354. weight: math.unit(200, "lb"),
  33355. name: "Back",
  33356. image: {
  33357. source: "./media/characters/jax/back.svg",
  33358. extra: 764/739,
  33359. bottom: 25/789
  33360. }
  33361. },
  33362. },
  33363. [
  33364. {
  33365. name: "Normal",
  33366. height: math.unit(5 + 10/12, "feet"),
  33367. default: true
  33368. },
  33369. ]
  33370. ))
  33371. characterMakers.push(() => makeCharacter(
  33372. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  33373. {
  33374. front: {
  33375. height: math.unit(8, "feet"),
  33376. weight: math.unit(250, "lb"),
  33377. name: "Front",
  33378. image: {
  33379. source: "./media/characters/eikthynir/front.svg",
  33380. extra: 1332/1166,
  33381. bottom: 82/1414
  33382. }
  33383. },
  33384. back: {
  33385. height: math.unit(8, "feet"),
  33386. weight: math.unit(250, "lb"),
  33387. name: "Back",
  33388. image: {
  33389. source: "./media/characters/eikthynir/back.svg",
  33390. extra: 1342/1190,
  33391. bottom: 19/1361
  33392. }
  33393. },
  33394. dick: {
  33395. height: math.unit(2.35, "feet"),
  33396. name: "Dick",
  33397. image: {
  33398. source: "./media/characters/eikthynir/dick.svg"
  33399. }
  33400. },
  33401. },
  33402. [
  33403. {
  33404. name: "Normal",
  33405. height: math.unit(8, "feet"),
  33406. default: true
  33407. },
  33408. ]
  33409. ))
  33410. characterMakers.push(() => makeCharacter(
  33411. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  33412. {
  33413. front: {
  33414. height: math.unit(99, "meters"),
  33415. weight: math.unit(13000, "tons"),
  33416. name: "Front",
  33417. image: {
  33418. source: "./media/characters/zlmos/front.svg",
  33419. extra: 2202/1992,
  33420. bottom: 315/2517
  33421. }
  33422. },
  33423. },
  33424. [
  33425. {
  33426. name: "Macro",
  33427. height: math.unit(99, "meters"),
  33428. default: true
  33429. },
  33430. ]
  33431. ))
  33432. characterMakers.push(() => makeCharacter(
  33433. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  33434. {
  33435. front: {
  33436. height: math.unit(6 + 5/12, "feet"),
  33437. name: "Front",
  33438. image: {
  33439. source: "./media/characters/purri/front.svg",
  33440. extra: 1698/1610,
  33441. bottom: 32/1730
  33442. }
  33443. },
  33444. frontAlt: {
  33445. height: math.unit(6 + 5/12, "feet"),
  33446. name: "Front (Alt)",
  33447. image: {
  33448. source: "./media/characters/purri/front-alt.svg",
  33449. extra: 450/420,
  33450. bottom: 26/476
  33451. }
  33452. },
  33453. boots: {
  33454. height: math.unit(5.5, "feet"),
  33455. name: "Boots",
  33456. image: {
  33457. source: "./media/characters/purri/boots.svg",
  33458. extra: 905/853,
  33459. bottom: 18/923
  33460. }
  33461. },
  33462. lying: {
  33463. height: math.unit(2, "feet"),
  33464. name: "Lying",
  33465. image: {
  33466. source: "./media/characters/purri/lying.svg",
  33467. extra: 940/843,
  33468. bottom: 146/1086
  33469. }
  33470. },
  33471. devious: {
  33472. height: math.unit(1.77, "feet"),
  33473. name: "Devious",
  33474. image: {
  33475. source: "./media/characters/purri/devious.svg",
  33476. extra: 1440/1155,
  33477. bottom: 147/1587
  33478. }
  33479. },
  33480. bean: {
  33481. height: math.unit(1.94, "feet"),
  33482. name: "Bean",
  33483. image: {
  33484. source: "./media/characters/purri/bean.svg"
  33485. }
  33486. },
  33487. },
  33488. [
  33489. {
  33490. name: "Micro",
  33491. height: math.unit(1, "mm")
  33492. },
  33493. {
  33494. name: "Normal",
  33495. height: math.unit(6 + 5/12, "feet"),
  33496. default: true
  33497. },
  33498. {
  33499. name: "Macro :3c",
  33500. height: math.unit(2, "miles")
  33501. },
  33502. ]
  33503. ))
  33504. characterMakers.push(() => makeCharacter(
  33505. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  33506. {
  33507. front: {
  33508. height: math.unit(6 + 2/12, "feet"),
  33509. weight: math.unit(250, "lb"),
  33510. name: "Front",
  33511. image: {
  33512. source: "./media/characters/moonlight/front.svg",
  33513. extra: 1044/908,
  33514. bottom: 56/1100
  33515. }
  33516. },
  33517. feral: {
  33518. height: math.unit(3 + 1/12, "feet"),
  33519. weight: math.unit(50, "kg"),
  33520. name: "Feral",
  33521. image: {
  33522. source: "./media/characters/moonlight/feral.svg",
  33523. extra: 3705/2791,
  33524. bottom: 145/3850
  33525. }
  33526. },
  33527. paw: {
  33528. height: math.unit(1, "feet"),
  33529. name: "Paw",
  33530. image: {
  33531. source: "./media/characters/moonlight/paw.svg"
  33532. }
  33533. },
  33534. paws: {
  33535. height: math.unit(0.98, "feet"),
  33536. name: "Paws",
  33537. image: {
  33538. source: "./media/characters/moonlight/paws.svg",
  33539. extra: 939/939,
  33540. bottom: 50/989
  33541. }
  33542. },
  33543. mouth: {
  33544. height: math.unit(0.48, "feet"),
  33545. name: "Mouth",
  33546. image: {
  33547. source: "./media/characters/moonlight/mouth.svg"
  33548. }
  33549. },
  33550. dick: {
  33551. height: math.unit(1.46, "feet"),
  33552. name: "Dick",
  33553. image: {
  33554. source: "./media/characters/moonlight/dick.svg"
  33555. }
  33556. },
  33557. },
  33558. [
  33559. {
  33560. name: "Normal",
  33561. height: math.unit(6 + 2/12, "feet"),
  33562. default: true
  33563. },
  33564. {
  33565. name: "Macro",
  33566. height: math.unit(300, "feet")
  33567. },
  33568. {
  33569. name: "Macro+",
  33570. height: math.unit(1, "mile")
  33571. },
  33572. {
  33573. name: "Mt. Moon",
  33574. height: math.unit(5, "miles")
  33575. },
  33576. {
  33577. name: "Megamacro",
  33578. height: math.unit(15, "miles")
  33579. },
  33580. ]
  33581. ))
  33582. characterMakers.push(() => makeCharacter(
  33583. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  33584. {
  33585. back: {
  33586. height: math.unit(6, "feet"),
  33587. weight: math.unit(150, "lb"),
  33588. name: "Back",
  33589. image: {
  33590. source: "./media/characters/sylen/back.svg",
  33591. extra: 1335/1273,
  33592. bottom: 107/1442
  33593. }
  33594. },
  33595. },
  33596. [
  33597. {
  33598. name: "Normal",
  33599. height: math.unit(5 + 5/12, "feet")
  33600. },
  33601. {
  33602. name: "Megamacro",
  33603. height: math.unit(3, "miles"),
  33604. default: true
  33605. },
  33606. ]
  33607. ))
  33608. characterMakers.push(() => makeCharacter(
  33609. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  33610. {
  33611. front: {
  33612. height: math.unit(6, "feet"),
  33613. weight: math.unit(190, "lb"),
  33614. name: "Front",
  33615. image: {
  33616. source: "./media/characters/huttser/front.svg",
  33617. extra: 1152/1058,
  33618. bottom: 23/1175
  33619. }
  33620. },
  33621. side: {
  33622. height: math.unit(6, "feet"),
  33623. weight: math.unit(190, "lb"),
  33624. name: "Side",
  33625. image: {
  33626. source: "./media/characters/huttser/side.svg",
  33627. extra: 1174/1065,
  33628. bottom: 18/1192
  33629. }
  33630. },
  33631. back: {
  33632. height: math.unit(6, "feet"),
  33633. weight: math.unit(190, "lb"),
  33634. name: "Back",
  33635. image: {
  33636. source: "./media/characters/huttser/back.svg",
  33637. extra: 1158/1056,
  33638. bottom: 12/1170
  33639. }
  33640. },
  33641. },
  33642. [
  33643. ]
  33644. ))
  33645. characterMakers.push(() => makeCharacter(
  33646. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  33647. {
  33648. side: {
  33649. height: math.unit(12 + 9/12, "feet"),
  33650. weight: math.unit(15000, "lb"),
  33651. name: "Side",
  33652. image: {
  33653. source: "./media/characters/faan/side.svg",
  33654. extra: 2747/2697,
  33655. bottom: 0/2747
  33656. }
  33657. },
  33658. front: {
  33659. height: math.unit(12 + 9/12, "feet"),
  33660. weight: math.unit(15000, "lb"),
  33661. name: "Front",
  33662. image: {
  33663. source: "./media/characters/faan/front.svg",
  33664. extra: 607/571,
  33665. bottom: 24/631
  33666. }
  33667. },
  33668. head: {
  33669. height: math.unit(2.85, "feet"),
  33670. name: "Head",
  33671. image: {
  33672. source: "./media/characters/faan/head.svg"
  33673. }
  33674. },
  33675. headAlt: {
  33676. height: math.unit(3.13, "feet"),
  33677. name: "Head-alt",
  33678. image: {
  33679. source: "./media/characters/faan/head-alt.svg"
  33680. }
  33681. },
  33682. },
  33683. [
  33684. {
  33685. name: "Normal",
  33686. height: math.unit(12 + 9/12, "feet"),
  33687. default: true
  33688. },
  33689. ]
  33690. ))
  33691. characterMakers.push(() => makeCharacter(
  33692. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  33693. {
  33694. front: {
  33695. height: math.unit(6, "feet"),
  33696. weight: math.unit(300, "lb"),
  33697. name: "Front",
  33698. image: {
  33699. source: "./media/characters/tanio/front.svg",
  33700. extra: 711/673,
  33701. bottom: 25/736
  33702. }
  33703. },
  33704. },
  33705. [
  33706. {
  33707. name: "Normal",
  33708. height: math.unit(6, "feet"),
  33709. default: true
  33710. },
  33711. ]
  33712. ))
  33713. characterMakers.push(() => makeCharacter(
  33714. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  33715. {
  33716. front: {
  33717. height: math.unit(3, "inches"),
  33718. name: "Front",
  33719. image: {
  33720. source: "./media/characters/noboru/front.svg",
  33721. extra: 1039/932,
  33722. bottom: 18/1057
  33723. }
  33724. },
  33725. },
  33726. [
  33727. {
  33728. name: "Micro",
  33729. height: math.unit(3, "inches"),
  33730. default: true
  33731. },
  33732. ]
  33733. ))
  33734. characterMakers.push(() => makeCharacter(
  33735. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  33736. {
  33737. front: {
  33738. height: math.unit(1.85, "meters"),
  33739. weight: math.unit(80, "kg"),
  33740. name: "Front",
  33741. image: {
  33742. source: "./media/characters/daniel-barrett/front.svg",
  33743. extra: 355/337,
  33744. bottom: 9/364
  33745. }
  33746. },
  33747. },
  33748. [
  33749. {
  33750. name: "Pico",
  33751. height: math.unit(0.0433, "mm")
  33752. },
  33753. {
  33754. name: "Nano",
  33755. height: math.unit(1.5, "mm")
  33756. },
  33757. {
  33758. name: "Micro",
  33759. height: math.unit(5.3, "cm"),
  33760. default: true
  33761. },
  33762. {
  33763. name: "Normal",
  33764. height: math.unit(1.85, "meters")
  33765. },
  33766. {
  33767. name: "Macro",
  33768. height: math.unit(64.7, "meters")
  33769. },
  33770. {
  33771. name: "Megamacro",
  33772. height: math.unit(2.26, "km")
  33773. },
  33774. {
  33775. name: "Gigamacro",
  33776. height: math.unit(79, "km")
  33777. },
  33778. {
  33779. name: "Teramacro",
  33780. height: math.unit(2765, "km")
  33781. },
  33782. {
  33783. name: "Petamacro",
  33784. height: math.unit(96678, "km")
  33785. },
  33786. ]
  33787. ))
  33788. characterMakers.push(() => makeCharacter(
  33789. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  33790. {
  33791. front: {
  33792. height: math.unit(30, "meters"),
  33793. weight: math.unit(400, "tons"),
  33794. name: "Front",
  33795. image: {
  33796. source: "./media/characters/zeel/front.svg",
  33797. extra: 2599/2599,
  33798. bottom: 226/2825
  33799. }
  33800. },
  33801. },
  33802. [
  33803. {
  33804. name: "Macro",
  33805. height: math.unit(30, "meters"),
  33806. default: true
  33807. },
  33808. ]
  33809. ))
  33810. characterMakers.push(() => makeCharacter(
  33811. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  33812. {
  33813. front: {
  33814. height: math.unit(6 + 7/12, "feet"),
  33815. weight: math.unit(210, "lb"),
  33816. name: "Front",
  33817. image: {
  33818. source: "./media/characters/tarn/front.svg",
  33819. extra: 3517/3220,
  33820. bottom: 91/3608
  33821. }
  33822. },
  33823. back: {
  33824. height: math.unit(6 + 7/12, "feet"),
  33825. weight: math.unit(210, "lb"),
  33826. name: "Back",
  33827. image: {
  33828. source: "./media/characters/tarn/back.svg",
  33829. extra: 3566/3241,
  33830. bottom: 34/3600
  33831. }
  33832. },
  33833. dick: {
  33834. height: math.unit(1.65, "feet"),
  33835. name: "Dick",
  33836. image: {
  33837. source: "./media/characters/tarn/dick.svg"
  33838. }
  33839. },
  33840. paw: {
  33841. height: math.unit(1.80, "feet"),
  33842. name: "Paw",
  33843. image: {
  33844. source: "./media/characters/tarn/paw.svg"
  33845. }
  33846. },
  33847. tongue: {
  33848. height: math.unit(0.97, "feet"),
  33849. name: "Tongue",
  33850. image: {
  33851. source: "./media/characters/tarn/tongue.svg"
  33852. }
  33853. },
  33854. },
  33855. [
  33856. {
  33857. name: "Micro",
  33858. height: math.unit(4, "inches")
  33859. },
  33860. {
  33861. name: "Normal",
  33862. height: math.unit(6 + 7/12, "feet"),
  33863. default: true
  33864. },
  33865. {
  33866. name: "Macro",
  33867. height: math.unit(300, "feet")
  33868. },
  33869. ]
  33870. ))
  33871. characterMakers.push(() => makeCharacter(
  33872. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  33873. {
  33874. front: {
  33875. height: math.unit(5 + 7/12, "feet"),
  33876. weight: math.unit(80, "kg"),
  33877. name: "Front",
  33878. image: {
  33879. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  33880. extra: 3023/2865,
  33881. bottom: 33/3056
  33882. }
  33883. },
  33884. back: {
  33885. height: math.unit(5 + 7/12, "feet"),
  33886. weight: math.unit(80, "kg"),
  33887. name: "Back",
  33888. image: {
  33889. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  33890. extra: 3020/2886,
  33891. bottom: 30/3050
  33892. }
  33893. },
  33894. dick: {
  33895. height: math.unit(0.98, "feet"),
  33896. name: "Dick",
  33897. image: {
  33898. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  33899. }
  33900. },
  33901. anatomy: {
  33902. height: math.unit(2.86, "feet"),
  33903. name: "Anatomy",
  33904. image: {
  33905. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  33906. }
  33907. },
  33908. },
  33909. [
  33910. {
  33911. name: "Really Small",
  33912. height: math.unit(2, "inches")
  33913. },
  33914. {
  33915. name: "Micro",
  33916. height: math.unit(5.583, "inches")
  33917. },
  33918. {
  33919. name: "Normal",
  33920. height: math.unit(5 + 7/12, "feet"),
  33921. default: true
  33922. },
  33923. {
  33924. name: "Macro",
  33925. height: math.unit(67, "feet")
  33926. },
  33927. {
  33928. name: "Megamacro",
  33929. height: math.unit(134, "feet")
  33930. },
  33931. ]
  33932. ))
  33933. characterMakers.push(() => makeCharacter(
  33934. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  33935. {
  33936. front: {
  33937. height: math.unit(9, "feet"),
  33938. weight: math.unit(120, "lb"),
  33939. name: "Front",
  33940. image: {
  33941. source: "./media/characters/sally/front.svg",
  33942. extra: 1506/1349,
  33943. bottom: 66/1572
  33944. }
  33945. },
  33946. },
  33947. [
  33948. {
  33949. name: "Normal",
  33950. height: math.unit(9, "feet"),
  33951. default: true
  33952. },
  33953. ]
  33954. ))
  33955. characterMakers.push(() => makeCharacter(
  33956. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  33957. {
  33958. front: {
  33959. height: math.unit(8, "feet"),
  33960. weight: math.unit(900, "lb"),
  33961. name: "Front",
  33962. image: {
  33963. source: "./media/characters/owen/front.svg",
  33964. extra: 1761/1657,
  33965. bottom: 74/1835
  33966. }
  33967. },
  33968. side: {
  33969. height: math.unit(8, "feet"),
  33970. weight: math.unit(900, "lb"),
  33971. name: "Side",
  33972. image: {
  33973. source: "./media/characters/owen/side.svg",
  33974. extra: 1797/1734,
  33975. bottom: 30/1827
  33976. }
  33977. },
  33978. back: {
  33979. height: math.unit(8, "feet"),
  33980. weight: math.unit(900, "lb"),
  33981. name: "Back",
  33982. image: {
  33983. source: "./media/characters/owen/back.svg",
  33984. extra: 1796/1706,
  33985. bottom: 59/1855
  33986. }
  33987. },
  33988. maw: {
  33989. height: math.unit(1.76, "feet"),
  33990. name: "Maw",
  33991. image: {
  33992. source: "./media/characters/owen/maw.svg"
  33993. }
  33994. },
  33995. },
  33996. [
  33997. {
  33998. name: "Normal",
  33999. height: math.unit(8, "feet"),
  34000. default: true
  34001. },
  34002. ]
  34003. ))
  34004. characterMakers.push(() => makeCharacter(
  34005. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  34006. {
  34007. front: {
  34008. height: math.unit(4, "feet"),
  34009. weight: math.unit(400, "lb"),
  34010. name: "Front",
  34011. image: {
  34012. source: "./media/characters/ryth/front.svg",
  34013. extra: 1920/1748,
  34014. bottom: 42/1962
  34015. }
  34016. },
  34017. back: {
  34018. height: math.unit(4, "feet"),
  34019. weight: math.unit(400, "lb"),
  34020. name: "Back",
  34021. image: {
  34022. source: "./media/characters/ryth/back.svg",
  34023. extra: 1897/1690,
  34024. bottom: 89/1986
  34025. }
  34026. },
  34027. mouth: {
  34028. height: math.unit(1.39, "feet"),
  34029. name: "Mouth",
  34030. image: {
  34031. source: "./media/characters/ryth/mouth.svg"
  34032. }
  34033. },
  34034. tailmaw: {
  34035. height: math.unit(1.23, "feet"),
  34036. name: "Tailmaw",
  34037. image: {
  34038. source: "./media/characters/ryth/tailmaw.svg"
  34039. }
  34040. },
  34041. goia: {
  34042. height: math.unit(4, "meters"),
  34043. weight: math.unit(10800, "lb"),
  34044. name: "Goia",
  34045. image: {
  34046. source: "./media/characters/ryth/goia.svg",
  34047. extra: 745/640,
  34048. bottom: 107/852
  34049. }
  34050. },
  34051. goiaFront: {
  34052. height: math.unit(4, "meters"),
  34053. weight: math.unit(10800, "lb"),
  34054. name: "Goia (Front)",
  34055. image: {
  34056. source: "./media/characters/ryth/goia-front.svg",
  34057. extra: 750/586,
  34058. bottom: 114/864
  34059. }
  34060. },
  34061. goiaMaw: {
  34062. height: math.unit(5.55, "feet"),
  34063. name: "Goia Maw",
  34064. image: {
  34065. source: "./media/characters/ryth/goia-maw.svg"
  34066. }
  34067. },
  34068. goiaForepaw: {
  34069. height: math.unit(3.5, "feet"),
  34070. name: "Goia Forepaw",
  34071. image: {
  34072. source: "./media/characters/ryth/goia-forepaw.svg"
  34073. }
  34074. },
  34075. goiaHindpaw: {
  34076. height: math.unit(5.55, "feet"),
  34077. name: "Goia Hindpaw",
  34078. image: {
  34079. source: "./media/characters/ryth/goia-hindpaw.svg"
  34080. }
  34081. },
  34082. },
  34083. [
  34084. {
  34085. name: "Normal",
  34086. height: math.unit(4, "feet"),
  34087. default: true
  34088. },
  34089. ]
  34090. ))
  34091. characterMakers.push(() => makeCharacter(
  34092. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  34093. {
  34094. front: {
  34095. height: math.unit(7, "feet"),
  34096. weight: math.unit(180, "lb"),
  34097. name: "Front",
  34098. image: {
  34099. source: "./media/characters/necrolance/front.svg",
  34100. extra: 1062/947,
  34101. bottom: 41/1103
  34102. }
  34103. },
  34104. back: {
  34105. height: math.unit(7, "feet"),
  34106. weight: math.unit(180, "lb"),
  34107. name: "Back",
  34108. image: {
  34109. source: "./media/characters/necrolance/back.svg",
  34110. extra: 1045/984,
  34111. bottom: 14/1059
  34112. }
  34113. },
  34114. wing: {
  34115. height: math.unit(2.67, "feet"),
  34116. name: "Wing",
  34117. image: {
  34118. source: "./media/characters/necrolance/wing.svg"
  34119. }
  34120. },
  34121. },
  34122. [
  34123. {
  34124. name: "Normal",
  34125. height: math.unit(7, "feet"),
  34126. default: true
  34127. },
  34128. ]
  34129. ))
  34130. characterMakers.push(() => makeCharacter(
  34131. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  34132. {
  34133. front: {
  34134. height: math.unit(76, "meters"),
  34135. weight: math.unit(30000, "tons"),
  34136. name: "Front",
  34137. image: {
  34138. source: "./media/characters/tyler/front.svg",
  34139. extra: 1640/1640,
  34140. bottom: 114/1754
  34141. }
  34142. },
  34143. },
  34144. [
  34145. {
  34146. name: "Macro",
  34147. height: math.unit(76, "meters"),
  34148. default: true
  34149. },
  34150. ]
  34151. ))
  34152. characterMakers.push(() => makeCharacter(
  34153. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  34154. {
  34155. front: {
  34156. height: math.unit(4 + 11/12, "feet"),
  34157. weight: math.unit(132, "lb"),
  34158. name: "Front",
  34159. image: {
  34160. source: "./media/characters/icey/front.svg",
  34161. extra: 2750/2550,
  34162. bottom: 33/2783
  34163. }
  34164. },
  34165. back: {
  34166. height: math.unit(4 + 11/12, "feet"),
  34167. weight: math.unit(132, "lb"),
  34168. name: "Back",
  34169. image: {
  34170. source: "./media/characters/icey/back.svg",
  34171. extra: 2624/2481,
  34172. bottom: 35/2659
  34173. }
  34174. },
  34175. },
  34176. [
  34177. {
  34178. name: "Normal",
  34179. height: math.unit(4 + 11/12, "feet"),
  34180. default: true
  34181. },
  34182. ]
  34183. ))
  34184. characterMakers.push(() => makeCharacter(
  34185. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  34186. {
  34187. front: {
  34188. height: math.unit(100, "feet"),
  34189. weight: math.unit(0, "lb"),
  34190. name: "Front",
  34191. image: {
  34192. source: "./media/characters/smile/front.svg",
  34193. extra: 2983/2912,
  34194. bottom: 162/3145
  34195. }
  34196. },
  34197. back: {
  34198. height: math.unit(100, "feet"),
  34199. weight: math.unit(0, "lb"),
  34200. name: "Back",
  34201. image: {
  34202. source: "./media/characters/smile/back.svg",
  34203. extra: 3143/3031,
  34204. bottom: 91/3234
  34205. }
  34206. },
  34207. head: {
  34208. height: math.unit(26.3, "feet"),
  34209. weight: math.unit(0, "lb"),
  34210. name: "Head",
  34211. image: {
  34212. source: "./media/characters/smile/head.svg"
  34213. }
  34214. },
  34215. collar: {
  34216. height: math.unit(5.3, "feet"),
  34217. weight: math.unit(0, "lb"),
  34218. name: "Collar",
  34219. image: {
  34220. source: "./media/characters/smile/collar.svg"
  34221. }
  34222. },
  34223. },
  34224. [
  34225. {
  34226. name: "Macro",
  34227. height: math.unit(100, "feet"),
  34228. default: true
  34229. },
  34230. ]
  34231. ))
  34232. characterMakers.push(() => makeCharacter(
  34233. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  34234. {
  34235. dragon: {
  34236. height: math.unit(26, "feet"),
  34237. weight: math.unit(36, "tons"),
  34238. name: "Dragon",
  34239. image: {
  34240. source: "./media/characters/arimphae/dragon.svg",
  34241. extra: 1574/983,
  34242. bottom: 357/1931
  34243. }
  34244. },
  34245. drake: {
  34246. height: math.unit(9, "feet"),
  34247. weight: math.unit(1.5, "tons"),
  34248. name: "Drake",
  34249. image: {
  34250. source: "./media/characters/arimphae/drake.svg",
  34251. extra: 1120/925,
  34252. bottom: 435/1555
  34253. }
  34254. },
  34255. },
  34256. [
  34257. {
  34258. name: "Small",
  34259. height: math.unit(26*5/9, "feet")
  34260. },
  34261. {
  34262. name: "Normal",
  34263. height: math.unit(26, "feet"),
  34264. default: true
  34265. },
  34266. ]
  34267. ))
  34268. characterMakers.push(() => makeCharacter(
  34269. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  34270. {
  34271. front: {
  34272. height: math.unit(8 + 9/12, "feet"),
  34273. name: "Front",
  34274. image: {
  34275. source: "./media/characters/xander/front.svg",
  34276. extra: 1237/974,
  34277. bottom: 94/1331
  34278. }
  34279. },
  34280. },
  34281. [
  34282. {
  34283. name: "Normal",
  34284. height: math.unit(8 + 9/12, "feet"),
  34285. default: true
  34286. },
  34287. {
  34288. name: "Gaze Grabber",
  34289. height: math.unit(13 + 8/12, "feet")
  34290. },
  34291. {
  34292. name: "Jaw Dropper",
  34293. height: math.unit(27, "feet")
  34294. },
  34295. {
  34296. name: "Show Stopper",
  34297. height: math.unit(136, "feet")
  34298. },
  34299. {
  34300. name: "Superstar",
  34301. height: math.unit(1.9e6, "miles")
  34302. },
  34303. ]
  34304. ))
  34305. characterMakers.push(() => makeCharacter(
  34306. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  34307. {
  34308. side: {
  34309. height: math.unit(2100, "feet"),
  34310. name: "Side",
  34311. image: {
  34312. source: "./media/characters/osiris/side.svg",
  34313. extra: 1105/939,
  34314. bottom: 167/1272
  34315. }
  34316. },
  34317. },
  34318. [
  34319. {
  34320. name: "Macro",
  34321. height: math.unit(2100, "feet"),
  34322. default: true
  34323. },
  34324. ]
  34325. ))
  34326. characterMakers.push(() => makeCharacter(
  34327. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  34328. {
  34329. front: {
  34330. height: math.unit(6 + 8/12, "feet"),
  34331. weight: math.unit(225, "lb"),
  34332. name: "Front",
  34333. image: {
  34334. source: "./media/characters/rhys-londe/front.svg",
  34335. extra: 2258/2141,
  34336. bottom: 188/2446
  34337. }
  34338. },
  34339. back: {
  34340. height: math.unit(6 + 8/12, "feet"),
  34341. weight: math.unit(225, "lb"),
  34342. name: "Back",
  34343. image: {
  34344. source: "./media/characters/rhys-londe/back.svg",
  34345. extra: 2237/2137,
  34346. bottom: 63/2300
  34347. }
  34348. },
  34349. frontNsfw: {
  34350. height: math.unit(6 + 8/12, "feet"),
  34351. weight: math.unit(225, "lb"),
  34352. name: "Front (NSFW)",
  34353. image: {
  34354. source: "./media/characters/rhys-londe/front-nsfw.svg",
  34355. extra: 2258/2141,
  34356. bottom: 188/2446
  34357. }
  34358. },
  34359. backNsfw: {
  34360. height: math.unit(6 + 8/12, "feet"),
  34361. weight: math.unit(225, "lb"),
  34362. name: "Back (NSFW)",
  34363. image: {
  34364. source: "./media/characters/rhys-londe/back-nsfw.svg",
  34365. extra: 2237/2137,
  34366. bottom: 63/2300
  34367. }
  34368. },
  34369. dick: {
  34370. height: math.unit(30, "inches"),
  34371. name: "Dick",
  34372. image: {
  34373. source: "./media/characters/rhys-londe/dick.svg"
  34374. }
  34375. },
  34376. maw: {
  34377. height: math.unit(1.6, "feet"),
  34378. name: "Maw",
  34379. image: {
  34380. source: "./media/characters/rhys-londe/maw.svg"
  34381. }
  34382. },
  34383. },
  34384. [
  34385. {
  34386. name: "Normal",
  34387. height: math.unit(6 + 8/12, "feet"),
  34388. default: true
  34389. },
  34390. ]
  34391. ))
  34392. characterMakers.push(() => makeCharacter(
  34393. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  34394. {
  34395. front: {
  34396. height: math.unit(3 + 10/12, "feet"),
  34397. weight: math.unit(90, "lb"),
  34398. name: "Front",
  34399. image: {
  34400. source: "./media/characters/taivas-ensim/front.svg",
  34401. extra: 1327/1216,
  34402. bottom: 96/1423
  34403. }
  34404. },
  34405. back: {
  34406. height: math.unit(3 + 10/12, "feet"),
  34407. weight: math.unit(90, "lb"),
  34408. name: "Back",
  34409. image: {
  34410. source: "./media/characters/taivas-ensim/back.svg",
  34411. extra: 1355/1247,
  34412. bottom: 11/1366
  34413. }
  34414. },
  34415. frontNsfw: {
  34416. height: math.unit(3 + 10/12, "feet"),
  34417. weight: math.unit(90, "lb"),
  34418. name: "Front (NSFW)",
  34419. image: {
  34420. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  34421. extra: 1327/1216,
  34422. bottom: 96/1423
  34423. }
  34424. },
  34425. backNsfw: {
  34426. height: math.unit(3 + 10/12, "feet"),
  34427. weight: math.unit(90, "lb"),
  34428. name: "Back (NSFW)",
  34429. image: {
  34430. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  34431. extra: 1355/1247,
  34432. bottom: 11/1366
  34433. }
  34434. },
  34435. },
  34436. [
  34437. {
  34438. name: "Normal",
  34439. height: math.unit(3 + 10/12, "feet"),
  34440. default: true
  34441. },
  34442. ]
  34443. ))
  34444. characterMakers.push(() => makeCharacter(
  34445. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  34446. {
  34447. front: {
  34448. height: math.unit(9 + 6/12, "feet"),
  34449. weight: math.unit(940, "lb"),
  34450. name: "Front",
  34451. image: {
  34452. source: "./media/characters/byliss/front.svg",
  34453. extra: 1327/1290,
  34454. bottom: 82/1409
  34455. }
  34456. },
  34457. back: {
  34458. height: math.unit(9 + 6/12, "feet"),
  34459. weight: math.unit(940, "lb"),
  34460. name: "Back",
  34461. image: {
  34462. source: "./media/characters/byliss/back.svg",
  34463. extra: 1376/1349,
  34464. bottom: 9/1385
  34465. }
  34466. },
  34467. frontNsfw: {
  34468. height: math.unit(9 + 6/12, "feet"),
  34469. weight: math.unit(940, "lb"),
  34470. name: "Front (NSFW)",
  34471. image: {
  34472. source: "./media/characters/byliss/front-nsfw.svg",
  34473. extra: 1327/1290,
  34474. bottom: 82/1409
  34475. }
  34476. },
  34477. backNsfw: {
  34478. height: math.unit(9 + 6/12, "feet"),
  34479. weight: math.unit(940, "lb"),
  34480. name: "Back (NSFW)",
  34481. image: {
  34482. source: "./media/characters/byliss/back-nsfw.svg",
  34483. extra: 1376/1349,
  34484. bottom: 9/1385
  34485. }
  34486. },
  34487. },
  34488. [
  34489. {
  34490. name: "Normal",
  34491. height: math.unit(9 + 6/12, "feet"),
  34492. default: true
  34493. },
  34494. ]
  34495. ))
  34496. characterMakers.push(() => makeCharacter(
  34497. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  34498. {
  34499. front: {
  34500. height: math.unit(5 + 2/12, "feet"),
  34501. weight: math.unit(200, "lb"),
  34502. name: "Front",
  34503. image: {
  34504. source: "./media/characters/noraly/front.svg",
  34505. extra: 4985/4773,
  34506. bottom: 150/5135
  34507. }
  34508. },
  34509. full: {
  34510. height: math.unit(5 + 2/12, "feet"),
  34511. weight: math.unit(164, "lb"),
  34512. name: "Full",
  34513. image: {
  34514. source: "./media/characters/noraly/full.svg",
  34515. extra: 1114/1059,
  34516. bottom: 35/1149
  34517. }
  34518. },
  34519. fuller: {
  34520. height: math.unit(5 + 2/12, "feet"),
  34521. weight: math.unit(230, "lb"),
  34522. name: "Fuller",
  34523. image: {
  34524. source: "./media/characters/noraly/fuller.svg",
  34525. extra: 1114/1059,
  34526. bottom: 35/1149
  34527. }
  34528. },
  34529. fullest: {
  34530. height: math.unit(5 + 2/12, "feet"),
  34531. weight: math.unit(300, "lb"),
  34532. name: "Fullest",
  34533. image: {
  34534. source: "./media/characters/noraly/fullest.svg",
  34535. extra: 1114/1059,
  34536. bottom: 35/1149
  34537. }
  34538. },
  34539. },
  34540. [
  34541. {
  34542. name: "Normal",
  34543. height: math.unit(5 + 2/12, "feet"),
  34544. default: true
  34545. },
  34546. ]
  34547. ))
  34548. characterMakers.push(() => makeCharacter(
  34549. { name: "Pera", species: ["snake"], tags: ["naga"] },
  34550. {
  34551. front: {
  34552. height: math.unit(5 + 2/12, "feet"),
  34553. weight: math.unit(210, "lb"),
  34554. name: "Front",
  34555. image: {
  34556. source: "./media/characters/pera/front.svg",
  34557. extra: 1560/1531,
  34558. bottom: 165/1725
  34559. }
  34560. },
  34561. back: {
  34562. height: math.unit(5 + 2/12, "feet"),
  34563. weight: math.unit(210, "lb"),
  34564. name: "Back",
  34565. image: {
  34566. source: "./media/characters/pera/back.svg",
  34567. extra: 1523/1493,
  34568. bottom: 152/1675
  34569. }
  34570. },
  34571. dick: {
  34572. height: math.unit(2.4, "feet"),
  34573. name: "Dick",
  34574. image: {
  34575. source: "./media/characters/pera/dick.svg"
  34576. }
  34577. },
  34578. },
  34579. [
  34580. {
  34581. name: "Normal",
  34582. height: math.unit(5 + 2/12, "feet"),
  34583. default: true
  34584. },
  34585. ]
  34586. ))
  34587. characterMakers.push(() => makeCharacter(
  34588. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  34589. {
  34590. front: {
  34591. height: math.unit(12, "feet"),
  34592. weight: math.unit(3200, "lb"),
  34593. name: "Front",
  34594. image: {
  34595. source: "./media/characters/julian/front.svg",
  34596. extra: 2962/2701,
  34597. bottom: 184/3146
  34598. }
  34599. },
  34600. maw: {
  34601. height: math.unit(5.35, "feet"),
  34602. name: "Maw",
  34603. image: {
  34604. source: "./media/characters/julian/maw.svg"
  34605. }
  34606. },
  34607. paw: {
  34608. height: math.unit(3.07, "feet"),
  34609. name: "Paw",
  34610. image: {
  34611. source: "./media/characters/julian/paw.svg"
  34612. }
  34613. },
  34614. },
  34615. [
  34616. {
  34617. name: "Default",
  34618. height: math.unit(12, "feet"),
  34619. default: true
  34620. },
  34621. {
  34622. name: "Big",
  34623. height: math.unit(50, "feet")
  34624. },
  34625. {
  34626. name: "Really Big",
  34627. height: math.unit(1, "mile")
  34628. },
  34629. {
  34630. name: "Extremely Big",
  34631. height: math.unit(100, "miles")
  34632. },
  34633. {
  34634. name: "Planet Hugger",
  34635. height: math.unit(200, "megameters")
  34636. },
  34637. {
  34638. name: "Unreasonably Big",
  34639. height: math.unit(1e300, "meters")
  34640. },
  34641. ]
  34642. ))
  34643. characterMakers.push(() => makeCharacter(
  34644. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  34645. {
  34646. solgooleo: {
  34647. height: math.unit(4, "meters"),
  34648. weight: math.unit(6000*1.5, "kg"),
  34649. volume: math.unit(6000, "liters"),
  34650. name: "Solgooleo",
  34651. image: {
  34652. source: "./media/characters/pi/solgooleo.svg",
  34653. extra: 388/331,
  34654. bottom: 29/417
  34655. }
  34656. },
  34657. },
  34658. [
  34659. {
  34660. name: "Normal",
  34661. height: math.unit(4, "meters"),
  34662. default: true
  34663. },
  34664. ]
  34665. ))
  34666. characterMakers.push(() => makeCharacter(
  34667. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  34668. {
  34669. front: {
  34670. height: math.unit(8, "feet"),
  34671. weight: math.unit(4, "tons"),
  34672. name: "Front",
  34673. image: {
  34674. source: "./media/characters/shaun/front.svg",
  34675. extra: 503/495,
  34676. bottom: 20/523
  34677. }
  34678. },
  34679. back: {
  34680. height: math.unit(8, "feet"),
  34681. weight: math.unit(4, "tons"),
  34682. name: "Back",
  34683. image: {
  34684. source: "./media/characters/shaun/back.svg",
  34685. extra: 487/480,
  34686. bottom: 20/507
  34687. }
  34688. },
  34689. },
  34690. [
  34691. {
  34692. name: "Lorg",
  34693. height: math.unit(8, "feet"),
  34694. default: true
  34695. },
  34696. ]
  34697. ))
  34698. characterMakers.push(() => makeCharacter(
  34699. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  34700. {
  34701. frontAnthro: {
  34702. height: math.unit(7, "feet"),
  34703. name: "Front",
  34704. image: {
  34705. source: "./media/characters/sini/front-anthro.svg",
  34706. extra: 726/678,
  34707. bottom: 35/761
  34708. },
  34709. form: "anthro",
  34710. default: true
  34711. },
  34712. backAnthro: {
  34713. height: math.unit(7, "feet"),
  34714. name: "Back",
  34715. image: {
  34716. source: "./media/characters/sini/back-anthro.svg",
  34717. extra: 743/701,
  34718. bottom: 12/755
  34719. },
  34720. form: "anthro",
  34721. },
  34722. frontAnthroNsfw: {
  34723. height: math.unit(7, "feet"),
  34724. name: "Front (NSFW)",
  34725. image: {
  34726. source: "./media/characters/sini/front-anthro-nsfw.svg",
  34727. extra: 726/678,
  34728. bottom: 35/761
  34729. },
  34730. form: "anthro"
  34731. },
  34732. backAnthroNsfw: {
  34733. height: math.unit(7, "feet"),
  34734. name: "Back (NSFW)",
  34735. image: {
  34736. source: "./media/characters/sini/back-anthro-nsfw.svg",
  34737. extra: 743/701,
  34738. bottom: 12/755
  34739. },
  34740. form: "anthro",
  34741. },
  34742. mawAnthro: {
  34743. height: math.unit(2.14, "feet"),
  34744. name: "Maw",
  34745. image: {
  34746. source: "./media/characters/sini/maw-anthro.svg"
  34747. },
  34748. form: "anthro"
  34749. },
  34750. dick: {
  34751. height: math.unit(1.45, "feet"),
  34752. name: "Dick",
  34753. image: {
  34754. source: "./media/characters/sini/dick-anthro.svg"
  34755. },
  34756. form: "anthro"
  34757. },
  34758. feral: {
  34759. height: math.unit(16, "feet"),
  34760. name: "Feral",
  34761. image: {
  34762. source: "./media/characters/sini/feral.svg",
  34763. extra: 814/605,
  34764. bottom: 11/825
  34765. },
  34766. form: "feral",
  34767. default: true
  34768. },
  34769. feralNsfw: {
  34770. height: math.unit(16, "feet"),
  34771. name: "Feral (NSFW)",
  34772. image: {
  34773. source: "./media/characters/sini/feral-nsfw.svg",
  34774. extra: 814/605,
  34775. bottom: 11/825
  34776. },
  34777. form: "feral"
  34778. },
  34779. mawFeral: {
  34780. height: math.unit(5.66, "feet"),
  34781. name: "Maw",
  34782. image: {
  34783. source: "./media/characters/sini/maw-feral.svg"
  34784. },
  34785. form: "feral",
  34786. },
  34787. pawFeral: {
  34788. height: math.unit(5.17, "feet"),
  34789. name: "Paw",
  34790. image: {
  34791. source: "./media/characters/sini/paw-feral.svg"
  34792. },
  34793. form: "feral",
  34794. },
  34795. rumpFeral: {
  34796. height: math.unit(13.11, "feet"),
  34797. name: "Rump",
  34798. image: {
  34799. source: "./media/characters/sini/rump-feral.svg"
  34800. },
  34801. form: "feral",
  34802. },
  34803. dickFeral: {
  34804. height: math.unit(1, "feet"),
  34805. name: "Dick",
  34806. image: {
  34807. source: "./media/characters/sini/dick-feral.svg"
  34808. },
  34809. form: "feral",
  34810. },
  34811. eyeFeral: {
  34812. height: math.unit(1.23, "feet"),
  34813. name: "Eye",
  34814. image: {
  34815. source: "./media/characters/sini/eye-feral.svg"
  34816. },
  34817. form: "feral",
  34818. },
  34819. },
  34820. [
  34821. {
  34822. name: "Normal",
  34823. height: math.unit(7, "feet"),
  34824. default: true,
  34825. form: "anthro"
  34826. },
  34827. {
  34828. name: "Normal",
  34829. height: math.unit(16, "feet"),
  34830. default: true,
  34831. form: "feral"
  34832. },
  34833. ],
  34834. {
  34835. "anthro": {
  34836. name: "Anthro",
  34837. default: true
  34838. },
  34839. "feral": {
  34840. name: "Feral",
  34841. }
  34842. }
  34843. ))
  34844. characterMakers.push(() => makeCharacter(
  34845. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  34846. {
  34847. side: {
  34848. height: math.unit(47.2, "meters"),
  34849. weight: math.unit(10000, "tons"),
  34850. name: "Side",
  34851. image: {
  34852. source: "./media/characters/raylldo/side.svg",
  34853. extra: 2363/642,
  34854. bottom: 221/2584
  34855. }
  34856. },
  34857. top: {
  34858. height: math.unit(240, "meters"),
  34859. weight: math.unit(10000, "tons"),
  34860. name: "Top",
  34861. image: {
  34862. source: "./media/characters/raylldo/top.svg"
  34863. }
  34864. },
  34865. bottom: {
  34866. height: math.unit(240, "meters"),
  34867. weight: math.unit(10000, "tons"),
  34868. name: "Bottom",
  34869. image: {
  34870. source: "./media/characters/raylldo/bottom.svg"
  34871. }
  34872. },
  34873. head: {
  34874. height: math.unit(38.6, "meters"),
  34875. name: "Head",
  34876. image: {
  34877. source: "./media/characters/raylldo/head.svg",
  34878. extra: 1335/1112,
  34879. bottom: 0/1335
  34880. }
  34881. },
  34882. maw: {
  34883. height: math.unit(16.37, "meters"),
  34884. name: "Maw",
  34885. image: {
  34886. source: "./media/characters/raylldo/maw.svg",
  34887. extra: 883/660,
  34888. bottom: 0/883
  34889. },
  34890. extraAttributes: {
  34891. preyCapacity: {
  34892. name: "Capacity",
  34893. power: 3,
  34894. type: "volume",
  34895. base: math.unit(1000, "people")
  34896. },
  34897. tongueSize: {
  34898. name: "Tongue Size",
  34899. power: 2,
  34900. type: "area",
  34901. base: math.unit(21, "m^2")
  34902. }
  34903. }
  34904. },
  34905. forepaw: {
  34906. height: math.unit(18, "meters"),
  34907. name: "Forepaw",
  34908. image: {
  34909. source: "./media/characters/raylldo/forepaw.svg"
  34910. }
  34911. },
  34912. hindpaw: {
  34913. height: math.unit(23, "meters"),
  34914. name: "Hindpaw",
  34915. image: {
  34916. source: "./media/characters/raylldo/hindpaw.svg"
  34917. }
  34918. },
  34919. genitals: {
  34920. height: math.unit(42, "meters"),
  34921. name: "Genitals",
  34922. image: {
  34923. source: "./media/characters/raylldo/genitals.svg"
  34924. }
  34925. },
  34926. },
  34927. [
  34928. {
  34929. name: "Normal",
  34930. height: math.unit(47.2, "meters"),
  34931. default: true
  34932. },
  34933. ]
  34934. ))
  34935. characterMakers.push(() => makeCharacter(
  34936. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  34937. {
  34938. anthroFront: {
  34939. height: math.unit(9, "feet"),
  34940. weight: math.unit(600, "lb"),
  34941. name: "Anthro (Front)",
  34942. image: {
  34943. source: "./media/characters/glint/anthro-front.svg",
  34944. extra: 1097/1018,
  34945. bottom: 28/1125
  34946. }
  34947. },
  34948. anthroBack: {
  34949. height: math.unit(9, "feet"),
  34950. weight: math.unit(600, "lb"),
  34951. name: "Anthro (Back)",
  34952. image: {
  34953. source: "./media/characters/glint/anthro-back.svg",
  34954. extra: 1154/997,
  34955. bottom: 36/1190
  34956. }
  34957. },
  34958. feral: {
  34959. height: math.unit(11, "feet"),
  34960. weight: math.unit(50000, "lb"),
  34961. name: "Feral",
  34962. image: {
  34963. source: "./media/characters/glint/feral.svg",
  34964. extra: 3035/1585,
  34965. bottom: 1169/4204
  34966. }
  34967. },
  34968. dickAnthro: {
  34969. height: math.unit(0.7, "meters"),
  34970. name: "Dick (Anthro)",
  34971. image: {
  34972. source: "./media/characters/glint/dick-anthro.svg"
  34973. }
  34974. },
  34975. dickFeral: {
  34976. height: math.unit(2.65, "meters"),
  34977. name: "Dick (Feral)",
  34978. image: {
  34979. source: "./media/characters/glint/dick-feral.svg"
  34980. }
  34981. },
  34982. slitHidden: {
  34983. height: math.unit(5.85, "meters"),
  34984. name: "Slit (Hidden)",
  34985. image: {
  34986. source: "./media/characters/glint/slit-hidden.svg"
  34987. }
  34988. },
  34989. slitErect: {
  34990. height: math.unit(5.85, "meters"),
  34991. name: "Slit (Erect)",
  34992. image: {
  34993. source: "./media/characters/glint/slit-erect.svg"
  34994. }
  34995. },
  34996. mawAnthro: {
  34997. height: math.unit(0.63, "meters"),
  34998. name: "Maw (Anthro)",
  34999. image: {
  35000. source: "./media/characters/glint/maw.svg"
  35001. }
  35002. },
  35003. mawFeral: {
  35004. height: math.unit(2.89, "meters"),
  35005. name: "Maw (Feral)",
  35006. image: {
  35007. source: "./media/characters/glint/maw.svg"
  35008. }
  35009. },
  35010. },
  35011. [
  35012. {
  35013. name: "Normal",
  35014. height: math.unit(9, "feet"),
  35015. default: true
  35016. },
  35017. ]
  35018. ))
  35019. characterMakers.push(() => makeCharacter(
  35020. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  35021. {
  35022. side: {
  35023. height: math.unit(15, "feet"),
  35024. weight: math.unit(5000, "kg"),
  35025. name: "Side",
  35026. image: {
  35027. source: "./media/characters/kairne/side.svg",
  35028. extra: 979/811,
  35029. bottom: 13/992
  35030. }
  35031. },
  35032. front: {
  35033. height: math.unit(15, "feet"),
  35034. weight: math.unit(5000, "kg"),
  35035. name: "Front",
  35036. image: {
  35037. source: "./media/characters/kairne/front.svg",
  35038. extra: 908/814,
  35039. bottom: 26/934
  35040. }
  35041. },
  35042. sideNsfw: {
  35043. height: math.unit(15, "feet"),
  35044. weight: math.unit(5000, "kg"),
  35045. name: "Side (NSFW)",
  35046. image: {
  35047. source: "./media/characters/kairne/side-nsfw.svg",
  35048. extra: 979/811,
  35049. bottom: 13/992
  35050. }
  35051. },
  35052. frontNsfw: {
  35053. height: math.unit(15, "feet"),
  35054. weight: math.unit(5000, "kg"),
  35055. name: "Front (NSFW)",
  35056. image: {
  35057. source: "./media/characters/kairne/front-nsfw.svg",
  35058. extra: 908/814,
  35059. bottom: 26/934
  35060. }
  35061. },
  35062. dickCaged: {
  35063. height: math.unit(0.65, "meters"),
  35064. name: "Dick-caged",
  35065. image: {
  35066. source: "./media/characters/kairne/dick-caged.svg"
  35067. }
  35068. },
  35069. dick: {
  35070. height: math.unit(0.79, "meters"),
  35071. name: "Dick",
  35072. image: {
  35073. source: "./media/characters/kairne/dick.svg"
  35074. }
  35075. },
  35076. genitals: {
  35077. height: math.unit(1.29, "meters"),
  35078. name: "Genitals",
  35079. image: {
  35080. source: "./media/characters/kairne/genitals.svg"
  35081. }
  35082. },
  35083. maw: {
  35084. height: math.unit(1.73, "meters"),
  35085. name: "Maw",
  35086. image: {
  35087. source: "./media/characters/kairne/maw.svg"
  35088. }
  35089. },
  35090. },
  35091. [
  35092. {
  35093. name: "Normal",
  35094. height: math.unit(15, "feet"),
  35095. default: true
  35096. },
  35097. ]
  35098. ))
  35099. characterMakers.push(() => makeCharacter(
  35100. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  35101. {
  35102. front: {
  35103. height: math.unit(5 + 8/12, "feet"),
  35104. weight: math.unit(139, "lb"),
  35105. name: "Front",
  35106. image: {
  35107. source: "./media/characters/biscuit-jackal/front.svg",
  35108. extra: 2106/1961,
  35109. bottom: 58/2164
  35110. }
  35111. },
  35112. back: {
  35113. height: math.unit(5 + 8/12, "feet"),
  35114. weight: math.unit(139, "lb"),
  35115. name: "Back",
  35116. image: {
  35117. source: "./media/characters/biscuit-jackal/back.svg",
  35118. extra: 2132/1976,
  35119. bottom: 57/2189
  35120. }
  35121. },
  35122. werejackal: {
  35123. height: math.unit(6 + 3/12, "feet"),
  35124. weight: math.unit(188, "lb"),
  35125. name: "Werejackal",
  35126. image: {
  35127. source: "./media/characters/biscuit-jackal/werejackal.svg",
  35128. extra: 2373/2178,
  35129. bottom: 53/2426
  35130. }
  35131. },
  35132. },
  35133. [
  35134. {
  35135. name: "Normal",
  35136. height: math.unit(5 + 8/12, "feet"),
  35137. default: true
  35138. },
  35139. ]
  35140. ))
  35141. characterMakers.push(() => makeCharacter(
  35142. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  35143. {
  35144. front: {
  35145. height: math.unit(140, "cm"),
  35146. weight: math.unit(45, "kg"),
  35147. name: "Front",
  35148. image: {
  35149. source: "./media/characters/tayra-white/front.svg",
  35150. extra: 2229/2192,
  35151. bottom: 75/2304
  35152. }
  35153. },
  35154. },
  35155. [
  35156. {
  35157. name: "Normal",
  35158. height: math.unit(140, "cm"),
  35159. default: true
  35160. },
  35161. ]
  35162. ))
  35163. characterMakers.push(() => makeCharacter(
  35164. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  35165. {
  35166. front: {
  35167. height: math.unit(4 + 5/12, "feet"),
  35168. name: "Front",
  35169. image: {
  35170. source: "./media/characters/scoop/front.svg",
  35171. extra: 1257/1136,
  35172. bottom: 69/1326
  35173. }
  35174. },
  35175. back: {
  35176. height: math.unit(4 + 5/12, "feet"),
  35177. name: "Back",
  35178. image: {
  35179. source: "./media/characters/scoop/back.svg",
  35180. extra: 1321/1152,
  35181. bottom: 32/1353
  35182. }
  35183. },
  35184. maw: {
  35185. height: math.unit(0.68, "feet"),
  35186. name: "Maw",
  35187. image: {
  35188. source: "./media/characters/scoop/maw.svg"
  35189. }
  35190. },
  35191. },
  35192. [
  35193. {
  35194. name: "Really Small",
  35195. height: math.unit(1, "mm")
  35196. },
  35197. {
  35198. name: "Micro",
  35199. height: math.unit(1, "inch")
  35200. },
  35201. {
  35202. name: "Normal",
  35203. height: math.unit(4 + 5/12, "feet"),
  35204. default: true
  35205. },
  35206. {
  35207. name: "Macro",
  35208. height: math.unit(200, "feet")
  35209. },
  35210. {
  35211. name: "Megamacro",
  35212. height: math.unit(3240, "feet")
  35213. },
  35214. {
  35215. name: "Teramacro",
  35216. height: math.unit(2500, "miles")
  35217. },
  35218. ]
  35219. ))
  35220. characterMakers.push(() => makeCharacter(
  35221. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  35222. {
  35223. front: {
  35224. height: math.unit(15 + 7/12, "feet"),
  35225. weight: math.unit(1150, "tons"),
  35226. name: "Front",
  35227. image: {
  35228. source: "./media/characters/saphinara/front.svg",
  35229. extra: 1837/1643,
  35230. bottom: 84/1921
  35231. },
  35232. form: "normal",
  35233. default: true
  35234. },
  35235. side: {
  35236. height: math.unit(15 + 7/12, "feet"),
  35237. weight: math.unit(1150, "tons"),
  35238. name: "Side",
  35239. image: {
  35240. source: "./media/characters/saphinara/side.svg",
  35241. extra: 605/547,
  35242. bottom: 6/611
  35243. },
  35244. form: "normal"
  35245. },
  35246. back: {
  35247. height: math.unit(15 + 7/12, "feet"),
  35248. weight: math.unit(1150, "tons"),
  35249. name: "Back",
  35250. image: {
  35251. source: "./media/characters/saphinara/back.svg",
  35252. extra: 591/531,
  35253. bottom: 13/604
  35254. },
  35255. form: "normal"
  35256. },
  35257. frontTail: {
  35258. height: math.unit(15 + 7/12, "feet"),
  35259. weight: math.unit(1150, "tons"),
  35260. name: "Front (Full Tail)",
  35261. image: {
  35262. source: "./media/characters/saphinara/front-tail.svg",
  35263. extra: 2256/1630,
  35264. bottom: 261/2517
  35265. },
  35266. form: "normal"
  35267. },
  35268. insides: {
  35269. height: math.unit(11.92, "feet"),
  35270. name: "Insides",
  35271. image: {
  35272. source: "./media/characters/saphinara/insides.svg"
  35273. },
  35274. form: "normal"
  35275. },
  35276. head: {
  35277. height: math.unit(4.17, "feet"),
  35278. name: "Head",
  35279. image: {
  35280. source: "./media/characters/saphinara/head.svg"
  35281. },
  35282. form: "normal"
  35283. },
  35284. tongue: {
  35285. height: math.unit(4.60, "feet"),
  35286. name: "Tongue",
  35287. image: {
  35288. source: "./media/characters/saphinara/tongue.svg"
  35289. },
  35290. form: "normal"
  35291. },
  35292. headEnraged: {
  35293. height: math.unit(5.55, "feet"),
  35294. name: "Head (Enraged)",
  35295. image: {
  35296. source: "./media/characters/saphinara/head-enraged.svg"
  35297. },
  35298. form: "normal"
  35299. },
  35300. wings: {
  35301. height: math.unit(11.95, "feet"),
  35302. name: "Wings",
  35303. image: {
  35304. source: "./media/characters/saphinara/wings.svg"
  35305. },
  35306. form: "normal"
  35307. },
  35308. feathers: {
  35309. height: math.unit(8.92, "feet"),
  35310. name: "Feathers",
  35311. image: {
  35312. source: "./media/characters/saphinara/feathers.svg"
  35313. },
  35314. form: "normal"
  35315. },
  35316. shackles: {
  35317. height: math.unit(2, "feet"),
  35318. name: "Shackles",
  35319. image: {
  35320. source: "./media/characters/saphinara/shackles.svg"
  35321. },
  35322. form: "normal"
  35323. },
  35324. eyes: {
  35325. height: math.unit(1.331, "feet"),
  35326. name: "Eyes",
  35327. image: {
  35328. source: "./media/characters/saphinara/eyes.svg"
  35329. },
  35330. form: "normal"
  35331. },
  35332. eyesEnraged: {
  35333. height: math.unit(1.331, "feet"),
  35334. name: "Eyes (Enraged)",
  35335. image: {
  35336. source: "./media/characters/saphinara/eyes-enraged.svg"
  35337. },
  35338. form: "normal"
  35339. },
  35340. trueFormSide: {
  35341. height: math.unit(200, "feet"),
  35342. weight: math.unit(1e7, "tons"),
  35343. name: "Side",
  35344. image: {
  35345. source: "./media/characters/saphinara/true-form-side.svg",
  35346. extra: 1399/770,
  35347. bottom: 97/1496
  35348. },
  35349. form: "true-form",
  35350. default: true
  35351. },
  35352. trueFormMaw: {
  35353. height: math.unit(71.5, "feet"),
  35354. name: "Maw",
  35355. image: {
  35356. source: "./media/characters/saphinara/true-form-maw.svg",
  35357. extra: 2302/1453,
  35358. bottom: 0/2302
  35359. },
  35360. form: "true-form"
  35361. },
  35362. meowberusSide: {
  35363. height: math.unit(75, "feet"),
  35364. weight: math.unit(180000, "kg"),
  35365. preyCapacity: math.unit(50000, "people"),
  35366. name: "Side",
  35367. image: {
  35368. source: "./media/characters/saphinara/meowberus-side.svg",
  35369. extra: 1400/711,
  35370. bottom: 126/1526
  35371. },
  35372. form: "meowberus",
  35373. extraAttributes: {
  35374. "pawArea": {
  35375. name: "Paw Size",
  35376. power: 2,
  35377. type: "area",
  35378. base: math.unit(35, "m^2")
  35379. }
  35380. }
  35381. },
  35382. },
  35383. [
  35384. {
  35385. name: "Normal",
  35386. height: math.unit(15 + 7/12, "feet"),
  35387. default: true,
  35388. form: "normal"
  35389. },
  35390. {
  35391. name: "Angry",
  35392. height: math.unit(30 + 6/12, "feet"),
  35393. form: "normal"
  35394. },
  35395. {
  35396. name: "Enraged",
  35397. height: math.unit(102 + 1/12, "feet"),
  35398. form: "normal"
  35399. },
  35400. {
  35401. name: "True",
  35402. height: math.unit(200, "feet"),
  35403. default: true,
  35404. form: "true-form"
  35405. },
  35406. {
  35407. name: "Normal",
  35408. height: math.unit(75, "feet"),
  35409. default: true,
  35410. form: "meowberus"
  35411. },
  35412. ],
  35413. {
  35414. "normal": {
  35415. name: "Normal",
  35416. default: true
  35417. },
  35418. "true-form": {
  35419. name: "True Form"
  35420. },
  35421. "meowberus": {
  35422. name: "Meowberus",
  35423. },
  35424. }
  35425. ))
  35426. characterMakers.push(() => makeCharacter(
  35427. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  35428. {
  35429. front: {
  35430. height: math.unit(6 + 8/12, "feet"),
  35431. weight: math.unit(300, "lb"),
  35432. name: "Front",
  35433. image: {
  35434. source: "./media/characters/jrain/front.svg",
  35435. extra: 3039/2865,
  35436. bottom: 399/3438
  35437. }
  35438. },
  35439. back: {
  35440. height: math.unit(6 + 8/12, "feet"),
  35441. weight: math.unit(300, "lb"),
  35442. name: "Back",
  35443. image: {
  35444. source: "./media/characters/jrain/back.svg",
  35445. extra: 3089/2938,
  35446. bottom: 172/3261
  35447. }
  35448. },
  35449. head: {
  35450. height: math.unit(2.14, "feet"),
  35451. name: "Head",
  35452. image: {
  35453. source: "./media/characters/jrain/head.svg"
  35454. }
  35455. },
  35456. maw: {
  35457. height: math.unit(1.77, "feet"),
  35458. name: "Maw",
  35459. image: {
  35460. source: "./media/characters/jrain/maw.svg"
  35461. }
  35462. },
  35463. leftHand: {
  35464. height: math.unit(1.1, "feet"),
  35465. name: "Left Hand",
  35466. image: {
  35467. source: "./media/characters/jrain/left-hand.svg"
  35468. }
  35469. },
  35470. rightHand: {
  35471. height: math.unit(1.1, "feet"),
  35472. name: "Right Hand",
  35473. image: {
  35474. source: "./media/characters/jrain/right-hand.svg"
  35475. }
  35476. },
  35477. eye: {
  35478. height: math.unit(0.35, "feet"),
  35479. name: "Eye",
  35480. image: {
  35481. source: "./media/characters/jrain/eye.svg"
  35482. }
  35483. },
  35484. },
  35485. [
  35486. {
  35487. name: "Normal",
  35488. height: math.unit(6 + 8/12, "feet"),
  35489. default: true
  35490. },
  35491. {
  35492. name: "Casually Large",
  35493. height: math.unit(25, "feet")
  35494. },
  35495. {
  35496. name: "Giant",
  35497. height: math.unit(100, "feet")
  35498. },
  35499. {
  35500. name: "Kaiju",
  35501. height: math.unit(300, "feet")
  35502. },
  35503. ]
  35504. ))
  35505. characterMakers.push(() => makeCharacter(
  35506. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  35507. {
  35508. dragon: {
  35509. height: math.unit(5, "meters"),
  35510. name: "Dragon",
  35511. image: {
  35512. source: "./media/characters/sabrina/dragon.svg",
  35513. extra: 3670 / 2365,
  35514. bottom: 333 / 4003
  35515. }
  35516. },
  35517. gryphon: {
  35518. height: math.unit(3, "meters"),
  35519. name: "Gryphon",
  35520. image: {
  35521. source: "./media/characters/sabrina/gryphon.svg",
  35522. extra: 1576 / 945,
  35523. bottom: 71 / 1647
  35524. }
  35525. },
  35526. snake: {
  35527. height: math.unit(12, "meters"),
  35528. name: "Snake",
  35529. image: {
  35530. source: "./media/characters/sabrina/snake.svg",
  35531. extra: 1758 / 1320,
  35532. bottom: 186 / 1944
  35533. }
  35534. },
  35535. collar: {
  35536. height: math.unit(1.86, "meters"),
  35537. name: "Collar",
  35538. image: {
  35539. source: "./media/characters/sabrina/collar.svg"
  35540. }
  35541. },
  35542. eye: {
  35543. height: math.unit(0.53, "meters"),
  35544. name: "Eye",
  35545. image: {
  35546. source: "./media/characters/sabrina/eye.svg"
  35547. }
  35548. },
  35549. foot: {
  35550. height: math.unit(1.86, "meters"),
  35551. name: "Foot",
  35552. image: {
  35553. source: "./media/characters/sabrina/foot.svg"
  35554. }
  35555. },
  35556. hand: {
  35557. height: math.unit(1.32, "meters"),
  35558. name: "Hand",
  35559. image: {
  35560. source: "./media/characters/sabrina/hand.svg"
  35561. }
  35562. },
  35563. head: {
  35564. height: math.unit(2.44, "meters"),
  35565. name: "Head",
  35566. image: {
  35567. source: "./media/characters/sabrina/head.svg"
  35568. }
  35569. },
  35570. headAngry: {
  35571. height: math.unit(2.44, "meters"),
  35572. name: "Head (Angry))",
  35573. image: {
  35574. source: "./media/characters/sabrina/head-angry.svg"
  35575. }
  35576. },
  35577. maw: {
  35578. height: math.unit(1.65, "meters"),
  35579. name: "Maw",
  35580. image: {
  35581. source: "./media/characters/sabrina/maw.svg"
  35582. }
  35583. },
  35584. spikes: {
  35585. height: math.unit(1.69, "meters"),
  35586. name: "Spikes",
  35587. image: {
  35588. source: "./media/characters/sabrina/spikes.svg"
  35589. }
  35590. },
  35591. stomach: {
  35592. height: math.unit(1.15, "meters"),
  35593. name: "Stomach",
  35594. image: {
  35595. source: "./media/characters/sabrina/stomach.svg"
  35596. }
  35597. },
  35598. tongue: {
  35599. height: math.unit(1.27, "meters"),
  35600. name: "Tongue",
  35601. image: {
  35602. source: "./media/characters/sabrina/tongue.svg"
  35603. }
  35604. },
  35605. wingDorsal: {
  35606. height: math.unit(4.85, "meters"),
  35607. name: "Wing (Dorsal)",
  35608. image: {
  35609. source: "./media/characters/sabrina/wing-dorsal.svg"
  35610. }
  35611. },
  35612. wingVentral: {
  35613. height: math.unit(4.85, "meters"),
  35614. name: "Wing (Ventral)",
  35615. image: {
  35616. source: "./media/characters/sabrina/wing-ventral.svg"
  35617. }
  35618. },
  35619. },
  35620. [
  35621. {
  35622. name: "Normal",
  35623. height: math.unit(5, "meters"),
  35624. default: true
  35625. },
  35626. ]
  35627. ))
  35628. characterMakers.push(() => makeCharacter(
  35629. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  35630. {
  35631. frontMaid: {
  35632. height: math.unit(5 + 5/12, "feet"),
  35633. weight: math.unit(130, "lb"),
  35634. name: "Front (Maid)",
  35635. image: {
  35636. source: "./media/characters/midnight-tales/front-maid.svg",
  35637. extra: 489/454,
  35638. bottom: 61/550
  35639. }
  35640. },
  35641. frontFormal: {
  35642. height: math.unit(5 + 5/12, "feet"),
  35643. weight: math.unit(130, "lb"),
  35644. name: "Front (Formal)",
  35645. image: {
  35646. source: "./media/characters/midnight-tales/front-formal.svg",
  35647. extra: 489/454,
  35648. bottom: 61/550
  35649. }
  35650. },
  35651. back: {
  35652. height: math.unit(5 + 5/12, "feet"),
  35653. weight: math.unit(130, "lb"),
  35654. name: "Back",
  35655. image: {
  35656. source: "./media/characters/midnight-tales/back.svg",
  35657. extra: 498/456,
  35658. bottom: 33/531
  35659. }
  35660. },
  35661. frontBeast: {
  35662. height: math.unit(40, "feet"),
  35663. weight: math.unit(64000, "lb"),
  35664. name: "Front (Beast)",
  35665. image: {
  35666. source: "./media/characters/midnight-tales/front-beast.svg",
  35667. extra: 927/860,
  35668. bottom: 53/980
  35669. }
  35670. },
  35671. backBeast: {
  35672. height: math.unit(40, "feet"),
  35673. weight: math.unit(64000, "lb"),
  35674. name: "Back (Beast)",
  35675. image: {
  35676. source: "./media/characters/midnight-tales/back-beast.svg",
  35677. extra: 929/855,
  35678. bottom: 16/945
  35679. }
  35680. },
  35681. footBeast: {
  35682. height: math.unit(6.7, "feet"),
  35683. name: "Foot (Beast)",
  35684. image: {
  35685. source: "./media/characters/midnight-tales/foot-beast.svg"
  35686. }
  35687. },
  35688. headBeast: {
  35689. height: math.unit(8, "feet"),
  35690. name: "Head (Beast)",
  35691. image: {
  35692. source: "./media/characters/midnight-tales/head-beast.svg"
  35693. }
  35694. },
  35695. },
  35696. [
  35697. {
  35698. name: "Normal",
  35699. height: math.unit(5 + 5 / 12, "feet"),
  35700. default: true
  35701. },
  35702. {
  35703. name: "Macro",
  35704. height: math.unit(25, "feet")
  35705. },
  35706. ]
  35707. ))
  35708. characterMakers.push(() => makeCharacter(
  35709. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  35710. {
  35711. front: {
  35712. height: math.unit(5 + 10/12, "feet"),
  35713. name: "Front",
  35714. image: {
  35715. source: "./media/characters/argon/front.svg",
  35716. extra: 2009/1935,
  35717. bottom: 118/2127
  35718. }
  35719. },
  35720. back: {
  35721. height: math.unit(5 + 10/12, "feet"),
  35722. name: "Back",
  35723. image: {
  35724. source: "./media/characters/argon/back.svg",
  35725. extra: 2047/1992,
  35726. bottom: 20/2067
  35727. }
  35728. },
  35729. frontDressed: {
  35730. height: math.unit(5 + 10/12, "feet"),
  35731. name: "Front (Dressed)",
  35732. image: {
  35733. source: "./media/characters/argon/front-dressed.svg",
  35734. extra: 2009/1935,
  35735. bottom: 118/2127
  35736. }
  35737. },
  35738. },
  35739. [
  35740. {
  35741. name: "Normal",
  35742. height: math.unit(5 + 10/12, "feet"),
  35743. default: true
  35744. },
  35745. ]
  35746. ))
  35747. characterMakers.push(() => makeCharacter(
  35748. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  35749. {
  35750. front: {
  35751. height: math.unit(8 + 6/12, "feet"),
  35752. weight: math.unit(1150, "lb"),
  35753. name: "Front",
  35754. image: {
  35755. source: "./media/characters/kichi/front.svg",
  35756. extra: 1267/1164,
  35757. bottom: 61/1328
  35758. }
  35759. },
  35760. back: {
  35761. height: math.unit(8 + 6/12, "feet"),
  35762. weight: math.unit(1150, "lb"),
  35763. name: "Back",
  35764. image: {
  35765. source: "./media/characters/kichi/back.svg",
  35766. extra: 1273/1166,
  35767. bottom: 33/1306
  35768. }
  35769. },
  35770. },
  35771. [
  35772. {
  35773. name: "Normal",
  35774. height: math.unit(8 + 6/12, "feet"),
  35775. default: true
  35776. },
  35777. ]
  35778. ))
  35779. characterMakers.push(() => makeCharacter(
  35780. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  35781. {
  35782. front: {
  35783. height: math.unit(6, "feet"),
  35784. weight: math.unit(210, "lb"),
  35785. name: "Front",
  35786. image: {
  35787. source: "./media/characters/manetel-greyscale/front.svg",
  35788. extra: 350/312,
  35789. bottom: 8/358
  35790. }
  35791. },
  35792. },
  35793. [
  35794. {
  35795. name: "Micro",
  35796. height: math.unit(2, "inches")
  35797. },
  35798. {
  35799. name: "Normal",
  35800. height: math.unit(6, "feet"),
  35801. default: true
  35802. },
  35803. {
  35804. name: "Minimacro",
  35805. height: math.unit(17, "feet")
  35806. },
  35807. {
  35808. name: "Macro",
  35809. height: math.unit(117, "feet")
  35810. },
  35811. ]
  35812. ))
  35813. characterMakers.push(() => makeCharacter(
  35814. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  35815. {
  35816. side: {
  35817. height: math.unit(5 + 1/12, "feet"),
  35818. weight: math.unit(418, "lb"),
  35819. name: "Side",
  35820. image: {
  35821. source: "./media/characters/softpurr/side.svg",
  35822. extra: 1993/1945,
  35823. bottom: 134/2127
  35824. }
  35825. },
  35826. front: {
  35827. height: math.unit(5 + 1/12, "feet"),
  35828. weight: math.unit(418, "lb"),
  35829. name: "Front",
  35830. image: {
  35831. source: "./media/characters/softpurr/front.svg",
  35832. extra: 1950/1856,
  35833. bottom: 174/2124
  35834. }
  35835. },
  35836. paw: {
  35837. height: math.unit(1, "feet"),
  35838. name: "Paw",
  35839. image: {
  35840. source: "./media/characters/softpurr/paw.svg"
  35841. }
  35842. },
  35843. },
  35844. [
  35845. {
  35846. name: "Normal",
  35847. height: math.unit(5 + 1/12, "feet"),
  35848. default: true
  35849. },
  35850. ]
  35851. ))
  35852. characterMakers.push(() => makeCharacter(
  35853. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  35854. {
  35855. front: {
  35856. height: math.unit(260, "meters"),
  35857. name: "Front",
  35858. image: {
  35859. source: "./media/characters/anahita/front.svg",
  35860. extra: 665/635,
  35861. bottom: 89/754
  35862. }
  35863. },
  35864. },
  35865. [
  35866. {
  35867. name: "Macro",
  35868. height: math.unit(260, "meters"),
  35869. default: true
  35870. },
  35871. ]
  35872. ))
  35873. characterMakers.push(() => makeCharacter(
  35874. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  35875. {
  35876. front: {
  35877. height: math.unit(4 + 10/12, "feet"),
  35878. weight: math.unit(160, "lb"),
  35879. name: "Front",
  35880. image: {
  35881. source: "./media/characters/chip-mouse/front.svg",
  35882. extra: 3528/3408,
  35883. bottom: 0/3528
  35884. }
  35885. },
  35886. frontNsfw: {
  35887. height: math.unit(4 + 10/12, "feet"),
  35888. weight: math.unit(160, "lb"),
  35889. name: "Front (NSFW)",
  35890. image: {
  35891. source: "./media/characters/chip-mouse/front-nsfw.svg",
  35892. extra: 3528/3408,
  35893. bottom: 0/3528
  35894. }
  35895. },
  35896. },
  35897. [
  35898. {
  35899. name: "Normal",
  35900. height: math.unit(4 + 10/12, "feet"),
  35901. default: true
  35902. },
  35903. ]
  35904. ))
  35905. characterMakers.push(() => makeCharacter(
  35906. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  35907. {
  35908. side: {
  35909. height: math.unit(10, "feet"),
  35910. weight: math.unit(14000, "lb"),
  35911. name: "Side",
  35912. image: {
  35913. source: "./media/characters/kremm/side.svg",
  35914. extra: 1390/1053,
  35915. bottom: 90/1480
  35916. }
  35917. },
  35918. gut: {
  35919. height: math.unit(5.8, "feet"),
  35920. name: "Gut",
  35921. image: {
  35922. source: "./media/characters/kremm/gut.svg"
  35923. }
  35924. },
  35925. ass: {
  35926. height: math.unit(6.1, "feet"),
  35927. name: "Ass",
  35928. image: {
  35929. source: "./media/characters/kremm/ass.svg"
  35930. }
  35931. },
  35932. jaws: {
  35933. height: math.unit(2.2, "feet"),
  35934. name: "Jaws",
  35935. image: {
  35936. source: "./media/characters/kremm/jaws.svg"
  35937. }
  35938. },
  35939. dick: {
  35940. height: math.unit(4.26, "feet"),
  35941. name: "Dick",
  35942. image: {
  35943. source: "./media/characters/kremm/dick.svg"
  35944. }
  35945. },
  35946. },
  35947. [
  35948. {
  35949. name: "Normal",
  35950. height: math.unit(10, "feet"),
  35951. default: true
  35952. },
  35953. ]
  35954. ))
  35955. characterMakers.push(() => makeCharacter(
  35956. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  35957. {
  35958. front: {
  35959. height: math.unit(30, "stories"),
  35960. name: "Front",
  35961. image: {
  35962. source: "./media/characters/kai/front.svg",
  35963. extra: 1892/1718,
  35964. bottom: 162/2054
  35965. }
  35966. },
  35967. },
  35968. [
  35969. {
  35970. name: "Macro",
  35971. height: math.unit(30, "stories"),
  35972. default: true
  35973. },
  35974. ]
  35975. ))
  35976. characterMakers.push(() => makeCharacter(
  35977. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  35978. {
  35979. front: {
  35980. height: math.unit(6 + 4/12, "feet"),
  35981. weight: math.unit(145, "lb"),
  35982. name: "Front",
  35983. image: {
  35984. source: "./media/characters/sykes/front.svg",
  35985. extra: 1321 / 1187,
  35986. bottom: 66 / 1387
  35987. }
  35988. },
  35989. back: {
  35990. height: math.unit(6 + 4/12, "feet"),
  35991. weight: math.unit(145, "lb"),
  35992. name: "Back",
  35993. image: {
  35994. source: "./media/characters/sykes/back.svg",
  35995. extra: 1326/1181,
  35996. bottom: 31/1357
  35997. }
  35998. },
  35999. traditionalOutfit: {
  36000. height: math.unit(6 + 4/12, "feet"),
  36001. weight: math.unit(145, "lb"),
  36002. name: "Traditional Outfit",
  36003. image: {
  36004. source: "./media/characters/sykes/traditional-outfit.svg",
  36005. extra: 1321 / 1187,
  36006. bottom: 66 / 1387
  36007. }
  36008. },
  36009. adventureOutfit: {
  36010. height: math.unit(6 + 4/12, "feet"),
  36011. weight: math.unit(145, "lb"),
  36012. name: "Adventure Outfit",
  36013. image: {
  36014. source: "./media/characters/sykes/adventure-outfit.svg",
  36015. extra: 1321 / 1187,
  36016. bottom: 66 / 1387
  36017. }
  36018. },
  36019. handLeft: {
  36020. height: math.unit(0.9, "feet"),
  36021. name: "Hand (Left)",
  36022. image: {
  36023. source: "./media/characters/sykes/hand-left.svg"
  36024. }
  36025. },
  36026. handRight: {
  36027. height: math.unit(0.839, "feet"),
  36028. name: "Hand (Right)",
  36029. image: {
  36030. source: "./media/characters/sykes/hand-right.svg"
  36031. }
  36032. },
  36033. leftFoot: {
  36034. height: math.unit(1.2, "feet"),
  36035. name: "Foot (Left)",
  36036. image: {
  36037. source: "./media/characters/sykes/foot-left.svg"
  36038. }
  36039. },
  36040. rightFoot: {
  36041. height: math.unit(1.2, "feet"),
  36042. name: "Foot (Right)",
  36043. image: {
  36044. source: "./media/characters/sykes/foot-right.svg"
  36045. }
  36046. },
  36047. maw: {
  36048. height: math.unit(1.93, "feet"),
  36049. name: "Maw",
  36050. image: {
  36051. source: "./media/characters/sykes/maw.svg"
  36052. }
  36053. },
  36054. teeth: {
  36055. height: math.unit(0.51, "feet"),
  36056. name: "Teeth",
  36057. image: {
  36058. source: "./media/characters/sykes/teeth.svg"
  36059. }
  36060. },
  36061. tongue: {
  36062. height: math.unit(2.13, "feet"),
  36063. name: "Tongue",
  36064. image: {
  36065. source: "./media/characters/sykes/tongue.svg"
  36066. }
  36067. },
  36068. uvula: {
  36069. height: math.unit(0.16, "feet"),
  36070. name: "Uvula",
  36071. image: {
  36072. source: "./media/characters/sykes/uvula.svg"
  36073. }
  36074. },
  36075. collar: {
  36076. height: math.unit(0.287, "feet"),
  36077. name: "Collar",
  36078. image: {
  36079. source: "./media/characters/sykes/collar.svg"
  36080. }
  36081. },
  36082. tail: {
  36083. height: math.unit(3.8, "feet"),
  36084. name: "Tail",
  36085. image: {
  36086. source: "./media/characters/sykes/tail.svg"
  36087. }
  36088. },
  36089. },
  36090. [
  36091. {
  36092. name: "Shrunken",
  36093. height: math.unit(5, "inches")
  36094. },
  36095. {
  36096. name: "Normal",
  36097. height: math.unit(6 + 4 / 12, "feet"),
  36098. default: true
  36099. },
  36100. {
  36101. name: "Big",
  36102. height: math.unit(15, "feet")
  36103. },
  36104. ]
  36105. ))
  36106. characterMakers.push(() => makeCharacter(
  36107. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  36108. {
  36109. front: {
  36110. height: math.unit(5 + 8/12, "feet"),
  36111. weight: math.unit(190, "lb"),
  36112. name: "Front",
  36113. image: {
  36114. source: "./media/characters/oven-otter/front.svg",
  36115. extra: 1809/1740,
  36116. bottom: 181/1990
  36117. }
  36118. },
  36119. back: {
  36120. height: math.unit(5 + 8/12, "feet"),
  36121. weight: math.unit(190, "lb"),
  36122. name: "Back",
  36123. image: {
  36124. source: "./media/characters/oven-otter/back.svg",
  36125. extra: 1709/1635,
  36126. bottom: 118/1827
  36127. }
  36128. },
  36129. hand: {
  36130. height: math.unit(1.07, "feet"),
  36131. name: "Hand",
  36132. image: {
  36133. source: "./media/characters/oven-otter/hand.svg"
  36134. }
  36135. },
  36136. beans: {
  36137. height: math.unit(1.74, "feet"),
  36138. name: "Beans",
  36139. image: {
  36140. source: "./media/characters/oven-otter/beans.svg"
  36141. }
  36142. },
  36143. },
  36144. [
  36145. {
  36146. name: "Micro",
  36147. height: math.unit(0.5, "inches")
  36148. },
  36149. {
  36150. name: "Normal",
  36151. height: math.unit(5 + 8/12, "feet"),
  36152. default: true
  36153. },
  36154. {
  36155. name: "Macro",
  36156. height: math.unit(250, "feet")
  36157. },
  36158. {
  36159. name: "Really High",
  36160. height: math.unit(420, "feet")
  36161. },
  36162. ]
  36163. ))
  36164. characterMakers.push(() => makeCharacter(
  36165. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  36166. {
  36167. front: {
  36168. height: math.unit(5, "meters"),
  36169. weight: math.unit(292000000000000, "kg"),
  36170. name: "Front",
  36171. image: {
  36172. source: "./media/characters/devourer/front.svg",
  36173. extra: 1800/1733,
  36174. bottom: 211/2011
  36175. }
  36176. },
  36177. maw: {
  36178. height: math.unit(1.1, "meter"),
  36179. name: "Maw",
  36180. image: {
  36181. source: "./media/characters/devourer/maw.svg"
  36182. }
  36183. },
  36184. },
  36185. [
  36186. {
  36187. name: "Small",
  36188. height: math.unit(3, "meters")
  36189. },
  36190. {
  36191. name: "Large",
  36192. height: math.unit(5, "meters"),
  36193. default: true
  36194. },
  36195. ]
  36196. ))
  36197. characterMakers.push(() => makeCharacter(
  36198. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  36199. {
  36200. front: {
  36201. height: math.unit(6, "feet"),
  36202. weight: math.unit(400, "lb"),
  36203. name: "Front",
  36204. image: {
  36205. source: "./media/characters/ellarby/front.svg",
  36206. extra: 1909/1763,
  36207. bottom: 80/1989
  36208. }
  36209. },
  36210. back: {
  36211. height: math.unit(6, "feet"),
  36212. weight: math.unit(400, "lb"),
  36213. name: "Back",
  36214. image: {
  36215. source: "./media/characters/ellarby/back.svg",
  36216. extra: 1914/1784,
  36217. bottom: 172/2086
  36218. }
  36219. },
  36220. },
  36221. [
  36222. {
  36223. name: "Mischief",
  36224. height: math.unit(18, "inches")
  36225. },
  36226. {
  36227. name: "Trouble",
  36228. height: math.unit(12, "feet")
  36229. },
  36230. {
  36231. name: "Havoc",
  36232. height: math.unit(200, "feet"),
  36233. default: true
  36234. },
  36235. {
  36236. name: "Pandemonium",
  36237. height: math.unit(1, "mile")
  36238. },
  36239. {
  36240. name: "Catastrophe",
  36241. height: math.unit(100, "miles")
  36242. },
  36243. ]
  36244. ))
  36245. characterMakers.push(() => makeCharacter(
  36246. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  36247. {
  36248. front: {
  36249. height: math.unit(4.7, "meters"),
  36250. weight: math.unit(6500, "kg"),
  36251. name: "Front",
  36252. image: {
  36253. source: "./media/characters/vex/front.svg",
  36254. extra: 1288/1140,
  36255. bottom: 100/1388
  36256. }
  36257. },
  36258. },
  36259. [
  36260. {
  36261. name: "Normal",
  36262. height: math.unit(4.7, "meters"),
  36263. default: true
  36264. },
  36265. ]
  36266. ))
  36267. characterMakers.push(() => makeCharacter(
  36268. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  36269. {
  36270. normal: {
  36271. height: math.unit(6, "feet"),
  36272. weight: math.unit(350, "lb"),
  36273. name: "Normal",
  36274. image: {
  36275. source: "./media/characters/teshy/normal.svg",
  36276. extra: 1795/1735,
  36277. bottom: 16/1811
  36278. }
  36279. },
  36280. monsterFront: {
  36281. height: math.unit(12, "feet"),
  36282. weight: math.unit(4700, "lb"),
  36283. name: "Monster (Front)",
  36284. image: {
  36285. source: "./media/characters/teshy/monster-front.svg",
  36286. extra: 2042/2034,
  36287. bottom: 128/2170
  36288. }
  36289. },
  36290. monsterSide: {
  36291. height: math.unit(12, "feet"),
  36292. weight: math.unit(4700, "lb"),
  36293. name: "Monster (Side)",
  36294. image: {
  36295. source: "./media/characters/teshy/monster-side.svg",
  36296. extra: 2067/2056,
  36297. bottom: 70/2137
  36298. }
  36299. },
  36300. monsterBack: {
  36301. height: math.unit(12, "feet"),
  36302. weight: math.unit(4700, "lb"),
  36303. name: "Monster (Back)",
  36304. image: {
  36305. source: "./media/characters/teshy/monster-back.svg",
  36306. extra: 1921/1914,
  36307. bottom: 171/2092
  36308. }
  36309. },
  36310. },
  36311. [
  36312. {
  36313. name: "Normal",
  36314. height: math.unit(6, "feet"),
  36315. default: true
  36316. },
  36317. ]
  36318. ))
  36319. characterMakers.push(() => makeCharacter(
  36320. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  36321. {
  36322. front: {
  36323. height: math.unit(6, "feet"),
  36324. name: "Front",
  36325. image: {
  36326. source: "./media/characters/ramey/front.svg",
  36327. extra: 790/787,
  36328. bottom: 27/817
  36329. }
  36330. },
  36331. },
  36332. [
  36333. {
  36334. name: "Normal",
  36335. height: math.unit(6, "feet"),
  36336. default: true
  36337. },
  36338. ]
  36339. ))
  36340. characterMakers.push(() => makeCharacter(
  36341. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  36342. {
  36343. front: {
  36344. height: math.unit(5 + 5/12, "feet"),
  36345. weight: math.unit(120, "lb"),
  36346. name: "Front",
  36347. image: {
  36348. source: "./media/characters/phirae/front.svg",
  36349. extra: 2491/2436,
  36350. bottom: 38/2529
  36351. }
  36352. },
  36353. },
  36354. [
  36355. {
  36356. name: "Normal",
  36357. height: math.unit(5 + 5/12, "feet"),
  36358. default: true
  36359. },
  36360. ]
  36361. ))
  36362. characterMakers.push(() => makeCharacter(
  36363. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  36364. {
  36365. front: {
  36366. height: math.unit(5 + 3/12, "feet"),
  36367. name: "Front",
  36368. image: {
  36369. source: "./media/characters/stagglas/front.svg",
  36370. extra: 962/882,
  36371. bottom: 53/1015
  36372. }
  36373. },
  36374. feral: {
  36375. height: math.unit(335, "cm"),
  36376. name: "Feral",
  36377. image: {
  36378. source: "./media/characters/stagglas/feral.svg",
  36379. extra: 1732/1090,
  36380. bottom: 48/1780
  36381. }
  36382. },
  36383. },
  36384. [
  36385. {
  36386. name: "Normal",
  36387. height: math.unit(5 + 3/12, "feet"),
  36388. default: true
  36389. },
  36390. ]
  36391. ))
  36392. characterMakers.push(() => makeCharacter(
  36393. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  36394. {
  36395. front: {
  36396. height: math.unit(5 + 4/12, "feet"),
  36397. weight: math.unit(145, "lb"),
  36398. name: "Front",
  36399. image: {
  36400. source: "./media/characters/starra/front.svg",
  36401. extra: 1790/1691,
  36402. bottom: 91/1881
  36403. }
  36404. },
  36405. },
  36406. [
  36407. {
  36408. name: "Normal",
  36409. height: math.unit(5 + 4/12, "feet"),
  36410. default: true
  36411. },
  36412. ]
  36413. ))
  36414. characterMakers.push(() => makeCharacter(
  36415. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  36416. {
  36417. front: {
  36418. height: math.unit(2.2, "meters"),
  36419. name: "Front",
  36420. image: {
  36421. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  36422. extra: 1248/972,
  36423. bottom: 38/1286
  36424. }
  36425. },
  36426. },
  36427. [
  36428. {
  36429. name: "Normal",
  36430. height: math.unit(2.2, "meters"),
  36431. default: true
  36432. },
  36433. ]
  36434. ))
  36435. characterMakers.push(() => makeCharacter(
  36436. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  36437. {
  36438. side: {
  36439. height: math.unit(8 + 2/12, "feet"),
  36440. weight: math.unit(1240, "lb"),
  36441. name: "Side",
  36442. image: {
  36443. source: "./media/characters/mika-valentine/side.svg",
  36444. extra: 2670/2501,
  36445. bottom: 250/2920
  36446. }
  36447. },
  36448. },
  36449. [
  36450. {
  36451. name: "Normal",
  36452. height: math.unit(8 + 2/12, "feet"),
  36453. default: true
  36454. },
  36455. ]
  36456. ))
  36457. characterMakers.push(() => makeCharacter(
  36458. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  36459. {
  36460. front: {
  36461. height: math.unit(7 + 2/12, "feet"),
  36462. name: "Front",
  36463. image: {
  36464. source: "./media/characters/xoltol/front.svg",
  36465. extra: 2212/2124,
  36466. bottom: 84/2296
  36467. }
  36468. },
  36469. side: {
  36470. height: math.unit(7 + 2/12, "feet"),
  36471. name: "Side",
  36472. image: {
  36473. source: "./media/characters/xoltol/side.svg",
  36474. extra: 2273/2197,
  36475. bottom: 26/2299
  36476. }
  36477. },
  36478. hand: {
  36479. height: math.unit(2.5, "feet"),
  36480. name: "Hand",
  36481. image: {
  36482. source: "./media/characters/xoltol/hand.svg"
  36483. }
  36484. },
  36485. },
  36486. [
  36487. {
  36488. name: "Small-ish",
  36489. height: math.unit(5 + 11/12, "feet")
  36490. },
  36491. {
  36492. name: "Normal",
  36493. height: math.unit(7 + 2/12, "feet")
  36494. },
  36495. {
  36496. name: "\"Macro\"",
  36497. height: math.unit(14 + 9/12, "feet"),
  36498. default: true
  36499. },
  36500. {
  36501. name: "Alternate Height",
  36502. height: math.unit(20, "feet")
  36503. },
  36504. {
  36505. name: "Actually Macro",
  36506. height: math.unit(100, "feet")
  36507. },
  36508. ]
  36509. ))
  36510. characterMakers.push(() => makeCharacter(
  36511. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  36512. {
  36513. front: {
  36514. height: math.unit(5 + 2/12, "feet"),
  36515. name: "Front",
  36516. image: {
  36517. source: "./media/characters/kotetsu-redwood/front.svg",
  36518. extra: 1053/942,
  36519. bottom: 60/1113
  36520. }
  36521. },
  36522. },
  36523. [
  36524. {
  36525. name: "Normal",
  36526. height: math.unit(5 + 2/12, "feet"),
  36527. default: true
  36528. },
  36529. ]
  36530. ))
  36531. characterMakers.push(() => makeCharacter(
  36532. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  36533. {
  36534. front: {
  36535. height: math.unit(2.4, "meters"),
  36536. weight: math.unit(125, "kg"),
  36537. name: "Front",
  36538. image: {
  36539. source: "./media/characters/lilith/front.svg",
  36540. extra: 1590/1513,
  36541. bottom: 203/1793
  36542. }
  36543. },
  36544. },
  36545. [
  36546. {
  36547. name: "Humanoid",
  36548. height: math.unit(2.4, "meters")
  36549. },
  36550. {
  36551. name: "Normal",
  36552. height: math.unit(6, "meters"),
  36553. default: true
  36554. },
  36555. {
  36556. name: "Largest",
  36557. height: math.unit(55, "meters")
  36558. },
  36559. ]
  36560. ))
  36561. characterMakers.push(() => makeCharacter(
  36562. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  36563. {
  36564. front: {
  36565. height: math.unit(8 + 4/12, "feet"),
  36566. weight: math.unit(535, "lb"),
  36567. name: "Front",
  36568. image: {
  36569. source: "./media/characters/beh'kah-bolger/front.svg",
  36570. extra: 1660/1603,
  36571. bottom: 37/1697
  36572. }
  36573. },
  36574. },
  36575. [
  36576. {
  36577. name: "Normal",
  36578. height: math.unit(8 + 4/12, "feet"),
  36579. default: true
  36580. },
  36581. {
  36582. name: "Kaiju",
  36583. height: math.unit(250, "feet")
  36584. },
  36585. {
  36586. name: "Still Growing",
  36587. height: math.unit(10, "miles")
  36588. },
  36589. {
  36590. name: "Continental",
  36591. height: math.unit(5000, "miles")
  36592. },
  36593. {
  36594. name: "Final Form",
  36595. height: math.unit(2500000, "miles")
  36596. },
  36597. ]
  36598. ))
  36599. characterMakers.push(() => makeCharacter(
  36600. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  36601. {
  36602. front: {
  36603. height: math.unit(7 + 2/12, "feet"),
  36604. weight: math.unit(230, "kg"),
  36605. name: "Front",
  36606. image: {
  36607. source: "./media/characters/tatyana-milewska/front.svg",
  36608. extra: 1199/1150,
  36609. bottom: 86/1285
  36610. }
  36611. },
  36612. },
  36613. [
  36614. {
  36615. name: "Normal",
  36616. height: math.unit(7 + 2/12, "feet"),
  36617. default: true
  36618. },
  36619. {
  36620. name: "Big",
  36621. height: math.unit(12, "feet")
  36622. },
  36623. {
  36624. name: "Minimacro",
  36625. height: math.unit(20, "feet")
  36626. },
  36627. {
  36628. name: "Macro",
  36629. height: math.unit(120, "feet")
  36630. },
  36631. ]
  36632. ))
  36633. characterMakers.push(() => makeCharacter(
  36634. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  36635. {
  36636. front: {
  36637. height: math.unit(7 + 8/12, "feet"),
  36638. weight: math.unit(152, "kg"),
  36639. name: "Front",
  36640. image: {
  36641. source: "./media/characters/helen-arri/front.svg",
  36642. extra: 440/423,
  36643. bottom: 14/454
  36644. }
  36645. },
  36646. back: {
  36647. height: math.unit(7 + 8/12, "feet"),
  36648. weight: math.unit(152, "kg"),
  36649. name: "Back",
  36650. image: {
  36651. source: "./media/characters/helen-arri/back.svg",
  36652. extra: 443/426,
  36653. bottom: 8/451
  36654. }
  36655. },
  36656. },
  36657. [
  36658. {
  36659. name: "Normal",
  36660. height: math.unit(7 + 8/12, "feet"),
  36661. default: true
  36662. },
  36663. {
  36664. name: "Big",
  36665. height: math.unit(14, "feet")
  36666. },
  36667. {
  36668. name: "Minimacro",
  36669. height: math.unit(24, "feet")
  36670. },
  36671. {
  36672. name: "Macro",
  36673. height: math.unit(140, "feet")
  36674. },
  36675. ]
  36676. ))
  36677. characterMakers.push(() => makeCharacter(
  36678. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  36679. {
  36680. front: {
  36681. height: math.unit(6, "meters"),
  36682. name: "Front",
  36683. image: {
  36684. source: "./media/characters/ehanu-rehu/front.svg",
  36685. extra: 1800/1800,
  36686. bottom: 59/1859
  36687. }
  36688. },
  36689. },
  36690. [
  36691. {
  36692. name: "Normal",
  36693. height: math.unit(6, "meters"),
  36694. default: true
  36695. },
  36696. ]
  36697. ))
  36698. characterMakers.push(() => makeCharacter(
  36699. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  36700. {
  36701. front: {
  36702. height: math.unit(7 + 3/12, "feet"),
  36703. name: "Front",
  36704. image: {
  36705. source: "./media/characters/renholder/front.svg",
  36706. extra: 3096/2960,
  36707. bottom: 250/3346
  36708. }
  36709. },
  36710. },
  36711. [
  36712. {
  36713. name: "Normal Bat",
  36714. height: math.unit(7 + 3/12, "feet"),
  36715. default: true
  36716. },
  36717. {
  36718. name: "Slightly Tall Bat",
  36719. height: math.unit(100, "feet")
  36720. },
  36721. {
  36722. name: "Big Bat",
  36723. height: math.unit(1000, "feet")
  36724. },
  36725. {
  36726. name: "City-Sized Bat",
  36727. height: math.unit(200000, "feet")
  36728. },
  36729. {
  36730. name: "Bigger Bat",
  36731. height: math.unit(10000, "miles")
  36732. },
  36733. {
  36734. name: "Solar Sized Bat",
  36735. height: math.unit(100, "AU")
  36736. },
  36737. {
  36738. name: "Galactic Bat",
  36739. height: math.unit(200000, "lightyears")
  36740. },
  36741. {
  36742. name: "Universally Known Bat",
  36743. height: math.unit(1, "universe")
  36744. },
  36745. ]
  36746. ))
  36747. characterMakers.push(() => makeCharacter(
  36748. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  36749. {
  36750. front: {
  36751. height: math.unit(6 + 11/12, "feet"),
  36752. weight: math.unit(250, "lb"),
  36753. name: "Front",
  36754. image: {
  36755. source: "./media/characters/cookiecat/front.svg",
  36756. extra: 893/827,
  36757. bottom: 14/907
  36758. }
  36759. },
  36760. },
  36761. [
  36762. {
  36763. name: "Micro",
  36764. height: math.unit(3, "inches")
  36765. },
  36766. {
  36767. name: "Normal",
  36768. height: math.unit(6 + 11/12, "feet"),
  36769. default: true
  36770. },
  36771. {
  36772. name: "Macro",
  36773. height: math.unit(100, "feet")
  36774. },
  36775. {
  36776. name: "Macro+",
  36777. height: math.unit(404, "feet")
  36778. },
  36779. {
  36780. name: "Megamacro",
  36781. height: math.unit(165, "miles")
  36782. },
  36783. {
  36784. name: "Planetary",
  36785. height: math.unit(4600, "miles")
  36786. },
  36787. ]
  36788. ))
  36789. characterMakers.push(() => makeCharacter(
  36790. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  36791. {
  36792. front: {
  36793. height: math.unit(10 + 3/12, "feet"),
  36794. weight: math.unit(1500, "lb"),
  36795. name: "Front",
  36796. image: {
  36797. source: "./media/characters/tux-kusanagi/front.svg",
  36798. extra: 944/840,
  36799. bottom: 39/983
  36800. }
  36801. },
  36802. back: {
  36803. height: math.unit(10 + 3/12, "feet"),
  36804. weight: math.unit(1500, "lb"),
  36805. name: "Back",
  36806. image: {
  36807. source: "./media/characters/tux-kusanagi/back.svg",
  36808. extra: 941/842,
  36809. bottom: 28/969
  36810. }
  36811. },
  36812. rump: {
  36813. height: math.unit(5.25, "feet"),
  36814. name: "Rump",
  36815. image: {
  36816. source: "./media/characters/tux-kusanagi/rump.svg"
  36817. }
  36818. },
  36819. beak: {
  36820. height: math.unit(1.54, "feet"),
  36821. name: "Beak",
  36822. image: {
  36823. source: "./media/characters/tux-kusanagi/beak.svg"
  36824. }
  36825. },
  36826. },
  36827. [
  36828. {
  36829. name: "Normal",
  36830. height: math.unit(10 + 3/12, "feet"),
  36831. default: true
  36832. },
  36833. ]
  36834. ))
  36835. characterMakers.push(() => makeCharacter(
  36836. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  36837. {
  36838. front: {
  36839. height: math.unit(58, "feet"),
  36840. weight: math.unit(200, "tons"),
  36841. name: "Front",
  36842. image: {
  36843. source: "./media/characters/uzarmazari/front.svg",
  36844. extra: 1575/1455,
  36845. bottom: 152/1727
  36846. }
  36847. },
  36848. back: {
  36849. height: math.unit(58, "feet"),
  36850. weight: math.unit(200, "tons"),
  36851. name: "Back",
  36852. image: {
  36853. source: "./media/characters/uzarmazari/back.svg",
  36854. extra: 1585/1510,
  36855. bottom: 157/1742
  36856. }
  36857. },
  36858. head: {
  36859. height: math.unit(26, "feet"),
  36860. name: "Head",
  36861. image: {
  36862. source: "./media/characters/uzarmazari/head.svg"
  36863. }
  36864. },
  36865. },
  36866. [
  36867. {
  36868. name: "Normal",
  36869. height: math.unit(58, "feet"),
  36870. default: true
  36871. },
  36872. ]
  36873. ))
  36874. characterMakers.push(() => makeCharacter(
  36875. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  36876. {
  36877. side: {
  36878. height: math.unit(15, "feet"),
  36879. name: "Side",
  36880. image: {
  36881. source: "./media/characters/akitu/side.svg",
  36882. extra: 1421/1321,
  36883. bottom: 157/1578
  36884. }
  36885. },
  36886. front: {
  36887. height: math.unit(15, "feet"),
  36888. name: "Front",
  36889. image: {
  36890. source: "./media/characters/akitu/front.svg",
  36891. extra: 1435/1326,
  36892. bottom: 232/1667
  36893. }
  36894. },
  36895. },
  36896. [
  36897. {
  36898. name: "Normal",
  36899. height: math.unit(15, "feet"),
  36900. default: true
  36901. },
  36902. ]
  36903. ))
  36904. characterMakers.push(() => makeCharacter(
  36905. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  36906. {
  36907. front: {
  36908. height: math.unit(10 + 8/12, "feet"),
  36909. name: "Front",
  36910. image: {
  36911. source: "./media/characters/azalie-croixland/front.svg",
  36912. extra: 1972/1856,
  36913. bottom: 31/2003
  36914. }
  36915. },
  36916. },
  36917. [
  36918. {
  36919. name: "Original Height",
  36920. height: math.unit(5 + 4/12, "feet")
  36921. },
  36922. {
  36923. name: "Normal Height",
  36924. height: math.unit(10 + 8/12, "feet"),
  36925. default: true
  36926. },
  36927. ]
  36928. ))
  36929. characterMakers.push(() => makeCharacter(
  36930. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  36931. {
  36932. side: {
  36933. height: math.unit(7 + 1/12, "feet"),
  36934. weight: math.unit(245, "lb"),
  36935. name: "Side",
  36936. image: {
  36937. source: "./media/characters/kavus-kazian/side.svg",
  36938. extra: 349/342,
  36939. bottom: 15/364
  36940. }
  36941. },
  36942. },
  36943. [
  36944. {
  36945. name: "Normal",
  36946. height: math.unit(7 + 1/12, "feet"),
  36947. default: true
  36948. },
  36949. ]
  36950. ))
  36951. characterMakers.push(() => makeCharacter(
  36952. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  36953. {
  36954. normalFront: {
  36955. height: math.unit(5 + 11/12, "feet"),
  36956. name: "Front",
  36957. image: {
  36958. source: "./media/characters/moonlight-rose/normal-front.svg",
  36959. extra: 1980/1825,
  36960. bottom: 18/1998
  36961. },
  36962. form: "normal",
  36963. default: true
  36964. },
  36965. normalBack: {
  36966. height: math.unit(5 + 11/12, "feet"),
  36967. name: "Back",
  36968. image: {
  36969. source: "./media/characters/moonlight-rose/normal-back.svg",
  36970. extra: 2010/1839,
  36971. bottom: 10/2020
  36972. },
  36973. form: "normal"
  36974. },
  36975. demonFront: {
  36976. height: math.unit(1.5, "earths"),
  36977. name: "Front",
  36978. image: {
  36979. source: "./media/characters/moonlight-rose/demon.svg",
  36980. extra: 1400/1294,
  36981. bottom: 45/1445
  36982. },
  36983. form: "demon",
  36984. default: true
  36985. },
  36986. terraFront: {
  36987. height: math.unit(1.5, "earths"),
  36988. name: "Front",
  36989. image: {
  36990. source: "./media/characters/moonlight-rose/terra.svg"
  36991. },
  36992. form: "terra",
  36993. default: true
  36994. },
  36995. jupiterFront: {
  36996. height: math.unit(69911*2, "km"),
  36997. name: "Front",
  36998. image: {
  36999. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  37000. extra: 1367/1286,
  37001. bottom: 55/1422
  37002. },
  37003. form: "jupiter",
  37004. default: true
  37005. },
  37006. neptuneFront: {
  37007. height: math.unit(24622*2, "feet"),
  37008. name: "Front",
  37009. image: {
  37010. source: "./media/characters/moonlight-rose/neptune-front.svg",
  37011. extra: 1851/1712,
  37012. bottom: 0/1851
  37013. },
  37014. form: "neptune",
  37015. default: true
  37016. },
  37017. },
  37018. [
  37019. {
  37020. name: "\"Natural\" Height",
  37021. height: math.unit(5 + 11/12, "feet"),
  37022. form: "normal"
  37023. },
  37024. {
  37025. name: "Smallest comfortable size",
  37026. height: math.unit(40, "meters"),
  37027. form: "normal"
  37028. },
  37029. {
  37030. name: "Common size",
  37031. height: math.unit(50, "km"),
  37032. form: "normal",
  37033. default: true
  37034. },
  37035. {
  37036. name: "Normal",
  37037. height: math.unit(1.5, "earths"),
  37038. form: "demon",
  37039. default: true
  37040. },
  37041. {
  37042. name: "Universal",
  37043. height: math.unit(15, "universes"),
  37044. form: "demon"
  37045. },
  37046. {
  37047. name: "Earth",
  37048. height: math.unit(1.5, "earths"),
  37049. form: "terra",
  37050. default: true
  37051. },
  37052. {
  37053. name: "Super Earth",
  37054. height: math.unit(67.5, "earths"),
  37055. form: "terra"
  37056. },
  37057. {
  37058. name: "Doesn't fit in a solar system...",
  37059. height: math.unit(1, "galaxy"),
  37060. form: "terra"
  37061. },
  37062. {
  37063. name: "Saturn",
  37064. height: math.unit(58232*2, "km"),
  37065. form: "jupiter"
  37066. },
  37067. {
  37068. name: "Jupiter",
  37069. height: math.unit(69911*2, "km"),
  37070. form: "jupiter",
  37071. default: true
  37072. },
  37073. {
  37074. name: "HD 100546 b",
  37075. height: math.unit(482938, "km"),
  37076. form: "jupiter"
  37077. },
  37078. {
  37079. name: "Enceladus",
  37080. height: math.unit(513*2, "km"),
  37081. form: "neptune"
  37082. },
  37083. {
  37084. name: "Europe",
  37085. height: math.unit(1560*2, "km"),
  37086. form: "neptune"
  37087. },
  37088. {
  37089. name: "Neptune",
  37090. height: math.unit(24622*2, "km"),
  37091. form: "neptune",
  37092. default: true
  37093. },
  37094. {
  37095. name: "CoRoT-9b",
  37096. height: math.unit(75067*2, "km"),
  37097. form: "neptune"
  37098. },
  37099. ],
  37100. {
  37101. "normal": {
  37102. name: "Normal",
  37103. default: true
  37104. },
  37105. "demon": {
  37106. name: "Demon"
  37107. },
  37108. "terra": {
  37109. name: "Terra"
  37110. },
  37111. "jupiter": {
  37112. name: "Jupiter"
  37113. },
  37114. "neptune": {
  37115. name: "Neptune"
  37116. }
  37117. }
  37118. ))
  37119. characterMakers.push(() => makeCharacter(
  37120. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  37121. {
  37122. front: {
  37123. height: math.unit(16, "feet"),
  37124. weight: math.unit(610, "kg"),
  37125. name: "Front",
  37126. image: {
  37127. source: "./media/characters/huckle/front.svg",
  37128. extra: 1731/1625,
  37129. bottom: 33/1764
  37130. }
  37131. },
  37132. back: {
  37133. height: math.unit(16, "feet"),
  37134. weight: math.unit(610, "kg"),
  37135. name: "Back",
  37136. image: {
  37137. source: "./media/characters/huckle/back.svg",
  37138. extra: 1738/1651,
  37139. bottom: 37/1775
  37140. }
  37141. },
  37142. laughing: {
  37143. height: math.unit(3.75, "feet"),
  37144. name: "Laughing",
  37145. image: {
  37146. source: "./media/characters/huckle/laughing.svg"
  37147. }
  37148. },
  37149. angry: {
  37150. height: math.unit(4.15, "feet"),
  37151. name: "Angry",
  37152. image: {
  37153. source: "./media/characters/huckle/angry.svg"
  37154. }
  37155. },
  37156. },
  37157. [
  37158. {
  37159. name: "Normal",
  37160. height: math.unit(16, "feet"),
  37161. default: true
  37162. },
  37163. {
  37164. name: "Mini Macro",
  37165. height: math.unit(463, "feet")
  37166. },
  37167. {
  37168. name: "Macro",
  37169. height: math.unit(1680, "meters")
  37170. },
  37171. {
  37172. name: "Mega Macro",
  37173. height: math.unit(175, "km")
  37174. },
  37175. {
  37176. name: "Terra Macro",
  37177. height: math.unit(32, "gigameters")
  37178. },
  37179. {
  37180. name: "Multiverse+",
  37181. height: math.unit(2.56e23, "yottameters")
  37182. },
  37183. ]
  37184. ))
  37185. characterMakers.push(() => makeCharacter(
  37186. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  37187. {
  37188. front: {
  37189. height: math.unit(6 + 9/12, "feet"),
  37190. weight: math.unit(280, "lb"),
  37191. name: "Front",
  37192. image: {
  37193. source: "./media/characters/candy/front.svg",
  37194. extra: 234/217,
  37195. bottom: 11/245
  37196. }
  37197. },
  37198. },
  37199. [
  37200. {
  37201. name: "Really Small",
  37202. height: math.unit(0.1, "nm")
  37203. },
  37204. {
  37205. name: "Micro",
  37206. height: math.unit(2, "inches")
  37207. },
  37208. {
  37209. name: "Normal",
  37210. height: math.unit(6 + 9/12, "feet"),
  37211. default: true
  37212. },
  37213. {
  37214. name: "Small Macro",
  37215. height: math.unit(69, "feet")
  37216. },
  37217. {
  37218. name: "Macro",
  37219. height: math.unit(160, "feet")
  37220. },
  37221. {
  37222. name: "Megamacro",
  37223. height: math.unit(22000, "miles")
  37224. },
  37225. {
  37226. name: "Gigamacro",
  37227. height: math.unit(50000, "miles")
  37228. },
  37229. ]
  37230. ))
  37231. characterMakers.push(() => makeCharacter(
  37232. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  37233. {
  37234. front: {
  37235. height: math.unit(4, "feet"),
  37236. weight: math.unit(90, "lb"),
  37237. name: "Front",
  37238. image: {
  37239. source: "./media/characters/joey-mcdonald/front.svg",
  37240. extra: 1059/852,
  37241. bottom: 33/1092
  37242. }
  37243. },
  37244. back: {
  37245. height: math.unit(4, "feet"),
  37246. weight: math.unit(90, "lb"),
  37247. name: "Back",
  37248. image: {
  37249. source: "./media/characters/joey-mcdonald/back.svg",
  37250. extra: 1077/879,
  37251. bottom: 5/1082
  37252. }
  37253. },
  37254. frontKobold: {
  37255. height: math.unit(4, "feet"),
  37256. weight: math.unit(100, "lb"),
  37257. name: "Front-kobold",
  37258. image: {
  37259. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  37260. extra: 1480/1367,
  37261. bottom: 0/1480
  37262. }
  37263. },
  37264. backKobold: {
  37265. height: math.unit(4, "feet"),
  37266. weight: math.unit(100, "lb"),
  37267. name: "Back-kobold",
  37268. image: {
  37269. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  37270. extra: 1449/1361,
  37271. bottom: 0/1449
  37272. }
  37273. },
  37274. },
  37275. [
  37276. {
  37277. name: "Normal",
  37278. height: math.unit(4, "feet"),
  37279. default: true
  37280. },
  37281. ]
  37282. ))
  37283. characterMakers.push(() => makeCharacter(
  37284. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  37285. {
  37286. front: {
  37287. height: math.unit(12 + 6/12, "feet"),
  37288. name: "Front",
  37289. image: {
  37290. source: "./media/characters/kass-lockheed/front.svg",
  37291. extra: 354/343,
  37292. bottom: 9/363
  37293. }
  37294. },
  37295. back: {
  37296. height: math.unit(12 + 6/12, "feet"),
  37297. name: "Back",
  37298. image: {
  37299. source: "./media/characters/kass-lockheed/back.svg",
  37300. extra: 364/352,
  37301. bottom: 3/367
  37302. }
  37303. },
  37304. dick: {
  37305. height: math.unit(3.12, "feet"),
  37306. name: "Dick",
  37307. image: {
  37308. source: "./media/characters/kass-lockheed/dick.svg"
  37309. }
  37310. },
  37311. head: {
  37312. height: math.unit(2.6, "feet"),
  37313. name: "Head",
  37314. image: {
  37315. source: "./media/characters/kass-lockheed/head.svg"
  37316. }
  37317. },
  37318. bleh: {
  37319. height: math.unit(2.85, "feet"),
  37320. name: "Bleh",
  37321. image: {
  37322. source: "./media/characters/kass-lockheed/bleh.svg"
  37323. }
  37324. },
  37325. smug: {
  37326. height: math.unit(2.85, "feet"),
  37327. name: "Smug",
  37328. image: {
  37329. source: "./media/characters/kass-lockheed/smug.svg"
  37330. }
  37331. },
  37332. },
  37333. [
  37334. {
  37335. name: "Normal",
  37336. height: math.unit(12 + 6/12, "feet"),
  37337. default: true
  37338. },
  37339. ]
  37340. ))
  37341. characterMakers.push(() => makeCharacter(
  37342. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  37343. {
  37344. front: {
  37345. height: math.unit(6 + 2/12, "feet"),
  37346. name: "Front",
  37347. image: {
  37348. source: "./media/characters/taylor/front.svg",
  37349. extra: 639/495,
  37350. bottom: 12/651
  37351. }
  37352. },
  37353. },
  37354. [
  37355. {
  37356. name: "Normal",
  37357. height: math.unit(6 + 2/12, "feet"),
  37358. default: true
  37359. },
  37360. {
  37361. name: "Big",
  37362. height: math.unit(15, "feet")
  37363. },
  37364. {
  37365. name: "Lorg",
  37366. height: math.unit(80, "feet")
  37367. },
  37368. {
  37369. name: "Too Lorg",
  37370. height: math.unit(120, "feet")
  37371. },
  37372. ]
  37373. ))
  37374. characterMakers.push(() => makeCharacter(
  37375. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  37376. {
  37377. front: {
  37378. height: math.unit(15, "feet"),
  37379. name: "Front",
  37380. image: {
  37381. source: "./media/characters/kaizer/front.svg",
  37382. extra: 1612/1436,
  37383. bottom: 43/1655
  37384. }
  37385. },
  37386. },
  37387. [
  37388. {
  37389. name: "Normal",
  37390. height: math.unit(15, "feet"),
  37391. default: true
  37392. },
  37393. ]
  37394. ))
  37395. characterMakers.push(() => makeCharacter(
  37396. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  37397. {
  37398. front: {
  37399. height: math.unit(2, "feet"),
  37400. weight: math.unit(30, "lb"),
  37401. name: "Front",
  37402. image: {
  37403. source: "./media/characters/sandy/front.svg",
  37404. extra: 1439/1307,
  37405. bottom: 194/1633
  37406. }
  37407. },
  37408. },
  37409. [
  37410. {
  37411. name: "Normal",
  37412. height: math.unit(2, "feet"),
  37413. default: true
  37414. },
  37415. ]
  37416. ))
  37417. characterMakers.push(() => makeCharacter(
  37418. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  37419. {
  37420. front: {
  37421. height: math.unit(3, "feet"),
  37422. name: "Front",
  37423. image: {
  37424. source: "./media/characters/mellvi/front.svg",
  37425. extra: 1831/1630,
  37426. bottom: 58/1889
  37427. }
  37428. },
  37429. },
  37430. [
  37431. {
  37432. name: "Normal",
  37433. height: math.unit(3, "feet"),
  37434. default: true
  37435. },
  37436. ]
  37437. ))
  37438. characterMakers.push(() => makeCharacter(
  37439. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  37440. {
  37441. front: {
  37442. height: math.unit(5 + 11/12, "feet"),
  37443. weight: math.unit(200, "lb"),
  37444. name: "Front",
  37445. image: {
  37446. source: "./media/characters/shirou/front.svg",
  37447. extra: 2491/2383,
  37448. bottom: 189/2680
  37449. }
  37450. },
  37451. back: {
  37452. height: math.unit(5 + 11/12, "feet"),
  37453. weight: math.unit(200, "lb"),
  37454. name: "Back",
  37455. image: {
  37456. source: "./media/characters/shirou/back.svg",
  37457. extra: 2554/2450,
  37458. bottom: 76/2630
  37459. }
  37460. },
  37461. },
  37462. [
  37463. {
  37464. name: "Normal",
  37465. height: math.unit(5 + 11/12, "feet"),
  37466. default: true
  37467. },
  37468. ]
  37469. ))
  37470. characterMakers.push(() => makeCharacter(
  37471. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  37472. {
  37473. front: {
  37474. height: math.unit(6 + 3/12, "feet"),
  37475. weight: math.unit(177, "lb"),
  37476. name: "Front",
  37477. image: {
  37478. source: "./media/characters/noryu/front.svg",
  37479. extra: 973/885,
  37480. bottom: 10/983
  37481. }
  37482. },
  37483. },
  37484. [
  37485. {
  37486. name: "Normal",
  37487. height: math.unit(6 + 3/12, "feet"),
  37488. default: true
  37489. },
  37490. ]
  37491. ))
  37492. characterMakers.push(() => makeCharacter(
  37493. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  37494. {
  37495. front: {
  37496. height: math.unit(5 + 6/12, "feet"),
  37497. weight: math.unit(170, "lb"),
  37498. name: "Front",
  37499. image: {
  37500. source: "./media/characters/mevolas-rubenido/front.svg",
  37501. extra: 2109/1901,
  37502. bottom: 96/2205
  37503. }
  37504. },
  37505. },
  37506. [
  37507. {
  37508. name: "Normal",
  37509. height: math.unit(5 + 6/12, "feet"),
  37510. default: true
  37511. },
  37512. ]
  37513. ))
  37514. characterMakers.push(() => makeCharacter(
  37515. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  37516. {
  37517. front: {
  37518. height: math.unit(100, "feet"),
  37519. name: "Front",
  37520. image: {
  37521. source: "./media/characters/dee/front.svg",
  37522. extra: 2153/2036,
  37523. bottom: 59/2212
  37524. }
  37525. },
  37526. back: {
  37527. height: math.unit(100, "feet"),
  37528. name: "Back",
  37529. image: {
  37530. source: "./media/characters/dee/back.svg",
  37531. extra: 2183/2058,
  37532. bottom: 75/2258
  37533. }
  37534. },
  37535. foot: {
  37536. height: math.unit(19.43, "feet"),
  37537. name: "Foot",
  37538. image: {
  37539. source: "./media/characters/dee/foot.svg"
  37540. }
  37541. },
  37542. hoof: {
  37543. height: math.unit(20.6, "feet"),
  37544. name: "Hoof",
  37545. image: {
  37546. source: "./media/characters/dee/hoof.svg"
  37547. }
  37548. },
  37549. },
  37550. [
  37551. {
  37552. name: "Macro",
  37553. height: math.unit(100, "feet"),
  37554. default: true
  37555. },
  37556. ]
  37557. ))
  37558. characterMakers.push(() => makeCharacter(
  37559. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  37560. {
  37561. front: {
  37562. height: math.unit(5 + 6/12, "feet"),
  37563. name: "Front",
  37564. image: {
  37565. source: "./media/characters/teh/front.svg",
  37566. extra: 1002/847,
  37567. bottom: 62/1064
  37568. }
  37569. },
  37570. },
  37571. [
  37572. {
  37573. name: "Normal",
  37574. height: math.unit(5 + 6/12, "feet"),
  37575. default: true
  37576. },
  37577. ]
  37578. ))
  37579. characterMakers.push(() => makeCharacter(
  37580. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  37581. {
  37582. side: {
  37583. height: math.unit(6 + 1/12, "feet"),
  37584. weight: math.unit(204, "lb"),
  37585. name: "Side",
  37586. image: {
  37587. source: "./media/characters/quicksilver-ayukoti/side.svg",
  37588. extra: 974/775,
  37589. bottom: 169/1143
  37590. }
  37591. },
  37592. sitting: {
  37593. height: math.unit(6 + 2/12, "feet"),
  37594. weight: math.unit(204, "lb"),
  37595. name: "Sitting",
  37596. image: {
  37597. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  37598. extra: 1175/964,
  37599. bottom: 378/1553
  37600. }
  37601. },
  37602. },
  37603. [
  37604. {
  37605. name: "Normal",
  37606. height: math.unit(6 + 1/12, "feet"),
  37607. default: true
  37608. },
  37609. ]
  37610. ))
  37611. characterMakers.push(() => makeCharacter(
  37612. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  37613. {
  37614. front: {
  37615. height: math.unit(6, "inches"),
  37616. name: "Front",
  37617. image: {
  37618. source: "./media/characters/tululi/front.svg",
  37619. extra: 1997/1876,
  37620. bottom: 20/2017
  37621. }
  37622. },
  37623. },
  37624. [
  37625. {
  37626. name: "Normal",
  37627. height: math.unit(6, "inches"),
  37628. default: true
  37629. },
  37630. ]
  37631. ))
  37632. characterMakers.push(() => makeCharacter(
  37633. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  37634. {
  37635. front: {
  37636. height: math.unit(4 + 1/12, "feet"),
  37637. name: "Front",
  37638. image: {
  37639. source: "./media/characters/star/front.svg",
  37640. extra: 1493/1189,
  37641. bottom: 48/1541
  37642. }
  37643. },
  37644. },
  37645. [
  37646. {
  37647. name: "Normal",
  37648. height: math.unit(4 + 1/12, "feet"),
  37649. default: true
  37650. },
  37651. ]
  37652. ))
  37653. characterMakers.push(() => makeCharacter(
  37654. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  37655. {
  37656. front: {
  37657. height: math.unit(6 + 3/12, "feet"),
  37658. name: "Front",
  37659. image: {
  37660. source: "./media/characters/comet/front.svg",
  37661. extra: 1681/1462,
  37662. bottom: 26/1707
  37663. }
  37664. },
  37665. },
  37666. [
  37667. {
  37668. name: "Normal",
  37669. height: math.unit(6 + 3/12, "feet"),
  37670. default: true
  37671. },
  37672. ]
  37673. ))
  37674. characterMakers.push(() => makeCharacter(
  37675. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  37676. {
  37677. front: {
  37678. height: math.unit(950, "feet"),
  37679. name: "Front",
  37680. image: {
  37681. source: "./media/characters/vortex/front.svg",
  37682. extra: 1497/1434,
  37683. bottom: 56/1553
  37684. }
  37685. },
  37686. maw: {
  37687. height: math.unit(285, "feet"),
  37688. name: "Maw",
  37689. image: {
  37690. source: "./media/characters/vortex/maw.svg"
  37691. }
  37692. },
  37693. },
  37694. [
  37695. {
  37696. name: "Macro",
  37697. height: math.unit(950, "feet"),
  37698. default: true
  37699. },
  37700. ]
  37701. ))
  37702. characterMakers.push(() => makeCharacter(
  37703. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  37704. {
  37705. front: {
  37706. height: math.unit(600, "feet"),
  37707. weight: math.unit(0.02, "grams"),
  37708. name: "Front",
  37709. image: {
  37710. source: "./media/characters/doodle/front.svg",
  37711. extra: 1578/1413,
  37712. bottom: 37/1615
  37713. }
  37714. },
  37715. },
  37716. [
  37717. {
  37718. name: "Macro",
  37719. height: math.unit(600, "feet"),
  37720. default: true
  37721. },
  37722. ]
  37723. ))
  37724. characterMakers.push(() => makeCharacter(
  37725. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  37726. {
  37727. front: {
  37728. height: math.unit(6 + 6/12, "feet"),
  37729. name: "Front",
  37730. image: {
  37731. source: "./media/characters/jai/front.svg",
  37732. extra: 1645/1534,
  37733. bottom: 115/1760
  37734. }
  37735. },
  37736. },
  37737. [
  37738. {
  37739. name: "Normal",
  37740. height: math.unit(6 + 6/12, "feet"),
  37741. default: true
  37742. },
  37743. ]
  37744. ))
  37745. characterMakers.push(() => makeCharacter(
  37746. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  37747. {
  37748. front: {
  37749. height: math.unit(6 + 8/12, "feet"),
  37750. name: "Front",
  37751. image: {
  37752. source: "./media/characters/pixel/front.svg",
  37753. extra: 1900/1735,
  37754. bottom: 63/1963
  37755. }
  37756. },
  37757. },
  37758. [
  37759. {
  37760. name: "Normal",
  37761. height: math.unit(6 + 8/12, "feet"),
  37762. default: true
  37763. },
  37764. ]
  37765. ))
  37766. characterMakers.push(() => makeCharacter(
  37767. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  37768. {
  37769. back: {
  37770. height: math.unit(4 + 1/12, "feet"),
  37771. weight: math.unit(75, "lb"),
  37772. name: "Back",
  37773. image: {
  37774. source: "./media/characters/rhett/back.svg",
  37775. extra: 930/878,
  37776. bottom: 25/955
  37777. }
  37778. },
  37779. front: {
  37780. height: math.unit(4 + 1/12, "feet"),
  37781. weight: math.unit(75, "lb"),
  37782. name: "Front",
  37783. image: {
  37784. source: "./media/characters/rhett/front.svg",
  37785. extra: 1682/1586,
  37786. bottom: 92/1774
  37787. }
  37788. },
  37789. },
  37790. [
  37791. {
  37792. name: "Micro",
  37793. height: math.unit(8, "inches")
  37794. },
  37795. {
  37796. name: "Tiny",
  37797. height: math.unit(2, "feet")
  37798. },
  37799. {
  37800. name: "Normal",
  37801. height: math.unit(4 + 1/12, "feet"),
  37802. default: true
  37803. },
  37804. ]
  37805. ))
  37806. characterMakers.push(() => makeCharacter(
  37807. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  37808. {
  37809. front: {
  37810. height: math.unit(3 + 3/12, "feet"),
  37811. name: "Front",
  37812. image: {
  37813. source: "./media/characters/penny/front.svg",
  37814. extra: 1406/1311,
  37815. bottom: 26/1432
  37816. }
  37817. },
  37818. },
  37819. [
  37820. {
  37821. name: "Normal",
  37822. height: math.unit(3 + 3/12, "feet"),
  37823. default: true
  37824. },
  37825. ]
  37826. ))
  37827. characterMakers.push(() => makeCharacter(
  37828. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  37829. {
  37830. front: {
  37831. height: math.unit(4 + 11/12, "feet"),
  37832. name: "Front",
  37833. image: {
  37834. source: "./media/characters/monty/front.svg",
  37835. extra: 1479/1209,
  37836. bottom: 0/1479
  37837. }
  37838. },
  37839. },
  37840. [
  37841. {
  37842. name: "Normal",
  37843. height: math.unit(4 + 11/12, "feet"),
  37844. default: true
  37845. },
  37846. ]
  37847. ))
  37848. characterMakers.push(() => makeCharacter(
  37849. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  37850. {
  37851. front: {
  37852. height: math.unit(8 + 4/12, "feet"),
  37853. name: "Front",
  37854. image: {
  37855. source: "./media/characters/sterling/front.svg",
  37856. extra: 1420/1236,
  37857. bottom: 27/1447
  37858. }
  37859. },
  37860. },
  37861. [
  37862. {
  37863. name: "Normal",
  37864. height: math.unit(8 + 4/12, "feet"),
  37865. default: true
  37866. },
  37867. ]
  37868. ))
  37869. characterMakers.push(() => makeCharacter(
  37870. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  37871. {
  37872. front: {
  37873. height: math.unit(15, "feet"),
  37874. name: "Front",
  37875. image: {
  37876. source: "./media/characters/marble/front.svg",
  37877. extra: 973/937,
  37878. bottom: 32/1005
  37879. }
  37880. },
  37881. },
  37882. [
  37883. {
  37884. name: "Normal",
  37885. height: math.unit(15, "feet"),
  37886. default: true
  37887. },
  37888. ]
  37889. ))
  37890. characterMakers.push(() => makeCharacter(
  37891. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  37892. {
  37893. front: {
  37894. height: math.unit(3, "inches"),
  37895. name: "Front",
  37896. image: {
  37897. source: "./media/characters/powder/front.svg",
  37898. extra: 1504/1334,
  37899. bottom: 518/2022
  37900. }
  37901. },
  37902. },
  37903. [
  37904. {
  37905. name: "Normal",
  37906. height: math.unit(3, "inches"),
  37907. default: true
  37908. },
  37909. ]
  37910. ))
  37911. characterMakers.push(() => makeCharacter(
  37912. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  37913. {
  37914. front: {
  37915. height: math.unit(4 + 5/12, "feet"),
  37916. name: "Front",
  37917. image: {
  37918. source: "./media/characters/joey-raccoon/front.svg",
  37919. extra: 1273/1197,
  37920. bottom: 0/1273
  37921. }
  37922. },
  37923. },
  37924. [
  37925. {
  37926. name: "Normal",
  37927. height: math.unit(4 + 5/12, "feet"),
  37928. default: true
  37929. },
  37930. ]
  37931. ))
  37932. characterMakers.push(() => makeCharacter(
  37933. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  37934. {
  37935. front: {
  37936. height: math.unit(8 + 4/12, "feet"),
  37937. name: "Front",
  37938. image: {
  37939. source: "./media/characters/vick/front.svg",
  37940. extra: 2187/2118,
  37941. bottom: 47/2234
  37942. }
  37943. },
  37944. },
  37945. [
  37946. {
  37947. name: "Normal",
  37948. height: math.unit(8 + 4/12, "feet"),
  37949. default: true
  37950. },
  37951. ]
  37952. ))
  37953. characterMakers.push(() => makeCharacter(
  37954. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  37955. {
  37956. front: {
  37957. height: math.unit(5 + 5/12, "feet"),
  37958. name: "Front",
  37959. image: {
  37960. source: "./media/characters/mitsy/front.svg",
  37961. extra: 1842/1695,
  37962. bottom: 0/1842
  37963. }
  37964. },
  37965. },
  37966. [
  37967. {
  37968. name: "Normal",
  37969. height: math.unit(5 + 5/12, "feet"),
  37970. default: true
  37971. },
  37972. ]
  37973. ))
  37974. characterMakers.push(() => makeCharacter(
  37975. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  37976. {
  37977. front: {
  37978. height: math.unit(6 + 3/12, "feet"),
  37979. name: "Front",
  37980. image: {
  37981. source: "./media/characters/silvy/front.svg",
  37982. extra: 1995/1836,
  37983. bottom: 225/2220
  37984. }
  37985. },
  37986. },
  37987. [
  37988. {
  37989. name: "Normal",
  37990. height: math.unit(6 + 3/12, "feet"),
  37991. default: true
  37992. },
  37993. ]
  37994. ))
  37995. characterMakers.push(() => makeCharacter(
  37996. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  37997. {
  37998. front: {
  37999. height: math.unit(3 + 8/12, "feet"),
  38000. name: "Front",
  38001. image: {
  38002. source: "./media/characters/rodney/front.svg",
  38003. extra: 1956/1747,
  38004. bottom: 31/1987
  38005. }
  38006. },
  38007. frontDressed: {
  38008. height: math.unit(2.9, "feet"),
  38009. name: "Front (Dressed)",
  38010. image: {
  38011. source: "./media/characters/rodney/front-dressed.svg",
  38012. extra: 1382/1241,
  38013. bottom: 385/1767
  38014. }
  38015. },
  38016. },
  38017. [
  38018. {
  38019. name: "Normal",
  38020. height: math.unit(3 + 8/12, "feet"),
  38021. default: true
  38022. },
  38023. ]
  38024. ))
  38025. characterMakers.push(() => makeCharacter(
  38026. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  38027. {
  38028. front: {
  38029. height: math.unit(5 + 9/12, "feet"),
  38030. weight: math.unit(194, "lbs"),
  38031. name: "Front",
  38032. image: {
  38033. source: "./media/characters/zakail-sudekai/front.svg",
  38034. extra: 2696/2533,
  38035. bottom: 248/2944
  38036. }
  38037. },
  38038. maw: {
  38039. height: math.unit(1.35, "feet"),
  38040. name: "Maw",
  38041. image: {
  38042. source: "./media/characters/zakail-sudekai/maw.svg"
  38043. }
  38044. },
  38045. },
  38046. [
  38047. {
  38048. name: "Normal",
  38049. height: math.unit(5 + 9/12, "feet"),
  38050. default: true
  38051. },
  38052. ]
  38053. ))
  38054. characterMakers.push(() => makeCharacter(
  38055. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  38056. {
  38057. front: {
  38058. height: math.unit(8 + 4/12, "feet"),
  38059. weight: math.unit(1200, "lb"),
  38060. name: "Front",
  38061. image: {
  38062. source: "./media/characters/eleanor/front.svg",
  38063. extra: 1226/1192,
  38064. bottom: 52/1278
  38065. }
  38066. },
  38067. back: {
  38068. height: math.unit(8 + 4/12, "feet"),
  38069. weight: math.unit(1200, "lb"),
  38070. name: "Back",
  38071. image: {
  38072. source: "./media/characters/eleanor/back.svg",
  38073. extra: 1242/1184,
  38074. bottom: 60/1302
  38075. }
  38076. },
  38077. head: {
  38078. height: math.unit(2.62, "feet"),
  38079. name: "Head",
  38080. image: {
  38081. source: "./media/characters/eleanor/head.svg"
  38082. }
  38083. },
  38084. },
  38085. [
  38086. {
  38087. name: "Normal",
  38088. height: math.unit(8 + 4/12, "feet"),
  38089. default: true
  38090. },
  38091. ]
  38092. ))
  38093. characterMakers.push(() => makeCharacter(
  38094. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  38095. {
  38096. front: {
  38097. height: math.unit(8 + 4/12, "feet"),
  38098. weight: math.unit(750, "lb"),
  38099. name: "Front",
  38100. image: {
  38101. source: "./media/characters/tanya/front.svg",
  38102. extra: 1749/1615,
  38103. bottom: 33/1782
  38104. }
  38105. },
  38106. },
  38107. [
  38108. {
  38109. name: "Normal",
  38110. height: math.unit(8 + 4/12, "feet"),
  38111. default: true
  38112. },
  38113. ]
  38114. ))
  38115. characterMakers.push(() => makeCharacter(
  38116. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  38117. {
  38118. front: {
  38119. height: math.unit(5, "feet"),
  38120. weight: math.unit(225, "lb"),
  38121. name: "Front",
  38122. image: {
  38123. source: "./media/characters/cindy/front.svg",
  38124. extra: 1320/1250,
  38125. bottom: 42/1362
  38126. }
  38127. },
  38128. frontDressed: {
  38129. height: math.unit(5, "feet"),
  38130. weight: math.unit(225, "lb"),
  38131. name: "Front (Dressed)",
  38132. image: {
  38133. source: "./media/characters/cindy/front-dressed.svg",
  38134. extra: 1320/1250,
  38135. bottom: 42/1362
  38136. }
  38137. },
  38138. back: {
  38139. height: math.unit(5, "feet"),
  38140. weight: math.unit(225, "lb"),
  38141. name: "Back",
  38142. image: {
  38143. source: "./media/characters/cindy/back.svg",
  38144. extra: 1384/1346,
  38145. bottom: 14/1398
  38146. }
  38147. },
  38148. },
  38149. [
  38150. {
  38151. name: "Normal",
  38152. height: math.unit(5, "feet"),
  38153. default: true
  38154. },
  38155. ]
  38156. ))
  38157. characterMakers.push(() => makeCharacter(
  38158. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  38159. {
  38160. front: {
  38161. height: math.unit(6 + 9/12, "feet"),
  38162. weight: math.unit(440, "lb"),
  38163. name: "Front",
  38164. image: {
  38165. source: "./media/characters/wilbur-owen/front.svg",
  38166. extra: 1575/1448,
  38167. bottom: 72/1647
  38168. }
  38169. },
  38170. back: {
  38171. height: math.unit(6 + 9/12, "feet"),
  38172. weight: math.unit(440, "lb"),
  38173. name: "Back",
  38174. image: {
  38175. source: "./media/characters/wilbur-owen/back.svg",
  38176. extra: 1578/1445,
  38177. bottom: 36/1614
  38178. }
  38179. },
  38180. },
  38181. [
  38182. {
  38183. name: "Normal",
  38184. height: math.unit(6 + 9/12, "feet"),
  38185. default: true
  38186. },
  38187. ]
  38188. ))
  38189. characterMakers.push(() => makeCharacter(
  38190. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  38191. {
  38192. front: {
  38193. height: math.unit(6 + 5/12, "feet"),
  38194. weight: math.unit(650, "lb"),
  38195. name: "Front",
  38196. image: {
  38197. source: "./media/characters/keegan/front.svg",
  38198. extra: 2387/2198,
  38199. bottom: 33/2420
  38200. }
  38201. },
  38202. side: {
  38203. height: math.unit(6 + 5/12, "feet"),
  38204. weight: math.unit(650, "lb"),
  38205. name: "Side",
  38206. image: {
  38207. source: "./media/characters/keegan/side.svg",
  38208. extra: 2390/2202,
  38209. bottom: 47/2437
  38210. }
  38211. },
  38212. back: {
  38213. height: math.unit(6 + 5/12, "feet"),
  38214. weight: math.unit(650, "lb"),
  38215. name: "Back",
  38216. image: {
  38217. source: "./media/characters/keegan/back.svg",
  38218. extra: 2418/2268,
  38219. bottom: 15/2433
  38220. }
  38221. },
  38222. frontSfw: {
  38223. height: math.unit(6 + 5/12, "feet"),
  38224. weight: math.unit(650, "lb"),
  38225. name: "Front (SFW)",
  38226. image: {
  38227. source: "./media/characters/keegan/front-sfw.svg",
  38228. extra: 2387/2198,
  38229. bottom: 33/2420
  38230. }
  38231. },
  38232. beans: {
  38233. height: math.unit(1.85, "feet"),
  38234. name: "Beans",
  38235. image: {
  38236. source: "./media/characters/keegan/beans.svg"
  38237. }
  38238. },
  38239. },
  38240. [
  38241. {
  38242. name: "Normal",
  38243. height: math.unit(6 + 5/12, "feet"),
  38244. default: true
  38245. },
  38246. ]
  38247. ))
  38248. characterMakers.push(() => makeCharacter(
  38249. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  38250. {
  38251. front: {
  38252. height: math.unit(9, "feet"),
  38253. name: "Front",
  38254. image: {
  38255. source: "./media/characters/colton/front.svg",
  38256. extra: 1589/1326,
  38257. bottom: 139/1728
  38258. }
  38259. },
  38260. },
  38261. [
  38262. {
  38263. name: "Normal",
  38264. height: math.unit(9, "feet"),
  38265. default: true
  38266. },
  38267. ]
  38268. ))
  38269. characterMakers.push(() => makeCharacter(
  38270. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  38271. {
  38272. front: {
  38273. height: math.unit(2 + 9/12, "feet"),
  38274. name: "Front",
  38275. image: {
  38276. source: "./media/characters/bora/front.svg",
  38277. extra: 1265/1250,
  38278. bottom: 24/1289
  38279. }
  38280. },
  38281. },
  38282. [
  38283. {
  38284. name: "Normal",
  38285. height: math.unit(2 + 9/12, "feet"),
  38286. default: true
  38287. },
  38288. ]
  38289. ))
  38290. characterMakers.push(() => makeCharacter(
  38291. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  38292. {
  38293. front: {
  38294. height: math.unit(8, "feet"),
  38295. name: "Front",
  38296. image: {
  38297. source: "./media/characters/myu-myu/front.svg",
  38298. extra: 1949/1857,
  38299. bottom: 90/2039
  38300. }
  38301. },
  38302. },
  38303. [
  38304. {
  38305. name: "Normal",
  38306. height: math.unit(8, "feet"),
  38307. default: true
  38308. },
  38309. {
  38310. name: "Big",
  38311. height: math.unit(15, "feet")
  38312. },
  38313. {
  38314. name: "BIG",
  38315. height: math.unit(25, "feet")
  38316. },
  38317. ]
  38318. ))
  38319. characterMakers.push(() => makeCharacter(
  38320. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  38321. {
  38322. side: {
  38323. height: math.unit(7 + 5/12, "feet"),
  38324. weight: math.unit(2800, "lb"),
  38325. name: "Side",
  38326. image: {
  38327. source: "./media/characters/haloren/side.svg",
  38328. extra: 1793/409,
  38329. bottom: 59/1852
  38330. }
  38331. },
  38332. frontPaw: {
  38333. height: math.unit(2.36, "feet"),
  38334. name: "Front paw",
  38335. image: {
  38336. source: "./media/characters/haloren/front-paw.svg"
  38337. }
  38338. },
  38339. hindPaw: {
  38340. height: math.unit(3.18, "feet"),
  38341. name: "Hind paw",
  38342. image: {
  38343. source: "./media/characters/haloren/hind-paw.svg"
  38344. }
  38345. },
  38346. maw: {
  38347. height: math.unit(5.05, "feet"),
  38348. name: "Maw",
  38349. image: {
  38350. source: "./media/characters/haloren/maw.svg"
  38351. }
  38352. },
  38353. dick: {
  38354. height: math.unit(2.90, "feet"),
  38355. name: "Dick",
  38356. image: {
  38357. source: "./media/characters/haloren/dick.svg"
  38358. }
  38359. },
  38360. },
  38361. [
  38362. {
  38363. name: "Normal",
  38364. height: math.unit(7 + 5/12, "feet"),
  38365. default: true
  38366. },
  38367. {
  38368. name: "Enhanced",
  38369. height: math.unit(14 + 3/12, "feet")
  38370. },
  38371. ]
  38372. ))
  38373. characterMakers.push(() => makeCharacter(
  38374. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  38375. {
  38376. front: {
  38377. height: math.unit(171, "cm"),
  38378. name: "Front",
  38379. image: {
  38380. source: "./media/characters/kimmy/front.svg",
  38381. extra: 1491/1435,
  38382. bottom: 53/1544
  38383. }
  38384. },
  38385. },
  38386. [
  38387. {
  38388. name: "Small",
  38389. height: math.unit(9, "cm")
  38390. },
  38391. {
  38392. name: "Normal",
  38393. height: math.unit(171, "cm"),
  38394. default: true
  38395. },
  38396. ]
  38397. ))
  38398. characterMakers.push(() => makeCharacter(
  38399. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  38400. {
  38401. front: {
  38402. height: math.unit(8, "feet"),
  38403. weight: math.unit(300, "lb"),
  38404. name: "Front",
  38405. image: {
  38406. source: "./media/characters/galeboomer/front.svg",
  38407. extra: 4651/4415,
  38408. bottom: 162/4813
  38409. }
  38410. },
  38411. back: {
  38412. height: math.unit(8, "feet"),
  38413. weight: math.unit(300, "lb"),
  38414. name: "Back",
  38415. image: {
  38416. source: "./media/characters/galeboomer/back.svg",
  38417. extra: 4544/4314,
  38418. bottom: 16/4560
  38419. }
  38420. },
  38421. frontAlt: {
  38422. height: math.unit(8, "feet"),
  38423. weight: math.unit(300, "lb"),
  38424. name: "Front (Alt)",
  38425. image: {
  38426. source: "./media/characters/galeboomer/front-alt.svg",
  38427. extra: 4458/4228,
  38428. bottom: 68/4526
  38429. }
  38430. },
  38431. maw: {
  38432. height: math.unit(1.2, "feet"),
  38433. name: "Maw",
  38434. image: {
  38435. source: "./media/characters/galeboomer/maw.svg"
  38436. }
  38437. },
  38438. },
  38439. [
  38440. {
  38441. name: "Normal",
  38442. height: math.unit(8, "feet"),
  38443. default: true
  38444. },
  38445. ]
  38446. ))
  38447. characterMakers.push(() => makeCharacter(
  38448. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  38449. {
  38450. front: {
  38451. height: math.unit(5 + 9/12, "feet"),
  38452. weight: math.unit(120, "lb"),
  38453. name: "Front",
  38454. image: {
  38455. source: "./media/characters/chyr/front.svg",
  38456. extra: 1323/1254,
  38457. bottom: 63/1386
  38458. }
  38459. },
  38460. back: {
  38461. height: math.unit(5 + 9/12, "feet"),
  38462. weight: math.unit(120, "lb"),
  38463. name: "Back",
  38464. image: {
  38465. source: "./media/characters/chyr/back.svg",
  38466. extra: 1323/1252,
  38467. bottom: 48/1371
  38468. }
  38469. },
  38470. },
  38471. [
  38472. {
  38473. name: "Normal",
  38474. height: math.unit(5 + 9/12, "feet"),
  38475. default: true
  38476. },
  38477. ]
  38478. ))
  38479. characterMakers.push(() => makeCharacter(
  38480. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  38481. {
  38482. front: {
  38483. height: math.unit(7, "feet"),
  38484. weight: math.unit(310, "lb"),
  38485. name: "Front",
  38486. image: {
  38487. source: "./media/characters/solarus/front.svg",
  38488. extra: 2415/2021,
  38489. bottom: 103/2518
  38490. }
  38491. },
  38492. back: {
  38493. height: math.unit(7, "feet"),
  38494. weight: math.unit(310, "lb"),
  38495. name: "Back",
  38496. image: {
  38497. source: "./media/characters/solarus/back.svg",
  38498. extra: 2463/2089,
  38499. bottom: 79/2542
  38500. }
  38501. },
  38502. },
  38503. [
  38504. {
  38505. name: "Normal",
  38506. height: math.unit(7, "feet"),
  38507. default: true
  38508. },
  38509. ]
  38510. ))
  38511. characterMakers.push(() => makeCharacter(
  38512. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  38513. {
  38514. front: {
  38515. height: math.unit(16, "feet"),
  38516. name: "Front",
  38517. image: {
  38518. source: "./media/characters/mutsuju-koizaemon/front.svg",
  38519. extra: 1844/1780,
  38520. bottom: 58/1902
  38521. }
  38522. },
  38523. winterCoat: {
  38524. height: math.unit(16, "feet"),
  38525. name: "Winter Coat",
  38526. image: {
  38527. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  38528. extra: 1807/1775,
  38529. bottom: 69/1876
  38530. }
  38531. },
  38532. },
  38533. [
  38534. {
  38535. name: "Normal",
  38536. height: math.unit(16, "feet"),
  38537. default: true
  38538. },
  38539. {
  38540. name: "Chicago Size",
  38541. height: math.unit(560, "feet")
  38542. },
  38543. ]
  38544. ))
  38545. characterMakers.push(() => makeCharacter(
  38546. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  38547. {
  38548. front: {
  38549. height: math.unit(11 + 6/12, "feet"),
  38550. weight: math.unit(1366, "lb"),
  38551. name: "Front",
  38552. image: {
  38553. source: "./media/characters/lexor/front.svg",
  38554. extra: 1560/1481,
  38555. bottom: 211/1771
  38556. }
  38557. },
  38558. back: {
  38559. height: math.unit(11 + 6/12, "feet"),
  38560. weight: math.unit(1366, "lb"),
  38561. name: "Back",
  38562. image: {
  38563. source: "./media/characters/lexor/back.svg",
  38564. extra: 1614/1533,
  38565. bottom: 76/1690
  38566. }
  38567. },
  38568. maw: {
  38569. height: math.unit(3, "feet"),
  38570. name: "Maw",
  38571. image: {
  38572. source: "./media/characters/lexor/maw.svg"
  38573. }
  38574. },
  38575. dick: {
  38576. height: math.unit(2.59, "feet"),
  38577. name: "Dick",
  38578. image: {
  38579. source: "./media/characters/lexor/dick.svg"
  38580. }
  38581. },
  38582. },
  38583. [
  38584. {
  38585. name: "Normal",
  38586. height: math.unit(11 + 6/12, "feet"),
  38587. default: true
  38588. },
  38589. ]
  38590. ))
  38591. characterMakers.push(() => makeCharacter(
  38592. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  38593. {
  38594. front: {
  38595. height: math.unit(5 + 8/12, "feet"),
  38596. name: "Front",
  38597. image: {
  38598. source: "./media/characters/magnum/front.svg",
  38599. extra: 942/855,
  38600. bottom: 26/968
  38601. }
  38602. },
  38603. },
  38604. [
  38605. {
  38606. name: "Normal",
  38607. height: math.unit(5 + 8/12, "feet"),
  38608. default: true
  38609. },
  38610. ]
  38611. ))
  38612. characterMakers.push(() => makeCharacter(
  38613. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  38614. {
  38615. front: {
  38616. height: math.unit(18 + 4/12, "feet"),
  38617. weight: math.unit(1500, "kg"),
  38618. name: "Front",
  38619. image: {
  38620. source: "./media/characters/solas-sharpsman/front.svg",
  38621. extra: 1698/1589,
  38622. bottom: 0/1698
  38623. }
  38624. },
  38625. },
  38626. [
  38627. {
  38628. name: "Normal",
  38629. height: math.unit(18 + 4/12, "feet"),
  38630. default: true
  38631. },
  38632. ]
  38633. ))
  38634. characterMakers.push(() => makeCharacter(
  38635. { name: "October", species: ["tiger"], tags: ["anthro"] },
  38636. {
  38637. front: {
  38638. height: math.unit(5 + 5/12, "feet"),
  38639. weight: math.unit(180, "lb"),
  38640. name: "Front",
  38641. image: {
  38642. source: "./media/characters/october/front.svg",
  38643. extra: 1800/1650,
  38644. bottom: 0/1800
  38645. }
  38646. },
  38647. frontNsfw: {
  38648. height: math.unit(5 + 5/12, "feet"),
  38649. weight: math.unit(180, "lb"),
  38650. name: "Front (NSFW)",
  38651. image: {
  38652. source: "./media/characters/october/front-nsfw.svg",
  38653. extra: 1392/1307,
  38654. bottom: 42/1434
  38655. }
  38656. },
  38657. },
  38658. [
  38659. {
  38660. name: "Normal",
  38661. height: math.unit(5 + 5/12, "feet"),
  38662. default: true
  38663. },
  38664. ]
  38665. ))
  38666. characterMakers.push(() => makeCharacter(
  38667. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  38668. {
  38669. front: {
  38670. height: math.unit(8 + 6/12, "feet"),
  38671. name: "Front",
  38672. image: {
  38673. source: "./media/characters/essynkardi/front.svg",
  38674. extra: 1914/1846,
  38675. bottom: 22/1936
  38676. }
  38677. },
  38678. },
  38679. [
  38680. {
  38681. name: "Normal",
  38682. height: math.unit(8 + 6/12, "feet"),
  38683. default: true
  38684. },
  38685. ]
  38686. ))
  38687. characterMakers.push(() => makeCharacter(
  38688. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  38689. {
  38690. front: {
  38691. height: math.unit(6 + 6/12, "feet"),
  38692. weight: math.unit(7, "lb"),
  38693. name: "Front",
  38694. image: {
  38695. source: "./media/characters/icky/front.svg",
  38696. extra: 813/782,
  38697. bottom: 66/879
  38698. }
  38699. },
  38700. back: {
  38701. height: math.unit(6 + 6/12, "feet"),
  38702. weight: math.unit(7, "lb"),
  38703. name: "Back",
  38704. image: {
  38705. source: "./media/characters/icky/back.svg",
  38706. extra: 754/735,
  38707. bottom: 56/810
  38708. }
  38709. },
  38710. },
  38711. [
  38712. {
  38713. name: "Normal",
  38714. height: math.unit(6 + 6/12, "feet"),
  38715. default: true
  38716. },
  38717. ]
  38718. ))
  38719. characterMakers.push(() => makeCharacter(
  38720. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  38721. {
  38722. front: {
  38723. height: math.unit(15, "feet"),
  38724. name: "Front",
  38725. image: {
  38726. source: "./media/characters/rojas/front.svg",
  38727. extra: 1462/1408,
  38728. bottom: 95/1557
  38729. }
  38730. },
  38731. back: {
  38732. height: math.unit(15, "feet"),
  38733. name: "Back",
  38734. image: {
  38735. source: "./media/characters/rojas/back.svg",
  38736. extra: 1023/954,
  38737. bottom: 28/1051
  38738. }
  38739. },
  38740. },
  38741. [
  38742. {
  38743. name: "Normal",
  38744. height: math.unit(15, "feet"),
  38745. default: true
  38746. },
  38747. ]
  38748. ))
  38749. characterMakers.push(() => makeCharacter(
  38750. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  38751. {
  38752. frontHuman: {
  38753. height: math.unit(5 + 7/12, "feet"),
  38754. name: "Front (Human)",
  38755. image: {
  38756. source: "./media/characters/alek-dryagan/front-human.svg",
  38757. extra: 1687/1667,
  38758. bottom: 69/1756
  38759. }
  38760. },
  38761. backHuman: {
  38762. height: math.unit(5 + 7/12, "feet"),
  38763. name: "Back (Human)",
  38764. image: {
  38765. source: "./media/characters/alek-dryagan/back-human.svg",
  38766. extra: 1670/1649,
  38767. bottom: 65/1735
  38768. }
  38769. },
  38770. frontDemi: {
  38771. height: math.unit(65, "feet"),
  38772. name: "Front (Demi)",
  38773. image: {
  38774. source: "./media/characters/alek-dryagan/front-demi.svg",
  38775. extra: 1669/1642,
  38776. bottom: 49/1718
  38777. }
  38778. },
  38779. backDemi: {
  38780. height: math.unit(65, "feet"),
  38781. name: "Back (Demi)",
  38782. image: {
  38783. source: "./media/characters/alek-dryagan/back-demi.svg",
  38784. extra: 1658/1637,
  38785. bottom: 40/1698
  38786. }
  38787. },
  38788. mawHuman: {
  38789. height: math.unit(0.3, "feet"),
  38790. name: "Maw (Human)",
  38791. image: {
  38792. source: "./media/characters/alek-dryagan/maw-human.svg"
  38793. }
  38794. },
  38795. mawDemi: {
  38796. height: math.unit(3.8, "feet"),
  38797. name: "Maw (Demi)",
  38798. image: {
  38799. source: "./media/characters/alek-dryagan/maw-demi.svg"
  38800. }
  38801. },
  38802. },
  38803. [
  38804. {
  38805. name: "Normal",
  38806. height: math.unit(5 + 7/12, "feet"),
  38807. default: true
  38808. },
  38809. ]
  38810. ))
  38811. characterMakers.push(() => makeCharacter(
  38812. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  38813. {
  38814. frontHuman: {
  38815. height: math.unit(5 + 2/12, "feet"),
  38816. name: "Front (Human)",
  38817. image: {
  38818. source: "./media/characters/gen/front-human.svg",
  38819. extra: 1627/1538,
  38820. bottom: 71/1698
  38821. }
  38822. },
  38823. backHuman: {
  38824. height: math.unit(5 + 2/12, "feet"),
  38825. name: "Back (Human)",
  38826. image: {
  38827. source: "./media/characters/gen/back-human.svg",
  38828. extra: 1638/1548,
  38829. bottom: 69/1707
  38830. }
  38831. },
  38832. frontDemi: {
  38833. height: math.unit(5 + 2/12, "feet"),
  38834. name: "Front (Demi)",
  38835. image: {
  38836. source: "./media/characters/gen/front-demi.svg",
  38837. extra: 1627/1538,
  38838. bottom: 71/1698
  38839. }
  38840. },
  38841. backDemi: {
  38842. height: math.unit(5 + 2/12, "feet"),
  38843. name: "Back (Demi)",
  38844. image: {
  38845. source: "./media/characters/gen/back-demi.svg",
  38846. extra: 1638/1548,
  38847. bottom: 69/1707
  38848. }
  38849. },
  38850. },
  38851. [
  38852. {
  38853. name: "Normal",
  38854. height: math.unit(5 + 2/12, "feet"),
  38855. default: true
  38856. },
  38857. ]
  38858. ))
  38859. characterMakers.push(() => makeCharacter(
  38860. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  38861. {
  38862. frontImp: {
  38863. height: math.unit(1 + 11/12, "feet"),
  38864. name: "Front (Imp)",
  38865. image: {
  38866. source: "./media/characters/max-kobold/front-imp.svg",
  38867. extra: 1238/1134,
  38868. bottom: 81/1319
  38869. }
  38870. },
  38871. backImp: {
  38872. height: math.unit(1 + 11/12, "feet"),
  38873. name: "Back (Imp)",
  38874. image: {
  38875. source: "./media/characters/max-kobold/back-imp.svg",
  38876. extra: 1334/1175,
  38877. bottom: 34/1368
  38878. }
  38879. },
  38880. frontDemi: {
  38881. height: math.unit(5 + 9/12, "feet"),
  38882. name: "Front (Demi)",
  38883. image: {
  38884. source: "./media/characters/max-kobold/front-demi.svg",
  38885. extra: 1715/1685,
  38886. bottom: 54/1769
  38887. }
  38888. },
  38889. backDemi: {
  38890. height: math.unit(5 + 9/12, "feet"),
  38891. name: "Back (Demi)",
  38892. image: {
  38893. source: "./media/characters/max-kobold/back-demi.svg",
  38894. extra: 1752/1729,
  38895. bottom: 41/1793
  38896. }
  38897. },
  38898. handImp: {
  38899. height: math.unit(0.45, "feet"),
  38900. name: "Hand (Imp)",
  38901. image: {
  38902. source: "./media/characters/max-kobold/hand.svg"
  38903. }
  38904. },
  38905. pawImp: {
  38906. height: math.unit(0.46, "feet"),
  38907. name: "Paw (Imp)",
  38908. image: {
  38909. source: "./media/characters/max-kobold/paw.svg"
  38910. }
  38911. },
  38912. handDemi: {
  38913. height: math.unit(0.80, "feet"),
  38914. name: "Hand (Demi)",
  38915. image: {
  38916. source: "./media/characters/max-kobold/hand.svg"
  38917. }
  38918. },
  38919. pawDemi: {
  38920. height: math.unit(1.1, "feet"),
  38921. name: "Paw (Demi)",
  38922. image: {
  38923. source: "./media/characters/max-kobold/paw.svg"
  38924. }
  38925. },
  38926. headImp: {
  38927. height: math.unit(1.33, "feet"),
  38928. name: "Head (Imp)",
  38929. image: {
  38930. source: "./media/characters/max-kobold/head-imp.svg"
  38931. }
  38932. },
  38933. mawImp: {
  38934. height: math.unit(0.75, "feet"),
  38935. name: "Maw (Imp)",
  38936. image: {
  38937. source: "./media/characters/max-kobold/maw-imp.svg"
  38938. }
  38939. },
  38940. mawDemi: {
  38941. height: math.unit(0.42, "feet"),
  38942. name: "Maw (Demi)",
  38943. image: {
  38944. source: "./media/characters/max-kobold/maw-demi.svg"
  38945. }
  38946. },
  38947. },
  38948. [
  38949. {
  38950. name: "Normal",
  38951. height: math.unit(1 + 11/12, "feet"),
  38952. default: true
  38953. },
  38954. ]
  38955. ))
  38956. characterMakers.push(() => makeCharacter(
  38957. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  38958. {
  38959. front: {
  38960. height: math.unit(7 + 5/12, "feet"),
  38961. name: "Front",
  38962. image: {
  38963. source: "./media/characters/carbon/front.svg",
  38964. extra: 1754/1689,
  38965. bottom: 65/1819
  38966. }
  38967. },
  38968. back: {
  38969. height: math.unit(7 + 5/12, "feet"),
  38970. name: "Back",
  38971. image: {
  38972. source: "./media/characters/carbon/back.svg",
  38973. extra: 1762/1695,
  38974. bottom: 24/1786
  38975. }
  38976. },
  38977. frontGigantamax: {
  38978. height: math.unit(150, "feet"),
  38979. name: "Front (Gigantamax)",
  38980. image: {
  38981. source: "./media/characters/carbon/front-gigantamax.svg",
  38982. extra: 1826/1669,
  38983. bottom: 59/1885
  38984. }
  38985. },
  38986. backGigantamax: {
  38987. height: math.unit(150, "feet"),
  38988. name: "Back (Gigantamax)",
  38989. image: {
  38990. source: "./media/characters/carbon/back-gigantamax.svg",
  38991. extra: 1796/1653,
  38992. bottom: 53/1849
  38993. }
  38994. },
  38995. maw: {
  38996. height: math.unit(0.48, "feet"),
  38997. name: "Maw",
  38998. image: {
  38999. source: "./media/characters/carbon/maw.svg"
  39000. }
  39001. },
  39002. mawGigantamax: {
  39003. height: math.unit(7.5, "feet"),
  39004. name: "Maw (Gigantamax)",
  39005. image: {
  39006. source: "./media/characters/carbon/maw-gigantamax.svg"
  39007. }
  39008. },
  39009. },
  39010. [
  39011. {
  39012. name: "Normal",
  39013. height: math.unit(7 + 5/12, "feet"),
  39014. default: true
  39015. },
  39016. ]
  39017. ))
  39018. characterMakers.push(() => makeCharacter(
  39019. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  39020. {
  39021. front: {
  39022. height: math.unit(6, "feet"),
  39023. name: "Front",
  39024. image: {
  39025. source: "./media/characters/maverick/front.svg",
  39026. extra: 1672/1661,
  39027. bottom: 85/1757
  39028. }
  39029. },
  39030. back: {
  39031. height: math.unit(6, "feet"),
  39032. name: "Back",
  39033. image: {
  39034. source: "./media/characters/maverick/back.svg",
  39035. extra: 1642/1631,
  39036. bottom: 38/1680
  39037. }
  39038. },
  39039. },
  39040. [
  39041. {
  39042. name: "Normal",
  39043. height: math.unit(6, "feet"),
  39044. default: true
  39045. },
  39046. ]
  39047. ))
  39048. characterMakers.push(() => makeCharacter(
  39049. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  39050. {
  39051. front: {
  39052. height: math.unit(15, "feet"),
  39053. weight: math.unit(615, "lb"),
  39054. name: "Front",
  39055. image: {
  39056. source: "./media/characters/grockle/front.svg",
  39057. extra: 1535/1427,
  39058. bottom: 56/1591
  39059. }
  39060. },
  39061. },
  39062. [
  39063. {
  39064. name: "Normal",
  39065. height: math.unit(15, "feet"),
  39066. default: true
  39067. },
  39068. {
  39069. name: "Large",
  39070. height: math.unit(150, "feet")
  39071. },
  39072. {
  39073. name: "Macro",
  39074. height: math.unit(1876, "feet")
  39075. },
  39076. {
  39077. name: "Mega Macro",
  39078. height: math.unit(121940, "feet")
  39079. },
  39080. {
  39081. name: "Giga Macro",
  39082. height: math.unit(750, "km")
  39083. },
  39084. {
  39085. name: "Tera Macro",
  39086. height: math.unit(750000, "km")
  39087. },
  39088. {
  39089. name: "Galactic",
  39090. height: math.unit(1.4e5, "km")
  39091. },
  39092. {
  39093. name: "Godlike",
  39094. height: math.unit(9.8e280, "galaxies")
  39095. },
  39096. ]
  39097. ))
  39098. characterMakers.push(() => makeCharacter(
  39099. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  39100. {
  39101. front: {
  39102. height: math.unit(11, "meters"),
  39103. weight: math.unit(20, "tonnes"),
  39104. name: "Front",
  39105. image: {
  39106. source: "./media/characters/alistair/front.svg",
  39107. extra: 1265/1009,
  39108. bottom: 93/1358
  39109. }
  39110. },
  39111. },
  39112. [
  39113. {
  39114. name: "Normal",
  39115. height: math.unit(11, "meters"),
  39116. default: true
  39117. },
  39118. ]
  39119. ))
  39120. characterMakers.push(() => makeCharacter(
  39121. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  39122. {
  39123. front: {
  39124. height: math.unit(5 + 8/12, "feet"),
  39125. name: "Front",
  39126. image: {
  39127. source: "./media/characters/haruka/front.svg",
  39128. extra: 2012/1952,
  39129. bottom: 0/2012
  39130. }
  39131. },
  39132. },
  39133. [
  39134. {
  39135. name: "Normal",
  39136. height: math.unit(5 + 8/12, "feet"),
  39137. default: true
  39138. },
  39139. ]
  39140. ))
  39141. characterMakers.push(() => makeCharacter(
  39142. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  39143. {
  39144. back: {
  39145. height: math.unit(9, "feet"),
  39146. name: "Back",
  39147. image: {
  39148. source: "./media/characters/vivian-sylveon/back.svg",
  39149. extra: 1853/1714,
  39150. bottom: 0/1853
  39151. }
  39152. },
  39153. },
  39154. [
  39155. {
  39156. name: "Normal",
  39157. height: math.unit(9, "feet"),
  39158. default: true
  39159. },
  39160. {
  39161. name: "Macro",
  39162. height: math.unit(500, "feet")
  39163. },
  39164. {
  39165. name: "Megamacro",
  39166. height: math.unit(600, "miles")
  39167. },
  39168. {
  39169. name: "Gigamacro",
  39170. height: math.unit(30000, "miles")
  39171. },
  39172. ]
  39173. ))
  39174. characterMakers.push(() => makeCharacter(
  39175. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  39176. {
  39177. anthro: {
  39178. height: math.unit(5 + 10/12, "feet"),
  39179. weight: math.unit(100, "lb"),
  39180. name: "Anthro",
  39181. image: {
  39182. source: "./media/characters/daiki/anthro.svg",
  39183. extra: 1115/1027,
  39184. bottom: 69/1184
  39185. }
  39186. },
  39187. feral: {
  39188. height: math.unit(200, "feet"),
  39189. name: "Feral",
  39190. image: {
  39191. source: "./media/characters/daiki/feral.svg",
  39192. extra: 1256/313,
  39193. bottom: 39/1295
  39194. }
  39195. },
  39196. feralHead: {
  39197. height: math.unit(171, "feet"),
  39198. name: "Feral Head",
  39199. image: {
  39200. source: "./media/characters/daiki/feral-head.svg"
  39201. }
  39202. },
  39203. manaDragon: {
  39204. height: math.unit(170, "meters"),
  39205. name: "Mana-dragon",
  39206. image: {
  39207. source: "./media/characters/daiki/mana-dragon.svg",
  39208. extra: 763/420,
  39209. bottom: 97/860
  39210. }
  39211. },
  39212. },
  39213. [
  39214. {
  39215. name: "Normal",
  39216. height: math.unit(5 + 10/12, "feet"),
  39217. default: true
  39218. },
  39219. ]
  39220. ))
  39221. characterMakers.push(() => makeCharacter(
  39222. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  39223. {
  39224. fullyEquippedFront: {
  39225. height: math.unit(3 + 1/12, "feet"),
  39226. weight: math.unit(24, "lb"),
  39227. name: "Fully Equipped (Front)",
  39228. image: {
  39229. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  39230. extra: 687/605,
  39231. bottom: 18/705
  39232. }
  39233. },
  39234. fullyEquippedBack: {
  39235. height: math.unit(3 + 1/12, "feet"),
  39236. weight: math.unit(24, "lb"),
  39237. name: "Fully Equipped (Back)",
  39238. image: {
  39239. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  39240. extra: 689/590,
  39241. bottom: 18/707
  39242. }
  39243. },
  39244. dailyWear: {
  39245. height: math.unit(3 + 1/12, "feet"),
  39246. weight: math.unit(24, "lb"),
  39247. name: "Daily Wear",
  39248. image: {
  39249. source: "./media/characters/tea-spot/daily-wear.svg",
  39250. extra: 701/620,
  39251. bottom: 21/722
  39252. }
  39253. },
  39254. maidWork: {
  39255. height: math.unit(3 + 1/12, "feet"),
  39256. weight: math.unit(24, "lb"),
  39257. name: "Maid Work",
  39258. image: {
  39259. source: "./media/characters/tea-spot/maid-work.svg",
  39260. extra: 693/609,
  39261. bottom: 15/708
  39262. }
  39263. },
  39264. },
  39265. [
  39266. {
  39267. name: "Normal",
  39268. height: math.unit(3 + 1/12, "feet"),
  39269. default: true
  39270. },
  39271. ]
  39272. ))
  39273. characterMakers.push(() => makeCharacter(
  39274. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  39275. {
  39276. front: {
  39277. height: math.unit(175, "cm"),
  39278. weight: math.unit(75, "kg"),
  39279. name: "Front",
  39280. image: {
  39281. source: "./media/characters/chee/front.svg",
  39282. extra: 1796/1740,
  39283. bottom: 40/1836
  39284. }
  39285. },
  39286. },
  39287. [
  39288. {
  39289. name: "Micro-Micro",
  39290. height: math.unit(1, "nm")
  39291. },
  39292. {
  39293. name: "Micro-erst",
  39294. height: math.unit(1, "micrometer")
  39295. },
  39296. {
  39297. name: "Micro-er",
  39298. height: math.unit(1, "cm")
  39299. },
  39300. {
  39301. name: "Normal",
  39302. height: math.unit(175, "cm"),
  39303. default: true
  39304. },
  39305. {
  39306. name: "Macro",
  39307. height: math.unit(100, "m")
  39308. },
  39309. {
  39310. name: "Macro-er",
  39311. height: math.unit(1, "km")
  39312. },
  39313. {
  39314. name: "Macro-erst",
  39315. height: math.unit(10, "km")
  39316. },
  39317. {
  39318. name: "Macro-Macro",
  39319. height: math.unit(100, "km")
  39320. },
  39321. ]
  39322. ))
  39323. characterMakers.push(() => makeCharacter(
  39324. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  39325. {
  39326. front: {
  39327. height: math.unit(11 + 9/12, "feet"),
  39328. weight: math.unit(935, "lb"),
  39329. name: "Front",
  39330. image: {
  39331. source: "./media/characters/kingsley/front.svg",
  39332. extra: 1803/1674,
  39333. bottom: 127/1930
  39334. }
  39335. },
  39336. frontNude: {
  39337. height: math.unit(11 + 9/12, "feet"),
  39338. weight: math.unit(935, "lb"),
  39339. name: "Front (Nude)",
  39340. image: {
  39341. source: "./media/characters/kingsley/front-nude.svg",
  39342. extra: 1803/1674,
  39343. bottom: 127/1930
  39344. }
  39345. },
  39346. },
  39347. [
  39348. {
  39349. name: "Normal",
  39350. height: math.unit(11 + 9/12, "feet"),
  39351. default: true
  39352. },
  39353. ]
  39354. ))
  39355. characterMakers.push(() => makeCharacter(
  39356. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  39357. {
  39358. side: {
  39359. height: math.unit(9, "feet"),
  39360. name: "Side",
  39361. image: {
  39362. source: "./media/characters/rymel/side.svg",
  39363. extra: 792/469,
  39364. bottom: 121/913
  39365. }
  39366. },
  39367. maw: {
  39368. height: math.unit(2.4, "meters"),
  39369. name: "Maw",
  39370. image: {
  39371. source: "./media/characters/rymel/maw.svg"
  39372. }
  39373. },
  39374. },
  39375. [
  39376. {
  39377. name: "House Drake",
  39378. height: math.unit(2, "feet")
  39379. },
  39380. {
  39381. name: "Reduced",
  39382. height: math.unit(4.5, "feet")
  39383. },
  39384. {
  39385. name: "Normal",
  39386. height: math.unit(9, "feet"),
  39387. default: true
  39388. },
  39389. ]
  39390. ))
  39391. characterMakers.push(() => makeCharacter(
  39392. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  39393. {
  39394. front: {
  39395. height: math.unit(1.74, "meters"),
  39396. weight: math.unit(55, "kg"),
  39397. name: "Front",
  39398. image: {
  39399. source: "./media/characters/rubus/front.svg",
  39400. extra: 1894/1742,
  39401. bottom: 44/1938
  39402. }
  39403. },
  39404. },
  39405. [
  39406. {
  39407. name: "Normal",
  39408. height: math.unit(1.74, "meters"),
  39409. default: true
  39410. },
  39411. ]
  39412. ))
  39413. characterMakers.push(() => makeCharacter(
  39414. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  39415. {
  39416. front: {
  39417. height: math.unit(5 + 2/12, "feet"),
  39418. weight: math.unit(112, "lb"),
  39419. name: "Front",
  39420. image: {
  39421. source: "./media/characters/cassie-kingston/front.svg",
  39422. extra: 1438/1390,
  39423. bottom: 47/1485
  39424. }
  39425. },
  39426. },
  39427. [
  39428. {
  39429. name: "Normal",
  39430. height: math.unit(5 + 2/12, "feet"),
  39431. default: true
  39432. },
  39433. {
  39434. name: "Macro",
  39435. height: math.unit(128, "feet")
  39436. },
  39437. {
  39438. name: "Megamacro",
  39439. height: math.unit(2.56, "miles")
  39440. },
  39441. ]
  39442. ))
  39443. characterMakers.push(() => makeCharacter(
  39444. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  39445. {
  39446. front: {
  39447. height: math.unit(7, "feet"),
  39448. name: "Front",
  39449. image: {
  39450. source: "./media/characters/fox/front.svg",
  39451. extra: 1798/1703,
  39452. bottom: 55/1853
  39453. }
  39454. },
  39455. back: {
  39456. height: math.unit(7, "feet"),
  39457. name: "Back",
  39458. image: {
  39459. source: "./media/characters/fox/back.svg",
  39460. extra: 1748/1649,
  39461. bottom: 32/1780
  39462. }
  39463. },
  39464. head: {
  39465. height: math.unit(1.95, "feet"),
  39466. name: "Head",
  39467. image: {
  39468. source: "./media/characters/fox/head.svg"
  39469. }
  39470. },
  39471. dick: {
  39472. height: math.unit(1.33, "feet"),
  39473. name: "Dick",
  39474. image: {
  39475. source: "./media/characters/fox/dick.svg"
  39476. }
  39477. },
  39478. foot: {
  39479. height: math.unit(1, "feet"),
  39480. name: "Foot",
  39481. image: {
  39482. source: "./media/characters/fox/foot.svg"
  39483. }
  39484. },
  39485. paw: {
  39486. height: math.unit(0.92, "feet"),
  39487. name: "Paw",
  39488. image: {
  39489. source: "./media/characters/fox/paw.svg"
  39490. }
  39491. },
  39492. },
  39493. [
  39494. {
  39495. name: "Small",
  39496. height: math.unit(3, "inches")
  39497. },
  39498. {
  39499. name: "\"Realistic\"",
  39500. height: math.unit(7, "feet")
  39501. },
  39502. {
  39503. name: "Normal",
  39504. height: math.unit(150, "feet"),
  39505. default: true
  39506. },
  39507. {
  39508. name: "BIG",
  39509. height: math.unit(1200, "feet")
  39510. },
  39511. {
  39512. name: "👀",
  39513. height: math.unit(5, "miles")
  39514. },
  39515. {
  39516. name: "👀👀👀",
  39517. height: math.unit(64, "miles")
  39518. },
  39519. ]
  39520. ))
  39521. characterMakers.push(() => makeCharacter(
  39522. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  39523. {
  39524. front: {
  39525. height: math.unit(625, "feet"),
  39526. name: "Front",
  39527. image: {
  39528. source: "./media/characters/asonja-rossa/front.svg",
  39529. extra: 1833/1686,
  39530. bottom: 24/1857
  39531. }
  39532. },
  39533. back: {
  39534. height: math.unit(625, "feet"),
  39535. name: "Back",
  39536. image: {
  39537. source: "./media/characters/asonja-rossa/back.svg",
  39538. extra: 1852/1753,
  39539. bottom: 26/1878
  39540. }
  39541. },
  39542. },
  39543. [
  39544. {
  39545. name: "Macro",
  39546. height: math.unit(625, "feet"),
  39547. default: true
  39548. },
  39549. ]
  39550. ))
  39551. characterMakers.push(() => makeCharacter(
  39552. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  39553. {
  39554. side: {
  39555. height: math.unit(8, "feet"),
  39556. name: "Side",
  39557. image: {
  39558. source: "./media/characters/rezukii/side.svg",
  39559. extra: 979/542,
  39560. bottom: 87/1066
  39561. }
  39562. },
  39563. sitting: {
  39564. height: math.unit(14.6, "feet"),
  39565. name: "Sitting",
  39566. image: {
  39567. source: "./media/characters/rezukii/sitting.svg",
  39568. extra: 1023/813,
  39569. bottom: 45/1068
  39570. }
  39571. },
  39572. },
  39573. [
  39574. {
  39575. name: "Tiny",
  39576. height: math.unit(2, "feet")
  39577. },
  39578. {
  39579. name: "Smol",
  39580. height: math.unit(4, "feet")
  39581. },
  39582. {
  39583. name: "Normal",
  39584. height: math.unit(8, "feet"),
  39585. default: true
  39586. },
  39587. {
  39588. name: "Big",
  39589. height: math.unit(12, "feet")
  39590. },
  39591. {
  39592. name: "Macro",
  39593. height: math.unit(30, "feet")
  39594. },
  39595. ]
  39596. ))
  39597. characterMakers.push(() => makeCharacter(
  39598. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  39599. {
  39600. front: {
  39601. height: math.unit(14, "feet"),
  39602. weight: math.unit(9.5, "tonnes"),
  39603. name: "Front",
  39604. image: {
  39605. source: "./media/characters/dawnheart/front.svg",
  39606. extra: 2792/2675,
  39607. bottom: 64/2856
  39608. }
  39609. },
  39610. },
  39611. [
  39612. {
  39613. name: "Normal",
  39614. height: math.unit(14, "feet"),
  39615. default: true
  39616. },
  39617. ]
  39618. ))
  39619. characterMakers.push(() => makeCharacter(
  39620. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  39621. {
  39622. front: {
  39623. height: math.unit(1.7, "m"),
  39624. name: "Front",
  39625. image: {
  39626. source: "./media/characters/gladi/front.svg",
  39627. extra: 1460/1362,
  39628. bottom: 19/1479
  39629. }
  39630. },
  39631. back: {
  39632. height: math.unit(1.7, "m"),
  39633. name: "Back",
  39634. image: {
  39635. source: "./media/characters/gladi/back.svg",
  39636. extra: 1459/1357,
  39637. bottom: 12/1471
  39638. }
  39639. },
  39640. feral: {
  39641. height: math.unit(2.05, "m"),
  39642. name: "Feral",
  39643. image: {
  39644. source: "./media/characters/gladi/feral.svg",
  39645. extra: 821/557,
  39646. bottom: 91/912
  39647. }
  39648. },
  39649. },
  39650. [
  39651. {
  39652. name: "Shortest",
  39653. height: math.unit(70, "cm")
  39654. },
  39655. {
  39656. name: "Normal",
  39657. height: math.unit(1.7, "m")
  39658. },
  39659. {
  39660. name: "Macro",
  39661. height: math.unit(10, "m"),
  39662. default: true
  39663. },
  39664. {
  39665. name: "Tallest",
  39666. height: math.unit(200, "m")
  39667. },
  39668. ]
  39669. ))
  39670. characterMakers.push(() => makeCharacter(
  39671. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  39672. {
  39673. front: {
  39674. height: math.unit(5 + 7/12, "feet"),
  39675. weight: math.unit(2, "tons"),
  39676. name: "Front",
  39677. image: {
  39678. source: "./media/characters/erdno/front.svg",
  39679. extra: 1234/1129,
  39680. bottom: 35/1269
  39681. }
  39682. },
  39683. angled: {
  39684. height: math.unit(5 + 7/12, "feet"),
  39685. weight: math.unit(2, "tons"),
  39686. name: "Angled",
  39687. image: {
  39688. source: "./media/characters/erdno/angled.svg",
  39689. extra: 1185/1139,
  39690. bottom: 36/1221
  39691. }
  39692. },
  39693. side: {
  39694. height: math.unit(5 + 7/12, "feet"),
  39695. weight: math.unit(2, "tons"),
  39696. name: "Side",
  39697. image: {
  39698. source: "./media/characters/erdno/side.svg",
  39699. extra: 1191/1144,
  39700. bottom: 40/1231
  39701. }
  39702. },
  39703. back: {
  39704. height: math.unit(5 + 7/12, "feet"),
  39705. weight: math.unit(2, "tons"),
  39706. name: "Back",
  39707. image: {
  39708. source: "./media/characters/erdno/back.svg",
  39709. extra: 1202/1146,
  39710. bottom: 17/1219
  39711. }
  39712. },
  39713. frontNsfw: {
  39714. height: math.unit(5 + 7/12, "feet"),
  39715. weight: math.unit(2, "tons"),
  39716. name: "Front (NSFW)",
  39717. image: {
  39718. source: "./media/characters/erdno/front-nsfw.svg",
  39719. extra: 1234/1129,
  39720. bottom: 35/1269
  39721. }
  39722. },
  39723. angledNsfw: {
  39724. height: math.unit(5 + 7/12, "feet"),
  39725. weight: math.unit(2, "tons"),
  39726. name: "Angled (NSFW)",
  39727. image: {
  39728. source: "./media/characters/erdno/angled-nsfw.svg",
  39729. extra: 1185/1139,
  39730. bottom: 36/1221
  39731. }
  39732. },
  39733. sideNsfw: {
  39734. height: math.unit(5 + 7/12, "feet"),
  39735. weight: math.unit(2, "tons"),
  39736. name: "Side (NSFW)",
  39737. image: {
  39738. source: "./media/characters/erdno/side-nsfw.svg",
  39739. extra: 1191/1144,
  39740. bottom: 40/1231
  39741. }
  39742. },
  39743. backNsfw: {
  39744. height: math.unit(5 + 7/12, "feet"),
  39745. weight: math.unit(2, "tons"),
  39746. name: "Back (NSFW)",
  39747. image: {
  39748. source: "./media/characters/erdno/back-nsfw.svg",
  39749. extra: 1202/1146,
  39750. bottom: 17/1219
  39751. }
  39752. },
  39753. frontHyper: {
  39754. height: math.unit(5 + 7/12, "feet"),
  39755. weight: math.unit(2, "tons"),
  39756. name: "Front (Hyper)",
  39757. image: {
  39758. source: "./media/characters/erdno/front-hyper.svg",
  39759. extra: 1298/1136,
  39760. bottom: 35/1333
  39761. }
  39762. },
  39763. },
  39764. [
  39765. {
  39766. name: "Normal",
  39767. height: math.unit(5 + 7/12, "feet"),
  39768. default: true
  39769. },
  39770. {
  39771. name: "Big",
  39772. height: math.unit(5.7, "meters")
  39773. },
  39774. {
  39775. name: "Macro",
  39776. height: math.unit(5.7, "kilometers")
  39777. },
  39778. {
  39779. name: "Megamacro",
  39780. height: math.unit(5.7, "earths")
  39781. },
  39782. ]
  39783. ))
  39784. characterMakers.push(() => makeCharacter(
  39785. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  39786. {
  39787. front: {
  39788. height: math.unit(5 + 10/12, "feet"),
  39789. weight: math.unit(150, "lb"),
  39790. name: "Front",
  39791. image: {
  39792. source: "./media/characters/jamie/front.svg",
  39793. extra: 1908/1768,
  39794. bottom: 19/1927
  39795. }
  39796. },
  39797. },
  39798. [
  39799. {
  39800. name: "Minimum",
  39801. height: math.unit(2, "cm")
  39802. },
  39803. {
  39804. name: "Micro",
  39805. height: math.unit(3, "inches")
  39806. },
  39807. {
  39808. name: "Normal",
  39809. height: math.unit(5 + 10/12, "feet"),
  39810. default: true
  39811. },
  39812. {
  39813. name: "Macro",
  39814. height: math.unit(150, "feet")
  39815. },
  39816. {
  39817. name: "Megamacro",
  39818. height: math.unit(10000, "m")
  39819. },
  39820. ]
  39821. ))
  39822. characterMakers.push(() => makeCharacter(
  39823. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  39824. {
  39825. front: {
  39826. height: math.unit(2, "meters"),
  39827. weight: math.unit(100, "kg"),
  39828. name: "Front",
  39829. image: {
  39830. source: "./media/characters/shiron/front.svg",
  39831. extra: 2103/1985,
  39832. bottom: 98/2201
  39833. }
  39834. },
  39835. back: {
  39836. height: math.unit(2, "meters"),
  39837. weight: math.unit(100, "kg"),
  39838. name: "Back",
  39839. image: {
  39840. source: "./media/characters/shiron/back.svg",
  39841. extra: 2110/2015,
  39842. bottom: 89/2199
  39843. }
  39844. },
  39845. hand: {
  39846. height: math.unit(0.96, "feet"),
  39847. name: "Hand",
  39848. image: {
  39849. source: "./media/characters/shiron/hand.svg"
  39850. }
  39851. },
  39852. foot: {
  39853. height: math.unit(1.464, "feet"),
  39854. name: "Foot",
  39855. image: {
  39856. source: "./media/characters/shiron/foot.svg"
  39857. }
  39858. },
  39859. },
  39860. [
  39861. {
  39862. name: "Normal",
  39863. height: math.unit(2, "meters")
  39864. },
  39865. {
  39866. name: "Macro",
  39867. height: math.unit(500, "meters"),
  39868. default: true
  39869. },
  39870. {
  39871. name: "Megamacro",
  39872. height: math.unit(20, "km")
  39873. },
  39874. ]
  39875. ))
  39876. characterMakers.push(() => makeCharacter(
  39877. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  39878. {
  39879. front: {
  39880. height: math.unit(6, "feet"),
  39881. name: "Front",
  39882. image: {
  39883. source: "./media/characters/sam/front.svg",
  39884. extra: 849/826,
  39885. bottom: 19/868
  39886. }
  39887. },
  39888. },
  39889. [
  39890. {
  39891. name: "Normal",
  39892. height: math.unit(6, "feet"),
  39893. default: true
  39894. },
  39895. ]
  39896. ))
  39897. characterMakers.push(() => makeCharacter(
  39898. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  39899. {
  39900. front: {
  39901. height: math.unit(8 + 4/12, "feet"),
  39902. weight: math.unit(122, "kg"),
  39903. name: "Front",
  39904. image: {
  39905. source: "./media/characters/namori-kurogawa/front.svg",
  39906. extra: 1894/1576,
  39907. bottom: 34/1928
  39908. }
  39909. },
  39910. },
  39911. [
  39912. {
  39913. name: "Normal",
  39914. height: math.unit(8 + 4/12, "feet"),
  39915. default: true
  39916. },
  39917. ]
  39918. ))
  39919. characterMakers.push(() => makeCharacter(
  39920. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  39921. {
  39922. front: {
  39923. height: math.unit(9, "feet"),
  39924. weight: math.unit(621, "lb"),
  39925. name: "Front",
  39926. image: {
  39927. source: "./media/characters/unmru/front.svg",
  39928. extra: 1853/1747,
  39929. bottom: 73/1926
  39930. }
  39931. },
  39932. side: {
  39933. height: math.unit(9, "feet"),
  39934. weight: math.unit(621, "lb"),
  39935. name: "Side",
  39936. image: {
  39937. source: "./media/characters/unmru/side.svg",
  39938. extra: 1781/1671,
  39939. bottom: 127/1908
  39940. }
  39941. },
  39942. back: {
  39943. height: math.unit(9, "feet"),
  39944. weight: math.unit(621, "lb"),
  39945. name: "Back",
  39946. image: {
  39947. source: "./media/characters/unmru/back.svg",
  39948. extra: 1894/1765,
  39949. bottom: 75/1969
  39950. }
  39951. },
  39952. dick: {
  39953. height: math.unit(3, "feet"),
  39954. weight: math.unit(35, "lb"),
  39955. name: "Dick",
  39956. image: {
  39957. source: "./media/characters/unmru/dick.svg"
  39958. }
  39959. },
  39960. },
  39961. [
  39962. {
  39963. name: "Normal",
  39964. height: math.unit(9, "feet")
  39965. },
  39966. {
  39967. name: "Natural",
  39968. height: math.unit(27, "feet"),
  39969. default: true
  39970. },
  39971. {
  39972. name: "Giant",
  39973. height: math.unit(90, "feet")
  39974. },
  39975. {
  39976. name: "Kaiju",
  39977. height: math.unit(270, "feet")
  39978. },
  39979. {
  39980. name: "Macro",
  39981. height: math.unit(900, "feet")
  39982. },
  39983. {
  39984. name: "Macro+",
  39985. height: math.unit(2700, "feet")
  39986. },
  39987. {
  39988. name: "Megamacro",
  39989. height: math.unit(9000, "feet")
  39990. },
  39991. {
  39992. name: "City-Crushing",
  39993. height: math.unit(27000, "feet")
  39994. },
  39995. {
  39996. name: "Mountain-Mashing",
  39997. height: math.unit(90000, "feet")
  39998. },
  39999. {
  40000. name: "Earth-Eclipsing",
  40001. height: math.unit(2.7e8, "feet")
  40002. },
  40003. {
  40004. name: "Sol-Swallowing",
  40005. height: math.unit(9e10, "feet")
  40006. },
  40007. {
  40008. name: "Majoris-Munching",
  40009. height: math.unit(2.7e13, "feet")
  40010. },
  40011. ]
  40012. ))
  40013. characterMakers.push(() => makeCharacter(
  40014. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  40015. {
  40016. front: {
  40017. height: math.unit(1, "inch"),
  40018. name: "Front",
  40019. image: {
  40020. source: "./media/characters/squeaks-mouse/front.svg",
  40021. extra: 352/308,
  40022. bottom: 25/377
  40023. }
  40024. },
  40025. },
  40026. [
  40027. {
  40028. name: "Micro",
  40029. height: math.unit(1, "inch"),
  40030. default: true
  40031. },
  40032. ]
  40033. ))
  40034. characterMakers.push(() => makeCharacter(
  40035. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  40036. {
  40037. side: {
  40038. height: math.unit(35, "feet"),
  40039. name: "Side",
  40040. image: {
  40041. source: "./media/characters/sayko/side.svg",
  40042. extra: 1697/1021,
  40043. bottom: 82/1779
  40044. }
  40045. },
  40046. head: {
  40047. height: math.unit(16, "feet"),
  40048. name: "Head",
  40049. image: {
  40050. source: "./media/characters/sayko/head.svg"
  40051. }
  40052. },
  40053. forepaw: {
  40054. height: math.unit(7.85, "feet"),
  40055. name: "Forepaw",
  40056. image: {
  40057. source: "./media/characters/sayko/forepaw.svg"
  40058. }
  40059. },
  40060. hindpaw: {
  40061. height: math.unit(8.8, "feet"),
  40062. name: "Hindpaw",
  40063. image: {
  40064. source: "./media/characters/sayko/hindpaw.svg"
  40065. }
  40066. },
  40067. },
  40068. [
  40069. {
  40070. name: "Normal",
  40071. height: math.unit(35, "feet"),
  40072. default: true
  40073. },
  40074. {
  40075. name: "Colossus",
  40076. height: math.unit(100, "meters")
  40077. },
  40078. {
  40079. name: "\"Small\" Deity",
  40080. height: math.unit(1, "km")
  40081. },
  40082. {
  40083. name: "\"Large\" Deity",
  40084. height: math.unit(15, "km")
  40085. },
  40086. ]
  40087. ))
  40088. characterMakers.push(() => makeCharacter(
  40089. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  40090. {
  40091. front: {
  40092. height: math.unit(6, "feet"),
  40093. weight: math.unit(250, "lb"),
  40094. name: "Front",
  40095. image: {
  40096. source: "./media/characters/mukiro/front.svg",
  40097. extra: 1368/1310,
  40098. bottom: 34/1402
  40099. }
  40100. },
  40101. },
  40102. [
  40103. {
  40104. name: "Normal",
  40105. height: math.unit(6, "feet"),
  40106. default: true
  40107. },
  40108. ]
  40109. ))
  40110. characterMakers.push(() => makeCharacter(
  40111. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  40112. {
  40113. front: {
  40114. height: math.unit(12 + 4/12, "feet"),
  40115. name: "Front",
  40116. image: {
  40117. source: "./media/characters/zeph-the-tiger-god/front.svg",
  40118. extra: 1346/1311,
  40119. bottom: 65/1411
  40120. }
  40121. },
  40122. },
  40123. [
  40124. {
  40125. name: "Base",
  40126. height: math.unit(12 + 4/12, "feet"),
  40127. default: true
  40128. },
  40129. {
  40130. name: "Macro",
  40131. height: math.unit(150, "feet")
  40132. },
  40133. {
  40134. name: "Mega",
  40135. height: math.unit(2, "miles")
  40136. },
  40137. {
  40138. name: "Demi God",
  40139. height: math.unit(4, "AU")
  40140. },
  40141. {
  40142. name: "God Size",
  40143. height: math.unit(1, "universe")
  40144. },
  40145. ]
  40146. ))
  40147. characterMakers.push(() => makeCharacter(
  40148. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  40149. {
  40150. front: {
  40151. height: math.unit(3 + 3/12, "feet"),
  40152. weight: math.unit(88, "lb"),
  40153. name: "Front",
  40154. image: {
  40155. source: "./media/characters/trey/front.svg",
  40156. extra: 1815/1509,
  40157. bottom: 60/1875
  40158. }
  40159. },
  40160. },
  40161. [
  40162. {
  40163. name: "Normal",
  40164. height: math.unit(3 + 3/12, "feet"),
  40165. default: true
  40166. },
  40167. ]
  40168. ))
  40169. characterMakers.push(() => makeCharacter(
  40170. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  40171. {
  40172. front: {
  40173. height: math.unit(4, "meters"),
  40174. name: "Front",
  40175. image: {
  40176. source: "./media/characters/adelonda/front.svg",
  40177. extra: 1077/982,
  40178. bottom: 39/1116
  40179. }
  40180. },
  40181. back: {
  40182. height: math.unit(4, "meters"),
  40183. name: "Back",
  40184. image: {
  40185. source: "./media/characters/adelonda/back.svg",
  40186. extra: 1105/1003,
  40187. bottom: 25/1130
  40188. }
  40189. },
  40190. feral: {
  40191. height: math.unit(40/1.5, "meters"),
  40192. name: "Feral",
  40193. image: {
  40194. source: "./media/characters/adelonda/feral.svg",
  40195. extra: 597/271,
  40196. bottom: 387/984
  40197. }
  40198. },
  40199. },
  40200. [
  40201. {
  40202. name: "Normal",
  40203. height: math.unit(4, "meters"),
  40204. default: true
  40205. },
  40206. ]
  40207. ))
  40208. characterMakers.push(() => makeCharacter(
  40209. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  40210. {
  40211. front: {
  40212. height: math.unit(8 + 4/12, "feet"),
  40213. weight: math.unit(670, "lb"),
  40214. name: "Front",
  40215. image: {
  40216. source: "./media/characters/acadiel/front.svg",
  40217. extra: 1901/1595,
  40218. bottom: 142/2043
  40219. }
  40220. },
  40221. },
  40222. [
  40223. {
  40224. name: "Normal",
  40225. height: math.unit(8 + 4/12, "feet"),
  40226. default: true
  40227. },
  40228. {
  40229. name: "Macro",
  40230. height: math.unit(200, "feet")
  40231. },
  40232. ]
  40233. ))
  40234. characterMakers.push(() => makeCharacter(
  40235. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  40236. {
  40237. front: {
  40238. height: math.unit(6 + 2/12, "feet"),
  40239. weight: math.unit(185, "lb"),
  40240. name: "Front",
  40241. image: {
  40242. source: "./media/characters/kayne-ein/front.svg",
  40243. extra: 1780/1560,
  40244. bottom: 81/1861
  40245. }
  40246. },
  40247. },
  40248. [
  40249. {
  40250. name: "Normal",
  40251. height: math.unit(6 + 2/12, "feet"),
  40252. default: true
  40253. },
  40254. {
  40255. name: "Transformation Stage",
  40256. height: math.unit(15, "feet")
  40257. },
  40258. {
  40259. name: "Macro",
  40260. height: math.unit(150, "feet")
  40261. },
  40262. {
  40263. name: "Earth's Shadow",
  40264. height: math.unit(6200, "miles")
  40265. },
  40266. {
  40267. name: "Universal Demon",
  40268. height: math.unit(28e9, "parsecs")
  40269. },
  40270. {
  40271. name: "Multiverse God",
  40272. height: math.unit(3, "multiverses")
  40273. },
  40274. ]
  40275. ))
  40276. characterMakers.push(() => makeCharacter(
  40277. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  40278. {
  40279. front: {
  40280. height: math.unit(5 + 5/12, "feet"),
  40281. name: "Front",
  40282. image: {
  40283. source: "./media/characters/fawn/front.svg",
  40284. extra: 1873/1731,
  40285. bottom: 95/1968
  40286. }
  40287. },
  40288. back: {
  40289. height: math.unit(5 + 5/12, "feet"),
  40290. name: "Back",
  40291. image: {
  40292. source: "./media/characters/fawn/back.svg",
  40293. extra: 1813/1700,
  40294. bottom: 14/1827
  40295. }
  40296. },
  40297. hoof: {
  40298. height: math.unit(1.45, "feet"),
  40299. name: "Hoof",
  40300. image: {
  40301. source: "./media/characters/fawn/hoof.svg"
  40302. }
  40303. },
  40304. },
  40305. [
  40306. {
  40307. name: "Normal",
  40308. height: math.unit(5 + 5/12, "feet"),
  40309. default: true
  40310. },
  40311. ]
  40312. ))
  40313. characterMakers.push(() => makeCharacter(
  40314. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  40315. {
  40316. front: {
  40317. height: math.unit(2 + 5/12, "feet"),
  40318. name: "Front",
  40319. image: {
  40320. source: "./media/characters/orion/front.svg",
  40321. extra: 1366/1304,
  40322. bottom: 43/1409
  40323. }
  40324. },
  40325. paw: {
  40326. height: math.unit(0.52, "feet"),
  40327. name: "Paw",
  40328. image: {
  40329. source: "./media/characters/orion/paw.svg"
  40330. }
  40331. },
  40332. },
  40333. [
  40334. {
  40335. name: "Normal",
  40336. height: math.unit(2 + 5/12, "feet"),
  40337. default: true
  40338. },
  40339. ]
  40340. ))
  40341. characterMakers.push(() => makeCharacter(
  40342. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  40343. {
  40344. front: {
  40345. height: math.unit(5 + 10/12, "feet"),
  40346. name: "Front",
  40347. image: {
  40348. source: "./media/characters/vera/front.svg",
  40349. extra: 1680/1575,
  40350. bottom: 49/1729
  40351. }
  40352. },
  40353. back: {
  40354. height: math.unit(5 + 10/12, "feet"),
  40355. name: "Back",
  40356. image: {
  40357. source: "./media/characters/vera/back.svg",
  40358. extra: 1700/1588,
  40359. bottom: 18/1718
  40360. }
  40361. },
  40362. arcanine: {
  40363. height: math.unit(6 + 8/12, "feet"),
  40364. name: "Arcanine",
  40365. image: {
  40366. source: "./media/characters/vera/arcanine.svg",
  40367. extra: 1590/1511,
  40368. bottom: 71/1661
  40369. }
  40370. },
  40371. maw: {
  40372. height: math.unit(0.82, "feet"),
  40373. name: "Maw",
  40374. image: {
  40375. source: "./media/characters/vera/maw.svg"
  40376. }
  40377. },
  40378. mawArcanine: {
  40379. height: math.unit(0.97, "feet"),
  40380. name: "Maw (Arcanine)",
  40381. image: {
  40382. source: "./media/characters/vera/maw-arcanine.svg"
  40383. }
  40384. },
  40385. paw: {
  40386. height: math.unit(0.75, "feet"),
  40387. name: "Paw",
  40388. image: {
  40389. source: "./media/characters/vera/paw.svg"
  40390. }
  40391. },
  40392. pawprint: {
  40393. height: math.unit(0.52, "feet"),
  40394. name: "Pawprint",
  40395. image: {
  40396. source: "./media/characters/vera/pawprint.svg"
  40397. }
  40398. },
  40399. },
  40400. [
  40401. {
  40402. name: "Normal",
  40403. height: math.unit(5 + 10/12, "feet"),
  40404. default: true
  40405. },
  40406. {
  40407. name: "Macro",
  40408. height: math.unit(75, "feet")
  40409. },
  40410. ]
  40411. ))
  40412. characterMakers.push(() => makeCharacter(
  40413. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  40414. {
  40415. front: {
  40416. height: math.unit(4, "feet"),
  40417. weight: math.unit(40, "lb"),
  40418. name: "Front",
  40419. image: {
  40420. source: "./media/characters/orvan-rabbit/front.svg",
  40421. extra: 1896/1642,
  40422. bottom: 29/1925
  40423. }
  40424. },
  40425. },
  40426. [
  40427. {
  40428. name: "Normal",
  40429. height: math.unit(4, "feet"),
  40430. default: true
  40431. },
  40432. ]
  40433. ))
  40434. characterMakers.push(() => makeCharacter(
  40435. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  40436. {
  40437. front: {
  40438. height: math.unit(6, "feet"),
  40439. weight: math.unit(168, "lb"),
  40440. name: "Front",
  40441. image: {
  40442. source: "./media/characters/lisa/front.svg",
  40443. extra: 2065/1867,
  40444. bottom: 46/2111
  40445. }
  40446. },
  40447. back: {
  40448. height: math.unit(6, "feet"),
  40449. weight: math.unit(168, "lb"),
  40450. name: "Back",
  40451. image: {
  40452. source: "./media/characters/lisa/back.svg",
  40453. extra: 1982/1838,
  40454. bottom: 29/2011
  40455. }
  40456. },
  40457. maw: {
  40458. height: math.unit(0.81, "feet"),
  40459. name: "Maw",
  40460. image: {
  40461. source: "./media/characters/lisa/maw.svg"
  40462. }
  40463. },
  40464. paw: {
  40465. height: math.unit(0.9, "feet"),
  40466. name: "Paw",
  40467. image: {
  40468. source: "./media/characters/lisa/paw.svg"
  40469. }
  40470. },
  40471. caribousune: {
  40472. height: math.unit(7 + 2/12, "feet"),
  40473. weight: math.unit(268, "lb"),
  40474. name: "Caribousune",
  40475. image: {
  40476. source: "./media/characters/lisa/caribousune.svg",
  40477. extra: 1843/1633,
  40478. bottom: 29/1872
  40479. }
  40480. },
  40481. frontCaribousune: {
  40482. height: math.unit(7 + 2/12, "feet"),
  40483. weight: math.unit(268, "lb"),
  40484. name: "Front (Caribousune)",
  40485. image: {
  40486. source: "./media/characters/lisa/front-caribousune.svg",
  40487. extra: 1818/1638,
  40488. bottom: 52/1870
  40489. }
  40490. },
  40491. sideCaribousune: {
  40492. height: math.unit(7 + 2/12, "feet"),
  40493. weight: math.unit(268, "lb"),
  40494. name: "Side (Caribousune)",
  40495. image: {
  40496. source: "./media/characters/lisa/side-caribousune.svg",
  40497. extra: 1851/1635,
  40498. bottom: 16/1867
  40499. }
  40500. },
  40501. backCaribousune: {
  40502. height: math.unit(7 + 2/12, "feet"),
  40503. weight: math.unit(268, "lb"),
  40504. name: "Back (Caribousune)",
  40505. image: {
  40506. source: "./media/characters/lisa/back-caribousune.svg",
  40507. extra: 1801/1604,
  40508. bottom: 44/1845
  40509. }
  40510. },
  40511. caribou: {
  40512. height: math.unit(7 + 2/12, "feet"),
  40513. weight: math.unit(268, "lb"),
  40514. name: "Caribou",
  40515. image: {
  40516. source: "./media/characters/lisa/caribou.svg",
  40517. extra: 1843/1633,
  40518. bottom: 29/1872
  40519. }
  40520. },
  40521. frontCaribou: {
  40522. height: math.unit(7 + 2/12, "feet"),
  40523. weight: math.unit(268, "lb"),
  40524. name: "Front (Caribou)",
  40525. image: {
  40526. source: "./media/characters/lisa/front-caribou.svg",
  40527. extra: 1818/1638,
  40528. bottom: 52/1870
  40529. }
  40530. },
  40531. sideCaribou: {
  40532. height: math.unit(7 + 2/12, "feet"),
  40533. weight: math.unit(268, "lb"),
  40534. name: "Side (Caribou)",
  40535. image: {
  40536. source: "./media/characters/lisa/side-caribou.svg",
  40537. extra: 1851/1635,
  40538. bottom: 16/1867
  40539. }
  40540. },
  40541. backCaribou: {
  40542. height: math.unit(7 + 2/12, "feet"),
  40543. weight: math.unit(268, "lb"),
  40544. name: "Back (Caribou)",
  40545. image: {
  40546. source: "./media/characters/lisa/back-caribou.svg",
  40547. extra: 1801/1604,
  40548. bottom: 44/1845
  40549. }
  40550. },
  40551. mawCaribou: {
  40552. height: math.unit(1.45, "feet"),
  40553. name: "Maw (Caribou)",
  40554. image: {
  40555. source: "./media/characters/lisa/maw-caribou.svg"
  40556. }
  40557. },
  40558. mawCaribousune: {
  40559. height: math.unit(1.45, "feet"),
  40560. name: "Maw (Caribousune)",
  40561. image: {
  40562. source: "./media/characters/lisa/maw-caribousune.svg"
  40563. }
  40564. },
  40565. pawCaribousune: {
  40566. height: math.unit(1.61, "feet"),
  40567. name: "Paw (Caribou)",
  40568. image: {
  40569. source: "./media/characters/lisa/paw-caribousune.svg"
  40570. }
  40571. },
  40572. },
  40573. [
  40574. {
  40575. name: "Normal",
  40576. height: math.unit(6, "feet")
  40577. },
  40578. {
  40579. name: "God Size",
  40580. height: math.unit(72, "feet"),
  40581. default: true
  40582. },
  40583. {
  40584. name: "Towering",
  40585. height: math.unit(288, "feet")
  40586. },
  40587. {
  40588. name: "City Size",
  40589. height: math.unit(48384, "feet")
  40590. },
  40591. {
  40592. name: "Continental",
  40593. height: math.unit(4200, "miles")
  40594. },
  40595. {
  40596. name: "Planet Eater",
  40597. height: math.unit(42, "earths")
  40598. },
  40599. {
  40600. name: "Star Swallower",
  40601. height: math.unit(42, "solarradii")
  40602. },
  40603. {
  40604. name: "System Swallower",
  40605. height: math.unit(84000, "AU")
  40606. },
  40607. {
  40608. name: "Galaxy Gobbler",
  40609. height: math.unit(42, "galaxies")
  40610. },
  40611. {
  40612. name: "Universe Devourer",
  40613. height: math.unit(42, "universes")
  40614. },
  40615. {
  40616. name: "Multiverse Muncher",
  40617. height: math.unit(42, "multiverses")
  40618. },
  40619. ]
  40620. ))
  40621. characterMakers.push(() => makeCharacter(
  40622. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  40623. {
  40624. front: {
  40625. height: math.unit(36, "feet"),
  40626. name: "Front",
  40627. image: {
  40628. source: "./media/characters/shadow-rat/front.svg",
  40629. extra: 1845/1758,
  40630. bottom: 83/1928
  40631. }
  40632. },
  40633. },
  40634. [
  40635. {
  40636. name: "Macro",
  40637. height: math.unit(36, "feet"),
  40638. default: true
  40639. },
  40640. ]
  40641. ))
  40642. characterMakers.push(() => makeCharacter(
  40643. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  40644. {
  40645. side: {
  40646. height: math.unit(8, "feet"),
  40647. weight: math.unit(2630, "lb"),
  40648. name: "Side",
  40649. image: {
  40650. source: "./media/characters/torallia/side.svg",
  40651. extra: 2164/2021,
  40652. bottom: 371/2535
  40653. }
  40654. },
  40655. },
  40656. [
  40657. {
  40658. name: "Mortal Interaction",
  40659. height: math.unit(8, "feet")
  40660. },
  40661. {
  40662. name: "Natural",
  40663. height: math.unit(24, "feet"),
  40664. default: true
  40665. },
  40666. {
  40667. name: "Giant",
  40668. height: math.unit(80, "feet")
  40669. },
  40670. {
  40671. name: "Kaiju",
  40672. height: math.unit(240, "feet")
  40673. },
  40674. {
  40675. name: "Macro",
  40676. height: math.unit(800, "feet")
  40677. },
  40678. {
  40679. name: "Macro+",
  40680. height: math.unit(2400, "feet")
  40681. },
  40682. {
  40683. name: "Macro++",
  40684. height: math.unit(8000, "feet")
  40685. },
  40686. {
  40687. name: "City-Crushing",
  40688. height: math.unit(24000, "feet")
  40689. },
  40690. {
  40691. name: "Mountain-Mashing",
  40692. height: math.unit(80000, "feet")
  40693. },
  40694. {
  40695. name: "District Demolisher",
  40696. height: math.unit(240000, "feet")
  40697. },
  40698. {
  40699. name: "Tri-County Terror",
  40700. height: math.unit(800000, "feet")
  40701. },
  40702. {
  40703. name: "State Smasher",
  40704. height: math.unit(2.4e6, "feet")
  40705. },
  40706. {
  40707. name: "Nation Nemesis",
  40708. height: math.unit(8e6, "feet")
  40709. },
  40710. {
  40711. name: "Continent Cracker",
  40712. height: math.unit(2.4e7, "feet")
  40713. },
  40714. {
  40715. name: "Planet-Pillaging",
  40716. height: math.unit(8e7, "feet")
  40717. },
  40718. {
  40719. name: "Earth-Eclipsing",
  40720. height: math.unit(2.4e8, "feet")
  40721. },
  40722. {
  40723. name: "Jovian-Jostling",
  40724. height: math.unit(8e8, "feet")
  40725. },
  40726. {
  40727. name: "Gas Giant Gulper",
  40728. height: math.unit(2.4e9, "feet")
  40729. },
  40730. {
  40731. name: "Astral Annihilator",
  40732. height: math.unit(8e9, "feet")
  40733. },
  40734. {
  40735. name: "Celestial Conqueror",
  40736. height: math.unit(2.4e10, "feet")
  40737. },
  40738. {
  40739. name: "Sol-Swallowing",
  40740. height: math.unit(8e10, "feet")
  40741. },
  40742. {
  40743. name: "Hunter of the Heavens",
  40744. height: math.unit(2.4e13, "feet")
  40745. },
  40746. ]
  40747. ))
  40748. characterMakers.push(() => makeCharacter(
  40749. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  40750. {
  40751. front: {
  40752. height: math.unit(6 + 8/12, "feet"),
  40753. weight: math.unit(250, "kilograms"),
  40754. volume: math.unit(28, "liters"),
  40755. name: "Front",
  40756. image: {
  40757. source: "./media/characters/rebecca-pawlson/front.svg",
  40758. extra: 1737/1596,
  40759. bottom: 107/1844
  40760. }
  40761. },
  40762. back: {
  40763. height: math.unit(6 + 8/12, "feet"),
  40764. weight: math.unit(250, "kilograms"),
  40765. volume: math.unit(28, "liters"),
  40766. name: "Back",
  40767. image: {
  40768. source: "./media/characters/rebecca-pawlson/back.svg",
  40769. extra: 1702/1523,
  40770. bottom: 86/1788
  40771. }
  40772. },
  40773. },
  40774. [
  40775. {
  40776. name: "Normal",
  40777. height: math.unit(6 + 8/12, "feet")
  40778. },
  40779. {
  40780. name: "Mini Macro",
  40781. height: math.unit(10, "feet"),
  40782. default: true
  40783. },
  40784. {
  40785. name: "Macro",
  40786. height: math.unit(100, "feet")
  40787. },
  40788. {
  40789. name: "Mega Macro",
  40790. height: math.unit(2500, "feet")
  40791. },
  40792. {
  40793. name: "Giga Macro",
  40794. height: math.unit(50, "miles")
  40795. },
  40796. ]
  40797. ))
  40798. characterMakers.push(() => makeCharacter(
  40799. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  40800. {
  40801. front: {
  40802. height: math.unit(7 + 6/12, "feet"),
  40803. weight: math.unit(600, "lb"),
  40804. name: "Front",
  40805. image: {
  40806. source: "./media/characters/moxie-nova/front.svg",
  40807. extra: 1734/1652,
  40808. bottom: 41/1775
  40809. }
  40810. },
  40811. },
  40812. [
  40813. {
  40814. name: "Normal",
  40815. height: math.unit(7 + 6/12, "feet"),
  40816. default: true
  40817. },
  40818. ]
  40819. ))
  40820. characterMakers.push(() => makeCharacter(
  40821. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  40822. {
  40823. goat: {
  40824. height: math.unit(4, "feet"),
  40825. weight: math.unit(180, "lb"),
  40826. name: "Goat",
  40827. image: {
  40828. source: "./media/characters/tiffany/goat.svg",
  40829. extra: 1845/1595,
  40830. bottom: 106/1951
  40831. }
  40832. },
  40833. front: {
  40834. height: math.unit(5, "feet"),
  40835. weight: math.unit(150, "lb"),
  40836. name: "Foxcoon",
  40837. image: {
  40838. source: "./media/characters/tiffany/foxcoon.svg",
  40839. extra: 1941/1845,
  40840. bottom: 58/1999
  40841. }
  40842. },
  40843. },
  40844. [
  40845. {
  40846. name: "Normal",
  40847. height: math.unit(5, "feet"),
  40848. default: true
  40849. },
  40850. ]
  40851. ))
  40852. characterMakers.push(() => makeCharacter(
  40853. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  40854. {
  40855. front: {
  40856. height: math.unit(8, "feet"),
  40857. weight: math.unit(300, "lb"),
  40858. name: "Front",
  40859. image: {
  40860. source: "./media/characters/raxinath/front.svg",
  40861. extra: 1407/1309,
  40862. bottom: 39/1446
  40863. }
  40864. },
  40865. back: {
  40866. height: math.unit(8, "feet"),
  40867. weight: math.unit(300, "lb"),
  40868. name: "Back",
  40869. image: {
  40870. source: "./media/characters/raxinath/back.svg",
  40871. extra: 1405/1315,
  40872. bottom: 9/1414
  40873. }
  40874. },
  40875. },
  40876. [
  40877. {
  40878. name: "Speck",
  40879. height: math.unit(0.5, "nm")
  40880. },
  40881. {
  40882. name: "Micro",
  40883. height: math.unit(3, "inches")
  40884. },
  40885. {
  40886. name: "Kobold",
  40887. height: math.unit(3, "feet")
  40888. },
  40889. {
  40890. name: "Normal",
  40891. height: math.unit(8, "feet"),
  40892. default: true
  40893. },
  40894. {
  40895. name: "Giant",
  40896. height: math.unit(50, "feet")
  40897. },
  40898. {
  40899. name: "Macro",
  40900. height: math.unit(1000, "feet")
  40901. },
  40902. {
  40903. name: "Megamacro",
  40904. height: math.unit(1, "mile")
  40905. },
  40906. ]
  40907. ))
  40908. characterMakers.push(() => makeCharacter(
  40909. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  40910. {
  40911. front: {
  40912. height: math.unit(10, "feet"),
  40913. weight: math.unit(1442, "lb"),
  40914. name: "Front",
  40915. image: {
  40916. source: "./media/characters/mal-dragon/front.svg",
  40917. extra: 1515/1444,
  40918. bottom: 113/1628
  40919. }
  40920. },
  40921. back: {
  40922. height: math.unit(10, "feet"),
  40923. weight: math.unit(1442, "lb"),
  40924. name: "Back",
  40925. image: {
  40926. source: "./media/characters/mal-dragon/back.svg",
  40927. extra: 1527/1434,
  40928. bottom: 25/1552
  40929. }
  40930. },
  40931. },
  40932. [
  40933. {
  40934. name: "Mortal Interaction",
  40935. height: math.unit(10, "feet"),
  40936. default: true
  40937. },
  40938. {
  40939. name: "Large",
  40940. height: math.unit(30, "feet")
  40941. },
  40942. {
  40943. name: "Kaiju",
  40944. height: math.unit(300, "feet")
  40945. },
  40946. {
  40947. name: "Megamacro",
  40948. height: math.unit(10000, "feet")
  40949. },
  40950. {
  40951. name: "Continent Cracker",
  40952. height: math.unit(30000000, "feet")
  40953. },
  40954. {
  40955. name: "Sol-Swallowing",
  40956. height: math.unit(1e11, "feet")
  40957. },
  40958. {
  40959. name: "Light Universal",
  40960. height: math.unit(5, "universes")
  40961. },
  40962. {
  40963. name: "Universe Atoms",
  40964. height: math.unit(1.829e9, "universes")
  40965. },
  40966. {
  40967. name: "Light Multiversal",
  40968. height: math.unit(5, "multiverses")
  40969. },
  40970. {
  40971. name: "Multiverse Atoms",
  40972. height: math.unit(1.829e9, "multiverses")
  40973. },
  40974. {
  40975. name: "Fabric of Time",
  40976. height: math.unit(1e262, "multiverses")
  40977. },
  40978. ]
  40979. ))
  40980. characterMakers.push(() => makeCharacter(
  40981. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  40982. {
  40983. front: {
  40984. height: math.unit(9, "feet"),
  40985. weight: math.unit(1050, "lb"),
  40986. name: "Front",
  40987. image: {
  40988. source: "./media/characters/tabitha/front.svg",
  40989. extra: 2083/1994,
  40990. bottom: 68/2151
  40991. }
  40992. },
  40993. },
  40994. [
  40995. {
  40996. name: "Baseline",
  40997. height: math.unit(9, "feet"),
  40998. default: true
  40999. },
  41000. {
  41001. name: "Giant",
  41002. height: math.unit(90, "feet")
  41003. },
  41004. {
  41005. name: "Macro",
  41006. height: math.unit(900, "feet")
  41007. },
  41008. {
  41009. name: "Megamacro",
  41010. height: math.unit(9000, "feet")
  41011. },
  41012. {
  41013. name: "City-Crushing",
  41014. height: math.unit(27000, "feet")
  41015. },
  41016. {
  41017. name: "Mountain-Mashing",
  41018. height: math.unit(90000, "feet")
  41019. },
  41020. {
  41021. name: "Nation Nemesis",
  41022. height: math.unit(9e6, "feet")
  41023. },
  41024. {
  41025. name: "Continent Cracker",
  41026. height: math.unit(27e6, "feet")
  41027. },
  41028. {
  41029. name: "Earth-Eclipsing",
  41030. height: math.unit(2.7e8, "feet")
  41031. },
  41032. {
  41033. name: "Gas Giant Gulper",
  41034. height: math.unit(2.7e9, "feet")
  41035. },
  41036. {
  41037. name: "Sol-Swallowing",
  41038. height: math.unit(9e10, "feet")
  41039. },
  41040. {
  41041. name: "Galaxy Gulper",
  41042. height: math.unit(9, "galaxies")
  41043. },
  41044. {
  41045. name: "Cosmos Churner",
  41046. height: math.unit(9, "universes")
  41047. },
  41048. ]
  41049. ))
  41050. characterMakers.push(() => makeCharacter(
  41051. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  41052. {
  41053. front: {
  41054. height: math.unit(160, "cm"),
  41055. weight: math.unit(55, "kg"),
  41056. name: "Front",
  41057. image: {
  41058. source: "./media/characters/tow/front.svg",
  41059. extra: 1751/1722,
  41060. bottom: 74/1825
  41061. }
  41062. },
  41063. },
  41064. [
  41065. {
  41066. name: "Norm",
  41067. height: math.unit(160, "cm")
  41068. },
  41069. {
  41070. name: "Casual",
  41071. height: math.unit(3200, "m"),
  41072. default: true
  41073. },
  41074. {
  41075. name: "Show-Off",
  41076. height: math.unit(160, "km")
  41077. },
  41078. ]
  41079. ))
  41080. characterMakers.push(() => makeCharacter(
  41081. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  41082. {
  41083. front: {
  41084. height: math.unit(7 + 11/12, "feet"),
  41085. weight: math.unit(342.8, "lb"),
  41086. name: "Front",
  41087. image: {
  41088. source: "./media/characters/vivian-orca-dragon/front.svg",
  41089. extra: 1890/1865,
  41090. bottom: 28/1918
  41091. }
  41092. },
  41093. },
  41094. [
  41095. {
  41096. name: "Micro",
  41097. height: math.unit(5, "inches")
  41098. },
  41099. {
  41100. name: "Normal",
  41101. height: math.unit(7 + 11/12, "feet"),
  41102. default: true
  41103. },
  41104. {
  41105. name: "Macro",
  41106. height: math.unit(395 + 7/12, "feet")
  41107. },
  41108. ]
  41109. ))
  41110. characterMakers.push(() => makeCharacter(
  41111. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  41112. {
  41113. side: {
  41114. height: math.unit(10, "feet"),
  41115. weight: math.unit(1442, "lb"),
  41116. name: "Side",
  41117. image: {
  41118. source: "./media/characters/lotherakon/side.svg",
  41119. extra: 1604/1497,
  41120. bottom: 89/1693
  41121. }
  41122. },
  41123. },
  41124. [
  41125. {
  41126. name: "Mortal Interaction",
  41127. height: math.unit(10, "feet")
  41128. },
  41129. {
  41130. name: "Large",
  41131. height: math.unit(30, "feet"),
  41132. default: true
  41133. },
  41134. {
  41135. name: "Giant",
  41136. height: math.unit(100, "feet")
  41137. },
  41138. {
  41139. name: "Kaiju",
  41140. height: math.unit(300, "feet")
  41141. },
  41142. {
  41143. name: "Macro",
  41144. height: math.unit(1000, "feet")
  41145. },
  41146. {
  41147. name: "Macro+",
  41148. height: math.unit(3000, "feet")
  41149. },
  41150. {
  41151. name: "Megamacro",
  41152. height: math.unit(10000, "feet")
  41153. },
  41154. {
  41155. name: "City-Crushing",
  41156. height: math.unit(30000, "feet")
  41157. },
  41158. {
  41159. name: "Continent Cracker",
  41160. height: math.unit(30e6, "feet")
  41161. },
  41162. {
  41163. name: "Earth Eclipsing",
  41164. height: math.unit(3e8, "feet")
  41165. },
  41166. {
  41167. name: "Gas Giant Gulper",
  41168. height: math.unit(3e9, "feet")
  41169. },
  41170. {
  41171. name: "Sol-Swallowing",
  41172. height: math.unit(1e11, "feet")
  41173. },
  41174. {
  41175. name: "System Swallower",
  41176. height: math.unit(3e14, "feet")
  41177. },
  41178. {
  41179. name: "Galaxy Gulper",
  41180. height: math.unit(10, "galaxies")
  41181. },
  41182. {
  41183. name: "Light Universal",
  41184. height: math.unit(5, "universes")
  41185. },
  41186. {
  41187. name: "Universe Palm",
  41188. height: math.unit(20, "universes")
  41189. },
  41190. {
  41191. name: "Light Multiversal",
  41192. height: math.unit(5, "multiverses")
  41193. },
  41194. {
  41195. name: "Multiverse Palm",
  41196. height: math.unit(20, "multiverses")
  41197. },
  41198. {
  41199. name: "Inferno Incarnate",
  41200. height: math.unit(1e7, "multiverses")
  41201. },
  41202. ]
  41203. ))
  41204. characterMakers.push(() => makeCharacter(
  41205. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  41206. {
  41207. front: {
  41208. height: math.unit(8, "feet"),
  41209. weight: math.unit(1200, "lb"),
  41210. name: "Front",
  41211. image: {
  41212. source: "./media/characters/malithee/front.svg",
  41213. extra: 1675/1640,
  41214. bottom: 162/1837
  41215. }
  41216. },
  41217. },
  41218. [
  41219. {
  41220. name: "Mortal Interaction",
  41221. height: math.unit(8, "feet"),
  41222. default: true
  41223. },
  41224. {
  41225. name: "Large",
  41226. height: math.unit(24, "feet")
  41227. },
  41228. {
  41229. name: "Kaiju",
  41230. height: math.unit(240, "feet")
  41231. },
  41232. {
  41233. name: "Megamacro",
  41234. height: math.unit(8000, "feet")
  41235. },
  41236. {
  41237. name: "Continent Cracker",
  41238. height: math.unit(24e6, "feet")
  41239. },
  41240. {
  41241. name: "Earth-Eclipsing",
  41242. height: math.unit(2.4e8, "feet")
  41243. },
  41244. {
  41245. name: "Sol-Swallowing",
  41246. height: math.unit(8e10, "feet")
  41247. },
  41248. {
  41249. name: "Galaxy Gulper",
  41250. height: math.unit(8, "galaxies")
  41251. },
  41252. {
  41253. name: "Light Universal",
  41254. height: math.unit(4, "universes")
  41255. },
  41256. {
  41257. name: "Universe Atoms",
  41258. height: math.unit(1.829e9, "universes")
  41259. },
  41260. {
  41261. name: "Light Multiversal",
  41262. height: math.unit(4, "multiverses")
  41263. },
  41264. {
  41265. name: "Multiverse Atoms",
  41266. height: math.unit(1.829e9, "multiverses")
  41267. },
  41268. {
  41269. name: "Nigh-Omnipresence",
  41270. height: math.unit(8e261, "multiverses")
  41271. },
  41272. ]
  41273. ))
  41274. characterMakers.push(() => makeCharacter(
  41275. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  41276. {
  41277. front: {
  41278. height: math.unit(10, "feet"),
  41279. weight: math.unit(1500, "lb"),
  41280. name: "Front",
  41281. image: {
  41282. source: "./media/characters/miles-thestia/front.svg",
  41283. extra: 1812/1727,
  41284. bottom: 86/1898
  41285. }
  41286. },
  41287. back: {
  41288. height: math.unit(10, "feet"),
  41289. weight: math.unit(1500, "lb"),
  41290. name: "Back",
  41291. image: {
  41292. source: "./media/characters/miles-thestia/back.svg",
  41293. extra: 1799/1690,
  41294. bottom: 47/1846
  41295. }
  41296. },
  41297. frontNsfw: {
  41298. height: math.unit(10, "feet"),
  41299. weight: math.unit(1500, "lb"),
  41300. name: "Front (NSFW)",
  41301. image: {
  41302. source: "./media/characters/miles-thestia/front-nsfw.svg",
  41303. extra: 1812/1727,
  41304. bottom: 86/1898
  41305. }
  41306. },
  41307. },
  41308. [
  41309. {
  41310. name: "Mini-Macro",
  41311. height: math.unit(10, "feet"),
  41312. default: true
  41313. },
  41314. ]
  41315. ))
  41316. characterMakers.push(() => makeCharacter(
  41317. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  41318. {
  41319. front: {
  41320. height: math.unit(25, "feet"),
  41321. name: "Front",
  41322. image: {
  41323. source: "./media/characters/titan-s-wulf/front.svg",
  41324. extra: 1560/1484,
  41325. bottom: 76/1636
  41326. }
  41327. },
  41328. },
  41329. [
  41330. {
  41331. name: "Smallest",
  41332. height: math.unit(25, "feet"),
  41333. default: true
  41334. },
  41335. {
  41336. name: "Normal",
  41337. height: math.unit(200, "feet")
  41338. },
  41339. {
  41340. name: "Macro",
  41341. height: math.unit(200000, "feet")
  41342. },
  41343. {
  41344. name: "Multiversal Original",
  41345. height: math.unit(10000, "multiverses")
  41346. },
  41347. ]
  41348. ))
  41349. characterMakers.push(() => makeCharacter(
  41350. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  41351. {
  41352. front: {
  41353. height: math.unit(8, "feet"),
  41354. weight: math.unit(553, "lb"),
  41355. name: "Front",
  41356. image: {
  41357. source: "./media/characters/tawendeh/front.svg",
  41358. extra: 2365/2268,
  41359. bottom: 83/2448
  41360. }
  41361. },
  41362. frontClothed: {
  41363. height: math.unit(8, "feet"),
  41364. weight: math.unit(553, "lb"),
  41365. name: "Front (Clothed)",
  41366. image: {
  41367. source: "./media/characters/tawendeh/front-clothed.svg",
  41368. extra: 2365/2268,
  41369. bottom: 83/2448
  41370. }
  41371. },
  41372. back: {
  41373. height: math.unit(8, "feet"),
  41374. weight: math.unit(553, "lb"),
  41375. name: "Back",
  41376. image: {
  41377. source: "./media/characters/tawendeh/back.svg",
  41378. extra: 2397/2294,
  41379. bottom: 42/2439
  41380. }
  41381. },
  41382. },
  41383. [
  41384. {
  41385. name: "Mortal Interaction",
  41386. height: math.unit(8, "feet"),
  41387. default: true
  41388. },
  41389. {
  41390. name: "Giant",
  41391. height: math.unit(80, "feet")
  41392. },
  41393. {
  41394. name: "Macro",
  41395. height: math.unit(800, "feet")
  41396. },
  41397. {
  41398. name: "Megamacro",
  41399. height: math.unit(8000, "feet")
  41400. },
  41401. {
  41402. name: "City-Crushing",
  41403. height: math.unit(24000, "feet")
  41404. },
  41405. {
  41406. name: "Mountain-Mashing",
  41407. height: math.unit(80000, "feet")
  41408. },
  41409. {
  41410. name: "Nation Nemesis",
  41411. height: math.unit(8e6, "feet")
  41412. },
  41413. {
  41414. name: "Continent Cracker",
  41415. height: math.unit(24e6, "feet")
  41416. },
  41417. {
  41418. name: "Earth-Eclipsing",
  41419. height: math.unit(2.4e8, "feet")
  41420. },
  41421. {
  41422. name: "Gas Giant Gulper",
  41423. height: math.unit(2.4e9, "feet")
  41424. },
  41425. {
  41426. name: "Sol-Swallowing",
  41427. height: math.unit(8e10, "feet")
  41428. },
  41429. {
  41430. name: "Galaxy Gulper",
  41431. height: math.unit(8, "galaxies")
  41432. },
  41433. {
  41434. name: "Cosmos Churner",
  41435. height: math.unit(8, "universes")
  41436. },
  41437. {
  41438. name: "Omnipotent Otter",
  41439. height: math.unit(80, "universes")
  41440. },
  41441. ]
  41442. ))
  41443. characterMakers.push(() => makeCharacter(
  41444. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  41445. {
  41446. front: {
  41447. height: math.unit(2.6, "meters"),
  41448. weight: math.unit(900, "kg"),
  41449. name: "Front",
  41450. image: {
  41451. source: "./media/characters/neesha/front.svg",
  41452. extra: 1803/1653,
  41453. bottom: 128/1931
  41454. }
  41455. },
  41456. },
  41457. [
  41458. {
  41459. name: "Normal",
  41460. height: math.unit(2.6, "meters"),
  41461. default: true
  41462. },
  41463. {
  41464. name: "Macro",
  41465. height: math.unit(50, "meters")
  41466. },
  41467. ]
  41468. ))
  41469. characterMakers.push(() => makeCharacter(
  41470. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  41471. {
  41472. front: {
  41473. height: math.unit(5, "feet"),
  41474. weight: math.unit(185, "lb"),
  41475. name: "Front",
  41476. image: {
  41477. source: "./media/characters/kyera/front.svg",
  41478. extra: 1875/1790,
  41479. bottom: 96/1971
  41480. }
  41481. },
  41482. },
  41483. [
  41484. {
  41485. name: "Normal",
  41486. height: math.unit(5, "feet"),
  41487. default: true
  41488. },
  41489. ]
  41490. ))
  41491. characterMakers.push(() => makeCharacter(
  41492. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  41493. {
  41494. front: {
  41495. height: math.unit(7 + 6/12, "feet"),
  41496. weight: math.unit(540, "lb"),
  41497. name: "Front",
  41498. image: {
  41499. source: "./media/characters/yuko/front.svg",
  41500. extra: 1282/1222,
  41501. bottom: 101/1383
  41502. }
  41503. },
  41504. frontClothed: {
  41505. height: math.unit(7 + 6/12, "feet"),
  41506. weight: math.unit(540, "lb"),
  41507. name: "Front (Clothed)",
  41508. image: {
  41509. source: "./media/characters/yuko/front-clothed.svg",
  41510. extra: 1282/1222,
  41511. bottom: 101/1383
  41512. }
  41513. },
  41514. },
  41515. [
  41516. {
  41517. name: "Normal",
  41518. height: math.unit(7 + 6/12, "feet"),
  41519. default: true
  41520. },
  41521. {
  41522. name: "Macro",
  41523. height: math.unit(26 + 9/12, "feet")
  41524. },
  41525. {
  41526. name: "Megamacro",
  41527. height: math.unit(300, "feet")
  41528. },
  41529. {
  41530. name: "Gigamacro",
  41531. height: math.unit(5000, "feet")
  41532. },
  41533. {
  41534. name: "Planetary",
  41535. height: math.unit(10000, "miles")
  41536. },
  41537. ]
  41538. ))
  41539. characterMakers.push(() => makeCharacter(
  41540. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  41541. {
  41542. front: {
  41543. height: math.unit(8 + 2/12, "feet"),
  41544. weight: math.unit(600, "lb"),
  41545. name: "Front",
  41546. image: {
  41547. source: "./media/characters/deam-nitrel/front.svg",
  41548. extra: 1308/1234,
  41549. bottom: 125/1433
  41550. }
  41551. },
  41552. },
  41553. [
  41554. {
  41555. name: "Normal",
  41556. height: math.unit(8 + 2/12, "feet"),
  41557. default: true
  41558. },
  41559. ]
  41560. ))
  41561. characterMakers.push(() => makeCharacter(
  41562. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  41563. {
  41564. front: {
  41565. height: math.unit(6.1, "feet"),
  41566. weight: math.unit(180, "lb"),
  41567. name: "Front",
  41568. image: {
  41569. source: "./media/characters/skyress/front.svg",
  41570. extra: 1045/915,
  41571. bottom: 28/1073
  41572. }
  41573. },
  41574. maw: {
  41575. height: math.unit(1, "feet"),
  41576. name: "Maw",
  41577. image: {
  41578. source: "./media/characters/skyress/maw.svg"
  41579. }
  41580. },
  41581. },
  41582. [
  41583. {
  41584. name: "Normal",
  41585. height: math.unit(6.1, "feet"),
  41586. default: true
  41587. },
  41588. {
  41589. name: "Macro",
  41590. height: math.unit(200, "feet")
  41591. },
  41592. ]
  41593. ))
  41594. characterMakers.push(() => makeCharacter(
  41595. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  41596. {
  41597. front: {
  41598. height: math.unit(4 + 2/12, "feet"),
  41599. weight: math.unit(40, "kg"),
  41600. name: "Front",
  41601. image: {
  41602. source: "./media/characters/amethyst-jones/front.svg",
  41603. extra: 1220/1150,
  41604. bottom: 101/1321
  41605. }
  41606. },
  41607. },
  41608. [
  41609. {
  41610. name: "Normal",
  41611. height: math.unit(4 + 2/12, "feet"),
  41612. default: true
  41613. },
  41614. ]
  41615. ))
  41616. characterMakers.push(() => makeCharacter(
  41617. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  41618. {
  41619. front: {
  41620. height: math.unit(1.7, "m"),
  41621. weight: math.unit(135, "lb"),
  41622. name: "Front",
  41623. image: {
  41624. source: "./media/characters/jade/front.svg",
  41625. extra: 1818/1767,
  41626. bottom: 32/1850
  41627. }
  41628. },
  41629. back: {
  41630. height: math.unit(1.7, "m"),
  41631. weight: math.unit(135, "lb"),
  41632. name: "Back",
  41633. image: {
  41634. source: "./media/characters/jade/back.svg",
  41635. extra: 1869/1809,
  41636. bottom: 35/1904
  41637. }
  41638. },
  41639. hand: {
  41640. height: math.unit(0.24, "m"),
  41641. name: "Hand",
  41642. image: {
  41643. source: "./media/characters/jade/hand.svg"
  41644. }
  41645. },
  41646. foot: {
  41647. height: math.unit(0.263, "m"),
  41648. name: "Foot",
  41649. image: {
  41650. source: "./media/characters/jade/foot.svg"
  41651. }
  41652. },
  41653. dick: {
  41654. height: math.unit(0.47, "m"),
  41655. name: "Dick",
  41656. image: {
  41657. source: "./media/characters/jade/dick.svg"
  41658. }
  41659. },
  41660. },
  41661. [
  41662. {
  41663. name: "Micro",
  41664. height: math.unit(22, "cm")
  41665. },
  41666. {
  41667. name: "Normal",
  41668. height: math.unit(1.7, "m"),
  41669. default: true
  41670. },
  41671. {
  41672. name: "Macro",
  41673. height: math.unit(152, "m")
  41674. },
  41675. ]
  41676. ))
  41677. characterMakers.push(() => makeCharacter(
  41678. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  41679. {
  41680. front: {
  41681. height: math.unit(100, "miles"),
  41682. weight: math.unit(20000, "tons"),
  41683. name: "Front",
  41684. image: {
  41685. source: "./media/characters/cookie/front.svg",
  41686. extra: 1125/1070,
  41687. bottom: 30/1155
  41688. }
  41689. },
  41690. },
  41691. [
  41692. {
  41693. name: "Big",
  41694. height: math.unit(50, "feet")
  41695. },
  41696. {
  41697. name: "Macro",
  41698. height: math.unit(100, "miles"),
  41699. default: true
  41700. },
  41701. {
  41702. name: "Megamacro",
  41703. height: math.unit(90000, "miles")
  41704. },
  41705. ]
  41706. ))
  41707. characterMakers.push(() => makeCharacter(
  41708. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  41709. {
  41710. front: {
  41711. height: math.unit(6, "feet"),
  41712. weight: math.unit(145, "lb"),
  41713. name: "Front",
  41714. image: {
  41715. source: "./media/characters/farzian/front.svg",
  41716. extra: 1902/1693,
  41717. bottom: 108/2010
  41718. }
  41719. },
  41720. },
  41721. [
  41722. {
  41723. name: "Macro",
  41724. height: math.unit(500, "feet"),
  41725. default: true
  41726. },
  41727. ]
  41728. ))
  41729. characterMakers.push(() => makeCharacter(
  41730. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  41731. {
  41732. front: {
  41733. height: math.unit(3 + 6/12, "feet"),
  41734. weight: math.unit(50, "lb"),
  41735. name: "Front",
  41736. image: {
  41737. source: "./media/characters/kimberly-tilson/front.svg",
  41738. extra: 1400/1322,
  41739. bottom: 36/1436
  41740. }
  41741. },
  41742. back: {
  41743. height: math.unit(3 + 6/12, "feet"),
  41744. weight: math.unit(50, "lb"),
  41745. name: "Back",
  41746. image: {
  41747. source: "./media/characters/kimberly-tilson/back.svg",
  41748. extra: 1370/1307,
  41749. bottom: 20/1390
  41750. }
  41751. },
  41752. },
  41753. [
  41754. {
  41755. name: "Normal",
  41756. height: math.unit(3 + 6/12, "feet"),
  41757. default: true
  41758. },
  41759. ]
  41760. ))
  41761. characterMakers.push(() => makeCharacter(
  41762. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  41763. {
  41764. front: {
  41765. height: math.unit(1148, "feet"),
  41766. weight: math.unit(34057, "lb"),
  41767. name: "Front",
  41768. image: {
  41769. source: "./media/characters/harthos/front.svg",
  41770. extra: 1391/1339,
  41771. bottom: 13/1404
  41772. }
  41773. },
  41774. },
  41775. [
  41776. {
  41777. name: "Macro",
  41778. height: math.unit(1148, "feet"),
  41779. default: true
  41780. },
  41781. ]
  41782. ))
  41783. characterMakers.push(() => makeCharacter(
  41784. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  41785. {
  41786. front: {
  41787. height: math.unit(15, "feet"),
  41788. name: "Front",
  41789. image: {
  41790. source: "./media/characters/hypatia/front.svg",
  41791. extra: 1653/1591,
  41792. bottom: 79/1732
  41793. }
  41794. },
  41795. },
  41796. [
  41797. {
  41798. name: "Normal",
  41799. height: math.unit(15, "feet")
  41800. },
  41801. {
  41802. name: "Small",
  41803. height: math.unit(300, "feet")
  41804. },
  41805. {
  41806. name: "Macro",
  41807. height: math.unit(2500, "feet"),
  41808. default: true
  41809. },
  41810. {
  41811. name: "Mega Macro",
  41812. height: math.unit(1500, "miles")
  41813. },
  41814. {
  41815. name: "Giga Macro",
  41816. height: math.unit(1.5e6, "miles")
  41817. },
  41818. ]
  41819. ))
  41820. characterMakers.push(() => makeCharacter(
  41821. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  41822. {
  41823. front: {
  41824. height: math.unit(6, "feet"),
  41825. weight: math.unit(200, "lb"),
  41826. name: "Front",
  41827. image: {
  41828. source: "./media/characters/wulver/front.svg",
  41829. extra: 1724/1632,
  41830. bottom: 130/1854
  41831. }
  41832. },
  41833. frontNsfw: {
  41834. height: math.unit(6, "feet"),
  41835. weight: math.unit(200, "lb"),
  41836. name: "Front (NSFW)",
  41837. image: {
  41838. source: "./media/characters/wulver/front-nsfw.svg",
  41839. extra: 1724/1632,
  41840. bottom: 130/1854
  41841. }
  41842. },
  41843. },
  41844. [
  41845. {
  41846. name: "Human-Sized",
  41847. height: math.unit(6, "feet")
  41848. },
  41849. {
  41850. name: "Normal",
  41851. height: math.unit(4, "meters"),
  41852. default: true
  41853. },
  41854. {
  41855. name: "Large",
  41856. height: math.unit(6, "m")
  41857. },
  41858. ]
  41859. ))
  41860. characterMakers.push(() => makeCharacter(
  41861. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  41862. {
  41863. front: {
  41864. height: math.unit(7, "feet"),
  41865. name: "Front",
  41866. image: {
  41867. source: "./media/characters/maru/front.svg",
  41868. extra: 1595/1570,
  41869. bottom: 0/1595
  41870. }
  41871. },
  41872. },
  41873. [
  41874. {
  41875. name: "Normal",
  41876. height: math.unit(7, "feet"),
  41877. default: true
  41878. },
  41879. {
  41880. name: "Macro",
  41881. height: math.unit(700, "feet")
  41882. },
  41883. {
  41884. name: "Mega Macro",
  41885. height: math.unit(25, "miles")
  41886. },
  41887. ]
  41888. ))
  41889. characterMakers.push(() => makeCharacter(
  41890. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  41891. {
  41892. front: {
  41893. height: math.unit(6, "feet"),
  41894. weight: math.unit(170, "lb"),
  41895. name: "Front",
  41896. image: {
  41897. source: "./media/characters/xenon/front.svg",
  41898. extra: 1376/1305,
  41899. bottom: 56/1432
  41900. }
  41901. },
  41902. back: {
  41903. height: math.unit(6, "feet"),
  41904. weight: math.unit(170, "lb"),
  41905. name: "Back",
  41906. image: {
  41907. source: "./media/characters/xenon/back.svg",
  41908. extra: 1328/1259,
  41909. bottom: 95/1423
  41910. }
  41911. },
  41912. maw: {
  41913. height: math.unit(0.52, "feet"),
  41914. name: "Maw",
  41915. image: {
  41916. source: "./media/characters/xenon/maw.svg"
  41917. }
  41918. },
  41919. handLeft: {
  41920. height: math.unit(0.82 * 169 / 153, "feet"),
  41921. name: "Hand (Left)",
  41922. image: {
  41923. source: "./media/characters/xenon/hand-left.svg"
  41924. }
  41925. },
  41926. handRight: {
  41927. height: math.unit(0.82, "feet"),
  41928. name: "Hand (Right)",
  41929. image: {
  41930. source: "./media/characters/xenon/hand-right.svg"
  41931. }
  41932. },
  41933. footLeft: {
  41934. height: math.unit(1.13, "feet"),
  41935. name: "Foot (Left)",
  41936. image: {
  41937. source: "./media/characters/xenon/foot-left.svg"
  41938. }
  41939. },
  41940. footRight: {
  41941. height: math.unit(1.13 * 194 / 196, "feet"),
  41942. name: "Foot (Right)",
  41943. image: {
  41944. source: "./media/characters/xenon/foot-right.svg"
  41945. }
  41946. },
  41947. },
  41948. [
  41949. {
  41950. name: "Micro",
  41951. height: math.unit(0.8, "inches")
  41952. },
  41953. {
  41954. name: "Normal",
  41955. height: math.unit(6, "feet")
  41956. },
  41957. {
  41958. name: "Macro",
  41959. height: math.unit(50, "feet"),
  41960. default: true
  41961. },
  41962. {
  41963. name: "Macro+",
  41964. height: math.unit(250, "feet")
  41965. },
  41966. {
  41967. name: "Megamacro",
  41968. height: math.unit(1500, "feet")
  41969. },
  41970. ]
  41971. ))
  41972. characterMakers.push(() => makeCharacter(
  41973. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  41974. {
  41975. front: {
  41976. height: math.unit(7 + 5/12, "feet"),
  41977. name: "Front",
  41978. image: {
  41979. source: "./media/characters/zane/front.svg",
  41980. extra: 1260/1203,
  41981. bottom: 94/1354
  41982. }
  41983. },
  41984. back: {
  41985. height: math.unit(5.05, "feet"),
  41986. name: "Back",
  41987. image: {
  41988. source: "./media/characters/zane/back.svg",
  41989. extra: 893/829,
  41990. bottom: 30/923
  41991. }
  41992. },
  41993. werewolf: {
  41994. height: math.unit(11, "feet"),
  41995. name: "Werewolf",
  41996. image: {
  41997. source: "./media/characters/zane/werewolf.svg",
  41998. extra: 1383/1323,
  41999. bottom: 89/1472
  42000. }
  42001. },
  42002. foot: {
  42003. height: math.unit(1.46, "feet"),
  42004. name: "Foot",
  42005. image: {
  42006. source: "./media/characters/zane/foot.svg"
  42007. }
  42008. },
  42009. footFront: {
  42010. height: math.unit(0.784, "feet"),
  42011. name: "Foot (Front)",
  42012. image: {
  42013. source: "./media/characters/zane/foot-front.svg"
  42014. }
  42015. },
  42016. dick: {
  42017. height: math.unit(1.95, "feet"),
  42018. name: "Dick",
  42019. image: {
  42020. source: "./media/characters/zane/dick.svg"
  42021. }
  42022. },
  42023. dickWerewolf: {
  42024. height: math.unit(3.77, "feet"),
  42025. name: "Dick (Werewolf)",
  42026. image: {
  42027. source: "./media/characters/zane/dick.svg"
  42028. }
  42029. },
  42030. },
  42031. [
  42032. {
  42033. name: "Normal",
  42034. height: math.unit(7 + 5/12, "feet"),
  42035. default: true
  42036. },
  42037. ]
  42038. ))
  42039. characterMakers.push(() => makeCharacter(
  42040. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  42041. {
  42042. front: {
  42043. height: math.unit(6 + 2/12, "feet"),
  42044. weight: math.unit(284, "lb"),
  42045. name: "Front",
  42046. image: {
  42047. source: "./media/characters/benni-desparque/front.svg",
  42048. extra: 1353/1126,
  42049. bottom: 69/1422
  42050. }
  42051. },
  42052. },
  42053. [
  42054. {
  42055. name: "Civilian",
  42056. height: math.unit(6 + 2/12, "feet")
  42057. },
  42058. {
  42059. name: "Normal",
  42060. height: math.unit(98, "feet"),
  42061. default: true
  42062. },
  42063. {
  42064. name: "Kaiju Fighter",
  42065. height: math.unit(268, "feet")
  42066. },
  42067. ]
  42068. ))
  42069. characterMakers.push(() => makeCharacter(
  42070. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  42071. {
  42072. front: {
  42073. height: math.unit(5, "feet"),
  42074. weight: math.unit(105, "lb"),
  42075. name: "Front",
  42076. image: {
  42077. source: "./media/characters/maxine/front.svg",
  42078. extra: 1386/1250,
  42079. bottom: 71/1457
  42080. }
  42081. },
  42082. },
  42083. [
  42084. {
  42085. name: "Normal",
  42086. height: math.unit(5, "feet"),
  42087. default: true
  42088. },
  42089. ]
  42090. ))
  42091. characterMakers.push(() => makeCharacter(
  42092. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  42093. {
  42094. front: {
  42095. height: math.unit(11 + 7/12, "feet"),
  42096. weight: math.unit(9576, "lb"),
  42097. name: "Front",
  42098. image: {
  42099. source: "./media/characters/scaly/front.svg",
  42100. extra: 888/867,
  42101. bottom: 36/924
  42102. }
  42103. },
  42104. },
  42105. [
  42106. {
  42107. name: "Normal",
  42108. height: math.unit(11 + 7/12, "feet"),
  42109. default: true
  42110. },
  42111. ]
  42112. ))
  42113. characterMakers.push(() => makeCharacter(
  42114. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  42115. {
  42116. front: {
  42117. height: math.unit(6 + 3/12, "feet"),
  42118. name: "Front",
  42119. image: {
  42120. source: "./media/characters/saelria/front.svg",
  42121. extra: 1243/1138,
  42122. bottom: 46/1289
  42123. }
  42124. },
  42125. },
  42126. [
  42127. {
  42128. name: "Micro",
  42129. height: math.unit(6, "inches"),
  42130. },
  42131. {
  42132. name: "Normal",
  42133. height: math.unit(6 + 3/12, "feet"),
  42134. default: true
  42135. },
  42136. {
  42137. name: "Macro",
  42138. height: math.unit(25, "feet")
  42139. },
  42140. ]
  42141. ))
  42142. characterMakers.push(() => makeCharacter(
  42143. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  42144. {
  42145. front: {
  42146. height: math.unit(80, "meters"),
  42147. weight: math.unit(7000, "tonnes"),
  42148. name: "Front",
  42149. image: {
  42150. source: "./media/characters/tef/front.svg",
  42151. extra: 2036/1991,
  42152. bottom: 54/2090
  42153. }
  42154. },
  42155. back: {
  42156. height: math.unit(80, "meters"),
  42157. weight: math.unit(7000, "tonnes"),
  42158. name: "Back",
  42159. image: {
  42160. source: "./media/characters/tef/back.svg",
  42161. extra: 2036/1991,
  42162. bottom: 54/2090
  42163. }
  42164. },
  42165. },
  42166. [
  42167. {
  42168. name: "Macro",
  42169. height: math.unit(80, "meters"),
  42170. default: true
  42171. },
  42172. ]
  42173. ))
  42174. characterMakers.push(() => makeCharacter(
  42175. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  42176. {
  42177. front: {
  42178. height: math.unit(13, "feet"),
  42179. weight: math.unit(6, "tons"),
  42180. name: "Front",
  42181. image: {
  42182. source: "./media/characters/rover/front.svg",
  42183. extra: 1233/1156,
  42184. bottom: 50/1283
  42185. }
  42186. },
  42187. back: {
  42188. height: math.unit(13, "feet"),
  42189. weight: math.unit(6, "tons"),
  42190. name: "Back",
  42191. image: {
  42192. source: "./media/characters/rover/back.svg",
  42193. extra: 1327/1258,
  42194. bottom: 39/1366
  42195. }
  42196. },
  42197. },
  42198. [
  42199. {
  42200. name: "Normal",
  42201. height: math.unit(13, "feet"),
  42202. default: true
  42203. },
  42204. {
  42205. name: "Macro",
  42206. height: math.unit(1300, "feet")
  42207. },
  42208. {
  42209. name: "Megamacro",
  42210. height: math.unit(1300, "miles")
  42211. },
  42212. {
  42213. name: "Gigamacro",
  42214. height: math.unit(1300000, "miles")
  42215. },
  42216. ]
  42217. ))
  42218. characterMakers.push(() => makeCharacter(
  42219. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  42220. {
  42221. front: {
  42222. height: math.unit(6, "feet"),
  42223. weight: math.unit(150, "lb"),
  42224. name: "Front",
  42225. image: {
  42226. source: "./media/characters/ariz/front.svg",
  42227. extra: 1401/1346,
  42228. bottom: 5/1406
  42229. }
  42230. },
  42231. },
  42232. [
  42233. {
  42234. name: "Normal",
  42235. height: math.unit(10, "feet"),
  42236. default: true
  42237. },
  42238. ]
  42239. ))
  42240. characterMakers.push(() => makeCharacter(
  42241. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  42242. {
  42243. front: {
  42244. height: math.unit(6, "feet"),
  42245. weight: math.unit(140, "lb"),
  42246. name: "Front",
  42247. image: {
  42248. source: "./media/characters/sigrun/front.svg",
  42249. extra: 1418/1359,
  42250. bottom: 27/1445
  42251. }
  42252. },
  42253. },
  42254. [
  42255. {
  42256. name: "Macro",
  42257. height: math.unit(35, "feet"),
  42258. default: true
  42259. },
  42260. ]
  42261. ))
  42262. characterMakers.push(() => makeCharacter(
  42263. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  42264. {
  42265. front: {
  42266. height: math.unit(6, "feet"),
  42267. weight: math.unit(150, "lb"),
  42268. name: "Front",
  42269. image: {
  42270. source: "./media/characters/numin/front.svg",
  42271. extra: 1433/1388,
  42272. bottom: 12/1445
  42273. }
  42274. },
  42275. },
  42276. [
  42277. {
  42278. name: "Macro",
  42279. height: math.unit(21.5, "km"),
  42280. default: true
  42281. },
  42282. ]
  42283. ))
  42284. characterMakers.push(() => makeCharacter(
  42285. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  42286. {
  42287. front: {
  42288. height: math.unit(6, "feet"),
  42289. weight: math.unit(463, "lb"),
  42290. name: "Front",
  42291. image: {
  42292. source: "./media/characters/melwa/front.svg",
  42293. extra: 1307/1248,
  42294. bottom: 93/1400
  42295. }
  42296. },
  42297. },
  42298. [
  42299. {
  42300. name: "Macro",
  42301. height: math.unit(50, "meters"),
  42302. default: true
  42303. },
  42304. ]
  42305. ))
  42306. characterMakers.push(() => makeCharacter(
  42307. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  42308. {
  42309. front: {
  42310. height: math.unit(325, "feet"),
  42311. name: "Front",
  42312. image: {
  42313. source: "./media/characters/zorkaiju/front.svg",
  42314. extra: 1955/1814,
  42315. bottom: 40/1995
  42316. }
  42317. },
  42318. frontExtended: {
  42319. height: math.unit(325, "feet"),
  42320. name: "Front (Extended)",
  42321. image: {
  42322. source: "./media/characters/zorkaiju/front-extended.svg",
  42323. extra: 1955/1814,
  42324. bottom: 40/1995
  42325. }
  42326. },
  42327. side: {
  42328. height: math.unit(325, "feet"),
  42329. name: "Side",
  42330. image: {
  42331. source: "./media/characters/zorkaiju/side.svg",
  42332. extra: 1495/1396,
  42333. bottom: 17/1512
  42334. }
  42335. },
  42336. sideExtended: {
  42337. height: math.unit(325, "feet"),
  42338. name: "Side (Extended)",
  42339. image: {
  42340. source: "./media/characters/zorkaiju/side-extended.svg",
  42341. extra: 1495/1396,
  42342. bottom: 17/1512
  42343. }
  42344. },
  42345. back: {
  42346. height: math.unit(325, "feet"),
  42347. name: "Back",
  42348. image: {
  42349. source: "./media/characters/zorkaiju/back.svg",
  42350. extra: 1959/1821,
  42351. bottom: 31/1990
  42352. }
  42353. },
  42354. backExtended: {
  42355. height: math.unit(325, "feet"),
  42356. name: "Back (Extended)",
  42357. image: {
  42358. source: "./media/characters/zorkaiju/back-extended.svg",
  42359. extra: 1959/1821,
  42360. bottom: 31/1990
  42361. }
  42362. },
  42363. hand: {
  42364. height: math.unit(58.4, "feet"),
  42365. name: "Hand",
  42366. image: {
  42367. source: "./media/characters/zorkaiju/hand.svg"
  42368. }
  42369. },
  42370. handExtended: {
  42371. height: math.unit(61.4, "feet"),
  42372. name: "Hand (Extended)",
  42373. image: {
  42374. source: "./media/characters/zorkaiju/hand-extended.svg"
  42375. }
  42376. },
  42377. foot: {
  42378. height: math.unit(95, "feet"),
  42379. name: "Foot",
  42380. image: {
  42381. source: "./media/characters/zorkaiju/foot.svg"
  42382. }
  42383. },
  42384. leftArm: {
  42385. height: math.unit(59, "feet"),
  42386. name: "Left Arm",
  42387. image: {
  42388. source: "./media/characters/zorkaiju/left-arm.svg"
  42389. }
  42390. },
  42391. rightArm: {
  42392. height: math.unit(59, "feet"),
  42393. name: "Right Arm",
  42394. image: {
  42395. source: "./media/characters/zorkaiju/right-arm.svg"
  42396. }
  42397. },
  42398. leftArmExtended: {
  42399. height: math.unit(59 * 1.033546, "feet"),
  42400. name: "Left Arm (Extended)",
  42401. image: {
  42402. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  42403. }
  42404. },
  42405. rightArmExtended: {
  42406. height: math.unit(59 * 1.0496, "feet"),
  42407. name: "Right Arm (Extended)",
  42408. image: {
  42409. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  42410. }
  42411. },
  42412. tail: {
  42413. height: math.unit(104, "feet"),
  42414. name: "Tail",
  42415. image: {
  42416. source: "./media/characters/zorkaiju/tail.svg"
  42417. }
  42418. },
  42419. tailExtended: {
  42420. height: math.unit(104, "feet"),
  42421. name: "Tail (Extended)",
  42422. image: {
  42423. source: "./media/characters/zorkaiju/tail-extended.svg"
  42424. }
  42425. },
  42426. tailBottom: {
  42427. height: math.unit(104, "feet"),
  42428. name: "Tail Bottom",
  42429. image: {
  42430. source: "./media/characters/zorkaiju/tail-bottom.svg"
  42431. }
  42432. },
  42433. crystal: {
  42434. height: math.unit(27.54, "feet"),
  42435. name: "Crystal",
  42436. image: {
  42437. source: "./media/characters/zorkaiju/crystal.svg"
  42438. }
  42439. },
  42440. },
  42441. [
  42442. {
  42443. name: "Kaiju",
  42444. height: math.unit(325, "feet"),
  42445. default: true
  42446. },
  42447. ]
  42448. ))
  42449. characterMakers.push(() => makeCharacter(
  42450. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  42451. {
  42452. front: {
  42453. height: math.unit(6 + 1/12, "feet"),
  42454. weight: math.unit(115, "lb"),
  42455. name: "Front",
  42456. image: {
  42457. source: "./media/characters/bailey-belfry/front.svg",
  42458. extra: 1240/1121,
  42459. bottom: 101/1341
  42460. }
  42461. },
  42462. },
  42463. [
  42464. {
  42465. name: "Normal",
  42466. height: math.unit(6 + 1/12, "feet"),
  42467. default: true
  42468. },
  42469. ]
  42470. ))
  42471. characterMakers.push(() => makeCharacter(
  42472. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  42473. {
  42474. side: {
  42475. height: math.unit(4, "meters"),
  42476. weight: math.unit(250, "kg"),
  42477. name: "Side",
  42478. image: {
  42479. source: "./media/characters/blacky/side.svg",
  42480. extra: 1027/919,
  42481. bottom: 43/1070
  42482. }
  42483. },
  42484. maw: {
  42485. height: math.unit(1, "meters"),
  42486. name: "Maw",
  42487. image: {
  42488. source: "./media/characters/blacky/maw.svg"
  42489. }
  42490. },
  42491. paw: {
  42492. height: math.unit(1, "meters"),
  42493. name: "Paw",
  42494. image: {
  42495. source: "./media/characters/blacky/paw.svg"
  42496. }
  42497. },
  42498. },
  42499. [
  42500. {
  42501. name: "Normal",
  42502. height: math.unit(4, "meters"),
  42503. default: true
  42504. },
  42505. ]
  42506. ))
  42507. characterMakers.push(() => makeCharacter(
  42508. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  42509. {
  42510. front: {
  42511. height: math.unit(170, "cm"),
  42512. weight: math.unit(66, "kg"),
  42513. name: "Front",
  42514. image: {
  42515. source: "./media/characters/thux-ei/front.svg",
  42516. extra: 1109/1011,
  42517. bottom: 8/1117
  42518. }
  42519. },
  42520. },
  42521. [
  42522. {
  42523. name: "Normal",
  42524. height: math.unit(170, "cm"),
  42525. default: true
  42526. },
  42527. ]
  42528. ))
  42529. characterMakers.push(() => makeCharacter(
  42530. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  42531. {
  42532. front: {
  42533. height: math.unit(5, "feet"),
  42534. weight: math.unit(120, "lb"),
  42535. name: "Front",
  42536. image: {
  42537. source: "./media/characters/roxanne-voltaire/front.svg",
  42538. extra: 1901/1779,
  42539. bottom: 53/1954
  42540. }
  42541. },
  42542. },
  42543. [
  42544. {
  42545. name: "Normal",
  42546. height: math.unit(5, "feet"),
  42547. default: true
  42548. },
  42549. {
  42550. name: "Giant",
  42551. height: math.unit(50, "feet")
  42552. },
  42553. {
  42554. name: "Titan",
  42555. height: math.unit(500, "feet")
  42556. },
  42557. {
  42558. name: "Macro",
  42559. height: math.unit(5000, "feet")
  42560. },
  42561. {
  42562. name: "Megamacro",
  42563. height: math.unit(50000, "feet")
  42564. },
  42565. {
  42566. name: "Gigamacro",
  42567. height: math.unit(500000, "feet")
  42568. },
  42569. {
  42570. name: "Teramacro",
  42571. height: math.unit(5e6, "feet")
  42572. },
  42573. ]
  42574. ))
  42575. characterMakers.push(() => makeCharacter(
  42576. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  42577. {
  42578. front: {
  42579. height: math.unit(6 + 2/12, "feet"),
  42580. name: "Front",
  42581. image: {
  42582. source: "./media/characters/squeaks/front.svg",
  42583. extra: 1823/1768,
  42584. bottom: 138/1961
  42585. }
  42586. },
  42587. },
  42588. [
  42589. {
  42590. name: "Micro",
  42591. height: math.unit(0.5, "inches")
  42592. },
  42593. {
  42594. name: "Normal",
  42595. height: math.unit(6 + 2/12, "feet"),
  42596. default: true
  42597. },
  42598. {
  42599. name: "Macro",
  42600. height: math.unit(600, "feet")
  42601. },
  42602. ]
  42603. ))
  42604. characterMakers.push(() => makeCharacter(
  42605. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  42606. {
  42607. front: {
  42608. height: math.unit(1.72, "meters"),
  42609. name: "Front",
  42610. image: {
  42611. source: "./media/characters/archinger/front.svg",
  42612. extra: 1861/1675,
  42613. bottom: 125/1986
  42614. }
  42615. },
  42616. back: {
  42617. height: math.unit(1.72, "meters"),
  42618. name: "Back",
  42619. image: {
  42620. source: "./media/characters/archinger/back.svg",
  42621. extra: 1844/1701,
  42622. bottom: 104/1948
  42623. }
  42624. },
  42625. cock: {
  42626. height: math.unit(0.59, "feet"),
  42627. name: "Cock",
  42628. image: {
  42629. source: "./media/characters/archinger/cock.svg"
  42630. }
  42631. },
  42632. },
  42633. [
  42634. {
  42635. name: "Normal",
  42636. height: math.unit(1.72, "meters"),
  42637. default: true
  42638. },
  42639. {
  42640. name: "Macro",
  42641. height: math.unit(84, "meters")
  42642. },
  42643. {
  42644. name: "Macro+",
  42645. height: math.unit(112, "meters")
  42646. },
  42647. {
  42648. name: "Macro++",
  42649. height: math.unit(960, "meters")
  42650. },
  42651. {
  42652. name: "Macro+++",
  42653. height: math.unit(4, "km")
  42654. },
  42655. {
  42656. name: "Macro++++",
  42657. height: math.unit(48, "km")
  42658. },
  42659. {
  42660. name: "Macro+++++",
  42661. height: math.unit(4500, "km")
  42662. },
  42663. ]
  42664. ))
  42665. characterMakers.push(() => makeCharacter(
  42666. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  42667. {
  42668. front: {
  42669. height: math.unit(5 + 5/12, "feet"),
  42670. name: "Front",
  42671. image: {
  42672. source: "./media/characters/alsnapz/front.svg",
  42673. extra: 1157/1065,
  42674. bottom: 42/1199
  42675. }
  42676. },
  42677. },
  42678. [
  42679. {
  42680. name: "Normal",
  42681. height: math.unit(5 + 5/12, "feet"),
  42682. default: true
  42683. },
  42684. ]
  42685. ))
  42686. characterMakers.push(() => makeCharacter(
  42687. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  42688. {
  42689. side: {
  42690. height: math.unit(3.2, "earths"),
  42691. name: "Side",
  42692. image: {
  42693. source: "./media/characters/mag/side.svg",
  42694. extra: 1331/1008,
  42695. bottom: 52/1383
  42696. }
  42697. },
  42698. wing: {
  42699. height: math.unit(1.94, "earths"),
  42700. name: "Wing",
  42701. image: {
  42702. source: "./media/characters/mag/wing.svg"
  42703. }
  42704. },
  42705. dick: {
  42706. height: math.unit(1.8, "earths"),
  42707. name: "Dick",
  42708. image: {
  42709. source: "./media/characters/mag/dick.svg"
  42710. }
  42711. },
  42712. ass: {
  42713. height: math.unit(1.33, "earths"),
  42714. name: "Ass",
  42715. image: {
  42716. source: "./media/characters/mag/ass.svg"
  42717. }
  42718. },
  42719. head: {
  42720. height: math.unit(1.1, "earths"),
  42721. name: "Head",
  42722. image: {
  42723. source: "./media/characters/mag/head.svg"
  42724. }
  42725. },
  42726. maw: {
  42727. height: math.unit(1.62, "earths"),
  42728. name: "Maw",
  42729. image: {
  42730. source: "./media/characters/mag/maw.svg"
  42731. }
  42732. },
  42733. },
  42734. [
  42735. {
  42736. name: "Small",
  42737. height: math.unit(162, "feet")
  42738. },
  42739. {
  42740. name: "Normal",
  42741. height: math.unit(3.2, "earths"),
  42742. default: true
  42743. },
  42744. ]
  42745. ))
  42746. characterMakers.push(() => makeCharacter(
  42747. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  42748. {
  42749. front: {
  42750. height: math.unit(512, "feet"),
  42751. weight: math.unit(63509, "tonnes"),
  42752. name: "Front",
  42753. image: {
  42754. source: "./media/characters/vorrel-harroc/front.svg",
  42755. extra: 1075/1063,
  42756. bottom: 62/1137
  42757. }
  42758. },
  42759. },
  42760. [
  42761. {
  42762. name: "Normal",
  42763. height: math.unit(10, "feet")
  42764. },
  42765. {
  42766. name: "Macro",
  42767. height: math.unit(512, "feet"),
  42768. default: true
  42769. },
  42770. {
  42771. name: "Megamacro",
  42772. height: math.unit(256, "miles")
  42773. },
  42774. {
  42775. name: "Gigamacro",
  42776. height: math.unit(4096, "miles")
  42777. },
  42778. ]
  42779. ))
  42780. characterMakers.push(() => makeCharacter(
  42781. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  42782. {
  42783. side: {
  42784. height: math.unit(50, "feet"),
  42785. name: "Side",
  42786. image: {
  42787. source: "./media/characters/froimar/side.svg",
  42788. extra: 855/638,
  42789. bottom: 99/954
  42790. }
  42791. },
  42792. },
  42793. [
  42794. {
  42795. name: "Macro",
  42796. height: math.unit(50, "feet"),
  42797. default: true
  42798. },
  42799. ]
  42800. ))
  42801. characterMakers.push(() => makeCharacter(
  42802. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  42803. {
  42804. front: {
  42805. height: math.unit(210, "miles"),
  42806. name: "Front",
  42807. image: {
  42808. source: "./media/characters/timothy/front.svg",
  42809. extra: 1007/943,
  42810. bottom: 62/1069
  42811. }
  42812. },
  42813. frontSkirt: {
  42814. height: math.unit(210, "miles"),
  42815. name: "Front (Skirt)",
  42816. image: {
  42817. source: "./media/characters/timothy/front-skirt.svg",
  42818. extra: 1007/943,
  42819. bottom: 62/1069
  42820. }
  42821. },
  42822. frontCoat: {
  42823. height: math.unit(210, "miles"),
  42824. name: "Front (Coat)",
  42825. image: {
  42826. source: "./media/characters/timothy/front-coat.svg",
  42827. extra: 1007/943,
  42828. bottom: 62/1069
  42829. }
  42830. },
  42831. },
  42832. [
  42833. {
  42834. name: "Macro",
  42835. height: math.unit(210, "miles"),
  42836. default: true
  42837. },
  42838. {
  42839. name: "Megamacro",
  42840. height: math.unit(210000, "miles")
  42841. },
  42842. ]
  42843. ))
  42844. characterMakers.push(() => makeCharacter(
  42845. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  42846. {
  42847. front: {
  42848. height: math.unit(188, "feet"),
  42849. name: "Front",
  42850. image: {
  42851. source: "./media/characters/pyotr/front.svg",
  42852. extra: 1912/1826,
  42853. bottom: 18/1930
  42854. }
  42855. },
  42856. },
  42857. [
  42858. {
  42859. name: "Macro",
  42860. height: math.unit(188, "feet"),
  42861. default: true
  42862. },
  42863. {
  42864. name: "Megamacro",
  42865. height: math.unit(8, "miles")
  42866. },
  42867. ]
  42868. ))
  42869. characterMakers.push(() => makeCharacter(
  42870. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  42871. {
  42872. side: {
  42873. height: math.unit(10, "feet"),
  42874. weight: math.unit(4500, "lb"),
  42875. name: "Side",
  42876. image: {
  42877. source: "./media/characters/ackart/side.svg",
  42878. extra: 1776/1668,
  42879. bottom: 116/1892
  42880. }
  42881. },
  42882. },
  42883. [
  42884. {
  42885. name: "Normal",
  42886. height: math.unit(10, "feet"),
  42887. default: true
  42888. },
  42889. ]
  42890. ))
  42891. characterMakers.push(() => makeCharacter(
  42892. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  42893. {
  42894. side: {
  42895. height: math.unit(21, "feet"),
  42896. name: "Side",
  42897. image: {
  42898. source: "./media/characters/nolow/side.svg",
  42899. extra: 1484/1434,
  42900. bottom: 85/1569
  42901. }
  42902. },
  42903. sideErect: {
  42904. height: math.unit(21, "feet"),
  42905. name: "Side-erect",
  42906. image: {
  42907. source: "./media/characters/nolow/side-erect.svg",
  42908. extra: 1484/1434,
  42909. bottom: 85/1569
  42910. }
  42911. },
  42912. },
  42913. [
  42914. {
  42915. name: "Regular",
  42916. height: math.unit(12, "feet")
  42917. },
  42918. {
  42919. name: "Big Chee",
  42920. height: math.unit(21, "feet"),
  42921. default: true
  42922. },
  42923. ]
  42924. ))
  42925. characterMakers.push(() => makeCharacter(
  42926. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  42927. {
  42928. front: {
  42929. height: math.unit(7, "feet"),
  42930. weight: math.unit(250, "lb"),
  42931. name: "Front",
  42932. image: {
  42933. source: "./media/characters/nines/front.svg",
  42934. extra: 1741/1607,
  42935. bottom: 41/1782
  42936. }
  42937. },
  42938. side: {
  42939. height: math.unit(7, "feet"),
  42940. weight: math.unit(250, "lb"),
  42941. name: "Side",
  42942. image: {
  42943. source: "./media/characters/nines/side.svg",
  42944. extra: 1854/1735,
  42945. bottom: 93/1947
  42946. }
  42947. },
  42948. back: {
  42949. height: math.unit(7, "feet"),
  42950. weight: math.unit(250, "lb"),
  42951. name: "Back",
  42952. image: {
  42953. source: "./media/characters/nines/back.svg",
  42954. extra: 1748/1615,
  42955. bottom: 20/1768
  42956. }
  42957. },
  42958. },
  42959. [
  42960. {
  42961. name: "Megamacro",
  42962. height: math.unit(99, "km"),
  42963. default: true
  42964. },
  42965. ]
  42966. ))
  42967. characterMakers.push(() => makeCharacter(
  42968. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  42969. {
  42970. front: {
  42971. height: math.unit(5 + 10/12, "feet"),
  42972. weight: math.unit(210, "lb"),
  42973. name: "Front",
  42974. image: {
  42975. source: "./media/characters/zenith/front.svg",
  42976. extra: 1531/1452,
  42977. bottom: 198/1729
  42978. }
  42979. },
  42980. back: {
  42981. height: math.unit(5 + 10/12, "feet"),
  42982. weight: math.unit(210, "lb"),
  42983. name: "Back",
  42984. image: {
  42985. source: "./media/characters/zenith/back.svg",
  42986. extra: 1571/1487,
  42987. bottom: 75/1646
  42988. }
  42989. },
  42990. },
  42991. [
  42992. {
  42993. name: "Normal",
  42994. height: math.unit(5 + 10/12, "feet"),
  42995. default: true
  42996. }
  42997. ]
  42998. ))
  42999. characterMakers.push(() => makeCharacter(
  43000. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  43001. {
  43002. front: {
  43003. height: math.unit(4, "feet"),
  43004. weight: math.unit(60, "lb"),
  43005. name: "Front",
  43006. image: {
  43007. source: "./media/characters/jasper/front.svg",
  43008. extra: 1450/1379,
  43009. bottom: 19/1469
  43010. }
  43011. },
  43012. },
  43013. [
  43014. {
  43015. name: "Normal",
  43016. height: math.unit(4, "feet"),
  43017. default: true
  43018. },
  43019. ]
  43020. ))
  43021. characterMakers.push(() => makeCharacter(
  43022. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  43023. {
  43024. front: {
  43025. height: math.unit(6 + 5/12, "feet"),
  43026. weight: math.unit(290, "lb"),
  43027. name: "Front",
  43028. image: {
  43029. source: "./media/characters/tiberius-thyben/front.svg",
  43030. extra: 757/739,
  43031. bottom: 39/796
  43032. }
  43033. },
  43034. },
  43035. [
  43036. {
  43037. name: "Micro",
  43038. height: math.unit(1.5, "inches")
  43039. },
  43040. {
  43041. name: "Normal",
  43042. height: math.unit(6 + 5/12, "feet"),
  43043. default: true
  43044. },
  43045. {
  43046. name: "Macro",
  43047. height: math.unit(300, "feet")
  43048. },
  43049. ]
  43050. ))
  43051. characterMakers.push(() => makeCharacter(
  43052. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  43053. {
  43054. front: {
  43055. height: math.unit(5 + 6/12, "feet"),
  43056. weight: math.unit(60, "kg"),
  43057. name: "Front",
  43058. image: {
  43059. source: "./media/characters/sabre/front.svg",
  43060. extra: 738/671,
  43061. bottom: 27/765
  43062. }
  43063. },
  43064. },
  43065. [
  43066. {
  43067. name: "Teeny",
  43068. height: math.unit(2, "inches")
  43069. },
  43070. {
  43071. name: "Smol",
  43072. height: math.unit(8, "inches")
  43073. },
  43074. {
  43075. name: "Normal",
  43076. height: math.unit(5 + 6/12, "feet"),
  43077. default: true
  43078. },
  43079. {
  43080. name: "Mini-Macro",
  43081. height: math.unit(15, "feet")
  43082. },
  43083. {
  43084. name: "Macro",
  43085. height: math.unit(50, "feet")
  43086. },
  43087. ]
  43088. ))
  43089. characterMakers.push(() => makeCharacter(
  43090. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  43091. {
  43092. front: {
  43093. height: math.unit(6 + 4/12, "feet"),
  43094. weight: math.unit(170, "lb"),
  43095. name: "Front",
  43096. image: {
  43097. source: "./media/characters/charlie/front.svg",
  43098. extra: 1348/1228,
  43099. bottom: 15/1363
  43100. }
  43101. },
  43102. },
  43103. [
  43104. {
  43105. name: "Macro",
  43106. height: math.unit(1700, "meters"),
  43107. default: true
  43108. },
  43109. {
  43110. name: "MegaMacro",
  43111. height: math.unit(20400, "meters")
  43112. },
  43113. ]
  43114. ))
  43115. characterMakers.push(() => makeCharacter(
  43116. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  43117. {
  43118. front: {
  43119. height: math.unit(6 + 3/12, "feet"),
  43120. weight: math.unit(185, "lb"),
  43121. name: "Front",
  43122. image: {
  43123. source: "./media/characters/susan-grant/front.svg",
  43124. extra: 1351/1327,
  43125. bottom: 26/1377
  43126. }
  43127. },
  43128. },
  43129. [
  43130. {
  43131. name: "Normal",
  43132. height: math.unit(6 + 3/12, "feet"),
  43133. default: true
  43134. },
  43135. {
  43136. name: "Macro",
  43137. height: math.unit(225, "feet")
  43138. },
  43139. {
  43140. name: "Macro+",
  43141. height: math.unit(900, "feet")
  43142. },
  43143. {
  43144. name: "MegaMacro",
  43145. height: math.unit(14400, "feet")
  43146. },
  43147. ]
  43148. ))
  43149. characterMakers.push(() => makeCharacter(
  43150. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  43151. {
  43152. front: {
  43153. height: math.unit(5 + 4/12, "feet"),
  43154. weight: math.unit(110, "lb"),
  43155. name: "Front",
  43156. image: {
  43157. source: "./media/characters/axel-isanov/front.svg",
  43158. extra: 1096/1065,
  43159. bottom: 13/1109
  43160. }
  43161. },
  43162. },
  43163. [
  43164. {
  43165. name: "Normal",
  43166. height: math.unit(5 + 4/12, "feet"),
  43167. default: true
  43168. },
  43169. ]
  43170. ))
  43171. characterMakers.push(() => makeCharacter(
  43172. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  43173. {
  43174. front: {
  43175. height: math.unit(9, "feet"),
  43176. weight: math.unit(467, "lb"),
  43177. name: "Front",
  43178. image: {
  43179. source: "./media/characters/necahual/front.svg",
  43180. extra: 920/873,
  43181. bottom: 26/946
  43182. }
  43183. },
  43184. back: {
  43185. height: math.unit(9, "feet"),
  43186. weight: math.unit(467, "lb"),
  43187. name: "Back",
  43188. image: {
  43189. source: "./media/characters/necahual/back.svg",
  43190. extra: 930/884,
  43191. bottom: 16/946
  43192. }
  43193. },
  43194. frontUnderwear: {
  43195. height: math.unit(9, "feet"),
  43196. weight: math.unit(467, "lb"),
  43197. name: "Front (Underwear)",
  43198. image: {
  43199. source: "./media/characters/necahual/front-underwear.svg",
  43200. extra: 920/873,
  43201. bottom: 26/946
  43202. }
  43203. },
  43204. frontDressed: {
  43205. height: math.unit(9, "feet"),
  43206. weight: math.unit(467, "lb"),
  43207. name: "Front (Dressed)",
  43208. image: {
  43209. source: "./media/characters/necahual/front-dressed.svg",
  43210. extra: 920/873,
  43211. bottom: 26/946
  43212. }
  43213. },
  43214. },
  43215. [
  43216. {
  43217. name: "Comprsesed",
  43218. height: math.unit(9, "feet")
  43219. },
  43220. {
  43221. name: "Natural",
  43222. height: math.unit(15, "feet"),
  43223. default: true
  43224. },
  43225. {
  43226. name: "Boosted",
  43227. height: math.unit(50, "feet")
  43228. },
  43229. {
  43230. name: "Boosted+",
  43231. height: math.unit(150, "feet")
  43232. },
  43233. {
  43234. name: "Max",
  43235. height: math.unit(500, "feet")
  43236. },
  43237. ]
  43238. ))
  43239. characterMakers.push(() => makeCharacter(
  43240. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  43241. {
  43242. front: {
  43243. height: math.unit(22 + 1/12, "feet"),
  43244. weight: math.unit(3200, "lb"),
  43245. name: "Front",
  43246. image: {
  43247. source: "./media/characters/theo-acacia/front.svg",
  43248. extra: 1796/1741,
  43249. bottom: 83/1879
  43250. }
  43251. },
  43252. frontUnderwear: {
  43253. height: math.unit(22 + 1/12, "feet"),
  43254. weight: math.unit(3200, "lb"),
  43255. name: "Front (Underwear)",
  43256. image: {
  43257. source: "./media/characters/theo-acacia/front-underwear.svg",
  43258. extra: 1796/1741,
  43259. bottom: 83/1879
  43260. }
  43261. },
  43262. frontNude: {
  43263. height: math.unit(22 + 1/12, "feet"),
  43264. weight: math.unit(3200, "lb"),
  43265. name: "Front (Nude)",
  43266. image: {
  43267. source: "./media/characters/theo-acacia/front-nude.svg",
  43268. extra: 1796/1741,
  43269. bottom: 83/1879
  43270. }
  43271. },
  43272. },
  43273. [
  43274. {
  43275. name: "Normal",
  43276. height: math.unit(22 + 1/12, "feet"),
  43277. default: true
  43278. },
  43279. ]
  43280. ))
  43281. characterMakers.push(() => makeCharacter(
  43282. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43283. {
  43284. front: {
  43285. height: math.unit(20, "feet"),
  43286. name: "Front",
  43287. image: {
  43288. source: "./media/characters/astra/front.svg",
  43289. extra: 1850/1714,
  43290. bottom: 106/1956
  43291. }
  43292. },
  43293. frontUndressed: {
  43294. height: math.unit(20, "feet"),
  43295. name: "Front (Undressed)",
  43296. image: {
  43297. source: "./media/characters/astra/front-undressed.svg",
  43298. extra: 1926/1749,
  43299. bottom: 0/1926
  43300. }
  43301. },
  43302. hand: {
  43303. height: math.unit(1.53, "feet"),
  43304. name: "Hand",
  43305. image: {
  43306. source: "./media/characters/astra/hand.svg"
  43307. }
  43308. },
  43309. paw: {
  43310. height: math.unit(1.53, "feet"),
  43311. name: "Paw",
  43312. image: {
  43313. source: "./media/characters/astra/paw.svg"
  43314. }
  43315. },
  43316. },
  43317. [
  43318. {
  43319. name: "Smallest",
  43320. height: math.unit(20, "feet")
  43321. },
  43322. {
  43323. name: "Normal",
  43324. height: math.unit(1e9, "miles"),
  43325. default: true
  43326. },
  43327. {
  43328. name: "Larger",
  43329. height: math.unit(5, "multiverses")
  43330. },
  43331. {
  43332. name: "Largest",
  43333. height: math.unit(1e9, "multiverses")
  43334. },
  43335. ]
  43336. ))
  43337. characterMakers.push(() => makeCharacter(
  43338. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43339. {
  43340. front: {
  43341. height: math.unit(8, "feet"),
  43342. name: "Front",
  43343. image: {
  43344. source: "./media/characters/breanna/front.svg",
  43345. extra: 1912/1632,
  43346. bottom: 33/1945
  43347. }
  43348. },
  43349. },
  43350. [
  43351. {
  43352. name: "Smallest",
  43353. height: math.unit(8, "feet")
  43354. },
  43355. {
  43356. name: "Normal",
  43357. height: math.unit(1, "mile"),
  43358. default: true
  43359. },
  43360. {
  43361. name: "Maximum",
  43362. height: math.unit(1500000000000, "lightyears")
  43363. },
  43364. ]
  43365. ))
  43366. characterMakers.push(() => makeCharacter(
  43367. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  43368. {
  43369. front: {
  43370. height: math.unit(5 + 11/12, "feet"),
  43371. weight: math.unit(155, "lb"),
  43372. name: "Front",
  43373. image: {
  43374. source: "./media/characters/cai/front.svg",
  43375. extra: 1823/1702,
  43376. bottom: 32/1855
  43377. }
  43378. },
  43379. back: {
  43380. height: math.unit(5 + 11/12, "feet"),
  43381. weight: math.unit(155, "lb"),
  43382. name: "Back",
  43383. image: {
  43384. source: "./media/characters/cai/back.svg",
  43385. extra: 1809/1708,
  43386. bottom: 31/1840
  43387. }
  43388. },
  43389. },
  43390. [
  43391. {
  43392. name: "Normal",
  43393. height: math.unit(5 + 11/12, "feet"),
  43394. default: true
  43395. },
  43396. {
  43397. name: "Big",
  43398. height: math.unit(15, "feet")
  43399. },
  43400. {
  43401. name: "Macro",
  43402. height: math.unit(200, "feet")
  43403. },
  43404. ]
  43405. ))
  43406. characterMakers.push(() => makeCharacter(
  43407. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  43408. {
  43409. front: {
  43410. height: math.unit(5 + 6/12, "feet"),
  43411. weight: math.unit(160, "lb"),
  43412. name: "Front",
  43413. image: {
  43414. source: "./media/characters/zanna-virtuedòttir/front.svg",
  43415. extra: 1227/1174,
  43416. bottom: 37/1264
  43417. }
  43418. },
  43419. },
  43420. [
  43421. {
  43422. name: "Macro",
  43423. height: math.unit(444, "meters"),
  43424. default: true
  43425. },
  43426. ]
  43427. ))
  43428. characterMakers.push(() => makeCharacter(
  43429. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  43430. {
  43431. front: {
  43432. height: math.unit(18 + 7/12, "feet"),
  43433. name: "Front",
  43434. image: {
  43435. source: "./media/characters/rex/front.svg",
  43436. extra: 1941/1807,
  43437. bottom: 66/2007
  43438. }
  43439. },
  43440. back: {
  43441. height: math.unit(18 + 7/12, "feet"),
  43442. name: "Back",
  43443. image: {
  43444. source: "./media/characters/rex/back.svg",
  43445. extra: 1937/1822,
  43446. bottom: 42/1979
  43447. }
  43448. },
  43449. boot: {
  43450. height: math.unit(3.45, "feet"),
  43451. name: "Boot",
  43452. image: {
  43453. source: "./media/characters/rex/boot.svg"
  43454. }
  43455. },
  43456. paw: {
  43457. height: math.unit(4.17, "feet"),
  43458. name: "Paw",
  43459. image: {
  43460. source: "./media/characters/rex/paw.svg"
  43461. }
  43462. },
  43463. head: {
  43464. height: math.unit(6.728, "feet"),
  43465. name: "Head",
  43466. image: {
  43467. source: "./media/characters/rex/head.svg"
  43468. }
  43469. },
  43470. },
  43471. [
  43472. {
  43473. name: "Nano",
  43474. height: math.unit(18 + 7/12, "feet")
  43475. },
  43476. {
  43477. name: "Micro",
  43478. height: math.unit(1.5, "megameters")
  43479. },
  43480. {
  43481. name: "Normal",
  43482. height: math.unit(440, "megameters"),
  43483. default: true
  43484. },
  43485. {
  43486. name: "Macro",
  43487. height: math.unit(2.5, "gigameters")
  43488. },
  43489. {
  43490. name: "Gigamacro",
  43491. height: math.unit(2, "galaxies")
  43492. },
  43493. ]
  43494. ))
  43495. characterMakers.push(() => makeCharacter(
  43496. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  43497. {
  43498. side: {
  43499. height: math.unit(32, "feet"),
  43500. weight: math.unit(250000, "lb"),
  43501. name: "Side",
  43502. image: {
  43503. source: "./media/characters/silverwing/side.svg",
  43504. extra: 1100/1019,
  43505. bottom: 204/1304
  43506. }
  43507. },
  43508. },
  43509. [
  43510. {
  43511. name: "Normal",
  43512. height: math.unit(32, "feet"),
  43513. default: true
  43514. },
  43515. ]
  43516. ))
  43517. characterMakers.push(() => makeCharacter(
  43518. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  43519. {
  43520. front: {
  43521. height: math.unit(6 + 6/12, "feet"),
  43522. weight: math.unit(350, "lb"),
  43523. name: "Front",
  43524. image: {
  43525. source: "./media/characters/tristan-hawthorne/front.svg",
  43526. extra: 1159/1124,
  43527. bottom: 37/1196
  43528. },
  43529. form: "labrador",
  43530. default: true
  43531. },
  43532. skunkFront: {
  43533. height: math.unit(4 + 6/12, "feet"),
  43534. weight: math.unit(120, "lb"),
  43535. name: "Front",
  43536. image: {
  43537. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  43538. extra: 1609/1551,
  43539. bottom: 169/1778
  43540. },
  43541. form: "skunk",
  43542. default: true
  43543. },
  43544. },
  43545. [
  43546. {
  43547. name: "Normal",
  43548. height: math.unit(6 + 6/12, "feet"),
  43549. form: "labrador",
  43550. default: true
  43551. },
  43552. {
  43553. name: "Normal",
  43554. height: math.unit(4 + 6/12, "feet"),
  43555. form: "skunk",
  43556. default: true
  43557. },
  43558. ],
  43559. {
  43560. "labrador": {
  43561. name: "Labrador",
  43562. default: true
  43563. },
  43564. "skunk": {
  43565. name: "Skunk"
  43566. }
  43567. }
  43568. ))
  43569. characterMakers.push(() => makeCharacter(
  43570. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  43571. {
  43572. front: {
  43573. height: math.unit(5 + 11/12, "feet"),
  43574. weight: math.unit(190, "lb"),
  43575. name: "Front",
  43576. image: {
  43577. source: "./media/characters/mizu/front.svg",
  43578. extra: 1988/1788,
  43579. bottom: 14/2002
  43580. }
  43581. },
  43582. },
  43583. [
  43584. {
  43585. name: "Normal",
  43586. height: math.unit(5 + 11/12, "feet"),
  43587. default: true
  43588. },
  43589. ]
  43590. ))
  43591. characterMakers.push(() => makeCharacter(
  43592. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  43593. {
  43594. front: {
  43595. height: math.unit(1.7, "feet"),
  43596. weight: math.unit(50, "lb"),
  43597. name: "Front",
  43598. image: {
  43599. source: "./media/characters/dechroma/front.svg",
  43600. extra: 1095/859,
  43601. bottom: 64/1159
  43602. }
  43603. },
  43604. },
  43605. [
  43606. {
  43607. name: "Normal",
  43608. height: math.unit(1.7, "feet"),
  43609. default: true
  43610. },
  43611. ]
  43612. ))
  43613. characterMakers.push(() => makeCharacter(
  43614. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  43615. {
  43616. side: {
  43617. height: math.unit(30, "feet"),
  43618. name: "Side",
  43619. image: {
  43620. source: "./media/characters/veluren-thanazel/side.svg",
  43621. extra: 1611/633,
  43622. bottom: 118/1729
  43623. }
  43624. },
  43625. front: {
  43626. height: math.unit(30, "feet"),
  43627. name: "Front",
  43628. image: {
  43629. source: "./media/characters/veluren-thanazel/front.svg",
  43630. extra: 1486/636,
  43631. bottom: 238/1724
  43632. }
  43633. },
  43634. head: {
  43635. height: math.unit(21.4, "feet"),
  43636. name: "Head",
  43637. image: {
  43638. source: "./media/characters/veluren-thanazel/head.svg"
  43639. }
  43640. },
  43641. genitals: {
  43642. height: math.unit(19.4, "feet"),
  43643. name: "Genitals",
  43644. image: {
  43645. source: "./media/characters/veluren-thanazel/genitals.svg"
  43646. }
  43647. },
  43648. },
  43649. [
  43650. {
  43651. name: "Social",
  43652. height: math.unit(6, "feet")
  43653. },
  43654. {
  43655. name: "Play",
  43656. height: math.unit(12, "feet")
  43657. },
  43658. {
  43659. name: "True",
  43660. height: math.unit(30, "feet"),
  43661. default: true
  43662. },
  43663. ]
  43664. ))
  43665. characterMakers.push(() => makeCharacter(
  43666. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  43667. {
  43668. front: {
  43669. height: math.unit(7 + 6/12, "feet"),
  43670. weight: math.unit(500, "kg"),
  43671. name: "Front",
  43672. image: {
  43673. source: "./media/characters/arcturas/front.svg",
  43674. extra: 1700/1500,
  43675. bottom: 145/1845
  43676. }
  43677. },
  43678. },
  43679. [
  43680. {
  43681. name: "Normal",
  43682. height: math.unit(7 + 6/12, "feet"),
  43683. default: true
  43684. },
  43685. ]
  43686. ))
  43687. characterMakers.push(() => makeCharacter(
  43688. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  43689. {
  43690. side: {
  43691. height: math.unit(6, "feet"),
  43692. weight: math.unit(2, "tons"),
  43693. name: "Side",
  43694. image: {
  43695. source: "./media/characters/vitaen/side.svg",
  43696. extra: 1157/617,
  43697. bottom: 122/1279
  43698. }
  43699. },
  43700. },
  43701. [
  43702. {
  43703. name: "Normal",
  43704. height: math.unit(6, "feet"),
  43705. default: true
  43706. },
  43707. ]
  43708. ))
  43709. characterMakers.push(() => makeCharacter(
  43710. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  43711. {
  43712. front: {
  43713. height: math.unit(19, "feet"),
  43714. name: "Front",
  43715. image: {
  43716. source: "./media/characters/fia-dreamweaver/front.svg",
  43717. extra: 1630/1504,
  43718. bottom: 25/1655
  43719. }
  43720. },
  43721. },
  43722. [
  43723. {
  43724. name: "Normal",
  43725. height: math.unit(19, "feet"),
  43726. default: true
  43727. },
  43728. ]
  43729. ))
  43730. characterMakers.push(() => makeCharacter(
  43731. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  43732. {
  43733. front: {
  43734. height: math.unit(5 + 4/12, "feet"),
  43735. name: "Front",
  43736. image: {
  43737. source: "./media/characters/artan/front.svg",
  43738. extra: 1618/1535,
  43739. bottom: 46/1664
  43740. }
  43741. },
  43742. back: {
  43743. height: math.unit(5 + 4/12, "feet"),
  43744. name: "Back",
  43745. image: {
  43746. source: "./media/characters/artan/back.svg",
  43747. extra: 1618/1543,
  43748. bottom: 31/1649
  43749. }
  43750. },
  43751. },
  43752. [
  43753. {
  43754. name: "Normal",
  43755. height: math.unit(5 + 4/12, "feet"),
  43756. default: true
  43757. },
  43758. ]
  43759. ))
  43760. characterMakers.push(() => makeCharacter(
  43761. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  43762. {
  43763. side: {
  43764. height: math.unit(182, "cm"),
  43765. weight: math.unit(1000, "lb"),
  43766. name: "Side",
  43767. image: {
  43768. source: "./media/characters/silver-dragon/side.svg",
  43769. extra: 710/287,
  43770. bottom: 88/798
  43771. }
  43772. },
  43773. },
  43774. [
  43775. {
  43776. name: "Normal",
  43777. height: math.unit(182, "cm"),
  43778. default: true
  43779. },
  43780. ]
  43781. ))
  43782. characterMakers.push(() => makeCharacter(
  43783. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  43784. {
  43785. side: {
  43786. height: math.unit(6 + 6/12, "feet"),
  43787. weight: math.unit(1.5, "tons"),
  43788. name: "Side",
  43789. image: {
  43790. source: "./media/characters/zephyr/side.svg",
  43791. extra: 1433/586,
  43792. bottom: 109/1542
  43793. }
  43794. },
  43795. },
  43796. [
  43797. {
  43798. name: "Normal",
  43799. height: math.unit(6 + 6/12, "feet"),
  43800. default: true
  43801. },
  43802. ]
  43803. ))
  43804. characterMakers.push(() => makeCharacter(
  43805. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  43806. {
  43807. side: {
  43808. height: math.unit(1, "feet"),
  43809. name: "Side",
  43810. image: {
  43811. source: "./media/characters/vixye/side.svg",
  43812. extra: 632/541,
  43813. bottom: 0/632
  43814. }
  43815. },
  43816. },
  43817. [
  43818. {
  43819. name: "Normal",
  43820. height: math.unit(1, "feet"),
  43821. default: true
  43822. },
  43823. {
  43824. name: "True",
  43825. height: math.unit(1e15, "multiverses")
  43826. },
  43827. ]
  43828. ))
  43829. characterMakers.push(() => makeCharacter(
  43830. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  43831. {
  43832. front: {
  43833. height: math.unit(8 + 2/12, "feet"),
  43834. weight: math.unit(650, "lb"),
  43835. name: "Front",
  43836. image: {
  43837. source: "./media/characters/darla-mac-lochlainn/front.svg",
  43838. extra: 1174/1137,
  43839. bottom: 82/1256
  43840. }
  43841. },
  43842. back: {
  43843. height: math.unit(8 + 2/12, "feet"),
  43844. weight: math.unit(650, "lb"),
  43845. name: "Back",
  43846. image: {
  43847. source: "./media/characters/darla-mac-lochlainn/back.svg",
  43848. extra: 1204/1157,
  43849. bottom: 46/1250
  43850. }
  43851. },
  43852. },
  43853. [
  43854. {
  43855. name: "Wildform",
  43856. height: math.unit(8 + 2/12, "feet"),
  43857. default: true
  43858. },
  43859. ]
  43860. ))
  43861. characterMakers.push(() => makeCharacter(
  43862. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  43863. {
  43864. front: {
  43865. height: math.unit(18, "feet"),
  43866. name: "Front",
  43867. image: {
  43868. source: "./media/characters/cyphin/front.svg",
  43869. extra: 970/886,
  43870. bottom: 42/1012
  43871. }
  43872. },
  43873. back: {
  43874. height: math.unit(18, "feet"),
  43875. name: "Back",
  43876. image: {
  43877. source: "./media/characters/cyphin/back.svg",
  43878. extra: 1009/894,
  43879. bottom: 24/1033
  43880. }
  43881. },
  43882. head: {
  43883. height: math.unit(5.05, "feet"),
  43884. name: "Head",
  43885. image: {
  43886. source: "./media/characters/cyphin/head.svg"
  43887. }
  43888. },
  43889. tailbud: {
  43890. height: math.unit(5, "feet"),
  43891. name: "Tailbud",
  43892. image: {
  43893. source: "./media/characters/cyphin/tailbud.svg"
  43894. }
  43895. },
  43896. },
  43897. [
  43898. ]
  43899. ))
  43900. characterMakers.push(() => makeCharacter(
  43901. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  43902. {
  43903. side: {
  43904. height: math.unit(10, "feet"),
  43905. weight: math.unit(6, "tons"),
  43906. name: "Side",
  43907. image: {
  43908. source: "./media/characters/raijin/side.svg",
  43909. extra: 1529/613,
  43910. bottom: 337/1866
  43911. }
  43912. },
  43913. },
  43914. [
  43915. {
  43916. name: "Normal",
  43917. height: math.unit(10, "feet"),
  43918. default: true
  43919. },
  43920. ]
  43921. ))
  43922. characterMakers.push(() => makeCharacter(
  43923. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  43924. {
  43925. side: {
  43926. height: math.unit(9, "feet"),
  43927. name: "Side",
  43928. image: {
  43929. source: "./media/characters/nilghais/side.svg",
  43930. extra: 1047/744,
  43931. bottom: 91/1138
  43932. }
  43933. },
  43934. head: {
  43935. height: math.unit(3.14, "feet"),
  43936. name: "Head",
  43937. image: {
  43938. source: "./media/characters/nilghais/head.svg"
  43939. }
  43940. },
  43941. mouth: {
  43942. height: math.unit(4.6, "feet"),
  43943. name: "Mouth",
  43944. image: {
  43945. source: "./media/characters/nilghais/mouth.svg"
  43946. }
  43947. },
  43948. wings: {
  43949. height: math.unit(24, "feet"),
  43950. name: "Wings",
  43951. image: {
  43952. source: "./media/characters/nilghais/wings.svg"
  43953. }
  43954. },
  43955. ass: {
  43956. height: math.unit(6.12, "feet"),
  43957. name: "Ass",
  43958. image: {
  43959. source: "./media/characters/nilghais/ass.svg"
  43960. }
  43961. },
  43962. },
  43963. [
  43964. {
  43965. name: "Normal",
  43966. height: math.unit(9, "feet"),
  43967. default: true
  43968. },
  43969. ]
  43970. ))
  43971. characterMakers.push(() => makeCharacter(
  43972. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  43973. {
  43974. regular: {
  43975. height: math.unit(16 + 2/12, "feet"),
  43976. weight: math.unit(2300, "lb"),
  43977. name: "Regular",
  43978. image: {
  43979. source: "./media/characters/zolgar/regular.svg",
  43980. extra: 1246/1004,
  43981. bottom: 124/1370
  43982. }
  43983. },
  43984. boxers: {
  43985. height: math.unit(16 + 2/12, "feet"),
  43986. weight: math.unit(2300, "lb"),
  43987. name: "Boxers",
  43988. image: {
  43989. source: "./media/characters/zolgar/boxers.svg",
  43990. extra: 1246/1004,
  43991. bottom: 124/1370
  43992. }
  43993. },
  43994. armored: {
  43995. height: math.unit(16 + 2/12, "feet"),
  43996. weight: math.unit(2300, "lb"),
  43997. name: "Armored",
  43998. image: {
  43999. source: "./media/characters/zolgar/armored.svg",
  44000. extra: 1246/1004,
  44001. bottom: 124/1370
  44002. }
  44003. },
  44004. goth: {
  44005. height: math.unit(16 + 2/12, "feet"),
  44006. weight: math.unit(2300, "lb"),
  44007. name: "Goth",
  44008. image: {
  44009. source: "./media/characters/zolgar/goth.svg",
  44010. extra: 1246/1004,
  44011. bottom: 124/1370
  44012. }
  44013. },
  44014. },
  44015. [
  44016. {
  44017. name: "Shrunken Down",
  44018. height: math.unit(9 + 2/12, "feet")
  44019. },
  44020. {
  44021. name: "Normal",
  44022. height: math.unit(16 + 2/12, "feet"),
  44023. default: true
  44024. },
  44025. ]
  44026. ))
  44027. characterMakers.push(() => makeCharacter(
  44028. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  44029. {
  44030. front: {
  44031. height: math.unit(6, "feet"),
  44032. weight: math.unit(168, "lb"),
  44033. name: "Front",
  44034. image: {
  44035. source: "./media/characters/luca/front.svg",
  44036. extra: 841/667,
  44037. bottom: 102/943
  44038. }
  44039. },
  44040. },
  44041. [
  44042. {
  44043. name: "Normal",
  44044. height: math.unit(6, "feet"),
  44045. default: true
  44046. },
  44047. ]
  44048. ))
  44049. characterMakers.push(() => makeCharacter(
  44050. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  44051. {
  44052. side: {
  44053. height: math.unit(7 + 3/12, "feet"),
  44054. weight: math.unit(312, "lb"),
  44055. name: "Side",
  44056. image: {
  44057. source: "./media/characters/zezo/side.svg",
  44058. extra: 1192/1067,
  44059. bottom: 63/1255
  44060. }
  44061. },
  44062. },
  44063. [
  44064. {
  44065. name: "Normal",
  44066. height: math.unit(7 + 3/12, "feet"),
  44067. default: true
  44068. },
  44069. ]
  44070. ))
  44071. characterMakers.push(() => makeCharacter(
  44072. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  44073. {
  44074. front: {
  44075. height: math.unit(5 + 5/12, "feet"),
  44076. weight: math.unit(170, "lb"),
  44077. name: "Front",
  44078. image: {
  44079. source: "./media/characters/mayso/front.svg",
  44080. extra: 1215/1108,
  44081. bottom: 16/1231
  44082. }
  44083. },
  44084. },
  44085. [
  44086. {
  44087. name: "Normal",
  44088. height: math.unit(5 + 5/12, "feet"),
  44089. default: true
  44090. },
  44091. ]
  44092. ))
  44093. characterMakers.push(() => makeCharacter(
  44094. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  44095. {
  44096. front: {
  44097. height: math.unit(4 + 3/12, "feet"),
  44098. weight: math.unit(80, "lb"),
  44099. name: "Front",
  44100. image: {
  44101. source: "./media/characters/hess/front.svg",
  44102. extra: 1200/1123,
  44103. bottom: 16/1216
  44104. }
  44105. },
  44106. },
  44107. [
  44108. {
  44109. name: "Normal",
  44110. height: math.unit(4 + 3/12, "feet"),
  44111. default: true
  44112. },
  44113. ]
  44114. ))
  44115. characterMakers.push(() => makeCharacter(
  44116. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  44117. {
  44118. front: {
  44119. height: math.unit(1.9, "meters"),
  44120. name: "Front",
  44121. image: {
  44122. source: "./media/characters/ashgar/front.svg",
  44123. extra: 1177/1146,
  44124. bottom: 99/1276
  44125. }
  44126. },
  44127. back: {
  44128. height: math.unit(1.9, "meters"),
  44129. name: "Back",
  44130. image: {
  44131. source: "./media/characters/ashgar/back.svg",
  44132. extra: 1201/1183,
  44133. bottom: 53/1254
  44134. }
  44135. },
  44136. feral: {
  44137. height: math.unit(1.4, "meters"),
  44138. name: "Feral",
  44139. image: {
  44140. source: "./media/characters/ashgar/feral.svg",
  44141. extra: 370/345,
  44142. bottom: 45/415
  44143. }
  44144. },
  44145. },
  44146. [
  44147. {
  44148. name: "Normal",
  44149. height: math.unit(1.9, "meters"),
  44150. default: true
  44151. },
  44152. ]
  44153. ))
  44154. characterMakers.push(() => makeCharacter(
  44155. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  44156. {
  44157. regular: {
  44158. height: math.unit(6, "feet"),
  44159. weight: math.unit(220, "lb"),
  44160. name: "Regular",
  44161. image: {
  44162. source: "./media/characters/phillip/regular.svg",
  44163. extra: 1373/1277,
  44164. bottom: 75/1448
  44165. }
  44166. },
  44167. dressed: {
  44168. height: math.unit(6, "feet"),
  44169. weight: math.unit(220, "lb"),
  44170. name: "Dressed",
  44171. image: {
  44172. source: "./media/characters/phillip/dressed.svg",
  44173. extra: 1373/1277,
  44174. bottom: 75/1448
  44175. }
  44176. },
  44177. paw: {
  44178. height: math.unit(1.44, "feet"),
  44179. name: "Paw",
  44180. image: {
  44181. source: "./media/characters/phillip/paw.svg"
  44182. }
  44183. },
  44184. },
  44185. [
  44186. {
  44187. name: "Normal",
  44188. height: math.unit(6, "feet"),
  44189. default: true
  44190. },
  44191. ]
  44192. ))
  44193. characterMakers.push(() => makeCharacter(
  44194. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  44195. {
  44196. side: {
  44197. height: math.unit(42, "feet"),
  44198. name: "Side",
  44199. image: {
  44200. source: "./media/characters/uvula/side.svg",
  44201. extra: 683/586,
  44202. bottom: 60/743
  44203. }
  44204. },
  44205. front: {
  44206. height: math.unit(42, "feet"),
  44207. name: "Front",
  44208. image: {
  44209. source: "./media/characters/uvula/front.svg",
  44210. extra: 705/613,
  44211. bottom: 54/759
  44212. }
  44213. },
  44214. maw: {
  44215. height: math.unit(23.5, "feet"),
  44216. name: "Maw",
  44217. image: {
  44218. source: "./media/characters/uvula/maw.svg"
  44219. }
  44220. },
  44221. },
  44222. [
  44223. {
  44224. name: "Original Size",
  44225. height: math.unit(14, "inches")
  44226. },
  44227. {
  44228. name: "Human Size",
  44229. height: math.unit(6, "feet")
  44230. },
  44231. {
  44232. name: "Big",
  44233. height: math.unit(42, "feet"),
  44234. default: true
  44235. },
  44236. {
  44237. name: "Bigger",
  44238. height: math.unit(100, "feet")
  44239. },
  44240. ]
  44241. ))
  44242. characterMakers.push(() => makeCharacter(
  44243. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  44244. {
  44245. front: {
  44246. height: math.unit(5 + 11/12, "feet"),
  44247. name: "Front",
  44248. image: {
  44249. source: "./media/characters/lannah/front.svg",
  44250. extra: 1208/1113,
  44251. bottom: 97/1305
  44252. }
  44253. },
  44254. },
  44255. [
  44256. {
  44257. name: "Normal",
  44258. height: math.unit(5 + 11/12, "feet"),
  44259. default: true
  44260. },
  44261. ]
  44262. ))
  44263. characterMakers.push(() => makeCharacter(
  44264. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  44265. {
  44266. front: {
  44267. height: math.unit(6 + 3/12, "feet"),
  44268. weight: math.unit(3.5, "tons"),
  44269. name: "Front",
  44270. image: {
  44271. source: "./media/characters/emberflame/front.svg",
  44272. extra: 1198/672,
  44273. bottom: 82/1280
  44274. }
  44275. },
  44276. side: {
  44277. height: math.unit(6 + 3/12, "feet"),
  44278. weight: math.unit(3.5, "tons"),
  44279. name: "Side",
  44280. image: {
  44281. source: "./media/characters/emberflame/side.svg",
  44282. extra: 938/527,
  44283. bottom: 56/994
  44284. }
  44285. },
  44286. },
  44287. [
  44288. {
  44289. name: "Normal",
  44290. height: math.unit(6 + 3/12, "feet"),
  44291. default: true
  44292. },
  44293. ]
  44294. ))
  44295. characterMakers.push(() => makeCharacter(
  44296. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  44297. {
  44298. side: {
  44299. height: math.unit(17.5, "feet"),
  44300. weight: math.unit(35, "tons"),
  44301. name: "Side",
  44302. image: {
  44303. source: "./media/characters/sophie-ambrose/side.svg",
  44304. extra: 1573/1242,
  44305. bottom: 71/1644
  44306. }
  44307. },
  44308. maw: {
  44309. height: math.unit(7.4, "feet"),
  44310. name: "Maw",
  44311. image: {
  44312. source: "./media/characters/sophie-ambrose/maw.svg"
  44313. }
  44314. },
  44315. },
  44316. [
  44317. {
  44318. name: "Normal",
  44319. height: math.unit(17.5, "feet"),
  44320. default: true
  44321. },
  44322. ]
  44323. ))
  44324. characterMakers.push(() => makeCharacter(
  44325. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  44326. {
  44327. front: {
  44328. height: math.unit(280, "feet"),
  44329. weight: math.unit(550, "tons"),
  44330. name: "Front",
  44331. image: {
  44332. source: "./media/characters/king-mugi/front.svg",
  44333. extra: 1102/947,
  44334. bottom: 104/1206
  44335. }
  44336. },
  44337. },
  44338. [
  44339. {
  44340. name: "King Mugi",
  44341. height: math.unit(280, "feet"),
  44342. default: true
  44343. },
  44344. ]
  44345. ))
  44346. characterMakers.push(() => makeCharacter(
  44347. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  44348. {
  44349. front: {
  44350. height: math.unit(64, "meters"),
  44351. name: "Front",
  44352. image: {
  44353. source: "./media/characters/nova-fox/front.svg",
  44354. extra: 1310/1246,
  44355. bottom: 65/1375
  44356. }
  44357. },
  44358. },
  44359. [
  44360. {
  44361. name: "Macro",
  44362. height: math.unit(64, "meters"),
  44363. default: true
  44364. },
  44365. ]
  44366. ))
  44367. characterMakers.push(() => makeCharacter(
  44368. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  44369. {
  44370. front: {
  44371. height: math.unit(6 + 3/12, "feet"),
  44372. weight: math.unit(170, "lb"),
  44373. name: "Front",
  44374. image: {
  44375. source: "./media/characters/sam-bat/front.svg",
  44376. extra: 1601/1411,
  44377. bottom: 125/1726
  44378. }
  44379. },
  44380. back: {
  44381. height: math.unit(6 + 3/12, "feet"),
  44382. weight: math.unit(170, "lb"),
  44383. name: "Back",
  44384. image: {
  44385. source: "./media/characters/sam-bat/back.svg",
  44386. extra: 1577/1405,
  44387. bottom: 58/1635
  44388. }
  44389. },
  44390. },
  44391. [
  44392. {
  44393. name: "Normal",
  44394. height: math.unit(6 + 3/12, "feet"),
  44395. default: true
  44396. },
  44397. ]
  44398. ))
  44399. characterMakers.push(() => makeCharacter(
  44400. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  44401. {
  44402. front: {
  44403. height: math.unit(59, "feet"),
  44404. weight: math.unit(40000, "lb"),
  44405. name: "Front",
  44406. image: {
  44407. source: "./media/characters/inari/front.svg",
  44408. extra: 1884/1350,
  44409. bottom: 95/1979
  44410. }
  44411. },
  44412. },
  44413. [
  44414. {
  44415. name: "Gigantamax",
  44416. height: math.unit(59, "feet"),
  44417. default: true
  44418. },
  44419. ]
  44420. ))
  44421. characterMakers.push(() => makeCharacter(
  44422. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  44423. {
  44424. front: {
  44425. height: math.unit(5 + 8/12, "feet"),
  44426. name: "Front",
  44427. image: {
  44428. source: "./media/characters/elizabeth/front.svg",
  44429. extra: 1395/1298,
  44430. bottom: 54/1449
  44431. }
  44432. },
  44433. mouth: {
  44434. height: math.unit(1.97, "feet"),
  44435. name: "Mouth",
  44436. image: {
  44437. source: "./media/characters/elizabeth/mouth.svg"
  44438. }
  44439. },
  44440. foot: {
  44441. height: math.unit(1.17, "feet"),
  44442. name: "Foot",
  44443. image: {
  44444. source: "./media/characters/elizabeth/foot.svg"
  44445. }
  44446. },
  44447. },
  44448. [
  44449. {
  44450. name: "Normal",
  44451. height: math.unit(5 + 8/12, "feet"),
  44452. default: true
  44453. },
  44454. {
  44455. name: "Minimacro",
  44456. height: math.unit(18, "feet")
  44457. },
  44458. {
  44459. name: "Macro",
  44460. height: math.unit(180, "feet")
  44461. },
  44462. ]
  44463. ))
  44464. characterMakers.push(() => makeCharacter(
  44465. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  44466. {
  44467. front: {
  44468. height: math.unit(5 + 2/12, "feet"),
  44469. name: "Front",
  44470. image: {
  44471. source: "./media/characters/october-gossamer/front.svg",
  44472. extra: 505/454,
  44473. bottom: 7/512
  44474. }
  44475. },
  44476. back: {
  44477. height: math.unit(5 + 2/12, "feet"),
  44478. name: "Back",
  44479. image: {
  44480. source: "./media/characters/october-gossamer/back.svg",
  44481. extra: 501/454,
  44482. bottom: 11/512
  44483. }
  44484. },
  44485. },
  44486. [
  44487. {
  44488. name: "Normal",
  44489. height: math.unit(5 + 2/12, "feet"),
  44490. default: true
  44491. },
  44492. ]
  44493. ))
  44494. characterMakers.push(() => makeCharacter(
  44495. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  44496. {
  44497. front: {
  44498. height: math.unit(5, "feet"),
  44499. name: "Front",
  44500. image: {
  44501. source: "./media/characters/epiglottis/front.svg",
  44502. extra: 923/849,
  44503. bottom: 17/940
  44504. }
  44505. },
  44506. },
  44507. [
  44508. {
  44509. name: "Original Size",
  44510. height: math.unit(10, "inches")
  44511. },
  44512. {
  44513. name: "Human Size",
  44514. height: math.unit(5, "feet"),
  44515. default: true
  44516. },
  44517. {
  44518. name: "Big",
  44519. height: math.unit(25, "feet")
  44520. },
  44521. {
  44522. name: "Bigger",
  44523. height: math.unit(50, "feet")
  44524. },
  44525. {
  44526. name: "oh lawd",
  44527. height: math.unit(75, "feet")
  44528. },
  44529. ]
  44530. ))
  44531. characterMakers.push(() => makeCharacter(
  44532. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  44533. {
  44534. front: {
  44535. height: math.unit(2 + 4/12, "feet"),
  44536. weight: math.unit(60, "lb"),
  44537. name: "Front",
  44538. image: {
  44539. source: "./media/characters/lerm/front.svg",
  44540. extra: 796/790,
  44541. bottom: 79/875
  44542. }
  44543. },
  44544. },
  44545. [
  44546. {
  44547. name: "Normal",
  44548. height: math.unit(2 + 4/12, "feet"),
  44549. default: true
  44550. },
  44551. ]
  44552. ))
  44553. characterMakers.push(() => makeCharacter(
  44554. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  44555. {
  44556. front: {
  44557. height: math.unit(5.5, "feet"),
  44558. weight: math.unit(130, "lb"),
  44559. name: "Front",
  44560. image: {
  44561. source: "./media/characters/xena-nebadon/front.svg",
  44562. extra: 1828/1730,
  44563. bottom: 79/1907
  44564. }
  44565. },
  44566. },
  44567. [
  44568. {
  44569. name: "Tiny Puppy",
  44570. height: math.unit(3, "inches")
  44571. },
  44572. {
  44573. name: "Normal",
  44574. height: math.unit(5.5, "feet"),
  44575. default: true
  44576. },
  44577. {
  44578. name: "Lotta Lady",
  44579. height: math.unit(12, "feet")
  44580. },
  44581. {
  44582. name: "Pretty Big",
  44583. height: math.unit(100, "feet")
  44584. },
  44585. {
  44586. name: "Big",
  44587. height: math.unit(500, "feet")
  44588. },
  44589. {
  44590. name: "Skyscraper Toys",
  44591. height: math.unit(2500, "feet")
  44592. },
  44593. {
  44594. name: "Plane Catcher",
  44595. height: math.unit(8, "miles")
  44596. },
  44597. {
  44598. name: "Planet Toys",
  44599. height: math.unit(15, "earths")
  44600. },
  44601. {
  44602. name: "Stardust",
  44603. height: math.unit(0.25, "galaxies")
  44604. },
  44605. {
  44606. name: "Snacks",
  44607. height: math.unit(70, "universes")
  44608. },
  44609. ]
  44610. ))
  44611. characterMakers.push(() => makeCharacter(
  44612. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  44613. {
  44614. front: {
  44615. height: math.unit(1.6, "meters"),
  44616. weight: math.unit(60, "kg"),
  44617. name: "Front",
  44618. image: {
  44619. source: "./media/characters/bounty/front.svg",
  44620. extra: 1426/1308,
  44621. bottom: 15/1441
  44622. }
  44623. },
  44624. back: {
  44625. height: math.unit(1.6, "meters"),
  44626. weight: math.unit(60, "kg"),
  44627. name: "Back",
  44628. image: {
  44629. source: "./media/characters/bounty/back.svg",
  44630. extra: 1417/1307,
  44631. bottom: 8/1425
  44632. }
  44633. },
  44634. },
  44635. [
  44636. {
  44637. name: "Normal",
  44638. height: math.unit(1.6, "meters"),
  44639. default: true
  44640. },
  44641. {
  44642. name: "Macro",
  44643. height: math.unit(300, "meters")
  44644. },
  44645. ]
  44646. ))
  44647. characterMakers.push(() => makeCharacter(
  44648. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  44649. {
  44650. front: {
  44651. height: math.unit(2 + 8/12, "feet"),
  44652. weight: math.unit(15, "lb"),
  44653. name: "Front",
  44654. image: {
  44655. source: "./media/characters/mochi/front.svg",
  44656. extra: 1022/852,
  44657. bottom: 435/1457
  44658. }
  44659. },
  44660. back: {
  44661. height: math.unit(2 + 8/12, "feet"),
  44662. weight: math.unit(15, "lb"),
  44663. name: "Back",
  44664. image: {
  44665. source: "./media/characters/mochi/back.svg",
  44666. extra: 1335/1119,
  44667. bottom: 39/1374
  44668. }
  44669. },
  44670. bird: {
  44671. height: math.unit(2 + 8/12, "feet"),
  44672. weight: math.unit(15, "lb"),
  44673. name: "Bird",
  44674. image: {
  44675. source: "./media/characters/mochi/bird.svg",
  44676. extra: 1251/1113,
  44677. bottom: 178/1429
  44678. }
  44679. },
  44680. kaiju: {
  44681. height: math.unit(154, "feet"),
  44682. weight: math.unit(1e7, "lb"),
  44683. name: "Kaiju",
  44684. image: {
  44685. source: "./media/characters/mochi/kaiju.svg",
  44686. extra: 460/324,
  44687. bottom: 40/500
  44688. }
  44689. },
  44690. head: {
  44691. height: math.unit(1.21, "feet"),
  44692. name: "Head",
  44693. image: {
  44694. source: "./media/characters/mochi/head.svg"
  44695. }
  44696. },
  44697. alternateTail: {
  44698. height: math.unit(2 + 8/12, "feet"),
  44699. weight: math.unit(45, "lb"),
  44700. name: "Alternate Tail",
  44701. image: {
  44702. source: "./media/characters/mochi/alternate-tail.svg",
  44703. extra: 139/76,
  44704. bottom: 45/184
  44705. }
  44706. },
  44707. },
  44708. [
  44709. {
  44710. name: "Micro",
  44711. height: math.unit(2, "inches")
  44712. },
  44713. {
  44714. name: "Normal",
  44715. height: math.unit(2 + 8/12, "feet"),
  44716. default: true
  44717. },
  44718. {
  44719. name: "Macro",
  44720. height: math.unit(106, "feet")
  44721. },
  44722. ]
  44723. ))
  44724. characterMakers.push(() => makeCharacter(
  44725. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  44726. {
  44727. front: {
  44728. height: math.unit(5.67, "feet"),
  44729. weight: math.unit(135, "lb"),
  44730. name: "Front",
  44731. image: {
  44732. source: "./media/characters/sarel/front.svg",
  44733. extra: 865/788,
  44734. bottom: 97/962
  44735. }
  44736. },
  44737. back: {
  44738. height: math.unit(5.67, "feet"),
  44739. weight: math.unit(135, "lb"),
  44740. name: "Back",
  44741. image: {
  44742. source: "./media/characters/sarel/back.svg",
  44743. extra: 857/777,
  44744. bottom: 32/889
  44745. }
  44746. },
  44747. chozoan: {
  44748. height: math.unit(5.67, "feet"),
  44749. weight: math.unit(135, "lb"),
  44750. name: "Chozoan",
  44751. image: {
  44752. source: "./media/characters/sarel/chozoan.svg",
  44753. extra: 865/788,
  44754. bottom: 97/962
  44755. }
  44756. },
  44757. current: {
  44758. height: math.unit(5.67, "feet"),
  44759. weight: math.unit(135, "lb"),
  44760. name: "Current",
  44761. image: {
  44762. source: "./media/characters/sarel/current.svg",
  44763. extra: 865/788,
  44764. bottom: 97/962
  44765. }
  44766. },
  44767. head: {
  44768. height: math.unit(1.77, "feet"),
  44769. name: "Head",
  44770. image: {
  44771. source: "./media/characters/sarel/head.svg"
  44772. }
  44773. },
  44774. claws: {
  44775. height: math.unit(1.8, "feet"),
  44776. name: "Claws",
  44777. image: {
  44778. source: "./media/characters/sarel/claws.svg"
  44779. }
  44780. },
  44781. clawsAlt: {
  44782. height: math.unit(1.8, "feet"),
  44783. name: "Claws-alt",
  44784. image: {
  44785. source: "./media/characters/sarel/claws-alt.svg"
  44786. }
  44787. },
  44788. },
  44789. [
  44790. {
  44791. name: "Normal",
  44792. height: math.unit(5.67, "feet"),
  44793. default: true
  44794. },
  44795. ]
  44796. ))
  44797. characterMakers.push(() => makeCharacter(
  44798. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  44799. {
  44800. front: {
  44801. height: math.unit(5500, "feet"),
  44802. name: "Front",
  44803. image: {
  44804. source: "./media/characters/alyonia/front.svg",
  44805. extra: 1200/1135,
  44806. bottom: 29/1229
  44807. }
  44808. },
  44809. back: {
  44810. height: math.unit(5500, "feet"),
  44811. name: "Back",
  44812. image: {
  44813. source: "./media/characters/alyonia/back.svg",
  44814. extra: 1205/1138,
  44815. bottom: 10/1215
  44816. }
  44817. },
  44818. },
  44819. [
  44820. {
  44821. name: "Small",
  44822. height: math.unit(10, "feet")
  44823. },
  44824. {
  44825. name: "Macro",
  44826. height: math.unit(500, "feet")
  44827. },
  44828. {
  44829. name: "Mega Macro",
  44830. height: math.unit(5500, "feet"),
  44831. default: true
  44832. },
  44833. {
  44834. name: "Mega Macro+",
  44835. height: math.unit(500000, "feet")
  44836. },
  44837. {
  44838. name: "Giga Macro",
  44839. height: math.unit(3000, "miles")
  44840. },
  44841. {
  44842. name: "Tera Macro",
  44843. height: math.unit(2.8e6, "miles")
  44844. },
  44845. {
  44846. name: "Galactic",
  44847. height: math.unit(120000, "lightyears")
  44848. },
  44849. ]
  44850. ))
  44851. characterMakers.push(() => makeCharacter(
  44852. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  44853. {
  44854. werewolf: {
  44855. height: math.unit(8, "feet"),
  44856. weight: math.unit(425, "lb"),
  44857. name: "Werewolf",
  44858. image: {
  44859. source: "./media/characters/autumn/werewolf.svg",
  44860. extra: 2154/2031,
  44861. bottom: 160/2314
  44862. }
  44863. },
  44864. human: {
  44865. height: math.unit(5 + 8/12, "feet"),
  44866. weight: math.unit(150, "lb"),
  44867. name: "Human",
  44868. image: {
  44869. source: "./media/characters/autumn/human.svg",
  44870. extra: 1200/1149,
  44871. bottom: 30/1230
  44872. }
  44873. },
  44874. },
  44875. [
  44876. {
  44877. name: "Normal",
  44878. height: math.unit(8, "feet"),
  44879. default: true
  44880. },
  44881. ]
  44882. ))
  44883. characterMakers.push(() => makeCharacter(
  44884. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  44885. {
  44886. front: {
  44887. height: math.unit(8 + 5/12, "feet"),
  44888. weight: math.unit(825, "lb"),
  44889. name: "Front",
  44890. image: {
  44891. source: "./media/characters/cobalt-charizard/front.svg",
  44892. extra: 1268/1155,
  44893. bottom: 122/1390
  44894. }
  44895. },
  44896. side: {
  44897. height: math.unit(8 + 5/12, "feet"),
  44898. weight: math.unit(825, "lb"),
  44899. name: "Side",
  44900. image: {
  44901. source: "./media/characters/cobalt-charizard/side.svg",
  44902. extra: 1348/1257,
  44903. bottom: 58/1406
  44904. }
  44905. },
  44906. gMax: {
  44907. height: math.unit(134 + 11/12, "feet"),
  44908. name: "G-Max",
  44909. image: {
  44910. source: "./media/characters/cobalt-charizard/g-max.svg",
  44911. extra: 1835/1541,
  44912. bottom: 151/1986
  44913. }
  44914. },
  44915. },
  44916. [
  44917. {
  44918. name: "Normal",
  44919. height: math.unit(8 + 5/12, "feet"),
  44920. default: true
  44921. },
  44922. ]
  44923. ))
  44924. characterMakers.push(() => makeCharacter(
  44925. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  44926. {
  44927. front: {
  44928. height: math.unit(6 + 3/12, "feet"),
  44929. weight: math.unit(210, "lb"),
  44930. name: "Front",
  44931. image: {
  44932. source: "./media/characters/stella/front.svg",
  44933. extra: 3549/3335,
  44934. bottom: 51/3600
  44935. }
  44936. },
  44937. },
  44938. [
  44939. {
  44940. name: "Normal",
  44941. height: math.unit(6 + 3/12, "feet"),
  44942. default: true
  44943. },
  44944. ]
  44945. ))
  44946. characterMakers.push(() => makeCharacter(
  44947. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  44948. {
  44949. front: {
  44950. height: math.unit(5, "feet"),
  44951. weight: math.unit(90, "lb"),
  44952. name: "Front",
  44953. image: {
  44954. source: "./media/characters/riley-bishop/front.svg",
  44955. extra: 1450/1428,
  44956. bottom: 152/1602
  44957. }
  44958. },
  44959. },
  44960. [
  44961. {
  44962. name: "Normal",
  44963. height: math.unit(5, "feet"),
  44964. default: true
  44965. },
  44966. ]
  44967. ))
  44968. characterMakers.push(() => makeCharacter(
  44969. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  44970. {
  44971. side: {
  44972. height: math.unit(8 + 2/12, "feet"),
  44973. weight: math.unit(500, "kg"),
  44974. name: "Side",
  44975. image: {
  44976. source: "./media/characters/theo-arcanine/side.svg",
  44977. extra: 1342/1074,
  44978. bottom: 111/1453
  44979. }
  44980. },
  44981. },
  44982. [
  44983. {
  44984. name: "Normal",
  44985. height: math.unit(8 + 2/12, "feet"),
  44986. default: true
  44987. },
  44988. ]
  44989. ))
  44990. characterMakers.push(() => makeCharacter(
  44991. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  44992. {
  44993. front: {
  44994. height: math.unit(4, "feet"),
  44995. name: "Front",
  44996. image: {
  44997. source: "./media/characters/kali/front.svg",
  44998. extra: 1921/1357,
  44999. bottom: 70/1991
  45000. }
  45001. },
  45002. },
  45003. [
  45004. {
  45005. name: "Normal",
  45006. height: math.unit(4, "feet"),
  45007. default: true
  45008. },
  45009. {
  45010. name: "Macro",
  45011. height: math.unit(32, "meters")
  45012. },
  45013. {
  45014. name: "Macro+",
  45015. height: math.unit(150, "meters")
  45016. },
  45017. {
  45018. name: "Megamacro",
  45019. height: math.unit(7500, "meters")
  45020. },
  45021. {
  45022. name: "Megamacro+",
  45023. height: math.unit(80, "kilometers")
  45024. },
  45025. ]
  45026. ))
  45027. characterMakers.push(() => makeCharacter(
  45028. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  45029. {
  45030. side: {
  45031. height: math.unit(5 + 11/12, "feet"),
  45032. weight: math.unit(236, "lb"),
  45033. name: "Side",
  45034. image: {
  45035. source: "./media/characters/gapp/side.svg",
  45036. extra: 775/340,
  45037. bottom: 58/833
  45038. }
  45039. },
  45040. mouth: {
  45041. height: math.unit(2.98, "feet"),
  45042. name: "Mouth",
  45043. image: {
  45044. source: "./media/characters/gapp/mouth.svg"
  45045. }
  45046. },
  45047. },
  45048. [
  45049. {
  45050. name: "Normal",
  45051. height: math.unit(5 + 1/12, "feet"),
  45052. default: true
  45053. },
  45054. ]
  45055. ))
  45056. characterMakers.push(() => makeCharacter(
  45057. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  45058. {
  45059. front: {
  45060. height: math.unit(6, "feet"),
  45061. name: "Front",
  45062. image: {
  45063. source: "./media/characters/persephone/front.svg",
  45064. extra: 1895/1717,
  45065. bottom: 96/1991
  45066. }
  45067. },
  45068. back: {
  45069. height: math.unit(6, "feet"),
  45070. name: "Back",
  45071. image: {
  45072. source: "./media/characters/persephone/back.svg",
  45073. extra: 1868/1679,
  45074. bottom: 26/1894
  45075. }
  45076. },
  45077. casual: {
  45078. height: math.unit(6, "feet"),
  45079. name: "Casual",
  45080. image: {
  45081. source: "./media/characters/persephone/casual.svg",
  45082. extra: 1713/1541,
  45083. bottom: 76/1789
  45084. }
  45085. },
  45086. },
  45087. [
  45088. {
  45089. name: "Human Size",
  45090. height: math.unit(6, "feet")
  45091. },
  45092. {
  45093. name: "Big Steppy",
  45094. height: math.unit(600, "meters"),
  45095. default: true
  45096. },
  45097. {
  45098. name: "Galaxy Brain",
  45099. height: math.unit(1, "zettameter")
  45100. },
  45101. ]
  45102. ))
  45103. characterMakers.push(() => makeCharacter(
  45104. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  45105. {
  45106. front: {
  45107. height: math.unit(1.85, "meters"),
  45108. name: "Front",
  45109. image: {
  45110. source: "./media/characters/riley-foxthing/front.svg",
  45111. extra: 1495/1354,
  45112. bottom: 122/1617
  45113. }
  45114. },
  45115. frontAlt: {
  45116. height: math.unit(1.85, "meters"),
  45117. name: "Front (Alt)",
  45118. image: {
  45119. source: "./media/characters/riley-foxthing/front-alt.svg",
  45120. extra: 1572/1389,
  45121. bottom: 116/1688
  45122. }
  45123. },
  45124. },
  45125. [
  45126. {
  45127. name: "Normal Sized",
  45128. height: math.unit(1.85, "meters"),
  45129. default: true
  45130. },
  45131. {
  45132. name: "Quite Sizable",
  45133. height: math.unit(5, "meters")
  45134. },
  45135. {
  45136. name: "Rather Large",
  45137. height: math.unit(20, "meters")
  45138. },
  45139. {
  45140. name: "Macro",
  45141. height: math.unit(450, "meters")
  45142. },
  45143. {
  45144. name: "Giga",
  45145. height: math.unit(5, "km")
  45146. },
  45147. ]
  45148. ))
  45149. characterMakers.push(() => makeCharacter(
  45150. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  45151. {
  45152. front: {
  45153. height: math.unit(6, "feet"),
  45154. weight: math.unit(200, "lb"),
  45155. name: "Front",
  45156. image: {
  45157. source: "./media/characters/blizzard/front.svg",
  45158. extra: 1136/990,
  45159. bottom: 136/1272
  45160. }
  45161. },
  45162. back: {
  45163. height: math.unit(6, "feet"),
  45164. weight: math.unit(200, "lb"),
  45165. name: "Back",
  45166. image: {
  45167. source: "./media/characters/blizzard/back.svg",
  45168. extra: 1175/1034,
  45169. bottom: 97/1272
  45170. }
  45171. },
  45172. sitting: {
  45173. height: math.unit(3.725, "feet"),
  45174. weight: math.unit(200, "lb"),
  45175. name: "Sitting",
  45176. image: {
  45177. source: "./media/characters/blizzard/sitting.svg",
  45178. extra: 581/485,
  45179. bottom: 90/671
  45180. }
  45181. },
  45182. frontWizard: {
  45183. height: math.unit(7.9, "feet"),
  45184. weight: math.unit(200, "lb"),
  45185. name: "Front (Wizard)",
  45186. image: {
  45187. source: "./media/characters/blizzard/front-wizard.svg"
  45188. }
  45189. },
  45190. backWizard: {
  45191. height: math.unit(7.9, "feet"),
  45192. weight: math.unit(200, "lb"),
  45193. name: "Back (Wizard)",
  45194. image: {
  45195. source: "./media/characters/blizzard/back-wizard.svg"
  45196. }
  45197. },
  45198. frontNsfw: {
  45199. height: math.unit(6, "feet"),
  45200. weight: math.unit(200, "lb"),
  45201. name: "Front (NSFW)",
  45202. image: {
  45203. source: "./media/characters/blizzard/front-nsfw.svg",
  45204. extra: 1136/990,
  45205. bottom: 136/1272
  45206. }
  45207. },
  45208. backNsfw: {
  45209. height: math.unit(6, "feet"),
  45210. weight: math.unit(200, "lb"),
  45211. name: "Back (NSFW)",
  45212. image: {
  45213. source: "./media/characters/blizzard/back-nsfw.svg",
  45214. extra: 1175/1034,
  45215. bottom: 97/1272
  45216. }
  45217. },
  45218. sittingNsfw: {
  45219. height: math.unit(3.725, "feet"),
  45220. weight: math.unit(200, "lb"),
  45221. name: "Sitting (NSFW)",
  45222. image: {
  45223. source: "./media/characters/blizzard/sitting-nsfw.svg",
  45224. extra: 581/485,
  45225. bottom: 90/671
  45226. }
  45227. },
  45228. wizardFrontNsfw: {
  45229. height: math.unit(7.9, "feet"),
  45230. weight: math.unit(200, "lb"),
  45231. name: "Wizard (Front, NSFW)",
  45232. image: {
  45233. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  45234. }
  45235. },
  45236. },
  45237. [
  45238. {
  45239. name: "Normal",
  45240. height: math.unit(6, "feet"),
  45241. default: true
  45242. },
  45243. ]
  45244. ))
  45245. characterMakers.push(() => makeCharacter(
  45246. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  45247. {
  45248. front: {
  45249. height: math.unit(5 + 2/12, "feet"),
  45250. name: "Front",
  45251. image: {
  45252. source: "./media/characters/lumi/front.svg",
  45253. extra: 1328/1268,
  45254. bottom: 103/1431
  45255. }
  45256. },
  45257. back: {
  45258. height: math.unit(5 + 2/12, "feet"),
  45259. name: "Back",
  45260. image: {
  45261. source: "./media/characters/lumi/back.svg",
  45262. extra: 1381/1327,
  45263. bottom: 43/1424
  45264. }
  45265. },
  45266. },
  45267. [
  45268. {
  45269. name: "Normal",
  45270. height: math.unit(5 + 2/12, "feet"),
  45271. default: true
  45272. },
  45273. ]
  45274. ))
  45275. characterMakers.push(() => makeCharacter(
  45276. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  45277. {
  45278. front: {
  45279. height: math.unit(5 + 9/12, "feet"),
  45280. name: "Front",
  45281. image: {
  45282. source: "./media/characters/aliya-cotton/front.svg",
  45283. extra: 577/564,
  45284. bottom: 29/606
  45285. }
  45286. },
  45287. },
  45288. [
  45289. {
  45290. name: "Normal",
  45291. height: math.unit(5 + 9/12, "feet"),
  45292. default: true
  45293. },
  45294. ]
  45295. ))
  45296. characterMakers.push(() => makeCharacter(
  45297. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  45298. {
  45299. front: {
  45300. height: math.unit(2.7, "meters"),
  45301. weight: math.unit(25000, "lb"),
  45302. name: "Front",
  45303. image: {
  45304. source: "./media/characters/noah-luxray/front.svg",
  45305. extra: 1644/825,
  45306. bottom: 339/1983
  45307. }
  45308. },
  45309. side: {
  45310. height: math.unit(2.97, "meters"),
  45311. weight: math.unit(25000, "lb"),
  45312. name: "Side",
  45313. image: {
  45314. source: "./media/characters/noah-luxray/side.svg",
  45315. extra: 1319/650,
  45316. bottom: 163/1482
  45317. }
  45318. },
  45319. dick: {
  45320. height: math.unit(7.4, "feet"),
  45321. weight: math.unit(2500, "lb"),
  45322. name: "Dick",
  45323. image: {
  45324. source: "./media/characters/noah-luxray/dick.svg"
  45325. }
  45326. },
  45327. dickAlt: {
  45328. height: math.unit(10.83, "feet"),
  45329. weight: math.unit(2500, "lb"),
  45330. name: "Dick-alt",
  45331. image: {
  45332. source: "./media/characters/noah-luxray/dick-alt.svg"
  45333. }
  45334. },
  45335. },
  45336. [
  45337. {
  45338. name: "BIG",
  45339. height: math.unit(2.7, "meters"),
  45340. default: true
  45341. },
  45342. ]
  45343. ))
  45344. characterMakers.push(() => makeCharacter(
  45345. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  45346. {
  45347. standing: {
  45348. height: math.unit(183, "cm"),
  45349. weight: math.unit(68, "kg"),
  45350. name: "Standing",
  45351. image: {
  45352. source: "./media/characters/arion/standing.svg",
  45353. extra: 1869/1807,
  45354. bottom: 93/1962
  45355. }
  45356. },
  45357. reclining: {
  45358. height: math.unit(70.5, "cm"),
  45359. weight: math.unit(68, "lb"),
  45360. name: "Reclining",
  45361. image: {
  45362. source: "./media/characters/arion/reclining.svg",
  45363. extra: 937/870,
  45364. bottom: 63/1000
  45365. }
  45366. },
  45367. },
  45368. [
  45369. {
  45370. name: "Colossus Size, Low",
  45371. height: math.unit(33, "meters"),
  45372. default: true
  45373. },
  45374. {
  45375. name: "Colossus Size, Mid",
  45376. height: math.unit(52, "meters")
  45377. },
  45378. {
  45379. name: "Colossus Size, High",
  45380. height: math.unit(60, "meters")
  45381. },
  45382. {
  45383. name: "Titan Size, Low",
  45384. height: math.unit(91, "meters"),
  45385. },
  45386. {
  45387. name: "Titan Size, Mid",
  45388. height: math.unit(122, "meters")
  45389. },
  45390. {
  45391. name: "Titan Size, High",
  45392. height: math.unit(162, "meters")
  45393. },
  45394. ]
  45395. ))
  45396. characterMakers.push(() => makeCharacter(
  45397. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  45398. {
  45399. front: {
  45400. height: math.unit(53, "meters"),
  45401. name: "Front",
  45402. image: {
  45403. source: "./media/characters/stellar-marbey/front.svg",
  45404. extra: 1913/1805,
  45405. bottom: 92/2005
  45406. }
  45407. },
  45408. back: {
  45409. height: math.unit(53, "meters"),
  45410. name: "Back",
  45411. image: {
  45412. source: "./media/characters/stellar-marbey/back.svg",
  45413. extra: 1960/1851,
  45414. bottom: 28/1988
  45415. }
  45416. },
  45417. mouth: {
  45418. height: math.unit(3.5, "meters"),
  45419. name: "Mouth",
  45420. image: {
  45421. source: "./media/characters/stellar-marbey/mouth.svg"
  45422. }
  45423. },
  45424. },
  45425. [
  45426. {
  45427. name: "Macro",
  45428. height: math.unit(53, "meters"),
  45429. default: true
  45430. },
  45431. ]
  45432. ))
  45433. characterMakers.push(() => makeCharacter(
  45434. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  45435. {
  45436. front: {
  45437. height: math.unit(8 + 1/12, "feet"),
  45438. weight: math.unit(233, "lb"),
  45439. name: "Front",
  45440. image: {
  45441. source: "./media/characters/matsu/front.svg",
  45442. extra: 832/772,
  45443. bottom: 40/872
  45444. }
  45445. },
  45446. back: {
  45447. height: math.unit(8 + 1/12, "feet"),
  45448. weight: math.unit(233, "lb"),
  45449. name: "Back",
  45450. image: {
  45451. source: "./media/characters/matsu/back.svg",
  45452. extra: 839/780,
  45453. bottom: 47/886
  45454. }
  45455. },
  45456. },
  45457. [
  45458. {
  45459. name: "Normal",
  45460. height: math.unit(8 + 1/12, "feet"),
  45461. default: true
  45462. },
  45463. ]
  45464. ))
  45465. characterMakers.push(() => makeCharacter(
  45466. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  45467. {
  45468. front: {
  45469. height: math.unit(4, "feet"),
  45470. weight: math.unit(148, "lb"),
  45471. name: "Front",
  45472. image: {
  45473. source: "./media/characters/thiz/front.svg",
  45474. extra: 1913/1748,
  45475. bottom: 62/1975
  45476. }
  45477. },
  45478. },
  45479. [
  45480. {
  45481. name: "Normal",
  45482. height: math.unit(4, "feet"),
  45483. default: true
  45484. },
  45485. ]
  45486. ))
  45487. characterMakers.push(() => makeCharacter(
  45488. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  45489. {
  45490. front: {
  45491. height: math.unit(7 + 6/12, "feet"),
  45492. weight: math.unit(267, "lb"),
  45493. name: "Front",
  45494. image: {
  45495. source: "./media/characters/marcel/front.svg",
  45496. extra: 1221/1096,
  45497. bottom: 76/1297
  45498. }
  45499. },
  45500. },
  45501. [
  45502. {
  45503. name: "Normal",
  45504. height: math.unit(7 + 6/12, "feet"),
  45505. default: true
  45506. },
  45507. ]
  45508. ))
  45509. characterMakers.push(() => makeCharacter(
  45510. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  45511. {
  45512. side: {
  45513. height: math.unit(42, "meters"),
  45514. name: "Side",
  45515. image: {
  45516. source: "./media/characters/flake/side.svg",
  45517. extra: 1525/1306,
  45518. bottom: 209/1734
  45519. }
  45520. },
  45521. },
  45522. [
  45523. {
  45524. name: "Normal",
  45525. height: math.unit(42, "meters"),
  45526. default: true
  45527. },
  45528. ]
  45529. ))
  45530. characterMakers.push(() => makeCharacter(
  45531. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  45532. {
  45533. dressed: {
  45534. height: math.unit(6 + 4/12, "feet"),
  45535. weight: math.unit(520, "lb"),
  45536. name: "Dressed",
  45537. image: {
  45538. source: "./media/characters/someonne/dressed.svg",
  45539. extra: 1020/1010,
  45540. bottom: 178/1198
  45541. }
  45542. },
  45543. undressed: {
  45544. height: math.unit(6 + 4/12, "feet"),
  45545. weight: math.unit(520, "lb"),
  45546. name: "Undressed",
  45547. image: {
  45548. source: "./media/characters/someonne/undressed.svg",
  45549. extra: 1019/1014,
  45550. bottom: 169/1188
  45551. }
  45552. },
  45553. },
  45554. [
  45555. {
  45556. name: "Normal",
  45557. height: math.unit(6 + 4/12, "feet"),
  45558. default: true
  45559. },
  45560. ]
  45561. ))
  45562. characterMakers.push(() => makeCharacter(
  45563. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  45564. {
  45565. front: {
  45566. height: math.unit(3, "feet"),
  45567. weight: math.unit(30, "lb"),
  45568. name: "Front",
  45569. image: {
  45570. source: "./media/characters/till/front.svg",
  45571. extra: 892/823,
  45572. bottom: 55/947
  45573. }
  45574. },
  45575. },
  45576. [
  45577. {
  45578. name: "Normal",
  45579. height: math.unit(3, "feet"),
  45580. default: true
  45581. },
  45582. ]
  45583. ))
  45584. characterMakers.push(() => makeCharacter(
  45585. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  45586. {
  45587. front: {
  45588. height: math.unit(9 + 8/12, "feet"),
  45589. weight: math.unit(800, "lb"),
  45590. name: "Front",
  45591. image: {
  45592. source: "./media/characters/sydney-heki/front.svg",
  45593. extra: 1360/1300,
  45594. bottom: 22/1382
  45595. }
  45596. },
  45597. back: {
  45598. height: math.unit(9 + 8/12, "feet"),
  45599. weight: math.unit(800, "lb"),
  45600. name: "Back",
  45601. image: {
  45602. source: "./media/characters/sydney-heki/back.svg",
  45603. extra: 1356/1293,
  45604. bottom: 12/1368
  45605. }
  45606. },
  45607. frontDressed: {
  45608. height: math.unit(9 + 8/12, "feet"),
  45609. weight: math.unit(800, "lb"),
  45610. name: "Front-dressed",
  45611. image: {
  45612. source: "./media/characters/sydney-heki/front-dressed.svg",
  45613. extra: 1360/1300,
  45614. bottom: 22/1382
  45615. }
  45616. },
  45617. },
  45618. [
  45619. {
  45620. name: "Normal",
  45621. height: math.unit(9 + 8/12, "feet"),
  45622. default: true
  45623. },
  45624. {
  45625. name: "Macro",
  45626. height: math.unit(500, "feet")
  45627. },
  45628. {
  45629. name: "Megamacro",
  45630. height: math.unit(3.6, "miles")
  45631. },
  45632. ]
  45633. ))
  45634. characterMakers.push(() => makeCharacter(
  45635. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  45636. {
  45637. front: {
  45638. height: math.unit(200, "cm"),
  45639. weight: math.unit(250, "lb"),
  45640. name: "Front",
  45641. image: {
  45642. source: "./media/characters/fowler-karlsson/front.svg",
  45643. extra: 897/845,
  45644. bottom: 123/1020
  45645. }
  45646. },
  45647. back: {
  45648. height: math.unit(200, "cm"),
  45649. weight: math.unit(250, "lb"),
  45650. name: "Back",
  45651. image: {
  45652. source: "./media/characters/fowler-karlsson/back.svg",
  45653. extra: 999/944,
  45654. bottom: 26/1025
  45655. }
  45656. },
  45657. dick: {
  45658. height: math.unit(1.92, "feet"),
  45659. weight: math.unit(150, "lb"),
  45660. name: "Dick",
  45661. image: {
  45662. source: "./media/characters/fowler-karlsson/dick.svg"
  45663. }
  45664. },
  45665. },
  45666. [
  45667. {
  45668. name: "Normal",
  45669. height: math.unit(200, "cm"),
  45670. default: true
  45671. },
  45672. {
  45673. name: "Smaller Macro",
  45674. height: math.unit(90, "m")
  45675. },
  45676. {
  45677. name: "Macro",
  45678. height: math.unit(150, "m")
  45679. },
  45680. {
  45681. name: "Bigger Macro",
  45682. height: math.unit(300, "m")
  45683. },
  45684. ]
  45685. ))
  45686. characterMakers.push(() => makeCharacter(
  45687. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  45688. {
  45689. side: {
  45690. height: math.unit(8 + 2/12, "feet"),
  45691. weight: math.unit(1, "tonne"),
  45692. name: "Side",
  45693. image: {
  45694. source: "./media/characters/rylide/side.svg",
  45695. extra: 1318/1034,
  45696. bottom: 106/1424
  45697. }
  45698. },
  45699. sitting: {
  45700. height: math.unit(303, "cm"),
  45701. weight: math.unit(1, "tonne"),
  45702. name: "Sitting",
  45703. image: {
  45704. source: "./media/characters/rylide/sitting.svg",
  45705. extra: 1303/1103,
  45706. bottom: 36/1339
  45707. }
  45708. },
  45709. },
  45710. [
  45711. {
  45712. name: "Normal",
  45713. height: math.unit(8 + 2/12, "feet"),
  45714. default: true
  45715. },
  45716. ]
  45717. ))
  45718. characterMakers.push(() => makeCharacter(
  45719. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  45720. {
  45721. front: {
  45722. height: math.unit(5 + 10/12, "feet"),
  45723. weight: math.unit(160, "lb"),
  45724. name: "Front",
  45725. image: {
  45726. source: "./media/characters/pudask/front.svg",
  45727. extra: 1616/1590,
  45728. bottom: 161/1777
  45729. }
  45730. },
  45731. },
  45732. [
  45733. {
  45734. name: "Ferret Height",
  45735. height: math.unit(2 + 5/12, "feet")
  45736. },
  45737. {
  45738. name: "Canon Height",
  45739. height: math.unit(5 + 10/12, "feet"),
  45740. default: true
  45741. },
  45742. ]
  45743. ))
  45744. characterMakers.push(() => makeCharacter(
  45745. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  45746. {
  45747. front: {
  45748. height: math.unit(3 + 6/12, "feet"),
  45749. weight: math.unit(60, "lb"),
  45750. name: "Front",
  45751. image: {
  45752. source: "./media/characters/ramita/front.svg",
  45753. extra: 1402/1232,
  45754. bottom: 62/1464
  45755. }
  45756. },
  45757. dressed: {
  45758. height: math.unit(3 + 6/12, "feet"),
  45759. weight: math.unit(60, "lb"),
  45760. name: "Dressed",
  45761. image: {
  45762. source: "./media/characters/ramita/dressed.svg",
  45763. extra: 1534/1249,
  45764. bottom: 50/1584
  45765. }
  45766. },
  45767. },
  45768. [
  45769. {
  45770. name: "Normal",
  45771. height: math.unit(3 + 6/12, "feet"),
  45772. default: true
  45773. },
  45774. ]
  45775. ))
  45776. characterMakers.push(() => makeCharacter(
  45777. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  45778. {
  45779. front: {
  45780. height: math.unit(8, "feet"),
  45781. name: "Front",
  45782. image: {
  45783. source: "./media/characters/ark/front.svg",
  45784. extra: 772/693,
  45785. bottom: 45/817
  45786. }
  45787. },
  45788. },
  45789. [
  45790. {
  45791. name: "Normal",
  45792. height: math.unit(8, "feet"),
  45793. default: true
  45794. },
  45795. ]
  45796. ))
  45797. characterMakers.push(() => makeCharacter(
  45798. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  45799. {
  45800. front: {
  45801. height: math.unit(6, "feet"),
  45802. weight: math.unit(250, "lb"),
  45803. volume: math.unit(5/8, "gallons"),
  45804. name: "Front",
  45805. image: {
  45806. source: "./media/characters/ludwig-horn/front.svg",
  45807. extra: 1782/1635,
  45808. bottom: 96/1878
  45809. }
  45810. },
  45811. back: {
  45812. height: math.unit(6, "feet"),
  45813. weight: math.unit(250, "lb"),
  45814. volume: math.unit(5/8, "gallons"),
  45815. name: "Back",
  45816. image: {
  45817. source: "./media/characters/ludwig-horn/back.svg",
  45818. extra: 1874/1729,
  45819. bottom: 27/1901
  45820. }
  45821. },
  45822. dick: {
  45823. height: math.unit(1.05, "feet"),
  45824. weight: math.unit(15, "lb"),
  45825. volume: math.unit(5/8, "gallons"),
  45826. name: "Dick",
  45827. image: {
  45828. source: "./media/characters/ludwig-horn/dick.svg"
  45829. }
  45830. },
  45831. },
  45832. [
  45833. {
  45834. name: "Small",
  45835. height: math.unit(6, "feet")
  45836. },
  45837. {
  45838. name: "Typical",
  45839. height: math.unit(12, "feet"),
  45840. default: true
  45841. },
  45842. {
  45843. name: "Building",
  45844. height: math.unit(80, "feet")
  45845. },
  45846. {
  45847. name: "Town",
  45848. height: math.unit(800, "feet")
  45849. },
  45850. {
  45851. name: "Kingdom",
  45852. height: math.unit(80000, "feet")
  45853. },
  45854. {
  45855. name: "Planet",
  45856. height: math.unit(8000000, "feet")
  45857. },
  45858. {
  45859. name: "Universe",
  45860. height: math.unit(8000000000, "feet")
  45861. },
  45862. {
  45863. name: "Transcended",
  45864. height: math.unit(8e27, "feet")
  45865. },
  45866. ]
  45867. ))
  45868. characterMakers.push(() => makeCharacter(
  45869. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  45870. {
  45871. front: {
  45872. height: math.unit(5, "feet"),
  45873. weight: math.unit(50, "kg"),
  45874. name: "Front",
  45875. image: {
  45876. source: "./media/characters/biot-avery/front.svg",
  45877. extra: 1295/1232,
  45878. bottom: 86/1381
  45879. }
  45880. },
  45881. },
  45882. [
  45883. {
  45884. name: "Normal",
  45885. height: math.unit(5, "feet"),
  45886. default: true
  45887. },
  45888. ]
  45889. ))
  45890. characterMakers.push(() => makeCharacter(
  45891. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  45892. {
  45893. front: {
  45894. height: math.unit(6, "feet"),
  45895. name: "Front",
  45896. image: {
  45897. source: "./media/characters/kitsune-kiro/front.svg",
  45898. extra: 1270/1158,
  45899. bottom: 42/1312
  45900. }
  45901. },
  45902. frontAlt: {
  45903. height: math.unit(6, "feet"),
  45904. name: "Front-alt",
  45905. image: {
  45906. source: "./media/characters/kitsune-kiro/front-alt.svg",
  45907. extra: 1130/1081,
  45908. bottom: 36/1166
  45909. }
  45910. },
  45911. },
  45912. [
  45913. {
  45914. name: "Smol",
  45915. height: math.unit(3, "feet")
  45916. },
  45917. {
  45918. name: "Normal",
  45919. height: math.unit(6, "feet"),
  45920. default: true
  45921. },
  45922. ]
  45923. ))
  45924. characterMakers.push(() => makeCharacter(
  45925. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  45926. {
  45927. front: {
  45928. height: math.unit(6, "feet"),
  45929. weight: math.unit(125, "lb"),
  45930. name: "Front",
  45931. image: {
  45932. source: "./media/characters/jack-thatcher/front.svg",
  45933. extra: 1474/1370,
  45934. bottom: 26/1500
  45935. }
  45936. },
  45937. back: {
  45938. height: math.unit(6, "feet"),
  45939. weight: math.unit(125, "lb"),
  45940. name: "Back",
  45941. image: {
  45942. source: "./media/characters/jack-thatcher/back.svg",
  45943. extra: 1489/1384,
  45944. bottom: 18/1507
  45945. }
  45946. },
  45947. },
  45948. [
  45949. {
  45950. name: "Normal",
  45951. height: math.unit(6, "feet"),
  45952. default: true
  45953. },
  45954. {
  45955. name: "Macro",
  45956. height: math.unit(75, "feet")
  45957. },
  45958. {
  45959. name: "Macro-er",
  45960. height: math.unit(250, "feet")
  45961. },
  45962. ]
  45963. ))
  45964. characterMakers.push(() => makeCharacter(
  45965. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  45966. {
  45967. front: {
  45968. height: math.unit(7, "feet"),
  45969. weight: math.unit(110, "kg"),
  45970. name: "Front",
  45971. image: {
  45972. source: "./media/characters/max-hyper/front.svg",
  45973. extra: 1969/1881,
  45974. bottom: 49/2018
  45975. }
  45976. },
  45977. },
  45978. [
  45979. {
  45980. name: "Normal",
  45981. height: math.unit(7, "feet"),
  45982. default: true
  45983. },
  45984. ]
  45985. ))
  45986. characterMakers.push(() => makeCharacter(
  45987. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  45988. {
  45989. front: {
  45990. height: math.unit(5 + 5/12, "feet"),
  45991. weight: math.unit(160, "lb"),
  45992. name: "Front",
  45993. image: {
  45994. source: "./media/characters/spook/front.svg",
  45995. extra: 794/791,
  45996. bottom: 54/848
  45997. }
  45998. },
  45999. back: {
  46000. height: math.unit(5 + 5/12, "feet"),
  46001. weight: math.unit(160, "lb"),
  46002. name: "Back",
  46003. image: {
  46004. source: "./media/characters/spook/back.svg",
  46005. extra: 812/798,
  46006. bottom: 32/844
  46007. }
  46008. },
  46009. },
  46010. [
  46011. {
  46012. name: "Normal",
  46013. height: math.unit(5 + 5/12, "feet"),
  46014. default: true
  46015. },
  46016. ]
  46017. ))
  46018. characterMakers.push(() => makeCharacter(
  46019. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  46020. {
  46021. front: {
  46022. height: math.unit(18, "feet"),
  46023. name: "Front",
  46024. image: {
  46025. source: "./media/characters/xeaduulix/front.svg",
  46026. extra: 1380/1166,
  46027. bottom: 110/1490
  46028. }
  46029. },
  46030. back: {
  46031. height: math.unit(18, "feet"),
  46032. name: "Back",
  46033. image: {
  46034. source: "./media/characters/xeaduulix/back.svg",
  46035. extra: 1592/1170,
  46036. bottom: 128/1720
  46037. }
  46038. },
  46039. frontNsfw: {
  46040. height: math.unit(18, "feet"),
  46041. name: "Front (NSFW)",
  46042. image: {
  46043. source: "./media/characters/xeaduulix/front-nsfw.svg",
  46044. extra: 1380/1166,
  46045. bottom: 110/1490
  46046. }
  46047. },
  46048. backNsfw: {
  46049. height: math.unit(18, "feet"),
  46050. name: "Back (NSFW)",
  46051. image: {
  46052. source: "./media/characters/xeaduulix/back-nsfw.svg",
  46053. extra: 1592/1170,
  46054. bottom: 128/1720
  46055. }
  46056. },
  46057. },
  46058. [
  46059. {
  46060. name: "Normal",
  46061. height: math.unit(18, "feet"),
  46062. default: true
  46063. },
  46064. ]
  46065. ))
  46066. characterMakers.push(() => makeCharacter(
  46067. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  46068. {
  46069. spreadWings: {
  46070. height: math.unit(20, "feet"),
  46071. name: "Spread Wings",
  46072. image: {
  46073. source: "./media/characters/fledge/spread-wings.svg",
  46074. extra: 693/635,
  46075. bottom: 26/719
  46076. }
  46077. },
  46078. front: {
  46079. height: math.unit(20, "feet"),
  46080. name: "Front",
  46081. image: {
  46082. source: "./media/characters/fledge/front.svg",
  46083. extra: 684/637,
  46084. bottom: 18/702
  46085. }
  46086. },
  46087. frontAlt: {
  46088. height: math.unit(20, "feet"),
  46089. name: "Front (Alt)",
  46090. image: {
  46091. source: "./media/characters/fledge/front-alt.svg",
  46092. extra: 708/664,
  46093. bottom: 13/721
  46094. }
  46095. },
  46096. back: {
  46097. height: math.unit(20, "feet"),
  46098. name: "Back",
  46099. image: {
  46100. source: "./media/characters/fledge/back.svg",
  46101. extra: 718/634,
  46102. bottom: 22/740
  46103. }
  46104. },
  46105. head: {
  46106. height: math.unit(5.55, "feet"),
  46107. name: "Head",
  46108. image: {
  46109. source: "./media/characters/fledge/head.svg"
  46110. }
  46111. },
  46112. headAlt: {
  46113. height: math.unit(5.1, "feet"),
  46114. name: "Head (Alt)",
  46115. image: {
  46116. source: "./media/characters/fledge/head-alt.svg"
  46117. }
  46118. },
  46119. },
  46120. [
  46121. {
  46122. name: "Small",
  46123. height: math.unit(6 + 2/12, "feet")
  46124. },
  46125. {
  46126. name: "Big",
  46127. height: math.unit(20, "feet"),
  46128. default: true
  46129. },
  46130. {
  46131. name: "Giant",
  46132. height: math.unit(100, "feet")
  46133. },
  46134. {
  46135. name: "Macro",
  46136. height: math.unit(200, "feet")
  46137. },
  46138. ]
  46139. ))
  46140. characterMakers.push(() => makeCharacter(
  46141. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  46142. {
  46143. front: {
  46144. height: math.unit(1, "meter"),
  46145. name: "Front",
  46146. image: {
  46147. source: "./media/characters/atlas-morenai/front.svg",
  46148. extra: 1275/1043,
  46149. bottom: 19/1294
  46150. }
  46151. },
  46152. back: {
  46153. height: math.unit(1, "meter"),
  46154. name: "Back",
  46155. image: {
  46156. source: "./media/characters/atlas-morenai/back.svg",
  46157. extra: 1141/1001,
  46158. bottom: 25/1166
  46159. }
  46160. },
  46161. },
  46162. [
  46163. {
  46164. name: "Normal",
  46165. height: math.unit(1, "meter"),
  46166. default: true
  46167. },
  46168. {
  46169. name: "Magic-Infused",
  46170. height: math.unit(5, "meters")
  46171. },
  46172. ]
  46173. ))
  46174. characterMakers.push(() => makeCharacter(
  46175. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  46176. {
  46177. front: {
  46178. height: math.unit(5, "meters"),
  46179. name: "Front",
  46180. image: {
  46181. source: "./media/characters/cintia/front.svg",
  46182. extra: 1312/1228,
  46183. bottom: 38/1350
  46184. }
  46185. },
  46186. back: {
  46187. height: math.unit(5, "meters"),
  46188. name: "Back",
  46189. image: {
  46190. source: "./media/characters/cintia/back.svg",
  46191. extra: 1260/1166,
  46192. bottom: 98/1358
  46193. }
  46194. },
  46195. frontDick: {
  46196. height: math.unit(5, "meters"),
  46197. name: "Front (Dick)",
  46198. image: {
  46199. source: "./media/characters/cintia/front-dick.svg",
  46200. extra: 1312/1228,
  46201. bottom: 38/1350
  46202. }
  46203. },
  46204. backDick: {
  46205. height: math.unit(5, "meters"),
  46206. name: "Back (Dick)",
  46207. image: {
  46208. source: "./media/characters/cintia/back-dick.svg",
  46209. extra: 1260/1166,
  46210. bottom: 98/1358
  46211. }
  46212. },
  46213. bust: {
  46214. height: math.unit(1.97, "meters"),
  46215. name: "Bust",
  46216. image: {
  46217. source: "./media/characters/cintia/bust.svg",
  46218. extra: 617/565,
  46219. bottom: 0/617
  46220. }
  46221. },
  46222. },
  46223. [
  46224. {
  46225. name: "Normal",
  46226. height: math.unit(5, "meters"),
  46227. default: true
  46228. },
  46229. ]
  46230. ))
  46231. characterMakers.push(() => makeCharacter(
  46232. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  46233. {
  46234. side: {
  46235. height: math.unit(100, "feet"),
  46236. name: "Side",
  46237. image: {
  46238. source: "./media/characters/denora/side.svg",
  46239. extra: 875/803,
  46240. bottom: 9/884
  46241. }
  46242. },
  46243. },
  46244. [
  46245. {
  46246. name: "Standard",
  46247. height: math.unit(100, "feet"),
  46248. default: true
  46249. },
  46250. {
  46251. name: "Grand",
  46252. height: math.unit(1000, "feet")
  46253. },
  46254. {
  46255. name: "Conquering",
  46256. height: math.unit(10000, "feet")
  46257. },
  46258. ]
  46259. ))
  46260. characterMakers.push(() => makeCharacter(
  46261. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  46262. {
  46263. dressed: {
  46264. height: math.unit(8 + 5/12, "feet"),
  46265. weight: math.unit(700, "lb"),
  46266. name: "Dressed",
  46267. image: {
  46268. source: "./media/characters/kiva/dressed.svg",
  46269. extra: 1102/1055,
  46270. bottom: 60/1162
  46271. }
  46272. },
  46273. nude: {
  46274. height: math.unit(8 + 5/12, "feet"),
  46275. weight: math.unit(700, "lb"),
  46276. name: "Nude",
  46277. image: {
  46278. source: "./media/characters/kiva/nude.svg",
  46279. extra: 1102/1055,
  46280. bottom: 60/1162
  46281. }
  46282. },
  46283. },
  46284. [
  46285. {
  46286. name: "Base Height",
  46287. height: math.unit(8 + 5/12, "feet"),
  46288. default: true
  46289. },
  46290. {
  46291. name: "Macro",
  46292. height: math.unit(100, "feet")
  46293. },
  46294. {
  46295. name: "Max",
  46296. height: math.unit(3280, "feet")
  46297. },
  46298. ]
  46299. ))
  46300. characterMakers.push(() => makeCharacter(
  46301. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  46302. {
  46303. front: {
  46304. height: math.unit(6 + 8/12, "feet"),
  46305. weight: math.unit(250, "lb"),
  46306. name: "Front",
  46307. image: {
  46308. source: "./media/characters/ztragon/front.svg",
  46309. extra: 1825/1684,
  46310. bottom: 98/1923
  46311. }
  46312. },
  46313. },
  46314. [
  46315. {
  46316. name: "Normal",
  46317. height: math.unit(6 + 8/12, "feet"),
  46318. default: true
  46319. },
  46320. {
  46321. name: "Macro",
  46322. height: math.unit(80, "feet")
  46323. },
  46324. ]
  46325. ))
  46326. characterMakers.push(() => makeCharacter(
  46327. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  46328. {
  46329. front: {
  46330. height: math.unit(10.4, "feet"),
  46331. weight: math.unit(2, "tons"),
  46332. name: "Front",
  46333. image: {
  46334. source: "./media/characters/yesenia/front.svg",
  46335. extra: 1479/1474,
  46336. bottom: 233/1712
  46337. }
  46338. },
  46339. },
  46340. [
  46341. {
  46342. name: "Normal",
  46343. height: math.unit(10.4, "feet"),
  46344. default: true
  46345. },
  46346. ]
  46347. ))
  46348. characterMakers.push(() => makeCharacter(
  46349. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  46350. {
  46351. normal: {
  46352. height: math.unit(6 + 1/12, "feet"),
  46353. weight: math.unit(180, "lb"),
  46354. name: "Normal",
  46355. image: {
  46356. source: "./media/characters/leanne-lycheborne/normal.svg",
  46357. extra: 1748/1660,
  46358. bottom: 98/1846
  46359. }
  46360. },
  46361. were: {
  46362. height: math.unit(12, "feet"),
  46363. weight: math.unit(1600, "lb"),
  46364. name: "Were",
  46365. image: {
  46366. source: "./media/characters/leanne-lycheborne/were.svg",
  46367. extra: 1485/1432,
  46368. bottom: 66/1551
  46369. }
  46370. },
  46371. },
  46372. [
  46373. {
  46374. name: "Normal",
  46375. height: math.unit(6 + 1/12, "feet"),
  46376. default: true
  46377. },
  46378. ]
  46379. ))
  46380. characterMakers.push(() => makeCharacter(
  46381. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  46382. {
  46383. side: {
  46384. height: math.unit(13, "feet"),
  46385. name: "Side",
  46386. image: {
  46387. source: "./media/characters/kira-tyler/side.svg",
  46388. extra: 693/393,
  46389. bottom: 58/751
  46390. }
  46391. },
  46392. },
  46393. [
  46394. {
  46395. name: "Normal",
  46396. height: math.unit(13, "feet"),
  46397. default: true
  46398. },
  46399. ]
  46400. ))
  46401. characterMakers.push(() => makeCharacter(
  46402. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  46403. {
  46404. front: {
  46405. height: math.unit(10.3, "feet"),
  46406. weight: math.unit(150, "lb"),
  46407. name: "Front",
  46408. image: {
  46409. source: "./media/characters/blaze/front.svg",
  46410. extra: 1378/1286,
  46411. bottom: 172/1550
  46412. }
  46413. },
  46414. },
  46415. [
  46416. {
  46417. name: "Normal",
  46418. height: math.unit(10.3, "feet"),
  46419. default: true
  46420. },
  46421. ]
  46422. ))
  46423. characterMakers.push(() => makeCharacter(
  46424. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  46425. {
  46426. side: {
  46427. height: math.unit(2, "meters"),
  46428. weight: math.unit(400, "kg"),
  46429. name: "Side",
  46430. image: {
  46431. source: "./media/characters/anu/side.svg",
  46432. extra: 506/394,
  46433. bottom: 18/524
  46434. }
  46435. },
  46436. },
  46437. [
  46438. {
  46439. name: "Humanoid",
  46440. height: math.unit(2, "meters")
  46441. },
  46442. {
  46443. name: "Normal",
  46444. height: math.unit(5, "meters"),
  46445. default: true
  46446. },
  46447. ]
  46448. ))
  46449. characterMakers.push(() => makeCharacter(
  46450. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  46451. {
  46452. front: {
  46453. height: math.unit(5 + 5/12, "feet"),
  46454. weight: math.unit(170, "lb"),
  46455. name: "Front",
  46456. image: {
  46457. source: "./media/characters/synx-the-lynx/front.svg",
  46458. extra: 1893/1745,
  46459. bottom: 17/1910
  46460. }
  46461. },
  46462. side: {
  46463. height: math.unit(5 + 5/12, "feet"),
  46464. weight: math.unit(170, "lb"),
  46465. name: "Side",
  46466. image: {
  46467. source: "./media/characters/synx-the-lynx/side.svg",
  46468. extra: 1884/1740,
  46469. bottom: 39/1923
  46470. }
  46471. },
  46472. back: {
  46473. height: math.unit(5 + 5/12, "feet"),
  46474. weight: math.unit(170, "lb"),
  46475. name: "Back",
  46476. image: {
  46477. source: "./media/characters/synx-the-lynx/back.svg",
  46478. extra: 1903/1755,
  46479. bottom: 14/1917
  46480. }
  46481. },
  46482. },
  46483. [
  46484. {
  46485. name: "Normal",
  46486. height: math.unit(5 + 5/12, "feet"),
  46487. default: true
  46488. },
  46489. ]
  46490. ))
  46491. characterMakers.push(() => makeCharacter(
  46492. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  46493. {
  46494. back: {
  46495. height: math.unit(15, "feet"),
  46496. name: "Back",
  46497. image: {
  46498. source: "./media/characters/nadezda-fex/back.svg",
  46499. extra: 1695/1481,
  46500. bottom: 25/1720
  46501. }
  46502. },
  46503. },
  46504. [
  46505. {
  46506. name: "Normal",
  46507. height: math.unit(15, "feet"),
  46508. default: true
  46509. },
  46510. {
  46511. name: "Macro",
  46512. height: math.unit(2.5, "miles")
  46513. },
  46514. {
  46515. name: "Goddess",
  46516. height: math.unit(2, "multiverses")
  46517. },
  46518. ]
  46519. ))
  46520. characterMakers.push(() => makeCharacter(
  46521. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  46522. {
  46523. front: {
  46524. height: math.unit(216, "cm"),
  46525. name: "Front",
  46526. image: {
  46527. source: "./media/characters/lev/front.svg",
  46528. extra: 1728/1670,
  46529. bottom: 82/1810
  46530. }
  46531. },
  46532. back: {
  46533. height: math.unit(216, "cm"),
  46534. name: "Back",
  46535. image: {
  46536. source: "./media/characters/lev/back.svg",
  46537. extra: 1738/1675,
  46538. bottom: 24/1762
  46539. }
  46540. },
  46541. dressed: {
  46542. height: math.unit(216, "cm"),
  46543. name: "Dressed",
  46544. image: {
  46545. source: "./media/characters/lev/dressed.svg",
  46546. extra: 1397/1351,
  46547. bottom: 73/1470
  46548. }
  46549. },
  46550. head: {
  46551. height: math.unit(0.51, "meter"),
  46552. name: "Head",
  46553. image: {
  46554. source: "./media/characters/lev/head.svg"
  46555. }
  46556. },
  46557. },
  46558. [
  46559. {
  46560. name: "Normal",
  46561. height: math.unit(216, "cm"),
  46562. default: true
  46563. },
  46564. {
  46565. name: "Relatively Macro",
  46566. height: math.unit(80, "meters")
  46567. },
  46568. {
  46569. name: "Megamacro",
  46570. height: math.unit(21600, "meters")
  46571. },
  46572. {
  46573. name: "Megamacro+",
  46574. height: math.unit(64800, "meters")
  46575. },
  46576. ]
  46577. ))
  46578. characterMakers.push(() => makeCharacter(
  46579. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  46580. {
  46581. front: {
  46582. height: math.unit(2, "meters"),
  46583. weight: math.unit(80, "kg"),
  46584. name: "Front",
  46585. image: {
  46586. source: "./media/characters/moka/front.svg",
  46587. extra: 1337/1255,
  46588. bottom: 58/1395
  46589. }
  46590. },
  46591. },
  46592. [
  46593. {
  46594. name: "Micro",
  46595. height: math.unit(15, "cm")
  46596. },
  46597. {
  46598. name: "Normal",
  46599. height: math.unit(2, "meters"),
  46600. default: true
  46601. },
  46602. {
  46603. name: "Macro",
  46604. height: math.unit(20, "meters"),
  46605. },
  46606. ]
  46607. ))
  46608. characterMakers.push(() => makeCharacter(
  46609. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  46610. {
  46611. front: {
  46612. height: math.unit(9, "feet"),
  46613. weight: math.unit(240, "lb"),
  46614. name: "Front",
  46615. image: {
  46616. source: "./media/characters/kuzco/front.svg",
  46617. extra: 1593/1487,
  46618. bottom: 32/1625
  46619. }
  46620. },
  46621. side: {
  46622. height: math.unit(9, "feet"),
  46623. weight: math.unit(240, "lb"),
  46624. name: "Side",
  46625. image: {
  46626. source: "./media/characters/kuzco/side.svg",
  46627. extra: 1575/1485,
  46628. bottom: 30/1605
  46629. }
  46630. },
  46631. back: {
  46632. height: math.unit(9, "feet"),
  46633. weight: math.unit(240, "lb"),
  46634. name: "Back",
  46635. image: {
  46636. source: "./media/characters/kuzco/back.svg",
  46637. extra: 1603/1514,
  46638. bottom: 14/1617
  46639. }
  46640. },
  46641. },
  46642. [
  46643. {
  46644. name: "Normal",
  46645. height: math.unit(9, "feet"),
  46646. default: true
  46647. },
  46648. ]
  46649. ))
  46650. characterMakers.push(() => makeCharacter(
  46651. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  46652. {
  46653. side: {
  46654. height: math.unit(2, "meters"),
  46655. weight: math.unit(300, "kg"),
  46656. name: "Side",
  46657. image: {
  46658. source: "./media/characters/ceruleus/side.svg",
  46659. extra: 1068/974,
  46660. bottom: 126/1194
  46661. }
  46662. },
  46663. },
  46664. [
  46665. {
  46666. name: "Normal",
  46667. height: math.unit(16, "meters"),
  46668. default: true
  46669. },
  46670. ]
  46671. ))
  46672. characterMakers.push(() => makeCharacter(
  46673. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  46674. {
  46675. front: {
  46676. height: math.unit(9, "feet"),
  46677. weight: math.unit(500, "kg"),
  46678. name: "Front",
  46679. image: {
  46680. source: "./media/characters/acouya/front.svg",
  46681. extra: 1660/1473,
  46682. bottom: 28/1688
  46683. }
  46684. },
  46685. },
  46686. [
  46687. {
  46688. name: "Normal",
  46689. height: math.unit(9, "feet"),
  46690. default: true
  46691. },
  46692. ]
  46693. ))
  46694. characterMakers.push(() => makeCharacter(
  46695. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  46696. {
  46697. front: {
  46698. height: math.unit(5 + 6/12, "feet"),
  46699. weight: math.unit(195, "lb"),
  46700. name: "Front",
  46701. image: {
  46702. source: "./media/characters/vant/front.svg",
  46703. extra: 1396/1320,
  46704. bottom: 20/1416
  46705. }
  46706. },
  46707. back: {
  46708. height: math.unit(5 + 6/12, "feet"),
  46709. weight: math.unit(195, "lb"),
  46710. name: "Back",
  46711. image: {
  46712. source: "./media/characters/vant/back.svg",
  46713. extra: 1396/1320,
  46714. bottom: 20/1416
  46715. }
  46716. },
  46717. maw: {
  46718. height: math.unit(0.75, "feet"),
  46719. name: "Maw",
  46720. image: {
  46721. source: "./media/characters/vant/maw.svg"
  46722. }
  46723. },
  46724. paw: {
  46725. height: math.unit(1.07, "feet"),
  46726. name: "Paw",
  46727. image: {
  46728. source: "./media/characters/vant/paw.svg"
  46729. }
  46730. },
  46731. },
  46732. [
  46733. {
  46734. name: "Micro",
  46735. height: math.unit(0.25, "inches")
  46736. },
  46737. {
  46738. name: "Normal",
  46739. height: math.unit(5 + 6/12, "feet"),
  46740. default: true
  46741. },
  46742. {
  46743. name: "Macro",
  46744. height: math.unit(75, "feet")
  46745. },
  46746. ]
  46747. ))
  46748. characterMakers.push(() => makeCharacter(
  46749. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  46750. {
  46751. front: {
  46752. height: math.unit(30, "meters"),
  46753. weight: math.unit(363, "tons"),
  46754. name: "Front",
  46755. image: {
  46756. source: "./media/characters/ahra/front.svg",
  46757. extra: 1914/1814,
  46758. bottom: 46/1960
  46759. }
  46760. },
  46761. },
  46762. [
  46763. {
  46764. name: "Macro",
  46765. height: math.unit(30, "meters"),
  46766. default: true
  46767. },
  46768. ]
  46769. ))
  46770. characterMakers.push(() => makeCharacter(
  46771. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  46772. {
  46773. undressed: {
  46774. height: math.unit(2, "m"),
  46775. weight: math.unit(250, "kg"),
  46776. name: "Undressed",
  46777. image: {
  46778. source: "./media/characters/coriander/undressed.svg",
  46779. extra: 1757/1606,
  46780. bottom: 107/1864
  46781. }
  46782. },
  46783. dressed: {
  46784. height: math.unit(2, "m"),
  46785. weight: math.unit(250, "kg"),
  46786. name: "Dressed",
  46787. image: {
  46788. source: "./media/characters/coriander/dressed.svg",
  46789. extra: 1757/1606,
  46790. bottom: 107/1864
  46791. }
  46792. },
  46793. },
  46794. [
  46795. {
  46796. name: "Normal",
  46797. height: math.unit(4, "meters"),
  46798. default: true
  46799. },
  46800. {
  46801. name: "XL",
  46802. height: math.unit(6, "meters")
  46803. },
  46804. {
  46805. name: "XXL",
  46806. height: math.unit(8, "meters")
  46807. },
  46808. ]
  46809. ))
  46810. characterMakers.push(() => makeCharacter(
  46811. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  46812. {
  46813. front: {
  46814. height: math.unit(6, "feet"),
  46815. name: "Front",
  46816. image: {
  46817. source: "./media/characters/syrinx/front.svg",
  46818. extra: 1557/1259,
  46819. bottom: 171/1728
  46820. }
  46821. },
  46822. },
  46823. [
  46824. {
  46825. name: "Normal",
  46826. height: math.unit(6 + 3/12, "feet"),
  46827. default: true
  46828. },
  46829. ]
  46830. ))
  46831. characterMakers.push(() => makeCharacter(
  46832. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  46833. {
  46834. front: {
  46835. height: math.unit(11 + 6/12, "feet"),
  46836. weight: math.unit(1.5, "tons"),
  46837. name: "Front",
  46838. image: {
  46839. source: "./media/characters/bor/front.svg",
  46840. extra: 1189/1109,
  46841. bottom: 170/1359
  46842. }
  46843. },
  46844. },
  46845. [
  46846. {
  46847. name: "Normal",
  46848. height: math.unit(11 + 6/12, "feet"),
  46849. default: true
  46850. },
  46851. {
  46852. name: "Macro",
  46853. height: math.unit(32 + 9/12, "feet")
  46854. },
  46855. ]
  46856. ))
  46857. characterMakers.push(() => makeCharacter(
  46858. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  46859. {
  46860. anthro: {
  46861. height: math.unit(9, "feet"),
  46862. weight: math.unit(2076, "lb"),
  46863. name: "Anthro",
  46864. image: {
  46865. source: "./media/characters/abacus/anthro.svg",
  46866. extra: 1540/1494,
  46867. bottom: 233/1773
  46868. }
  46869. },
  46870. pigeon: {
  46871. height: math.unit(1, "feet"),
  46872. name: "Pigeon",
  46873. image: {
  46874. source: "./media/characters/abacus/pigeon.svg",
  46875. extra: 528/525,
  46876. bottom: 46/574
  46877. }
  46878. },
  46879. },
  46880. [
  46881. {
  46882. name: "Normal",
  46883. height: math.unit(9, "feet"),
  46884. default: true
  46885. },
  46886. ]
  46887. ))
  46888. characterMakers.push(() => makeCharacter(
  46889. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  46890. {
  46891. side: {
  46892. height: math.unit(6, "feet"),
  46893. name: "Side",
  46894. image: {
  46895. source: "./media/characters/delkhan/side.svg",
  46896. extra: 1884/1786,
  46897. bottom: 308/2192
  46898. }
  46899. },
  46900. head: {
  46901. height: math.unit(3.38, "feet"),
  46902. name: "Head",
  46903. image: {
  46904. source: "./media/characters/delkhan/head.svg"
  46905. }
  46906. },
  46907. },
  46908. [
  46909. {
  46910. name: "Normal",
  46911. height: math.unit(72, "feet"),
  46912. default: true
  46913. },
  46914. {
  46915. name: "Giant",
  46916. height: math.unit(172, "feet")
  46917. },
  46918. ]
  46919. ))
  46920. characterMakers.push(() => makeCharacter(
  46921. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  46922. {
  46923. standing: {
  46924. height: math.unit(6, "feet"),
  46925. name: "Standing",
  46926. image: {
  46927. source: "./media/characters/euchidat/standing.svg",
  46928. extra: 1612/1553,
  46929. bottom: 116/1728
  46930. }
  46931. },
  46932. leaning: {
  46933. height: math.unit(6, "feet"),
  46934. name: "Leaning",
  46935. image: {
  46936. source: "./media/characters/euchidat/leaning.svg",
  46937. extra: 1719/1674,
  46938. bottom: 27/1746
  46939. }
  46940. },
  46941. },
  46942. [
  46943. {
  46944. name: "Normal",
  46945. height: math.unit(175, "feet"),
  46946. default: true
  46947. },
  46948. {
  46949. name: "Megamacro",
  46950. height: math.unit(190, "miles")
  46951. },
  46952. {
  46953. name: "Gigamacro",
  46954. height: math.unit(190000, "miles")
  46955. },
  46956. ]
  46957. ))
  46958. characterMakers.push(() => makeCharacter(
  46959. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  46960. {
  46961. front: {
  46962. height: math.unit(6, "feet"),
  46963. weight: math.unit(150, "lb"),
  46964. name: "Front",
  46965. image: {
  46966. source: "./media/characters/rebecca-stack/front.svg",
  46967. extra: 1256/1201,
  46968. bottom: 18/1274
  46969. }
  46970. },
  46971. },
  46972. [
  46973. {
  46974. name: "Normal",
  46975. height: math.unit(5 + 8/12, "feet"),
  46976. default: true
  46977. },
  46978. {
  46979. name: "Demolitionist",
  46980. height: math.unit(200, "feet")
  46981. },
  46982. {
  46983. name: "Out of Control",
  46984. height: math.unit(2, "miles")
  46985. },
  46986. {
  46987. name: "Giga",
  46988. height: math.unit(7200, "miles")
  46989. },
  46990. ]
  46991. ))
  46992. characterMakers.push(() => makeCharacter(
  46993. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  46994. {
  46995. front: {
  46996. height: math.unit(6, "feet"),
  46997. weight: math.unit(150, "lb"),
  46998. name: "Front",
  46999. image: {
  47000. source: "./media/characters/jenny-cartwright/front.svg",
  47001. extra: 1384/1376,
  47002. bottom: 58/1442
  47003. }
  47004. },
  47005. },
  47006. [
  47007. {
  47008. name: "Normal",
  47009. height: math.unit(6 + 7/12, "feet"),
  47010. default: true
  47011. },
  47012. {
  47013. name: "Librarian",
  47014. height: math.unit(55, "feet")
  47015. },
  47016. {
  47017. name: "Sightseer",
  47018. height: math.unit(50, "miles")
  47019. },
  47020. {
  47021. name: "Giga",
  47022. height: math.unit(30000, "miles")
  47023. },
  47024. ]
  47025. ))
  47026. characterMakers.push(() => makeCharacter(
  47027. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  47028. {
  47029. nude: {
  47030. height: math.unit(8, "feet"),
  47031. weight: math.unit(225, "lb"),
  47032. name: "Nude",
  47033. image: {
  47034. source: "./media/characters/marvy/nude.svg",
  47035. extra: 1900/1683,
  47036. bottom: 89/1989
  47037. }
  47038. },
  47039. dressed: {
  47040. height: math.unit(8, "feet"),
  47041. weight: math.unit(225, "lb"),
  47042. name: "Dressed",
  47043. image: {
  47044. source: "./media/characters/marvy/dressed.svg",
  47045. extra: 1900/1683,
  47046. bottom: 89/1989
  47047. }
  47048. },
  47049. head: {
  47050. height: math.unit(2.85, "feet"),
  47051. name: "Head",
  47052. image: {
  47053. source: "./media/characters/marvy/head.svg"
  47054. }
  47055. },
  47056. },
  47057. [
  47058. {
  47059. name: "Normal",
  47060. height: math.unit(8, "feet"),
  47061. default: true
  47062. },
  47063. ]
  47064. ))
  47065. characterMakers.push(() => makeCharacter(
  47066. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  47067. {
  47068. front: {
  47069. height: math.unit(8, "feet"),
  47070. weight: math.unit(250, "lb"),
  47071. name: "Front",
  47072. image: {
  47073. source: "./media/characters/leah/front.svg",
  47074. extra: 1257/1149,
  47075. bottom: 109/1366
  47076. }
  47077. },
  47078. },
  47079. [
  47080. {
  47081. name: "Normal",
  47082. height: math.unit(8, "feet"),
  47083. default: true
  47084. },
  47085. {
  47086. name: "Minimacro",
  47087. height: math.unit(40, "feet")
  47088. },
  47089. {
  47090. name: "Macro",
  47091. height: math.unit(124, "feet")
  47092. },
  47093. {
  47094. name: "Megamacro",
  47095. height: math.unit(850, "feet")
  47096. },
  47097. ]
  47098. ))
  47099. characterMakers.push(() => makeCharacter(
  47100. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  47101. {
  47102. side: {
  47103. height: math.unit(13 + 6/12, "feet"),
  47104. weight: math.unit(3200, "lb"),
  47105. name: "Side",
  47106. image: {
  47107. source: "./media/characters/alvir/side.svg",
  47108. extra: 896/589,
  47109. bottom: 26/922
  47110. }
  47111. },
  47112. },
  47113. [
  47114. {
  47115. name: "Normal",
  47116. height: math.unit(13 + 6/12, "feet"),
  47117. default: true
  47118. },
  47119. ]
  47120. ))
  47121. characterMakers.push(() => makeCharacter(
  47122. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  47123. {
  47124. front: {
  47125. height: math.unit(5 + 4/12, "feet"),
  47126. weight: math.unit(236, "lb"),
  47127. name: "Front",
  47128. image: {
  47129. source: "./media/characters/zaina-khalil/front.svg",
  47130. extra: 1533/1485,
  47131. bottom: 94/1627
  47132. }
  47133. },
  47134. side: {
  47135. height: math.unit(5 + 4/12, "feet"),
  47136. weight: math.unit(236, "lb"),
  47137. name: "Side",
  47138. image: {
  47139. source: "./media/characters/zaina-khalil/side.svg",
  47140. extra: 1537/1498,
  47141. bottom: 66/1603
  47142. }
  47143. },
  47144. back: {
  47145. height: math.unit(5 + 4/12, "feet"),
  47146. weight: math.unit(236, "lb"),
  47147. name: "Back",
  47148. image: {
  47149. source: "./media/characters/zaina-khalil/back.svg",
  47150. extra: 1546/1494,
  47151. bottom: 89/1635
  47152. }
  47153. },
  47154. },
  47155. [
  47156. {
  47157. name: "Normal",
  47158. height: math.unit(5 + 4/12, "feet"),
  47159. default: true
  47160. },
  47161. ]
  47162. ))
  47163. characterMakers.push(() => makeCharacter(
  47164. { name: "Terry", species: ["husky"], tags: ["taur"] },
  47165. {
  47166. side: {
  47167. height: math.unit(12, "feet"),
  47168. weight: math.unit(4000, "lb"),
  47169. name: "Side",
  47170. image: {
  47171. source: "./media/characters/terry/side.svg",
  47172. extra: 1518/1439,
  47173. bottom: 149/1667
  47174. }
  47175. },
  47176. },
  47177. [
  47178. {
  47179. name: "Normal",
  47180. height: math.unit(12, "feet"),
  47181. default: true
  47182. },
  47183. ]
  47184. ))
  47185. characterMakers.push(() => makeCharacter(
  47186. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  47187. {
  47188. front: {
  47189. height: math.unit(12, "feet"),
  47190. weight: math.unit(1500, "lb"),
  47191. name: "Front",
  47192. image: {
  47193. source: "./media/characters/kahea/front.svg",
  47194. extra: 1722/1617,
  47195. bottom: 179/1901
  47196. }
  47197. },
  47198. },
  47199. [
  47200. {
  47201. name: "Normal",
  47202. height: math.unit(12, "feet"),
  47203. default: true
  47204. },
  47205. ]
  47206. ))
  47207. characterMakers.push(() => makeCharacter(
  47208. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  47209. {
  47210. demonFront: {
  47211. height: math.unit(36, "feet"),
  47212. name: "Front",
  47213. image: {
  47214. source: "./media/characters/alex-xuria/demon-front.svg",
  47215. extra: 1705/1673,
  47216. bottom: 198/1903
  47217. },
  47218. form: "demon",
  47219. default: true
  47220. },
  47221. demonBack: {
  47222. height: math.unit(36, "feet"),
  47223. name: "Back",
  47224. image: {
  47225. source: "./media/characters/alex-xuria/demon-back.svg",
  47226. extra: 1725/1693,
  47227. bottom: 70/1795
  47228. },
  47229. form: "demon"
  47230. },
  47231. demonHead: {
  47232. height: math.unit(2.14, "meters"),
  47233. name: "Head",
  47234. image: {
  47235. source: "./media/characters/alex-xuria/demon-head.svg"
  47236. },
  47237. form: "demon"
  47238. },
  47239. demonHand: {
  47240. height: math.unit(1.61, "meters"),
  47241. name: "Hand",
  47242. image: {
  47243. source: "./media/characters/alex-xuria/demon-hand.svg"
  47244. },
  47245. form: "demon"
  47246. },
  47247. demonPaw: {
  47248. height: math.unit(1.35, "meters"),
  47249. name: "Paw",
  47250. image: {
  47251. source: "./media/characters/alex-xuria/demon-paw.svg"
  47252. },
  47253. form: "demon"
  47254. },
  47255. demonFoot: {
  47256. height: math.unit(2.2, "meters"),
  47257. name: "Foot",
  47258. image: {
  47259. source: "./media/characters/alex-xuria/demon-foot.svg"
  47260. },
  47261. form: "demon"
  47262. },
  47263. demonCock: {
  47264. height: math.unit(1.74, "meters"),
  47265. name: "Cock",
  47266. image: {
  47267. source: "./media/characters/alex-xuria/demon-cock.svg"
  47268. },
  47269. form: "demon"
  47270. },
  47271. demonTailClosed: {
  47272. height: math.unit(1.47, "meters"),
  47273. name: "Tail (Closed)",
  47274. image: {
  47275. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  47276. },
  47277. form: "demon"
  47278. },
  47279. demonTailOpen: {
  47280. height: math.unit(2.85, "meters"),
  47281. name: "Tail (Open)",
  47282. image: {
  47283. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  47284. },
  47285. form: "demon"
  47286. },
  47287. incubusFront: {
  47288. height: math.unit(12, "feet"),
  47289. name: "Front",
  47290. image: {
  47291. source: "./media/characters/alex-xuria/incubus-front.svg",
  47292. extra: 1754/1677,
  47293. bottom: 125/1879
  47294. },
  47295. form: "incubus",
  47296. default: true
  47297. },
  47298. incubusBack: {
  47299. height: math.unit(12, "feet"),
  47300. name: "Back",
  47301. image: {
  47302. source: "./media/characters/alex-xuria/incubus-back.svg",
  47303. extra: 1702/1647,
  47304. bottom: 30/1732
  47305. },
  47306. form: "incubus"
  47307. },
  47308. incubusHead: {
  47309. height: math.unit(3.45, "feet"),
  47310. name: "Head",
  47311. image: {
  47312. source: "./media/characters/alex-xuria/incubus-head.svg"
  47313. },
  47314. form: "incubus"
  47315. },
  47316. rabbitFront: {
  47317. height: math.unit(6, "feet"),
  47318. name: "Front",
  47319. image: {
  47320. source: "./media/characters/alex-xuria/rabbit-front.svg",
  47321. extra: 1369/1349,
  47322. bottom: 45/1414
  47323. },
  47324. form: "rabbit",
  47325. default: true
  47326. },
  47327. rabbitSide: {
  47328. height: math.unit(6, "feet"),
  47329. name: "Side",
  47330. image: {
  47331. source: "./media/characters/alex-xuria/rabbit-side.svg",
  47332. extra: 1370/1356,
  47333. bottom: 37/1407
  47334. },
  47335. form: "rabbit"
  47336. },
  47337. rabbitBack: {
  47338. height: math.unit(6, "feet"),
  47339. name: "Back",
  47340. image: {
  47341. source: "./media/characters/alex-xuria/rabbit-back.svg",
  47342. extra: 1375/1358,
  47343. bottom: 43/1418
  47344. },
  47345. form: "rabbit"
  47346. },
  47347. },
  47348. [
  47349. {
  47350. name: "Normal",
  47351. height: math.unit(6, "feet"),
  47352. default: true,
  47353. form: "rabbit"
  47354. },
  47355. {
  47356. name: "Incubus",
  47357. height: math.unit(12, "feet"),
  47358. default: true,
  47359. form: "incubus"
  47360. },
  47361. {
  47362. name: "Demon",
  47363. height: math.unit(36, "feet"),
  47364. default: true,
  47365. form: "demon"
  47366. }
  47367. ],
  47368. {
  47369. "demon": {
  47370. name: "Demon",
  47371. default: true
  47372. },
  47373. "incubus": {
  47374. name: "Incubus",
  47375. },
  47376. "rabbit": {
  47377. name: "Rabbit"
  47378. }
  47379. }
  47380. ))
  47381. characterMakers.push(() => makeCharacter(
  47382. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  47383. {
  47384. front: {
  47385. height: math.unit(7 + 5/12, "feet"),
  47386. weight: math.unit(510, "lb"),
  47387. name: "Front",
  47388. image: {
  47389. source: "./media/characters/syrup/front.svg",
  47390. extra: 932/916,
  47391. bottom: 26/958
  47392. }
  47393. },
  47394. },
  47395. [
  47396. {
  47397. name: "Normal",
  47398. height: math.unit(7 + 5/12, "feet"),
  47399. default: true
  47400. },
  47401. {
  47402. name: "Big",
  47403. height: math.unit(50, "feet")
  47404. },
  47405. {
  47406. name: "Macro",
  47407. height: math.unit(300, "feet")
  47408. },
  47409. {
  47410. name: "Megamacro",
  47411. height: math.unit(1, "mile")
  47412. },
  47413. ]
  47414. ))
  47415. characterMakers.push(() => makeCharacter(
  47416. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  47417. {
  47418. front: {
  47419. height: math.unit(6 + 9/12, "feet"),
  47420. name: "Front",
  47421. image: {
  47422. source: "./media/characters/zeimne/front.svg",
  47423. extra: 1969/1806,
  47424. bottom: 53/2022
  47425. }
  47426. },
  47427. },
  47428. [
  47429. {
  47430. name: "Normal",
  47431. height: math.unit(6 + 9/12, "feet"),
  47432. default: true
  47433. },
  47434. {
  47435. name: "Giant",
  47436. height: math.unit(550, "feet")
  47437. },
  47438. {
  47439. name: "Mega",
  47440. height: math.unit(3, "miles")
  47441. },
  47442. {
  47443. name: "Giga",
  47444. height: math.unit(250, "miles")
  47445. },
  47446. {
  47447. name: "Tera",
  47448. height: math.unit(1, "AU")
  47449. },
  47450. ]
  47451. ))
  47452. characterMakers.push(() => makeCharacter(
  47453. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  47454. {
  47455. front: {
  47456. height: math.unit(5 + 2/12, "feet"),
  47457. name: "Front",
  47458. image: {
  47459. source: "./media/characters/grar/front.svg",
  47460. extra: 1331/1119,
  47461. bottom: 60/1391
  47462. }
  47463. },
  47464. back: {
  47465. height: math.unit(5 + 2/12, "feet"),
  47466. name: "Back",
  47467. image: {
  47468. source: "./media/characters/grar/back.svg",
  47469. extra: 1385/1169,
  47470. bottom: 23/1408
  47471. }
  47472. },
  47473. },
  47474. [
  47475. {
  47476. name: "Normal",
  47477. height: math.unit(5 + 2/12, "feet"),
  47478. default: true
  47479. },
  47480. ]
  47481. ))
  47482. characterMakers.push(() => makeCharacter(
  47483. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  47484. {
  47485. front: {
  47486. height: math.unit(13 + 7/12, "feet"),
  47487. weight: math.unit(2200, "lb"),
  47488. name: "Front",
  47489. image: {
  47490. source: "./media/characters/endraya/front.svg",
  47491. extra: 1289/1215,
  47492. bottom: 50/1339
  47493. }
  47494. },
  47495. nude: {
  47496. height: math.unit(13 + 7/12, "feet"),
  47497. weight: math.unit(2200, "lb"),
  47498. name: "Nude",
  47499. image: {
  47500. source: "./media/characters/endraya/nude.svg",
  47501. extra: 1247/1171,
  47502. bottom: 40/1287
  47503. }
  47504. },
  47505. head: {
  47506. height: math.unit(2.6, "feet"),
  47507. name: "Head",
  47508. image: {
  47509. source: "./media/characters/endraya/head.svg"
  47510. }
  47511. },
  47512. slit: {
  47513. height: math.unit(3.4, "feet"),
  47514. name: "Slit",
  47515. image: {
  47516. source: "./media/characters/endraya/slit.svg"
  47517. }
  47518. },
  47519. },
  47520. [
  47521. {
  47522. name: "Normal",
  47523. height: math.unit(13 + 7/12, "feet"),
  47524. default: true
  47525. },
  47526. {
  47527. name: "Macro",
  47528. height: math.unit(200, "feet")
  47529. },
  47530. ]
  47531. ))
  47532. characterMakers.push(() => makeCharacter(
  47533. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  47534. {
  47535. front: {
  47536. height: math.unit(1.81, "meters"),
  47537. weight: math.unit(69, "kg"),
  47538. name: "Front",
  47539. image: {
  47540. source: "./media/characters/rodryana/front.svg",
  47541. extra: 2002/1921,
  47542. bottom: 53/2055
  47543. }
  47544. },
  47545. back: {
  47546. height: math.unit(1.81, "meters"),
  47547. weight: math.unit(69, "kg"),
  47548. name: "Back",
  47549. image: {
  47550. source: "./media/characters/rodryana/back.svg",
  47551. extra: 1993/1926,
  47552. bottom: 48/2041
  47553. }
  47554. },
  47555. maw: {
  47556. height: math.unit(0.19769417475, "meters"),
  47557. name: "Maw",
  47558. image: {
  47559. source: "./media/characters/rodryana/maw.svg"
  47560. }
  47561. },
  47562. slit: {
  47563. height: math.unit(0.31631067961, "meters"),
  47564. name: "Slit",
  47565. image: {
  47566. source: "./media/characters/rodryana/slit.svg"
  47567. }
  47568. },
  47569. },
  47570. [
  47571. {
  47572. name: "Normal",
  47573. height: math.unit(1.81, "meters")
  47574. },
  47575. {
  47576. name: "Mini Macro",
  47577. height: math.unit(181, "meters")
  47578. },
  47579. {
  47580. name: "Macro",
  47581. height: math.unit(452, "meters"),
  47582. default: true
  47583. },
  47584. {
  47585. name: "Mega Macro",
  47586. height: math.unit(1.375, "km")
  47587. },
  47588. {
  47589. name: "Giga Macro",
  47590. height: math.unit(13.575, "km")
  47591. },
  47592. ]
  47593. ))
  47594. characterMakers.push(() => makeCharacter(
  47595. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  47596. {
  47597. front: {
  47598. height: math.unit(6, "feet"),
  47599. weight: math.unit(1000, "lb"),
  47600. name: "Front",
  47601. image: {
  47602. source: "./media/characters/asaya/front.svg",
  47603. extra: 1460/1200,
  47604. bottom: 71/1531
  47605. }
  47606. },
  47607. },
  47608. [
  47609. {
  47610. name: "Normal",
  47611. height: math.unit(8, "km"),
  47612. default: true
  47613. },
  47614. ]
  47615. ))
  47616. characterMakers.push(() => makeCharacter(
  47617. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  47618. {
  47619. front: {
  47620. height: math.unit(3.5, "meters"),
  47621. name: "Front",
  47622. image: {
  47623. source: "./media/characters/sarzu-and-israz/front.svg",
  47624. extra: 1570/1558,
  47625. bottom: 150/1720
  47626. },
  47627. },
  47628. back: {
  47629. height: math.unit(3.5, "meters"),
  47630. name: "Back",
  47631. image: {
  47632. source: "./media/characters/sarzu-and-israz/back.svg",
  47633. extra: 1523/1509,
  47634. bottom: 132/1655
  47635. },
  47636. },
  47637. frontFemale: {
  47638. height: math.unit(3.5, "meters"),
  47639. name: "Front (Female)",
  47640. image: {
  47641. source: "./media/characters/sarzu-and-israz/front-female.svg",
  47642. extra: 1570/1558,
  47643. bottom: 150/1720
  47644. },
  47645. },
  47646. frontHerm: {
  47647. height: math.unit(3.5, "meters"),
  47648. name: "Front (Herm)",
  47649. image: {
  47650. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  47651. extra: 1570/1558,
  47652. bottom: 150/1720
  47653. },
  47654. },
  47655. },
  47656. [
  47657. {
  47658. name: "Normal",
  47659. height: math.unit(3.5, "meters"),
  47660. default: true,
  47661. },
  47662. {
  47663. name: "Macro",
  47664. height: math.unit(65.5, "meters"),
  47665. },
  47666. ],
  47667. ))
  47668. characterMakers.push(() => makeCharacter(
  47669. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  47670. {
  47671. front: {
  47672. height: math.unit(6, "feet"),
  47673. weight: math.unit(250, "lb"),
  47674. name: "Front",
  47675. image: {
  47676. source: "./media/characters/zenimma/front.svg",
  47677. extra: 1346/1320,
  47678. bottom: 58/1404
  47679. }
  47680. },
  47681. back: {
  47682. height: math.unit(6, "feet"),
  47683. weight: math.unit(250, "lb"),
  47684. name: "Back",
  47685. image: {
  47686. source: "./media/characters/zenimma/back.svg",
  47687. extra: 1324/1308,
  47688. bottom: 44/1368
  47689. }
  47690. },
  47691. dick: {
  47692. height: math.unit(1.44, "feet"),
  47693. name: "Dick",
  47694. image: {
  47695. source: "./media/characters/zenimma/dick.svg"
  47696. }
  47697. },
  47698. },
  47699. [
  47700. {
  47701. name: "Canon Height",
  47702. height: math.unit(66, "miles"),
  47703. default: true
  47704. },
  47705. ]
  47706. ))
  47707. characterMakers.push(() => makeCharacter(
  47708. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  47709. {
  47710. nude: {
  47711. height: math.unit(6, "feet"),
  47712. weight: math.unit(150, "lb"),
  47713. name: "Nude",
  47714. image: {
  47715. source: "./media/characters/shavon/nude.svg",
  47716. extra: 1242/1096,
  47717. bottom: 98/1340
  47718. }
  47719. },
  47720. dressed: {
  47721. height: math.unit(6, "feet"),
  47722. weight: math.unit(150, "lb"),
  47723. name: "Dressed",
  47724. image: {
  47725. source: "./media/characters/shavon/dressed.svg",
  47726. extra: 1242/1096,
  47727. bottom: 98/1340
  47728. }
  47729. },
  47730. },
  47731. [
  47732. {
  47733. name: "Macro",
  47734. height: math.unit(255, "feet"),
  47735. default: true
  47736. },
  47737. ]
  47738. ))
  47739. characterMakers.push(() => makeCharacter(
  47740. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  47741. {
  47742. front: {
  47743. height: math.unit(6, "feet"),
  47744. name: "Front",
  47745. image: {
  47746. source: "./media/characters/steph/front.svg",
  47747. extra: 1430/1330,
  47748. bottom: 54/1484
  47749. }
  47750. },
  47751. },
  47752. [
  47753. {
  47754. name: "Normal",
  47755. height: math.unit(6, "feet"),
  47756. default: true
  47757. },
  47758. ]
  47759. ))
  47760. characterMakers.push(() => makeCharacter(
  47761. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  47762. {
  47763. front: {
  47764. height: math.unit(9, "feet"),
  47765. weight: math.unit(400, "lb"),
  47766. name: "Front",
  47767. image: {
  47768. source: "./media/characters/kil'aman/front.svg",
  47769. extra: 1210/1159,
  47770. bottom: 109/1319
  47771. }
  47772. },
  47773. head: {
  47774. height: math.unit(2.14, "feet"),
  47775. name: "Head",
  47776. image: {
  47777. source: "./media/characters/kil'aman/head.svg"
  47778. }
  47779. },
  47780. maw: {
  47781. height: math.unit(1.21, "feet"),
  47782. name: "Maw",
  47783. image: {
  47784. source: "./media/characters/kil'aman/maw.svg"
  47785. }
  47786. },
  47787. foot: {
  47788. height: math.unit(1.7, "feet"),
  47789. name: "Foot",
  47790. image: {
  47791. source: "./media/characters/kil'aman/foot.svg"
  47792. }
  47793. },
  47794. dick: {
  47795. height: math.unit(2.1, "feet"),
  47796. name: "Dick",
  47797. image: {
  47798. source: "./media/characters/kil'aman/dick.svg"
  47799. }
  47800. },
  47801. },
  47802. [
  47803. {
  47804. name: "Normal",
  47805. height: math.unit(9, "feet")
  47806. },
  47807. {
  47808. name: "Canon Height",
  47809. height: math.unit(10, "miles"),
  47810. default: true
  47811. },
  47812. {
  47813. name: "Maximum",
  47814. height: math.unit(6e9, "miles")
  47815. },
  47816. ]
  47817. ))
  47818. characterMakers.push(() => makeCharacter(
  47819. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  47820. {
  47821. front: {
  47822. height: math.unit(90, "feet"),
  47823. weight: math.unit(675000, "lb"),
  47824. name: "Front",
  47825. image: {
  47826. source: "./media/characters/qadan/front.svg",
  47827. extra: 1012/1004,
  47828. bottom: 78/1090
  47829. }
  47830. },
  47831. back: {
  47832. height: math.unit(90, "feet"),
  47833. weight: math.unit(675000, "lb"),
  47834. name: "Back",
  47835. image: {
  47836. source: "./media/characters/qadan/back.svg",
  47837. extra: 1042/1031,
  47838. bottom: 55/1097
  47839. }
  47840. },
  47841. armored: {
  47842. height: math.unit(90, "feet"),
  47843. weight: math.unit(675000, "lb"),
  47844. name: "Armored",
  47845. image: {
  47846. source: "./media/characters/qadan/armored.svg",
  47847. extra: 1047/1037,
  47848. bottom: 48/1095
  47849. }
  47850. },
  47851. },
  47852. [
  47853. {
  47854. name: "Normal",
  47855. height: math.unit(90, "feet"),
  47856. default: true
  47857. },
  47858. ]
  47859. ))
  47860. characterMakers.push(() => makeCharacter(
  47861. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  47862. {
  47863. front: {
  47864. height: math.unit(6, "feet"),
  47865. weight: math.unit(225, "lb"),
  47866. name: "Front",
  47867. image: {
  47868. source: "./media/characters/brooke/front.svg",
  47869. extra: 1050/1010,
  47870. bottom: 66/1116
  47871. }
  47872. },
  47873. back: {
  47874. height: math.unit(6, "feet"),
  47875. weight: math.unit(225, "lb"),
  47876. name: "Back",
  47877. image: {
  47878. source: "./media/characters/brooke/back.svg",
  47879. extra: 1053/1013,
  47880. bottom: 41/1094
  47881. }
  47882. },
  47883. dressed: {
  47884. height: math.unit(6, "feet"),
  47885. weight: math.unit(225, "lb"),
  47886. name: "Dressed",
  47887. image: {
  47888. source: "./media/characters/brooke/dressed.svg",
  47889. extra: 1050/1010,
  47890. bottom: 66/1116
  47891. }
  47892. },
  47893. },
  47894. [
  47895. {
  47896. name: "Canon Height",
  47897. height: math.unit(500, "miles"),
  47898. default: true
  47899. },
  47900. ]
  47901. ))
  47902. characterMakers.push(() => makeCharacter(
  47903. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  47904. {
  47905. front: {
  47906. height: math.unit(6 + 2/12, "feet"),
  47907. weight: math.unit(210, "lb"),
  47908. name: "Front",
  47909. image: {
  47910. source: "./media/characters/wubs/front.svg",
  47911. extra: 1345/1325,
  47912. bottom: 70/1415
  47913. }
  47914. },
  47915. back: {
  47916. height: math.unit(6 + 2/12, "feet"),
  47917. weight: math.unit(210, "lb"),
  47918. name: "Back",
  47919. image: {
  47920. source: "./media/characters/wubs/back.svg",
  47921. extra: 1296/1275,
  47922. bottom: 58/1354
  47923. }
  47924. },
  47925. },
  47926. [
  47927. {
  47928. name: "Normal",
  47929. height: math.unit(6 + 2/12, "feet"),
  47930. default: true
  47931. },
  47932. {
  47933. name: "Macro",
  47934. height: math.unit(1000, "feet")
  47935. },
  47936. {
  47937. name: "Megamacro",
  47938. height: math.unit(1, "mile")
  47939. },
  47940. ]
  47941. ))
  47942. characterMakers.push(() => makeCharacter(
  47943. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  47944. {
  47945. front: {
  47946. height: math.unit(4, "feet"),
  47947. weight: math.unit(120, "lb"),
  47948. name: "Front",
  47949. image: {
  47950. source: "./media/characters/blue/front.svg",
  47951. extra: 1636/1525,
  47952. bottom: 43/1679
  47953. }
  47954. },
  47955. back: {
  47956. height: math.unit(4, "feet"),
  47957. weight: math.unit(120, "lb"),
  47958. name: "Back",
  47959. image: {
  47960. source: "./media/characters/blue/back.svg",
  47961. extra: 1660/1560,
  47962. bottom: 57/1717
  47963. }
  47964. },
  47965. paws: {
  47966. height: math.unit(0.826, "feet"),
  47967. name: "Paws",
  47968. image: {
  47969. source: "./media/characters/blue/paws.svg"
  47970. }
  47971. },
  47972. },
  47973. [
  47974. {
  47975. name: "Micro",
  47976. height: math.unit(3, "inches")
  47977. },
  47978. {
  47979. name: "Normal",
  47980. height: math.unit(4, "feet"),
  47981. default: true
  47982. },
  47983. {
  47984. name: "Femenine Form",
  47985. height: math.unit(14, "feet")
  47986. },
  47987. {
  47988. name: "Werebat Form",
  47989. height: math.unit(18, "feet")
  47990. },
  47991. ]
  47992. ))
  47993. characterMakers.push(() => makeCharacter(
  47994. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  47995. {
  47996. female: {
  47997. height: math.unit(7 + 4/12, "feet"),
  47998. weight: math.unit(243, "lb"),
  47999. name: "Female",
  48000. image: {
  48001. source: "./media/characters/kaya/female.svg",
  48002. extra: 975/898,
  48003. bottom: 34/1009
  48004. }
  48005. },
  48006. herm: {
  48007. height: math.unit(7 + 4/12, "feet"),
  48008. weight: math.unit(243, "lb"),
  48009. name: "Herm",
  48010. image: {
  48011. source: "./media/characters/kaya/herm.svg",
  48012. extra: 975/898,
  48013. bottom: 34/1009
  48014. }
  48015. },
  48016. },
  48017. [
  48018. {
  48019. name: "Normal",
  48020. height: math.unit(7 + 4/12, "feet"),
  48021. default: true
  48022. },
  48023. ]
  48024. ))
  48025. characterMakers.push(() => makeCharacter(
  48026. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  48027. {
  48028. female: {
  48029. height: math.unit(9 + 4/12, "feet"),
  48030. weight: math.unit(398, "lb"),
  48031. name: "Female",
  48032. image: {
  48033. source: "./media/characters/kassandra/female.svg",
  48034. extra: 908/839,
  48035. bottom: 61/969
  48036. }
  48037. },
  48038. intersex: {
  48039. height: math.unit(9 + 4/12, "feet"),
  48040. weight: math.unit(398, "lb"),
  48041. name: "Intersex",
  48042. image: {
  48043. source: "./media/characters/kassandra/intersex.svg",
  48044. extra: 908/839,
  48045. bottom: 61/969
  48046. }
  48047. },
  48048. },
  48049. [
  48050. {
  48051. name: "Normal",
  48052. height: math.unit(9 + 4/12, "feet"),
  48053. default: true
  48054. },
  48055. ]
  48056. ))
  48057. characterMakers.push(() => makeCharacter(
  48058. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  48059. {
  48060. front: {
  48061. height: math.unit(3, "meters"),
  48062. name: "Front",
  48063. image: {
  48064. source: "./media/characters/amy/front.svg",
  48065. extra: 1380/1343,
  48066. bottom: 70/1450
  48067. }
  48068. },
  48069. back: {
  48070. height: math.unit(3, "meters"),
  48071. name: "Back",
  48072. image: {
  48073. source: "./media/characters/amy/back.svg",
  48074. extra: 1380/1347,
  48075. bottom: 66/1446
  48076. }
  48077. },
  48078. },
  48079. [
  48080. {
  48081. name: "Normal",
  48082. height: math.unit(3, "meters"),
  48083. default: true
  48084. },
  48085. ]
  48086. ))
  48087. characterMakers.push(() => makeCharacter(
  48088. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  48089. {
  48090. side: {
  48091. height: math.unit(47, "cm"),
  48092. weight: math.unit(10.8, "kg"),
  48093. name: "Side",
  48094. image: {
  48095. source: "./media/characters/alphaschakal/side.svg",
  48096. extra: 1058/568,
  48097. bottom: 62/1120
  48098. }
  48099. },
  48100. back: {
  48101. height: math.unit(78, "cm"),
  48102. weight: math.unit(10.8, "kg"),
  48103. name: "Back",
  48104. image: {
  48105. source: "./media/characters/alphaschakal/back.svg",
  48106. extra: 1102/942,
  48107. bottom: 185/1287
  48108. }
  48109. },
  48110. head: {
  48111. height: math.unit(28, "cm"),
  48112. name: "Head",
  48113. image: {
  48114. source: "./media/characters/alphaschakal/head.svg",
  48115. extra: 696/508,
  48116. bottom: 0/696
  48117. }
  48118. },
  48119. paw: {
  48120. height: math.unit(16, "cm"),
  48121. name: "Paw",
  48122. image: {
  48123. source: "./media/characters/alphaschakal/paw.svg"
  48124. }
  48125. },
  48126. },
  48127. [
  48128. {
  48129. name: "Normal",
  48130. height: math.unit(47, "cm"),
  48131. default: true
  48132. },
  48133. {
  48134. name: "Macro",
  48135. height: math.unit(340, "cm")
  48136. },
  48137. ]
  48138. ))
  48139. characterMakers.push(() => makeCharacter(
  48140. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  48141. {
  48142. front: {
  48143. height: math.unit(36, "earths"),
  48144. name: "Front",
  48145. image: {
  48146. source: "./media/characters/ecobyss/front.svg",
  48147. extra: 1282/1215,
  48148. bottom: 11/1293
  48149. }
  48150. },
  48151. back: {
  48152. height: math.unit(36, "earths"),
  48153. name: "Back",
  48154. image: {
  48155. source: "./media/characters/ecobyss/back.svg",
  48156. extra: 1291/1222,
  48157. bottom: 8/1299
  48158. }
  48159. },
  48160. },
  48161. [
  48162. {
  48163. name: "Normal",
  48164. height: math.unit(36, "earths"),
  48165. default: true
  48166. },
  48167. ]
  48168. ))
  48169. characterMakers.push(() => makeCharacter(
  48170. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  48171. {
  48172. front: {
  48173. height: math.unit(12, "feet"),
  48174. name: "Front",
  48175. image: {
  48176. source: "./media/characters/vasuk/front.svg",
  48177. extra: 1326/1207,
  48178. bottom: 64/1390
  48179. }
  48180. },
  48181. },
  48182. [
  48183. {
  48184. name: "Normal",
  48185. height: math.unit(12, "feet"),
  48186. default: true
  48187. },
  48188. ]
  48189. ))
  48190. characterMakers.push(() => makeCharacter(
  48191. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  48192. {
  48193. side: {
  48194. height: math.unit(100, "feet"),
  48195. name: "Side",
  48196. image: {
  48197. source: "./media/characters/linneaus/side.svg",
  48198. extra: 987/807,
  48199. bottom: 47/1034
  48200. }
  48201. },
  48202. },
  48203. [
  48204. {
  48205. name: "Macro",
  48206. height: math.unit(100, "feet"),
  48207. default: true
  48208. },
  48209. ]
  48210. ))
  48211. characterMakers.push(() => makeCharacter(
  48212. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  48213. {
  48214. front: {
  48215. height: math.unit(8, "feet"),
  48216. weight: math.unit(1200, "lb"),
  48217. name: "Front",
  48218. image: {
  48219. source: "./media/characters/nyterious-daligdig/front.svg",
  48220. extra: 1284/1094,
  48221. bottom: 84/1368
  48222. }
  48223. },
  48224. back: {
  48225. height: math.unit(8, "feet"),
  48226. weight: math.unit(1200, "lb"),
  48227. name: "Back",
  48228. image: {
  48229. source: "./media/characters/nyterious-daligdig/back.svg",
  48230. extra: 1301/1121,
  48231. bottom: 129/1430
  48232. }
  48233. },
  48234. mouth: {
  48235. height: math.unit(1.464, "feet"),
  48236. name: "Mouth",
  48237. image: {
  48238. source: "./media/characters/nyterious-daligdig/mouth.svg"
  48239. }
  48240. },
  48241. },
  48242. [
  48243. {
  48244. name: "Small",
  48245. height: math.unit(8, "feet"),
  48246. default: true
  48247. },
  48248. {
  48249. name: "Normal",
  48250. height: math.unit(15, "feet")
  48251. },
  48252. {
  48253. name: "Macro",
  48254. height: math.unit(90, "feet")
  48255. },
  48256. ]
  48257. ))
  48258. characterMakers.push(() => makeCharacter(
  48259. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  48260. {
  48261. front: {
  48262. height: math.unit(7 + 4/12, "feet"),
  48263. weight: math.unit(252, "lb"),
  48264. name: "Front",
  48265. image: {
  48266. source: "./media/characters/bandel/front.svg",
  48267. extra: 1946/1775,
  48268. bottom: 26/1972
  48269. }
  48270. },
  48271. back: {
  48272. height: math.unit(7 + 4/12, "feet"),
  48273. weight: math.unit(252, "lb"),
  48274. name: "Back",
  48275. image: {
  48276. source: "./media/characters/bandel/back.svg",
  48277. extra: 1940/1770,
  48278. bottom: 25/1965
  48279. }
  48280. },
  48281. maw: {
  48282. height: math.unit(2.15, "feet"),
  48283. name: "Maw",
  48284. image: {
  48285. source: "./media/characters/bandel/maw.svg"
  48286. }
  48287. },
  48288. stomach: {
  48289. height: math.unit(1.95, "feet"),
  48290. name: "Stomach",
  48291. image: {
  48292. source: "./media/characters/bandel/stomach.svg"
  48293. }
  48294. },
  48295. },
  48296. [
  48297. {
  48298. name: "Normal",
  48299. height: math.unit(7 + 4/12, "feet"),
  48300. default: true
  48301. },
  48302. ]
  48303. ))
  48304. characterMakers.push(() => makeCharacter(
  48305. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  48306. {
  48307. front: {
  48308. height: math.unit(10 + 5/12, "feet"),
  48309. weight: math.unit(773.5, "kg"),
  48310. name: "Front",
  48311. image: {
  48312. source: "./media/characters/zed/front.svg",
  48313. extra: 987/941,
  48314. bottom: 52/1039
  48315. }
  48316. },
  48317. },
  48318. [
  48319. {
  48320. name: "Short",
  48321. height: math.unit(5 + 4/12, "feet")
  48322. },
  48323. {
  48324. name: "Average",
  48325. height: math.unit(10 + 5/12, "feet"),
  48326. default: true
  48327. },
  48328. {
  48329. name: "Mini-Macro",
  48330. height: math.unit(24 + 9/12, "feet")
  48331. },
  48332. {
  48333. name: "Macro",
  48334. height: math.unit(249, "feet")
  48335. },
  48336. {
  48337. name: "Mega-Macro",
  48338. height: math.unit(12490, "feet")
  48339. },
  48340. {
  48341. name: "Giga-Macro",
  48342. height: math.unit(24.9, "miles")
  48343. },
  48344. {
  48345. name: "Tera-Macro",
  48346. height: math.unit(24900, "miles")
  48347. },
  48348. {
  48349. name: "Cosmic Scale",
  48350. height: math.unit(38.9, "lightyears")
  48351. },
  48352. {
  48353. name: "Universal Scale",
  48354. height: math.unit(138e12, "lightyears")
  48355. },
  48356. ]
  48357. ))
  48358. characterMakers.push(() => makeCharacter(
  48359. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  48360. {
  48361. front: {
  48362. height: math.unit(1561, "inches"),
  48363. name: "Front",
  48364. image: {
  48365. source: "./media/characters/ivan/front.svg",
  48366. extra: 1126/1071,
  48367. bottom: 26/1152
  48368. }
  48369. },
  48370. back: {
  48371. height: math.unit(1561, "inches"),
  48372. name: "Back",
  48373. image: {
  48374. source: "./media/characters/ivan/back.svg",
  48375. extra: 1134/1079,
  48376. bottom: 30/1164
  48377. }
  48378. },
  48379. },
  48380. [
  48381. {
  48382. name: "Normal",
  48383. height: math.unit(1561, "inches"),
  48384. default: true
  48385. },
  48386. ]
  48387. ))
  48388. characterMakers.push(() => makeCharacter(
  48389. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  48390. {
  48391. front: {
  48392. height: math.unit(5 + 7/12, "feet"),
  48393. weight: math.unit(150, "lb"),
  48394. name: "Front",
  48395. image: {
  48396. source: "./media/characters/robin-arctic-hare/front.svg",
  48397. extra: 1148/974,
  48398. bottom: 20/1168
  48399. }
  48400. },
  48401. },
  48402. [
  48403. {
  48404. name: "Normal",
  48405. height: math.unit(5 + 7/12, "feet"),
  48406. default: true
  48407. },
  48408. ]
  48409. ))
  48410. characterMakers.push(() => makeCharacter(
  48411. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  48412. {
  48413. side: {
  48414. height: math.unit(5, "feet"),
  48415. name: "Side",
  48416. image: {
  48417. source: "./media/characters/birch/side.svg",
  48418. extra: 985/796,
  48419. bottom: 111/1096
  48420. }
  48421. },
  48422. },
  48423. [
  48424. {
  48425. name: "Normal",
  48426. height: math.unit(5, "feet"),
  48427. default: true
  48428. },
  48429. ]
  48430. ))
  48431. characterMakers.push(() => makeCharacter(
  48432. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  48433. {
  48434. front: {
  48435. height: math.unit(4, "feet"),
  48436. name: "Front",
  48437. image: {
  48438. source: "./media/characters/rasp/front.svg",
  48439. extra: 561/478,
  48440. bottom: 74/635
  48441. }
  48442. },
  48443. },
  48444. [
  48445. {
  48446. name: "Normal",
  48447. height: math.unit(4, "feet"),
  48448. default: true
  48449. },
  48450. ]
  48451. ))
  48452. characterMakers.push(() => makeCharacter(
  48453. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  48454. {
  48455. front: {
  48456. height: math.unit(4 + 6/12, "feet"),
  48457. name: "Front",
  48458. image: {
  48459. source: "./media/characters/agatha/front.svg",
  48460. extra: 947/933,
  48461. bottom: 42/989
  48462. }
  48463. },
  48464. back: {
  48465. height: math.unit(4 + 6/12, "feet"),
  48466. name: "Back",
  48467. image: {
  48468. source: "./media/characters/agatha/back.svg",
  48469. extra: 935/922,
  48470. bottom: 48/983
  48471. }
  48472. },
  48473. },
  48474. [
  48475. {
  48476. name: "Normal",
  48477. height: math.unit(4 + 6 /12, "feet"),
  48478. default: true
  48479. },
  48480. {
  48481. name: "Max Size",
  48482. height: math.unit(500, "feet")
  48483. },
  48484. ]
  48485. ))
  48486. characterMakers.push(() => makeCharacter(
  48487. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  48488. {
  48489. side: {
  48490. height: math.unit(30, "feet"),
  48491. name: "Side",
  48492. image: {
  48493. source: "./media/characters/roggy/side.svg",
  48494. extra: 909/643,
  48495. bottom: 63/972
  48496. }
  48497. },
  48498. lounging: {
  48499. height: math.unit(20, "feet"),
  48500. name: "Lounging",
  48501. image: {
  48502. source: "./media/characters/roggy/lounging.svg",
  48503. extra: 643/479,
  48504. bottom: 145/788
  48505. }
  48506. },
  48507. handpaw: {
  48508. height: math.unit(13.1, "feet"),
  48509. name: "Handpaw",
  48510. image: {
  48511. source: "./media/characters/roggy/handpaw.svg"
  48512. }
  48513. },
  48514. footpaw: {
  48515. height: math.unit(15.8, "feet"),
  48516. name: "Footpaw",
  48517. image: {
  48518. source: "./media/characters/roggy/footpaw.svg"
  48519. }
  48520. },
  48521. },
  48522. [
  48523. {
  48524. name: "Menacing",
  48525. height: math.unit(30, "feet"),
  48526. default: true
  48527. },
  48528. ]
  48529. ))
  48530. characterMakers.push(() => makeCharacter(
  48531. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  48532. {
  48533. front: {
  48534. height: math.unit(5 + 7/12, "feet"),
  48535. weight: math.unit(135, "lb"),
  48536. name: "Front",
  48537. image: {
  48538. source: "./media/characters/naomi/front.svg",
  48539. extra: 1209/1154,
  48540. bottom: 129/1338
  48541. }
  48542. },
  48543. back: {
  48544. height: math.unit(5 + 7/12, "feet"),
  48545. weight: math.unit(135, "lb"),
  48546. name: "Back",
  48547. image: {
  48548. source: "./media/characters/naomi/back.svg",
  48549. extra: 1252/1190,
  48550. bottom: 23/1275
  48551. }
  48552. },
  48553. },
  48554. [
  48555. {
  48556. name: "Normal",
  48557. height: math.unit(5 + 7 /12, "feet"),
  48558. default: true
  48559. },
  48560. ]
  48561. ))
  48562. characterMakers.push(() => makeCharacter(
  48563. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  48564. {
  48565. side: {
  48566. height: math.unit(35, "meters"),
  48567. name: "Side",
  48568. image: {
  48569. source: "./media/characters/kimpi/side.svg",
  48570. extra: 419/382,
  48571. bottom: 63/482
  48572. }
  48573. },
  48574. hand: {
  48575. height: math.unit(8.96, "meters"),
  48576. name: "Hand",
  48577. image: {
  48578. source: "./media/characters/kimpi/hand.svg"
  48579. }
  48580. },
  48581. },
  48582. [
  48583. {
  48584. name: "Normal",
  48585. height: math.unit(35, "meters"),
  48586. default: true
  48587. },
  48588. ]
  48589. ))
  48590. characterMakers.push(() => makeCharacter(
  48591. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  48592. {
  48593. front: {
  48594. height: math.unit(4 + 4/12, "feet"),
  48595. name: "Front",
  48596. image: {
  48597. source: "./media/characters/pepper-purrloin/front.svg",
  48598. extra: 1141/1024,
  48599. bottom: 21/1162
  48600. }
  48601. },
  48602. },
  48603. [
  48604. {
  48605. name: "Normal",
  48606. height: math.unit(4 + 4/12, "feet"),
  48607. default: true
  48608. },
  48609. ]
  48610. ))
  48611. characterMakers.push(() => makeCharacter(
  48612. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  48613. {
  48614. front: {
  48615. height: math.unit(6 + 2/12, "feet"),
  48616. name: "Front",
  48617. image: {
  48618. source: "./media/characters/raphael/front.svg",
  48619. extra: 1101/962,
  48620. bottom: 59/1160
  48621. }
  48622. },
  48623. },
  48624. [
  48625. {
  48626. name: "Normal",
  48627. height: math.unit(6 + 2/12, "feet"),
  48628. default: true
  48629. },
  48630. ]
  48631. ))
  48632. characterMakers.push(() => makeCharacter(
  48633. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  48634. {
  48635. front: {
  48636. height: math.unit(6, "feet"),
  48637. weight: math.unit(150, "lb"),
  48638. name: "Front",
  48639. image: {
  48640. source: "./media/characters/victor-williams/front.svg",
  48641. extra: 1894/1825,
  48642. bottom: 67/1961
  48643. }
  48644. },
  48645. },
  48646. [
  48647. {
  48648. name: "Normal",
  48649. height: math.unit(6, "feet"),
  48650. default: true
  48651. },
  48652. ]
  48653. ))
  48654. characterMakers.push(() => makeCharacter(
  48655. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  48656. {
  48657. front: {
  48658. height: math.unit(5 + 8/12, "feet"),
  48659. weight: math.unit(150, "lb"),
  48660. name: "Front",
  48661. image: {
  48662. source: "./media/characters/rachel/front.svg",
  48663. extra: 1902/1787,
  48664. bottom: 46/1948
  48665. }
  48666. },
  48667. },
  48668. [
  48669. {
  48670. name: "Base Height",
  48671. height: math.unit(5 + 8/12, "feet"),
  48672. default: true
  48673. },
  48674. {
  48675. name: "Macro",
  48676. height: math.unit(200, "feet")
  48677. },
  48678. {
  48679. name: "Mega Macro",
  48680. height: math.unit(1, "mile")
  48681. },
  48682. {
  48683. name: "Giga Macro",
  48684. height: math.unit(1500, "miles")
  48685. },
  48686. {
  48687. name: "Tera Macro",
  48688. height: math.unit(8000, "miles")
  48689. },
  48690. {
  48691. name: "Tera Macro+",
  48692. height: math.unit(2e5, "miles")
  48693. },
  48694. ]
  48695. ))
  48696. characterMakers.push(() => makeCharacter(
  48697. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  48698. {
  48699. front: {
  48700. height: math.unit(6.5, "feet"),
  48701. name: "Front",
  48702. image: {
  48703. source: "./media/characters/svetlana-rozovskaya/front.svg",
  48704. extra: 860/819,
  48705. bottom: 307/1167
  48706. }
  48707. },
  48708. back: {
  48709. height: math.unit(6.5, "feet"),
  48710. name: "Back",
  48711. image: {
  48712. source: "./media/characters/svetlana-rozovskaya/back.svg",
  48713. extra: 880/837,
  48714. bottom: 395/1275
  48715. }
  48716. },
  48717. sleeping: {
  48718. height: math.unit(2.79, "feet"),
  48719. name: "Sleeping",
  48720. image: {
  48721. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  48722. extra: 465/383,
  48723. bottom: 263/728
  48724. }
  48725. },
  48726. maw: {
  48727. height: math.unit(2.52, "feet"),
  48728. name: "Maw",
  48729. image: {
  48730. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  48731. }
  48732. },
  48733. },
  48734. [
  48735. {
  48736. name: "Normal",
  48737. height: math.unit(6.5, "feet"),
  48738. default: true
  48739. },
  48740. ]
  48741. ))
  48742. characterMakers.push(() => makeCharacter(
  48743. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  48744. {
  48745. front: {
  48746. height: math.unit(5, "feet"),
  48747. name: "Front",
  48748. image: {
  48749. source: "./media/characters/nova-nerium/front.svg",
  48750. extra: 1548/1392,
  48751. bottom: 374/1922
  48752. }
  48753. },
  48754. back: {
  48755. height: math.unit(5, "feet"),
  48756. name: "Back",
  48757. image: {
  48758. source: "./media/characters/nova-nerium/back.svg",
  48759. extra: 1658/1468,
  48760. bottom: 257/1915
  48761. }
  48762. },
  48763. },
  48764. [
  48765. {
  48766. name: "Normal",
  48767. height: math.unit(5, "feet"),
  48768. default: true
  48769. },
  48770. ]
  48771. ))
  48772. characterMakers.push(() => makeCharacter(
  48773. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  48774. {
  48775. front: {
  48776. height: math.unit(5 + 4/12, "feet"),
  48777. name: "Front",
  48778. image: {
  48779. source: "./media/characters/ashe-pyriph/front.svg",
  48780. extra: 1935/1747,
  48781. bottom: 60/1995
  48782. }
  48783. },
  48784. },
  48785. [
  48786. {
  48787. name: "Normal",
  48788. height: math.unit(5 + 4/12, "feet"),
  48789. default: true
  48790. },
  48791. ]
  48792. ))
  48793. characterMakers.push(() => makeCharacter(
  48794. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  48795. {
  48796. front: {
  48797. height: math.unit(8.7, "feet"),
  48798. name: "Front",
  48799. image: {
  48800. source: "./media/characters/flicker-wisp/front.svg",
  48801. extra: 1835/1613,
  48802. bottom: 449/2284
  48803. }
  48804. },
  48805. side: {
  48806. height: math.unit(8.7, "feet"),
  48807. name: "Side",
  48808. image: {
  48809. source: "./media/characters/flicker-wisp/side.svg",
  48810. extra: 1841/1642,
  48811. bottom: 336/2177
  48812. },
  48813. default: true
  48814. },
  48815. maw: {
  48816. height: math.unit(3.35, "feet"),
  48817. name: "Maw",
  48818. image: {
  48819. source: "./media/characters/flicker-wisp/maw.svg",
  48820. extra: 2338/1506,
  48821. bottom: 0/2338
  48822. }
  48823. },
  48824. ovipositor: {
  48825. height: math.unit(4.95, "feet"),
  48826. name: "Ovipositor",
  48827. image: {
  48828. source: "./media/characters/flicker-wisp/ovipositor.svg"
  48829. }
  48830. },
  48831. egg: {
  48832. height: math.unit(0.385, "feet"),
  48833. weight: math.unit(2, "lb"),
  48834. name: "Egg",
  48835. image: {
  48836. source: "./media/characters/flicker-wisp/egg.svg"
  48837. }
  48838. },
  48839. },
  48840. [
  48841. {
  48842. name: "Normal",
  48843. height: math.unit(8.7, "feet"),
  48844. default: true
  48845. },
  48846. ]
  48847. ))
  48848. characterMakers.push(() => makeCharacter(
  48849. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  48850. {
  48851. side: {
  48852. height: math.unit(11, "feet"),
  48853. name: "Side",
  48854. image: {
  48855. source: "./media/characters/faefnul/side.svg",
  48856. extra: 1100/1007,
  48857. bottom: 0/1100
  48858. }
  48859. },
  48860. },
  48861. [
  48862. {
  48863. name: "Normal",
  48864. height: math.unit(11, "feet"),
  48865. default: true
  48866. },
  48867. ]
  48868. ))
  48869. characterMakers.push(() => makeCharacter(
  48870. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  48871. {
  48872. front: {
  48873. height: math.unit(6 + 2/12, "feet"),
  48874. name: "Front",
  48875. image: {
  48876. source: "./media/characters/shady/front.svg",
  48877. extra: 502/461,
  48878. bottom: 9/511
  48879. }
  48880. },
  48881. kneeling: {
  48882. height: math.unit(4.6, "feet"),
  48883. name: "Kneeling",
  48884. image: {
  48885. source: "./media/characters/shady/kneeling.svg",
  48886. extra: 1328/1219,
  48887. bottom: 117/1445
  48888. }
  48889. },
  48890. maw: {
  48891. height: math.unit(2, "feet"),
  48892. name: "Maw",
  48893. image: {
  48894. source: "./media/characters/shady/maw.svg"
  48895. }
  48896. },
  48897. },
  48898. [
  48899. {
  48900. name: "Nano",
  48901. height: math.unit(1, "mm")
  48902. },
  48903. {
  48904. name: "Micro",
  48905. height: math.unit(12, "mm")
  48906. },
  48907. {
  48908. name: "Tiny",
  48909. height: math.unit(3, "inches")
  48910. },
  48911. {
  48912. name: "Normal",
  48913. height: math.unit(6 + 2/12, "feet"),
  48914. default: true
  48915. },
  48916. {
  48917. name: "Big",
  48918. height: math.unit(15, "feet")
  48919. },
  48920. {
  48921. name: "Macro",
  48922. height: math.unit(150, "feet")
  48923. },
  48924. {
  48925. name: "Titanic",
  48926. height: math.unit(500, "feet")
  48927. },
  48928. ]
  48929. ))
  48930. characterMakers.push(() => makeCharacter(
  48931. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  48932. {
  48933. front: {
  48934. height: math.unit(12, "feet"),
  48935. name: "Front",
  48936. image: {
  48937. source: "./media/characters/fenrir/front.svg",
  48938. extra: 968/875,
  48939. bottom: 22/990
  48940. }
  48941. },
  48942. },
  48943. [
  48944. {
  48945. name: "Big",
  48946. height: math.unit(12, "feet"),
  48947. default: true
  48948. },
  48949. ]
  48950. ))
  48951. characterMakers.push(() => makeCharacter(
  48952. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  48953. {
  48954. front: {
  48955. height: math.unit(5 + 4/12, "feet"),
  48956. name: "Front",
  48957. image: {
  48958. source: "./media/characters/makar/front.svg",
  48959. extra: 1181/1112,
  48960. bottom: 78/1259
  48961. }
  48962. },
  48963. },
  48964. [
  48965. {
  48966. name: "Normal",
  48967. height: math.unit(5 + 4/12, "feet"),
  48968. default: true
  48969. },
  48970. ]
  48971. ))
  48972. characterMakers.push(() => makeCharacter(
  48973. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  48974. {
  48975. front: {
  48976. height: math.unit(5 + 7/12, "feet"),
  48977. name: "Front",
  48978. image: {
  48979. source: "./media/characters/callow/front.svg",
  48980. extra: 1482/1304,
  48981. bottom: 23/1505
  48982. }
  48983. },
  48984. back: {
  48985. height: math.unit(5 + 7/12, "feet"),
  48986. name: "Back",
  48987. image: {
  48988. source: "./media/characters/callow/back.svg",
  48989. extra: 1484/1296,
  48990. bottom: 25/1509
  48991. }
  48992. },
  48993. },
  48994. [
  48995. {
  48996. name: "Micro",
  48997. height: math.unit(3, "inches"),
  48998. default: true
  48999. },
  49000. {
  49001. name: "Normal",
  49002. height: math.unit(5 + 7/12, "feet")
  49003. },
  49004. ]
  49005. ))
  49006. characterMakers.push(() => makeCharacter(
  49007. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  49008. {
  49009. front: {
  49010. height: math.unit(6 + 2/12, "feet"),
  49011. name: "Front",
  49012. image: {
  49013. source: "./media/characters/natel/front.svg",
  49014. extra: 1833/1692,
  49015. bottom: 166/1999
  49016. }
  49017. },
  49018. },
  49019. [
  49020. {
  49021. name: "Normal",
  49022. height: math.unit(6 + 2/12, "feet"),
  49023. default: true
  49024. },
  49025. ]
  49026. ))
  49027. characterMakers.push(() => makeCharacter(
  49028. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  49029. {
  49030. front: {
  49031. height: math.unit(1.75, "meters"),
  49032. name: "Front",
  49033. image: {
  49034. source: "./media/characters/misu/front.svg",
  49035. extra: 1690/1558,
  49036. bottom: 234/1924
  49037. }
  49038. },
  49039. back: {
  49040. height: math.unit(1.75, "meters"),
  49041. name: "Back",
  49042. image: {
  49043. source: "./media/characters/misu/back.svg",
  49044. extra: 1762/1618,
  49045. bottom: 146/1908
  49046. }
  49047. },
  49048. frontNude: {
  49049. height: math.unit(1.75, "meters"),
  49050. name: "Front (Nude)",
  49051. image: {
  49052. source: "./media/characters/misu/front-nude.svg",
  49053. extra: 1690/1558,
  49054. bottom: 234/1924
  49055. }
  49056. },
  49057. backNude: {
  49058. height: math.unit(1.75, "meters"),
  49059. name: "Back (Nude)",
  49060. image: {
  49061. source: "./media/characters/misu/back-nude.svg",
  49062. extra: 1762/1618,
  49063. bottom: 146/1908
  49064. }
  49065. },
  49066. frontErect: {
  49067. height: math.unit(1.75, "meters"),
  49068. name: "Front (Erect)",
  49069. image: {
  49070. source: "./media/characters/misu/front-erect.svg",
  49071. extra: 1690/1558,
  49072. bottom: 234/1924
  49073. }
  49074. },
  49075. maw: {
  49076. height: math.unit(0.47, "meters"),
  49077. name: "Maw",
  49078. image: {
  49079. source: "./media/characters/misu/maw.svg"
  49080. }
  49081. },
  49082. head: {
  49083. height: math.unit(0.35, "meters"),
  49084. name: "Head",
  49085. image: {
  49086. source: "./media/characters/misu/head.svg"
  49087. }
  49088. },
  49089. rear: {
  49090. height: math.unit(0.47, "meters"),
  49091. name: "Rear",
  49092. image: {
  49093. source: "./media/characters/misu/rear.svg"
  49094. }
  49095. },
  49096. },
  49097. [
  49098. {
  49099. name: "Normal",
  49100. height: math.unit(1.75, "meters")
  49101. },
  49102. {
  49103. name: "Not good for the people",
  49104. height: math.unit(42, "meters")
  49105. },
  49106. {
  49107. name: "Not good for the neighborhood",
  49108. height: math.unit(135, "meters")
  49109. },
  49110. {
  49111. name: "Bit bigger problem",
  49112. height: math.unit(380, "meters"),
  49113. default: true
  49114. },
  49115. {
  49116. name: "Not good for the city",
  49117. height: math.unit(1.5, "km")
  49118. },
  49119. {
  49120. name: "Not good for the county",
  49121. height: math.unit(5.5, "km")
  49122. },
  49123. {
  49124. name: "Not good for the state",
  49125. height: math.unit(25, "km")
  49126. },
  49127. {
  49128. name: "Not good for the country",
  49129. height: math.unit(125, "km")
  49130. },
  49131. {
  49132. name: "Not good for the continent",
  49133. height: math.unit(2100, "km")
  49134. },
  49135. {
  49136. name: "Not good for the planet",
  49137. height: math.unit(35000, "km")
  49138. },
  49139. {
  49140. name: "Just no",
  49141. height: math.unit(8.5e18, "km")
  49142. },
  49143. ]
  49144. ))
  49145. characterMakers.push(() => makeCharacter(
  49146. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  49147. {
  49148. front: {
  49149. height: math.unit(6.5, "feet"),
  49150. name: "Front",
  49151. image: {
  49152. source: "./media/characters/poppy/front.svg",
  49153. extra: 1878/1812,
  49154. bottom: 43/1921
  49155. }
  49156. },
  49157. feet: {
  49158. height: math.unit(1.06, "feet"),
  49159. name: "Feet",
  49160. image: {
  49161. source: "./media/characters/poppy/feet.svg",
  49162. extra: 1083/1083,
  49163. bottom: 87/1170
  49164. }
  49165. },
  49166. },
  49167. [
  49168. {
  49169. name: "Human",
  49170. height: math.unit(6.5, "feet")
  49171. },
  49172. {
  49173. name: "Default",
  49174. height: math.unit(300, "feet"),
  49175. default: true
  49176. },
  49177. {
  49178. name: "Huge",
  49179. height: math.unit(850, "feet")
  49180. },
  49181. {
  49182. name: "Mega",
  49183. height: math.unit(8000, "feet")
  49184. },
  49185. {
  49186. name: "Giga",
  49187. height: math.unit(300, "miles")
  49188. },
  49189. ]
  49190. ))
  49191. characterMakers.push(() => makeCharacter(
  49192. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  49193. {
  49194. bipedal: {
  49195. height: math.unit(7, "feet"),
  49196. name: "Bipedal",
  49197. image: {
  49198. source: "./media/characters/zener/bipedal.svg",
  49199. extra: 874/805,
  49200. bottom: 109/983
  49201. }
  49202. },
  49203. quadrupedal: {
  49204. height: math.unit(4.64, "feet"),
  49205. name: "Quadrupedal",
  49206. image: {
  49207. source: "./media/characters/zener/quadrupedal.svg",
  49208. extra: 638/507,
  49209. bottom: 190/828
  49210. }
  49211. },
  49212. cock: {
  49213. height: math.unit(18, "inches"),
  49214. name: "Cock",
  49215. image: {
  49216. source: "./media/characters/zener/cock.svg"
  49217. }
  49218. },
  49219. },
  49220. [
  49221. {
  49222. name: "Normal",
  49223. height: math.unit(7, "feet"),
  49224. default: true
  49225. },
  49226. ]
  49227. ))
  49228. characterMakers.push(() => makeCharacter(
  49229. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  49230. {
  49231. nude: {
  49232. height: math.unit(5 + 6/12, "feet"),
  49233. name: "Nude",
  49234. image: {
  49235. source: "./media/characters/charlie-dog/nude.svg",
  49236. extra: 768/734,
  49237. bottom: 26/794
  49238. }
  49239. },
  49240. dressed: {
  49241. height: math.unit(5 + 6/12, "feet"),
  49242. name: "Dressed",
  49243. image: {
  49244. source: "./media/characters/charlie-dog/dressed.svg",
  49245. extra: 768/734,
  49246. bottom: 26/794
  49247. }
  49248. },
  49249. },
  49250. [
  49251. {
  49252. name: "Normal",
  49253. height: math.unit(5 + 6/12, "feet"),
  49254. default: true
  49255. },
  49256. ]
  49257. ))
  49258. characterMakers.push(() => makeCharacter(
  49259. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  49260. {
  49261. front: {
  49262. height: math.unit(6 + 4/12, "feet"),
  49263. name: "Front",
  49264. image: {
  49265. source: "./media/characters/ir'istrasz/front.svg",
  49266. extra: 1014/977,
  49267. bottom: 65/1079
  49268. }
  49269. },
  49270. back: {
  49271. height: math.unit(6 + 4/12, "feet"),
  49272. name: "Back",
  49273. image: {
  49274. source: "./media/characters/ir'istrasz/back.svg",
  49275. extra: 1024/992,
  49276. bottom: 34/1058
  49277. }
  49278. },
  49279. },
  49280. [
  49281. {
  49282. name: "Normal",
  49283. height: math.unit(6 + 4/12, "feet"),
  49284. default: true
  49285. },
  49286. ]
  49287. ))
  49288. characterMakers.push(() => makeCharacter(
  49289. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  49290. {
  49291. front: {
  49292. height: math.unit(5 + 8/12, "feet"),
  49293. name: "Front",
  49294. image: {
  49295. source: "./media/characters/dee-ditto/front.svg",
  49296. extra: 1874/1785,
  49297. bottom: 68/1942
  49298. }
  49299. },
  49300. back: {
  49301. height: math.unit(5 + 8/12, "feet"),
  49302. name: "Back",
  49303. image: {
  49304. source: "./media/characters/dee-ditto/back.svg",
  49305. extra: 1870/1783,
  49306. bottom: 77/1947
  49307. }
  49308. },
  49309. },
  49310. [
  49311. {
  49312. name: "Normal",
  49313. height: math.unit(5 + 8/12, "feet"),
  49314. default: true
  49315. },
  49316. ]
  49317. ))
  49318. characterMakers.push(() => makeCharacter(
  49319. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  49320. {
  49321. front: {
  49322. height: math.unit(7 + 6/12, "feet"),
  49323. name: "Front",
  49324. image: {
  49325. source: "./media/characters/fey/front.svg",
  49326. extra: 995/979,
  49327. bottom: 30/1025
  49328. }
  49329. },
  49330. back: {
  49331. height: math.unit(7 + 6/12, "feet"),
  49332. name: "Back",
  49333. image: {
  49334. source: "./media/characters/fey/back.svg",
  49335. extra: 1079/1008,
  49336. bottom: 5/1084
  49337. }
  49338. },
  49339. dressed: {
  49340. height: math.unit(7 + 6/12, "feet"),
  49341. name: "Dressed",
  49342. image: {
  49343. source: "./media/characters/fey/dressed.svg",
  49344. extra: 995/979,
  49345. bottom: 30/1025
  49346. }
  49347. },
  49348. },
  49349. [
  49350. {
  49351. name: "Normal",
  49352. height: math.unit(7 + 6/12, "feet"),
  49353. default: true
  49354. },
  49355. ]
  49356. ))
  49357. characterMakers.push(() => makeCharacter(
  49358. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  49359. {
  49360. standing: {
  49361. height: math.unit(17, "feet"),
  49362. name: "Standing",
  49363. image: {
  49364. source: "./media/characters/aster/standing.svg",
  49365. extra: 1798/1598,
  49366. bottom: 117/1915
  49367. }
  49368. },
  49369. },
  49370. [
  49371. {
  49372. name: "Normal",
  49373. height: math.unit(17, "feet"),
  49374. default: true
  49375. },
  49376. {
  49377. name: "Homewrecker",
  49378. height: math.unit(95, "feet")
  49379. },
  49380. {
  49381. name: "Planet Devourer",
  49382. height: math.unit(1008000, "miles")
  49383. },
  49384. ]
  49385. ))
  49386. characterMakers.push(() => makeCharacter(
  49387. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  49388. {
  49389. front: {
  49390. height: math.unit(6 + 5/12, "feet"),
  49391. weight: math.unit(265, "lb"),
  49392. name: "Front",
  49393. image: {
  49394. source: "./media/characters/devon-childs/front.svg",
  49395. extra: 1795/1721,
  49396. bottom: 41/1836
  49397. }
  49398. },
  49399. side: {
  49400. height: math.unit(6 + 5/12, "feet"),
  49401. weight: math.unit(265, "lb"),
  49402. name: "Side",
  49403. image: {
  49404. source: "./media/characters/devon-childs/side.svg",
  49405. extra: 1812/1738,
  49406. bottom: 30/1842
  49407. }
  49408. },
  49409. back: {
  49410. height: math.unit(6 + 5/12, "feet"),
  49411. weight: math.unit(265, "lb"),
  49412. name: "Back",
  49413. image: {
  49414. source: "./media/characters/devon-childs/back.svg",
  49415. extra: 1808/1735,
  49416. bottom: 23/1831
  49417. }
  49418. },
  49419. hand: {
  49420. height: math.unit(1.464, "feet"),
  49421. name: "Hand",
  49422. image: {
  49423. source: "./media/characters/devon-childs/hand.svg"
  49424. }
  49425. },
  49426. foot: {
  49427. height: math.unit(1.6, "feet"),
  49428. name: "Foot",
  49429. image: {
  49430. source: "./media/characters/devon-childs/foot.svg"
  49431. }
  49432. },
  49433. },
  49434. [
  49435. {
  49436. name: "Micro",
  49437. height: math.unit(7, "cm")
  49438. },
  49439. {
  49440. name: "Normal",
  49441. height: math.unit(6 + 5/12, "feet"),
  49442. default: true
  49443. },
  49444. {
  49445. name: "Macro",
  49446. height: math.unit(154, "feet")
  49447. },
  49448. ]
  49449. ))
  49450. characterMakers.push(() => makeCharacter(
  49451. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  49452. {
  49453. front: {
  49454. height: math.unit(6, "feet"),
  49455. weight: math.unit(180, "lb"),
  49456. name: "Front",
  49457. image: {
  49458. source: "./media/characters/lydemox-vir/front.svg",
  49459. extra: 1632/1435,
  49460. bottom: 58/1690
  49461. }
  49462. },
  49463. frontSFW: {
  49464. height: math.unit(6, "feet"),
  49465. weight: math.unit(180, "lb"),
  49466. name: "Front (SFW)",
  49467. image: {
  49468. source: "./media/characters/lydemox-vir/front-sfw.svg",
  49469. extra: 1632/1435,
  49470. bottom: 58/1690
  49471. }
  49472. },
  49473. back: {
  49474. height: math.unit(6, "feet"),
  49475. weight: math.unit(180, "lb"),
  49476. name: "Back",
  49477. image: {
  49478. source: "./media/characters/lydemox-vir/back.svg",
  49479. extra: 1593/1408,
  49480. bottom: 31/1624
  49481. }
  49482. },
  49483. paw: {
  49484. height: math.unit(1.85, "feet"),
  49485. name: "Paw",
  49486. image: {
  49487. source: "./media/characters/lydemox-vir/paw.svg"
  49488. }
  49489. },
  49490. dick: {
  49491. height: math.unit(1.8, "feet"),
  49492. name: "Dick",
  49493. image: {
  49494. source: "./media/characters/lydemox-vir/dick.svg"
  49495. }
  49496. },
  49497. },
  49498. [
  49499. {
  49500. name: "Macro",
  49501. height: math.unit(100, "feet"),
  49502. default: true
  49503. },
  49504. {
  49505. name: "Teramacro",
  49506. height: math.unit(1, "earth")
  49507. },
  49508. {
  49509. name: "Planetary",
  49510. height: math.unit(20, "earths")
  49511. },
  49512. ]
  49513. ))
  49514. characterMakers.push(() => makeCharacter(
  49515. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  49516. {
  49517. front: {
  49518. height: math.unit(15 + 8/12, "feet"),
  49519. weight: math.unit(1237, "kg"),
  49520. name: "Front",
  49521. image: {
  49522. source: "./media/characters/mia/front.svg",
  49523. extra: 1573/1446,
  49524. bottom: 58/1631
  49525. }
  49526. },
  49527. },
  49528. [
  49529. {
  49530. name: "Small",
  49531. height: math.unit(9 + 5/12, "feet")
  49532. },
  49533. {
  49534. name: "Normal",
  49535. height: math.unit(15 + 8/12, "feet"),
  49536. default: true
  49537. },
  49538. ]
  49539. ))
  49540. characterMakers.push(() => makeCharacter(
  49541. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  49542. {
  49543. front: {
  49544. height: math.unit(10 + 6/12, "feet"),
  49545. weight: math.unit(1.3, "tons"),
  49546. name: "Front",
  49547. image: {
  49548. source: "./media/characters/mr-graves/front.svg",
  49549. extra: 1779/1695,
  49550. bottom: 198/1977
  49551. }
  49552. },
  49553. },
  49554. [
  49555. {
  49556. name: "Normal",
  49557. height: math.unit(10 + 6 /12, "feet"),
  49558. default: true
  49559. },
  49560. ]
  49561. ))
  49562. characterMakers.push(() => makeCharacter(
  49563. { name: "Jess", species: ["human"], tags: ["anthro"] },
  49564. {
  49565. dressedFront: {
  49566. height: math.unit(5 + 8/12, "feet"),
  49567. weight: math.unit(125, "lb"),
  49568. name: "Dressed (Front)",
  49569. image: {
  49570. source: "./media/characters/jess/dressed-front.svg",
  49571. extra: 1176/1152,
  49572. bottom: 42/1218
  49573. }
  49574. },
  49575. dressedSide: {
  49576. height: math.unit(5 + 8/12, "feet"),
  49577. weight: math.unit(125, "lb"),
  49578. name: "Dressed (Side)",
  49579. image: {
  49580. source: "./media/characters/jess/dressed-side.svg",
  49581. extra: 1204/1190,
  49582. bottom: 6/1210
  49583. }
  49584. },
  49585. nudeFront: {
  49586. height: math.unit(5 + 8/12, "feet"),
  49587. weight: math.unit(125, "lb"),
  49588. name: "Nude (Front)",
  49589. image: {
  49590. source: "./media/characters/jess/nude-front.svg",
  49591. extra: 1176/1152,
  49592. bottom: 42/1218
  49593. }
  49594. },
  49595. nudeSide: {
  49596. height: math.unit(5 + 8/12, "feet"),
  49597. weight: math.unit(125, "lb"),
  49598. name: "Nude (Side)",
  49599. image: {
  49600. source: "./media/characters/jess/nude-side.svg",
  49601. extra: 1204/1190,
  49602. bottom: 6/1210
  49603. }
  49604. },
  49605. organsFront: {
  49606. height: math.unit(2.83799342105, "feet"),
  49607. name: "Organs (Front)",
  49608. image: {
  49609. source: "./media/characters/jess/organs-front.svg"
  49610. }
  49611. },
  49612. organsSide: {
  49613. height: math.unit(2.64225290474, "feet"),
  49614. name: "Organs (Side)",
  49615. image: {
  49616. source: "./media/characters/jess/organs-side.svg"
  49617. }
  49618. },
  49619. digestiveTractFront: {
  49620. height: math.unit(2.8106580871, "feet"),
  49621. name: "Digestive Tract (Front)",
  49622. image: {
  49623. source: "./media/characters/jess/digestive-tract-front.svg"
  49624. }
  49625. },
  49626. digestiveTractSide: {
  49627. height: math.unit(2.54365045014, "feet"),
  49628. name: "Digestive Tract (Side)",
  49629. image: {
  49630. source: "./media/characters/jess/digestive-tract-side.svg"
  49631. }
  49632. },
  49633. respiratorySystemFront: {
  49634. height: math.unit(1.11196233456, "feet"),
  49635. name: "Respiratory System (Front)",
  49636. image: {
  49637. source: "./media/characters/jess/respiratory-system-front.svg"
  49638. }
  49639. },
  49640. respiratorySystemSide: {
  49641. height: math.unit(0.89327966297, "feet"),
  49642. name: "Respiratory System (Side)",
  49643. image: {
  49644. source: "./media/characters/jess/respiratory-system-side.svg"
  49645. }
  49646. },
  49647. urinaryTractFront: {
  49648. height: math.unit(1.16126356186, "feet"),
  49649. name: "Urinary Tract (Front)",
  49650. image: {
  49651. source: "./media/characters/jess/urinary-tract-front.svg"
  49652. }
  49653. },
  49654. urinaryTractSide: {
  49655. height: math.unit(1.20910039627, "feet"),
  49656. name: "Urinary Tract (Side)",
  49657. image: {
  49658. source: "./media/characters/jess/urinary-tract-side.svg"
  49659. }
  49660. },
  49661. reproductiveOrgansFront: {
  49662. height: math.unit(0.48422591566, "feet"),
  49663. name: "Reproductive Organs (Front)",
  49664. image: {
  49665. source: "./media/characters/jess/reproductive-organs-front.svg"
  49666. }
  49667. },
  49668. reproductiveOrgansSide: {
  49669. height: math.unit(0.61553314481, "feet"),
  49670. name: "Reproductive Organs (Side)",
  49671. image: {
  49672. source: "./media/characters/jess/reproductive-organs-side.svg"
  49673. }
  49674. },
  49675. breastsFront: {
  49676. height: math.unit(0.47690395121, "feet"),
  49677. name: "Breasts (Front)",
  49678. image: {
  49679. source: "./media/characters/jess/breasts-front.svg"
  49680. }
  49681. },
  49682. breastsSide: {
  49683. height: math.unit(0.30556998307, "feet"),
  49684. name: "Breasts (Side)",
  49685. image: {
  49686. source: "./media/characters/jess/breasts-side.svg"
  49687. }
  49688. },
  49689. heartFront: {
  49690. height: math.unit(0.53011022622, "feet"),
  49691. name: "Heart (Front)",
  49692. image: {
  49693. source: "./media/characters/jess/heart-front.svg"
  49694. }
  49695. },
  49696. heartSide: {
  49697. height: math.unit(0.51790695213, "feet"),
  49698. name: "Heart (Side)",
  49699. image: {
  49700. source: "./media/characters/jess/heart-side.svg"
  49701. }
  49702. },
  49703. earsAndNoseFront: {
  49704. height: math.unit(0.29385483995, "feet"),
  49705. name: "Ears and Nose (Front)",
  49706. image: {
  49707. source: "./media/characters/jess/ears-and-nose-front.svg"
  49708. }
  49709. },
  49710. earsAndNoseSide: {
  49711. height: math.unit(0.18109658741, "feet"),
  49712. name: "Ears and Nose (Side)",
  49713. image: {
  49714. source: "./media/characters/jess/ears-and-nose-side.svg"
  49715. }
  49716. },
  49717. },
  49718. [
  49719. {
  49720. name: "Normal",
  49721. height: math.unit(5 + 8/12, "feet"),
  49722. default: true
  49723. },
  49724. ]
  49725. ))
  49726. characterMakers.push(() => makeCharacter(
  49727. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  49728. {
  49729. front: {
  49730. height: math.unit(6, "feet"),
  49731. weight: math.unit(6.64467e-7, "grams"),
  49732. name: "Front",
  49733. image: {
  49734. source: "./media/characters/wimpering/front.svg",
  49735. extra: 597/587,
  49736. bottom: 34/631
  49737. }
  49738. },
  49739. },
  49740. [
  49741. {
  49742. name: "Micro",
  49743. height: math.unit(0.4, "mm"),
  49744. default: true
  49745. },
  49746. ]
  49747. ))
  49748. characterMakers.push(() => makeCharacter(
  49749. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  49750. {
  49751. front: {
  49752. height: math.unit(5 + 2/12, "feet"),
  49753. weight: math.unit(110, "lb"),
  49754. name: "Front",
  49755. image: {
  49756. source: "./media/characters/keltre/front.svg",
  49757. extra: 1099/1057,
  49758. bottom: 22/1121
  49759. }
  49760. },
  49761. back: {
  49762. height: math.unit(5 + 2/12, "feet"),
  49763. weight: math.unit(110, "lb"),
  49764. name: "Back",
  49765. image: {
  49766. source: "./media/characters/keltre/back.svg",
  49767. extra: 1095/1053,
  49768. bottom: 17/1112
  49769. }
  49770. },
  49771. dressed: {
  49772. height: math.unit(5 + 2/12, "feet"),
  49773. weight: math.unit(110, "lb"),
  49774. name: "Dressed",
  49775. image: {
  49776. source: "./media/characters/keltre/dressed.svg",
  49777. extra: 1099/1057,
  49778. bottom: 22/1121
  49779. }
  49780. },
  49781. winter: {
  49782. height: math.unit(5 + 2/12, "feet"),
  49783. weight: math.unit(110, "lb"),
  49784. name: "Winter",
  49785. image: {
  49786. source: "./media/characters/keltre/winter.svg",
  49787. extra: 1099/1057,
  49788. bottom: 22/1121
  49789. }
  49790. },
  49791. head: {
  49792. height: math.unit(1.61 * 0.86, "feet"),
  49793. name: "Head",
  49794. image: {
  49795. source: "./media/characters/keltre/head.svg",
  49796. extra: 534/421,
  49797. bottom: 0/534
  49798. }
  49799. },
  49800. hand: {
  49801. height: math.unit(1.3 * 0.86, "feet"),
  49802. name: "Hand",
  49803. image: {
  49804. source: "./media/characters/keltre/hand.svg"
  49805. }
  49806. },
  49807. foot: {
  49808. height: math.unit(1.8 * 0.86, "feet"),
  49809. name: "Foot",
  49810. image: {
  49811. source: "./media/characters/keltre/foot.svg"
  49812. }
  49813. },
  49814. },
  49815. [
  49816. {
  49817. name: "Fine",
  49818. height: math.unit(1, "inch")
  49819. },
  49820. {
  49821. name: "Dimnutive",
  49822. height: math.unit(4, "inches")
  49823. },
  49824. {
  49825. name: "Tiny",
  49826. height: math.unit(1, "foot")
  49827. },
  49828. {
  49829. name: "Small",
  49830. height: math.unit(3, "feet")
  49831. },
  49832. {
  49833. name: "Normal",
  49834. height: math.unit(5 + 2/12, "feet"),
  49835. default: true
  49836. },
  49837. ]
  49838. ))
  49839. characterMakers.push(() => makeCharacter(
  49840. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  49841. {
  49842. front: {
  49843. height: math.unit(6 + 2/12, "feet"),
  49844. name: "Front",
  49845. image: {
  49846. source: "./media/characters/nox/front.svg",
  49847. extra: 1917/1830,
  49848. bottom: 74/1991
  49849. }
  49850. },
  49851. back: {
  49852. height: math.unit(6 + 2/12, "feet"),
  49853. name: "Back",
  49854. image: {
  49855. source: "./media/characters/nox/back.svg",
  49856. extra: 1896/1815,
  49857. bottom: 21/1917
  49858. }
  49859. },
  49860. head: {
  49861. height: math.unit(1.1, "feet"),
  49862. name: "Head",
  49863. image: {
  49864. source: "./media/characters/nox/head.svg",
  49865. extra: 874/704,
  49866. bottom: 0/874
  49867. }
  49868. },
  49869. tattoo: {
  49870. height: math.unit(0.729, "feet"),
  49871. name: "Tattoo",
  49872. image: {
  49873. source: "./media/characters/nox/tattoo.svg"
  49874. }
  49875. },
  49876. },
  49877. [
  49878. {
  49879. name: "Normal",
  49880. height: math.unit(6 + 2/12, "feet")
  49881. },
  49882. {
  49883. name: "Gigamacro",
  49884. height: math.unit(2, "earths"),
  49885. default: true
  49886. },
  49887. {
  49888. name: "Cosmic",
  49889. height: math.unit(867, "yottameters")
  49890. },
  49891. ]
  49892. ))
  49893. characterMakers.push(() => makeCharacter(
  49894. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  49895. {
  49896. front: {
  49897. height: math.unit(6, "feet"),
  49898. weight: math.unit(150, "lb"),
  49899. name: "Front",
  49900. image: {
  49901. source: "./media/characters/caspian/front.svg",
  49902. extra: 1443/1359,
  49903. bottom: 0/1443
  49904. }
  49905. },
  49906. back: {
  49907. height: math.unit(6, "feet"),
  49908. weight: math.unit(150, "lb"),
  49909. name: "Back",
  49910. image: {
  49911. source: "./media/characters/caspian/back.svg",
  49912. extra: 1379/1309,
  49913. bottom: 0/1379
  49914. }
  49915. },
  49916. head: {
  49917. height: math.unit(0.9, "feet"),
  49918. name: "Head",
  49919. image: {
  49920. source: "./media/characters/caspian/head.svg",
  49921. extra: 692/492,
  49922. bottom: 0/692
  49923. }
  49924. },
  49925. headAlt: {
  49926. height: math.unit(0.95, "feet"),
  49927. name: "Head (Alt)",
  49928. image: {
  49929. source: "./media/characters/caspian/head-alt.svg",
  49930. extra: 668/508,
  49931. bottom: 0/668
  49932. }
  49933. },
  49934. hand: {
  49935. height: math.unit(0.8, "feet"),
  49936. name: "Hand",
  49937. image: {
  49938. source: "./media/characters/caspian/hand.svg"
  49939. }
  49940. },
  49941. paw: {
  49942. height: math.unit(0.95, "feet"),
  49943. name: "Paw",
  49944. image: {
  49945. source: "./media/characters/caspian/paw.svg"
  49946. }
  49947. },
  49948. },
  49949. [
  49950. {
  49951. name: "Normal",
  49952. height: math.unit(162, "feet"),
  49953. default: true
  49954. },
  49955. ]
  49956. ))
  49957. characterMakers.push(() => makeCharacter(
  49958. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  49959. {
  49960. front: {
  49961. height: math.unit(6, "feet"),
  49962. name: "Front",
  49963. image: {
  49964. source: "./media/characters/myra-aisling/front.svg",
  49965. extra: 1268/1166,
  49966. bottom: 73/1341
  49967. }
  49968. },
  49969. back: {
  49970. height: math.unit(6, "feet"),
  49971. name: "Back",
  49972. image: {
  49973. source: "./media/characters/myra-aisling/back.svg",
  49974. extra: 1249/1149,
  49975. bottom: 79/1328
  49976. }
  49977. },
  49978. dressed: {
  49979. height: math.unit(6, "feet"),
  49980. name: "Dressed",
  49981. image: {
  49982. source: "./media/characters/myra-aisling/dressed.svg",
  49983. extra: 1290/1189,
  49984. bottom: 47/1337
  49985. }
  49986. },
  49987. hand: {
  49988. height: math.unit(1.1, "feet"),
  49989. name: "Hand",
  49990. image: {
  49991. source: "./media/characters/myra-aisling/hand.svg"
  49992. }
  49993. },
  49994. paw: {
  49995. height: math.unit(1.23, "feet"),
  49996. name: "Paw",
  49997. image: {
  49998. source: "./media/characters/myra-aisling/paw.svg"
  49999. }
  50000. },
  50001. },
  50002. [
  50003. {
  50004. name: "Normal",
  50005. height: math.unit(160, "feet"),
  50006. default: true
  50007. },
  50008. ]
  50009. ))
  50010. characterMakers.push(() => makeCharacter(
  50011. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  50012. {
  50013. front: {
  50014. height: math.unit(6, "feet"),
  50015. name: "Front",
  50016. image: {
  50017. source: "./media/characters/tenley-sidero/front.svg",
  50018. extra: 1365/1276,
  50019. bottom: 47/1412
  50020. }
  50021. },
  50022. back: {
  50023. height: math.unit(6, "feet"),
  50024. name: "Back",
  50025. image: {
  50026. source: "./media/characters/tenley-sidero/back.svg",
  50027. extra: 1383/1283,
  50028. bottom: 35/1418
  50029. }
  50030. },
  50031. dressed: {
  50032. height: math.unit(6, "feet"),
  50033. name: "Dressed",
  50034. image: {
  50035. source: "./media/characters/tenley-sidero/dressed.svg",
  50036. extra: 1364/1275,
  50037. bottom: 42/1406
  50038. }
  50039. },
  50040. head: {
  50041. height: math.unit(1.47, "feet"),
  50042. name: "Head",
  50043. image: {
  50044. source: "./media/characters/tenley-sidero/head.svg",
  50045. extra: 610/490,
  50046. bottom: 0/610
  50047. }
  50048. },
  50049. },
  50050. [
  50051. {
  50052. name: "Normal",
  50053. height: math.unit(154, "feet"),
  50054. default: true
  50055. },
  50056. ]
  50057. ))
  50058. characterMakers.push(() => makeCharacter(
  50059. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  50060. {
  50061. front: {
  50062. height: math.unit(5, "inches"),
  50063. name: "Front",
  50064. image: {
  50065. source: "./media/characters/mallory/front.svg",
  50066. extra: 1919/1678,
  50067. bottom: 29/1948
  50068. }
  50069. },
  50070. hand: {
  50071. height: math.unit(0.73, "inches"),
  50072. name: "Hand",
  50073. image: {
  50074. source: "./media/characters/mallory/hand.svg"
  50075. }
  50076. },
  50077. paw: {
  50078. height: math.unit(0.68, "inches"),
  50079. name: "Paw",
  50080. image: {
  50081. source: "./media/characters/mallory/paw.svg"
  50082. }
  50083. },
  50084. },
  50085. [
  50086. {
  50087. name: "Small",
  50088. height: math.unit(5, "inches"),
  50089. default: true
  50090. },
  50091. ]
  50092. ))
  50093. characterMakers.push(() => makeCharacter(
  50094. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  50095. {
  50096. naked: {
  50097. height: math.unit(6, "feet"),
  50098. name: "Naked",
  50099. image: {
  50100. source: "./media/characters/mab/naked.svg",
  50101. extra: 1855/1757,
  50102. bottom: 208/2063
  50103. }
  50104. },
  50105. outside: {
  50106. height: math.unit(6, "feet"),
  50107. name: "Outside",
  50108. image: {
  50109. source: "./media/characters/mab/outside.svg",
  50110. extra: 1855/1757,
  50111. bottom: 208/2063
  50112. }
  50113. },
  50114. party: {
  50115. height: math.unit(6, "feet"),
  50116. name: "Party",
  50117. image: {
  50118. source: "./media/characters/mab/party.svg",
  50119. extra: 1855/1757,
  50120. bottom: 208/2063
  50121. }
  50122. },
  50123. },
  50124. [
  50125. {
  50126. name: "Normal",
  50127. height: math.unit(165, "feet"),
  50128. default: true
  50129. },
  50130. ]
  50131. ))
  50132. characterMakers.push(() => makeCharacter(
  50133. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  50134. {
  50135. feral: {
  50136. height: math.unit(12, "feet"),
  50137. weight: math.unit(20000, "lb"),
  50138. name: "Side",
  50139. image: {
  50140. source: "./media/characters/winter/feral.svg",
  50141. extra: 1286/943,
  50142. bottom: 112/1398
  50143. },
  50144. form: "feral",
  50145. default: true
  50146. },
  50147. feralNsfw: {
  50148. height: math.unit(12, "feet"),
  50149. weight: math.unit(20000, "lb"),
  50150. name: "Side (NSFW)",
  50151. image: {
  50152. source: "./media/characters/winter/feral-nsfw.svg",
  50153. extra: 1286/943,
  50154. bottom: 112/1398
  50155. },
  50156. form: "feral"
  50157. },
  50158. dick: {
  50159. height: math.unit(3.79, "feet"),
  50160. name: "Dick",
  50161. image: {
  50162. source: "./media/characters/winter/dick.svg"
  50163. },
  50164. form: "feral"
  50165. },
  50166. anthro: {
  50167. height: math.unit(12, "feet"),
  50168. weight: math.unit(10, "tons"),
  50169. name: "Anthro",
  50170. image: {
  50171. source: "./media/characters/winter/anthro.svg",
  50172. extra: 1701/1553,
  50173. bottom: 64/1765
  50174. },
  50175. form: "anthro",
  50176. default: true
  50177. },
  50178. },
  50179. [
  50180. {
  50181. name: "Big",
  50182. height: math.unit(12, "feet"),
  50183. default: true,
  50184. form: "feral"
  50185. },
  50186. {
  50187. name: "Big",
  50188. height: math.unit(12, "feet"),
  50189. default: true,
  50190. form: "anthro"
  50191. },
  50192. ],
  50193. {
  50194. "feral": {
  50195. name: "Feral",
  50196. default: true
  50197. },
  50198. "anthro": {
  50199. name: "Anthro"
  50200. }
  50201. }
  50202. ))
  50203. characterMakers.push(() => makeCharacter(
  50204. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  50205. {
  50206. front: {
  50207. height: math.unit(4.1, "inches"),
  50208. name: "Front",
  50209. image: {
  50210. source: "./media/characters/alto/front.svg",
  50211. extra: 736/627,
  50212. bottom: 90/826
  50213. }
  50214. },
  50215. },
  50216. [
  50217. {
  50218. name: "Normal",
  50219. height: math.unit(4.1, "inches"),
  50220. default: true
  50221. },
  50222. ]
  50223. ))
  50224. characterMakers.push(() => makeCharacter(
  50225. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  50226. {
  50227. sitting: {
  50228. height: math.unit(3, "feet"),
  50229. name: "Sitting",
  50230. image: {
  50231. source: "./media/characters/ratstrid-v/sitting.svg",
  50232. extra: 355/310,
  50233. bottom: 136/491
  50234. }
  50235. },
  50236. },
  50237. [
  50238. {
  50239. name: "Normal",
  50240. height: math.unit(3, "feet"),
  50241. default: true
  50242. },
  50243. ]
  50244. ))
  50245. characterMakers.push(() => makeCharacter(
  50246. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  50247. {
  50248. back: {
  50249. height: math.unit(6, "feet"),
  50250. weight: math.unit(450, "lb"),
  50251. name: "Back",
  50252. image: {
  50253. source: "./media/characters/siz/back.svg",
  50254. extra: 1449/1274,
  50255. bottom: 13/1462
  50256. }
  50257. },
  50258. },
  50259. [
  50260. {
  50261. name: "Smallest",
  50262. height: math.unit(18 + 3/12, "feet")
  50263. },
  50264. {
  50265. name: "Modest",
  50266. height: math.unit(56 + 8/12, "feet"),
  50267. default: true
  50268. },
  50269. {
  50270. name: "Largest",
  50271. height: math.unit(3590, "feet")
  50272. },
  50273. ]
  50274. ))
  50275. characterMakers.push(() => makeCharacter(
  50276. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  50277. {
  50278. front: {
  50279. height: math.unit(5 + 9/12, "feet"),
  50280. weight: math.unit(150, "lb"),
  50281. name: "Front",
  50282. image: {
  50283. source: "./media/characters/ven/front.svg",
  50284. extra: 1372/1320,
  50285. bottom: 73/1445
  50286. }
  50287. },
  50288. side: {
  50289. height: math.unit(5 + 9/12, "feet"),
  50290. weight: math.unit(1150, "lb"),
  50291. name: "Side",
  50292. image: {
  50293. source: "./media/characters/ven/side.svg",
  50294. extra: 1119/1070,
  50295. bottom: 42/1161
  50296. },
  50297. default: true
  50298. },
  50299. },
  50300. [
  50301. {
  50302. name: "Normal",
  50303. height: math.unit(5 + 9/12, "feet"),
  50304. default: true
  50305. },
  50306. ]
  50307. ))
  50308. characterMakers.push(() => makeCharacter(
  50309. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  50310. {
  50311. front: {
  50312. height: math.unit(12, "feet"),
  50313. weight: math.unit(1000, "kg"),
  50314. name: "Front",
  50315. image: {
  50316. source: "./media/characters/maple/front.svg",
  50317. extra: 1193/1081,
  50318. bottom: 22/1215
  50319. }
  50320. },
  50321. },
  50322. [
  50323. {
  50324. name: "Compressed",
  50325. height: math.unit(7, "feet")
  50326. },
  50327. {
  50328. name: "Normal",
  50329. height: math.unit(12, "feet"),
  50330. default: true
  50331. },
  50332. ]
  50333. ))
  50334. characterMakers.push(() => makeCharacter(
  50335. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  50336. {
  50337. front: {
  50338. height: math.unit(9, "feet"),
  50339. weight: math.unit(1500, "lb"),
  50340. name: "Front",
  50341. image: {
  50342. source: "./media/characters/nora/front.svg",
  50343. extra: 1348/1286,
  50344. bottom: 218/1566
  50345. }
  50346. },
  50347. erect: {
  50348. height: math.unit(9, "feet"),
  50349. weight: math.unit(11500, "lb"),
  50350. name: "Erect",
  50351. image: {
  50352. source: "./media/characters/nora/erect.svg",
  50353. extra: 1488/1433,
  50354. bottom: 133/1621
  50355. }
  50356. },
  50357. },
  50358. [
  50359. {
  50360. name: "Normal",
  50361. height: math.unit(9, "feet"),
  50362. default: true
  50363. },
  50364. ]
  50365. ))
  50366. characterMakers.push(() => makeCharacter(
  50367. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  50368. {
  50369. front: {
  50370. height: math.unit(25, "feet"),
  50371. weight: math.unit(27500, "lb"),
  50372. name: "Front",
  50373. image: {
  50374. source: "./media/characters/north-caudin/front.svg",
  50375. extra: 1184/1082,
  50376. bottom: 23/1207
  50377. }
  50378. },
  50379. },
  50380. [
  50381. {
  50382. name: "Compressed",
  50383. height: math.unit(10, "feet")
  50384. },
  50385. {
  50386. name: "Normal",
  50387. height: math.unit(25, "feet"),
  50388. default: true
  50389. },
  50390. ]
  50391. ))
  50392. characterMakers.push(() => makeCharacter(
  50393. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  50394. {
  50395. front: {
  50396. height: math.unit(9, "feet"),
  50397. weight: math.unit(1250, "lb"),
  50398. name: "Front",
  50399. image: {
  50400. source: "./media/characters/merrian/front.svg",
  50401. extra: 2393/2304,
  50402. bottom: 40/2433
  50403. }
  50404. },
  50405. },
  50406. [
  50407. {
  50408. name: "Normal",
  50409. height: math.unit(9, "feet"),
  50410. default: true
  50411. },
  50412. ]
  50413. ))
  50414. characterMakers.push(() => makeCharacter(
  50415. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  50416. {
  50417. front: {
  50418. height: math.unit(9, "feet"),
  50419. weight: math.unit(1000, "lb"),
  50420. name: "Front",
  50421. image: {
  50422. source: "./media/characters/hazel/front.svg",
  50423. extra: 2351/2298,
  50424. bottom: 38/2389
  50425. }
  50426. },
  50427. },
  50428. [
  50429. {
  50430. name: "Normal",
  50431. height: math.unit(9, "feet"),
  50432. default: true
  50433. },
  50434. ]
  50435. ))
  50436. characterMakers.push(() => makeCharacter(
  50437. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  50438. {
  50439. front: {
  50440. height: math.unit(13, "feet"),
  50441. weight: math.unit(3200, "lb"),
  50442. name: "Front",
  50443. image: {
  50444. source: "./media/characters/emma/front.svg",
  50445. extra: 2263/2029,
  50446. bottom: 68/2331
  50447. }
  50448. },
  50449. },
  50450. [
  50451. {
  50452. name: "Normal",
  50453. height: math.unit(13, "feet"),
  50454. default: true
  50455. },
  50456. ]
  50457. ))
  50458. characterMakers.push(() => makeCharacter(
  50459. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  50460. {
  50461. front: {
  50462. height: math.unit(11 + 9/12, "feet"),
  50463. weight: math.unit(2500, "lb"),
  50464. name: "Front",
  50465. image: {
  50466. source: "./media/characters/ilumina/front.svg",
  50467. extra: 2248/2209,
  50468. bottom: 164/2412
  50469. }
  50470. },
  50471. },
  50472. [
  50473. {
  50474. name: "Normal",
  50475. height: math.unit(11 + 9/12, "feet"),
  50476. default: true
  50477. },
  50478. ]
  50479. ))
  50480. characterMakers.push(() => makeCharacter(
  50481. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  50482. {
  50483. front: {
  50484. height: math.unit(8 + 10/12, "feet"),
  50485. weight: math.unit(1350, "lb"),
  50486. name: "Front",
  50487. image: {
  50488. source: "./media/characters/moonshine/front.svg",
  50489. extra: 2395/2288,
  50490. bottom: 40/2435
  50491. }
  50492. },
  50493. },
  50494. [
  50495. {
  50496. name: "Normal",
  50497. height: math.unit(8 + 10/12, "feet"),
  50498. default: true
  50499. },
  50500. ]
  50501. ))
  50502. characterMakers.push(() => makeCharacter(
  50503. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  50504. {
  50505. front: {
  50506. height: math.unit(14, "feet"),
  50507. weight: math.unit(3400, "lb"),
  50508. name: "Front",
  50509. image: {
  50510. source: "./media/characters/aletia/front.svg",
  50511. extra: 1185/1052,
  50512. bottom: 21/1206
  50513. }
  50514. },
  50515. },
  50516. [
  50517. {
  50518. name: "Compressed",
  50519. height: math.unit(8, "feet")
  50520. },
  50521. {
  50522. name: "Normal",
  50523. height: math.unit(14, "feet"),
  50524. default: true
  50525. },
  50526. ]
  50527. ))
  50528. characterMakers.push(() => makeCharacter(
  50529. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  50530. {
  50531. front: {
  50532. height: math.unit(17, "feet"),
  50533. weight: math.unit(6500, "lb"),
  50534. name: "Front",
  50535. image: {
  50536. source: "./media/characters/deidra/front.svg",
  50537. extra: 1201/1081,
  50538. bottom: 16/1217
  50539. }
  50540. },
  50541. },
  50542. [
  50543. {
  50544. name: "Compressed",
  50545. height: math.unit(9 + 6/12, "feet")
  50546. },
  50547. {
  50548. name: "Normal",
  50549. height: math.unit(17, "feet"),
  50550. default: true
  50551. },
  50552. ]
  50553. ))
  50554. characterMakers.push(() => makeCharacter(
  50555. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  50556. {
  50557. front: {
  50558. height: math.unit(7 + 4/12, "feet"),
  50559. weight: math.unit(280, "lb"),
  50560. name: "Front",
  50561. image: {
  50562. source: "./media/characters/freki-yrmori/front.svg",
  50563. extra: 1286/1182,
  50564. bottom: 29/1315
  50565. }
  50566. },
  50567. maw: {
  50568. height: math.unit(0.9, "feet"),
  50569. name: "Maw",
  50570. image: {
  50571. source: "./media/characters/freki-yrmori/maw.svg"
  50572. }
  50573. },
  50574. },
  50575. [
  50576. {
  50577. name: "Normal",
  50578. height: math.unit(7 + 4/12, "feet"),
  50579. default: true
  50580. },
  50581. {
  50582. name: "Macro",
  50583. height: math.unit(38.5, "meters")
  50584. },
  50585. ]
  50586. ))
  50587. characterMakers.push(() => makeCharacter(
  50588. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  50589. {
  50590. side: {
  50591. height: math.unit(47.2, "meters"),
  50592. weight: math.unit(10000, "tons"),
  50593. name: "Side",
  50594. image: {
  50595. source: "./media/characters/aetherios/side.svg",
  50596. extra: 2363/642,
  50597. bottom: 221/2584
  50598. }
  50599. },
  50600. top: {
  50601. height: math.unit(240, "meters"),
  50602. weight: math.unit(10000, "tons"),
  50603. name: "Top",
  50604. image: {
  50605. source: "./media/characters/aetherios/top.svg"
  50606. }
  50607. },
  50608. bottom: {
  50609. height: math.unit(240, "meters"),
  50610. weight: math.unit(10000, "tons"),
  50611. name: "Bottom",
  50612. image: {
  50613. source: "./media/characters/aetherios/bottom.svg"
  50614. }
  50615. },
  50616. head: {
  50617. height: math.unit(38.6, "meters"),
  50618. name: "Head",
  50619. image: {
  50620. source: "./media/characters/aetherios/head.svg",
  50621. extra: 1335/1112,
  50622. bottom: 0/1335
  50623. }
  50624. },
  50625. front: {
  50626. height: math.unit(29, "meters"),
  50627. name: "Front",
  50628. image: {
  50629. source: "./media/characters/aetherios/front.svg",
  50630. extra: 1266/953,
  50631. bottom: 158/1424
  50632. }
  50633. },
  50634. maw: {
  50635. height: math.unit(16.37, "meters"),
  50636. name: "Maw",
  50637. image: {
  50638. source: "./media/characters/aetherios/maw.svg",
  50639. extra: 748/637,
  50640. bottom: 0/748
  50641. },
  50642. extraAttributes: {
  50643. preyCapacity: {
  50644. name: "Capacity",
  50645. power: 3,
  50646. type: "volume",
  50647. base: math.unit(1000, "people")
  50648. },
  50649. tongueSize: {
  50650. name: "Tongue Size",
  50651. power: 2,
  50652. type: "area",
  50653. base: math.unit(21, "m^2")
  50654. }
  50655. }
  50656. },
  50657. forepaw: {
  50658. height: math.unit(18, "meters"),
  50659. name: "Forepaw",
  50660. image: {
  50661. source: "./media/characters/aetherios/forepaw.svg"
  50662. }
  50663. },
  50664. hindpaw: {
  50665. height: math.unit(23, "meters"),
  50666. name: "Hindpaw",
  50667. image: {
  50668. source: "./media/characters/aetherios/hindpaw.svg"
  50669. }
  50670. },
  50671. genitals: {
  50672. height: math.unit(42, "meters"),
  50673. name: "Genitals",
  50674. image: {
  50675. source: "./media/characters/aetherios/genitals.svg"
  50676. }
  50677. },
  50678. },
  50679. [
  50680. {
  50681. name: "Normal",
  50682. height: math.unit(47.2, "meters"),
  50683. default: true
  50684. },
  50685. {
  50686. name: "Macro",
  50687. height: math.unit(160, "meters")
  50688. },
  50689. {
  50690. name: "Mega",
  50691. height: math.unit(1.87, "km")
  50692. },
  50693. {
  50694. name: "Giga",
  50695. height: math.unit(40000, "km")
  50696. },
  50697. {
  50698. name: "Stellar",
  50699. height: math.unit(158000000, "km")
  50700. },
  50701. {
  50702. name: "Cosmic",
  50703. height: math.unit(9.46e12, "km")
  50704. },
  50705. ]
  50706. ))
  50707. characterMakers.push(() => makeCharacter(
  50708. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  50709. {
  50710. front: {
  50711. height: math.unit(5 + 4/12, "feet"),
  50712. weight: math.unit(80, "lb"),
  50713. name: "Front",
  50714. image: {
  50715. source: "./media/characters/mizu-gieeg/front.svg",
  50716. extra: 850/709,
  50717. bottom: 52/902
  50718. }
  50719. },
  50720. back: {
  50721. height: math.unit(5 + 4/12, "feet"),
  50722. weight: math.unit(80, "lb"),
  50723. name: "Back",
  50724. image: {
  50725. source: "./media/characters/mizu-gieeg/back.svg",
  50726. extra: 882/745,
  50727. bottom: 25/907
  50728. }
  50729. },
  50730. },
  50731. [
  50732. {
  50733. name: "Normal",
  50734. height: math.unit(5 + 4/12, "feet"),
  50735. default: true
  50736. },
  50737. ]
  50738. ))
  50739. characterMakers.push(() => makeCharacter(
  50740. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  50741. {
  50742. front: {
  50743. height: math.unit(6, "feet"),
  50744. name: "Front",
  50745. image: {
  50746. source: "./media/characters/roselle-st-papier/front.svg",
  50747. extra: 1430/1280,
  50748. bottom: 37/1467
  50749. }
  50750. },
  50751. back: {
  50752. height: math.unit(6, "feet"),
  50753. name: "Back",
  50754. image: {
  50755. source: "./media/characters/roselle-st-papier/back.svg",
  50756. extra: 1491/1296,
  50757. bottom: 23/1514
  50758. }
  50759. },
  50760. ear: {
  50761. height: math.unit(1.26, "feet"),
  50762. name: "Ear",
  50763. image: {
  50764. source: "./media/characters/roselle-st-papier/ear.svg"
  50765. }
  50766. },
  50767. },
  50768. [
  50769. {
  50770. name: "Normal",
  50771. height: math.unit(150, "feet"),
  50772. default: true
  50773. },
  50774. ]
  50775. ))
  50776. characterMakers.push(() => makeCharacter(
  50777. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  50778. {
  50779. front: {
  50780. height: math.unit(1, "inches"),
  50781. name: "Front",
  50782. image: {
  50783. source: "./media/characters/valargent/front.svg",
  50784. extra: 1825/1694,
  50785. bottom: 62/1887
  50786. }
  50787. },
  50788. back: {
  50789. height: math.unit(1, "inches"),
  50790. name: "Back",
  50791. image: {
  50792. source: "./media/characters/valargent/back.svg",
  50793. extra: 1775/1682,
  50794. bottom: 88/1863
  50795. }
  50796. },
  50797. },
  50798. [
  50799. {
  50800. name: "Micro",
  50801. height: math.unit(1, "inch"),
  50802. default: true
  50803. },
  50804. ]
  50805. ))
  50806. characterMakers.push(() => makeCharacter(
  50807. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  50808. {
  50809. front: {
  50810. height: math.unit(3.4, "meters"),
  50811. name: "Front",
  50812. image: {
  50813. source: "./media/characters/zarina/front.svg",
  50814. extra: 1733/1425,
  50815. bottom: 93/1826
  50816. }
  50817. },
  50818. squatting: {
  50819. height: math.unit(2.14, "meters"),
  50820. name: "Squatting",
  50821. image: {
  50822. source: "./media/characters/zarina/squatting.svg",
  50823. extra: 1073/788,
  50824. bottom: 63/1136
  50825. }
  50826. },
  50827. back: {
  50828. height: math.unit(2.14, "meters"),
  50829. name: "Back",
  50830. image: {
  50831. source: "./media/characters/zarina/back.svg",
  50832. extra: 1128/885,
  50833. bottom: 0/1128
  50834. }
  50835. },
  50836. },
  50837. [
  50838. {
  50839. name: "Normal",
  50840. height: math.unit(3.4, "meters"),
  50841. default: true
  50842. },
  50843. {
  50844. name: "Big",
  50845. height: math.unit(5, "meters")
  50846. },
  50847. {
  50848. name: "Macro",
  50849. height: math.unit(110, "meters")
  50850. },
  50851. ]
  50852. ))
  50853. characterMakers.push(() => makeCharacter(
  50854. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  50855. {
  50856. front: {
  50857. height: math.unit(7, "feet"),
  50858. name: "Front",
  50859. image: {
  50860. source: "./media/characters/ventus-astro-fox/front.svg",
  50861. extra: 1792/1623,
  50862. bottom: 28/1820
  50863. }
  50864. },
  50865. back: {
  50866. height: math.unit(7, "feet"),
  50867. name: "Back",
  50868. image: {
  50869. source: "./media/characters/ventus-astro-fox/back.svg",
  50870. extra: 1789/1620,
  50871. bottom: 31/1820
  50872. }
  50873. },
  50874. outfit: {
  50875. height: math.unit(7, "feet"),
  50876. name: "Outfit",
  50877. image: {
  50878. source: "./media/characters/ventus-astro-fox/outfit.svg",
  50879. extra: 1054/925,
  50880. bottom: 15/1069
  50881. }
  50882. },
  50883. head: {
  50884. height: math.unit(1.12, "feet"),
  50885. name: "Head",
  50886. image: {
  50887. source: "./media/characters/ventus-astro-fox/head.svg",
  50888. extra: 866/504,
  50889. bottom: 0/866
  50890. }
  50891. },
  50892. hand: {
  50893. height: math.unit(1, "feet"),
  50894. name: "Hand",
  50895. image: {
  50896. source: "./media/characters/ventus-astro-fox/hand.svg"
  50897. }
  50898. },
  50899. paw: {
  50900. height: math.unit(1.5, "feet"),
  50901. name: "Paw",
  50902. image: {
  50903. source: "./media/characters/ventus-astro-fox/paw.svg"
  50904. }
  50905. },
  50906. },
  50907. [
  50908. {
  50909. name: "Normal",
  50910. height: math.unit(7, "feet"),
  50911. default: true
  50912. },
  50913. {
  50914. name: "Macro",
  50915. height: math.unit(200, "feet")
  50916. },
  50917. {
  50918. name: "Cosmic",
  50919. height: math.unit(3, "universes")
  50920. },
  50921. ]
  50922. ))
  50923. characterMakers.push(() => makeCharacter(
  50924. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  50925. {
  50926. front: {
  50927. height: math.unit(3, "meters"),
  50928. weight: math.unit(7000, "lb"),
  50929. name: "Front",
  50930. image: {
  50931. source: "./media/characters/core-t/front.svg",
  50932. extra: 5729/4941,
  50933. bottom: 1129/6858
  50934. }
  50935. },
  50936. },
  50937. [
  50938. {
  50939. name: "Big",
  50940. height: math.unit(3, "meters"),
  50941. default: true
  50942. },
  50943. ]
  50944. ))
  50945. characterMakers.push(() => makeCharacter(
  50946. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  50947. {
  50948. normal: {
  50949. height: math.unit(6 + 6/12, "feet"),
  50950. weight: math.unit(275, "lb"),
  50951. name: "Front",
  50952. image: {
  50953. source: "./media/characters/cadbunny/normal.svg",
  50954. extra: 1129/947,
  50955. bottom: 93/1222
  50956. },
  50957. default: true,
  50958. form: "normal"
  50959. },
  50960. gigantamax: {
  50961. height: math.unit(26, "feet"),
  50962. weight: math.unit(16000, "lb"),
  50963. name: "Front",
  50964. image: {
  50965. source: "./media/characters/cadbunny/gigantamax.svg",
  50966. extra: 1133/944,
  50967. bottom: 90/1223
  50968. },
  50969. default: true,
  50970. form: "gigantamax"
  50971. },
  50972. },
  50973. [
  50974. {
  50975. name: "Normal",
  50976. height: math.unit(6 + 6/12, "feet"),
  50977. default: true,
  50978. form: "normal"
  50979. },
  50980. {
  50981. name: "Small",
  50982. height: math.unit(26, "feet"),
  50983. default: true,
  50984. form: "gigantamax"
  50985. },
  50986. {
  50987. name: "Large",
  50988. height: math.unit(78, "feet"),
  50989. form: "gigantamax"
  50990. },
  50991. ],
  50992. {
  50993. "normal": {
  50994. name: "Normal",
  50995. default: true
  50996. },
  50997. "gigantamax": {
  50998. name: "Gigantamax"
  50999. }
  51000. }
  51001. ))
  51002. characterMakers.push(() => makeCharacter(
  51003. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  51004. {
  51005. anthroFront: {
  51006. height: math.unit(8, "feet"),
  51007. weight: math.unit(300, "lb"),
  51008. name: "Front",
  51009. image: {
  51010. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  51011. extra: 1272/1176,
  51012. bottom: 53/1325
  51013. },
  51014. form: "anthro",
  51015. default: true
  51016. },
  51017. feralSide: {
  51018. height: math.unit(4, "feet"),
  51019. weight: math.unit(250, "lb"),
  51020. name: "Side",
  51021. image: {
  51022. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  51023. extra: 731/621,
  51024. bottom: 0/731
  51025. },
  51026. form: "feral",
  51027. default: true
  51028. },
  51029. },
  51030. [
  51031. {
  51032. name: "Regular",
  51033. height: math.unit(8, "feet"),
  51034. form: "anthro"
  51035. },
  51036. {
  51037. name: "Macro",
  51038. height: math.unit(250, "feet"),
  51039. form: "anthro",
  51040. default: true
  51041. },
  51042. {
  51043. name: "Regular",
  51044. height: math.unit(4, "feet"),
  51045. form: "feral"
  51046. },
  51047. {
  51048. name: "Macro",
  51049. height: math.unit(125, "feet"),
  51050. form: "feral",
  51051. default: true
  51052. },
  51053. ],
  51054. {
  51055. "anthro": {
  51056. name: "Anthro",
  51057. default: true
  51058. },
  51059. "feral": {
  51060. name: "Feral",
  51061. },
  51062. }
  51063. ))
  51064. characterMakers.push(() => makeCharacter(
  51065. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  51066. {
  51067. front: {
  51068. height: math.unit(11 + 10/12, "feet"),
  51069. weight: math.unit(1587, "kg"),
  51070. name: "Front",
  51071. image: {
  51072. source: "./media/characters/maple-javira-dragon/front.svg",
  51073. extra: 1136/744,
  51074. bottom: 73/1209
  51075. }
  51076. },
  51077. side: {
  51078. height: math.unit(11 + 10/12, "feet"),
  51079. weight: math.unit(1587, "kg"),
  51080. name: "Side",
  51081. image: {
  51082. source: "./media/characters/maple-javira-dragon/side.svg",
  51083. extra: 712/505,
  51084. bottom: 17/729
  51085. }
  51086. },
  51087. head: {
  51088. height: math.unit(8.05, "feet"),
  51089. name: "Head",
  51090. image: {
  51091. source: "./media/characters/maple-javira-dragon/head.svg",
  51092. extra: 1420/1344,
  51093. bottom: 0/1420
  51094. }
  51095. },
  51096. },
  51097. [
  51098. {
  51099. name: "Normal",
  51100. height: math.unit(11 + 10/12, "feet"),
  51101. default: true
  51102. },
  51103. ]
  51104. ))
  51105. characterMakers.push(() => makeCharacter(
  51106. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  51107. {
  51108. front: {
  51109. height: math.unit(117, "cm"),
  51110. weight: math.unit(50, "kg"),
  51111. name: "Front",
  51112. image: {
  51113. source: "./media/characters/sonia-wyverntail/front.svg",
  51114. extra: 708/592,
  51115. bottom: 25/733
  51116. }
  51117. },
  51118. },
  51119. [
  51120. {
  51121. name: "Normal",
  51122. height: math.unit(117, "cm"),
  51123. default: true
  51124. },
  51125. ]
  51126. ))
  51127. characterMakers.push(() => makeCharacter(
  51128. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  51129. {
  51130. front: {
  51131. height: math.unit(6 + 5/12, "feet"),
  51132. name: "Front",
  51133. image: {
  51134. source: "./media/characters/micah/front.svg",
  51135. extra: 1758/1546,
  51136. bottom: 214/1972
  51137. }
  51138. },
  51139. },
  51140. [
  51141. {
  51142. name: "Normal",
  51143. height: math.unit(6 + 5/12, "feet"),
  51144. default: true
  51145. },
  51146. ]
  51147. ))
  51148. characterMakers.push(() => makeCharacter(
  51149. { name: "Zarya", species: ["raccoon"], tags: ["anthro"] },
  51150. {
  51151. front: {
  51152. height: math.unit(5 + 10/12, "feet"),
  51153. weight: math.unit(220, "lb"),
  51154. name: "Front",
  51155. image: {
  51156. source: "./media/characters/zarya/front.svg",
  51157. extra: 593/572,
  51158. bottom: 50/643
  51159. }
  51160. },
  51161. back: {
  51162. height: math.unit(5 + 10/12, "feet"),
  51163. weight: math.unit(220, "lb"),
  51164. name: "Back",
  51165. image: {
  51166. source: "./media/characters/zarya/back.svg",
  51167. extra: 603/582,
  51168. bottom: 38/641
  51169. }
  51170. },
  51171. },
  51172. [
  51173. {
  51174. name: "Normal",
  51175. height: math.unit(5 + 10/12, "feet"),
  51176. default: true
  51177. },
  51178. ]
  51179. ))
  51180. characterMakers.push(() => makeCharacter(
  51181. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  51182. {
  51183. front: {
  51184. height: math.unit(7.5, "feet"),
  51185. name: "Front",
  51186. image: {
  51187. source: "./media/characters/sven-hatisson/front.svg",
  51188. extra: 917/857,
  51189. bottom: 42/959
  51190. }
  51191. },
  51192. back: {
  51193. height: math.unit(7.5, "feet"),
  51194. name: "Back",
  51195. image: {
  51196. source: "./media/characters/sven-hatisson/back.svg",
  51197. extra: 903/856,
  51198. bottom: 15/918
  51199. }
  51200. },
  51201. },
  51202. [
  51203. {
  51204. name: "Base Height",
  51205. height: math.unit(7.5, "feet")
  51206. },
  51207. {
  51208. name: "Usual Height",
  51209. height: math.unit(13.5, "feet"),
  51210. default: true
  51211. },
  51212. {
  51213. name: "Smaller Macro",
  51214. height: math.unit(85, "feet")
  51215. },
  51216. {
  51217. name: "Moderate Macro",
  51218. height: math.unit(320, "feet")
  51219. },
  51220. {
  51221. name: "Large Macro",
  51222. height: math.unit(1000, "feet")
  51223. },
  51224. {
  51225. name: "Largest Size",
  51226. height: math.unit(2, "miles")
  51227. },
  51228. ]
  51229. ))
  51230. characterMakers.push(() => makeCharacter(
  51231. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  51232. {
  51233. side: {
  51234. height: math.unit(1.8, "meters"),
  51235. weight: math.unit(275, "kg"),
  51236. name: "Side",
  51237. image: {
  51238. source: "./media/characters/terra/side.svg",
  51239. extra: 1273/1147,
  51240. bottom: 0/1273
  51241. }
  51242. },
  51243. },
  51244. [
  51245. {
  51246. name: "Normal",
  51247. height: math.unit(16.2, "meters"),
  51248. default: true
  51249. },
  51250. ]
  51251. ))
  51252. characterMakers.push(() => makeCharacter(
  51253. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  51254. {
  51255. borzoiFront: {
  51256. height: math.unit(6 + 9/12, "feet"),
  51257. name: "Front",
  51258. image: {
  51259. source: "./media/characters/rae/borzoi-front.svg",
  51260. extra: 1161/1098,
  51261. bottom: 31/1192
  51262. },
  51263. form: "borzoi",
  51264. default: true
  51265. },
  51266. werewolfFront: {
  51267. height: math.unit(8 + 7/12, "feet"),
  51268. name: "Front",
  51269. image: {
  51270. source: "./media/characters/rae/werewolf-front.svg",
  51271. extra: 1411/1334,
  51272. bottom: 127/1538
  51273. },
  51274. form: "werewolf",
  51275. default: true
  51276. },
  51277. },
  51278. [
  51279. {
  51280. name: "Normal",
  51281. height: math.unit(6 + 9/12, "feet"),
  51282. default: true,
  51283. form: "borzoi"
  51284. },
  51285. {
  51286. name: "Normal",
  51287. height: math.unit(8 + 7/12, "feet"),
  51288. default: true,
  51289. form: "werewolf"
  51290. },
  51291. ],
  51292. {
  51293. "borzoi": {
  51294. name: "Borzoi",
  51295. default: true
  51296. },
  51297. "werewolf": {
  51298. name: "Werewolf",
  51299. },
  51300. }
  51301. ))
  51302. characterMakers.push(() => makeCharacter(
  51303. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  51304. {
  51305. front: {
  51306. height: math.unit(8 + 7/12, "feet"),
  51307. weight: math.unit(482, "lb"),
  51308. name: "Front",
  51309. image: {
  51310. source: "./media/characters/kit/front.svg",
  51311. extra: 1247/1103,
  51312. bottom: 41/1288
  51313. }
  51314. },
  51315. back: {
  51316. height: math.unit(8 + 7/12, "feet"),
  51317. weight: math.unit(482, "lb"),
  51318. name: "Back",
  51319. image: {
  51320. source: "./media/characters/kit/back.svg",
  51321. extra: 1252/1123,
  51322. bottom: 21/1273
  51323. }
  51324. },
  51325. paw: {
  51326. height: math.unit(1.46, "feet"),
  51327. name: "Paw",
  51328. image: {
  51329. source: "./media/characters/kit/paw.svg"
  51330. }
  51331. },
  51332. },
  51333. [
  51334. {
  51335. name: "Normal",
  51336. height: math.unit(2.61, "meters"),
  51337. default: true
  51338. },
  51339. {
  51340. name: "\"Tall\"",
  51341. height: math.unit(8.21, "meters")
  51342. },
  51343. {
  51344. name: "Tall",
  51345. height: math.unit(19.6, "meters")
  51346. },
  51347. {
  51348. name: "Very Tall",
  51349. height: math.unit(57.91, "meters")
  51350. },
  51351. {
  51352. name: "Semi-Macro",
  51353. height: math.unit(138.64, "meters")
  51354. },
  51355. {
  51356. name: "Macro",
  51357. height: math.unit(831.99, "meters")
  51358. },
  51359. {
  51360. name: "EX-Macro",
  51361. height: math.unit(96451121, "meters")
  51362. },
  51363. {
  51364. name: "S1-Omnipotent",
  51365. height: math.unit(4.42074e+9, "meters")
  51366. },
  51367. {
  51368. name: "S2-Omnipotent",
  51369. height: math.unit(9.42074e+17, "meters")
  51370. },
  51371. {
  51372. name: "Omnipotent",
  51373. height: math.unit(4.23112e+24, "meters")
  51374. },
  51375. {
  51376. name: "Hypergod",
  51377. height: math.unit(5.05176e+27, "meters")
  51378. },
  51379. {
  51380. name: "Hypergod-EX",
  51381. height: math.unit(9.45532e+49, "meters")
  51382. },
  51383. {
  51384. name: "Hypergod-SP",
  51385. height: math.unit(9.45532e+195, "meters")
  51386. },
  51387. ]
  51388. ))
  51389. characterMakers.push(() => makeCharacter(
  51390. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  51391. {
  51392. side: {
  51393. height: math.unit(0.6, "meters"),
  51394. weight: math.unit(24, "kg"),
  51395. name: "Side",
  51396. image: {
  51397. source: "./media/characters/celeste/side.svg",
  51398. extra: 810/517,
  51399. bottom: 53/863
  51400. }
  51401. },
  51402. },
  51403. [
  51404. {
  51405. name: "Velociraptor",
  51406. height: math.unit(0.6, "meters"),
  51407. default: true
  51408. },
  51409. {
  51410. name: "Utahraptor",
  51411. height: math.unit(1.8, "meters")
  51412. },
  51413. {
  51414. name: "Gallimimus",
  51415. height: math.unit(4.0, "meters")
  51416. },
  51417. {
  51418. name: "Large",
  51419. height: math.unit(20, "meters")
  51420. },
  51421. {
  51422. name: "Planetary",
  51423. height: math.unit(50, "megameters")
  51424. },
  51425. {
  51426. name: "Stellar",
  51427. height: math.unit(1.5, "gigameters")
  51428. },
  51429. {
  51430. name: "Galactic",
  51431. height: math.unit(100, "exameters")
  51432. },
  51433. ]
  51434. ))
  51435. characterMakers.push(() => makeCharacter(
  51436. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  51437. {
  51438. front: {
  51439. height: math.unit(6, "feet"),
  51440. weight: math.unit(210, "lb"),
  51441. name: "Front",
  51442. image: {
  51443. source: "./media/characters/glacia/front.svg",
  51444. extra: 958/901,
  51445. bottom: 45/1003
  51446. }
  51447. },
  51448. },
  51449. [
  51450. {
  51451. name: "Macro",
  51452. height: math.unit(1000, "meters"),
  51453. default: true
  51454. },
  51455. ]
  51456. ))
  51457. characterMakers.push(() => makeCharacter(
  51458. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  51459. {
  51460. front: {
  51461. height: math.unit(4, "meters"),
  51462. name: "Front",
  51463. image: {
  51464. source: "./media/characters/giri/front.svg",
  51465. extra: 966/894,
  51466. bottom: 21/987
  51467. }
  51468. },
  51469. },
  51470. [
  51471. {
  51472. name: "Normal",
  51473. height: math.unit(4, "meters"),
  51474. default: true
  51475. },
  51476. ]
  51477. ))
  51478. characterMakers.push(() => makeCharacter(
  51479. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  51480. {
  51481. back: {
  51482. height: math.unit(4, "feet"),
  51483. weight: math.unit(37, "lb"),
  51484. name: "Back",
  51485. image: {
  51486. source: "./media/characters/tin/back.svg",
  51487. extra: 845/780,
  51488. bottom: 28/873
  51489. }
  51490. },
  51491. },
  51492. [
  51493. {
  51494. name: "Normal",
  51495. height: math.unit(4, "feet"),
  51496. default: true
  51497. },
  51498. ]
  51499. ))
  51500. characterMakers.push(() => makeCharacter(
  51501. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  51502. {
  51503. front: {
  51504. height: math.unit(25, "feet"),
  51505. name: "Front",
  51506. image: {
  51507. source: "./media/characters/cadenza-vivace/front.svg",
  51508. extra: 1842/1578,
  51509. bottom: 30/1872
  51510. }
  51511. },
  51512. },
  51513. [
  51514. {
  51515. name: "Macro",
  51516. height: math.unit(25, "feet"),
  51517. default: true
  51518. },
  51519. ]
  51520. ))
  51521. characterMakers.push(() => makeCharacter(
  51522. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  51523. {
  51524. front: {
  51525. height: math.unit(10, "feet"),
  51526. weight: math.unit(625, "kg"),
  51527. name: "Front",
  51528. image: {
  51529. source: "./media/characters/zain/front.svg",
  51530. extra: 1682/1498,
  51531. bottom: 223/1905
  51532. }
  51533. },
  51534. back: {
  51535. height: math.unit(10, "feet"),
  51536. weight: math.unit(625, "kg"),
  51537. name: "Back",
  51538. image: {
  51539. source: "./media/characters/zain/back.svg",
  51540. extra: 1814/1657,
  51541. bottom: 152/1966
  51542. }
  51543. },
  51544. head: {
  51545. height: math.unit(10, "feet"),
  51546. weight: math.unit(625, "kg"),
  51547. name: "Head",
  51548. image: {
  51549. source: "./media/characters/zain/head.svg",
  51550. extra: 1059/762,
  51551. bottom: 0/1059
  51552. }
  51553. },
  51554. },
  51555. [
  51556. {
  51557. name: "Normal",
  51558. height: math.unit(10, "feet"),
  51559. default: true
  51560. },
  51561. ]
  51562. ))
  51563. characterMakers.push(() => makeCharacter(
  51564. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  51565. {
  51566. front: {
  51567. height: math.unit(6 + 5/12, "feet"),
  51568. weight: math.unit(750, "lb"),
  51569. name: "Front",
  51570. image: {
  51571. source: "./media/characters/ruchex/front.svg",
  51572. extra: 877/820,
  51573. bottom: 17/894
  51574. },
  51575. extraAttributes: {
  51576. "width": {
  51577. name: "Width",
  51578. power: 1,
  51579. type: "length",
  51580. base: math.unit(4.757, "feet")
  51581. },
  51582. }
  51583. },
  51584. },
  51585. [
  51586. {
  51587. name: "Normal",
  51588. height: math.unit(6 + 5/12, "feet"),
  51589. default: true
  51590. },
  51591. ]
  51592. ))
  51593. characterMakers.push(() => makeCharacter(
  51594. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  51595. {
  51596. dressedFront: {
  51597. height: math.unit(191, "cm"),
  51598. weight: math.unit(80, "kg"),
  51599. name: "Front",
  51600. image: {
  51601. source: "./media/characters/buster/dressed-front.svg",
  51602. extra: 1022/973,
  51603. bottom: 69/1091
  51604. }
  51605. },
  51606. dressedBack: {
  51607. height: math.unit(191, "cm"),
  51608. weight: math.unit(80, "kg"),
  51609. name: "Back",
  51610. image: {
  51611. source: "./media/characters/buster/dressed-back.svg",
  51612. extra: 1018/970,
  51613. bottom: 55/1073
  51614. }
  51615. },
  51616. nudeFront: {
  51617. height: math.unit(191, "cm"),
  51618. weight: math.unit(80, "kg"),
  51619. name: "Front (Nude)",
  51620. image: {
  51621. source: "./media/characters/buster/nude-front.svg",
  51622. extra: 1022/973,
  51623. bottom: 69/1091
  51624. }
  51625. },
  51626. nudeBack: {
  51627. height: math.unit(191, "cm"),
  51628. weight: math.unit(80, "kg"),
  51629. name: "Back (Nude)",
  51630. image: {
  51631. source: "./media/characters/buster/nude-back.svg",
  51632. extra: 1018/970,
  51633. bottom: 55/1073
  51634. }
  51635. },
  51636. dick: {
  51637. height: math.unit(2.59, "feet"),
  51638. name: "Dick",
  51639. image: {
  51640. source: "./media/characters/buster/dick.svg"
  51641. }
  51642. },
  51643. ass: {
  51644. height: math.unit(1.2, "feet"),
  51645. name: "Ass",
  51646. image: {
  51647. source: "./media/characters/buster/ass.svg"
  51648. }
  51649. },
  51650. },
  51651. [
  51652. {
  51653. name: "Normal",
  51654. height: math.unit(191, "cm"),
  51655. default: true
  51656. },
  51657. ]
  51658. ))
  51659. characterMakers.push(() => makeCharacter(
  51660. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  51661. {
  51662. side: {
  51663. height: math.unit(8.1, "feet"),
  51664. weight: math.unit(3500, "lb"),
  51665. name: "Side",
  51666. image: {
  51667. source: "./media/characters/sonya/side.svg",
  51668. extra: 1730/1317,
  51669. bottom: 86/1816
  51670. }
  51671. },
  51672. },
  51673. [
  51674. {
  51675. name: "Normal",
  51676. height: math.unit(8.1, "feet"),
  51677. default: true
  51678. },
  51679. ]
  51680. ))
  51681. characterMakers.push(() => makeCharacter(
  51682. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  51683. {
  51684. front: {
  51685. height: math.unit(6, "feet"),
  51686. weight: math.unit(150, "lb"),
  51687. name: "Front",
  51688. image: {
  51689. source: "./media/characters/cadence-andrysiak/front.svg",
  51690. extra: 1164/1121,
  51691. bottom: 60/1224
  51692. }
  51693. },
  51694. back: {
  51695. height: math.unit(6, "feet"),
  51696. weight: math.unit(150, "lb"),
  51697. name: "Back",
  51698. image: {
  51699. source: "./media/characters/cadence-andrysiak/back.svg",
  51700. extra: 1200/1165,
  51701. bottom: 9/1209
  51702. }
  51703. },
  51704. dressed: {
  51705. height: math.unit(6, "feet"),
  51706. weight: math.unit(150, "lb"),
  51707. name: "Dressed",
  51708. image: {
  51709. source: "./media/characters/cadence-andrysiak/dressed.svg",
  51710. extra: 1164/1121,
  51711. bottom: 60/1224
  51712. }
  51713. },
  51714. },
  51715. [
  51716. {
  51717. name: "Micro",
  51718. height: math.unit(1, "mm")
  51719. },
  51720. {
  51721. name: "Normal",
  51722. height: math.unit(6, "feet"),
  51723. default: true
  51724. },
  51725. ]
  51726. ))
  51727. characterMakers.push(() => makeCharacter(
  51728. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  51729. {
  51730. front: {
  51731. height: math.unit(60, "inches"),
  51732. weight: math.unit(16, "lb"),
  51733. preyCapacity: math.unit(80, "liters"),
  51734. name: "Front",
  51735. image: {
  51736. source: "./media/characters/penny-lynx/front.svg",
  51737. extra: 1959/1769,
  51738. bottom: 49/2008
  51739. }
  51740. },
  51741. },
  51742. [
  51743. {
  51744. name: "Nokia",
  51745. height: math.unit(2, "inches")
  51746. },
  51747. {
  51748. name: "Desktop",
  51749. height: math.unit(24, "inches")
  51750. },
  51751. {
  51752. name: "TV",
  51753. height: math.unit(60, "inches")
  51754. },
  51755. {
  51756. name: "Jumbotron",
  51757. height: math.unit(12, "feet")
  51758. },
  51759. {
  51760. name: "Billboard",
  51761. height: math.unit(48, "feet"),
  51762. default: true
  51763. },
  51764. {
  51765. name: "IMAX",
  51766. height: math.unit(96, "feet")
  51767. },
  51768. {
  51769. name: "SINGULARITY",
  51770. height: math.unit(864938, "miles")
  51771. },
  51772. ]
  51773. ))
  51774. characterMakers.push(() => makeCharacter(
  51775. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  51776. {
  51777. front: {
  51778. height: math.unit(5 + 4/12, "feet"),
  51779. weight: math.unit(230, "lb"),
  51780. name: "Front",
  51781. image: {
  51782. source: "./media/characters/sukebe/front.svg",
  51783. extra: 2130/2038,
  51784. bottom: 90/2220
  51785. }
  51786. },
  51787. back: {
  51788. height: math.unit(3.48, "feet"),
  51789. weight: math.unit(230, "lb"),
  51790. name: "Back",
  51791. image: {
  51792. source: "./media/characters/sukebe/back.svg",
  51793. extra: 1670/1604,
  51794. bottom: 0/1670
  51795. }
  51796. },
  51797. },
  51798. [
  51799. {
  51800. name: "Normal",
  51801. height: math.unit(5 + 4/12, "feet"),
  51802. default: true
  51803. },
  51804. ]
  51805. ))
  51806. characterMakers.push(() => makeCharacter(
  51807. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  51808. {
  51809. front: {
  51810. height: math.unit(6, "feet"),
  51811. name: "Front",
  51812. image: {
  51813. source: "./media/characters/nylla/front.svg",
  51814. extra: 1868/1699,
  51815. bottom: 97/1965
  51816. }
  51817. },
  51818. back: {
  51819. height: math.unit(6, "feet"),
  51820. name: "Back",
  51821. image: {
  51822. source: "./media/characters/nylla/back.svg",
  51823. extra: 1889/1712,
  51824. bottom: 93/1982
  51825. }
  51826. },
  51827. frontNsfw: {
  51828. height: math.unit(6, "feet"),
  51829. name: "Front (NSFW)",
  51830. image: {
  51831. source: "./media/characters/nylla/front-nsfw.svg",
  51832. extra: 1868/1699,
  51833. bottom: 97/1965
  51834. },
  51835. extraAttributes: {
  51836. "dickLength": {
  51837. name: "Dick Length",
  51838. power: 1,
  51839. type: "length",
  51840. base: math.unit(1.4, "feet")
  51841. },
  51842. "cumVolume": {
  51843. name: "Cum Volume",
  51844. power: 3,
  51845. type: "volume",
  51846. base: math.unit(100, "mL")
  51847. },
  51848. }
  51849. },
  51850. backNsfw: {
  51851. height: math.unit(6, "feet"),
  51852. name: "Back (NSFW)",
  51853. image: {
  51854. source: "./media/characters/nylla/back-nsfw.svg",
  51855. extra: 1889/1712,
  51856. bottom: 93/1982
  51857. }
  51858. },
  51859. maw: {
  51860. height: math.unit(2.10, "feet"),
  51861. name: "Maw",
  51862. image: {
  51863. source: "./media/characters/nylla/maw.svg"
  51864. }
  51865. },
  51866. paws: {
  51867. height: math.unit(2.06, "feet"),
  51868. name: "Paws",
  51869. image: {
  51870. source: "./media/characters/nylla/paws.svg"
  51871. }
  51872. },
  51873. muzzle: {
  51874. height: math.unit(0.61, "feet"),
  51875. name: "Muzzle",
  51876. image: {
  51877. source: "./media/characters/nylla/muzzle.svg"
  51878. }
  51879. },
  51880. sheath: {
  51881. height: math.unit(1.305, "feet"),
  51882. name: "Sheath",
  51883. image: {
  51884. source: "./media/characters/nylla/sheath.svg"
  51885. }
  51886. },
  51887. },
  51888. [
  51889. {
  51890. name: "Micro",
  51891. height: math.unit(7.5, "inches")
  51892. },
  51893. {
  51894. name: "Normal",
  51895. height: math.unit(7, "feet"),
  51896. default: true
  51897. },
  51898. {
  51899. name: "Macro",
  51900. height: math.unit(60, "feet")
  51901. },
  51902. {
  51903. name: "Mega",
  51904. height: math.unit(200, "feet")
  51905. },
  51906. ]
  51907. ))
  51908. characterMakers.push(() => makeCharacter(
  51909. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  51910. {
  51911. front: {
  51912. height: math.unit(10, "feet"),
  51913. weight: math.unit(2300, "lb"),
  51914. name: "Front",
  51915. image: {
  51916. source: "./media/characters/hunt3r/front.svg",
  51917. extra: 1909/1742,
  51918. bottom: 46/1955
  51919. }
  51920. },
  51921. },
  51922. [
  51923. {
  51924. name: "Normal",
  51925. height: math.unit(10, "feet"),
  51926. default: true
  51927. },
  51928. ]
  51929. ))
  51930. characterMakers.push(() => makeCharacter(
  51931. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  51932. {
  51933. dressed: {
  51934. height: math.unit(11, "feet"),
  51935. weight: math.unit(18500, "lb"),
  51936. preyCapacity: math.unit(9, "people"),
  51937. name: "Dressed",
  51938. image: {
  51939. source: "./media/characters/cylphis/dressed.svg",
  51940. extra: 1028/1003,
  51941. bottom: 75/1103
  51942. },
  51943. },
  51944. undressed: {
  51945. height: math.unit(11, "feet"),
  51946. weight: math.unit(18500, "lb"),
  51947. preyCapacity: math.unit(9, "people"),
  51948. name: "Undressed",
  51949. image: {
  51950. source: "./media/characters/cylphis/undressed.svg",
  51951. extra: 1028/1003,
  51952. bottom: 75/1103
  51953. }
  51954. },
  51955. full: {
  51956. height: math.unit(11, "feet"),
  51957. weight: math.unit(18500 + 150*9, "lb"),
  51958. preyCapacity: math.unit(9, "people"),
  51959. name: "Full",
  51960. image: {
  51961. source: "./media/characters/cylphis/full.svg",
  51962. extra: 1028/1003,
  51963. bottom: 75/1103
  51964. }
  51965. },
  51966. },
  51967. [
  51968. {
  51969. name: "Small",
  51970. height: math.unit(8, "feet")
  51971. },
  51972. {
  51973. name: "Normal",
  51974. height: math.unit(11, "feet"),
  51975. default: true
  51976. },
  51977. ]
  51978. ))
  51979. characterMakers.push(() => makeCharacter(
  51980. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  51981. {
  51982. front: {
  51983. height: math.unit(2 + 7/12, "feet"),
  51984. name: "Front",
  51985. image: {
  51986. source: "./media/characters/orishan/front.svg",
  51987. extra: 1058/1023,
  51988. bottom: 23/1081
  51989. }
  51990. },
  51991. back: {
  51992. height: math.unit(2 + 7/12, "feet"),
  51993. name: "Back",
  51994. image: {
  51995. source: "./media/characters/orishan/back.svg",
  51996. extra: 1058/1023,
  51997. bottom: 23/1081
  51998. }
  51999. },
  52000. },
  52001. [
  52002. {
  52003. name: "Micro",
  52004. height: math.unit(2, "cm")
  52005. },
  52006. {
  52007. name: "Normal",
  52008. height: math.unit(2 + 7/12, "feet"),
  52009. default: true
  52010. },
  52011. ]
  52012. ))
  52013. characterMakers.push(() => makeCharacter(
  52014. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  52015. {
  52016. front: {
  52017. height: math.unit(3, "meters"),
  52018. weight: math.unit(508, "kg"),
  52019. name: "Front",
  52020. image: {
  52021. source: "./media/characters/seranis/front.svg",
  52022. extra: 1478/1454,
  52023. bottom: 41/1519
  52024. }
  52025. },
  52026. },
  52027. [
  52028. {
  52029. name: "Normal",
  52030. height: math.unit(3, "meters"),
  52031. default: true
  52032. },
  52033. {
  52034. name: "Macro",
  52035. height: math.unit(108, "meters")
  52036. },
  52037. {
  52038. name: "Megamacro",
  52039. height: math.unit(1250, "meters")
  52040. },
  52041. ]
  52042. ))
  52043. characterMakers.push(() => makeCharacter(
  52044. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  52045. {
  52046. undressed: {
  52047. height: math.unit(5 + 3/12, "feet"),
  52048. name: "Undressed",
  52049. image: {
  52050. source: "./media/characters/ankou/undressed.svg",
  52051. extra: 1301/1213,
  52052. bottom: 87/1388
  52053. }
  52054. },
  52055. dressed: {
  52056. height: math.unit(5 + 3/12, "feet"),
  52057. name: "Dressed",
  52058. image: {
  52059. source: "./media/characters/ankou/dressed.svg",
  52060. extra: 1301/1213,
  52061. bottom: 87/1388
  52062. }
  52063. },
  52064. head: {
  52065. height: math.unit(1.61, "feet"),
  52066. name: "Head",
  52067. image: {
  52068. source: "./media/characters/ankou/head.svg"
  52069. }
  52070. },
  52071. },
  52072. [
  52073. {
  52074. name: "Normal",
  52075. height: math.unit(5 + 3/12, "feet"),
  52076. default: true
  52077. },
  52078. ]
  52079. ))
  52080. characterMakers.push(() => makeCharacter(
  52081. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  52082. {
  52083. side: {
  52084. height: math.unit(6 + 3/12, "feet"),
  52085. weight: math.unit(200, "kg"),
  52086. name: "Side",
  52087. image: {
  52088. source: "./media/characters/juniper-skunktaur/side.svg",
  52089. extra: 1574/1229,
  52090. bottom: 38/1612
  52091. }
  52092. },
  52093. front: {
  52094. height: math.unit(6 + 3/12, "feet"),
  52095. weight: math.unit(200, "kg"),
  52096. name: "Front",
  52097. image: {
  52098. source: "./media/characters/juniper-skunktaur/front.svg",
  52099. extra: 1337/1278,
  52100. bottom: 22/1359
  52101. }
  52102. },
  52103. back: {
  52104. height: math.unit(6 + 3/12, "feet"),
  52105. weight: math.unit(200, "kg"),
  52106. name: "Back",
  52107. image: {
  52108. source: "./media/characters/juniper-skunktaur/back.svg",
  52109. extra: 1618/1273,
  52110. bottom: 13/1631
  52111. }
  52112. },
  52113. top: {
  52114. height: math.unit(2.62, "feet"),
  52115. weight: math.unit(200, "kg"),
  52116. name: "Top",
  52117. image: {
  52118. source: "./media/characters/juniper-skunktaur/top.svg"
  52119. }
  52120. },
  52121. },
  52122. [
  52123. {
  52124. name: "Normal",
  52125. height: math.unit(6 + 3/12, "feet"),
  52126. default: true
  52127. },
  52128. ]
  52129. ))
  52130. characterMakers.push(() => makeCharacter(
  52131. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  52132. {
  52133. front: {
  52134. height: math.unit(20.5, "feet"),
  52135. name: "Front",
  52136. image: {
  52137. source: "./media/characters/rei/front.svg",
  52138. extra: 1349/1195,
  52139. bottom: 31/1380
  52140. }
  52141. },
  52142. back: {
  52143. height: math.unit(20.5, "feet"),
  52144. name: "Back",
  52145. image: {
  52146. source: "./media/characters/rei/back.svg",
  52147. extra: 1358/1204,
  52148. bottom: 22/1380
  52149. }
  52150. },
  52151. pawsDigi: {
  52152. height: math.unit(3.45, "feet"),
  52153. name: "Paws (Digi)",
  52154. image: {
  52155. source: "./media/characters/rei/paws-digi.svg"
  52156. }
  52157. },
  52158. pawsPlanti: {
  52159. height: math.unit(3.45, "feet"),
  52160. name: "Paws (Planti)",
  52161. image: {
  52162. source: "./media/characters/rei/paws-planti.svg"
  52163. }
  52164. },
  52165. },
  52166. [
  52167. {
  52168. name: "Normal",
  52169. height: math.unit(20.5, "feet"),
  52170. default: true
  52171. },
  52172. ]
  52173. ))
  52174. characterMakers.push(() => makeCharacter(
  52175. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  52176. {
  52177. front: {
  52178. height: math.unit(5 + 11/12, "feet"),
  52179. name: "Front",
  52180. image: {
  52181. source: "./media/characters/carina/front.svg",
  52182. extra: 1720/1449,
  52183. bottom: 14/1734
  52184. }
  52185. },
  52186. back: {
  52187. height: math.unit(5 + 11/12, "feet"),
  52188. name: "Back",
  52189. image: {
  52190. source: "./media/characters/carina/back.svg",
  52191. extra: 1493/1445,
  52192. bottom: 17/1510
  52193. }
  52194. },
  52195. paw: {
  52196. height: math.unit(0.92, "feet"),
  52197. name: "Paw",
  52198. image: {
  52199. source: "./media/characters/carina/paw.svg"
  52200. }
  52201. },
  52202. },
  52203. [
  52204. {
  52205. name: "Normal",
  52206. height: math.unit(5 + 11/12, "feet"),
  52207. default: true
  52208. },
  52209. ]
  52210. ))
  52211. characterMakers.push(() => makeCharacter(
  52212. { name: "Maya", species: ["cat"], tags: ["anthro"] },
  52213. {
  52214. front: {
  52215. height: math.unit(4.88, "meters"),
  52216. name: "Front",
  52217. image: {
  52218. source: "./media/characters/maya/front.svg",
  52219. extra: 1222/1145,
  52220. bottom: 57/1279
  52221. }
  52222. },
  52223. },
  52224. [
  52225. {
  52226. name: "Normal",
  52227. height: math.unit(4.88, "meters"),
  52228. default: true
  52229. },
  52230. {
  52231. name: "Macro",
  52232. height: math.unit(38.1, "meters")
  52233. },
  52234. {
  52235. name: "Macro+",
  52236. height: math.unit(152.4, "meters")
  52237. },
  52238. {
  52239. name: "Macro++",
  52240. height: math.unit(16.09, "km")
  52241. },
  52242. {
  52243. name: "Mega-macro",
  52244. height: math.unit(700, "megameters")
  52245. },
  52246. ]
  52247. ))
  52248. characterMakers.push(() => makeCharacter(
  52249. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  52250. {
  52251. front: {
  52252. height: math.unit(6 + 2/12, "feet"),
  52253. weight: math.unit(500, "lb"),
  52254. preyCapacity: math.unit(4, "people"),
  52255. name: "Front",
  52256. image: {
  52257. source: "./media/characters/yepir/front.svg"
  52258. }
  52259. },
  52260. side: {
  52261. height: math.unit(6 + 2/12, "feet"),
  52262. weight: math.unit(500, "lb"),
  52263. preyCapacity: math.unit(4, "people"),
  52264. name: "Side",
  52265. image: {
  52266. source: "./media/characters/yepir/side.svg"
  52267. }
  52268. },
  52269. paw: {
  52270. height: math.unit(1.05, "feet"),
  52271. name: "Paw",
  52272. image: {
  52273. source: "./media/characters/yepir/paw.svg"
  52274. }
  52275. },
  52276. },
  52277. [
  52278. {
  52279. name: "Normal",
  52280. height: math.unit(6 + 2/12, "feet"),
  52281. default: true
  52282. },
  52283. ]
  52284. ))
  52285. characterMakers.push(() => makeCharacter(
  52286. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  52287. {
  52288. front: {
  52289. height: math.unit(5 + 4/12, "feet"),
  52290. name: "Front",
  52291. image: {
  52292. source: "./media/characters/russec/front.svg",
  52293. extra: 1926/1626,
  52294. bottom: 72/1998
  52295. }
  52296. },
  52297. back: {
  52298. height: math.unit(5 + 4/12, "feet"),
  52299. name: "Back",
  52300. image: {
  52301. source: "./media/characters/russec/back.svg",
  52302. extra: 1910/1591,
  52303. bottom: 48/1958
  52304. }
  52305. },
  52306. },
  52307. [
  52308. {
  52309. name: "Small",
  52310. height: math.unit(5 + 4/12, "feet")
  52311. },
  52312. {
  52313. name: "Normal",
  52314. height: math.unit(72, "feet"),
  52315. default: true
  52316. },
  52317. ]
  52318. ))
  52319. characterMakers.push(() => makeCharacter(
  52320. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  52321. {
  52322. side: {
  52323. height: math.unit(12, "feet"),
  52324. name: "Side",
  52325. image: {
  52326. source: "./media/characters/cianus/side.svg",
  52327. extra: 808/526,
  52328. bottom: 61/869
  52329. }
  52330. },
  52331. },
  52332. [
  52333. {
  52334. name: "Normal",
  52335. height: math.unit(12, "feet"),
  52336. default: true
  52337. },
  52338. ]
  52339. ))
  52340. characterMakers.push(() => makeCharacter(
  52341. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  52342. {
  52343. front: {
  52344. height: math.unit(9 + 6/12, "feet"),
  52345. weight: math.unit(300, "lb"),
  52346. name: "Front",
  52347. image: {
  52348. source: "./media/characters/ahab/front.svg",
  52349. extra: 1897/1868,
  52350. bottom: 121/2018
  52351. }
  52352. },
  52353. frontNsfw: {
  52354. height: math.unit(9 + 6/12, "feet"),
  52355. weight: math.unit(300, "lb"),
  52356. name: "Front-nsfw",
  52357. image: {
  52358. source: "./media/characters/ahab/front-nsfw.svg",
  52359. extra: 1897/1868,
  52360. bottom: 121/2018
  52361. }
  52362. },
  52363. },
  52364. [
  52365. {
  52366. name: "Normal",
  52367. height: math.unit(9 + 6/12, "feet")
  52368. },
  52369. {
  52370. name: "Macro",
  52371. height: math.unit(657, "feet"),
  52372. default: true
  52373. },
  52374. ]
  52375. ))
  52376. characterMakers.push(() => makeCharacter(
  52377. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  52378. {
  52379. front: {
  52380. height: math.unit(2.69, "meters"),
  52381. weight: math.unit(132, "kg"),
  52382. name: "Front",
  52383. image: {
  52384. source: "./media/characters/aarkus/front.svg",
  52385. extra: 1400/1231,
  52386. bottom: 34/1434
  52387. }
  52388. },
  52389. back: {
  52390. height: math.unit(2.69, "meters"),
  52391. weight: math.unit(132, "kg"),
  52392. name: "Back",
  52393. image: {
  52394. source: "./media/characters/aarkus/back.svg",
  52395. extra: 1381/1218,
  52396. bottom: 30/1411
  52397. }
  52398. },
  52399. frontNsfw: {
  52400. height: math.unit(2.69, "meters"),
  52401. weight: math.unit(132, "kg"),
  52402. name: "Front (NSFW)",
  52403. image: {
  52404. source: "./media/characters/aarkus/front-nsfw.svg",
  52405. extra: 1400/1231,
  52406. bottom: 34/1434
  52407. }
  52408. },
  52409. foot: {
  52410. height: math.unit(1.45, "feet"),
  52411. name: "Foot",
  52412. image: {
  52413. source: "./media/characters/aarkus/foot.svg"
  52414. }
  52415. },
  52416. head: {
  52417. height: math.unit(2.85, "feet"),
  52418. name: "Head",
  52419. image: {
  52420. source: "./media/characters/aarkus/head.svg"
  52421. }
  52422. },
  52423. headAlt: {
  52424. height: math.unit(3.07, "feet"),
  52425. name: "Head (Alt)",
  52426. image: {
  52427. source: "./media/characters/aarkus/head-alt.svg"
  52428. }
  52429. },
  52430. mouth: {
  52431. height: math.unit(1.25, "feet"),
  52432. name: "Mouth",
  52433. image: {
  52434. source: "./media/characters/aarkus/mouth.svg"
  52435. }
  52436. },
  52437. dick: {
  52438. height: math.unit(1.77, "feet"),
  52439. name: "Dick",
  52440. image: {
  52441. source: "./media/characters/aarkus/dick.svg"
  52442. }
  52443. },
  52444. },
  52445. [
  52446. {
  52447. name: "Normal",
  52448. height: math.unit(2.69, "meters"),
  52449. default: true
  52450. },
  52451. {
  52452. name: "Macro",
  52453. height: math.unit(269, "meters")
  52454. },
  52455. {
  52456. name: "Macro+",
  52457. height: math.unit(672.5, "meters")
  52458. },
  52459. {
  52460. name: "Megamacro",
  52461. height: math.unit(2.017, "km")
  52462. },
  52463. ]
  52464. ))
  52465. characterMakers.push(() => makeCharacter(
  52466. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  52467. {
  52468. front: {
  52469. height: math.unit(23.47, "cm"),
  52470. weight: math.unit(600, "grams"),
  52471. name: "Front",
  52472. image: {
  52473. source: "./media/characters/diode/front.svg",
  52474. extra: 1778/1396,
  52475. bottom: 95/1873
  52476. }
  52477. },
  52478. side: {
  52479. height: math.unit(23.47, "cm"),
  52480. weight: math.unit(600, "grams"),
  52481. name: "Side",
  52482. image: {
  52483. source: "./media/characters/diode/side.svg",
  52484. extra: 1831/1404,
  52485. bottom: 86/1917
  52486. }
  52487. },
  52488. wings: {
  52489. height: math.unit(0.683, "feet"),
  52490. name: "Wings",
  52491. image: {
  52492. source: "./media/characters/diode/wings.svg"
  52493. }
  52494. },
  52495. },
  52496. [
  52497. {
  52498. name: "Normal",
  52499. height: math.unit(23.47, "cm"),
  52500. default: true
  52501. },
  52502. ]
  52503. ))
  52504. characterMakers.push(() => makeCharacter(
  52505. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  52506. {
  52507. front: {
  52508. height: math.unit(6 + 3/12, "feet"),
  52509. weight: math.unit(250, "lb"),
  52510. name: "Front",
  52511. image: {
  52512. source: "./media/characters/reika/front.svg",
  52513. extra: 1120/1078,
  52514. bottom: 86/1206
  52515. }
  52516. },
  52517. },
  52518. [
  52519. {
  52520. name: "Normal",
  52521. height: math.unit(6 + 3/12, "feet"),
  52522. default: true
  52523. },
  52524. ]
  52525. ))
  52526. characterMakers.push(() => makeCharacter(
  52527. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  52528. {
  52529. front: {
  52530. height: math.unit(16 + 8/12, "feet"),
  52531. weight: math.unit(9000, "lb"),
  52532. name: "Front",
  52533. image: {
  52534. source: "./media/characters/lokuto-takama/front.svg",
  52535. extra: 1774/1632,
  52536. bottom: 147/1921
  52537. },
  52538. extraAttributes: {
  52539. "bustWidth": {
  52540. name: "Bust Width",
  52541. power: 1,
  52542. type: "length",
  52543. base: math.unit(2.4, "meters")
  52544. },
  52545. "breastWeight": {
  52546. name: "Breast Weight",
  52547. power: 3,
  52548. type: "mass",
  52549. base: math.unit(1000, "kg")
  52550. },
  52551. }
  52552. },
  52553. },
  52554. [
  52555. {
  52556. name: "Normal",
  52557. height: math.unit(16 + 8/12, "feet"),
  52558. default: true
  52559. },
  52560. ]
  52561. ))
  52562. characterMakers.push(() => makeCharacter(
  52563. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  52564. {
  52565. front: {
  52566. height: math.unit(10, "cm"),
  52567. weight: math.unit(850, "grams"),
  52568. name: "Front",
  52569. image: {
  52570. source: "./media/characters/owak-bone/front.svg",
  52571. extra: 1965/1801,
  52572. bottom: 31/1996
  52573. }
  52574. },
  52575. },
  52576. [
  52577. {
  52578. name: "Normal",
  52579. height: math.unit(10, "cm"),
  52580. default: true
  52581. },
  52582. ]
  52583. ))
  52584. characterMakers.push(() => makeCharacter(
  52585. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  52586. {
  52587. front: {
  52588. height: math.unit(2 + 6/12, "feet"),
  52589. weight: math.unit(9, "lb"),
  52590. name: "Front",
  52591. image: {
  52592. source: "./media/characters/muffin/front.svg",
  52593. extra: 1220/1195,
  52594. bottom: 84/1304
  52595. }
  52596. },
  52597. },
  52598. [
  52599. {
  52600. name: "Normal",
  52601. height: math.unit(2 + 6/12, "feet"),
  52602. default: true
  52603. },
  52604. ]
  52605. ))
  52606. characterMakers.push(() => makeCharacter(
  52607. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  52608. {
  52609. front: {
  52610. height: math.unit(7, "feet"),
  52611. name: "Front",
  52612. image: {
  52613. source: "./media/characters/chimera/front.svg",
  52614. extra: 1752/1614,
  52615. bottom: 68/1820
  52616. }
  52617. },
  52618. },
  52619. [
  52620. {
  52621. name: "Normal",
  52622. height: math.unit(7, "feet")
  52623. },
  52624. {
  52625. name: "Gigamacro",
  52626. height: math.unit(2.9, "gigameters"),
  52627. default: true
  52628. },
  52629. {
  52630. name: "Universal",
  52631. height: math.unit(1.56e26, "yottameters")
  52632. },
  52633. ]
  52634. ))
  52635. characterMakers.push(() => makeCharacter(
  52636. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  52637. {
  52638. front: {
  52639. height: math.unit(3, "feet"),
  52640. weight: math.unit(20, "lb"),
  52641. name: "Front",
  52642. image: {
  52643. source: "./media/characters/kit-fennec-fox/front.svg",
  52644. extra: 1027/932,
  52645. bottom: 16/1043
  52646. }
  52647. },
  52648. back: {
  52649. height: math.unit(3, "feet"),
  52650. weight: math.unit(20, "lb"),
  52651. name: "Back",
  52652. image: {
  52653. source: "./media/characters/kit-fennec-fox/back.svg",
  52654. extra: 1027/932,
  52655. bottom: 16/1043
  52656. }
  52657. },
  52658. },
  52659. [
  52660. {
  52661. name: "Normal",
  52662. height: math.unit(3, "feet"),
  52663. default: true
  52664. },
  52665. ]
  52666. ))
  52667. characterMakers.push(() => makeCharacter(
  52668. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  52669. {
  52670. front: {
  52671. height: math.unit(167, "cm"),
  52672. name: "Front",
  52673. image: {
  52674. source: "./media/characters/blue-otter/front.svg",
  52675. extra: 1951/1920,
  52676. bottom: 31/1982
  52677. }
  52678. },
  52679. },
  52680. [
  52681. {
  52682. name: "Otter-Sized",
  52683. height: math.unit(100, "cm")
  52684. },
  52685. {
  52686. name: "Normal",
  52687. height: math.unit(167, "cm"),
  52688. default: true
  52689. },
  52690. ]
  52691. ))
  52692. characterMakers.push(() => makeCharacter(
  52693. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  52694. {
  52695. front: {
  52696. height: math.unit(4 + 4/12, "feet"),
  52697. name: "Front",
  52698. image: {
  52699. source: "./media/characters/maverick-leopard-gecko/front.svg",
  52700. extra: 1072/1067,
  52701. bottom: 117/1189
  52702. }
  52703. },
  52704. back: {
  52705. height: math.unit(4 + 4/12, "feet"),
  52706. name: "Back",
  52707. image: {
  52708. source: "./media/characters/maverick-leopard-gecko/back.svg",
  52709. extra: 1135/1129,
  52710. bottom: 57/1192
  52711. }
  52712. },
  52713. head: {
  52714. height: math.unit(1.77, "feet"),
  52715. name: "Head",
  52716. image: {
  52717. source: "./media/characters/maverick-leopard-gecko/head.svg"
  52718. }
  52719. },
  52720. },
  52721. [
  52722. {
  52723. name: "Normal",
  52724. height: math.unit(4 + 4/12, "feet"),
  52725. default: true
  52726. },
  52727. ]
  52728. ))
  52729. characterMakers.push(() => makeCharacter(
  52730. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  52731. {
  52732. front: {
  52733. height: math.unit(2, "inches"),
  52734. name: "Front",
  52735. image: {
  52736. source: "./media/characters/carley-hartford/front.svg",
  52737. extra: 1035/988,
  52738. bottom: 23/1058
  52739. }
  52740. },
  52741. back: {
  52742. height: math.unit(2, "inches"),
  52743. name: "Back",
  52744. image: {
  52745. source: "./media/characters/carley-hartford/back.svg",
  52746. extra: 1035/988,
  52747. bottom: 23/1058
  52748. }
  52749. },
  52750. dressed: {
  52751. height: math.unit(2, "inches"),
  52752. name: "Dressed",
  52753. image: {
  52754. source: "./media/characters/carley-hartford/dressed.svg",
  52755. extra: 651/620,
  52756. bottom: 0/651
  52757. }
  52758. },
  52759. },
  52760. [
  52761. {
  52762. name: "Micro",
  52763. height: math.unit(2, "inches"),
  52764. default: true
  52765. },
  52766. {
  52767. name: "Macro",
  52768. height: math.unit(6 + 3/12, "feet")
  52769. },
  52770. ]
  52771. ))
  52772. characterMakers.push(() => makeCharacter(
  52773. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  52774. {
  52775. front: {
  52776. height: math.unit(2 + 3/12, "feet"),
  52777. weight: math.unit(15 + 7/16, "lb"),
  52778. name: "Front",
  52779. image: {
  52780. source: "./media/characters/duke/front.svg",
  52781. extra: 910/815,
  52782. bottom: 30/940
  52783. }
  52784. },
  52785. },
  52786. [
  52787. {
  52788. name: "Normal",
  52789. height: math.unit(2 + 3/12, "feet"),
  52790. default: true
  52791. },
  52792. ]
  52793. ))
  52794. characterMakers.push(() => makeCharacter(
  52795. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  52796. {
  52797. front: {
  52798. height: math.unit(5 + 4/12, "feet"),
  52799. weight: math.unit(156, "lb"),
  52800. name: "Front",
  52801. image: {
  52802. source: "./media/characters/dein/front.svg",
  52803. extra: 855/815,
  52804. bottom: 48/903
  52805. }
  52806. },
  52807. side: {
  52808. height: math.unit(5 + 4/12, "feet"),
  52809. weight: math.unit(156, "lb"),
  52810. name: "side",
  52811. image: {
  52812. source: "./media/characters/dein/side.svg",
  52813. extra: 846/803,
  52814. bottom: 25/871
  52815. }
  52816. },
  52817. maw: {
  52818. height: math.unit(1.45, "feet"),
  52819. name: "Maw",
  52820. image: {
  52821. source: "./media/characters/dein/maw.svg"
  52822. }
  52823. },
  52824. },
  52825. [
  52826. {
  52827. name: "Ferret Sized",
  52828. height: math.unit(2 + 5/12, "feet")
  52829. },
  52830. {
  52831. name: "Normal",
  52832. height: math.unit(5 + 4/12, "feet"),
  52833. default: true
  52834. },
  52835. ]
  52836. ))
  52837. characterMakers.push(() => makeCharacter(
  52838. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  52839. {
  52840. front: {
  52841. height: math.unit(84 + 8/12, "feet"),
  52842. weight: math.unit(942180, "lb"),
  52843. name: "Front",
  52844. image: {
  52845. source: "./media/characters/daurine-arima/front.svg",
  52846. extra: 1989/1782,
  52847. bottom: 37/2026
  52848. }
  52849. },
  52850. side: {
  52851. height: math.unit(84 + 8/12, "feet"),
  52852. weight: math.unit(942180, "lb"),
  52853. name: "Side",
  52854. image: {
  52855. source: "./media/characters/daurine-arima/side.svg",
  52856. extra: 1997/1790,
  52857. bottom: 21/2018
  52858. }
  52859. },
  52860. back: {
  52861. height: math.unit(84 + 8/12, "feet"),
  52862. weight: math.unit(942180, "lb"),
  52863. name: "Back",
  52864. image: {
  52865. source: "./media/characters/daurine-arima/back.svg",
  52866. extra: 1992/1800,
  52867. bottom: 12/2004
  52868. }
  52869. },
  52870. head: {
  52871. height: math.unit(15.5, "feet"),
  52872. name: "Head",
  52873. image: {
  52874. source: "./media/characters/daurine-arima/head.svg"
  52875. }
  52876. },
  52877. headAlt: {
  52878. height: math.unit(19.19, "feet"),
  52879. name: "Head (Alt)",
  52880. image: {
  52881. source: "./media/characters/daurine-arima/head-alt.svg"
  52882. }
  52883. },
  52884. },
  52885. [
  52886. {
  52887. name: "Minimum height",
  52888. height: math.unit(8 + 10/12, "feet")
  52889. },
  52890. {
  52891. name: "Comfort height",
  52892. height: math.unit(19 + 6 /12, "feet")
  52893. },
  52894. {
  52895. name: "\"Normal\" height",
  52896. height: math.unit(28 + 10/12, "feet")
  52897. },
  52898. {
  52899. name: "Base height",
  52900. height: math.unit(84 + 8/12, "feet"),
  52901. default: true
  52902. },
  52903. {
  52904. name: "Mini-macro",
  52905. height: math.unit(2360, "feet")
  52906. },
  52907. {
  52908. name: "Macro",
  52909. height: math.unit(10, "miles")
  52910. },
  52911. {
  52912. name: "Goddess",
  52913. height: math.unit(9.99e40, "yottameters")
  52914. },
  52915. ]
  52916. ))
  52917. characterMakers.push(() => makeCharacter(
  52918. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  52919. {
  52920. front: {
  52921. height: math.unit(2.3, "meters"),
  52922. name: "Front",
  52923. image: {
  52924. source: "./media/characters/cilenomon/front.svg",
  52925. extra: 1963/1778,
  52926. bottom: 54/2017
  52927. }
  52928. },
  52929. },
  52930. [
  52931. {
  52932. name: "Normal",
  52933. height: math.unit(2.3, "meters"),
  52934. default: true
  52935. },
  52936. {
  52937. name: "Big",
  52938. height: math.unit(5, "meters")
  52939. },
  52940. {
  52941. name: "Macro",
  52942. height: math.unit(30, "meters")
  52943. },
  52944. {
  52945. name: "True",
  52946. height: math.unit(1, "universe")
  52947. },
  52948. ]
  52949. ))
  52950. characterMakers.push(() => makeCharacter(
  52951. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  52952. {
  52953. front: {
  52954. height: math.unit(5, "feet"),
  52955. name: "Front",
  52956. image: {
  52957. source: "./media/characters/sen-mink/front.svg",
  52958. extra: 1727/1675,
  52959. bottom: 35/1762
  52960. }
  52961. },
  52962. },
  52963. [
  52964. {
  52965. name: "Normal",
  52966. height: math.unit(5, "feet"),
  52967. default: true
  52968. },
  52969. ]
  52970. ))
  52971. characterMakers.push(() => makeCharacter(
  52972. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  52973. {
  52974. front: {
  52975. height: math.unit(5.42999, "feet"),
  52976. weight: math.unit(100, "lb"),
  52977. name: "Front",
  52978. image: {
  52979. source: "./media/characters/ophois/front.svg",
  52980. extra: 1429/1286,
  52981. bottom: 60/1489
  52982. }
  52983. },
  52984. },
  52985. [
  52986. {
  52987. name: "Normal",
  52988. height: math.unit(5.42999, "feet"),
  52989. default: true
  52990. },
  52991. ]
  52992. ))
  52993. characterMakers.push(() => makeCharacter(
  52994. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  52995. {
  52996. front: {
  52997. height: math.unit(2, "meters"),
  52998. name: "Front",
  52999. image: {
  53000. source: "./media/characters/riley/front.svg",
  53001. extra: 1779/1754,
  53002. bottom: 139/1918
  53003. }
  53004. },
  53005. },
  53006. [
  53007. {
  53008. name: "Normal",
  53009. height: math.unit(2, "meters"),
  53010. default: true
  53011. },
  53012. ]
  53013. ))
  53014. characterMakers.push(() => makeCharacter(
  53015. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  53016. {
  53017. front: {
  53018. height: math.unit(6 + 2/12, "feet"),
  53019. weight: math.unit(195, "lb"),
  53020. preyCapacity: math.unit(6, "people"),
  53021. name: "Front",
  53022. image: {
  53023. source: "./media/characters/shuken-flash/front.svg",
  53024. extra: 1905/1739,
  53025. bottom: 65/1970
  53026. }
  53027. },
  53028. back: {
  53029. height: math.unit(6 + 2/12, "feet"),
  53030. weight: math.unit(195, "lb"),
  53031. preyCapacity: math.unit(6, "people"),
  53032. name: "Back",
  53033. image: {
  53034. source: "./media/characters/shuken-flash/back.svg",
  53035. extra: 1912/1751,
  53036. bottom: 13/1925
  53037. }
  53038. },
  53039. },
  53040. [
  53041. {
  53042. name: "Normal",
  53043. height: math.unit(6 + 2/12, "feet"),
  53044. default: true
  53045. },
  53046. ]
  53047. ))
  53048. characterMakers.push(() => makeCharacter(
  53049. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  53050. {
  53051. front: {
  53052. height: math.unit(5 + 9/12, "feet"),
  53053. weight: math.unit(150, "lb"),
  53054. name: "Front",
  53055. image: {
  53056. source: "./media/characters/plat/front.svg",
  53057. extra: 1816/1703,
  53058. bottom: 43/1859
  53059. }
  53060. },
  53061. side: {
  53062. height: math.unit(5 + 9/12, "feet"),
  53063. weight: math.unit(300, "lb"),
  53064. name: "Side",
  53065. image: {
  53066. source: "./media/characters/plat/side.svg",
  53067. extra: 1824/1699,
  53068. bottom: 18/1842
  53069. }
  53070. },
  53071. },
  53072. [
  53073. {
  53074. name: "Normal",
  53075. height: math.unit(5 + 9/12, "feet"),
  53076. default: true
  53077. },
  53078. ]
  53079. ))
  53080. characterMakers.push(() => makeCharacter(
  53081. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  53082. {
  53083. front: {
  53084. height: math.unit(9, "feet"),
  53085. weight: math.unit(1800, "lb"),
  53086. name: "Front",
  53087. image: {
  53088. source: "./media/characters/elaine/front.svg",
  53089. extra: 1833/1354,
  53090. bottom: 25/1858
  53091. }
  53092. },
  53093. back: {
  53094. height: math.unit(8.8, "feet"),
  53095. weight: math.unit(1800, "lb"),
  53096. name: "Back",
  53097. image: {
  53098. source: "./media/characters/elaine/back.svg",
  53099. extra: 1641/1233,
  53100. bottom: 53/1694
  53101. }
  53102. },
  53103. },
  53104. [
  53105. {
  53106. name: "Normal",
  53107. height: math.unit(9, "feet"),
  53108. default: true
  53109. },
  53110. ]
  53111. ))
  53112. characterMakers.push(() => makeCharacter(
  53113. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  53114. {
  53115. front: {
  53116. height: math.unit(17 + 9/12, "feet"),
  53117. weight: math.unit(8000, "lb"),
  53118. name: "Front",
  53119. image: {
  53120. source: "./media/characters/vera-raven/front.svg",
  53121. extra: 1457/1412,
  53122. bottom: 121/1578
  53123. }
  53124. },
  53125. side: {
  53126. height: math.unit(17 + 9/12, "feet"),
  53127. weight: math.unit(8000, "lb"),
  53128. name: "Side",
  53129. image: {
  53130. source: "./media/characters/vera-raven/side.svg",
  53131. extra: 1510/1464,
  53132. bottom: 54/1564
  53133. }
  53134. },
  53135. },
  53136. [
  53137. {
  53138. name: "Normal",
  53139. height: math.unit(17 + 9/12, "feet"),
  53140. default: true
  53141. },
  53142. ]
  53143. ))
  53144. characterMakers.push(() => makeCharacter(
  53145. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  53146. {
  53147. dressed: {
  53148. height: math.unit(6 + 9/12, "feet"),
  53149. name: "Dressed",
  53150. image: {
  53151. source: "./media/characters/nakisha/dressed.svg",
  53152. extra: 1909/1757,
  53153. bottom: 48/1957
  53154. }
  53155. },
  53156. nude: {
  53157. height: math.unit(6 + 9/12, "feet"),
  53158. name: "Nude",
  53159. image: {
  53160. source: "./media/characters/nakisha/nude.svg",
  53161. extra: 1917/1765,
  53162. bottom: 34/1951
  53163. }
  53164. },
  53165. },
  53166. [
  53167. {
  53168. name: "Normal",
  53169. height: math.unit(6 + 9/12, "feet"),
  53170. default: true
  53171. },
  53172. ]
  53173. ))
  53174. characterMakers.push(() => makeCharacter(
  53175. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  53176. {
  53177. front: {
  53178. height: math.unit(87, "meters"),
  53179. name: "Front",
  53180. image: {
  53181. source: "./media/characters/serafin/front.svg",
  53182. extra: 1919/1776,
  53183. bottom: 65/1984
  53184. }
  53185. },
  53186. },
  53187. [
  53188. {
  53189. name: "Normal",
  53190. height: math.unit(87, "meters"),
  53191. default: true
  53192. },
  53193. ]
  53194. ))
  53195. characterMakers.push(() => makeCharacter(
  53196. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  53197. {
  53198. front: {
  53199. height: math.unit(6, "feet"),
  53200. weight: math.unit(200, "lb"),
  53201. name: "Front",
  53202. image: {
  53203. source: "./media/characters/poptart/front.svg",
  53204. extra: 615/583,
  53205. bottom: 23/638
  53206. }
  53207. },
  53208. back: {
  53209. height: math.unit(6, "feet"),
  53210. weight: math.unit(200, "lb"),
  53211. name: "Back",
  53212. image: {
  53213. source: "./media/characters/poptart/back.svg",
  53214. extra: 617/584,
  53215. bottom: 22/639
  53216. }
  53217. },
  53218. frontNsfw: {
  53219. height: math.unit(6, "feet"),
  53220. weight: math.unit(200, "lb"),
  53221. name: "Front (NSFW)",
  53222. image: {
  53223. source: "./media/characters/poptart/front-nsfw.svg",
  53224. extra: 615/583,
  53225. bottom: 23/638
  53226. }
  53227. },
  53228. backNsfw: {
  53229. height: math.unit(6, "feet"),
  53230. weight: math.unit(200, "lb"),
  53231. name: "Back (NSFW)",
  53232. image: {
  53233. source: "./media/characters/poptart/back-nsfw.svg",
  53234. extra: 617/584,
  53235. bottom: 22/639
  53236. }
  53237. },
  53238. hand: {
  53239. height: math.unit(1.14, "feet"),
  53240. name: "Hand",
  53241. image: {
  53242. source: "./media/characters/poptart/hand.svg"
  53243. }
  53244. },
  53245. foot: {
  53246. height: math.unit(1.5, "feet"),
  53247. name: "Foot",
  53248. image: {
  53249. source: "./media/characters/poptart/foot.svg"
  53250. }
  53251. },
  53252. },
  53253. [
  53254. {
  53255. name: "Normal",
  53256. height: math.unit(6, "feet"),
  53257. default: true
  53258. },
  53259. {
  53260. name: "Grande",
  53261. height: math.unit(350, "feet")
  53262. },
  53263. {
  53264. name: "Massif",
  53265. height: math.unit(967, "feet")
  53266. },
  53267. ]
  53268. ))
  53269. characterMakers.push(() => makeCharacter(
  53270. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  53271. {
  53272. hyenaSide: {
  53273. height: math.unit(120, "cm"),
  53274. weight: math.unit(120, "lb"),
  53275. name: "Side",
  53276. image: {
  53277. source: "./media/characters/trance/hyena-side.svg",
  53278. extra: 998/904,
  53279. bottom: 76/1074
  53280. }
  53281. },
  53282. },
  53283. [
  53284. {
  53285. name: "Normal",
  53286. height: math.unit(120, "cm"),
  53287. default: true
  53288. },
  53289. {
  53290. name: "Dire",
  53291. height: math.unit(230, "cm")
  53292. },
  53293. {
  53294. name: "Macro",
  53295. height: math.unit(37, "feet")
  53296. },
  53297. ]
  53298. ))
  53299. characterMakers.push(() => makeCharacter(
  53300. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  53301. {
  53302. front: {
  53303. height: math.unit(6 + 3/12, "feet"),
  53304. name: "Front",
  53305. image: {
  53306. source: "./media/characters/michael-berretta/front.svg",
  53307. extra: 515/494,
  53308. bottom: 20/535
  53309. }
  53310. },
  53311. back: {
  53312. height: math.unit(6 + 3/12, "feet"),
  53313. name: "Back",
  53314. image: {
  53315. source: "./media/characters/michael-berretta/back.svg",
  53316. extra: 520/497,
  53317. bottom: 21/541
  53318. }
  53319. },
  53320. frontNsfw: {
  53321. height: math.unit(6 + 3/12, "feet"),
  53322. name: "Front (NSFW)",
  53323. image: {
  53324. source: "./media/characters/michael-berretta/front-nsfw.svg",
  53325. extra: 515/494,
  53326. bottom: 20/535
  53327. }
  53328. },
  53329. dick: {
  53330. height: math.unit(1, "feet"),
  53331. name: "Dick",
  53332. image: {
  53333. source: "./media/characters/michael-berretta/dick.svg"
  53334. }
  53335. },
  53336. },
  53337. [
  53338. {
  53339. name: "Normal",
  53340. height: math.unit(6 + 3/12, "feet"),
  53341. default: true
  53342. },
  53343. {
  53344. name: "Big",
  53345. height: math.unit(12, "feet")
  53346. },
  53347. {
  53348. name: "Macro",
  53349. height: math.unit(187.5, "feet")
  53350. },
  53351. ]
  53352. ))
  53353. characterMakers.push(() => makeCharacter(
  53354. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  53355. {
  53356. front: {
  53357. height: math.unit(9 + 9/12, "feet"),
  53358. weight: math.unit(1244, "lb"),
  53359. name: "Front",
  53360. image: {
  53361. source: "./media/characters/stella-edgecomb/front.svg",
  53362. extra: 1835/1706,
  53363. bottom: 49/1884
  53364. }
  53365. },
  53366. pen: {
  53367. height: math.unit(0.95, "feet"),
  53368. name: "Pen",
  53369. image: {
  53370. source: "./media/characters/stella-edgecomb/pen.svg"
  53371. }
  53372. },
  53373. },
  53374. [
  53375. {
  53376. name: "Cozy Bear",
  53377. height: math.unit(0.5, "inches")
  53378. },
  53379. {
  53380. name: "Normal",
  53381. height: math.unit(9 + 9/12, "feet"),
  53382. default: true
  53383. },
  53384. {
  53385. name: "Giga Bear",
  53386. height: math.unit(1, "mile")
  53387. },
  53388. {
  53389. name: "Great Bear",
  53390. height: math.unit(53, "miles")
  53391. },
  53392. {
  53393. name: "Goddess Bear",
  53394. height: math.unit(40000, "miles")
  53395. },
  53396. {
  53397. name: "Sun Bear",
  53398. height: math.unit(900000, "miles")
  53399. },
  53400. ]
  53401. ))
  53402. characterMakers.push(() => makeCharacter(
  53403. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  53404. {
  53405. anthroFront: {
  53406. height: math.unit(556, "cm"),
  53407. weight: math.unit(2650, "kg"),
  53408. preyCapacity: math.unit(3, "people"),
  53409. name: "Front",
  53410. image: {
  53411. source: "./media/characters/ash´iika/front.svg",
  53412. extra: 710/673,
  53413. bottom: 15/725
  53414. },
  53415. form: "anthro",
  53416. default: true
  53417. },
  53418. anthroSide: {
  53419. height: math.unit(556, "cm"),
  53420. weight: math.unit(2650, "kg"),
  53421. preyCapacity: math.unit(3, "people"),
  53422. name: "Side",
  53423. image: {
  53424. source: "./media/characters/ash´iika/side.svg",
  53425. extra: 696/676,
  53426. bottom: 13/709
  53427. },
  53428. form: "anthro"
  53429. },
  53430. anthroDressed: {
  53431. height: math.unit(556, "cm"),
  53432. weight: math.unit(2650, "kg"),
  53433. preyCapacity: math.unit(3, "people"),
  53434. name: "Dressed",
  53435. image: {
  53436. source: "./media/characters/ash´iika/dressed.svg",
  53437. extra: 710/673,
  53438. bottom: 15/725
  53439. },
  53440. form: "anthro"
  53441. },
  53442. anthroHead: {
  53443. height: math.unit(3.5, "feet"),
  53444. name: "Head",
  53445. image: {
  53446. source: "./media/characters/ash´iika/head.svg",
  53447. extra: 348/291,
  53448. bottom: 45/393
  53449. },
  53450. form: "anthro"
  53451. },
  53452. feralSide: {
  53453. height: math.unit(870, "cm"),
  53454. weight: math.unit(17500, "kg"),
  53455. preyCapacity: math.unit(15, "people"),
  53456. name: "Side",
  53457. image: {
  53458. source: "./media/characters/ash´iika/feral.svg",
  53459. extra: 595/199,
  53460. bottom: 7/602
  53461. },
  53462. form: "feral",
  53463. default: true,
  53464. },
  53465. },
  53466. [
  53467. {
  53468. name: "Normal",
  53469. height: math.unit(556, "cm"),
  53470. default: true,
  53471. form: "anthro"
  53472. },
  53473. {
  53474. name: "Macro",
  53475. height: math.unit(88, "meters"),
  53476. form: "anthro"
  53477. },
  53478. {
  53479. name: "Normal",
  53480. height: math.unit(870, "cm"),
  53481. default: true,
  53482. form: "feral"
  53483. },
  53484. {
  53485. name: "Large",
  53486. height: math.unit(25, "meters"),
  53487. form: "feral"
  53488. },
  53489. ],
  53490. {
  53491. "anthro": {
  53492. name: "Anthro",
  53493. default: true
  53494. },
  53495. "feral": {
  53496. name: "Feral",
  53497. },
  53498. }
  53499. ))
  53500. characterMakers.push(() => makeCharacter(
  53501. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  53502. {
  53503. front: {
  53504. height: math.unit(10, "feet"),
  53505. weight: math.unit(800, "lb"),
  53506. name: "Front",
  53507. image: {
  53508. source: "./media/characters/yen/front.svg",
  53509. extra: 443/411,
  53510. bottom: 6/449
  53511. }
  53512. },
  53513. sleeping: {
  53514. height: math.unit(10, "feet"),
  53515. weight: math.unit(800, "lb"),
  53516. name: "Sleeping",
  53517. image: {
  53518. source: "./media/characters/yen/sleeping.svg",
  53519. extra: 470/422,
  53520. bottom: 0/470
  53521. }
  53522. },
  53523. head: {
  53524. height: math.unit(2.2, "feet"),
  53525. name: "Head",
  53526. image: {
  53527. source: "./media/characters/yen/head.svg"
  53528. }
  53529. },
  53530. headAlt: {
  53531. height: math.unit(2.1, "feet"),
  53532. name: "Head (Alt)",
  53533. image: {
  53534. source: "./media/characters/yen/head-alt.svg"
  53535. }
  53536. },
  53537. },
  53538. [
  53539. {
  53540. name: "Normal",
  53541. height: math.unit(10, "feet"),
  53542. default: true
  53543. },
  53544. ]
  53545. ))
  53546. characterMakers.push(() => makeCharacter(
  53547. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  53548. {
  53549. front: {
  53550. height: math.unit(12, "feet"),
  53551. name: "Front",
  53552. image: {
  53553. source: "./media/characters/citra/front.svg",
  53554. extra: 1950/1710,
  53555. bottom: 47/1997
  53556. }
  53557. },
  53558. },
  53559. [
  53560. {
  53561. name: "Normal",
  53562. height: math.unit(12, "feet"),
  53563. default: true
  53564. },
  53565. ]
  53566. ))
  53567. characterMakers.push(() => makeCharacter(
  53568. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  53569. {
  53570. side: {
  53571. height: math.unit(7 + 10/12, "feet"),
  53572. name: "Side",
  53573. image: {
  53574. source: "./media/characters/sholstim/side.svg",
  53575. extra: 786/682,
  53576. bottom: 40/826
  53577. }
  53578. },
  53579. },
  53580. [
  53581. {
  53582. name: "Normal",
  53583. height: math.unit(7 + 10/12, "feet"),
  53584. default: true
  53585. },
  53586. ]
  53587. ))
  53588. characterMakers.push(() => makeCharacter(
  53589. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  53590. {
  53591. front: {
  53592. height: math.unit(3.10, "meters"),
  53593. name: "Front",
  53594. image: {
  53595. source: "./media/characters/aggyn/front.svg",
  53596. extra: 1188/963,
  53597. bottom: 24/1212
  53598. }
  53599. },
  53600. },
  53601. [
  53602. {
  53603. name: "Normal",
  53604. height: math.unit(3.10, "meters"),
  53605. default: true
  53606. },
  53607. ]
  53608. ))
  53609. characterMakers.push(() => makeCharacter(
  53610. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  53611. {
  53612. front: {
  53613. height: math.unit(7 + 5/12, "feet"),
  53614. weight: math.unit(687, "lb"),
  53615. name: "Front",
  53616. image: {
  53617. source: "./media/characters/alsandair-hergenroether/front.svg",
  53618. extra: 1251/1186,
  53619. bottom: 75/1326
  53620. }
  53621. },
  53622. back: {
  53623. height: math.unit(7 + 5/12, "feet"),
  53624. weight: math.unit(687, "lb"),
  53625. name: "Back",
  53626. image: {
  53627. source: "./media/characters/alsandair-hergenroether/back.svg",
  53628. extra: 1290/1229,
  53629. bottom: 17/1307
  53630. }
  53631. },
  53632. },
  53633. [
  53634. {
  53635. name: "Max Compression",
  53636. height: math.unit(7 + 5/12, "feet"),
  53637. default: true
  53638. },
  53639. {
  53640. name: "\"Normal\"",
  53641. height: math.unit(2, "universes")
  53642. },
  53643. ]
  53644. ))
  53645. characterMakers.push(() => makeCharacter(
  53646. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  53647. {
  53648. front: {
  53649. height: math.unit(4 + 1/12, "feet"),
  53650. weight: math.unit(92, "lb"),
  53651. name: "Front",
  53652. image: {
  53653. source: "./media/characters/ie/front.svg",
  53654. extra: 1585/1352,
  53655. bottom: 91/1676
  53656. }
  53657. },
  53658. },
  53659. [
  53660. {
  53661. name: "Normal",
  53662. height: math.unit(4 + 1/12, "feet"),
  53663. default: true
  53664. },
  53665. ]
  53666. ))
  53667. characterMakers.push(() => makeCharacter(
  53668. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  53669. {
  53670. anthro: {
  53671. height: math.unit(6, "feet"),
  53672. weight: math.unit(150, "lb"),
  53673. name: "Front",
  53674. image: {
  53675. source: "./media/characters/willow/anthro.svg",
  53676. extra: 1073/986,
  53677. bottom: 34/1107
  53678. },
  53679. form: "anthro",
  53680. default: true
  53681. },
  53682. taur: {
  53683. height: math.unit(6, "feet"),
  53684. weight: math.unit(150, "lb"),
  53685. name: "Side",
  53686. image: {
  53687. source: "./media/characters/willow/taur.svg",
  53688. extra: 647/512,
  53689. bottom: 136/783
  53690. },
  53691. form: "taur",
  53692. default: true
  53693. },
  53694. },
  53695. [
  53696. {
  53697. name: "Humanoid",
  53698. height: math.unit(2.7, "meters"),
  53699. form: "anthro"
  53700. },
  53701. {
  53702. name: "Normal",
  53703. height: math.unit(9, "meters"),
  53704. form: "anthro",
  53705. default: true
  53706. },
  53707. {
  53708. name: "Humanoid",
  53709. height: math.unit(2.1, "meters"),
  53710. form: "taur"
  53711. },
  53712. {
  53713. name: "Normal",
  53714. height: math.unit(7, "meters"),
  53715. form: "taur",
  53716. default: true
  53717. },
  53718. ],
  53719. {
  53720. "anthro": {
  53721. name: "Anthro",
  53722. default: true
  53723. },
  53724. "taur": {
  53725. name: "Taur",
  53726. },
  53727. }
  53728. ))
  53729. characterMakers.push(() => makeCharacter(
  53730. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  53731. {
  53732. front: {
  53733. height: math.unit(2 + 5/12, "feet"),
  53734. name: "Front",
  53735. image: {
  53736. source: "./media/characters/kyan/front.svg",
  53737. extra: 460/334,
  53738. bottom: 23/483
  53739. },
  53740. extraAttributes: {
  53741. "toeLength": {
  53742. name: "Toe Length",
  53743. power: 1,
  53744. type: "length",
  53745. base: math.unit(7, "cm")
  53746. },
  53747. "toeclawLength": {
  53748. name: "Toeclaw Length",
  53749. power: 1,
  53750. type: "length",
  53751. base: math.unit(4.7, "cm")
  53752. },
  53753. "earHeight": {
  53754. name: "Ear Height",
  53755. power: 1,
  53756. type: "length",
  53757. base: math.unit(14.1, "cm")
  53758. },
  53759. }
  53760. },
  53761. paws: {
  53762. height: math.unit(0.45, "feet"),
  53763. name: "Paws",
  53764. image: {
  53765. source: "./media/characters/kyan/paws.svg",
  53766. extra: 581/581,
  53767. bottom: 114/695
  53768. }
  53769. },
  53770. },
  53771. [
  53772. {
  53773. name: "Normal",
  53774. height: math.unit(2 + 5/12, "feet"),
  53775. default: true
  53776. },
  53777. ]
  53778. ))
  53779. characterMakers.push(() => makeCharacter(
  53780. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  53781. {
  53782. front: {
  53783. height: math.unit(2 + 2/3, "feet"),
  53784. name: "Front",
  53785. image: {
  53786. source: "./media/characters/xazzon/front.svg",
  53787. extra: 1109/984,
  53788. bottom: 42/1151
  53789. }
  53790. },
  53791. back: {
  53792. height: math.unit(2 + 2/3, "feet"),
  53793. name: "Back",
  53794. image: {
  53795. source: "./media/characters/xazzon/back.svg",
  53796. extra: 1095/971,
  53797. bottom: 23/1118
  53798. }
  53799. },
  53800. },
  53801. [
  53802. {
  53803. name: "Normal",
  53804. height: math.unit(2 + 2/3, "feet"),
  53805. default: true
  53806. },
  53807. ]
  53808. ))
  53809. characterMakers.push(() => makeCharacter(
  53810. { name: "Aurora Beagsidhe", species: ["catgirl"], tags: ["anthro"] },
  53811. {
  53812. dressed: {
  53813. height: math.unit(5 + 7/12, "feet"),
  53814. weight: math.unit(173, "lb"),
  53815. name: "Dressed",
  53816. image: {
  53817. source: "./media/characters/aurora-beagsidhe/dressed.svg",
  53818. extra: 3262/2862,
  53819. bottom: 188/3450
  53820. }
  53821. },
  53822. undressed: {
  53823. height: math.unit(5 + 7/12, "feet"),
  53824. weight: math.unit(173, "lb"),
  53825. name: "Undressed",
  53826. image: {
  53827. source: "./media/characters/aurora-beagsidhe/undressed.svg",
  53828. extra: 3262/2862,
  53829. bottom: 188/3450
  53830. }
  53831. },
  53832. },
  53833. [
  53834. {
  53835. name: "The void",
  53836. height: math.unit(7.29193e-34, "angstroms")
  53837. },
  53838. {
  53839. name: "Uh-Oh.",
  53840. height: math.unit(5.734e-7, "angstroms")
  53841. },
  53842. {
  53843. name: "Pico",
  53844. height: math.unit(0.876, "angstroms")
  53845. },
  53846. {
  53847. name: "Nano",
  53848. height: math.unit(0.000134200, "mm")
  53849. },
  53850. {
  53851. name: "Micro",
  53852. height: math.unit(0.0673020, "mm")
  53853. },
  53854. {
  53855. name: "Tiny",
  53856. height: math.unit(2.4, "mm")
  53857. },
  53858. {
  53859. name: "Actual Normal",
  53860. height: math.unit(3, "inches"),
  53861. default: true
  53862. },
  53863. {
  53864. name: "Normal",
  53865. height: math.unit(5 + 8/12, "feet")
  53866. },
  53867. {
  53868. name: "Giant",
  53869. height: math.unit(12, "feet")
  53870. },
  53871. {
  53872. name: "City Ruler",
  53873. height: math.unit(270, "meters")
  53874. },
  53875. {
  53876. name: "Giga",
  53877. height: math.unit(1117.6, "km")
  53878. },
  53879. {
  53880. name: "All-Powerful Queen",
  53881. height: math.unit(70.8, "gigameters")
  53882. },
  53883. {
  53884. name: "'Goddess'",
  53885. height: math.unit(600, "yottameters")
  53886. },
  53887. {
  53888. name: "Biggest!",
  53889. height: math.unit(4.23e5, "yottameters")
  53890. },
  53891. ]
  53892. ))
  53893. characterMakers.push(() => makeCharacter(
  53894. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  53895. {
  53896. front: {
  53897. height: math.unit(8, "feet"),
  53898. weight: math.unit(300, "lb"),
  53899. name: "Front",
  53900. image: {
  53901. source: "./media/characters/khyla-shadowsong/front.svg",
  53902. extra: 861/798,
  53903. bottom: 32/893
  53904. }
  53905. },
  53906. side: {
  53907. height: math.unit(8, "feet"),
  53908. weight: math.unit(300, "lb"),
  53909. name: "Side",
  53910. image: {
  53911. source: "./media/characters/khyla-shadowsong/side.svg",
  53912. extra: 790/750,
  53913. bottom: 87/877
  53914. }
  53915. },
  53916. back: {
  53917. height: math.unit(8, "feet"),
  53918. weight: math.unit(300, "lb"),
  53919. name: "Back",
  53920. image: {
  53921. source: "./media/characters/khyla-shadowsong/back.svg",
  53922. extra: 855/808,
  53923. bottom: 14/869
  53924. }
  53925. },
  53926. head: {
  53927. height: math.unit(2.7, "feet"),
  53928. name: "Head",
  53929. image: {
  53930. source: "./media/characters/khyla-shadowsong/head.svg"
  53931. }
  53932. },
  53933. },
  53934. [
  53935. {
  53936. name: "Micro",
  53937. height: math.unit(6, "inches")
  53938. },
  53939. {
  53940. name: "Normal",
  53941. height: math.unit(8, "feet"),
  53942. default: true
  53943. },
  53944. ]
  53945. ))
  53946. characterMakers.push(() => makeCharacter(
  53947. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  53948. {
  53949. hyperFront: {
  53950. height: math.unit(9 + 4/12, "feet"),
  53951. weight: math.unit(2000, "lb"),
  53952. name: "Front",
  53953. image: {
  53954. source: "./media/characters/tiden/hyper-front.svg",
  53955. extra: 400/382,
  53956. bottom: 6/406
  53957. },
  53958. form: "hyper",
  53959. },
  53960. regularFront: {
  53961. height: math.unit(7 + 10/12, "feet"),
  53962. weight: math.unit(470, "lb"),
  53963. name: "Front",
  53964. image: {
  53965. source: "./media/characters/tiden/regular-front.svg",
  53966. extra: 468/442,
  53967. bottom: 6/474
  53968. },
  53969. form: "regular",
  53970. },
  53971. },
  53972. [
  53973. {
  53974. name: "Normal",
  53975. height: math.unit(9 + 4/12, "feet"),
  53976. default: true,
  53977. form: "hyper"
  53978. },
  53979. {
  53980. name: "Normal",
  53981. height: math.unit(7 + 10/12, "feet"),
  53982. default: true,
  53983. form: "regular"
  53984. },
  53985. ],
  53986. {
  53987. "hyper": {
  53988. name: "Hyper",
  53989. default: true
  53990. },
  53991. "regular": {
  53992. name: "Regular",
  53993. },
  53994. }
  53995. ))
  53996. characterMakers.push(() => makeCharacter(
  53997. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  53998. {
  53999. side: {
  54000. height: math.unit(6, "feet"),
  54001. weight: math.unit(150, "lb"),
  54002. name: "Side",
  54003. image: {
  54004. source: "./media/characters/jason-crowe/side.svg",
  54005. extra: 1771/766,
  54006. bottom: 219/1990
  54007. }
  54008. },
  54009. },
  54010. [
  54011. {
  54012. name: "Pocket Gryphon",
  54013. height: math.unit(6, "cm")
  54014. },
  54015. {
  54016. name: "Raven",
  54017. height: math.unit(60, "cm")
  54018. },
  54019. {
  54020. name: "Normal",
  54021. height: math.unit(1, "meter"),
  54022. default: true
  54023. },
  54024. ]
  54025. ))
  54026. characterMakers.push(() => makeCharacter(
  54027. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  54028. {
  54029. front: {
  54030. height: math.unit(9 + 6/12, "feet"),
  54031. weight: math.unit(1100, "lb"),
  54032. name: "Front",
  54033. image: {
  54034. source: "./media/characters/django/front.svg",
  54035. extra: 1231/1136,
  54036. bottom: 34/1265
  54037. }
  54038. },
  54039. side: {
  54040. height: math.unit(9 + 6/12, "feet"),
  54041. weight: math.unit(1100, "lb"),
  54042. name: "Side",
  54043. image: {
  54044. source: "./media/characters/django/side.svg",
  54045. extra: 1267/1174,
  54046. bottom: 9/1276
  54047. }
  54048. },
  54049. },
  54050. [
  54051. {
  54052. name: "Normal",
  54053. height: math.unit(9 + 6/12, "feet"),
  54054. default: true
  54055. },
  54056. {
  54057. name: "Macro 1",
  54058. height: math.unit(50, "feet")
  54059. },
  54060. {
  54061. name: "Macro 2",
  54062. height: math.unit(500, "feet")
  54063. },
  54064. {
  54065. name: "Mega Macro",
  54066. height: math.unit(5300, "feet")
  54067. },
  54068. ]
  54069. ))
  54070. characterMakers.push(() => makeCharacter(
  54071. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  54072. {
  54073. frontSfw: {
  54074. height: math.unit(120, "cm"),
  54075. weight: math.unit(15, "kg"),
  54076. name: "Front (SFW)",
  54077. image: {
  54078. source: "./media/characters/eri/front-sfw.svg",
  54079. extra: 1014/939,
  54080. bottom: 37/1051
  54081. },
  54082. form: "moth",
  54083. },
  54084. frontNsfw: {
  54085. height: math.unit(120, "cm"),
  54086. weight: math.unit(15, "kg"),
  54087. name: "Front (NSFW)",
  54088. image: {
  54089. source: "./media/characters/eri/front-nsfw.svg",
  54090. extra: 1014/939,
  54091. bottom: 37/1051
  54092. },
  54093. form: "moth",
  54094. default: true
  54095. },
  54096. egg: {
  54097. height: math.unit(10, "cm"),
  54098. name: "Egg",
  54099. image: {
  54100. source: "./media/characters/eri/egg.svg"
  54101. },
  54102. form: "egg",
  54103. default: true
  54104. },
  54105. },
  54106. [
  54107. {
  54108. name: "Normal",
  54109. height: math.unit(120, "cm"),
  54110. default: true,
  54111. form: "moth"
  54112. },
  54113. {
  54114. name: "Normal",
  54115. height: math.unit(10, "cm"),
  54116. default: true,
  54117. form: "egg"
  54118. },
  54119. ],
  54120. {
  54121. "moth": {
  54122. name: "Moth",
  54123. default: true
  54124. },
  54125. "egg": {
  54126. name: "Egg",
  54127. },
  54128. }
  54129. ))
  54130. characterMakers.push(() => makeCharacter(
  54131. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  54132. {
  54133. front: {
  54134. height: math.unit(200, "feet"),
  54135. name: "Front",
  54136. image: {
  54137. source: "./media/characters/bishop-dowser/front.svg",
  54138. extra: 933/868,
  54139. bottom: 106/1039
  54140. }
  54141. },
  54142. },
  54143. [
  54144. {
  54145. name: "Giant",
  54146. height: math.unit(200, "feet"),
  54147. default: true
  54148. },
  54149. ]
  54150. ))
  54151. characterMakers.push(() => makeCharacter(
  54152. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  54153. {
  54154. front: {
  54155. height: math.unit(2, "meters"),
  54156. preyCapacity: math.unit(3, "people"),
  54157. name: "Front",
  54158. image: {
  54159. source: "./media/characters/fryra/front.svg",
  54160. extra: 1025/948,
  54161. bottom: 30/1055
  54162. },
  54163. extraAttributes: {
  54164. "breastVolume": {
  54165. name: "Breast Volume",
  54166. power: 3,
  54167. type: "volume",
  54168. base: math.unit(8, "liters")
  54169. },
  54170. }
  54171. },
  54172. back: {
  54173. height: math.unit(2, "meters"),
  54174. preyCapacity: math.unit(3, "people"),
  54175. name: "Back",
  54176. image: {
  54177. source: "./media/characters/fryra/back.svg",
  54178. extra: 993/938,
  54179. bottom: 38/1031
  54180. },
  54181. extraAttributes: {
  54182. "breastVolume": {
  54183. name: "Breast Volume",
  54184. power: 3,
  54185. type: "volume",
  54186. base: math.unit(8, "liters")
  54187. },
  54188. }
  54189. },
  54190. head: {
  54191. height: math.unit(1.33, "feet"),
  54192. name: "Head",
  54193. image: {
  54194. source: "./media/characters/fryra/head.svg"
  54195. }
  54196. },
  54197. maw: {
  54198. height: math.unit(0.56, "feet"),
  54199. name: "Maw",
  54200. image: {
  54201. source: "./media/characters/fryra/maw.svg"
  54202. }
  54203. },
  54204. },
  54205. [
  54206. {
  54207. name: "Micro",
  54208. height: math.unit(5, "cm")
  54209. },
  54210. {
  54211. name: "Normal",
  54212. height: math.unit(2, "meters"),
  54213. default: true
  54214. },
  54215. {
  54216. name: "Small Macro",
  54217. height: math.unit(8, "meters")
  54218. },
  54219. {
  54220. name: "Macro",
  54221. height: math.unit(50, "meters")
  54222. },
  54223. {
  54224. name: "Megamacro",
  54225. height: math.unit(1, "km")
  54226. },
  54227. {
  54228. name: "Planetary",
  54229. height: math.unit(300000, "km")
  54230. },
  54231. {
  54232. name: "Universal",
  54233. height: math.unit(250, "lightyears")
  54234. },
  54235. {
  54236. name: "Fabric of Reality",
  54237. height: math.unit(1000, "multiverses")
  54238. },
  54239. ]
  54240. ))
  54241. characterMakers.push(() => makeCharacter(
  54242. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  54243. {
  54244. frontDressed: {
  54245. height: math.unit(6 + 2/12, "feet"),
  54246. name: "Front (Dressed)",
  54247. image: {
  54248. source: "./media/characters/fiera/front-dressed.svg",
  54249. extra: 1883/1793,
  54250. bottom: 70/1953
  54251. }
  54252. },
  54253. backDressed: {
  54254. height: math.unit(6 + 2/12, "feet"),
  54255. name: "Back (Dressed)",
  54256. image: {
  54257. source: "./media/characters/fiera/back-dressed.svg",
  54258. extra: 1847/1780,
  54259. bottom: 70/1917
  54260. }
  54261. },
  54262. frontNude: {
  54263. height: math.unit(6 + 2/12, "feet"),
  54264. name: "Front (Nude)",
  54265. image: {
  54266. source: "./media/characters/fiera/front-nude.svg",
  54267. extra: 1875/1785,
  54268. bottom: 66/1941
  54269. }
  54270. },
  54271. backNude: {
  54272. height: math.unit(6 + 2/12, "feet"),
  54273. name: "Back (Nude)",
  54274. image: {
  54275. source: "./media/characters/fiera/back-nude.svg",
  54276. extra: 1855/1788,
  54277. bottom: 44/1899
  54278. }
  54279. },
  54280. maw: {
  54281. height: math.unit(1.3, "feet"),
  54282. name: "Maw",
  54283. image: {
  54284. source: "./media/characters/fiera/maw.svg"
  54285. }
  54286. },
  54287. paw: {
  54288. height: math.unit(1, "feet"),
  54289. name: "Paw",
  54290. image: {
  54291. source: "./media/characters/fiera/paw.svg"
  54292. }
  54293. },
  54294. shoe: {
  54295. height: math.unit(1.05, "feet"),
  54296. name: "Shoe",
  54297. image: {
  54298. source: "./media/characters/fiera/shoe.svg"
  54299. }
  54300. },
  54301. },
  54302. [
  54303. {
  54304. name: "Normal",
  54305. height: math.unit(6 + 2/12, "feet"),
  54306. default: true
  54307. },
  54308. {
  54309. name: "Size Difference",
  54310. height: math.unit(13, "feet")
  54311. },
  54312. {
  54313. name: "Macro",
  54314. height: math.unit(60, "feet")
  54315. },
  54316. {
  54317. name: "Mega Macro",
  54318. height: math.unit(200, "feet")
  54319. },
  54320. ]
  54321. ))
  54322. characterMakers.push(() => makeCharacter(
  54323. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  54324. {
  54325. back: {
  54326. height: math.unit(6, "feet"),
  54327. name: "Back",
  54328. image: {
  54329. source: "./media/characters/flare/back.svg",
  54330. extra: 1883/1765,
  54331. bottom: 32/1915
  54332. }
  54333. },
  54334. },
  54335. [
  54336. {
  54337. name: "Normal",
  54338. height: math.unit(6 + 2/12, "feet"),
  54339. default: true
  54340. },
  54341. {
  54342. name: "Size Difference",
  54343. height: math.unit(13, "feet")
  54344. },
  54345. {
  54346. name: "Macro",
  54347. height: math.unit(60, "feet")
  54348. },
  54349. {
  54350. name: "Macro 2",
  54351. height: math.unit(100, "feet")
  54352. },
  54353. {
  54354. name: "Mega Macro",
  54355. height: math.unit(200, "feet")
  54356. },
  54357. ]
  54358. ))
  54359. characterMakers.push(() => makeCharacter(
  54360. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  54361. {
  54362. front: {
  54363. height: math.unit(2.2, "m"),
  54364. weight: math.unit(300, "kg"),
  54365. name: "Front",
  54366. image: {
  54367. source: "./media/characters/hanna/front.svg",
  54368. extra: 1696/1502,
  54369. bottom: 206/1902
  54370. }
  54371. },
  54372. },
  54373. [
  54374. {
  54375. name: "Humanoid",
  54376. height: math.unit(2.2, "meters")
  54377. },
  54378. {
  54379. name: "Normal",
  54380. height: math.unit(4.8, "meters"),
  54381. default: true
  54382. },
  54383. ]
  54384. ))
  54385. characterMakers.push(() => makeCharacter(
  54386. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  54387. {
  54388. front: {
  54389. height: math.unit(2.8, "meters"),
  54390. name: "Front",
  54391. image: {
  54392. source: "./media/characters/argo/front.svg",
  54393. extra: 731/518,
  54394. bottom: 84/815
  54395. }
  54396. },
  54397. },
  54398. [
  54399. {
  54400. name: "Normal",
  54401. height: math.unit(3, "meters"),
  54402. default: true
  54403. },
  54404. ]
  54405. ))
  54406. characterMakers.push(() => makeCharacter(
  54407. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  54408. {
  54409. side: {
  54410. height: math.unit(3.8, "meters"),
  54411. name: "Side",
  54412. image: {
  54413. source: "./media/characters/sybil/side.svg",
  54414. extra: 382/361,
  54415. bottom: 25/407
  54416. }
  54417. },
  54418. },
  54419. [
  54420. {
  54421. name: "Normal",
  54422. height: math.unit(3.8, "meters"),
  54423. default: true
  54424. },
  54425. ]
  54426. ))
  54427. characterMakers.push(() => makeCharacter(
  54428. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  54429. {
  54430. side: {
  54431. height: math.unit(6, "meters"),
  54432. name: "Side",
  54433. image: {
  54434. source: "./media/characters/plum/side.svg",
  54435. extra: 858/755,
  54436. bottom: 45/903
  54437. },
  54438. form: "taur",
  54439. default: true
  54440. },
  54441. back: {
  54442. height: math.unit(6.3, "meters"),
  54443. name: "Back",
  54444. image: {
  54445. source: "./media/characters/plum/back.svg",
  54446. extra: 887/813,
  54447. bottom: 32/919
  54448. },
  54449. form: "taur",
  54450. },
  54451. feral: {
  54452. height: math.unit(5.5, "meter"),
  54453. name: "Front",
  54454. image: {
  54455. source: "./media/characters/plum/feral.svg",
  54456. extra: 568/403,
  54457. bottom: 51/619
  54458. },
  54459. form: "feral",
  54460. default: true
  54461. },
  54462. head: {
  54463. height: math.unit(1.46, "meter"),
  54464. name: "Head",
  54465. image: {
  54466. source: "./media/characters/plum/head.svg"
  54467. },
  54468. form: "taur"
  54469. },
  54470. tailTop: {
  54471. height: math.unit(5.6, "meter"),
  54472. name: "Tail (Top)",
  54473. image: {
  54474. source: "./media/characters/plum/tail-top.svg"
  54475. },
  54476. form: "taur",
  54477. },
  54478. tailBottom: {
  54479. height: math.unit(5.6, "meter"),
  54480. name: "Tail (Bottom)",
  54481. image: {
  54482. source: "./media/characters/plum/tail-bottom.svg"
  54483. },
  54484. form: "taur",
  54485. },
  54486. feralHead: {
  54487. height: math.unit(2.56549521, "meter"),
  54488. name: "Head",
  54489. image: {
  54490. source: "./media/characters/plum/head.svg"
  54491. },
  54492. form: "feral"
  54493. },
  54494. feralTailTop: {
  54495. height: math.unit(5.44728435, "meter"),
  54496. name: "Tail (Top)",
  54497. image: {
  54498. source: "./media/characters/plum/tail-top.svg"
  54499. },
  54500. form: "feral",
  54501. },
  54502. feralTailBottom: {
  54503. height: math.unit(5.44728435, "meter"),
  54504. name: "Tail (Bottom)",
  54505. image: {
  54506. source: "./media/characters/plum/tail-bottom.svg"
  54507. },
  54508. form: "feral",
  54509. },
  54510. },
  54511. [
  54512. {
  54513. name: "Normal",
  54514. height: math.unit(6, "meters"),
  54515. default: true,
  54516. form: "taur"
  54517. },
  54518. {
  54519. name: "Normal",
  54520. height: math.unit(5.5, "meters"),
  54521. default: true,
  54522. form: "feral"
  54523. },
  54524. ],
  54525. {
  54526. "taur": {
  54527. name: "Taur",
  54528. default: true
  54529. },
  54530. "feral": {
  54531. name: "Feral",
  54532. },
  54533. }
  54534. ))
  54535. characterMakers.push(() => makeCharacter(
  54536. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  54537. {
  54538. front: {
  54539. height: math.unit(6, "feet"),
  54540. weight: math.unit(115, "lb"),
  54541. name: "Front",
  54542. image: {
  54543. source: "./media/characters/celeste-kitsune/front.svg",
  54544. extra: 393/366,
  54545. bottom: 7/400
  54546. }
  54547. },
  54548. side: {
  54549. height: math.unit(6, "feet"),
  54550. weight: math.unit(115, "lb"),
  54551. name: "Side",
  54552. image: {
  54553. source: "./media/characters/celeste-kitsune/side.svg",
  54554. extra: 818/765,
  54555. bottom: 40/858
  54556. }
  54557. },
  54558. },
  54559. [
  54560. {
  54561. name: "Megamacro",
  54562. height: math.unit(1500, "miles"),
  54563. default: true
  54564. },
  54565. ]
  54566. ))
  54567. characterMakers.push(() => makeCharacter(
  54568. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  54569. {
  54570. front: {
  54571. height: math.unit(8, "meters"),
  54572. name: "Front",
  54573. image: {
  54574. source: "./media/characters/io/front.svg",
  54575. extra: 865/722,
  54576. bottom: 58/923
  54577. }
  54578. },
  54579. back: {
  54580. height: math.unit(8, "meters"),
  54581. name: "Back",
  54582. image: {
  54583. source: "./media/characters/io/back.svg",
  54584. extra: 920/776,
  54585. bottom: 42/962
  54586. }
  54587. },
  54588. head: {
  54589. height: math.unit(5.09, "meters"),
  54590. name: "Head",
  54591. image: {
  54592. source: "./media/characters/io/head.svg"
  54593. }
  54594. },
  54595. hand: {
  54596. height: math.unit(1.6, "meters"),
  54597. name: "Hand",
  54598. image: {
  54599. source: "./media/characters/io/hand.svg"
  54600. }
  54601. },
  54602. foot: {
  54603. height: math.unit(2.4, "meters"),
  54604. name: "Foot",
  54605. image: {
  54606. source: "./media/characters/io/foot.svg"
  54607. }
  54608. },
  54609. },
  54610. [
  54611. {
  54612. name: "Normal",
  54613. height: math.unit(8, "meters"),
  54614. default: true
  54615. },
  54616. ]
  54617. ))
  54618. characterMakers.push(() => makeCharacter(
  54619. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  54620. {
  54621. side: {
  54622. height: math.unit(6 + 3/12, "feet"),
  54623. weight: math.unit(225, "lb"),
  54624. name: "Side",
  54625. image: {
  54626. source: "./media/characters/silas/side.svg",
  54627. extra: 703/653,
  54628. bottom: 23/726
  54629. },
  54630. extraAttributes: {
  54631. "pawLength": {
  54632. name: "Paw Length",
  54633. power: 1,
  54634. type: "length",
  54635. base: math.unit(12, "inches")
  54636. },
  54637. "pawWidth": {
  54638. name: "Paw Width",
  54639. power: 1,
  54640. type: "length",
  54641. base: math.unit(4.5, "inches")
  54642. },
  54643. "pawArea": {
  54644. name: "Paw Area",
  54645. power: 2,
  54646. type: "area",
  54647. base: math.unit(12 * 4.5, "inches^2")
  54648. },
  54649. }
  54650. },
  54651. },
  54652. [
  54653. {
  54654. name: "Normal",
  54655. height: math.unit(6 + 3/12, "feet"),
  54656. default: true
  54657. },
  54658. ]
  54659. ))
  54660. characterMakers.push(() => makeCharacter(
  54661. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  54662. {
  54663. back: {
  54664. height: math.unit(1.6, "meters"),
  54665. weight: math.unit(150, "lb"),
  54666. name: "Back",
  54667. image: {
  54668. source: "./media/characters/zari/back.svg",
  54669. extra: 424/411,
  54670. bottom: 32/456
  54671. },
  54672. extraAttributes: {
  54673. "bladderCapacity": {
  54674. name: "Bladder Size",
  54675. power: 3,
  54676. type: "volume",
  54677. base: math.unit(500, "mL")
  54678. },
  54679. "bladderFlow": {
  54680. name: "Flow Rate",
  54681. power: 3,
  54682. type: "volume",
  54683. base: math.unit(25, "mL")
  54684. },
  54685. }
  54686. },
  54687. },
  54688. [
  54689. {
  54690. name: "Normal",
  54691. height: math.unit(1.6, "meters"),
  54692. default: true
  54693. },
  54694. ]
  54695. ))
  54696. characterMakers.push(() => makeCharacter(
  54697. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  54698. {
  54699. front: {
  54700. height: math.unit(25, "feet"),
  54701. weight: math.unit(5, "tons"),
  54702. name: "Front",
  54703. image: {
  54704. source: "./media/characters/charlie-human/front.svg",
  54705. extra: 1870/1740,
  54706. bottom: 102/1972
  54707. },
  54708. extraAttributes: {
  54709. "dickLength": {
  54710. name: "Dick Length",
  54711. power: 1,
  54712. type: "length",
  54713. base: math.unit(9, "feet")
  54714. },
  54715. }
  54716. },
  54717. back: {
  54718. height: math.unit(25, "feet"),
  54719. weight: math.unit(5, "tons"),
  54720. name: "Back",
  54721. image: {
  54722. source: "./media/characters/charlie-human/back.svg",
  54723. extra: 1858/1733,
  54724. bottom: 105/1963
  54725. },
  54726. extraAttributes: {
  54727. "dickLength": {
  54728. name: "Dick Length",
  54729. power: 1,
  54730. type: "length",
  54731. base: math.unit(9, "feet")
  54732. },
  54733. }
  54734. },
  54735. },
  54736. [
  54737. {
  54738. name: "\"Normal\"",
  54739. height: math.unit(6 + 4/12, "feet")
  54740. },
  54741. {
  54742. name: "Big",
  54743. height: math.unit(25, "feet"),
  54744. default: true
  54745. },
  54746. ]
  54747. ))
  54748. characterMakers.push(() => makeCharacter(
  54749. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  54750. {
  54751. front: {
  54752. height: math.unit(6 + 4/12, "feet"),
  54753. weight: math.unit(320, "lb"),
  54754. name: "Front",
  54755. image: {
  54756. source: "./media/characters/ookitsu/front.svg",
  54757. extra: 1160/976,
  54758. bottom: 38/1198
  54759. }
  54760. },
  54761. frontNsfw: {
  54762. height: math.unit(6 + 4/12, "feet"),
  54763. weight: math.unit(320, "lb"),
  54764. name: "Front (NSFW)",
  54765. image: {
  54766. source: "./media/characters/ookitsu/front-nsfw.svg",
  54767. extra: 1160/976,
  54768. bottom: 38/1198
  54769. }
  54770. },
  54771. back: {
  54772. height: math.unit(6 + 4/12, "feet"),
  54773. weight: math.unit(320, "lb"),
  54774. name: "Back",
  54775. image: {
  54776. source: "./media/characters/ookitsu/back.svg",
  54777. extra: 1030/975,
  54778. bottom: 70/1100
  54779. }
  54780. },
  54781. head: {
  54782. height: math.unit(1.79, "feet"),
  54783. name: "Head",
  54784. image: {
  54785. source: "./media/characters/ookitsu/head.svg"
  54786. }
  54787. },
  54788. hand: {
  54789. height: math.unit(0.92, "feet"),
  54790. name: "Hand",
  54791. image: {
  54792. source: "./media/characters/ookitsu/hand.svg"
  54793. }
  54794. },
  54795. tails: {
  54796. height: math.unit(3.3, "feet"),
  54797. name: "Tails",
  54798. image: {
  54799. source: "./media/characters/ookitsu/tails.svg"
  54800. }
  54801. },
  54802. dick: {
  54803. height: math.unit(1.10833, "feet"),
  54804. name: "Dick",
  54805. image: {
  54806. source: "./media/characters/ookitsu/dick.svg"
  54807. }
  54808. },
  54809. },
  54810. [
  54811. {
  54812. name: "Normal",
  54813. height: math.unit(6 + 4/12, "feet"),
  54814. default: true
  54815. },
  54816. {
  54817. name: "Macro",
  54818. height: math.unit(30, "feet")
  54819. },
  54820. ]
  54821. ))
  54822. characterMakers.push(() => makeCharacter(
  54823. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  54824. {
  54825. anthroFront: {
  54826. height: math.unit(6, "feet"),
  54827. weight: math.unit(250, "lb"),
  54828. name: "Front",
  54829. image: {
  54830. source: "./media/characters/jhusky/anthro-front.svg",
  54831. extra: 474/439,
  54832. bottom: 7/481
  54833. },
  54834. form: "anthro",
  54835. default: true
  54836. },
  54837. taurSideSfw: {
  54838. height: math.unit(6 + 4/12, "feet"),
  54839. weight: math.unit(500, "lb"),
  54840. name: "Side (SFW)",
  54841. image: {
  54842. source: "./media/characters/jhusky/taur-side-sfw.svg",
  54843. extra: 1741/1629,
  54844. bottom: 196/1937
  54845. },
  54846. form: "taur",
  54847. default: true
  54848. },
  54849. taurSideNsfw: {
  54850. height: math.unit(6 + 4/12, "feet"),
  54851. weight: math.unit(500, "lb"),
  54852. name: "Taur (NSFW)",
  54853. image: {
  54854. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  54855. extra: 1741/1629,
  54856. bottom: 196/1937
  54857. },
  54858. form: "taur",
  54859. },
  54860. },
  54861. [
  54862. {
  54863. name: "Huge",
  54864. height: math.unit(500, "feet"),
  54865. form: "anthro"
  54866. },
  54867. {
  54868. name: "Macro",
  54869. height: math.unit(1000, "feet"),
  54870. default: true,
  54871. form: "anthro"
  54872. },
  54873. {
  54874. name: "Megamacro",
  54875. height: math.unit(10000, "feet"),
  54876. form: "anthro"
  54877. },
  54878. {
  54879. name: "Huge",
  54880. height: math.unit(528, "feet"),
  54881. form: "taur"
  54882. },
  54883. {
  54884. name: "Macro",
  54885. height: math.unit(1056, "feet"),
  54886. default: true,
  54887. form: "taur"
  54888. },
  54889. {
  54890. name: "Megamacro",
  54891. height: math.unit(10556, "feet"),
  54892. form: "taur"
  54893. },
  54894. ],
  54895. {
  54896. "anthro": {
  54897. name: "Anthro",
  54898. default: true
  54899. },
  54900. "taur": {
  54901. name: "Taur",
  54902. },
  54903. }
  54904. ))
  54905. characterMakers.push(() => makeCharacter(
  54906. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  54907. {
  54908. front: {
  54909. height: math.unit(8, "feet"),
  54910. weight: math.unit(500, "lb"),
  54911. name: "Front",
  54912. image: {
  54913. source: "./media/characters/armail/front.svg",
  54914. extra: 1753/1669,
  54915. bottom: 155/1908
  54916. }
  54917. },
  54918. back: {
  54919. height: math.unit(8, "feet"),
  54920. weight: math.unit(500, "lb"),
  54921. name: "Back",
  54922. image: {
  54923. source: "./media/characters/armail/back.svg",
  54924. extra: 1872/1803,
  54925. bottom: 63/1935
  54926. }
  54927. },
  54928. },
  54929. [
  54930. {
  54931. name: "Micro",
  54932. height: math.unit(0.25, "feet")
  54933. },
  54934. {
  54935. name: "Normal",
  54936. height: math.unit(8, "feet"),
  54937. default: true
  54938. },
  54939. {
  54940. name: "Mini-macro",
  54941. height: math.unit(30, "feet")
  54942. },
  54943. {
  54944. name: "Macro",
  54945. height: math.unit(400, "feet")
  54946. },
  54947. {
  54948. name: "Mega-macro",
  54949. height: math.unit(6000, "feet")
  54950. },
  54951. ]
  54952. ))
  54953. characterMakers.push(() => makeCharacter(
  54954. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  54955. {
  54956. front: {
  54957. height: math.unit(6 + 7/12, "feet"),
  54958. weight: math.unit(210, "lb"),
  54959. name: "Front",
  54960. image: {
  54961. source: "./media/characters/wilfred-t-buxton/front.svg",
  54962. extra: 1068/882,
  54963. bottom: 28/1096
  54964. }
  54965. },
  54966. },
  54967. [
  54968. {
  54969. name: "Normal",
  54970. height: math.unit(6 + 7/12, "feet"),
  54971. default: true
  54972. },
  54973. ]
  54974. ))
  54975. characterMakers.push(() => makeCharacter(
  54976. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  54977. {
  54978. front: {
  54979. height: math.unit(5 + 2/12, "feet"),
  54980. weight: math.unit(120, "lb"),
  54981. name: "Front",
  54982. image: {
  54983. source: "./media/characters/leighton-marrow/front.svg",
  54984. extra: 441/409,
  54985. bottom: 37/478
  54986. }
  54987. },
  54988. },
  54989. [
  54990. {
  54991. name: "Normal",
  54992. height: math.unit(5 + 2/12, "feet"),
  54993. default: true
  54994. },
  54995. ]
  54996. ))
  54997. characterMakers.push(() => makeCharacter(
  54998. { name: "Licos", species: ["werewolf"], tags: ["anthro"] },
  54999. {
  55000. front: {
  55001. height: math.unit(4, "meters"),
  55002. weight: math.unit(1200, "kg"),
  55003. name: "Front",
  55004. image: {
  55005. source: "./media/characters/licos/front.svg",
  55006. extra: 1727/1604,
  55007. bottom: 101/1828
  55008. }
  55009. },
  55010. },
  55011. [
  55012. {
  55013. name: "Normal",
  55014. height: math.unit(4, "meters"),
  55015. default: true
  55016. },
  55017. ]
  55018. ))
  55019. characterMakers.push(() => makeCharacter(
  55020. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  55021. {
  55022. front: {
  55023. height: math.unit(10 + 3/12, "feet"),
  55024. name: "Front",
  55025. image: {
  55026. source: "./media/characters/theo-monkey/front.svg",
  55027. extra: 1735/1658,
  55028. bottom: 73/1808
  55029. }
  55030. },
  55031. back: {
  55032. height: math.unit(10 + 3/12, "feet"),
  55033. name: "Back",
  55034. image: {
  55035. source: "./media/characters/theo-monkey/back.svg",
  55036. extra: 1742/1664,
  55037. bottom: 33/1775
  55038. }
  55039. },
  55040. head: {
  55041. height: math.unit(2.29, "feet"),
  55042. name: "Head",
  55043. image: {
  55044. source: "./media/characters/theo-monkey/head.svg"
  55045. }
  55046. },
  55047. handPalm: {
  55048. height: math.unit(1.73, "feet"),
  55049. name: "Hand (Palm)",
  55050. image: {
  55051. source: "./media/characters/theo-monkey/hand-palm.svg"
  55052. }
  55053. },
  55054. handBack: {
  55055. height: math.unit(1.63, "feet"),
  55056. name: "Hand (Back)",
  55057. image: {
  55058. source: "./media/characters/theo-monkey/hand-back.svg"
  55059. }
  55060. },
  55061. footSole: {
  55062. height: math.unit(2.15, "feet"),
  55063. name: "Foot (Sole)",
  55064. image: {
  55065. source: "./media/characters/theo-monkey/foot-sole.svg"
  55066. }
  55067. },
  55068. footSide: {
  55069. height: math.unit(1.6, "feet"),
  55070. name: "Foot (Side)",
  55071. image: {
  55072. source: "./media/characters/theo-monkey/foot-side.svg"
  55073. }
  55074. },
  55075. },
  55076. [
  55077. {
  55078. name: "Normal",
  55079. height: math.unit(10 + 3/12, "feet"),
  55080. default: true
  55081. },
  55082. ]
  55083. ))
  55084. characterMakers.push(() => makeCharacter(
  55085. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  55086. {
  55087. front: {
  55088. height: math.unit(11, "feet"),
  55089. weight: math.unit(3000, "lb"),
  55090. preyCapacity: math.unit(10, "people"),
  55091. name: "Front",
  55092. image: {
  55093. source: "./media/characters/brook/front.svg",
  55094. extra: 909/835,
  55095. bottom: 108/1017
  55096. }
  55097. },
  55098. back: {
  55099. height: math.unit(11, "feet"),
  55100. weight: math.unit(3000, "lb"),
  55101. preyCapacity: math.unit(10, "people"),
  55102. name: "Back",
  55103. image: {
  55104. source: "./media/characters/brook/back.svg",
  55105. extra: 976/916,
  55106. bottom: 34/1010
  55107. }
  55108. },
  55109. backAlt: {
  55110. height: math.unit(11, "feet"),
  55111. weight: math.unit(3000, "lb"),
  55112. preyCapacity: math.unit(10, "people"),
  55113. name: "Back (Alt)",
  55114. image: {
  55115. source: "./media/characters/brook/back-alt.svg",
  55116. extra: 1283/1213,
  55117. bottom: 35/1318
  55118. }
  55119. },
  55120. bust: {
  55121. height: math.unit(9.0859030837, "feet"),
  55122. weight: math.unit(3000, "lb"),
  55123. preyCapacity: math.unit(10, "people"),
  55124. name: "Bust",
  55125. image: {
  55126. source: "./media/characters/brook/bust.svg",
  55127. extra: 2043/1923,
  55128. bottom: 0/2043
  55129. }
  55130. },
  55131. },
  55132. [
  55133. {
  55134. name: "Small",
  55135. height: math.unit(11, "feet"),
  55136. default: true
  55137. },
  55138. {
  55139. name: "Towering",
  55140. height: math.unit(5, "km")
  55141. },
  55142. {
  55143. name: "Enormous",
  55144. height: math.unit(25, "earths")
  55145. },
  55146. ]
  55147. ))
  55148. characterMakers.push(() => makeCharacter(
  55149. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  55150. {
  55151. front: {
  55152. height: math.unit(4, "feet"),
  55153. weight: math.unit(150, "lb"),
  55154. name: "Front",
  55155. image: {
  55156. source: "./media/characters/squishi/front.svg",
  55157. extra: 1428/1271,
  55158. bottom: 30/1458
  55159. },
  55160. extraAttributes: {
  55161. "pawSize": {
  55162. name: "Paw Size",
  55163. power: 1,
  55164. type: "length",
  55165. base: math.unit(14, "ShoeSizeMensUS"),
  55166. defaultUnit: "ShoeSizeMensUS"
  55167. },
  55168. }
  55169. },
  55170. side: {
  55171. height: math.unit(4, "feet"),
  55172. weight: math.unit(150, "lb"),
  55173. name: "Side",
  55174. image: {
  55175. source: "./media/characters/squishi/side.svg",
  55176. extra: 1428/1271,
  55177. bottom: 30/1458
  55178. },
  55179. extraAttributes: {
  55180. "pawSize": {
  55181. name: "Paw Size",
  55182. power: 1,
  55183. type: "length",
  55184. base: math.unit(14, "ShoeSizeMensUS"),
  55185. defaultUnit: "ShoeSizeMensUS"
  55186. },
  55187. }
  55188. },
  55189. back: {
  55190. height: math.unit(4, "feet"),
  55191. weight: math.unit(150, "lb"),
  55192. name: "Back",
  55193. image: {
  55194. source: "./media/characters/squishi/back.svg",
  55195. extra: 1428/1271,
  55196. bottom: 30/1458
  55197. },
  55198. extraAttributes: {
  55199. "pawSize": {
  55200. name: "Paw Size",
  55201. power: 1,
  55202. type: "length",
  55203. base: math.unit(14, "ShoeSizeMensUS"),
  55204. defaultUnit: "ShoeSizeMensUS"
  55205. },
  55206. }
  55207. },
  55208. },
  55209. [
  55210. {
  55211. name: "Normal",
  55212. height: math.unit(4, "feet"),
  55213. default: true
  55214. },
  55215. ]
  55216. ))
  55217. characterMakers.push(() => makeCharacter(
  55218. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  55219. {
  55220. front: {
  55221. height: math.unit(7 + 8/12, "feet"),
  55222. weight: math.unit(333, "lb"),
  55223. name: "Front",
  55224. image: {
  55225. source: "./media/characters/vincent-vasroc/front.svg",
  55226. extra: 1962/1860,
  55227. bottom: 41/2003
  55228. }
  55229. },
  55230. back: {
  55231. height: math.unit(7 + 8/12, "feet"),
  55232. weight: math.unit(333, "lb"),
  55233. name: "Back",
  55234. image: {
  55235. source: "./media/characters/vincent-vasroc/back.svg",
  55236. extra: 1952/1815,
  55237. bottom: 33/1985
  55238. }
  55239. },
  55240. paw: {
  55241. height: math.unit(1.24, "feet"),
  55242. name: "Paw",
  55243. image: {
  55244. source: "./media/characters/vincent-vasroc/paw.svg"
  55245. }
  55246. },
  55247. ear: {
  55248. height: math.unit(0.75, "feet"),
  55249. name: "Ear",
  55250. image: {
  55251. source: "./media/characters/vincent-vasroc/ear.svg"
  55252. }
  55253. },
  55254. },
  55255. [
  55256. {
  55257. name: "Nano",
  55258. height: math.unit(92, "micrometers")
  55259. },
  55260. {
  55261. name: "Normal",
  55262. height: math.unit(7 + 8/12, "feet"),
  55263. default: true
  55264. },
  55265. ]
  55266. ))
  55267. characterMakers.push(() => makeCharacter(
  55268. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  55269. {
  55270. frontNsfw: {
  55271. height: math.unit(40, "feet"),
  55272. weight: math.unit(58, "tons"),
  55273. name: "Front (NSFW)",
  55274. image: {
  55275. source: "./media/characters/ru-kahn/front-nsfw.svg",
  55276. extra: 1265/965,
  55277. bottom: 155/1420
  55278. }
  55279. },
  55280. frontSfw: {
  55281. height: math.unit(40, "feet"),
  55282. weight: math.unit(58, "tons"),
  55283. name: "Front (SFW)",
  55284. image: {
  55285. source: "./media/characters/ru-kahn/front-sfw.svg",
  55286. extra: 1265/965,
  55287. bottom: 80/1345
  55288. }
  55289. },
  55290. },
  55291. [
  55292. {
  55293. name: "Small",
  55294. height: math.unit(4, "feet")
  55295. },
  55296. {
  55297. name: "Normal",
  55298. height: math.unit(40, "feet"),
  55299. default: true
  55300. },
  55301. {
  55302. name: "Macro",
  55303. height: math.unit(400, "feet")
  55304. },
  55305. ]
  55306. ))
  55307. characterMakers.push(() => makeCharacter(
  55308. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  55309. {
  55310. frontNude: {
  55311. height: math.unit(6 + 5/12, "feet"),
  55312. name: "Front (Nude)",
  55313. image: {
  55314. source: "./media/characters/sylvie-laforge/front-nude.svg",
  55315. extra: 1369/1366,
  55316. bottom: 68/1437
  55317. }
  55318. },
  55319. frontDressed: {
  55320. height: math.unit(6 + 5/12, "feet"),
  55321. name: "Front (Dressed)",
  55322. image: {
  55323. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  55324. extra: 1369/1366,
  55325. bottom: 68/1437
  55326. }
  55327. },
  55328. },
  55329. [
  55330. {
  55331. name: "Normal",
  55332. height: math.unit(6 + 5/12, "feet"),
  55333. default: true
  55334. },
  55335. {
  55336. name: "Maximum",
  55337. height: math.unit(1930, "feet")
  55338. },
  55339. ]
  55340. ))
  55341. characterMakers.push(() => makeCharacter(
  55342. { name: "Kaja", species: ["zoroark"], tags: ["anthro"] },
  55343. {
  55344. front: {
  55345. height: math.unit(5 + 6/12, "feet"),
  55346. name: "Front",
  55347. image: {
  55348. source: "./media/characters/kaja/front.svg",
  55349. extra: 1874/1514,
  55350. bottom: 117/1991
  55351. }
  55352. },
  55353. },
  55354. [
  55355. {
  55356. name: "Normal",
  55357. height: math.unit(5 + 6/12, "feet"),
  55358. default: true
  55359. },
  55360. ]
  55361. ))
  55362. characterMakers.push(() => makeCharacter(
  55363. { name: "Mark Smith", species: ["husky"], tags: ["anthro"] },
  55364. {
  55365. front: {
  55366. height: math.unit(5 + 9/12, "feet"),
  55367. weight: math.unit(200, "lb"),
  55368. name: "Front",
  55369. image: {
  55370. source: "./media/characters/mark-smith/front.svg",
  55371. extra: 1004/943,
  55372. bottom: 58/1062
  55373. }
  55374. },
  55375. back: {
  55376. height: math.unit(5 + 9/12, "feet"),
  55377. weight: math.unit(200, "lb"),
  55378. name: "Back",
  55379. image: {
  55380. source: "./media/characters/mark-smith/back.svg",
  55381. extra: 1023/953,
  55382. bottom: 24/1047
  55383. }
  55384. },
  55385. head: {
  55386. height: math.unit(1.82, "feet"),
  55387. name: "Head",
  55388. image: {
  55389. source: "./media/characters/mark-smith/head.svg"
  55390. }
  55391. },
  55392. hand: {
  55393. height: math.unit(1.4, "feet"),
  55394. name: "Hand",
  55395. image: {
  55396. source: "./media/characters/mark-smith/hand.svg"
  55397. }
  55398. },
  55399. paw: {
  55400. height: math.unit(1.69, "feet"),
  55401. name: "Paw",
  55402. image: {
  55403. source: "./media/characters/mark-smith/paw.svg"
  55404. }
  55405. },
  55406. },
  55407. [
  55408. {
  55409. name: "Micro",
  55410. height: math.unit(0.25, "inches")
  55411. },
  55412. {
  55413. name: "Normal",
  55414. height: math.unit(5 + 9/12, "feet"),
  55415. default: true
  55416. },
  55417. {
  55418. name: "Macro",
  55419. height: math.unit(500, "feet")
  55420. },
  55421. ]
  55422. ))
  55423. characterMakers.push(() => makeCharacter(
  55424. { name: "Rebecca 'Becky' Houston", species: ["gryphon"], tags: ["anthro"] },
  55425. {
  55426. frontNude: {
  55427. height: math.unit(6, "feet"),
  55428. name: "Front (Nude)",
  55429. image: {
  55430. source: "./media/characters/rebecca-becky-houston/front-nude.svg",
  55431. extra: 1384/1321,
  55432. bottom: 57/1441
  55433. }
  55434. },
  55435. frontDressed: {
  55436. height: math.unit(6, "feet"),
  55437. name: "Front (Dressed)",
  55438. image: {
  55439. source: "./media/characters/rebecca-becky-houston/front-dressed.svg",
  55440. extra: 1384/1321,
  55441. bottom: 57/1441
  55442. }
  55443. },
  55444. },
  55445. [
  55446. {
  55447. name: "Normal",
  55448. height: math.unit(6, "feet"),
  55449. default: true
  55450. },
  55451. {
  55452. name: "Maximum",
  55453. height: math.unit(1776, "feet")
  55454. },
  55455. ]
  55456. ))
  55457. characterMakers.push(() => makeCharacter(
  55458. { name: "Devos", species: ["dragon"], tags: ["feral"] },
  55459. {
  55460. front: {
  55461. height: math.unit(2 + 4/12, "feet"),
  55462. weight: math.unit(350, "lb"),
  55463. name: "Front",
  55464. image: {
  55465. source: "./media/characters/devos/front.svg",
  55466. extra: 958/852,
  55467. bottom: 143/1101
  55468. }
  55469. },
  55470. },
  55471. [
  55472. {
  55473. name: "Base",
  55474. height: math.unit(2 + 4/12, "feet"),
  55475. default: true
  55476. },
  55477. ]
  55478. ))
  55479. characterMakers.push(() => makeCharacter(
  55480. { name: "Hiveheart", species: ["sliver"], tags: ["anthro"] },
  55481. {
  55482. front: {
  55483. height: math.unit(9 + 2/12, "feet"),
  55484. name: "Front",
  55485. image: {
  55486. source: "./media/characters/hiveheart/front.svg",
  55487. extra: 394/364,
  55488. bottom: 65/459
  55489. }
  55490. },
  55491. back: {
  55492. height: math.unit(9 + 2/12, "feet"),
  55493. name: "Back",
  55494. image: {
  55495. source: "./media/characters/hiveheart/back.svg",
  55496. extra: 374/357,
  55497. bottom: 63/437
  55498. }
  55499. },
  55500. },
  55501. [
  55502. {
  55503. name: "Base",
  55504. height: math.unit(9 + 2/12, "feet"),
  55505. default: true
  55506. },
  55507. ]
  55508. ))
  55509. characterMakers.push(() => makeCharacter(
  55510. { name: "Bryn", species: ["moth"], tags: ["anthro"] },
  55511. {
  55512. front: {
  55513. height: math.unit(2.5, "inches"),
  55514. weight: math.unit(0.6, "oz"),
  55515. name: "Front",
  55516. image: {
  55517. source: "./media/characters/bryn/front.svg",
  55518. extra: 1480/1205,
  55519. bottom: 27/1507
  55520. }
  55521. },
  55522. back: {
  55523. height: math.unit(2.5, "inches"),
  55524. weight: math.unit(0.6, "oz"),
  55525. name: "Back",
  55526. image: {
  55527. source: "./media/characters/bryn/back.svg",
  55528. extra: 1475/1201,
  55529. bottom: 39/1514
  55530. }
  55531. },
  55532. foot: {
  55533. height: math.unit(0.4, "inches"),
  55534. name: "Foot",
  55535. image: {
  55536. source: "./media/characters/bryn/foot.svg"
  55537. }
  55538. },
  55539. },
  55540. [
  55541. {
  55542. name: "Normal",
  55543. height: math.unit(2.5, "inches"),
  55544. default: true
  55545. },
  55546. ]
  55547. ))
  55548. characterMakers.push(() => makeCharacter(
  55549. { name: "Delta", species: ["dragon"], tags: ["feral"] },
  55550. {
  55551. side: {
  55552. height: math.unit(7, "feet"),
  55553. weight: math.unit(657, "kg"),
  55554. name: "Side",
  55555. image: {
  55556. source: "./media/characters/delta/side.svg",
  55557. extra: 781/212,
  55558. bottom: 7/788
  55559. },
  55560. extraAttributes: {
  55561. "wingspan": {
  55562. name: "Wingspan",
  55563. power: 1,
  55564. type: "length",
  55565. base: math.unit(48, "feet")
  55566. },
  55567. "length": {
  55568. name: "Length",
  55569. power: 1,
  55570. type: "length",
  55571. base: math.unit(21, "feet")
  55572. },
  55573. "pawSize": {
  55574. name: "Paw Size",
  55575. power: 2,
  55576. type: "area",
  55577. base: math.unit(1.5*1.4, "feet^2")
  55578. },
  55579. }
  55580. },
  55581. },
  55582. [
  55583. {
  55584. name: "Normal",
  55585. height: math.unit(6, "feet"),
  55586. default: true
  55587. },
  55588. ]
  55589. ))
  55590. characterMakers.push(() => makeCharacter(
  55591. { name: "Pyrow", species: ["sergix"], tags: ["anthro"] },
  55592. {
  55593. front: {
  55594. height: math.unit(6, "feet"),
  55595. name: "Front",
  55596. image: {
  55597. source: "./media/characters/pyrow/front.svg",
  55598. extra: 513/486,
  55599. bottom: 14/527
  55600. }
  55601. },
  55602. frontWing: {
  55603. height: math.unit(6, "feet"),
  55604. name: "Front (Wing)",
  55605. image: {
  55606. source: "./media/characters/pyrow/front-wing.svg",
  55607. extra: 539/383,
  55608. bottom: 20/559
  55609. }
  55610. },
  55611. back: {
  55612. height: math.unit(6, "feet"),
  55613. name: "Back",
  55614. image: {
  55615. source: "./media/characters/pyrow/back.svg",
  55616. extra: 500/473,
  55617. bottom: 9/509
  55618. }
  55619. },
  55620. },
  55621. [
  55622. {
  55623. name: "Normal",
  55624. height: math.unit(6, "feet"),
  55625. default: true
  55626. },
  55627. ]
  55628. ))
  55629. characterMakers.push(() => makeCharacter(
  55630. { name: "Velikan", species: ["behemoth"], tags: ["anthro"] },
  55631. {
  55632. front: {
  55633. height: math.unit(5, "meters"),
  55634. weight: math.unit(3, "tonnes"),
  55635. name: "Front",
  55636. image: {
  55637. source: "./media/characters/velikan/front.svg",
  55638. extra: 867/744,
  55639. bottom: 71/938
  55640. },
  55641. extraAttributes: {
  55642. "shoeSize": {
  55643. name: "Shoe Size",
  55644. power: 1,
  55645. type: "length",
  55646. base: math.unit(135, "ShoeSizeUK"),
  55647. defaultUnit: "ShoeSizeUK"
  55648. },
  55649. }
  55650. },
  55651. },
  55652. [
  55653. {
  55654. name: "Normal",
  55655. height: math.unit(5, "meters"),
  55656. default: true
  55657. },
  55658. {
  55659. name: "Macro",
  55660. height: math.unit(1, "km")
  55661. },
  55662. {
  55663. name: "Mega Macro",
  55664. height: math.unit(100, "km")
  55665. },
  55666. {
  55667. name: "Giga Macro",
  55668. height: math.unit(2, "megameters")
  55669. },
  55670. {
  55671. name: "Planetary",
  55672. height: math.unit(22, "megameters")
  55673. },
  55674. {
  55675. name: "Solar",
  55676. height: math.unit(8, "gigameters")
  55677. },
  55678. {
  55679. name: "Cosmic",
  55680. height: math.unit(10, "zettameters")
  55681. },
  55682. {
  55683. name: "Omni",
  55684. height: math.unit(9e260, "multiverses")
  55685. },
  55686. ]
  55687. ))
  55688. characterMakers.push(() => makeCharacter(
  55689. { name: "Sabiki", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  55690. {
  55691. front: {
  55692. height: math.unit(4 + 3/12, "feet"),
  55693. weight: math.unit(90, "lb"),
  55694. name: "Front",
  55695. image: {
  55696. source: "./media/characters/sabiki/front.svg",
  55697. extra: 1662/1423,
  55698. bottom: 65/1727
  55699. }
  55700. },
  55701. },
  55702. [
  55703. {
  55704. name: "Normal",
  55705. height: math.unit(4 + 3/12, "feet"),
  55706. default: true
  55707. },
  55708. ]
  55709. ))
  55710. characterMakers.push(() => makeCharacter(
  55711. { name: "Carmel", species: ["ant"], tags: ["anthro"] },
  55712. {
  55713. frontSfw: {
  55714. height: math.unit(2, "mm"),
  55715. name: "Front (SFW)",
  55716. image: {
  55717. source: "./media/characters/carmel/front-sfw.svg",
  55718. extra: 1131/1006,
  55719. bottom: 66/1197
  55720. }
  55721. },
  55722. frontNsfw: {
  55723. height: math.unit(2, "mm"),
  55724. name: "Front (NSFW)",
  55725. image: {
  55726. source: "./media/characters/carmel/front-nsfw.svg",
  55727. extra: 1131/1006,
  55728. bottom: 66/1197
  55729. }
  55730. },
  55731. foot: {
  55732. height: math.unit(0.3, "mm"),
  55733. name: "Foot",
  55734. image: {
  55735. source: "./media/characters/carmel/foot.svg"
  55736. }
  55737. },
  55738. tongue: {
  55739. height: math.unit(0.71, "mm"),
  55740. name: "Tongue",
  55741. image: {
  55742. source: "./media/characters/carmel/tongue.svg"
  55743. }
  55744. },
  55745. dick: {
  55746. height: math.unit(0.085, "mm"),
  55747. name: "Dick",
  55748. image: {
  55749. source: "./media/characters/carmel/dick.svg"
  55750. }
  55751. },
  55752. },
  55753. [
  55754. {
  55755. name: "Micro",
  55756. height: math.unit(2, "mm"),
  55757. default: true
  55758. },
  55759. {
  55760. name: "Normal",
  55761. height: math.unit(4 + 8/12, "feet")
  55762. },
  55763. {
  55764. name: "Mega Macro",
  55765. height: math.unit(250, "feet")
  55766. },
  55767. {
  55768. name: "BIGGER",
  55769. height: math.unit(1000, "feet")
  55770. },
  55771. {
  55772. name: "BIGGEST",
  55773. height: math.unit(2, "miles")
  55774. },
  55775. ]
  55776. ))
  55777. characterMakers.push(() => makeCharacter(
  55778. { name: "Tamani", species: ["lion"], tags: ["anthro", "feral"] },
  55779. {
  55780. front: {
  55781. height: math.unit(6.5, "feet"),
  55782. weight: math.unit(198, "lb"),
  55783. name: "Front",
  55784. image: {
  55785. source: "./media/characters/tamani/anthro.svg",
  55786. extra: 930/890,
  55787. bottom: 34/964
  55788. },
  55789. form: "anthro",
  55790. default: true
  55791. },
  55792. side: {
  55793. height: math.unit(6, "feet"),
  55794. weight: math.unit(198*2, "lb"),
  55795. name: "Side",
  55796. image: {
  55797. source: "./media/characters/tamani/feral.svg",
  55798. extra: 559/519,
  55799. bottom: 43/602
  55800. },
  55801. form: "feral"
  55802. },
  55803. },
  55804. [
  55805. {
  55806. name: "Normal",
  55807. height: math.unit(6.5, "feet"),
  55808. default: true,
  55809. form: "anthro"
  55810. },
  55811. {
  55812. name: "Normal",
  55813. height: math.unit(6, "feet"),
  55814. default: true,
  55815. form: "feral"
  55816. },
  55817. ],
  55818. {
  55819. "anthro": {
  55820. name: "Anthro",
  55821. default: true
  55822. },
  55823. "feral": {
  55824. name: "Feral",
  55825. },
  55826. }
  55827. ))
  55828. characterMakers.push(() => makeCharacter(
  55829. { name: "Dex", species: ["eastern-cottontail-rabbit"], tags: ["anthro"] },
  55830. {
  55831. front: {
  55832. height: math.unit(4 + 1/12, "feet"),
  55833. weight: math.unit(114, "lb"),
  55834. name: "Front",
  55835. image: {
  55836. source: "./media/characters/dex/front.svg",
  55837. extra: 787/680,
  55838. bottom: 18/805
  55839. }
  55840. },
  55841. side: {
  55842. height: math.unit(4 + 1/12, "feet"),
  55843. weight: math.unit(114, "lb"),
  55844. name: "Side",
  55845. image: {
  55846. source: "./media/characters/dex/side.svg",
  55847. extra: 785/680,
  55848. bottom: 12/797
  55849. }
  55850. },
  55851. back: {
  55852. height: math.unit(4 + 1/12, "feet"),
  55853. weight: math.unit(114, "lb"),
  55854. name: "Back",
  55855. image: {
  55856. source: "./media/characters/dex/back.svg",
  55857. extra: 785/681,
  55858. bottom: 17/802
  55859. }
  55860. },
  55861. loungewear: {
  55862. height: math.unit(4 + 1/12, "feet"),
  55863. weight: math.unit(114, "lb"),
  55864. name: "Loungewear",
  55865. image: {
  55866. source: "./media/characters/dex/loungewear.svg",
  55867. extra: 787/680,
  55868. bottom: 18/805
  55869. }
  55870. },
  55871. workout: {
  55872. height: math.unit(4 + 1/12, "feet"),
  55873. weight: math.unit(114, "lb"),
  55874. name: "Workout",
  55875. image: {
  55876. source: "./media/characters/dex/workout.svg",
  55877. extra: 787/680,
  55878. bottom: 18/805
  55879. }
  55880. },
  55881. schoolUniform: {
  55882. height: math.unit(4 + 1/12, "feet"),
  55883. weight: math.unit(114, "lb"),
  55884. name: "School-uniform",
  55885. image: {
  55886. source: "./media/characters/dex/school-uniform.svg",
  55887. extra: 787/680,
  55888. bottom: 18/805
  55889. }
  55890. },
  55891. maw: {
  55892. height: math.unit(0.55, "feet"),
  55893. name: "Maw",
  55894. image: {
  55895. source: "./media/characters/dex/maw.svg"
  55896. }
  55897. },
  55898. paw: {
  55899. height: math.unit(0.87, "feet"),
  55900. name: "Paw",
  55901. image: {
  55902. source: "./media/characters/dex/paw.svg"
  55903. }
  55904. },
  55905. bust: {
  55906. height: math.unit(1.67, "feet"),
  55907. name: "Bust",
  55908. image: {
  55909. source: "./media/characters/dex/bust.svg"
  55910. }
  55911. },
  55912. },
  55913. [
  55914. {
  55915. name: "Normal",
  55916. height: math.unit(4 + 1/12, "feet"),
  55917. default: true
  55918. },
  55919. ]
  55920. ))
  55921. characterMakers.push(() => makeCharacter(
  55922. { name: "Silke", species: ["sylveon"], tags: ["anthro"] },
  55923. {
  55924. front: {
  55925. height: math.unit(4 + 3/12, "feet"),
  55926. weight: math.unit(60, "lb"),
  55927. name: "Front",
  55928. image: {
  55929. source: "./media/characters/silke/front.svg",
  55930. extra: 1334/1122,
  55931. bottom: 21/1355
  55932. }
  55933. },
  55934. back: {
  55935. height: math.unit(4 + 3/12, "feet"),
  55936. weight: math.unit(60, "lb"),
  55937. name: "Back",
  55938. image: {
  55939. source: "./media/characters/silke/back.svg",
  55940. extra: 1328/1092,
  55941. bottom: 16/1344
  55942. }
  55943. },
  55944. dressed: {
  55945. height: math.unit(4 + 3/12, "feet"),
  55946. weight: math.unit(60, "lb"),
  55947. name: "Dressed",
  55948. image: {
  55949. source: "./media/characters/silke/dressed.svg",
  55950. extra: 1334/1122,
  55951. bottom: 43/1377
  55952. }
  55953. },
  55954. },
  55955. [
  55956. {
  55957. name: "Normal",
  55958. height: math.unit(4 + 3/12, "feet"),
  55959. default: true
  55960. },
  55961. ]
  55962. ))
  55963. //characters
  55964. function makeCharacters() {
  55965. const results = [];
  55966. characterMakers.forEach(character => {
  55967. results.push(character());
  55968. });
  55969. return results;
  55970. }